@dpa-id-components/dpa-shared-components 12.0.2 → 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 (56) 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/UiButtonGroup/UiButtonGroup.stories.d.ts +13 -1
  6. package/dist/components/UiCheckBox/UiCheckBox.stories.d.ts +7 -6
  7. package/dist/components/UiCheckBox/UiCheckBox.vue.d.ts +4 -4
  8. package/dist/components/UiCheckBoxGroup/UiCheckBoxGroup.stories.d.ts +6 -6
  9. package/dist/components/UiCheckBoxGroup/UiCheckBoxGroup.vue.d.ts +6 -6
  10. package/dist/components/UiColorPicker/UiColorPicker.stories.d.ts +3 -3
  11. package/dist/components/UiColorPicker/UiColorPicker.vue.d.ts +3 -3
  12. package/dist/components/UiDatePicker/UiDatePicker.stories.d.ts +2713 -57
  13. package/dist/components/UiDatePicker/UiDatePicker.vue.d.ts +33 -33
  14. package/dist/components/UiDialog/UiDialog.stories.d.ts +224 -12
  15. package/dist/components/UiDialog/UiDialog.vue.d.ts +2 -2
  16. package/dist/components/UiFilterBadge/UiFilterBadge.stories.d.ts +100 -21
  17. package/dist/components/UiFilterBadgeButton/UiFilterBadgeButton.stories.d.ts +133 -15
  18. package/dist/components/UiFilterBadgeButton/UiFilterBadgeButton.vue.d.ts +2 -2
  19. package/dist/components/UiFilterButton/UiFilterButton.stories.d.ts +80 -6
  20. package/dist/components/UiFilterButton/UiFilterButton.vue.d.ts +2 -2
  21. package/dist/components/UiIcon/UiIcon.stories.d.ts +1 -16
  22. package/dist/components/UiIconButton/UiIconButton.stories.d.ts +56 -8
  23. package/dist/components/UiIconButton/UiIconButton.vue.d.ts +3 -3
  24. package/dist/components/UiInfoContent/UiInfoContent.stories.d.ts +100 -4
  25. package/dist/components/UiInput/UiInput.stories.d.ts +427 -76
  26. package/dist/components/UiInput/UiInput.vue.d.ts +12 -11
  27. package/dist/components/UiList/UiList.stories.d.ts +13 -292
  28. package/dist/components/UiListItem/UiListItem.stories.d.ts +248 -24
  29. package/dist/components/UiListItem/UiListItem.vue.d.ts +4 -4
  30. package/dist/components/UiMenu/UiMenu.stories.d.ts +55 -189
  31. package/dist/components/UiMenu/UiMenu.vue.d.ts +15 -9
  32. package/dist/components/UiOverlay/UiOverlay.stories.d.ts +64 -12
  33. package/dist/components/UiOverlay/UiOverlay.vue.d.ts +2 -2
  34. package/dist/components/UiOverlayMenu/UiOverlayMenu.stories.d.ts +110 -34
  35. package/dist/components/UiOverlayMenu/UiOverlayMenu.vue.d.ts +2 -2
  36. package/dist/components/UiRadioInputGroup/UiRadioInputGroup.stories.d.ts +56 -26
  37. package/dist/components/UiRadioInputGroup/UiRadioInputGroup.vue.d.ts +8 -7
  38. package/dist/components/UiSearchBar/UiSearchBar.stories.d.ts +36 -317
  39. package/dist/components/UiSearchBar/UiSearchBar.vue.d.ts +12 -14
  40. package/dist/components/UiSearchInput/UiSearchInput.stories.d.ts +196 -36
  41. package/dist/components/UiSearchInput/UiSearchInput.vue.d.ts +7 -7
  42. package/dist/components/UiSimpleInput/UiSimpleInput.stories.d.ts +48 -6
  43. package/dist/components/UiSimpleInput/UiSimpleInput.vue.d.ts +2 -2
  44. package/dist/components/UiSkeletonBox/UiSkeletonBox.stories.d.ts +26 -2
  45. package/dist/components/UiSnackbar/UiSnackbar.stories.d.ts +163 -23
  46. package/dist/components/UiSnackbar/UiSnackbar.vue.d.ts +4 -4
  47. package/dist/components/UiSpinner/UiSpinner.stories.d.ts +20 -2
  48. package/dist/components/UiToggleButton/UiToggleButton.stories.d.ts +11 -5
  49. package/dist/components/UiToggleButton/UiToggleButton.vue.d.ts +4 -2
  50. package/dist/components/UiTooltip/UiTooltip.stories.d.ts +200 -2
  51. package/dist/dpa-shared-components.mjs +6458 -6461
  52. package/dist/dpa-shared-components.umd.js +4 -4
  53. package/dist/style.css +1 -1
  54. package/dist/tailwind/tailwind.config.d.cts +3 -211
  55. package/dist/tailwind.config.cjs +7 -3
  56. package/package.json +9 -9
