stable

Clone or download

Read-only

Explicit dependency to the package providing the getProjectPrivacyIcon function

This make things easier to manage in the long run: the package dependency graph is accurate. The function has been extracted into a independant package to avoid conflicts between Vue 2 and Vue 3/different TS configs. No functionnal changes. Part of request #23465 Publish a project sidebar custom element Change-Id: I3636cd2ef68ed2d46c04f4ffde5673ed668e5dec

Modified Files

Name
M plugins/document/package.json +1 −0 Go to diff View file
M plugins/document/pnpm-lock.yaml +2 −0 Go to diff View file
M plugins/document/scripts/document/components/Breadcrumb/DocumentBreadcrumb.vue +2 −1 Go to diff View file
M plugins/document/scripts/document/store/configuration/index.ts +2 −1 Go to diff View file
M plugins/git/package.json +1 −0 Go to diff View file
M plugins/git/pnpm-lock.yaml +2 −0 Go to diff View file
M plugins/git/scripts/repositories/src/breadcrumb-presenter.ts +2 −1 Go to diff View file
M plugins/git/scripts/repositories/src/components/GitBreadcrumbs.vue +2 −1 Go to diff View file
M plugins/program_management/package.json +1 −0 Go to diff View file
M plugins/program_management/pnpm-lock.yaml +2 −0 Go to diff View file
M plugins/program_management/scripts/planned-iterations/src/components/Breadcrumb.vue +2 −1 Go to diff View file
M plugins/program_management/scripts/planned-iterations/src/store/configuration/index.ts +2 −1 Go to diff View file
M plugins/program_management/scripts/program_management/src/components/App.vue +2 −1 Go to diff View file
M plugins/program_management/scripts/program_management/src/components/Breadcrumb.vue +2 −1 Go to diff View file
M plugins/program_management/scripts/program_management/src/store/configuration/index.ts +2 −1 Go to diff View file
M src/package.json +1 −1 Go to diff View file
M src/pnpm-lock.yaml +2 −2 Go to diff View file
A src/scripts/lib/project-privacy-helper/.gitignore +1 −0 Go to diff View file
A src/scripts/lib/project-privacy-helper/README.md +15 −0 Go to diff View file
A src/scripts/lib/project-privacy-helper/jest.config.js +24 −0 Go to diff View file
A src/scripts/lib/project-privacy-helper/package.json +21 −0 Go to diff View file
R src/scripts/lib/vue-breadcrumb-privacy/src/project-privacy-helper.test.ts Go to diff View file
R src/scripts/lib/vue-breadcrumb-privacy/src/project-privacy-helper.ts Go to diff View file
A src/scripts/lib/project-privacy-helper/tsconfig.json +8 −0 Go to diff View file
A src/scripts/lib/project-privacy-helper/vite.config.ts +33 −0 Go to diff View file
M src/scripts/lib/project-sidebar/package.json +1 −0 Go to diff View file
M src/scripts/lib/project-sidebar/pnpm-lock.yaml +2 −0 Go to diff View file
M src/scripts/lib/project-sidebar/src/Header/PrivacyBadge.vue +1 −1 Go to diff View file
M src/scripts/lib/vue-breadcrumb-privacy/README.md +1 −5 Go to diff View file
M src/scripts/lib/vue-breadcrumb-privacy/package.json +1 −0 Go to diff View file
M src/scripts/lib/vue-breadcrumb-privacy/pnpm-lock.yaml +2 −0 Go to diff View file
M src/scripts/lib/vue-breadcrumb-privacy/src/BreadcrumbPrivacy.test.ts +1 −1 Go to diff View file
M src/scripts/lib/vue-breadcrumb-privacy/src/BreadcrumbPrivacy.vue +3 −2 Go to diff View file
M src/scripts/lib/vue-breadcrumb-privacy/src/index.ts +5 −2 Go to diff View file
M src/scripts/lib/vue-breadcrumb-privacy/vite.config.ts +2 −1 Go to diff View file
M src/scripts/switch-to/src/components/Body/Projects/ProjectLink.vue +2 −2 Go to diff View file