@dpa-id-components/dpa-shared-components 12.1.0 → 12.2.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/dist/components/UiAutocomplete/UiAutocomplete.stories.d.ts +29 -29
- package/dist/components/UiAutocomplete/UiAutocomplete.vue.d.ts +29 -29
- package/dist/components/UiButton/UiButton.stories.d.ts +3 -3
- package/dist/components/UiButton/UiButton.vue.d.ts +1 -1
- package/dist/components/UiCheckBox/UiCheckBox.stories.d.ts +7 -6
- package/dist/components/UiCheckBox/UiCheckBox.vue.d.ts +4 -4
- package/dist/components/UiCheckBoxGroup/UiCheckBoxGroup.stories.d.ts +6 -6
- package/dist/components/UiCheckBoxGroup/UiCheckBoxGroup.vue.d.ts +6 -6
- package/dist/components/UiColorPicker/UiColorPicker.stories.d.ts +3 -3
- package/dist/components/UiColorPicker/UiColorPicker.vue.d.ts +3 -3
- package/dist/components/UiDatePicker/UiDatePicker.stories.d.ts +48 -48
- package/dist/components/UiDatePicker/UiDatePicker.vue.d.ts +5 -5
- package/dist/components/UiDialog/UiDialog.stories.d.ts +20 -20
- package/dist/components/UiDialog/UiDialog.vue.d.ts +2 -2
- package/dist/components/UiFilterBadge/UiFilterBadge.stories.d.ts +3 -3
- package/dist/components/UiFilterBadgeButton/UiFilterBadgeButton.stories.d.ts +23 -23
- package/dist/components/UiFilterBadgeButton/UiFilterBadgeButton.vue.d.ts +2 -2
- package/dist/components/UiFilterButton/UiFilterButton.stories.d.ts +8 -8
- package/dist/components/UiFilterButton/UiFilterButton.vue.d.ts +2 -2
- package/dist/components/UiIconButton/UiIconButton.stories.d.ts +12 -12
- package/dist/components/UiIconButton/UiIconButton.vue.d.ts +3 -3
- package/dist/components/UiInfoContent/UiInfoContent.stories.d.ts +2 -2
- package/dist/components/UiInput/UiInput.stories.d.ts +125 -113
- package/dist/components/UiInput/UiInput.vue.d.ts +12 -11
- package/dist/components/UiList/UiList.stories.d.ts +11 -11
- package/dist/components/UiListItem/UiListItem.stories.d.ts +44 -44
- package/dist/components/UiListItem/UiListItem.vue.d.ts +4 -4
- package/dist/components/UiMenu/UiMenu.stories.d.ts +17 -8
- package/dist/components/UiMenu/UiMenu.vue.d.ts +13 -7
- package/dist/components/UiOverlay/UiOverlay.stories.d.ts +20 -20
- package/dist/components/UiOverlay/UiOverlay.vue.d.ts +2 -2
- package/dist/components/UiOverlayMenu/UiOverlayMenu.stories.d.ts +42 -42
- package/dist/components/UiOverlayMenu/UiOverlayMenu.vue.d.ts +2 -2
- package/dist/components/UiRadioInputGroup/UiRadioInputGroup.stories.d.ts +16 -48
- package/dist/components/UiRadioInputGroup/UiRadioInputGroup.vue.d.ts +8 -7
- package/dist/components/UiSearchBar/UiSearchBar.stories.d.ts +30 -30
- package/dist/components/UiSearchBar/UiSearchBar.vue.d.ts +12 -12
- package/dist/components/UiSearchInput/UiSearchInput.stories.d.ts +68 -68
- package/dist/components/UiSearchInput/UiSearchInput.vue.d.ts +7 -7
- package/dist/components/UiSimpleInput/UiSimpleInput.stories.d.ts +8 -8
- package/dist/components/UiSimpleInput/UiSimpleInput.vue.d.ts +2 -2
- package/dist/components/UiSnackbar/UiSnackbar.stories.d.ts +40 -40
- package/dist/components/UiSnackbar/UiSnackbar.vue.d.ts +4 -4
- package/dist/dpa-shared-components.mjs +2833 -2851
- package/dist/dpa-shared-components.umd.js +4 -4
- package/dist/style.css +1 -1
- package/package.json +6 -6
|
@@ -9,8 +9,8 @@ declare const meta: {
|
|
|
9
9
|
backgroundColor?: "blue" | "none" | "gray-hover";
|
|
10
10
|
iconColor?: "blue" | "gray" | "white";
|
|
11
11
|
size?: "small" | "medium" | "large" | "xl";
|
|
12
|
-
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
13
|
-
click: (
|
|
12
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
13
|
+
click: (args_0: MouseEvent) => any;
|
|
14
14
|
}, string, import('vue').PublicProps, Readonly<{
|
|
15
15
|
iconName: (typeof iconNames)[number];
|
|
16
16
|
title?: string;
|
|
@@ -19,7 +19,7 @@ declare const meta: {
|
|
|
19
19
|
iconColor?: "blue" | "gray" | "white";
|
|
20
20
|
size?: "small" | "medium" | "large" | "xl";
|
|
21
21
|
}> & Readonly<{
|
|
22
|
-
onClick?: ((
|
|
22
|
+
onClick?: ((args_0: MouseEvent) => any) | undefined;
|
|
23
23
|
}>, {
|
|
24
24
|
size: "small" | "medium" | "large" | "xl";
|
|
25
25
|
disabled: boolean;
|
|
@@ -58,8 +58,8 @@ declare const meta: {
|
|
|
58
58
|
backgroundColor?: "blue" | "none" | "gray-hover";
|
|
59
59
|
iconColor?: "blue" | "gray" | "white";
|
|
60
60
|
size?: "small" | "medium" | "large" | "xl";
|
|
61
|
-
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
62
|
-
click: (
|
|
61
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
62
|
+
click: (args_0: MouseEvent) => any;
|
|
63
63
|
}, string, import('vue').PublicProps, Readonly<{
|
|
64
64
|
iconName: (typeof iconNames)[number];
|
|
65
65
|
title?: string;
|
|
@@ -68,7 +68,7 @@ declare const meta: {
|
|
|
68
68
|
iconColor?: "blue" | "gray" | "white";
|
|
69
69
|
size?: "small" | "medium" | "large" | "xl";
|
|
70
70
|
}> & Readonly<{
|
|
71
|
-
onClick?: ((
|
|
71
|
+
onClick?: ((args_0: MouseEvent) => any) | undefined;
|
|
72
72
|
}>, {
|
|
73
73
|
size: "small" | "medium" | "large" | "xl";
|
|
74
74
|
disabled: boolean;
|
|
@@ -84,8 +84,8 @@ declare const meta: {
|
|
|
84
84
|
backgroundColor?: "blue" | "none" | "gray-hover";
|
|
85
85
|
iconColor?: "blue" | "gray" | "white";
|
|
86
86
|
size?: "small" | "medium" | "large" | "xl";
|
|
87
|
-
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
88
|
-
click: (
|
|
87
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
88
|
+
click: (args_0: MouseEvent) => any;
|
|
89
89
|
}, string, import('vue').PublicProps, Readonly<{
|
|
90
90
|
iconName: (typeof iconNames)[number];
|
|
91
91
|
title?: string;
|
|
@@ -94,7 +94,7 @@ declare const meta: {
|
|
|
94
94
|
iconColor?: "blue" | "gray" | "white";
|
|
95
95
|
size?: "small" | "medium" | "large" | "xl";
|
|
96
96
|
}> & Readonly<{
|
|
97
|
-
onClick?: ((
|
|
97
|
+
onClick?: ((args_0: MouseEvent) => any) | undefined;
|
|
98
98
|
}>, {
|
|
99
99
|
size: "small" | "medium" | "large" | "xl";
|
|
100
100
|
disabled: boolean;
|
|
@@ -111,8 +111,8 @@ declare const meta: {
|
|
|
111
111
|
backgroundColor?: "blue" | "none" | "gray-hover";
|
|
112
112
|
iconColor?: "blue" | "gray" | "white";
|
|
113
113
|
size?: "small" | "medium" | "large" | "xl";
|
|
114
|
-
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
115
|
-
click: (
|
|
114
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
115
|
+
click: (args_0: MouseEvent) => any;
|
|
116
116
|
}, string, import('vue').PublicProps, Readonly<{
|
|
117
117
|
iconName: (typeof iconNames)[number];
|
|
118
118
|
title?: string;
|
|
@@ -121,7 +121,7 @@ declare const meta: {
|
|
|
121
121
|
iconColor?: "blue" | "gray" | "white";
|
|
122
122
|
size?: "small" | "medium" | "large" | "xl";
|
|
123
123
|
}> & Readonly<{
|
|
124
|
-
onClick?: ((
|
|
124
|
+
onClick?: ((args_0: MouseEvent) => any) | undefined;
|
|
125
125
|
}>, {
|
|
126
126
|
size: "small" | "medium" | "large" | "xl";
|
|
127
127
|
disabled: boolean;
|
|
@@ -7,10 +7,10 @@ type __VLS_Props = {
|
|
|
7
7
|
iconColor?: "blue" | "gray" | "white";
|
|
8
8
|
size?: "small" | "medium" | "large" | "xl";
|
|
9
9
|
};
|
|
10
|
-
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
11
|
-
click: (
|
|
10
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
11
|
+
click: (args_0: MouseEvent) => any;
|
|
12
12
|
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
13
|
-
onClick?: ((
|
|
13
|
+
onClick?: ((args_0: MouseEvent) => any) | undefined;
|
|
14
14
|
}>, {
|
|
15
15
|
size: "small" | "medium" | "large" | "xl";
|
|
16
16
|
disabled: boolean;
|
|
@@ -236,7 +236,7 @@ declare const meta: {
|
|
|
236
236
|
rounded?: boolean;
|
|
237
237
|
}> & Readonly<{
|
|
238
238
|
onClick?: (() => any) | undefined;
|
|
239
|
-
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
239
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
240
240
|
click: () => any;
|
|
241
241
|
}, import('vue').PublicProps, {
|
|
242
242
|
size: "xs" | "small" | "medium" | "large";
|
|
@@ -285,7 +285,7 @@ declare const meta: {
|
|
|
285
285
|
rounded?: boolean;
|
|
286
286
|
}> & Readonly<{
|
|
287
287
|
onClick?: (() => any) | undefined;
|
|
288
|
-
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
288
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
289
289
|
click: () => any;
|
|
290
290
|
}, string, {
|
|
291
291
|
size: "xs" | "small" | "medium" | "large";
|
|
@@ -4,7 +4,7 @@ declare const meta: {
|
|
|
4
4
|
component: {
|
|
5
5
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
6
6
|
id?: string;
|
|
7
|
-
modelValue
|
|
7
|
+
modelValue?: string;
|
|
8
8
|
type?: "text" | "number" | "time" | "date" | "password" | "datetime-local";
|
|
9
9
|
label?: string;
|
|
10
10
|
placeholder?: string;
|
|
@@ -24,25 +24,26 @@ declare const meta: {
|
|
|
24
24
|
inputStatus?: "default" | "info" | "readonly" | "warning" | "error";
|
|
25
25
|
isUiAutocomplete?: boolean;
|
|
26
26
|
}> & Readonly<{
|
|
27
|
-
onBlur?: ((
|
|
28
|
-
onFocus?: ((
|
|
29
|
-
onInput?: ((
|
|
30
|
-
onKeyup?: ((
|
|
31
|
-
"onUpdate:modelValue"?: ((
|
|
27
|
+
onBlur?: ((args_0: FocusEvent) => any) | undefined;
|
|
28
|
+
onFocus?: ((args_0: FocusEvent) => any) | undefined;
|
|
29
|
+
onInput?: ((args_0: string) => any) | undefined;
|
|
30
|
+
onKeyup?: ((args_0: KeyboardEvent) => any) | undefined;
|
|
31
|
+
"onUpdate:modelValue"?: ((args_0: string) => any) | undefined;
|
|
32
32
|
}>, {
|
|
33
33
|
inputRef: import('vue').Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
|
|
34
34
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
35
|
-
blur: (
|
|
36
|
-
focus: (
|
|
37
|
-
input: (
|
|
38
|
-
keyup: (
|
|
39
|
-
"update:modelValue": (
|
|
35
|
+
blur: (args_0: FocusEvent) => any;
|
|
36
|
+
focus: (args_0: FocusEvent) => any;
|
|
37
|
+
input: (args_0: string) => any;
|
|
38
|
+
keyup: (args_0: KeyboardEvent) => any;
|
|
39
|
+
"update:modelValue": (args_0: string) => any;
|
|
40
40
|
}, import('vue').PublicProps, {
|
|
41
41
|
type: "text" | "number" | "time" | "date" | "password" | "datetime-local";
|
|
42
42
|
disabled: boolean;
|
|
43
43
|
label: string;
|
|
44
44
|
readonly: boolean;
|
|
45
45
|
id: string;
|
|
46
|
+
modelValue: string;
|
|
46
47
|
placeholder: string;
|
|
47
48
|
autofocus: boolean;
|
|
48
49
|
chevron: boolean;
|
|
@@ -68,7 +69,7 @@ declare const meta: {
|
|
|
68
69
|
Defaults: {};
|
|
69
70
|
}, Readonly<{
|
|
70
71
|
id?: string;
|
|
71
|
-
modelValue
|
|
72
|
+
modelValue?: string;
|
|
72
73
|
type?: "text" | "number" | "time" | "date" | "password" | "datetime-local";
|
|
73
74
|
label?: string;
|
|
74
75
|
placeholder?: string;
|
|
@@ -88,11 +89,11 @@ declare const meta: {
|
|
|
88
89
|
inputStatus?: "default" | "info" | "readonly" | "warning" | "error";
|
|
89
90
|
isUiAutocomplete?: boolean;
|
|
90
91
|
}> & Readonly<{
|
|
91
|
-
onBlur?: ((
|
|
92
|
-
onFocus?: ((
|
|
93
|
-
onInput?: ((
|
|
94
|
-
onKeyup?: ((
|
|
95
|
-
"onUpdate:modelValue"?: ((
|
|
92
|
+
onBlur?: ((args_0: FocusEvent) => any) | undefined;
|
|
93
|
+
onFocus?: ((args_0: FocusEvent) => any) | undefined;
|
|
94
|
+
onInput?: ((args_0: string) => any) | undefined;
|
|
95
|
+
onKeyup?: ((args_0: KeyboardEvent) => any) | undefined;
|
|
96
|
+
"onUpdate:modelValue"?: ((args_0: string) => any) | undefined;
|
|
96
97
|
}>, {
|
|
97
98
|
inputRef: import('vue').Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
|
|
98
99
|
}, {}, {}, {}, {
|
|
@@ -101,6 +102,7 @@ declare const meta: {
|
|
|
101
102
|
label: string;
|
|
102
103
|
readonly: boolean;
|
|
103
104
|
id: string;
|
|
105
|
+
modelValue: string;
|
|
104
106
|
placeholder: string;
|
|
105
107
|
autofocus: boolean;
|
|
106
108
|
chevron: boolean;
|
|
@@ -121,7 +123,7 @@ declare const meta: {
|
|
|
121
123
|
__isSuspense?: never;
|
|
122
124
|
} & import('vue').ComponentOptionsBase<Readonly<{
|
|
123
125
|
id?: string;
|
|
124
|
-
modelValue
|
|
126
|
+
modelValue?: string;
|
|
125
127
|
type?: "text" | "number" | "time" | "date" | "password" | "datetime-local";
|
|
126
128
|
label?: string;
|
|
127
129
|
placeholder?: string;
|
|
@@ -141,25 +143,26 @@ declare const meta: {
|
|
|
141
143
|
inputStatus?: "default" | "info" | "readonly" | "warning" | "error";
|
|
142
144
|
isUiAutocomplete?: boolean;
|
|
143
145
|
}> & Readonly<{
|
|
144
|
-
onBlur?: ((
|
|
145
|
-
onFocus?: ((
|
|
146
|
-
onInput?: ((
|
|
147
|
-
onKeyup?: ((
|
|
148
|
-
"onUpdate:modelValue"?: ((
|
|
146
|
+
onBlur?: ((args_0: FocusEvent) => any) | undefined;
|
|
147
|
+
onFocus?: ((args_0: FocusEvent) => any) | undefined;
|
|
148
|
+
onInput?: ((args_0: string) => any) | undefined;
|
|
149
|
+
onKeyup?: ((args_0: KeyboardEvent) => any) | undefined;
|
|
150
|
+
"onUpdate:modelValue"?: ((args_0: string) => any) | undefined;
|
|
149
151
|
}>, {
|
|
150
152
|
inputRef: import('vue').Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
|
|
151
153
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
152
|
-
blur: (
|
|
153
|
-
focus: (
|
|
154
|
-
input: (
|
|
155
|
-
keyup: (
|
|
156
|
-
"update:modelValue": (
|
|
154
|
+
blur: (args_0: FocusEvent) => any;
|
|
155
|
+
focus: (args_0: FocusEvent) => any;
|
|
156
|
+
input: (args_0: string) => any;
|
|
157
|
+
keyup: (args_0: KeyboardEvent) => any;
|
|
158
|
+
"update:modelValue": (args_0: string) => any;
|
|
157
159
|
}, string, {
|
|
158
160
|
type: "text" | "number" | "time" | "date" | "password" | "datetime-local";
|
|
159
161
|
disabled: boolean;
|
|
160
162
|
label: string;
|
|
161
163
|
readonly: boolean;
|
|
162
164
|
id: string;
|
|
165
|
+
modelValue: string;
|
|
163
166
|
placeholder: string;
|
|
164
167
|
autofocus: boolean;
|
|
165
168
|
chevron: boolean;
|
|
@@ -231,7 +234,7 @@ declare const meta: {
|
|
|
231
234
|
type: "text";
|
|
232
235
|
inputStatus: "default";
|
|
233
236
|
label: string;
|
|
234
|
-
placeholder:
|
|
237
|
+
placeholder: undefined;
|
|
235
238
|
autofocus: false;
|
|
236
239
|
chevron: false;
|
|
237
240
|
disabled: false;
|
|
@@ -244,7 +247,7 @@ declare const meta: {
|
|
|
244
247
|
render: (args: import('@storybook/vue3').ComponentPropsAndSlots<{
|
|
245
248
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
246
249
|
id?: string;
|
|
247
|
-
modelValue
|
|
250
|
+
modelValue?: string;
|
|
248
251
|
type?: "text" | "number" | "time" | "date" | "password" | "datetime-local";
|
|
249
252
|
label?: string;
|
|
250
253
|
placeholder?: string;
|
|
@@ -264,25 +267,26 @@ declare const meta: {
|
|
|
264
267
|
inputStatus?: "default" | "info" | "readonly" | "warning" | "error";
|
|
265
268
|
isUiAutocomplete?: boolean;
|
|
266
269
|
}> & Readonly<{
|
|
267
|
-
onBlur?: ((
|
|
268
|
-
onFocus?: ((
|
|
269
|
-
onInput?: ((
|
|
270
|
-
onKeyup?: ((
|
|
271
|
-
"onUpdate:modelValue"?: ((
|
|
270
|
+
onBlur?: ((args_0: FocusEvent) => any) | undefined;
|
|
271
|
+
onFocus?: ((args_0: FocusEvent) => any) | undefined;
|
|
272
|
+
onInput?: ((args_0: string) => any) | undefined;
|
|
273
|
+
onKeyup?: ((args_0: KeyboardEvent) => any) | undefined;
|
|
274
|
+
"onUpdate:modelValue"?: ((args_0: string) => any) | undefined;
|
|
272
275
|
}>, {
|
|
273
276
|
inputRef: import('vue').Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
|
|
274
277
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
275
|
-
blur: (
|
|
276
|
-
focus: (
|
|
277
|
-
input: (
|
|
278
|
-
keyup: (
|
|
279
|
-
"update:modelValue": (
|
|
278
|
+
blur: (args_0: FocusEvent) => any;
|
|
279
|
+
focus: (args_0: FocusEvent) => any;
|
|
280
|
+
input: (args_0: string) => any;
|
|
281
|
+
keyup: (args_0: KeyboardEvent) => any;
|
|
282
|
+
"update:modelValue": (args_0: string) => any;
|
|
280
283
|
}, import('vue').PublicProps, {
|
|
281
284
|
type: "text" | "number" | "time" | "date" | "password" | "datetime-local";
|
|
282
285
|
disabled: boolean;
|
|
283
286
|
label: string;
|
|
284
287
|
readonly: boolean;
|
|
285
288
|
id: string;
|
|
289
|
+
modelValue: string;
|
|
286
290
|
placeholder: string;
|
|
287
291
|
autofocus: boolean;
|
|
288
292
|
chevron: boolean;
|
|
@@ -308,7 +312,7 @@ declare const meta: {
|
|
|
308
312
|
Defaults: {};
|
|
309
313
|
}, Readonly<{
|
|
310
314
|
id?: string;
|
|
311
|
-
modelValue
|
|
315
|
+
modelValue?: string;
|
|
312
316
|
type?: "text" | "number" | "time" | "date" | "password" | "datetime-local";
|
|
313
317
|
label?: string;
|
|
314
318
|
placeholder?: string;
|
|
@@ -328,11 +332,11 @@ declare const meta: {
|
|
|
328
332
|
inputStatus?: "default" | "info" | "readonly" | "warning" | "error";
|
|
329
333
|
isUiAutocomplete?: boolean;
|
|
330
334
|
}> & Readonly<{
|
|
331
|
-
onBlur?: ((
|
|
332
|
-
onFocus?: ((
|
|
333
|
-
onInput?: ((
|
|
334
|
-
onKeyup?: ((
|
|
335
|
-
"onUpdate:modelValue"?: ((
|
|
335
|
+
onBlur?: ((args_0: FocusEvent) => any) | undefined;
|
|
336
|
+
onFocus?: ((args_0: FocusEvent) => any) | undefined;
|
|
337
|
+
onInput?: ((args_0: string) => any) | undefined;
|
|
338
|
+
onKeyup?: ((args_0: KeyboardEvent) => any) | undefined;
|
|
339
|
+
"onUpdate:modelValue"?: ((args_0: string) => any) | undefined;
|
|
336
340
|
}>, {
|
|
337
341
|
inputRef: import('vue').Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
|
|
338
342
|
}, {}, {}, {}, {
|
|
@@ -341,6 +345,7 @@ declare const meta: {
|
|
|
341
345
|
label: string;
|
|
342
346
|
readonly: boolean;
|
|
343
347
|
id: string;
|
|
348
|
+
modelValue: string;
|
|
344
349
|
placeholder: string;
|
|
345
350
|
autofocus: boolean;
|
|
346
351
|
chevron: boolean;
|
|
@@ -361,7 +366,7 @@ declare const meta: {
|
|
|
361
366
|
__isSuspense?: never;
|
|
362
367
|
} & import('vue').ComponentOptionsBase<Readonly<{
|
|
363
368
|
id?: string;
|
|
364
|
-
modelValue
|
|
369
|
+
modelValue?: string;
|
|
365
370
|
type?: "text" | "number" | "time" | "date" | "password" | "datetime-local";
|
|
366
371
|
label?: string;
|
|
367
372
|
placeholder?: string;
|
|
@@ -381,25 +386,26 @@ declare const meta: {
|
|
|
381
386
|
inputStatus?: "default" | "info" | "readonly" | "warning" | "error";
|
|
382
387
|
isUiAutocomplete?: boolean;
|
|
383
388
|
}> & Readonly<{
|
|
384
|
-
onBlur?: ((
|
|
385
|
-
onFocus?: ((
|
|
386
|
-
onInput?: ((
|
|
387
|
-
onKeyup?: ((
|
|
388
|
-
"onUpdate:modelValue"?: ((
|
|
389
|
+
onBlur?: ((args_0: FocusEvent) => any) | undefined;
|
|
390
|
+
onFocus?: ((args_0: FocusEvent) => any) | undefined;
|
|
391
|
+
onInput?: ((args_0: string) => any) | undefined;
|
|
392
|
+
onKeyup?: ((args_0: KeyboardEvent) => any) | undefined;
|
|
393
|
+
"onUpdate:modelValue"?: ((args_0: string) => any) | undefined;
|
|
389
394
|
}>, {
|
|
390
395
|
inputRef: import('vue').Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
|
|
391
396
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
392
|
-
blur: (
|
|
393
|
-
focus: (
|
|
394
|
-
input: (
|
|
395
|
-
keyup: (
|
|
396
|
-
"update:modelValue": (
|
|
397
|
+
blur: (args_0: FocusEvent) => any;
|
|
398
|
+
focus: (args_0: FocusEvent) => any;
|
|
399
|
+
input: (args_0: string) => any;
|
|
400
|
+
keyup: (args_0: KeyboardEvent) => any;
|
|
401
|
+
"update:modelValue": (args_0: string) => any;
|
|
397
402
|
}, string, {
|
|
398
403
|
type: "text" | "number" | "time" | "date" | "password" | "datetime-local";
|
|
399
404
|
disabled: boolean;
|
|
400
405
|
label: string;
|
|
401
406
|
readonly: boolean;
|
|
402
407
|
id: string;
|
|
408
|
+
modelValue: string;
|
|
403
409
|
placeholder: string;
|
|
404
410
|
autofocus: boolean;
|
|
405
411
|
chevron: boolean;
|
|
@@ -423,7 +429,7 @@ declare const meta: {
|
|
|
423
429
|
UiInput: {
|
|
424
430
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
425
431
|
id?: string;
|
|
426
|
-
modelValue
|
|
432
|
+
modelValue?: string;
|
|
427
433
|
type?: "text" | "number" | "time" | "date" | "password" | "datetime-local";
|
|
428
434
|
label?: string;
|
|
429
435
|
placeholder?: string;
|
|
@@ -443,25 +449,26 @@ declare const meta: {
|
|
|
443
449
|
inputStatus?: "default" | "info" | "readonly" | "warning" | "error";
|
|
444
450
|
isUiAutocomplete?: boolean;
|
|
445
451
|
}> & Readonly<{
|
|
446
|
-
onBlur?: ((
|
|
447
|
-
onFocus?: ((
|
|
448
|
-
onInput?: ((
|
|
449
|
-
onKeyup?: ((
|
|
450
|
-
"onUpdate:modelValue"?: ((
|
|
452
|
+
onBlur?: ((args_0: FocusEvent) => any) | undefined;
|
|
453
|
+
onFocus?: ((args_0: FocusEvent) => any) | undefined;
|
|
454
|
+
onInput?: ((args_0: string) => any) | undefined;
|
|
455
|
+
onKeyup?: ((args_0: KeyboardEvent) => any) | undefined;
|
|
456
|
+
"onUpdate:modelValue"?: ((args_0: string) => any) | undefined;
|
|
451
457
|
}>, {
|
|
452
458
|
inputRef: import('vue').Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
|
|
453
459
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
454
|
-
blur: (
|
|
455
|
-
focus: (
|
|
456
|
-
input: (
|
|
457
|
-
keyup: (
|
|
458
|
-
"update:modelValue": (
|
|
460
|
+
blur: (args_0: FocusEvent) => any;
|
|
461
|
+
focus: (args_0: FocusEvent) => any;
|
|
462
|
+
input: (args_0: string) => any;
|
|
463
|
+
keyup: (args_0: KeyboardEvent) => any;
|
|
464
|
+
"update:modelValue": (args_0: string) => any;
|
|
459
465
|
}, import('vue').PublicProps, {
|
|
460
466
|
type: "text" | "number" | "time" | "date" | "password" | "datetime-local";
|
|
461
467
|
disabled: boolean;
|
|
462
468
|
label: string;
|
|
463
469
|
readonly: boolean;
|
|
464
470
|
id: string;
|
|
471
|
+
modelValue: string;
|
|
465
472
|
placeholder: string;
|
|
466
473
|
autofocus: boolean;
|
|
467
474
|
chevron: boolean;
|
|
@@ -487,7 +494,7 @@ declare const meta: {
|
|
|
487
494
|
Defaults: {};
|
|
488
495
|
}, Readonly<{
|
|
489
496
|
id?: string;
|
|
490
|
-
modelValue
|
|
497
|
+
modelValue?: string;
|
|
491
498
|
type?: "text" | "number" | "time" | "date" | "password" | "datetime-local";
|
|
492
499
|
label?: string;
|
|
493
500
|
placeholder?: string;
|
|
@@ -507,11 +514,11 @@ declare const meta: {
|
|
|
507
514
|
inputStatus?: "default" | "info" | "readonly" | "warning" | "error";
|
|
508
515
|
isUiAutocomplete?: boolean;
|
|
509
516
|
}> & Readonly<{
|
|
510
|
-
onBlur?: ((
|
|
511
|
-
onFocus?: ((
|
|
512
|
-
onInput?: ((
|
|
513
|
-
onKeyup?: ((
|
|
514
|
-
"onUpdate:modelValue"?: ((
|
|
517
|
+
onBlur?: ((args_0: FocusEvent) => any) | undefined;
|
|
518
|
+
onFocus?: ((args_0: FocusEvent) => any) | undefined;
|
|
519
|
+
onInput?: ((args_0: string) => any) | undefined;
|
|
520
|
+
onKeyup?: ((args_0: KeyboardEvent) => any) | undefined;
|
|
521
|
+
"onUpdate:modelValue"?: ((args_0: string) => any) | undefined;
|
|
515
522
|
}>, {
|
|
516
523
|
inputRef: import('vue').Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
|
|
517
524
|
}, {}, {}, {}, {
|
|
@@ -520,6 +527,7 @@ declare const meta: {
|
|
|
520
527
|
label: string;
|
|
521
528
|
readonly: boolean;
|
|
522
529
|
id: string;
|
|
530
|
+
modelValue: string;
|
|
523
531
|
placeholder: string;
|
|
524
532
|
autofocus: boolean;
|
|
525
533
|
chevron: boolean;
|
|
@@ -540,7 +548,7 @@ declare const meta: {
|
|
|
540
548
|
__isSuspense?: never;
|
|
541
549
|
} & import('vue').ComponentOptionsBase<Readonly<{
|
|
542
550
|
id?: string;
|
|
543
|
-
modelValue
|
|
551
|
+
modelValue?: string;
|
|
544
552
|
type?: "text" | "number" | "time" | "date" | "password" | "datetime-local";
|
|
545
553
|
label?: string;
|
|
546
554
|
placeholder?: string;
|
|
@@ -560,25 +568,26 @@ declare const meta: {
|
|
|
560
568
|
inputStatus?: "default" | "info" | "readonly" | "warning" | "error";
|
|
561
569
|
isUiAutocomplete?: boolean;
|
|
562
570
|
}> & Readonly<{
|
|
563
|
-
onBlur?: ((
|
|
564
|
-
onFocus?: ((
|
|
565
|
-
onInput?: ((
|
|
566
|
-
onKeyup?: ((
|
|
567
|
-
"onUpdate:modelValue"?: ((
|
|
571
|
+
onBlur?: ((args_0: FocusEvent) => any) | undefined;
|
|
572
|
+
onFocus?: ((args_0: FocusEvent) => any) | undefined;
|
|
573
|
+
onInput?: ((args_0: string) => any) | undefined;
|
|
574
|
+
onKeyup?: ((args_0: KeyboardEvent) => any) | undefined;
|
|
575
|
+
"onUpdate:modelValue"?: ((args_0: string) => any) | undefined;
|
|
568
576
|
}>, {
|
|
569
577
|
inputRef: import('vue').Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
|
|
570
578
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
571
|
-
blur: (
|
|
572
|
-
focus: (
|
|
573
|
-
input: (
|
|
574
|
-
keyup: (
|
|
575
|
-
"update:modelValue": (
|
|
579
|
+
blur: (args_0: FocusEvent) => any;
|
|
580
|
+
focus: (args_0: FocusEvent) => any;
|
|
581
|
+
input: (args_0: string) => any;
|
|
582
|
+
keyup: (args_0: KeyboardEvent) => any;
|
|
583
|
+
"update:modelValue": (args_0: string) => any;
|
|
576
584
|
}, string, {
|
|
577
585
|
type: "text" | "number" | "time" | "date" | "password" | "datetime-local";
|
|
578
586
|
disabled: boolean;
|
|
579
587
|
label: string;
|
|
580
588
|
readonly: boolean;
|
|
581
589
|
id: string;
|
|
590
|
+
modelValue: string;
|
|
582
591
|
placeholder: string;
|
|
583
592
|
autofocus: boolean;
|
|
584
593
|
chevron: boolean;
|
|
@@ -603,7 +612,7 @@ declare const meta: {
|
|
|
603
612
|
args: import('@storybook/vue3').ComponentPropsAndSlots<{
|
|
604
613
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
605
614
|
id?: string;
|
|
606
|
-
modelValue
|
|
615
|
+
modelValue?: string;
|
|
607
616
|
type?: "text" | "number" | "time" | "date" | "password" | "datetime-local";
|
|
608
617
|
label?: string;
|
|
609
618
|
placeholder?: string;
|
|
@@ -623,25 +632,26 @@ declare const meta: {
|
|
|
623
632
|
inputStatus?: "default" | "info" | "readonly" | "warning" | "error";
|
|
624
633
|
isUiAutocomplete?: boolean;
|
|
625
634
|
}> & Readonly<{
|
|
626
|
-
onBlur?: ((
|
|
627
|
-
onFocus?: ((
|
|
628
|
-
onInput?: ((
|
|
629
|
-
onKeyup?: ((
|
|
630
|
-
"onUpdate:modelValue"?: ((
|
|
635
|
+
onBlur?: ((args_0: FocusEvent) => any) | undefined;
|
|
636
|
+
onFocus?: ((args_0: FocusEvent) => any) | undefined;
|
|
637
|
+
onInput?: ((args_0: string) => any) | undefined;
|
|
638
|
+
onKeyup?: ((args_0: KeyboardEvent) => any) | undefined;
|
|
639
|
+
"onUpdate:modelValue"?: ((args_0: string) => any) | undefined;
|
|
631
640
|
}>, {
|
|
632
641
|
inputRef: import('vue').Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
|
|
633
642
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
634
|
-
blur: (
|
|
635
|
-
focus: (
|
|
636
|
-
input: (
|
|
637
|
-
keyup: (
|
|
638
|
-
"update:modelValue": (
|
|
643
|
+
blur: (args_0: FocusEvent) => any;
|
|
644
|
+
focus: (args_0: FocusEvent) => any;
|
|
645
|
+
input: (args_0: string) => any;
|
|
646
|
+
keyup: (args_0: KeyboardEvent) => any;
|
|
647
|
+
"update:modelValue": (args_0: string) => any;
|
|
639
648
|
}, import('vue').PublicProps, {
|
|
640
649
|
type: "text" | "number" | "time" | "date" | "password" | "datetime-local";
|
|
641
650
|
disabled: boolean;
|
|
642
651
|
label: string;
|
|
643
652
|
readonly: boolean;
|
|
644
653
|
id: string;
|
|
654
|
+
modelValue: string;
|
|
645
655
|
placeholder: string;
|
|
646
656
|
autofocus: boolean;
|
|
647
657
|
chevron: boolean;
|
|
@@ -667,7 +677,7 @@ declare const meta: {
|
|
|
667
677
|
Defaults: {};
|
|
668
678
|
}, Readonly<{
|
|
669
679
|
id?: string;
|
|
670
|
-
modelValue
|
|
680
|
+
modelValue?: string;
|
|
671
681
|
type?: "text" | "number" | "time" | "date" | "password" | "datetime-local";
|
|
672
682
|
label?: string;
|
|
673
683
|
placeholder?: string;
|
|
@@ -687,11 +697,11 @@ declare const meta: {
|
|
|
687
697
|
inputStatus?: "default" | "info" | "readonly" | "warning" | "error";
|
|
688
698
|
isUiAutocomplete?: boolean;
|
|
689
699
|
}> & Readonly<{
|
|
690
|
-
onBlur?: ((
|
|
691
|
-
onFocus?: ((
|
|
692
|
-
onInput?: ((
|
|
693
|
-
onKeyup?: ((
|
|
694
|
-
"onUpdate:modelValue"?: ((
|
|
700
|
+
onBlur?: ((args_0: FocusEvent) => any) | undefined;
|
|
701
|
+
onFocus?: ((args_0: FocusEvent) => any) | undefined;
|
|
702
|
+
onInput?: ((args_0: string) => any) | undefined;
|
|
703
|
+
onKeyup?: ((args_0: KeyboardEvent) => any) | undefined;
|
|
704
|
+
"onUpdate:modelValue"?: ((args_0: string) => any) | undefined;
|
|
695
705
|
}>, {
|
|
696
706
|
inputRef: import('vue').Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
|
|
697
707
|
}, {}, {}, {}, {
|
|
@@ -700,6 +710,7 @@ declare const meta: {
|
|
|
700
710
|
label: string;
|
|
701
711
|
readonly: boolean;
|
|
702
712
|
id: string;
|
|
713
|
+
modelValue: string;
|
|
703
714
|
placeholder: string;
|
|
704
715
|
autofocus: boolean;
|
|
705
716
|
chevron: boolean;
|
|
@@ -720,7 +731,7 @@ declare const meta: {
|
|
|
720
731
|
__isSuspense?: never;
|
|
721
732
|
} & import('vue').ComponentOptionsBase<Readonly<{
|
|
722
733
|
id?: string;
|
|
723
|
-
modelValue
|
|
734
|
+
modelValue?: string;
|
|
724
735
|
type?: "text" | "number" | "time" | "date" | "password" | "datetime-local";
|
|
725
736
|
label?: string;
|
|
726
737
|
placeholder?: string;
|
|
@@ -740,25 +751,26 @@ declare const meta: {
|
|
|
740
751
|
inputStatus?: "default" | "info" | "readonly" | "warning" | "error";
|
|
741
752
|
isUiAutocomplete?: boolean;
|
|
742
753
|
}> & Readonly<{
|
|
743
|
-
onBlur?: ((
|
|
744
|
-
onFocus?: ((
|
|
745
|
-
onInput?: ((
|
|
746
|
-
onKeyup?: ((
|
|
747
|
-
"onUpdate:modelValue"?: ((
|
|
754
|
+
onBlur?: ((args_0: FocusEvent) => any) | undefined;
|
|
755
|
+
onFocus?: ((args_0: FocusEvent) => any) | undefined;
|
|
756
|
+
onInput?: ((args_0: string) => any) | undefined;
|
|
757
|
+
onKeyup?: ((args_0: KeyboardEvent) => any) | undefined;
|
|
758
|
+
"onUpdate:modelValue"?: ((args_0: string) => any) | undefined;
|
|
748
759
|
}>, {
|
|
749
760
|
inputRef: import('vue').Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
|
|
750
761
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
751
|
-
blur: (
|
|
752
|
-
focus: (
|
|
753
|
-
input: (
|
|
754
|
-
keyup: (
|
|
755
|
-
"update:modelValue": (
|
|
762
|
+
blur: (args_0: FocusEvent) => any;
|
|
763
|
+
focus: (args_0: FocusEvent) => any;
|
|
764
|
+
input: (args_0: string) => any;
|
|
765
|
+
keyup: (args_0: KeyboardEvent) => any;
|
|
766
|
+
"update:modelValue": (args_0: string) => any;
|
|
756
767
|
}, string, {
|
|
757
768
|
type: "text" | "number" | "time" | "date" | "password" | "datetime-local";
|
|
758
769
|
disabled: boolean;
|
|
759
770
|
label: string;
|
|
760
771
|
readonly: boolean;
|
|
761
772
|
id: string;
|
|
773
|
+
modelValue: string;
|
|
762
774
|
placeholder: string;
|
|
763
775
|
autofocus: boolean;
|
|
764
776
|
chevron: boolean;
|