@demos-europe/demosplan-ui 0.3.7 → 0.3.9
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 +42 -0
- package/dist/demosplan-ui.umd.js +1 -1
- package/jest/setup.js +1 -0
- package/package.json +12 -13
- package/src/components/DpButtonRow/DpButtonRow.vue +2 -1
- package/src/components/DpCheckboxGroup/DpCheckboxGroup.vue +7 -0
- package/src/components/DpDataTable/DpDataTable.vue +9 -0
- package/src/components/DpDataTable/DpTableHeader.vue +13 -2
- package/src/components/DpDataTable/DpTableRow.vue +13 -2
- package/src/components/DpDataTable/DpWrapTrigger.vue +9 -1
- package/src/components/DpDateRangePicker/DpDateRangePicker.vue +4 -7
- package/src/components/DpDatetimePicker/DpDatetimePicker.vue +8 -0
- package/src/components/DpEditableList/DpEditableList.vue +2 -1
- package/src/components/DpEditor/DpEditor.vue +1 -1
- package/src/components/DpMultiselect/DpMultiselect.vue +15 -0
- package/src/components/DpResettableInput/DpResettableInput.vue +1 -0
- package/src/components/DpSelect/DpSelect.vue +14 -0
- package/src/components/DpTextArea/DpTextArea.vue +7 -0
- package/src/components/DpTimePicker/DpTimePicker.vue +8 -0
- package/src/components/DpTreeList/DpTreeList.vue +25 -30
- package/src/components/DpTreeList/DpTreeListNode.vue +35 -32
- package/src/components/DpUploadFiles/DpUpload.vue +9 -0
- package/src/components/DpUploadFiles/utils/GetFileIdsByHash.js +0 -3
- package/src/components/DpVideoPlayer/DpVideoPlayer.vue +17 -22
- package/src/lib/DpApi.js +37 -34
- package/tests/components/DpTreeList/DpTreeList.spec.js +66 -0
- package/tests/components/DpTreeList/DpTreeListMockData.js +284 -0
- package/tests/components/DpTreeList/DpTreeListNode.spec.js +127 -0
- 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/dist/121.demosplan-ui.umd.js +0 -1
- package/style/style.css +0 -1002
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,41 @@ Since v0.0.10, this Changelog is formatted according to the [Common Changelog][c
|
|
|
4
4
|
|
|
5
5
|
## UNRELEASED
|
|
6
6
|
|
|
7
|
+
## v0.3.9 - 2024-04-12
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
- ([#803](https://github.com/demos-europe/demosplan-ui/pull/803)) dpApi: remove "option" argument ([@spiess-demos](https://github.com/spiess-demos))
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
|
|
15
|
+
- ([#815](https://github.com/demos-europe/demosplan-ui/pull/815)) Add data attr for E-2-E Test ([@ahmad-demos](https://github.com/ahmad-demos))
|
|
16
|
+
- ([#812](https://github.com/demos-europe/demosplan-ui/pull/812)) Add missing data attr for E-2-E Test ([@ahmad-demos](https://github.com/ahmad-demos))
|
|
17
|
+
- ([#798](https://github.com/demos-europe/demosplan-ui/pull/798)) Add missing data attr for E-2-E Test ([@ahmad-demos](https://github.com/ahmad-demos))
|
|
18
|
+
- ([#773](https://github.com/demos-europe/demosplan-ui/pull/773)) Add missing data attr for E-2-E Test ([@ahmad-demos](https://github.com/ahmad-demos))
|
|
19
|
+
|
|
20
|
+
## v0.3.8 - 2024-03-15
|
|
21
|
+
|
|
22
|
+
### Added
|
|
23
|
+
|
|
24
|
+
- ([#783](https://github.com/demos-europe/demosplan-ui/pull/783)) Improve error validation for DpMultiselect and DpSelect components ([@sakutademos](https://github.com/sakutademos))
|
|
25
|
+
|
|
26
|
+
### Changed
|
|
27
|
+
|
|
28
|
+
- ([#774](https://github.com/demos-europe/demosplan-ui/pull/774)) Improve render performance of the DpTreeList component ([@sakutademos](https://github.com/sakutademos))
|
|
29
|
+
- ([#784](https://github.com/demos-europe/demosplan-ui/pull/784)) dpApi.get: Always serialize request params ([@spiess-demos](https://github.com/spiess-demos))
|
|
30
|
+
|
|
31
|
+
### Removed
|
|
32
|
+
|
|
33
|
+
- ([#779](https://github.com/demos-europe/demosplan-ui/pull/779)) Remove `build:css` script ([@spiess-demos](https://github.com/spiess-demos))
|
|
34
|
+
|
|
35
|
+
### Fixed
|
|
36
|
+
|
|
37
|
+
- ([#777](https://github.com/demos-europe/demosplan-ui/pull/785)) DpVideoPlayer: fix plyr import ([@hwiem](https://github.com/hwiem))
|
|
38
|
+
- ([#777](https://github.com/demos-europe/demosplan-ui/pull/777)) DpEditor: fix condition for console.warn ([@hwiem](https://github.com/hwiem))
|
|
39
|
+
- ([#748](https://github.com/demos-europe/demosplan-ui/pull/748)) Fix required for multiselect ([@gruenbergerdemos](https://github.com/gruenbergerdemos))
|
|
40
|
+
- ([#747](https://github.com/demos-europe/demosplan-ui/pull/747)) Add missing prop clearOnSelect to DpMultiselect (hotfix from v0.3.5-1) ([@spiess-demos](https://github.com/spiess-demos))
|
|
41
|
+
|
|
7
42
|
## v0.3.7 - 2024-02-12
|
|
8
43
|
|
|
9
44
|
### Changed
|
|
@@ -19,11 +54,18 @@ Since v0.0.10, this Changelog is formatted according to the [Common Changelog][c
|
|
|
19
54
|
|
|
20
55
|
### Added
|
|
21
56
|
|
|
57
|
+
- ([#739](https://github.com/demos-europe/demosplan-ui/pull/739)) Add missing data attr for E-2-E Test ([@ahmad-demos](https://github.com/ahmad-demos))
|
|
22
58
|
- ([#721](https://github.com/demos-europe/demosplan-ui/pull/721)) Pass the allowEmpty prop to vue-multiselect, which prevents the deselection of values ([@sakutademos](https://github.com/sakutademos))
|
|
23
59
|
- ([#718](https://github.com/demos-europe/demosplan-ui/pull/718)) Add missing data attr for E-2-E Test ([@ahmad-demos](https://github.com/ahmad-demos))
|
|
24
60
|
- ([#714](https://github.com/demos-europe/demosplan-ui/pull/714)) add csrf token to dpRpc to prevent missing csrf errors ([@muellerdemos](https://github.com/muellerdemos))
|
|
25
61
|
- ([#734](https://github.com/demos-europe/demosplan-ui/pull/734)) Allow mailto links in DpEditor link modal ([@spiess-demos](https://github.com/spiess-demos))
|
|
26
62
|
|
|
63
|
+
## v0.3.5-1 - 2024-02-13
|
|
64
|
+
|
|
65
|
+
### Fixed
|
|
66
|
+
|
|
67
|
+
- ([#747](https://github.com/demos-europe/demosplan-ui/pull/747)) Add missing prop clearOnSelect to DpMultiselect ([@spiess-demos](https://github.com/spiess-demos))
|
|
68
|
+
|
|
27
69
|
## v0.3.5 - 2024-01-09
|
|
28
70
|
|
|
29
71
|
### Fixed
|