@demos-europe/demosplan-ui 0.18.0 → 0.19.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/.yarn/install-state.gz +0 -0
- package/CHANGELOG.md +14 -0
- package/dist/demosplan-ui.mjs +13001 -12744
- package/eslint.config.js +1 -1
- package/jest/shallowMountWithGlobalMocks.js +3 -11
- package/package.json +9 -15
- package/src/components/DpEditor/DpEditor.vue +10 -1
- package/src/components/DpEditor/libs/customExtensions.js +2 -0
- package/src/components/DpEditor/libs/languageTool/LanguageToolExtension.js +222 -0
- package/src/components/DpEditor/libs/languageTool/languageTool.js +20 -0
- package/src/components/DpEditor/libs/languageTool/languageToolTooltip.js +210 -0
- package/src/components/DpEditor/libs/languageTool/textOffsetMapper.js +62 -0
- package/src/components/DpMultiselect/DpMultiselect.vue +5 -2
- package/src/components/DpTabs/DpTabs.vue +7 -1
- package/src/components/DpTooltip/utils/tooltip.js +18 -4
- package/src/components/index.js +1 -1
- package/src/components/shared/translations.js +4 -0
- package/src/lib/DpApi.js +1 -0
- 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/vite.config.mjs +19 -0
- package/Jenkinsfile +0 -19
- package/babel.config.js +0 -11
- package/jest.config.js +0 -56
package/.yarn/install-state.gz
CHANGED
|
Binary file
|
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,20 @@ Since v0.0.10, this Changelog is formatted according to the [Common Changelog][c
|
|
|
4
4
|
|
|
5
5
|
## UNRELEASED
|
|
6
6
|
|
|
7
|
+
## v0.19.0 - 2026-4-30
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
- ([#1473](https://github.com/demos-europe/demosplan-ui/pull/1473)) DpEditor: Add LanguageTool integration for spellchecking and grammar checking, interactive tooltips for suggestions ([@sakutademos](https://github.com/sakutademos))
|
|
11
|
+
- ([#1474](https://github.com/demos-europe/demosplan-ui/pull/1474)) DpTabs: add ability that makes it possible to change active tab by prop and not only by click([@huellnerdemos](https://github.com/huellnerdemos))
|
|
12
|
+
- ([#1456](https://github.com/demos-europe/demosplan-ui/pull/1456)) DpApi: Add CSRF token to Api 2.0 default headers ([@rafelddemos](https://github.com/rafelddemos))
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
- ([#1481](https://github.com/demos-europe/demosplan-ui/pull/1481)) DpTooltip: Floor the inline z-index at the tooltip design token ([@meissnerdemos](https://github.com/meissnerdemos))
|
|
16
|
+
- ([#1480](https://github.com/demos-europe/demosplan-ui/pull/1480)) DpMultiselect: restore beforeList slot for single selects ([@hwiem](https://github.com/hwiem))
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
- ([#1477](https://github.com/demos-europe/demosplan-ui/pull/1477)) Unit tests: Replace jest with vitest ([@hwiem](https://github.com/hwiem))
|
|
20
|
+
|
|
7
21
|
## v0.18.0 - 2026-4-24
|
|
8
22
|
|
|
9
23
|
### Added
|