@demos-europe/demosplan-ui 0.3.3 → 0.3.4
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/CHANGELOG.md +12 -0
- package/dist/demosplan-ui.umd.js +1 -1
- package/dist/demosplan-ui.umd.js.LICENSE.txt +1 -1
- package/package.json +10 -10
- package/src/components/DpAccordion/DpAccordion.vue +1 -1
- package/src/components/DpDataTableExtended/DpSelectPageItemCount.vue +1 -1
- package/src/components/DpDatepicker/DpDatepicker.vue +1 -1
- package/src/components/DpDetails/DpDetails.vue +1 -1
- package/src/components/DpEditor/DpLinkModal.vue +4 -1
- package/src/components/DpEditor/DpUploadModal.vue +4 -2
- package/src/components/DpSearchField/DpSearchField.vue +1 -1
- package/src/components/DpTextArea/DpTextArea.vue +1 -1
- package/src/components/DpTimePicker/DpTimePicker.vue +4 -4
- package/src/components/DpTreeList/DpTreeListNode.vue +1 -1
- package/src/lib/DpApi.js +15 -7
- package/style/style.css +27 -3
- 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/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,18 @@ Since v0.0.10, this Changelog is formatted according to the [Common Changelog][c
|
|
|
4
4
|
|
|
5
5
|
## UNRELEASED
|
|
6
6
|
|
|
7
|
+
## v0.3.4 - 2024-01-05
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- ([#690](https://github.com/demos-europe/demosplan-ui/pull/690)) DpApi method: handles cases where the response does not contain content and cannot be parsed as JSON ([@sakutademos](https://github.com/sakutademos))
|
|
12
|
+
- ([#685](https://github.com/demos-europe/demosplan-ui/pull/685)) Adjust internal imports to resolve properly
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
|
|
16
|
+
- ([#693](https://github.com/demos-europe/demosplan-ui/pull/693)) Use Tailwind utility classes for width and height
|
|
17
|
+
|
|
18
|
+
|
|
7
19
|
## v0.3.3 - 2023-12-11
|
|
8
20
|
|
|
9
21
|
### Changed
|