@aleph-alpha/ui-library 1.11.0 → 1.12.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/README.md +0 -2
- package/dist/system/index.d.ts +860 -179
- package/dist/system/lib.js +33936 -9729
- package/package.json +1 -2
- package/src/compositions/UiDataTable/UiDataTable.stories.ts +6 -7
- package/src/compositions/UiDataTable/UiDataTableColumnHeader.vue +22 -8
- package/src/compositions/UiDataTable/UiDataTablePagination.vue +5 -5
- package/src/compositions/UiDatePicker/UiDatePicker.vue +2 -2
- package/src/primitives/UiAlert/UiAlert.stories.ts +8 -8
- package/src/primitives/UiBadge/UiBadge.stories.ts +9 -9
- package/src/primitives/UiButton/UiButton.stories.ts +12 -12
- package/src/primitives/UiCalendar/UiCalendar.stories.ts +4 -4
- package/src/primitives/UiDropdownMenu/UiDropdownMenu.stories.ts +2 -2
- package/src/primitives/UiIcon/UiIcon.stories.ts +59 -13
- package/src/primitives/UiIcon/UiIcon.vue +41 -3
- package/src/primitives/UiIcon/__tests__/UiIcon.test.ts +33 -4
- package/src/primitives/UiIcon/index.ts +1 -0
- package/src/primitives/UiIcon/types.ts +24 -5
- package/src/primitives/UiIconButton/UiIconButton.stories.ts +36 -36
- package/src/primitives/UiKbd/UiKbd.stories.ts +551 -0
- package/src/primitives/UiKbd/UiKbd.vue +62 -0
- package/src/primitives/UiKbd/UiKbdGroup.vue +16 -0
- package/src/primitives/UiKbd/__tests__/UiKbd.test.ts +46 -0
- package/src/primitives/UiKbd/index.ts +3 -0
- package/src/primitives/UiKbd/types.ts +32 -0
- package/src/primitives/UiLabel/UiLabel.stories.ts +192 -0
- package/src/primitives/UiLabel/UiLabel.vue +16 -0
- package/src/primitives/UiLabel/__tests__/UiLabel.test.ts +43 -0
- package/src/primitives/UiLabel/index.ts +2 -0
- package/src/primitives/UiLabel/types.ts +16 -0
- package/src/primitives/UiListbox/UiListbox.stories.ts +607 -0
- package/src/primitives/UiListbox/UiListbox.vue +30 -0
- package/src/primitives/UiListbox/UiListboxContent.vue +16 -0
- package/src/primitives/UiListbox/UiListboxFilter.vue +16 -0
- package/src/primitives/UiListbox/UiListboxGroup.vue +16 -0
- package/src/primitives/UiListbox/UiListboxGroupLabel.vue +16 -0
- package/src/primitives/UiListbox/UiListboxItem.vue +20 -0
- package/src/primitives/UiListbox/UiListboxItemIndicator.vue +16 -0
- package/src/primitives/UiListbox/__tests__/UiListbox.test.ts +42 -0
- package/src/primitives/UiListbox/index.ts +8 -0
- package/src/primitives/UiListbox/types.ts +119 -0
- package/src/primitives/UiPopover/index.ts +1 -0
- package/src/primitives/UiSeparator/UiSeparator.stories.ts +177 -0
- package/src/primitives/UiSeparator/UiSeparator.vue +17 -0
- package/src/primitives/UiSeparator/__tests__/UiSeparator.test.ts +34 -0
- package/src/primitives/UiSeparator/index.ts +2 -0
- package/src/primitives/UiSeparator/types.ts +23 -0
- package/src/primitives/UiSkeleton/UiSkeleton.stories.ts +247 -0
- package/src/primitives/UiSkeleton/UiSkeleton.vue +24 -0
- package/src/primitives/UiSkeleton/__tests__/UiSkeleton.test.ts +47 -0
- package/src/primitives/UiSkeleton/index.ts +2 -0
- package/src/primitives/UiSkeleton/types.ts +26 -0
- package/src/primitives/UiTable/UiTable.stories.ts +2 -2
- package/src/primitives/UiTagsInput/UiTagsInput.stories.ts +538 -0
- package/src/primitives/UiTagsInput/UiTagsInput.vue +27 -0
- package/src/primitives/UiTagsInput/UiTagsInputInput.vue +14 -0
- package/src/primitives/UiTagsInput/UiTagsInputItem.vue +16 -0
- package/src/primitives/UiTagsInput/UiTagsInputItemDelete.vue +16 -0
- package/src/primitives/UiTagsInput/UiTagsInputItemText.vue +14 -0
- package/src/primitives/UiTagsInput/__tests__/UiTagsInput.test.ts +44 -0
- package/src/primitives/UiTagsInput/index.ts +6 -0
- package/src/primitives/UiTagsInput/types.ts +60 -0
- package/src/primitives/UiToggle/UiToggle.stories.ts +370 -0
- package/src/primitives/UiToggle/UiToggle.vue +28 -0
- package/src/primitives/UiToggle/__tests__/UiToggle.test.ts +62 -0
- package/src/primitives/UiToggle/index.ts +2 -0
- package/src/primitives/UiToggle/types.ts +35 -0
- package/src/primitives/UiTooltip/UiTooltip.stories.ts +8 -8
- package/src/primitives/index.ts +7 -0
- package/src/primitives/shadcn/accordion/AccordionTrigger.vue +5 -4
- package/src/primitives/shadcn/calendar/CalendarNextButton.vue +2 -2
- package/src/primitives/shadcn/calendar/CalendarPrevButton.vue +2 -2
- package/src/primitives/shadcn/checkbox/Checkbox.vue +2 -2
- package/src/primitives/shadcn/dropdown-menu/DropdownMenuCheckboxItem.vue +2 -2
- package/src/primitives/shadcn/dropdown-menu/DropdownMenuSubTrigger.vue +2 -2
- package/src/primitives/shadcn/kbd/Kbd.vue +20 -0
- package/src/primitives/shadcn/kbd/KbdGroup.vue +12 -0
- package/src/primitives/shadcn/kbd/index.ts +2 -0
- package/src/primitives/shadcn/listbox/Listbox.vue +23 -0
- package/src/primitives/shadcn/listbox/ListboxContent.vue +26 -0
- package/src/primitives/shadcn/listbox/ListboxFilter.vue +30 -0
- package/src/primitives/shadcn/listbox/ListboxGroup.vue +26 -0
- package/src/primitives/shadcn/listbox/ListboxGroupLabel.vue +26 -0
- package/src/primitives/shadcn/listbox/ListboxItem.vue +32 -0
- package/src/primitives/shadcn/listbox/ListboxItemIndicator.vue +40 -0
- package/src/primitives/shadcn/listbox/index.ts +7 -0
- package/src/primitives/shadcn/native-select/NativeSelect.vue +5 -4
- package/src/primitives/shadcn/range-calendar/RangeCalendarNextButton.vue +2 -2
- package/src/primitives/shadcn/range-calendar/RangeCalendarPrevButton.vue +2 -2
- package/src/primitives/shadcn/select/SelectItem.vue +2 -2
- package/src/primitives/shadcn/select/SelectScrollDownButton.vue +2 -2
- package/src/primitives/shadcn/select/SelectScrollUpButton.vue +2 -2
- package/src/primitives/shadcn/select/SelectTrigger.vue +2 -2
- package/src/primitives/shadcn/skeleton/Skeleton.vue +10 -0
- package/src/primitives/shadcn/skeleton/index.ts +1 -0
- package/src/primitives/shadcn/spinner/Spinner.vue +5 -4
- package/src/primitives/shadcn/tags-input/TagsInput.vue +33 -0
- package/src/primitives/shadcn/tags-input/TagsInputInput.vue +24 -0
- package/src/primitives/shadcn/tags-input/TagsInputItem.vue +31 -0
- package/src/primitives/shadcn/tags-input/TagsInputItemDelete.vue +46 -0
- package/src/primitives/shadcn/tags-input/TagsInputItemText.vue +24 -0
- package/src/primitives/shadcn/tags-input/index.ts +5 -0
- package/src/primitives/shadcn/toggle/Toggle.vue +34 -0
- package/src/primitives/shadcn/toggle/index.ts +27 -0
package/dist/system/index.d.ts
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { AcceptableInputValue } from 'reka-ui';
|
|
2
|
+
import { AcceptableValue } from 'reka-ui';
|
|
1
3
|
import { AllowedComponentProps } from 'vue';
|
|
2
4
|
import { AsTag } from 'reka-ui';
|
|
3
5
|
import { CalendarDate } from '@internationalized/date';
|
|
@@ -24,6 +26,7 @@ import { TabsContentProps } from 'reka-ui';
|
|
|
24
26
|
import { TabsListProps } from 'reka-ui';
|
|
25
27
|
import { TabsRootProps } from 'reka-ui';
|
|
26
28
|
import { TabsTriggerProps } from 'reka-ui';
|
|
29
|
+
import { TagsInputRootProps } from 'reka-ui';
|
|
27
30
|
import { today } from '@internationalized/date';
|
|
28
31
|
import { TooltipContentProps } from 'reka-ui';
|
|
29
32
|
import { TooltipProviderProps } from 'reka-ui';
|
|
@@ -32,6 +35,7 @@ import { TooltipTriggerProps } from 'reka-ui';
|
|
|
32
35
|
import { default as UiDataTableColumnHeader } from './UiDataTableColumnHeader.vue';
|
|
33
36
|
import { default as UiDataTablePagination } from './UiDataTablePagination.vue';
|
|
34
37
|
import { default as UiDataTableToolbar } from './UiDataTableToolbar.vue';
|
|
38
|
+
import { PopoverAnchor as UiPopoverAnchor } from 'reka-ui';
|
|
35
39
|
import { VariantProps } from 'class-variance-authority';
|
|
36
40
|
import { VNode } from 'vue';
|
|
37
41
|
import { VNodeProps } from 'vue';
|
|
@@ -44,6 +48,38 @@ declare const __VLS_component: DefineComponent<UiAccordionSingleProps | UiAccord
|
|
|
44
48
|
|
|
45
49
|
declare const __VLS_component_10: DefineComponent<UiAlertSubComponentCommonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiAlertSubComponentCommonProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
46
50
|
|
|
51
|
+
declare const __VLS_component_100: DefineComponent<__VLS_Props_17, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
52
|
+
"update:modelValue": (payload: string | number) => any;
|
|
53
|
+
}, string, PublicProps, Readonly<__VLS_Props_17> & Readonly<{
|
|
54
|
+
"onUpdate:modelValue"?: ((payload: string | number) => any) | undefined;
|
|
55
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
56
|
+
|
|
57
|
+
declare const __VLS_component_101: DefineComponent<__VLS_Props_18, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_18> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
58
|
+
|
|
59
|
+
declare const __VLS_component_102: DefineComponent<__VLS_Props_19, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_19> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
60
|
+
|
|
61
|
+
declare const __VLS_component_103: DefineComponent<__VLS_Props_20, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_20> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
62
|
+
|
|
63
|
+
declare const __VLS_component_104: DefineComponent<TooltipRootProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
64
|
+
"update:open": (value: boolean) => any;
|
|
65
|
+
}, string, PublicProps, Readonly<TooltipRootProps> & Readonly<{
|
|
66
|
+
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
67
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
68
|
+
|
|
69
|
+
declare const __VLS_component_105: DefineComponent<__VLS_Props_21, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
70
|
+
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
71
|
+
pointerDownOutside: (event: Event) => any;
|
|
72
|
+
}, string, PublicProps, Readonly<__VLS_Props_21> & Readonly<{
|
|
73
|
+
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
74
|
+
onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
75
|
+
}>, {
|
|
76
|
+
sideOffset: number;
|
|
77
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
78
|
+
|
|
79
|
+
declare const __VLS_component_106: DefineComponent<TooltipProviderProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
80
|
+
|
|
81
|
+
declare const __VLS_component_107: DefineComponent<TooltipTriggerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TooltipTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
82
|
+
|
|
47
83
|
declare const __VLS_component_11: DefineComponent<UiAlertDialogContentProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
48
84
|
openAutoFocus: (event: Event) => any;
|
|
49
85
|
pointerDownOutside: (event: Event) => any;
|
|
@@ -288,15 +324,49 @@ disabled: boolean;
|
|
|
288
324
|
loading: boolean;
|
|
289
325
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
290
326
|
|
|
291
|
-
declare const __VLS_component_61: DefineComponent<
|
|
292
|
-
|
|
327
|
+
declare const __VLS_component_61: DefineComponent<UiKbdProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiKbdProps> & Readonly<{}>, {
|
|
328
|
+
size: "sm" | "default" | "lg";
|
|
329
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
330
|
+
|
|
331
|
+
declare const __VLS_component_62: DefineComponent<UiKbdGroupProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiKbdGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLSpanElement>;
|
|
332
|
+
|
|
333
|
+
declare const __VLS_component_63: DefineComponent<UiLabelProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiLabelProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
334
|
+
|
|
335
|
+
declare const __VLS_component_64: DefineComponent<__VLS_PublicProps_7, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
336
|
+
"update:modelValue": (value: AcceptableValue | AcceptableValue[]) => any;
|
|
293
337
|
}, string, PublicProps, Readonly<__VLS_PublicProps_7> & Readonly<{
|
|
338
|
+
"onUpdate:modelValue"?: ((value: AcceptableValue | AcceptableValue[]) => any) | undefined;
|
|
339
|
+
}>, {
|
|
340
|
+
disabled: boolean;
|
|
341
|
+
multiple: boolean;
|
|
342
|
+
highlightOnHover: boolean;
|
|
343
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
344
|
+
|
|
345
|
+
declare const __VLS_component_65: DefineComponent<UiListboxContentProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiListboxContentProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
346
|
+
|
|
347
|
+
declare const __VLS_component_66: DefineComponent<UiListboxItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
348
|
+
select: (event: Event) => any;
|
|
349
|
+
}, string, PublicProps, Readonly<UiListboxItemProps> & Readonly<{
|
|
350
|
+
onSelect?: ((event: Event) => any) | undefined;
|
|
351
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
352
|
+
|
|
353
|
+
declare const __VLS_component_67: DefineComponent<UiListboxItemIndicatorProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiListboxItemIndicatorProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
354
|
+
|
|
355
|
+
declare const __VLS_component_68: DefineComponent<UiListboxGroupProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiListboxGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
356
|
+
|
|
357
|
+
declare const __VLS_component_69: DefineComponent<UiListboxGroupLabelProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiListboxGroupLabelProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
358
|
+
|
|
359
|
+
declare const __VLS_component_7: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
360
|
+
|
|
361
|
+
declare const __VLS_component_70: DefineComponent<__VLS_PublicProps_9, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
362
|
+
"update:open": (value: boolean) => any;
|
|
363
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_9> & Readonly<{
|
|
294
364
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
295
365
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
296
366
|
|
|
297
|
-
declare const
|
|
367
|
+
declare const __VLS_component_71: DefineComponent<UiPopoverTriggerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiPopoverTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
298
368
|
|
|
299
|
-
declare const
|
|
369
|
+
declare const __VLS_component_72: DefineComponent<UiPopoverContentProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
300
370
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
301
371
|
}, string, PublicProps, Readonly<UiPopoverContentProps> & Readonly<{
|
|
302
372
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
@@ -306,9 +376,9 @@ sideOffset: number;
|
|
|
306
376
|
align: UiPopoverAlign;
|
|
307
377
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
308
378
|
|
|
309
|
-
declare const
|
|
379
|
+
declare const __VLS_component_73: DefineComponent<__VLS_PublicProps_11, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
310
380
|
"update:modelValue": (value: string) => any;
|
|
311
|
-
}, string, PublicProps, Readonly<
|
|
381
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_11> & Readonly<{
|
|
312
382
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
313
383
|
}>, {
|
|
314
384
|
required: boolean;
|
|
@@ -319,7 +389,7 @@ loop: boolean;
|
|
|
319
389
|
orientation: UiRadioGroupOrientation;
|
|
320
390
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
321
391
|
|
|
322
|
-
declare const
|
|
392
|
+
declare const __VLS_component_74: DefineComponent<UiSelectProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
323
393
|
"update:open": (value: boolean) => any;
|
|
324
394
|
"update:modelValue": (value: string) => any;
|
|
325
395
|
}, string, PublicProps, Readonly<UiSelectProps> & Readonly<{
|
|
@@ -336,13 +406,13 @@ modelValue: string;
|
|
|
336
406
|
defaultValue: string;
|
|
337
407
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
338
408
|
|
|
339
|
-
declare const
|
|
409
|
+
declare const __VLS_component_75: DefineComponent<UiSelectTriggerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiSelectTriggerProps> & Readonly<{}>, {
|
|
340
410
|
size: "default" | "sm";
|
|
341
411
|
ariaLabel: string;
|
|
342
412
|
disabled: boolean;
|
|
343
413
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
344
414
|
|
|
345
|
-
declare const
|
|
415
|
+
declare const __VLS_component_76: DefineComponent<UiSelectContentProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
346
416
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
347
417
|
pointerDownOutside: (event: Event) => any;
|
|
348
418
|
}, string, PublicProps, Readonly<UiSelectContentProps> & Readonly<{
|
|
@@ -355,113 +425,101 @@ align: "start" | "center" | "end";
|
|
|
355
425
|
position: "item-aligned" | "popper";
|
|
356
426
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
357
427
|
|
|
358
|
-
declare const
|
|
428
|
+
declare const __VLS_component_77: DefineComponent<UiSelectItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiSelectItemProps> & Readonly<{}>, {
|
|
359
429
|
disabled: boolean;
|
|
360
430
|
textValue: string;
|
|
361
431
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
362
432
|
|
|
363
|
-
declare const
|
|
433
|
+
declare const __VLS_component_78: DefineComponent<UiSelectValueProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiSelectValueProps> & Readonly<{}>, {
|
|
364
434
|
placeholder: string;
|
|
365
435
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
366
436
|
|
|
367
|
-
declare const
|
|
437
|
+
declare const __VLS_component_79: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
368
438
|
|
|
369
|
-
declare const
|
|
439
|
+
declare const __VLS_component_8: DefineComponent<__VLS_PublicProps_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
440
|
+
"update:modelValue": (value: boolean) => any;
|
|
441
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_2> & Readonly<{
|
|
442
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
443
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
370
444
|
|
|
371
|
-
declare const
|
|
445
|
+
declare const __VLS_component_80: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
372
446
|
|
|
373
|
-
declare const
|
|
447
|
+
declare const __VLS_component_81: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
374
448
|
|
|
375
|
-
declare const
|
|
449
|
+
declare const __VLS_component_82: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLTableSectionElement>;
|
|
376
450
|
|
|
377
|
-
declare const
|
|
451
|
+
declare const __VLS_component_83: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLTableSectionElement>;
|
|
378
452
|
|
|
379
|
-
declare const
|
|
453
|
+
declare const __VLS_component_84: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLTableSectionElement>;
|
|
380
454
|
|
|
381
|
-
declare const
|
|
455
|
+
declare const __VLS_component_85: DefineComponent<UiTableRowProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiTableRowProps> & Readonly<{}>, {
|
|
382
456
|
selected: boolean;
|
|
383
457
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLTableRowElement>;
|
|
384
458
|
|
|
385
|
-
declare const
|
|
459
|
+
declare const __VLS_component_86: DefineComponent<UiTableHeadProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiTableHeadProps> & Readonly<{}>, {
|
|
386
460
|
scope: "col" | "row" | "colgroup" | "rowgroup";
|
|
387
461
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLTableCellElement>;
|
|
388
462
|
|
|
389
|
-
declare const
|
|
390
|
-
|
|
391
|
-
declare const __VLS_component_79: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLTableCaptionElement>;
|
|
463
|
+
declare const __VLS_component_87: DefineComponent<UiTableCellProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiTableCellProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLTableCellElement>;
|
|
392
464
|
|
|
393
|
-
declare const
|
|
394
|
-
"update:modelValue": (value: boolean) => any;
|
|
395
|
-
}, string, PublicProps, Readonly<__VLS_PublicProps_2> & Readonly<{
|
|
396
|
-
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
397
|
-
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
465
|
+
declare const __VLS_component_88: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLTableCaptionElement>;
|
|
398
466
|
|
|
399
|
-
declare const
|
|
467
|
+
declare const __VLS_component_89: DefineComponent<UiTableEmptyProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiTableEmptyProps> & Readonly<{}>, {
|
|
400
468
|
colspan: number;
|
|
401
469
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLTableRowElement>;
|
|
402
470
|
|
|
403
|
-
declare const
|
|
471
|
+
declare const __VLS_component_9: DefineComponent<UiAlertSubComponentCommonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiAlertSubComponentCommonProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
472
|
+
|
|
473
|
+
declare const __VLS_component_90: DefineComponent<UiTabsProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
404
474
|
"update:modelValue": (value: string) => any;
|
|
405
475
|
}, string, PublicProps, Readonly<UiTabsProps> & Readonly<{
|
|
406
476
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
407
477
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
408
478
|
|
|
409
|
-
declare const
|
|
479
|
+
declare const __VLS_component_91: DefineComponent<UiTabsListProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiTabsListProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
410
480
|
|
|
411
|
-
declare const
|
|
481
|
+
declare const __VLS_component_92: DefineComponent<UiTabsTriggerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiTabsTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
412
482
|
|
|
413
|
-
declare const
|
|
483
|
+
declare const __VLS_component_93: DefineComponent<UiTabsContentProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiTabsContentProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
414
484
|
|
|
415
|
-
declare const
|
|
416
|
-
"update:
|
|
417
|
-
}, string, PublicProps, Readonly<
|
|
418
|
-
"onUpdate:
|
|
485
|
+
declare const __VLS_component_94: DefineComponent<__VLS_PublicProps_14, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
486
|
+
"update:modelValue": (value: string[]) => any;
|
|
487
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_14> & Readonly<{
|
|
488
|
+
"onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
|
|
419
489
|
}>, {
|
|
420
|
-
class: string;
|
|
421
490
|
disabled: boolean;
|
|
422
|
-
side: UiTooltipSides;
|
|
423
|
-
sideOffset: number;
|
|
424
|
-
align: UiTooltipAlign;
|
|
425
|
-
delayDuration: number;
|
|
426
491
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
427
492
|
|
|
428
|
-
declare const
|
|
429
|
-
as: AsTag | Component;
|
|
430
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
493
|
+
declare const __VLS_component_95: DefineComponent<UiTagsInputItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiTagsInputItemProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
431
494
|
|
|
432
|
-
declare const
|
|
433
|
-
"update:modelValue": (payload: string | number) => any;
|
|
434
|
-
}, string, PublicProps, Readonly<__VLS_Props_13> & Readonly<{
|
|
435
|
-
"onUpdate:modelValue"?: ((payload: string | number) => any) | undefined;
|
|
436
|
-
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
495
|
+
declare const __VLS_component_96: DefineComponent<UiTagsInputItemDeleteProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiTagsInputItemDeleteProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
437
496
|
|
|
438
|
-
declare const
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
497
|
+
declare const __VLS_component_97: DefineComponent<__VLS_PublicProps_16, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
498
|
+
"update:modelValue": (value: boolean) => any;
|
|
499
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_16> & Readonly<{
|
|
500
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
501
|
+
}>, {
|
|
502
|
+
variant: "default" | "outline";
|
|
503
|
+
size: "default" | "sm" | "lg";
|
|
504
|
+
disabled: boolean;
|
|
505
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
445
506
|
|
|
446
|
-
declare const
|
|
507
|
+
declare const __VLS_component_98: DefineComponent<__VLS_PublicProps_17, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
447
508
|
"update:open": (value: boolean) => any;
|
|
448
|
-
}, string, PublicProps, Readonly<
|
|
509
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_17> & Readonly<{
|
|
449
510
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
450
|
-
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
451
|
-
|
|
452
|
-
declare const __VLS_component_92: DefineComponent<__VLS_Props_17, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
453
|
-
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
454
|
-
pointerDownOutside: (event: Event) => any;
|
|
455
|
-
}, string, PublicProps, Readonly<__VLS_Props_17> & Readonly<{
|
|
456
|
-
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
457
|
-
onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
458
511
|
}>, {
|
|
512
|
+
class: string;
|
|
513
|
+
disabled: boolean;
|
|
514
|
+
side: UiTooltipSides;
|
|
459
515
|
sideOffset: number;
|
|
516
|
+
align: UiTooltipAlign;
|
|
517
|
+
delayDuration: number;
|
|
460
518
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
461
519
|
|
|
462
|
-
declare const
|
|
463
|
-
|
|
464
|
-
|
|
520
|
+
declare const __VLS_component_99: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
521
|
+
as: AsTag | Component;
|
|
522
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
465
523
|
|
|
466
524
|
declare type __VLS_PrettifyLocal<T> = {
|
|
467
525
|
[K in keyof T]: T[K];
|
|
@@ -469,47 +527,55 @@ declare type __VLS_PrettifyLocal<T> = {
|
|
|
469
527
|
|
|
470
528
|
declare type __VLS_Props = UiDatePickerProps;
|
|
471
529
|
|
|
472
|
-
declare type __VLS_Props_10 =
|
|
530
|
+
declare type __VLS_Props_10 = UiRadioGroupProps;
|
|
473
531
|
|
|
474
|
-
declare type __VLS_Props_11 =
|
|
532
|
+
declare type __VLS_Props_11 = UiRangeCalendarProps;
|
|
475
533
|
|
|
476
|
-
declare type __VLS_Props_12 =
|
|
534
|
+
declare type __VLS_Props_12 = UiSwitchProps;
|
|
477
535
|
|
|
478
|
-
declare type __VLS_Props_13 =
|
|
536
|
+
declare type __VLS_Props_13 = UiTagsInputProps;
|
|
537
|
+
|
|
538
|
+
declare type __VLS_Props_14 = UiTextareaProps;
|
|
539
|
+
|
|
540
|
+
declare type __VLS_Props_15 = UiToggleProps;
|
|
541
|
+
|
|
542
|
+
declare type __VLS_Props_16 = UiTooltipProps;
|
|
543
|
+
|
|
544
|
+
declare type __VLS_Props_17 = TabsRootProps & {
|
|
479
545
|
class?: HTMLAttributes['class'];
|
|
480
546
|
};
|
|
481
547
|
|
|
482
|
-
declare type
|
|
548
|
+
declare type __VLS_Props_18 = TabsContentProps & {
|
|
483
549
|
class?: HTMLAttributes['class'];
|
|
484
550
|
};
|
|
485
551
|
|
|
486
|
-
declare type
|
|
552
|
+
declare type __VLS_Props_19 = TabsListProps & {
|
|
487
553
|
class?: HTMLAttributes['class'];
|
|
488
554
|
};
|
|
489
555
|
|
|
490
|
-
declare type
|
|
556
|
+
declare type __VLS_Props_2 = UiCalendarProps;
|
|
557
|
+
|
|
558
|
+
declare type __VLS_Props_20 = TabsTriggerProps & {
|
|
491
559
|
class?: HTMLAttributes['class'];
|
|
492
560
|
};
|
|
493
561
|
|
|
494
|
-
declare type
|
|
562
|
+
declare type __VLS_Props_21 = TooltipContentProps & {
|
|
495
563
|
class?: HTMLAttributes['class'];
|
|
496
564
|
};
|
|
497
565
|
|
|
498
|
-
declare type __VLS_Props_2 = UiCalendarProps;
|
|
499
|
-
|
|
500
566
|
declare type __VLS_Props_3 = UiCheckboxProps;
|
|
501
567
|
|
|
502
568
|
declare type __VLS_Props_4 = UiDrawerProps;
|
|
503
569
|
|
|
504
570
|
declare type __VLS_Props_5 = UiInputProps;
|
|
505
571
|
|
|
506
|
-
declare type __VLS_Props_6 =
|
|
572
|
+
declare type __VLS_Props_6 = UiListboxProps;
|
|
507
573
|
|
|
508
|
-
declare type __VLS_Props_7 =
|
|
574
|
+
declare type __VLS_Props_7 = UiListboxFilterProps;
|
|
509
575
|
|
|
510
|
-
declare type __VLS_Props_8 =
|
|
576
|
+
declare type __VLS_Props_8 = UiPopoverProps;
|
|
511
577
|
|
|
512
|
-
declare type __VLS_Props_9 =
|
|
578
|
+
declare type __VLS_Props_9 = UiProgressProps;
|
|
513
579
|
|
|
514
580
|
declare type __VLS_PublicProps = {
|
|
515
581
|
modelValue?: UiDatePickerProps['modelValue'];
|
|
@@ -517,22 +583,38 @@ declare type __VLS_PublicProps = {
|
|
|
517
583
|
} & __VLS_Props;
|
|
518
584
|
|
|
519
585
|
declare type __VLS_PublicProps_10 = {
|
|
520
|
-
modelValue?:
|
|
521
|
-
'placeholder'?: UiRangeCalendarProps['placeholder'];
|
|
586
|
+
modelValue?: number;
|
|
522
587
|
} & __VLS_Props_9;
|
|
523
588
|
|
|
524
589
|
declare type __VLS_PublicProps_11 = {
|
|
525
|
-
modelValue?:
|
|
590
|
+
modelValue?: string;
|
|
526
591
|
} & __VLS_Props_10;
|
|
527
592
|
|
|
528
593
|
declare type __VLS_PublicProps_12 = {
|
|
529
|
-
modelValue?:
|
|
594
|
+
modelValue?: UiRangeCalendarProps['modelValue'];
|
|
595
|
+
'placeholder'?: UiRangeCalendarProps['placeholder'];
|
|
530
596
|
} & __VLS_Props_11;
|
|
531
597
|
|
|
532
598
|
declare type __VLS_PublicProps_13 = {
|
|
533
|
-
|
|
599
|
+
modelValue?: boolean;
|
|
534
600
|
} & __VLS_Props_12;
|
|
535
601
|
|
|
602
|
+
declare type __VLS_PublicProps_14 = {
|
|
603
|
+
modelValue?: string[];
|
|
604
|
+
} & __VLS_Props_13;
|
|
605
|
+
|
|
606
|
+
declare type __VLS_PublicProps_15 = {
|
|
607
|
+
modelValue?: string;
|
|
608
|
+
} & __VLS_Props_14;
|
|
609
|
+
|
|
610
|
+
declare type __VLS_PublicProps_16 = {
|
|
611
|
+
modelValue?: boolean;
|
|
612
|
+
} & __VLS_Props_15;
|
|
613
|
+
|
|
614
|
+
declare type __VLS_PublicProps_17 = {
|
|
615
|
+
'open'?: boolean;
|
|
616
|
+
} & __VLS_Props_16;
|
|
617
|
+
|
|
536
618
|
declare type __VLS_PublicProps_2 = {
|
|
537
619
|
modelValue?: boolean;
|
|
538
620
|
};
|
|
@@ -555,15 +637,15 @@ declare type __VLS_PublicProps_6 = {
|
|
|
555
637
|
} & __VLS_Props_5;
|
|
556
638
|
|
|
557
639
|
declare type __VLS_PublicProps_7 = {
|
|
558
|
-
|
|
640
|
+
modelValue?: AcceptableValue | AcceptableValue[];
|
|
559
641
|
} & __VLS_Props_6;
|
|
560
642
|
|
|
561
643
|
declare type __VLS_PublicProps_8 = {
|
|
562
|
-
modelValue?:
|
|
644
|
+
modelValue?: string;
|
|
563
645
|
} & __VLS_Props_7;
|
|
564
646
|
|
|
565
647
|
declare type __VLS_PublicProps_9 = {
|
|
566
|
-
|
|
648
|
+
'open'?: boolean;
|
|
567
649
|
} & __VLS_Props_8;
|
|
568
650
|
|
|
569
651
|
declare function __VLS_template(): {
|
|
@@ -584,6 +666,80 @@ declare function __VLS_template_10(): {
|
|
|
584
666
|
rootEl: any;
|
|
585
667
|
};
|
|
586
668
|
|
|
669
|
+
declare function __VLS_template_100(): {
|
|
670
|
+
attrs: Partial<{}>;
|
|
671
|
+
slots: {
|
|
672
|
+
default?(_: {
|
|
673
|
+
modelValue: string | number | undefined;
|
|
674
|
+
}): any;
|
|
675
|
+
};
|
|
676
|
+
refs: {};
|
|
677
|
+
rootEl: any;
|
|
678
|
+
};
|
|
679
|
+
|
|
680
|
+
declare function __VLS_template_101(): {
|
|
681
|
+
attrs: Partial<{}>;
|
|
682
|
+
slots: {
|
|
683
|
+
default?(_: {}): any;
|
|
684
|
+
};
|
|
685
|
+
refs: {};
|
|
686
|
+
rootEl: any;
|
|
687
|
+
};
|
|
688
|
+
|
|
689
|
+
declare function __VLS_template_102(): {
|
|
690
|
+
attrs: Partial<{}>;
|
|
691
|
+
slots: {
|
|
692
|
+
default?(_: {}): any;
|
|
693
|
+
};
|
|
694
|
+
refs: {};
|
|
695
|
+
rootEl: any;
|
|
696
|
+
};
|
|
697
|
+
|
|
698
|
+
declare function __VLS_template_103(): {
|
|
699
|
+
attrs: Partial<{}>;
|
|
700
|
+
slots: {
|
|
701
|
+
default?(_: {}): any;
|
|
702
|
+
};
|
|
703
|
+
refs: {};
|
|
704
|
+
rootEl: any;
|
|
705
|
+
};
|
|
706
|
+
|
|
707
|
+
declare function __VLS_template_104(): {
|
|
708
|
+
attrs: Partial<{}>;
|
|
709
|
+
slots: {
|
|
710
|
+
default?(_: {}): any;
|
|
711
|
+
};
|
|
712
|
+
refs: {};
|
|
713
|
+
rootEl: any;
|
|
714
|
+
};
|
|
715
|
+
|
|
716
|
+
declare function __VLS_template_105(): {
|
|
717
|
+
attrs: Partial<{}>;
|
|
718
|
+
slots: {
|
|
719
|
+
default?(_: {}): any;
|
|
720
|
+
};
|
|
721
|
+
refs: {};
|
|
722
|
+
rootEl: any;
|
|
723
|
+
};
|
|
724
|
+
|
|
725
|
+
declare function __VLS_template_106(): {
|
|
726
|
+
attrs: Partial<{}>;
|
|
727
|
+
slots: {
|
|
728
|
+
default?(_: {}): any;
|
|
729
|
+
};
|
|
730
|
+
refs: {};
|
|
731
|
+
rootEl: any;
|
|
732
|
+
};
|
|
733
|
+
|
|
734
|
+
declare function __VLS_template_107(): {
|
|
735
|
+
attrs: Partial<{}>;
|
|
736
|
+
slots: {
|
|
737
|
+
default?(_: {}): any;
|
|
738
|
+
};
|
|
739
|
+
refs: {};
|
|
740
|
+
rootEl: any;
|
|
741
|
+
};
|
|
742
|
+
|
|
587
743
|
declare function __VLS_template_11(): {
|
|
588
744
|
attrs: Partial<{}>;
|
|
589
745
|
slots: {
|
|
@@ -1091,7 +1247,7 @@ declare function __VLS_template_61(): {
|
|
|
1091
1247
|
default?(_: {}): any;
|
|
1092
1248
|
};
|
|
1093
1249
|
refs: {};
|
|
1094
|
-
rootEl:
|
|
1250
|
+
rootEl: HTMLElement;
|
|
1095
1251
|
};
|
|
1096
1252
|
|
|
1097
1253
|
declare function __VLS_template_62(): {
|
|
@@ -1100,7 +1256,7 @@ declare function __VLS_template_62(): {
|
|
|
1100
1256
|
default?(_: {}): any;
|
|
1101
1257
|
};
|
|
1102
1258
|
refs: {};
|
|
1103
|
-
rootEl:
|
|
1259
|
+
rootEl: HTMLSpanElement;
|
|
1104
1260
|
};
|
|
1105
1261
|
|
|
1106
1262
|
declare function __VLS_template_63(): {
|
|
@@ -1199,7 +1355,7 @@ declare function __VLS_template_72(): {
|
|
|
1199
1355
|
default?(_: {}): any;
|
|
1200
1356
|
};
|
|
1201
1357
|
refs: {};
|
|
1202
|
-
rootEl:
|
|
1358
|
+
rootEl: any;
|
|
1203
1359
|
};
|
|
1204
1360
|
|
|
1205
1361
|
declare function __VLS_template_73(): {
|
|
@@ -1208,7 +1364,7 @@ declare function __VLS_template_73(): {
|
|
|
1208
1364
|
default?(_: {}): any;
|
|
1209
1365
|
};
|
|
1210
1366
|
refs: {};
|
|
1211
|
-
rootEl:
|
|
1367
|
+
rootEl: any;
|
|
1212
1368
|
};
|
|
1213
1369
|
|
|
1214
1370
|
declare function __VLS_template_74(): {
|
|
@@ -1217,7 +1373,7 @@ declare function __VLS_template_74(): {
|
|
|
1217
1373
|
default?(_: {}): any;
|
|
1218
1374
|
};
|
|
1219
1375
|
refs: {};
|
|
1220
|
-
rootEl:
|
|
1376
|
+
rootEl: any;
|
|
1221
1377
|
};
|
|
1222
1378
|
|
|
1223
1379
|
declare function __VLS_template_75(): {
|
|
@@ -1226,7 +1382,7 @@ declare function __VLS_template_75(): {
|
|
|
1226
1382
|
default?(_: {}): any;
|
|
1227
1383
|
};
|
|
1228
1384
|
refs: {};
|
|
1229
|
-
rootEl:
|
|
1385
|
+
rootEl: any;
|
|
1230
1386
|
};
|
|
1231
1387
|
|
|
1232
1388
|
declare function __VLS_template_76(): {
|
|
@@ -1235,7 +1391,7 @@ declare function __VLS_template_76(): {
|
|
|
1235
1391
|
default?(_: {}): any;
|
|
1236
1392
|
};
|
|
1237
1393
|
refs: {};
|
|
1238
|
-
rootEl:
|
|
1394
|
+
rootEl: any;
|
|
1239
1395
|
};
|
|
1240
1396
|
|
|
1241
1397
|
declare function __VLS_template_77(): {
|
|
@@ -1244,7 +1400,7 @@ declare function __VLS_template_77(): {
|
|
|
1244
1400
|
default?(_: {}): any;
|
|
1245
1401
|
};
|
|
1246
1402
|
refs: {};
|
|
1247
|
-
rootEl:
|
|
1403
|
+
rootEl: any;
|
|
1248
1404
|
};
|
|
1249
1405
|
|
|
1250
1406
|
declare function __VLS_template_78(): {
|
|
@@ -1253,7 +1409,7 @@ declare function __VLS_template_78(): {
|
|
|
1253
1409
|
default?(_: {}): any;
|
|
1254
1410
|
};
|
|
1255
1411
|
refs: {};
|
|
1256
|
-
rootEl:
|
|
1412
|
+
rootEl: any;
|
|
1257
1413
|
};
|
|
1258
1414
|
|
|
1259
1415
|
declare function __VLS_template_79(): {
|
|
@@ -1262,7 +1418,7 @@ declare function __VLS_template_79(): {
|
|
|
1262
1418
|
default?(_: {}): any;
|
|
1263
1419
|
};
|
|
1264
1420
|
refs: {};
|
|
1265
|
-
rootEl:
|
|
1421
|
+
rootEl: any;
|
|
1266
1422
|
};
|
|
1267
1423
|
|
|
1268
1424
|
declare function __VLS_template_8(): {
|
|
@@ -1280,7 +1436,7 @@ declare function __VLS_template_80(): {
|
|
|
1280
1436
|
default?(_: {}): any;
|
|
1281
1437
|
};
|
|
1282
1438
|
refs: {};
|
|
1283
|
-
rootEl:
|
|
1439
|
+
rootEl: any;
|
|
1284
1440
|
};
|
|
1285
1441
|
|
|
1286
1442
|
declare function __VLS_template_81(): {
|
|
@@ -1289,7 +1445,7 @@ declare function __VLS_template_81(): {
|
|
|
1289
1445
|
default?(_: {}): any;
|
|
1290
1446
|
};
|
|
1291
1447
|
refs: {};
|
|
1292
|
-
rootEl:
|
|
1448
|
+
rootEl: HTMLDivElement;
|
|
1293
1449
|
};
|
|
1294
1450
|
|
|
1295
1451
|
declare function __VLS_template_82(): {
|
|
@@ -1298,7 +1454,7 @@ declare function __VLS_template_82(): {
|
|
|
1298
1454
|
default?(_: {}): any;
|
|
1299
1455
|
};
|
|
1300
1456
|
refs: {};
|
|
1301
|
-
rootEl:
|
|
1457
|
+
rootEl: HTMLTableSectionElement;
|
|
1302
1458
|
};
|
|
1303
1459
|
|
|
1304
1460
|
declare function __VLS_template_83(): {
|
|
@@ -1307,7 +1463,7 @@ declare function __VLS_template_83(): {
|
|
|
1307
1463
|
default?(_: {}): any;
|
|
1308
1464
|
};
|
|
1309
1465
|
refs: {};
|
|
1310
|
-
rootEl:
|
|
1466
|
+
rootEl: HTMLTableSectionElement;
|
|
1311
1467
|
};
|
|
1312
1468
|
|
|
1313
1469
|
declare function __VLS_template_84(): {
|
|
@@ -1316,7 +1472,7 @@ declare function __VLS_template_84(): {
|
|
|
1316
1472
|
default?(_: {}): any;
|
|
1317
1473
|
};
|
|
1318
1474
|
refs: {};
|
|
1319
|
-
rootEl:
|
|
1475
|
+
rootEl: HTMLTableSectionElement;
|
|
1320
1476
|
};
|
|
1321
1477
|
|
|
1322
1478
|
declare function __VLS_template_85(): {
|
|
@@ -1325,7 +1481,7 @@ declare function __VLS_template_85(): {
|
|
|
1325
1481
|
default?(_: {}): any;
|
|
1326
1482
|
};
|
|
1327
1483
|
refs: {};
|
|
1328
|
-
rootEl:
|
|
1484
|
+
rootEl: HTMLTableRowElement;
|
|
1329
1485
|
};
|
|
1330
1486
|
|
|
1331
1487
|
declare function __VLS_template_86(): {
|
|
@@ -1334,18 +1490,16 @@ declare function __VLS_template_86(): {
|
|
|
1334
1490
|
default?(_: {}): any;
|
|
1335
1491
|
};
|
|
1336
1492
|
refs: {};
|
|
1337
|
-
rootEl:
|
|
1493
|
+
rootEl: HTMLTableCellElement;
|
|
1338
1494
|
};
|
|
1339
1495
|
|
|
1340
1496
|
declare function __VLS_template_87(): {
|
|
1341
1497
|
attrs: Partial<{}>;
|
|
1342
1498
|
slots: {
|
|
1343
|
-
default?(_: {
|
|
1344
|
-
modelValue: string | number | undefined;
|
|
1345
|
-
}): any;
|
|
1499
|
+
default?(_: {}): any;
|
|
1346
1500
|
};
|
|
1347
1501
|
refs: {};
|
|
1348
|
-
rootEl:
|
|
1502
|
+
rootEl: HTMLTableCellElement;
|
|
1349
1503
|
};
|
|
1350
1504
|
|
|
1351
1505
|
declare function __VLS_template_88(): {
|
|
@@ -1354,7 +1508,7 @@ declare function __VLS_template_88(): {
|
|
|
1354
1508
|
default?(_: {}): any;
|
|
1355
1509
|
};
|
|
1356
1510
|
refs: {};
|
|
1357
|
-
rootEl:
|
|
1511
|
+
rootEl: HTMLTableCaptionElement;
|
|
1358
1512
|
};
|
|
1359
1513
|
|
|
1360
1514
|
declare function __VLS_template_89(): {
|
|
@@ -1363,7 +1517,7 @@ declare function __VLS_template_89(): {
|
|
|
1363
1517
|
default?(_: {}): any;
|
|
1364
1518
|
};
|
|
1365
1519
|
refs: {};
|
|
1366
|
-
rootEl:
|
|
1520
|
+
rootEl: HTMLTableRowElement;
|
|
1367
1521
|
};
|
|
1368
1522
|
|
|
1369
1523
|
declare function __VLS_template_9(): {
|
|
@@ -1412,6 +1566,53 @@ declare function __VLS_template_93(): {
|
|
|
1412
1566
|
};
|
|
1413
1567
|
|
|
1414
1568
|
declare function __VLS_template_94(): {
|
|
1569
|
+
attrs: Partial<{}>;
|
|
1570
|
+
slots: {
|
|
1571
|
+
default?(_: {
|
|
1572
|
+
modelValue: AcceptableInputValue[];
|
|
1573
|
+
}): any;
|
|
1574
|
+
};
|
|
1575
|
+
refs: {};
|
|
1576
|
+
rootEl: any;
|
|
1577
|
+
};
|
|
1578
|
+
|
|
1579
|
+
declare function __VLS_template_95(): {
|
|
1580
|
+
attrs: Partial<{}>;
|
|
1581
|
+
slots: {
|
|
1582
|
+
default?(_: {}): any;
|
|
1583
|
+
};
|
|
1584
|
+
refs: {};
|
|
1585
|
+
rootEl: any;
|
|
1586
|
+
};
|
|
1587
|
+
|
|
1588
|
+
declare function __VLS_template_96(): {
|
|
1589
|
+
attrs: Partial<{}>;
|
|
1590
|
+
slots: {
|
|
1591
|
+
default?(_: {}): any;
|
|
1592
|
+
};
|
|
1593
|
+
refs: {};
|
|
1594
|
+
rootEl: any;
|
|
1595
|
+
};
|
|
1596
|
+
|
|
1597
|
+
declare function __VLS_template_97(): {
|
|
1598
|
+
attrs: Partial<{}>;
|
|
1599
|
+
slots: {
|
|
1600
|
+
default?(_: {}): any;
|
|
1601
|
+
};
|
|
1602
|
+
refs: {};
|
|
1603
|
+
rootEl: any;
|
|
1604
|
+
};
|
|
1605
|
+
|
|
1606
|
+
declare function __VLS_template_98(): {
|
|
1607
|
+
attrs: Partial<{}>;
|
|
1608
|
+
slots: {
|
|
1609
|
+
default?(_: {}): any;
|
|
1610
|
+
};
|
|
1611
|
+
refs: {};
|
|
1612
|
+
rootEl: any;
|
|
1613
|
+
};
|
|
1614
|
+
|
|
1615
|
+
declare function __VLS_template_99(): {
|
|
1415
1616
|
attrs: Partial<{}>;
|
|
1416
1617
|
slots: {
|
|
1417
1618
|
default?(_: {}): any;
|
|
@@ -1424,6 +1625,22 @@ declare type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
|
1424
1625
|
|
|
1425
1626
|
declare type __VLS_TemplateResult_10 = ReturnType<typeof __VLS_template_10>;
|
|
1426
1627
|
|
|
1628
|
+
declare type __VLS_TemplateResult_100 = ReturnType<typeof __VLS_template_100>;
|
|
1629
|
+
|
|
1630
|
+
declare type __VLS_TemplateResult_101 = ReturnType<typeof __VLS_template_101>;
|
|
1631
|
+
|
|
1632
|
+
declare type __VLS_TemplateResult_102 = ReturnType<typeof __VLS_template_102>;
|
|
1633
|
+
|
|
1634
|
+
declare type __VLS_TemplateResult_103 = ReturnType<typeof __VLS_template_103>;
|
|
1635
|
+
|
|
1636
|
+
declare type __VLS_TemplateResult_104 = ReturnType<typeof __VLS_template_104>;
|
|
1637
|
+
|
|
1638
|
+
declare type __VLS_TemplateResult_105 = ReturnType<typeof __VLS_template_105>;
|
|
1639
|
+
|
|
1640
|
+
declare type __VLS_TemplateResult_106 = ReturnType<typeof __VLS_template_106>;
|
|
1641
|
+
|
|
1642
|
+
declare type __VLS_TemplateResult_107 = ReturnType<typeof __VLS_template_107>;
|
|
1643
|
+
|
|
1427
1644
|
declare type __VLS_TemplateResult_11 = ReturnType<typeof __VLS_template_11>;
|
|
1428
1645
|
|
|
1429
1646
|
declare type __VLS_TemplateResult_12 = ReturnType<typeof __VLS_template_12>;
|
|
@@ -1608,6 +1825,16 @@ declare type __VLS_TemplateResult_93 = ReturnType<typeof __VLS_template_93>;
|
|
|
1608
1825
|
|
|
1609
1826
|
declare type __VLS_TemplateResult_94 = ReturnType<typeof __VLS_template_94>;
|
|
1610
1827
|
|
|
1828
|
+
declare type __VLS_TemplateResult_95 = ReturnType<typeof __VLS_template_95>;
|
|
1829
|
+
|
|
1830
|
+
declare type __VLS_TemplateResult_96 = ReturnType<typeof __VLS_template_96>;
|
|
1831
|
+
|
|
1832
|
+
declare type __VLS_TemplateResult_97 = ReturnType<typeof __VLS_template_97>;
|
|
1833
|
+
|
|
1834
|
+
declare type __VLS_TemplateResult_98 = ReturnType<typeof __VLS_template_98>;
|
|
1835
|
+
|
|
1836
|
+
declare type __VLS_TemplateResult_99 = ReturnType<typeof __VLS_template_99>;
|
|
1837
|
+
|
|
1611
1838
|
declare type __VLS_WithTemplateSlots<T, S> = T & {
|
|
1612
1839
|
new (): {
|
|
1613
1840
|
$slots: S;
|
|
@@ -1620,6 +1847,54 @@ declare type __VLS_WithTemplateSlots_10<T, S> = T & {
|
|
|
1620
1847
|
};
|
|
1621
1848
|
};
|
|
1622
1849
|
|
|
1850
|
+
declare type __VLS_WithTemplateSlots_100<T, S> = T & {
|
|
1851
|
+
new (): {
|
|
1852
|
+
$slots: S;
|
|
1853
|
+
};
|
|
1854
|
+
};
|
|
1855
|
+
|
|
1856
|
+
declare type __VLS_WithTemplateSlots_101<T, S> = T & {
|
|
1857
|
+
new (): {
|
|
1858
|
+
$slots: S;
|
|
1859
|
+
};
|
|
1860
|
+
};
|
|
1861
|
+
|
|
1862
|
+
declare type __VLS_WithTemplateSlots_102<T, S> = T & {
|
|
1863
|
+
new (): {
|
|
1864
|
+
$slots: S;
|
|
1865
|
+
};
|
|
1866
|
+
};
|
|
1867
|
+
|
|
1868
|
+
declare type __VLS_WithTemplateSlots_103<T, S> = T & {
|
|
1869
|
+
new (): {
|
|
1870
|
+
$slots: S;
|
|
1871
|
+
};
|
|
1872
|
+
};
|
|
1873
|
+
|
|
1874
|
+
declare type __VLS_WithTemplateSlots_104<T, S> = T & {
|
|
1875
|
+
new (): {
|
|
1876
|
+
$slots: S;
|
|
1877
|
+
};
|
|
1878
|
+
};
|
|
1879
|
+
|
|
1880
|
+
declare type __VLS_WithTemplateSlots_105<T, S> = T & {
|
|
1881
|
+
new (): {
|
|
1882
|
+
$slots: S;
|
|
1883
|
+
};
|
|
1884
|
+
};
|
|
1885
|
+
|
|
1886
|
+
declare type __VLS_WithTemplateSlots_106<T, S> = T & {
|
|
1887
|
+
new (): {
|
|
1888
|
+
$slots: S;
|
|
1889
|
+
};
|
|
1890
|
+
};
|
|
1891
|
+
|
|
1892
|
+
declare type __VLS_WithTemplateSlots_107<T, S> = T & {
|
|
1893
|
+
new (): {
|
|
1894
|
+
$slots: S;
|
|
1895
|
+
};
|
|
1896
|
+
};
|
|
1897
|
+
|
|
1623
1898
|
declare type __VLS_WithTemplateSlots_11<T, S> = T & {
|
|
1624
1899
|
new (): {
|
|
1625
1900
|
$slots: S;
|
|
@@ -2088,91 +2363,121 @@ declare type __VLS_WithTemplateSlots_81<T, S> = T & {
|
|
|
2088
2363
|
};
|
|
2089
2364
|
};
|
|
2090
2365
|
|
|
2091
|
-
declare type __VLS_WithTemplateSlots_82<T, S> = T & {
|
|
2366
|
+
declare type __VLS_WithTemplateSlots_82<T, S> = T & {
|
|
2367
|
+
new (): {
|
|
2368
|
+
$slots: S;
|
|
2369
|
+
};
|
|
2370
|
+
};
|
|
2371
|
+
|
|
2372
|
+
declare type __VLS_WithTemplateSlots_83<T, S> = T & {
|
|
2373
|
+
new (): {
|
|
2374
|
+
$slots: S;
|
|
2375
|
+
};
|
|
2376
|
+
};
|
|
2377
|
+
|
|
2378
|
+
declare type __VLS_WithTemplateSlots_84<T, S> = T & {
|
|
2379
|
+
new (): {
|
|
2380
|
+
$slots: S;
|
|
2381
|
+
};
|
|
2382
|
+
};
|
|
2383
|
+
|
|
2384
|
+
declare type __VLS_WithTemplateSlots_85<T, S> = T & {
|
|
2385
|
+
new (): {
|
|
2386
|
+
$slots: S;
|
|
2387
|
+
};
|
|
2388
|
+
};
|
|
2389
|
+
|
|
2390
|
+
declare type __VLS_WithTemplateSlots_86<T, S> = T & {
|
|
2391
|
+
new (): {
|
|
2392
|
+
$slots: S;
|
|
2393
|
+
};
|
|
2394
|
+
};
|
|
2395
|
+
|
|
2396
|
+
declare type __VLS_WithTemplateSlots_87<T, S> = T & {
|
|
2092
2397
|
new (): {
|
|
2093
2398
|
$slots: S;
|
|
2094
2399
|
};
|
|
2095
2400
|
};
|
|
2096
2401
|
|
|
2097
|
-
declare type
|
|
2402
|
+
declare type __VLS_WithTemplateSlots_88<T, S> = T & {
|
|
2098
2403
|
new (): {
|
|
2099
2404
|
$slots: S;
|
|
2100
2405
|
};
|
|
2101
2406
|
};
|
|
2102
2407
|
|
|
2103
|
-
declare type
|
|
2408
|
+
declare type __VLS_WithTemplateSlots_89<T, S> = T & {
|
|
2104
2409
|
new (): {
|
|
2105
2410
|
$slots: S;
|
|
2106
2411
|
};
|
|
2107
2412
|
};
|
|
2108
2413
|
|
|
2109
|
-
declare type
|
|
2414
|
+
declare type __VLS_WithTemplateSlots_9<T, S> = T & {
|
|
2110
2415
|
new (): {
|
|
2111
2416
|
$slots: S;
|
|
2112
2417
|
};
|
|
2113
2418
|
};
|
|
2114
2419
|
|
|
2115
|
-
declare type
|
|
2420
|
+
declare type __VLS_WithTemplateSlots_90<T, S> = T & {
|
|
2116
2421
|
new (): {
|
|
2117
2422
|
$slots: S;
|
|
2118
2423
|
};
|
|
2119
2424
|
};
|
|
2120
2425
|
|
|
2121
|
-
declare type
|
|
2426
|
+
declare type __VLS_WithTemplateSlots_91<T, S> = T & {
|
|
2122
2427
|
new (): {
|
|
2123
2428
|
$slots: S;
|
|
2124
2429
|
};
|
|
2125
2430
|
};
|
|
2126
2431
|
|
|
2127
|
-
declare type
|
|
2432
|
+
declare type __VLS_WithTemplateSlots_92<T, S> = T & {
|
|
2128
2433
|
new (): {
|
|
2129
2434
|
$slots: S;
|
|
2130
2435
|
};
|
|
2131
2436
|
};
|
|
2132
2437
|
|
|
2133
|
-
declare type
|
|
2438
|
+
declare type __VLS_WithTemplateSlots_93<T, S> = T & {
|
|
2134
2439
|
new (): {
|
|
2135
2440
|
$slots: S;
|
|
2136
2441
|
};
|
|
2137
2442
|
};
|
|
2138
2443
|
|
|
2139
|
-
declare type
|
|
2444
|
+
declare type __VLS_WithTemplateSlots_94<T, S> = T & {
|
|
2140
2445
|
new (): {
|
|
2141
2446
|
$slots: S;
|
|
2142
2447
|
};
|
|
2143
2448
|
};
|
|
2144
2449
|
|
|
2145
|
-
declare type
|
|
2450
|
+
declare type __VLS_WithTemplateSlots_95<T, S> = T & {
|
|
2146
2451
|
new (): {
|
|
2147
2452
|
$slots: S;
|
|
2148
2453
|
};
|
|
2149
2454
|
};
|
|
2150
2455
|
|
|
2151
|
-
declare type
|
|
2456
|
+
declare type __VLS_WithTemplateSlots_96<T, S> = T & {
|
|
2152
2457
|
new (): {
|
|
2153
2458
|
$slots: S;
|
|
2154
2459
|
};
|
|
2155
2460
|
};
|
|
2156
2461
|
|
|
2157
|
-
declare type
|
|
2462
|
+
declare type __VLS_WithTemplateSlots_97<T, S> = T & {
|
|
2158
2463
|
new (): {
|
|
2159
2464
|
$slots: S;
|
|
2160
2465
|
};
|
|
2161
2466
|
};
|
|
2162
2467
|
|
|
2163
|
-
declare type
|
|
2468
|
+
declare type __VLS_WithTemplateSlots_98<T, S> = T & {
|
|
2164
2469
|
new (): {
|
|
2165
2470
|
$slots: S;
|
|
2166
2471
|
};
|
|
2167
2472
|
};
|
|
2168
2473
|
|
|
2169
|
-
declare type
|
|
2474
|
+
declare type __VLS_WithTemplateSlots_99<T, S> = T & {
|
|
2170
2475
|
new (): {
|
|
2171
2476
|
$slots: S;
|
|
2172
2477
|
};
|
|
2173
2478
|
};
|
|
2174
2479
|
|
|
2175
|
-
export declare const Button:
|
|
2480
|
+
export declare const Button: __VLS_WithTemplateSlots_99<typeof __VLS_component_99, __VLS_TemplateResult_99["slots"]>;
|
|
2176
2481
|
|
|
2177
2482
|
export declare type ButtonVariants = VariantProps<typeof buttonVariants>;
|
|
2178
2483
|
|
|
@@ -2262,13 +2567,13 @@ declare interface Props extends PrimitiveProps {
|
|
|
2262
2567
|
class?: HTMLAttributes['class'];
|
|
2263
2568
|
}
|
|
2264
2569
|
|
|
2265
|
-
export declare const Tabs:
|
|
2570
|
+
export declare const Tabs: __VLS_WithTemplateSlots_100<typeof __VLS_component_100, __VLS_TemplateResult_100["slots"]>;
|
|
2266
2571
|
|
|
2267
|
-
export declare const TabsContent:
|
|
2572
|
+
export declare const TabsContent: __VLS_WithTemplateSlots_101<typeof __VLS_component_101, __VLS_TemplateResult_101["slots"]>;
|
|
2268
2573
|
|
|
2269
|
-
export declare const TabsList:
|
|
2574
|
+
export declare const TabsList: __VLS_WithTemplateSlots_102<typeof __VLS_component_102, __VLS_TemplateResult_102["slots"]>;
|
|
2270
2575
|
|
|
2271
|
-
export declare const TabsTrigger:
|
|
2576
|
+
export declare const TabsTrigger: __VLS_WithTemplateSlots_103<typeof __VLS_component_103, __VLS_TemplateResult_103["slots"]>;
|
|
2272
2577
|
|
|
2273
2578
|
export { today }
|
|
2274
2579
|
|
|
@@ -2282,13 +2587,13 @@ export declare interface ToolbarLabels {
|
|
|
2282
2587
|
filterByColumn?: (column: string) => string;
|
|
2283
2588
|
}
|
|
2284
2589
|
|
|
2285
|
-
export declare const Tooltip:
|
|
2590
|
+
export declare const Tooltip: __VLS_WithTemplateSlots_104<typeof __VLS_component_104, __VLS_TemplateResult_104["slots"]>;
|
|
2286
2591
|
|
|
2287
|
-
export declare const TooltipContent:
|
|
2592
|
+
export declare const TooltipContent: __VLS_WithTemplateSlots_105<typeof __VLS_component_105, __VLS_TemplateResult_105["slots"]>;
|
|
2288
2593
|
|
|
2289
|
-
export declare const TooltipProvider:
|
|
2594
|
+
export declare const TooltipProvider: __VLS_WithTemplateSlots_106<typeof __VLS_component_106, __VLS_TemplateResult_106["slots"]>;
|
|
2290
2595
|
|
|
2291
|
-
export declare const TooltipTrigger:
|
|
2596
|
+
export declare const TooltipTrigger: __VLS_WithTemplateSlots_107<typeof __VLS_component_107, __VLS_TemplateResult_107["slots"]>;
|
|
2292
2597
|
|
|
2293
2598
|
export declare const UiAccordion: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
2294
2599
|
|
|
@@ -3539,7 +3844,10 @@ export declare const UiFieldSet: __VLS_WithTemplateSlots_58<typeof __VLS_compone
|
|
|
3539
3844
|
|
|
3540
3845
|
export declare const UiFieldTitle: __VLS_WithTemplateSlots_59<typeof __VLS_component_59, __VLS_TemplateResult_59["slots"]>;
|
|
3541
3846
|
|
|
3542
|
-
export declare const UiIcon: DefineComponent<UiIconProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiIconProps> & Readonly<{}>, {
|
|
3847
|
+
export declare const UiIcon: DefineComponent<UiIconProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiIconProps> & Readonly<{}>, {
|
|
3848
|
+
size: number | string;
|
|
3849
|
+
strokeWidth: number | string;
|
|
3850
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
3543
3851
|
|
|
3544
3852
|
export declare const UiIconButton: __VLS_WithTemplateSlots_60<typeof __VLS_component_60, __VLS_TemplateResult_60["slots"]>;
|
|
3545
3853
|
|
|
@@ -3600,26 +3908,40 @@ export declare type UiIconButtonSize = 'icon' | 'icon-sm' | 'icon-lg';
|
|
|
3600
3908
|
export declare type UiIconButtonVariant = 'default' | 'destructive' | 'outline' | 'secondary' | 'ghost' | 'link';
|
|
3601
3909
|
|
|
3602
3910
|
/**
|
|
3603
|
-
* An icon component using
|
|
3911
|
+
* An icon component using Lucide icons. Use for visual indicators,
|
|
3604
3912
|
* button decorations, or standalone meaningful graphics.
|
|
3605
3913
|
*
|
|
3606
3914
|
* @category Data Display
|
|
3607
3915
|
* @useCases visual indicator, button icon, status icon, decorative graphic
|
|
3608
|
-
* @keywords icon, symbol, graphic,
|
|
3916
|
+
* @keywords icon, symbol, graphic, lucide, svg
|
|
3609
3917
|
* @related UiIconButton, UiButton
|
|
3610
3918
|
*/
|
|
3611
|
-
declare interface UiIconProps {
|
|
3919
|
+
export declare interface UiIconProps {
|
|
3612
3920
|
/**
|
|
3613
|
-
*
|
|
3921
|
+
* Lucide icon name in kebab-case or PascalCase.
|
|
3922
|
+
*
|
|
3923
|
+
* Example: `circle-help`, `CircleHelp`, `chevron-down`, `ChevronDown`
|
|
3614
3924
|
*
|
|
3615
|
-
*
|
|
3925
|
+
* @see https://lucide.dev/icons for available icons
|
|
3926
|
+
*/
|
|
3927
|
+
name: string;
|
|
3928
|
+
/**
|
|
3929
|
+
* Icon size in pixels. Defaults to 24.
|
|
3930
|
+
*/
|
|
3931
|
+
size?: number | string;
|
|
3932
|
+
/**
|
|
3933
|
+
* Stroke width. Defaults to 2.
|
|
3616
3934
|
*/
|
|
3617
|
-
|
|
3935
|
+
strokeWidth?: number | string;
|
|
3618
3936
|
/**
|
|
3619
3937
|
* Accessible label for the icon. When provided, the icon is exposed as `role="img"`.
|
|
3620
3938
|
* If omitted, the icon is treated as decorative (`aria-hidden="true"`).
|
|
3621
3939
|
*/
|
|
3622
3940
|
ariaLabel?: string;
|
|
3941
|
+
/**
|
|
3942
|
+
* Additional CSS classes to apply to the icon.
|
|
3943
|
+
*/
|
|
3944
|
+
class?: HTMLAttributes['class'];
|
|
3623
3945
|
}
|
|
3624
3946
|
|
|
3625
3947
|
export declare const UiInput: DefineComponent<__VLS_PublicProps_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
@@ -3663,13 +3985,206 @@ export declare interface UiInputProps {
|
|
|
3663
3985
|
required?: boolean;
|
|
3664
3986
|
}
|
|
3665
3987
|
|
|
3988
|
+
export declare const UiKbd: __VLS_WithTemplateSlots_61<typeof __VLS_component_61, __VLS_TemplateResult_61["slots"]>;
|
|
3989
|
+
|
|
3990
|
+
export declare const UiKbdGroup: __VLS_WithTemplateSlots_62<typeof __VLS_component_62, __VLS_TemplateResult_62["slots"]>;
|
|
3991
|
+
|
|
3992
|
+
/**
|
|
3993
|
+
* A container for grouping multiple keyboard keys together. Use to display
|
|
3994
|
+
* key combinations like "Ctrl + C" or "Cmd + Shift + P".
|
|
3995
|
+
*
|
|
3996
|
+
* @category Feedback
|
|
3997
|
+
* @useCases key combination, shortcut group, multi-key display
|
|
3998
|
+
* @keywords kbd, keyboard, group, combination, shortcut, keys
|
|
3999
|
+
* @related UiKbd
|
|
4000
|
+
*/
|
|
4001
|
+
export declare interface UiKbdGroupProps {
|
|
4002
|
+
/**
|
|
4003
|
+
* Additional CSS classes to apply to the group container.
|
|
4004
|
+
*/
|
|
4005
|
+
class?: string;
|
|
4006
|
+
}
|
|
4007
|
+
|
|
4008
|
+
/**
|
|
4009
|
+
* A keyboard key indicator component. Use to display keyboard shortcuts,
|
|
4010
|
+
* hotkeys, or key combinations in documentation and UI hints.
|
|
4011
|
+
*
|
|
4012
|
+
* @category Feedback
|
|
4013
|
+
* @useCases keyboard shortcut, hotkey display, key combination, command hint
|
|
4014
|
+
* @keywords kbd, keyboard, key, shortcut, hotkey, command, keybinding
|
|
4015
|
+
* @related UiKbdGroup, UiTooltip
|
|
4016
|
+
*/
|
|
4017
|
+
export declare interface UiKbdProps {
|
|
4018
|
+
/**
|
|
4019
|
+
* The size of the keyboard key indicator.
|
|
4020
|
+
* @default 'default'
|
|
4021
|
+
*/
|
|
4022
|
+
size?: 'sm' | 'default' | 'lg';
|
|
4023
|
+
}
|
|
4024
|
+
|
|
4025
|
+
export declare const UiLabel: __VLS_WithTemplateSlots_63<typeof __VLS_component_63, __VLS_TemplateResult_63["slots"]>;
|
|
4026
|
+
|
|
4027
|
+
/**
|
|
4028
|
+
* A text label for form elements. Use to identify form inputs, provide
|
|
4029
|
+
* context, and improve accessibility by associating labels with controls.
|
|
4030
|
+
*
|
|
4031
|
+
* @category Form Inputs
|
|
4032
|
+
* @useCases form label, input label, field label, accessibility label
|
|
4033
|
+
* @keywords label, form, input, text, field, accessibility, a11y
|
|
4034
|
+
* @related UiInput, UiCheckbox, UiField, UiRadioGroup
|
|
4035
|
+
*/
|
|
4036
|
+
export declare interface UiLabelProps {
|
|
4037
|
+
/**
|
|
4038
|
+
* The id of the form element that this label is associated with.
|
|
4039
|
+
* When provided, clicking the label will focus the associated element.
|
|
4040
|
+
*/
|
|
4041
|
+
for: string;
|
|
4042
|
+
}
|
|
4043
|
+
|
|
4044
|
+
export declare const UiListbox: __VLS_WithTemplateSlots_64<typeof __VLS_component_64, __VLS_TemplateResult_64["slots"]>;
|
|
4045
|
+
|
|
4046
|
+
export declare const UiListboxContent: __VLS_WithTemplateSlots_65<typeof __VLS_component_65, __VLS_TemplateResult_65["slots"]>;
|
|
4047
|
+
|
|
4048
|
+
export declare interface UiListboxContentProps {
|
|
4049
|
+
/**
|
|
4050
|
+
* Additional CSS classes to apply to the content container.
|
|
4051
|
+
*/
|
|
4052
|
+
class?: HTMLAttributes['class'];
|
|
4053
|
+
}
|
|
4054
|
+
|
|
4055
|
+
export declare const UiListboxFilter: DefineComponent<__VLS_PublicProps_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4056
|
+
"update:modelValue": (value: string) => any;
|
|
4057
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_8> & Readonly<{
|
|
4058
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
4059
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
4060
|
+
|
|
4061
|
+
export declare interface UiListboxFilterProps {
|
|
4062
|
+
/**
|
|
4063
|
+
* Placeholder text for the filter input.
|
|
4064
|
+
*/
|
|
4065
|
+
placeholder?: string;
|
|
4066
|
+
/**
|
|
4067
|
+
* Whether to render as a child element (for composition with other components).
|
|
4068
|
+
*/
|
|
4069
|
+
asChild?: boolean;
|
|
4070
|
+
/**
|
|
4071
|
+
* Additional CSS classes to apply to the filter input.
|
|
4072
|
+
*/
|
|
4073
|
+
class?: HTMLAttributes['class'];
|
|
4074
|
+
}
|
|
4075
|
+
|
|
4076
|
+
export declare const UiListboxGroup: __VLS_WithTemplateSlots_68<typeof __VLS_component_68, __VLS_TemplateResult_68["slots"]>;
|
|
4077
|
+
|
|
4078
|
+
export declare const UiListboxGroupLabel: __VLS_WithTemplateSlots_69<typeof __VLS_component_69, __VLS_TemplateResult_69["slots"]>;
|
|
4079
|
+
|
|
4080
|
+
export declare interface UiListboxGroupLabelProps {
|
|
4081
|
+
/**
|
|
4082
|
+
* Additional CSS classes to apply to the group label.
|
|
4083
|
+
*/
|
|
4084
|
+
class?: HTMLAttributes['class'];
|
|
4085
|
+
}
|
|
4086
|
+
|
|
4087
|
+
export declare interface UiListboxGroupProps {
|
|
4088
|
+
/**
|
|
4089
|
+
* Additional CSS classes to apply to the group.
|
|
4090
|
+
*/
|
|
4091
|
+
class?: HTMLAttributes['class'];
|
|
4092
|
+
}
|
|
4093
|
+
|
|
4094
|
+
export declare const UiListboxItem: __VLS_WithTemplateSlots_66<typeof __VLS_component_66, __VLS_TemplateResult_66["slots"]>;
|
|
4095
|
+
|
|
4096
|
+
export declare const UiListboxItemIndicator: __VLS_WithTemplateSlots_67<typeof __VLS_component_67, __VLS_TemplateResult_67["slots"]>;
|
|
4097
|
+
|
|
4098
|
+
export declare interface UiListboxItemIndicatorProps {
|
|
4099
|
+
/**
|
|
4100
|
+
* Additional CSS classes to apply to the indicator.
|
|
4101
|
+
*/
|
|
4102
|
+
class?: HTMLAttributes['class'];
|
|
4103
|
+
}
|
|
4104
|
+
|
|
4105
|
+
export declare interface UiListboxItemProps {
|
|
4106
|
+
/**
|
|
4107
|
+
* The value of the listbox item.
|
|
4108
|
+
*/
|
|
4109
|
+
value: AcceptableValue;
|
|
4110
|
+
/**
|
|
4111
|
+
* Whether the item is disabled.
|
|
4112
|
+
* @default false
|
|
4113
|
+
*/
|
|
4114
|
+
disabled?: boolean;
|
|
4115
|
+
/**
|
|
4116
|
+
* Additional CSS classes to apply to the item.
|
|
4117
|
+
*/
|
|
4118
|
+
class?: HTMLAttributes['class'];
|
|
4119
|
+
}
|
|
4120
|
+
|
|
4121
|
+
/**
|
|
4122
|
+
* A listbox component for displaying a list of selectable options.
|
|
4123
|
+
* Use for dropdown menus, selection lists, or any list-based selection UI.
|
|
4124
|
+
*
|
|
4125
|
+
* @category Form Inputs
|
|
4126
|
+
* @useCases option selection, dropdown list, selectable items, multi-select
|
|
4127
|
+
* @keywords listbox, select, options, list, dropdown, choices
|
|
4128
|
+
* @related UiSelect, UiTagsInput
|
|
4129
|
+
*/
|
|
4130
|
+
export declare interface UiListboxProps {
|
|
4131
|
+
/**
|
|
4132
|
+
* The controlled value of the listbox. Optional; can be bound with v-model.
|
|
4133
|
+
* - Omit for uncontrolled mode
|
|
4134
|
+
* - Use `v-model` for controlled mode
|
|
4135
|
+
*/
|
|
4136
|
+
modelValue?: AcceptableValue | AcceptableValue[];
|
|
4137
|
+
/**
|
|
4138
|
+
* The value of the listbox when initially rendered.
|
|
4139
|
+
*/
|
|
4140
|
+
defaultValue?: AcceptableValue | AcceptableValue[];
|
|
4141
|
+
/**
|
|
4142
|
+
* Whether multiple options can be selected.
|
|
4143
|
+
* @default false
|
|
4144
|
+
*/
|
|
4145
|
+
multiple?: boolean;
|
|
4146
|
+
/**
|
|
4147
|
+
* The orientation of the listbox.
|
|
4148
|
+
*/
|
|
4149
|
+
orientation?: 'horizontal' | 'vertical';
|
|
4150
|
+
/**
|
|
4151
|
+
* The reading direction of the listbox.
|
|
4152
|
+
*/
|
|
4153
|
+
dir?: 'ltr' | 'rtl';
|
|
4154
|
+
/**
|
|
4155
|
+
* When true, prevents the user from interacting with listbox.
|
|
4156
|
+
* @default false
|
|
4157
|
+
*/
|
|
4158
|
+
disabled?: boolean;
|
|
4159
|
+
/**
|
|
4160
|
+
* How multiple selection should behave.
|
|
4161
|
+
* @default 'toggle'
|
|
4162
|
+
*/
|
|
4163
|
+
selectionBehavior?: 'toggle' | 'replace';
|
|
4164
|
+
/**
|
|
4165
|
+
* When true, hover over item will trigger highlight.
|
|
4166
|
+
* @default false
|
|
4167
|
+
*/
|
|
4168
|
+
highlightOnHover?: boolean;
|
|
4169
|
+
/**
|
|
4170
|
+
* Use this to compare objects by a particular field.
|
|
4171
|
+
*/
|
|
4172
|
+
by?: string | ((a: AcceptableValue, b: AcceptableValue) => boolean);
|
|
4173
|
+
/**
|
|
4174
|
+
* Additional CSS classes to apply to the component.
|
|
4175
|
+
*/
|
|
4176
|
+
class?: HTMLAttributes['class'];
|
|
4177
|
+
}
|
|
4178
|
+
|
|
3666
4179
|
export declare const UiPlaceholder: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
3667
4180
|
|
|
3668
|
-
export declare const UiPopover:
|
|
4181
|
+
export declare const UiPopover: __VLS_WithTemplateSlots_70<typeof __VLS_component_70, __VLS_TemplateResult_70["slots"]>;
|
|
3669
4182
|
|
|
3670
4183
|
export declare type UiPopoverAlign = 'start' | 'center' | 'end';
|
|
3671
4184
|
|
|
3672
|
-
export
|
|
4185
|
+
export { UiPopoverAnchor }
|
|
4186
|
+
|
|
4187
|
+
export declare const UiPopoverContent: __VLS_WithTemplateSlots_72<typeof __VLS_component_72, __VLS_TemplateResult_72["slots"]>;
|
|
3673
4188
|
|
|
3674
4189
|
export declare interface UiPopoverContentEmits {
|
|
3675
4190
|
/**
|
|
@@ -3738,7 +4253,7 @@ export declare interface UiPopoverProps {
|
|
|
3738
4253
|
|
|
3739
4254
|
export declare type UiPopoverSide = 'top' | 'right' | 'bottom' | 'left';
|
|
3740
4255
|
|
|
3741
|
-
export declare const UiPopoverTrigger:
|
|
4256
|
+
export declare const UiPopoverTrigger: __VLS_WithTemplateSlots_71<typeof __VLS_component_71, __VLS_TemplateResult_71["slots"]>;
|
|
3742
4257
|
|
|
3743
4258
|
export declare interface UiPopoverTriggerProps {
|
|
3744
4259
|
/**
|
|
@@ -3755,9 +4270,9 @@ export declare interface UiPopoverTriggerProps {
|
|
|
3755
4270
|
asChild?: boolean;
|
|
3756
4271
|
}
|
|
3757
4272
|
|
|
3758
|
-
export declare const UiProgress: DefineComponent<
|
|
4273
|
+
export declare const UiProgress: DefineComponent<__VLS_PublicProps_10, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3759
4274
|
"update:modelValue": (value: number) => any;
|
|
3760
|
-
}, string, PublicProps, Readonly<
|
|
4275
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_10> & Readonly<{
|
|
3761
4276
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
3762
4277
|
}>, {
|
|
3763
4278
|
max: number;
|
|
@@ -3776,7 +4291,7 @@ export declare type UiProgressProps = {
|
|
|
3776
4291
|
max?: number;
|
|
3777
4292
|
};
|
|
3778
4293
|
|
|
3779
|
-
export declare const UiRadioGroup:
|
|
4294
|
+
export declare const UiRadioGroup: __VLS_WithTemplateSlots_73<typeof __VLS_component_73, __VLS_TemplateResult_73["slots"]>;
|
|
3780
4295
|
|
|
3781
4296
|
export declare type UiRadioGroupDirection = 'ltr' | 'rtl';
|
|
3782
4297
|
|
|
@@ -3852,10 +4367,10 @@ export declare type UiRadioGroupSharedProps = {
|
|
|
3852
4367
|
required?: boolean;
|
|
3853
4368
|
};
|
|
3854
4369
|
|
|
3855
|
-
export declare const UiRangeCalendar: DefineComponent<
|
|
4370
|
+
export declare const UiRangeCalendar: DefineComponent<__VLS_PublicProps_12, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3856
4371
|
"update:modelValue": (value: DateRange | undefined) => any;
|
|
3857
4372
|
"update:placeholder": (value: DateValue | undefined) => any;
|
|
3858
|
-
}, string, PublicProps, Readonly<
|
|
4373
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_12> & Readonly<{
|
|
3859
4374
|
"onUpdate:modelValue"?: ((value: DateRange | undefined) => any) | undefined;
|
|
3860
4375
|
"onUpdate:placeholder"?: ((value: DateValue | undefined) => any) | undefined;
|
|
3861
4376
|
}>, {
|
|
@@ -4030,9 +4545,9 @@ export declare type UiRangeCalendarWeekdayFormat = 'narrow' | 'short' | 'long';
|
|
|
4030
4545
|
*/
|
|
4031
4546
|
export declare type UiRangeCalendarWeekStartsOn = 0 | 1 | 2 | 3 | 4 | 5 | 6;
|
|
4032
4547
|
|
|
4033
|
-
export declare const UiSelect:
|
|
4548
|
+
export declare const UiSelect: __VLS_WithTemplateSlots_74<typeof __VLS_component_74, __VLS_TemplateResult_74["slots"]>;
|
|
4034
4549
|
|
|
4035
|
-
export declare const UiSelectContent:
|
|
4550
|
+
export declare const UiSelectContent: __VLS_WithTemplateSlots_76<typeof __VLS_component_76, __VLS_TemplateResult_76["slots"]>;
|
|
4036
4551
|
|
|
4037
4552
|
/**
|
|
4038
4553
|
* Emits for the UiSelectContent component.
|
|
@@ -4068,9 +4583,9 @@ export declare type UiSelectEmits = {
|
|
|
4068
4583
|
'update:open': [value: boolean];
|
|
4069
4584
|
};
|
|
4070
4585
|
|
|
4071
|
-
export declare const UiSelectGroup:
|
|
4586
|
+
export declare const UiSelectGroup: __VLS_WithTemplateSlots_80<typeof __VLS_component_80, __VLS_TemplateResult_80["slots"]>;
|
|
4072
4587
|
|
|
4073
|
-
export declare const UiSelectItem:
|
|
4588
|
+
export declare const UiSelectItem: __VLS_WithTemplateSlots_77<typeof __VLS_component_77, __VLS_TemplateResult_77["slots"]>;
|
|
4074
4589
|
|
|
4075
4590
|
/**
|
|
4076
4591
|
* Props for the UiSelectItem component.
|
|
@@ -4084,7 +4599,7 @@ export declare type UiSelectItemProps = {
|
|
|
4084
4599
|
textValue?: string;
|
|
4085
4600
|
};
|
|
4086
4601
|
|
|
4087
|
-
export declare const UiSelectLabel:
|
|
4602
|
+
export declare const UiSelectLabel: __VLS_WithTemplateSlots_79<typeof __VLS_component_79, __VLS_TemplateResult_79["slots"]>;
|
|
4088
4603
|
|
|
4089
4604
|
/**
|
|
4090
4605
|
* A dropdown select for choosing from a list of options. Use for
|
|
@@ -4116,7 +4631,7 @@ export declare type UiSelectProps = {
|
|
|
4116
4631
|
|
|
4117
4632
|
export declare const UiSelectSeparator: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
4118
4633
|
|
|
4119
|
-
export declare const UiSelectTrigger:
|
|
4634
|
+
export declare const UiSelectTrigger: __VLS_WithTemplateSlots_75<typeof __VLS_component_75, __VLS_TemplateResult_75["slots"]>;
|
|
4120
4635
|
|
|
4121
4636
|
/**
|
|
4122
4637
|
* Props for the UiSelectTrigger component.
|
|
@@ -4130,7 +4645,7 @@ export declare type UiSelectTriggerProps = {
|
|
|
4130
4645
|
size?: 'default' | 'sm';
|
|
4131
4646
|
};
|
|
4132
4647
|
|
|
4133
|
-
export declare const UiSelectValue:
|
|
4648
|
+
export declare const UiSelectValue: __VLS_WithTemplateSlots_78<typeof __VLS_component_78, __VLS_TemplateResult_78["slots"]>;
|
|
4134
4649
|
|
|
4135
4650
|
/**
|
|
4136
4651
|
* Props for the UiSelectValue component.
|
|
@@ -4140,6 +4655,66 @@ export declare type UiSelectValueProps = {
|
|
|
4140
4655
|
placeholder?: string;
|
|
4141
4656
|
};
|
|
4142
4657
|
|
|
4658
|
+
export declare const UiSeparator: DefineComponent<UiSeparatorProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiSeparatorProps> & Readonly<{}>, {
|
|
4659
|
+
orientation: "horizontal" | "vertical";
|
|
4660
|
+
decorative: boolean;
|
|
4661
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
4662
|
+
|
|
4663
|
+
/**
|
|
4664
|
+
* A visual divider between content sections. Use for grouping
|
|
4665
|
+
* related items or creating visual breaks in layouts.
|
|
4666
|
+
*
|
|
4667
|
+
* @category Layout
|
|
4668
|
+
* @useCases divider, section break, content grouping, visual separation
|
|
4669
|
+
* @keywords separator, divider, line, hr, break, layout
|
|
4670
|
+
* @related UiCard, UiDropdownMenu
|
|
4671
|
+
*/
|
|
4672
|
+
export declare interface UiSeparatorProps {
|
|
4673
|
+
/**
|
|
4674
|
+
* The orientation of the separator.
|
|
4675
|
+
* @type {'horizontal' | 'vertical'}
|
|
4676
|
+
* @default 'horizontal'
|
|
4677
|
+
*/
|
|
4678
|
+
orientation?: 'horizontal' | 'vertical';
|
|
4679
|
+
/**
|
|
4680
|
+
* When true, the separator is purely decorative and not announced by screen readers.
|
|
4681
|
+
* @type {boolean}
|
|
4682
|
+
* @default true
|
|
4683
|
+
*/
|
|
4684
|
+
decorative?: boolean;
|
|
4685
|
+
}
|
|
4686
|
+
|
|
4687
|
+
export declare const UiSkeleton: DefineComponent<UiSkeletonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiSkeletonProps> & Readonly<{}>, {
|
|
4688
|
+
rounded: boolean;
|
|
4689
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
4690
|
+
|
|
4691
|
+
/**
|
|
4692
|
+
* A placeholder loading state for content. Use to indicate
|
|
4693
|
+
* loading state while preserving layout structure.
|
|
4694
|
+
*
|
|
4695
|
+
* @category Feedback
|
|
4696
|
+
* @useCases loading state, content placeholder, lazy loading, data fetching
|
|
4697
|
+
* @keywords skeleton, loading, placeholder, shimmer, pulse, loader
|
|
4698
|
+
* @related UiSpinner, UiProgress
|
|
4699
|
+
*/
|
|
4700
|
+
export declare interface UiSkeletonProps {
|
|
4701
|
+
/**
|
|
4702
|
+
* Custom width for the skeleton.
|
|
4703
|
+
* Can be any valid CSS width value.
|
|
4704
|
+
*/
|
|
4705
|
+
width?: string;
|
|
4706
|
+
/**
|
|
4707
|
+
* Custom height for the skeleton.
|
|
4708
|
+
* Can be any valid CSS height value.
|
|
4709
|
+
*/
|
|
4710
|
+
height?: string;
|
|
4711
|
+
/**
|
|
4712
|
+
* Whether to render as a rounded.
|
|
4713
|
+
* @default false
|
|
4714
|
+
*/
|
|
4715
|
+
rounded?: boolean;
|
|
4716
|
+
}
|
|
4717
|
+
|
|
4143
4718
|
export declare const UiSlider: DefineComponent<UiSliderProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
4144
4719
|
"update:modelValue": (value: number[]) => any;
|
|
4145
4720
|
valueCommit: (value: number[]) => any;
|
|
@@ -4228,7 +4803,7 @@ declare interface UiSliderProps {
|
|
|
4228
4803
|
|
|
4229
4804
|
export declare const UiSpinner: DefineComponent<UiSpinnerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiSpinnerProps> & Readonly<{}>, {
|
|
4230
4805
|
ariaLabel: string;
|
|
4231
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {},
|
|
4806
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
4232
4807
|
|
|
4233
4808
|
/**
|
|
4234
4809
|
* An animated loading indicator. Use while content is loading
|
|
@@ -4247,9 +4822,9 @@ export declare interface UiSpinnerProps {
|
|
|
4247
4822
|
ariaLabel?: string;
|
|
4248
4823
|
}
|
|
4249
4824
|
|
|
4250
|
-
export declare const UiSwitch: DefineComponent<
|
|
4825
|
+
export declare const UiSwitch: DefineComponent<__VLS_PublicProps_13, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4251
4826
|
"update:modelValue": (value: boolean) => any;
|
|
4252
|
-
}, string, PublicProps, Readonly<
|
|
4827
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_13> & Readonly<{
|
|
4253
4828
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
4254
4829
|
}>, {
|
|
4255
4830
|
required: boolean;
|
|
@@ -4282,13 +4857,13 @@ export declare type UiSwitchProps = {
|
|
|
4282
4857
|
required?: boolean;
|
|
4283
4858
|
};
|
|
4284
4859
|
|
|
4285
|
-
export declare const UiTable:
|
|
4860
|
+
export declare const UiTable: __VLS_WithTemplateSlots_81<typeof __VLS_component_81, __VLS_TemplateResult_81["slots"]>;
|
|
4286
4861
|
|
|
4287
|
-
export declare const UiTableBody:
|
|
4862
|
+
export declare const UiTableBody: __VLS_WithTemplateSlots_83<typeof __VLS_component_83, __VLS_TemplateResult_83["slots"]>;
|
|
4288
4863
|
|
|
4289
|
-
export declare const UiTableCaption:
|
|
4864
|
+
export declare const UiTableCaption: __VLS_WithTemplateSlots_88<typeof __VLS_component_88, __VLS_TemplateResult_88["slots"]>;
|
|
4290
4865
|
|
|
4291
|
-
export declare const UiTableCell:
|
|
4866
|
+
export declare const UiTableCell: __VLS_WithTemplateSlots_87<typeof __VLS_component_87, __VLS_TemplateResult_87["slots"]>;
|
|
4292
4867
|
|
|
4293
4868
|
/**
|
|
4294
4869
|
* Props for UiTableCell component.
|
|
@@ -4305,7 +4880,7 @@ export declare interface UiTableCellProps {
|
|
|
4305
4880
|
rowspan?: number;
|
|
4306
4881
|
}
|
|
4307
4882
|
|
|
4308
|
-
export declare const UiTableEmpty:
|
|
4883
|
+
export declare const UiTableEmpty: __VLS_WithTemplateSlots_89<typeof __VLS_component_89, __VLS_TemplateResult_89["slots"]>;
|
|
4309
4884
|
|
|
4310
4885
|
/**
|
|
4311
4886
|
* Props for UiTableEmpty component.
|
|
@@ -4320,11 +4895,11 @@ export declare interface UiTableEmptyProps {
|
|
|
4320
4895
|
colspan?: number;
|
|
4321
4896
|
}
|
|
4322
4897
|
|
|
4323
|
-
export declare const UiTableFooter:
|
|
4898
|
+
export declare const UiTableFooter: __VLS_WithTemplateSlots_84<typeof __VLS_component_84, __VLS_TemplateResult_84["slots"]>;
|
|
4324
4899
|
|
|
4325
|
-
export declare const UiTableHead:
|
|
4900
|
+
export declare const UiTableHead: __VLS_WithTemplateSlots_86<typeof __VLS_component_86, __VLS_TemplateResult_86["slots"]>;
|
|
4326
4901
|
|
|
4327
|
-
export declare const UiTableHeader:
|
|
4902
|
+
export declare const UiTableHeader: __VLS_WithTemplateSlots_82<typeof __VLS_component_82, __VLS_TemplateResult_82["slots"]>;
|
|
4328
4903
|
|
|
4329
4904
|
/**
|
|
4330
4905
|
* Props for UiTableHead component.
|
|
@@ -4346,7 +4921,7 @@ export declare interface UiTableHeadProps {
|
|
|
4346
4921
|
scope?: 'col' | 'row' | 'colgroup' | 'rowgroup';
|
|
4347
4922
|
}
|
|
4348
4923
|
|
|
4349
|
-
export declare const UiTableRow:
|
|
4924
|
+
export declare const UiTableRow: __VLS_WithTemplateSlots_85<typeof __VLS_component_85, __VLS_TemplateResult_85["slots"]>;
|
|
4350
4925
|
|
|
4351
4926
|
/**
|
|
4352
4927
|
* A basic HTML table with styled rows, headers, and cells. Use for
|
|
@@ -4366,14 +4941,14 @@ export declare interface UiTableRowProps {
|
|
|
4366
4941
|
selected?: boolean;
|
|
4367
4942
|
}
|
|
4368
4943
|
|
|
4369
|
-
export declare const UiTabs:
|
|
4944
|
+
export declare const UiTabs: __VLS_WithTemplateSlots_90<typeof __VLS_component_90, __VLS_TemplateResult_90["slots"]>;
|
|
4370
4945
|
|
|
4371
4946
|
/**
|
|
4372
4947
|
* Activation mode for tabs.
|
|
4373
4948
|
*/
|
|
4374
4949
|
export declare type UiTabsActivationMode = 'automatic' | 'manual';
|
|
4375
4950
|
|
|
4376
|
-
export declare const UiTabsContent:
|
|
4951
|
+
export declare const UiTabsContent: __VLS_WithTemplateSlots_93<typeof __VLS_component_93, __VLS_TemplateResult_93["slots"]>;
|
|
4377
4952
|
|
|
4378
4953
|
/**
|
|
4379
4954
|
* Props for the UiTabsContent component.
|
|
@@ -4396,7 +4971,7 @@ export declare type UiTabsEmits = {
|
|
|
4396
4971
|
'update:modelValue': [value: string];
|
|
4397
4972
|
};
|
|
4398
4973
|
|
|
4399
|
-
export declare const UiTabsList:
|
|
4974
|
+
export declare const UiTabsList: __VLS_WithTemplateSlots_91<typeof __VLS_component_91, __VLS_TemplateResult_91["slots"]>;
|
|
4400
4975
|
|
|
4401
4976
|
/**
|
|
4402
4977
|
* Props for the UiTabsList component.
|
|
@@ -4431,7 +5006,7 @@ export declare type UiTabsProps = {
|
|
|
4431
5006
|
activationMode?: UiTabsActivationMode;
|
|
4432
5007
|
};
|
|
4433
5008
|
|
|
4434
|
-
export declare const UiTabsTrigger:
|
|
5009
|
+
export declare const UiTabsTrigger: __VLS_WithTemplateSlots_92<typeof __VLS_component_92, __VLS_TemplateResult_92["slots"]>;
|
|
4435
5010
|
|
|
4436
5011
|
/**
|
|
4437
5012
|
* Props for the UiTabsTrigger component.
|
|
@@ -4443,11 +5018,79 @@ export declare type UiTabsTriggerProps = {
|
|
|
4443
5018
|
disabled?: boolean;
|
|
4444
5019
|
};
|
|
4445
5020
|
|
|
5021
|
+
export declare const UiTagsInput: __VLS_WithTemplateSlots_94<typeof __VLS_component_94, __VLS_TemplateResult_94["slots"]>;
|
|
5022
|
+
|
|
5023
|
+
export declare const UiTagsInputInput: DefineComponent<UiTagsInputInputProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiTagsInputInputProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
5024
|
+
|
|
5025
|
+
export declare interface UiTagsInputInputProps {
|
|
5026
|
+
/**
|
|
5027
|
+
* Placeholder text for the input field.
|
|
5028
|
+
*/
|
|
5029
|
+
placeholder?: string;
|
|
5030
|
+
/**
|
|
5031
|
+
* Additional CSS classes to apply to the input.
|
|
5032
|
+
*/
|
|
5033
|
+
class?: HTMLAttributes['class'];
|
|
5034
|
+
}
|
|
5035
|
+
|
|
5036
|
+
export declare const UiTagsInputItem: __VLS_WithTemplateSlots_95<typeof __VLS_component_95, __VLS_TemplateResult_95["slots"]>;
|
|
5037
|
+
|
|
5038
|
+
export declare const UiTagsInputItemDelete: __VLS_WithTemplateSlots_96<typeof __VLS_component_96, __VLS_TemplateResult_96["slots"]>;
|
|
5039
|
+
|
|
5040
|
+
export declare interface UiTagsInputItemDeleteProps {
|
|
5041
|
+
/**
|
|
5042
|
+
* Additional CSS classes to apply to the delete button.
|
|
5043
|
+
*/
|
|
5044
|
+
class?: HTMLAttributes['class'];
|
|
5045
|
+
}
|
|
5046
|
+
|
|
5047
|
+
export declare interface UiTagsInputItemProps {
|
|
5048
|
+
/**
|
|
5049
|
+
* The value of the tag item.
|
|
5050
|
+
*/
|
|
5051
|
+
value: string;
|
|
5052
|
+
/**
|
|
5053
|
+
* Whether the tag is disabled.
|
|
5054
|
+
* @default false
|
|
5055
|
+
*/
|
|
5056
|
+
disabled?: boolean;
|
|
5057
|
+
/**
|
|
5058
|
+
* Additional CSS classes to apply to the item.
|
|
5059
|
+
*/
|
|
5060
|
+
class?: HTMLAttributes['class'];
|
|
5061
|
+
}
|
|
5062
|
+
|
|
5063
|
+
export declare const UiTagsInputItemText: DefineComponent<UiTagsInputItemTextProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiTagsInputItemTextProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
5064
|
+
|
|
5065
|
+
export declare interface UiTagsInputItemTextProps {
|
|
5066
|
+
/**
|
|
5067
|
+
* Additional CSS classes to apply to the text.
|
|
5068
|
+
*/
|
|
5069
|
+
class?: HTMLAttributes['class'];
|
|
5070
|
+
}
|
|
5071
|
+
|
|
5072
|
+
/**
|
|
5073
|
+
* A tags input component that renders tags inside an input, followed by an actual text input.
|
|
5074
|
+
* Use for entering multiple values like tags, keywords, or email addresses.
|
|
5075
|
+
*
|
|
5076
|
+
* @category Form Inputs
|
|
5077
|
+
* @useCases tag entry, keyword input, email list, multi-value input, chip input
|
|
5078
|
+
* @keywords tags, input, chips, tokens, multi, keywords, labels
|
|
5079
|
+
* @related UiInput, UiBadge
|
|
5080
|
+
* @extends TagsInputRootProps
|
|
5081
|
+
*/
|
|
5082
|
+
export declare interface UiTagsInputProps extends Omit<TagsInputRootProps, 'class'> {
|
|
5083
|
+
/**
|
|
5084
|
+
* Additional CSS classes to apply to the component.
|
|
5085
|
+
*/
|
|
5086
|
+
class?: HTMLAttributes['class'];
|
|
5087
|
+
}
|
|
5088
|
+
|
|
4446
5089
|
export declare const UiTemplatePlaceholder: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
4447
5090
|
|
|
4448
|
-
export declare const UiTextarea: DefineComponent<
|
|
5091
|
+
export declare const UiTextarea: DefineComponent<__VLS_PublicProps_15, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4449
5092
|
"update:modelValue": (value: string) => any;
|
|
4450
|
-
}, string, PublicProps, Readonly<
|
|
5093
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_15> & Readonly<{
|
|
4451
5094
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
4452
5095
|
}>, {
|
|
4453
5096
|
placeholder: string;
|
|
@@ -4485,7 +5128,45 @@ export declare interface UiTextareaProps {
|
|
|
4485
5128
|
required?: boolean;
|
|
4486
5129
|
}
|
|
4487
5130
|
|
|
4488
|
-
export declare const
|
|
5131
|
+
export declare const UiToggle: __VLS_WithTemplateSlots_97<typeof __VLS_component_97, __VLS_TemplateResult_97["slots"]>;
|
|
5132
|
+
|
|
5133
|
+
/**
|
|
5134
|
+
* A two-state button that can be toggled on or off.
|
|
5135
|
+
* Use for enabling/disabling features or switching between states.
|
|
5136
|
+
*
|
|
5137
|
+
* @category Form Inputs
|
|
5138
|
+
* @useCases toolbar button, formatting toggle, view toggle, filter toggle
|
|
5139
|
+
* @keywords toggle, button, pressed, on, off, state
|
|
5140
|
+
* @related UiSwitch, UiButton, UiCheckbox
|
|
5141
|
+
*/
|
|
5142
|
+
export declare interface UiToggleProps {
|
|
5143
|
+
/**
|
|
5144
|
+
* The controlled pressed state of the toggle. Use with v-model.
|
|
5145
|
+
*/
|
|
5146
|
+
modelValue?: boolean;
|
|
5147
|
+
/**
|
|
5148
|
+
* The pressed state when initially rendered (uncontrolled mode).
|
|
5149
|
+
* Use when you do not need to control its state.
|
|
5150
|
+
*/
|
|
5151
|
+
defaultValue?: boolean;
|
|
5152
|
+
/**
|
|
5153
|
+
* Whether the toggle is disabled.
|
|
5154
|
+
* @default false
|
|
5155
|
+
*/
|
|
5156
|
+
disabled?: boolean;
|
|
5157
|
+
/**
|
|
5158
|
+
* The visual style variant.
|
|
5159
|
+
* @default 'default'
|
|
5160
|
+
*/
|
|
5161
|
+
variant?: 'default' | 'outline';
|
|
5162
|
+
/**
|
|
5163
|
+
* The size of the toggle.
|
|
5164
|
+
* @default 'default'
|
|
5165
|
+
*/
|
|
5166
|
+
size?: 'default' | 'sm' | 'lg';
|
|
5167
|
+
}
|
|
5168
|
+
|
|
5169
|
+
export declare const UiTooltip: __VLS_WithTemplateSlots_98<typeof __VLS_component_98, __VLS_TemplateResult_98["slots"]>;
|
|
4489
5170
|
|
|
4490
5171
|
export declare type UiTooltipAlign = 'start' | 'center' | 'end';
|
|
4491
5172
|
|