@demos-europe/demosplan-ui 0.2.0 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +31 -0
- package/Jenkinsfile +19 -0
- package/dist/demosplan-ui.umd.js +1 -1
- package/dist/demosplan-ui.umd.js.LICENSE.txt +2 -2
- package/package.json +16 -14
- package/src/components/DpButtonRow/DpButtonRow.vue +2 -2
- package/src/components/DpDataTable/DpDataTable.vue +1 -1
- package/src/components/DpIcon/DpIcon.stories.mdx +22 -3
- package/src/components/DpIcon/util/iconVariables.js +3 -0
- package/src/components/DpModal/DpModal.vue +1 -0
- package/src/components/DpMultiselect/DpMultiselect.vue +17 -10
- package/src/components/DpSelect/DpSelect.vue +1 -1
- package/src/components/DpTreeList/DpTreeListCheckbox.vue +1 -1
- package/src/components/core/DpBulkEditHeader.stories.mdx +49 -0
- package/src/components/core/DpBulkEditHeader.stories.tsx +95 -0
- package/src/components/core/DpBulkEditHeader.vue +9 -16
- package/src/components/core/DpEditableList.stories.mdx +38 -0
- package/src/components/core/DpEditableList.stories.tsx +63 -0
- package/src/components/core/DpEditableList.vue +8 -6
- package/src/components/core/DpEditor/DpEditor.stories.mdx +51 -7
- package/src/components/core/DpEditor/DpEditor.stories.tsx +93 -0
- package/src/components/core/DpEditor/DpEditor.vue +31 -7
- package/src/components/core/DpEditor/DpUploadModal.vue +19 -0
- package/src/components/core/DpEditor/libs/customExtensions.js +1 -1
- package/src/components/core/DpEditor/libs/editorCustomLink.js +1 -0
- package/src/components/core/DpVideoPlayer.stories.mdx +21 -0
- package/src/components/core/DpVideoPlayer.stories.tsx +38 -0
- package/src/components/core/DpVideoPlayer.vue +3 -0
- package/src/components/core/index.js +0 -4
- package/src/components/index.js +0 -6
- package/src/components/shared/translations.js +16 -9
- package/src/lib/Stickier.js +4 -4
- package/src/lib/validation/utils/assignHandlerForTrigger.js +12 -2
- package/src/mixins/dpValidateMixin.js +5 -3
- package/style/style.css +0 -8
- package/tests/DpTreeListCheckbox.spec.js +3 -7
- package/tests/form/DpCheckbox.spec.js +2 -0
- package/tests/form/DpInput.spec.js +26 -25
- package/tests/form/DpSelect.spec.js +4 -3
- package/tests/form/shared/Label.js +7 -3
- package/tokens/dist/js/boxShadow.js +1 -1
- package/tokens/dist/js/breakpoints.js +1 -1
- package/tokens/dist/js/color.brand.js +1 -1
- package/tokens/dist/js/color.data.js +1 -1
- package/tokens/dist/js/color.palette.js +1 -1
- package/tokens/dist/js/color.ui.js +1 -1
- package/tokens/dist/js/fontSize.js +1 -1
- package/tokens/dist/js/rounded.js +1 -1
- package/tokens/dist/js/space.js +1 -1
- package/tokens/dist/js/zIndex.js +1 -1
- package/tokens/dist/scss/_boxShadow.scss +1 -1
- package/tokens/dist/scss/_breakpoints.scss +1 -1
- package/tokens/dist/scss/_color.brand.scss +1 -1
- package/tokens/dist/scss/_color.data.scss +1 -1
- package/tokens/dist/scss/_color.palette.scss +1 -1
- package/tokens/dist/scss/_color.ui.scss +1 -1
- package/tokens/dist/scss/_fontSize.scss +1 -1
- package/tokens/dist/scss/_rounded.scss +1 -1
- package/tokens/dist/scss/_space.scss +1 -1
- package/tokens/dist/scss/_zIndex.scss +1 -1
- package/tokens/scss/_boxShadow.scss +8 -0
- package/tokens/scss/_color.brand.scss +10 -0
- package/tokens/scss/_color.data.scss +32 -0
- package/tokens/scss/_color.palette.scss +62 -0
- package/tokens/scss/_color.scss +1 -1
- package/tokens/scss/_color.ui.scss +61 -0
- package/tokens/scss/_fontSize.scss +23 -23
- package/tokens/scss/_rounded.scss +9 -0
- package/tokens/scss/_space.scss +10 -10
- package/.idea/demosplan-ui.iml +0 -8
- package/.idea/encodings.xml +0 -6
- package/.idea/git_toolbox_prj.xml +0 -15
- package/.idea/modules.xml +0 -8
- package/.idea/php.xml +0 -19
- package/.idea/sonarlint/issuestore/index.pb +0 -0
- package/.idea/sonarlint-state.xml +0 -6
- package/.idea/sonarlint.xml +0 -8
- package/.idea/vcs.xml +0 -6
- package/src/components/DpHeightLimit/DpHeightLimit.stories.mdx +0 -28
- package/src/components/DpHeightLimit/DpHeightLimit.stories.tsx +0 -38
- package/src/components/DpHeightLimit/DpHeightLimit.vue +0 -92
- package/src/components/DpHeightLimit/index.ts +0 -2
- package/src/components/core/DpSwitcher.vue +0 -53
- package/src/components/core/DpTextWrapper.vue +0 -56
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,37 @@ Since v0.0.10, this Changelog is formatted according to the [Common Changelog][c
|
|
|
4
4
|
|
|
5
5
|
## UNRELEASED
|
|
6
6
|
|
|
7
|
+
## v0.3 - 2023-11-08
|
|
8
|
+
|
|
9
|
+
### Removed
|
|
10
|
+
|
|
11
|
+
- ([#603](https://github.com/demos-europe/demosplan-ui/pull/603)) Remove DpHeightLimit, DpSwitcher, and DpTextWrapper components. ([@ahmad-demos](https://github.com/@ahmad-demos))
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
- ([#633](https://github.com/demos-europe/demosplan-ui/pull/633)) DpModal: Call the preventScroll function within the toggle method in cases where the @after-leave transition does not work correctly (AssignEntityModal) ([@sakutademos](https://github.com/sakutademos))
|
|
15
|
+
- ([#624](https://github.com/demos-europe/demosplan-ui/pull/624)) Use proper import for buildSuggestion ([@salis-demos](https://github.com/salis-demos))
|
|
16
|
+
- ([#622](https://github.com/demos-europe/demosplan-ui/pull/622)) Improve validation notifications in the DpValidation action by incorporating invalid fields and displaying unique fields only ([@sakutademos](https://github.com/sakutademos))
|
|
17
|
+
- ([#621](https://github.com/demos-europe/demosplan-ui/pull/621)) Bump Vue Peer dependency to 2.5.17 ([@spiess-demos](https://github.com/spiess-demos))
|
|
18
|
+
- ([#615](https://github.com/demos-europe/demosplan-ui/pull/615)) **Breaking:** Change DpBulkEditHeader Props ([@ahmad-demos](https://github.com/@ahmad-demos))
|
|
19
|
+
- ([#630](https://github.com/demos-europe/demosplan-ui/pull/630)) Stickier.js: Remove extra check for stickToDirection that has been added wherever the function _bindBottom is called, because otherwise the element has not enough space and the bottom of the element is not reachable ([@gruenbergerdemos](https://github.com/gruenbergerdemos))
|
|
20
|
+
|
|
21
|
+
### Added
|
|
22
|
+
- ([#629](https://github.com/demos-europe/demosplan-ui/pull/629)) Allow to use all available slots from vue-multiselect in DpMultiselect ([@salis-demos](https://github.com/salis-demos))
|
|
23
|
+
- ([#615](https://github.com/demos-europe/demosplan-ui/pull/615)) Add DpBulkEditHeader documentation to Storybook ([@ahmad-demos](https://github.com/@ahmad-demos))
|
|
24
|
+
- ([#605](https://github.com/demos-europe/demosplan-ui/pull/605)) Add DpEditableList documentation to Storybook ([@ahmad-demos](https://github.com/@ahmad-demos))
|
|
25
|
+
- ([#591](https://github.com/demos-europe/demosplan-ui/pull/591)) Add label tests for form components ([@hwiem](https://github.com/hwiem))
|
|
26
|
+
|
|
27
|
+
## v0.2.1 - 2023-10-18
|
|
28
|
+
|
|
29
|
+
### Changed
|
|
30
|
+
- ([585](https://github.com/demos-europe/demosplan-ui/pull/585), [586](https://github.com/demos-europe/demosplan-ui/pull/586)) Fix Bugs in DpEditor after Migrating to tiptap@v2 ([@salisdemos](https://github.com/salisdemos))
|
|
31
|
+
|
|
32
|
+
### Added
|
|
33
|
+
- ([#590](https://github.com/demos-europe/demosplan-ui/pull/590)) Add DpVideoPlayer documentation to Storybook ([@ahmad-demos](https://github.com/@ahmad-demos))
|
|
34
|
+
- ([#588](https://github.com/demos-europe/demosplan-ui/pull/588)) Add DpSwitcher documentation to Storybook ([@ahmad-demos](https://github.com/@ahmad-demos))
|
|
35
|
+
- ([#567](https://github.com/demos-europe/demosplan-ui/pull/567)) Add DpEditor documentation to Storybook ([@ahmad-demos](https://github.com/@ahmad-demos))
|
|
36
|
+
- ([#587](https://github.com/demos-europe/demosplan-ui/pull/587)) Add phone icon to DpIcon ([@spiess-demos](https://github.com/spiess-demos))
|
|
37
|
+
|
|
7
38
|
## v0.2.0 - 2023-10-05
|
|
8
39
|
|
|
9
40
|
### Removed
|
package/Jenkinsfile
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
pipeline {
|
|
2
|
+
agent {label 'docker'}
|
|
3
|
+
options {
|
|
4
|
+
timeout(time: 10, unit: 'MINUTES')
|
|
5
|
+
}
|
|
6
|
+
stages {
|
|
7
|
+
stage('Install Dependencies') {
|
|
8
|
+
steps {
|
|
9
|
+
sh 'yarn install'
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
stage('Run Tests') {
|
|
14
|
+
steps {
|
|
15
|
+
sh 'yarn test'
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
}
|