@aleph-alpha/ui-library 1.13.0 → 1.14.0

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