@dpa-id-components/dpa-shared-components 8.1.1-0 → 8.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.
Files changed (57) hide show
  1. package/dist/components/DpaEventItem/DpaEventItem.stories.d.ts +10 -10
  2. package/dist/components/DpaMediaItem/DpaMediaItem.stories.d.ts +2 -2
  3. package/dist/components/UiAutocomplete/UiAutocomplete.stories.d.ts +4 -1
  4. package/dist/components/UiAutocomplete/UiAutocomplete.vue.d.ts +4 -1
  5. package/dist/components/UiBadge/UiBadge.stories.d.ts +2 -2
  6. package/dist/components/UiButton/UiButton.stories.d.ts +18 -18
  7. package/dist/components/UiButton/UiButton.vue.d.ts +9 -9
  8. package/dist/components/UiButtonGroup/UiButtonGroup.stories.d.ts +2 -2
  9. package/dist/components/UiCard/UiCard.stories.d.ts +2 -2
  10. package/dist/components/UiCheckBox/UiCheckBox.stories.d.ts +9 -5
  11. package/dist/components/UiCheckBox/UiCheckBox.vue.d.ts +3 -1
  12. package/dist/components/UiCheckBoxGroup/UiCheckBoxGroup.stories.d.ts +5 -1
  13. package/dist/components/UiCheckBoxGroup/UiCheckBoxGroup.vue.d.ts +5 -1
  14. package/dist/components/UiChip/UiChip.stories.d.ts +2 -2
  15. package/dist/components/UiCollapseNavigation/UiCollapseNavigation.stories.d.ts +2 -2
  16. package/dist/components/UiDatePicker/UiDatePicker.vue.d.ts +4 -3
  17. package/dist/components/UiDialog/UiDialog.stories.d.ts +16 -8
  18. package/dist/components/UiDialog/UiDialog.vue.d.ts +3 -1
  19. package/dist/components/UiFilterBadge/UiFilterBadge.stories.d.ts +4 -4
  20. package/dist/components/UiFilterBadgeButton/UiFilterBadgeButton.stories.d.ts +20 -12
  21. package/dist/components/UiFilterBadgeButton/UiFilterBadgeButton.vue.d.ts +3 -1
  22. package/dist/components/UiFilterButton/UiFilterButton.stories.d.ts +6 -2
  23. package/dist/components/UiFilterButton/UiFilterButton.vue.d.ts +6 -3
  24. package/dist/components/UiIconButton/UiIconButton.vue.d.ts +1 -1
  25. package/dist/components/UiInfoContent/UiInfoContent.stories.d.ts +22 -22
  26. package/dist/components/UiInput/UiInput.stories.d.ts +32 -20
  27. package/dist/components/UiInput/UiInput.vue.d.ts +18 -12
  28. package/dist/components/UiList/UiList.stories.d.ts +30 -18
  29. package/dist/components/UiListItem/UiListItem.stories.d.ts +16 -8
  30. package/dist/components/UiListItem/UiListItem.vue.d.ts +3 -1
  31. package/dist/components/UiMenu/UiMenu.stories.d.ts +14 -2
  32. package/dist/components/UiMenu/UiMenu.vue.d.ts +10 -3
  33. package/dist/components/UiOverlay/UiOverlay.stories.d.ts +16 -8
  34. package/dist/components/UiOverlay/UiOverlay.vue.d.ts +3 -1
  35. package/dist/components/UiOverlayMenu/UiOverlayMenu.stories.d.ts +36 -20
  36. package/dist/components/UiOverlayMenu/UiOverlayMenu.vue.d.ts +3 -1
  37. package/dist/components/UiRadioInputGroup/UiRadioInputGroup.stories.d.ts +24 -20
  38. package/dist/components/UiRadioInputGroup/UiRadioInputGroup.vue.d.ts +12 -10
  39. package/dist/components/UiSearchBar/UiSearchBar.stories.d.ts +90 -62
  40. package/dist/components/UiSearchBar/UiSearchBar.vue.d.ts +15 -8
  41. package/dist/components/UiSearchInput/UiSearchInput.stories.d.ts +30 -30
  42. package/dist/components/UiSearchInput/UiSearchInput.vue.d.ts +8 -8
  43. package/dist/components/UiSection/UiSection.stories.d.ts +2 -2
  44. package/dist/components/UiSectionDivider/UiSectionDivider.stories.d.ts +2 -2
  45. package/dist/components/UiSectionDivider/UiSectionDivider.vue.d.ts +1 -1
  46. package/dist/components/UiSimpleInput/UiSimpleInput.stories.d.ts +6 -2
  47. package/dist/components/UiSimpleInput/UiSimpleInput.vue.d.ts +3 -1
  48. package/dist/components/UiSnackbar/UiSnackbar.stories.d.ts +24 -12
  49. package/dist/components/UiSnackbar/UiSnackbar.vue.d.ts +4 -1
  50. package/dist/components/UiTextButton/UiTextButton.stories.d.ts +2 -2
  51. package/dist/components/UiToggleButton/UiToggleButton.stories.d.ts +8 -4
  52. package/dist/components/UiToggleButton/UiToggleButton.vue.d.ts +3 -1
  53. package/dist/components/UiTooltip/UiTooltip.stories.d.ts +4 -4
  54. package/dist/dpa-shared-components.mjs +9236 -8350
  55. package/dist/dpa-shared-components.umd.js +5 -5
  56. package/dist/style.css +1 -1
  57. package/package.json +1 -1
