@aleph-alpha/ui-library 1.16.1 → 1.17.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 (31) hide show
  1. package/dist/system/index.d.ts +585 -402
  2. package/dist/system/lib.js +13060 -12822
  3. package/package.json +2 -2
  4. package/src/components/UiChip/UiChip.stories.ts +239 -0
  5. package/src/components/UiChip/UiChip.vue +128 -0
  6. package/src/components/UiChip/__tests__/UiChip.test.ts +102 -0
  7. package/src/components/UiChip/index.ts +2 -0
  8. package/src/components/UiChip/types.ts +50 -0
  9. package/src/components/UiDropdownMenu/UiDropdownMenu.stories.ts +259 -1
  10. package/src/components/UiField/UiField.stories.ts +589 -249
  11. package/src/components/UiField/UiField.vue +87 -2
  12. package/src/components/UiField/UiFieldDescription.vue +22 -1
  13. package/src/components/UiField/UiFieldLabel.vue +2 -0
  14. package/src/components/UiField/UiFieldLabelInfo.vue +22 -0
  15. package/src/components/UiField/index.ts +1 -0
  16. package/src/components/UiField/keys.ts +5 -0
  17. package/src/components/UiField/types.ts +86 -1
  18. package/src/components/UiSelect/__tests__/UiSelectTrigger.test.ts +47 -2
  19. package/src/components/UiToggle/UiToggle.stories.ts +54 -1
  20. package/src/components/UiToggle/__tests__/UiToggle.test.ts +15 -0
  21. package/src/components/UiToggle/types.ts +1 -1
  22. package/src/components/UiToggleGroup/__tests__/UiToggleGroup.test.ts +21 -0
  23. package/src/components/UiToggleGroup/types.ts +2 -2
  24. package/src/components/core/button/index.ts +5 -0
  25. package/src/components/core/field/FieldLabel.vue +1 -1
  26. package/src/components/core/field/index.ts +5 -5
  27. package/src/components/core/select/SelectTrigger.vue +1 -1
  28. package/src/components/core/toggle/Toggle.vue +3 -3
  29. package/src/components/core/toggle/index.ts +6 -3
  30. package/src/components/core/toggle-group/index.ts +6 -3
  31. package/src/components/index.ts +1 -0
@@ -50,17 +50,34 @@ declare const __VLS_component: DefineComponent<UiAccordionSingleProps | UiAccord
50
50
 
51
51
  declare const __VLS_component_10: DefineComponent<UiAlertSubComponentCommonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiAlertSubComponentCommonProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
52
52
 
