@reeverdev/ui 0.2.55 → 0.2.57

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -1,40 +1,13 @@
1
1
  import * as class_variance_authority_types from 'class-variance-authority/types';
2
2
  import * as React$1 from 'react';
3
3
  import { VariantProps } from 'class-variance-authority';
4
- import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
5
4
  import * as react_jsx_runtime from 'react/jsx-runtime';
6
- import * as DialogPrimitive from '@radix-ui/react-dialog';
7
- import { DialogProps } from '@radix-ui/react-dialog';
8
- import * as LabelPrimitive from '@radix-ui/react-label';
9
- import * as SeparatorPrimitive from '@radix-ui/react-separator';
10
- import * as SwitchPrimitives from '@radix-ui/react-switch';
11
- import * as AvatarPrimitive from '@radix-ui/react-avatar';
12
- import * as TooltipPrimitive from '@radix-ui/react-tooltip';
13
- import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
14
- import * as PopoverPrimitive from '@radix-ui/react-popover';
15
- import * as TabsPrimitive from '@radix-ui/react-tabs';
16
5
  import { Toaster as Toaster$1 } from 'sonner';
17
6
  export { toast } from 'sonner';
18
- import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area';
19
- import * as ContextMenuPrimitive from '@radix-ui/react-context-menu';
20
- import * as RadioGroupPrimitive from '@radix-ui/react-radio-group';
21
- import * as TogglePrimitive from '@radix-ui/react-toggle';
22
- import * as ToggleGroupPrimitive from '@radix-ui/react-toggle-group';
23
- import * as SliderPrimitive from '@radix-ui/react-slider';
24
- import * as AccordionPrimitive from '@radix-ui/react-accordion';
25
- import * as CollapsiblePrimitive from '@radix-ui/react-collapsible';
26
- import * as ProgressPrimitive from '@radix-ui/react-progress';
27
- import * as HoverCardPrimitive from '@radix-ui/react-hover-card';
28
- import * as AspectRatioPrimitive from '@radix-ui/react-aspect-ratio';
29
- import * as NavigationMenuPrimitive from '@radix-ui/react-navigation-menu';
30
- import * as vaul from 'vaul';
31
- import { Drawer as Drawer$1 } from 'vaul';
32
7
  import { DayPicker, DateRange } from 'react-day-picker';
33
8
  import { GroupProps, Panel, SeparatorProps as SeparatorProps$1 } from 'react-resizable-panels';
34
9
  export { PanelProps as ResizablePanelProps } from 'react-resizable-panels';
35
10
  import * as lucide_react from 'lucide-react';
36
- import * as MenubarPrimitive from '@radix-ui/react-menubar';
37
- import * as VisuallyHiddenPrimitive from '@radix-ui/react-visually-hidden';
38
11
  import useEmblaCarousel, { UseEmblaCarouselType } from 'embla-carousel-react';
39
12
  import { Editor } from '@tiptap/react';
40
13
  import { Crop } from 'react-image-crop';
@@ -107,24 +80,57 @@ declare const CardHeader: React$1.ForwardRefExoticComponent<React$1.HTMLAttribut
107
80
  declare const CardContent: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
108
81
  declare const CardFooter: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
109
82
 
110
- declare const Checkbox: React$1.ForwardRefExoticComponent<Omit<CheckboxPrimitive.CheckboxProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
83
+ type CheckedState = boolean | "indeterminate";
84
+ interface CheckboxProps extends Omit<React$1.ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "defaultChecked"> {
85
+ checked?: CheckedState;
86
+ defaultChecked?: CheckedState;
87
+ onCheckedChange?: (checked: CheckedState) => void;
88
+ required?: boolean;
89
+ name?: string;
90
+ value?: string;
91
+ }
92
+ declare const Checkbox: React$1.ForwardRefExoticComponent<CheckboxProps & React$1.RefAttributes<HTMLButtonElement>>;
111
93
 
112
- declare const Dialog: React$1.FC<DialogPrimitive.DialogProps>;
113
- declare const DialogTrigger: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
114
- declare const DialogPortal: React$1.FC<DialogPrimitive.DialogPortalProps>;
115
- declare const DialogClose: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React$1.RefAttributes<HTMLButtonElement>>;
116
- declare const DialogOverlay: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
117
- declare const DialogContent: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
118
- declare const DialogHeader: {
119
- ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
120
- displayName: string;
121
- };
122
- declare const DialogFooter: {
123
- ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
124
- displayName: string;
125
- };
126
- declare const DialogTitle: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
127
- declare const DialogDescription: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
94
+ interface DialogProps {
95
+ children: React$1.ReactNode;
96
+ open?: boolean;
97
+ defaultOpen?: boolean;
98
+ onOpenChange?: (open: boolean) => void;
99
+ }
100
+ declare const Dialog: React$1.FC<DialogProps>;
101
+ interface DialogTriggerProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
102
+ asChild?: boolean;
103
+ }
104
+ declare const DialogTrigger: React$1.ForwardRefExoticComponent<DialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
105
+ interface DialogCloseProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
106
+ asChild?: boolean;
107
+ }
108
+ declare const DialogClose: React$1.ForwardRefExoticComponent<DialogCloseProps & React$1.RefAttributes<HTMLButtonElement>>;
109
+ interface DialogPortalProps {
110
+ children: React$1.ReactNode;
111
+ container?: HTMLElement;
112
+ }
113
+ declare const DialogPortal: React$1.FC<DialogPortalProps>;
114
+ interface DialogOverlayProps extends React$1.HTMLAttributes<HTMLDivElement> {
115
+ }
116
+ declare const DialogOverlay: React$1.ForwardRefExoticComponent<DialogOverlayProps & React$1.RefAttributes<HTMLDivElement>>;
117
+ interface DialogContentProps extends React$1.HTMLAttributes<HTMLDivElement> {
118
+ onEscapeKeyDown?: () => void;
119
+ onInteractOutside?: () => void;
120
+ }
121
+ declare const DialogContent: React$1.ForwardRefExoticComponent<DialogContentProps & React$1.RefAttributes<HTMLDivElement>>;
122
+ interface DialogHeaderProps extends React$1.HTMLAttributes<HTMLDivElement> {
123
+ }
124
+ declare const DialogHeader: React$1.FC<DialogHeaderProps>;
125
+ interface DialogFooterProps extends React$1.HTMLAttributes<HTMLDivElement> {
126
+ }
127
+ declare const DialogFooter: React$1.FC<DialogFooterProps>;
128
+ interface DialogTitleProps extends React$1.HTMLAttributes<HTMLHeadingElement> {
129
+ }
130
+ declare const DialogTitle: React$1.ForwardRefExoticComponent<DialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>>;
131
+ interface DialogDescriptionProps extends React$1.HTMLAttributes<HTMLParagraphElement> {
132
+ }
133
+ declare const DialogDescription: React$1.ForwardRefExoticComponent<DialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>>;
128
134
 
