@db-ux/v-core-components 4.9.0-1-c55de66 → 4.9.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/CHANGELOG.md +11 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @db-ux/v-core-components
|
|
2
2
|
|
|
3
|
+
## 4.9.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- refactor: allow text and children to be used together in components - [see commit cecb833](https://github.com/db-ux-design-system/core-web/commit/cecb833e2d2b2d15b47f9ac1ed57ccf1040374f0):
|
|
8
|
+
- feat: add `text` property to components that previously only supported children for their label, like e.g. `DBTooltip`.
|
|
9
|
+
- refactor: allow `text` property and components children to be used in parallel in components. Previously, `text` and children were mutually exclusive.
|
|
10
|
+
- refactor(`DBRadio`, `DBCheckbox`, `DBSwitch`): `label` and `children` can now be used together. Previously they were mutually exclusive.
|
|
11
|
+
- fix(`DBTag`): changed render order of `children` and `text` to align with design (children rendered before text).
|
|
12
|
+
|
|
3
13
|
## 4.8.0
|
|
4
14
|
|
|
5
15
|
### Minor Changes
|
|
@@ -189,7 +199,7 @@ _version bump_
|
|
|
189
199
|
|
|
190
200
|
- fix: set DBTabItem internal state `_selected` correctly - [see commit f7625cb](https://github.com/db-ux-design-system/core-web/commit/f7625cbd9d64513527e826c9d2c1ef42b2734a4b):
|
|
191
201
|
|
|
192
|
-
|
|
202
|
+
- Now also sets aria-selected=true|false correctly which improves screen reader behaviour
|
|
193
203
|
|
|
194
204
|
## 4.2.1
|
|
195
205
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@db-ux/v-core-components",
|
|
3
|
-
"version": "4.9.0
|
|
3
|
+
"version": "4.9.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Vue components for @db-ux/core-components",
|
|
6
6
|
"repository": {
|
|
@@ -28,8 +28,8 @@
|
|
|
28
28
|
"dist/"
|
|
29
29
|
],
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@db-ux/core-components": "4.9.0
|
|
32
|
-
"@db-ux/core-foundations": "4.9.0
|
|
31
|
+
"@db-ux/core-components": "4.9.0",
|
|
32
|
+
"@db-ux/core-foundations": "4.9.0"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@playwright/experimental-ct-vue": "1.60.0",
|