stable

Clone or download

Read-only

refactor: Switch cross-tracker search widget to Vue 3

part of story #38263 Choose my own columns based on field name (numeric,text, dates) How to test: No functional change expected in cross-tracker search widgets. Why? Vue 2 is no longer supported. Change-Id: I17f30ac19af09798ff449e1e95da27c42c341495

Modified Files

Name
M plugins/crosstracker/scripts/cross-tracker/jest.config.js +1 −10 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/package.json +6 −7 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/pnpm-lock.yaml +496 −135 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/CrossTrackerWidget.test.ts +51 −34 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/CrossTrackerWidget.vue +1 −1 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/components/ArtifactTable.test.ts +33 −37 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/components/ArtifactTable.vue +3 −3 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/components/ErrorInactiveProjectMessage.vue +2 −0 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/components/ExportCSVButton.test.ts +32 −34 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/components/ExportCSVButton.vue +1 −1 Go to diff View file
R plugins/crosstracker/scripts/cross-tracker/src/helpers/local-vue-for-test.ts Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/index.ts +20 −26 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/reading-mode/ReadingMode.test.ts +43 −46 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/reading-mode/ReadingMode.vue +3 −0 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/store/index.ts +5 −10 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/vue.shims.d.ts +3 −2 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/writing-mode/QueryEditor.test.ts +11 −14 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/writing-mode/QueryEditor.vue +3 −0 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/writing-mode/TrackerListWritingMode.test.ts +3 −3 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/writing-mode/TrackerSelection.test.ts +36 −45 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/writing-mode/TrackerSelection.vue +4 −10 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/writing-mode/WritingMode.test.ts +35 −39 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/writing-mode/WritingMode.vue +3 −5 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/writing-mode/__snapshots__/TrackerListWritingMode.test.ts.snap +8 −18 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/writing-mode/__snapshots__/TrackerSelection.test.ts.snap +13 −27 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/vite.config.ts +2 −2 Go to diff View file