@demos-europe/demosplan-ui 0.22.0 → 0.23.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.
Files changed (36) hide show
  1. package/.yarn/install-state.gz +0 -0
  2. package/.yarnrc.yml +2 -0
  3. package/CHANGELOG.md +30 -1
  4. package/dist/demosplan-ui.mjs +10578 -13422
  5. package/package.json +16 -14
  6. package/plans/2026-06-03-fix-js-cookie-security-alert.md +53 -0
  7. package/src/components/DpBulkEditHeader/DpBulkEditHeader.vue +10 -9
  8. package/src/components/DpConfirmDialog/DpConfirmDialog.vue +19 -1
  9. package/src/components/DpDataTable/DpDataTable.vue +44 -5
  10. package/src/components/DpDataTable/DpTableRow.vue +3 -2
  11. package/src/components/DpIcon/util/iconConfig.ts +6 -0
  12. package/src/components/DpInput/DpInput.vue +19 -1
  13. package/src/components/DpVideoPlayer/DpVideoPlayer.vue +1 -1
  14. package/src/lib/DpApi.js +2 -2
  15. package/tokens/dist/css/theme.css +1 -1
  16. package/tokens/dist/js/boxShadow.js +1 -1
  17. package/tokens/dist/js/breakpoints.js +1 -1
  18. package/tokens/dist/js/color.brand.js +1 -1
  19. package/tokens/dist/js/color.data.js +1 -1
  20. package/tokens/dist/js/color.palette.js +1 -1
  21. package/tokens/dist/js/color.ui.js +1 -1
  22. package/tokens/dist/js/fontSize.js +1 -1
  23. package/tokens/dist/js/rounded.js +1 -1
  24. package/tokens/dist/js/space.js +1 -1
  25. package/tokens/dist/js/zIndex.js +1 -1
  26. package/tokens/dist/scss/_boxShadow.scss +1 -1
  27. package/tokens/dist/scss/_breakpoints.scss +1 -1
  28. package/tokens/dist/scss/_color.brand.scss +1 -1
  29. package/tokens/dist/scss/_color.data.scss +1 -1
  30. package/tokens/dist/scss/_color.palette.scss +1 -1
  31. package/tokens/dist/scss/_color.ui.scss +1 -1
  32. package/tokens/dist/scss/_fontSize.scss +1 -1
  33. package/tokens/dist/scss/_rounded.scss +1 -1
  34. package/tokens/dist/scss/_space.scss +1 -1
  35. package/tokens/dist/scss/_zIndex.scss +1 -1
  36. package/types/icons.ts +2 -0
Binary file
package/.yarnrc.yml CHANGED
@@ -1,2 +1,4 @@
1
1
  progressBarStyle: "patrick"
2
2
  nodeLinker: "node-modules"
3
+ # npm worm protection: do not run dependency install scripts
4
+ enableScripts: false
package/CHANGELOG.md CHANGED
@@ -4,6 +4,36 @@ Since v0.0.10, this Changelog is formatted according to the [Common Changelog][c
4
4
 
5
5
  ## UNRELEASED
6
6
 
7
+ ## v0.23.0 - 2026-06-11
8
+
9
+ ### Added
10
+ - ([#1506](https://github.com/demos-europe/demosplan-ui/pull/1506))
11
+ - DpIcon: add `folders` and `arrow-square-out` icons
12
+ - DpDataTable: add lockMessageBy prop for per-row locked-checkbox tooltip messages
13
+ - DpApi: send json:api headers for `api/3.0/` URLs (fixes 415 on API Platform requests) ([@riechedemos](https://github.com/riechedemos))
14
+ - ([#1513](https://github.com/demos-europe/demosplan-ui/pull/1513)) DpDataTable: Add flyoutWidth prop (px only, min: 60px, default: 60px) ([@rafelddemos](https://github.com/rafelddemos))
15
+ - ([#1501](https://github.com/demos-europe/demosplan-ui/pull/1501)) DpInput: Add prop for invalid state ([@rafelddemos](https://github.com/rafelddemos))
16
+ - ([#1487](https://github.com/demos-europe/demosplan-ui/pull/1487)) DpDataTable: add `lockCheckboxHint` prop ([@meissnerdemos](https://github.com/meissnerdemos))
17
+ - ([#1510](https://github.com/demos-europe/demosplan-ui/pull/1510)) DpConfirmDialog: optional `icon` prop rendered before the header text ([@meissnerdemos](https://github.com/meissnerdemos))
18
+
19
+ ### Changed
20
+ - ([#1506](https://github.com/demos-europe/demosplan-ui/pull/1506)) DpBulkEditHeader: reorder action buttons so abort sits left ([@riechedemos](https://github.com/riechedemos))
21
+ - ([#1487](https://github.com/demos-europe/demosplan-ui/pull/1487)) DpTableRow: adjust locked icon ([@meissnerdemos](https://github.com/meissnerdemos))
22
+ - Dependency updates:
23
+ - @vue/server-renderer from 3.5.24 to 3.5.33,
24
+ - dompurify from ^3.0.0 to ^3.4.5,
25
+ - uuid from ^13.0.0 to ^13.0.2
26
+ - @storybook/addon-docs from 10.2.13 to 10.4.0,
27
+ - @storybook/addon-links from 10.2.13 to 10.4.0,
28
+ - @storybook/vue3-vite from 10.2.13 to 10.4.0,
29
+ - @vue/compat from 3.5.24 to 3.5.33,
30
+ - @vue/compiler-sfc from 3.5.24 to 3.5.33,
31
+ - postcss from ^8.4.49 to ^8.5.15
32
+ - storybook from 10.2.13 to 10.4.0,
33
+ - vite from ^7.2.2 to ^7.3.3,
34
+ - vue from 3.5.24 to 3.5.33
35
+
36
+
7
37
  ## v0.22.0 - 2026-05-18
8
38
 
9
39
  ### Added
@@ -16,7 +46,6 @@ Since v0.0.10, this Changelog is formatted according to the [Common Changelog][c
16
46
  - ([#1488](https://github.com/demos-europe/demosplan-ui/pull/1488)) DpDraggable: Use `e.item` in `onEnd` so the dragged
17
47
  element is correct on cross-list tag drops & DpTreeList: Add `end` and `start` to the `emits` array to silence Vue warnings([@riechedemos](https://github.com/riechedemos))
18
48
 
19
-
20
49
  ## v0.20.0 - 2026-5-5
21
50
 
22
51
  ### Changed