@db-ux/v-core-components 5.0.4 → 5.1.1
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/components/custom-select/custom-select.vue.d.ts +2 -0
- package/dist/components/drawer/model.d.ts +0 -1
- package/dist/components/input/input.vue.d.ts +1 -0
- package/dist/components/select/select.vue.d.ts +1 -0
- package/dist/components/textarea/textarea.vue.d.ts +1 -0
- package/dist/db-ux.es.js +227 -206
- package/dist/db-ux.umd.js +1 -1
- package/dist/ponyfills/allow-discrete.d.ts +56 -0
- package/dist/shared/model.d.ts +4 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @db-ux/v-core-components
|
|
2
2
|
|
|
3
|
+
## 5.1.1
|
|
4
|
+
|
|
5
|
+
_version bump_
|
|
6
|
+
|
|
7
|
+
## 5.1.0
|
|
8
|
+
|
|
9
|
+
### Minor Changes
|
|
10
|
+
|
|
11
|
+
- feat: accept `autoComplete` (camelCase) as alias for `autocomplete` on form components - [see commit 6ac2c72](https://github.com/db-ux-design-system/core-web/commit/6ac2c722ea1a3d992218f78c4881b30c2c8c65cf)
|
|
12
|
+
|
|
13
|
+
- refactor(drawer): replace JS transition workaround with CSS native functionality - [see commit 9370d63](https://github.com/db-ux-design-system/core-web/commit/9370d638176cf270e5700094c2a544d712c7413b)
|
|
14
|
+
|
|
3
15
|
## 5.0.4
|
|
4
16
|
|
|
5
17
|
_version bump_
|
|
@@ -34,6 +34,8 @@ declare const __VLS_base: import("@vue/runtime-core").DefineComponent<DBCustomSe
|
|
|
34
34
|
validMessage: string;
|
|
35
35
|
invalidMessage: string;
|
|
36
36
|
messageIcon: import("@db-ux/core-foundations", { with: { "resolution-mode": "import" } }).IconTypes;
|
|
37
|
+
autocomplete: string | import("../../shared/model.js", { with: { "resolution-mode": "import" } }).AutoCompleteType;
|
|
38
|
+
autoComplete: string | import("../../shared/model.js", { with: { "resolution-mode": "import" } }).AutoCompleteType;
|
|
37
39
|
showMessage: boolean | string;
|
|
38
40
|
amountText: string;
|
|
39
41
|
listLabel: string;
|
|
@@ -63,6 +63,5 @@ export type DBDrawerDefaultState = {
|
|
|
63
63
|
isNotModal: () => boolean;
|
|
64
64
|
handleBackdropPointerDown: (event: any) => void;
|
|
65
65
|
backdropPointerDown: boolean;
|
|
66
|
-
_closeTimeoutId?: number;
|
|
67
66
|
};
|
|
68
67
|
export type DBDrawerState = DBDrawerDefaultState & GlobalState & CloseEventState<ClickEvent<HTMLButtonElement | HTMLDialogElement> | GeneralKeyboardEvent<HTMLDialogElement>> & InitializedState;
|
|
@@ -46,6 +46,7 @@ declare const __VLS_base: import("@vue/runtime-core").DefineComponent<DBInputPro
|
|
|
46
46
|
invalidMessage: string;
|
|
47
47
|
messageIcon: import("@db-ux/core-foundations", { with: { "resolution-mode": "import" } }).IconTypes;
|
|
48
48
|
autocomplete: string | import("../../shared/model.js", { with: { "resolution-mode": "import" } }).AutoCompleteType;
|
|
49
|
+
autoComplete: string | import("../../shared/model.js", { with: { "resolution-mode": "import" } }).AutoCompleteType;
|
|
49
50
|
showMessage: boolean | string;
|
|
50
51
|
dataList: string[] | ValueLabelType[];
|
|
51
52
|
dataListId: string;
|
|
@@ -39,6 +39,7 @@ declare const __VLS_base: import("@vue/runtime-core").DefineComponent<DBSelectPr
|
|
|
39
39
|
invalidMessage: string;
|
|
40
40
|
messageIcon: import("@db-ux/core-foundations", { with: { "resolution-mode": "import" } }).IconTypes;
|
|
41
41
|
autocomplete: string | import("../../shared/model.js", { with: { "resolution-mode": "import" } }).AutoCompleteType;
|
|
42
|
+
autoComplete: string | import("../../shared/model.js", { with: { "resolution-mode": "import" } }).AutoCompleteType;
|
|
42
43
|
showMessage: boolean | string;
|
|
43
44
|
options: DBSelectOptionType[];
|
|
44
45
|
showEmptyOption: boolean;
|
|
@@ -32,6 +32,7 @@ declare const __VLS_export: import("@vue/runtime-core").DefineComponent<DBTextar
|
|
|
32
32
|
invalidMessage: string;
|
|
33
33
|
messageIcon: import("@db-ux/core-foundations", { with: { "resolution-mode": "import" } }).IconTypes;
|
|
34
34
|
autocomplete: string | import("../../shared/model.js", { with: { "resolution-mode": "import" } }).AutoCompleteType;
|
|
35
|
+
autoComplete: string | import("../../shared/model.js", { with: { "resolution-mode": "import" } }).AutoCompleteType;
|
|
35
36
|
showMessage: boolean | string;
|
|
36
37
|
maxLength: number | string;
|
|
37
38
|
minLength: number | string;
|