stable

Clone or download

Read-only

Introduce fullscreen mode

part of: story #13954 Toggle a fullscreen mode How to test: --> The toggle button icon changes accordingly with the current state of the fullscreen mode (enabled/disabled) --> It works with FF --> It works with Chrome --> It works with Edge Change-Id: I2ad0e5d6ca3911cfe2162ece432175c850e427a6

Modified Files

Name
M plugins/taskboard/scripts/package-lock.json +11 −0 Go to diff View file
M plugins/taskboard/scripts/package.json +2 −0 Go to diff View file
M plugins/taskboard/scripts/taskboard/index.ts +3 −1 Go to diff View file
M plugins/taskboard/scripts/taskboard/po/fr_FR.po +3 −0 Go to diff View file
A plugins/taskboard/scripts/taskboard/src/components/TaskBoard/ButtonBar/SwitchToFullscreen.vue +82 −0 Go to diff View file
A plugins/taskboard/scripts/taskboard/src/components/TaskBoard/ButtonBar/TaskboardButtonBar.vue +49 −0 Go to diff View file
M plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Swimlane/ParentCell.test.ts +51 −0 Go to diff View file
M plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Swimlane/ParentCell.vue +7 −1 Go to diff View file
M plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Swimlane/SoloCard.test.ts +74 −3 Go to diff View file
M plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Swimlane/SoloCard.vue +7 −2 Go to diff View file
M plugins/taskboard/scripts/taskboard/src/components/TaskBoard/Swimlane/__snapshots__/SoloCard.test.ts.snap +1 −1 Go to diff View file
M plugins/taskboard/scripts/taskboard/src/components/TaskBoard/TaskBoard.vue +3 −1 Go to diff View file
M plugins/taskboard/scripts/taskboard/src/components/TaskBoard/TaskBoardHeader.test.ts +29 −1 Go to diff View file
M plugins/taskboard/scripts/taskboard/src/components/TaskBoard/TaskBoardHeader.vue +7 −2 Go to diff View file
M plugins/taskboard/scripts/taskboard/src/components/TaskBoard/__snapshots__/TaskBoard.test.ts.snap +2 −0 Go to diff View file
M plugins/taskboard/scripts/taskboard/src/components/TaskBoard/__snapshots__/TaskBoardHeader.test.ts.snap +1 −1 Go to diff View file
A plugins/taskboard/scripts/taskboard/src/store/fullscreen/fullscreen-getters.ts +24 −0 Go to diff View file
A plugins/taskboard/scripts/taskboard/src/store/fullscreen/fullscreen-mutations.ts +27 −0 Go to diff View file
A plugins/taskboard/scripts/taskboard/src/store/fullscreen/index.ts +34 −0 Go to diff View file
A plugins/taskboard/scripts/taskboard/src/store/fullscreen/type.d.ts +22 −0 Go to diff View file
M plugins/taskboard/scripts/taskboard/src/store/index.ts +3 −1 Go to diff View file
M plugins/taskboard/scripts/taskboard/src/type.d.ts +1 −0 Go to diff View file
M plugins/taskboard/templates/taskboard.mustache +1 −0 Go to diff View file
M plugins/taskboard/themes/_taskboard.scss +14 −0 Go to diff View file
A plugins/taskboard/themes/includes/_button-bar.scss +29 −0 Go to diff View file
M plugins/taskboard/themes/includes/_swimlane-sticky-header.scss +12 −10 Go to diff View file