@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.
Files changed (47) hide show
  1. package/dist/components/UiAutocomplete/UiAutocomplete.stories.d.ts +29 -29
  2. package/dist/components/UiAutocomplete/UiAutocomplete.vue.d.ts +29 -29
  3. package/dist/components/UiButton/UiButton.stories.d.ts +3 -3
  4. package/dist/components/UiButton/UiButton.vue.d.ts +1 -1
  5. package/dist/components/UiCheckBox/UiCheckBox.stories.d.ts +7 -6
  6. package/dist/components/UiCheckBox/UiCheckBox.vue.d.ts +4 -4
  7. package/dist/components/UiCheckBoxGroup/UiCheckBoxGroup.stories.d.ts +6 -6
  8. package/dist/components/UiCheckBoxGroup/UiCheckBoxGroup.vue.d.ts +6 -6
  9. package/dist/components/UiColorPicker/UiColorPicker.stories.d.ts +3 -3
  10. package/dist/components/UiColorPicker/UiColorPicker.vue.d.ts +3 -3
  11. package/dist/components/UiDatePicker/UiDatePicker.stories.d.ts +48 -48
  12. package/dist/components/UiDatePicker/UiDatePicker.vue.d.ts +5 -5
  13. package/dist/components/UiDialog/UiDialog.stories.d.ts +20 -20
  14. package/dist/components/UiDialog/UiDialog.vue.d.ts +2 -2
  15. package/dist/components/UiFilterBadge/UiFilterBadge.stories.d.ts +3 -3
  16. package/dist/components/UiFilterBadgeButton/UiFilterBadgeButton.stories.d.ts +23 -23
  17. package/dist/components/UiFilterBadgeButton/UiFilterBadgeButton.vue.d.ts +2 -2
  18. package/dist/components/UiFilterButton/UiFilterButton.stories.d.ts +8 -8
  19. package/dist/components/UiFilterButton/UiFilterButton.vue.d.ts +2 -2
  20. package/dist/components/UiIconButton/UiIconButton.stories.d.ts +12 -12
  21. package/dist/components/UiIconButton/UiIconButton.vue.d.ts +3 -3
  22. package/dist/components/UiInfoContent/UiInfoContent.stories.d.ts +2 -2
  23. package/dist/components/UiInput/UiInput.stories.d.ts +125 -113
  24. package/dist/components/UiInput/UiInput.vue.d.ts +12 -11
  25. package/dist/components/UiList/UiList.stories.d.ts +11 -11
  26. package/dist/components/UiListItem/UiListItem.stories.d.ts +44 -44
  27. package/dist/components/UiListItem/UiListItem.vue.d.ts +4 -4
  28. package/dist/components/UiMenu/UiMenu.stories.d.ts +17 -8
  29. package/dist/components/UiMenu/UiMenu.vue.d.ts +13 -7
  30. package/dist/components/UiOverlay/UiOverlay.stories.d.ts +20 -20
  31. package/dist/components/UiOverlay/UiOverlay.vue.d.ts +2 -2
  32. package/dist/components/UiOverlayMenu/UiOverlayMenu.stories.d.ts +42 -42
  33. package/dist/components/UiOverlayMenu/UiOverlayMenu.vue.d.ts +2 -2
  34. package/dist/components/UiRadioInputGroup/UiRadioInputGroup.stories.d.ts +16 -48
  35. package/dist/components/UiRadioInputGroup/UiRadioInputGroup.vue.d.ts +8 -7
  36. package/dist/components/UiSearchBar/UiSearchBar.stories.d.ts +30 -30
  37. package/dist/components/UiSearchBar/UiSearchBar.vue.d.ts +12 -12
  38. package/dist/components/UiSearchInput/UiSearchInput.stories.d.ts +68 -68
  39. package/dist/components/UiSearchInput/UiSearchInput.vue.d.ts +7 -7
  40. package/dist/components/UiSimpleInput/UiSimpleInput.stories.d.ts +8 -8
  41. package/dist/components/UiSimpleInput/UiSimpleInput.vue.d.ts +2 -2
  42. package/dist/components/UiSnackbar/UiSnackbar.stories.d.ts +40 -40
  43. package/dist/components/UiSnackbar/UiSnackbar.vue.d.ts +4 -4
  44. package/dist/dpa-shared-components.mjs +2833 -2851
  45. package/dist/dpa-shared-components.umd.js +4 -4
  46. package/dist/style.css +1 -1
  47. package/package.json +6 -6
