@dpa-id-components/dpa-shared-components 9.4.4 → 9.4.6
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/UiInput/UiInput.stories.d.ts +7 -7
- package/dist/components/UiInput/UiInput.vue.d.ts +1 -1
- package/dist/components/UiMenu/UiMenu.stories.d.ts +17 -1
- package/dist/components/UiSearchBar/UiSearchBar.stories.d.ts +6 -6
- package/dist/components/UiSearchBar/UiSearchBar.vue.d.ts +1 -1
- package/dist/components/UiSnackbar/UiSnackbar.stories.d.ts +1 -1
- package/dist/dpa-shared-components.mjs +3932 -3953
- package/dist/dpa-shared-components.umd.js +4 -4
- package/dist/style.css +1 -1
- package/package.json +2 -2
|
@@ -91,7 +91,7 @@ declare const meta: {
|
|
|
91
91
|
onKeyup?: ((...args: any[]) => any) | undefined;
|
|
92
92
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
93
93
|
}, {
|
|
94
|
-
inputRef: import('vue').Ref<HTMLInputElement | undefined>;
|
|
94
|
+
inputRef: import('vue').Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
|
|
95
95
|
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
96
96
|
input: (...args: any[]) => void;
|
|
97
97
|
blur: (...args: any[]) => void;
|
|
@@ -300,7 +300,7 @@ declare const meta: {
|
|
|
300
300
|
onKeyup?: ((...args: any[]) => any) | undefined;
|
|
301
301
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
302
302
|
}, {
|
|
303
|
-
inputRef: import('vue').Ref<HTMLInputElement | undefined>;
|
|
303
|
+
inputRef: import('vue').Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
|
|
304
304
|
}, {}, {}, {}, {
|
|
305
305
|
type: "text" | "number" | "time" | "date" | "password";
|
|
306
306
|
disabled: boolean;
|
|
@@ -413,7 +413,7 @@ declare const meta: {
|
|
|
413
413
|
onKeyup?: ((...args: any[]) => any) | undefined;
|
|
414
414
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
415
415
|
}, {
|
|
416
|
-
inputRef: import('vue').Ref<HTMLInputElement | undefined>;
|
|
416
|
+
inputRef: import('vue').Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
|
|
417
417
|
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
418
418
|
input: (...args: any[]) => void;
|
|
419
419
|
blur: (...args: any[]) => void;
|
|
@@ -604,7 +604,7 @@ declare const meta: {
|
|
|
604
604
|
onKeyup?: ((...args: any[]) => any) | undefined;
|
|
605
605
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
606
606
|
}, {
|
|
607
|
-
inputRef: import('vue').Ref<HTMLInputElement | undefined>;
|
|
607
|
+
inputRef: import('vue').Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
|
|
608
608
|
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
609
609
|
input: (...args: any[]) => void;
|
|
610
610
|
blur: (...args: any[]) => void;
|
|
@@ -813,7 +813,7 @@ declare const meta: {
|
|
|
813
813
|
onKeyup?: ((...args: any[]) => any) | undefined;
|
|
814
814
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
815
815
|
}, {
|
|
816
|
-
inputRef: import('vue').Ref<HTMLInputElement | undefined>;
|
|
816
|
+
inputRef: import('vue').Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
|
|
817
817
|
}, {}, {}, {}, {
|
|
818
818
|
type: "text" | "number" | "time" | "date" | "password";
|
|
819
819
|
disabled: boolean;
|
|
@@ -926,7 +926,7 @@ declare const meta: {
|
|
|
926
926
|
onKeyup?: ((...args: any[]) => any) | undefined;
|
|
927
927
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
928
928
|
}, {
|
|
929
|
-
inputRef: import('vue').Ref<HTMLInputElement | undefined>;
|
|
929
|
+
inputRef: import('vue').Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
|
|
930
930
|
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
931
931
|
input: (...args: any[]) => void;
|
|
932
932
|
blur: (...args: any[]) => void;
|
|
@@ -961,7 +961,7 @@ declare const meta: {
|
|
|
961
961
|
};
|
|
962
962
|
setup(this: void): {
|
|
963
963
|
args: any;
|
|
964
|
-
value: import('vue').Ref<string>;
|
|
964
|
+
value: import('vue').Ref<string, string>;
|
|
965
965
|
};
|
|
966
966
|
template: string;
|
|
967
967
|
methods: {
|
|
@@ -43,7 +43,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<
|
|
|
43
43
|
inputStatus: string;
|
|
44
44
|
isUiAutocomplete: boolean;
|
|
45
45
|
}>, {
|
|
46
|
-
inputRef: import('vue').Ref<HTMLInputElement | undefined>;
|
|
46
|
+
inputRef: import('vue').Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
|
|
47
47
|
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
48
48
|
input: (...args: any[]) => void;
|
|
49
49
|
blur: (...args: any[]) => void;
|
|
@@ -322,7 +322,7 @@ export declare const WithBlankButton: {
|
|
|
322
322
|
render: (args: any) => {
|
|
323
323
|
setup(): {
|
|
324
324
|
args: any;
|
|
325
|
-
isOpen: import('vue').Ref<boolean>;
|
|
325
|
+
isOpen: import('vue').Ref<boolean, boolean>;
|
|
326
326
|
resetIsDisabled: import('vue').ComputedRef<boolean>;
|
|
327
327
|
onClose: () => boolean;
|
|
328
328
|
onOpen: () => boolean;
|
|
@@ -336,11 +336,27 @@ export declare const WithBlankButton: {
|
|
|
336
336
|
label: string;
|
|
337
337
|
value: string;
|
|
338
338
|
selected: boolean;
|
|
339
|
+
}[], {
|
|
340
|
+
label: string;
|
|
341
|
+
value: string;
|
|
342
|
+
selected: boolean;
|
|
343
|
+
}[] | {
|
|
344
|
+
label: string;
|
|
345
|
+
value: string;
|
|
346
|
+
selected: boolean;
|
|
339
347
|
}[]>;
|
|
340
348
|
options: import('vue').Ref<{
|
|
341
349
|
label: string;
|
|
342
350
|
value: string;
|
|
343
351
|
selected: boolean;
|
|
352
|
+
}[], {
|
|
353
|
+
label: string;
|
|
354
|
+
value: string;
|
|
355
|
+
selected: boolean;
|
|
356
|
+
}[] | {
|
|
357
|
+
label: string;
|
|
358
|
+
value: string;
|
|
359
|
+
selected: boolean;
|
|
344
360
|
}[]>;
|
|
345
361
|
};
|
|
346
362
|
components: {
|
|
@@ -48,7 +48,7 @@ declare const meta: {
|
|
|
48
48
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
49
49
|
onSearch?: ((...args: any[]) => any) | undefined;
|
|
50
50
|
}, {
|
|
51
|
-
searchInputRef: import('vue').Ref<HTMLInputElement | undefined>;
|
|
51
|
+
searchInputRef: import('vue').Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
|
|
52
52
|
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
53
53
|
reset: (...args: any[]) => void;
|
|
54
54
|
search: (...args: any[]) => void;
|
|
@@ -161,7 +161,7 @@ declare const meta: {
|
|
|
161
161
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
162
162
|
onSearch?: ((...args: any[]) => any) | undefined;
|
|
163
163
|
}, {
|
|
164
|
-
searchInputRef: import('vue').Ref<HTMLInputElement | undefined>;
|
|
164
|
+
searchInputRef: import('vue').Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
|
|
165
165
|
}, {}, {}, {}, {
|
|
166
166
|
modelValue: string;
|
|
167
167
|
placeholder: string;
|
|
@@ -220,7 +220,7 @@ declare const meta: {
|
|
|
220
220
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
221
221
|
onSearch?: ((...args: any[]) => any) | undefined;
|
|
222
222
|
}, {
|
|
223
|
-
searchInputRef: import('vue').Ref<HTMLInputElement | undefined>;
|
|
223
|
+
searchInputRef: import('vue').Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
|
|
224
224
|
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
225
225
|
reset: (...args: any[]) => void;
|
|
226
226
|
search: (...args: any[]) => void;
|
|
@@ -324,7 +324,7 @@ export declare const WithChips: {
|
|
|
324
324
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
325
325
|
onSearch?: ((...args: any[]) => any) | undefined;
|
|
326
326
|
}, {
|
|
327
|
-
searchInputRef: import('vue').Ref<HTMLInputElement | undefined>;
|
|
327
|
+
searchInputRef: import('vue').Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
|
|
328
328
|
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
329
329
|
reset: (...args: any[]) => void;
|
|
330
330
|
search: (...args: any[]) => void;
|
|
@@ -437,7 +437,7 @@ export declare const WithChips: {
|
|
|
437
437
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
438
438
|
onSearch?: ((...args: any[]) => any) | undefined;
|
|
439
439
|
}, {
|
|
440
|
-
searchInputRef: import('vue').Ref<HTMLInputElement | undefined>;
|
|
440
|
+
searchInputRef: import('vue').Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
|
|
441
441
|
}, {}, {}, {}, {
|
|
442
442
|
modelValue: string;
|
|
443
443
|
placeholder: string;
|
|
@@ -496,7 +496,7 @@ export declare const WithChips: {
|
|
|
496
496
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
497
497
|
onSearch?: ((...args: any[]) => any) | undefined;
|
|
498
498
|
}, {
|
|
499
|
-
searchInputRef: import('vue').Ref<HTMLInputElement | undefined>;
|
|
499
|
+
searchInputRef: import('vue').Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
|
|
500
500
|
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
501
501
|
reset: (...args: any[]) => void;
|
|
502
502
|
search: (...args: any[]) => void;
|
|
@@ -23,7 +23,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<
|
|
|
23
23
|
executeSearchButtonTitle: string;
|
|
24
24
|
resetSearchButtonTittle: string;
|
|
25
25
|
}>, {
|
|
26
|
-
searchInputRef: import('vue').Ref<HTMLInputElement | undefined>;
|
|
26
|
+
searchInputRef: import('vue').Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
|
|
27
27
|
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
28
28
|
reset: (...args: any[]) => void;
|
|
29
29
|
search: (...args: any[]) => void;
|