@db-ux/v-core-components 4.2.6 → 4.3.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 +10 -0
- package/dist/components/custom-select/model.d.ts +1 -1
- package/dist/components/link/link.vue.d.ts +3 -1
- package/dist/db-ux.es.js +808 -759
- package/dist/db-ux.umd.js +1 -1
- package/dist/shared/constants.d.ts +2 -0
- package/dist/shared/examples/index.d.ts +4 -0
- package/dist/shared/model.d.ts +12 -0
- package/dist/utils/index.d.ts +10 -0
- package/dist/utils/index.spec.d.ts +1 -0
- package/package.json +9 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @db-ux/v-core-components
|
|
2
2
|
|
|
3
|
+
## 4.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- _version bump_ (staying in sync with the Figma library) - [see commit 9e03702](https://github.com/db-ux-design-system/core-web/commit/9e0370266511fa99085ff837e430ad83f28856ec)
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- fix(input): support `step`-HTML-attribute/-property with `"any"` value for `number` inputs - [see commit 748d1af](https://github.com/db-ux-design-system/core-web/commit/748d1af8ca38c8c10ea134ef23b2846e047186a6)
|
|
12
|
+
|
|
3
13
|
## 4.2.6
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
|
@@ -142,7 +142,7 @@ export type DBCustomSelectDefaultProps = {
|
|
|
142
142
|
selectedLabels?: string;
|
|
143
143
|
/**
|
|
144
144
|
* Optional: Prefix text announced by screen readers before the selection
|
|
145
|
-
* (e.g
|
|
145
|
+
* (e.g. "Selected").
|
|
146
146
|
*/
|
|
147
147
|
selectedPrefix?: string;
|
|
148
148
|
/**
|
|
@@ -14,11 +14,13 @@ declare const __VLS_base: import("vue").DefineComponent<DBLinkProps, {}, {}, {},
|
|
|
14
14
|
variant: import("./model").LinkVariantType;
|
|
15
15
|
size: import("./model").LinkSizeType;
|
|
16
16
|
showIcon: boolean | string;
|
|
17
|
-
target: import("../..").LinkTargetType;
|
|
18
17
|
role: string;
|
|
18
|
+
target: import("../..").LinkTargetType;
|
|
19
19
|
href: string;
|
|
20
20
|
hreflang: string;
|
|
21
21
|
rel: string;
|
|
22
|
+
referrerpolicy: import("../..").LinkReferrerPolicyType;
|
|
23
|
+
referrerPolicy: import("../..").LinkReferrerPolicyType;
|
|
22
24
|
wrap: boolean | string;
|
|
23
25
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
24
26
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|