@@ -6,6 +6,8 @@ declare const meta: {
6
6
  $: import("vue").ComponentInternalInstance;
7
7
  $data: {};
8
8
  $props: {
9
+ class?: unknown;
10
+ style?: unknown;
9
11
  key?: string | number | symbol | undefined;
10
12
  ref?: import("vue").VNodeRef | undefined;
11
13
  ref_for?: boolean | undefined;
@@ -48,8 +50,6 @@ declare const meta: {
48
50
  }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
49
51
  [key: string]: any;
50
52
  }>) => void)[] | undefined;
51
- class?: unknown;
52
- style?: unknown;
53
53
  };
54
54
  $attrs: {
55
55
  [x: string]: unknown;
@@ -112,6 +112,8 @@ declare const meta: {
112
112
  imageShape?: "rounded" | "square" | undefined;
113
113
  iconSize?: "small" | "medium" | "large" | undefined;
114
114
  checkboxSize?: "small" | "medium" | undefined;
115
+ class?: unknown;
116
+ style?: unknown;
115
117
  key?: string | number | symbol | undefined;
116
118
  ref?: import("vue").VNodeRef | undefined;
117
119
  ref_for?: boolean | undefined;
@@ -154,8 +156,6 @@ declare const meta: {
154
156
  }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
155
157
  [key: string]: any;
156
158
  }>) => void)[] | undefined;
157
- class?: unknown;
158
- style?: unknown;
159
159
  "onList-item-click"?: ((...args: any[]) => any) | undefined;
160
160
  };