@@ -9,9 +9,9 @@ declare const meta: {
9
9
  label: string;
10
10
  isActive?: boolean;
11
11
  }> & Readonly<{
12
- onClick?: ((...args: any[]) => any) | undefined;
12
+ onClick?: (() => any) | undefined;
13
13
  }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
14
- click: (...args: any[]) => void;
14
+ click: () => any;
15
15
  }, import('vue').PublicProps, {
16
16
  fill: string;
17
17
  color: string;
@@ -31,7 +31,7 @@ declare const meta: {
31
31
  label: string;
32
32
  isActive?: boolean;
33
33
  }> & Readonly<{
34
- onClick?: ((...args: any[]) => any) | undefined;
34
+ onClick?: (() => any) | undefined;
35
35
  }>, {}, {}, {}, {}, {
36
36
  fill: string;
37
37
  color: string;
@@ -48,9 +48,9 @@ declare const meta: {
48
48
  label: string;
49
49
  isActive?: boolean;
50
50
  }> & Readonly<{
51
- onClick?: ((...args: any[]) => any) | undefined;
51
+ onClick?: (() => any) | undefined;
52
52
  }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
53
- click: (...args: any[]) => void;
53
+ click: () => any;
54
54
  }, string, {
55
55
  fill: string;
56
56
  color: string;
@@ -90,9 +90,127 @@ declare const meta: {
90
90
  label: string;
91
91
  isActive: false;
92
92
  };
93
- render: (args: any) => {
93
+ render: (args: import('@storybook/vue3').ComponentPropsAndSlots<{
94
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
95
+ color?: string;
96
+ fill?: string;
97
+ iconIsFilled?: boolean;
98
+ label: string;
99
+ isActive?: boolean;
100
+ }> & Readonly<{
101
+ onClick?: (() => any) | undefined;
102
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
103
+ click: () => any;
104
+ }, import('vue').PublicProps, {
105
+ fill: string;
106
+ color: string;
107
+ iconIsFilled: boolean;
108
+ isActive: boolean;
109
+ }, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
110
+ P: {};
111
+ B: {};
112
+ D: {};
113
+ C: {};
114
+ M: {};
115
+ Defaults: {};
116
+ }, Readonly<{
117
+ color?: string;
118
+ fill?: string;
119
+ iconIsFilled?: boolean;
120
+ label: string;
121
+ isActive?: boolean;
122
+ }> & Readonly<{
123
+ onClick?: (() => any) | undefined;
124
+ }>, {}, {}, {}, {}, {
125
+ fill: string;
126
+ color: string;
127
+ iconIsFilled: boolean;
128
+ isActive: boolean;
129
+ }>;
130
+ __isFragment?: never;
131
+ __isTeleport?: never;
132
+ __isSuspense?: never;
133
+ } & import('vue').ComponentOptionsBase<Readonly<{
134
+ color?: string;
135
+ fill?: string;
136
+ iconIsFilled?: boolean;
137
+ label: string;
138
+ isActive?: boolean;
139
+ }> & Readonly<{
140
+ onClick?: (() => any) | undefined;
141
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
142
+ click: () => any;
143
+ }, string, {
144
+ fill: string;
145
+ color: string;
146
+ iconIsFilled: boolean;
147
+ isActive: boolean;
148
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
149
+ $slots: {
150
+ default?(_: {}): any;
151
+ };
152
+ })>) => {
94
153
  setup(this: void): {
95
- args: any;
154
+ args: import('@storybook/vue3').ComponentPropsAndSlots<{
155
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
156
+ color?: string;
157
+ fill?: string;
158
+ iconIsFilled?: boolean;
159
+ label: string;
160
+ isActive?: boolean;
161
+ }> & Readonly<{
162
+ onClick?: (() => any) | undefined;
163
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
164
+ click: () => any;
165
+ }, import('vue').PublicProps, {
166
+ fill: string;
167
+ color: string;
168
+ iconIsFilled: boolean;
169
+ isActive: boolean;
170
+ }, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
171
+ P: {};
172
+ B: {};
173
+ D: {};
174
+ C: {};
175
+ M: {};
176
+ Defaults: {};
177
+ }, Readonly<{
178
+ color?: string;
179
+ fill?: string;
180
+ iconIsFilled?: boolean;
181
+ label: string;
182
+ isActive?: boolean;
183
+ }> & Readonly<{
184
+ onClick?: (() => any) | undefined;
185
+ }>, {}, {}, {}, {}, {
186
+ fill: string;
187
+ color: string;
188
+ iconIsFilled: boolean;
189
+ isActive: boolean;
190
+ }>;
191
+ __isFragment?: never;
192
+ __isTeleport?: never;
193
+ __isSuspense?: never;
194
+ } & import('vue').ComponentOptionsBase<Readonly<{
195
+ color?: string;
196
+ fill?: string;
197
+ iconIsFilled?: boolean;
198
+ label: string;
199
+ isActive?: boolean;
200
+ }> & Readonly<{
201
+ onClick?: (() => any) | undefined;
202
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
203
+ click: () => any;
204
+ }, string, {
205
+ fill: string;
206
+ color: string;
207
+ iconIsFilled: boolean;
208
+ isActive: boolean;
209
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
210
+ $slots: {
211
+ default?(_: {}): any;
212
+ };
213
+ })>;
96
214
  };