53
- declare const __VLS_component_100: DefineComponent<DialogCloseProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<DialogCloseProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
53
+ declare const __VLS_component_100: DefineComponent<__VLS_Props_28, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
54
+ escapeKeyDown: (event: KeyboardEvent) => any;
55
+ pointerDownOutside: (event: PointerDownOutsideEvent) => any;
56
+ focusOutside: (event: FocusOutsideEvent) => any;
57
+ interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any;
58
+ openAutoFocus: (event: Event) => any;
59
+ closeAutoFocus: (event: Event) => any;
60
+ }, string, PublicProps, Readonly<__VLS_Props_28> & Readonly<{
61
+ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
62
+ onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
63
+ onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
64
+ onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined;
65
+ onOpenAutoFocus?: ((event: Event) => any) | undefined;
66
+ onCloseAutoFocus?: ((event: Event) => any) | undefined;
67
+ }>, {
68
+ side: "top" | "right" | "bottom" | "left";
69
+ closeLabel: string;
70
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
54
71
 
55
- declare const __VLS_component_101: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
72
+ declare const __VLS_component_101: DefineComponent<DialogCloseProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<DialogCloseProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
56
73
 
57
74
  declare const __VLS_component_102: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
58
75
 
59
- declare const __VLS_component_103: DefineComponent<DialogTitleProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<DialogTitleProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
76
+ declare const __VLS_component_103: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
60
77
 
61
- declare const __VLS_component_104: DefineComponent<DialogDescriptionProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<DialogDescriptionProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
78
+ declare const __VLS_component_104: DefineComponent<DialogTitleProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<DialogTitleProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
62
79
 
63
- declare const __VLS_component_105: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
80
+ declare const __VLS_component_105: DefineComponent<DialogDescriptionProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<DialogDescriptionProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
64
81
 
65
82
  declare const __VLS_component_106: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
66
83
 
@@ -100,129 +117,133 @@ declare const __VLS_component_115: DefineComponent< {}, {}, {}, {}, {}, Compo
100
117
 
101
118
  declare const __VLS_component_116: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
102
119
 
103
- declare const __VLS_component_117: DefineComponent<UiSidebarProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiSidebarProps> & Readonly<{}>, {
120
+ declare const __VLS_component_117: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
121
+
122
+ declare const __VLS_component_118: DefineComponent<UiSidebarProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiSidebarProps> & Readonly<{}>, {
104
123
  collapsible: UiSidebarCollapsible;
105
124
  variant: UiSidebarVariant;
106
125
  side: UiSidebarSide;
107
126
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
108
127
 
109
- declare const __VLS_component_118: DefineComponent<UiSidebarGroupActionProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiSidebarGroupActionProps> & Readonly<{}>, {
128
+ declare const __VLS_component_119: DefineComponent<UiSidebarGroupActionProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiSidebarGroupActionProps> & Readonly<{}>, {
110
129
  asChild: boolean;
111
130
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
112
131
 
113
- declare const __VLS_component_119: DefineComponent<UiSidebarGroupLabelProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiSidebarGroupLabelProps> & Readonly<{}>, {
132
+ declare const __VLS_component_12: DefineComponent<UiAlertSubComponentCommonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiAlertSubComponentCommonProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
133
+
134
+ declare const __VLS_component_120: DefineComponent<UiSidebarGroupLabelProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiSidebarGroupLabelProps> & Readonly<{}>, {
114
135
  asChild: boolean;
115
136
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
116
137
 
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>;
138
+ declare const __VLS_component_121: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
120
139
 
121
- declare const __VLS_component_121: DefineComponent<UiSidebarMenuActionProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiSidebarMenuActionProps> & Readonly<{}>, {
140
+ declare const __VLS_component_122: DefineComponent<UiSidebarMenuActionProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiSidebarMenuActionProps> & Readonly<{}>, {
122
141
  asChild: boolean;
123
142
  showOnHover: boolean;
124
143
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
125
144
 
126
- declare const __VLS_component_122: DefineComponent<UiSidebarMenuButtonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiSidebarMenuButtonProps> & Readonly<{}>, {
145
+ declare const __VLS_component_123: DefineComponent<UiSidebarMenuButtonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiSidebarMenuButtonProps> & Readonly<{}>, {
127
146
  asChild: boolean;
128
147
  size: UiSidebarMenuButtonSize;
129
148
  variant: UiSidebarMenuButtonVariant;
130
149
  isActive: boolean;
131
150
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
132
151
 
133
- declare const __VLS_component_123: DefineComponent<UiSidebarMenuSubButtonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiSidebarMenuSubButtonProps> & Readonly<{}>, {
152
+ declare const __VLS_component_124: DefineComponent<UiSidebarMenuSubButtonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiSidebarMenuSubButtonProps> & Readonly<{}>, {
134
153
  asChild: boolean;
135
154
  size: UiSidebarMenuSubButtonSize;
136
155
  isActive: boolean;
137
156
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
138
157
 
139
- declare const __VLS_component_124: DefineComponent<UiSidebarProviderProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiSidebarProviderProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
158
+ declare const __VLS_component_125: DefineComponent<UiSidebarProviderProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiSidebarProviderProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
140
159
 
141
- declare const __VLS_component_125: DefineComponent<__VLS_PublicProps_12, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
160
+ declare const __VLS_component_126: DefineComponent<__VLS_PublicProps_14, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
142
161
  "update:modelValue": (value: number) => any;
143
- }, string, PublicProps, Readonly<__VLS_PublicProps_12> & Readonly<{
162
+ }, string, PublicProps, Readonly<__VLS_PublicProps_14> & Readonly<{
144
163
  "onUpdate:modelValue"?: ((value: number) => any) | undefined;
145
164
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
146
165
 
147
- declare const __VLS_component_126: DefineComponent<UiStepperItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiStepperItemProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
166
+ declare const __VLS_component_127: DefineComponent<UiStepperItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiStepperItemProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
148
167
 
149
- declare const __VLS_component_127: DefineComponent<UiStepperTriggerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiStepperTriggerProps> & Readonly<{}>, {
168
+ declare const __VLS_component_128: DefineComponent<UiStepperTriggerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiStepperTriggerProps> & Readonly<{}>, {
150
169
  asChild: boolean;
151
170
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
152
171
 
153
- declare const __VLS_component_128: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
154
-
155
172
  declare const __VLS_component_129: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
156
173
 
157
174
  declare const __VLS_component_13: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
158
175
 
159
176
  declare const __VLS_component_130: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
160
177
 
161
- declare const __VLS_component_131: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
178
+ declare const __VLS_component_131: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
162
179
 
163
- declare const __VLS_component_132: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLTableSectionElement>;
180
+ declare const __VLS_component_132: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
164
181
 
165
182
  declare const __VLS_component_133: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLTableSectionElement>;
166
183
 
167
184
  declare const __VLS_component_134: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLTableSectionElement>;
168
185
 
169
- declare const __VLS_component_135: DefineComponent<UiTableRowProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiTableRowProps> & Readonly<{}>, {
186
+ declare const __VLS_component_135: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLTableSectionElement>;
187
+
188
+ declare const __VLS_component_136: DefineComponent<UiTableRowProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiTableRowProps> & Readonly<{}>, {
170
189
  selected: boolean;
171
190
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLTableRowElement>;
172
191
 
173
- declare const __VLS_component_136: DefineComponent<UiTableHeadProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiTableHeadProps> & Readonly<{}>, {
192
+ declare const __VLS_component_137: DefineComponent<UiTableHeadProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiTableHeadProps> & Readonly<{}>, {
174
193
  scope: "col" | "row" | "colgroup" | "rowgroup";
175
194
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLTableCellElement>;
176
195
 
177
- declare const __VLS_component_137: DefineComponent<UiTableCellProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiTableCellProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLTableCellElement>;
196
+ declare const __VLS_component_138: DefineComponent<UiTableCellProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiTableCellProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLTableCellElement>;
197
+
198
+ declare const __VLS_component_139: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLTableCaptionElement>;
178
199
 
179
- declare const __VLS_component_138: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLTableCaptionElement>;
200
+ declare const __VLS_component_14: DefineComponent<UiAlertSubComponentCommonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiAlertSubComponentCommonProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
180
201
 
181
- declare const __VLS_component_139: DefineComponent<UiTableEmptyProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiTableEmptyProps> & Readonly<{}>, {
202
+ declare const __VLS_component_140: DefineComponent<UiTableEmptyProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiTableEmptyProps> & Readonly<{}>, {
182
203
  colspan: number;
183
204
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLTableRowElement>;
184
205
 
185
- declare const __VLS_component_14: DefineComponent<UiAlertSubComponentCommonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiAlertSubComponentCommonProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
186
-
187
- declare const __VLS_component_140: DefineComponent<UiTabsProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
206
+ declare const __VLS_component_141: DefineComponent<UiTabsProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
188
207
  "update:modelValue": (value: string) => any;
189
208
  }, string, PublicProps, Readonly<UiTabsProps> & Readonly<{
190
209
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
191
210
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
192
211
 
193
- declare const __VLS_component_141: DefineComponent<UiTabsListProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiTabsListProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
212
+ declare const __VLS_component_142: DefineComponent<UiTabsListProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiTabsListProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
194
213
 
195
- declare const __VLS_component_142: DefineComponent<UiTabsTriggerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiTabsTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
214
+ declare const __VLS_component_143: DefineComponent<UiTabsTriggerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiTabsTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
196
215
 
197
- declare const __VLS_component_143: DefineComponent<UiTabsContentProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiTabsContentProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
216
+ declare const __VLS_component_144: DefineComponent<UiTabsContentProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiTabsContentProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
198
217
 
199
- declare const __VLS_component_144: DefineComponent<__VLS_PublicProps_14, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
218
+ declare const __VLS_component_145: DefineComponent<__VLS_PublicProps_16, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
200
219
  "update:modelValue": (value: string[]) => any;
201
- }, string, PublicProps, Readonly<__VLS_PublicProps_14> & Readonly<{
220
+ }, string, PublicProps, Readonly<__VLS_PublicProps_16> & Readonly<{
202
221
  "onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
203
222
  }>, {
204
223
  disabled: boolean;
205
224
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
206
225
 
207
- declare const __VLS_component_145: DefineComponent<UiTagsInputItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiTagsInputItemProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
226
+ declare const __VLS_component_146: DefineComponent<UiTagsInputItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiTagsInputItemProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
208
227
 
209
- declare const __VLS_component_146: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
228
+ declare const __VLS_component_147: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
210
229
 
211
- declare const __VLS_component_147: DefineComponent<__VLS_PublicProps_16, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
230
+ declare const __VLS_component_148: DefineComponent<__VLS_PublicProps_18, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
212
231
  "update:modelValue": (value: boolean) => any;
213
- }, string, PublicProps, Readonly<__VLS_PublicProps_16> & Readonly<{
232
+ }, string, PublicProps, Readonly<__VLS_PublicProps_18> & Readonly<{
214
233
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
215
234
  }>, {
216
235
  disabled: boolean;
217
236
  size: "default" | "sm" | "lg";
218
- variant: "default" | "outline";
237
+ variant: "default" | "outline" | "soft";
219
238
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
220
239
 
221
- declare const __VLS_component_148: DefineComponent<UiToggleGroupItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiToggleGroupItemProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
240
+ declare const __VLS_component_149: DefineComponent<UiToggleGroupItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiToggleGroupItemProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
241
+
242
+ declare const __VLS_component_15: DefineComponent<UiAlertSubComponentCommonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiAlertSubComponentCommonProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
222
243
 
223
- declare const __VLS_component_149: DefineComponent<__VLS_PublicProps_17, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
244
+ declare const __VLS_component_150: DefineComponent<__VLS_PublicProps_19, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
224
245
  "update:open": (value: boolean) => any;
225
- }, string, PublicProps, Readonly<__VLS_PublicProps_17> & Readonly<{
246
+ }, string, PublicProps, Readonly<__VLS_PublicProps_19> & Readonly<{
226
247
  "onUpdate:open"?: ((value: boolean) => any) | undefined;
227
248
  }>, {
228
249
  disabled: boolean;
@@ -233,27 +254,25 @@ align: UiTooltipAlign;
233
254
  delayDuration: number;
234
255
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
235
256
 
236
- declare const __VLS_component_15: DefineComponent<UiAlertSubComponentCommonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiAlertSubComponentCommonProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
237
-
238
- declare const __VLS_component_150: DefineComponent<TooltipRootProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
257
+ declare const __VLS_component_151: DefineComponent<TooltipRootProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
239
258
  "update:open": (value: boolean) => any;
240
259
  }, string, PublicProps, Readonly<TooltipRootProps> & Readonly<{
241
260
  "onUpdate:open"?: ((value: boolean) => any) | undefined;
242
261
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
243
262
 
244
- declare const __VLS_component_151: DefineComponent<__VLS_Props_33, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
263
+ declare const __VLS_component_152: DefineComponent<__VLS_Props_35, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
245
264
  escapeKeyDown: (event: KeyboardEvent) => any;
246
265
  pointerDownOutside: (event: Event) => any;
247
- }, string, PublicProps, Readonly<__VLS_Props_33> & Readonly<{
266
+ }, string, PublicProps, Readonly<__VLS_Props_35> & Readonly<{
248
267
  onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
249
268
  onPointerDownOutside?: ((event: Event) => any) | undefined;
250
269
  }>, {
251
270
  sideOffset: number;
252
271
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
253
272
 
254
- declare const __VLS_component_152: DefineComponent<TooltipProviderProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
273
+ declare const __VLS_component_153: DefineComponent<TooltipProviderProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
255
274
 
256
- declare const __VLS_component_153: DefineComponent<TooltipTriggerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TooltipTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
275
+ declare const __VLS_component_154: DefineComponent<TooltipTriggerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TooltipTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
257
276
 
258
277
  declare const __VLS_component_16: DefineComponent<UiAlertSubComponentCommonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiAlertSubComponentCommonProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
259
278
 
@@ -316,18 +335,32 @@ declare const __VLS_component_27: DefineComponent<__VLS_Props_7, {}, {}, {}, {},
316
335
  declare const __VLS_component_28: DefineComponent<__VLS_Props_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_8> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLHeadingElement>;
317
336
 
318
337
  declare const __VLS_component_29: DefineComponent<__VLS_PublicProps_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
319
- "update:open": (value: boolean) => any;
338
+ "update:modelValue": (value: boolean) => any;
339
+ } & {
340
+ remove: () => any;
320
341
  }, string, PublicProps, Readonly<__VLS_PublicProps_4> & Readonly<{
321
- "onUpdate:open"?: ((value: boolean) => any) | undefined;
342
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
343
+ onRemove?: (() => any) | undefined;
322
344
  }>, {
323
- modal: boolean;
345
+ disabled: boolean;
346
+ variant: UiChipVariant;
347
+ selectable: boolean;
348
+ removeLabel: string;
324
349
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
325
350
 
326
351
  declare const __VLS_component_3: DefineComponent<UiAccordionTriggerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiAccordionTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
327
352
 
328
- declare const __VLS_component_30: DefineComponent<UiDrawerCloseProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiDrawerCloseProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
353
+ declare const __VLS_component_30: DefineComponent<__VLS_PublicProps_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
354
+ "update:open": (value: boolean) => any;
355
+ }, string, PublicProps, Readonly<__VLS_PublicProps_5> & Readonly<{
356
+ "onUpdate:open"?: ((value: boolean) => any) | undefined;
357
+ }>, {
358
+ modal: boolean;
359
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
360
+
361
+ declare const __VLS_component_31: DefineComponent<UiDrawerCloseProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiDrawerCloseProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
329
362
 
330
- declare const __VLS_component_31: DefineComponent<UiDrawerContentProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
363
+ declare const __VLS_component_32: DefineComponent<UiDrawerContentProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
331
364
  escapeKeyDown: (event: KeyboardEvent) => any;
332
365
  pointerDownOutside: (event: Event) => any;
333
366
  focusOutside: (event: Event) => any;
@@ -346,17 +379,17 @@ disableOutsidePointerEvents: boolean;
346
379
  showHandle: boolean;
347
380
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
348
381
 
349
- declare const __VLS_component_32: DefineComponent<UiDrawerDescriptionProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiDrawerDescriptionProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
382
+ declare const __VLS_component_33: DefineComponent<UiDrawerDescriptionProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiDrawerDescriptionProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
350
383
 
351
- declare const __VLS_component_33: DefineComponent<UiDrawerFooterProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiDrawerFooterProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
384
+ declare const __VLS_component_34: DefineComponent<UiDrawerFooterProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiDrawerFooterProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
352
385
 
353
- declare const __VLS_component_34: DefineComponent<UiDrawerHeaderProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiDrawerHeaderProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
386
+ declare const __VLS_component_35: DefineComponent<UiDrawerHeaderProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiDrawerHeaderProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
354
387
 
355
- declare const __VLS_component_35: DefineComponent<UiDrawerTitleProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiDrawerTitleProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
388
+ declare const __VLS_component_36: DefineComponent<UiDrawerTitleProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiDrawerTitleProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
356
389
 
357
- declare const __VLS_component_36: DefineComponent<UiDrawerTriggerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiDrawerTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
390
+ declare const __VLS_component_37: DefineComponent<UiDrawerTriggerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiDrawerTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
358
391
 
359
- declare const __VLS_component_37: DefineComponent<UiDropdownMenuProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
392
+ declare const __VLS_component_38: DefineComponent<UiDropdownMenuProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
360
393
  "update:open": (value: boolean) => any;
361
394
  }, string, PublicProps, Readonly<UiDropdownMenuProps> & Readonly<{
362
395
  "onUpdate:open"?: ((value: boolean) => any) | undefined;
@@ -365,13 +398,15 @@ open: boolean;
365
398
  modal: boolean;
366
399
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
367
400
 
368
- declare const __VLS_component_38: DefineComponent<UiDropdownMenuTriggerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiDropdownMenuTriggerProps> & Readonly<{}>, {
401
+ declare const __VLS_component_39: DefineComponent<UiDropdownMenuTriggerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiDropdownMenuTriggerProps> & Readonly<{}>, {
369
402
  disabled: boolean;
370
403
  asChild: boolean;
371
404
  ariaLabel: string;
372
405
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
373
406
 
374
- declare const __VLS_component_39: DefineComponent<UiDropdownMenuContentProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
407
+ declare const __VLS_component_4: DefineComponent<UiAccordionContentProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiAccordionContentProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
408
+
409
+ declare const __VLS_component_40: DefineComponent<UiDropdownMenuContentProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
375
410
  escapeKeyDown: (event: KeyboardEvent) => any;
376
411
  }, string, PublicProps, Readonly<UiDropdownMenuContentProps> & Readonly<{
377
412
  onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
@@ -381,41 +416,39 @@ sideOffset: number;
381
416
  align: "start" | "center" | "end";
382
417
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
383
418
 
384
- declare const __VLS_component_4: DefineComponent<UiAccordionContentProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiAccordionContentProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
385
-
386
- declare const __VLS_component_40: DefineComponent<UiDropdownMenuItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiDropdownMenuItemProps> & Readonly<{}>, {
419
+ declare const __VLS_component_41: DefineComponent<UiDropdownMenuItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiDropdownMenuItemProps> & Readonly<{}>, {
387
420
  disabled: boolean;
388
421
  variant: "default" | "destructive";
389
422
  textValue: string;
390
423
  inset: boolean;
391
424
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
392
425
 
393
- declare const __VLS_component_41: DefineComponent<UiDropdownMenuLabelProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiDropdownMenuLabelProps> & Readonly<{}>, {
426
+ declare const __VLS_component_42: DefineComponent<UiDropdownMenuLabelProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiDropdownMenuLabelProps> & Readonly<{}>, {
394
427
  inset: boolean;
395
428
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
396
429
 
397
- declare const __VLS_component_42: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
430
+ declare const __VLS_component_43: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
398
431
 
399
- declare const __VLS_component_43: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLSpanElement>;
432
+ declare const __VLS_component_44: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLSpanElement>;
400
433
 
401
- declare const __VLS_component_44: DefineComponent<UiDropdownMenuCheckboxItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
434
+ declare const __VLS_component_45: DefineComponent<UiDropdownMenuCheckboxItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
402
435
  "update:checked": (value: boolean) => any;
403
436
  }, string, PublicProps, Readonly<UiDropdownMenuCheckboxItemProps> & Readonly<{
404
437
  "onUpdate:checked"?: ((value: boolean) => any) | undefined;
405
438
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
406
439
 
407
- declare const __VLS_component_45: DefineComponent<UiDropdownMenuRadioGroupProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
440
+ declare const __VLS_component_46: DefineComponent<UiDropdownMenuRadioGroupProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
408
441
  "update:modelValue": (value: string) => any;
409
442
  }, string, PublicProps, Readonly<UiDropdownMenuRadioGroupProps> & Readonly<{
410
443
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
411
444
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
412
445
 
413
- declare const __VLS_component_46: DefineComponent<UiDropdownMenuRadioItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiDropdownMenuRadioItemProps> & Readonly<{}>, {
446
+ declare const __VLS_component_47: DefineComponent<UiDropdownMenuRadioItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiDropdownMenuRadioItemProps> & Readonly<{}>, {
414
447
  disabled: boolean;
415
448
  textValue: string;
416
449
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
417
450
 
418
- declare const __VLS_component_47: DefineComponent<UiDropdownMenuSubProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
451
+ declare const __VLS_component_48: DefineComponent<UiDropdownMenuSubProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
419
452
  "update:open": (value: boolean) => any;
420
453
  }, string, PublicProps, Readonly<UiDropdownMenuSubProps> & Readonly<{
421
454
  "onUpdate:open"?: ((value: boolean) => any) | undefined;
@@ -424,13 +457,17 @@ open: boolean;
424
457
  defaultOpen: boolean;
425
458
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
426
459
 
427
- declare const __VLS_component_48: DefineComponent<UiDropdownMenuSubTriggerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiDropdownMenuSubTriggerProps> & Readonly<{}>, {
460
+ declare const __VLS_component_49: DefineComponent<UiDropdownMenuSubTriggerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiDropdownMenuSubTriggerProps> & Readonly<{}>, {
428
461
  disabled: boolean;
429
462
  textValue: string;
430
463
  inset: boolean;
431
464
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
432
465
 
433
- declare const __VLS_component_49: DefineComponent<UiDropdownMenuSubContentProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
466
+ declare const __VLS_component_5: DefineComponent<UiAlertProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiAlertProps> & Readonly<{}>, {
467
+ variant: UiAlertVariants;
468
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
469
+
470
+ declare const __VLS_component_50: DefineComponent<UiDropdownMenuSubContentProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
434
471
  escapeKeyDown: (event: KeyboardEvent) => any;
435
472
  }, string, PublicProps, Readonly<UiDropdownMenuSubContentProps> & Readonly<{
436
473
  onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
@@ -438,41 +475,46 @@ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
438
475
  sideOffset: number;
439
476
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
440
477
 
441
- declare const __VLS_component_5: DefineComponent<UiAlertProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiAlertProps> & Readonly<{}>, {
442
- variant: UiAlertVariants;
443
- }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
444
-
445
- declare const __VLS_component_50: DefineComponent<UiEmptyProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiEmptyProps> & Readonly<{}>, {
478
+ declare const __VLS_component_51: DefineComponent<UiEmptyProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiEmptyProps> & Readonly<{}>, {
446
479
  title: string;
447
480
  icon: Component;
448
481
  description: string;
449
482
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
450
483
 
451
- declare const __VLS_component_51: DefineComponent<UiFieldProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiFieldProps> & Readonly<{}>, {
484
+ declare const __VLS_component_52: DefineComponent<UiFieldProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiFieldProps> & Readonly<{}>, {
452
485
  orientation: UiFieldOrientation;
486
+ descriptionPlacement: UiFieldDescriptionPlacement;
487
+ descriptionCheckbox: boolean;
453
488
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
454
489
 
455
- declare const __VLS_component_52: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
456
-
457
- declare const __VLS_component_53: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLParagraphElement>;
490
+ declare const __VLS_component_53: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
458
491
 
459
- declare const __VLS_component_54: DefineComponent<UiFieldErrorProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiFieldErrorProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
492
+ declare const __VLS_component_54: DefineComponent<__VLS_PublicProps_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
493
+ "update:modelValue": (value: UiCheckboxModelValue) => any;
494
+ }, string, PublicProps, Readonly<__VLS_PublicProps_6> & Readonly<{
495
+ "onUpdate:modelValue"?: ((value: UiCheckboxModelValue) => any) | undefined;
496
+ }>, {
497
+ disabled: boolean;
498
+ variant: UiFieldDescriptionVariant;
499
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
460
500
 
461
- declare const __VLS_component_55: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
501
+ declare const __VLS_component_55: DefineComponent<UiFieldErrorProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiFieldErrorProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
462
502
 
463
- declare const __VLS_component_56: DefineComponent<UiFieldLabelProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiFieldLabelProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
503
+ declare const __VLS_component_56: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
464
504
 
465
- declare const __VLS_component_57: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLLegendElement>;
505
+ declare const __VLS_component_57: DefineComponent<UiFieldLabelProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiFieldLabelProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
466
506
 
467
- declare const __VLS_component_58: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
507
+ declare const __VLS_component_58: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLLegendElement>;
468
508
 
469
- declare const __VLS_component_59: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLFieldSetElement>;
509
+ declare const __VLS_component_59: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
470
510
 
471
511
  declare const __VLS_component_6: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
472
512
 
473
- declare const __VLS_component_60: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
513
+ declare const __VLS_component_60: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLFieldSetElement>;
514
+
515
+ declare const __VLS_component_61: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
474
516
 
475
- declare const __VLS_component_61: DefineComponent<UiIconButtonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiIconButtonProps> & Readonly<{}>, {
517
+ declare const __VLS_component_62: DefineComponent<UiIconButtonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiIconButtonProps> & Readonly<{}>, {
476
518
  disabled: boolean;
477
519
  asChild: boolean;
478
520
  type: "button" | "submit" | "reset";
@@ -481,43 +523,43 @@ variant: UiIconButtonVariant;
481
523
  loading: boolean;
482
524
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
483
525
 
484
- declare const __VLS_component_62: DefineComponent<UiItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiItemProps> & Readonly<{}>, {
526
+ declare const __VLS_component_63: DefineComponent<UiItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiItemProps> & Readonly<{}>, {
485
527
  asChild: boolean;
486
528
  size: UiItemSizes;
487
529
  variant: UiItemVariants;
488
530
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
489
531
 
490
- declare const __VLS_component_63: DefineComponent<UiItemMediaProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiItemMediaProps> & Readonly<{}>, {
532
+ declare const __VLS_component_64: DefineComponent<UiItemMediaProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiItemMediaProps> & Readonly<{}>, {
491
533
  variant: UiItemMediaVariants;
492
534
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
493
535
 
494
- declare const __VLS_component_64: DefineComponent<__VLS_Props_12, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_12> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
495
-
496
- declare const __VLS_component_65: DefineComponent<__VLS_Props_13, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_13> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
536
+ declare const __VLS_component_65: DefineComponent<__VLS_Props_14, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_14> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
497
537
 
498
- declare const __VLS_component_66: DefineComponent<__VLS_Props_14, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_14> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLParagraphElement>;
538
+ declare const __VLS_component_66: DefineComponent<__VLS_Props_15, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_15> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
499
539
 
500
- declare const __VLS_component_67: DefineComponent<__VLS_Props_15, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_15> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
540
+ declare const __VLS_component_67: DefineComponent<__VLS_Props_16, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_16> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLParagraphElement>;
501
541
 
502
- declare const __VLS_component_68: DefineComponent<__VLS_Props_16, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_16> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
542
+ declare const __VLS_component_68: DefineComponent<__VLS_Props_17, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_17> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
503
543
 
504
- declare const __VLS_component_69: DefineComponent<__VLS_Props_17, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_17> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
544
+ declare const __VLS_component_69: DefineComponent<__VLS_Props_18, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_18> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
505
545
 
506
546
  declare const __VLS_component_7: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
507
547
 
508
548
  declare const __VLS_component_70: DefineComponent<__VLS_Props_19, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_19> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
509
549
 
510
- declare const __VLS_component_71: DefineComponent<UiKbdProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiKbdProps> & Readonly<{}>, {
550
+ declare const __VLS_component_71: DefineComponent<__VLS_Props_21, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_21> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
551
+
552
+ declare const __VLS_component_72: DefineComponent<UiKbdProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiKbdProps> & Readonly<{}>, {
511
553
  size: "sm" | "default" | "lg";
512
554
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
513
555
 
514
- declare const __VLS_component_72: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLSpanElement>;
556
+ declare const __VLS_component_73: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLSpanElement>;
515
557
 
516
- declare const __VLS_component_73: DefineComponent<UiLabelProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiLabelProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
558
+ declare const __VLS_component_74: DefineComponent<UiLabelProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiLabelProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
517
559
 
518
- declare const __VLS_component_74: DefineComponent<__VLS_PublicProps_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
560
+ declare const __VLS_component_75: DefineComponent<__VLS_PublicProps_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
519
561
  "update:modelValue": (value: AcceptableValue | AcceptableValue[]) => any;
520
- }, string, PublicProps, Readonly<__VLS_PublicProps_6> & Readonly<{
562
+ }, string, PublicProps, Readonly<__VLS_PublicProps_8> & Readonly<{
521
563
  "onUpdate:modelValue"?: ((value: AcceptableValue | AcceptableValue[]) => any) | undefined;
522
564
  }>, {
523
565
  disabled: boolean;
@@ -525,16 +567,14 @@ multiple: boolean;
525
567
  highlightOnHover: boolean;
526
568
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
527
569
 
528
- declare const __VLS_component_75: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
570
+ declare const __VLS_component_76: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
529
571
 
530
- declare const __VLS_component_76: DefineComponent<UiListboxItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
572
+ declare const __VLS_component_77: DefineComponent<UiListboxItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
531
573
  select: (event: Event) => any;
532
574
  }, string, PublicProps, Readonly<UiListboxItemProps> & Readonly<{
533
575
  onSelect?: ((event: Event) => any) | undefined;
534
576
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
535
577
 
536
- declare const __VLS_component_77: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
537
-
538
578
  declare const __VLS_component_78: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
539
579
 
540
580
  declare const __VLS_component_79: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
@@ -545,7 +585,9 @@ declare const __VLS_component_8: DefineComponent<__VLS_PublicProps, {}, {}, {},
545
585
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
546
586
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
547
587
 
548
- declare const __VLS_component_80: DefineComponent<UiNavigationMenuProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
588
+ declare const __VLS_component_80: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
589
+
590
+ declare const __VLS_component_81: DefineComponent<UiNavigationMenuProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
549
591
  "update:modelValue": (value: string) => any;
550
592
  }, string, PublicProps, Readonly<UiNavigationMenuProps> & Readonly<{
551
593
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
@@ -561,13 +603,13 @@ disableHoverTrigger: boolean;
561
603
  viewport: boolean;
562
604
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
563
605
 
564
- declare const __VLS_component_81: DefineComponent<UiNavigationMenuListProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiNavigationMenuListProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
606
+ declare const __VLS_component_82: DefineComponent<UiNavigationMenuListProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiNavigationMenuListProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
565
607
 
566
- declare const __VLS_component_82: DefineComponent<UiNavigationMenuItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiNavigationMenuItemProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
608
+ declare const __VLS_component_83: DefineComponent<UiNavigationMenuItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiNavigationMenuItemProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
567
609
 
568
- declare const __VLS_component_83: DefineComponent<UiNavigationMenuTriggerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiNavigationMenuTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
610
+ declare const __VLS_component_84: DefineComponent<UiNavigationMenuTriggerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiNavigationMenuTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
569
611
 
570
- declare const __VLS_component_84: DefineComponent<UiNavigationMenuContentProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
612
+ declare const __VLS_component_85: DefineComponent<UiNavigationMenuContentProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
571
613
  escapeKeyDown: (event: KeyboardEvent) => any;
572
614
  outsideClick: (event: Event) => any;
573
615
  outsideFocus: (event: Event) => any;
@@ -579,7 +621,7 @@ onOutsideFocus?: ((event: Event) => any) | undefined;
579
621
  onOutsideInteract?: ((event: Event) => any) | undefined;
580
622
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
581
623
 
582
- declare const __VLS_component_85: DefineComponent<UiNavigationMenuLinkProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
624
+ declare const __VLS_component_86: DefineComponent<UiNavigationMenuLinkProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
583
625
  select: (event: CustomEvent<{
584
626
  originalEvent: Event;
585
627
  }>) => any;
@@ -589,15 +631,15 @@ originalEvent: Event;
589
631
  }>) => any) | undefined;
590
632
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
591
633
 
592
- declare const __VLS_component_86: DefineComponent<__VLS_PublicProps_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
634
+ declare const __VLS_component_87: DefineComponent<__VLS_PublicProps_10, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
593
635
  "update:open": (value: boolean) => any;
594
- }, string, PublicProps, Readonly<__VLS_PublicProps_8> & Readonly<{
636
+ }, string, PublicProps, Readonly<__VLS_PublicProps_10> & Readonly<{
595
637
  "onUpdate:open"?: ((value: boolean) => any) | undefined;
596
638
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
597
639
 
598
- declare const __VLS_component_87: DefineComponent<UiPopoverTriggerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiPopoverTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
640
+ declare const __VLS_component_88: DefineComponent<UiPopoverTriggerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiPopoverTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
599
641
 
600
- declare const __VLS_component_88: DefineComponent<UiPopoverContentProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
642
+ declare const __VLS_component_89: DefineComponent<UiPopoverContentProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
601
643
  escapeKeyDown: (event: KeyboardEvent) => any;
602
644
  }, string, PublicProps, Readonly<UiPopoverContentProps> & Readonly<{
603
645
  onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
@@ -607,9 +649,11 @@ sideOffset: number;
607
649
  align: UiPopoverAlign;
608
650
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
609
651
 
610
- declare const __VLS_component_89: DefineComponent<__VLS_PublicProps_10, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
652
+ declare const __VLS_component_9: DefineComponent<UiAlertSubComponentCommonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiAlertSubComponentCommonProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
653
+
654
+ declare const __VLS_component_90: DefineComponent<__VLS_PublicProps_12, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
611
655
  "update:modelValue": (value: string) => any;
612
- }, string, PublicProps, Readonly<__VLS_PublicProps_10> & Readonly<{
656
+ }, string, PublicProps, Readonly<__VLS_PublicProps_12> & Readonly<{
613
657
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
614
658
  }>, {
615
659
  disabled: boolean;
@@ -620,9 +664,7 @@ required: boolean;
620
664
  loop: boolean;
621
665
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
622
666
 
623
- declare const __VLS_component_9: DefineComponent<UiAlertSubComponentCommonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiAlertSubComponentCommonProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
624
-
625
- declare const __VLS_component_90: DefineComponent<UiSelectProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
667
+ declare const __VLS_component_91: DefineComponent<UiSelectProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
626
668
  "update:modelValue": (value: string) => any;
627
669
  "update:open": (value: boolean) => any;
628
670
  }, string, PublicProps, Readonly<UiSelectProps> & Readonly<{
@@ -639,13 +681,13 @@ name: string;
639
681
  required: boolean;
640
682
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
641
683
 
642
- declare const __VLS_component_91: DefineComponent<UiSelectTriggerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiSelectTriggerProps> & Readonly<{}>, {
684
+ declare const __VLS_component_92: DefineComponent<UiSelectTriggerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiSelectTriggerProps> & Readonly<{}>, {
643
685
  disabled: boolean;
644
686
  size: "default" | "sm";
645
687
  ariaLabel: string;
646
688
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
647
689
 
648
- declare const __VLS_component_92: DefineComponent<UiSelectContentProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
690
+ declare const __VLS_component_93: DefineComponent<UiSelectContentProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
649
691
  escapeKeyDown: (event: KeyboardEvent) => any;
650
692
  pointerDownOutside: (event: Event) => any;
651
693
  }, string, PublicProps, Readonly<UiSelectContentProps> & Readonly<{
@@ -658,45 +700,26 @@ align: "start" | "center" | "end";
658
700
  position: "item-aligned" | "popper";
659
701
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
660
702
 
661
- declare const __VLS_component_93: DefineComponent<UiSelectItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiSelectItemProps> & Readonly<{}>, {
703
+ declare const __VLS_component_94: DefineComponent<UiSelectItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiSelectItemProps> & Readonly<{}>, {
662
704
  disabled: boolean;
663
705
  textValue: string;
664
706
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
665
707
 
666
- declare const __VLS_component_94: DefineComponent<UiSelectValueProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiSelectValueProps> & Readonly<{}>, {
708
+ declare const __VLS_component_95: DefineComponent<UiSelectValueProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiSelectValueProps> & Readonly<{}>, {
667
709
  placeholder: string;
668
710
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
669
711
 
670
- declare const __VLS_component_95: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
671
-
672
712
  declare const __VLS_component_96: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
673
713
 
674
- declare const __VLS_component_97: DefineComponent<DialogRootProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
714
+ declare const __VLS_component_97: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
715
+
716
+ declare const __VLS_component_98: DefineComponent<DialogRootProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
675
717
  "update:open": (value: boolean) => any;
676
718
  }, string, PublicProps, Readonly<DialogRootProps> & Readonly<{
677
719
  "onUpdate:open"?: ((value: boolean) => any) | undefined;
678
720
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
679
721
 
680
- declare const __VLS_component_98: DefineComponent<DialogTriggerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<DialogTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
681
-
682
- declare const __VLS_component_99: DefineComponent<__VLS_Props_26, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
683
- escapeKeyDown: (event: KeyboardEvent) => any;
684
- pointerDownOutside: (event: PointerDownOutsideEvent) => any;
685
- focusOutside: (event: FocusOutsideEvent) => any;
686
- interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any;
687
- openAutoFocus: (event: Event) => any;
688
- closeAutoFocus: (event: Event) => any;
689
- }, string, PublicProps, Readonly<__VLS_Props_26> & Readonly<{
690
- onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
691
- onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
692
- onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
693
- onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined;
694
- onOpenAutoFocus?: ((event: Event) => any) | undefined;
695
- onCloseAutoFocus?: ((event: Event) => any) | undefined;
696
- }>, {
697
- side: "top" | "right" | "bottom" | "left";
698
- closeLabel: string;
699
- }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
722
+ declare const __VLS_component_99: DefineComponent<DialogTriggerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<DialogTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
700
723
 
701
724
  declare type __VLS_PrettifyLocal<T> = {
702
725
  [K in keyof T]: T[K];
@@ -720,17 +743,13 @@ declare type __VLS_PrettifyLocal_5<T> = {
720
743
 
721
744
  declare type __VLS_Props = UiCalendarProps;
722
745
 
723
- declare type __VLS_Props_10 = UiDrawerProps;
746
+ declare type __VLS_Props_10 = UiChipProps;
724
747
 
725
- declare type __VLS_Props_11 = UiInputProps;
748
+ declare type __VLS_Props_11 = UiDrawerProps;
726
749
 
727
- declare type __VLS_Props_12 = {
728
- class?: HTMLAttributes['class'];
729
- };
750
+ declare type __VLS_Props_12 = UiFieldDescriptionProps;
730
751
 
731
- declare type __VLS_Props_13 = {
732
- class?: HTMLAttributes['class'];
733
- };
752
+ declare type __VLS_Props_13 = UiInputProps;
734
753
 
735
754
  declare type __VLS_Props_14 = {
736
755
  class?: HTMLAttributes['class'];
@@ -748,7 +767,7 @@ declare type __VLS_Props_17 = {
748
767
  class?: HTMLAttributes['class'];
749
768
  };
750
769
 
751
- declare type __VLS_Props_18 = SeparatorProps & {
770
+ declare type __VLS_Props_18 = {
752
771
  class?: HTMLAttributes['class'];
753
772
  };
754
773
 
@@ -760,44 +779,52 @@ declare type __VLS_Props_2 = {
760
779
  class?: HTMLAttributes['class'];
761
780
  };
762
781
 
763
- declare type __VLS_Props_20 = UiListboxProps;
782
+ declare type __VLS_Props_20 = SeparatorProps & {
783
+ class?: HTMLAttributes['class'];
784
+ };
764
785
 
765
- declare type __VLS_Props_21 = UiListboxFilterProps;
786
+ declare type __VLS_Props_21 = {
787
+ class?: HTMLAttributes['class'];
788
+ };
789
+
790
+ declare type __VLS_Props_22 = UiListboxProps;
766
791
 
767
- declare type __VLS_Props_22 = UiPopoverProps;
792
+ declare type __VLS_Props_23 = UiListboxFilterProps;
768
793
 
769
- declare type __VLS_Props_23 = UiProgressProps;
794
+ declare type __VLS_Props_24 = UiPopoverProps;
770
795
 
771
- declare type __VLS_Props_24 = UiRadioGroupProps;
796
+ declare type __VLS_Props_25 = UiProgressProps;
772
797
 
773
- declare type __VLS_Props_25 = UiRangeCalendarProps;
798
+ declare type __VLS_Props_26 = UiRadioGroupProps;
774
799
 
775
- declare type __VLS_Props_26 = DialogContentProps & {
800
+ declare type __VLS_Props_27 = UiRangeCalendarProps;
801
+
802
+ declare type __VLS_Props_28 = DialogContentProps & {
776
803
  side?: 'top' | 'right' | 'bottom' | 'left';
777
804
  closeLabel?: string;
778
805
  };
779
806
 
780
- declare type __VLS_Props_27 = UiStepperProps;
781
-
782
- declare type __VLS_Props_28 = UiSwitchProps;
783
-
784
- declare type __VLS_Props_29 = UiTagsInputProps;
807
+ declare type __VLS_Props_29 = UiStepperProps;
785
808
 
786
809
  declare type __VLS_Props_3 = {
787
810
  class?: HTMLAttributes['class'];
788
811
  };
789
812
 
790
- declare type __VLS_Props_30 = UiTextareaProps;
813
+ declare type __VLS_Props_30 = UiSwitchProps;
814
+
815
+ declare type __VLS_Props_31 = UiTagsInputProps;
816
+
817
+ declare type __VLS_Props_32 = UiTextareaProps;
791
818
 
792
- declare type __VLS_Props_31 = UiToggleProps;
819
+ declare type __VLS_Props_33 = UiToggleProps;
793
820
 
794
- declare type __VLS_Props_32 = UiTooltipProps;
821
+ declare type __VLS_Props_34 = UiTooltipProps;
795
822
 
796
- declare type __VLS_Props_33 = TooltipContentProps & {
823
+ declare type __VLS_Props_35 = TooltipContentProps & {
797
824
  class?: HTMLAttributes['class'];
798
825
  };
799
826
 
800
- declare type __VLS_Props_34 = UiDatePickerProps;
827
+ declare type __VLS_Props_36 = UiDatePickerProps;
801
828
 
802
829
  declare type __VLS_Props_4 = {
803
830
  class?: HTMLAttributes['class'];
@@ -826,40 +853,43 @@ declare type __VLS_PublicProps = {
826
853
  };
827
854
 
828
855
  declare type __VLS_PublicProps_10 = {
829
- modelValue?: string;
856
+ 'open'?: boolean;
830
857
  } & __VLS_Props_24;
831
858
 
832
859
  declare type __VLS_PublicProps_11 = {
833
- modelValue?: UiRangeCalendarProps['modelValue'];
834
- 'placeholder'?: UiRangeCalendarProps['placeholder'];
860
+ modelValue?: number;
835
861
  } & __VLS_Props_25;
836
862
 
837
863
  declare type __VLS_PublicProps_12 = {
838
- modelValue?: number;
839
- } & __VLS_Props_27;
864
+ modelValue?: string;
865
+ } & __VLS_Props_26;
840
866
 
841
867
  declare type __VLS_PublicProps_13 = {
842
- modelValue?: boolean;
843
- } & __VLS_Props_28;
868
+ modelValue?: UiRangeCalendarProps['modelValue'];
869
+ 'placeholder'?: UiRangeCalendarProps['placeholder'];
870
+ } & __VLS_Props_27;
844
871
 
845
872
  declare type __VLS_PublicProps_14 = {
846
- modelValue?: string[];
873
+ modelValue?: number;
847
874
  } & __VLS_Props_29;
848
875
 
849
876
  declare type __VLS_PublicProps_15 = {
850
- modelValue?: string;
877
+ modelValue?: boolean;
851
878
  } & __VLS_Props_30;
852
879
 
853
880
  declare type __VLS_PublicProps_16 = {
854
- modelValue?: boolean;
881
+ modelValue?: string[];
855
882
  } & __VLS_Props_31;
856
883
 
857
884
  declare type __VLS_PublicProps_17 = {
858
- 'open'?: boolean;
885
+ modelValue?: string;
859
886
  } & __VLS_Props_32;
860
887
 
861
888
  declare type __VLS_PublicProps_18 = {
862
- modelValue?: UiDatePickerProps['modelValue'];
889
+ modelValue?: boolean;
890
+ } & __VLS_Props_33;
891
+
892
+ declare type __VLS_PublicProps_19 = {
863
893
  'open'?: boolean;
864
894
  } & __VLS_Props_34;
865
895
 
@@ -868,32 +898,37 @@ declare type __VLS_PublicProps_2 = {
868
898
  'placeholder'?: UiCalendarProps['placeholder'];
869
899
  } & __VLS_Props;
870
900
 
901
+ declare type __VLS_PublicProps_20 = {
902
+ modelValue?: UiDatePickerProps['modelValue'];
903
+ 'open'?: boolean;
904
+ } & __VLS_Props_36;
905
+
871
906
  declare type __VLS_PublicProps_3 = {
872
907
  modelValue?: UiCheckboxModelValue;
873
908
  } & __VLS_Props_9;
874
909
 
875
910
  declare type __VLS_PublicProps_4 = {
876
- 'open'?: boolean;
911
+ modelValue?: boolean;
877
912
  } & __VLS_Props_10;
878
913
 
879
914
  declare type __VLS_PublicProps_5 = {
880
- modelValue?: string;
915
+ 'open'?: boolean;
881
916
  } & __VLS_Props_11;
882
917
 
883
918
  declare type __VLS_PublicProps_6 = {
884
- modelValue?: AcceptableValue | AcceptableValue[];
885
- } & __VLS_Props_20;
919
+ modelValue?: UiCheckboxModelValue;
920
+ } & __VLS_Props_12;
886
921
 
887
922
  declare type __VLS_PublicProps_7 = {
888
923
  modelValue?: string;
889
- } & __VLS_Props_21;
924
+ } & __VLS_Props_13;
890
925
 
891
926
  declare type __VLS_PublicProps_8 = {
892
- 'open'?: boolean;
927
+ modelValue?: AcceptableValue | AcceptableValue[];
893
928
  } & __VLS_Props_22;
894
929
 
895
930
  declare type __VLS_PublicProps_9 = {
896
- modelValue?: number;
931
+ modelValue?: string;
897
932
  } & __VLS_Props_23;
898
933
 
899
934
  declare function __VLS_template(): {
@@ -929,7 +964,7 @@ declare function __VLS_template_101(): {
929
964
  default?(_: {}): any;
930
965
  };
931
966
  refs: {};
932
- rootEl: HTMLDivElement;
967
+ rootEl: any;
933
968
  };
934
969
 
935
970
  declare function __VLS_template_102(): {
@@ -947,7 +982,7 @@ declare function __VLS_template_103(): {
947
982
  default?(_: {}): any;
948
983
  };
949
984
  refs: {};
950
- rootEl: any;
985
+ rootEl: HTMLDivElement;
951
986
  };
952
987
 
953
988
  declare function __VLS_template_104(): {
@@ -1115,8 +1150,6 @@ declare function __VLS_template_12(): {
1115
1150
  declare function __VLS_template_120(): {
1116
1151
  attrs: Partial<{}>;
1117
1152
  slots: {
1118
- logo?(_: {}): any;
1119
- logo?(_: {}): any;
1120
1153
  default?(_: {}): any;
1121
1154
  };
1122
1155
  refs: {};
@@ -1126,6 +1159,8 @@ declare function __VLS_template_120(): {
1126
1159
  declare function __VLS_template_121(): {
1127
1160
  attrs: Partial<{}>;
1128
1161
  slots: {
1162
+ logo?(_: {}): any;
1163
+ logo?(_: {}): any;
1129
1164
  default?(_: {}): any;
1130
1165
  };
1131
1166
  refs: {};
@@ -1160,6 +1195,15 @@ declare function __VLS_template_124(): {
1160
1195
  };
1161
1196
 
1162
1197
  declare function __VLS_template_125(): {
1198
+ attrs: Partial<{}>;
1199
+ slots: {
1200
+ default?(_: {}): any;
1201
+ };
1202
+ refs: {};
1203
+ rootEl: any;
1204
+ };
1205
+
1206
+ declare function __VLS_template_126(): {
1163
1207
  attrs: Partial<{}>;
1164
1208
  slots: {
1165
1209
  default?(_: {
@@ -1180,19 +1224,10 @@ declare function __VLS_template_125(): {
1180
1224
  rootEl: any;
1181
1225
  };
1182
1226
 
1183
- declare function __VLS_template_126(): {
1184
- attrs: Partial<{}>;
1185
- slots: {
1186
- default?(_: any): any;
1187
- };
1188
- refs: {};
1189
- rootEl: any;
1190
- };
1191
-
1192
1227
  declare function __VLS_template_127(): {
1193
1228
  attrs: Partial<{}>;
1194
1229
  slots: {
1195
- default?(_: {}): any;
1230
+ default?(_: any): any;
1196
1231
  };
1197
1232
  refs: {};
1198
1233
  rootEl: any;
@@ -1201,7 +1236,7 @@ declare function __VLS_template_127(): {
1201
1236
  declare function __VLS_template_128(): {
1202
1237
  attrs: Partial<{}>;
1203
1238
  slots: {
1204
- default?(_: any): any;
1239
+ default?(_: {}): any;
1205
1240
  };
1206
1241
  refs: {};
1207
1242
  rootEl: any;
@@ -1210,7 +1245,7 @@ declare function __VLS_template_128(): {
1210
1245
  declare function __VLS_template_129(): {
1211
1246
  attrs: Partial<{}>;
1212
1247
  slots: {
1213
- default?(_: {}): any;
1248
+ default?(_: any): any;
1214
1249
  };
1215
1250
  refs: {};
1216
1251
  rootEl: any;
@@ -1228,7 +1263,7 @@ declare function __VLS_template_13(): {
1228
1263
  declare function __VLS_template_130(): {
1229
1264
  attrs: Partial<{}>;
1230
1265
  slots: {
1231
- default?(_: any): any;
1266
+ default?(_: {}): any;
1232
1267
  };
1233
1268
  refs: {};
1234
1269
  rootEl: any;
@@ -1237,10 +1272,10 @@ declare function __VLS_template_130(): {
1237
1272
  declare function __VLS_template_131(): {
1238
1273
  attrs: Partial<{}>;
1239
1274
  slots: {
1240
- default?(_: {}): any;
1275
+ default?(_: any): any;
1241
1276
  };
1242
1277
  refs: {};
1243
- rootEl: HTMLDivElement;
1278
+ rootEl: any;
1244
1279
  };
1245
1280
 
1246
1281
  declare function __VLS_template_132(): {
@@ -1249,7 +1284,7 @@ declare function __VLS_template_132(): {
1249
1284
  default?(_: {}): any;
1250
1285
  };
1251
1286
  refs: {};
1252
- rootEl: HTMLTableSectionElement;
1287
+ rootEl: HTMLDivElement;
1253
1288
  };
1254
1289
 
1255
1290
  declare function __VLS_template_133(): {
@@ -1276,7 +1311,7 @@ declare function __VLS_template_135(): {
1276
1311
  default?(_: {}): any;
1277
1312
  };
1278
1313
  refs: {};
1279
- rootEl: HTMLTableRowElement;
1314
+ rootEl: HTMLTableSectionElement;
1280
1315
  };
1281
1316
 
1282
1317
  declare function __VLS_template_136(): {
@@ -1285,7 +1320,7 @@ declare function __VLS_template_136(): {
1285
1320
  default?(_: {}): any;
1286
1321
  };
1287
1322
  refs: {};
1288
- rootEl: HTMLTableCellElement;
1323
+ rootEl: HTMLTableRowElement;
1289
1324
  };
1290
1325
 
1291
1326
  declare function __VLS_template_137(): {
@@ -1303,7 +1338,7 @@ declare function __VLS_template_138(): {
1303
1338
  default?(_: {}): any;
1304
1339
  };
1305
1340
  refs: {};
1306
- rootEl: HTMLTableCaptionElement;
1341
+ rootEl: HTMLTableCellElement;
1307
1342
  };
1308
1343
 
1309
1344
  declare function __VLS_template_139(): {
@@ -1312,7 +1347,7 @@ declare function __VLS_template_139(): {
1312
1347
  default?(_: {}): any;
1313
1348
  };
1314
1349
  refs: {};
1315
- rootEl: HTMLTableRowElement;
1350
+ rootEl: HTMLTableCaptionElement;
1316
1351
  };
1317
1352
 
1318
1353
  declare function __VLS_template_14(): {
@@ -1330,7 +1365,7 @@ declare function __VLS_template_140(): {
1330
1365
  default?(_: {}): any;
1331
1366
  };
1332
1367
  refs: {};
1333
- rootEl: any;
1368
+ rootEl: HTMLTableRowElement;
1334
1369
  };
1335
1370
 
1336
1371
  declare function __VLS_template_141(): {
@@ -1363,9 +1398,7 @@ declare function __VLS_template_143(): {
1363
1398
  declare function __VLS_template_144(): {
1364
1399
  attrs: Partial<{}>;
1365
1400
  slots: {
1366
- default?(_: {
1367
- modelValue: AcceptableInputValue[];
1368
- }): any;
1401
+ default?(_: {}): any;
1369
1402
  };
1370
1403
  refs: {};
1371
1404
  rootEl: any;
@@ -1374,7 +1407,9 @@ declare function __VLS_template_144(): {
1374
1407
  declare function __VLS_template_145(): {
1375
1408
  attrs: Partial<{}>;
1376
1409
  slots: {
1377
- default?(_: {}): any;
1410
+ default?(_: {
1411
+ modelValue: AcceptableInputValue[];
1412
+ }): any;
1378
1413
  };
1379
1414
  refs: {};
1380
1415
  rootEl: any;
@@ -1461,6 +1496,15 @@ declare function __VLS_template_153(): {
1461
1496
  rootEl: any;
1462
1497
  };
1463
1498
 
1499
+ declare function __VLS_template_154(): {
1500
+ attrs: Partial<{}>;
1501
+ slots: {
1502
+ default?(_: {}): any;
1503
+ };
1504
+ refs: {};
1505
+ rootEl: any;
1506
+ };
1507
+
1464
1508
  declare function __VLS_template_16(): {
1465
1509
  attrs: Partial<{}>;
1466
1510
  slots: {
@@ -1601,6 +1645,8 @@ declare function __VLS_template_29(): {
1601
1645
  attrs: Partial<{}>;
1602
1646
  slots: {
1603
1647
  default?(_: {}): any;
1648
+ default?(_: {}): any;
1649
+ default?(_: {}): any;
1604
1650
  };
1605
1651
  refs: {};
1606
1652
  rootEl: any;
@@ -1649,7 +1695,7 @@ declare function __VLS_template_33(): {
1649
1695
  default?(_: {}): any;
1650
1696
  };
1651
1697
  refs: {};
1652
- rootEl: HTMLDivElement;
1698
+ rootEl: any;
1653
1699
  };
1654
1700
 
1655
1701
  declare function __VLS_template_34(): {
@@ -1667,7 +1713,7 @@ declare function __VLS_template_35(): {
1667
1713
  default?(_: {}): any;
1668
1714
  };
1669
1715
  refs: {};
1670
- rootEl: any;
1716
+ rootEl: HTMLDivElement;
1671
1717
  };
1672
1718
 
1673
1719
  declare function __VLS_template_36(): {
@@ -1748,22 +1794,22 @@ declare function __VLS_template_43(): {
1748
1794
  default?(_: {}): any;
1749
1795
  };
1750
1796
  refs: {};
1751
- rootEl: HTMLSpanElement;
1797
+ rootEl: any;
1752
1798
  };
1753
1799
 
1754
1800
  declare function __VLS_template_44(): {
1755
1801
  attrs: Partial<{}>;
1756
1802
  slots: {
1757
- 'indicator-icon'?(_: {}): any;
1758
1803
  default?(_: {}): any;
1759
1804
  };
1760
1805
  refs: {};
1761
- rootEl: any;
1806
+ rootEl: HTMLSpanElement;
1762
1807
  };
1763
1808
 
1764
1809
  declare function __VLS_template_45(): {
1765
1810
  attrs: Partial<{}>;
1766
1811
  slots: {
1812
+ 'indicator-icon'?(_: {}): any;
1767
1813
  default?(_: {}): any;
1768
1814
  };
1769
1815
  refs: {};
@@ -1773,7 +1819,6 @@ declare function __VLS_template_45(): {
1773
1819
  declare function __VLS_template_46(): {
1774
1820
  attrs: Partial<{}>;
1775
1821
  slots: {
1776
- 'indicator-icon'?(_: {}): any;
1777
1822
  default?(_: {}): any;
1778
1823
  };
1779
1824
  refs: {};
@@ -1783,7 +1828,8 @@ declare function __VLS_template_46(): {
1783
1828
  declare function __VLS_template_47(): {
1784
1829
  attrs: Partial<{}>;
1785
1830
  slots: {
1786
- default?(_: any): any;
1831
+ 'indicator-icon'?(_: {}): any;
1832
+ default?(_: {}): any;
1787
1833
  };
1788
1834
  refs: {};
1789
1835
  rootEl: any;
@@ -1792,7 +1838,7 @@ declare function __VLS_template_47(): {
1792
1838
  declare function __VLS_template_48(): {
1793
1839
  attrs: Partial<{}>;
1794
1840
  slots: {
1795
- default?(_: {}): any;
1841
+ default?(_: any): any;
1796
1842
  };
1797
1843
  refs: {};
1798
1844
  rootEl: any;
@@ -1822,7 +1868,7 @@ declare function __VLS_template_50(): {
1822
1868
  default?(_: {}): any;
1823
1869
  };
1824
1870
  refs: {};
1825
- rootEl: HTMLDivElement;
1871
+ rootEl: any;
1826
1872
  };
1827
1873
 
1828
1874
  declare function __VLS_template_51(): {
@@ -1849,27 +1895,28 @@ declare function __VLS_template_53(): {
1849
1895
  default?(_: {}): any;
1850
1896
  };
1851
1897
  refs: {};
1852
- rootEl: HTMLParagraphElement;
1898
+ rootEl: HTMLDivElement;
1853
1899
  };
1854
1900
 
1855
- declare function __VLS_template_54(): any;
1856
-
1857
- declare function __VLS_template_55(): {
1901
+ declare function __VLS_template_54(): {
1858
1902
  attrs: Partial<{}>;
1859
1903
  slots: {
1860
1904
  default?(_: {}): any;
1905
+ default?(_: {}): any;
1861
1906
  };
1862
1907
  refs: {};
1863
- rootEl: HTMLDivElement;
1908
+ rootEl: any;
1864
1909
  };
1865
1910
 
1911
+ declare function __VLS_template_55(): any;
1912
+
1866
1913
  declare function __VLS_template_56(): {
1867
1914
  attrs: Partial<{}>;
1868
1915
  slots: {
1869
1916
  default?(_: {}): any;
1870
1917
  };
1871
1918
  refs: {};
1872
- rootEl: any;
1919
+ rootEl: HTMLDivElement;
1873
1920
  };
1874
1921
 
1875
1922
  declare function __VLS_template_57(): {
@@ -1878,7 +1925,7 @@ declare function __VLS_template_57(): {
1878
1925
  default?(_: {}): any;
1879
1926
  };
1880
1927
  refs: {};
1881
- rootEl: HTMLLegendElement;
1928
+ rootEl: any;
1882
1929
  };
1883
1930
 
1884
1931
  declare function __VLS_template_58(): {
@@ -1887,7 +1934,7 @@ declare function __VLS_template_58(): {
1887
1934
  default?(_: {}): any;
1888
1935
  };
1889
1936
  refs: {};
1890
- rootEl: HTMLDivElement;
1937
+ rootEl: HTMLLegendElement;
1891
1938
  };
1892
1939
 
1893
1940
  declare function __VLS_template_59(): {
@@ -1896,7 +1943,7 @@ declare function __VLS_template_59(): {
1896
1943
  default?(_: {}): any;
1897
1944
  };
1898
1945
  refs: {};
1899
- rootEl: HTMLFieldSetElement;
1946
+ rootEl: HTMLDivElement;
1900
1947
  };
1901
1948
 
1902
1949
  declare function __VLS_template_6(): {
@@ -1914,7 +1961,7 @@ declare function __VLS_template_60(): {
1914
1961
  default?(_: {}): any;
1915
1962
  };
1916
1963
  refs: {};
1917
- rootEl: HTMLDivElement;
1964
+ rootEl: HTMLFieldSetElement;
1918
1965
  };
1919
1966
 
1920
1967
  declare function __VLS_template_61(): {
@@ -1923,7 +1970,7 @@ declare function __VLS_template_61(): {
1923
1970
  default?(_: {}): any;
1924
1971
  };
1925
1972
  refs: {};
1926
- rootEl: any;
1973
+ rootEl: HTMLDivElement;
1927
1974
  };
1928
1975
 
1929
1976
  declare function __VLS_template_62(): {
@@ -1941,7 +1988,7 @@ declare function __VLS_template_63(): {
1941
1988
  default?(_: {}): any;
1942
1989
  };
1943
1990
  refs: {};
1944
- rootEl: HTMLDivElement;
1991
+ rootEl: any;
1945
1992
  };
1946
1993
 
1947
1994
  declare function __VLS_template_64(): {
@@ -1968,7 +2015,7 @@ declare function __VLS_template_66(): {
1968
2015
  default?(_: {}): any;
1969
2016
  };
1970
2017
  refs: {};
1971
- rootEl: HTMLParagraphElement;
2018
+ rootEl: HTMLDivElement;
1972
2019
  };
1973
2020
 
1974
2021
  declare function __VLS_template_67(): {
@@ -1977,7 +2024,7 @@ declare function __VLS_template_67(): {
1977
2024
  default?(_: {}): any;
1978
2025
  };
1979
2026
  refs: {};
1980
- rootEl: HTMLDivElement;
2027
+ rootEl: HTMLParagraphElement;
1981
2028
  };
1982
2029
 
1983
2030
  declare function __VLS_template_68(): {
@@ -2022,7 +2069,7 @@ declare function __VLS_template_71(): {
2022
2069
  default?(_: {}): any;
2023
2070
  };
2024
2071
  refs: {};
2025
- rootEl: HTMLElement;
2072
+ rootEl: HTMLDivElement;
2026
2073
  };
2027
2074
 
2028
2075
  declare function __VLS_template_72(): {
@@ -2031,7 +2078,7 @@ declare function __VLS_template_72(): {
2031
2078
  default?(_: {}): any;
2032
2079
  };
2033
2080
  refs: {};
2034
- rootEl: HTMLSpanElement;
2081
+ rootEl: HTMLElement;
2035
2082
  };
2036
2083
 
2037
2084
  declare function __VLS_template_73(): {
@@ -2040,7 +2087,7 @@ declare function __VLS_template_73(): {
2040
2087
  default?(_: {}): any;
2041
2088
  };
2042
2089
  refs: {};
2043
- rootEl: any;
2090
+ rootEl: HTMLSpanElement;
2044
2091
  };
2045
2092
 
2046
2093
  declare function __VLS_template_74(): {
@@ -2271,10 +2318,7 @@ declare function __VLS_template_96(): {
2271
2318
  declare function __VLS_template_97(): {
2272
2319
  attrs: Partial<{}>;
2273
2320
  slots: {
2274
- default?(_: {
2275
- open: boolean;
2276
- close: () => void;
2277
- }): any;
2321
+ default?(_: {}): any;
2278
2322
  };
2279
2323
  refs: {};
2280
2324
  rootEl: any;
@@ -2283,7 +2327,10 @@ declare function __VLS_template_97(): {
2283
2327
  declare function __VLS_template_98(): {
2284
2328
  attrs: Partial<{}>;
2285
2329
  slots: {
2286
- default?(_: {}): any;
2330
+ default?(_: {
2331
+ open: boolean;
2332
+ close: () => void;
2333
+ }): any;
2287
2334
  };
2288
2335
  refs: {};
2289
2336
  rootEl: any;
@@ -2420,6 +2467,8 @@ declare type __VLS_TemplateResult_152 = ReturnType<typeof __VLS_template_152>;
2420
2467
 
2421
2468
  declare type __VLS_TemplateResult_153 = ReturnType<typeof __VLS_template_153>;
2422
2469
 
2470
+ declare type __VLS_TemplateResult_154 = ReturnType<typeof __VLS_template_154>;
2471
+
2423
2472
  declare type __VLS_TemplateResult_16 = ReturnType<typeof __VLS_template_16>;
2424
2473
 
2425
2474
  declare type __VLS_TemplateResult_17 = ReturnType<typeof __VLS_template_17>;
@@ -2970,6 +3019,12 @@ declare type __VLS_WithTemplateSlots_153<T, S> = T & {
2970
3019
  };
2971
3020
  };
2972
3021
 
3022
+ declare type __VLS_WithTemplateSlots_154<T, S> = T & {
3023
+ new (): {
3024
+ $slots: S;
3025
+ };
3026
+ };
3027
+
2973
3028
  declare type __VLS_WithTemplateSlots_16<T, S> = T & {
2974
3029
  new (): {
2975
3030
  $slots: S;
@@ -4251,6 +4306,52 @@ export declare type UiCheckboxProps = {
4251
4306
  required?: boolean;
4252
4307
  };
4253
4308
 
4309
+ export declare const UiChip: __VLS_WithTemplateSlots_29<typeof __VLS_component_29, __VLS_TemplateResult_29["slots"]>;
4310
+
4311
+ /**
4312
+ * Compact element used to represent a choice, tag, filter, or action.
4313
+ * Static and selectable chips share the same base styling, while removable chips
4314
+ * expose an additional dismiss action.
4315
+ * @category Form Inputs
4316
+ * @useCases filters, selected options, tags, quick actions
4317
+ * @keywords chip, tag, filter, removable, selectable, dismiss
4318
+ * @related UiBadge, UiTagsInput, UiToggle
4319
+ */
4320
+ export declare interface UiChipProps {
4321
+ /**
4322
+ * Chip behavior variant.
4323
+ * @default 'static'
4324
+ */
4325
+ variant?: UiChipVariant;
4326
+ /**
4327
+ * Enables selection for the removable variant.
4328
+ * Has no effect for `static` and `selectable` variants.
4329
+ * @default false
4330
+ */
4331
+ selectable?: boolean;
4332
+ /**
4333
+ * Controlled selected state for interactive chips.
4334
+ * Use with `v-model`.
4335
+ */
4336
+ modelValue?: boolean;
4337
+ /**
4338
+ * Whether the chip is disabled.
4339
+ * @default false
4340
+ */
4341
+ disabled?: boolean;
4342
+ /**
4343
+ * Optional icon component displayed before the label.
4344
+ */
4345
+ startIcon?: Component;
4346
+ /**
4347
+ * Accessible label for the remove button.
4348
+ * @default 'Remove chip'
4349
+ */
4350
+ removeLabel?: string;
4351
+ }
4352
+
4353
+ export declare type UiChipVariant = 'static' | 'selectable' | 'removable';
4354
+
4254
4355
  export declare const UiDataTable: <TData, TValue>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal_2<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
4255
4356
  props: __VLS_PrettifyLocal_2<Pick<Partial<{}> & Omit<{} & VNodeProps & AllowedComponentProps & ComponentCustomProps, never>, never> & UiDataTableProps<TData, TValue> & Partial<{}>> & PublicProps;
4256
4357
  expose(exposed: ShallowUnwrapRef< {
@@ -4397,10 +4498,10 @@ export declare type UiDataTableToolbarProps<TData> = {
4397
4498
  labels?: ToolbarLabels;
4398
4499
  };
4399
4500
 
4400
- export declare const UiDatePicker: DefineComponent<__VLS_PublicProps_18, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
4501
+ export declare const UiDatePicker: DefineComponent<__VLS_PublicProps_20, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
4401
4502
  "update:modelValue": (value: DateValue | DateRange | undefined) => any;
4402
4503
  "update:open": (value: boolean) => any;
4403
- }, string, PublicProps, Readonly<__VLS_PublicProps_18> & Readonly<{
4504
+ }, string, PublicProps, Readonly<__VLS_PublicProps_20> & Readonly<{
4404
4505
  "onUpdate:modelValue"?: ((value: DateValue | DateRange | undefined) => any) | undefined;
4405
4506
  "onUpdate:open"?: ((value: boolean) => any) | undefined;
4406
4507
  }>, {
@@ -4609,9 +4710,9 @@ export declare type UiDatePickerWeekdayFormat = 'narrow' | 'short' | 'long';
4609
4710
  */
4610
4711
  export declare type UiDatePickerWeekStartsOn = 0 | 1 | 2 | 3 | 4 | 5 | 6;
4611
4712
 
4612
- export declare const UiDrawer: __VLS_WithTemplateSlots_29<typeof __VLS_component_29, __VLS_TemplateResult_29["slots"]>;
4713
+ export declare const UiDrawer: __VLS_WithTemplateSlots_30<typeof __VLS_component_30, __VLS_TemplateResult_30["slots"]>;
4613
4714
 
4614
- export declare const UiDrawerClose: __VLS_WithTemplateSlots_30<typeof __VLS_component_30, __VLS_TemplateResult_30["slots"]>;
4715
+ export declare const UiDrawerClose: __VLS_WithTemplateSlots_31<typeof __VLS_component_31, __VLS_TemplateResult_31["slots"]>;
4615
4716
 
4616
4717
  /**
4617
4718
  * Props for the UiDrawerClose component.
@@ -4625,7 +4726,7 @@ export declare interface UiDrawerCloseProps {
4625
4726
  asChild?: boolean;
4626
4727
  }
4627
4728
 
4628
- export declare const UiDrawerContent: __VLS_WithTemplateSlots_31<typeof __VLS_component_31, __VLS_TemplateResult_31["slots"]>;
4729
+ export declare const UiDrawerContent: __VLS_WithTemplateSlots_32<typeof __VLS_component_32, __VLS_TemplateResult_32["slots"]>;
4629
4730
 
4630
4731
  /**
4631
4732
  * Emits for the UiDrawerContent component.
@@ -4656,7 +4757,7 @@ export declare interface UiDrawerContentProps {
4656
4757
  showHandle?: boolean;
4657
4758
  }
4658
4759
 
4659
- export declare const UiDrawerDescription: __VLS_WithTemplateSlots_32<typeof __VLS_component_32, __VLS_TemplateResult_32["slots"]>;
4760
+ export declare const UiDrawerDescription: __VLS_WithTemplateSlots_33<typeof __VLS_component_33, __VLS_TemplateResult_33["slots"]>;
4660
4761
 
4661
4762
  /**
4662
4763
  * Props for the UiDrawerDescription component.
@@ -4670,7 +4771,7 @@ export declare interface UiDrawerDescriptionProps {
4670
4771
  asChild?: boolean;
4671
4772
  }
4672
4773
 
4673
- export declare const UiDrawerFooter: __VLS_WithTemplateSlots_33<typeof __VLS_component_33, __VLS_TemplateResult_33["slots"]>;
4774
+ export declare const UiDrawerFooter: __VLS_WithTemplateSlots_34<typeof __VLS_component_34, __VLS_TemplateResult_34["slots"]>;
4674
4775
 
4675
4776
  /**
4676
4777
  * Props for the UiDrawerFooter component.
@@ -4684,7 +4785,7 @@ export declare interface UiDrawerFooterProps {
4684
4785
  asChild?: boolean;
4685
4786
  }
4686
4787
 
4687
- export declare const UiDrawerHeader: __VLS_WithTemplateSlots_34<typeof __VLS_component_34, __VLS_TemplateResult_34["slots"]>;
4788
+ export declare const UiDrawerHeader: __VLS_WithTemplateSlots_35<typeof __VLS_component_35, __VLS_TemplateResult_35["slots"]>;
4688
4789
 
4689
4790
  /**
4690
4791
  * Props for the UiDrawerHeader component.
@@ -4721,7 +4822,7 @@ export declare interface UiDrawerProps {
4721
4822
  modal?: boolean;
4722
4823
  }
4723
4824
 
4724
- export declare const UiDrawerTitle: __VLS_WithTemplateSlots_35<typeof __VLS_component_35, __VLS_TemplateResult_35["slots"]>;
4825
+ export declare const UiDrawerTitle: __VLS_WithTemplateSlots_36<typeof __VLS_component_36, __VLS_TemplateResult_36["slots"]>;
4725
4826
 
4726
4827
  /**
4727
4828
  * Props for the UiDrawerTitle component.
@@ -4735,7 +4836,7 @@ export declare interface UiDrawerTitleProps {
4735
4836
  asChild?: boolean;
4736
4837
  }
4737
4838
 
4738
- export declare const UiDrawerTrigger: __VLS_WithTemplateSlots_36<typeof __VLS_component_36, __VLS_TemplateResult_36["slots"]>;
4839
+ export declare const UiDrawerTrigger: __VLS_WithTemplateSlots_37<typeof __VLS_component_37, __VLS_TemplateResult_37["slots"]>;
4739
4840
 
4740
4841
  /**
4741
4842
  * Props for the UiDrawerTrigger component.
@@ -4750,9 +4851,9 @@ export declare interface UiDrawerTriggerProps {
4750
4851
  asChild?: boolean;
4751
4852
  }
4752
4853
 
4753
- export declare const UiDropdownMenu: __VLS_WithTemplateSlots_37<typeof __VLS_component_37, __VLS_TemplateResult_37["slots"]>;
4854
+ export declare const UiDropdownMenu: __VLS_WithTemplateSlots_38<typeof __VLS_component_38, __VLS_TemplateResult_38["slots"]>;
4754
4855
 
4755
- export declare const UiDropdownMenuCheckboxItem: __VLS_WithTemplateSlots_44<typeof __VLS_component_44, __VLS_TemplateResult_44["slots"]>;
4856
+ export declare const UiDropdownMenuCheckboxItem: __VLS_WithTemplateSlots_45<typeof __VLS_component_45, __VLS_TemplateResult_45["slots"]>;
4756
4857
 
4757
4858
  /**
4758
4859
  * Emits for the UiDropdownMenuCheckboxItem component.
@@ -4783,7 +4884,7 @@ export declare interface UiDropdownMenuCheckboxItemProps {
4783
4884
  textValue?: string;
4784
4885
  }
4785
4886
 
4786
- export declare const UiDropdownMenuContent: __VLS_WithTemplateSlots_39<typeof __VLS_component_39, __VLS_TemplateResult_39["slots"]>;
4887
+ export declare const UiDropdownMenuContent: __VLS_WithTemplateSlots_40<typeof __VLS_component_40, __VLS_TemplateResult_40["slots"]>;
4787
4888
 
4788
4889
  /**
4789
4890
  * Emits for the UiDropdownMenuContent component.
@@ -4828,9 +4929,9 @@ export declare interface UiDropdownMenuEmits {
4828
4929
  'update:open': [value: boolean];
4829
4930
  }
4830
4931
 
4831
- export declare const UiDropdownMenuGroup: __VLS_WithTemplateSlots_42<typeof __VLS_component_42, __VLS_TemplateResult_42["slots"]>;
4932
+ export declare const UiDropdownMenuGroup: __VLS_WithTemplateSlots_43<typeof __VLS_component_43, __VLS_TemplateResult_43["slots"]>;
4832
4933
 
4833
- export declare const UiDropdownMenuItem: __VLS_WithTemplateSlots_40<typeof __VLS_component_40, __VLS_TemplateResult_40["slots"]>;
4934
+ export declare const UiDropdownMenuItem: __VLS_WithTemplateSlots_41<typeof __VLS_component_41, __VLS_TemplateResult_41["slots"]>;
4834
4935
 
4835
4936
  /**
4836
4937
  * Props for the UiDropdownMenuItem component.
@@ -4859,7 +4960,7 @@ export declare interface UiDropdownMenuItemProps {
4859
4960
  textValue?: string;
4860
4961
  }
4861
4962
 
4862
- export declare const UiDropdownMenuLabel: __VLS_WithTemplateSlots_41<typeof __VLS_component_41, __VLS_TemplateResult_41["slots"]>;
4963
+ export declare const UiDropdownMenuLabel: __VLS_WithTemplateSlots_42<typeof __VLS_component_42, __VLS_TemplateResult_42["slots"]>;
4863
4964
 
4864
4965
  /**
4865
4966
  * Props for the UiDropdownMenuLabel component.
@@ -4896,7 +4997,7 @@ export declare interface UiDropdownMenuProps {
4896
4997
  modal?: boolean;
4897
4998
  }
4898
4999
 
4899
- export declare const UiDropdownMenuRadioGroup: __VLS_WithTemplateSlots_45<typeof __VLS_component_45, __VLS_TemplateResult_45["slots"]>;
5000
+ export declare const UiDropdownMenuRadioGroup: __VLS_WithTemplateSlots_46<typeof __VLS_component_46, __VLS_TemplateResult_46["slots"]>;
4900
5001
 
4901
5002
  /**
4902
5003
  * Emits for the UiDropdownMenuRadioGroup component.
@@ -4918,7 +5019,7 @@ export declare interface UiDropdownMenuRadioGroupProps {
4918
5019
  modelValue?: string;
4919
5020
  }
4920
5021
 
4921
- export declare const UiDropdownMenuRadioItem: __VLS_WithTemplateSlots_46<typeof __VLS_component_46, __VLS_TemplateResult_46["slots"]>;
5022
+ export declare const UiDropdownMenuRadioItem: __VLS_WithTemplateSlots_47<typeof __VLS_component_47, __VLS_TemplateResult_47["slots"]>;
4922
5023
 
4923
5024
  /**
4924
5025
  * Props for the UiDropdownMenuRadioItem component.
@@ -4942,11 +5043,11 @@ export declare interface UiDropdownMenuRadioItemProps {
4942
5043
 
4943
5044
  export declare const UiDropdownMenuSeparator: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
4944
5045
 
4945
- export declare const UiDropdownMenuShortcut: __VLS_WithTemplateSlots_43<typeof __VLS_component_43, __VLS_TemplateResult_43["slots"]>;
5046
+ export declare const UiDropdownMenuShortcut: __VLS_WithTemplateSlots_44<typeof __VLS_component_44, __VLS_TemplateResult_44["slots"]>;
4946
5047
 
4947
- export declare const UiDropdownMenuSub: __VLS_WithTemplateSlots_47<typeof __VLS_component_47, __VLS_TemplateResult_47["slots"]>;
5048
+ export declare const UiDropdownMenuSub: __VLS_WithTemplateSlots_48<typeof __VLS_component_48, __VLS_TemplateResult_48["slots"]>;
4948
5049
 
4949
- export declare const UiDropdownMenuSubContent: __VLS_WithTemplateSlots_49<typeof __VLS_component_49, __VLS_TemplateResult_49["slots"]>;
5050
+ export declare const UiDropdownMenuSubContent: __VLS_WithTemplateSlots_50<typeof __VLS_component_50, __VLS_TemplateResult_50["slots"]>;
4950
5051
 
4951
5052
  /**
4952
5053
  * Emits for the UiDropdownMenuSubContent component.
@@ -4994,7 +5095,7 @@ export declare interface UiDropdownMenuSubProps {
4994
5095
  defaultOpen?: boolean;
4995
5096
  }
4996
5097
 
4997
- export declare const UiDropdownMenuSubTrigger: __VLS_WithTemplateSlots_48<typeof __VLS_component_48, __VLS_TemplateResult_48["slots"]>;
5098
+ export declare const UiDropdownMenuSubTrigger: __VLS_WithTemplateSlots_49<typeof __VLS_component_49, __VLS_TemplateResult_49["slots"]>;
4998
5099
 
4999
5100
  /**
5000
5101
  * Props for the UiDropdownMenuSubTrigger component.
@@ -5017,7 +5118,7 @@ export declare interface UiDropdownMenuSubTriggerProps {
5017
5118
  textValue?: string;
5018
5119
  }
5019
5120
 
5020
- export declare const UiDropdownMenuTrigger: __VLS_WithTemplateSlots_38<typeof __VLS_component_38, __VLS_TemplateResult_38["slots"]>;
5121
+ export declare const UiDropdownMenuTrigger: __VLS_WithTemplateSlots_39<typeof __VLS_component_39, __VLS_TemplateResult_39["slots"]>;
5021
5122
 
5022
5123
  /**
5023
5124
  * Props for the UiDropdownMenuTrigger component.
@@ -5043,7 +5144,7 @@ export declare interface UiDropdownMenuTriggerProps {
5043
5144
  asChild?: boolean;
5044
5145
  }
5045
5146
 
5046
- export declare const UiEmpty: __VLS_WithTemplateSlots_50<typeof __VLS_component_50, __VLS_TemplateResult_50["slots"]>;
5147
+ export declare const UiEmpty: __VLS_WithTemplateSlots_51<typeof __VLS_component_51, __VLS_TemplateResult_51["slots"]>;
5047
5148
 
5048
5149
  /**
5049
5150
  * A component to display empty states when there is no content to show.
@@ -5068,13 +5169,44 @@ export declare interface UiEmptyProps {
5068
5169
  icon?: Component;
5069
5170
  }
5070
5171
 
5071
- export declare const UiField: __VLS_WithTemplateSlots_51<typeof __VLS_component_51, __VLS_TemplateResult_51["slots"]>;
5172
+ export declare const UiField: __VLS_WithTemplateSlots_52<typeof __VLS_component_52, __VLS_TemplateResult_52["slots"]>;
5072
5173
 
5073
- export declare const UiFieldContent: __VLS_WithTemplateSlots_52<typeof __VLS_component_52, __VLS_TemplateResult_52["slots"]>;
5174
+ export declare const UiFieldContent: __VLS_WithTemplateSlots_53<typeof __VLS_component_53, __VLS_TemplateResult_53["slots"]>;
5074
5175
 
5075
- export declare const UiFieldDescription: __VLS_WithTemplateSlots_53<typeof __VLS_component_53, __VLS_TemplateResult_53["slots"]>;
5176
+ export declare const UiFieldDescription: __VLS_WithTemplateSlots_54<typeof __VLS_component_54, __VLS_TemplateResult_54["slots"]>;
5076
5177
 
5077
- export declare const UiFieldError: __VLS_WithTemplateSlots_54<typeof __VLS_component_54, __VLS_TemplateResult_54["slots"]>;
5178
+ /**
5179
+ * Where the description text is rendered relative to the field.
5180
+ */
5181
+ export declare type UiFieldDescriptionPlacement = 'under-label' | 'under-input';
5182
+
5183
+ /**
5184
+ * Props for `UiFieldDescription` component.
5185
+ */
5186
+ export declare interface UiFieldDescriptionProps {
5187
+ /**
5188
+ * Visual variant of the description.
5189
+ * Use `input` to render a checkbox next to the description text.
5190
+ * @default 'default'
5191
+ */
5192
+ variant?: UiFieldDescriptionVariant;
5193
+ /**
5194
+ * Name attribute for the checkbox (required when `variant="input"`).
5195
+ */
5196
+ name?: string;
5197
+ /**
5198
+ * Disables the checkbox.
5199
+ * @default false
5200
+ */
5201
+ disabled?: boolean;
5202
+ }
5203
+
5204
+ /**
5205
+ * Visual variant for `UiFieldDescription`.
5206
+ */
5207
+ export declare type UiFieldDescriptionVariant = 'default' | 'input';
5208
+
5209
+ export declare const UiFieldError: __VLS_WithTemplateSlots_55<typeof __VLS_component_55, __VLS_TemplateResult_55["slots"]>;
5078
5210
 
5079
5211
  /**
5080
5212
  * Error shape supported by `UiFieldError`.
@@ -5094,9 +5226,34 @@ export declare interface UiFieldErrorProps {
5094
5226
  errors?: UiFieldErrorLike[];
5095
5227
  }
5096
5228
 
5097
- export declare const UiFieldGroup: __VLS_WithTemplateSlots_55<typeof __VLS_component_55, __VLS_TemplateResult_55["slots"]>;
5229
+ export declare const UiFieldGroup: __VLS_WithTemplateSlots_56<typeof __VLS_component_56, __VLS_TemplateResult_56["slots"]>;
5098
5230
 
5099
- export declare const UiFieldLabel: __VLS_WithTemplateSlots_56<typeof __VLS_component_56, __VLS_TemplateResult_56["slots"]>;
5231
+ export declare const UiFieldLabel: __VLS_WithTemplateSlots_57<typeof __VLS_component_57, __VLS_TemplateResult_57["slots"]>;
5232
+
5233
+ export declare const UiFieldLabelInfo: DefineComponent<UiFieldLabelInfoProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiFieldLabelInfoProps> & Readonly<{}>, {
5234
+ icon: string;
5235
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
5236
+
5237
+ /**
5238
+ * An interactive info icon placed next to a field label that reveals a tooltip on hover or focus.
5239
+ * Uses a ghost icon button as the trigger for keyboard and pointer accessibility.
5240
+ * @category Form Inputs
5241
+ * @useCases field hint, label help, input context
5242
+ * @keywords field, label, info, tooltip, help, hint
5243
+ * @related UiFieldLabel, UiTooltip, UiIconButton
5244
+ */
5245
+ export declare interface UiFieldLabelInfoProps {
5246
+ /**
5247
+ * Tooltip text shown on hover / focus.
5248
+ */
5249
+ description: string;
5250
+ /**
5251
+ * Lucide icon name in kebab-case or PascalCase.
5252
+ * @default 'circle-help'
5253
+ * @see https://lucide.dev/icons
5254
+ */
5255
+ icon?: string;
5256
+ }
5100
5257
 
5101
5258
  /**
5102
5259
  * Props for `UiFieldLabel` component.
@@ -5107,14 +5264,27 @@ export declare interface UiFieldLabelProps {
5107
5264
  * Use together with `id` on an input.
5108
5265
  */
5109
5266
  for?: string;
5267
+ /**
5268
+ * When provided, renders a `UiFieldLabelInfo` icon next to the label
5269
+ * that shows this text as a tooltip on hover/focus.
5270
+ */
5271
+ tooltip?: string;
5272
+ /**
5273
+ * Lucide icon name for the tooltip trigger when `tooltip` is set.
5274
+ * @default 'circle-help'
5275
+ * @see https://lucide.dev/icons
5276
+ */
5277
+ tooltipIcon?: string;
5110
5278
  }
5111
5279
 
5112
- export declare const UiFieldLegend: __VLS_WithTemplateSlots_57<typeof __VLS_component_57, __VLS_TemplateResult_57["slots"]>;
5280
+ export declare const UiFieldLegend: __VLS_WithTemplateSlots_58<typeof __VLS_component_58, __VLS_TemplateResult_58["slots"]>;
5113
5281
 
5114
5282
  /**
5115
5283
  * Layout orientation supported by `UiField`.
5284
+ * - `vertical`: stacked layout (label above input).
5285
+ * - `responsive`: horizontal by default, collapses to vertical on small screens.
5116
5286
  */
5117
- export declare type UiFieldOrientation = 'vertical' | 'horizontal' | 'responsive';
5287
+ export declare type UiFieldOrientation = 'vertical' | 'responsive';
5118
5288
 
5119
5289
  /**
5120
5290
  * A form field wrapper that groups label, input, description, and error messages.
@@ -5130,20 +5300,33 @@ export declare interface UiFieldProps {
5130
5300
  * @default 'vertical'
5131
5301
  */
5132
5302
  orientation?: UiFieldOrientation;
5303
+ /**
5304
+ * Where the description is placed relative to the field layout.
5305
+ * - `under-label`: description renders between the label and the input.
5306
+ * - `under-input`: description renders after the input.
5307
+ * @default 'under-input'
5308
+ */
5309
+ descriptionPlacement?: UiFieldDescriptionPlacement;
5310
+ /**
5311
+ * When `true`, the child `UiFieldDescription` renders with a checkbox
5312
+ * next to the description text (unless the description sets its own `variant` prop).
5313
+ * @default false
5314
+ */
5315
+ descriptionCheckbox?: boolean;
5133
5316
  }
5134
5317
 
5135
- export declare const UiFieldSeparator: __VLS_WithTemplateSlots_58<typeof __VLS_component_58, __VLS_TemplateResult_58["slots"]>;
5318
+ export declare const UiFieldSeparator: __VLS_WithTemplateSlots_59<typeof __VLS_component_59, __VLS_TemplateResult_59["slots"]>;
5136
5319
 
5137
- export declare const UiFieldSet: __VLS_WithTemplateSlots_59<typeof __VLS_component_59, __VLS_TemplateResult_59["slots"]>;
5320
+ export declare const UiFieldSet: __VLS_WithTemplateSlots_60<typeof __VLS_component_60, __VLS_TemplateResult_60["slots"]>;
5138
5321
 
5139
- export declare const UiFieldTitle: __VLS_WithTemplateSlots_60<typeof __VLS_component_60, __VLS_TemplateResult_60["slots"]>;
5322
+ export declare const UiFieldTitle: __VLS_WithTemplateSlots_61<typeof __VLS_component_61, __VLS_TemplateResult_61["slots"]>;
5140
5323
 
5141
5324
  export declare const UiIcon: DefineComponent<UiIconProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiIconProps> & Readonly<{}>, {
5142
5325
  size: number | string;
5143
5326
  strokeWidth: number | string;
5144
5327
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
5145
5328
 
5146
- export declare const UiIconButton: __VLS_WithTemplateSlots_61<typeof __VLS_component_61, __VLS_TemplateResult_61["slots"]>;
5329
+ export declare const UiIconButton: __VLS_WithTemplateSlots_62<typeof __VLS_component_62, __VLS_TemplateResult_62["slots"]>;
5147
5330
 
5148
5331
  /**
5149
5332
  * A button that displays only an icon without text. Use for compact
@@ -5231,9 +5414,9 @@ export declare interface UiIconProps {
5231
5414
  ariaLabel?: string;
5232
5415
  }
5233
5416
 
5234
- export declare const UiInput: DefineComponent<__VLS_PublicProps_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
5417
+ export declare const UiInput: DefineComponent<__VLS_PublicProps_7, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
5235
5418
  "update:modelValue": (value: string) => any;
5236
- }, string, PublicProps, Readonly<__VLS_PublicProps_5> & Readonly<{
5419
+ }, string, PublicProps, Readonly<__VLS_PublicProps_7> & Readonly<{
5237
5420
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
5238
5421
  }>, {
5239
5422
  disabled: boolean;
@@ -5271,9 +5454,9 @@ export declare interface UiInputProps {
5271
5454
  required?: boolean;
5272
5455
  }
5273
5456
 
5274
- export declare const UiItem: __VLS_WithTemplateSlots_62<typeof __VLS_component_62, __VLS_TemplateResult_62["slots"]>;
5457
+ export declare const UiItem: __VLS_WithTemplateSlots_63<typeof __VLS_component_63, __VLS_TemplateResult_63["slots"]>;
5275
5458
 
5276
- export declare const UiItemActions: __VLS_WithTemplateSlots_64<typeof __VLS_component_64, __VLS_TemplateResult_64["slots"]>;
5459
+ export declare const UiItemActions: __VLS_WithTemplateSlots_65<typeof __VLS_component_65, __VLS_TemplateResult_65["slots"]>;
5277
5460
 
5278
5461
  /**
5279
5462
  * Props for the UiItemActions component.
@@ -5281,7 +5464,7 @@ export declare const UiItemActions: __VLS_WithTemplateSlots_64<typeof __VLS_comp
5281
5464
  */
5282
5465
  export declare type UiItemActionsProps = Record<string, never>;
5283
5466
 
5284
- export declare const UiItemContent: __VLS_WithTemplateSlots_65<typeof __VLS_component_65, __VLS_TemplateResult_65["slots"]>;
5467
+ export declare const UiItemContent: __VLS_WithTemplateSlots_66<typeof __VLS_component_66, __VLS_TemplateResult_66["slots"]>;
5285
5468
 
5286
5469
  /**
5287
5470
  * Props for the UiItemContent component.
@@ -5289,7 +5472,7 @@ export declare const UiItemContent: __VLS_WithTemplateSlots_65<typeof __VLS_comp
5289
5472
  */
5290
5473
  export declare type UiItemContentProps = Record<string, never>;
5291
5474
 
5292
- export declare const UiItemDescription: __VLS_WithTemplateSlots_66<typeof __VLS_component_66, __VLS_TemplateResult_66["slots"]>;
5475
+ export declare const UiItemDescription: __VLS_WithTemplateSlots_67<typeof __VLS_component_67, __VLS_TemplateResult_67["slots"]>;
5293
5476
 
5294
5477
  /**
5295
5478
  * Props for the UiItemDescription component.
@@ -5297,7 +5480,7 @@ export declare const UiItemDescription: __VLS_WithTemplateSlots_66<typeof __VLS_
5297
5480
  */
5298
5481
  export declare type UiItemDescriptionProps = Record<string, never>;
5299
5482
 
5300
- export declare const UiItemFooter: __VLS_WithTemplateSlots_67<typeof __VLS_component_67, __VLS_TemplateResult_67["slots"]>;
5483
+ export declare const UiItemFooter: __VLS_WithTemplateSlots_68<typeof __VLS_component_68, __VLS_TemplateResult_68["slots"]>;
5301
5484
 
5302
5485
  /**
5303
5486
  * Props for the UiItemFooter component.
@@ -5305,7 +5488,7 @@ export declare const UiItemFooter: __VLS_WithTemplateSlots_67<typeof __VLS_compo
5305
5488
  */
5306
5489
  export declare type UiItemFooterProps = Record<string, never>;
5307
5490
 
5308
- export declare const UiItemGroup: __VLS_WithTemplateSlots_68<typeof __VLS_component_68, __VLS_TemplateResult_68["slots"]>;
5491
+ export declare const UiItemGroup: __VLS_WithTemplateSlots_69<typeof __VLS_component_69, __VLS_TemplateResult_69["slots"]>;
5309
5492
 
5310
5493
  /**
5311
5494
  * Props for the UiItemGroup component.
@@ -5313,7 +5496,7 @@ export declare const UiItemGroup: __VLS_WithTemplateSlots_68<typeof __VLS_compon
5313
5496
  */
5314
5497
  export declare type UiItemGroupProps = Record<string, never>;
5315
5498
 
5316
- export declare const UiItemHeader: __VLS_WithTemplateSlots_69<typeof __VLS_component_69, __VLS_TemplateResult_69["slots"]>;
5499
+ export declare const UiItemHeader: __VLS_WithTemplateSlots_70<typeof __VLS_component_70, __VLS_TemplateResult_70["slots"]>;
5317
5500
 
5318
5501
  /**
5319
5502
  * Props for the UiItemHeader component.
@@ -5321,7 +5504,7 @@ export declare const UiItemHeader: __VLS_WithTemplateSlots_69<typeof __VLS_compo
5321
5504
  */
5322
5505
  export declare type UiItemHeaderProps = Record<string, never>;
5323
5506
 
5324
- export declare const UiItemMedia: __VLS_WithTemplateSlots_63<typeof __VLS_component_63, __VLS_TemplateResult_63["slots"]>;
5507
+ export declare const UiItemMedia: __VLS_WithTemplateSlots_64<typeof __VLS_component_64, __VLS_TemplateResult_64["slots"]>;
5325
5508
 
5326
5509
  /**
5327
5510
  * Props for the UiItemMedia component.
@@ -5378,7 +5561,7 @@ export declare interface UiItemProps {
5378
5561
  asChild?: boolean;
5379
5562
  }
5380
5563
 
5381
- export declare const UiItemSeparator: DefineComponent<__VLS_Props_18, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_18> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
5564
+ export declare const UiItemSeparator: DefineComponent<__VLS_Props_20, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_20> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
5382
5565
 
5383
5566
  /**
5384
5567
  * Props for the UiItemSeparator component.
@@ -5391,7 +5574,7 @@ export declare type UiItemSeparatorProps = Record<string, never>;
5391
5574
  */
5392
5575
  export declare type UiItemSizes = 'default' | 'sm';
5393
5576
 
5394
- export declare const UiItemTitle: __VLS_WithTemplateSlots_70<typeof __VLS_component_70, __VLS_TemplateResult_70["slots"]>;
5577
+ export declare const UiItemTitle: __VLS_WithTemplateSlots_71<typeof __VLS_component_71, __VLS_TemplateResult_71["slots"]>;
5395
5578
 
5396
5579
  /**
5397
5580
  * Props for the UiItemTitle component.
@@ -5404,9 +5587,9 @@ export declare type UiItemTitleProps = Record<string, never>;
5404
5587
  */
5405
5588
  export declare type UiItemVariants = 'default' | 'outline' | 'muted';
5406
5589
 
5407
- export declare const UiKbd: __VLS_WithTemplateSlots_71<typeof __VLS_component_71, __VLS_TemplateResult_71["slots"]>;
5590
+ export declare const UiKbd: __VLS_WithTemplateSlots_72<typeof __VLS_component_72, __VLS_TemplateResult_72["slots"]>;
5408
5591
 
5409
- export declare const UiKbdGroup: __VLS_WithTemplateSlots_72<typeof __VLS_component_72, __VLS_TemplateResult_72["slots"]>;
5592
+ export declare const UiKbdGroup: __VLS_WithTemplateSlots_73<typeof __VLS_component_73, __VLS_TemplateResult_73["slots"]>;
5410
5593
 
5411
5594
  /**
5412
5595
  * A container for grouping multiple keyboard keys together. Use to display
@@ -5434,7 +5617,7 @@ export declare interface UiKbdProps {
5434
5617
  size?: 'sm' | 'default' | 'lg';
5435
5618
  }
5436
5619
 
5437
- export declare const UiLabel: __VLS_WithTemplateSlots_73<typeof __VLS_component_73, __VLS_TemplateResult_73["slots"]>;
5620
+ export declare const UiLabel: __VLS_WithTemplateSlots_74<typeof __VLS_component_74, __VLS_TemplateResult_74["slots"]>;
5438
5621
 
5439
5622
  /**
5440
5623
  * A text label for form elements. Use to identify form inputs, provide
@@ -5452,9 +5635,9 @@ export declare interface UiLabelProps {
5452
5635
  for: string;
5453
5636
  }
5454
5637
 
5455
- export declare const UiListbox: __VLS_WithTemplateSlots_74<typeof __VLS_component_74, __VLS_TemplateResult_74["slots"]>;
5638
+ export declare const UiListbox: __VLS_WithTemplateSlots_75<typeof __VLS_component_75, __VLS_TemplateResult_75["slots"]>;
5456
5639
 
5457
- export declare const UiListboxContent: __VLS_WithTemplateSlots_75<typeof __VLS_component_75, __VLS_TemplateResult_75["slots"]>;
5640
+ export declare const UiListboxContent: __VLS_WithTemplateSlots_76<typeof __VLS_component_76, __VLS_TemplateResult_76["slots"]>;
5458
5641
 
5459
5642
  /**
5460
5643
  * Props for the UiListboxContent component.
@@ -5462,9 +5645,9 @@ export declare const UiListboxContent: __VLS_WithTemplateSlots_75<typeof __VLS_c
5462
5645
  */
5463
5646
  export declare type UiListboxContentProps = Record<string, never>;
5464
5647
 
5465
- export declare const UiListboxFilter: DefineComponent<__VLS_PublicProps_7, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
5648
+ export declare const UiListboxFilter: DefineComponent<__VLS_PublicProps_9, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
5466
5649
  "update:modelValue": (value: string) => any;
5467
- }, string, PublicProps, Readonly<__VLS_PublicProps_7> & Readonly<{
5650
+ }, string, PublicProps, Readonly<__VLS_PublicProps_9> & Readonly<{
5468
5651
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
5469
5652
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
5470
5653
 
@@ -5483,9 +5666,9 @@ export declare interface UiListboxFilterProps {
5483
5666
  asChild?: boolean;
5484
5667
  }
5485
5668
 
5486
- export declare const UiListboxGroup: __VLS_WithTemplateSlots_78<typeof __VLS_component_78, __VLS_TemplateResult_78["slots"]>;
5669
+ export declare const UiListboxGroup: __VLS_WithTemplateSlots_79<typeof __VLS_component_79, __VLS_TemplateResult_79["slots"]>;
5487
5670
 
5488
- export declare const UiListboxGroupLabel: __VLS_WithTemplateSlots_79<typeof __VLS_component_79, __VLS_TemplateResult_79["slots"]>;
5671
+ export declare const UiListboxGroupLabel: __VLS_WithTemplateSlots_80<typeof __VLS_component_80, __VLS_TemplateResult_80["slots"]>;
5489
5672
 
5490
5673
  /**
5491
5674
  * Props for the UiListboxGroupLabel component.
@@ -5499,9 +5682,9 @@ export declare type UiListboxGroupLabelProps = Record<string, never>;
5499
5682
  */
5500
5683
  export declare type UiListboxGroupProps = Record<string, never>;
5501
5684
 
5502
- export declare const UiListboxItem: __VLS_WithTemplateSlots_76<typeof __VLS_component_76, __VLS_TemplateResult_76["slots"]>;
5685
+ export declare const UiListboxItem: __VLS_WithTemplateSlots_77<typeof __VLS_component_77, __VLS_TemplateResult_77["slots"]>;
5503
5686
 
5504
- export declare const UiListboxItemIndicator: __VLS_WithTemplateSlots_77<typeof __VLS_component_77, __VLS_TemplateResult_77["slots"]>;
5687
+ export declare const UiListboxItemIndicator: __VLS_WithTemplateSlots_78<typeof __VLS_component_78, __VLS_TemplateResult_78["slots"]>;
5505
5688
 
5506
5689
  /**
5507
5690
  * Props for the UiListboxItemIndicator component.
@@ -5578,9 +5761,9 @@ export declare interface UiListboxProps {
5578
5761
  by?: string | ((a: AcceptableValue, b: AcceptableValue) => boolean);
5579
5762
  }
5580
5763
 
5581
- export declare const UiNavigationMenu: __VLS_WithTemplateSlots_80<typeof __VLS_component_80, __VLS_TemplateResult_80["slots"]>;
5764
+ export declare const UiNavigationMenu: __VLS_WithTemplateSlots_81<typeof __VLS_component_81, __VLS_TemplateResult_81["slots"]>;
5582
5765
 
5583
- export declare const UiNavigationMenuContent: __VLS_WithTemplateSlots_84<typeof __VLS_component_84, __VLS_TemplateResult_84["slots"]>;
5766
+ export declare const UiNavigationMenuContent: __VLS_WithTemplateSlots_85<typeof __VLS_component_85, __VLS_TemplateResult_85["slots"]>;
5584
5767
 
5585
5768
  export declare type UiNavigationMenuContentEmits = {
5586
5769
  /**
@@ -5638,7 +5821,7 @@ export declare type UiNavigationMenuIndicatorProps = {
5638
5821
  forceMount?: boolean;
5639
5822
  };
5640
5823
 
5641
- export declare const UiNavigationMenuItem: __VLS_WithTemplateSlots_82<typeof __VLS_component_82, __VLS_TemplateResult_82["slots"]>;
5824
+ export declare const UiNavigationMenuItem: __VLS_WithTemplateSlots_83<typeof __VLS_component_83, __VLS_TemplateResult_83["slots"]>;
5642
5825
 
5643
5826
  export declare type UiNavigationMenuItemProps = {
5644
5827
  /**
@@ -5653,7 +5836,7 @@ export declare type UiNavigationMenuItemProps = {
5653
5836
  asChild?: boolean;
5654
5837
  };
5655
5838
 
5656
- export declare const UiNavigationMenuLink: __VLS_WithTemplateSlots_85<typeof __VLS_component_85, __VLS_TemplateResult_85["slots"]>;
5839
+ export declare const UiNavigationMenuLink: __VLS_WithTemplateSlots_86<typeof __VLS_component_86, __VLS_TemplateResult_86["slots"]>;
5657
5840
 
5658
5841
  export declare type UiNavigationMenuLinkEmits = {
5659
5842
  /**
@@ -5678,7 +5861,7 @@ export declare type UiNavigationMenuLinkProps = {
5678
5861
  asChild?: boolean;
5679
5862
  };
5680
5863
 
5681
- export declare const UiNavigationMenuList: __VLS_WithTemplateSlots_81<typeof __VLS_component_81, __VLS_TemplateResult_81["slots"]>;
5864
+ export declare const UiNavigationMenuList: __VLS_WithTemplateSlots_82<typeof __VLS_component_82, __VLS_TemplateResult_82["slots"]>;
5682
5865
 
5683
5866
  export declare type UiNavigationMenuListProps = {
5684
5867
  /**
@@ -5750,7 +5933,7 @@ export declare type UiNavigationMenuProps = {
5750
5933
  viewport?: boolean;
5751
5934
  };
5752
5935
 
5753
- export declare const UiNavigationMenuTrigger: __VLS_WithTemplateSlots_83<typeof __VLS_component_83, __VLS_TemplateResult_83["slots"]>;
5936
+ export declare const UiNavigationMenuTrigger: __VLS_WithTemplateSlots_84<typeof __VLS_component_84, __VLS_TemplateResult_84["slots"]>;
5754
5937
 
5755
5938
  export declare type UiNavigationMenuTriggerProps = {
5756
5939
  /**
@@ -5767,14 +5950,14 @@ export declare type UiNavigationMenuTriggerProps = {
5767
5950
 
5768
5951
  export declare const UiPlaceholder: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
5769
5952
 
5770
- export declare const UiPopover: __VLS_WithTemplateSlots_86<typeof __VLS_component_86, __VLS_TemplateResult_86["slots"]>;
5953
+ export declare const UiPopover: __VLS_WithTemplateSlots_87<typeof __VLS_component_87, __VLS_TemplateResult_87["slots"]>;
5771
5954
 
5772
5955
  /** The preferred alignment against the trigger. */
5773
5956
  export declare type UiPopoverAlign = 'start' | 'center' | 'end';
5774
5957
 
5775
5958
  export { UiPopoverAnchor }
5776
5959
 
5777
- export declare const UiPopoverContent: __VLS_WithTemplateSlots_88<typeof __VLS_component_88, __VLS_TemplateResult_88["slots"]>;
5960
+ export declare const UiPopoverContent: __VLS_WithTemplateSlots_89<typeof __VLS_component_89, __VLS_TemplateResult_89["slots"]>;
5778
5961
 
5779
5962
  /**
5780
5963
  * Emits for the UiPopoverContent component.
@@ -5850,7 +6033,7 @@ export declare interface UiPopoverProps {
5850
6033
  /** The preferred side of the trigger to render the popover. */
5851
6034
  export declare type UiPopoverSide = 'top' | 'right' | 'bottom' | 'left';
5852
6035
 
5853
- export declare const UiPopoverTrigger: __VLS_WithTemplateSlots_87<typeof __VLS_component_87, __VLS_TemplateResult_87["slots"]>;
6036
+ export declare const UiPopoverTrigger: __VLS_WithTemplateSlots_88<typeof __VLS_component_88, __VLS_TemplateResult_88["slots"]>;
5854
6037
 
5855
6038
  /**
5856
6039
  * Props for the UiPopoverTrigger component.
@@ -5871,9 +6054,9 @@ export declare interface UiPopoverTriggerProps {
5871
6054
  asChild?: boolean;
5872
6055
  }
5873
6056
 
5874
- export declare const UiProgress: DefineComponent<__VLS_PublicProps_9, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
6057
+ export declare const UiProgress: DefineComponent<__VLS_PublicProps_11, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
5875
6058
  "update:modelValue": (value: number) => any;
5876
- }, string, PublicProps, Readonly<__VLS_PublicProps_9> & Readonly<{
6059
+ }, string, PublicProps, Readonly<__VLS_PublicProps_11> & Readonly<{
5877
6060
  "onUpdate:modelValue"?: ((value: number) => any) | undefined;
5878
6061
  }>, {
5879
6062
  max: number;
@@ -5895,7 +6078,7 @@ export declare type UiProgressProps = {
5895
6078
  max?: number;
5896
6079
  };
5897
6080
 
5898
- export declare const UiRadioGroup: __VLS_WithTemplateSlots_89<typeof __VLS_component_89, __VLS_TemplateResult_89["slots"]>;
6081
+ export declare const UiRadioGroup: __VLS_WithTemplateSlots_90<typeof __VLS_component_90, __VLS_TemplateResult_90["slots"]>;
5899
6082
 
5900
6083
  /** The reading direction of the radio group. */
5901
6084
  export declare type UiRadioGroupDirection = 'ltr' | 'rtl';
@@ -5976,10 +6159,10 @@ export declare type UiRadioGroupSharedProps = {
5976
6159
  required?: boolean;
5977
6160
  };
5978
6161
 
5979
- export declare const UiRangeCalendar: DefineComponent<__VLS_PublicProps_11, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
6162
+ export declare const UiRangeCalendar: DefineComponent<__VLS_PublicProps_13, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
5980
6163
  "update:modelValue": (value: DateRange | undefined) => any;
5981
6164
  "update:placeholder": (value: DateValue | undefined) => any;
5982
- }, string, PublicProps, Readonly<__VLS_PublicProps_11> & Readonly<{
6165
+ }, string, PublicProps, Readonly<__VLS_PublicProps_13> & Readonly<{
5983
6166
  "onUpdate:modelValue"?: ((value: DateRange | undefined) => any) | undefined;
5984
6167
  "onUpdate:placeholder"?: ((value: DateValue | undefined) => any) | undefined;
5985
6168
  }>, {
@@ -6153,9 +6336,9 @@ export declare type UiRangeCalendarWeekdayFormat = 'narrow' | 'short' | 'long';
6153
6336
  */
6154
6337
  export declare type UiRangeCalendarWeekStartsOn = 0 | 1 | 2 | 3 | 4 | 5 | 6;
6155
6338
 
6156
- export declare const UiSelect: __VLS_WithTemplateSlots_90<typeof __VLS_component_90, __VLS_TemplateResult_90["slots"]>;
6339
+ export declare const UiSelect: __VLS_WithTemplateSlots_91<typeof __VLS_component_91, __VLS_TemplateResult_91["slots"]>;
6157
6340
 
6158
- export declare const UiSelectContent: __VLS_WithTemplateSlots_92<typeof __VLS_component_92, __VLS_TemplateResult_92["slots"]>;
6341
+ export declare const UiSelectContent: __VLS_WithTemplateSlots_93<typeof __VLS_component_93, __VLS_TemplateResult_93["slots"]>;
6159
6342
 
6160
6343
  /**
6161
6344
  * Emits for the UiSelectContent component.
@@ -6191,9 +6374,9 @@ export declare type UiSelectEmits = {
6191
6374
  'update:open': [value: boolean];
6192
6375
  };
6193
6376
 
6194
- export declare const UiSelectGroup: __VLS_WithTemplateSlots_96<typeof __VLS_component_96, __VLS_TemplateResult_96["slots"]>;
6377
+ export declare const UiSelectGroup: __VLS_WithTemplateSlots_97<typeof __VLS_component_97, __VLS_TemplateResult_97["slots"]>;
6195
6378
 
6196
- export declare const UiSelectItem: __VLS_WithTemplateSlots_93<typeof __VLS_component_93, __VLS_TemplateResult_93["slots"]>;
6379
+ export declare const UiSelectItem: __VLS_WithTemplateSlots_94<typeof __VLS_component_94, __VLS_TemplateResult_94["slots"]>;
6197
6380
 
6198
6381
  /**
6199
6382
  * Props for the UiSelectItem component.
@@ -6207,7 +6390,7 @@ export declare type UiSelectItemProps = {
6207
6390
  textValue?: string;
6208
6391
  };
6209
6392
 
6210
- export declare const UiSelectLabel: __VLS_WithTemplateSlots_95<typeof __VLS_component_95, __VLS_TemplateResult_95["slots"]>;
6393
+ export declare const UiSelectLabel: __VLS_WithTemplateSlots_96<typeof __VLS_component_96, __VLS_TemplateResult_96["slots"]>;
6211
6394
 
6212
6395
  /**
6213
6396
  * A dropdown select for choosing from a list of options. Use for
@@ -6238,7 +6421,7 @@ export declare type UiSelectProps = {
6238
6421
 
6239
6422
  export declare const UiSelectSeparator: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
6240
6423
 
6241
- export declare const UiSelectTrigger: __VLS_WithTemplateSlots_91<typeof __VLS_component_91, __VLS_TemplateResult_91["slots"]>;
6424
+ export declare const UiSelectTrigger: __VLS_WithTemplateSlots_92<typeof __VLS_component_92, __VLS_TemplateResult_92["slots"]>;
6242
6425
 
6243
6426
  /**
6244
6427
  * Props for the UiSelectTrigger component.
@@ -6252,7 +6435,7 @@ export declare type UiSelectTriggerProps = {
6252
6435
  size?: 'default' | 'sm';
6253
6436
  };
6254
6437
 
6255
- export declare const UiSelectValue: __VLS_WithTemplateSlots_94<typeof __VLS_component_94, __VLS_TemplateResult_94["slots"]>;
6438
+ export declare const UiSelectValue: __VLS_WithTemplateSlots_95<typeof __VLS_component_95, __VLS_TemplateResult_95["slots"]>;
6256
6439
 
6257
6440
  /**
6258
6441
  * Props for the UiSelectValue component.
@@ -6290,9 +6473,9 @@ export declare interface UiSeparatorProps {
6290
6473
  decorative?: boolean;
6291
6474
  }
6292
6475
 
6293
- export declare const UiSheet: __VLS_WithTemplateSlots_97<typeof __VLS_component_97, __VLS_TemplateResult_97["slots"]>;
6476
+ export declare const UiSheet: __VLS_WithTemplateSlots_98<typeof __VLS_component_98, __VLS_TemplateResult_98["slots"]>;
6294
6477
 
6295
- export declare const UiSheetClose: __VLS_WithTemplateSlots_100<typeof __VLS_component_100, __VLS_TemplateResult_100["slots"]>;
6478
+ export declare const UiSheetClose: __VLS_WithTemplateSlots_101<typeof __VLS_component_101, __VLS_TemplateResult_101["slots"]>;
6296
6479
 
6297
6480
  /**
6298
6481
  * Props for the UiSheetClose component.
@@ -6307,7 +6490,7 @@ export declare interface UiSheetCloseProps {
6307
6490
  asChild?: boolean;
6308
6491
  }
6309
6492
 
6310
- export declare const UiSheetContent: __VLS_WithTemplateSlots_99<typeof __VLS_component_99, __VLS_TemplateResult_99["slots"]>;
6493
+ export declare const UiSheetContent: __VLS_WithTemplateSlots_100<typeof __VLS_component_100, __VLS_TemplateResult_100["slots"]>;
6311
6494
 
6312
6495
  /**
6313
6496
  * Props for the UiSheetContent component.
@@ -6327,11 +6510,11 @@ export declare interface UiSheetContentProps {
6327
6510
  closeLabel?: string;
6328
6511
  }
6329
6512
 
6330
- export declare const UiSheetDescription: __VLS_WithTemplateSlots_104<typeof __VLS_component_104, __VLS_TemplateResult_104["slots"]>;
6513
+ export declare const UiSheetDescription: __VLS_WithTemplateSlots_105<typeof __VLS_component_105, __VLS_TemplateResult_105["slots"]>;
6331
6514
 
6332
- export declare const UiSheetFooter: __VLS_WithTemplateSlots_102<typeof __VLS_component_102, __VLS_TemplateResult_102["slots"]>;
6515
+ export declare const UiSheetFooter: __VLS_WithTemplateSlots_103<typeof __VLS_component_103, __VLS_TemplateResult_103["slots"]>;
6333
6516
 
6334
- export declare const UiSheetHeader: __VLS_WithTemplateSlots_101<typeof __VLS_component_101, __VLS_TemplateResult_101["slots"]>;
6517
+ export declare const UiSheetHeader: __VLS_WithTemplateSlots_102<typeof __VLS_component_102, __VLS_TemplateResult_102["slots"]>;
6335
6518
 
6336
6519
  /**
6337
6520
  * A panel that slides in from the edge of the screen to display
@@ -6370,9 +6553,9 @@ export declare interface UiSheetProps {
6370
6553
  */
6371
6554
  export declare type UiSheetSide = 'top' | 'right' | 'bottom' | 'left';
6372
6555
 
6373
- export declare const UiSheetTitle: __VLS_WithTemplateSlots_103<typeof __VLS_component_103, __VLS_TemplateResult_103["slots"]>;
6556
+ export declare const UiSheetTitle: __VLS_WithTemplateSlots_104<typeof __VLS_component_104, __VLS_TemplateResult_104["slots"]>;
6374
6557
 
6375
- export declare const UiSheetTrigger: __VLS_WithTemplateSlots_98<typeof __VLS_component_98, __VLS_TemplateResult_98["slots"]>;
6558
+ export declare const UiSheetTrigger: __VLS_WithTemplateSlots_99<typeof __VLS_component_99, __VLS_TemplateResult_99["slots"]>;
6376
6559
 
6377
6560
  /**
6378
6561
  * Props for the UiSheetTrigger component.
@@ -6387,17 +6570,17 @@ export declare interface UiSheetTriggerProps {
6387
6570
  asChild?: boolean;
6388
6571
  }
6389
6572
 
6390
- export declare const UiSidebar: __VLS_WithTemplateSlots_117<typeof __VLS_component_117, __VLS_TemplateResult_117["slots"]>;
6573
+ export declare const UiSidebar: __VLS_WithTemplateSlots_118<typeof __VLS_component_118, __VLS_TemplateResult_118["slots"]>;
6391
6574
 
6392
6575
  export declare type UiSidebarCollapsible = 'offcanvas' | 'icon' | 'none';
6393
6576
 
6394
- export declare const UiSidebarContent: __VLS_WithTemplateSlots_105<typeof __VLS_component_105, __VLS_TemplateResult_105["slots"]>;
6577
+ export declare const UiSidebarContent: __VLS_WithTemplateSlots_106<typeof __VLS_component_106, __VLS_TemplateResult_106["slots"]>;
6395
6578
 
6396
- export declare const UiSidebarFooter: __VLS_WithTemplateSlots_106<typeof __VLS_component_106, __VLS_TemplateResult_106["slots"]>;
6579
+ export declare const UiSidebarFooter: __VLS_WithTemplateSlots_107<typeof __VLS_component_107, __VLS_TemplateResult_107["slots"]>;
6397
6580
 
6398
- export declare const UiSidebarGroup: __VLS_WithTemplateSlots_107<typeof __VLS_component_107, __VLS_TemplateResult_107["slots"]>;
6581
+ export declare const UiSidebarGroup: __VLS_WithTemplateSlots_108<typeof __VLS_component_108, __VLS_TemplateResult_108["slots"]>;
6399
6582
 
6400
- export declare const UiSidebarGroupAction: __VLS_WithTemplateSlots_118<typeof __VLS_component_118, __VLS_TemplateResult_118["slots"]>;
6583
+ export declare const UiSidebarGroupAction: __VLS_WithTemplateSlots_119<typeof __VLS_component_119, __VLS_TemplateResult_119["slots"]>;
6401
6584
 
6402
6585
  export declare interface UiSidebarGroupActionProps {
6403
6586
  /**
@@ -6407,9 +6590,9 @@ export declare interface UiSidebarGroupActionProps {
6407
6590
  asChild?: boolean;
6408
6591
  }
6409
6592
 
6410
- export declare const UiSidebarGroupContent: __VLS_WithTemplateSlots_108<typeof __VLS_component_108, __VLS_TemplateResult_108["slots"]>;
6593
+ export declare const UiSidebarGroupContent: __VLS_WithTemplateSlots_109<typeof __VLS_component_109, __VLS_TemplateResult_109["slots"]>;
6411
6594
 
6412
- export declare const UiSidebarGroupLabel: __VLS_WithTemplateSlots_119<typeof __VLS_component_119, __VLS_TemplateResult_119["slots"]>;
6595
+ export declare const UiSidebarGroupLabel: __VLS_WithTemplateSlots_120<typeof __VLS_component_120, __VLS_TemplateResult_120["slots"]>;
6413
6596
 
6414
6597
  export declare interface UiSidebarGroupLabelProps {
6415
6598
  /**
@@ -6419,9 +6602,9 @@ export declare interface UiSidebarGroupLabelProps {
6419
6602
  asChild?: boolean;
6420
6603
  }
6421
6604
 
6422
- export declare const UiSidebarHeader: __VLS_WithTemplateSlots_109<typeof __VLS_component_109, __VLS_TemplateResult_109["slots"]>;
6605
+ export declare const UiSidebarHeader: __VLS_WithTemplateSlots_110<typeof __VLS_component_110, __VLS_TemplateResult_110["slots"]>;
6423
6606
 
6424
- export declare const UiSidebarHeaderTrigger: __VLS_WithTemplateSlots_120<typeof __VLS_component_120, __VLS_TemplateResult_120["slots"]>;
6607
+ export declare const UiSidebarHeaderTrigger: __VLS_WithTemplateSlots_121<typeof __VLS_component_121, __VLS_TemplateResult_121["slots"]>;
6425
6608
 
6426
6609
  /**
6427
6610
  * Sidebar header with integrated toggle trigger (OpenAI-style).
@@ -6439,11 +6622,11 @@ export declare interface UiSidebarInputProps {
6439
6622
  placeholder?: string;
6440
6623
  }
6441
6624
 
6442
- export declare const UiSidebarInset: __VLS_WithTemplateSlots_110<typeof __VLS_component_110, __VLS_TemplateResult_110["slots"]>;
6625
+ export declare const UiSidebarInset: __VLS_WithTemplateSlots_111<typeof __VLS_component_111, __VLS_TemplateResult_111["slots"]>;
6443
6626
 
6444
- export declare const UiSidebarMenu: __VLS_WithTemplateSlots_111<typeof __VLS_component_111, __VLS_TemplateResult_111["slots"]>;
6627
+ export declare const UiSidebarMenu: __VLS_WithTemplateSlots_112<typeof __VLS_component_112, __VLS_TemplateResult_112["slots"]>;
6445
6628
 
6446
- export declare const UiSidebarMenuAction: __VLS_WithTemplateSlots_121<typeof __VLS_component_121, __VLS_TemplateResult_121["slots"]>;
6629
+ export declare const UiSidebarMenuAction: __VLS_WithTemplateSlots_122<typeof __VLS_component_122, __VLS_TemplateResult_122["slots"]>;
6447
6630
 
6448
6631
  export declare interface UiSidebarMenuActionProps {
6449
6632
  /**
@@ -6458,9 +6641,9 @@ export declare interface UiSidebarMenuActionProps {
6458
6641
  asChild?: boolean;
6459
6642
  }
6460
6643
 
6461
- export declare const UiSidebarMenuBadge: __VLS_WithTemplateSlots_112<typeof __VLS_component_112, __VLS_TemplateResult_112["slots"]>;
6644
+ export declare const UiSidebarMenuBadge: __VLS_WithTemplateSlots_113<typeof __VLS_component_113, __VLS_TemplateResult_113["slots"]>;
6462
6645
 
6463
- export declare const UiSidebarMenuButton: __VLS_WithTemplateSlots_122<typeof __VLS_component_122, __VLS_TemplateResult_122["slots"]>;
6646
+ export declare const UiSidebarMenuButton: __VLS_WithTemplateSlots_123<typeof __VLS_component_123, __VLS_TemplateResult_123["slots"]>;
6464
6647
 
6465
6648
  export declare interface UiSidebarMenuButtonProps {
6466
6649
  /**
@@ -6494,7 +6677,7 @@ export declare type UiSidebarMenuButtonSize = 'default' | 'sm' | 'lg';
6494
6677
 
6495
6678
  export declare type UiSidebarMenuButtonVariant = 'default' | 'outline';
6496
6679
 
6497
- export declare const UiSidebarMenuItem: __VLS_WithTemplateSlots_113<typeof __VLS_component_113, __VLS_TemplateResult_113["slots"]>;
6680
+ export declare const UiSidebarMenuItem: __VLS_WithTemplateSlots_114<typeof __VLS_component_114, __VLS_TemplateResult_114["slots"]>;
6498
6681
 
6499
6682
  export declare const UiSidebarMenuSkeleton: DefineComponent<UiSidebarMenuSkeletonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiSidebarMenuSkeletonProps> & Readonly<{}>, {
6500
6683
  showIcon: boolean;
@@ -6508,9 +6691,9 @@ export declare interface UiSidebarMenuSkeletonProps {
6508
6691
  showIcon?: boolean;
6509
6692
  }
6510
6693
 
6511
- export declare const UiSidebarMenuSub: __VLS_WithTemplateSlots_114<typeof __VLS_component_114, __VLS_TemplateResult_114["slots"]>;
6694
+ export declare const UiSidebarMenuSub: __VLS_WithTemplateSlots_115<typeof __VLS_component_115, __VLS_TemplateResult_115["slots"]>;
6512
6695
 
6513
- export declare const UiSidebarMenuSubButton: __VLS_WithTemplateSlots_123<typeof __VLS_component_123, __VLS_TemplateResult_123["slots"]>;
6696
+ export declare const UiSidebarMenuSubButton: __VLS_WithTemplateSlots_124<typeof __VLS_component_124, __VLS_TemplateResult_124["slots"]>;
6514
6697
 
6515
6698
  export declare interface UiSidebarMenuSubButtonProps {
6516
6699
  /**
@@ -6532,7 +6715,7 @@ export declare interface UiSidebarMenuSubButtonProps {
6532
6715
 
6533
6716
  export declare type UiSidebarMenuSubButtonSize = 'sm' | 'md';
6534
6717
 
6535
- export declare const UiSidebarMenuSubItem: __VLS_WithTemplateSlots_115<typeof __VLS_component_115, __VLS_TemplateResult_115["slots"]>;
6718
+ export declare const UiSidebarMenuSubItem: __VLS_WithTemplateSlots_116<typeof __VLS_component_116, __VLS_TemplateResult_116["slots"]>;
6536
6719
 
6537
6720
  /**
6538
6721
  * A collapsible sidebar navigation component for application layouts.
@@ -6566,7 +6749,7 @@ export declare interface UiSidebarProps {
6566
6749
  collapsible?: UiSidebarCollapsible;
6567
6750
  }
6568
6751
 
6569
- export declare const UiSidebarProvider: __VLS_WithTemplateSlots_124<typeof __VLS_component_124, __VLS_TemplateResult_124["slots"]>;
6752
+ export declare const UiSidebarProvider: __VLS_WithTemplateSlots_125<typeof __VLS_component_125, __VLS_TemplateResult_125["slots"]>;
6570
6753
 
6571
6754
  /**
6572
6755
  * Wraps the sidebar and manages its open/closed state.
@@ -6581,7 +6764,7 @@ export declare interface UiSidebarProviderProps {
6581
6764
  defaultOpen?: boolean;
6582
6765
  }
6583
6766
 
6584
- export declare const UiSidebarRail: __VLS_WithTemplateSlots_116<typeof __VLS_component_116, __VLS_TemplateResult_116["slots"]>;
6767
+ export declare const UiSidebarRail: __VLS_WithTemplateSlots_117<typeof __VLS_component_117, __VLS_TemplateResult_117["slots"]>;
6585
6768
 
6586
6769
  export declare const UiSidebarSeparator: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
6587
6770
 
@@ -6737,13 +6920,13 @@ export declare interface UiSpinnerProps {
6737
6920
  ariaLabel?: string;
6738
6921
  }
6739
6922
 
6740
- export declare const UiStepper: __VLS_WithTemplateSlots_125<typeof __VLS_component_125, __VLS_TemplateResult_125["slots"]>;
6923
+ export declare const UiStepper: __VLS_WithTemplateSlots_126<typeof __VLS_component_126, __VLS_TemplateResult_126["slots"]>;
6741
6924
 
6742
- export declare const UiStepperDescription: __VLS_WithTemplateSlots_130<typeof __VLS_component_130, __VLS_TemplateResult_130["slots"]>;
6925
+ export declare const UiStepperDescription: __VLS_WithTemplateSlots_131<typeof __VLS_component_131, __VLS_TemplateResult_131["slots"]>;
6743
6926
 
6744
- export declare const UiStepperIndicator: __VLS_WithTemplateSlots_128<typeof __VLS_component_128, __VLS_TemplateResult_128["slots"]>;
6927
+ export declare const UiStepperIndicator: __VLS_WithTemplateSlots_129<typeof __VLS_component_129, __VLS_TemplateResult_129["slots"]>;
6745
6928
 
6746
- export declare const UiStepperItem: __VLS_WithTemplateSlots_126<typeof __VLS_component_126, __VLS_TemplateResult_126["slots"]>;
6929
+ export declare const UiStepperItem: __VLS_WithTemplateSlots_127<typeof __VLS_component_127, __VLS_TemplateResult_127["slots"]>;
6747
6930
 
6748
6931
  /**
6749
6932
  * Props for the UiStepperItem component.
@@ -6801,9 +6984,9 @@ export declare type UiStepperProps = {
6801
6984
 
6802
6985
  export declare const UiStepperSeparator: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
6803
6986
 
6804
- export declare const UiStepperTitle: __VLS_WithTemplateSlots_129<typeof __VLS_component_129, __VLS_TemplateResult_129["slots"]>;
6987
+ export declare const UiStepperTitle: __VLS_WithTemplateSlots_130<typeof __VLS_component_130, __VLS_TemplateResult_130["slots"]>;
6805
6988
 
6806
- export declare const UiStepperTrigger: __VLS_WithTemplateSlots_127<typeof __VLS_component_127, __VLS_TemplateResult_127["slots"]>;
6989
+ export declare const UiStepperTrigger: __VLS_WithTemplateSlots_128<typeof __VLS_component_128, __VLS_TemplateResult_128["slots"]>;
6807
6990
 
6808
6991
  /**
6809
6992
  * Props for the UiStepperTrigger component.
@@ -6817,9 +7000,9 @@ export declare type UiStepperTriggerProps = {
6817
7000
  asChild?: boolean;
6818
7001
  };
6819
7002
 
6820
- export declare const UiSwitch: DefineComponent<__VLS_PublicProps_13, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
7003
+ export declare const UiSwitch: DefineComponent<__VLS_PublicProps_15, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
6821
7004
  "update:modelValue": (value: boolean) => any;
6822
- }, string, PublicProps, Readonly<__VLS_PublicProps_13> & Readonly<{
7005
+ }, string, PublicProps, Readonly<__VLS_PublicProps_15> & Readonly<{
6823
7006
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
6824
7007
  }>, {
6825
7008
  disabled: boolean;
@@ -6851,13 +7034,13 @@ export declare type UiSwitchProps = {
6851
7034
  required?: boolean;
6852
7035
  };
6853
7036
 
6854
- export declare const UiTable: __VLS_WithTemplateSlots_131<typeof __VLS_component_131, __VLS_TemplateResult_131["slots"]>;
7037
+ export declare const UiTable: __VLS_WithTemplateSlots_132<typeof __VLS_component_132, __VLS_TemplateResult_132["slots"]>;
6855
7038
 
6856
- export declare const UiTableBody: __VLS_WithTemplateSlots_133<typeof __VLS_component_133, __VLS_TemplateResult_133["slots"]>;
7039
+ export declare const UiTableBody: __VLS_WithTemplateSlots_134<typeof __VLS_component_134, __VLS_TemplateResult_134["slots"]>;
6857
7040
 
6858
- export declare const UiTableCaption: __VLS_WithTemplateSlots_138<typeof __VLS_component_138, __VLS_TemplateResult_138["slots"]>;
7041
+ export declare const UiTableCaption: __VLS_WithTemplateSlots_139<typeof __VLS_component_139, __VLS_TemplateResult_139["slots"]>;
6859
7042
 
6860
- export declare const UiTableCell: __VLS_WithTemplateSlots_137<typeof __VLS_component_137, __VLS_TemplateResult_137["slots"]>;
7043
+ export declare const UiTableCell: __VLS_WithTemplateSlots_138<typeof __VLS_component_138, __VLS_TemplateResult_138["slots"]>;
6861
7044
 
6862
7045
  /**
6863
7046
  * Props for UiTableCell component.
@@ -6874,7 +7057,7 @@ export declare interface UiTableCellProps {
6874
7057
  rowspan?: number;
6875
7058
  }
6876
7059
 
6877
- export declare const UiTableEmpty: __VLS_WithTemplateSlots_139<typeof __VLS_component_139, __VLS_TemplateResult_139["slots"]>;
7060
+ export declare const UiTableEmpty: __VLS_WithTemplateSlots_140<typeof __VLS_component_140, __VLS_TemplateResult_140["slots"]>;
6878
7061
 
6879
7062
  /**
6880
7063
  * Props for UiTableEmpty component.
@@ -6889,11 +7072,11 @@ export declare interface UiTableEmptyProps {
6889
7072
  colspan?: number;
6890
7073
  }
6891
7074
 
6892
- export declare const UiTableFooter: __VLS_WithTemplateSlots_134<typeof __VLS_component_134, __VLS_TemplateResult_134["slots"]>;
7075
+ export declare const UiTableFooter: __VLS_WithTemplateSlots_135<typeof __VLS_component_135, __VLS_TemplateResult_135["slots"]>;
6893
7076
 
6894
- export declare const UiTableHead: __VLS_WithTemplateSlots_136<typeof __VLS_component_136, __VLS_TemplateResult_136["slots"]>;
7077
+ export declare const UiTableHead: __VLS_WithTemplateSlots_137<typeof __VLS_component_137, __VLS_TemplateResult_137["slots"]>;
6895
7078
 
6896
- export declare const UiTableHeader: __VLS_WithTemplateSlots_132<typeof __VLS_component_132, __VLS_TemplateResult_132["slots"]>;
7079
+ export declare const UiTableHeader: __VLS_WithTemplateSlots_133<typeof __VLS_component_133, __VLS_TemplateResult_133["slots"]>;
6897
7080
 
6898
7081
  /**
6899
7082
  * Props for UiTableHead component.
@@ -6915,7 +7098,7 @@ export declare interface UiTableHeadProps {
6915
7098
  scope?: 'col' | 'row' | 'colgroup' | 'rowgroup';
6916
7099
  }
6917
7100
 
6918
- export declare const UiTableRow: __VLS_WithTemplateSlots_135<typeof __VLS_component_135, __VLS_TemplateResult_135["slots"]>;
7101
+ export declare const UiTableRow: __VLS_WithTemplateSlots_136<typeof __VLS_component_136, __VLS_TemplateResult_136["slots"]>;
6919
7102
 
6920
7103
  /**
6921
7104
  * A basic HTML table with styled rows, headers, and cells. Use for
@@ -6934,14 +7117,14 @@ export declare interface UiTableRowProps {
6934
7117
  selected?: boolean;
6935
7118
  }
6936
7119
 
6937
- export declare const UiTabs: __VLS_WithTemplateSlots_140<typeof __VLS_component_140, __VLS_TemplateResult_140["slots"]>;
7120
+ export declare const UiTabs: __VLS_WithTemplateSlots_141<typeof __VLS_component_141, __VLS_TemplateResult_141["slots"]>;
6938
7121
 
6939
7122
  /**
6940
7123
  * Activation mode for tabs.
6941
7124
  */
6942
7125
  export declare type UiTabsActivationMode = 'automatic' | 'manual';
6943
7126
 
6944
- export declare const UiTabsContent: __VLS_WithTemplateSlots_143<typeof __VLS_component_143, __VLS_TemplateResult_143["slots"]>;
7127
+ export declare const UiTabsContent: __VLS_WithTemplateSlots_144<typeof __VLS_component_144, __VLS_TemplateResult_144["slots"]>;
6945
7128
 
6946
7129
  /**
6947
7130
  * Props for the UiTabsContent component.
@@ -6964,7 +7147,7 @@ export declare type UiTabsEmits = {
6964
7147
  'update:modelValue': [value: string];
6965
7148
  };
6966
7149
 
6967
- export declare const UiTabsList: __VLS_WithTemplateSlots_141<typeof __VLS_component_141, __VLS_TemplateResult_141["slots"]>;
7150
+ export declare const UiTabsList: __VLS_WithTemplateSlots_142<typeof __VLS_component_142, __VLS_TemplateResult_142["slots"]>;
6968
7151
 
6969
7152
  /**
6970
7153
  * Props for the UiTabsList component.
@@ -6998,7 +7181,7 @@ export declare type UiTabsProps = {
6998
7181
  activationMode?: UiTabsActivationMode;
6999
7182
  };
7000
7183
 
7001
- export declare const UiTabsTrigger: __VLS_WithTemplateSlots_142<typeof __VLS_component_142, __VLS_TemplateResult_142["slots"]>;
7184
+ export declare const UiTabsTrigger: __VLS_WithTemplateSlots_143<typeof __VLS_component_143, __VLS_TemplateResult_143["slots"]>;
7002
7185
 
7003
7186
  /**
7004
7187
  * Props for the UiTabsTrigger component.
@@ -7010,7 +7193,7 @@ export declare type UiTabsTriggerProps = {
7010
7193
  disabled?: boolean;
7011
7194
  };
7012
7195
 
7013
- export declare const UiTagsInput: __VLS_WithTemplateSlots_144<typeof __VLS_component_144, __VLS_TemplateResult_144["slots"]>;
7196
+ export declare const UiTagsInput: __VLS_WithTemplateSlots_145<typeof __VLS_component_145, __VLS_TemplateResult_145["slots"]>;
7014
7197
 
7015
7198
  export declare const UiTagsInputInput: DefineComponent<UiTagsInputInputProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiTagsInputInputProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
7016
7199
 
@@ -7025,9 +7208,9 @@ export declare interface UiTagsInputInputProps {
7025
7208
  placeholder?: string;
7026
7209
  }
7027
7210
 
7028
- export declare const UiTagsInputItem: __VLS_WithTemplateSlots_145<typeof __VLS_component_145, __VLS_TemplateResult_145["slots"]>;
7211
+ export declare const UiTagsInputItem: __VLS_WithTemplateSlots_146<typeof __VLS_component_146, __VLS_TemplateResult_146["slots"]>;
7029
7212
 
7030
- export declare const UiTagsInputItemDelete: __VLS_WithTemplateSlots_146<typeof __VLS_component_146, __VLS_TemplateResult_146["slots"]>;
7213
+ export declare const UiTagsInputItemDelete: __VLS_WithTemplateSlots_147<typeof __VLS_component_147, __VLS_TemplateResult_147["slots"]>;
7031
7214
 
7032
7215
  /**
7033
7216
  * Props for the UiTagsInputItemDelete component.
@@ -7073,9 +7256,9 @@ export declare interface UiTagsInputProps extends Omit<TagsInputRootProps, 'clas
7073
7256
 
7074
7257
  export declare const UiTemplatePlaceholder: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
7075
7258
 
7076
- export declare const UiTextarea: DefineComponent<__VLS_PublicProps_15, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
7259
+ export declare const UiTextarea: DefineComponent<__VLS_PublicProps_17, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
7077
7260
  "update:modelValue": (value: string) => any;
7078
- }, string, PublicProps, Readonly<__VLS_PublicProps_15> & Readonly<{
7261
+ }, string, PublicProps, Readonly<__VLS_PublicProps_17> & Readonly<{
7079
7262
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
7080
7263
  }>, {
7081
7264
  disabled: boolean;
@@ -7112,7 +7295,7 @@ export declare interface UiTextareaProps {
7112
7295
  required?: boolean;
7113
7296
  }
7114
7297
 
7115
- export declare const UiToggle: __VLS_WithTemplateSlots_147<typeof __VLS_component_147, __VLS_TemplateResult_147["slots"]>;
7298
+ export declare const UiToggle: __VLS_WithTemplateSlots_148<typeof __VLS_component_148, __VLS_TemplateResult_148["slots"]>;
7116
7299
 
7117
7300
  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<{
7118
7301
  props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
@@ -7154,7 +7337,7 @@ declare interface UiToggleGroupBaseProps {
7154
7337
  * The visual style variant applied to all items.
7155
7338
  * @default 'default'
7156
7339
  */
7157
- variant?: 'default' | 'outline';
7340
+ variant?: 'default' | 'outline' | 'soft';
7158
7341
  /**
7159
7342
  * The size applied to all items.
7160
7343
  * @default 'default'
@@ -7177,7 +7360,7 @@ declare interface UiToggleGroupBaseProps {
7177
7360
  orientation?: 'horizontal' | 'vertical';
7178
7361
  }
7179
7362
 
7180
- export declare const UiToggleGroupItem: __VLS_WithTemplateSlots_148<typeof __VLS_component_148, __VLS_TemplateResult_148["slots"]>;
7363
+ export declare const UiToggleGroupItem: __VLS_WithTemplateSlots_149<typeof __VLS_component_149, __VLS_TemplateResult_149["slots"]>;
7181
7364
 
7182
7365
  /**
7183
7366
  * An item within a toggle group.
@@ -7195,7 +7378,7 @@ export declare interface UiToggleGroupItemProps {
7195
7378
  /**
7196
7379
  * Override the variant for this specific item.
7197
7380
  */
7198
- variant?: 'default' | 'outline';
7381
+ variant?: 'default' | 'outline' | 'soft';
7199
7382
  /**
7200
7383
  * Override the size for this specific item.
7201
7384
  */
@@ -7299,7 +7482,7 @@ export declare interface UiToggleProps {
7299
7482
  * The visual style variant.
7300
7483
  * @default 'default'
7301
7484
  */
7302
- variant?: 'default' | 'outline';
7485
+ variant?: 'default' | 'outline' | 'soft';
7303
7486
  /**
7304
7487
  * The size of the toggle.
7305
7488
  * @default 'default'
@@ -7307,11 +7490,11 @@ export declare interface UiToggleProps {
7307
7490
  size?: 'default' | 'sm' | 'lg';
7308
7491
  }
7309
7492
 
7310
- export declare const UiTooltip: __VLS_WithTemplateSlots_149<typeof __VLS_component_149, __VLS_TemplateResult_149["slots"]>;
7493
+ export declare const UiTooltip: __VLS_WithTemplateSlots_150<typeof __VLS_component_150, __VLS_TemplateResult_150["slots"]>;
7311
7494
 
7312
7495
  export declare type UiTooltipAlign = 'start' | 'center' | 'end';
7313
7496
 
7314
- export declare const UiTooltipContent: __VLS_WithTemplateSlots_151<typeof __VLS_component_151, __VLS_TemplateResult_151["slots"]>;
7497
+ export declare const UiTooltipContent: __VLS_WithTemplateSlots_152<typeof __VLS_component_152, __VLS_TemplateResult_152["slots"]>;
7315
7498
 
7316
7499
  /**
7317
7500
  * A popup that displays information on hover or focus. Use for
@@ -7357,13 +7540,13 @@ export declare interface UiTooltipProps {
7357
7540
  disabled?: boolean;
7358
7541
  }
7359
7542
 
7360
- export declare const UiTooltipProvider: __VLS_WithTemplateSlots_152<typeof __VLS_component_152, __VLS_TemplateResult_152["slots"]>;
7543
+ export declare const UiTooltipProvider: __VLS_WithTemplateSlots_153<typeof __VLS_component_153, __VLS_TemplateResult_153["slots"]>;
7361
7544
 
7362
- export declare const UiTooltipRoot: __VLS_WithTemplateSlots_150<typeof __VLS_component_150, __VLS_TemplateResult_150["slots"]>;
7545
+ export declare const UiTooltipRoot: __VLS_WithTemplateSlots_151<typeof __VLS_component_151, __VLS_TemplateResult_151["slots"]>;
7363
7546
 
7364
7547
  export declare type UiTooltipSides = 'top' | 'right' | 'bottom' | 'left';
7365
7548
 
7366
- export declare const UiTooltipTrigger: __VLS_WithTemplateSlots_153<typeof __VLS_component_153, __VLS_TemplateResult_153["slots"]>;
7549
+ export declare const UiTooltipTrigger: __VLS_WithTemplateSlots_154<typeof __VLS_component_154, __VLS_TemplateResult_154["slots"]>;
7367
7550
 
7368
7551
  export declare const useSidebar: <T extends {
7369
7552
  state: ComputedRef<"expanded" | "collapsed">;