161
161
  $attrs: {
@@ -226,7 +226,9 @@ declare const meta: {
226
226
  };
227
227
  }>> & {
228
228
  "onList-item-click"?: ((...args: any[]) => any) | undefined;
229
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "list-item-click"[], string, {
229
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
230
+ "list-item-click": (...args: any[]) => void;
231
+ }, string, {
230
232
  iconName: string | null;
231
233
  disabled: boolean;
232
234
  value: any;
@@ -374,7 +376,9 @@ declare const meta: {
374
376
  };
375
377
  }>> & {
376
378
  "onList-item-click"?: ((...args: any[]) => any) | undefined;
377
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "list-item-click"[], "list-item-click", {
379
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
380
+ "list-item-click": (...args: any[]) => void;
381
+ }, string, {
378
382
  iconName: string | null;
379
383
  disabled: boolean;
380
384
  value: any;
@@ -415,6 +419,8 @@ export declare const WithCheckboxes: {
415
419
  $: import("vue").ComponentInternalInstance;
416
420
  $data: {};
417
421
  $props: {
422
+ class?: unknown;
423
+ style?: unknown;
418
424
  key?: string | number | symbol | undefined;
419
425
  ref?: import("vue").VNodeRef | undefined;
420
426
  ref_for?: boolean | undefined;
@@ -457,8 +463,6 @@ export declare const WithCheckboxes: {
457
463
  }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
458
464
  [key: string]: any;
459
465
  }>) => void)[] | undefined;
460
- class?: unknown;
461
- style?: unknown;
462
466
  };
463
467
  $attrs: {
464
468
  [x: string]: unknown;
@@ -520,6 +524,8 @@ export declare const WithCheckboxes: {
520
524
  imageShape?: "rounded" | "square" | undefined;
521
525
  iconSize?: "small" | "medium" | "large" | undefined;
522
526
  checkboxSize?: "small" | "medium" | undefined;
527
+ class?: unknown;
528
+ style?: unknown;
523
529
  key?: string | number | symbol | undefined;
524
530
  ref?: import("vue").VNodeRef | undefined;
525
531
  ref_for?: boolean | undefined;
@@ -562,8 +568,6 @@ export declare const WithCheckboxes: {
562
568
  }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
563
569
  [key: string]: any;
564
570
  }>) => void)[] | undefined;
565
- class?: unknown;
566
- style?: unknown;
567
571
  "onList-item-click"?: ((...args: any[]) => any) | undefined;
568
572
  };
569
573
  $attrs: {
@@ -634,7 +638,9 @@ export declare const WithCheckboxes: {
634
638
  };
635
639
  }>> & {
636
640
  "onList-item-click"?: ((...args: any[]) => any) | undefined;
637
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "list-item-click"[], string, {
641
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
642
+ "list-item-click": (...args: any[]) => void;
643
+ }, string, {
638
644
  iconName: string | null;
639
645
  disabled: boolean;
640
646
  value: any;
@@ -782,7 +788,9 @@ export declare const WithCheckboxes: {
782
788
  };
783
789
  }>> & {
784
790
  "onList-item-click"?: ((...args: any[]) => any) | undefined;
785
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "list-item-click"[], "list-item-click", {
791
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
792
+ "list-item-click": (...args: any[]) => void;
793
+ }, string, {
786
794
  iconName: string | null;
787
795
  disabled: boolean;
788
796
  value: any;
@@ -816,6 +824,8 @@ export declare const WithCheckmark: {
816
824
  $: import("vue").ComponentInternalInstance;
817
825
  $data: {};
818
826
  $props: {
827
+ class?: unknown;
828
+ style?: unknown;
819
829
  key?: string | number | symbol | undefined;
820
830
  ref?: import("vue").VNodeRef | undefined;
821
831
  ref_for?: boolean | undefined;
@@ -858,8 +868,6 @@ export declare const WithCheckmark: {
858
868
  }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
859
869
  [key: string]: any;
860
870
  }>) => void)[] | undefined;
861
- class?: unknown;
862
- style?: unknown;
863
871
  };
864
872
  $attrs: {
865
873
  [x: string]: unknown;
@@ -921,6 +929,8 @@ export declare const WithCheckmark: {
921
929
  imageShape?: "rounded" | "square" | undefined;
922
930
  iconSize?: "small" | "medium" | "large" | undefined;
923
931
  checkboxSize?: "small" | "medium" | undefined;
932
+ class?: unknown;
933
+ style?: unknown;
924
934
  key?: string | number | symbol | undefined;
925
935
  ref?: import("vue").VNodeRef | undefined;
926
936
  ref_for?: boolean | undefined;
@@ -963,8 +973,6 @@ export declare const WithCheckmark: {
963
973
  }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
964
974
  [key: string]: any;
965
975
  }>) => void)[] | undefined;