97
215
  components: {
98
216
  UiFilterBadgeButton: {
@@ -103,9 +221,9 @@ declare const meta: {
103
221
  label: string;
104
222
  isActive?: boolean;
105
223
  }> & Readonly<{
106
- onClick?: ((...args: any[]) => any) | undefined;
224
+ onClick?: (() => any) | undefined;
107
225
  }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
108
- click: (...args: any[]) => void;
226
+ click: () => any;
109
227
  }, import('vue').PublicProps, {
110
228
  fill: string;
111
229
  color: string;
@@ -125,7 +243,7 @@ declare const meta: {
125
243
  label: string;
126
244
  isActive?: boolean;
127
245
  }> & Readonly<{
128
- onClick?: ((...args: any[]) => any) | undefined;
246
+ onClick?: (() => any) | undefined;
129
247
  }>, {}, {}, {}, {}, {
130
248
  fill: string;
131
249
  color: string;
@@ -142,9 +260,9 @@ declare const meta: {
142
260
  label: string;
143
261
  isActive?: boolean;
144
262
  }> & Readonly<{
145
- onClick?: ((...args: any[]) => any) | undefined;
263
+ onClick?: (() => any) | undefined;
146
264
  }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
147
- click: (...args: any[]) => void;
265
+ click: () => any;
148
266
  }, string, {
149
267
  fill: string;
150
268
  color: string;
@@ -162,8 +280,8 @@ declare const meta: {
162
280
  backgroundColor?: "blue" | "none" | "gray-hover";
163
281
  iconColor?: "blue" | "gray" | "white";
164
282
  size?: "small" | "medium" | "large" | "xl";
165
- }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
166
- click: (payload: any) => any;
283
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
284
+ click: (args_0: MouseEvent) => any;
167
285
  }, string, import('vue').PublicProps, Readonly<{
168
286
  iconName: typeof import('../UiIcon/iconNames').iconNames[number];
169
287
  title?: string;
@@ -172,7 +290,7 @@ declare const meta: {
172
290
  iconColor?: "blue" | "gray" | "white";
173
291
  size?: "small" | "medium" | "large" | "xl";
174
292
  }> & Readonly<{
175
- onClick?: ((payload: any) => any) | undefined;
293
+ onClick?: ((args_0: MouseEvent) => any) | undefined;
176
294
  }>, {
177
295
  size: "small" | "medium" | "large" | "xl";
178
296
  disabled: boolean;
@@ -15,9 +15,9 @@ declare function __VLS_template(): {
15
15
  };
16
16
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
17
17
  declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
18
- click: (...args: any[]) => void;
18
+ click: () => any;
19
19
  }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
20
- onClick?: ((...args: any[]) => any) | undefined;
20
+ onClick?: (() => any) | undefined;
21
21
  }>, {
22
22
  fill: string;
23
23
  color: string;
@@ -14,7 +14,7 @@ declare const meta: {
14
14
  hasIcon?: boolean;
15
15
  iconLeft?: (typeof iconNames)[number] | null;
16
16
  }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
17
- click: (...args: any[]) => void;
17
+ click: () => any;
18
18
  }, string, import('vue').PublicProps, Readonly<{
19
19
  title?: string;
20
20
  variant?: "blue-rounded" | "white-rounded" | "transparent-rounded" | "blank" | "blue-blank";
@@ -27,7 +27,7 @@ declare const meta: {
27
27
  hasIcon?: boolean;
28
28
  iconLeft?: (typeof iconNames)[number] | null;
29
29
  }> & Readonly<{
30
- onClick?: ((...args: any[]) => any) | undefined;
30
+ onClick?: (() => any) | undefined;
31
31
  }>, {
32
32
  size: "xs" | "small";
33
33
  disabled: boolean;
@@ -88,9 +88,83 @@ declare const meta: {
88
88
  iconSize: "xs";
89
89
  iconLeft: string;
90
90
  };
91
- render: (args: any) => {
91
+ render: (args: import('@storybook/vue3').ComponentPropsAndSlots<import('vue').DefineComponent<{
92
+ title?: string;
93
+ variant?: "blue-rounded" | "white-rounded" | "transparent-rounded" | "blank" | "blue-blank";
94
+ chevronIcon?: (typeof iconNames)[number];
95
+ rotateIcon?: boolean;
96
+ iconSize?: "xs" | "small" | "large";
97
+ size?: "xs" | "small";
98
+ disabled?: boolean;
99
+ active?: boolean;
100
+ hasIcon?: boolean;
101
+ iconLeft?: (typeof iconNames)[number] | null;
102
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
103
+ click: () => any;
104
+ }, string, import('vue').PublicProps, Readonly<{
105
+ title?: string;
106
+ variant?: "blue-rounded" | "white-rounded" | "transparent-rounded" | "blank" | "blue-blank";
107
+ chevronIcon?: (typeof iconNames)[number];
108
+ rotateIcon?: boolean;
109
+ iconSize?: "xs" | "small" | "large";
110
+ size?: "xs" | "small";
111
+ disabled?: boolean;
112
+ active?: boolean;
113
+ hasIcon?: boolean;
114
+ iconLeft?: (typeof iconNames)[number] | null;
115
+ }> & Readonly<{
116
+ onClick?: (() => any) | undefined;
117
+ }>, {
118
+ size: "xs" | "small";
119
+ disabled: boolean;
120
+ title: string;
121
+ iconSize: "xs" | "small" | "large";
122
+ variant: "blue-rounded" | "white-rounded" | "transparent-rounded" | "blank" | "blue-blank";
123
+ chevronIcon: (typeof iconNames)[number];
124
+ rotateIcon: boolean;
125
+ active: boolean;
126
+ hasIcon: boolean;
127
+ iconLeft: (typeof iconNames)[number] | null;
128
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>>) => {
92
129
  setup(this: void): {
93
- args: any;
130
+ args: import('@storybook/vue3').ComponentPropsAndSlots<import('vue').DefineComponent<{
131
+ title?: string;
132
+ variant?: "blue-rounded" | "white-rounded" | "transparent-rounded" | "blank" | "blue-blank";
133
+ chevronIcon?: (typeof iconNames)[number];
134
+ rotateIcon?: boolean;
135
+ iconSize?: "xs" | "small" | "large";
136
+ size?: "xs" | "small";
137
+ disabled?: boolean;
138
+ active?: boolean;
139
+ hasIcon?: boolean;
140
+ iconLeft?: (typeof iconNames)[number] | null;
141
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
142
+ click: () => any;
143
+ }, string, import('vue').PublicProps, Readonly<{
144
+ title?: string;
145
+ variant?: "blue-rounded" | "white-rounded" | "transparent-rounded" | "blank" | "blue-blank";
146
+ chevronIcon?: (typeof iconNames)[number];
147
+ rotateIcon?: boolean;
148
+ iconSize?: "xs" | "small" | "large";
149
+ size?: "xs" | "small";
150
+ disabled?: boolean;
151
+ active?: boolean;
152
+ hasIcon?: boolean;
153
+ iconLeft?: (typeof iconNames)[number] | null;
154
+ }> & Readonly<{
155
+ onClick?: (() => any) | undefined;
156
+ }>, {
157
+ size: "xs" | "small";
158
+ disabled: boolean;
159
+ title: string;
160
+ iconSize: "xs" | "small" | "large";
161
+ variant: "blue-rounded" | "white-rounded" | "transparent-rounded" | "blank" | "blue-blank";
162
+ chevronIcon: (typeof iconNames)[number];
163
+ rotateIcon: boolean;
164
+ active: boolean;
165
+ hasIcon: boolean;
166
+ iconLeft: (typeof iconNames)[number] | null;
167
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>>;
94
168
  };
95
169
  components: {
96
170
  UiFilterButton: import('vue').DefineComponent<{
@@ -105,7 +179,7 @@ declare const meta: {
105
179
  hasIcon?: boolean;
106
180
  iconLeft?: (typeof iconNames)[number] | null;
107
181
  }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
108
- click: (...args: any[]) => void;
182
+ click: () => any;
109
183
  }, string, import('vue').PublicProps, Readonly<{
110
184
  title?: string;
111
185
  variant?: "blue-rounded" | "white-rounded" | "transparent-rounded" | "blank" | "blue-blank";
@@ -118,7 +192,7 @@ declare const meta: {
118
192
  hasIcon?: boolean;
119
193
  iconLeft?: (typeof iconNames)[number] | null;
120
194
  }> & Readonly<{
121
- onClick?: ((...args: any[]) => any) | undefined;
195
+ onClick?: (() => any) | undefined;
122
196
  }>, {
123
197
  size: "xs" | "small";
124
198
  disabled: boolean;
@@ -12,9 +12,9 @@ type __VLS_Props = {
12
12
  iconLeft?: (typeof iconNames)[number] | null;
13
13
  };
14
14
  declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
15
- click: (...args: any[]) => void;
15
+ click: () => any;
16
16
  }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
17
- onClick?: ((...args: any[]) => any) | undefined;
17
+ onClick?: (() => any) | undefined;
18
18
  }>, {
19
19
  size: "xs" | "small";
20
20
  disabled: boolean;
@@ -32,19 +32,4 @@ declare const meta: {
32
32
  export default meta;
33
33
  type Story = StoryObj<typeof meta>;
34
34
  export declare const Default: Story;
35
- export declare const Overview: {
36
- render: (args: any) => {
37
- setup(): {
38
- args: any;
39
- size: any;
40
- };
41
- components: {
42
- IconOverview: import('vue').DefineComponent<{
43
- size: "xs" | "small" | "medium" | "large" | "xl";
44
- }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
45
- size: "xs" | "small" | "medium" | "large" | "xl";
46
- }> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
47
- };
48
- template: string;
49
- };
50
- };
35
+ export declare const Overview: Story;
@@ -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: (payload: any) => any;
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?: ((payload: any) => any) | undefined;
22
+ onClick?: ((args_0: MouseEvent) => any) | undefined;
23
23
  }>, {
24
24
  size: "small" | "medium" | "large" | "xl";
25
25
  disabled: boolean;
@@ -51,9 +51,57 @@ declare const meta: {
51
51
  backgroundColor: "blue";
52
52
  iconColor: "white";
53
53
  };
54
- render: (args: any) => {
54
+ render: (args: import('@storybook/vue3').ComponentPropsAndSlots<import('vue').DefineComponent<{
55
+ iconName: (typeof iconNames)[number];
56
+ title?: string;
57
+ disabled?: boolean;
58
+ backgroundColor?: "blue" | "none" | "gray-hover";
59
+ iconColor?: "blue" | "gray" | "white";
60
+ size?: "small" | "medium" | "large" | "xl";
61
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
62
+ click: (args_0: MouseEvent) => any;
63
+ }, string, import('vue').PublicProps, Readonly<{
64
+ iconName: (typeof iconNames)[number];
65
+ title?: string;
66
+ disabled?: boolean;
67
+ backgroundColor?: "blue" | "none" | "gray-hover";
68
+ iconColor?: "blue" | "gray" | "white";
69
+ size?: "small" | "medium" | "large" | "xl";
70
+ }> & Readonly<{
71
+ onClick?: ((args_0: MouseEvent) => any) | undefined;
72
+ }>, {
73
+ size: "small" | "medium" | "large" | "xl";
74
+ disabled: boolean;
75
+ title: string;
76
+ backgroundColor: "blue" | "none" | "gray-hover";
77
+ iconColor: "blue" | "gray" | "white";
78
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLButtonElement>>) => {
55
79
  setup(this: void): {
56
- args: any;
80
+ args: import('@storybook/vue3').ComponentPropsAndSlots<import('vue').DefineComponent<{
81
+ iconName: (typeof iconNames)[number];
82
+ title?: string;
83
+ disabled?: boolean;
84
+ backgroundColor?: "blue" | "none" | "gray-hover";
85
+ iconColor?: "blue" | "gray" | "white";
86
+ size?: "small" | "medium" | "large" | "xl";
87
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
88
+ click: (args_0: MouseEvent) => any;
89
+ }, string, import('vue').PublicProps, Readonly<{
90
+ iconName: (typeof iconNames)[number];
91
+ title?: string;
92
+ disabled?: boolean;
93
+ backgroundColor?: "blue" | "none" | "gray-hover";
94
+ iconColor?: "blue" | "gray" | "white";
95
+ size?: "small" | "medium" | "large" | "xl";
96
+ }> & Readonly<{
97
+ onClick?: ((args_0: MouseEvent) => any) | undefined;
98
+ }>, {
99
+ size: "small" | "medium" | "large" | "xl";
100
+ disabled: boolean;
101
+ title: string;
102
+ backgroundColor: "blue" | "none" | "gray-hover";
103
+ iconColor: "blue" | "gray" | "white";
104
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLButtonElement>>;
57
105
  };
58
106
  components: {
59
107
  UiIconButton: import('vue').DefineComponent<{
@@ -63,8 +111,8 @@ declare const meta: {
63
111
  backgroundColor?: "blue" | "none" | "gray-hover";
64
112
  iconColor?: "blue" | "gray" | "white";
65
113
  size?: "small" | "medium" | "large" | "xl";
66
- }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
67
- click: (payload: any) => any;
114
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
115
+ click: (args_0: MouseEvent) => any;
68
116
  }, string, import('vue').PublicProps, Readonly<{
69
117
  iconName: (typeof iconNames)[number];
70
118
  title?: string;
@@ -73,7 +121,7 @@ declare const meta: {
73
121
  iconColor?: "blue" | "gray" | "white";
74
122
  size?: "small" | "medium" | "large" | "xl";
75
123
  }> & Readonly<{
76
- onClick?: ((payload: any) => any) | undefined;
124
+ onClick?: ((args_0: MouseEvent) => any) | undefined;
77
125
  }>, {
78
126
  size: "small" | "medium" | "large" | "xl";
79
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: (payload: any) => any;
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?: ((payload: any) => any) | undefined;
13
+ onClick?: ((args_0: MouseEvent) => any) | undefined;
14
14
  }>, {
15
15
  size: "small" | "medium" | "large" | "xl";
16
16
  disabled: boolean;
@@ -75,9 +75,105 @@ declare const meta: {
75
75
  iconName: string;
76
76
  iconSize: "xl";
77
77
  };
78
- render: (args: any) => {
78
+ render: (args: import('@storybook/vue3').ComponentPropsAndSlots<{
79
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
80
+ iconBackground: "white" | "gray" | "green";
81
+ iconName: (typeof iconNames)[number] | null;
82
+ iconSize: "xs" | "small" | "medium" | "large" | "xl";
83
+ iconColor: "white" | "gray";
84
+ }> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
85
+ iconName: (typeof iconNames)[number] | null;
86
+ iconSize: "xs" | "small" | "medium" | "large" | "xl";
87
+ iconColor: "white" | "gray";
88
+ iconBackground: "white" | "gray" | "green";
89
+ }, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
90
+ P: {};
91
+ B: {};
92
+ D: {};
93
+ C: {};
94
+ M: {};
95
+ Defaults: {};
96
+ }, Readonly<{
97
+ iconBackground: "white" | "gray" | "green";
98
+ iconName: (typeof iconNames)[number] | null;
99
+ iconSize: "xs" | "small" | "medium" | "large" | "xl";
100
+ iconColor: "white" | "gray";
101
+ }> & Readonly<{}>, {}, {}, {}, {}, {
102
+ iconName: (typeof iconNames)[number] | null;
103
+ iconSize: "xs" | "small" | "medium" | "large" | "xl";
104
+ iconColor: "white" | "gray";
105
+ iconBackground: "white" | "gray" | "green";
106
+ }>;
107
+ __isFragment?: never;
108
+ __isTeleport?: never;
109
+ __isSuspense?: never;
110
+ } & import('vue').ComponentOptionsBase<Readonly<{
111
+ iconBackground: "white" | "gray" | "green";
112
+ iconName: (typeof iconNames)[number] | null;
113
+ iconSize: "xs" | "small" | "medium" | "large" | "xl";
114
+ iconColor: "white" | "gray";
115
+ }> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
116
+ iconName: (typeof iconNames)[number] | null;
117
+ iconSize: "xs" | "small" | "medium" | "large" | "xl";
118
+ iconColor: "white" | "gray";
119
+ iconBackground: "white" | "gray" | "green";
120
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
121
+ $slots: {
122
+ title?(_: {}): any;
123
+ default?(_: {}): any;
124
+ actions?(_: {}): any;
125
+ };
126
+ })>) => {
79
127
  setup(this: void): {
80
- args: any;
128
+ args: import('@storybook/vue3').ComponentPropsAndSlots<{
129
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
130
+ iconBackground: "white" | "gray" | "green";
131
+ iconName: (typeof iconNames)[number] | null;
132
+ iconSize: "xs" | "small" | "medium" | "large" | "xl";
133
+ iconColor: "white" | "gray";
134
+ }> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
135
+ iconName: (typeof iconNames)[number] | null;
136
+ iconSize: "xs" | "small" | "medium" | "large" | "xl";
137
+ iconColor: "white" | "gray";
138
+ iconBackground: "white" | "gray" | "green";
139
+ }, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
140
+ P: {};
141
+ B: {};
142
+ D: {};
143
+ C: {};
144
+ M: {};
145
+ Defaults: {};
146
+ }, Readonly<{
147
+ iconBackground: "white" | "gray" | "green";
148
+ iconName: (typeof iconNames)[number] | null;
149
+ iconSize: "xs" | "small" | "medium" | "large" | "xl";
150
+ iconColor: "white" | "gray";
151
+ }> & Readonly<{}>, {}, {}, {}, {}, {
152
+ iconName: (typeof iconNames)[number] | null;
153
+ iconSize: "xs" | "small" | "medium" | "large" | "xl";
154
+ iconColor: "white" | "gray";
155
+ iconBackground: "white" | "gray" | "green";
156
+ }>;
157
+ __isFragment?: never;
158
+ __isTeleport?: never;
159
+ __isSuspense?: never;
160
+ } & import('vue').ComponentOptionsBase<Readonly<{
161
+ iconBackground: "white" | "gray" | "green";
162
+ iconName: (typeof iconNames)[number] | null;
163
+ iconSize: "xs" | "small" | "medium" | "large" | "xl";
164
+ iconColor: "white" | "gray";
165
+ }> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
166
+ iconName: (typeof iconNames)[number] | null;
167
+ iconSize: "xs" | "small" | "medium" | "large" | "xl";
168
+ iconColor: "white" | "gray";
169
+ iconBackground: "white" | "gray" | "green";
170
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
171
+ $slots: {
172
+ title?(_: {}): any;
173
+ default?(_: {}): any;
174
+ actions?(_: {}): any;
175
+ };
176
+ })>;
81
177
  };
82
178
  components: {
83
179
  UiInfoContent: {
@@ -140,7 +236,7 @@ declare const meta: {
140
236
  rounded?: boolean;
141
237
  }> & Readonly<{
142
238
  onClick?: (() => any) | undefined;
143
- }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
239
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
144
240
  click: () => any;
145
241
  }, import('vue').PublicProps, {
146
242
  size: "xs" | "small" | "medium" | "large";
@@ -189,7 +285,7 @@ declare const meta: {
189
285
  rounded?: boolean;
190
286
  }> & Readonly<{
191
287
  onClick?: (() => any) | undefined;
192
- }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
288
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
193
289
  click: () => any;
194
290
  }, string, {
195
291
  size: "xs" | "small" | "medium" | "large";