@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.
- package/dist/components/UiAutocomplete/UiAutocomplete.stories.d.ts +29 -29
- package/dist/components/UiAutocomplete/UiAutocomplete.vue.d.ts +29 -29
- package/dist/components/UiButton/UiButton.stories.d.ts +3 -3
- package/dist/components/UiButton/UiButton.vue.d.ts +1 -1
- package/dist/components/UiButtonGroup/UiButtonGroup.stories.d.ts +13 -1
- package/dist/components/UiCheckBox/UiCheckBox.stories.d.ts +7 -6
- package/dist/components/UiCheckBox/UiCheckBox.vue.d.ts +4 -4
- package/dist/components/UiCheckBoxGroup/UiCheckBoxGroup.stories.d.ts +6 -6
- package/dist/components/UiCheckBoxGroup/UiCheckBoxGroup.vue.d.ts +6 -6
- package/dist/components/UiColorPicker/UiColorPicker.stories.d.ts +3 -3
- package/dist/components/UiColorPicker/UiColorPicker.vue.d.ts +3 -3
- package/dist/components/UiDatePicker/UiDatePicker.stories.d.ts +2713 -57
- package/dist/components/UiDatePicker/UiDatePicker.vue.d.ts +33 -33
- package/dist/components/UiDialog/UiDialog.stories.d.ts +224 -12
- package/dist/components/UiDialog/UiDialog.vue.d.ts +2 -2
- package/dist/components/UiFilterBadge/UiFilterBadge.stories.d.ts +100 -21
- package/dist/components/UiFilterBadgeButton/UiFilterBadgeButton.stories.d.ts +133 -15
- package/dist/components/UiFilterBadgeButton/UiFilterBadgeButton.vue.d.ts +2 -2
- package/dist/components/UiFilterButton/UiFilterButton.stories.d.ts +80 -6
- package/dist/components/UiFilterButton/UiFilterButton.vue.d.ts +2 -2
- package/dist/components/UiIcon/UiIcon.stories.d.ts +1 -16
- package/dist/components/UiIconButton/UiIconButton.stories.d.ts +56 -8
- package/dist/components/UiIconButton/UiIconButton.vue.d.ts +3 -3
- package/dist/components/UiInfoContent/UiInfoContent.stories.d.ts +100 -4
- package/dist/components/UiInput/UiInput.stories.d.ts +427 -76
- package/dist/components/UiInput/UiInput.vue.d.ts +12 -11
- package/dist/components/UiList/UiList.stories.d.ts +13 -292
- package/dist/components/UiListItem/UiListItem.stories.d.ts +248 -24
- package/dist/components/UiListItem/UiListItem.vue.d.ts +4 -4
- package/dist/components/UiMenu/UiMenu.stories.d.ts +55 -189
- package/dist/components/UiMenu/UiMenu.vue.d.ts +15 -9
- package/dist/components/UiOverlay/UiOverlay.stories.d.ts +64 -12
- package/dist/components/UiOverlay/UiOverlay.vue.d.ts +2 -2
- package/dist/components/UiOverlayMenu/UiOverlayMenu.stories.d.ts +110 -34
- package/dist/components/UiOverlayMenu/UiOverlayMenu.vue.d.ts +2 -2
- package/dist/components/UiRadioInputGroup/UiRadioInputGroup.stories.d.ts +56 -26
- package/dist/components/UiRadioInputGroup/UiRadioInputGroup.vue.d.ts +8 -7
- package/dist/components/UiSearchBar/UiSearchBar.stories.d.ts +36 -317
- package/dist/components/UiSearchBar/UiSearchBar.vue.d.ts +12 -14
- package/dist/components/UiSearchInput/UiSearchInput.stories.d.ts +196 -36
- package/dist/components/UiSearchInput/UiSearchInput.vue.d.ts +7 -7
- package/dist/components/UiSimpleInput/UiSimpleInput.stories.d.ts +48 -6
- package/dist/components/UiSimpleInput/UiSimpleInput.vue.d.ts +2 -2
- package/dist/components/UiSkeletonBox/UiSkeletonBox.stories.d.ts +26 -2
- package/dist/components/UiSnackbar/UiSnackbar.stories.d.ts +163 -23
- package/dist/components/UiSnackbar/UiSnackbar.vue.d.ts +4 -4
- package/dist/components/UiSpinner/UiSpinner.stories.d.ts +20 -2
- package/dist/components/UiToggleButton/UiToggleButton.stories.d.ts +11 -5
- package/dist/components/UiToggleButton/UiToggleButton.vue.d.ts +4 -2
- package/dist/components/UiTooltip/UiTooltip.stories.d.ts +200 -2
- package/dist/dpa-shared-components.mjs +6458 -6461
- package/dist/dpa-shared-components.umd.js +4 -4
- package/dist/style.css +1 -1
- package/dist/tailwind/tailwind.config.d.cts +3 -211
- package/dist/tailwind.config.cjs +7 -3
- package/package.json +9 -9
|
@@ -4,7 +4,7 @@ declare const meta: {
|
|
|
4
4
|
title: string;
|
|
5
5
|
component: {
|
|
6
6
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
7
|
-
value?:
|
|
7
|
+
value?: string;
|
|
8
8
|
checkBoxMenu?: boolean;
|
|
9
9
|
isChecked?: boolean;
|
|
10
10
|
selected?: boolean;
|
|
@@ -18,12 +18,12 @@ declare const meta: {
|
|
|
18
18
|
checkboxSize?: "small" | "medium";
|
|
19
19
|
disabled?: boolean;
|
|
20
20
|
}> & Readonly<{
|
|
21
|
-
"onList-item-click"?: ((
|
|
21
|
+
"onList-item-click"?: ((args_0: string) => any) | undefined;
|
|
22
22
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
23
|
-
"list-item-click": (
|
|
23
|
+
"list-item-click": (args_0: string) => any;
|
|
24
24
|
}, import('vue').PublicProps, {
|
|
25
25
|
disabled: boolean;
|
|
26
|
-
value:
|
|
26
|
+
value: string;
|
|
27
27
|
checkBoxMenu: boolean;
|
|
28
28
|
isChecked: boolean;
|
|
29
29
|
selected: boolean;
|
|
@@ -45,7 +45,7 @@ declare const meta: {
|
|
|
45
45
|
M: {};
|
|
46
46
|
Defaults: {};
|
|
47
47
|
}, Readonly<{
|
|
48
|
-
value?:
|
|
48
|
+
value?: string;
|
|
49
49
|
checkBoxMenu?: boolean;
|
|
50
50
|
isChecked?: boolean;
|
|
51
51
|
selected?: boolean;
|
|
@@ -59,10 +59,10 @@ declare const meta: {
|
|
|
59
59
|
checkboxSize?: "small" | "medium";
|
|
60
60
|
disabled?: boolean;
|
|
61
61
|
}> & Readonly<{
|
|
62
|
-
"onList-item-click"?: ((
|
|
62
|
+
"onList-item-click"?: ((args_0: string) => any) | undefined;
|
|
63
63
|
}>, {}, {}, {}, {}, {
|
|
64
64
|
disabled: boolean;
|
|
65
|
-
value:
|
|
65
|
+
value: string;
|
|
66
66
|
checkBoxMenu: boolean;
|
|
67
67
|
isChecked: boolean;
|
|
68
68
|
selected: boolean;
|
|
@@ -79,7 +79,7 @@ declare const meta: {
|
|
|
79
79
|
__isTeleport?: never;
|
|
80
80
|
__isSuspense?: never;
|
|
81
81
|
} & import('vue').ComponentOptionsBase<Readonly<{
|
|
82
|
-
value?:
|
|
82
|
+
value?: string;
|
|
83
83
|
checkBoxMenu?: boolean;
|
|
84
84
|
isChecked?: boolean;
|
|
85
85
|
selected?: boolean;
|
|
@@ -93,12 +93,12 @@ declare const meta: {
|
|
|
93
93
|
checkboxSize?: "small" | "medium";
|
|
94
94
|
disabled?: boolean;
|
|
95
95
|
}> & Readonly<{
|
|
96
|
-
"onList-item-click"?: ((
|
|
96
|
+
"onList-item-click"?: ((args_0: string) => any) | undefined;
|
|
97
97
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
98
|
-
"list-item-click": (
|
|
98
|
+
"list-item-click": (args_0: string) => any;
|
|
99
99
|
}, string, {
|
|
100
100
|
disabled: boolean;
|
|
101
|
-
value:
|
|
101
|
+
value: string;
|
|
102
102
|
checkBoxMenu: boolean;
|
|
103
103
|
isChecked: boolean;
|
|
104
104
|
selected: boolean;
|
|
@@ -165,14 +165,238 @@ declare const meta: {
|
|
|
165
165
|
disabled: false;
|
|
166
166
|
overrideClasses: string;
|
|
167
167
|
};
|
|
168
|
-
render: (args:
|
|
168
|
+
render: (args: import('@storybook/vue3').ComponentPropsAndSlots<{
|
|
169
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
170
|
+
value?: string;
|
|
171
|
+
checkBoxMenu?: boolean;
|
|
172
|
+
isChecked?: boolean;
|
|
173
|
+
selected?: boolean;
|
|
174
|
+
selectable?: boolean;
|
|
175
|
+
overrideClasses?: string;
|
|
176
|
+
checkBoxColor?: "blue" | "gray";
|
|
177
|
+
iconName?: (typeof iconNames)[number] | null;
|
|
178
|
+
imageSrc?: string;
|
|
179
|
+
imageShape?: "rounded" | "square";
|
|
180
|
+
iconSize?: "small" | "medium" | "large";
|
|
181
|
+
checkboxSize?: "small" | "medium";
|
|
182
|
+
disabled?: boolean;
|
|
183
|
+
}> & Readonly<{
|
|
184
|
+
"onList-item-click"?: ((args_0: string) => any) | undefined;
|
|
185
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
186
|
+
"list-item-click": (args_0: string) => any;
|
|
187
|
+
}, import('vue').PublicProps, {
|
|
188
|
+
disabled: boolean;
|
|
189
|
+
value: string;
|
|
190
|
+
checkBoxMenu: boolean;
|
|
191
|
+
isChecked: boolean;
|
|
192
|
+
selected: boolean;
|
|
193
|
+
selectable: boolean;
|
|
194
|
+
overrideClasses: string;
|
|
195
|
+
checkBoxColor: "blue" | "gray";
|
|
196
|
+
iconName: (typeof iconNames)[number] | null;
|
|
197
|
+
imageSrc: string;
|
|
198
|
+
imageShape: "rounded" | "square";
|
|
199
|
+
iconSize: "small" | "medium" | "large";
|
|
200
|
+
checkboxSize: "small" | "medium";
|
|
201
|
+
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
202
|
+
itemEl: HTMLLIElement;
|
|
203
|
+
}, HTMLLIElement, import('vue').ComponentProvideOptions, {
|
|
204
|
+
P: {};
|
|
205
|
+
B: {};
|
|
206
|
+
D: {};
|
|
207
|
+
C: {};
|
|
208
|
+
M: {};
|
|
209
|
+
Defaults: {};
|
|
210
|
+
}, Readonly<{
|
|
211
|
+
value?: string;
|
|
212
|
+
checkBoxMenu?: boolean;
|
|
213
|
+
isChecked?: boolean;
|
|
214
|
+
selected?: boolean;
|
|
215
|
+
selectable?: boolean;
|
|
216
|
+
overrideClasses?: string;
|
|
217
|
+
checkBoxColor?: "blue" | "gray";
|
|
218
|
+
iconName?: (typeof iconNames)[number] | null;
|
|
219
|
+
imageSrc?: string;
|
|
220
|
+
imageShape?: "rounded" | "square";
|
|
221
|
+
iconSize?: "small" | "medium" | "large";
|
|
222
|
+
checkboxSize?: "small" | "medium";
|
|
223
|
+
disabled?: boolean;
|
|
224
|
+
}> & Readonly<{
|
|
225
|
+
"onList-item-click"?: ((args_0: string) => any) | undefined;
|
|
226
|
+
}>, {}, {}, {}, {}, {
|
|
227
|
+
disabled: boolean;
|
|
228
|
+
value: string;
|
|
229
|
+
checkBoxMenu: boolean;
|
|
230
|
+
isChecked: boolean;
|
|
231
|
+
selected: boolean;
|
|
232
|
+
selectable: boolean;
|
|
233
|
+
overrideClasses: string;
|
|
234
|
+
checkBoxColor: "blue" | "gray";
|
|
235
|
+
iconName: (typeof iconNames)[number] | null;
|
|
236
|
+
imageSrc: string;
|
|
237
|
+
imageShape: "rounded" | "square";
|
|
238
|
+
iconSize: "small" | "medium" | "large";
|
|
239
|
+
checkboxSize: "small" | "medium";
|
|
240
|
+
}>;
|
|
241
|
+
__isFragment?: never;
|
|
242
|
+
__isTeleport?: never;
|
|
243
|
+
__isSuspense?: never;
|
|
244
|
+
} & import('vue').ComponentOptionsBase<Readonly<{
|
|
245
|
+
value?: string;
|
|
246
|
+
checkBoxMenu?: boolean;
|
|
247
|
+
isChecked?: boolean;
|
|
248
|
+
selected?: boolean;
|
|
249
|
+
selectable?: boolean;
|
|
250
|
+
overrideClasses?: string;
|
|
251
|
+
checkBoxColor?: "blue" | "gray";
|
|
252
|
+
iconName?: (typeof iconNames)[number] | null;
|
|
253
|
+
imageSrc?: string;
|
|
254
|
+
imageShape?: "rounded" | "square";
|
|
255
|
+
iconSize?: "small" | "medium" | "large";
|
|
256
|
+
checkboxSize?: "small" | "medium";
|
|
257
|
+
disabled?: boolean;
|
|
258
|
+
}> & Readonly<{
|
|
259
|
+
"onList-item-click"?: ((args_0: string) => any) | undefined;
|
|
260
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
261
|
+
"list-item-click": (args_0: string) => any;
|
|
262
|
+
}, string, {
|
|
263
|
+
disabled: boolean;
|
|
264
|
+
value: string;
|
|
265
|
+
checkBoxMenu: boolean;
|
|
266
|
+
isChecked: boolean;
|
|
267
|
+
selected: boolean;
|
|
268
|
+
selectable: boolean;
|
|
269
|
+
overrideClasses: string;
|
|
270
|
+
checkBoxColor: "blue" | "gray";
|
|
271
|
+
iconName: (typeof iconNames)[number] | null;
|
|
272
|
+
imageSrc: string;
|
|
273
|
+
imageShape: "rounded" | "square";
|
|
274
|
+
iconSize: "small" | "medium" | "large";
|
|
275
|
+
checkboxSize: "small" | "medium";
|
|
276
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
277
|
+
$slots: {
|
|
278
|
+
default?(_: {}): any;
|
|
279
|
+
};
|
|
280
|
+
})>) => {
|
|
169
281
|
setup(this: void): {
|
|
170
|
-
args:
|
|
282
|
+
args: import('@storybook/vue3').ComponentPropsAndSlots<{
|
|
283
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
284
|
+
value?: string;
|
|
285
|
+
checkBoxMenu?: boolean;
|
|
286
|
+
isChecked?: boolean;
|
|
287
|
+
selected?: boolean;
|
|
288
|
+
selectable?: boolean;
|
|
289
|
+
overrideClasses?: string;
|
|
290
|
+
checkBoxColor?: "blue" | "gray";
|
|
291
|
+
iconName?: (typeof iconNames)[number] | null;
|
|
292
|
+
imageSrc?: string;
|
|
293
|
+
imageShape?: "rounded" | "square";
|
|
294
|
+
iconSize?: "small" | "medium" | "large";
|
|
295
|
+
checkboxSize?: "small" | "medium";
|
|
296
|
+
disabled?: boolean;
|
|
297
|
+
}> & Readonly<{
|
|
298
|
+
"onList-item-click"?: ((args_0: string) => any) | undefined;
|
|
299
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
300
|
+
"list-item-click": (args_0: string) => any;
|
|
301
|
+
}, import('vue').PublicProps, {
|
|
302
|
+
disabled: boolean;
|
|
303
|
+
value: string;
|
|
304
|
+
checkBoxMenu: boolean;
|
|
305
|
+
isChecked: boolean;
|
|
306
|
+
selected: boolean;
|
|
307
|
+
selectable: boolean;
|
|
308
|
+
overrideClasses: string;
|
|
309
|
+
checkBoxColor: "blue" | "gray";
|
|
310
|
+
iconName: (typeof iconNames)[number] | null;
|
|
311
|
+
imageSrc: string;
|
|
312
|
+
imageShape: "rounded" | "square";
|
|
313
|
+
iconSize: "small" | "medium" | "large";
|
|
314
|
+
checkboxSize: "small" | "medium";
|
|
315
|
+
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
316
|
+
itemEl: HTMLLIElement;
|
|
317
|
+
}, HTMLLIElement, import('vue').ComponentProvideOptions, {
|
|
318
|
+
P: {};
|
|
319
|
+
B: {};
|
|
320
|
+
D: {};
|
|
321
|
+
C: {};
|
|
322
|
+
M: {};
|
|
323
|
+
Defaults: {};
|
|
324
|
+
}, Readonly<{
|
|
325
|
+
value?: string;
|
|
326
|
+
checkBoxMenu?: boolean;
|
|
327
|
+
isChecked?: boolean;
|
|
328
|
+
selected?: boolean;
|
|
329
|
+
selectable?: boolean;
|
|
330
|
+
overrideClasses?: string;
|
|
331
|
+
checkBoxColor?: "blue" | "gray";
|
|
332
|
+
iconName?: (typeof iconNames)[number] | null;
|
|
333
|
+
imageSrc?: string;
|
|
334
|
+
imageShape?: "rounded" | "square";
|
|
335
|
+
iconSize?: "small" | "medium" | "large";
|
|
336
|
+
checkboxSize?: "small" | "medium";
|
|
337
|
+
disabled?: boolean;
|
|
338
|
+
}> & Readonly<{
|
|
339
|
+
"onList-item-click"?: ((args_0: string) => any) | undefined;
|
|
340
|
+
}>, {}, {}, {}, {}, {
|
|
341
|
+
disabled: boolean;
|
|
342
|
+
value: string;
|
|
343
|
+
checkBoxMenu: boolean;
|
|
344
|
+
isChecked: boolean;
|
|
345
|
+
selected: boolean;
|
|
346
|
+
selectable: boolean;
|
|
347
|
+
overrideClasses: string;
|
|
348
|
+
checkBoxColor: "blue" | "gray";
|
|
349
|
+
iconName: (typeof iconNames)[number] | null;
|
|
350
|
+
imageSrc: string;
|
|
351
|
+
imageShape: "rounded" | "square";
|
|
352
|
+
iconSize: "small" | "medium" | "large";
|
|
353
|
+
checkboxSize: "small" | "medium";
|
|
354
|
+
}>;
|
|
355
|
+
__isFragment?: never;
|
|
356
|
+
__isTeleport?: never;
|
|
357
|
+
__isSuspense?: never;
|
|
358
|
+
} & import('vue').ComponentOptionsBase<Readonly<{
|
|
359
|
+
value?: string;
|
|
360
|
+
checkBoxMenu?: boolean;
|
|
361
|
+
isChecked?: boolean;
|
|
362
|
+
selected?: boolean;
|
|
363
|
+
selectable?: boolean;
|
|
364
|
+
overrideClasses?: string;
|
|
365
|
+
checkBoxColor?: "blue" | "gray";
|
|
366
|
+
iconName?: (typeof iconNames)[number] | null;
|
|
367
|
+
imageSrc?: string;
|
|
368
|
+
imageShape?: "rounded" | "square";
|
|
369
|
+
iconSize?: "small" | "medium" | "large";
|
|
370
|
+
checkboxSize?: "small" | "medium";
|
|
371
|
+
disabled?: boolean;
|
|
372
|
+
}> & Readonly<{
|
|
373
|
+
"onList-item-click"?: ((args_0: string) => any) | undefined;
|
|
374
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
375
|
+
"list-item-click": (args_0: string) => any;
|
|
376
|
+
}, string, {
|
|
377
|
+
disabled: boolean;
|
|
378
|
+
value: string;
|
|
379
|
+
checkBoxMenu: boolean;
|
|
380
|
+
isChecked: boolean;
|
|
381
|
+
selected: boolean;
|
|
382
|
+
selectable: boolean;
|
|
383
|
+
overrideClasses: string;
|
|
384
|
+
checkBoxColor: "blue" | "gray";
|
|
385
|
+
iconName: (typeof iconNames)[number] | null;
|
|
386
|
+
imageSrc: string;
|
|
387
|
+
imageShape: "rounded" | "square";
|
|
388
|
+
iconSize: "small" | "medium" | "large";
|
|
389
|
+
checkboxSize: "small" | "medium";
|
|
390
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
391
|
+
$slots: {
|
|
392
|
+
default?(_: {}): any;
|
|
393
|
+
};
|
|
394
|
+
})>;
|
|
171
395
|
};
|
|
172
396
|
components: {
|
|
173
397
|
UiListItem: {
|
|
174
398
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
175
|
-
value?:
|
|
399
|
+
value?: string;
|
|
176
400
|
checkBoxMenu?: boolean;
|
|
177
401
|
isChecked?: boolean;
|
|
178
402
|
selected?: boolean;
|
|
@@ -186,12 +410,12 @@ declare const meta: {
|
|
|
186
410
|
checkboxSize?: "small" | "medium";
|
|
187
411
|
disabled?: boolean;
|
|
188
412
|
}> & Readonly<{
|
|
189
|
-
"onList-item-click"?: ((
|
|
413
|
+
"onList-item-click"?: ((args_0: string) => any) | undefined;
|
|
190
414
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
191
|
-
"list-item-click": (
|
|
415
|
+
"list-item-click": (args_0: string) => any;
|
|
192
416
|
}, import('vue').PublicProps, {
|
|
193
417
|
disabled: boolean;
|
|
194
|
-
value:
|
|
418
|
+
value: string;
|
|
195
419
|
checkBoxMenu: boolean;
|
|
196
420
|
isChecked: boolean;
|
|
197
421
|
selected: boolean;
|
|
@@ -213,7 +437,7 @@ declare const meta: {
|
|
|
213
437
|
M: {};
|
|
214
438
|
Defaults: {};
|
|
215
439
|
}, Readonly<{
|
|
216
|
-
value?:
|
|
440
|
+
value?: string;
|
|
217
441
|
checkBoxMenu?: boolean;
|
|
218
442
|
isChecked?: boolean;
|
|
219
443
|
selected?: boolean;
|
|
@@ -227,10 +451,10 @@ declare const meta: {
|
|
|
227
451
|
checkboxSize?: "small" | "medium";
|
|
228
452
|
disabled?: boolean;
|
|
229
453
|
}> & Readonly<{
|
|
230
|
-
"onList-item-click"?: ((
|
|
454
|
+
"onList-item-click"?: ((args_0: string) => any) | undefined;
|
|
231
455
|
}>, {}, {}, {}, {}, {
|
|
232
456
|
disabled: boolean;
|
|
233
|
-
value:
|
|
457
|
+
value: string;
|
|
234
458
|
checkBoxMenu: boolean;
|
|
235
459
|
isChecked: boolean;
|
|
236
460
|
selected: boolean;
|
|
@@ -247,7 +471,7 @@ declare const meta: {
|
|
|
247
471
|
__isTeleport?: never;
|
|
248
472
|
__isSuspense?: never;
|
|
249
473
|
} & import('vue').ComponentOptionsBase<Readonly<{
|
|
250
|
-
value?:
|
|
474
|
+
value?: string;
|
|
251
475
|
checkBoxMenu?: boolean;
|
|
252
476
|
isChecked?: boolean;
|
|
253
477
|
selected?: boolean;
|
|
@@ -261,12 +485,12 @@ declare const meta: {
|
|
|
261
485
|
checkboxSize?: "small" | "medium";
|
|
262
486
|
disabled?: boolean;
|
|
263
487
|
}> & Readonly<{
|
|
264
|
-
"onList-item-click"?: ((
|
|
488
|
+
"onList-item-click"?: ((args_0: string) => any) | undefined;
|
|
265
489
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
266
|
-
"list-item-click": (
|
|
490
|
+
"list-item-click": (args_0: string) => any;
|
|
267
491
|
}, string, {
|
|
268
492
|
disabled: boolean;
|
|
269
|
-
value:
|
|
493
|
+
value: string;
|
|
270
494
|
checkBoxMenu: boolean;
|
|
271
495
|
isChecked: boolean;
|
|
272
496
|
selected: boolean;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { iconNames } from '../UiIcon/iconNames';
|
|
2
2
|
type __VLS_Props = {
|
|
3
|
-
value?:
|
|
3
|
+
value?: string;
|
|
4
4
|
checkBoxMenu?: boolean;
|
|
5
5
|
isChecked?: boolean;
|
|
6
6
|
selected?: boolean;
|
|
@@ -26,12 +26,12 @@ declare function __VLS_template(): {
|
|
|
26
26
|
};
|
|
27
27
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
28
28
|
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
29
|
-
"list-item-click": (
|
|
29
|
+
"list-item-click": (args_0: string) => any;
|
|
30
30
|
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
31
|
-
"onList-item-click"?: ((
|
|
31
|
+
"onList-item-click"?: ((args_0: string) => any) | undefined;
|
|
32
32
|
}>, {
|
|
33
33
|
disabled: boolean;
|
|
34
|
-
value:
|
|
34
|
+
value: string;
|
|
35
35
|
checkBoxMenu: boolean;
|
|
36
36
|
isChecked: boolean;
|
|
37
37
|
selected: boolean;
|