966
- class?: unknown;
967
- style?: unknown;
968
976
  "onList-item-click"?: ((...args: any[]) => any) | undefined;
969
977
  };
970
978
  $attrs: {
@@ -1035,7 +1043,9 @@ export declare const WithCheckmark: {
1035
1043
  };
1036
1044
  }>> & {
1037
1045
  "onList-item-click"?: ((...args: any[]) => any) | undefined;
1038
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "list-item-click"[], string, {
1046
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1047
+ "list-item-click": (...args: any[]) => void;
1048
+ }, string, {
1039
1049
  iconName: string | null;
1040
1050
  disabled: boolean;
1041
1051
  value: any;
@@ -1183,7 +1193,9 @@ export declare const WithCheckmark: {
1183
1193
  };
1184
1194
  }>> & {
1185
1195
  "onList-item-click"?: ((...args: any[]) => any) | undefined;
1186
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "list-item-click"[], "list-item-click", {
1196
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1197
+ "list-item-click": (...args: any[]) => void;
1198
+ }, string, {
1187
1199
  iconName: string | null;
1188
1200
  disabled: boolean;
1189
1201
  value: any;
@@ -19,6 +19,8 @@ declare const meta: {
19
19
  imageShape?: "rounded" | "square" | undefined;
20
20
  iconSize?: "small" | "medium" | "large" | undefined;
21
21
  checkboxSize?: "small" | "medium" | undefined;
22
+ class?: unknown;
23
+ style?: unknown;
22
24
  key?: string | number | symbol | undefined;
23
25
  ref?: import("vue").VNodeRef | undefined;
24
26
  ref_for?: boolean | undefined;
@@ -61,8 +63,6 @@ declare const meta: {
61
63
  }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
62
64
  [key: string]: any;
63
65
  }>) => void)[] | undefined;
64
- class?: unknown;
65
- style?: unknown;
66
66
  "onList-item-click"?: ((...args: any[]) => any) | undefined;
67
67
  };
68
68
  $attrs: {
@@ -133,7 +133,9 @@ declare const meta: {
133
133
  };
134
134
  }>> & {
135
135
  "onList-item-click"?: ((...args: any[]) => any) | undefined;
136
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "list-item-click"[], string, {
136
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
137
+ "list-item-click": (...args: any[]) => void;
138
+ }, string, {
137
139
  iconName: string | null;
138
140
  disabled: boolean;
139
141
  value: any;
@@ -281,7 +283,9 @@ declare const meta: {
281
283
  };
282
284
  }>> & {
283
285
  "onList-item-click"?: ((...args: any[]) => any) | undefined;
284
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "list-item-click"[], "list-item-click", {
286
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
287
+ "list-item-click": (...args: any[]) => void;
288
+ }, string, {
285
289
  iconName: string | null;
286
290
  disabled: boolean;
287
291
  value: any;
@@ -373,6 +377,8 @@ declare const meta: {
373
377
  imageShape?: "rounded" | "square" | undefined;
374
378
  iconSize?: "small" | "medium" | "large" | undefined;
375
379
  checkboxSize?: "small" | "medium" | undefined;
380
+ class?: unknown;
381
+ style?: unknown;
376
382
  key?: string | number | symbol | undefined;
377
383
  ref?: import("vue").VNodeRef | undefined;
378
384
  ref_for?: boolean | undefined;
@@ -415,8 +421,6 @@ declare const meta: {
415
421
  }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
416
422
  [key: string]: any;
417
423
  }>) => void)[] | undefined;
418
- class?: unknown;
419
- style?: unknown;
420
424
  "onList-item-click"?: ((...args: any[]) => any) | undefined;
421
425
  };
