@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.
- package/.claude/settings.local.json +4 -2
- package/.yarn/install-state.gz +0 -0
- package/CHANGELOG.md +23 -0
- package/dist/demosplan-ui.css +1 -0
- package/dist/demosplan-ui.esm.js +41441 -0
- package/dist/demosplan-ui.umd.js +182 -2
- package/eslint.config.js +3 -2
- package/jest.config.js +1 -1
- package/package.json +50 -52
- package/src/components/DpDatepicker/DpDatepicker.vue +6 -2
- package/src/components/DpEditor/DpEditor.vue +7 -3
- package/src/components/DpInlineNotification/DpInlineNotification.vue +6 -2
- package/src/components/DpInput/DpInput.vue +2 -5
- package/src/components/DpModal/DpModal.vue +89 -127
- package/src/components/DpMultiselect/DpMultiselect.vue +7 -0
- package/src/components/DpNotification/DpNotification.vue +31 -4
- package/src/components/DpResettableInput/DpResettableInput.vue +2 -2
- package/src/components/DpTabs/DpTabs.stories.tsx +3 -1
- package/src/components/DpTabs/DpTabs.vue +1 -1
- package/src/components/DpTimePicker/DpTimePicker.vue +4 -4
- package/src/components/DpTooltip/utils/tooltip.js +15 -1
- package/src/components/DpTransitionExpand/DpTransitionExpand.vue +2 -1
- package/src/lib/SideNav.js +15 -11
- package/src/lib/validation/utils/assignHandlerForTrigger.js +5 -1
- package/tokens/dist/css/theme.css +1 -1
- 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/tsconfig.json +0 -3
- package/vite.config.mjs +12 -1
- package/dist/demosplan-ui.umd.js.LICENSE.txt +0 -6
- package/dist/main.css +0 -5
- package/webpack.config.js +0 -113
package/.yarn/install-state.gz
CHANGED
|
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}
|