@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.
Files changed (43) hide show
  1. package/.yarn/install-state.gz +0 -0
  2. package/CHANGELOG.md +14 -0
  3. package/dist/demosplan-ui.mjs +13001 -12744
  4. package/eslint.config.js +1 -1
  5. package/jest/shallowMountWithGlobalMocks.js +3 -11
  6. package/package.json +9 -15
  7. package/src/components/DpEditor/DpEditor.vue +10 -1
  8. package/src/components/DpEditor/libs/customExtensions.js +2 -0
  9. package/src/components/DpEditor/libs/languageTool/LanguageToolExtension.js +222 -0
  10. package/src/components/DpEditor/libs/languageTool/languageTool.js +20 -0
  11. package/src/components/DpEditor/libs/languageTool/languageToolTooltip.js +210 -0
  12. package/src/components/DpEditor/libs/languageTool/textOffsetMapper.js +62 -0
  13. package/src/components/DpMultiselect/DpMultiselect.vue +5 -2
  14. package/src/components/DpTabs/DpTabs.vue +7 -1
  15. package/src/components/DpTooltip/utils/tooltip.js +18 -4
  16. package/src/components/index.js +1 -1
  17. package/src/components/shared/translations.js +4 -0
  18. package/src/lib/DpApi.js +1 -0
  19. package/tokens/dist/css/theme.css +1 -1
  20. package/tokens/dist/js/boxShadow.js +1 -1
  21. package/tokens/dist/js/breakpoints.js +1 -1
  22. package/tokens/dist/js/color.brand.js +1 -1
  23. package/tokens/dist/js/color.data.js +1 -1
  24. package/tokens/dist/js/color.palette.js +1 -1
  25. package/tokens/dist/js/color.ui.js +1 -1
  26. package/tokens/dist/js/fontSize.js +1 -1
  27. package/tokens/dist/js/rounded.js +1 -1
  28. package/tokens/dist/js/space.js +1 -1
  29. package/tokens/dist/js/zIndex.js +1 -1
  30. package/tokens/dist/scss/_boxShadow.scss +1 -1
  31. package/tokens/dist/scss/_breakpoints.scss +1 -1
  32. package/tokens/dist/scss/_color.brand.scss +1 -1
  33. package/tokens/dist/scss/_color.data.scss +1 -1
  34. package/tokens/dist/scss/_color.palette.scss +1 -1
  35. package/tokens/dist/scss/_color.ui.scss +1 -1
  36. package/tokens/dist/scss/_fontSize.scss +1 -1
  37. package/tokens/dist/scss/_rounded.scss +1 -1
  38. package/tokens/dist/scss/_space.scss +1 -1
  39. package/tokens/dist/scss/_zIndex.scss +1 -1
  40. package/vite.config.mjs +19 -0
  41. package/Jenkinsfile +0 -19
  42. package/babel.config.js +0 -11
  43. package/jest.config.js +0 -56
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