stable

Clone or download

Read-only

Migrate to vue 3 project registration

Part of request #31168 Migration Vue2 => Vue3 No functionnal change expected Change-Id: I0a50048420f87710aa1065ecfd7ac930af462576

Modified Files

Name
M src/scripts/project-registration/jest.config.js +1 −1 Go to diff View file
M src/scripts/project-registration/package.json +7 −6 Go to diff View file
M src/scripts/project-registration/pnpm-lock.yaml +734 −168 Go to diff View file
M src/scripts/project-registration/src/components/App.test.ts +8 −5 Go to diff View file
M src/scripts/project-registration/src/components/Approval/ProjectApproval.test.ts +12 −11 Go to diff View file
M src/scripts/project-registration/src/components/Approval/__snapshots__/ProjectApproval.test.ts.snap +2 −6 Go to diff View file
M src/scripts/project-registration/src/components/Information/Agreement/AgreementModal.test.ts +9 −3 Go to diff View file
M src/scripts/project-registration/src/components/Information/Agreement/PolicyAgreement.test.ts +9 −3 Go to diff View file
M src/scripts/project-registration/src/components/Information/Agreement/PolicyAgreement.vue +1 −1 Go to diff View file
M src/scripts/project-registration/src/components/Information/Agreement/__snapshots__/PolicyAgreement.test.ts.snap +3 −2 Go to diff View file
M src/scripts/project-registration/src/components/Information/Fields/FieldDescription.test.ts +9 −5 Go to diff View file
M src/scripts/project-registration/src/components/Information/Fields/FieldDescription.vue +5 −0 Go to diff View file
M src/scripts/project-registration/src/components/Information/Fields/FieldsList.test.ts +12 −6 Go to diff View file
M src/scripts/project-registration/src/components/Information/Fields/__snapshots__/FieldsList.test.ts.snap +2 −6 Go to diff View file
M src/scripts/project-registration/src/components/Information/Input/ProjectInformationInputPrivacyList.test.ts +12 −11 Go to diff View file
M src/scripts/project-registration/src/components/Information/Input/ProjectInformationInputPrivacyList.vue +1 −1 Go to diff View file
M src/scripts/project-registration/src/components/Information/Input/ProjectName.test.ts +9 −16 Go to diff View file
M src/scripts/project-registration/src/components/Information/Input/ProjectName.vue +1 −1 Go to diff View file
M src/scripts/project-registration/src/components/Information/Input/ProjectShortName.test.ts +21 −19 Go to diff View file
M src/scripts/project-registration/src/components/Information/Input/ProjectShortName.vue +1 −1 Go to diff View file
M src/scripts/project-registration/src/components/Information/ProjectInformation.test.ts +10 −14 Go to diff View file
M src/scripts/project-registration/src/components/Information/ProjectInformation.vue +4 −1 Go to diff View file
M src/scripts/project-registration/src/components/Information/ProjectInformationFooter.test.ts +14 −12 Go to diff View file
M src/scripts/project-registration/src/components/Information/TroveCat/TroveCategoryList.test.ts +13 −8 Go to diff View file
M src/scripts/project-registration/src/components/Information/TroveCat/__snapshots__/TroveCategoryList.test.ts.snap +3 −9 Go to diff View file
M src/scripts/project-registration/src/components/Template/Advanced/AdvancedTemplateList.test.ts +11 −12 Go to diff View file
M src/scripts/project-registration/src/components/Template/Advanced/FromProjectArchive/FromProjectArchiveCard.test.ts +10 −12 Go to diff View file
M src/scripts/project-registration/src/components/Template/Advanced/FromProjectArchive/ProjectOnGoingCreation/ProjectOngoingCreation.vue +1 −1 Go to diff View file
M src/scripts/project-registration/src/components/Template/Advanced/FromUserExistingProject/FromExistingUserProjectTemplateCard.test.ts +26 −57 Go to diff View file
M src/scripts/project-registration/src/components/Template/Advanced/FromUserExistingProject/UserProjectList.test.ts +13 −22 Go to diff View file
M src/scripts/project-registration/src/components/Template/Advanced/FromUserExistingProject/__snapshots__/UserProjectList.test.ts.snap +4 −10 Go to diff View file
M src/scripts/project-registration/src/components/Template/AllProjectTemplates.test.ts +7 −5 Go to diff View file
M src/scripts/project-registration/src/components/Template/CategorisedExternalTemplates/CategorisedExternalTemplatesList.test.ts +43 −35 Go to diff View file
M src/scripts/project-registration/src/components/Template/Company/CompanyTemplateList.test.ts +9 −10 Go to diff View file
M src/scripts/project-registration/src/components/Template/TemplateCard.test.ts +18 −13 Go to diff View file
M src/scripts/project-registration/src/components/Template/TemplateFooter.test.ts +35 −18 Go to diff View file
M src/scripts/project-registration/src/components/Template/TemplateSelection.test.ts +24 −28 Go to diff View file
M src/scripts/project-registration/src/components/Template/TemplateSelection.vue +1 −1 Go to diff View file
M src/scripts/project-registration/src/components/Template/Tuleap/TuleapTemplateList.test.ts +8 −10 Go to diff View file
A src/scripts/project-registration/src/helpers/global-options-for-test.ts +29 −0 Go to diff View file
D src/scripts/project-registration/src/helpers/local-vue-for-tests.ts +0 −38 Go to diff View file
M src/scripts/project-registration/src/helpers/upload-file.ts +1 −1 Go to diff View file
M src/scripts/project-registration/src/helpers/use-router.ts +10 −4 Go to diff View file
M src/scripts/project-registration/src/index.ts +16 −27 Go to diff View file
M src/scripts/project-registration/src/router/index.ts +29 −35 Go to diff View file
M src/scripts/project-registration/src/stores/mutations.test.ts +5 −2 Go to diff View file
M src/scripts/project-registration/src/stores/root.ts +1 −1 Go to diff View file
M src/scripts/project-registration/src/vue.shims.d.ts +3 −2 Go to diff View file
M src/scripts/project-registration/vite.config.ts +1 −1 Go to diff View file