@aleph-alpha/ui-library 1.13.0 → 1.15.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 +1 -1
- package/config.d.ts +18 -5
- package/config.js +95 -5
- package/dist/system/index.d.ts +1718 -236
- package/dist/system/lib.js +19726 -16529
- package/docs/public-docs/component-directory.md +13 -0
- package/docs/public-docs/contributing.md +11 -0
- package/docs/public-docs/external-links.md +16 -0
- package/docs/public-docs/foundations.md +25 -0
- package/docs/public-docs/getting-started-designers.md +17 -0
- package/docs/public-docs/index.md +5 -0
- package/docs/public-docs/quick-start.md +230 -0
- package/docs/public-docs/standards-guidelines.md +15 -0
- package/package.json +3 -2
- package/src/components/UiCalendar/UiCalendar.stories.ts +1 -4
- package/src/components/UiCalendar/types.ts +1 -1
- package/src/components/UiKbd/UiKbd.stories.ts +1 -1
- package/src/components/UiNavigationMenu/UiNavigationMenu.stories.ts +1196 -0
- package/src/components/UiNavigationMenu/UiNavigationMenu.vue +39 -0
- package/src/components/UiNavigationMenu/UiNavigationMenuContent.vue +25 -0
- package/src/components/UiNavigationMenu/UiNavigationMenuIndicator.vue +14 -0
- package/src/components/UiNavigationMenu/UiNavigationMenuItem.vue +16 -0
- package/src/components/UiNavigationMenu/UiNavigationMenuLink.vue +27 -0
- package/src/components/UiNavigationMenu/UiNavigationMenuList.vue +16 -0
- package/src/components/UiNavigationMenu/UiNavigationMenuTrigger.vue +16 -0
- package/src/components/UiNavigationMenu/__tests__/UiNavigationMenu.test.ts +428 -0
- package/src/components/UiNavigationMenu/index.ts +11 -0
- package/src/components/UiNavigationMenu/types.ts +185 -0
- package/src/components/UiRangeCalendar/UiRangeCalendar.stories.ts +2 -4
- package/src/components/UiRangeCalendar/types.ts +1 -1
- package/src/components/UiSheet/UiSheet.stories.ts +715 -0
- package/src/components/UiSheet/__tests__/UiSheet.test.ts +229 -0
- package/src/components/UiSheet/index.ts +12 -0
- package/src/components/UiSheet/types.ts +83 -0
- package/src/components/UiSidebar/UiSidebar.stories.ts +1188 -0
- package/src/components/UiSidebar/UiSidebar.vue +20 -0
- package/src/components/UiSidebar/UiSidebarGroupAction.vue +18 -0
- package/src/components/UiSidebar/UiSidebarGroupLabel.vue +18 -0
- package/src/components/UiSidebar/UiSidebarHeaderTrigger.vue +53 -0
- package/src/components/UiSidebar/UiSidebarInput.vue +14 -0
- package/src/components/UiSidebar/UiSidebarMenuAction.vue +19 -0
- package/src/components/UiSidebar/UiSidebarMenuButton.vue +27 -0
- package/src/components/UiSidebar/UiSidebarMenuSkeleton.vue +16 -0
- package/src/components/UiSidebar/UiSidebarMenuSubButton.vue +24 -0
- package/src/components/UiSidebar/UiSidebarProvider.vue +16 -0
- package/src/components/UiSidebar/UiSidebarSeparator.vue +13 -0
- package/src/components/UiSidebar/__tests__/UiSidebar.test.ts +221 -0
- package/src/components/UiSidebar/index.ts +34 -0
- package/src/components/UiSidebar/types.ts +165 -0
- package/src/components/UiStepper/UiStepper.stories.ts +425 -0
- package/src/components/UiStepper/UiStepper.vue +27 -0
- package/src/components/UiStepper/UiStepperDescription.vue +20 -0
- package/src/components/UiStepper/UiStepperIndicator.vue +13 -0
- package/src/components/UiStepper/UiStepperItem.vue +25 -0
- package/src/components/UiStepper/UiStepperSeparator.vue +17 -0
- package/src/components/UiStepper/UiStepperTitle.vue +19 -0
- package/src/components/UiStepper/UiStepperTrigger.vue +18 -0
- package/src/components/UiStepper/__tests__/UiStepper.test.ts +167 -0
- package/src/components/UiStepper/index.ts +9 -0
- package/src/components/UiStepper/types.ts +65 -0
- package/src/components/core/alert/index.ts +2 -2
- package/src/components/core/alert-dialog/AlertDialogContent.vue +1 -1
- package/src/components/core/calendar/Calendar.vue +1 -1
- package/src/components/core/card/Card.vue +1 -1
- package/src/components/core/drawer/DrawerContent.vue +1 -1
- package/src/components/core/dropdown-menu/DropdownMenuContent.vue +1 -1
- package/src/components/core/dropdown-menu/DropdownMenuSubContent.vue +1 -1
- package/src/components/core/input/Input.vue +1 -1
- package/src/components/core/native-select/NativeSelect.vue +1 -1
- package/src/components/core/native-select/NativeSelectOptGroup.vue +1 -1
- package/src/components/core/native-select/NativeSelectOption.vue +1 -1
- package/src/components/core/navigation-menu/NavigationMenu.vue +40 -0
- package/src/components/core/navigation-menu/NavigationMenuContent.vue +28 -0
- package/src/components/core/navigation-menu/NavigationMenuIndicator.vue +26 -0
- package/src/components/core/navigation-menu/NavigationMenuItem.vue +19 -0
- package/src/components/core/navigation-menu/NavigationMenuLink.vue +27 -0
- package/src/components/core/navigation-menu/NavigationMenuList.vue +21 -0
- package/src/components/core/navigation-menu/NavigationMenuTrigger.vue +27 -0
- package/src/components/core/navigation-menu/NavigationMenuViewport.vue +26 -0
- package/src/components/core/navigation-menu/index.ts +14 -0
- package/src/components/core/popover/PopoverContent.vue +1 -1
- package/src/components/core/range-calendar/RangeCalendar.vue +1 -1
- package/src/components/core/select/SelectContent.vue +1 -1
- package/src/components/core/select/SelectTrigger.vue +1 -1
- package/src/components/core/sheet/Sheet.vue +15 -0
- package/src/components/core/sheet/SheetClose.vue +12 -0
- package/src/components/core/sheet/SheetContent.vue +56 -0
- package/src/components/core/sheet/SheetDescription.vue +19 -0
- package/src/components/core/sheet/SheetFooter.vue +9 -0
- package/src/components/core/sheet/SheetHeader.vue +9 -0
- package/src/components/core/sheet/SheetOverlay.vue +24 -0
- package/src/components/core/sheet/SheetTitle.vue +19 -0
- package/src/components/core/sheet/SheetTrigger.vue +12 -0
- package/src/components/core/sheet/index.ts +8 -0
- package/src/components/core/sidebar/Sidebar.vue +105 -0
- package/src/components/core/sidebar/SidebarContent.vue +21 -0
- package/src/components/core/sidebar/SidebarFooter.vue +16 -0
- package/src/components/core/sidebar/SidebarGroup.vue +16 -0
- package/src/components/core/sidebar/SidebarGroupAction.vue +25 -0
- package/src/components/core/sidebar/SidebarGroupContent.vue +16 -0
- package/src/components/core/sidebar/SidebarGroupLabel.vue +23 -0
- package/src/components/core/sidebar/SidebarHeader.vue +16 -0
- package/src/components/core/sidebar/SidebarInput.vue +17 -0
- package/src/components/core/sidebar/SidebarInset.vue +21 -0
- package/src/components/core/sidebar/SidebarMenu.vue +16 -0
- package/src/components/core/sidebar/SidebarMenuAction.vue +33 -0
- package/src/components/core/sidebar/SidebarMenuBadge.vue +26 -0
- package/src/components/core/sidebar/SidebarMenuButton.vue +49 -0
- package/src/components/core/sidebar/SidebarMenuButtonChild.vue +36 -0
- package/src/components/core/sidebar/SidebarMenuItem.vue +16 -0
- package/src/components/core/sidebar/SidebarMenuSkeleton.vue +32 -0
- package/src/components/core/sidebar/SidebarMenuSub.vue +22 -0
- package/src/components/core/sidebar/SidebarMenuSubButton.vue +38 -0
- package/src/components/core/sidebar/SidebarMenuSubItem.vue +16 -0
- package/src/components/core/sidebar/SidebarProvider.vue +102 -0
- package/src/components/core/sidebar/SidebarRail.vue +33 -0
- package/src/components/core/sidebar/SidebarSeparator.vue +17 -0
- package/src/components/core/sidebar/SidebarTrigger.vue +25 -0
- package/src/components/core/sidebar/index.ts +58 -0
- package/src/components/core/sidebar/utils.ts +19 -0
- package/src/components/core/stepper/Stepper.vue +20 -0
- package/src/components/core/stepper/StepperDescription.vue +23 -0
- package/src/components/core/stepper/StepperIndicator.vue +34 -0
- package/src/components/core/stepper/StepperItem.vue +23 -0
- package/src/components/core/stepper/StepperSeparator.vue +29 -0
- package/src/components/core/stepper/StepperTitle.vue +24 -0
- package/src/components/core/stepper/StepperTrigger.vue +22 -0
- package/src/components/core/stepper/index.ts +7 -0
- package/src/components/core/tabs/TabsTrigger.vue +1 -1
- package/src/components/core/tags-input/TagsInput.vue +1 -1
- package/src/components/core/textarea/Textarea.vue +1 -1
- package/src/components/index.ts +4 -0
- package/src/patterns/UiDatePicker/UiDatePicker.stories.ts +1 -4
- package/src/patterns/UiDatePicker/types.ts +1 -1
- package/src/theme/Background.stories.ts +84 -35
- package/src/theme/Extended.stories.ts +4 -4
- package/tokens.json +145 -8
package/dist/system/index.d.ts
CHANGED
|
@@ -2,20 +2,31 @@ import { AcceptableInputValue } from 'reka-ui';
|
|
|
2
2
|
import { AcceptableValue } from 'reka-ui';
|
|
3
3
|
import { AllowedComponentProps } from 'vue';
|
|
4
4
|
import { CalendarDate } from '@internationalized/date';
|
|
5
|
+
import { ClassProp } from 'class-variance-authority/types';
|
|
5
6
|
import { Column } from '@tanstack/vue-table';
|
|
6
7
|
import { ColumnDef } from '@tanstack/vue-table';
|
|
7
8
|
import { Component } from 'vue';
|
|
8
9
|
import { ComponentCustomProps } from 'vue';
|
|
9
10
|
import { ComponentOptionsMixin } from 'vue';
|
|
10
11
|
import { ComponentProvideOptions } from 'vue';
|
|
12
|
+
import { ComputedRef } from 'vue';
|
|
11
13
|
import { DateRange } from 'reka-ui';
|
|
12
14
|
import { DateValue } from 'reka-ui';
|
|
13
15
|
import { DefineComponent } from 'vue';
|
|
16
|
+
import { DialogCloseProps } from 'reka-ui';
|
|
17
|
+
import { DialogContentProps } from 'reka-ui';
|
|
18
|
+
import { DialogDescriptionProps } from 'reka-ui';
|
|
19
|
+
import { DialogRootProps } from 'reka-ui';
|
|
20
|
+
import { DialogTitleProps } from 'reka-ui';
|
|
21
|
+
import { DialogTriggerProps } from 'reka-ui';
|
|
22
|
+
import { FocusOutsideEvent } from 'reka-ui';
|
|
14
23
|
import { getLocalTimeZone } from '@internationalized/date';
|
|
15
24
|
import { HTMLAttributes } from 'vue';
|
|
16
25
|
import { ImgHTMLAttributes } from 'vue';
|
|
17
26
|
import { Matcher } from 'reka-ui/date';
|
|
27
|
+
import { PointerDownOutsideEvent } from 'reka-ui';
|
|
18
28
|
import { PublicProps } from 'vue';
|
|
29
|
+
import { Ref } from 'vue';
|
|
19
30
|
import { ReuseTemplateComponent } from '@vueuse/core';
|
|
20
31
|
import { Row } from '@tanstack/vue-table';
|
|
21
32
|
import { SeparatorProps } from 'reka-ui';
|
|
@@ -39,33 +50,167 @@ declare const __VLS_component: DefineComponent<UiAccordionSingleProps | UiAccord
|
|
|
39
50
|
|
|
40
51
|
declare const __VLS_component_10: DefineComponent<UiAlertSubComponentCommonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiAlertSubComponentCommonProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
41
52
|
|
|
42
|
-
declare const __VLS_component_100: DefineComponent<
|
|
53
|
+
declare const __VLS_component_100: DefineComponent<DialogCloseProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<DialogCloseProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
54
|
+
|
|
55
|
+
declare const __VLS_component_101: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
56
|
+
|
|
57
|
+
declare const __VLS_component_102: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
58
|
+
|
|
59
|
+
declare const __VLS_component_103: DefineComponent<DialogTitleProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<DialogTitleProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
60
|
+
|
|
61
|
+
declare const __VLS_component_104: DefineComponent<DialogDescriptionProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<DialogDescriptionProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
62
|
+
|
|
63
|
+
declare const __VLS_component_105: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
64
|
+
|
|
65
|
+
declare const __VLS_component_106: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
66
|
+
|
|
67
|
+
declare const __VLS_component_107: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
68
|
+
|
|
69
|
+
declare const __VLS_component_108: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
70
|
+
|
|
71
|
+
declare const __VLS_component_109: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
72
|
+
|
|
73
|
+
declare const __VLS_component_11: DefineComponent<UiAlertDialogContentProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
74
|
+
pointerDownOutside: (event: Event) => any;
|
|
75
|
+
focusOutside: (event: Event) => any;
|
|
76
|
+
interactOutside: (event: Event) => any;
|
|
77
|
+
openAutoFocus: (event: Event) => any;
|
|
78
|
+
closeAutoFocus: (event: Event) => any;
|
|
79
|
+
escapeKeydown: (event: KeyboardEvent) => any;
|
|
80
|
+
}, string, PublicProps, Readonly<UiAlertDialogContentProps> & Readonly<{
|
|
81
|
+
onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
82
|
+
onFocusOutside?: ((event: Event) => any) | undefined;
|
|
83
|
+
onInteractOutside?: ((event: Event) => any) | undefined;
|
|
84
|
+
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
85
|
+
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
86
|
+
onEscapeKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
87
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
88
|
+
|
|
89
|
+
declare const __VLS_component_110: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
90
|
+
|
|
91
|
+
declare const __VLS_component_111: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
92
|
+
|
|
93
|
+
declare const __VLS_component_112: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
94
|
+
|
|
95
|
+
declare const __VLS_component_113: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
96
|
+
|
|
97
|
+
declare const __VLS_component_114: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
98
|
+
|
|
99
|
+
declare const __VLS_component_115: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
100
|
+
|
|
101
|
+
declare const __VLS_component_116: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
102
|
+
|
|
103
|
+
declare const __VLS_component_117: DefineComponent<UiSidebarProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiSidebarProps> & Readonly<{}>, {
|
|
104
|
+
collapsible: UiSidebarCollapsible;
|
|
105
|
+
variant: UiSidebarVariant;
|
|
106
|
+
side: UiSidebarSide;
|
|
107
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
108
|
+
|
|
109
|
+
declare const __VLS_component_118: DefineComponent<UiSidebarGroupActionProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiSidebarGroupActionProps> & Readonly<{}>, {
|
|
110
|
+
asChild: boolean;
|
|
111
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
112
|
+
|
|
113
|
+
declare const __VLS_component_119: DefineComponent<UiSidebarGroupLabelProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiSidebarGroupLabelProps> & Readonly<{}>, {
|
|
114
|
+
asChild: boolean;
|
|
115
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
116
|
+
|
|
117
|
+
declare const __VLS_component_12: DefineComponent<UiAlertSubComponentCommonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiAlertSubComponentCommonProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
118
|
+
|
|
119
|
+
declare const __VLS_component_120: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
120
|
+
|
|
121
|
+
declare const __VLS_component_121: DefineComponent<UiSidebarMenuActionProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiSidebarMenuActionProps> & Readonly<{}>, {
|
|
122
|
+
asChild: boolean;
|
|
123
|
+
showOnHover: boolean;
|
|
124
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
125
|
+
|
|
126
|
+
declare const __VLS_component_122: DefineComponent<UiSidebarMenuButtonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiSidebarMenuButtonProps> & Readonly<{}>, {
|
|
127
|
+
asChild: boolean;
|
|
128
|
+
size: UiSidebarMenuButtonSize;
|
|
129
|
+
variant: UiSidebarMenuButtonVariant;
|
|
130
|
+
isActive: boolean;
|
|
131
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
132
|
+
|
|
133
|
+
declare const __VLS_component_123: DefineComponent<UiSidebarMenuSubButtonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiSidebarMenuSubButtonProps> & Readonly<{}>, {
|
|
134
|
+
asChild: boolean;
|
|
135
|
+
size: UiSidebarMenuSubButtonSize;
|
|
136
|
+
isActive: boolean;
|
|
137
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
138
|
+
|
|
139
|
+
declare const __VLS_component_124: DefineComponent<UiSidebarProviderProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiSidebarProviderProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
140
|
+
|
|
141
|
+
declare const __VLS_component_125: DefineComponent<__VLS_PublicProps_12, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
142
|
+
"update:modelValue": (value: number) => any;
|
|
143
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_12> & Readonly<{
|
|
144
|
+
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
145
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
146
|
+
|
|
147
|
+
declare const __VLS_component_126: DefineComponent<UiStepperItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiStepperItemProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
148
|
+
|
|
149
|
+
declare const __VLS_component_127: DefineComponent<UiStepperTriggerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiStepperTriggerProps> & Readonly<{}>, {
|
|
150
|
+
asChild: boolean;
|
|
151
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
152
|
+
|
|
153
|
+
declare const __VLS_component_128: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
154
|
+
|
|
155
|
+
declare const __VLS_component_129: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
156
|
+
|
|
157
|
+
declare const __VLS_component_13: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
158
|
+
|
|
159
|
+
declare const __VLS_component_130: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
160
|
+
|
|
161
|
+
declare const __VLS_component_131: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
162
|
+
|
|
163
|
+
declare const __VLS_component_132: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLTableSectionElement>;
|
|
164
|
+
|
|
165
|
+
declare const __VLS_component_133: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLTableSectionElement>;
|
|
166
|
+
|
|
167
|
+
declare const __VLS_component_134: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLTableSectionElement>;
|
|
168
|
+
|
|
169
|
+
declare const __VLS_component_135: DefineComponent<UiTableRowProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiTableRowProps> & Readonly<{}>, {
|
|
170
|
+
selected: boolean;
|
|
171
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLTableRowElement>;
|
|
172
|
+
|
|
173
|
+
declare const __VLS_component_136: DefineComponent<UiTableHeadProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiTableHeadProps> & Readonly<{}>, {
|
|
174
|
+
scope: "col" | "row" | "colgroup" | "rowgroup";
|
|
175
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLTableCellElement>;
|
|
176
|
+
|
|
177
|
+
declare const __VLS_component_137: DefineComponent<UiTableCellProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiTableCellProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLTableCellElement>;
|
|
178
|
+
|
|
179
|
+
declare const __VLS_component_138: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLTableCaptionElement>;
|
|
180
|
+
|
|
181
|
+
declare const __VLS_component_139: DefineComponent<UiTableEmptyProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiTableEmptyProps> & Readonly<{}>, {
|
|
182
|
+
colspan: number;
|
|
183
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLTableRowElement>;
|
|
184
|
+
|
|
185
|
+
declare const __VLS_component_14: DefineComponent<UiAlertSubComponentCommonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiAlertSubComponentCommonProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
186
|
+
|
|
187
|
+
declare const __VLS_component_140: DefineComponent<UiTabsProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
43
188
|
"update:modelValue": (value: string) => any;
|
|
44
189
|
}, string, PublicProps, Readonly<UiTabsProps> & Readonly<{
|
|
45
190
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
46
191
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
47
192
|
|
|
48
|
-
declare const
|
|
193
|
+
declare const __VLS_component_141: DefineComponent<UiTabsListProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiTabsListProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
49
194
|
|
|
50
|
-
declare const
|
|
195
|
+
declare const __VLS_component_142: DefineComponent<UiTabsTriggerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiTabsTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
51
196
|
|
|
52
|
-
declare const
|
|
197
|
+
declare const __VLS_component_143: DefineComponent<UiTabsContentProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiTabsContentProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
53
198
|
|
|
54
|
-
declare const
|
|
199
|
+
declare const __VLS_component_144: DefineComponent<__VLS_PublicProps_14, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
55
200
|
"update:modelValue": (value: string[]) => any;
|
|
56
|
-
}, string, PublicProps, Readonly<
|
|
201
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_14> & Readonly<{
|
|
57
202
|
"onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
|
|
58
203
|
}>, {
|
|
59
204
|
disabled: boolean;
|
|
60
205
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
61
206
|
|
|
62
|
-
declare const
|
|
207
|
+
declare const __VLS_component_145: DefineComponent<UiTagsInputItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiTagsInputItemProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
63
208
|
|
|
64
|
-
declare const
|
|
209
|
+
declare const __VLS_component_146: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
65
210
|
|
|
66
|
-
declare const
|
|
211
|
+
declare const __VLS_component_147: DefineComponent<__VLS_PublicProps_16, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
67
212
|
"update:modelValue": (value: boolean) => any;
|
|
68
|
-
}, string, PublicProps, Readonly<
|
|
213
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_16> & Readonly<{
|
|
69
214
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
70
215
|
}>, {
|
|
71
216
|
disabled: boolean;
|
|
@@ -73,11 +218,11 @@ size: "default" | "sm" | "lg";
|
|
|
73
218
|
variant: "default" | "outline";
|
|
74
219
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
75
220
|
|
|
76
|
-
declare const
|
|
221
|
+
declare const __VLS_component_148: DefineComponent<UiToggleGroupItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiToggleGroupItemProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
77
222
|
|
|
78
|
-
declare const
|
|
223
|
+
declare const __VLS_component_149: DefineComponent<__VLS_PublicProps_17, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
79
224
|
"update:open": (value: boolean) => any;
|
|
80
|
-
}, string, PublicProps, Readonly<
|
|
225
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_17> & Readonly<{
|
|
81
226
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
82
227
|
}>, {
|
|
83
228
|
disabled: boolean;
|
|
@@ -88,49 +233,27 @@ align: UiTooltipAlign;
|
|
|
88
233
|
delayDuration: number;
|
|
89
234
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
90
235
|
|
|
91
|
-
declare const
|
|
92
|
-
pointerDownOutside: (event: Event) => any;
|
|
93
|
-
focusOutside: (event: Event) => any;
|
|
94
|
-
interactOutside: (event: Event) => any;
|
|
95
|
-
openAutoFocus: (event: Event) => any;
|
|
96
|
-
closeAutoFocus: (event: Event) => any;
|
|
97
|
-
escapeKeydown: (event: KeyboardEvent) => any;
|
|
98
|
-
}, string, PublicProps, Readonly<UiAlertDialogContentProps> & Readonly<{
|
|
99
|
-
onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
100
|
-
onFocusOutside?: ((event: Event) => any) | undefined;
|
|
101
|
-
onInteractOutside?: ((event: Event) => any) | undefined;
|
|
102
|
-
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
103
|
-
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
104
|
-
onEscapeKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
105
|
-
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
236
|
+
declare const __VLS_component_15: DefineComponent<UiAlertSubComponentCommonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiAlertSubComponentCommonProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
106
237
|
|
|
107
|
-
declare const
|
|
238
|
+
declare const __VLS_component_150: DefineComponent<TooltipRootProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
108
239
|
"update:open": (value: boolean) => any;
|
|
109
240
|
}, string, PublicProps, Readonly<TooltipRootProps> & Readonly<{
|
|
110
241
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
111
242
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
112
243
|
|
|
113
|
-
declare const
|
|
244
|
+
declare const __VLS_component_151: DefineComponent<__VLS_Props_33, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
114
245
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
115
246
|
pointerDownOutside: (event: Event) => any;
|
|
116
|
-
}, string, PublicProps, Readonly<
|
|
247
|
+
}, string, PublicProps, Readonly<__VLS_Props_33> & Readonly<{
|
|
117
248
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
118
249
|
onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
119
250
|
}>, {
|
|
120
251
|
sideOffset: number;
|
|
121
252
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
122
253
|
|
|
123
|
-
declare const
|
|
124
|
-
|
|
125
|
-
declare const __VLS_component_113: DefineComponent<TooltipTriggerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TooltipTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
126
|
-
|
|
127
|
-
declare const __VLS_component_12: DefineComponent<UiAlertSubComponentCommonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiAlertSubComponentCommonProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
128
|
-
|
|
129
|
-
declare const __VLS_component_13: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
130
|
-
|
|
131
|
-
declare const __VLS_component_14: DefineComponent<UiAlertSubComponentCommonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiAlertSubComponentCommonProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
254
|
+
declare const __VLS_component_152: DefineComponent<TooltipProviderProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
132
255
|
|
|
133
|
-
declare const
|
|
256
|
+
declare const __VLS_component_153: DefineComponent<TooltipTriggerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TooltipTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
134
257
|
|
|
135
258
|
declare const __VLS_component_16: DefineComponent<UiAlertSubComponentCommonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiAlertSubComponentCommonProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
136
259
|
|
|
@@ -422,15 +545,59 @@ declare const __VLS_component_8: DefineComponent<__VLS_PublicProps, {}, {}, {},
|
|
|
422
545
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
423
546
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
424
547
|
|
|
425
|
-
declare const __VLS_component_80: DefineComponent<
|
|
548
|
+
declare const __VLS_component_80: DefineComponent<UiNavigationMenuProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
549
|
+
"update:modelValue": (value: string) => any;
|
|
550
|
+
}, string, PublicProps, Readonly<UiNavigationMenuProps> & Readonly<{
|
|
551
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
552
|
+
}>, {
|
|
553
|
+
dir: UiNavigationMenuDir;
|
|
554
|
+
orientation: UiNavigationMenuOrientation;
|
|
555
|
+
modelValue: string;
|
|
556
|
+
defaultValue: string;
|
|
557
|
+
delayDuration: number;
|
|
558
|
+
skipDelayDuration: number;
|
|
559
|
+
disableClickTrigger: boolean;
|
|
560
|
+
disableHoverTrigger: boolean;
|
|
561
|
+
viewport: boolean;
|
|
562
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
563
|
+
|
|
564
|
+
declare const __VLS_component_81: DefineComponent<UiNavigationMenuListProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiNavigationMenuListProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
565
|
+
|
|
566
|
+
declare const __VLS_component_82: DefineComponent<UiNavigationMenuItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiNavigationMenuItemProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
567
|
+
|
|
568
|
+
declare const __VLS_component_83: DefineComponent<UiNavigationMenuTriggerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiNavigationMenuTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
569
|
+
|
|
570
|
+
declare const __VLS_component_84: DefineComponent<UiNavigationMenuContentProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
571
|
+
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
572
|
+
outsideClick: (event: Event) => any;
|
|
573
|
+
outsideFocus: (event: Event) => any;
|
|
574
|
+
outsideInteract: (event: Event) => any;
|
|
575
|
+
}, string, PublicProps, Readonly<UiNavigationMenuContentProps> & Readonly<{
|
|
576
|
+
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
577
|
+
onOutsideClick?: ((event: Event) => any) | undefined;
|
|
578
|
+
onOutsideFocus?: ((event: Event) => any) | undefined;
|
|
579
|
+
onOutsideInteract?: ((event: Event) => any) | undefined;
|
|
580
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
581
|
+
|
|
582
|
+
declare const __VLS_component_85: DefineComponent<UiNavigationMenuLinkProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
583
|
+
select: (event: CustomEvent<{
|
|
584
|
+
originalEvent: Event;
|
|
585
|
+
}>) => any;
|
|
586
|
+
}, string, PublicProps, Readonly<UiNavigationMenuLinkProps> & Readonly<{
|
|
587
|
+
onSelect?: ((event: CustomEvent<{
|
|
588
|
+
originalEvent: Event;
|
|
589
|
+
}>) => any) | undefined;
|
|
590
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
591
|
+
|
|
592
|
+
declare const __VLS_component_86: DefineComponent<__VLS_PublicProps_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
426
593
|
"update:open": (value: boolean) => any;
|
|
427
594
|
}, string, PublicProps, Readonly<__VLS_PublicProps_8> & Readonly<{
|
|
428
595
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
429
596
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
430
597
|
|
|
431
|
-
declare const
|
|
598
|
+
declare const __VLS_component_87: DefineComponent<UiPopoverTriggerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiPopoverTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
432
599
|
|
|
433
|
-
declare const
|
|
600
|
+
declare const __VLS_component_88: DefineComponent<UiPopoverContentProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
434
601
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
435
602
|
}, string, PublicProps, Readonly<UiPopoverContentProps> & Readonly<{
|
|
436
603
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
@@ -440,7 +607,7 @@ sideOffset: number;
|
|
|
440
607
|
align: UiPopoverAlign;
|
|
441
608
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
442
609
|
|
|
443
|
-
declare const
|
|
610
|
+
declare const __VLS_component_89: DefineComponent<__VLS_PublicProps_10, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
444
611
|
"update:modelValue": (value: string) => any;
|
|
445
612
|
}, string, PublicProps, Readonly<__VLS_PublicProps_10> & Readonly<{
|
|
446
613
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
@@ -453,7 +620,9 @@ required: boolean;
|
|
|
453
620
|
loop: boolean;
|
|
454
621
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
455
622
|
|
|
456
|
-
declare const
|
|
623
|
+
declare const __VLS_component_9: DefineComponent<UiAlertSubComponentCommonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiAlertSubComponentCommonProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
624
|
+
|
|
625
|
+
declare const __VLS_component_90: DefineComponent<UiSelectProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
457
626
|
"update:modelValue": (value: string) => any;
|
|
458
627
|
"update:open": (value: boolean) => any;
|
|
459
628
|
}, string, PublicProps, Readonly<UiSelectProps> & Readonly<{
|
|
@@ -470,13 +639,13 @@ name: string;
|
|
|
470
639
|
required: boolean;
|
|
471
640
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
472
641
|
|
|
473
|
-
declare const
|
|
642
|
+
declare const __VLS_component_91: DefineComponent<UiSelectTriggerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiSelectTriggerProps> & Readonly<{}>, {
|
|
474
643
|
disabled: boolean;
|
|
475
644
|
size: "default" | "sm";
|
|
476
645
|
ariaLabel: string;
|
|
477
646
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
478
647
|
|
|
479
|
-
declare const
|
|
648
|
+
declare const __VLS_component_92: DefineComponent<UiSelectContentProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
480
649
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
481
650
|
pointerDownOutside: (event: Event) => any;
|
|
482
651
|
}, string, PublicProps, Readonly<UiSelectContentProps> & Readonly<{
|
|
@@ -489,44 +658,45 @@ align: "start" | "center" | "end";
|
|
|
489
658
|
position: "item-aligned" | "popper";
|
|
490
659
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
491
660
|
|
|
492
|
-
declare const
|
|
661
|
+
declare const __VLS_component_93: DefineComponent<UiSelectItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiSelectItemProps> & Readonly<{}>, {
|
|
493
662
|
disabled: boolean;
|
|
494
663
|
textValue: string;
|
|
495
664
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
496
665
|
|
|
497
|
-
declare const
|
|
666
|
+
declare const __VLS_component_94: DefineComponent<UiSelectValueProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiSelectValueProps> & Readonly<{}>, {
|
|
498
667
|
placeholder: string;
|
|
499
668
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
500
669
|
|
|
501
|
-
declare const
|
|
502
|
-
|
|
503
|
-
declare const __VLS_component_9: DefineComponent<UiAlertSubComponentCommonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiAlertSubComponentCommonProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
504
|
-
|
|
505
|
-
declare const __VLS_component_90: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
506
|
-
|
|
507
|
-
declare const __VLS_component_91: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
508
|
-
|
|
509
|
-
declare const __VLS_component_92: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLTableSectionElement>;
|
|
510
|
-
|
|
511
|
-
declare const __VLS_component_93: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLTableSectionElement>;
|
|
512
|
-
|
|
513
|
-
declare const __VLS_component_94: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLTableSectionElement>;
|
|
514
|
-
|
|
515
|
-
declare const __VLS_component_95: DefineComponent<UiTableRowProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiTableRowProps> & Readonly<{}>, {
|
|
516
|
-
selected: boolean;
|
|
517
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLTableRowElement>;
|
|
670
|
+
declare const __VLS_component_95: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
518
671
|
|
|
519
|
-
declare const __VLS_component_96: DefineComponent<
|
|
520
|
-
scope: "col" | "row" | "colgroup" | "rowgroup";
|
|
521
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLTableCellElement>;
|
|
672
|
+
declare const __VLS_component_96: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
522
673
|
|
|
523
|
-
declare const __VLS_component_97: DefineComponent<
|
|
674
|
+
declare const __VLS_component_97: DefineComponent<DialogRootProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
675
|
+
"update:open": (value: boolean) => any;
|
|
676
|
+
}, string, PublicProps, Readonly<DialogRootProps> & Readonly<{
|
|
677
|
+
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
678
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
524
679
|
|
|
525
|
-
declare const __VLS_component_98: DefineComponent<
|
|
680
|
+
declare const __VLS_component_98: DefineComponent<DialogTriggerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<DialogTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
526
681
|
|
|
527
|
-
declare const __VLS_component_99: DefineComponent<
|
|
528
|
-
|
|
529
|
-
|
|
682
|
+
declare const __VLS_component_99: DefineComponent<__VLS_Props_26, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
683
|
+
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
684
|
+
pointerDownOutside: (event: PointerDownOutsideEvent) => any;
|
|
685
|
+
focusOutside: (event: FocusOutsideEvent) => any;
|
|
686
|
+
interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any;
|
|
687
|
+
openAutoFocus: (event: Event) => any;
|
|
688
|
+
closeAutoFocus: (event: Event) => any;
|
|
689
|
+
}, string, PublicProps, Readonly<__VLS_Props_26> & Readonly<{
|
|
690
|
+
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
691
|
+
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
692
|
+
onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
|
|
693
|
+
onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined;
|
|
694
|
+
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
695
|
+
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
696
|
+
}>, {
|
|
697
|
+
side: "top" | "right" | "bottom" | "left";
|
|
698
|
+
closeLabel: string;
|
|
699
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
530
700
|
|
|
531
701
|
declare type __VLS_PrettifyLocal<T> = {
|
|
532
702
|
[K in keyof T]: T[K];
|
|
@@ -602,25 +772,32 @@ declare type __VLS_Props_24 = UiRadioGroupProps;
|
|
|
602
772
|
|
|
603
773
|
declare type __VLS_Props_25 = UiRangeCalendarProps;
|
|
604
774
|
|
|
605
|
-
declare type __VLS_Props_26 =
|
|
775
|
+
declare type __VLS_Props_26 = DialogContentProps & {
|
|
776
|
+
side?: 'top' | 'right' | 'bottom' | 'left';
|
|
777
|
+
closeLabel?: string;
|
|
778
|
+
};
|
|
606
779
|
|
|
607
|
-
declare type __VLS_Props_27 =
|
|
780
|
+
declare type __VLS_Props_27 = UiStepperProps;
|
|
608
781
|
|
|
609
|
-
declare type __VLS_Props_28 =
|
|
782
|
+
declare type __VLS_Props_28 = UiSwitchProps;
|
|
610
783
|
|
|
611
|
-
declare type __VLS_Props_29 =
|
|
784
|
+
declare type __VLS_Props_29 = UiTagsInputProps;
|
|
612
785
|
|
|
613
786
|
declare type __VLS_Props_3 = {
|
|
614
787
|
class?: HTMLAttributes['class'];
|
|
615
788
|
};
|
|
616
789
|
|
|
617
|
-
declare type __VLS_Props_30 =
|
|
790
|
+
declare type __VLS_Props_30 = UiTextareaProps;
|
|
618
791
|
|
|
619
|
-
declare type __VLS_Props_31 =
|
|
792
|
+
declare type __VLS_Props_31 = UiToggleProps;
|
|
793
|
+
|
|
794
|
+
declare type __VLS_Props_32 = UiTooltipProps;
|
|
795
|
+
|
|
796
|
+
declare type __VLS_Props_33 = TooltipContentProps & {
|
|
620
797
|
class?: HTMLAttributes['class'];
|
|
621
798
|
};
|
|
622
799
|
|
|
623
|
-
declare type
|
|
800
|
+
declare type __VLS_Props_34 = UiDatePickerProps;
|
|
624
801
|
|
|
625
802
|
declare type __VLS_Props_4 = {
|
|
626
803
|
class?: HTMLAttributes['class'];
|
|
@@ -658,30 +835,34 @@ declare type __VLS_PublicProps_11 = {
|
|
|
658
835
|
} & __VLS_Props_25;
|
|
659
836
|
|
|
660
837
|
declare type __VLS_PublicProps_12 = {
|
|
661
|
-
modelValue?:
|
|
662
|
-
} &
|
|
838
|
+
modelValue?: number;
|
|
839
|
+
} & __VLS_Props_27;
|
|
663
840
|
|
|
664
841
|
declare type __VLS_PublicProps_13 = {
|
|
665
|
-
modelValue?:
|
|
666
|
-
} &
|
|
842
|
+
modelValue?: boolean;
|
|
843
|
+
} & __VLS_Props_28;
|
|
667
844
|
|
|
668
845
|
declare type __VLS_PublicProps_14 = {
|
|
669
|
-
modelValue?: string;
|
|
670
|
-
} &
|
|
846
|
+
modelValue?: string[];
|
|
847
|
+
} & __VLS_Props_29;
|
|
671
848
|
|
|
672
849
|
declare type __VLS_PublicProps_15 = {
|
|
673
|
-
modelValue?:
|
|
674
|
-
} &
|
|
850
|
+
modelValue?: string;
|
|
851
|
+
} & __VLS_Props_30;
|
|
675
852
|
|
|
676
853
|
declare type __VLS_PublicProps_16 = {
|
|
677
|
-
|
|
678
|
-
} &
|
|
854
|
+
modelValue?: boolean;
|
|
855
|
+
} & __VLS_Props_31;
|
|
679
856
|
|
|
680
857
|
declare type __VLS_PublicProps_17 = {
|
|
681
|
-
modelValue?: UiDatePickerProps['modelValue'];
|
|
682
858
|
'open'?: boolean;
|
|
683
859
|
} & __VLS_Props_32;
|
|
684
860
|
|
|
861
|
+
declare type __VLS_PublicProps_18 = {
|
|
862
|
+
modelValue?: UiDatePickerProps['modelValue'];
|
|
863
|
+
'open'?: boolean;
|
|
864
|
+
} & __VLS_Props_34;
|
|
865
|
+
|
|
685
866
|
declare type __VLS_PublicProps_2 = {
|
|
686
867
|
modelValue?: UiCalendarProps['modelValue'];
|
|
687
868
|
'placeholder'?: UiCalendarProps['placeholder'];
|
|
@@ -733,54 +914,426 @@ declare function __VLS_template_10(): {
|
|
|
733
914
|
rootEl: any;
|
|
734
915
|
};
|
|
735
916
|
|
|
736
|
-
declare function __VLS_template_100(): {
|
|
917
|
+
declare function __VLS_template_100(): {
|
|
918
|
+
attrs: Partial<{}>;
|
|
919
|
+
slots: {
|
|
920
|
+
default?(_: {}): any;
|
|
921
|
+
};
|
|
922
|
+
refs: {};
|
|
923
|
+
rootEl: any;
|
|
924
|
+
};
|
|
925
|
+
|
|
926
|
+
declare function __VLS_template_101(): {
|
|
927
|
+
attrs: Partial<{}>;
|
|
928
|
+
slots: {
|
|
929
|
+
default?(_: {}): any;
|
|
930
|
+
};
|
|
931
|
+
refs: {};
|
|
932
|
+
rootEl: HTMLDivElement;
|
|
933
|
+
};
|
|
934
|
+
|
|
935
|
+
declare function __VLS_template_102(): {
|
|
936
|
+
attrs: Partial<{}>;
|
|
937
|
+
slots: {
|
|
938
|
+
default?(_: {}): any;
|
|
939
|
+
};
|
|
940
|
+
refs: {};
|
|
941
|
+
rootEl: HTMLDivElement;
|
|
942
|
+
};
|
|
943
|
+
|
|
944
|
+
declare function __VLS_template_103(): {
|
|
945
|
+
attrs: Partial<{}>;
|
|
946
|
+
slots: {
|
|
947
|
+
default?(_: {}): any;
|
|
948
|
+
};
|
|
949
|
+
refs: {};
|
|
950
|
+
rootEl: any;
|
|
951
|
+
};
|
|
952
|
+
|
|
953
|
+
declare function __VLS_template_104(): {
|
|
954
|
+
attrs: Partial<{}>;
|
|
955
|
+
slots: {
|
|
956
|
+
default?(_: {}): any;
|
|
957
|
+
};
|
|
958
|
+
refs: {};
|
|
959
|
+
rootEl: any;
|
|
960
|
+
};
|
|
961
|
+
|
|
962
|
+
declare function __VLS_template_105(): {
|
|
963
|
+
attrs: Partial<{}>;
|
|
964
|
+
slots: {
|
|
965
|
+
default?(_: {}): any;
|
|
966
|
+
};
|
|
967
|
+
refs: {};
|
|
968
|
+
rootEl: any;
|
|
969
|
+
};
|
|
970
|
+
|
|
971
|
+
declare function __VLS_template_106(): {
|
|
972
|
+
attrs: Partial<{}>;
|
|
973
|
+
slots: {
|
|
974
|
+
default?(_: {}): any;
|
|
975
|
+
};
|
|
976
|
+
refs: {};
|
|
977
|
+
rootEl: any;
|
|
978
|
+
};
|
|
979
|
+
|
|
980
|
+
declare function __VLS_template_107(): {
|
|
981
|
+
attrs: Partial<{}>;
|
|
982
|
+
slots: {
|
|
983
|
+
default?(_: {}): any;
|
|
984
|
+
};
|
|
985
|
+
refs: {};
|
|
986
|
+
rootEl: any;
|
|
987
|
+
};
|
|
988
|
+
|
|
989
|
+
declare function __VLS_template_108(): {
|
|
990
|
+
attrs: Partial<{}>;
|
|
991
|
+
slots: {
|
|
992
|
+
default?(_: {}): any;
|
|
993
|
+
};
|
|
994
|
+
refs: {};
|
|
995
|
+
rootEl: any;
|
|
996
|
+
};
|
|
997
|
+
|
|
998
|
+
declare function __VLS_template_109(): {
|
|
999
|
+
attrs: Partial<{}>;
|
|
1000
|
+
slots: {
|
|
1001
|
+
default?(_: {}): any;
|
|
1002
|
+
};
|
|
1003
|
+
refs: {};
|
|
1004
|
+
rootEl: any;
|
|
1005
|
+
};
|
|
1006
|
+
|
|
1007
|
+
declare function __VLS_template_11(): {
|
|
1008
|
+
attrs: Partial<{}>;
|
|
1009
|
+
slots: {
|
|
1010
|
+
default?(_: {}): any;
|
|
1011
|
+
};
|
|
1012
|
+
refs: {};
|
|
1013
|
+
rootEl: any;
|
|
1014
|
+
};
|
|
1015
|
+
|
|
1016
|
+
declare function __VLS_template_110(): {
|
|
1017
|
+
attrs: Partial<{}>;
|
|
1018
|
+
slots: {
|
|
1019
|
+
default?(_: {}): any;
|
|
1020
|
+
};
|
|
1021
|
+
refs: {};
|
|
1022
|
+
rootEl: any;
|
|
1023
|
+
};
|
|
1024
|
+
|
|
1025
|
+
declare function __VLS_template_111(): {
|
|
1026
|
+
attrs: Partial<{}>;
|
|
1027
|
+
slots: {
|
|
1028
|
+
default?(_: {}): any;
|
|
1029
|
+
};
|
|
1030
|
+
refs: {};
|
|
1031
|
+
rootEl: any;
|
|
1032
|
+
};
|
|
1033
|
+
|
|
1034
|
+
declare function __VLS_template_112(): {
|
|
1035
|
+
attrs: Partial<{}>;
|
|
1036
|
+
slots: {
|
|
1037
|
+
default?(_: {}): any;
|
|
1038
|
+
};
|
|
1039
|
+
refs: {};
|
|
1040
|
+
rootEl: any;
|
|
1041
|
+
};
|
|
1042
|
+
|
|
1043
|
+
declare function __VLS_template_113(): {
|
|
1044
|
+
attrs: Partial<{}>;
|
|
1045
|
+
slots: {
|
|
1046
|
+
default?(_: {}): any;
|
|
1047
|
+
};
|
|
1048
|
+
refs: {};
|
|
1049
|
+
rootEl: any;
|
|
1050
|
+
};
|
|
1051
|
+
|
|
1052
|
+
declare function __VLS_template_114(): {
|
|
1053
|
+
attrs: Partial<{}>;
|
|
1054
|
+
slots: {
|
|
1055
|
+
default?(_: {}): any;
|
|
1056
|
+
};
|
|
1057
|
+
refs: {};
|
|
1058
|
+
rootEl: any;
|
|
1059
|
+
};
|
|
1060
|
+
|
|
1061
|
+
declare function __VLS_template_115(): {
|
|
1062
|
+
attrs: Partial<{}>;
|
|
1063
|
+
slots: {
|
|
1064
|
+
default?(_: {}): any;
|
|
1065
|
+
};
|
|
1066
|
+
refs: {};
|
|
1067
|
+
rootEl: any;
|
|
1068
|
+
};
|
|
1069
|
+
|
|
1070
|
+
declare function __VLS_template_116(): {
|
|
1071
|
+
attrs: Partial<{}>;
|
|
1072
|
+
slots: {
|
|
1073
|
+
default?(_: {}): any;
|
|
1074
|
+
};
|
|
1075
|
+
refs: {};
|
|
1076
|
+
rootEl: any;
|
|
1077
|
+
};
|
|
1078
|
+
|
|
1079
|
+
declare function __VLS_template_117(): {
|
|
1080
|
+
attrs: Partial<{}>;
|
|
1081
|
+
slots: {
|
|
1082
|
+
default?(_: {}): any;
|
|
1083
|
+
};
|
|
1084
|
+
refs: {};
|
|
1085
|
+
rootEl: any;
|
|
1086
|
+
};
|
|
1087
|
+
|
|
1088
|
+
declare function __VLS_template_118(): {
|
|
1089
|
+
attrs: Partial<{}>;
|
|
1090
|
+
slots: {
|
|
1091
|
+
default?(_: {}): any;
|
|
1092
|
+
};
|
|
1093
|
+
refs: {};
|
|
1094
|
+
rootEl: any;
|
|
1095
|
+
};
|
|
1096
|
+
|
|
1097
|
+
declare function __VLS_template_119(): {
|
|
1098
|
+
attrs: Partial<{}>;
|
|
1099
|
+
slots: {
|
|
1100
|
+
default?(_: {}): any;
|
|
1101
|
+
};
|
|
1102
|
+
refs: {};
|
|
1103
|
+
rootEl: any;
|
|
1104
|
+
};
|
|
1105
|
+
|
|
1106
|
+
declare function __VLS_template_12(): {
|
|
1107
|
+
attrs: Partial<{}>;
|
|
1108
|
+
slots: {
|
|
1109
|
+
default?(_: {}): any;
|
|
1110
|
+
};
|
|
1111
|
+
refs: {};
|
|
1112
|
+
rootEl: any;
|
|
1113
|
+
};
|
|
1114
|
+
|
|
1115
|
+
declare function __VLS_template_120(): {
|
|
1116
|
+
attrs: Partial<{}>;
|
|
1117
|
+
slots: {
|
|
1118
|
+
logo?(_: {}): any;
|
|
1119
|
+
logo?(_: {}): any;
|
|
1120
|
+
default?(_: {}): any;
|
|
1121
|
+
};
|
|
1122
|
+
refs: {};
|
|
1123
|
+
rootEl: any;
|
|
1124
|
+
};
|
|
1125
|
+
|
|
1126
|
+
declare function __VLS_template_121(): {
|
|
1127
|
+
attrs: Partial<{}>;
|
|
1128
|
+
slots: {
|
|
1129
|
+
default?(_: {}): any;
|
|
1130
|
+
};
|
|
1131
|
+
refs: {};
|
|
1132
|
+
rootEl: any;
|
|
1133
|
+
};
|
|
1134
|
+
|
|
1135
|
+
declare function __VLS_template_122(): {
|
|
1136
|
+
attrs: Partial<{}>;
|
|
1137
|
+
slots: {
|
|
1138
|
+
default?(_: {}): any;
|
|
1139
|
+
};
|
|
1140
|
+
refs: {};
|
|
1141
|
+
rootEl: any;
|
|
1142
|
+
};
|
|
1143
|
+
|
|
1144
|
+
declare function __VLS_template_123(): {
|
|
1145
|
+
attrs: Partial<{}>;
|
|
1146
|
+
slots: {
|
|
1147
|
+
default?(_: {}): any;
|
|
1148
|
+
};
|
|
1149
|
+
refs: {};
|
|
1150
|
+
rootEl: any;
|
|
1151
|
+
};
|
|
1152
|
+
|
|
1153
|
+
declare function __VLS_template_124(): {
|
|
1154
|
+
attrs: Partial<{}>;
|
|
1155
|
+
slots: {
|
|
1156
|
+
default?(_: {}): any;
|
|
1157
|
+
};
|
|
1158
|
+
refs: {};
|
|
1159
|
+
rootEl: any;
|
|
1160
|
+
};
|
|
1161
|
+
|
|
1162
|
+
declare function __VLS_template_125(): {
|
|
1163
|
+
attrs: Partial<{}>;
|
|
1164
|
+
slots: {
|
|
1165
|
+
default?(_: {
|
|
1166
|
+
modelValue: number | undefined;
|
|
1167
|
+
totalSteps: number;
|
|
1168
|
+
isNextDisabled: boolean;
|
|
1169
|
+
isPrevDisabled: boolean;
|
|
1170
|
+
isFirstStep: boolean;
|
|
1171
|
+
isLastStep: boolean;
|
|
1172
|
+
goToStep: (step: number) => void;
|
|
1173
|
+
nextStep: () => void;
|
|
1174
|
+
prevStep: () => void;
|
|
1175
|
+
hasNext: () => boolean;
|
|
1176
|
+
hasPrev: () => boolean;
|
|
1177
|
+
}): any;
|
|
1178
|
+
};
|
|
1179
|
+
refs: {};
|
|
1180
|
+
rootEl: any;
|
|
1181
|
+
};
|
|
1182
|
+
|
|
1183
|
+
declare function __VLS_template_126(): {
|
|
1184
|
+
attrs: Partial<{}>;
|
|
1185
|
+
slots: {
|
|
1186
|
+
default?(_: any): any;
|
|
1187
|
+
};
|
|
1188
|
+
refs: {};
|
|
1189
|
+
rootEl: any;
|
|
1190
|
+
};
|
|
1191
|
+
|
|
1192
|
+
declare function __VLS_template_127(): {
|
|
1193
|
+
attrs: Partial<{}>;
|
|
1194
|
+
slots: {
|
|
1195
|
+
default?(_: {}): any;
|
|
1196
|
+
};
|
|
1197
|
+
refs: {};
|
|
1198
|
+
rootEl: any;
|
|
1199
|
+
};
|
|
1200
|
+
|
|
1201
|
+
declare function __VLS_template_128(): {
|
|
1202
|
+
attrs: Partial<{}>;
|
|
1203
|
+
slots: {
|
|
1204
|
+
default?(_: any): any;
|
|
1205
|
+
};
|
|
1206
|
+
refs: {};
|
|
1207
|
+
rootEl: any;
|
|
1208
|
+
};
|
|
1209
|
+
|
|
1210
|
+
declare function __VLS_template_129(): {
|
|
1211
|
+
attrs: Partial<{}>;
|
|
1212
|
+
slots: {
|
|
1213
|
+
default?(_: {}): any;
|
|
1214
|
+
};
|
|
1215
|
+
refs: {};
|
|
1216
|
+
rootEl: any;
|
|
1217
|
+
};
|
|
1218
|
+
|
|
1219
|
+
declare function __VLS_template_13(): {
|
|
1220
|
+
attrs: Partial<{}>;
|
|
1221
|
+
slots: {
|
|
1222
|
+
default?(_: {}): any;
|
|
1223
|
+
};
|
|
1224
|
+
refs: {};
|
|
1225
|
+
rootEl: HTMLDivElement;
|
|
1226
|
+
};
|
|
1227
|
+
|
|
1228
|
+
declare function __VLS_template_130(): {
|
|
1229
|
+
attrs: Partial<{}>;
|
|
1230
|
+
slots: {
|
|
1231
|
+
default?(_: any): any;
|
|
1232
|
+
};
|
|
1233
|
+
refs: {};
|
|
1234
|
+
rootEl: any;
|
|
1235
|
+
};
|
|
1236
|
+
|
|
1237
|
+
declare function __VLS_template_131(): {
|
|
1238
|
+
attrs: Partial<{}>;
|
|
1239
|
+
slots: {
|
|
1240
|
+
default?(_: {}): any;
|
|
1241
|
+
};
|
|
1242
|
+
refs: {};
|
|
1243
|
+
rootEl: HTMLDivElement;
|
|
1244
|
+
};
|
|
1245
|
+
|
|
1246
|
+
declare function __VLS_template_132(): {
|
|
1247
|
+
attrs: Partial<{}>;
|
|
1248
|
+
slots: {
|
|
1249
|
+
default?(_: {}): any;
|
|
1250
|
+
};
|
|
1251
|
+
refs: {};
|
|
1252
|
+
rootEl: HTMLTableSectionElement;
|
|
1253
|
+
};
|
|
1254
|
+
|
|
1255
|
+
declare function __VLS_template_133(): {
|
|
1256
|
+
attrs: Partial<{}>;
|
|
1257
|
+
slots: {
|
|
1258
|
+
default?(_: {}): any;
|
|
1259
|
+
};
|
|
1260
|
+
refs: {};
|
|
1261
|
+
rootEl: HTMLTableSectionElement;
|
|
1262
|
+
};
|
|
1263
|
+
|
|
1264
|
+
declare function __VLS_template_134(): {
|
|
1265
|
+
attrs: Partial<{}>;
|
|
1266
|
+
slots: {
|
|
1267
|
+
default?(_: {}): any;
|
|
1268
|
+
};
|
|
1269
|
+
refs: {};
|
|
1270
|
+
rootEl: HTMLTableSectionElement;
|
|
1271
|
+
};
|
|
1272
|
+
|
|
1273
|
+
declare function __VLS_template_135(): {
|
|
1274
|
+
attrs: Partial<{}>;
|
|
1275
|
+
slots: {
|
|
1276
|
+
default?(_: {}): any;
|
|
1277
|
+
};
|
|
1278
|
+
refs: {};
|
|
1279
|
+
rootEl: HTMLTableRowElement;
|
|
1280
|
+
};
|
|
1281
|
+
|
|
1282
|
+
declare function __VLS_template_136(): {
|
|
1283
|
+
attrs: Partial<{}>;
|
|
1284
|
+
slots: {
|
|
1285
|
+
default?(_: {}): any;
|
|
1286
|
+
};
|
|
1287
|
+
refs: {};
|
|
1288
|
+
rootEl: HTMLTableCellElement;
|
|
1289
|
+
};
|
|
1290
|
+
|
|
1291
|
+
declare function __VLS_template_137(): {
|
|
737
1292
|
attrs: Partial<{}>;
|
|
738
1293
|
slots: {
|
|
739
1294
|
default?(_: {}): any;
|
|
740
1295
|
};
|
|
741
1296
|
refs: {};
|
|
742
|
-
rootEl:
|
|
1297
|
+
rootEl: HTMLTableCellElement;
|
|
743
1298
|
};
|
|
744
1299
|
|
|
745
|
-
declare function
|
|
1300
|
+
declare function __VLS_template_138(): {
|
|
746
1301
|
attrs: Partial<{}>;
|
|
747
1302
|
slots: {
|
|
748
1303
|
default?(_: {}): any;
|
|
749
1304
|
};
|
|
750
1305
|
refs: {};
|
|
751
|
-
rootEl:
|
|
1306
|
+
rootEl: HTMLTableCaptionElement;
|
|
752
1307
|
};
|
|
753
1308
|
|
|
754
|
-
declare function
|
|
1309
|
+
declare function __VLS_template_139(): {
|
|
755
1310
|
attrs: Partial<{}>;
|
|
756
1311
|
slots: {
|
|
757
1312
|
default?(_: {}): any;
|
|
758
1313
|
};
|
|
759
1314
|
refs: {};
|
|
760
|
-
rootEl:
|
|
1315
|
+
rootEl: HTMLTableRowElement;
|
|
761
1316
|
};
|
|
762
1317
|
|
|
763
|
-
declare function
|
|
1318
|
+
declare function __VLS_template_14(): {
|
|
764
1319
|
attrs: Partial<{}>;
|
|
765
1320
|
slots: {
|
|
766
1321
|
default?(_: {}): any;
|
|
767
1322
|
};
|
|
768
1323
|
refs: {};
|
|
769
|
-
rootEl:
|
|
1324
|
+
rootEl: HTMLDivElement;
|
|
770
1325
|
};
|
|
771
1326
|
|
|
772
|
-
declare function
|
|
1327
|
+
declare function __VLS_template_140(): {
|
|
773
1328
|
attrs: Partial<{}>;
|
|
774
1329
|
slots: {
|
|
775
|
-
default?(_: {
|
|
776
|
-
modelValue: AcceptableInputValue[];
|
|
777
|
-
}): any;
|
|
1330
|
+
default?(_: {}): any;
|
|
778
1331
|
};
|
|
779
1332
|
refs: {};
|
|
780
1333
|
rootEl: any;
|
|
781
1334
|
};
|
|
782
1335
|
|
|
783
|
-
declare function
|
|
1336
|
+
declare function __VLS_template_141(): {
|
|
784
1337
|
attrs: Partial<{}>;
|
|
785
1338
|
slots: {
|
|
786
1339
|
default?(_: {}): any;
|
|
@@ -789,7 +1342,7 @@ declare function __VLS_template_105(): {
|
|
|
789
1342
|
rootEl: any;
|
|
790
1343
|
};
|
|
791
1344
|
|
|
792
|
-
declare function
|
|
1345
|
+
declare function __VLS_template_142(): {
|
|
793
1346
|
attrs: Partial<{}>;
|
|
794
1347
|
slots: {
|
|
795
1348
|
default?(_: {}): any;
|
|
@@ -798,7 +1351,7 @@ declare function __VLS_template_106(): {
|
|
|
798
1351
|
rootEl: any;
|
|
799
1352
|
};
|
|
800
1353
|
|
|
801
|
-
declare function
|
|
1354
|
+
declare function __VLS_template_143(): {
|
|
802
1355
|
attrs: Partial<{}>;
|
|
803
1356
|
slots: {
|
|
804
1357
|
default?(_: {}): any;
|
|
@@ -807,16 +1360,18 @@ declare function __VLS_template_107(): {
|
|
|
807
1360
|
rootEl: any;
|
|
808
1361
|
};
|
|
809
1362
|
|
|
810
|
-
declare function
|
|
1363
|
+
declare function __VLS_template_144(): {
|
|
811
1364
|
attrs: Partial<{}>;
|
|
812
1365
|
slots: {
|
|
813
|
-
default?(_: {
|
|
1366
|
+
default?(_: {
|
|
1367
|
+
modelValue: AcceptableInputValue[];
|
|
1368
|
+
}): any;
|
|
814
1369
|
};
|
|
815
1370
|
refs: {};
|
|
816
1371
|
rootEl: any;
|
|
817
1372
|
};
|
|
818
1373
|
|
|
819
|
-
declare function
|
|
1374
|
+
declare function __VLS_template_145(): {
|
|
820
1375
|
attrs: Partial<{}>;
|
|
821
1376
|
slots: {
|
|
822
1377
|
default?(_: {}): any;
|
|
@@ -825,7 +1380,7 @@ declare function __VLS_template_109(): {
|
|
|
825
1380
|
rootEl: any;
|
|
826
1381
|
};
|
|
827
1382
|
|
|
828
|
-
declare function
|
|
1383
|
+
declare function __VLS_template_146(): {
|
|
829
1384
|
attrs: Partial<{}>;
|
|
830
1385
|
slots: {
|
|
831
1386
|
default?(_: {}): any;
|
|
@@ -834,7 +1389,7 @@ declare function __VLS_template_11(): {
|
|
|
834
1389
|
rootEl: any;
|
|
835
1390
|
};
|
|
836
1391
|
|
|
837
|
-
declare function
|
|
1392
|
+
declare function __VLS_template_147(): {
|
|
838
1393
|
attrs: Partial<{}>;
|
|
839
1394
|
slots: {
|
|
840
1395
|
default?(_: {}): any;
|
|
@@ -843,7 +1398,7 @@ declare function __VLS_template_110(): {
|
|
|
843
1398
|
rootEl: any;
|
|
844
1399
|
};
|
|
845
1400
|
|
|
846
|
-
declare function
|
|
1401
|
+
declare function __VLS_template_148(): {
|
|
847
1402
|
attrs: Partial<{}>;
|
|
848
1403
|
slots: {
|
|
849
1404
|
default?(_: {}): any;
|
|
@@ -852,7 +1407,7 @@ declare function __VLS_template_111(): {
|
|
|
852
1407
|
rootEl: any;
|
|
853
1408
|
};
|
|
854
1409
|
|
|
855
|
-
declare function
|
|
1410
|
+
declare function __VLS_template_149(): {
|
|
856
1411
|
attrs: Partial<{}>;
|
|
857
1412
|
slots: {
|
|
858
1413
|
default?(_: {}): any;
|
|
@@ -861,7 +1416,7 @@ declare function __VLS_template_112(): {
|
|
|
861
1416
|
rootEl: any;
|
|
862
1417
|
};
|
|
863
1418
|
|
|
864
|
-
declare function
|
|
1419
|
+
declare function __VLS_template_15(): {
|
|
865
1420
|
attrs: Partial<{}>;
|
|
866
1421
|
slots: {
|
|
867
1422
|
default?(_: {}): any;
|
|
@@ -870,7 +1425,7 @@ declare function __VLS_template_113(): {
|
|
|
870
1425
|
rootEl: any;
|
|
871
1426
|
};
|
|
872
1427
|
|
|
873
|
-
declare function
|
|
1428
|
+
declare function __VLS_template_150(): {
|
|
874
1429
|
attrs: Partial<{}>;
|
|
875
1430
|
slots: {
|
|
876
1431
|
default?(_: {}): any;
|
|
@@ -879,25 +1434,25 @@ declare function __VLS_template_12(): {
|
|
|
879
1434
|
rootEl: any;
|
|
880
1435
|
};
|
|
881
1436
|
|
|
882
|
-
declare function
|
|
1437
|
+
declare function __VLS_template_151(): {
|
|
883
1438
|
attrs: Partial<{}>;
|
|
884
1439
|
slots: {
|
|
885
1440
|
default?(_: {}): any;
|
|
886
1441
|
};
|
|
887
1442
|
refs: {};
|
|
888
|
-
rootEl:
|
|
1443
|
+
rootEl: any;
|
|
889
1444
|
};
|
|
890
1445
|
|
|
891
|
-
declare function
|
|
1446
|
+
declare function __VLS_template_152(): {
|
|
892
1447
|
attrs: Partial<{}>;
|
|
893
1448
|
slots: {
|
|
894
1449
|
default?(_: {}): any;
|
|
895
1450
|
};
|
|
896
1451
|
refs: {};
|
|
897
|
-
rootEl:
|
|
1452
|
+
rootEl: any;
|
|
898
1453
|
};
|
|
899
1454
|
|
|
900
|
-
declare function
|
|
1455
|
+
declare function __VLS_template_153(): {
|
|
901
1456
|
attrs: Partial<{}>;
|
|
902
1457
|
slots: {
|
|
903
1458
|
default?(_: {}): any;
|
|
@@ -1665,7 +2220,7 @@ declare function __VLS_template_91(): {
|
|
|
1665
2220
|
default?(_: {}): any;
|
|
1666
2221
|
};
|
|
1667
2222
|
refs: {};
|
|
1668
|
-
rootEl:
|
|
2223
|
+
rootEl: any;
|
|
1669
2224
|
};
|
|
1670
2225
|
|
|
1671
2226
|
declare function __VLS_template_92(): {
|
|
@@ -1674,7 +2229,7 @@ declare function __VLS_template_92(): {
|
|
|
1674
2229
|
default?(_: {}): any;
|
|
1675
2230
|
};
|
|
1676
2231
|
refs: {};
|
|
1677
|
-
rootEl:
|
|
2232
|
+
rootEl: any;
|
|
1678
2233
|
};
|
|
1679
2234
|
|
|
1680
2235
|
declare function __VLS_template_93(): {
|
|
@@ -1683,7 +2238,7 @@ declare function __VLS_template_93(): {
|
|
|
1683
2238
|
default?(_: {}): any;
|
|
1684
2239
|
};
|
|
1685
2240
|
refs: {};
|
|
1686
|
-
rootEl:
|
|
2241
|
+
rootEl: any;
|
|
1687
2242
|
};
|
|
1688
2243
|
|
|
1689
2244
|
declare function __VLS_template_94(): {
|
|
@@ -1692,7 +2247,7 @@ declare function __VLS_template_94(): {
|
|
|
1692
2247
|
default?(_: {}): any;
|
|
1693
2248
|
};
|
|
1694
2249
|
refs: {};
|
|
1695
|
-
rootEl:
|
|
2250
|
+
rootEl: any;
|
|
1696
2251
|
};
|
|
1697
2252
|
|
|
1698
2253
|
declare function __VLS_template_95(): {
|
|
@@ -1701,7 +2256,7 @@ declare function __VLS_template_95(): {
|
|
|
1701
2256
|
default?(_: {}): any;
|
|
1702
2257
|
};
|
|
1703
2258
|
refs: {};
|
|
1704
|
-
rootEl:
|
|
2259
|
+
rootEl: any;
|
|
1705
2260
|
};
|
|
1706
2261
|
|
|
1707
2262
|
declare function __VLS_template_96(): {
|
|
@@ -1710,16 +2265,19 @@ declare function __VLS_template_96(): {
|
|
|
1710
2265
|
default?(_: {}): any;
|
|
1711
2266
|
};
|
|
1712
2267
|
refs: {};
|
|
1713
|
-
rootEl:
|
|
2268
|
+
rootEl: any;
|
|
1714
2269
|
};
|
|
1715
2270
|
|
|
1716
2271
|
declare function __VLS_template_97(): {
|
|
1717
2272
|
attrs: Partial<{}>;
|
|
1718
2273
|
slots: {
|
|
1719
|
-
default?(_: {
|
|
2274
|
+
default?(_: {
|
|
2275
|
+
open: boolean;
|
|
2276
|
+
close: () => void;
|
|
2277
|
+
}): any;
|
|
1720
2278
|
};
|
|
1721
2279
|
refs: {};
|
|
1722
|
-
rootEl:
|
|
2280
|
+
rootEl: any;
|
|
1723
2281
|
};
|
|
1724
2282
|
|
|
1725
2283
|
declare function __VLS_template_98(): {
|
|
@@ -1728,7 +2286,7 @@ declare function __VLS_template_98(): {
|
|
|
1728
2286
|
default?(_: {}): any;
|
|
1729
2287
|
};
|
|
1730
2288
|
refs: {};
|
|
1731
|
-
rootEl:
|
|
2289
|
+
rootEl: any;
|
|
1732
2290
|
};
|
|
1733
2291
|
|
|
1734
2292
|
declare function __VLS_template_99(): {
|
|
@@ -1737,7 +2295,7 @@ declare function __VLS_template_99(): {
|
|
|
1737
2295
|
default?(_: {}): any;
|
|
1738
2296
|
};
|
|
1739
2297
|
refs: {};
|
|
1740
|
-
rootEl:
|
|
2298
|
+
rootEl: any;
|
|
1741
2299
|
};
|
|
1742
2300
|
|
|
1743
2301
|
declare type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
@@ -1774,14 +2332,94 @@ declare type __VLS_TemplateResult_112 = ReturnType<typeof __VLS_template_112>;
|
|
|
1774
2332
|
|
|
1775
2333
|
declare type __VLS_TemplateResult_113 = ReturnType<typeof __VLS_template_113>;
|
|
1776
2334
|
|
|
2335
|
+
declare type __VLS_TemplateResult_114 = ReturnType<typeof __VLS_template_114>;
|
|
2336
|
+
|
|
2337
|
+
declare type __VLS_TemplateResult_115 = ReturnType<typeof __VLS_template_115>;
|
|
2338
|
+
|
|
2339
|
+
declare type __VLS_TemplateResult_116 = ReturnType<typeof __VLS_template_116>;
|
|
2340
|
+
|
|
2341
|
+
declare type __VLS_TemplateResult_117 = ReturnType<typeof __VLS_template_117>;
|
|
2342
|
+
|
|
2343
|
+
declare type __VLS_TemplateResult_118 = ReturnType<typeof __VLS_template_118>;
|
|
2344
|
+
|
|
2345
|
+
declare type __VLS_TemplateResult_119 = ReturnType<typeof __VLS_template_119>;
|
|
2346
|
+
|
|
1777
2347
|
declare type __VLS_TemplateResult_12 = ReturnType<typeof __VLS_template_12>;
|
|
1778
2348
|
|
|
2349
|
+
declare type __VLS_TemplateResult_120 = ReturnType<typeof __VLS_template_120>;
|
|
2350
|
+
|
|
2351
|
+
declare type __VLS_TemplateResult_121 = ReturnType<typeof __VLS_template_121>;
|
|
2352
|
+
|
|
2353
|
+
declare type __VLS_TemplateResult_122 = ReturnType<typeof __VLS_template_122>;
|
|
2354
|
+
|
|
2355
|
+
declare type __VLS_TemplateResult_123 = ReturnType<typeof __VLS_template_123>;
|
|
2356
|
+
|
|
2357
|
+
declare type __VLS_TemplateResult_124 = ReturnType<typeof __VLS_template_124>;
|
|
2358
|
+
|
|
2359
|
+
declare type __VLS_TemplateResult_125 = ReturnType<typeof __VLS_template_125>;
|
|
2360
|
+
|
|
2361
|
+
declare type __VLS_TemplateResult_126 = ReturnType<typeof __VLS_template_126>;
|
|
2362
|
+
|
|
2363
|
+
declare type __VLS_TemplateResult_127 = ReturnType<typeof __VLS_template_127>;
|
|
2364
|
+
|
|
2365
|
+
declare type __VLS_TemplateResult_128 = ReturnType<typeof __VLS_template_128>;
|
|
2366
|
+
|
|
2367
|
+
declare type __VLS_TemplateResult_129 = ReturnType<typeof __VLS_template_129>;
|
|
2368
|
+
|
|
1779
2369
|
declare type __VLS_TemplateResult_13 = ReturnType<typeof __VLS_template_13>;
|
|
1780
2370
|
|
|
2371
|
+
declare type __VLS_TemplateResult_130 = ReturnType<typeof __VLS_template_130>;
|
|
2372
|
+
|
|
2373
|
+
declare type __VLS_TemplateResult_131 = ReturnType<typeof __VLS_template_131>;
|
|
2374
|
+
|
|
2375
|
+
declare type __VLS_TemplateResult_132 = ReturnType<typeof __VLS_template_132>;
|
|
2376
|
+
|
|
2377
|
+
declare type __VLS_TemplateResult_133 = ReturnType<typeof __VLS_template_133>;
|
|
2378
|
+
|
|
2379
|
+
declare type __VLS_TemplateResult_134 = ReturnType<typeof __VLS_template_134>;
|
|
2380
|
+
|
|
2381
|
+
declare type __VLS_TemplateResult_135 = ReturnType<typeof __VLS_template_135>;
|
|
2382
|
+
|
|
2383
|
+
declare type __VLS_TemplateResult_136 = ReturnType<typeof __VLS_template_136>;
|
|
2384
|
+
|
|
2385
|
+
declare type __VLS_TemplateResult_137 = ReturnType<typeof __VLS_template_137>;
|
|
2386
|
+
|
|
2387
|
+
declare type __VLS_TemplateResult_138 = ReturnType<typeof __VLS_template_138>;
|
|
2388
|
+
|
|
2389
|
+
declare type __VLS_TemplateResult_139 = ReturnType<typeof __VLS_template_139>;
|
|
2390
|
+
|
|
1781
2391
|
declare type __VLS_TemplateResult_14 = ReturnType<typeof __VLS_template_14>;
|
|
1782
2392
|
|
|
2393
|
+
declare type __VLS_TemplateResult_140 = ReturnType<typeof __VLS_template_140>;
|
|
2394
|
+
|
|
2395
|
+
declare type __VLS_TemplateResult_141 = ReturnType<typeof __VLS_template_141>;
|
|
2396
|
+
|
|
2397
|
+
declare type __VLS_TemplateResult_142 = ReturnType<typeof __VLS_template_142>;
|
|
2398
|
+
|
|
2399
|
+
declare type __VLS_TemplateResult_143 = ReturnType<typeof __VLS_template_143>;
|
|
2400
|
+
|
|
2401
|
+
declare type __VLS_TemplateResult_144 = ReturnType<typeof __VLS_template_144>;
|
|
2402
|
+
|
|
2403
|
+
declare type __VLS_TemplateResult_145 = ReturnType<typeof __VLS_template_145>;
|
|
2404
|
+
|
|
2405
|
+
declare type __VLS_TemplateResult_146 = ReturnType<typeof __VLS_template_146>;
|
|
2406
|
+
|
|
2407
|
+
declare type __VLS_TemplateResult_147 = ReturnType<typeof __VLS_template_147>;
|
|
2408
|
+
|
|
2409
|
+
declare type __VLS_TemplateResult_148 = ReturnType<typeof __VLS_template_148>;
|
|
2410
|
+
|
|
2411
|
+
declare type __VLS_TemplateResult_149 = ReturnType<typeof __VLS_template_149>;
|
|
2412
|
+
|
|
1783
2413
|
declare type __VLS_TemplateResult_15 = ReturnType<typeof __VLS_template_15>;
|
|
1784
2414
|
|
|
2415
|
+
declare type __VLS_TemplateResult_150 = ReturnType<typeof __VLS_template_150>;
|
|
2416
|
+
|
|
2417
|
+
declare type __VLS_TemplateResult_151 = ReturnType<typeof __VLS_template_151>;
|
|
2418
|
+
|
|
2419
|
+
declare type __VLS_TemplateResult_152 = ReturnType<typeof __VLS_template_152>;
|
|
2420
|
+
|
|
2421
|
+
declare type __VLS_TemplateResult_153 = ReturnType<typeof __VLS_template_153>;
|
|
2422
|
+
|
|
1785
2423
|
declare type __VLS_TemplateResult_16 = ReturnType<typeof __VLS_template_16>;
|
|
1786
2424
|
|
|
1787
2425
|
declare type __VLS_TemplateResult_17 = ReturnType<typeof __VLS_template_17>;
|
|
@@ -1926,167 +2564,407 @@ declare type __VLS_TemplateResult_8 = ReturnType<typeof __VLS_template_8>;
|
|
|
1926
2564
|
|
|
1927
2565
|
declare type __VLS_TemplateResult_80 = ReturnType<typeof __VLS_template_80>;
|
|
1928
2566
|
|
|
1929
|
-
declare type __VLS_TemplateResult_81 = ReturnType<typeof __VLS_template_81>;
|
|
2567
|
+
declare type __VLS_TemplateResult_81 = ReturnType<typeof __VLS_template_81>;
|
|
2568
|
+
|
|
2569
|
+
declare type __VLS_TemplateResult_82 = ReturnType<typeof __VLS_template_82>;
|
|
2570
|
+
|
|
2571
|
+
declare type __VLS_TemplateResult_83 = ReturnType<typeof __VLS_template_83>;
|
|
2572
|
+
|
|
2573
|
+
declare type __VLS_TemplateResult_84 = ReturnType<typeof __VLS_template_84>;
|
|
2574
|
+
|
|
2575
|
+
declare type __VLS_TemplateResult_85 = ReturnType<typeof __VLS_template_85>;
|
|
2576
|
+
|
|
2577
|
+
declare type __VLS_TemplateResult_86 = ReturnType<typeof __VLS_template_86>;
|
|
2578
|
+
|
|
2579
|
+
declare type __VLS_TemplateResult_87 = ReturnType<typeof __VLS_template_87>;
|
|
2580
|
+
|
|
2581
|
+
declare type __VLS_TemplateResult_88 = ReturnType<typeof __VLS_template_88>;
|
|
2582
|
+
|
|
2583
|
+
declare type __VLS_TemplateResult_89 = ReturnType<typeof __VLS_template_89>;
|
|
2584
|
+
|
|
2585
|
+
declare type __VLS_TemplateResult_9 = ReturnType<typeof __VLS_template_9>;
|
|
2586
|
+
|
|
2587
|
+
declare type __VLS_TemplateResult_90 = ReturnType<typeof __VLS_template_90>;
|
|
2588
|
+
|
|
2589
|
+
declare type __VLS_TemplateResult_91 = ReturnType<typeof __VLS_template_91>;
|
|
2590
|
+
|
|
2591
|
+
declare type __VLS_TemplateResult_92 = ReturnType<typeof __VLS_template_92>;
|
|
2592
|
+
|
|
2593
|
+
declare type __VLS_TemplateResult_93 = ReturnType<typeof __VLS_template_93>;
|
|
2594
|
+
|
|
2595
|
+
declare type __VLS_TemplateResult_94 = ReturnType<typeof __VLS_template_94>;
|
|
2596
|
+
|
|
2597
|
+
declare type __VLS_TemplateResult_95 = ReturnType<typeof __VLS_template_95>;
|
|
2598
|
+
|
|
2599
|
+
declare type __VLS_TemplateResult_96 = ReturnType<typeof __VLS_template_96>;
|
|
2600
|
+
|
|
2601
|
+
declare type __VLS_TemplateResult_97 = ReturnType<typeof __VLS_template_97>;
|
|
2602
|
+
|
|
2603
|
+
declare type __VLS_TemplateResult_98 = ReturnType<typeof __VLS_template_98>;
|
|
2604
|
+
|
|
2605
|
+
declare type __VLS_TemplateResult_99 = ReturnType<typeof __VLS_template_99>;
|
|
2606
|
+
|
|
2607
|
+
declare type __VLS_WithTemplateSlots<T, S> = T & {
|
|
2608
|
+
new (): {
|
|
2609
|
+
$slots: S;
|
|
2610
|
+
};
|
|
2611
|
+
};
|
|
2612
|
+
|
|
2613
|
+
declare type __VLS_WithTemplateSlots_10<T, S> = T & {
|
|
2614
|
+
new (): {
|
|
2615
|
+
$slots: S;
|
|
2616
|
+
};
|
|
2617
|
+
};
|
|
2618
|
+
|
|
2619
|
+
declare type __VLS_WithTemplateSlots_100<T, S> = T & {
|
|
2620
|
+
new (): {
|
|
2621
|
+
$slots: S;
|
|
2622
|
+
};
|
|
2623
|
+
};
|
|
2624
|
+
|
|
2625
|
+
declare type __VLS_WithTemplateSlots_101<T, S> = T & {
|
|
2626
|
+
new (): {
|
|
2627
|
+
$slots: S;
|
|
2628
|
+
};
|
|
2629
|
+
};
|
|
2630
|
+
|
|
2631
|
+
declare type __VLS_WithTemplateSlots_102<T, S> = T & {
|
|
2632
|
+
new (): {
|
|
2633
|
+
$slots: S;
|
|
2634
|
+
};
|
|
2635
|
+
};
|
|
2636
|
+
|
|
2637
|
+
declare type __VLS_WithTemplateSlots_103<T, S> = T & {
|
|
2638
|
+
new (): {
|
|
2639
|
+
$slots: S;
|
|
2640
|
+
};
|
|
2641
|
+
};
|
|
2642
|
+
|
|
2643
|
+
declare type __VLS_WithTemplateSlots_104<T, S> = T & {
|
|
2644
|
+
new (): {
|
|
2645
|
+
$slots: S;
|
|
2646
|
+
};
|
|
2647
|
+
};
|
|
2648
|
+
|
|
2649
|
+
declare type __VLS_WithTemplateSlots_105<T, S> = T & {
|
|
2650
|
+
new (): {
|
|
2651
|
+
$slots: S;
|
|
2652
|
+
};
|
|
2653
|
+
};
|
|
2654
|
+
|
|
2655
|
+
declare type __VLS_WithTemplateSlots_106<T, S> = T & {
|
|
2656
|
+
new (): {
|
|
2657
|
+
$slots: S;
|
|
2658
|
+
};
|
|
2659
|
+
};
|
|
2660
|
+
|
|
2661
|
+
declare type __VLS_WithTemplateSlots_107<T, S> = T & {
|
|
2662
|
+
new (): {
|
|
2663
|
+
$slots: S;
|
|
2664
|
+
};
|
|
2665
|
+
};
|
|
2666
|
+
|
|
2667
|
+
declare type __VLS_WithTemplateSlots_108<T, S> = T & {
|
|
2668
|
+
new (): {
|
|
2669
|
+
$slots: S;
|
|
2670
|
+
};
|
|
2671
|
+
};
|
|
2672
|
+
|
|
2673
|
+
declare type __VLS_WithTemplateSlots_109<T, S> = T & {
|
|
2674
|
+
new (): {
|
|
2675
|
+
$slots: S;
|
|
2676
|
+
};
|
|
2677
|
+
};
|
|
2678
|
+
|
|
2679
|
+
declare type __VLS_WithTemplateSlots_11<T, S> = T & {
|
|
2680
|
+
new (): {
|
|
2681
|
+
$slots: S;
|
|
2682
|
+
};
|
|
2683
|
+
};
|
|
2684
|
+
|
|
2685
|
+
declare type __VLS_WithTemplateSlots_110<T, S> = T & {
|
|
2686
|
+
new (): {
|
|
2687
|
+
$slots: S;
|
|
2688
|
+
};
|
|
2689
|
+
};
|
|
2690
|
+
|
|
2691
|
+
declare type __VLS_WithTemplateSlots_111<T, S> = T & {
|
|
2692
|
+
new (): {
|
|
2693
|
+
$slots: S;
|
|
2694
|
+
};
|
|
2695
|
+
};
|
|
2696
|
+
|
|
2697
|
+
declare type __VLS_WithTemplateSlots_112<T, S> = T & {
|
|
2698
|
+
new (): {
|
|
2699
|
+
$slots: S;
|
|
2700
|
+
};
|
|
2701
|
+
};
|
|
2702
|
+
|
|
2703
|
+
declare type __VLS_WithTemplateSlots_113<T, S> = T & {
|
|
2704
|
+
new (): {
|
|
2705
|
+
$slots: S;
|
|
2706
|
+
};
|
|
2707
|
+
};
|
|
2708
|
+
|
|
2709
|
+
declare type __VLS_WithTemplateSlots_114<T, S> = T & {
|
|
2710
|
+
new (): {
|
|
2711
|
+
$slots: S;
|
|
2712
|
+
};
|
|
2713
|
+
};
|
|
2714
|
+
|
|
2715
|
+
declare type __VLS_WithTemplateSlots_115<T, S> = T & {
|
|
2716
|
+
new (): {
|
|
2717
|
+
$slots: S;
|
|
2718
|
+
};
|
|
2719
|
+
};
|
|
2720
|
+
|
|
2721
|
+
declare type __VLS_WithTemplateSlots_116<T, S> = T & {
|
|
2722
|
+
new (): {
|
|
2723
|
+
$slots: S;
|
|
2724
|
+
};
|
|
2725
|
+
};
|
|
2726
|
+
|
|
2727
|
+
declare type __VLS_WithTemplateSlots_117<T, S> = T & {
|
|
2728
|
+
new (): {
|
|
2729
|
+
$slots: S;
|
|
2730
|
+
};
|
|
2731
|
+
};
|
|
1930
2732
|
|
|
1931
|
-
declare type
|
|
2733
|
+
declare type __VLS_WithTemplateSlots_118<T, S> = T & {
|
|
2734
|
+
new (): {
|
|
2735
|
+
$slots: S;
|
|
2736
|
+
};
|
|
2737
|
+
};
|
|
1932
2738
|
|
|
1933
|
-
declare type
|
|
2739
|
+
declare type __VLS_WithTemplateSlots_119<T, S> = T & {
|
|
2740
|
+
new (): {
|
|
2741
|
+
$slots: S;
|
|
2742
|
+
};
|
|
2743
|
+
};
|
|
1934
2744
|
|
|
1935
|
-
declare type
|
|
2745
|
+
declare type __VLS_WithTemplateSlots_12<T, S> = T & {
|
|
2746
|
+
new (): {
|
|
2747
|
+
$slots: S;
|
|
2748
|
+
};
|
|
2749
|
+
};
|
|
1936
2750
|
|
|
1937
|
-
declare type
|
|
2751
|
+
declare type __VLS_WithTemplateSlots_120<T, S> = T & {
|
|
2752
|
+
new (): {
|
|
2753
|
+
$slots: S;
|
|
2754
|
+
};
|
|
2755
|
+
};
|
|
1938
2756
|
|
|
1939
|
-
declare type
|
|
2757
|
+
declare type __VLS_WithTemplateSlots_121<T, S> = T & {
|
|
2758
|
+
new (): {
|
|
2759
|
+
$slots: S;
|
|
2760
|
+
};
|
|
2761
|
+
};
|
|
1940
2762
|
|
|
1941
|
-
declare type
|
|
2763
|
+
declare type __VLS_WithTemplateSlots_122<T, S> = T & {
|
|
2764
|
+
new (): {
|
|
2765
|
+
$slots: S;
|
|
2766
|
+
};
|
|
2767
|
+
};
|
|
1942
2768
|
|
|
1943
|
-
declare type
|
|
2769
|
+
declare type __VLS_WithTemplateSlots_123<T, S> = T & {
|
|
2770
|
+
new (): {
|
|
2771
|
+
$slots: S;
|
|
2772
|
+
};
|
|
2773
|
+
};
|
|
1944
2774
|
|
|
1945
|
-
declare type
|
|
2775
|
+
declare type __VLS_WithTemplateSlots_124<T, S> = T & {
|
|
2776
|
+
new (): {
|
|
2777
|
+
$slots: S;
|
|
2778
|
+
};
|
|
2779
|
+
};
|
|
1946
2780
|
|
|
1947
|
-
declare type
|
|
2781
|
+
declare type __VLS_WithTemplateSlots_125<T, S> = T & {
|
|
2782
|
+
new (): {
|
|
2783
|
+
$slots: S;
|
|
2784
|
+
};
|
|
2785
|
+
};
|
|
1948
2786
|
|
|
1949
|
-
declare type
|
|
2787
|
+
declare type __VLS_WithTemplateSlots_126<T, S> = T & {
|
|
2788
|
+
new (): {
|
|
2789
|
+
$slots: S;
|
|
2790
|
+
};
|
|
2791
|
+
};
|
|
1950
2792
|
|
|
1951
|
-
declare type
|
|
2793
|
+
declare type __VLS_WithTemplateSlots_127<T, S> = T & {
|
|
2794
|
+
new (): {
|
|
2795
|
+
$slots: S;
|
|
2796
|
+
};
|
|
2797
|
+
};
|
|
1952
2798
|
|
|
1953
|
-
declare type
|
|
2799
|
+
declare type __VLS_WithTemplateSlots_128<T, S> = T & {
|
|
2800
|
+
new (): {
|
|
2801
|
+
$slots: S;
|
|
2802
|
+
};
|
|
2803
|
+
};
|
|
1954
2804
|
|
|
1955
|
-
declare type
|
|
2805
|
+
declare type __VLS_WithTemplateSlots_129<T, S> = T & {
|
|
2806
|
+
new (): {
|
|
2807
|
+
$slots: S;
|
|
2808
|
+
};
|
|
2809
|
+
};
|
|
1956
2810
|
|
|
1957
|
-
declare type
|
|
2811
|
+
declare type __VLS_WithTemplateSlots_13<T, S> = T & {
|
|
2812
|
+
new (): {
|
|
2813
|
+
$slots: S;
|
|
2814
|
+
};
|
|
2815
|
+
};
|
|
1958
2816
|
|
|
1959
|
-
declare type
|
|
2817
|
+
declare type __VLS_WithTemplateSlots_130<T, S> = T & {
|
|
2818
|
+
new (): {
|
|
2819
|
+
$slots: S;
|
|
2820
|
+
};
|
|
2821
|
+
};
|
|
1960
2822
|
|
|
1961
|
-
declare type
|
|
2823
|
+
declare type __VLS_WithTemplateSlots_131<T, S> = T & {
|
|
2824
|
+
new (): {
|
|
2825
|
+
$slots: S;
|
|
2826
|
+
};
|
|
2827
|
+
};
|
|
1962
2828
|
|
|
1963
|
-
declare type
|
|
2829
|
+
declare type __VLS_WithTemplateSlots_132<T, S> = T & {
|
|
2830
|
+
new (): {
|
|
2831
|
+
$slots: S;
|
|
2832
|
+
};
|
|
2833
|
+
};
|
|
1964
2834
|
|
|
1965
|
-
declare type
|
|
2835
|
+
declare type __VLS_WithTemplateSlots_133<T, S> = T & {
|
|
2836
|
+
new (): {
|
|
2837
|
+
$slots: S;
|
|
2838
|
+
};
|
|
2839
|
+
};
|
|
1966
2840
|
|
|
1967
|
-
declare type
|
|
2841
|
+
declare type __VLS_WithTemplateSlots_134<T, S> = T & {
|
|
2842
|
+
new (): {
|
|
2843
|
+
$slots: S;
|
|
2844
|
+
};
|
|
2845
|
+
};
|
|
1968
2846
|
|
|
1969
|
-
declare type
|
|
2847
|
+
declare type __VLS_WithTemplateSlots_135<T, S> = T & {
|
|
1970
2848
|
new (): {
|
|
1971
2849
|
$slots: S;
|
|
1972
2850
|
};
|
|
1973
2851
|
};
|
|
1974
2852
|
|
|
1975
|
-
declare type
|
|
2853
|
+
declare type __VLS_WithTemplateSlots_136<T, S> = T & {
|
|
1976
2854
|
new (): {
|
|
1977
2855
|
$slots: S;
|
|
1978
2856
|
};
|
|
1979
2857
|
};
|
|
1980
2858
|
|
|
1981
|
-
declare type
|
|
2859
|
+
declare type __VLS_WithTemplateSlots_137<T, S> = T & {
|
|
1982
2860
|
new (): {
|
|
1983
2861
|
$slots: S;
|
|
1984
2862
|
};
|
|
1985
2863
|
};
|
|
1986
2864
|
|
|
1987
|
-
declare type
|
|
2865
|
+
declare type __VLS_WithTemplateSlots_138<T, S> = T & {
|
|
1988
2866
|
new (): {
|
|
1989
2867
|
$slots: S;
|
|
1990
2868
|
};
|
|
1991
2869
|
};
|
|
1992
2870
|
|
|
1993
|
-
declare type
|
|
2871
|
+
declare type __VLS_WithTemplateSlots_139<T, S> = T & {
|
|
1994
2872
|
new (): {
|
|
1995
2873
|
$slots: S;
|
|
1996
2874
|
};
|
|
1997
2875
|
};
|
|
1998
2876
|
|
|
1999
|
-
declare type
|
|
2877
|
+
declare type __VLS_WithTemplateSlots_14<T, S> = T & {
|
|
2000
2878
|
new (): {
|
|
2001
2879
|
$slots: S;
|
|
2002
2880
|
};
|
|
2003
2881
|
};
|
|
2004
2882
|
|
|
2005
|
-
declare type
|
|
2883
|
+
declare type __VLS_WithTemplateSlots_140<T, S> = T & {
|
|
2006
2884
|
new (): {
|
|
2007
2885
|
$slots: S;
|
|
2008
2886
|
};
|
|
2009
2887
|
};
|
|
2010
2888
|
|
|
2011
|
-
declare type
|
|
2889
|
+
declare type __VLS_WithTemplateSlots_141<T, S> = T & {
|
|
2012
2890
|
new (): {
|
|
2013
2891
|
$slots: S;
|
|
2014
2892
|
};
|
|
2015
2893
|
};
|
|
2016
2894
|
|
|
2017
|
-
declare type
|
|
2895
|
+
declare type __VLS_WithTemplateSlots_142<T, S> = T & {
|
|
2018
2896
|
new (): {
|
|
2019
2897
|
$slots: S;
|
|
2020
2898
|
};
|
|
2021
2899
|
};
|
|
2022
2900
|
|
|
2023
|
-
declare type
|
|
2901
|
+
declare type __VLS_WithTemplateSlots_143<T, S> = T & {
|
|
2024
2902
|
new (): {
|
|
2025
2903
|
$slots: S;
|
|
2026
2904
|
};
|
|
2027
2905
|
};
|
|
2028
2906
|
|
|
2029
|
-
declare type
|
|
2907
|
+
declare type __VLS_WithTemplateSlots_144<T, S> = T & {
|
|
2030
2908
|
new (): {
|
|
2031
2909
|
$slots: S;
|
|
2032
2910
|
};
|
|
2033
2911
|
};
|
|
2034
2912
|
|
|
2035
|
-
declare type
|
|
2913
|
+
declare type __VLS_WithTemplateSlots_145<T, S> = T & {
|
|
2036
2914
|
new (): {
|
|
2037
2915
|
$slots: S;
|
|
2038
2916
|
};
|
|
2039
2917
|
};
|
|
2040
2918
|
|
|
2041
|
-
declare type
|
|
2919
|
+
declare type __VLS_WithTemplateSlots_146<T, S> = T & {
|
|
2042
2920
|
new (): {
|
|
2043
2921
|
$slots: S;
|
|
2044
2922
|
};
|
|
2045
2923
|
};
|
|
2046
2924
|
|
|
2047
|
-
declare type
|
|
2925
|
+
declare type __VLS_WithTemplateSlots_147<T, S> = T & {
|
|
2048
2926
|
new (): {
|
|
2049
2927
|
$slots: S;
|
|
2050
2928
|
};
|
|
2051
2929
|
};
|
|
2052
2930
|
|
|
2053
|
-
declare type
|
|
2931
|
+
declare type __VLS_WithTemplateSlots_148<T, S> = T & {
|
|
2054
2932
|
new (): {
|
|
2055
2933
|
$slots: S;
|
|
2056
2934
|
};
|
|
2057
2935
|
};
|
|
2058
2936
|
|
|
2059
|
-
declare type
|
|
2937
|
+
declare type __VLS_WithTemplateSlots_149<T, S> = T & {
|
|
2060
2938
|
new (): {
|
|
2061
2939
|
$slots: S;
|
|
2062
2940
|
};
|
|
2063
2941
|
};
|
|
2064
2942
|
|
|
2065
|
-
declare type
|
|
2943
|
+
declare type __VLS_WithTemplateSlots_15<T, S> = T & {
|
|
2066
2944
|
new (): {
|
|
2067
2945
|
$slots: S;
|
|
2068
2946
|
};
|
|
2069
2947
|
};
|
|
2070
2948
|
|
|
2071
|
-
declare type
|
|
2949
|
+
declare type __VLS_WithTemplateSlots_150<T, S> = T & {
|
|
2072
2950
|
new (): {
|
|
2073
2951
|
$slots: S;
|
|
2074
2952
|
};
|
|
2075
2953
|
};
|
|
2076
2954
|
|
|
2077
|
-
declare type
|
|
2955
|
+
declare type __VLS_WithTemplateSlots_151<T, S> = T & {
|
|
2078
2956
|
new (): {
|
|
2079
2957
|
$slots: S;
|
|
2080
2958
|
};
|
|
2081
2959
|
};
|
|
2082
2960
|
|
|
2083
|
-
declare type
|
|
2961
|
+
declare type __VLS_WithTemplateSlots_152<T, S> = T & {
|
|
2084
2962
|
new (): {
|
|
2085
2963
|
$slots: S;
|
|
2086
2964
|
};
|
|
2087
2965
|
};
|
|
2088
2966
|
|
|
2089
|
-
declare type
|
|
2967
|
+
declare type __VLS_WithTemplateSlots_153<T, S> = T & {
|
|
2090
2968
|
new (): {
|
|
2091
2969
|
$slots: S;
|
|
2092
2970
|
};
|
|
@@ -2701,6 +3579,8 @@ export { getLocalTimeZone }
|
|
|
2701
3579
|
|
|
2702
3580
|
export { Matcher }
|
|
2703
3581
|
|
|
3582
|
+
export declare const navigationMenuTriggerStyle: (props?: ClassProp | undefined) => string;
|
|
3583
|
+
|
|
2704
3584
|
/** Labels for UiDataTablePagination */
|
|
2705
3585
|
export declare interface PaginationLabels {
|
|
2706
3586
|
/** Label for rows per page selector */
|
|
@@ -3195,7 +4075,7 @@ export declare interface UiCalendarProps {
|
|
|
3195
4075
|
locale?: string;
|
|
3196
4076
|
/**
|
|
3197
4077
|
* The day of the week to start on.
|
|
3198
|
-
* @default 0
|
|
4078
|
+
* @default 0
|
|
3199
4079
|
*/
|
|
3200
4080
|
weekStartsOn?: UiCalendarWeekStartsOn;
|
|
3201
4081
|
/**
|
|
@@ -3517,10 +4397,10 @@ export declare type UiDataTableToolbarProps<TData> = {
|
|
|
3517
4397
|
labels?: ToolbarLabels;
|
|
3518
4398
|
};
|
|
3519
4399
|
|
|
3520
|
-
export declare const UiDatePicker: DefineComponent<
|
|
4400
|
+
export declare const UiDatePicker: DefineComponent<__VLS_PublicProps_18, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3521
4401
|
"update:modelValue": (value: DateValue | DateRange | undefined) => any;
|
|
3522
4402
|
"update:open": (value: boolean) => any;
|
|
3523
|
-
}, string, PublicProps, Readonly<
|
|
4403
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_18> & Readonly<{
|
|
3524
4404
|
"onUpdate:modelValue"?: ((value: DateValue | DateRange | undefined) => any) | undefined;
|
|
3525
4405
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
3526
4406
|
}>, {
|
|
@@ -3629,7 +4509,7 @@ export declare interface UiDatePickerProps {
|
|
|
3629
4509
|
locale?: string;
|
|
3630
4510
|
/**
|
|
3631
4511
|
* The day of the week to start on.
|
|
3632
|
-
* @default 0
|
|
4512
|
+
* @default 0
|
|
3633
4513
|
*/
|
|
3634
4514
|
weekStartsOn?: UiDatePickerWeekStartsOn;
|
|
3635
4515
|
/**
|
|
@@ -4659,55 +5539,242 @@ export declare interface UiListboxProps {
|
|
|
4659
5539
|
* - Omit for uncontrolled mode
|
|
4660
5540
|
* - Use `v-model` for controlled mode
|
|
4661
5541
|
*/
|
|
4662
|
-
modelValue?: AcceptableValue | AcceptableValue[];
|
|
5542
|
+
modelValue?: AcceptableValue | AcceptableValue[];
|
|
5543
|
+
/**
|
|
5544
|
+
* The value of the listbox when initially rendered.
|
|
5545
|
+
*/
|
|
5546
|
+
defaultValue?: AcceptableValue | AcceptableValue[];
|
|
5547
|
+
/**
|
|
5548
|
+
* Whether multiple options can be selected.
|
|
5549
|
+
* @default false
|
|
5550
|
+
*/
|
|
5551
|
+
multiple?: boolean;
|
|
5552
|
+
/**
|
|
5553
|
+
* The orientation of the listbox.
|
|
5554
|
+
*/
|
|
5555
|
+
orientation?: 'horizontal' | 'vertical';
|
|
5556
|
+
/**
|
|
5557
|
+
* The reading direction of the listbox.
|
|
5558
|
+
*/
|
|
5559
|
+
dir?: 'ltr' | 'rtl';
|
|
5560
|
+
/**
|
|
5561
|
+
* When true, prevents the user from interacting with listbox.
|
|
5562
|
+
* @default false
|
|
5563
|
+
*/
|
|
5564
|
+
disabled?: boolean;
|
|
5565
|
+
/**
|
|
5566
|
+
* How multiple selection should behave.
|
|
5567
|
+
* @default 'toggle'
|
|
5568
|
+
*/
|
|
5569
|
+
selectionBehavior?: 'toggle' | 'replace';
|
|
5570
|
+
/**
|
|
5571
|
+
* When true, hover over item will trigger highlight.
|
|
5572
|
+
* @default false
|
|
5573
|
+
*/
|
|
5574
|
+
highlightOnHover?: boolean;
|
|
5575
|
+
/**
|
|
5576
|
+
* Use this to compare objects by a particular field.
|
|
5577
|
+
*/
|
|
5578
|
+
by?: string | ((a: AcceptableValue, b: AcceptableValue) => boolean);
|
|
5579
|
+
}
|
|
5580
|
+
|
|
5581
|
+
export declare const UiNavigationMenu: __VLS_WithTemplateSlots_80<typeof __VLS_component_80, __VLS_TemplateResult_80["slots"]>;
|
|
5582
|
+
|
|
5583
|
+
export declare const UiNavigationMenuContent: __VLS_WithTemplateSlots_84<typeof __VLS_component_84, __VLS_TemplateResult_84["slots"]>;
|
|
5584
|
+
|
|
5585
|
+
export declare type UiNavigationMenuContentEmits = {
|
|
5586
|
+
/**
|
|
5587
|
+
* Event emitted when the escape key is pressed.
|
|
5588
|
+
* Can be used to prevent closing or add custom behavior.
|
|
5589
|
+
*/
|
|
5590
|
+
escapeKeyDown: [event: KeyboardEvent];
|
|
5591
|
+
/**
|
|
5592
|
+
* Event emitted when a click occurs outside the content.
|
|
5593
|
+
*/
|
|
5594
|
+
outsideClick: [event: Event];
|
|
5595
|
+
/**
|
|
5596
|
+
* Event emitted when focus moves outside the content.
|
|
5597
|
+
*/
|
|
5598
|
+
outsideFocus: [event: Event];
|
|
5599
|
+
/**
|
|
5600
|
+
* Event emitted when any interaction occurs outside the content.
|
|
5601
|
+
*/
|
|
5602
|
+
outsideInteract: [event: Event];
|
|
5603
|
+
};
|
|
5604
|
+
|
|
5605
|
+
export declare type UiNavigationMenuContentProps = {
|
|
5606
|
+
/**
|
|
5607
|
+
* Used to force mounting when more control is needed.
|
|
5608
|
+
* Useful when controlling animation with Vue animation libraries.
|
|
5609
|
+
* @default false
|
|
5610
|
+
*/
|
|
5611
|
+
forceMount?: boolean;
|
|
5612
|
+
/**
|
|
5613
|
+
* When `true`, hover/focus/click interactions will be disabled on elements
|
|
5614
|
+
* outside the content. Users will need to click twice on outside elements
|
|
5615
|
+
* to interact with them: once to close the menu, and again to activate the element.
|
|
5616
|
+
* @default false
|
|
5617
|
+
*/
|
|
5618
|
+
disableOutsidePointerEvents?: boolean;
|
|
5619
|
+
};
|
|
5620
|
+
|
|
5621
|
+
export declare type UiNavigationMenuDir = 'ltr' | 'rtl';
|
|
5622
|
+
|
|
5623
|
+
export declare type UiNavigationMenuEmits = {
|
|
5624
|
+
/**
|
|
5625
|
+
* Event emitted when the active menu item changes.
|
|
5626
|
+
*/
|
|
5627
|
+
'update:modelValue': [value: string];
|
|
5628
|
+
};
|
|
5629
|
+
|
|
5630
|
+
export declare const UiNavigationMenuIndicator: DefineComponent<UiNavigationMenuIndicatorProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiNavigationMenuIndicatorProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
5631
|
+
|
|
5632
|
+
export declare type UiNavigationMenuIndicatorProps = {
|
|
5633
|
+
/**
|
|
5634
|
+
* Used to force mounting when more control is needed.
|
|
5635
|
+
* Useful when controlling animation with Vue animation libraries.
|
|
5636
|
+
* @default false
|
|
5637
|
+
*/
|
|
5638
|
+
forceMount?: boolean;
|
|
5639
|
+
};
|
|
5640
|
+
|
|
5641
|
+
export declare const UiNavigationMenuItem: __VLS_WithTemplateSlots_82<typeof __VLS_component_82, __VLS_TemplateResult_82["slots"]>;
|
|
5642
|
+
|
|
5643
|
+
export declare type UiNavigationMenuItemProps = {
|
|
5644
|
+
/**
|
|
5645
|
+
* A unique value that associates the item with an active value when the
|
|
5646
|
+
* navigation menu is controlled.
|
|
5647
|
+
*/
|
|
5648
|
+
value?: string;
|
|
5649
|
+
/**
|
|
5650
|
+
* Render as child element (merges props into slotted element instead of wrapping).
|
|
5651
|
+
* @default false
|
|
5652
|
+
*/
|
|
5653
|
+
asChild?: boolean;
|
|
5654
|
+
};
|
|
5655
|
+
|
|
5656
|
+
export declare const UiNavigationMenuLink: __VLS_WithTemplateSlots_85<typeof __VLS_component_85, __VLS_TemplateResult_85["slots"]>;
|
|
5657
|
+
|
|
5658
|
+
export declare type UiNavigationMenuLinkEmits = {
|
|
5659
|
+
/**
|
|
5660
|
+
* Event emitted when the link is selected (clicked or keyboard activated).
|
|
5661
|
+
*/
|
|
5662
|
+
select: [event: CustomEvent<{
|
|
5663
|
+
originalEvent: Event;
|
|
5664
|
+
}>];
|
|
5665
|
+
};
|
|
5666
|
+
|
|
5667
|
+
export declare type UiNavigationMenuLinkProps = {
|
|
5668
|
+
/**
|
|
5669
|
+
* Whether the link is the currently active page.
|
|
5670
|
+
* @default false
|
|
5671
|
+
*/
|
|
5672
|
+
active?: boolean;
|
|
5673
|
+
/**
|
|
5674
|
+
* Render as child element (merges props into slotted element instead of wrapping).
|
|
5675
|
+
* Use when integrating with router-link or NuxtLink.
|
|
5676
|
+
* @default false
|
|
5677
|
+
*/
|
|
5678
|
+
asChild?: boolean;
|
|
5679
|
+
};
|
|
5680
|
+
|
|
5681
|
+
export declare const UiNavigationMenuList: __VLS_WithTemplateSlots_81<typeof __VLS_component_81, __VLS_TemplateResult_81["slots"]>;
|
|
5682
|
+
|
|
5683
|
+
export declare type UiNavigationMenuListProps = {
|
|
5684
|
+
/**
|
|
5685
|
+
* Render as child element (merges props into slotted element instead of wrapping).
|
|
5686
|
+
* @default false
|
|
5687
|
+
*/
|
|
5688
|
+
asChild?: boolean;
|
|
5689
|
+
};
|
|
5690
|
+
|
|
5691
|
+
export declare type UiNavigationMenuOrientation = 'horizontal' | 'vertical';
|
|
5692
|
+
|
|
5693
|
+
/**
|
|
5694
|
+
* A horizontal navigation menu for site-wide navigation. Displays a list of
|
|
5695
|
+
* navigation links with optional dropdown content for nested navigation.
|
|
5696
|
+
*
|
|
5697
|
+
* @category Navigation
|
|
5698
|
+
* @useCases site navigation, main menu, header navigation, mega menu
|
|
5699
|
+
* @keywords navigation, menu, nav, header, links, dropdown, mega menu
|
|
5700
|
+
* @related UiDropdownMenu, UiTabs
|
|
5701
|
+
*/
|
|
5702
|
+
export declare type UiNavigationMenuProps = {
|
|
5703
|
+
/**
|
|
5704
|
+
* The controlled value of the menu item to activate.
|
|
5705
|
+
* Use with `@update:modelValue` for two-way binding.
|
|
5706
|
+
*/
|
|
5707
|
+
modelValue?: string;
|
|
5708
|
+
/**
|
|
5709
|
+
* The value of the menu item that should be active when initially rendered.
|
|
5710
|
+
* Use when you do not need to control the state of the menu.
|
|
5711
|
+
*/
|
|
5712
|
+
defaultValue?: string;
|
|
5713
|
+
/**
|
|
5714
|
+
* The orientation of the menu.
|
|
5715
|
+
* @default 'horizontal'
|
|
5716
|
+
*/
|
|
5717
|
+
orientation?: UiNavigationMenuOrientation;
|
|
4663
5718
|
/**
|
|
4664
|
-
* The
|
|
5719
|
+
* The reading direction of the menu.
|
|
5720
|
+
* @default 'ltr'
|
|
4665
5721
|
*/
|
|
4666
|
-
|
|
5722
|
+
dir?: UiNavigationMenuDir;
|
|
4667
5723
|
/**
|
|
4668
|
-
*
|
|
4669
|
-
* @default
|
|
5724
|
+
* The duration from when the mouse enters a trigger until the content opens.
|
|
5725
|
+
* @default 200
|
|
4670
5726
|
*/
|
|
4671
|
-
|
|
5727
|
+
delayDuration?: number;
|
|
4672
5728
|
/**
|
|
4673
|
-
*
|
|
5729
|
+
* How much time a user has to enter another trigger without incurring a delay again.
|
|
5730
|
+
* @default 300
|
|
4674
5731
|
*/
|
|
4675
|
-
|
|
5732
|
+
skipDelayDuration?: number;
|
|
4676
5733
|
/**
|
|
4677
|
-
*
|
|
5734
|
+
* Whether to disable the click trigger behavior.
|
|
5735
|
+
* When `true`, the menu will only open on hover.
|
|
5736
|
+
* @default false
|
|
4678
5737
|
*/
|
|
4679
|
-
|
|
5738
|
+
disableClickTrigger?: boolean;
|
|
4680
5739
|
/**
|
|
4681
|
-
*
|
|
5740
|
+
* Whether to disable the hover trigger behavior.
|
|
5741
|
+
* When `true`, the menu will only open on click.
|
|
4682
5742
|
* @default false
|
|
4683
5743
|
*/
|
|
4684
|
-
|
|
5744
|
+
disableHoverTrigger?: boolean;
|
|
4685
5745
|
/**
|
|
4686
|
-
*
|
|
4687
|
-
*
|
|
5746
|
+
* Whether to render the viewport element.
|
|
5747
|
+
* Set to `false` for inline content rendering without the viewport wrapper.
|
|
5748
|
+
* @default true
|
|
4688
5749
|
*/
|
|
4689
|
-
|
|
5750
|
+
viewport?: boolean;
|
|
5751
|
+
};
|
|
5752
|
+
|
|
5753
|
+
export declare const UiNavigationMenuTrigger: __VLS_WithTemplateSlots_83<typeof __VLS_component_83, __VLS_TemplateResult_83["slots"]>;
|
|
5754
|
+
|
|
5755
|
+
export declare type UiNavigationMenuTriggerProps = {
|
|
4690
5756
|
/**
|
|
4691
|
-
*
|
|
5757
|
+
* Whether the trigger is disabled.
|
|
4692
5758
|
* @default false
|
|
4693
5759
|
*/
|
|
4694
|
-
|
|
5760
|
+
disabled?: boolean;
|
|
4695
5761
|
/**
|
|
4696
|
-
*
|
|
5762
|
+
* Render as child element (merges props into slotted element instead of wrapping).
|
|
5763
|
+
* @default false
|
|
4697
5764
|
*/
|
|
4698
|
-
|
|
4699
|
-
}
|
|
5765
|
+
asChild?: boolean;
|
|
5766
|
+
};
|
|
4700
5767
|
|
|
4701
5768
|
export declare const UiPlaceholder: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
4702
5769
|
|
|
4703
|
-
export declare const UiPopover:
|
|
5770
|
+
export declare const UiPopover: __VLS_WithTemplateSlots_86<typeof __VLS_component_86, __VLS_TemplateResult_86["slots"]>;
|
|
4704
5771
|
|
|
4705
5772
|
/** The preferred alignment against the trigger. */
|
|
4706
5773
|
export declare type UiPopoverAlign = 'start' | 'center' | 'end';
|
|
4707
5774
|
|
|
4708
5775
|
export { UiPopoverAnchor }
|
|
4709
5776
|
|
|
4710
|
-
export declare const UiPopoverContent:
|
|
5777
|
+
export declare const UiPopoverContent: __VLS_WithTemplateSlots_88<typeof __VLS_component_88, __VLS_TemplateResult_88["slots"]>;
|
|
4711
5778
|
|
|
4712
5779
|
/**
|
|
4713
5780
|
* Emits for the UiPopoverContent component.
|
|
@@ -4783,7 +5850,7 @@ export declare interface UiPopoverProps {
|
|
|
4783
5850
|
/** The preferred side of the trigger to render the popover. */
|
|
4784
5851
|
export declare type UiPopoverSide = 'top' | 'right' | 'bottom' | 'left';
|
|
4785
5852
|
|
|
4786
|
-
export declare const UiPopoverTrigger:
|
|
5853
|
+
export declare const UiPopoverTrigger: __VLS_WithTemplateSlots_87<typeof __VLS_component_87, __VLS_TemplateResult_87["slots"]>;
|
|
4787
5854
|
|
|
4788
5855
|
/**
|
|
4789
5856
|
* Props for the UiPopoverTrigger component.
|
|
@@ -4828,7 +5895,7 @@ export declare type UiProgressProps = {
|
|
|
4828
5895
|
max?: number;
|
|
4829
5896
|
};
|
|
4830
5897
|
|
|
4831
|
-
export declare const UiRadioGroup:
|
|
5898
|
+
export declare const UiRadioGroup: __VLS_WithTemplateSlots_89<typeof __VLS_component_89, __VLS_TemplateResult_89["slots"]>;
|
|
4832
5899
|
|
|
4833
5900
|
/** The reading direction of the radio group. */
|
|
4834
5901
|
export declare type UiRadioGroupDirection = 'ltr' | 'rtl';
|
|
@@ -5000,7 +6067,7 @@ export declare interface UiRangeCalendarProps {
|
|
|
5000
6067
|
locale?: string;
|
|
5001
6068
|
/**
|
|
5002
6069
|
* The day of the week to start on.
|
|
5003
|
-
* @default 0
|
|
6070
|
+
* @default 0
|
|
5004
6071
|
*/
|
|
5005
6072
|
weekStartsOn?: UiRangeCalendarWeekStartsOn;
|
|
5006
6073
|
/**
|
|
@@ -5086,9 +6153,9 @@ export declare type UiRangeCalendarWeekdayFormat = 'narrow' | 'short' | 'long';
|
|
|
5086
6153
|
*/
|
|
5087
6154
|
export declare type UiRangeCalendarWeekStartsOn = 0 | 1 | 2 | 3 | 4 | 5 | 6;
|
|
5088
6155
|
|
|
5089
|
-
export declare const UiSelect:
|
|
6156
|
+
export declare const UiSelect: __VLS_WithTemplateSlots_90<typeof __VLS_component_90, __VLS_TemplateResult_90["slots"]>;
|
|
5090
6157
|
|
|
5091
|
-
export declare const UiSelectContent:
|
|
6158
|
+
export declare const UiSelectContent: __VLS_WithTemplateSlots_92<typeof __VLS_component_92, __VLS_TemplateResult_92["slots"]>;
|
|
5092
6159
|
|
|
5093
6160
|
/**
|
|
5094
6161
|
* Emits for the UiSelectContent component.
|
|
@@ -5124,9 +6191,9 @@ export declare type UiSelectEmits = {
|
|
|
5124
6191
|
'update:open': [value: boolean];
|
|
5125
6192
|
};
|
|
5126
6193
|
|
|
5127
|
-
export declare const UiSelectGroup:
|
|
6194
|
+
export declare const UiSelectGroup: __VLS_WithTemplateSlots_96<typeof __VLS_component_96, __VLS_TemplateResult_96["slots"]>;
|
|
5128
6195
|
|
|
5129
|
-
export declare const UiSelectItem:
|
|
6196
|
+
export declare const UiSelectItem: __VLS_WithTemplateSlots_93<typeof __VLS_component_93, __VLS_TemplateResult_93["slots"]>;
|
|
5130
6197
|
|
|
5131
6198
|
/**
|
|
5132
6199
|
* Props for the UiSelectItem component.
|
|
@@ -5140,7 +6207,7 @@ export declare type UiSelectItemProps = {
|
|
|
5140
6207
|
textValue?: string;
|
|
5141
6208
|
};
|
|
5142
6209
|
|
|
5143
|
-
export declare const UiSelectLabel:
|
|
6210
|
+
export declare const UiSelectLabel: __VLS_WithTemplateSlots_95<typeof __VLS_component_95, __VLS_TemplateResult_95["slots"]>;
|
|
5144
6211
|
|
|
5145
6212
|
/**
|
|
5146
6213
|
* A dropdown select for choosing from a list of options. Use for
|
|
@@ -5171,7 +6238,7 @@ export declare type UiSelectProps = {
|
|
|
5171
6238
|
|
|
5172
6239
|
export declare const UiSelectSeparator: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
5173
6240
|
|
|
5174
|
-
export declare const UiSelectTrigger:
|
|
6241
|
+
export declare const UiSelectTrigger: __VLS_WithTemplateSlots_91<typeof __VLS_component_91, __VLS_TemplateResult_91["slots"]>;
|
|
5175
6242
|
|
|
5176
6243
|
/**
|
|
5177
6244
|
* Props for the UiSelectTrigger component.
|
|
@@ -5185,7 +6252,7 @@ export declare type UiSelectTriggerProps = {
|
|
|
5185
6252
|
size?: 'default' | 'sm';
|
|
5186
6253
|
};
|
|
5187
6254
|
|
|
5188
|
-
export declare const UiSelectValue:
|
|
6255
|
+
export declare const UiSelectValue: __VLS_WithTemplateSlots_94<typeof __VLS_component_94, __VLS_TemplateResult_94["slots"]>;
|
|
5189
6256
|
|
|
5190
6257
|
/**
|
|
5191
6258
|
* Props for the UiSelectValue component.
|
|
@@ -5223,6 +6290,307 @@ export declare interface UiSeparatorProps {
|
|
|
5223
6290
|
decorative?: boolean;
|
|
5224
6291
|
}
|
|
5225
6292
|
|
|
6293
|
+
export declare const UiSheet: __VLS_WithTemplateSlots_97<typeof __VLS_component_97, __VLS_TemplateResult_97["slots"]>;
|
|
6294
|
+
|
|
6295
|
+
export declare const UiSheetClose: __VLS_WithTemplateSlots_100<typeof __VLS_component_100, __VLS_TemplateResult_100["slots"]>;
|
|
6296
|
+
|
|
6297
|
+
/**
|
|
6298
|
+
* Props for the UiSheetClose component.
|
|
6299
|
+
* A button that closes the sheet when clicked.
|
|
6300
|
+
*/
|
|
6301
|
+
export declare interface UiSheetCloseProps {
|
|
6302
|
+
/**
|
|
6303
|
+
* Render as child element (merges props into slotted element instead of wrapping).
|
|
6304
|
+
* Set to `true` when using a custom button for the close action.
|
|
6305
|
+
* @default false
|
|
6306
|
+
*/
|
|
6307
|
+
asChild?: boolean;
|
|
6308
|
+
}
|
|
6309
|
+
|
|
6310
|
+
export declare const UiSheetContent: __VLS_WithTemplateSlots_99<typeof __VLS_component_99, __VLS_TemplateResult_99["slots"]>;
|
|
6311
|
+
|
|
6312
|
+
/**
|
|
6313
|
+
* Props for the UiSheetContent component.
|
|
6314
|
+
* The main content container for the sheet.
|
|
6315
|
+
*/
|
|
6316
|
+
export declare interface UiSheetContentProps {
|
|
6317
|
+
/**
|
|
6318
|
+
* The side of the screen from which the sheet slides in.
|
|
6319
|
+
* @default 'right'
|
|
6320
|
+
*/
|
|
6321
|
+
side?: UiSheetSide;
|
|
6322
|
+
/**
|
|
6323
|
+
* Accessible label for the built-in close button (sr-only text).
|
|
6324
|
+
* Override for i18n or to provide a more descriptive label.
|
|
6325
|
+
* @default 'Close'
|
|
6326
|
+
*/
|
|
6327
|
+
closeLabel?: string;
|
|
6328
|
+
}
|
|
6329
|
+
|
|
6330
|
+
export declare const UiSheetDescription: __VLS_WithTemplateSlots_104<typeof __VLS_component_104, __VLS_TemplateResult_104["slots"]>;
|
|
6331
|
+
|
|
6332
|
+
export declare const UiSheetFooter: __VLS_WithTemplateSlots_102<typeof __VLS_component_102, __VLS_TemplateResult_102["slots"]>;
|
|
6333
|
+
|
|
6334
|
+
export declare const UiSheetHeader: __VLS_WithTemplateSlots_101<typeof __VLS_component_101, __VLS_TemplateResult_101["slots"]>;
|
|
6335
|
+
|
|
6336
|
+
/**
|
|
6337
|
+
* A panel that slides in from the edge of the screen to display
|
|
6338
|
+
* supplementary content. Use for forms, filters, detail views, or
|
|
6339
|
+
* any content that complements the main screen.
|
|
6340
|
+
*
|
|
6341
|
+
* @category Overlays
|
|
6342
|
+
* @useCases side panel, filter panel, detail view, settings panel, form drawer
|
|
6343
|
+
* @keywords sheet, drawer, panel, slide, overlay, side panel
|
|
6344
|
+
* @related UiDrawer, UiAlertDialog
|
|
6345
|
+
*/
|
|
6346
|
+
export declare interface UiSheetProps {
|
|
6347
|
+
/**
|
|
6348
|
+
* The controlled open state of the sheet.
|
|
6349
|
+
* - Omit for uncontrolled mode (component manages state internally)
|
|
6350
|
+
* - Use `v-model:open` for controlled mode
|
|
6351
|
+
*/
|
|
6352
|
+
open?: boolean;
|
|
6353
|
+
/**
|
|
6354
|
+
* The open state of the sheet when it is initially rendered.
|
|
6355
|
+
* Use when you do not need to control its open state.
|
|
6356
|
+
* @default false
|
|
6357
|
+
*/
|
|
6358
|
+
defaultOpen?: boolean;
|
|
6359
|
+
/**
|
|
6360
|
+
* The modality of the sheet.
|
|
6361
|
+
* When set to `true`, interaction with outside elements will be disabled
|
|
6362
|
+
* and only sheet content will be visible to screen readers.
|
|
6363
|
+
* @default true
|
|
6364
|
+
*/
|
|
6365
|
+
modal?: boolean;
|
|
6366
|
+
}
|
|
6367
|
+
|
|
6368
|
+
/**
|
|
6369
|
+
* Side of the screen where the sheet slides in from.
|
|
6370
|
+
*/
|
|
6371
|
+
export declare type UiSheetSide = 'top' | 'right' | 'bottom' | 'left';
|
|
6372
|
+
|
|
6373
|
+
export declare const UiSheetTitle: __VLS_WithTemplateSlots_103<typeof __VLS_component_103, __VLS_TemplateResult_103["slots"]>;
|
|
6374
|
+
|
|
6375
|
+
export declare const UiSheetTrigger: __VLS_WithTemplateSlots_98<typeof __VLS_component_98, __VLS_TemplateResult_98["slots"]>;
|
|
6376
|
+
|
|
6377
|
+
/**
|
|
6378
|
+
* Props for the UiSheetTrigger component.
|
|
6379
|
+
* The element that opens the sheet when clicked.
|
|
6380
|
+
*/
|
|
6381
|
+
export declare interface UiSheetTriggerProps {
|
|
6382
|
+
/**
|
|
6383
|
+
* Render as child element (merges props into slotted element instead of wrapping).
|
|
6384
|
+
* Set to `true` when using custom button components like `UiButton` or `UiIconButton`.
|
|
6385
|
+
* @default false
|
|
6386
|
+
*/
|
|
6387
|
+
asChild?: boolean;
|
|
6388
|
+
}
|
|
6389
|
+
|
|
6390
|
+
export declare const UiSidebar: __VLS_WithTemplateSlots_117<typeof __VLS_component_117, __VLS_TemplateResult_117["slots"]>;
|
|
6391
|
+
|
|
6392
|
+
export declare type UiSidebarCollapsible = 'offcanvas' | 'icon' | 'none';
|
|
6393
|
+
|
|
6394
|
+
export declare const UiSidebarContent: __VLS_WithTemplateSlots_105<typeof __VLS_component_105, __VLS_TemplateResult_105["slots"]>;
|
|
6395
|
+
|
|
6396
|
+
export declare const UiSidebarFooter: __VLS_WithTemplateSlots_106<typeof __VLS_component_106, __VLS_TemplateResult_106["slots"]>;
|
|
6397
|
+
|
|
6398
|
+
export declare const UiSidebarGroup: __VLS_WithTemplateSlots_107<typeof __VLS_component_107, __VLS_TemplateResult_107["slots"]>;
|
|
6399
|
+
|
|
6400
|
+
export declare const UiSidebarGroupAction: __VLS_WithTemplateSlots_118<typeof __VLS_component_118, __VLS_TemplateResult_118["slots"]>;
|
|
6401
|
+
|
|
6402
|
+
export declare interface UiSidebarGroupActionProps {
|
|
6403
|
+
/**
|
|
6404
|
+
* Render as child element (merges props into slotted element instead of wrapping).
|
|
6405
|
+
* @default false
|
|
6406
|
+
*/
|
|
6407
|
+
asChild?: boolean;
|
|
6408
|
+
}
|
|
6409
|
+
|
|
6410
|
+
export declare const UiSidebarGroupContent: __VLS_WithTemplateSlots_108<typeof __VLS_component_108, __VLS_TemplateResult_108["slots"]>;
|
|
6411
|
+
|
|
6412
|
+
export declare const UiSidebarGroupLabel: __VLS_WithTemplateSlots_119<typeof __VLS_component_119, __VLS_TemplateResult_119["slots"]>;
|
|
6413
|
+
|
|
6414
|
+
export declare interface UiSidebarGroupLabelProps {
|
|
6415
|
+
/**
|
|
6416
|
+
* Render as child element (merges props into slotted element instead of wrapping).
|
|
6417
|
+
* @default false
|
|
6418
|
+
*/
|
|
6419
|
+
asChild?: boolean;
|
|
6420
|
+
}
|
|
6421
|
+
|
|
6422
|
+
export declare const UiSidebarHeader: __VLS_WithTemplateSlots_109<typeof __VLS_component_109, __VLS_TemplateResult_109["slots"]>;
|
|
6423
|
+
|
|
6424
|
+
export declare const UiSidebarHeaderTrigger: __VLS_WithTemplateSlots_120<typeof __VLS_component_120, __VLS_TemplateResult_120["slots"]>;
|
|
6425
|
+
|
|
6426
|
+
/**
|
|
6427
|
+
* Sidebar header with integrated toggle trigger (OpenAI-style).
|
|
6428
|
+
* Shows logo + title when expanded; logo morphs to toggle icon on hover when collapsed.
|
|
6429
|
+
*/
|
|
6430
|
+
export declare interface UiSidebarHeaderTriggerProps {
|
|
6431
|
+
}
|
|
6432
|
+
|
|
6433
|
+
export declare const UiSidebarInput: DefineComponent<UiSidebarInputProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiSidebarInputProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
6434
|
+
|
|
6435
|
+
export declare interface UiSidebarInputProps {
|
|
6436
|
+
/**
|
|
6437
|
+
* Placeholder text for the input.
|
|
6438
|
+
*/
|
|
6439
|
+
placeholder?: string;
|
|
6440
|
+
}
|
|
6441
|
+
|
|
6442
|
+
export declare const UiSidebarInset: __VLS_WithTemplateSlots_110<typeof __VLS_component_110, __VLS_TemplateResult_110["slots"]>;
|
|
6443
|
+
|
|
6444
|
+
export declare const UiSidebarMenu: __VLS_WithTemplateSlots_111<typeof __VLS_component_111, __VLS_TemplateResult_111["slots"]>;
|
|
6445
|
+
|
|
6446
|
+
export declare const UiSidebarMenuAction: __VLS_WithTemplateSlots_121<typeof __VLS_component_121, __VLS_TemplateResult_121["slots"]>;
|
|
6447
|
+
|
|
6448
|
+
export declare interface UiSidebarMenuActionProps {
|
|
6449
|
+
/**
|
|
6450
|
+
* Whether to show the action only on hover of the parent menu item.
|
|
6451
|
+
* @default false
|
|
6452
|
+
*/
|
|
6453
|
+
showOnHover?: boolean;
|
|
6454
|
+
/**
|
|
6455
|
+
* Render as child element (merges props into slotted element instead of wrapping).
|
|
6456
|
+
* @default false
|
|
6457
|
+
*/
|
|
6458
|
+
asChild?: boolean;
|
|
6459
|
+
}
|
|
6460
|
+
|
|
6461
|
+
export declare const UiSidebarMenuBadge: __VLS_WithTemplateSlots_112<typeof __VLS_component_112, __VLS_TemplateResult_112["slots"]>;
|
|
6462
|
+
|
|
6463
|
+
export declare const UiSidebarMenuButton: __VLS_WithTemplateSlots_122<typeof __VLS_component_122, __VLS_TemplateResult_122["slots"]>;
|
|
6464
|
+
|
|
6465
|
+
export declare interface UiSidebarMenuButtonProps {
|
|
6466
|
+
/**
|
|
6467
|
+
* The visual variant of the button.
|
|
6468
|
+
* @default 'default'
|
|
6469
|
+
*/
|
|
6470
|
+
variant?: UiSidebarMenuButtonVariant;
|
|
6471
|
+
/**
|
|
6472
|
+
* The size of the button.
|
|
6473
|
+
* @default 'default'
|
|
6474
|
+
*/
|
|
6475
|
+
size?: UiSidebarMenuButtonSize;
|
|
6476
|
+
/**
|
|
6477
|
+
* Whether the button represents the currently active item.
|
|
6478
|
+
* @default false
|
|
6479
|
+
*/
|
|
6480
|
+
isActive?: boolean;
|
|
6481
|
+
/**
|
|
6482
|
+
* Tooltip text or component to show when sidebar is collapsed.
|
|
6483
|
+
* Only visible in icon-collapsed mode.
|
|
6484
|
+
*/
|
|
6485
|
+
tooltip?: string | Component;
|
|
6486
|
+
/**
|
|
6487
|
+
* Render as child element (merges props into slotted element instead of wrapping).
|
|
6488
|
+
* @default false
|
|
6489
|
+
*/
|
|
6490
|
+
asChild?: boolean;
|
|
6491
|
+
}
|
|
6492
|
+
|
|
6493
|
+
export declare type UiSidebarMenuButtonSize = 'default' | 'sm' | 'lg';
|
|
6494
|
+
|
|
6495
|
+
export declare type UiSidebarMenuButtonVariant = 'default' | 'outline';
|
|
6496
|
+
|
|
6497
|
+
export declare const UiSidebarMenuItem: __VLS_WithTemplateSlots_113<typeof __VLS_component_113, __VLS_TemplateResult_113["slots"]>;
|
|
6498
|
+
|
|
6499
|
+
export declare const UiSidebarMenuSkeleton: DefineComponent<UiSidebarMenuSkeletonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiSidebarMenuSkeletonProps> & Readonly<{}>, {
|
|
6500
|
+
showIcon: boolean;
|
|
6501
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
6502
|
+
|
|
6503
|
+
export declare interface UiSidebarMenuSkeletonProps {
|
|
6504
|
+
/**
|
|
6505
|
+
* Whether to show an icon placeholder in the skeleton.
|
|
6506
|
+
* @default false
|
|
6507
|
+
*/
|
|
6508
|
+
showIcon?: boolean;
|
|
6509
|
+
}
|
|
6510
|
+
|
|
6511
|
+
export declare const UiSidebarMenuSub: __VLS_WithTemplateSlots_114<typeof __VLS_component_114, __VLS_TemplateResult_114["slots"]>;
|
|
6512
|
+
|
|
6513
|
+
export declare const UiSidebarMenuSubButton: __VLS_WithTemplateSlots_123<typeof __VLS_component_123, __VLS_TemplateResult_123["slots"]>;
|
|
6514
|
+
|
|
6515
|
+
export declare interface UiSidebarMenuSubButtonProps {
|
|
6516
|
+
/**
|
|
6517
|
+
* The size of the sub-button.
|
|
6518
|
+
* @default 'md'
|
|
6519
|
+
*/
|
|
6520
|
+
size?: UiSidebarMenuSubButtonSize;
|
|
6521
|
+
/**
|
|
6522
|
+
* Whether the button represents the currently active item.
|
|
6523
|
+
* @default false
|
|
6524
|
+
*/
|
|
6525
|
+
isActive?: boolean;
|
|
6526
|
+
/**
|
|
6527
|
+
* Render as child element (merges props into slotted element instead of wrapping).
|
|
6528
|
+
* @default false
|
|
6529
|
+
*/
|
|
6530
|
+
asChild?: boolean;
|
|
6531
|
+
}
|
|
6532
|
+
|
|
6533
|
+
export declare type UiSidebarMenuSubButtonSize = 'sm' | 'md';
|
|
6534
|
+
|
|
6535
|
+
export declare const UiSidebarMenuSubItem: __VLS_WithTemplateSlots_115<typeof __VLS_component_115, __VLS_TemplateResult_115["slots"]>;
|
|
6536
|
+
|
|
6537
|
+
/**
|
|
6538
|
+
* A collapsible sidebar navigation component for application layouts.
|
|
6539
|
+
* Use for primary navigation, page hierarchy, and secondary actions in dashboard-style applications.
|
|
6540
|
+
* @category Layout
|
|
6541
|
+
* @useCases navigation, dashboard layout, app shell, admin panel, settings menu
|
|
6542
|
+
* @keywords sidebar, navigation, menu, drawer, collapsible, layout
|
|
6543
|
+
* @related UiDrawer, UiSheet
|
|
6544
|
+
*/
|
|
6545
|
+
export declare interface UiSidebarProps {
|
|
6546
|
+
/**
|
|
6547
|
+
* Which side the sidebar appears on.
|
|
6548
|
+
* @default 'left'
|
|
6549
|
+
*/
|
|
6550
|
+
side?: UiSidebarSide;
|
|
6551
|
+
/**
|
|
6552
|
+
* The visual variant of the sidebar.
|
|
6553
|
+
* - `sidebar`: Standard fixed sidebar with border
|
|
6554
|
+
* - `floating`: Floating sidebar with shadow and rounded corners
|
|
6555
|
+
* - `inset`: Sidebar that shares background with main content
|
|
6556
|
+
* @default 'sidebar'
|
|
6557
|
+
*/
|
|
6558
|
+
variant?: UiSidebarVariant;
|
|
6559
|
+
/**
|
|
6560
|
+
* How the sidebar collapses.
|
|
6561
|
+
* - `offcanvas`: Slides completely off screen
|
|
6562
|
+
* - `icon`: Collapses to icon-only width
|
|
6563
|
+
* - `none`: Never collapses (always expanded)
|
|
6564
|
+
* @default 'offcanvas'
|
|
6565
|
+
*/
|
|
6566
|
+
collapsible?: UiSidebarCollapsible;
|
|
6567
|
+
}
|
|
6568
|
+
|
|
6569
|
+
export declare const UiSidebarProvider: __VLS_WithTemplateSlots_124<typeof __VLS_component_124, __VLS_TemplateResult_124["slots"]>;
|
|
6570
|
+
|
|
6571
|
+
/**
|
|
6572
|
+
* Wraps the sidebar and manages its open/closed state.
|
|
6573
|
+
* Omit `default-open` to use cookie-based persistence (falls back to expanded).
|
|
6574
|
+
*/
|
|
6575
|
+
export declare interface UiSidebarProviderProps {
|
|
6576
|
+
/**
|
|
6577
|
+
* The initial open state of the sidebar.
|
|
6578
|
+
* If not provided, the inner provider uses cookie-based persistence
|
|
6579
|
+
* (falls back to expanded if no cookie exists).
|
|
6580
|
+
*/
|
|
6581
|
+
defaultOpen?: boolean;
|
|
6582
|
+
}
|
|
6583
|
+
|
|
6584
|
+
export declare const UiSidebarRail: __VLS_WithTemplateSlots_116<typeof __VLS_component_116, __VLS_TemplateResult_116["slots"]>;
|
|
6585
|
+
|
|
6586
|
+
export declare const UiSidebarSeparator: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
6587
|
+
|
|
6588
|
+
export declare type UiSidebarSide = 'left' | 'right';
|
|
6589
|
+
|
|
6590
|
+
export declare const UiSidebarTrigger: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
6591
|
+
|
|
6592
|
+
export declare type UiSidebarVariant = 'sidebar' | 'floating' | 'inset';
|
|
6593
|
+
|
|
5226
6594
|
export declare const UiSkeleton: DefineComponent<UiSkeletonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiSkeletonProps> & Readonly<{}>, {
|
|
5227
6595
|
rounded: boolean;
|
|
5228
6596
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
@@ -5369,9 +6737,89 @@ export declare interface UiSpinnerProps {
|
|
|
5369
6737
|
ariaLabel?: string;
|
|
5370
6738
|
}
|
|
5371
6739
|
|
|
5372
|
-
export declare const
|
|
6740
|
+
export declare const UiStepper: __VLS_WithTemplateSlots_125<typeof __VLS_component_125, __VLS_TemplateResult_125["slots"]>;
|
|
6741
|
+
|
|
6742
|
+
export declare const UiStepperDescription: __VLS_WithTemplateSlots_130<typeof __VLS_component_130, __VLS_TemplateResult_130["slots"]>;
|
|
6743
|
+
|
|
6744
|
+
export declare const UiStepperIndicator: __VLS_WithTemplateSlots_128<typeof __VLS_component_128, __VLS_TemplateResult_128["slots"]>;
|
|
6745
|
+
|
|
6746
|
+
export declare const UiStepperItem: __VLS_WithTemplateSlots_126<typeof __VLS_component_126, __VLS_TemplateResult_126["slots"]>;
|
|
6747
|
+
|
|
6748
|
+
/**
|
|
6749
|
+
* Props for the UiStepperItem component.
|
|
6750
|
+
*/
|
|
6751
|
+
export declare type UiStepperItemProps = {
|
|
6752
|
+
/** The step number this item represents (required). */
|
|
6753
|
+
step: number;
|
|
6754
|
+
/** Whether this step is disabled and cannot be navigated to. */
|
|
6755
|
+
disabled?: boolean;
|
|
6756
|
+
/** Whether this step is marked as completed. */
|
|
6757
|
+
completed?: boolean;
|
|
6758
|
+
};
|
|
6759
|
+
|
|
6760
|
+
/** Orientation of the stepper layout. */
|
|
6761
|
+
export declare type UiStepperOrientation = 'horizontal' | 'vertical';
|
|
6762
|
+
|
|
6763
|
+
/**
|
|
6764
|
+
* A step-by-step navigation component for multi-step workflows. Use for
|
|
6765
|
+
* wizards, checkout flows, onboarding sequences, or any process with
|
|
6766
|
+
* sequential steps.
|
|
6767
|
+
*
|
|
6768
|
+
* @category Navigation
|
|
6769
|
+
* @useCases wizard, checkout flow, onboarding, multi-step form, progress tracker
|
|
6770
|
+
* @keywords stepper, steps, wizard, progress, sequential, workflow, multi-step
|
|
6771
|
+
* @related UiProgress, UiTabs
|
|
6772
|
+
*/
|
|
6773
|
+
export declare type UiStepperProps = {
|
|
6774
|
+
/**
|
|
6775
|
+
* The controlled value of the active step.
|
|
6776
|
+
* - Omit for uncontrolled mode (uses defaultValue)
|
|
6777
|
+
* - Use `v-model` for controlled mode
|
|
6778
|
+
* @example
|
|
6779
|
+
* ```vue
|
|
6780
|
+
* <!-- Uncontrolled -->
|
|
6781
|
+
* <UiStepper :default-value="1">...</UiStepper>
|
|
6782
|
+
*
|
|
6783
|
+
* <!-- Controlled -->
|
|
6784
|
+
* <UiStepper v-model="currentStep">...</UiStepper>
|
|
6785
|
+
* ```
|
|
6786
|
+
*/
|
|
6787
|
+
modelValue?: number;
|
|
6788
|
+
/**
|
|
6789
|
+
* The step that should be active when initially rendered (uncontrolled mode).
|
|
6790
|
+
* @default 1
|
|
6791
|
+
*/
|
|
6792
|
+
defaultValue?: number;
|
|
6793
|
+
/** The orientation of the stepper layout. */
|
|
6794
|
+
orientation?: UiStepperOrientation;
|
|
6795
|
+
/**
|
|
6796
|
+
* Whether navigation must be sequential (user cannot skip ahead to incomplete steps).
|
|
6797
|
+
* @default true
|
|
6798
|
+
*/
|
|
6799
|
+
linear?: boolean;
|
|
6800
|
+
};
|
|
6801
|
+
|
|
6802
|
+
export declare const UiStepperSeparator: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
6803
|
+
|
|
6804
|
+
export declare const UiStepperTitle: __VLS_WithTemplateSlots_129<typeof __VLS_component_129, __VLS_TemplateResult_129["slots"]>;
|
|
6805
|
+
|
|
6806
|
+
export declare const UiStepperTrigger: __VLS_WithTemplateSlots_127<typeof __VLS_component_127, __VLS_TemplateResult_127["slots"]>;
|
|
6807
|
+
|
|
6808
|
+
/**
|
|
6809
|
+
* Props for the UiStepperTrigger component.
|
|
6810
|
+
*/
|
|
6811
|
+
export declare type UiStepperTriggerProps = {
|
|
6812
|
+
/**
|
|
6813
|
+
* Renders as the child element instead of the default trigger button.
|
|
6814
|
+
* Use with UiIconButton or UiButton to customize the trigger appearance.
|
|
6815
|
+
* @default false
|
|
6816
|
+
*/
|
|
6817
|
+
asChild?: boolean;
|
|
6818
|
+
};
|
|
6819
|
+
|
|
6820
|
+
export declare const UiSwitch: DefineComponent<__VLS_PublicProps_13, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
5373
6821
|
"update:modelValue": (value: boolean) => any;
|
|
5374
|
-
}, string, PublicProps, Readonly<
|
|
6822
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_13> & Readonly<{
|
|
5375
6823
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
5376
6824
|
}>, {
|
|
5377
6825
|
disabled: boolean;
|
|
@@ -5403,13 +6851,13 @@ export declare type UiSwitchProps = {
|
|
|
5403
6851
|
required?: boolean;
|
|
5404
6852
|
};
|
|
5405
6853
|
|
|
5406
|
-
export declare const UiTable:
|
|
6854
|
+
export declare const UiTable: __VLS_WithTemplateSlots_131<typeof __VLS_component_131, __VLS_TemplateResult_131["slots"]>;
|
|
5407
6855
|
|
|
5408
|
-
export declare const UiTableBody:
|
|
6856
|
+
export declare const UiTableBody: __VLS_WithTemplateSlots_133<typeof __VLS_component_133, __VLS_TemplateResult_133["slots"]>;
|
|
5409
6857
|
|
|
5410
|
-
export declare const UiTableCaption:
|
|
6858
|
+
export declare const UiTableCaption: __VLS_WithTemplateSlots_138<typeof __VLS_component_138, __VLS_TemplateResult_138["slots"]>;
|
|
5411
6859
|
|
|
5412
|
-
export declare const UiTableCell:
|
|
6860
|
+
export declare const UiTableCell: __VLS_WithTemplateSlots_137<typeof __VLS_component_137, __VLS_TemplateResult_137["slots"]>;
|
|
5413
6861
|
|
|
5414
6862
|
/**
|
|
5415
6863
|
* Props for UiTableCell component.
|
|
@@ -5426,7 +6874,7 @@ export declare interface UiTableCellProps {
|
|
|
5426
6874
|
rowspan?: number;
|
|
5427
6875
|
}
|
|
5428
6876
|
|
|
5429
|
-
export declare const UiTableEmpty:
|
|
6877
|
+
export declare const UiTableEmpty: __VLS_WithTemplateSlots_139<typeof __VLS_component_139, __VLS_TemplateResult_139["slots"]>;
|
|
5430
6878
|
|
|
5431
6879
|
/**
|
|
5432
6880
|
* Props for UiTableEmpty component.
|
|
@@ -5441,11 +6889,11 @@ export declare interface UiTableEmptyProps {
|
|
|
5441
6889
|
colspan?: number;
|
|
5442
6890
|
}
|
|
5443
6891
|
|
|
5444
|
-
export declare const UiTableFooter:
|
|
6892
|
+
export declare const UiTableFooter: __VLS_WithTemplateSlots_134<typeof __VLS_component_134, __VLS_TemplateResult_134["slots"]>;
|
|
5445
6893
|
|
|
5446
|
-
export declare const UiTableHead:
|
|
6894
|
+
export declare const UiTableHead: __VLS_WithTemplateSlots_136<typeof __VLS_component_136, __VLS_TemplateResult_136["slots"]>;
|
|
5447
6895
|
|
|
5448
|
-
export declare const UiTableHeader:
|
|
6896
|
+
export declare const UiTableHeader: __VLS_WithTemplateSlots_132<typeof __VLS_component_132, __VLS_TemplateResult_132["slots"]>;
|
|
5449
6897
|
|
|
5450
6898
|
/**
|
|
5451
6899
|
* Props for UiTableHead component.
|
|
@@ -5467,7 +6915,7 @@ export declare interface UiTableHeadProps {
|
|
|
5467
6915
|
scope?: 'col' | 'row' | 'colgroup' | 'rowgroup';
|
|
5468
6916
|
}
|
|
5469
6917
|
|
|
5470
|
-
export declare const UiTableRow:
|
|
6918
|
+
export declare const UiTableRow: __VLS_WithTemplateSlots_135<typeof __VLS_component_135, __VLS_TemplateResult_135["slots"]>;
|
|
5471
6919
|
|
|
5472
6920
|
/**
|
|
5473
6921
|
* A basic HTML table with styled rows, headers, and cells. Use for
|
|
@@ -5486,14 +6934,14 @@ export declare interface UiTableRowProps {
|
|
|
5486
6934
|
selected?: boolean;
|
|
5487
6935
|
}
|
|
5488
6936
|
|
|
5489
|
-
export declare const UiTabs:
|
|
6937
|
+
export declare const UiTabs: __VLS_WithTemplateSlots_140<typeof __VLS_component_140, __VLS_TemplateResult_140["slots"]>;
|
|
5490
6938
|
|
|
5491
6939
|
/**
|
|
5492
6940
|
* Activation mode for tabs.
|
|
5493
6941
|
*/
|
|
5494
6942
|
export declare type UiTabsActivationMode = 'automatic' | 'manual';
|
|
5495
6943
|
|
|
5496
|
-
export declare const UiTabsContent:
|
|
6944
|
+
export declare const UiTabsContent: __VLS_WithTemplateSlots_143<typeof __VLS_component_143, __VLS_TemplateResult_143["slots"]>;
|
|
5497
6945
|
|
|
5498
6946
|
/**
|
|
5499
6947
|
* Props for the UiTabsContent component.
|
|
@@ -5516,7 +6964,7 @@ export declare type UiTabsEmits = {
|
|
|
5516
6964
|
'update:modelValue': [value: string];
|
|
5517
6965
|
};
|
|
5518
6966
|
|
|
5519
|
-
export declare const UiTabsList:
|
|
6967
|
+
export declare const UiTabsList: __VLS_WithTemplateSlots_141<typeof __VLS_component_141, __VLS_TemplateResult_141["slots"]>;
|
|
5520
6968
|
|
|
5521
6969
|
/**
|
|
5522
6970
|
* Props for the UiTabsList component.
|
|
@@ -5550,7 +6998,7 @@ export declare type UiTabsProps = {
|
|
|
5550
6998
|
activationMode?: UiTabsActivationMode;
|
|
5551
6999
|
};
|
|
5552
7000
|
|
|
5553
|
-
export declare const UiTabsTrigger:
|
|
7001
|
+
export declare const UiTabsTrigger: __VLS_WithTemplateSlots_142<typeof __VLS_component_142, __VLS_TemplateResult_142["slots"]>;
|
|
5554
7002
|
|
|
5555
7003
|
/**
|
|
5556
7004
|
* Props for the UiTabsTrigger component.
|
|
@@ -5562,7 +7010,7 @@ export declare type UiTabsTriggerProps = {
|
|
|
5562
7010
|
disabled?: boolean;
|
|
5563
7011
|
};
|
|
5564
7012
|
|
|
5565
|
-
export declare const UiTagsInput:
|
|
7013
|
+
export declare const UiTagsInput: __VLS_WithTemplateSlots_144<typeof __VLS_component_144, __VLS_TemplateResult_144["slots"]>;
|
|
5566
7014
|
|
|
5567
7015
|
export declare const UiTagsInputInput: DefineComponent<UiTagsInputInputProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiTagsInputInputProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
5568
7016
|
|
|
@@ -5577,9 +7025,9 @@ export declare interface UiTagsInputInputProps {
|
|
|
5577
7025
|
placeholder?: string;
|
|
5578
7026
|
}
|
|
5579
7027
|
|
|
5580
|
-
export declare const UiTagsInputItem:
|
|
7028
|
+
export declare const UiTagsInputItem: __VLS_WithTemplateSlots_145<typeof __VLS_component_145, __VLS_TemplateResult_145["slots"]>;
|
|
5581
7029
|
|
|
5582
|
-
export declare const UiTagsInputItemDelete:
|
|
7030
|
+
export declare const UiTagsInputItemDelete: __VLS_WithTemplateSlots_146<typeof __VLS_component_146, __VLS_TemplateResult_146["slots"]>;
|
|
5583
7031
|
|
|
5584
7032
|
/**
|
|
5585
7033
|
* Props for the UiTagsInputItemDelete component.
|
|
@@ -5625,9 +7073,9 @@ export declare interface UiTagsInputProps extends Omit<TagsInputRootProps, 'clas
|
|
|
5625
7073
|
|
|
5626
7074
|
export declare const UiTemplatePlaceholder: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
5627
7075
|
|
|
5628
|
-
export declare const UiTextarea: DefineComponent<
|
|
7076
|
+
export declare const UiTextarea: DefineComponent<__VLS_PublicProps_15, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
5629
7077
|
"update:modelValue": (value: string) => any;
|
|
5630
|
-
}, string, PublicProps, Readonly<
|
|
7078
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_15> & Readonly<{
|
|
5631
7079
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
5632
7080
|
}>, {
|
|
5633
7081
|
disabled: boolean;
|
|
@@ -5664,7 +7112,7 @@ export declare interface UiTextareaProps {
|
|
|
5664
7112
|
required?: boolean;
|
|
5665
7113
|
}
|
|
5666
7114
|
|
|
5667
|
-
export declare const UiToggle:
|
|
7115
|
+
export declare const UiToggle: __VLS_WithTemplateSlots_147<typeof __VLS_component_147, __VLS_TemplateResult_147["slots"]>;
|
|
5668
7116
|
|
|
5669
7117
|
export declare const UiToggleGroup: <T extends "single" | "multiple">(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
5670
7118
|
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
@@ -5729,7 +7177,7 @@ declare interface UiToggleGroupBaseProps {
|
|
|
5729
7177
|
orientation?: 'horizontal' | 'vertical';
|
|
5730
7178
|
}
|
|
5731
7179
|
|
|
5732
|
-
export declare const UiToggleGroupItem:
|
|
7180
|
+
export declare const UiToggleGroupItem: __VLS_WithTemplateSlots_148<typeof __VLS_component_148, __VLS_TemplateResult_148["slots"]>;
|
|
5733
7181
|
|
|
5734
7182
|
/**
|
|
5735
7183
|
* An item within a toggle group.
|
|
@@ -5859,11 +7307,11 @@ export declare interface UiToggleProps {
|
|
|
5859
7307
|
size?: 'default' | 'sm' | 'lg';
|
|
5860
7308
|
}
|
|
5861
7309
|
|
|
5862
|
-
export declare const UiTooltip:
|
|
7310
|
+
export declare const UiTooltip: __VLS_WithTemplateSlots_149<typeof __VLS_component_149, __VLS_TemplateResult_149["slots"]>;
|
|
5863
7311
|
|
|
5864
7312
|
export declare type UiTooltipAlign = 'start' | 'center' | 'end';
|
|
5865
7313
|
|
|
5866
|
-
export declare const UiTooltipContent:
|
|
7314
|
+
export declare const UiTooltipContent: __VLS_WithTemplateSlots_151<typeof __VLS_component_151, __VLS_TemplateResult_151["slots"]>;
|
|
5867
7315
|
|
|
5868
7316
|
/**
|
|
5869
7317
|
* A popup that displays information on hover or focus. Use for
|
|
@@ -5909,12 +7357,46 @@ export declare interface UiTooltipProps {
|
|
|
5909
7357
|
disabled?: boolean;
|
|
5910
7358
|
}
|
|
5911
7359
|
|
|
5912
|
-
export declare const UiTooltipProvider:
|
|
7360
|
+
export declare const UiTooltipProvider: __VLS_WithTemplateSlots_152<typeof __VLS_component_152, __VLS_TemplateResult_152["slots"]>;
|
|
5913
7361
|
|
|
5914
|
-
export declare const UiTooltipRoot:
|
|
7362
|
+
export declare const UiTooltipRoot: __VLS_WithTemplateSlots_150<typeof __VLS_component_150, __VLS_TemplateResult_150["slots"]>;
|
|
5915
7363
|
|
|
5916
7364
|
export declare type UiTooltipSides = 'top' | 'right' | 'bottom' | 'left';
|
|
5917
7365
|
|
|
5918
|
-
export declare const UiTooltipTrigger:
|
|
7366
|
+
export declare const UiTooltipTrigger: __VLS_WithTemplateSlots_153<typeof __VLS_component_153, __VLS_TemplateResult_153["slots"]>;
|
|
7367
|
+
|
|
7368
|
+
export declare const useSidebar: <T extends {
|
|
7369
|
+
state: ComputedRef<"expanded" | "collapsed">;
|
|
7370
|
+
open: Ref<boolean>;
|
|
7371
|
+
setOpen: (value: boolean) => void;
|
|
7372
|
+
isMobile: Ref<boolean>;
|
|
7373
|
+
openMobile: Ref<boolean>;
|
|
7374
|
+
setOpenMobile: (value: boolean) => void;
|
|
7375
|
+
toggleSidebar: () => void;
|
|
7376
|
+
} | null | undefined = {
|
|
7377
|
+
state: ComputedRef<"expanded" | "collapsed">;
|
|
7378
|
+
open: Ref<boolean>;
|
|
7379
|
+
setOpen: (value: boolean) => void;
|
|
7380
|
+
isMobile: Ref<boolean>;
|
|
7381
|
+
openMobile: Ref<boolean>;
|
|
7382
|
+
setOpenMobile: (value: boolean) => void;
|
|
7383
|
+
toggleSidebar: () => void;
|
|
7384
|
+
}>(fallback?: T | undefined) => T extends null ? {
|
|
7385
|
+
state: ComputedRef<"expanded" | "collapsed">;
|
|
7386
|
+
open: Ref<boolean>;
|
|
7387
|
+
setOpen: (value: boolean) => void;
|
|
7388
|
+
isMobile: Ref<boolean>;
|
|
7389
|
+
openMobile: Ref<boolean>;
|
|
7390
|
+
setOpenMobile: (value: boolean) => void;
|
|
7391
|
+
toggleSidebar: () => void;
|
|
7392
|
+
} | null : {
|
|
7393
|
+
state: ComputedRef<"expanded" | "collapsed">;
|
|
7394
|
+
open: Ref<boolean>;
|
|
7395
|
+
setOpen: (value: boolean) => void;
|
|
7396
|
+
isMobile: Ref<boolean>;
|
|
7397
|
+
openMobile: Ref<boolean>;
|
|
7398
|
+
setOpenMobile: (value: boolean) => void;
|
|
7399
|
+
toggleSidebar: () => void;
|
|
7400
|
+
};
|
|
5919
7401
|
|
|
5920
7402
|
export { }
|