]> source.dussan.org Git - sonarqube.git/commit
SONAR-19613 Move Project Info from sidebar to separate page
authorViktor Vorona <viktor.vorona@sonarsource.com>
Mon, 19 Jun 2023 11:22:59 +0000 (13:22 +0200)
committersonartech <sonartech@sonarsource.com>
Mon, 26 Jun 2023 20:03:55 +0000 (20:03 +0000)
commit6a8eba1b0a016b92f5b57d294c33d0c4b18f0367
treebaf681110662e13c537c8431002dd76a9263e50e
parent8edcaa6b263945e5f02b95e49e145ad1a1d57883
SONAR-19613 Move Project Info from sidebar to separate page
65 files changed:
server/sonar-web/design-system/src/components/Title.tsx [new file with mode: 0644]
server/sonar-web/design-system/src/components/index.ts
server/sonar-web/src/main/js/app/components/ComponentContainer.tsx
server/sonar-web/src/main/js/app/components/nav/component/ComponentNav.tsx
server/sonar-web/src/main/js/app/components/nav/component/Menu.tsx
server/sonar-web/src/main/js/app/components/nav/component/__tests__/ComponentNav-test.tsx
server/sonar-web/src/main/js/app/components/nav/component/projectInformation/DrawerLink.tsx [deleted file]
server/sonar-web/src/main/js/app/components/nav/component/projectInformation/InfoDrawer.css [deleted file]
server/sonar-web/src/main/js/app/components/nav/component/projectInformation/InfoDrawer.tsx [deleted file]
server/sonar-web/src/main/js/app/components/nav/component/projectInformation/InfoDrawerPage.tsx [deleted file]
server/sonar-web/src/main/js/app/components/nav/component/projectInformation/ProjectInformation.css [deleted file]
server/sonar-web/src/main/js/app/components/nav/component/projectInformation/ProjectInformation.tsx [deleted file]
server/sonar-web/src/main/js/app/components/nav/component/projectInformation/ProjectInformationPages.ts [deleted file]
server/sonar-web/src/main/js/app/components/nav/component/projectInformation/ProjectInformationRenderer.tsx [deleted file]
server/sonar-web/src/main/js/app/components/nav/component/projectInformation/badges/BadgeButton.tsx [deleted file]
server/sonar-web/src/main/js/app/components/nav/component/projectInformation/badges/BadgeParams.tsx [deleted file]
server/sonar-web/src/main/js/app/components/nav/component/projectInformation/badges/ProjectBadges.tsx [deleted file]
server/sonar-web/src/main/js/app/components/nav/component/projectInformation/badges/__tests__/ProjectBadges-test.tsx [deleted file]
server/sonar-web/src/main/js/app/components/nav/component/projectInformation/badges/__tests__/utils-test.ts [deleted file]
server/sonar-web/src/main/js/app/components/nav/component/projectInformation/badges/styles.css [deleted file]
server/sonar-web/src/main/js/app/components/nav/component/projectInformation/badges/utils.ts [deleted file]
server/sonar-web/src/main/js/app/components/nav/component/projectInformation/meta/MetaKey.tsx [deleted file]
server/sonar-web/src/main/js/app/components/nav/component/projectInformation/meta/MetaLink.tsx [deleted file]
server/sonar-web/src/main/js/app/components/nav/component/projectInformation/meta/MetaLinks.tsx [deleted file]
server/sonar-web/src/main/js/app/components/nav/component/projectInformation/meta/MetaQualityGate.tsx [deleted file]
server/sonar-web/src/main/js/app/components/nav/component/projectInformation/meta/MetaQualityProfiles.tsx [deleted file]
server/sonar-web/src/main/js/app/components/nav/component/projectInformation/meta/MetaSize.tsx [deleted file]
server/sonar-web/src/main/js/app/components/nav/component/projectInformation/meta/MetaTags.tsx [deleted file]
server/sonar-web/src/main/js/app/components/nav/component/projectInformation/meta/MetaTagsSelector.tsx [deleted file]
server/sonar-web/src/main/js/app/components/nav/component/projectInformation/meta/__tests__/MetaKey-test.tsx [deleted file]
server/sonar-web/src/main/js/app/components/nav/component/projectInformation/meta/__tests__/MetaQualityProfiles-test.tsx [deleted file]
server/sonar-web/src/main/js/app/components/nav/component/projectInformation/meta/__tests__/MetaTags-test.tsx [deleted file]
server/sonar-web/src/main/js/app/components/nav/component/projectInformation/notifications/ProjectNotifications.tsx [deleted file]
server/sonar-web/src/main/js/app/components/nav/component/projectInformation/notifications/__tests__/ProjectNotifications-test.tsx [deleted file]
server/sonar-web/src/main/js/app/components/nav/component/projectInformation/projectRegulatoryReport/RegulatoryReport.tsx [deleted file]
server/sonar-web/src/main/js/app/components/nav/component/projectInformation/projectRegulatoryReport/RegulatoryReportModal.tsx [deleted file]
server/sonar-web/src/main/js/app/components/nav/component/projectInformation/projectRegulatoryReport/__tests__/RegulatoryReport-it.tsx [deleted file]
server/sonar-web/src/main/js/app/utils/startReactApp.tsx
server/sonar-web/src/main/js/apps/account/projects/ProjectCard.tsx
server/sonar-web/src/main/js/apps/projectInformation/ProjectInformationApp.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/apps/projectInformation/about/AboutProject.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/apps/projectInformation/badges/BadgeButton.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/apps/projectInformation/badges/BadgeParams.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/apps/projectInformation/badges/ProjectBadges.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/apps/projectInformation/badges/__tests__/ProjectBadges-test.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/apps/projectInformation/badges/__tests__/utils-test.ts [new file with mode: 0644]
server/sonar-web/src/main/js/apps/projectInformation/badges/styles.css [new file with mode: 0644]
server/sonar-web/src/main/js/apps/projectInformation/badges/utils.ts [new file with mode: 0644]
server/sonar-web/src/main/js/apps/projectInformation/meta/MetaKey.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/apps/projectInformation/meta/MetaLink.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/apps/projectInformation/meta/MetaLinks.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/apps/projectInformation/meta/MetaQualityGate.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/apps/projectInformation/meta/MetaQualityProfiles.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/apps/projectInformation/meta/MetaSize.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/apps/projectInformation/meta/MetaTags.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/apps/projectInformation/meta/MetaTagsSelector.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/apps/projectInformation/meta/__tests__/MetaKey-test.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/apps/projectInformation/meta/__tests__/MetaQualityProfiles-test.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/apps/projectInformation/meta/__tests__/MetaTags-test.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/apps/projectInformation/notifications/ProjectNotifications.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/apps/projectInformation/notifications/__tests__/ProjectNotifications-test.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/apps/projectInformation/projectRegulatoryReport/RegulatoryReport.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/apps/projectInformation/projectRegulatoryReport/RegulatoryReportModal.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/apps/projectInformation/projectRegulatoryReport/__tests__/RegulatoryReport-it.tsx [new file with mode: 0644]
server/sonar-web/src/main/js/apps/projectInformation/routes.tsx [new file with mode: 0644]