422
426
  $attrs: {
@@ -487,7 +491,9 @@ declare const meta: {
487
491
  };
488
492
  }>> & {
489
493
  "onList-item-click"?: ((...args: any[]) => any) | undefined;
490
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "list-item-click"[], string, {
494
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
495
+ "list-item-click": (...args: any[]) => void;
496
+ }, string, {
491
497
  iconName: string | null;
492
498
  disabled: boolean;
493
499
  value: any;
@@ -635,7 +641,9 @@ declare const meta: {
635
641
  };
636
642
  }>> & {
637
643
  "onList-item-click"?: ((...args: any[]) => any) | undefined;
638
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "list-item-click"[], "list-item-click", {
644
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
645
+ "list-item-click": (...args: any[]) => void;
646
+ }, string, {
639
647
  iconName: string | null;
640
648
  disabled: boolean;
641
649
  value: any;
@@ -51,7 +51,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
51
51
  type: import("vue").PropType<"small" | "medium">;
52
52
  default: string;
53
53
  };
54
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "list-item-click"[], "list-item-click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
54
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
55
+ "list-item-click": (...args: any[]) => void;
56
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
55
57
  iconName: {
56
58
  type: import("vue").PropType<string | null>;
57
59
  default: null;
@@ -87,7 +87,13 @@ declare const meta: {
87
87
  type: import("vue").PropType<boolean>;
88
88
  default: boolean;
89
89
  };
90
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("close" | "reset" | "input" | "open" | "option-selected")[], "close" | "reset" | "input" | "open" | "option-selected", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
90
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
91
+ close: (...args: any[]) => void;
92
+ reset: (...args: any[]) => void;
93
+ input: (...args: any[]) => void;
94
+ open: (...args: any[]) => void;
95
+ "option-selected": (...args: any[]) => void;
96
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
91
97
  disabled: {
92
98
  type: import("vue").PropType<boolean>;
93
99
  default: boolean;
@@ -400,7 +406,13 @@ export declare const WithBlankButton: {
400
406
  type: import("vue").PropType<boolean>;
401
407
  default: boolean;
402
408
  };
403
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("close" | "reset" | "input" | "open" | "option-selected")[], "close" | "reset" | "input" | "open" | "option-selected", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
409
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
410
+ close: (...args: any[]) => void;
411
+ reset: (...args: any[]) => void;
412
+ input: (...args: any[]) => void;
413
+ open: (...args: any[]) => void;
414
+ "option-selected": (...args: any[]) => void;
415
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
404
416
  disabled: {
405
417
  type: import("vue").PropType<boolean>;
406
418
  default: boolean;
@@ -1,3 +1,4 @@
1
+ import { iconNames } from '../../components/UiIcon/iconNames';
1
2
  declare const _default: import("vue").DefineComponent<{
2
3
  disabled: {
3
4
  type: import("vue").PropType<boolean>;
@@ -84,7 +85,13 @@ declare const _default: import("vue").DefineComponent<{
84
85
  type: import("vue").PropType<boolean>;
85
86
  default: boolean;
86
87
  };
87
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("close" | "reset" | "input" | "open" | "option-selected")[], "close" | "reset" | "input" | "open" | "option-selected", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
88
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
89
+ close: (...args: any[]) => void;
90
+ reset: (...args: any[]) => void;
91
+ input: (...args: any[]) => void;
92
+ open: (...args: any[]) => void;
93
+ "option-selected": (...args: any[]) => void;
94
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
88
95
  disabled: {
89
96
  type: import("vue").PropType<boolean>;
90
97
  default: boolean;
@@ -182,12 +189,12 @@ declare const _default: import("vue").DefineComponent<{
182
189
  iconSize: "small" | "medium" | "large";
183
190
  checkboxSize: "small" | "medium";
184
191
  active: boolean;
185
- iconLeft: string | null;
192
+ iconLeft: (typeof iconNames)[number] | null;
186
193
  hasAutoFocus: boolean;
187
194
  isOpen: boolean;
188
195
  defaultTitle: string;
189
196
  multiLabel: string;
190
- filterButtonSize: "xs" | "small";
197
+ filterButtonSize: "small" | "xs";
191
198
  buttonVariant: "blue-rounded" | "white-rounded" | "transparent-rounded" | "blank";
192
199
  listVariant: "checkbox" | "selectable" | "blank";
193
200
  checkboxColor: "blue" | "gray";
@@ -6,6 +6,8 @@ declare const meta: {
6
6
  $: import("vue").ComponentInternalInstance;
7
7
  $data: {};
8
8
  $props: {
9
+ class?: unknown;
10
+ style?: unknown;
9
11
  key?: string | number | symbol | undefined;
10
12
  ref?: import("vue").VNodeRef | undefined;
11
13
  ref_for?: boolean | undefined;
@@ -48,8 +50,6 @@ declare const meta: {
48
50
  }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
49
51
  [key: string]: any;
50
52
  }>) => void)[] | undefined;
51
- class?: unknown;
52
- style?: unknown;
53
53
  onClose?: ((...args: any[]) => any) | undefined;
54
54
  };
55
55
  $attrs: {
@@ -67,7 +67,9 @@ declare const meta: {
67
67
  $el: any;
68
68
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>> & {
69
69
  onClose?: ((...args: any[]) => any) | undefined;
70
- }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "close"[], string, {}, {}, string, {}> & {
70
+ }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
71
+ close: (...args: any[]) => void;
72
+ }, string, {}, {}, string, {}> & {
71
73
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
72
74
  created?: ((() => void) | (() => void)[]) | undefined;
73
75
  beforeMount?: ((() => void) | (() => void)[]) | undefined;
@@ -95,7 +97,9 @@ declare const meta: {
95
97
  __isSuspense?: undefined;
96
98
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>> & {
97
99
  onClose?: ((...args: any[]) => any) | undefined;
98
- }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "close"[], "close", {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
100
+ }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
101
+ close: (...args: any[]) => void;
102
+ }, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
99
103
  $slots: {
100
104
  default?(_: {}): any;
101
105
  };
@@ -110,6 +114,8 @@ declare const meta: {
110
114
  $: import("vue").ComponentInternalInstance;
111
115
  $data: {};
112
116
  $props: {
117
+ class?: unknown;
118
+ style?: unknown;
113
119
  key?: string | number | symbol | undefined;
114
120
  ref?: import("vue").VNodeRef | undefined;
115
121
  ref_for?: boolean | undefined;
@@ -152,8 +158,6 @@ declare const meta: {
152
158
  }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
153
159
  [key: string]: any;
154
160
  }>) => void)[] | undefined;
155
- class?: unknown;
156
- style?: unknown;
157
161
  onClose?: ((...args: any[]) => any) | undefined;
158
162
  };
159
163
  $attrs: {
@@ -171,7 +175,9 @@ declare const meta: {
171
175
  $el: any;
172
176
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>> & {
173
177
  onClose?: ((...args: any[]) => any) | undefined;
174
- }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "close"[], string, {}, {}, string, {}> & {
178
+ }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
179
+ close: (...args: any[]) => void;
180
+ }, string, {}, {}, string, {}> & {
175
181
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
176
182
  created?: ((() => void) | (() => void)[]) | undefined;
177
183
  beforeMount?: ((() => void) | (() => void)[]) | undefined;
@@ -199,7 +205,9 @@ declare const meta: {
199
205
  __isSuspense?: undefined;
200
206
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>> & {
201
207
  onClose?: ((...args: any[]) => any) | undefined;
202
- }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "close"[], "close", {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
208
+ }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
209
+ close: (...args: any[]) => void;
210
+ }, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
203
211
  $slots: {
204
212
  default?(_: {}): any;
205
213
  };
@@ -1,4 +1,6 @@
1
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "close"[], "close", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>> & {
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
2
+ close: (...args: any[]) => void;
3
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>> & {
2
4
  onClose?: ((...args: any[]) => any) | undefined;
3
5
  }, {}, {}>, {
4
6
  default?(_: {}): any;
@@ -7,6 +7,8 @@ declare const meta: {
7
7
  $data: {};
8
8
  $props: {
9
9
  isOpen?: boolean | undefined;
10
+ class?: unknown;
11
+ style?: unknown;
10
12
  key?: string | number | symbol | undefined;
11
13
  ref?: import("vue").VNodeRef | undefined;
12
14
  ref_for?: boolean | undefined;
@@ -49,8 +51,6 @@ declare const meta: {
49
51
  }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
50
52
  [key: string]: any;
51
53
  }>) => void)[] | undefined;
52
- class?: unknown;
53
- style?: unknown;
54
54
  onClose?: ((...args: any[]) => any) | undefined;
55
55
  };
56
56
  $attrs: {
@@ -74,7 +74,9 @@ declare const meta: {
74
74
  };
75
75
  }>> & {
76
76
  onClose?: ((...args: any[]) => any) | undefined;
77
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "close"[], string, {
77
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
78
+ close: (...args: any[]) => void;
79
+ }, string, {
78
80
  isOpen: boolean;
79
81
  }, {}, string, {}> & {
80
82
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
@@ -116,7 +118,9 @@ declare const meta: {
116
118
  };
117
119
  }>> & {
118
120
  onClose?: ((...args: any[]) => any) | undefined;
119
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "close"[], "close", {
121
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
122
+ close: (...args: any[]) => void;
123
+ }, string, {
120
124
  isOpen: boolean;
121
125
  }, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
122
126
  $slots: {
@@ -129,6 +133,8 @@ declare const meta: {
129
133
  $: import("vue").ComponentInternalInstance;
130
134
  $data: {};
131
135
  $props: {
136
+ class?: unknown;
137
+ style?: unknown;
132
138
  key?: string | number | symbol | undefined;
133
139
  ref?: import("vue").VNodeRef | undefined;
134
140
  ref_for?: boolean | undefined;
@@ -171,8 +177,6 @@ declare const meta: {
171
177
  }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
172
178
  [key: string]: any;
173
179
  }>) => void)[] | undefined;
174
- class?: unknown;
175
- style?: unknown;
176
180
  };
177
181
  $attrs: {
178
182
  [x: string]: unknown;
@@ -234,6 +238,8 @@ declare const meta: {
234
238
  imageShape?: "rounded" | "square" | undefined;
235
239
  iconSize?: "small" | "medium" | "large" | undefined;
236
240
  checkboxSize?: "small" | "medium" | undefined;
241
+ class?: unknown;
242
+ style?: unknown;
237
243
  key?: string | number | symbol | undefined;
238
244
  ref?: import("vue").VNodeRef | undefined;
239
245
  ref_for?: boolean | undefined;
@@ -276,8 +282,6 @@ declare const meta: {
276
282
  }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
277
283
  [key: string]: any;
278
284
  }>) => void)[] | undefined;
279
- class?: unknown;
280
- style?: unknown;
281
285
  "onList-item-click"?: ((...args: any[]) => any) | undefined;
282
286
  };
283
287
  $attrs: {
@@ -348,7 +352,9 @@ declare const meta: {
348
352
  };
349
353
  }>> & {
350
354
  "onList-item-click"?: ((...args: any[]) => any) | undefined;
351
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "list-item-click"[], string, {
355
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
356
+ "list-item-click": (...args: any[]) => void;
357
+ }, string, {
352
358
  iconName: string | null;
353
359
  disabled: boolean;
354
360
  value: any;
@@ -496,7 +502,9 @@ declare const meta: {
496
502
  };
497
503
  }>> & {
498
504
  "onList-item-click"?: ((...args: any[]) => any) | undefined;
499
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "list-item-click"[], "list-item-click", {
505
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
506
+ "list-item-click": (...args: any[]) => void;
507
+ }, string, {
500
508
  iconName: string | null;
501
509
  disabled: boolean;
502
510
  value: any;
@@ -535,6 +543,8 @@ declare const meta: {
535
543
  $data: {};
536
544
  $props: {
537
545
  isOpen?: boolean | undefined;
546
+ class?: unknown;
547
+ style?: unknown;
538
548
  key?: string | number | symbol | undefined;
539
549
  ref?: import("vue").VNodeRef | undefined;
540
550
  ref_for?: boolean | undefined;
@@ -577,8 +587,6 @@ declare const meta: {
577
587
  }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
578
588
  [key: string]: any;
579
589
  }>) => void)[] | undefined;
580
- class?: unknown;
581
- style?: unknown;
582
590
  onClose?: ((...args: any[]) => any) | undefined;
583
591
  };
584
592
  $attrs: {
@@ -602,7 +610,9 @@ declare const meta: {
602
610
  };
603
611
  }>> & {
604
612
  onClose?: ((...args: any[]) => any) | undefined;
605
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "close"[], string, {
613
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
614
+ close: (...args: any[]) => void;
615
+ }, string, {
606
616
  isOpen: boolean;
607
617
  }, {}, string, {}> & {
608
618
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
@@ -644,7 +654,9 @@ declare const meta: {
644
654
  };
645
655
  }>> & {
646
656
  onClose?: ((...args: any[]) => any) | undefined;
647
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "close"[], "close", {
657
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
658
+ close: (...args: any[]) => void;
659
+ }, string, {
648
660
  isOpen: boolean;
649
661
  }, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
650
662
  $slots: {
@@ -656,6 +668,8 @@ declare const meta: {
656
668
  $: import("vue").ComponentInternalInstance;
657
669
  $data: {};
658
670
  $props: {
671
+ class?: unknown;
672
+ style?: unknown;
659
673
  key?: string | number | symbol | undefined;
660
674
  ref?: import("vue").VNodeRef | undefined;
661
675
  ref_for?: boolean | undefined;
@@ -698,8 +712,6 @@ declare const meta: {
698
712
  }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
699
713
  [key: string]: any;
700
714
  }>) => void)[] | undefined;
701
- class?: unknown;
702
- style?: unknown;
703
715
  };
704
716
  $attrs: {
705
717
  [x: string]: unknown;
@@ -761,6 +773,8 @@ declare const meta: {
761
773
  imageShape?: "rounded" | "square" | undefined;
762
774
  iconSize?: "small" | "medium" | "large" | undefined;
763
775
  checkboxSize?: "small" | "medium" | undefined;
776
+ class?: unknown;
777
+ style?: unknown;
764
778
  key?: string | number | symbol | undefined;
765
779
  ref?: import("vue").VNodeRef | undefined;
766
780
  ref_for?: boolean | undefined;
@@ -803,8 +817,6 @@ declare const meta: {
803
817
  }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
804
818
  [key: string]: any;
805
819
  }>) => void)[] | undefined;
806
- class?: unknown;
807
- style?: unknown;
808
820
  "onList-item-click"?: ((...args: any[]) => any) | undefined;
809
821
  };
810
822
  $attrs: {
@@ -875,7 +887,9 @@ declare const meta: {
875
887
  };
876
888
  }>> & {
877
889
  "onList-item-click"?: ((...args: any[]) => any) | undefined;
878
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "list-item-click"[], string, {
890
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
891
+ "list-item-click": (...args: any[]) => void;
892
+ }, string, {
879
893
  iconName: string | null;
880
894
  disabled: boolean;
881
895
  value: any;
@@ -1023,7 +1037,9 @@ declare const meta: {
1023
1037
  };
1024
1038
  }>> & {
1025
1039
  "onList-item-click"?: ((...args: any[]) => any) | undefined;
1026
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "list-item-click"[], "list-item-click", {
1040
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1041
+ "list-item-click": (...args: any[]) => void;
1042
+ }, string, {
1027
1043
  iconName: string | null;
1028
1044
  disabled: boolean;
1029
1045
  value: any;
@@ -4,7 +4,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
4
4
  required: true;
5
5
  default: boolean;
6
6
  };
7
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "close"[], "close", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
7
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
8
+ close: (...args: any[]) => void;
9
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
8
10
  isOpen: {
9
11
  type: import("vue").PropType<boolean>;
10
12
  required: true;