@demos-europe/demosplan-ui 0.5.8 → 0.6.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 (50) hide show
  1. package/.claude/settings.local.json +4 -2
  2. package/.yarn/install-state.gz +0 -0
  3. package/CHANGELOG.md +23 -0
  4. package/dist/demosplan-ui.css +1 -0
  5. package/dist/demosplan-ui.esm.js +41441 -0
  6. package/dist/demosplan-ui.umd.js +182 -2
  7. package/eslint.config.js +3 -2
  8. package/jest.config.js +1 -1
  9. package/package.json +50 -52
  10. package/src/components/DpDatepicker/DpDatepicker.vue +6 -2
  11. package/src/components/DpEditor/DpEditor.vue +7 -3
  12. package/src/components/DpInlineNotification/DpInlineNotification.vue +6 -2
  13. package/src/components/DpInput/DpInput.vue +2 -5
  14. package/src/components/DpModal/DpModal.vue +89 -127
  15. package/src/components/DpMultiselect/DpMultiselect.vue +7 -0
  16. package/src/components/DpNotification/DpNotification.vue +31 -4
  17. package/src/components/DpResettableInput/DpResettableInput.vue +2 -2
  18. package/src/components/DpTabs/DpTabs.stories.tsx +3 -1
  19. package/src/components/DpTabs/DpTabs.vue +1 -1
  20. package/src/components/DpTimePicker/DpTimePicker.vue +4 -4
  21. package/src/components/DpTooltip/utils/tooltip.js +15 -1
  22. package/src/components/DpTransitionExpand/DpTransitionExpand.vue +2 -1
  23. package/src/lib/SideNav.js +15 -11
  24. package/src/lib/validation/utils/assignHandlerForTrigger.js +5 -1
  25. package/tokens/dist/css/theme.css +1 -1
  26. package/tokens/dist/js/boxShadow.js +1 -1
  27. package/tokens/dist/js/breakpoints.js +1 -1
  28. package/tokens/dist/js/color.brand.js +1 -1
  29. package/tokens/dist/js/color.data.js +1 -1
  30. package/tokens/dist/js/color.palette.js +1 -1
  31. package/tokens/dist/js/color.ui.js +1 -1
  32. package/tokens/dist/js/fontSize.js +1 -1
  33. package/tokens/dist/js/rounded.js +1 -1
  34. package/tokens/dist/js/space.js +1 -1
  35. package/tokens/dist/js/zIndex.js +1 -1
  36. package/tokens/dist/scss/_boxShadow.scss +1 -1
  37. package/tokens/dist/scss/_breakpoints.scss +1 -1
  38. package/tokens/dist/scss/_color.brand.scss +1 -1
  39. package/tokens/dist/scss/_color.data.scss +1 -1
  40. package/tokens/dist/scss/_color.palette.scss +1 -1
  41. package/tokens/dist/scss/_color.ui.scss +1 -1
  42. package/tokens/dist/scss/_fontSize.scss +1 -1
  43. package/tokens/dist/scss/_rounded.scss +1 -1
  44. package/tokens/dist/scss/_space.scss +1 -1
  45. package/tokens/dist/scss/_zIndex.scss +1 -1
  46. package/tsconfig.json +0 -3
  47. package/vite.config.mjs +12 -1
  48. package/dist/demosplan-ui.umd.js.LICENSE.txt +0 -6
  49. package/dist/main.css +0 -5
  50. package/webpack.config.js +0 -113
@@ -1,8 +1,10 @@
1
1
  {
2
2
  "permissions": {
3
3
  "allow": [
4
- "Bash(docker compose:*)"
4
+ "Bash(docker compose:*)",
5
+ "WebSearch",
6
+ "WebFetch(domain:github.com)"
5
7
  ],
6
8
  "deny": []
7
9
  }
8
- }
10
+ }
Binary file
package/CHANGELOG.md CHANGED
@@ -4,6 +4,29 @@ Since v0.0.10, this Changelog is formatted according to the [Common Changelog][c
4
4
 
5
5
  ## UNRELEASED
6
6
 
7
+ ## v0.6.0 - 2025-12-1
8
+
9
+ ### Changed
10
+
11
+ - ([#1409](https://github.com/demos-europe/demosplan-ui/pull/1409)) Make demosplan-ui tree-shakeable (requires node >= 20.19.0 in development), replace webpack with vite ([@hwiem](https://github.com/hwiem))
12
+
13
+ ### Fixed
14
+ - ([#1407](https://github.com/demos-europe/demosplan-ui/pull/1407)) DpEditor: Prevent cursor jump after obscuring text ([@hwiem](https://github.com/hwiem))
15
+
16
+
17
+ ## v0.5.9 - 2025-11-18
18
+
19
+ ### Added
20
+ - ([#1401](https://github.com/demos-europe/demosplan-ui/pull/1401)) DpMultiselect: add new prop ([@sakutademos](https://github.com/sakutademos)
21
+
22
+ ### Fixed
23
+ - ([#1400](https://github.com/demos-europe/demosplan-ui/pull/1400)) DpModal: Refactor to use native dialog element for improved accessibility and focus management ([@meissnerdemos](https://github.com/meissnerdemos))
24
+ - ([#1384](https://github.com/demos-europe/demosplan-ui/pull/1384)) DpNotification: Improve accessibility by enabling focus on close button and using appropriate ARIA roles ([@meissnerdemos](https://github.com/meissnerdemos))
25
+
26
+ ### Changed
27
+ - ([#1399](https://github.com/demos-europe/demosplan-ui/pull/1399)) DpTabs: make it responsive ([@sakutademos](https://github.com/sakutademos)
28
+ - ([#1377](https://github.com/demos-europe/demosplan-ui/pull/1377)) BREAKING: DpInput: Remove support for vue 2 v-model pattern ([@hwiem](https://github.com/hwiem))
29
+
7
30
  ## v0.5.8 - 2025-10-15
8
31
 
9
32
  ### Fixed
@@ -0,0 +1 @@
1
+ li{margin-bottom:-1px}