@demos-europe/demosplan-ui 0.3.15 → 0.3.17
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 +22 -0
- package/dist/demosplan-ui.umd.js +1 -1
- package/package.json +1 -1
- package/src/components/DpDataTable/DpDataTable.vue +7 -3
- package/src/components/DpDataTableExtended/DpDataTableExtended.vue +18 -10
- package/src/components/DpEditableList/DpEditableList.vue +12 -6
- package/src/components/DpMultistepNav/DpMultistepNav.vue +7 -0
- package/src/utils/index.js +2 -0
- package/src/utils/resistFingerprintingDuckTest.js +49 -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/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,28 @@ Since v0.0.10, this Changelog is formatted according to the [Common Changelog][c
|
|
|
4
4
|
|
|
5
5
|
## UNRELEASED
|
|
6
6
|
|
|
7
|
+
## v0.3.17 - 2024-05-30
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
- ([#878](https://github.com/demos-europe/demosplan-ui/pull/878)) BREAKING: Prevent "select all" in DpDataTable from selecting "locked" items. Before, all items per page were selected, independent of the lock state ([@salisdemos](https://github.com/salisdemos))
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
|
|
15
|
+
- ([#881](https://github.com/demos-europe/demosplan-ui/pull/881)) Add data attributes for E-2-E Test ([@ahmad-demos](https://github.com/ahmad-demos))
|
|
16
|
+
- ([#875](https://github.com/demos-europe/demosplan-ui/pull/875)) Utils: add resistFingerprintingDuckTest ([@spiess-demos](https://github.com/spiess-demos))
|
|
17
|
+
- ([#879](https://github.com/demos-europe/demosplan-ui/pull/879)) DpDataTableExtended: Add prop for translations to pass on to DpDataTable ([@gruenbergerdemos](https://github.com/gruenbergerdemos))
|
|
18
|
+
|
|
19
|
+
## v0.3.16 - 2024-05-24
|
|
20
|
+
|
|
21
|
+
### Changed
|
|
22
|
+
|
|
23
|
+
- ([#856](https://github.com/demos-europe/demosplan-ui/pull/856)) Bump @tiptap to 2.4.0 ([@spiess-demos](https://github.com/spiess-demos))
|
|
24
|
+
|
|
25
|
+
### Added
|
|
26
|
+
|
|
27
|
+
- ([#868](https://github.com/demos-europe/demosplan-ui/pull/868)) Add data attributes for E-2-E Test ([@ahmad-demos](https://github.com/ahmad-demos))
|
|
28
|
+
|
|
7
29
|
## v0.3.15 - 2024-05-22
|
|
8
30
|
|
|
9
31
|
### Added
|