@@ -8,16 +8,16 @@ declare const meta: {
8
8
  modelValue: string[];
9
9
  placeholder?: string;
10
10
  }> & Readonly<{
11
- onBlur?: ((value: string[]) => any) | undefined;
12
- "onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
13
- onHandleKeypress?: ((value: {
11
+ onBlur?: ((args_0: string[]) => any) | undefined;
12
+ "onUpdate:modelValue"?: ((args_0: string[]) => any) | undefined;
13
+ onHandleKeypress?: ((args_0: {
14
14
  event: KeyboardEvent;
15
15
  value: string[];
16
16
  }) => any) | undefined;
17
- }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
18
- blur: (value: string[]) => any;
19
- "update:modelValue": (value: string[]) => any;
20
- handleKeypress: (value: {
17
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
18
+ blur: (args_0: string[]) => any;
19
+ "update:modelValue": (args_0: string[]) => any;
20
+ handleKeypress: (args_0: {
21
21
  event: KeyboardEvent;
22
22
  value: string[];
23
23
  }) => any;
@@ -40,9 +40,9 @@ declare const meta: {
40
40
  modelValue: string[];
41
41
  placeholder?: string;
42
42
  }> & Readonly<{
43
- onBlur?: ((value: string[]) => any) | undefined;
44
- "onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
45
- onHandleKeypress?: ((value: {
43
+ onBlur?: ((args_0: string[]) => any) | undefined;
44
+ "onUpdate:modelValue"?: ((args_0: string[]) => any) | undefined;
45
+ onHandleKeypress?: ((args_0: {
46
46
  event: KeyboardEvent;
47
47
  value: string[];
48
48
  }) => any) | undefined;
@@ -60,16 +60,16 @@ declare const meta: {
60
60
  modelValue: string[];
61
61
  placeholder?: string;
62
62
  }> & Readonly<{
63
- onBlur?: ((value: string[]) => any) | undefined;
64
- "onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
65
- onHandleKeypress?: ((value: {
63
+ onBlur?: ((args_0: string[]) => any) | undefined;
64
+ "onUpdate:modelValue"?: ((args_0: string[]) => any) | undefined;
65
+ onHandleKeypress?: ((args_0: {
66
66
  event: KeyboardEvent;
67
67
  value: string[];
68
68
  }) => any) | undefined;
69
- }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
70
- blur: (value: string[]) => any;
71
- "update:modelValue": (value: string[]) => any;
72
- handleKeypress: (value: {
69
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
70
+ blur: (args_0: string[]) => any;
71
+ "update:modelValue": (args_0: string[]) => any;
72
+ handleKeypress: (args_0: {
73
73
  event: KeyboardEvent;
74
74
  value: string[];
75
75
  }) => any;
@@ -116,16 +116,16 @@ declare const meta: {
116
116
  modelValue: string[];
117
117
  placeholder?: string;
118
118
  }> & Readonly<{
119
- onBlur?: ((value: string[]) => any) | undefined;
120
- "onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
121
- onHandleKeypress?: ((value: {
119
+ onBlur?: ((args_0: string[]) => any) | undefined;
120
+ "onUpdate:modelValue"?: ((args_0: string[]) => any) | undefined;
121
+ onHandleKeypress?: ((args_0: {
122
122
  event: KeyboardEvent;
123
123
  value: string[];
124
124
  }) => any) | undefined;
125
- }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
126
- blur: (value: string[]) => any;
127
- "update:modelValue": (value: string[]) => any;
128
- handleKeypress: (value: {
125
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
126
+ blur: (args_0: string[]) => any;
127
+ "update:modelValue": (args_0: string[]) => any;
128
+ handleKeypress: (args_0: {
129
129
  event: KeyboardEvent;
130
130
  value: string[];
131
131
  }) => any;
@@ -148,9 +148,9 @@ declare const meta: {
148
148
  modelValue: string[];
149
149
  placeholder?: string;
150
150
  }> & Readonly<{
151
- onBlur?: ((value: string[]) => any) | undefined;
152
- "onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
153
- onHandleKeypress?: ((value: {
151
+ onBlur?: ((args_0: string[]) => any) | undefined;
152
+ "onUpdate:modelValue"?: ((args_0: string[]) => any) | undefined;
153
+ onHandleKeypress?: ((args_0: {
154
154
  event: KeyboardEvent;
155
155
  value: string[];
156
156
  }) => any) | undefined;
@@ -168,16 +168,16 @@ declare const meta: {
168
168
  modelValue: string[];
169
169
  placeholder?: string;
170
170
  }> & Readonly<{
171
- onBlur?: ((value: string[]) => any) | undefined;
172
- "onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
173
- onHandleKeypress?: ((value: {
171
+ onBlur?: ((args_0: string[]) => any) | undefined;
172
+ "onUpdate:modelValue"?: ((args_0: string[]) => any) | undefined;
173
+ onHandleKeypress?: ((args_0: {
174
174
  event: KeyboardEvent;
175
175
  value: string[];
176
176
  }) => any) | undefined;
177
- }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
178
- blur: (value: string[]) => any;
179
- "update:modelValue": (value: string[]) => any;
180
- handleKeypress: (value: {
177
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
178
+ blur: (args_0: string[]) => any;
179
+ "update:modelValue": (args_0: string[]) => any;
180
+ handleKeypress: (args_0: {
181
181
  event: KeyboardEvent;
182
182
  value: string[];
183
183
  }) => any;
@@ -198,16 +198,16 @@ declare const meta: {
198
198
  modelValue: string[];
199
199
  placeholder?: string;
200
200
  }> & Readonly<{
201
- onBlur?: ((value: string[]) => any) | undefined;
202
- "onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
203
- onHandleKeypress?: ((value: {
201
+ onBlur?: ((args_0: string[]) => any) | undefined;
202
+ "onUpdate:modelValue"?: ((args_0: string[]) => any) | undefined;
203
+ onHandleKeypress?: ((args_0: {
204
204
  event: KeyboardEvent;
205
205
  value: string[];
206
206
  }) => any) | undefined;
207
- }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
208
- blur: (value: string[]) => any;
209
- "update:modelValue": (value: string[]) => any;
210
- handleKeypress: (value: {
207
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
208
+ blur: (args_0: string[]) => any;
209
+ "update:modelValue": (args_0: string[]) => any;
210
+ handleKeypress: (args_0: {
211
211
  event: KeyboardEvent;
212
212
  value: string[];
213
213
  }) => any;
@@ -230,9 +230,9 @@ declare const meta: {
230
230
  modelValue: string[];
231
231
  placeholder?: string;
232
232
  }> & Readonly<{
233
- onBlur?: ((value: string[]) => any) | undefined;
234
- "onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
235
- onHandleKeypress?: ((value: {
233
+ onBlur?: ((args_0: string[]) => any) | undefined;
234
+ "onUpdate:modelValue"?: ((args_0: string[]) => any) | undefined;
235
+ onHandleKeypress?: ((args_0: {
236
236
  event: KeyboardEvent;
237
237
  value: string[];
238
238
  }) => any) | undefined;
@@ -250,16 +250,16 @@ declare const meta: {
250
250
  modelValue: string[];
251
251
  placeholder?: string;
252
252
  }> & Readonly<{
253
- onBlur?: ((value: string[]) => any) | undefined;
254
- "onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
255
- onHandleKeypress?: ((value: {
253
+ onBlur?: ((args_0: string[]) => any) | undefined;
254
+ "onUpdate:modelValue"?: ((args_0: string[]) => any) | undefined;
255
+ onHandleKeypress?: ((args_0: {
256
256
  event: KeyboardEvent;
257
257
  value: string[];
258
258
  }) => any) | undefined;
259
- }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
260
- blur: (value: string[]) => any;
261
- "update:modelValue": (value: string[]) => any;
262
- handleKeypress: (value: {
259
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
260
+ blur: (args_0: string[]) => any;
261
+ "update:modelValue": (args_0: string[]) => any;
262
+ handleKeypress: (args_0: {
263
263
  event: KeyboardEvent;
264
264
  value: string[];
265
265
  }) => any;
@@ -281,16 +281,16 @@ declare const meta: {
281
281
  modelValue: string[];
282
282
  placeholder?: string;
283
283
  }> & Readonly<{
284
- onBlur?: ((value: string[]) => any) | undefined;
285
- "onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
286
- onHandleKeypress?: ((value: {
284
+ onBlur?: ((args_0: string[]) => any) | undefined;
285
+ "onUpdate:modelValue"?: ((args_0: string[]) => any) | undefined;
286
+ onHandleKeypress?: ((args_0: {
287
287
  event: KeyboardEvent;
288
288
  value: string[];
289
289
  }) => any) | undefined;
290
- }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
291
- blur: (value: string[]) => any;
292
- "update:modelValue": (value: string[]) => any;
293
- handleKeypress: (value: {
290
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
291
+ blur: (args_0: string[]) => any;
292
+ "update:modelValue": (args_0: string[]) => any;
293
+ handleKeypress: (args_0: {
294
294
  event: KeyboardEvent;
295
295
  value: string[];
296
296
  }) => any;
@@ -313,9 +313,9 @@ declare const meta: {
313
313
  modelValue: string[];
314
314
  placeholder?: string;
315
315
  }> & Readonly<{
316
- onBlur?: ((value: string[]) => any) | undefined;
317
- "onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
318
- onHandleKeypress?: ((value: {
316
+ onBlur?: ((args_0: string[]) => any) | undefined;
317
+ "onUpdate:modelValue"?: ((args_0: string[]) => any) | undefined;
318
+ onHandleKeypress?: ((args_0: {
319
319
  event: KeyboardEvent;
320
320
  value: string[];
321
321
  }) => any) | undefined;
@@ -333,16 +333,16 @@ declare const meta: {
333
333
  modelValue: string[];
334
334
  placeholder?: string;
335
335
  }> & Readonly<{
336
- onBlur?: ((value: string[]) => any) | undefined;
337
- "onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
338
- onHandleKeypress?: ((value: {
336
+ onBlur?: ((args_0: string[]) => any) | undefined;
337
+ "onUpdate:modelValue"?: ((args_0: string[]) => any) | undefined;
338
+ onHandleKeypress?: ((args_0: {
339
339
  event: KeyboardEvent;
340
340
  value: string[];
341
341
  }) => any) | undefined;
342
- }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
343
- blur: (value: string[]) => any;
344
- "update:modelValue": (value: string[]) => any;
345
- handleKeypress: (value: {
342
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
343
+ blur: (args_0: string[]) => any;
344
+ "update:modelValue": (args_0: string[]) => any;
345
+ handleKeypress: (args_0: {
346
346
  event: KeyboardEvent;
347
347
  value: string[];
348
348
  }) => any;
@@ -15,17 +15,17 @@ declare function __VLS_template(): {
15
15
  rootEl: HTMLDivElement;
16
16
  };
17
17
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
18
- declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
19
- blur: (value: string[]) => any;
20
- "update:modelValue": (value: string[]) => any;
21
- handleKeypress: (value: {
18
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
19
+ blur: (args_0: string[]) => any;
20
+ "update:modelValue": (args_0: string[]) => any;
21
+ handleKeypress: (args_0: {
22
22
  event: KeyboardEvent;
23
23
  value: string[];
24
24
  }) => any;
25
25
  }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
26
- onBlur?: ((value: string[]) => any) | undefined;
27
- "onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
28
- onHandleKeypress?: ((value: {
26
+ onBlur?: ((args_0: string[]) => any) | undefined;
27
+ "onUpdate:modelValue"?: ((args_0: string[]) => any) | undefined;
28
+ onHandleKeypress?: ((args_0: {
29
29
  event: KeyboardEvent;
30
30
  value: string[];
31
31
  }) => any) | undefined;
@@ -7,14 +7,14 @@ declare const meta: {
7
7
  hasIcon?: boolean;
8
8
  autofocus?: boolean;
9
9
  }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
10
- input: (...args: any[]) => void;
10
+ input: (args_0: string) => any;
11
11
  }, string, import('vue').PublicProps, Readonly<{
12
12
  placeholder?: string;
13
13
  size?: "xs" | "small" | "medium" | "large" | "xl";
14
14
  hasIcon?: boolean;
15
15
  autofocus?: boolean;
16
16
  }> & Readonly<{
17
- onInput?: ((...args: any[]) => any) | undefined;
17
+ onInput?: ((args_0: string) => any) | undefined;
18
18
  }>, {
19
19
  size: "xs" | "small" | "medium" | "large" | "xl";
20
20
  placeholder: string;
@@ -50,14 +50,14 @@ declare const meta: {
50
50
  hasIcon?: boolean;
51
51
  autofocus?: boolean;
52
52
  }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
53
- input: (...args: any[]) => void;
53
+ input: (args_0: string) => any;
54
54
  }, string, import('vue').PublicProps, Readonly<{
55
55
  placeholder?: string;
56
56
  size?: "xs" | "small" | "medium" | "large" | "xl";
57
57
  hasIcon?: boolean;
58
58
  autofocus?: boolean;
59
59
  }> & Readonly<{
60
- onInput?: ((...args: any[]) => any) | undefined;
60
+ onInput?: ((args_0: string) => any) | undefined;
61
61
  }>, {
62
62
  size: "xs" | "small" | "medium" | "large" | "xl";
63
63
  placeholder: string;
@@ -73,14 +73,14 @@ declare const meta: {
73
73
  hasIcon?: boolean;
74
74
  autofocus?: boolean;
75
75
  }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
76
- input: (...args: any[]) => void;
76
+ input: (args_0: string) => any;
77
77
  }, string, import('vue').PublicProps, Readonly<{
78
78
  placeholder?: string;
79
79
  size?: "xs" | "small" | "medium" | "large" | "xl";
80
80
  hasIcon?: boolean;
81
81
  autofocus?: boolean;
82
82
  }> & Readonly<{
83
- onInput?: ((...args: any[]) => any) | undefined;
83
+ onInput?: ((args_0: string) => any) | undefined;
84
84
  }>, {
85
85
  size: "xs" | "small" | "medium" | "large" | "xl";
86
86
  placeholder: string;
@@ -97,14 +97,14 @@ declare const meta: {
97
97
  hasIcon?: boolean;
98
98
  autofocus?: boolean;
99
99
  }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
100
- input: (...args: any[]) => void;
100
+ input: (args_0: string) => any;
101
101
  }, string, import('vue').PublicProps, Readonly<{
102
102
  placeholder?: string;
103
103
  size?: "xs" | "small" | "medium" | "large" | "xl";
104
104
  hasIcon?: boolean;
105
105
  autofocus?: boolean;
106
106
  }> & Readonly<{
107
- onInput?: ((...args: any[]) => any) | undefined;
107
+ onInput?: ((args_0: string) => any) | undefined;
108
108
  }>, {
109
109
  size: "xs" | "small" | "medium" | "large" | "xl";
110
110
  placeholder: string;
@@ -5,9 +5,9 @@ type __VLS_Props = {
5
5
  autofocus?: boolean;
6
6
  };
7
7
  declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
8
- input: (...args: any[]) => void;
8
+ input: (args_0: string) => any;
9
9
  }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
10
- onInput?: ((...args: any[]) => any) | undefined;
10
+ onInput?: ((args_0: string) => any) | undefined;
11
11
  }>, {
12
12
  size: "xs" | "small" | "medium" | "large" | "xl";
13
13
  placeholder: string;
@@ -10,11 +10,11 @@ declare const meta: {
10
10
  iconSize?: "small" | "medium" | "large";
11
11
  type?: "info" | "error" | "success";
12
12
  }> & Readonly<{
13
- onInput?: ((...args: any[]) => any) | undefined;
14
- "onAction-click"?: ((...args: any[]) => any) | undefined;
13
+ onInput?: ((args_0: boolean) => any) | undefined;
14
+ "onAction-click"?: (() => any) | undefined;
15
15
  }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
16
- input: (...args: any[]) => void;
17
- "action-click": (...args: any[]) => void;
16
+ input: (args_0: boolean) => any;
17
+ "action-click": () => any;
18
18
  }, import('vue').PublicProps, {
19
19
  type: "info" | "error" | "success";
20
20
  iconName: (typeof iconNames)[number] | null;
@@ -37,8 +37,8 @@ declare const meta: {
37
37
  iconSize?: "small" | "medium" | "large";
38
38
  type?: "info" | "error" | "success";
39
39
  }> & Readonly<{
40
- onInput?: ((...args: any[]) => any) | undefined;
41
- "onAction-click"?: ((...args: any[]) => any) | undefined;
40
+ onInput?: ((args_0: boolean) => any) | undefined;
41
+ "onAction-click"?: (() => any) | undefined;
42
42
  }>, {}, {}, {}, {}, {
43
43
  type: "info" | "error" | "success";
44
44
  iconName: (typeof iconNames)[number] | null;
@@ -56,11 +56,11 @@ declare const meta: {
56
56
  iconSize?: "small" | "medium" | "large";
57
57
  type?: "info" | "error" | "success";
58
58
  }> & Readonly<{
59
- onInput?: ((...args: any[]) => any) | undefined;
60
- "onAction-click"?: ((...args: any[]) => any) | undefined;
59
+ onInput?: ((args_0: boolean) => any) | undefined;
60
+ "onAction-click"?: (() => any) | undefined;
61
61
  }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
62
- input: (...args: any[]) => void;
63
- "action-click": (...args: any[]) => void;
62
+ input: (args_0: boolean) => any;
63
+ "action-click": () => any;
64
64
  }, string, {
65
65
  type: "info" | "error" | "success";
66
66
  iconName: (typeof iconNames)[number] | null;
@@ -109,11 +109,11 @@ declare const meta: {
109
109
  iconSize?: "small" | "medium" | "large";
110
110
  type?: "info" | "error" | "success";
111
111
  }> & Readonly<{
112
- onInput?: ((...args: any[]) => any) | undefined;
113
- "onAction-click"?: ((...args: any[]) => any) | undefined;
112
+ onInput?: ((args_0: boolean) => any) | undefined;
113
+ "onAction-click"?: (() => any) | undefined;
114
114
  }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
115
- input: (...args: any[]) => void;
116
- "action-click": (...args: any[]) => void;
115
+ input: (args_0: boolean) => any;
116
+ "action-click": () => any;
117
117
  }, import('vue').PublicProps, {
118
118
  type: "info" | "error" | "success";
119
119
  iconName: (typeof iconNames)[number] | null;
@@ -136,8 +136,8 @@ declare const meta: {
136
136
  iconSize?: "small" | "medium" | "large";
137
137
  type?: "info" | "error" | "success";
138
138
  }> & Readonly<{
139
- onInput?: ((...args: any[]) => any) | undefined;
140
- "onAction-click"?: ((...args: any[]) => any) | undefined;
139
+ onInput?: ((args_0: boolean) => any) | undefined;
140
+ "onAction-click"?: (() => any) | undefined;
141
141
  }>, {}, {}, {}, {}, {
142
142
  type: "info" | "error" | "success";
143
143
  iconName: (typeof iconNames)[number] | null;
@@ -155,11 +155,11 @@ declare const meta: {
155
155
  iconSize?: "small" | "medium" | "large";
156
156
  type?: "info" | "error" | "success";
157
157
  }> & Readonly<{
158
- onInput?: ((...args: any[]) => any) | undefined;
159
- "onAction-click"?: ((...args: any[]) => any) | undefined;
158
+ onInput?: ((args_0: boolean) => any) | undefined;
159
+ "onAction-click"?: (() => any) | undefined;
160
160
  }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
161
- input: (...args: any[]) => void;
162
- "action-click": (...args: any[]) => void;
161
+ input: (args_0: boolean) => any;
162
+ "action-click": () => any;
163
163
  }, string, {
164
164
  type: "info" | "error" | "success";
165
165
  iconName: (typeof iconNames)[number] | null;
@@ -181,11 +181,11 @@ declare const meta: {
181
181
  iconSize?: "small" | "medium" | "large";
182
182
  type?: "info" | "error" | "success";
183
183
  }> & Readonly<{
184
- onInput?: ((...args: any[]) => any) | undefined;
185
- "onAction-click"?: ((...args: any[]) => any) | undefined;
184
+ onInput?: ((args_0: boolean) => any) | undefined;
185
+ "onAction-click"?: (() => any) | undefined;
186
186
  }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
187
- input: (...args: any[]) => void;
188
- "action-click": (...args: any[]) => void;
187
+ input: (args_0: boolean) => any;
188
+ "action-click": () => any;
189
189
  }, import('vue').PublicProps, {
190
190
  type: "info" | "error" | "success";
191
191
  iconName: (typeof iconNames)[number] | null;
@@ -208,8 +208,8 @@ declare const meta: {
208
208
  iconSize?: "small" | "medium" | "large";
209
209
  type?: "info" | "error" | "success";
210
210
  }> & Readonly<{
211
- onInput?: ((...args: any[]) => any) | undefined;
212
- "onAction-click"?: ((...args: any[]) => any) | undefined;
211
+ onInput?: ((args_0: boolean) => any) | undefined;
212
+ "onAction-click"?: (() => any) | undefined;
213
213
  }>, {}, {}, {}, {}, {
214
214
  type: "info" | "error" | "success";
215
215
  iconName: (typeof iconNames)[number] | null;
@@ -227,11 +227,11 @@ declare const meta: {
227
227
  iconSize?: "small" | "medium" | "large";
228
228
  type?: "info" | "error" | "success";
229
229
  }> & Readonly<{
230
- onInput?: ((...args: any[]) => any) | undefined;
231
- "onAction-click"?: ((...args: any[]) => any) | undefined;
230
+ onInput?: ((args_0: boolean) => any) | undefined;
231
+ "onAction-click"?: (() => any) | undefined;
232
232
  }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
233
- input: (...args: any[]) => void;
234
- "action-click": (...args: any[]) => void;
233
+ input: (args_0: boolean) => any;
234
+ "action-click": () => any;
235
235
  }, string, {
236
236
  type: "info" | "error" | "success";
237
237
  iconName: (typeof iconNames)[number] | null;
@@ -256,11 +256,11 @@ declare const meta: {
256
256
  iconSize?: "small" | "medium" | "large";
257
257
  type?: "info" | "error" | "success";
258
258
  }> & Readonly<{
259
- onInput?: ((...args: any[]) => any) | undefined;
260
- "onAction-click"?: ((...args: any[]) => any) | undefined;
259
+ onInput?: ((args_0: boolean) => any) | undefined;
260
+ "onAction-click"?: (() => any) | undefined;
261
261
  }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
262
- input: (...args: any[]) => void;
263
- "action-click": (...args: any[]) => void;
262
+ input: (args_0: boolean) => any;
263
+ "action-click": () => any;
264
264
  }, import('vue').PublicProps, {
265
265
  type: "info" | "error" | "success";
266
266
  iconName: (typeof iconNames)[number] | null;
@@ -283,8 +283,8 @@ declare const meta: {
283
283
  iconSize?: "small" | "medium" | "large";
284
284
  type?: "info" | "error" | "success";
285
285
  }> & Readonly<{
286
- onInput?: ((...args: any[]) => any) | undefined;
287
- "onAction-click"?: ((...args: any[]) => any) | undefined;
286
+ onInput?: ((args_0: boolean) => any) | undefined;
287
+ "onAction-click"?: (() => any) | undefined;
288
288
  }>, {}, {}, {}, {}, {
289
289
  type: "info" | "error" | "success";
290
290
  iconName: (typeof iconNames)[number] | null;
@@ -302,11 +302,11 @@ declare const meta: {
302
302
  iconSize?: "small" | "medium" | "large";
303
303
  type?: "info" | "error" | "success";
304
304
  }> & Readonly<{
305
- onInput?: ((...args: any[]) => any) | undefined;
306
- "onAction-click"?: ((...args: any[]) => any) | undefined;
305
+ onInput?: ((args_0: boolean) => any) | undefined;
306
+ "onAction-click"?: (() => any) | undefined;
307
307
  }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
308
- input: (...args: any[]) => void;
309
- "action-click": (...args: any[]) => void;
308
+ input: (args_0: boolean) => any;
309
+ "action-click": () => any;
310
310
  }, string, {
311
311
  type: "info" | "error" | "success";
312
312
  iconName: (typeof iconNames)[number] | null;
@@ -19,11 +19,11 @@ declare function __VLS_template(): {
19
19
  };
20
20
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
21
21
  declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
22
- input: (...args: any[]) => void;
23
- "action-click": (...args: any[]) => void;
22
+ input: (args_0: boolean) => any;
23
+ "action-click": () => any;
24
24
  }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
25
- onInput?: ((...args: any[]) => any) | undefined;
26
- "onAction-click"?: ((...args: any[]) => any) | undefined;
25
+ onInput?: ((args_0: boolean) => any) | undefined;
26
+ "onAction-click"?: (() => any) | undefined;
27
27
  }>, {
28
28
  type: "info" | "error" | "success";
29
29
  iconName: (typeof iconNames)[number] | null;