129
135
  declare const inputVariants: (props?: ({
130
136
  radius?: "none" | "sm" | "md" | "lg" | "full" | null | undefined;
@@ -133,14 +139,27 @@ interface InputProps extends React$1.InputHTMLAttributes<HTMLInputElement>, Vari
133
139
  }
134
140
  declare const Input: React$1.ForwardRefExoticComponent<InputProps & React$1.RefAttributes<HTMLInputElement>>;
135
141
 
136
- declare const Label: React$1.ForwardRefExoticComponent<Omit<LabelPrimitive.LabelProps & React$1.RefAttributes<HTMLLabelElement>, "ref"> & VariantProps<(props?: class_variance_authority_types.ClassProp | undefined) => string> & React$1.RefAttributes<HTMLLabelElement>>;
142
+ declare const labelVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
143
+ interface LabelProps extends React$1.LabelHTMLAttributes<HTMLLabelElement>, VariantProps<typeof labelVariants> {
144
+ }
145
+ declare const Label: React$1.ForwardRefExoticComponent<LabelProps & React$1.RefAttributes<HTMLLabelElement>>;
137
146
 
138
- interface SeparatorProps extends React$1.ComponentPropsWithoutRef<typeof SeparatorPrimitive.Root> {
147
+ interface SeparatorProps extends React$1.HTMLAttributes<HTMLDivElement> {
148
+ orientation?: "horizontal" | "vertical";
149
+ decorative?: boolean;
139
150
  text?: string;
140
151
  }
141
152
  declare const Separator: React$1.ForwardRefExoticComponent<SeparatorProps & React$1.RefAttributes<HTMLDivElement>>;
142
153
 
143
- declare const Switch: React$1.ForwardRefExoticComponent<Omit<SwitchPrimitives.SwitchProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
154
+ interface SwitchProps extends Omit<React$1.ButtonHTMLAttributes<HTMLButtonElement>, "onChange"> {
155
+ checked?: boolean;
156
+ defaultChecked?: boolean;
157
+ onCheckedChange?: (checked: boolean) => void;
158
+ required?: boolean;
159
+ name?: string;
160
+ value?: string;
161
+ }
162
+ declare const Switch: React$1.ForwardRefExoticComponent<SwitchProps & React$1.RefAttributes<HTMLButtonElement>>;
144
163
 
145
164
  declare const textareaVariants: (props?: ({
146
165
  radius?: "none" | "sm" | "md" | "lg" | null | undefined;
@@ -160,16 +179,45 @@ declare const avatarVariants: (props?: ({
160
179
  size?: "sm" | "md" | "lg" | null | undefined;
161
180
  radius?: "none" | "sm" | "md" | "lg" | "full" | null | undefined;
162
181
  } & class_variance_authority_types.ClassProp) | undefined) => string;
163
- interface AvatarProps extends React$1.ComponentPropsWithoutRef<typeof AvatarPrimitive.Root>, VariantProps<typeof avatarVariants> {
182
+ interface AvatarProps extends React$1.HTMLAttributes<HTMLSpanElement>, VariantProps<typeof avatarVariants> {
164
183
  }
165
184
  declare const Avatar: React$1.ForwardRefExoticComponent<AvatarProps & React$1.RefAttributes<HTMLSpanElement>>;
166
- declare const AvatarImage: React$1.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarImageProps & React$1.RefAttributes<HTMLImageElement>, "ref"> & React$1.RefAttributes<HTMLImageElement>>;
167
- declare const AvatarFallback: React$1.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarFallbackProps & React$1.RefAttributes<HTMLSpanElement>, "ref"> & React$1.RefAttributes<HTMLSpanElement>>;
185
+ interface AvatarImageProps extends React$1.ImgHTMLAttributes<HTMLImageElement> {
186
+ onLoadingStatusChange?: (status: "loading" | "loaded" | "error") => void;
187
+ }
188
+ declare const AvatarImage: React$1.ForwardRefExoticComponent<AvatarImageProps & React$1.RefAttributes<HTMLImageElement>>;
189
+ interface AvatarFallbackProps extends React$1.HTMLAttributes<HTMLSpanElement> {
190
+ delayMs?: number;
191
+ }
192
+ declare const AvatarFallback: React$1.ForwardRefExoticComponent<AvatarFallbackProps & React$1.RefAttributes<HTMLSpanElement>>;
168
193
 
169
- declare const TooltipProvider: React$1.FC<TooltipPrimitive.TooltipProviderProps>;
170
- declare const Tooltip: React$1.FC<TooltipPrimitive.TooltipProps>;
171
- declare const TooltipTrigger: React$1.ForwardRefExoticComponent<TooltipPrimitive.TooltipTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
172
- declare const TooltipContent: React$1.ForwardRefExoticComponent<Omit<TooltipPrimitive.TooltipContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
194
+ interface TooltipProviderProps {
195
+ children: React$1.ReactNode;
196
+ delayDuration?: number;
197
+ skipDelayDuration?: number;
198
+ }
199
+ declare const TooltipProvider: React$1.FC<TooltipProviderProps>;
200
+ interface TooltipProps {
201
+ children: React$1.ReactNode;
202
+ open?: boolean;
203
+ defaultOpen?: boolean;
204
+ onOpenChange?: (open: boolean) => void;
205
+ delayDuration?: number;
206
+ }
207
+ declare const Tooltip: React$1.FC<TooltipProps>;
208
+ interface TooltipTriggerProps extends React$1.HTMLAttributes<HTMLElement> {
209
+ asChild?: boolean;
210
+ }
211
+ declare const TooltipTrigger: React$1.ForwardRefExoticComponent<TooltipTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
212
+ type Side$4 = "top" | "right" | "bottom" | "left";
213
+ type Align$4 = "start" | "center" | "end";
214
+ interface TooltipContentProps extends React$1.HTMLAttributes<HTMLDivElement> {
215
+ side?: Side$4;
216
+ sideOffset?: number;
217
+ align?: Align$4;
218
+ alignOffset?: number;
219
+ }
220
+ declare const TooltipContent: React$1.ForwardRefExoticComponent<TooltipContentProps & React$1.RefAttributes<HTMLDivElement>>;
173
221
 
174
222
  declare const selectVariants: (props?: ({
175
223
  radius?: "none" | "sm" | "md" | "lg" | "full" | null | undefined;
@@ -205,57 +253,247 @@ interface SelectCommonProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>,
205
253
  type SelectProps = SelectCommonProps & (SelectSingleProps | SelectMultipleProps);
206
254
  declare const Select: React$1.ForwardRefExoticComponent<SelectProps & React$1.RefAttributes<HTMLDivElement>>;
207
255
 
208
- declare const DropdownMenu: React$1.FC<DropdownMenuPrimitive.DropdownMenuProps>;
209
- declare const DropdownMenuTrigger: React$1.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
210
- declare const DropdownMenuGroup: React$1.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuGroupProps & React$1.RefAttributes<HTMLDivElement>>;
211
- declare const DropdownMenuPortal: React$1.FC<DropdownMenuPrimitive.DropdownMenuPortalProps>;
212
- declare const DropdownMenuSub: React$1.FC<DropdownMenuPrimitive.DropdownMenuSubProps>;
213
- declare const DropdownMenuRadioGroup: React$1.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuRadioGroupProps & React$1.RefAttributes<HTMLDivElement>>;
214
- declare const DropdownMenuSubTrigger: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubTriggerProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
256
+ interface DropdownMenuProps {
257
+ children: React$1.ReactNode;
258
+ open?: boolean;
259
+ defaultOpen?: boolean;
260
+ onOpenChange?: (open: boolean) => void;
261
+ }
262
+ declare const DropdownMenu: React$1.FC<DropdownMenuProps>;
263
+ interface DropdownMenuTriggerProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
264
+ asChild?: boolean;
265
+ }
266
+ declare const DropdownMenuTrigger: React$1.ForwardRefExoticComponent<DropdownMenuTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
267
+ interface DropdownMenuGroupProps extends React$1.HTMLAttributes<HTMLDivElement> {
268
+ }
269
+ declare const DropdownMenuGroup: React$1.ForwardRefExoticComponent<DropdownMenuGroupProps & React$1.RefAttributes<HTMLDivElement>>;
270
+ interface DropdownMenuPortalProps {
271
+ children: React$1.ReactNode;
272
+ container?: HTMLElement;
273
+ }
274
+ declare const DropdownMenuPortal: React$1.FC<DropdownMenuPortalProps>;
275
+ interface DropdownMenuSubProps {
276
+ children: React$1.ReactNode;
277
+ open?: boolean;
278
+ defaultOpen?: boolean;
279
+ onOpenChange?: (open: boolean) => void;
280
+ }
281
+ declare const DropdownMenuSub: React$1.FC<DropdownMenuSubProps>;
282
+ interface DropdownMenuRadioGroupProps extends React$1.HTMLAttributes<HTMLDivElement> {
283
+ value?: string;
284
+ onValueChange?: (value: string) => void;
285
+ }
286
+ declare const DropdownMenuRadioGroup: React$1.ForwardRefExoticComponent<DropdownMenuRadioGroupProps & React$1.RefAttributes<HTMLDivElement>>;
287
+ type Side$3 = "top" | "right" | "bottom" | "left";
288
+ type Align$3 = "start" | "center" | "end";
289
+ interface DropdownMenuContentProps extends React$1.HTMLAttributes<HTMLDivElement> {
290
+ side?: Side$3;
291
+ sideOffset?: number;
292
+ align?: Align$3;
293
+ alignOffset?: number;
294
+ onInteractOutside?: () => void;
295
+ onEscapeKeyDown?: () => void;
296
+ }
297
+ declare const DropdownMenuContent: React$1.ForwardRefExoticComponent<DropdownMenuContentProps & React$1.RefAttributes<HTMLDivElement>>;
298
+ interface DropdownMenuSubTriggerProps extends React$1.HTMLAttributes<HTMLDivElement> {
215
299
  inset?: boolean;
216
- } & React$1.RefAttributes<HTMLDivElement>>;
217
- declare const DropdownMenuSubContent: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
218
- declare const DropdownMenuContent: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
219
- declare const DropdownMenuItem: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
300
+ }
301
+ declare const DropdownMenuSubTrigger: React$1.ForwardRefExoticComponent<DropdownMenuSubTriggerProps & React$1.RefAttributes<HTMLDivElement>>;
302
+ interface DropdownMenuSubContentProps extends React$1.HTMLAttributes<HTMLDivElement> {
303
+ sideOffset?: number;
304
+ }
305
+ declare const DropdownMenuSubContent: React$1.ForwardRefExoticComponent<DropdownMenuSubContentProps & React$1.RefAttributes<HTMLDivElement>>;
306
+ interface DropdownMenuItemProps extends React$1.HTMLAttributes<HTMLDivElement> {
220
307
  inset?: boolean;
221
- } & React$1.RefAttributes<HTMLDivElement>>;
222
- declare const DropdownMenuCheckboxItem: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuCheckboxItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
223
- declare const DropdownMenuRadioItem: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuRadioItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
224
- declare const DropdownMenuLabel: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuLabelProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
308
+ disabled?: boolean;
309
+ onSelect?: () => void;
310
+ }
311
+ declare const DropdownMenuItem: React$1.ForwardRefExoticComponent<DropdownMenuItemProps & React$1.RefAttributes<HTMLDivElement>>;
312
+ interface DropdownMenuCheckboxItemProps extends React$1.HTMLAttributes<HTMLDivElement> {
313
+ checked?: boolean;
314
+ onCheckedChange?: (checked: boolean) => void;
315
+ disabled?: boolean;
316
+ }
317
+ declare const DropdownMenuCheckboxItem: React$1.ForwardRefExoticComponent<DropdownMenuCheckboxItemProps & React$1.RefAttributes<HTMLDivElement>>;
318
+ interface DropdownMenuRadioItemProps extends React$1.HTMLAttributes<HTMLDivElement> {
319
+ value: string;
320
+ disabled?: boolean;
321
+ }
322
+ declare const DropdownMenuRadioItem: React$1.ForwardRefExoticComponent<DropdownMenuRadioItemProps & React$1.RefAttributes<HTMLDivElement>>;
323
+ interface DropdownMenuLabelProps extends React$1.HTMLAttributes<HTMLDivElement> {
225
324
  inset?: boolean;
226
- } & React$1.RefAttributes<HTMLDivElement>>;
227
- declare const DropdownMenuSeparator: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSeparatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
325
+ }
326
+ declare const DropdownMenuLabel: React$1.ForwardRefExoticComponent<DropdownMenuLabelProps & React$1.RefAttributes<HTMLDivElement>>;
327
+ interface DropdownMenuSeparatorProps extends React$1.HTMLAttributes<HTMLDivElement> {
328
+ }
329
+ declare const DropdownMenuSeparator: React$1.ForwardRefExoticComponent<DropdownMenuSeparatorProps & React$1.RefAttributes<HTMLDivElement>>;
228
330
  declare const DropdownMenuShortcut: {
229
331
  ({ className, ...props }: React$1.HTMLAttributes<HTMLSpanElement>): react_jsx_runtime.JSX.Element;
230
332
  displayName: string;
231
333
  };
232
334
 
233
- declare const Popover: React$1.FC<PopoverPrimitive.PopoverProps>;
234
- declare const PopoverTrigger: React$1.ForwardRefExoticComponent<PopoverPrimitive.PopoverTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
235
- declare const PopoverAnchor: React$1.ForwardRefExoticComponent<PopoverPrimitive.PopoverAnchorProps & React$1.RefAttributes<HTMLDivElement>>;
236
- declare const PopoverContent: React$1.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
335
+ type Side$2 = "top" | "right" | "bottom" | "left";
336
+ type Align$2 = "start" | "center" | "end";
337
+ interface DropdownProps {
338
+ children: React$1.ReactNode;
339
+ open?: boolean;
340
+ defaultOpen?: boolean;
341
+ onOpenChange?: (open: boolean) => void;
342
+ }
343
+ declare const Dropdown: React$1.FC<DropdownProps>;
344
+ interface DropdownTriggerProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
345
+ asChild?: boolean;
346
+ }
347
+ declare const DropdownTrigger: React$1.ForwardRefExoticComponent<DropdownTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
348
+ interface DropdownContentProps extends React$1.HTMLAttributes<HTMLDivElement> {
349
+ side?: Side$2;
350
+ sideOffset?: number;
351
+ align?: Align$2;
352
+ alignOffset?: number;
353
+ collisionPadding?: number;
354
+ onInteractOutside?: () => void;
355
+ onEscapeKeyDown?: () => void;
356
+ loop?: boolean;
357
+ }
358
+ declare const DropdownContent: React$1.ForwardRefExoticComponent<DropdownContentProps & React$1.RefAttributes<HTMLDivElement>>;
359
+ interface DropdownItemProps extends React$1.HTMLAttributes<HTMLDivElement> {
360
+ inset?: boolean;
361
+ disabled?: boolean;
362
+ onSelect?: () => void;
363
+ }
364
+ declare const DropdownItem: React$1.ForwardRefExoticComponent<DropdownItemProps & React$1.RefAttributes<HTMLDivElement>>;
365
+ interface DropdownCheckboxItemProps extends React$1.HTMLAttributes<HTMLDivElement> {
366
+ checked?: boolean;
367
+ onCheckedChange?: (checked: boolean) => void;
368
+ disabled?: boolean;
369
+ }
370
+ declare const DropdownCheckboxItem: React$1.ForwardRefExoticComponent<DropdownCheckboxItemProps & React$1.RefAttributes<HTMLDivElement>>;
371
+ interface DropdownRadioGroupProps extends React$1.HTMLAttributes<HTMLDivElement> {
372
+ value?: string;
373
+ onValueChange?: (value: string) => void;
374
+ }
375
+ declare const DropdownRadioGroup: React$1.ForwardRefExoticComponent<DropdownRadioGroupProps & React$1.RefAttributes<HTMLDivElement>>;
376
+ interface DropdownRadioItemProps extends React$1.HTMLAttributes<HTMLDivElement> {
377
+ value: string;
378
+ disabled?: boolean;
379
+ }
380
+ declare const DropdownRadioItem: React$1.ForwardRefExoticComponent<DropdownRadioItemProps & React$1.RefAttributes<HTMLDivElement>>;
381
+ interface DropdownLabelProps extends React$1.HTMLAttributes<HTMLDivElement> {
382
+ inset?: boolean;
383
+ }
384
+ declare const DropdownLabel: React$1.ForwardRefExoticComponent<DropdownLabelProps & React$1.RefAttributes<HTMLDivElement>>;
385
+ interface DropdownSeparatorProps extends React$1.HTMLAttributes<HTMLDivElement> {
386
+ }
387
+ declare const DropdownSeparator: React$1.ForwardRefExoticComponent<DropdownSeparatorProps & React$1.RefAttributes<HTMLDivElement>>;
388
+ declare const DropdownShortcut: {
389
+ ({ className, ...props }: React$1.HTMLAttributes<HTMLSpanElement>): react_jsx_runtime.JSX.Element;
390
+ displayName: string;
391
+ };
392
+ interface DropdownGroupProps extends React$1.HTMLAttributes<HTMLDivElement> {
393
+ }
394
+ declare const DropdownGroup: React$1.ForwardRefExoticComponent<DropdownGroupProps & React$1.RefAttributes<HTMLDivElement>>;
395
+ interface DropdownSubProps {
396
+ children: React$1.ReactNode;
397
+ open?: boolean;
398
+ defaultOpen?: boolean;
399
+ onOpenChange?: (open: boolean) => void;
400
+ }
401
+ declare const DropdownSub: React$1.FC<DropdownSubProps>;
402
+ interface DropdownSubTriggerProps extends React$1.HTMLAttributes<HTMLDivElement> {
403
+ inset?: boolean;
404
+ disabled?: boolean;
405
+ }
406
+ declare const DropdownSubTrigger: React$1.ForwardRefExoticComponent<DropdownSubTriggerProps & React$1.RefAttributes<HTMLDivElement>>;
407
+ interface DropdownSubContentProps extends React$1.HTMLAttributes<HTMLDivElement> {
408
+ sideOffset?: number;
409
+ alignOffset?: number;
410
+ collisionPadding?: number;
411
+ }
412
+ declare const DropdownSubContent: React$1.ForwardRefExoticComponent<DropdownSubContentProps & React$1.RefAttributes<HTMLDivElement>>;
413
+
414
+ interface PopoverProps {
415
+ children: React$1.ReactNode;
416
+ open?: boolean;
417
+ defaultOpen?: boolean;
418
+ onOpenChange?: (open: boolean) => void;
419
+ }
420
+ declare const Popover: React$1.FC<PopoverProps>;
421
+ interface PopoverTriggerProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
422
+ asChild?: boolean;
423
+ }
424
+ declare const PopoverTrigger: React$1.ForwardRefExoticComponent<PopoverTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
425
+ interface PopoverAnchorProps extends React$1.HTMLAttributes<HTMLDivElement> {
426
+ asChild?: boolean;
427
+ }
428
+ declare const PopoverAnchor: React$1.ForwardRefExoticComponent<PopoverAnchorProps & React$1.RefAttributes<HTMLDivElement>>;
429
+ type Side$1 = "top" | "right" | "bottom" | "left";
430
+ type Align$1 = "start" | "center" | "end";
431
+ interface PopoverContentProps extends React$1.HTMLAttributes<HTMLDivElement> {
432
+ side?: Side$1;
433
+ sideOffset?: number;
434
+ align?: Align$1;
435
+ alignOffset?: number;
436
+ onInteractOutside?: () => void;
437
+ onEscapeKeyDown?: () => void;
438
+ onOpenAutoFocus?: (event: Event) => void;
439
+ onCloseAutoFocus?: (event: Event) => void;
440
+ }
441
+ declare const PopoverContent: React$1.ForwardRefExoticComponent<PopoverContentProps & React$1.RefAttributes<HTMLDivElement>>;
237
442
 
238
443
  type TabsVariant = "solid" | "underline" | "outline";
239
444
  type TabsRadius = "none" | "sm" | "md" | "lg" | "full";
240
- interface TabsProps extends React$1.ComponentPropsWithoutRef<typeof TabsPrimitive.Root> {
445
+ type TabsOrientation = "horizontal" | "vertical";
446
+ interface TabsProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "defaultValue" | "onChange"> {
447
+ value?: string;
448
+ defaultValue?: string;
449
+ onValueChange?: (value: string) => void;
241
450
  variant?: TabsVariant;
242
451
  radius?: TabsRadius;
452
+ orientation?: TabsOrientation;
243
453
  }
244
454
  declare const Tabs: React$1.ForwardRefExoticComponent<TabsProps & React$1.RefAttributes<HTMLDivElement>>;
245
- declare const TabsList: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsListProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
246
- declare const TabsTrigger: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
247
- declare const TabsContent: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
248
-
249
- declare const Sheet: React$1.FC<DialogPrimitive.DialogProps>;
250
- declare const SheetTrigger: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
251
- declare const SheetClose: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React$1.RefAttributes<HTMLButtonElement>>;
252
- declare const SheetPortal: React$1.FC<DialogPrimitive.DialogPortalProps>;
253
- declare const SheetOverlay: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
455
+ interface TabsListProps extends React$1.HTMLAttributes<HTMLDivElement> {
456
+ }
457
+ declare const TabsList: React$1.ForwardRefExoticComponent<TabsListProps & React$1.RefAttributes<HTMLDivElement>>;
458
+ interface TabsTriggerProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
459
+ value: string;
460
+ }
461
+ declare const TabsTrigger: React$1.ForwardRefExoticComponent<TabsTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
462
+ interface TabsContentProps extends React$1.HTMLAttributes<HTMLDivElement> {
463
+ value: string;
464
+ }
465
+ declare const TabsContent: React$1.ForwardRefExoticComponent<TabsContentProps & React$1.RefAttributes<HTMLDivElement>>;
466
+
467
+ interface SheetProps {
468
+ open?: boolean;
469
+ defaultOpen?: boolean;
470
+ onOpenChange?: (open: boolean) => void;
471
+ children: React$1.ReactNode;
472
+ }
473
+ declare const Sheet: React$1.FC<SheetProps>;
474
+ interface SheetTriggerProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
475
+ asChild?: boolean;
476
+ }
477
+ declare const SheetTrigger: React$1.ForwardRefExoticComponent<SheetTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
478
+ interface SheetCloseProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
479
+ asChild?: boolean;
480
+ }
481
+ declare const SheetClose: React$1.ForwardRefExoticComponent<SheetCloseProps & React$1.RefAttributes<HTMLButtonElement>>;
482
+ interface SheetPortalProps {
483
+ children: React$1.ReactNode;
484
+ container?: HTMLElement;
485
+ }
486
+ declare const SheetPortal: React$1.FC<SheetPortalProps>;
487
+ interface SheetOverlayProps extends React$1.HTMLAttributes<HTMLDivElement> {
488
+ }
489
+ declare const SheetOverlay: React$1.ForwardRefExoticComponent<SheetOverlayProps & React$1.RefAttributes<HTMLDivElement>>;
254
490
  declare const sheetVariants: (props?: ({
255
491
  side?: "left" | "right" | "bottom" | "top" | null | undefined;
256
492
  } & class_variance_authority_types.ClassProp) | undefined) => string;
257
- interface SheetContentProps extends React$1.ComponentPropsWithoutRef<typeof DialogPrimitive.Content>, VariantProps<typeof sheetVariants> {
493
+ interface SheetContentProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof sheetVariants> {
258
494
  hideCloseButton?: boolean;
495
+ onEscapeKeyDown?: () => void;
496
+ onInteractOutside?: () => void;
259
497
  }
260
498
  declare const SheetContent: React$1.ForwardRefExoticComponent<SheetContentProps & React$1.RefAttributes<HTMLDivElement>>;
261
499
  declare const SheetHeader: {
@@ -266,8 +504,8 @@ declare const SheetFooter: {
266
504
  ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
267
505
  displayName: string;
268
506
  };
269
- declare const SheetTitle: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
270
- declare const SheetDescription: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
507
+ declare const SheetTitle: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLHeadingElement> & React$1.RefAttributes<HTMLHeadingElement>>;
508
+ declare const SheetDescription: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
271
509
 
272
510
  type ToasterProps = React.ComponentProps<typeof Toaster$1>;
273
511
  interface CustomToasterProps extends ToasterProps {
@@ -275,84 +513,219 @@ interface CustomToasterProps extends ToasterProps {
275
513
  }
276
514
  declare const Toaster: ({ theme, ...props }: CustomToasterProps) => react_jsx_runtime.JSX.Element;
277
515
 
278
- interface ScrollAreaProps extends React$1.ComponentPropsWithoutRef<typeof ScrollAreaPrimitive.Root> {
516
+ interface ScrollAreaProps extends React$1.HTMLAttributes<HTMLDivElement> {
279
517
  viewportClassName?: string;
280
518
  viewportStyle?: React$1.CSSProperties;
519
+ orientation?: "vertical" | "horizontal" | "both";
520
+ scrollbarSize?: number;
281
521
  }
282
522
  declare const ScrollArea: React$1.ForwardRefExoticComponent<ScrollAreaProps & React$1.RefAttributes<HTMLDivElement>>;
283
- declare const ScrollBar: React$1.ForwardRefExoticComponent<Omit<ScrollAreaPrimitive.ScrollAreaScrollbarProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
284
-
285
- declare const ContextMenu: React$1.FC<ContextMenuPrimitive.ContextMenuProps>;
286
- declare const ContextMenuTrigger: React$1.ForwardRefExoticComponent<ContextMenuPrimitive.ContextMenuTriggerProps & React$1.RefAttributes<HTMLSpanElement>>;
287
- declare const ContextMenuGroup: React$1.ForwardRefExoticComponent<ContextMenuPrimitive.ContextMenuGroupProps & React$1.RefAttributes<HTMLDivElement>>;
288
- declare const ContextMenuPortal: React$1.FC<ContextMenuPrimitive.ContextMenuPortalProps>;
289
- declare const ContextMenuSub: React$1.FC<ContextMenuPrimitive.ContextMenuSubProps>;
290
- declare const ContextMenuRadioGroup: React$1.ForwardRefExoticComponent<ContextMenuPrimitive.ContextMenuRadioGroupProps & React$1.RefAttributes<HTMLDivElement>>;
291
- declare const ContextMenuSubTrigger: React$1.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuSubTriggerProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
523
+ interface ScrollBarProps extends React$1.HTMLAttributes<HTMLDivElement> {
524
+ orientation?: "vertical" | "horizontal";
525
+ }
526
+ declare const ScrollBar: React$1.ForwardRefExoticComponent<ScrollBarProps & React$1.RefAttributes<HTMLDivElement>>;
527
+
528
+ interface ContextMenuProps {
529
+ children: React$1.ReactNode;
530
+ onOpenChange?: (open: boolean) => void;
531
+ }
532
+ declare const ContextMenu: React$1.FC<ContextMenuProps>;
533
+ interface ContextMenuTriggerProps extends React$1.HTMLAttributes<HTMLDivElement> {
534
+ asChild?: boolean;
535
+ }
536
+ declare const ContextMenuTrigger: React$1.ForwardRefExoticComponent<ContextMenuTriggerProps & React$1.RefAttributes<HTMLDivElement>>;
537
+ interface ContextMenuGroupProps extends React$1.HTMLAttributes<HTMLDivElement> {
538
+ }
539
+ declare const ContextMenuGroup: React$1.ForwardRefExoticComponent<ContextMenuGroupProps & React$1.RefAttributes<HTMLDivElement>>;
540
+ interface ContextMenuPortalProps {
541
+ children: React$1.ReactNode;
542
+ container?: HTMLElement;
543
+ }
544
+ declare const ContextMenuPortal: React$1.FC<ContextMenuPortalProps>;
545
+ interface ContextMenuSubProps {
546
+ children: React$1.ReactNode;
547
+ open?: boolean;
548
+ defaultOpen?: boolean;
549
+ onOpenChange?: (open: boolean) => void;
550
+ }
551
+ declare const ContextMenuSub: React$1.FC<ContextMenuSubProps>;
552
+ interface ContextMenuRadioGroupProps extends React$1.HTMLAttributes<HTMLDivElement> {
553
+ value?: string;
554
+ onValueChange?: (value: string) => void;
555
+ }
556
+ declare const ContextMenuRadioGroup: React$1.ForwardRefExoticComponent<ContextMenuRadioGroupProps & React$1.RefAttributes<HTMLDivElement>>;
557
+ interface ContextMenuContentProps extends React$1.HTMLAttributes<HTMLDivElement> {
558
+ onInteractOutside?: () => void;
559
+ onEscapeKeyDown?: () => void;
560
+ }
561
+ declare const ContextMenuContent: React$1.ForwardRefExoticComponent<ContextMenuContentProps & React$1.RefAttributes<HTMLDivElement>>;
562
+ interface ContextMenuSubTriggerProps extends React$1.HTMLAttributes<HTMLDivElement> {
292
563
  inset?: boolean;
293
- } & React$1.RefAttributes<HTMLDivElement>>;
294
- declare const ContextMenuSubContent: React$1.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuSubContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
295
- declare const ContextMenuContent: React$1.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
296
- declare const ContextMenuItem: React$1.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
564
+ }
565
+ declare const ContextMenuSubTrigger: React$1.ForwardRefExoticComponent<ContextMenuSubTriggerProps & React$1.RefAttributes<HTMLDivElement>>;
566
+ interface ContextMenuSubContentProps extends React$1.HTMLAttributes<HTMLDivElement> {
567
+ sideOffset?: number;
568
+ }
569
+ declare const ContextMenuSubContent: React$1.ForwardRefExoticComponent<ContextMenuSubContentProps & React$1.RefAttributes<HTMLDivElement>>;
570
+ interface ContextMenuItemProps extends React$1.HTMLAttributes<HTMLDivElement> {
297
571
  inset?: boolean;
298
- } & React$1.RefAttributes<HTMLDivElement>>;
299
- declare const ContextMenuCheckboxItem: React$1.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuCheckboxItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
300
- declare const ContextMenuRadioItem: React$1.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuRadioItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
301
- declare const ContextMenuLabel: React$1.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuLabelProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
572
+ disabled?: boolean;
573
+ onSelect?: () => void;
574
+ }
575
+ declare const ContextMenuItem: React$1.ForwardRefExoticComponent<ContextMenuItemProps & React$1.RefAttributes<HTMLDivElement>>;
576
+ interface ContextMenuCheckboxItemProps extends React$1.HTMLAttributes<HTMLDivElement> {
577
+ checked?: boolean;
578
+ onCheckedChange?: (checked: boolean) => void;
579
+ disabled?: boolean;
580
+ }
581
+ declare const ContextMenuCheckboxItem: React$1.ForwardRefExoticComponent<ContextMenuCheckboxItemProps & React$1.RefAttributes<HTMLDivElement>>;
582
+ interface ContextMenuRadioItemProps extends React$1.HTMLAttributes<HTMLDivElement> {
583
+ value: string;
584
+ disabled?: boolean;
585
+ }
586
+ declare const ContextMenuRadioItem: React$1.ForwardRefExoticComponent<ContextMenuRadioItemProps & React$1.RefAttributes<HTMLDivElement>>;
587
+ interface ContextMenuLabelProps extends React$1.HTMLAttributes<HTMLDivElement> {
302
588
  inset?: boolean;
303
- } & React$1.RefAttributes<HTMLDivElement>>;
304
- declare const ContextMenuSeparator: React$1.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuSeparatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
589
+ }
590
+ declare const ContextMenuLabel: React$1.ForwardRefExoticComponent<ContextMenuLabelProps & React$1.RefAttributes<HTMLDivElement>>;
591
+ interface ContextMenuSeparatorProps extends React$1.HTMLAttributes<HTMLDivElement> {
592
+ }
593
+ declare const ContextMenuSeparator: React$1.ForwardRefExoticComponent<ContextMenuSeparatorProps & React$1.RefAttributes<HTMLDivElement>>;
305
594
  declare const ContextMenuShortcut: {
306
595
  ({ className, ...props }: React$1.HTMLAttributes<HTMLSpanElement>): react_jsx_runtime.JSX.Element;
307
596
  displayName: string;
308
597
  };
309
598
 
310
- declare const RadioGroup: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
311
- declare const RadioGroupItem: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupItemProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
599
+ interface RadioGroupProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "defaultValue" | "onChange"> {
600
+ value?: string;
601
+ defaultValue?: string;
602
+ onValueChange?: (value: string) => void;
603
+ name?: string;
604
+ disabled?: boolean;
605
+ required?: boolean;
606
+ orientation?: "horizontal" | "vertical";
607
+ }
608
+ declare const RadioGroup: React$1.ForwardRefExoticComponent<RadioGroupProps & React$1.RefAttributes<HTMLDivElement>>;
609
+ interface RadioGroupItemProps extends Omit<React$1.ButtonHTMLAttributes<HTMLButtonElement>, "value"> {
610
+ value: string;
611
+ }
612
+ declare const RadioGroupItem: React$1.ForwardRefExoticComponent<RadioGroupItemProps & React$1.RefAttributes<HTMLButtonElement>>;
312
613
 
313
614
  declare const toggleVariants: (props?: ({
314
615
  variant?: "solid" | "ghost" | "outline" | "soft" | "surface" | null | undefined;
315
616
  size?: "sm" | "md" | "lg" | null | undefined;
316
617
  } & class_variance_authority_types.ClassProp) | undefined) => string;
317
- declare const Toggle: React$1.ForwardRefExoticComponent<Omit<TogglePrimitive.ToggleProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & VariantProps<(props?: ({
318
- variant?: "solid" | "ghost" | "outline" | "soft" | "surface" | null | undefined;
319
- size?: "sm" | "md" | "lg" | null | undefined;
320
- } & class_variance_authority_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLButtonElement>>;
618
+ interface ToggleProps extends Omit<React$1.ButtonHTMLAttributes<HTMLButtonElement>, "onChange">, VariantProps<typeof toggleVariants> {
619
+ pressed?: boolean;
620
+ defaultPressed?: boolean;
621
+ onPressedChange?: (pressed: boolean) => void;
622
+ }
623
+ declare const Toggle: React$1.ForwardRefExoticComponent<ToggleProps & React$1.RefAttributes<HTMLButtonElement>>;
321
624
 
322
- declare const ToggleGroup: React$1.ForwardRefExoticComponent<((Omit<ToggleGroupPrimitive.ToggleGroupSingleProps & React$1.RefAttributes<HTMLDivElement>, "ref"> | Omit<ToggleGroupPrimitive.ToggleGroupMultipleProps & React$1.RefAttributes<HTMLDivElement>, "ref">) & VariantProps<(props?: ({
323
- variant?: "solid" | "ghost" | "outline" | "soft" | "surface" | null | undefined;
324
- size?: "sm" | "md" | "lg" | null | undefined;
325
- } & class_variance_authority_types.ClassProp) | undefined) => string>) & React$1.RefAttributes<HTMLDivElement>>;
326
- declare const ToggleGroupItem: React$1.ForwardRefExoticComponent<Omit<ToggleGroupPrimitive.ToggleGroupItemProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & VariantProps<(props?: ({
327
- variant?: "solid" | "ghost" | "outline" | "soft" | "surface" | null | undefined;
328
- size?: "sm" | "md" | "lg" | null | undefined;
329
- } & class_variance_authority_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLButtonElement>>;
625
+ interface ToggleGroupSingleProps {
626
+ type: "single";
627
+ value?: string;
628
+ defaultValue?: string;
629
+ onValueChange?: (value: string) => void;
630
+ }
631
+ interface ToggleGroupMultipleProps {
632
+ type: "multiple";
633
+ value?: string[];
634
+ defaultValue?: string[];
635
+ onValueChange?: (value: string[]) => void;
636
+ }
637
+ type ToggleGroupProps = (ToggleGroupSingleProps | ToggleGroupMultipleProps) & Omit<React$1.HTMLAttributes<HTMLDivElement>, "defaultValue" | "onChange"> & VariantProps<typeof toggleVariants> & {
638
+ disabled?: boolean;
639
+ };
640
+ declare const ToggleGroup: React$1.ForwardRefExoticComponent<ToggleGroupProps & React$1.RefAttributes<HTMLDivElement>>;
641
+ interface ToggleGroupItemProps extends Omit<React$1.ButtonHTMLAttributes<HTMLButtonElement>, "value">, VariantProps<typeof toggleVariants> {
642
+ value: string;
643
+ }
644
+ declare const ToggleGroupItem: React$1.ForwardRefExoticComponent<ToggleGroupItemProps & React$1.RefAttributes<HTMLButtonElement>>;
330
645
 
331
- declare const Slider: React$1.ForwardRefExoticComponent<Omit<SliderPrimitive.SliderProps & React$1.RefAttributes<HTMLSpanElement>, "ref"> & React$1.RefAttributes<HTMLSpanElement>>;
646
+ interface SliderProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "onChange" | "defaultValue"> {
647
+ value?: number[];
648
+ defaultValue?: number[];
649
+ onValueChange?: (value: number[]) => void;
650
+ onValueCommit?: (value: number[]) => void;
651
+ min?: number;
652
+ max?: number;
653
+ step?: number;
654
+ disabled?: boolean;
655
+ orientation?: "horizontal" | "vertical";
656
+ name?: string;
657
+ }
658
+ declare const Slider: React$1.ForwardRefExoticComponent<SliderProps & React$1.RefAttributes<HTMLDivElement>>;
332
659
 
333
- type AccordionProps = React$1.ComponentPropsWithoutRef<typeof AccordionPrimitive.Root> & {
334
- className?: string;
660
+ interface AccordionSingleProps {
661
+ type: "single";
662
+ value?: string;
663
+ defaultValue?: string;
664
+ onValueChange?: (value: string) => void;
665
+ }
666
+ interface AccordionMultipleProps {
667
+ type?: "multiple";
668
+ value?: string[];
669
+ defaultValue?: string[];
670
+ onValueChange?: (value: string[]) => void;
671
+ }
672
+ type AccordionProps = (AccordionSingleProps | AccordionMultipleProps) & Omit<React$1.HTMLAttributes<HTMLDivElement>, "defaultValue" | "onChange"> & {
673
+ disabled?: boolean;
674
+ collapsible?: boolean;
335
675
  };
336
- declare const Accordion: React$1.FC<AccordionProps>;
337
- interface AccordionItemProps extends Omit<React$1.ComponentPropsWithoutRef<typeof AccordionPrimitive.Item>, "title"> {
338
- title: React$1.ReactNode;
676
+ declare const Accordion: React$1.ForwardRefExoticComponent<AccordionProps & React$1.RefAttributes<HTMLDivElement>>;
677
+ interface AccordionItemProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "title"> {
678
+ value: string;
679
+ disabled?: boolean;
680
+ title?: React$1.ReactNode;
339
681
  subtitle?: React$1.ReactNode;
340
682
  startContent?: React$1.ReactNode;
341
683
  }
342
684
  declare const AccordionItem: React$1.ForwardRefExoticComponent<AccordionItemProps & React$1.RefAttributes<HTMLDivElement>>;
343
685
 
344
- interface CollapsibleProps extends Omit<React$1.ComponentPropsWithoutRef<typeof CollapsiblePrimitive.Root>, 'title'> {
686
+ interface CollapsibleProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "title"> {
687
+ open?: boolean;
688
+ defaultOpen?: boolean;
689
+ onOpenChange?: (open: boolean) => void;
690
+ disabled?: boolean;
345
691
  title?: React$1.ReactNode;
346
692
  }
347
693
  declare const Collapsible: React$1.ForwardRefExoticComponent<CollapsibleProps & React$1.RefAttributes<HTMLDivElement>>;
348
- declare const CollapsibleTrigger: React$1.ForwardRefExoticComponent<Omit<CollapsiblePrimitive.CollapsibleTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
349
- declare const CollapsibleContent: React$1.ForwardRefExoticComponent<Omit<CollapsiblePrimitive.CollapsibleContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
694
+ interface CollapsibleTriggerProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
695
+ }
696
+ declare const CollapsibleTrigger: React$1.ForwardRefExoticComponent<CollapsibleTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
697
+ interface CollapsibleContentProps extends React$1.HTMLAttributes<HTMLDivElement> {
698
+ }
699
+ declare const CollapsibleContent: React$1.ForwardRefExoticComponent<CollapsibleContentProps & React$1.RefAttributes<HTMLDivElement>>;
350
700
 
351
- declare const Progress: React$1.ForwardRefExoticComponent<Omit<ProgressPrimitive.ProgressProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
701
+ interface ProgressProps extends React$1.HTMLAttributes<HTMLDivElement> {
702
+ value?: number;
703
+ max?: number;
704
+ }
705
+ declare const Progress: React$1.ForwardRefExoticComponent<ProgressProps & React$1.RefAttributes<HTMLDivElement>>;
352
706
 
353
- declare const HoverCard: React$1.FC<HoverCardPrimitive.HoverCardProps>;
354
- declare const HoverCardTrigger: React$1.ForwardRefExoticComponent<HoverCardPrimitive.HoverCardTriggerProps & React$1.RefAttributes<HTMLAnchorElement>>;
355
- declare const HoverCardContent: React$1.ForwardRefExoticComponent<Omit<HoverCardPrimitive.HoverCardContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
707
+ interface HoverCardProps {
708
+ children: React$1.ReactNode;
709
+ open?: boolean;
710
+ defaultOpen?: boolean;
711
+ onOpenChange?: (open: boolean) => void;
712
+ openDelay?: number;
713
+ closeDelay?: number;
714
+ }
715
+ declare const HoverCard: React$1.FC<HoverCardProps>;
716
+ interface HoverCardTriggerProps extends React$1.HTMLAttributes<HTMLElement> {
717
+ asChild?: boolean;
718
+ }
719
+ declare const HoverCardTrigger: React$1.ForwardRefExoticComponent<HoverCardTriggerProps & React$1.RefAttributes<HTMLAnchorElement>>;
720
+ type Side = "top" | "right" | "bottom" | "left";
721
+ type Align = "start" | "center" | "end";
722
+ interface HoverCardContentProps extends React$1.HTMLAttributes<HTMLDivElement> {
723
+ side?: Side;
724
+ sideOffset?: number;
725
+ align?: Align;
726
+ alignOffset?: number;
727
+ }
728
+ declare const HoverCardContent: React$1.ForwardRefExoticComponent<HoverCardContentProps & React$1.RefAttributes<HTMLDivElement>>;
356
729
 
357
730
  declare const breadcrumbVariants: (props?: ({
358
731
  size?: "sm" | "md" | "lg" | null | undefined;
@@ -377,37 +750,102 @@ declare const BreadcrumbEllipsis: {
377
750
  displayName: string;
378
751
  };
379
752
 
380
- declare const AspectRatio: React$1.ForwardRefExoticComponent<AspectRatioPrimitive.AspectRatioProps & React$1.RefAttributes<HTMLDivElement>>;
753
+ interface AspectRatioProps extends React$1.HTMLAttributes<HTMLDivElement> {
754
+ ratio?: number;
755
+ }
756
+ declare const AspectRatio: React$1.ForwardRefExoticComponent<AspectRatioProps & React$1.RefAttributes<HTMLDivElement>>;
381
757
 
382
- declare const NavigationMenu: React$1.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuProps & React$1.RefAttributes<HTMLElement>, "ref"> & React$1.RefAttributes<HTMLElement>>;
383
- declare const NavigationMenuList: React$1.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuListProps & React$1.RefAttributes<HTMLUListElement>, "ref"> & React$1.RefAttributes<HTMLUListElement>>;
384
- declare const NavigationMenuItem: React$1.ForwardRefExoticComponent<NavigationMenuPrimitive.NavigationMenuItemProps & React$1.RefAttributes<HTMLLIElement>>;
758
+ interface NavigationMenuProps extends React$1.HTMLAttributes<HTMLElement> {
759
+ value?: string;
760
+ defaultValue?: string;
761
+ onValueChange?: (value: string) => void;
762
+ orientation?: "horizontal" | "vertical";
763
+ }
764
+ declare const NavigationMenu: React$1.ForwardRefExoticComponent<NavigationMenuProps & React$1.RefAttributes<HTMLElement>>;
765
+ interface NavigationMenuListProps extends React$1.HTMLAttributes<HTMLUListElement> {
766
+ }
767
+ declare const NavigationMenuList: React$1.ForwardRefExoticComponent<NavigationMenuListProps & React$1.RefAttributes<HTMLUListElement>>;
768
+ interface NavigationMenuItemProps extends React$1.HTMLAttributes<HTMLLIElement> {
769
+ value?: string;
770
+ }
771
+ declare const NavigationMenuItem: React$1.ForwardRefExoticComponent<NavigationMenuItemProps & React$1.RefAttributes<HTMLLIElement>>;
385
772
  declare const navigationMenuTriggerStyle: (props?: class_variance_authority_types.ClassProp | undefined) => string;
386
- declare const NavigationMenuTrigger: React$1.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
387
- declare const NavigationMenuContent: React$1.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
388
- declare const NavigationMenuLink: React$1.ForwardRefExoticComponent<NavigationMenuPrimitive.NavigationMenuLinkProps & React$1.RefAttributes<HTMLAnchorElement>>;
389
- declare const NavigationMenuViewport: React$1.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuViewportProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
390
- declare const NavigationMenuIndicator: React$1.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuIndicatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
391
-
392
- declare const Drawer: {
393
- ({ shouldScaleBackground, ...props }: React$1.ComponentProps<typeof Drawer$1.Root>): react_jsx_runtime.JSX.Element;
394
- displayName: string;
395
- };
396
- declare const DrawerTrigger: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
397
- declare const DrawerPortal: typeof vaul.Portal;
398
- declare const DrawerClose: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React$1.RefAttributes<HTMLButtonElement>>;
399
- declare const DrawerOverlay: React$1.ForwardRefExoticComponent<Omit<Omit<DialogPrimitive.DialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
400
- declare const DrawerContent: React$1.ForwardRefExoticComponent<Omit<Omit<DialogPrimitive.DialogContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
401
- declare const DrawerHeader: {
402
- ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
403
- displayName: string;
404
- };
405
- declare const DrawerFooter: {
406
- ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
407
- displayName: string;
408
- };
409
- declare const DrawerTitle: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
410
- declare const DrawerDescription: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
773
+ interface NavigationMenuTriggerProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
774
+ }
775
+ declare const NavigationMenuTrigger: React$1.ForwardRefExoticComponent<NavigationMenuTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
776
+ interface NavigationMenuContentProps extends React$1.HTMLAttributes<HTMLDivElement> {
777
+ }
778
+ declare const NavigationMenuContent: React$1.ForwardRefExoticComponent<NavigationMenuContentProps & React$1.RefAttributes<HTMLDivElement>>;
779
+ interface NavigationMenuLinkProps extends React$1.AnchorHTMLAttributes<HTMLAnchorElement> {
780
+ active?: boolean;
781
+ onSelect?: () => void;
782
+ }
783
+ declare const NavigationMenuLink: React$1.ForwardRefExoticComponent<NavigationMenuLinkProps & React$1.RefAttributes<HTMLAnchorElement>>;
784
+ interface NavigationMenuViewportProps extends React$1.HTMLAttributes<HTMLDivElement> {
785
+ }
786
+ declare const NavigationMenuViewport: React$1.ForwardRefExoticComponent<NavigationMenuViewportProps & React$1.RefAttributes<HTMLDivElement>>;
787
+ interface NavigationMenuIndicatorProps extends React$1.HTMLAttributes<HTMLDivElement> {
788
+ }
789
+ declare const NavigationMenuIndicator: React$1.ForwardRefExoticComponent<NavigationMenuIndicatorProps & React$1.RefAttributes<HTMLDivElement>>;
790
+
791
+ type DrawerPlacement = "left" | "right" | "bottom" | "top";
792
+ type DrawerCollapsible = "offcanvas" | "icon" | "none";
793
+ type DrawerVariant = "default" | "floating" | "inset";
794
+ interface DrawerContextValue {
795
+ placement: DrawerPlacement;
796
+ open: boolean;
797
+ setOpen: (open: boolean) => void;
798
+ openMobile: boolean;
799
+ setOpenMobile: (open: boolean) => void;
800
+ state: "expanded" | "collapsed";
801
+ isMobile: boolean;
802
+ toggleDrawer: () => void;
803
+ collapsible: DrawerCollapsible;
804
+ }
805
+ declare function useDrawer(): DrawerContextValue;
806
+ interface DrawerProviderProps {
807
+ children: React$1.ReactNode;
808
+ defaultOpen?: boolean;
809
+ open?: boolean;
810
+ onOpenChange?: (open: boolean) => void;
811
+ placement?: DrawerPlacement;
812
+ collapsible?: DrawerCollapsible;
813
+ }
814
+ declare const DrawerProvider: React$1.ForwardRefExoticComponent<DrawerProviderProps & React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
815
+ interface DrawerProps extends React$1.HTMLAttributes<HTMLDivElement> {
816
+ variant?: DrawerVariant;
817
+ embedded?: boolean;
818
+ }
819
+ declare const Drawer: React$1.ForwardRefExoticComponent<DrawerProps & React$1.RefAttributes<HTMLDivElement>>;
820
+ declare const DrawerTrigger: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
821
+ declare const DrawerContent: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
822
+ declare const DrawerHeader: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
823
+ declare const DrawerBody: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
824
+ declare const DrawerFooter: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
825
+ declare const DrawerTitle: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLHeadingElement> & React$1.RefAttributes<HTMLHeadingElement>>;
826
+ declare const DrawerDescription: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
827
+ declare const DrawerClose: React$1.ForwardRefExoticComponent<Omit<Omit<React$1.DetailedHTMLProps<React$1.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "color">, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
828
+ declare const DrawerToggle: React$1.ForwardRefExoticComponent<Omit<React$1.ClassAttributes<HTMLButtonElement> & React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
829
+ showLabel?: boolean;
830
+ }, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
831
+ declare const DrawerSeparator: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
832
+ declare const DrawerMenu: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLUListElement> & React$1.RefAttributes<HTMLUListElement>>;
833
+ declare const DrawerMenuItem: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLLIElement> & React$1.RefAttributes<HTMLLIElement>>;
834
+ declare const drawerMenuButtonVariants: (props?: ({
835
+ variant?: "default" | "ghost" | "outline" | null | undefined;
836
+ size?: "sm" | "md" | "lg" | null | undefined;
837
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
838
+ declare const DrawerMenuButton: React$1.ForwardRefExoticComponent<Omit<React$1.ClassAttributes<HTMLButtonElement> & React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
839
+ asChild?: boolean;
840
+ isActive?: boolean;
841
+ tooltip?: string | React$1.ComponentProps<typeof TooltipContent>;
842
+ } & VariantProps<(props?: ({
843
+ variant?: "default" | "ghost" | "outline" | null | undefined;
844
+ size?: "sm" | "md" | "lg" | null | undefined;
845
+ } & class_variance_authority_types.ClassProp) | undefined) => string>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
846
+ declare const DrawerGroup: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
847
+ declare const DrawerGroupLabel: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
848
+ declare const DrawerInset: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
411
849
 
412
850
  declare const Table: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableElement> & React$1.RefAttributes<HTMLTableElement>>;
413
851
  declare const TableHeader: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableSectionElement> & React$1.RefAttributes<HTMLTableSectionElement>>;
@@ -712,118 +1150,6 @@ interface RatingProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "onCh
712
1150
  }
713
1151
  declare const Rating: React$1.ForwardRefExoticComponent<RatingProps & React$1.RefAttributes<HTMLDivElement>>;
714
1152
 
715
- type SidebarContext = {
716
- state: "expanded" | "collapsed";
717
- open: boolean;
718
- setOpen: (open: boolean) => void;
719
- openMobile: boolean;
720
- setOpenMobile: (open: boolean) => void;
721
- isMobile: boolean;
722
- toggleSidebar: () => void;
723
- };
724
- declare const SidebarContext: React$1.Context<SidebarContext | null>;
725
- declare function useSidebar(): SidebarContext;
726
- declare const SidebarProvider: React$1.ForwardRefExoticComponent<Omit<React$1.ClassAttributes<HTMLDivElement> & React$1.HTMLAttributes<HTMLDivElement> & {
727
- defaultOpen?: boolean;
728
- open?: boolean;
729
- onOpenChange?: (open: boolean) => void;
730
- }, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
731
- declare const Sidebar: React$1.ForwardRefExoticComponent<Omit<React$1.ClassAttributes<HTMLDivElement> & React$1.HTMLAttributes<HTMLDivElement> & {
732
- side?: "left" | "right";
733
- variant?: "sidebar" | "floating" | "inset";
734
- collapsible?: "offcanvas" | "icon" | "none";
735
- /**
736
- * When true, sidebar uses relative positioning instead of fixed.
737
- * Useful for embedding sidebar in bounded containers like previews.
738
- * Toggle functionality still works.
739
- */
740
- embedded?: boolean;
741
- /**
742
- * When true, sidebar can be resized by dragging its edge.
743
- */
744
- resizable?: boolean;
745
- /**
746
- * Minimum width in pixels when resizable is true.
747
- * @default 200
748
- */
749
- minWidth?: number;
750
- /**
751
- * Maximum width in pixels when resizable is true.
752
- * @default 480
753
- */
754
- maxWidth?: number;
755
- /**
756
- * Default width in pixels when resizable is true.
757
- * @default 256 (16rem)
758
- */
759
- defaultWidth?: number;
760
- /**
761
- * Callback when width changes during resize.
762
- */
763
- onWidthChange?: (width: number) => void;
764
- }, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
765
- declare const SidebarTrigger: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
766
- declare const SidebarToggle: React$1.ForwardRefExoticComponent<Omit<React$1.ClassAttributes<HTMLButtonElement> & React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
767
- /** Show label text next to icon when expanded */
768
- showLabel?: boolean;
769
- }, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
770
- /**
771
- * A smart toggle button that works for both offcanvas and icon modes.
772
- * - In offcanvas mode: Shows as floating button when collapsed, inside sidebar when expanded
773
- * - In icon mode: Always inside sidebar, icon-only when collapsed
774
- *
775
- * Place this component inside SidebarFooter for best results.
776
- */
777
- declare const SidebarPersistentToggle: React$1.ForwardRefExoticComponent<Omit<React$1.ClassAttributes<HTMLButtonElement> & React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
778
- /** Label text when expanded */
779
- expandedLabel?: string;
780
- /** Label text when collapsed (for offcanvas floating state) */
781
- collapsedLabel?: string;
782
- }, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
783
- declare const SidebarRail: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
784
- declare const SidebarInset: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
785
- declare const SidebarHeader: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
786
- declare const SidebarFooter: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
787
- declare const SidebarSeparator: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
788
- declare const SidebarContent: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
789
- declare const SidebarGroup: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
790
- declare const SidebarGroupLabel: React$1.ForwardRefExoticComponent<Omit<React$1.ClassAttributes<HTMLDivElement> & React$1.HTMLAttributes<HTMLDivElement> & {
791
- asChild?: boolean;
792
- }, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
793
- declare const SidebarGroupAction: React$1.ForwardRefExoticComponent<Omit<React$1.ClassAttributes<HTMLButtonElement> & React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
794
- asChild?: boolean;
795
- }, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
796
- declare const SidebarGroupContent: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
797
- declare const SidebarMenu: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLUListElement>, HTMLUListElement>, "ref"> & React$1.RefAttributes<HTMLUListElement>>;
798
- declare const SidebarMenuItem: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & React$1.RefAttributes<HTMLLIElement>>;
799
- declare const sidebarMenuButtonVariants: (props?: ({
800
- variant?: "solid" | "ghost" | "outline" | "soft" | "surface" | null | undefined;
801
- size?: "sm" | "md" | "lg" | null | undefined;
802
- } & class_variance_authority_types.ClassProp) | undefined) => string;
803
- declare const SidebarMenuButton: React$1.ForwardRefExoticComponent<Omit<React$1.ClassAttributes<HTMLButtonElement> & React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
804
- asChild?: boolean;
805
- isActive?: boolean;
806
- tooltip?: string | React$1.ComponentProps<typeof TooltipContent>;
807
- } & VariantProps<(props?: ({
808
- variant?: "solid" | "ghost" | "outline" | "soft" | "surface" | null | undefined;
809
- size?: "sm" | "md" | "lg" | null | undefined;
810
- } & class_variance_authority_types.ClassProp) | undefined) => string>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
811
- declare const SidebarMenuAction: React$1.ForwardRefExoticComponent<Omit<React$1.ClassAttributes<HTMLButtonElement> & React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
812
- asChild?: boolean;
813
- showOnHover?: boolean;
814
- }, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
815
- declare const SidebarMenuBadge: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
816
- declare const SidebarMenuSkeleton: React$1.ForwardRefExoticComponent<Omit<React$1.ClassAttributes<HTMLDivElement> & React$1.HTMLAttributes<HTMLDivElement> & {
817
- showIcon?: boolean;
818
- }, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
819
- declare const SidebarMenuSub: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLUListElement>, HTMLUListElement>, "ref"> & React$1.RefAttributes<HTMLUListElement>>;
820
- declare const SidebarMenuSubItem: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & React$1.RefAttributes<HTMLLIElement>>;
821
- declare const SidebarMenuSubButton: React$1.ForwardRefExoticComponent<Omit<React$1.ClassAttributes<HTMLAnchorElement> & React$1.AnchorHTMLAttributes<HTMLAnchorElement> & {
822
- asChild?: boolean;
823
- size?: "sm" | "md";
824
- isActive?: boolean;
825
- }, "ref"> & React$1.RefAttributes<HTMLAnchorElement>>;
826
-
827
1153
  declare const chipVariants: (props?: ({
828
1154
  variant?: "solid" | "ghost" | "outline" | "soft" | "surface" | null | undefined;
829
1155
  color?: "success" | "warning" | "danger" | "info" | "primary" | "secondary" | null | undefined;
@@ -1030,17 +1356,22 @@ declare const segmentedControlVariants: (props?: ({
1030
1356
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1031
1357
  declare const segmentedControlItemVariants: (props?: ({
1032
1358
  size?: "sm" | "md" | "lg" | null | undefined;
1359
+ selected?: boolean | null | undefined;
1033
1360
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1034
- interface SegmentedControlProps extends Omit<React$1.ComponentPropsWithoutRef<typeof ToggleGroupPrimitive.Root>, "type" | "rovingFocus" | "value" | "defaultValue" | "onValueChange">, VariantProps<typeof segmentedControlVariants> {
1361
+ interface SegmentedControlProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "defaultValue" | "onChange">, VariantProps<typeof segmentedControlVariants> {
1035
1362
  /** Currently selected value */
1036
1363
  value?: string;
1037
1364
  /** Default selected value */
1038
1365
  defaultValue?: string;
1039
1366
  /** Callback when selection changes */
1040
1367
  onValueChange?: (value: string) => void;
1368
+ /** Whether the control is disabled */
1369
+ disabled?: boolean;
1041
1370
  }
1042
1371
  declare const SegmentedControl: React$1.ForwardRefExoticComponent<SegmentedControlProps & React$1.RefAttributes<HTMLDivElement>>;
1043
- interface SegmentedControlItemProps extends React$1.ComponentPropsWithoutRef<typeof ToggleGroupPrimitive.Item>, Omit<VariantProps<typeof segmentedControlItemVariants>, "size"> {
1372
+ interface SegmentedControlItemProps extends Omit<React$1.ButtonHTMLAttributes<HTMLButtonElement>, "value">, Omit<VariantProps<typeof segmentedControlItemVariants>, "size" | "selected"> {
1373
+ /** The value of this item */
1374
+ value: string;
1044
1375
  }
1045
1376
  declare const SegmentedControlItem: React$1.ForwardRefExoticComponent<SegmentedControlItemProps & React$1.RefAttributes<HTMLButtonElement>>;
1046
1377
 
@@ -1367,27 +1698,74 @@ interface BackTopProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>,
1367
1698
  }
1368
1699
  declare const BackTop: React$1.ForwardRefExoticComponent<BackTopProps & React$1.RefAttributes<HTMLButtonElement>>;
1369
1700
 
1370
- declare const MenubarMenu: typeof MenubarPrimitive.Menu;
1371
- declare const MenubarGroup: typeof MenubarPrimitive.Group;
1372
- declare const MenubarPortal: typeof MenubarPrimitive.Portal;
1373
- declare const MenubarSub: typeof MenubarPrimitive.Sub;
1374
- declare const MenubarRadioGroup: typeof MenubarPrimitive.RadioGroup;
1375
- declare const Menubar: React$1.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
1376
- declare const MenubarTrigger: React$1.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
1377
- declare const MenubarSubTrigger: React$1.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarSubTriggerProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
1701
+ interface MenubarProps extends React$1.HTMLAttributes<HTMLDivElement> {
1702
+ }
1703
+ declare const Menubar: React$1.ForwardRefExoticComponent<MenubarProps & React$1.RefAttributes<HTMLDivElement>>;
1704
+ interface MenubarMenuProps {
1705
+ children: React$1.ReactNode;
1706
+ }
1707
+ declare const MenubarMenu: React$1.FC<MenubarMenuProps>;
1708
+ interface MenubarGroupProps extends React$1.HTMLAttributes<HTMLDivElement> {
1709
+ }
1710
+ declare const MenubarGroup: React$1.ForwardRefExoticComponent<MenubarGroupProps & React$1.RefAttributes<HTMLDivElement>>;
1711
+ interface MenubarPortalProps {
1712
+ children: React$1.ReactNode;
1713
+ container?: HTMLElement;
1714
+ }
1715
+ declare const MenubarPortal: React$1.FC<MenubarPortalProps>;
1716
+ interface MenubarSubProps {
1717
+ children: React$1.ReactNode;
1718
+ open?: boolean;
1719
+ defaultOpen?: boolean;
1720
+ onOpenChange?: (open: boolean) => void;
1721
+ }
1722
+ declare const MenubarSub: React$1.FC<MenubarSubProps>;
1723
+ interface MenubarRadioGroupProps extends React$1.HTMLAttributes<HTMLDivElement> {
1724
+ value?: string;
1725
+ onValueChange?: (value: string) => void;
1726
+ }
1727
+ declare const MenubarRadioGroup: React$1.ForwardRefExoticComponent<MenubarRadioGroupProps & React$1.RefAttributes<HTMLDivElement>>;
1728
+ interface MenubarTriggerProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
1729
+ }
1730
+ declare const MenubarTrigger: React$1.ForwardRefExoticComponent<MenubarTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
1731
+ interface MenubarSubTriggerProps extends React$1.HTMLAttributes<HTMLDivElement> {
1378
1732
  inset?: boolean;
1379
- } & React$1.RefAttributes<HTMLDivElement>>;
1380
- declare const MenubarSubContent: React$1.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarSubContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
1381
- declare const MenubarContent: React$1.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
1382
- declare const MenubarItem: React$1.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
1733
+ }
1734
+ declare const MenubarSubTrigger: React$1.ForwardRefExoticComponent<MenubarSubTriggerProps & React$1.RefAttributes<HTMLDivElement>>;
1735
+ interface MenubarSubContentProps extends React$1.HTMLAttributes<HTMLDivElement> {
1736
+ sideOffset?: number;
1737
+ }
1738
+ declare const MenubarSubContent: React$1.ForwardRefExoticComponent<MenubarSubContentProps & React$1.RefAttributes<HTMLDivElement>>;
1739
+ interface MenubarContentProps extends React$1.HTMLAttributes<HTMLDivElement> {
1740
+ align?: "start" | "center" | "end";
1741
+ alignOffset?: number;
1742
+ sideOffset?: number;
1743
+ }
1744
+ declare const MenubarContent: React$1.ForwardRefExoticComponent<MenubarContentProps & React$1.RefAttributes<HTMLDivElement>>;
1745
+ interface MenubarItemProps extends React$1.HTMLAttributes<HTMLDivElement> {
1383
1746
  inset?: boolean;
1384
- } & React$1.RefAttributes<HTMLDivElement>>;
1385
- declare const MenubarCheckboxItem: React$1.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarCheckboxItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
1386
- declare const MenubarRadioItem: React$1.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarRadioItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
1387
- declare const MenubarLabel: React$1.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarLabelProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
1747
+ disabled?: boolean;
1748
+ onSelect?: () => void;
1749
+ }
1750
+ declare const MenubarItem: React$1.ForwardRefExoticComponent<MenubarItemProps & React$1.RefAttributes<HTMLDivElement>>;
1751
+ interface MenubarCheckboxItemProps extends React$1.HTMLAttributes<HTMLDivElement> {
1752
+ checked?: boolean;
1753
+ onCheckedChange?: (checked: boolean) => void;
1754
+ disabled?: boolean;
1755
+ }
1756
+ declare const MenubarCheckboxItem: React$1.ForwardRefExoticComponent<MenubarCheckboxItemProps & React$1.RefAttributes<HTMLDivElement>>;
1757
+ interface MenubarRadioItemProps extends React$1.HTMLAttributes<HTMLDivElement> {
1758
+ value: string;
1759
+ disabled?: boolean;
1760
+ }
1761
+ declare const MenubarRadioItem: React$1.ForwardRefExoticComponent<MenubarRadioItemProps & React$1.RefAttributes<HTMLDivElement>>;
1762
+ interface MenubarLabelProps extends React$1.HTMLAttributes<HTMLDivElement> {
1388
1763
  inset?: boolean;
1389
- } & React$1.RefAttributes<HTMLDivElement>>;
1390
- declare const MenubarSeparator: React$1.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarSeparatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
1764
+ }
1765
+ declare const MenubarLabel: React$1.ForwardRefExoticComponent<MenubarLabelProps & React$1.RefAttributes<HTMLDivElement>>;
1766
+ interface MenubarSeparatorProps extends React$1.HTMLAttributes<HTMLDivElement> {
1767
+ }
1768
+ declare const MenubarSeparator: React$1.ForwardRefExoticComponent<MenubarSeparatorProps & React$1.RefAttributes<HTMLDivElement>>;
1391
1769
  declare const MenubarShortcut: {
1392
1770
  ({ className, ...props }: React$1.HTMLAttributes<HTMLSpanElement>): react_jsx_runtime.JSX.Element;
1393
1771
  displayName: string;
@@ -2043,16 +2421,36 @@ interface ModalProps extends VariantProps<typeof modalContentVariants> {
2043
2421
  className?: string;
2044
2422
  }
2045
2423
  declare const Modal: React$1.ForwardRefExoticComponent<ModalProps & React$1.RefAttributes<HTMLDivElement>>;
2046
- declare const ModalRoot: React$1.FC<DialogPrimitive.DialogProps>;
2047
- declare const ModalTrigger: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
2048
- declare const ModalPortal: React$1.FC<DialogPrimitive.DialogPortalProps>;
2049
- declare const ModalClose: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React$1.RefAttributes<HTMLButtonElement>>;
2050
- declare const ModalOverlay: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
2051
- declare const ModalContent: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & VariantProps<(props?: ({
2052
- size?: "sm" | "md" | "lg" | "full" | "xl" | "xs" | "2xl" | "3xl" | "4xl" | "5xl" | null | undefined;
2053
- } & class_variance_authority_types.ClassProp) | undefined) => string> & {
2424
+ interface ModalRootProps {
2425
+ children: React$1.ReactNode;
2426
+ open?: boolean;
2427
+ defaultOpen?: boolean;
2428
+ onOpenChange?: (open: boolean) => void;
2429
+ scrollBehavior?: ModalScrollBehavior;
2430
+ }
2431
+ declare const ModalRoot: React$1.FC<ModalRootProps>;
2432
+ interface ModalTriggerProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
2433
+ asChild?: boolean;
2434
+ }
2435
+ declare const ModalTrigger: React$1.ForwardRefExoticComponent<ModalTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
2436
+ interface ModalPortalProps {
2437
+ children: React$1.ReactNode;
2438
+ container?: HTMLElement;
2439
+ }
2440
+ declare const ModalPortal: React$1.FC<ModalPortalProps>;
2441
+ interface ModalOverlayProps extends React$1.HTMLAttributes<HTMLDivElement> {
2442
+ }
2443
+ declare const ModalOverlay: React$1.ForwardRefExoticComponent<ModalOverlayProps & React$1.RefAttributes<HTMLDivElement>>;
2444
+ interface ModalCloseProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
2445
+ asChild?: boolean;
2446
+ }
2447
+ declare const ModalClose: React$1.ForwardRefExoticComponent<ModalCloseProps & React$1.RefAttributes<HTMLButtonElement>>;
2448
+ interface ModalContentProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof modalContentVariants> {
2054
2449
  showCloseButton?: boolean;
2055
- } & React$1.RefAttributes<HTMLDivElement>>;
2450
+ onEscapeKeyDown?: () => void;
2451
+ onInteractOutside?: () => void;
2452
+ }
2453
+ declare const ModalContent: React$1.ForwardRefExoticComponent<ModalContentProps & React$1.RefAttributes<HTMLDivElement>>;
2056
2454
  declare const ModalHeader: {
2057
2455
  ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
2058
2456
  displayName: string;
@@ -2068,8 +2466,12 @@ declare const ModalFooter: {
2068
2466
  ({ className, children, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
2069
2467
  displayName: string;
2070
2468
  };
2071
- declare const ModalTitle: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
2072
- declare const ModalDescription: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
2469
+ interface ModalTitleProps extends React$1.HTMLAttributes<HTMLHeadingElement> {
2470
+ }
2471
+ declare const ModalTitle: React$1.ForwardRefExoticComponent<ModalTitleProps & React$1.RefAttributes<HTMLHeadingElement>>;
2472
+ interface ModalDescriptionProps extends React$1.HTMLAttributes<HTMLParagraphElement> {
2473
+ }
2474
+ declare const ModalDescription: React$1.ForwardRefExoticComponent<ModalDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>>;
2073
2475
 
2074
2476
  declare const confirmDialogIconVariants: (props?: ({
2075
2477
  variant?: "default" | "success" | "warning" | "danger" | "info" | null | undefined;
@@ -2199,7 +2601,7 @@ interface ScrollShadowProps extends React$1.HTMLAttributes<HTMLDivElement>, Vari
2199
2601
  }
2200
2602
  declare const ScrollShadow: React$1.ForwardRefExoticComponent<ScrollShadowProps & React$1.RefAttributes<HTMLDivElement>>;
2201
2603
 
2202
- interface VisuallyHiddenProps extends React$1.ComponentPropsWithoutRef<typeof VisuallyHiddenPrimitive.Root> {
2604
+ interface VisuallyHiddenProps extends React$1.HTMLAttributes<HTMLSpanElement> {
2203
2605
  }
2204
2606
  declare const VisuallyHidden: React$1.ForwardRefExoticComponent<VisuallyHiddenProps & React$1.RefAttributes<HTMLSpanElement>>;
2205
2607
 
@@ -3008,23 +3410,21 @@ declare const rangeSliderVariants: (props?: ({
3008
3410
  orientation?: "horizontal" | "vertical" | null | undefined;
3009
3411
  size?: "sm" | "md" | "lg" | null | undefined;
3010
3412
  } & class_variance_authority_types.ClassProp) | undefined) => string;
3011
- interface RangeSliderProps extends Omit<React$1.ComponentPropsWithoutRef<typeof SliderPrimitive.Root>, "value" | "defaultValue" | "onValueChange" | "orientation">, VariantProps<typeof rangeSliderVariants> {
3012
- /** Current range value [min, max] */
3413
+ interface RangeSliderProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "onChange" | "defaultValue">, VariantProps<typeof rangeSliderVariants> {
3013
3414
  value?: [number, number];
3014
- /** Default range value */
3015
3415
  defaultValue?: [number, number];
3016
- /** Called when range changes */
3017
3416
  onValueChange?: (value: [number, number]) => void;
3018
- /** Called when dragging ends */
3019
3417
  onValueCommit?: (value: [number, number]) => void;
3020
- /** Show value labels */
3418
+ min?: number;
3419
+ max?: number;
3420
+ step?: number;
3421
+ disabled?: boolean;
3021
3422
  showLabels?: boolean;
3022
- /** Format label value */
3023
3423
  formatLabel?: (value: number) => string;
3024
- /** Track color variant */
3025
3424
  trackColor?: "primary" | "success" | "warning" | "danger";
3425
+ name?: string;
3026
3426
  }
3027
- declare const RangeSlider: React$1.ForwardRefExoticComponent<RangeSliderProps & React$1.RefAttributes<HTMLSpanElement>>;
3427
+ declare const RangeSlider: React$1.ForwardRefExoticComponent<RangeSliderProps & React$1.RefAttributes<HTMLDivElement>>;
3028
3428
 
3029
3429
  declare const contextualHelpTriggerVariants: (props?: ({
3030
3430
  variant?: "warning" | "info" | "help" | null | undefined;
@@ -3103,7 +3503,7 @@ declare namespace TagGroup {
3103
3503
  }
3104
3504
 
3105
3505
  declare const gridListVariants: (props?: ({
3106
- columns?: 1 | 2 | "auto" | 4 | 3 | 5 | 6 | null | undefined;
3506
+ columns?: 1 | 2 | "auto" | 3 | 4 | 5 | 6 | null | undefined;
3107
3507
  gap?: "sm" | "md" | "lg" | null | undefined;
3108
3508
  } & class_variance_authority_types.ClassProp) | undefined) => string;
3109
3509
  declare const gridListItemVariants: (props?: ({
@@ -3296,10 +3696,10 @@ declare const ColorWheel: React$1.ForwardRefExoticComponent<ColorWheelProps & Re
3296
3696
 
3297
3697
  declare const flexVariants: (props?: ({
3298
3698
  direction?: "row" | "column" | "column-reverse" | "row-reverse" | null | undefined;
3299
- align?: "end" | "stretch" | "center" | "start" | "baseline" | null | undefined;
3699
+ align?: "end" | "center" | "stretch" | "start" | "baseline" | null | undefined;
3300
3700
  justify?: "end" | "center" | "start" | "between" | "around" | "evenly" | null | undefined;
3301
3701
  wrap?: "nowrap" | "wrap" | "wrap-reverse" | null | undefined;
3302
- gap?: 0 | 1 | 2 | 4 | 3 | 5 | 6 | 8 | 10 | 12 | null | undefined;
3702
+ gap?: 0 | 1 | 2 | 3 | 4 | 8 | 5 | 6 | 10 | 12 | null | undefined;
3303
3703
  inline?: boolean | null | undefined;
3304
3704
  } & class_variance_authority_types.ClassProp) | undefined) => string;
3305
3705
  interface FlexProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof flexVariants> {
@@ -3312,15 +3712,15 @@ declare const VStack: React$1.ForwardRefExoticComponent<Omit<FlexProps, "directi
3312
3712
  declare const Center: React$1.ForwardRefExoticComponent<Omit<FlexProps, "justify" | "align"> & React$1.RefAttributes<HTMLDivElement>>;
3313
3713
 
3314
3714
  declare const gridVariants: (props?: ({
3315
- columns?: "none" | 1 | 2 | "auto" | 4 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | null | undefined;
3316
- rows?: "none" | 1 | 2 | 4 | 3 | 5 | 6 | null | undefined;
3317
- gap?: 0 | 1 | 2 | 4 | 3 | 5 | 6 | 8 | 10 | 12 | null | undefined;
3318
- gapX?: 0 | 1 | 2 | 4 | 3 | 5 | 6 | 8 | 10 | 12 | null | undefined;
3319
- gapY?: 0 | 1 | 2 | 4 | 3 | 5 | 6 | 8 | 10 | 12 | null | undefined;
3320
- flow?: "row" | "dense" | "col" | "row-dense" | "col-dense" | null | undefined;
3321
- align?: "end" | "stretch" | "center" | "start" | "baseline" | null | undefined;
3322
- justify?: "end" | "stretch" | "center" | "start" | null | undefined;
3323
- placeItems?: "end" | "stretch" | "center" | "start" | null | undefined;
3715
+ columns?: "none" | 1 | 2 | "auto" | 3 | 4 | 8 | 5 | 6 | 7 | 9 | 10 | 11 | 12 | null | undefined;
3716
+ rows?: "none" | 1 | 2 | 3 | 4 | 5 | 6 | null | undefined;
3717
+ gap?: 0 | 1 | 2 | 3 | 4 | 8 | 5 | 6 | 10 | 12 | null | undefined;
3718
+ gapX?: 0 | 1 | 2 | 3 | 4 | 8 | 5 | 6 | 10 | 12 | null | undefined;
3719
+ gapY?: 0 | 1 | 2 | 3 | 4 | 8 | 5 | 6 | 10 | 12 | null | undefined;
3720
+ flow?: "row" | "col" | "dense" | "row-dense" | "col-dense" | null | undefined;
3721
+ align?: "end" | "center" | "stretch" | "start" | "baseline" | null | undefined;
3722
+ justify?: "end" | "center" | "stretch" | "start" | null | undefined;
3723
+ placeItems?: "end" | "center" | "stretch" | "start" | null | undefined;
3324
3724
  } & class_variance_authority_types.ClassProp) | undefined) => string;
3325
3725
  interface GridProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof gridVariants> {
3326
3726
  /** Element to render as */
@@ -3330,12 +3730,12 @@ interface GridProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps
3330
3730
  }
3331
3731
  declare const Grid: React$1.ForwardRefExoticComponent<GridProps & React$1.RefAttributes<HTMLDivElement>>;
3332
3732
  declare const gridItemVariants: (props?: ({
3333
- colSpan?: "full" | 1 | 2 | 4 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | null | undefined;
3334
- rowSpan?: "full" | 1 | 2 | 4 | 3 | 5 | 6 | null | undefined;
3335
- colStart?: 1 | 2 | "auto" | 4 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | null | undefined;
3336
- colEnd?: 1 | 2 | "auto" | 4 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | null | undefined;
3337
- rowStart?: 1 | 2 | "auto" | 4 | 3 | 5 | 6 | 7 | null | undefined;
3338
- rowEnd?: 1 | 2 | "auto" | 4 | 3 | 5 | 6 | 7 | null | undefined;
3733
+ colSpan?: "full" | 1 | 2 | 3 | 4 | 8 | 5 | 6 | 7 | 9 | 10 | 11 | 12 | null | undefined;
3734
+ rowSpan?: "full" | 1 | 2 | 3 | 4 | 5 | 6 | null | undefined;
3735
+ colStart?: 1 | 2 | "auto" | 3 | 4 | 8 | 5 | 6 | 7 | 9 | 10 | 11 | 12 | 13 | null | undefined;
3736
+ colEnd?: 1 | 2 | "auto" | 3 | 4 | 8 | 5 | 6 | 7 | 9 | 10 | 11 | 12 | 13 | null | undefined;
3737
+ rowStart?: 1 | 2 | "auto" | 3 | 4 | 5 | 6 | 7 | null | undefined;
3738
+ rowEnd?: 1 | 2 | "auto" | 3 | 4 | 5 | 6 | 7 | null | undefined;
3339
3739
  } & class_variance_authority_types.ClassProp) | undefined) => string;
3340
3740
  interface GridItemProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof gridItemVariants> {
3341
3741
  /** Element to render as */
@@ -3848,7 +4248,7 @@ declare const AuthDivider: React$1.ForwardRefExoticComponent<React$1.HTMLAttribu
3848
4248
  declare const AuthSocialButtons: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
3849
4249
 
3850
4250
  declare const settingsLayoutVariants: (props?: ({
3851
- variant?: "sidebar" | "stacked" | "tabs" | null | undefined;
4251
+ variant?: "stacked" | "sidebar" | "tabs" | null | undefined;
3852
4252
  } & class_variance_authority_types.ClassProp) | undefined) => string;
3853
4253
  interface SettingsLayoutProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof settingsLayoutVariants> {
3854
4254
  /** Navigation element (sidebar or tabs) */
@@ -4342,4 +4742,4 @@ declare const Sparkles: React$1.ForwardRefExoticComponent<SparklesProps & React$
4342
4742
  */
4343
4743
  declare function cn(...inputs: ClassValue[]): string;
4344
4744
 
4345
- export { Accordion, AccordionItem, type AccordionItemProps, type AccordionProps, ActionBar, ActionBarButton, type ActionBarProps, ActionGroup, type ActionGroupItem, type ActionGroupProps, ActionIcon, type ActionIconProps, ActionMenu, type ActionMenuGroup, type ActionMenuItem, type ActionMenuProps, ActionSheet, type ActionSheetItem, type ActionSheetProps, Alert, AlertDescription, type AlertRadius, AlertTitle, type AlertType, type AlertVariant, AppShell, AppShellAside, AppShellFooter, AppShellHeader, AppShellMain, type AppShellProps, AppShellSidebar, AreaChart, type AreaChartProps, AspectRatio, AuthDivider, AuthFooterLinks, AuthForm, AuthHeader, AuthLayout, type AuthLayoutProps, AuthSocialButtons, Autocomplete, type AutocompleteOption, type AutocompleteProps, Avatar, AvatarFallback, AvatarGroup, type AvatarGroupItem, type AvatarGroupProps, AvatarImage, BackTop, type BackTopProps, Badge, type BadgeProps, Banner, type BannerProps, BarChart, type BarChartProps, BatteryMeter, BottomNavigation, type BottomNavigationItem, type BottomNavigationProps, Bounce, type BounceProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, COUNTRIES, Calendar, type CalendarEvent, type CalendarProps, type CalendarView, Card, CardContent, CardFooter, CardHeader, Carousel, type CarouselApi, CarouselContent, CarouselItem, type CarouselItemProps, CarouselNext, CarouselPrevious, type CarouselProps, Center, type ChartDataPoint, Checkbox, Checkmark, type CheckmarkProps, type CheckmarkSize, type CheckmarkVariant, Chip, type ChipProps, CircularProgress, CloseButton, type CloseButtonProps, Code, Collapse, type CollapseProps, Collapsible, CollapsibleContent, CollapsibleTrigger, ColorArea, type ColorAreaProps, type ColorAreaValue, ColorField, type ColorFieldProps, ColorPicker, type ColorPickerProps, ColorSlider, type ColorSliderChannel, type ColorSliderProps, ColorSwatch, ColorSwatchPicker, type ColorSwatchPickerProps, type ColorSwatchProps, ColorWheel, type ColorWheelProps, type Column, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, Confetti, type ConfettiOptions, type ConfettiProps, ConfirmDialog, type ConfirmDialogProps, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, ContextualHelp, type ContextualHelpProps, CopyButton, type CopyButtonProps, Counter, type CounterProps, type Country, CurrencyInput, type CurrencyInputProps, DEFAULT_COLORS, DashboardGrid, DashboardLayout, type DashboardLayoutProps, DashboardPage, DashboardPageHeader, DataTable, type DataTableProps, DateField, type DateFieldProps, type DateFormat, DateInput, type DateInputProps, DatePicker, type DatePickerProps, DateRangePicker, type DateRangePickerProps, DefaultErrorFallback, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DiskUsageMeter, Dots, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EMOJIS, EMOJI_CATEGORIES, EmojiPicker, type EmojiPickerProps, EmptyState, ErrorBoundary, type ErrorBoundaryProps, Expand, type ExpandProps, FAB, type FABAction, Fade, type FadeProps, FieldContext, type FieldContextValue, type FieldState, type FileRejection, FileUpload, type FileUploadProps, Flex, type FlexProps, Flip, type FlipDirection, type FlipProps, FloatingActionButton, type FloatingActionButtonProps, Form, FormContext, type FormContextValue, FormControl, type FormControlProps, FormDescription, type FormDescriptionProps, FormField, type FormFieldProps, FormItem, type FormItemProps, FormLabel, type FormLabelProps, FormMessage, type FormMessageProps, type FormProps, type FormState, FullCalendar, type FullCalendarProps, Glow, type GlowProps, Grid, GridItem, type GridItemProps, GridList, type GridListItem, type GridListProps, type GridProps, HStack, HoverCard, HoverCardContent, HoverCardTrigger, IconButton, type IconButtonProps, IllustratedMessage, type IllustratedMessageProps, Image, ImageCropper, type ImageCropperProps, ImageViewer, type ImageViewerProps, ImageViewerTrigger, type ImageViewerTriggerProps, Indicator, type IndicatorProps, IndicatorWrapper, type IndicatorWrapperProps, InfiniteScroll, type InfiniteScrollProps, InlineAlert, type InlineAlertProps, Input, InputOTP, InputOTPGroup, type InputOTPProps, InputOTPSeparator, InputOTPSlot, type InputOTPSlotProps, type InputProps, KanbanBoard, type KanbanBoardProps, type KanbanCard, type KanbanColumn, Kbd, type KbdProps, Label, LabeledValue, LabeledValueGroup, type LabeledValueGroupProps, type LabeledValueProps, LineChart, type LineChartProps, Link, type LinkProps, List, ListItem, ListItemText, ListView, type ListViewItem, type ListViewProps, Listbox, ListboxItem, type ListboxOption, Loading, LoadingOverlay, type LoadingOverlayProps, type LoadingProps, MASK_PRESETS, type MaskChar, type MaskDefinition, type MaskPreset, MaskedInput, type MaskedInputProps, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, Meter, type MeterProps, Modal, type ModalBackdrop, ModalBody, ModalClose, ModalContent, ModalDescription, ModalFooter, ModalHeader, ModalOverlay, type ModalPlacement, ModalPortal, type ModalProps, ModalRoot, type ModalScrollBehavior, ModalTitle, ModalTrigger, NProgress, type NProgressProps, Navbar, NavbarBrand, NavbarContent, NavbarItem, NavbarLink, type NavbarProps, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, type Notification, NotificationCenter, type NotificationCenterProps, type NotificationType, NumberField, type NumberFieldProps, NumberInput, type NumberInputProps, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, type PaginationState, Parallax, type ParallaxProps, PasswordInput, type PasswordInputProps, PhoneInput, type PhoneInputProps, PieChart, type PieChartProps, Pop, type PopProps, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Portal, type PortalProps, Progress, PullToRefresh, type PullToRefreshProps, Pulse, type PulseProps, type PulseSpeed, QRCode, type QRCodeProps, RadioGroup, RadioGroupItem, RangeSlider, type RangeSliderProps, Rating, type RatingProps, ResizableHandle, type ResizableHandleProps, ResizablePanel, ResizablePanelGroup, type ResizablePanelGroupProps, RichTextEditor, type RichTextEditorProps, Ripple, type RippleProps, Rotate, type RotateProps, Scale, type ScaleOrigin, type ScaleProps, ScrollArea, ScrollBar, ScrollProgress, type ScrollProgressPosition, type ScrollProgressProps, ScrollReveal, type ScrollRevealDirection, type ScrollRevealProps, ScrollShadow, type ScrollShadowProps, SearchBar, type SearchBarProps, SearchField, type SearchFieldProps, type SearchSuggestion, SegmentedControl, SegmentedControlItem, type SegmentedControlItemProps, type SegmentedControlProps, Select, type SelectOption, type SelectProps, Separator, SettingsCard, SettingsHeader, SettingsLayout, type SettingsLayoutProps, SettingsNavItem, SettingsRow, SettingsSection, SettingsSeparator, Shake, type ShakeIntensity, type ShakeProps, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Shimmer, type ShimmerDirection, type ShimmerProps, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarPersistentToggle, SidebarProvider, SidebarRail, SidebarSeparator, SidebarToggle, SidebarTrigger, SimpleGrid, Skeleton, Slide, type SlideDirection, type SlideProps, Slider, Snippet, type SortDirection, type SortState, type SortableItem, SortableList, Spacer, type SpacerProps, Sparkles, type SparklesProps, Spinner, type SpotlightItem, SpotlightSearch, type SpotlightSearchProps, StatCard, StatusLight, type StatusLightProps, Step, type StepProps, Steps, type StepsProps, type SwipeAction, SwipeActions, type SwipeActionsProps, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, type Tag, TagGroup, type TagGroupProps, TagInput, type TagInputProps, type TagItem, TextBadge, type TextBadgeProps, TextField, type TextFieldProps, TextReveal, type TextRevealDirection, type TextRevealProps, Textarea, type TextareaProps, ThemeProvider, type ThemeProviderProps, ThemeToggle, type ThemeToggleProps, TimeField, type TimeFieldProps, TimeInput, type TimeInputProps, TimePicker, type TimePickerProps, type TimeValue, Timeline, TimelineContent, TimelineItem, TimelineOpposite, TimelineSeparator, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, type TransitionProps, type TreeNode, TreeView, type TreeViewProps, Typewriter, type TypewriterProps, type UploadedFile, User, VStack, type ValidationRule, type ViewerImage, VirtualList, type VirtualListProps, VisuallyHidden, type VisuallyHiddenProps, Well, type WellProps, Wiggle, type WiggleProps, WordRotate, type WordRotateProps, actionBarVariants, actionGroupVariants, actionIconVariants, actionMenuTriggerVariants, actionSheetItemVariants, alertVariants, appShellVariants, applyMask, authLayoutVariants, autocompleteInputVariants, avatarGroupVariants, backTopVariants, badgeIndicatorVariants, bannerVariants, bottomNavigationVariants, buttonGroupVariants, buttonVariants, cardVariants, carouselVariants, chartContainerVariants, chipVariants, circularProgressVariants, closeButtonVariants, cn, codeVariants, colorAreaVariants, colorFieldVariants, colorSliderVariants, colorSwatchPickerVariants, colorSwatchVariants, colorWheelVariants, confirmDialogIconVariants, contextualHelpTriggerVariants, copyButtonVariants, currencyInputVariants, dashboardLayoutVariants, dateFieldVariants, dateInputVariants, dotsVariants, emojiPickerVariants, emptyStateVariants, fabVariants, fileUploadVariants, flexVariants, formatCurrency, formatDate, formatFileSize, formatPhoneNumber, fullCalendarVariants, getFileIcon, getMaskPlaceholder, gridItemVariants, gridListItemVariants, gridListVariants, gridVariants, hexToRgb, hsvToRgb, iconButtonVariants, illustratedMessageVariants, imageCropperVariants, imageVariants, indicatorVariants, infiniteScrollLoaderVariants, infiniteScrollVariants, inlineAlertVariants, inputOTPVariants, inputSizeVariants, kanbanBoardVariants, kanbanCardVariants, kanbanColumnVariants, kbdVariants, labelSizeVariants, labeledValueGroupVariants, labeledValueVariants, linkVariants, listItemVariants, listVariants, listViewItemVariants, listViewVariants, listboxItemVariants, listboxVariants, loadingOverlayVariants, loadingVariants, maskedInputVariants, meterVariants, modalContentVariants, navbarVariants, navigationMenuTriggerStyle, notificationCenterVariants, nprogressVariants, numberFieldVariants, parseDate, parseFormattedValue, phoneInputVariants, pullToRefreshVariants, qrCodeVariants, rangeSliderVariants, ratingVariants, rgbToHex, rgbToHsv, richTextEditorVariants, scrollShadowVariants, searchBarVariants, searchFieldVariants, segmentedControlItemVariants, segmentedControlVariants, selectVariants, settingsLayoutVariants, sheetVariants, sidebarMenuButtonVariants, skeletonVariants, snippetVariants, sortableItemVariants, sortableListVariants, spinnerVariants, statCardVariants, statusLightVariants, stepVariants, stepsVariants, swipeActionVariants, swipeActionsVariants, tagGroupItemVariants, tagGroupVariants, tagVariants, textBadgeVariants, textFieldVariants, themeToggleVariants, timeFieldVariants, timeInputVariants, timelineItemVariants, timelineVariants, toggleVariants, treeViewVariants, unmask, useButtonGroup, useCarousel, useConfetti, useConfirmDialog, useFieldContext, useFormContext, useKeyboardShortcut, useSidebar, useSpotlight, userVariants, validateFile, validators, virtualListVariants, wellVariants };
4745
+ export { Accordion, AccordionItem, type AccordionItemProps, type AccordionProps, ActionBar, ActionBarButton, type ActionBarProps, ActionGroup, type ActionGroupItem, type ActionGroupProps, ActionIcon, type ActionIconProps, ActionMenu, type ActionMenuGroup, type ActionMenuItem, type ActionMenuProps, ActionSheet, type ActionSheetItem, type ActionSheetProps, Alert, AlertDescription, type AlertRadius, AlertTitle, type AlertType, type AlertVariant, AppShell, AppShellAside, AppShellFooter, AppShellHeader, AppShellMain, type AppShellProps, AppShellSidebar, AreaChart, type AreaChartProps, AspectRatio, AuthDivider, AuthFooterLinks, AuthForm, AuthHeader, AuthLayout, type AuthLayoutProps, AuthSocialButtons, Autocomplete, type AutocompleteOption, type AutocompleteProps, Avatar, AvatarFallback, AvatarGroup, type AvatarGroupItem, type AvatarGroupProps, AvatarImage, BackTop, type BackTopProps, Badge, type BadgeProps, Banner, type BannerProps, BarChart, type BarChartProps, BatteryMeter, BottomNavigation, type BottomNavigationItem, type BottomNavigationProps, Bounce, type BounceProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, COUNTRIES, Calendar, type CalendarEvent, type CalendarProps, type CalendarView, Card, CardContent, CardFooter, CardHeader, Carousel, type CarouselApi, CarouselContent, CarouselItem, type CarouselItemProps, CarouselNext, CarouselPrevious, type CarouselProps, Center, type ChartDataPoint, Checkbox, Checkmark, type CheckmarkProps, type CheckmarkSize, type CheckmarkVariant, Chip, type ChipProps, CircularProgress, CloseButton, type CloseButtonProps, Code, Collapse, type CollapseProps, Collapsible, CollapsibleContent, CollapsibleTrigger, ColorArea, type ColorAreaProps, type ColorAreaValue, ColorField, type ColorFieldProps, ColorPicker, type ColorPickerProps, ColorSlider, type ColorSliderChannel, type ColorSliderProps, ColorSwatch, ColorSwatchPicker, type ColorSwatchPickerProps, type ColorSwatchProps, ColorWheel, type ColorWheelProps, type Column, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, Confetti, type ConfettiOptions, type ConfettiProps, ConfirmDialog, type ConfirmDialogProps, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, ContextualHelp, type ContextualHelpProps, CopyButton, type CopyButtonProps, Counter, type CounterProps, type Country, CurrencyInput, type CurrencyInputProps, DEFAULT_COLORS, DashboardGrid, DashboardLayout, type DashboardLayoutProps, DashboardPage, DashboardPageHeader, DataTable, type DataTableProps, DateField, type DateFieldProps, type DateFormat, DateInput, type DateInputProps, DatePicker, type DatePickerProps, DateRangePicker, type DateRangePickerProps, DefaultErrorFallback, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DiskUsageMeter, Dots, Drawer, DrawerBody, DrawerClose, type DrawerCollapsible, DrawerContent, DrawerDescription, DrawerFooter, DrawerGroup, DrawerGroupLabel, DrawerHeader, DrawerInset, DrawerMenu, DrawerMenuButton, DrawerMenuItem, type DrawerPlacement, type DrawerProps, DrawerProvider, type DrawerProviderProps, DrawerSeparator, DrawerTitle, DrawerToggle, DrawerTrigger, type DrawerVariant, Dropdown, DropdownCheckboxItem, type DropdownCheckboxItemProps, DropdownContent, type DropdownContentProps, DropdownGroup, type DropdownGroupProps, DropdownItem, type DropdownItemProps, DropdownLabel, type DropdownLabelProps, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, type DropdownProps, DropdownRadioGroup, type DropdownRadioGroupProps, DropdownRadioItem, type DropdownRadioItemProps, DropdownSeparator, type DropdownSeparatorProps, DropdownShortcut, DropdownSub, DropdownSubContent, type DropdownSubContentProps, type DropdownSubProps, DropdownSubTrigger, type DropdownSubTriggerProps, DropdownTrigger, type DropdownTriggerProps, EMOJIS, EMOJI_CATEGORIES, EmojiPicker, type EmojiPickerProps, EmptyState, ErrorBoundary, type ErrorBoundaryProps, Expand, type ExpandProps, FAB, type FABAction, Fade, type FadeProps, FieldContext, type FieldContextValue, type FieldState, type FileRejection, FileUpload, type FileUploadProps, Flex, type FlexProps, Flip, type FlipDirection, type FlipProps, FloatingActionButton, type FloatingActionButtonProps, Form, FormContext, type FormContextValue, FormControl, type FormControlProps, FormDescription, type FormDescriptionProps, FormField, type FormFieldProps, FormItem, type FormItemProps, FormLabel, type FormLabelProps, FormMessage, type FormMessageProps, type FormProps, type FormState, FullCalendar, type FullCalendarProps, Glow, type GlowProps, Grid, GridItem, type GridItemProps, GridList, type GridListItem, type GridListProps, type GridProps, HStack, HoverCard, HoverCardContent, HoverCardTrigger, IconButton, type IconButtonProps, IllustratedMessage, type IllustratedMessageProps, Image, ImageCropper, type ImageCropperProps, ImageViewer, type ImageViewerProps, ImageViewerTrigger, type ImageViewerTriggerProps, Indicator, type IndicatorProps, IndicatorWrapper, type IndicatorWrapperProps, InfiniteScroll, type InfiniteScrollProps, InlineAlert, type InlineAlertProps, Input, InputOTP, InputOTPGroup, type InputOTPProps, InputOTPSeparator, InputOTPSlot, type InputOTPSlotProps, type InputProps, KanbanBoard, type KanbanBoardProps, type KanbanCard, type KanbanColumn, Kbd, type KbdProps, Label, LabeledValue, LabeledValueGroup, type LabeledValueGroupProps, type LabeledValueProps, LineChart, type LineChartProps, Link, type LinkProps, List, ListItem, ListItemText, ListView, type ListViewItem, type ListViewProps, Listbox, ListboxItem, type ListboxOption, Loading, LoadingOverlay, type LoadingOverlayProps, type LoadingProps, MASK_PRESETS, type MaskChar, type MaskDefinition, type MaskPreset, MaskedInput, type MaskedInputProps, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, Meter, type MeterProps, Modal, type ModalBackdrop, ModalBody, ModalClose, ModalContent, ModalDescription, ModalFooter, ModalHeader, ModalOverlay, type ModalPlacement, ModalPortal, type ModalProps, ModalRoot, type ModalScrollBehavior, ModalTitle, ModalTrigger, NProgress, type NProgressProps, Navbar, NavbarBrand, NavbarContent, NavbarItem, NavbarLink, type NavbarProps, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, type Notification, NotificationCenter, type NotificationCenterProps, type NotificationType, NumberField, type NumberFieldProps, NumberInput, type NumberInputProps, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, type PaginationState, Parallax, type ParallaxProps, PasswordInput, type PasswordInputProps, PhoneInput, type PhoneInputProps, PieChart, type PieChartProps, Pop, type PopProps, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Portal, type PortalProps, Progress, PullToRefresh, type PullToRefreshProps, Pulse, type PulseProps, type PulseSpeed, QRCode, type QRCodeProps, RadioGroup, RadioGroupItem, RangeSlider, type RangeSliderProps, Rating, type RatingProps, ResizableHandle, type ResizableHandleProps, ResizablePanel, ResizablePanelGroup, type ResizablePanelGroupProps, RichTextEditor, type RichTextEditorProps, Ripple, type RippleProps, Rotate, type RotateProps, Scale, type ScaleOrigin, type ScaleProps, ScrollArea, ScrollBar, ScrollProgress, type ScrollProgressPosition, type ScrollProgressProps, ScrollReveal, type ScrollRevealDirection, type ScrollRevealProps, ScrollShadow, type ScrollShadowProps, SearchBar, type SearchBarProps, SearchField, type SearchFieldProps, type SearchSuggestion, SegmentedControl, SegmentedControlItem, type SegmentedControlItemProps, type SegmentedControlProps, Select, type SelectOption, type SelectProps, Separator, type SeparatorProps, SettingsCard, SettingsHeader, SettingsLayout, type SettingsLayoutProps, SettingsNavItem, SettingsRow, SettingsSection, SettingsSeparator, Shake, type ShakeIntensity, type ShakeProps, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Shimmer, type ShimmerDirection, type ShimmerProps, SimpleGrid, Skeleton, Slide, type SlideDirection, type SlideProps, Slider, Snippet, type SortDirection, type SortState, type SortableItem, SortableList, Spacer, type SpacerProps, Sparkles, type SparklesProps, Spinner, type SpotlightItem, SpotlightSearch, type SpotlightSearchProps, StatCard, StatusLight, type StatusLightProps, Step, type StepProps, Steps, type StepsProps, type SwipeAction, SwipeActions, type SwipeActionsProps, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, type Tag, TagGroup, type TagGroupProps, TagInput, type TagInputProps, type TagItem, TextBadge, type TextBadgeProps, TextField, type TextFieldProps, TextReveal, type TextRevealDirection, type TextRevealProps, Textarea, type TextareaProps, ThemeProvider, type ThemeProviderProps, ThemeToggle, type ThemeToggleProps, TimeField, type TimeFieldProps, TimeInput, type TimeInputProps, TimePicker, type TimePickerProps, type TimeValue, Timeline, TimelineContent, TimelineItem, TimelineOpposite, TimelineSeparator, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, type TransitionProps, type TreeNode, TreeView, type TreeViewProps, Typewriter, type TypewriterProps, type UploadedFile, User, VStack, type ValidationRule, type ViewerImage, VirtualList, type VirtualListProps, VisuallyHidden, type VisuallyHiddenProps, Well, type WellProps, Wiggle, type WiggleProps, WordRotate, type WordRotateProps, actionBarVariants, actionGroupVariants, actionIconVariants, actionMenuTriggerVariants, actionSheetItemVariants, alertVariants, appShellVariants, applyMask, authLayoutVariants, autocompleteInputVariants, avatarGroupVariants, backTopVariants, badgeIndicatorVariants, bannerVariants, bottomNavigationVariants, buttonGroupVariants, buttonVariants, cardVariants, carouselVariants, chartContainerVariants, chipVariants, circularProgressVariants, closeButtonVariants, cn, codeVariants, colorAreaVariants, colorFieldVariants, colorSliderVariants, colorSwatchPickerVariants, colorSwatchVariants, colorWheelVariants, confirmDialogIconVariants, contextualHelpTriggerVariants, copyButtonVariants, currencyInputVariants, dashboardLayoutVariants, dateFieldVariants, dateInputVariants, dotsVariants, drawerMenuButtonVariants, emojiPickerVariants, emptyStateVariants, fabVariants, fileUploadVariants, flexVariants, formatCurrency, formatDate, formatFileSize, formatPhoneNumber, fullCalendarVariants, getFileIcon, getMaskPlaceholder, gridItemVariants, gridListItemVariants, gridListVariants, gridVariants, hexToRgb, hsvToRgb, iconButtonVariants, illustratedMessageVariants, imageCropperVariants, imageVariants, indicatorVariants, infiniteScrollLoaderVariants, infiniteScrollVariants, inlineAlertVariants, inputOTPVariants, inputSizeVariants, kanbanBoardVariants, kanbanCardVariants, kanbanColumnVariants, kbdVariants, labelSizeVariants, labeledValueGroupVariants, labeledValueVariants, linkVariants, listItemVariants, listVariants, listViewItemVariants, listViewVariants, listboxItemVariants, listboxVariants, loadingOverlayVariants, loadingVariants, maskedInputVariants, meterVariants, modalContentVariants, navbarVariants, navigationMenuTriggerStyle, notificationCenterVariants, nprogressVariants, numberFieldVariants, parseDate, parseFormattedValue, phoneInputVariants, pullToRefreshVariants, qrCodeVariants, rangeSliderVariants, ratingVariants, rgbToHex, rgbToHsv, richTextEditorVariants, scrollShadowVariants, searchBarVariants, searchFieldVariants, segmentedControlItemVariants, segmentedControlVariants, selectVariants, settingsLayoutVariants, sheetVariants, skeletonVariants, snippetVariants, sortableItemVariants, sortableListVariants, spinnerVariants, statCardVariants, statusLightVariants, stepVariants, stepsVariants, swipeActionVariants, swipeActionsVariants, tagGroupItemVariants, tagGroupVariants, tagVariants, textBadgeVariants, textFieldVariants, themeToggleVariants, timeFieldVariants, timeInputVariants, timelineItemVariants, timelineVariants, toggleVariants, treeViewVariants, unmask, useButtonGroup, useCarousel, useConfetti, useConfirmDialog, useDrawer, useFieldContext, useFormContext, useKeyboardShortcut, useSpotlight, userVariants, validateFile, validators, virtualListVariants, wellVariants };