eglador-ui-react 1.0.0-alpha.4 → 1.0.0-alpha.6

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.mts CHANGED
@@ -196,32 +196,55 @@ interface ButtonVariantOptions {
196
196
  declare function buttonVariants({ variant, size, shape, }?: ButtonVariantOptions): string;
197
197
  declare const Button: React.ForwardRefExoticComponent<ButtonProps & React.RefAttributes<HTMLButtonElement>>;
198
198
 
199
- type CalendarMode = "single" | "range";
199
+ type CalendarMode = "single" | "range" | "multiple";
200
+ type CalendarSize = "xs" | "sm" | "md" | "lg" | "xl";
201
+ type CalendarCaptionLayout = "label" | "dropdown" | "dropdown-months" | "dropdown-years";
202
+ type CalendarWeekdayFormat = "narrow" | "short" | "long";
200
203
  interface CalendarRange {
201
204
  from?: Date;
202
205
  to?: Date;
203
206
  }
204
- interface CalendarSingleProps {
207
+ type CalendarSingleProps = {
205
208
  mode?: "single";
206
209
  value?: Date | undefined;
207
210
  defaultValue?: Date;
208
211
  onValueChange?: (value: Date | undefined) => void;
209
- }
210
- interface CalendarRangeProps {
212
+ };
213
+ type CalendarRangeProps = {
211
214
  mode: "range";
212
215
  value?: CalendarRange;
213
216
  defaultValue?: CalendarRange;
214
217
  onValueChange?: (value: CalendarRange) => void;
215
- }
216
- type CalendarProps = (CalendarSingleProps | CalendarRangeProps) & {
218
+ };
219
+ type CalendarMultipleProps = {
220
+ mode: "multiple";
221
+ value?: Date[];
222
+ defaultValue?: Date[];
223
+ onValueChange?: (value: Date[]) => void;
224
+ max?: number;
225
+ };
226
+ type SharedCalendarProps = {
217
227
  month?: Date;
218
228
  defaultMonth?: Date;
219
229
  onMonthChange?: (month: Date) => void;
220
230
  minDate?: Date;
221
231
  maxDate?: Date;
222
232
  disabledDates?: (date: Date) => boolean;
233
+ size?: CalendarSize;
234
+ captionLayout?: CalendarCaptionLayout;
235
+ numberOfMonths?: number;
236
+ showWeekNumber?: boolean;
237
+ showOutsideDays?: boolean;
238
+ fixedWeeks?: boolean;
239
+ firstDayOfWeek?: 0 | 1 | 2 | 3 | 4 | 5 | 6;
240
+ locale?: string;
241
+ weekdayFormat?: CalendarWeekdayFormat;
242
+ yearRange?: [number, number];
243
+ footer?: React.ReactNode;
223
244
  className?: string;
245
+ dir?: "ltr" | "rtl";
224
246
  };
247
+ type CalendarProps = (CalendarSingleProps | CalendarRangeProps | CalendarMultipleProps) & SharedCalendarProps;
225
248
  declare function Calendar(props: CalendarProps): react_jsx_runtime.JSX.Element;
226
249
 
227
250
  type ButtonGroupOrientation = "horizontal" | "vertical";
@@ -239,6 +262,34 @@ interface ButtonGroupTextProps extends React.HTMLAttributes<HTMLDivElement> {
239
262
  }
240
263
  declare const ButtonGroupText: React.ForwardRefExoticComponent<ButtonGroupTextProps & React.RefAttributes<HTMLDivElement>>;
241
264
 
265
+ type CardVariant = "solid" | "soft" | "outline" | "ghost";
266
+ type CardShape = "square" | "rounded";
267
+ type CardShadow = "none" | "xs" | "sm" | "md" | "lg" | "xl";
268
+ interface CardProps extends React.HTMLAttributes<HTMLDivElement> {
269
+ variant?: CardVariant;
270
+ shape?: CardShape;
271
+ shadow?: CardShadow;
272
+ }
273
+ declare const Card: React.ForwardRefExoticComponent<CardProps & React.RefAttributes<HTMLDivElement>>;
274
+ interface CardHeaderProps extends React.HTMLAttributes<HTMLDivElement> {
275
+ }
276
+ declare const CardHeader: React.ForwardRefExoticComponent<CardHeaderProps & React.RefAttributes<HTMLDivElement>>;
277
+ interface CardTitleProps extends React.HTMLAttributes<HTMLDivElement> {
278
+ }
279
+ declare const CardTitle: React.ForwardRefExoticComponent<CardTitleProps & React.RefAttributes<HTMLDivElement>>;
280
+ interface CardDescriptionProps extends React.HTMLAttributes<HTMLDivElement> {
281
+ }
282
+ declare const CardDescription: React.ForwardRefExoticComponent<CardDescriptionProps & React.RefAttributes<HTMLDivElement>>;
283
+ interface CardActionProps extends React.HTMLAttributes<HTMLDivElement> {
284
+ }
285
+ declare const CardAction: React.ForwardRefExoticComponent<CardActionProps & React.RefAttributes<HTMLDivElement>>;
286
+ interface CardContentProps extends React.HTMLAttributes<HTMLDivElement> {
287
+ }
288
+ declare const CardContent: React.ForwardRefExoticComponent<CardContentProps & React.RefAttributes<HTMLDivElement>>;
289
+ interface CardFooterProps extends React.HTMLAttributes<HTMLDivElement> {
290
+ }
291
+ declare const CardFooter: React.ForwardRefExoticComponent<CardFooterProps & React.RefAttributes<HTMLDivElement>>;
292
+
242
293
  type CheckboxSize = "xs" | "sm" | "md" | "lg" | "xl";
243
294
  interface CheckboxProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, "size" | "type" | "onChange"> {
244
295
  size?: CheckboxSize;
@@ -287,10 +338,55 @@ interface CollapsibleContentProps extends React.HTMLAttributes<HTMLDivElement> {
287
338
  }
288
339
  declare const CollapsibleContent: React.ForwardRefExoticComponent<CollapsibleContentProps & React.RefAttributes<HTMLDivElement>>;
289
340
 
341
+ type DialogSize = "xs" | "sm" | "md" | "lg" | "xl" | "full";
342
+ type DialogShape = "square" | "rounded";
343
+ type DialogShadow = "none" | "xs" | "sm" | "md" | "lg" | "xl";
344
+ interface DialogProps {
345
+ open?: boolean;
346
+ defaultOpen?: boolean;
347
+ onOpenChange?: (open: boolean) => void;
348
+ size?: DialogSize;
349
+ shape?: DialogShape;
350
+ shadow?: DialogShadow;
351
+ modal?: boolean;
352
+ children: React.ReactNode;
353
+ }
354
+ declare function Dialog({ open: controlled, defaultOpen, onOpenChange, size, shape, shadow, modal, children, }: DialogProps): react_jsx_runtime.JSX.Element;
355
+ interface DialogTriggerProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
356
+ asChild?: boolean;
357
+ }
358
+ declare const DialogTrigger: React.ForwardRefExoticComponent<DialogTriggerProps & React.RefAttributes<HTMLButtonElement>>;
359
+ interface DialogOverlayProps extends React.HTMLAttributes<HTMLDivElement> {
360
+ }
361
+ declare const DialogOverlay: React.ForwardRefExoticComponent<DialogOverlayProps & React.RefAttributes<HTMLDivElement>>;
362
+ interface DialogContentProps extends React.HTMLAttributes<HTMLDivElement> {
363
+ showClose?: boolean;
364
+ closeOnOverlay?: boolean;
365
+ }
366
+ declare const DialogContent: React.ForwardRefExoticComponent<DialogContentProps & React.RefAttributes<HTMLDivElement>>;
367
+ interface DialogHeaderProps extends React.HTMLAttributes<HTMLDivElement> {
368
+ }
369
+ declare const DialogHeader: React.ForwardRefExoticComponent<DialogHeaderProps & React.RefAttributes<HTMLDivElement>>;
370
+ interface DialogFooterProps extends React.HTMLAttributes<HTMLDivElement> {
371
+ }
372
+ declare const DialogFooter: React.ForwardRefExoticComponent<DialogFooterProps & React.RefAttributes<HTMLDivElement>>;
373
+ interface DialogTitleProps extends React.HTMLAttributes<HTMLHeadingElement> {
374
+ }
375
+ declare const DialogTitle: React.ForwardRefExoticComponent<DialogTitleProps & React.RefAttributes<HTMLHeadingElement>>;
376
+ interface DialogDescriptionProps extends React.HTMLAttributes<HTMLParagraphElement> {
377
+ }
378
+ declare const DialogDescription: React.ForwardRefExoticComponent<DialogDescriptionProps & React.RefAttributes<HTMLParagraphElement>>;
379
+ interface DialogCloseProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
380
+ asChild?: boolean;
381
+ }
382
+ declare const DialogClose: React.ForwardRefExoticComponent<DialogCloseProps & React.RefAttributes<HTMLButtonElement>>;
383
+
290
384
  interface CommandProps extends React.HTMLAttributes<HTMLDivElement> {
291
385
  defaultFilter?: string;
292
386
  filter?: string;
293
387
  onFilterChange?: (filter: string) => void;
388
+ shouldFilter?: boolean;
389
+ loop?: boolean;
294
390
  }
295
391
  declare const Command: React.ForwardRefExoticComponent<CommandProps & React.RefAttributes<HTMLDivElement>>;
296
392
  interface CommandInputProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, "value" | "onChange"> {
@@ -308,6 +404,7 @@ interface CommandGroupProps extends React.HTMLAttributes<HTMLDivElement> {
308
404
  declare const CommandGroup: React.ForwardRefExoticComponent<CommandGroupProps & React.RefAttributes<HTMLDivElement>>;
309
405
  interface CommandItemProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "onSelect"> {
310
406
  value: string;
407
+ keywords?: string[];
311
408
  disabled?: boolean;
312
409
  onSelect?: (value: string) => void;
313
410
  }
@@ -318,14 +415,27 @@ declare const CommandSeparator: React.ForwardRefExoticComponent<CommandSeparator
318
415
  interface CommandShortcutProps extends React.HTMLAttributes<HTMLSpanElement> {
319
416
  }
320
417
  declare const CommandShortcut: React.ForwardRefExoticComponent<CommandShortcutProps & React.RefAttributes<HTMLSpanElement>>;
418
+ interface CommandDialogProps extends DialogProps {
419
+ title?: React.ReactNode;
420
+ description?: React.ReactNode;
421
+ commandProps?: Omit<CommandProps, "children">;
422
+ size?: DialogSize;
423
+ shape?: DialogShape;
424
+ shadow?: DialogShadow;
425
+ }
426
+ declare function CommandDialog({ title, description, commandProps, children, size, shape, shadow, ...dialogProps }: CommandDialogProps & {
427
+ children: React.ReactNode;
428
+ }): react_jsx_runtime.JSX.Element;
429
+ declare namespace CommandDialog {
430
+ var displayName: string;
431
+ }
321
432
 
322
433
  interface ContextMenuProps {
323
434
  open?: boolean;
324
- defaultOpen?: boolean;
325
435
  onOpenChange?: (open: boolean) => void;
326
436
  children: React.ReactNode;
327
437
  }
328
- declare function ContextMenu({ open: controlled, defaultOpen, onOpenChange, children, }: ContextMenuProps): react_jsx_runtime.JSX.Element;
438
+ declare function ContextMenu({ open: controlled, onOpenChange, children, }: ContextMenuProps): react_jsx_runtime.JSX.Element;
329
439
  interface ContextMenuTriggerProps extends React.HTMLAttributes<HTMLDivElement> {
330
440
  asChild?: boolean;
331
441
  disabled?: boolean;
@@ -334,9 +444,11 @@ declare const ContextMenuTrigger: React.ForwardRefExoticComponent<ContextMenuTri
334
444
  interface ContextMenuContentProps extends React.HTMLAttributes<HTMLDivElement> {
335
445
  }
336
446
  declare const ContextMenuContent: React.ForwardRefExoticComponent<ContextMenuContentProps & React.RefAttributes<HTMLDivElement>>;
447
+ type ContextMenuItemVariant = "default" | "destructive";
337
448
  interface ContextMenuItemProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "onSelect"> {
338
449
  disabled?: boolean;
339
450
  inset?: boolean;
451
+ variant?: ContextMenuItemVariant;
340
452
  onSelect?: (e: Event) => void;
341
453
  }
342
454
  declare const ContextMenuItem: React.ForwardRefExoticComponent<ContextMenuItemProps & React.RefAttributes<HTMLDivElement>>;
@@ -356,6 +468,9 @@ interface ContextMenuRadioItemProps extends Omit<ContextMenuItemProps, "inset">
356
468
  value: string;
357
469
  }
358
470
  declare const ContextMenuRadioItem: React.ForwardRefExoticComponent<ContextMenuRadioItemProps & React.RefAttributes<HTMLDivElement>>;
471
+ interface ContextMenuGroupProps extends React.HTMLAttributes<HTMLDivElement> {
472
+ }
473
+ declare const ContextMenuGroup: React.ForwardRefExoticComponent<ContextMenuGroupProps & React.RefAttributes<HTMLDivElement>>;
359
474
  interface ContextMenuLabelProps extends React.HTMLAttributes<HTMLDivElement> {
360
475
  inset?: boolean;
361
476
  }
@@ -366,19 +481,59 @@ declare const ContextMenuSeparator: React.ForwardRefExoticComponent<ContextMenuS
366
481
  interface ContextMenuShortcutProps extends React.HTMLAttributes<HTMLSpanElement> {
367
482
  }
368
483
  declare const ContextMenuShortcut: React.ForwardRefExoticComponent<ContextMenuShortcutProps & React.RefAttributes<HTMLSpanElement>>;
484
+ type ContextMenuSubSide = "right" | "left";
485
+ interface ContextMenuSubProps {
486
+ open?: boolean;
487
+ defaultOpen?: boolean;
488
+ onOpenChange?: (open: boolean) => void;
489
+ children: React.ReactNode;
490
+ }
491
+ declare function ContextMenuSub({ open: controlled, defaultOpen, onOpenChange, children, }: ContextMenuSubProps): react_jsx_runtime.JSX.Element;
492
+ interface ContextMenuSubTriggerProps extends Omit<ContextMenuItemProps, "onSelect"> {
493
+ }
494
+ declare const ContextMenuSubTrigger: React.ForwardRefExoticComponent<ContextMenuSubTriggerProps & React.RefAttributes<HTMLDivElement>>;
495
+ interface ContextMenuSubContentProps extends React.HTMLAttributes<HTMLDivElement> {
496
+ side?: ContextMenuSubSide;
497
+ sideOffset?: number;
498
+ }
499
+ declare const ContextMenuSubContent: React.ForwardRefExoticComponent<ContextMenuSubContentProps & React.RefAttributes<HTMLDivElement>>;
369
500
 
370
- interface DatePickerProps {
501
+ type DatePickerSingleProps = {
502
+ mode?: "single";
371
503
  value?: Date | undefined;
372
504
  defaultValue?: Date;
373
505
  onValueChange?: (value: Date | undefined) => void;
506
+ format?: (d: Date | undefined) => string;
507
+ };
508
+ type DatePickerRangeProps = {
509
+ mode: "range";
510
+ value?: CalendarRange;
511
+ defaultValue?: CalendarRange;
512
+ onValueChange?: (value: CalendarRange) => void;
513
+ format?: (r: CalendarRange | undefined) => string;
514
+ };
515
+ type SharedDatePickerProps = {
374
516
  placeholder?: string;
375
517
  disabled?: boolean;
376
- format?: (d: Date | undefined) => string;
518
+ clearable?: boolean;
377
519
  className?: string;
378
520
  minDate?: Date;
379
521
  maxDate?: Date;
380
- }
381
- declare function DatePicker({ value: controlled, defaultValue, onValueChange, placeholder, disabled, format, className, minDate, maxDate, }: DatePickerProps): react_jsx_runtime.JSX.Element;
522
+ disabledDates?: (d: Date) => boolean;
523
+ size?: CalendarSize;
524
+ captionLayout?: CalendarCaptionLayout;
525
+ numberOfMonths?: number;
526
+ firstDayOfWeek?: 0 | 1 | 2 | 3 | 4 | 5 | 6;
527
+ locale?: string;
528
+ weekdayFormat?: CalendarWeekdayFormat;
529
+ yearRange?: [number, number];
530
+ showWeekNumber?: boolean;
531
+ showOutsideDays?: boolean;
532
+ fixedWeeks?: boolean;
533
+ dir?: "ltr" | "rtl";
534
+ };
535
+ type DatePickerProps = (DatePickerSingleProps | DatePickerRangeProps) & SharedDatePickerProps;
536
+ declare function DatePicker(props: DatePickerProps): react_jsx_runtime.JSX.Element;
382
537
 
383
538
  interface DateTimePickerProps {
384
539
  value?: Date | undefined;
@@ -386,57 +541,28 @@ interface DateTimePickerProps {
386
541
  onValueChange?: (value: Date | undefined) => void;
387
542
  placeholder?: string;
388
543
  disabled?: boolean;
544
+ clearable?: boolean;
389
545
  format?: (d: Date | undefined) => string;
390
546
  className?: string;
391
547
  step?: number;
392
548
  showSeconds?: boolean;
549
+ hour12?: boolean;
393
550
  minDate?: Date;
394
551
  maxDate?: Date;
395
- }
396
- declare function DateTimePicker({ value: controlled, defaultValue, onValueChange, placeholder, disabled, format, className, showSeconds, minDate, maxDate, }: DateTimePickerProps): react_jsx_runtime.JSX.Element;
397
-
398
- type DialogSize = "xs" | "sm" | "md" | "lg" | "xl" | "full";
399
- type DialogShape = "square" | "rounded";
400
- type DialogShadow = "none" | "xs" | "sm" | "md" | "lg" | "xl";
401
- interface DialogProps {
402
- open?: boolean;
403
- defaultOpen?: boolean;
404
- onOpenChange?: (open: boolean) => void;
405
- size?: DialogSize;
406
- shape?: DialogShape;
407
- shadow?: DialogShadow;
408
- modal?: boolean;
409
- children: React.ReactNode;
410
- }
411
- declare function Dialog({ open: controlled, defaultOpen, onOpenChange, size, shape, shadow, modal, children, }: DialogProps): react_jsx_runtime.JSX.Element;
412
- interface DialogTriggerProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
413
- asChild?: boolean;
414
- }
415
- declare const DialogTrigger: React.ForwardRefExoticComponent<DialogTriggerProps & React.RefAttributes<HTMLButtonElement>>;
416
- interface DialogOverlayProps extends React.HTMLAttributes<HTMLDivElement> {
417
- }
418
- declare const DialogOverlay: React.ForwardRefExoticComponent<DialogOverlayProps & React.RefAttributes<HTMLDivElement>>;
419
- interface DialogContentProps extends React.HTMLAttributes<HTMLDivElement> {
420
- showClose?: boolean;
421
- closeOnOverlay?: boolean;
422
- }
423
- declare const DialogContent: React.ForwardRefExoticComponent<DialogContentProps & React.RefAttributes<HTMLDivElement>>;
424
- interface DialogHeaderProps extends React.HTMLAttributes<HTMLDivElement> {
425
- }
426
- declare const DialogHeader: React.ForwardRefExoticComponent<DialogHeaderProps & React.RefAttributes<HTMLDivElement>>;
427
- interface DialogFooterProps extends React.HTMLAttributes<HTMLDivElement> {
428
- }
429
- declare const DialogFooter: React.ForwardRefExoticComponent<DialogFooterProps & React.RefAttributes<HTMLDivElement>>;
430
- interface DialogTitleProps extends React.HTMLAttributes<HTMLHeadingElement> {
431
- }
432
- declare const DialogTitle: React.ForwardRefExoticComponent<DialogTitleProps & React.RefAttributes<HTMLHeadingElement>>;
433
- interface DialogDescriptionProps extends React.HTMLAttributes<HTMLParagraphElement> {
434
- }
435
- declare const DialogDescription: React.ForwardRefExoticComponent<DialogDescriptionProps & React.RefAttributes<HTMLParagraphElement>>;
436
- interface DialogCloseProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
437
- asChild?: boolean;
438
- }
439
- declare const DialogClose: React.ForwardRefExoticComponent<DialogCloseProps & React.RefAttributes<HTMLButtonElement>>;
552
+ disabledDates?: (d: Date) => boolean;
553
+ size?: CalendarSize;
554
+ captionLayout?: CalendarCaptionLayout;
555
+ numberOfMonths?: number;
556
+ firstDayOfWeek?: 0 | 1 | 2 | 3 | 4 | 5 | 6;
557
+ locale?: string;
558
+ weekdayFormat?: CalendarWeekdayFormat;
559
+ yearRange?: [number, number];
560
+ showWeekNumber?: boolean;
561
+ showOutsideDays?: boolean;
562
+ fixedWeeks?: boolean;
563
+ dir?: "ltr" | "rtl";
564
+ }
565
+ declare function DateTimePicker({ value: controlled, defaultValue, onValueChange, placeholder, disabled, clearable, format, className, step, showSeconds, hour12, minDate, maxDate, disabledDates, size, captionLayout, numberOfMonths, firstDayOfWeek, locale, weekdayFormat, yearRange, showWeekNumber, showOutsideDays, fixedWeeks, dir, }: DateTimePickerProps): react_jsx_runtime.JSX.Element;
440
566
 
441
567
  type DrawerSide = "top" | "right" | "bottom" | "left";
442
568
  type DrawerSize = "xs" | "sm" | "md" | "lg" | "xl" | "full";
@@ -536,16 +662,26 @@ interface DropdownShortcutProps extends React.HTMLAttributes<HTMLSpanElement> {
536
662
  }
537
663
  declare const DropdownShortcut: React.ForwardRefExoticComponent<DropdownShortcutProps & React.RefAttributes<HTMLSpanElement>>;
538
664
 
539
- type EmptySize = "xs" | "sm" | "md" | "lg" | "xl";
540
- interface EmptyProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "title"> {
541
- icon?: React.ReactNode;
542
- title?: React.ReactNode;
543
- description?: React.ReactNode;
544
- size?: EmptySize;
545
- action?: React.ReactNode;
546
- children?: React.ReactNode;
665
+ interface EmptyProps extends React.HTMLAttributes<HTMLDivElement> {
547
666
  }
548
667
  declare const Empty: React.ForwardRefExoticComponent<EmptyProps & React.RefAttributes<HTMLDivElement>>;
668
+ interface EmptyHeaderProps extends React.HTMLAttributes<HTMLDivElement> {
669
+ }
670
+ declare const EmptyHeader: React.ForwardRefExoticComponent<EmptyHeaderProps & React.RefAttributes<HTMLDivElement>>;
671
+ type EmptyMediaVariant = "default" | "icon";
672
+ interface EmptyMediaProps extends React.HTMLAttributes<HTMLDivElement> {
673
+ variant?: EmptyMediaVariant;
674
+ }
675
+ declare const EmptyMedia: React.ForwardRefExoticComponent<EmptyMediaProps & React.RefAttributes<HTMLDivElement>>;
676
+ interface EmptyTitleProps extends React.HTMLAttributes<HTMLHeadingElement> {
677
+ }
678
+ declare const EmptyTitle: React.ForwardRefExoticComponent<EmptyTitleProps & React.RefAttributes<HTMLHeadingElement>>;
679
+ interface EmptyDescriptionProps extends React.HTMLAttributes<HTMLParagraphElement> {
680
+ }
681
+ declare const EmptyDescription: React.ForwardRefExoticComponent<EmptyDescriptionProps & React.RefAttributes<HTMLParagraphElement>>;
682
+ interface EmptyContentProps extends React.HTMLAttributes<HTMLDivElement> {
683
+ }
684
+ declare const EmptyContent: React.ForwardRefExoticComponent<EmptyContentProps & React.RefAttributes<HTMLDivElement>>;
549
685
 
550
686
  interface HoverCardProps {
551
687
  open?: boolean;
@@ -635,7 +771,7 @@ interface InputGroupTextProps extends React.HTMLAttributes<HTMLDivElement> {
635
771
  }
636
772
  declare const InputGroupText: React.ForwardRefExoticComponent<InputGroupTextProps & React.RefAttributes<HTMLDivElement>>;
637
773
 
638
- type InputOTPSize = "sm" | "md" | "lg" | "xl";
774
+ type InputOTPSize = "xs" | "sm" | "md" | "lg" | "xl";
639
775
  interface InputOTPProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "onChange"> {
640
776
  value?: string;
641
777
  defaultValue?: string;
@@ -743,7 +879,7 @@ interface MenubarShortcutProps extends React.HTMLAttributes<HTMLSpanElement> {
743
879
  declare const MenubarShortcut: React.ForwardRefExoticComponent<MenubarShortcutProps & React.RefAttributes<HTMLSpanElement>>;
744
880
 
745
881
  type MultiSelectSize = "xs" | "sm" | "md" | "lg" | "xl";
746
- type MultiSelectVariant = "outline" | "soft";
882
+ type MultiSelectVariant = "outline" | "soft" | "ghost";
747
883
  type MultiSelectShape = "square" | "rounded" | "pill";
748
884
  interface MultiSelectOption {
749
885
  value: string;
@@ -1007,7 +1143,7 @@ declare const ResizableHandle: React.ForwardRefExoticComponent<ResizableHandlePr
1007
1143
 
1008
1144
  type ScrollAreaOrientation = "vertical" | "horizontal" | "both";
1009
1145
  type ScrollAreaScrollbarVisibility = "auto" | "always" | "hover";
1010
- type ScrollAreaSize = "xs" | "sm" | "md" | "lg";
1146
+ type ScrollAreaSize = "xs" | "sm" | "md" | "lg" | "xl";
1011
1147
  interface ScrollAreaProps extends React.HTMLAttributes<HTMLDivElement> {
1012
1148
  orientation?: ScrollAreaOrientation;
1013
1149
  scrollbarVisibility?: ScrollAreaScrollbarVisibility;
@@ -1072,51 +1208,120 @@ declare const Separator: React.ForwardRefExoticComponent<SeparatorProps & React.
1072
1208
 
1073
1209
  type SidebarSide = "left" | "right";
1074
1210
  type SidebarVariant = "sidebar" | "floating" | "inset";
1211
+ type SidebarCollapsible = "offcanvas" | "icon" | "none";
1212
+ type SidebarState = "expanded" | "collapsed";
1213
+ interface SidebarContextValue {
1214
+ state: SidebarState;
1215
+ open: boolean;
1216
+ setOpen: (open: boolean) => void;
1217
+ openMobile: boolean;
1218
+ setOpenMobile: (open: boolean) => void;
1219
+ isMobile: boolean;
1220
+ toggleSidebar: () => void;
1221
+ activeId: string | undefined;
1222
+ setActiveId: (id: string | undefined) => void;
1223
+ }
1224
+ declare function useSidebar(): SidebarContextValue;
1075
1225
  interface SidebarProviderProps extends React.HTMLAttributes<HTMLDivElement> {
1076
- open?: boolean;
1077
1226
  defaultOpen?: boolean;
1227
+ open?: boolean;
1078
1228
  onOpenChange?: (open: boolean) => void;
1079
- collapsed?: boolean;
1080
- defaultCollapsed?: boolean;
1081
- onCollapsedChange?: (collapsed: boolean) => void;
1229
+ defaultActiveId?: string;
1230
+ activeId?: string;
1231
+ onActiveIdChange?: (id: string | undefined) => void;
1232
+ /** When set, the open state is persisted to localStorage under this key. */
1233
+ persistKey?: string;
1234
+ }
1235
+ declare const SidebarProvider: React.ForwardRefExoticComponent<SidebarProviderProps & React.RefAttributes<HTMLDivElement>>;
1236
+ interface SidebarProps extends React.HTMLAttributes<HTMLDivElement> {
1082
1237
  side?: SidebarSide;
1083
1238
  variant?: SidebarVariant;
1239
+ collapsible?: SidebarCollapsible;
1084
1240
  }
1085
- declare const SidebarProvider: React.ForwardRefExoticComponent<SidebarProviderProps & React.RefAttributes<HTMLDivElement>>;
1086
- interface SidebarProps extends React.HTMLAttributes<HTMLElement> {
1241
+ declare const Sidebar: React.ForwardRefExoticComponent<SidebarProps & React.RefAttributes<HTMLDivElement>>;
1242
+ interface SidebarTriggerProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
1243
+ }
1244
+ declare const SidebarTrigger: React.ForwardRefExoticComponent<SidebarTriggerProps & React.RefAttributes<HTMLButtonElement>>;
1245
+ interface SidebarRailProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
1087
1246
  }
1088
- declare const Sidebar: React.ForwardRefExoticComponent<SidebarProps & React.RefAttributes<HTMLElement>>;
1247
+ declare const SidebarRail: React.ForwardRefExoticComponent<SidebarRailProps & React.RefAttributes<HTMLButtonElement>>;
1248
+ interface SidebarInsetProps extends React.HTMLAttributes<HTMLElement> {
1249
+ }
1250
+ declare const SidebarInset: React.ForwardRefExoticComponent<SidebarInsetProps & React.RefAttributes<HTMLElement>>;
1089
1251
  interface SidebarHeaderProps extends React.HTMLAttributes<HTMLDivElement> {
1090
1252
  }
1091
1253
  declare const SidebarHeader: React.ForwardRefExoticComponent<SidebarHeaderProps & React.RefAttributes<HTMLDivElement>>;
1254
+ interface SidebarFooterProps extends React.HTMLAttributes<HTMLDivElement> {
1255
+ }
1256
+ declare const SidebarFooter: React.ForwardRefExoticComponent<SidebarFooterProps & React.RefAttributes<HTMLDivElement>>;
1092
1257
  interface SidebarContentProps extends React.HTMLAttributes<HTMLDivElement> {
1093
1258
  }
1094
1259
  declare const SidebarContent: React.ForwardRefExoticComponent<SidebarContentProps & React.RefAttributes<HTMLDivElement>>;
1095
- interface SidebarFooterProps extends React.HTMLAttributes<HTMLDivElement> {
1260
+ interface SidebarSeparatorProps extends React.HTMLAttributes<HTMLDivElement> {
1096
1261
  }
1097
- declare const SidebarFooter: React.ForwardRefExoticComponent<SidebarFooterProps & React.RefAttributes<HTMLDivElement>>;
1262
+ declare const SidebarSeparator: React.ForwardRefExoticComponent<SidebarSeparatorProps & React.RefAttributes<HTMLDivElement>>;
1098
1263
  interface SidebarGroupProps extends React.HTMLAttributes<HTMLDivElement> {
1099
- label?: React.ReactNode;
1100
1264
  }
1101
1265
  declare const SidebarGroup: React.ForwardRefExoticComponent<SidebarGroupProps & React.RefAttributes<HTMLDivElement>>;
1266
+ interface SidebarGroupLabelProps extends React.HTMLAttributes<HTMLDivElement> {
1267
+ asChild?: boolean;
1268
+ }
1269
+ declare const SidebarGroupLabel: React.ForwardRefExoticComponent<SidebarGroupLabelProps & React.RefAttributes<HTMLDivElement>>;
1270
+ interface SidebarGroupActionProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
1271
+ asChild?: boolean;
1272
+ }
1273
+ declare const SidebarGroupAction: React.ForwardRefExoticComponent<SidebarGroupActionProps & React.RefAttributes<HTMLButtonElement>>;
1274
+ interface SidebarGroupContentProps extends React.HTMLAttributes<HTMLDivElement> {
1275
+ }
1276
+ declare const SidebarGroupContent: React.ForwardRefExoticComponent<SidebarGroupContentProps & React.RefAttributes<HTMLDivElement>>;
1102
1277
  interface SidebarMenuProps extends React.HTMLAttributes<HTMLUListElement> {
1103
1278
  }
1104
1279
  declare const SidebarMenu: React.ForwardRefExoticComponent<SidebarMenuProps & React.RefAttributes<HTMLUListElement>>;
1105
1280
  interface SidebarMenuItemProps extends React.LiHTMLAttributes<HTMLLIElement> {
1106
1281
  }
1107
1282
  declare const SidebarMenuItem: React.ForwardRefExoticComponent<SidebarMenuItemProps & React.RefAttributes<HTMLLIElement>>;
1283
+ type SidebarMenuButtonSize = "sm" | "md" | "lg";
1108
1284
  interface SidebarMenuButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
1109
1285
  asChild?: boolean;
1110
- active?: boolean;
1111
- icon?: React.ReactNode;
1286
+ isActive?: boolean;
1287
+ size?: SidebarMenuButtonSize;
1288
+ /** When set, the button auto-marks itself active if the Provider's `activeId` matches. */
1289
+ value?: string;
1290
+ /**
1291
+ * Label shown as a tooltip when the sidebar is collapsed to icon mode.
1292
+ * Pass `false` to suppress the tooltip even in icon mode.
1293
+ */
1294
+ tooltip?: React.ReactNode | false;
1112
1295
  }
1113
1296
  declare const SidebarMenuButton: React.ForwardRefExoticComponent<SidebarMenuButtonProps & React.RefAttributes<HTMLButtonElement>>;
1114
- interface SidebarTriggerProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
1297
+ interface SidebarMenuActionProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
1298
+ asChild?: boolean;
1299
+ showOnHover?: boolean;
1115
1300
  }
1116
- declare const SidebarTrigger: React.ForwardRefExoticComponent<SidebarTriggerProps & React.RefAttributes<HTMLButtonElement>>;
1117
- interface SidebarInsetProps extends React.HTMLAttributes<HTMLElement> {
1301
+ declare const SidebarMenuAction: React.ForwardRefExoticComponent<SidebarMenuActionProps & React.RefAttributes<HTMLButtonElement>>;
1302
+ interface SidebarMenuBadgeProps extends React.HTMLAttributes<HTMLDivElement> {
1118
1303
  }
1119
- declare const SidebarInset: React.ForwardRefExoticComponent<SidebarInsetProps & React.RefAttributes<HTMLElement>>;
1304
+ declare const SidebarMenuBadge: React.ForwardRefExoticComponent<SidebarMenuBadgeProps & React.RefAttributes<HTMLDivElement>>;
1305
+ interface SidebarMenuSkeletonProps extends React.HTMLAttributes<HTMLDivElement> {
1306
+ showIcon?: boolean;
1307
+ }
1308
+ declare const SidebarMenuSkeleton: React.ForwardRefExoticComponent<SidebarMenuSkeletonProps & React.RefAttributes<HTMLDivElement>>;
1309
+ interface SidebarMenuSubProps extends React.HTMLAttributes<HTMLUListElement> {
1310
+ }
1311
+ declare const SidebarMenuSub: React.ForwardRefExoticComponent<SidebarMenuSubProps & React.RefAttributes<HTMLUListElement>>;
1312
+ interface SidebarMenuSubItemProps extends React.LiHTMLAttributes<HTMLLIElement> {
1313
+ }
1314
+ declare const SidebarMenuSubItem: React.ForwardRefExoticComponent<SidebarMenuSubItemProps & React.RefAttributes<HTMLLIElement>>;
1315
+ interface SidebarMenuSubButtonProps extends React.AnchorHTMLAttributes<HTMLAnchorElement> {
1316
+ asChild?: boolean;
1317
+ isActive?: boolean;
1318
+ size?: "sm" | "md";
1319
+ value?: string;
1320
+ }
1321
+ declare const SidebarMenuSubButton: React.ForwardRefExoticComponent<SidebarMenuSubButtonProps & React.RefAttributes<HTMLAnchorElement>>;
1322
+ interface SidebarInputProps extends React.InputHTMLAttributes<HTMLInputElement> {
1323
+ }
1324
+ declare const SidebarInput: React.ForwardRefExoticComponent<SidebarInputProps & React.RefAttributes<HTMLInputElement>>;
1120
1325
 
1121
1326
  type SkeletonVariant = "text" | "circular" | "rectangular" | "rounded";
1122
1327
  type SkeletonAnimation = "pulse" | "wave" | "none";
@@ -1134,13 +1339,23 @@ declare const Skeleton: React.ForwardRefExoticComponent<SkeletonProps & React.Re
1134
1339
  declare function ensureSkeletonStyles(): void;
1135
1340
 
1136
1341
  type SpeedDialDirection = "up" | "down" | "left" | "right";
1137
- type SpeedDialSize = "sm" | "md" | "lg";
1342
+ type SpeedDialSize = "xs" | "sm" | "md" | "lg" | "xl";
1343
+ type SpeedDialShape = "circle" | "rounded" | "square";
1344
+ type SpeedDialShadow = "none" | "xs" | "sm" | "md" | "lg" | "xl";
1345
+ type SpeedDialPosition = "inline" | "top-left" | "top-right" | "bottom-left" | "bottom-right";
1138
1346
  interface SpeedDialProps extends React.HTMLAttributes<HTMLDivElement> {
1139
1347
  open?: boolean;
1140
1348
  defaultOpen?: boolean;
1141
1349
  onOpenChange?: (open: boolean) => void;
1142
1350
  direction?: SpeedDialDirection;
1143
1351
  size?: SpeedDialSize;
1352
+ shape?: SpeedDialShape;
1353
+ shadow?: SpeedDialShadow;
1354
+ position?: SpeedDialPosition;
1355
+ disabled?: boolean;
1356
+ backdrop?: boolean;
1357
+ closeOnOutsideClick?: boolean;
1358
+ closeOnEscape?: boolean;
1144
1359
  }
1145
1360
  declare const SpeedDial: React.ForwardRefExoticComponent<SpeedDialProps & React.RefAttributes<HTMLDivElement>>;
1146
1361
  interface SpeedDialTriggerProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
@@ -1245,6 +1460,10 @@ interface TabsContentProps extends React.HTMLAttributes<HTMLDivElement> {
1245
1460
  }
1246
1461
  declare const TabsContent: React.ForwardRefExoticComponent<TabsContentProps & React.RefAttributes<HTMLDivElement>>;
1247
1462
 
1463
+ type TooltipSize = "xs" | "sm" | "md" | "lg" | "xl";
1464
+ type TooltipVariant = "solid" | "soft" | "outline";
1465
+ type TooltipShape = "square" | "rounded";
1466
+ type TooltipShadow = "none" | "xs" | "sm" | "md" | "lg" | "xl";
1248
1467
  interface TooltipProps {
1249
1468
  open?: boolean;
1250
1469
  defaultOpen?: boolean;
@@ -1255,9 +1474,14 @@ interface TooltipProps {
1255
1474
  alignOffset?: number;
1256
1475
  delayDuration?: number;
1257
1476
  closeDelay?: number;
1477
+ size?: TooltipSize;
1478
+ variant?: TooltipVariant;
1479
+ shape?: TooltipShape;
1480
+ shadow?: TooltipShadow;
1481
+ disabled?: boolean;
1258
1482
  children: React.ReactNode;
1259
1483
  }
1260
- declare function Tooltip({ open: controlled, defaultOpen, onOpenChange, side, align, sideOffset, alignOffset, delayDuration, closeDelay, children, }: TooltipProps): react_jsx_runtime.JSX.Element;
1484
+ declare function Tooltip({ open: controlled, defaultOpen, onOpenChange, side, align, sideOffset, alignOffset, delayDuration, closeDelay, size, variant, shape, shadow, disabled, children, }: TooltipProps): react_jsx_runtime.JSX.Element;
1261
1485
  interface TooltipTriggerProps extends React.HTMLAttributes<HTMLElement> {
1262
1486
  asChild?: boolean;
1263
1487
  }
@@ -1267,7 +1491,7 @@ interface TooltipContentProps extends React.HTMLAttributes<HTMLDivElement> {
1267
1491
  }
1268
1492
  declare const TooltipContent: React.ForwardRefExoticComponent<TooltipContentProps & React.RefAttributes<HTMLDivElement>>;
1269
1493
 
1270
- type TreeViewSize = "xs" | "sm" | "md" | "lg";
1494
+ type TreeViewSize = "xs" | "sm" | "md" | "lg" | "xl";
1271
1495
  interface TreeViewProps extends React.HTMLAttributes<HTMLUListElement> {
1272
1496
  defaultExpanded?: string[];
1273
1497
  expanded?: string[];
@@ -1307,4 +1531,4 @@ interface TypographyProps extends Omit<React.HTMLAttributes<HTMLElement>, "color
1307
1531
  }
1308
1532
  declare const Typography: React.ForwardRefExoticComponent<TypographyProps & React.RefAttributes<HTMLElement>>;
1309
1533
 
1310
- export { Accordion, AccordionContent, type AccordionContentProps, type AccordionIconPosition, type AccordionIndicator, AccordionItem, type AccordionItemProps, type AccordionProps, type AccordionShape, type AccordionSize, AccordionTrigger, type AccordionTriggerProps, type AccordionType, type AccordionVariant, Alert, AlertDescription, type AlertDescriptionProps, AlertDialog, AlertDialogAction, type AlertDialogActionProps, AlertDialogCancel, type AlertDialogCancelProps, AlertDialogContent, type AlertDialogContentProps, AlertDialogDescription, type AlertDialogDescriptionProps, AlertDialogFooter, type AlertDialogFooterProps, AlertDialogHeader, type AlertDialogHeaderProps, type AlertDialogProps, type AlertDialogShadow, type AlertDialogShape, type AlertDialogSize, AlertDialogTitle, type AlertDialogTitleProps, AlertDialogTrigger, type AlertDialogTriggerProps, AlertIcon, type AlertIconProps, type AlertProps, type AlertShape, type AlertSize, AlertTitle, type AlertTitleProps, type AlertVariant, AspectRatio, type AspectRatioPreset, type AspectRatioProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarShape, type AvatarSize, Badge, type BadgeProps, type BadgeShape, type BadgeSize, type BadgeVariant, Breadcrumb, BreadcrumbEllipsis, type BreadcrumbEllipsisProps, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbList, type BreadcrumbListProps, BreadcrumbPage, type BreadcrumbPageProps, type BreadcrumbProps, BreadcrumbSeparator, type BreadcrumbSeparatorProps, type BreadcrumbSize, Button, ButtonGroup, type ButtonGroupOrientation, type ButtonGroupProps, ButtonGroupSeparator, type ButtonGroupSeparatorProps, ButtonGroupText, type ButtonGroupTextProps, type ButtonGroupTextSize, type ButtonProps, type ButtonShape, type ButtonSize, type ButtonVariant, type ButtonVariantOptions, Calendar, type CalendarMode, type CalendarProps, type CalendarRange, Checkbox, CheckboxGroup, CheckboxGroupItem, type CheckboxGroupItemProps, type CheckboxGroupOrientation, type CheckboxGroupProps, type CheckboxProps, type CheckboxSize, Collapsible, CollapsibleContent, type CollapsibleContentProps, type CollapsibleProps, CollapsibleTrigger, type CollapsibleTriggerProps, Command, CommandEmpty, type CommandEmptyProps, CommandGroup, type CommandGroupProps, CommandInput, type CommandInputProps, CommandItem, type CommandItemProps, CommandList, type CommandListProps, type CommandProps, CommandSeparator, type CommandSeparatorProps, CommandShortcut, type CommandShortcutProps, ContextMenu, ContextMenuCheckboxItem, type ContextMenuCheckboxItemProps, ContextMenuContent, type ContextMenuContentProps, ContextMenuItem, type ContextMenuItemProps, ContextMenuLabel, type ContextMenuLabelProps, type ContextMenuProps, ContextMenuRadioGroup, type ContextMenuRadioGroupProps, ContextMenuRadioItem, type ContextMenuRadioItemProps, ContextMenuSeparator, type ContextMenuSeparatorProps, ContextMenuShortcut, type ContextMenuShortcutProps, ContextMenuTrigger, type ContextMenuTriggerProps, type CropResult, DatePicker, type DatePickerProps, DateTimePicker, type DateTimePickerProps, Dialog, DialogClose, type DialogCloseProps, DialogContent, type DialogContentProps, DialogDescription, type DialogDescriptionProps, DialogFooter, type DialogFooterProps, DialogHeader, type DialogHeaderProps, DialogOverlay, type DialogOverlayProps, type DialogProps, type DialogShadow, type DialogShape, type DialogSize, DialogTitle, type DialogTitleProps, DialogTrigger, type DialogTriggerProps, Drawer, DrawerBody, type DrawerBodyProps, DrawerClose, type DrawerCloseProps, DrawerContent, type DrawerContentProps, DrawerDescription, type DrawerDescriptionProps, DrawerFooter, type DrawerFooterProps, DrawerHeader, type DrawerHeaderProps, type DrawerProps, type DrawerShadow, type DrawerShape, type DrawerSide, type DrawerSize, DrawerTitle, type DrawerTitleProps, DrawerTrigger, type DrawerTriggerProps, Dropdown, DropdownCheckboxItem, type DropdownCheckboxItemProps, DropdownContent, type DropdownContentProps, DropdownItem, type DropdownItemProps, DropdownLabel, type DropdownLabelProps, type DropdownProps, DropdownRadioGroup, type DropdownRadioGroupProps, DropdownRadioItem, type DropdownRadioItemProps, DropdownSeparator, type DropdownSeparatorProps, DropdownShortcut, type DropdownShortcutProps, DropdownTrigger, type DropdownTriggerProps, Empty, type EmptyProps, type EmptySize, HoverCard, HoverCardContent, type HoverCardContentProps, type HoverCardProps, HoverCardTrigger, type HoverCardTriggerProps, ImageCropper, type ImageCropperProps, Input, InputGroup, InputGroupAddon, type InputGroupAddonAlign, type InputGroupAddonProps, InputGroupButton, type InputGroupButtonProps, type InputGroupButtonSize, type InputGroupButtonVariant, InputGroupInput, type InputGroupProps, InputGroupText, type InputGroupTextProps, InputGroupTextarea, InputOTP, InputOTPGroup, type InputOTPGroupProps, type InputOTPProps, InputOTPSeparator, type InputOTPSeparatorProps, type InputOTPSize, InputOTPSlot, type InputOTPSlotProps, type InputProps, type InputShape, type InputSize, type InputVariant, Kbd, KbdGroup, type KbdGroupProps, type KbdProps, type KbdShape, type KbdSize, type KbdVariant, Label, type LabelProps, type LabelSize, Link, type LinkProps, type LinkSize, type LinkUnderline, Menubar, MenubarCheckboxItem, type MenubarCheckboxItemProps, MenubarContent, type MenubarContentProps, MenubarItem, type MenubarItemProps, MenubarLabel, type MenubarLabelProps, MenubarMenu, type MenubarMenuProps, type MenubarProps, MenubarRadioGroup, type MenubarRadioGroupProps, MenubarRadioItem, type MenubarRadioItemProps, MenubarSeparator, type MenubarSeparatorProps, MenubarShortcut, type MenubarShortcutProps, MenubarTrigger, type MenubarTriggerProps, MultiSelect, type MultiSelectOption, type MultiSelectProps, type MultiSelectShape, type MultiSelectSize, type MultiSelectVariant, NativeSelect, type NativeSelectProps, type NativeSelectShape, type NativeSelectSize, type NativeSelectVariant, NavigationMenu, NavigationMenuContent, type NavigationMenuContentProps, NavigationMenuItem, type NavigationMenuItemProps, NavigationMenuLink, type NavigationMenuLinkProps, NavigationMenuList, type NavigationMenuListProps, type NavigationMenuProps, NavigationMenuTrigger, type NavigationMenuTriggerProps, Notification, NotificationActions, type NotificationActionsProps, NotificationContainer, type NotificationContainerProps, NotificationDescription, type NotificationDescriptionProps, NotificationIcon, type NotificationIconProps, type NotificationItem, type NotificationPosition, type NotificationProps, type NotificationShadow, type NotificationShape, type NotificationSize, NotificationTitle, type NotificationTitleProps, type NotificationVariant, Pagination, PaginationContent, type PaginationContentProps, PaginationEllipsis, type PaginationEllipsisProps, PaginationFirst, type PaginationFirstProps, PaginationItem, type PaginationItemProps, PaginationLast, type PaginationLastProps, PaginationLink, type PaginationLinkProps, PaginationNext, type PaginationNextProps, PaginationPrevious, type PaginationPreviousProps, type PaginationProps, type PaginationRangeItem, type PaginationShape, type PaginationSize, type PaginationVariant, Popover, PopoverClose, type PopoverCloseProps, PopoverContent, type PopoverContentProps, type PopoverProps, PopoverTrigger, type PopoverTriggerProps, Progress, type ProgressProps, type ProgressShape, type ProgressSize, Radio, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioGroupOrientation, type RadioGroupProps, type RadioProps, type RadioSize, type RenderNotificationProps, Resizable, type ResizableDirection, ResizableHandle, type ResizableHandleProps, ResizablePanel, type ResizablePanelProps, type ResizableProps, ScrollArea, type ScrollAreaOrientation, type ScrollAreaProps, type ScrollAreaScrollbarVisibility, type ScrollAreaSize, Select, SelectContent, type SelectContentProps, SelectGroup, type SelectGroupProps, SelectItem, type SelectItemProps, SelectLabel, type SelectLabelProps, type SelectProps, SelectSeparator, type SelectSeparatorProps, type SelectShape, type SelectSize, SelectTrigger, type SelectTriggerProps, SelectValue, type SelectValueProps, type SelectVariant, Separator, type SeparatorOrientation, type SeparatorProps, type SeparatorVariant, Sidebar, SidebarContent, type SidebarContentProps, SidebarFooter, type SidebarFooterProps, SidebarGroup, type SidebarGroupProps, SidebarHeader, type SidebarHeaderProps, SidebarInset, type SidebarInsetProps, SidebarMenu, SidebarMenuButton, type SidebarMenuButtonProps, SidebarMenuItem, type SidebarMenuItemProps, type SidebarMenuProps, type SidebarProps, SidebarProvider, type SidebarProviderProps, type SidebarSide, SidebarTrigger, type SidebarTriggerProps, type SidebarVariant, Skeleton, type SkeletonAnimation, type SkeletonProps, type SkeletonVariant, SpeedDial, SpeedDialAction, type SpeedDialActionProps, SpeedDialActions, type SpeedDialActionsProps, type SpeedDialDirection, type SpeedDialProps, type SpeedDialSize, SpeedDialTrigger, type SpeedDialTriggerProps, Spinner, type SpinnerProps, type SpinnerSize, Step, type StepProps, type StepStatus, Stepper, type StepperOrientation, type StepperProps, type StepperSize, type StepperVariant, Switch, type SwitchProps, type SwitchSize, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, type TableLayout, type TableProps, TableRow, type TableSize, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsOrientation, type TabsProps, type TabsSize, TabsTrigger, type TabsTriggerProps, type TabsVariant, Textarea, type TextareaProps, type TextareaResize, type TextareaShape, type TextareaSize, type TextareaVariant, Tooltip, TooltipContent, type TooltipContentProps, type TooltipProps, TooltipTrigger, type TooltipTriggerProps, TreeItem, type TreeItemProps, TreeView, type TreeViewProps, type TreeViewSize, Typography, type TypographyAlign, type TypographyColor, type TypographyProps, type TypographyVariant, type TypographyWeight, type UsePaginationRangeOptions, buttonVariants, ensureProgressStyles, ensureSkeletonStyles, renderNotification, useNotification, usePaginationRange };
1534
+ export { Accordion, AccordionContent, type AccordionContentProps, type AccordionIconPosition, type AccordionIndicator, AccordionItem, type AccordionItemProps, type AccordionProps, type AccordionShape, type AccordionSize, AccordionTrigger, type AccordionTriggerProps, type AccordionType, type AccordionVariant, Alert, AlertDescription, type AlertDescriptionProps, AlertDialog, AlertDialogAction, type AlertDialogActionProps, AlertDialogCancel, type AlertDialogCancelProps, AlertDialogContent, type AlertDialogContentProps, AlertDialogDescription, type AlertDialogDescriptionProps, AlertDialogFooter, type AlertDialogFooterProps, AlertDialogHeader, type AlertDialogHeaderProps, type AlertDialogProps, type AlertDialogShadow, type AlertDialogShape, type AlertDialogSize, AlertDialogTitle, type AlertDialogTitleProps, AlertDialogTrigger, type AlertDialogTriggerProps, AlertIcon, type AlertIconProps, type AlertProps, type AlertShape, type AlertSize, AlertTitle, type AlertTitleProps, type AlertVariant, AspectRatio, type AspectRatioPreset, type AspectRatioProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarShape, type AvatarSize, Badge, type BadgeProps, type BadgeShape, type BadgeSize, type BadgeVariant, Breadcrumb, BreadcrumbEllipsis, type BreadcrumbEllipsisProps, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbList, type BreadcrumbListProps, BreadcrumbPage, type BreadcrumbPageProps, type BreadcrumbProps, BreadcrumbSeparator, type BreadcrumbSeparatorProps, type BreadcrumbSize, Button, ButtonGroup, type ButtonGroupOrientation, type ButtonGroupProps, ButtonGroupSeparator, type ButtonGroupSeparatorProps, ButtonGroupText, type ButtonGroupTextProps, type ButtonGroupTextSize, type ButtonProps, type ButtonShape, type ButtonSize, type ButtonVariant, type ButtonVariantOptions, Calendar, type CalendarCaptionLayout, type CalendarMode, type CalendarProps, type CalendarRange, type CalendarSize, type CalendarWeekdayFormat, Card, CardAction, type CardActionProps, CardContent, type CardContentProps, CardDescription, type CardDescriptionProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, type CardShadow, type CardShape, CardTitle, type CardTitleProps, type CardVariant, Checkbox, CheckboxGroup, CheckboxGroupItem, type CheckboxGroupItemProps, type CheckboxGroupOrientation, type CheckboxGroupProps, type CheckboxProps, type CheckboxSize, Collapsible, CollapsibleContent, type CollapsibleContentProps, type CollapsibleProps, CollapsibleTrigger, type CollapsibleTriggerProps, Command, CommandDialog, type CommandDialogProps, CommandEmpty, type CommandEmptyProps, CommandGroup, type CommandGroupProps, CommandInput, type CommandInputProps, CommandItem, type CommandItemProps, CommandList, type CommandListProps, type CommandProps, CommandSeparator, type CommandSeparatorProps, CommandShortcut, type CommandShortcutProps, ContextMenu, ContextMenuCheckboxItem, type ContextMenuCheckboxItemProps, ContextMenuContent, type ContextMenuContentProps, ContextMenuGroup, type ContextMenuGroupProps, ContextMenuItem, type ContextMenuItemProps, type ContextMenuItemVariant, ContextMenuLabel, type ContextMenuLabelProps, type ContextMenuProps, ContextMenuRadioGroup, type ContextMenuRadioGroupProps, ContextMenuRadioItem, type ContextMenuRadioItemProps, ContextMenuSeparator, type ContextMenuSeparatorProps, ContextMenuShortcut, type ContextMenuShortcutProps, ContextMenuSub, ContextMenuSubContent, type ContextMenuSubContentProps, type ContextMenuSubProps, type ContextMenuSubSide, ContextMenuSubTrigger, type ContextMenuSubTriggerProps, ContextMenuTrigger, type ContextMenuTriggerProps, type CropResult, DatePicker, type DatePickerProps, DateTimePicker, type DateTimePickerProps, Dialog, DialogClose, type DialogCloseProps, DialogContent, type DialogContentProps, DialogDescription, type DialogDescriptionProps, DialogFooter, type DialogFooterProps, DialogHeader, type DialogHeaderProps, DialogOverlay, type DialogOverlayProps, type DialogProps, type DialogShadow, type DialogShape, type DialogSize, DialogTitle, type DialogTitleProps, DialogTrigger, type DialogTriggerProps, Drawer, DrawerBody, type DrawerBodyProps, DrawerClose, type DrawerCloseProps, DrawerContent, type DrawerContentProps, DrawerDescription, type DrawerDescriptionProps, DrawerFooter, type DrawerFooterProps, DrawerHeader, type DrawerHeaderProps, type DrawerProps, type DrawerShadow, type DrawerShape, type DrawerSide, type DrawerSize, DrawerTitle, type DrawerTitleProps, DrawerTrigger, type DrawerTriggerProps, Dropdown, DropdownCheckboxItem, type DropdownCheckboxItemProps, DropdownContent, type DropdownContentProps, DropdownItem, type DropdownItemProps, DropdownLabel, type DropdownLabelProps, type DropdownProps, DropdownRadioGroup, type DropdownRadioGroupProps, DropdownRadioItem, type DropdownRadioItemProps, DropdownSeparator, type DropdownSeparatorProps, DropdownShortcut, type DropdownShortcutProps, DropdownTrigger, type DropdownTriggerProps, Empty, EmptyContent, type EmptyContentProps, EmptyDescription, type EmptyDescriptionProps, EmptyHeader, type EmptyHeaderProps, EmptyMedia, type EmptyMediaProps, type EmptyMediaVariant, type EmptyProps, EmptyTitle, type EmptyTitleProps, HoverCard, HoverCardContent, type HoverCardContentProps, type HoverCardProps, HoverCardTrigger, type HoverCardTriggerProps, ImageCropper, type ImageCropperProps, Input, InputGroup, InputGroupAddon, type InputGroupAddonAlign, type InputGroupAddonProps, InputGroupButton, type InputGroupButtonProps, type InputGroupButtonSize, type InputGroupButtonVariant, InputGroupInput, type InputGroupProps, InputGroupText, type InputGroupTextProps, InputGroupTextarea, InputOTP, InputOTPGroup, type InputOTPGroupProps, type InputOTPProps, InputOTPSeparator, type InputOTPSeparatorProps, type InputOTPSize, InputOTPSlot, type InputOTPSlotProps, type InputProps, type InputShape, type InputSize, type InputVariant, Kbd, KbdGroup, type KbdGroupProps, type KbdProps, type KbdShape, type KbdSize, type KbdVariant, Label, type LabelProps, type LabelSize, Link, type LinkProps, type LinkSize, type LinkUnderline, Menubar, MenubarCheckboxItem, type MenubarCheckboxItemProps, MenubarContent, type MenubarContentProps, MenubarItem, type MenubarItemProps, MenubarLabel, type MenubarLabelProps, MenubarMenu, type MenubarMenuProps, type MenubarProps, MenubarRadioGroup, type MenubarRadioGroupProps, MenubarRadioItem, type MenubarRadioItemProps, MenubarSeparator, type MenubarSeparatorProps, MenubarShortcut, type MenubarShortcutProps, MenubarTrigger, type MenubarTriggerProps, MultiSelect, type MultiSelectOption, type MultiSelectProps, type MultiSelectShape, type MultiSelectSize, type MultiSelectVariant, NativeSelect, type NativeSelectProps, type NativeSelectShape, type NativeSelectSize, type NativeSelectVariant, NavigationMenu, NavigationMenuContent, type NavigationMenuContentProps, NavigationMenuItem, type NavigationMenuItemProps, NavigationMenuLink, type NavigationMenuLinkProps, NavigationMenuList, type NavigationMenuListProps, type NavigationMenuProps, NavigationMenuTrigger, type NavigationMenuTriggerProps, Notification, NotificationActions, type NotificationActionsProps, NotificationContainer, type NotificationContainerProps, NotificationDescription, type NotificationDescriptionProps, NotificationIcon, type NotificationIconProps, type NotificationItem, type NotificationPosition, type NotificationProps, type NotificationShadow, type NotificationShape, type NotificationSize, NotificationTitle, type NotificationTitleProps, type NotificationVariant, Pagination, PaginationContent, type PaginationContentProps, PaginationEllipsis, type PaginationEllipsisProps, PaginationFirst, type PaginationFirstProps, PaginationItem, type PaginationItemProps, PaginationLast, type PaginationLastProps, PaginationLink, type PaginationLinkProps, PaginationNext, type PaginationNextProps, PaginationPrevious, type PaginationPreviousProps, type PaginationProps, type PaginationRangeItem, type PaginationShape, type PaginationSize, type PaginationVariant, Popover, PopoverClose, type PopoverCloseProps, PopoverContent, type PopoverContentProps, type PopoverProps, PopoverTrigger, type PopoverTriggerProps, Progress, type ProgressProps, type ProgressShape, type ProgressSize, Radio, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioGroupOrientation, type RadioGroupProps, type RadioProps, type RadioSize, type RenderNotificationProps, Resizable, type ResizableDirection, ResizableHandle, type ResizableHandleProps, ResizablePanel, type ResizablePanelProps, type ResizableProps, ScrollArea, type ScrollAreaOrientation, type ScrollAreaProps, type ScrollAreaScrollbarVisibility, type ScrollAreaSize, Select, SelectContent, type SelectContentProps, SelectGroup, type SelectGroupProps, SelectItem, type SelectItemProps, SelectLabel, type SelectLabelProps, type SelectProps, SelectSeparator, type SelectSeparatorProps, type SelectShape, type SelectSize, SelectTrigger, type SelectTriggerProps, SelectValue, type SelectValueProps, type SelectVariant, Separator, type SeparatorOrientation, type SeparatorProps, type SeparatorVariant, Sidebar, type SidebarCollapsible, SidebarContent, type SidebarContentProps, SidebarFooter, type SidebarFooterProps, SidebarGroup, SidebarGroupAction, type SidebarGroupActionProps, SidebarGroupContent, type SidebarGroupContentProps, SidebarGroupLabel, type SidebarGroupLabelProps, type SidebarGroupProps, SidebarHeader, type SidebarHeaderProps, SidebarInput, type SidebarInputProps, SidebarInset, type SidebarInsetProps, SidebarMenu, SidebarMenuAction, type SidebarMenuActionProps, SidebarMenuBadge, type SidebarMenuBadgeProps, SidebarMenuButton, type SidebarMenuButtonProps, type SidebarMenuButtonSize, SidebarMenuItem, type SidebarMenuItemProps, type SidebarMenuProps, SidebarMenuSkeleton, type SidebarMenuSkeletonProps, SidebarMenuSub, SidebarMenuSubButton, type SidebarMenuSubButtonProps, SidebarMenuSubItem, type SidebarMenuSubItemProps, type SidebarMenuSubProps, type SidebarProps, SidebarProvider, type SidebarProviderProps, SidebarRail, type SidebarRailProps, SidebarSeparator, type SidebarSeparatorProps, type SidebarSide, type SidebarState, SidebarTrigger, type SidebarTriggerProps, type SidebarVariant, Skeleton, type SkeletonAnimation, type SkeletonProps, type SkeletonVariant, SpeedDial, SpeedDialAction, type SpeedDialActionProps, SpeedDialActions, type SpeedDialActionsProps, type SpeedDialDirection, type SpeedDialPosition, type SpeedDialProps, type SpeedDialShadow, type SpeedDialShape, type SpeedDialSize, SpeedDialTrigger, type SpeedDialTriggerProps, Spinner, type SpinnerProps, type SpinnerSize, Step, type StepProps, type StepStatus, Stepper, type StepperOrientation, type StepperProps, type StepperSize, type StepperVariant, Switch, type SwitchProps, type SwitchSize, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, type TableLayout, type TableProps, TableRow, type TableSize, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsOrientation, type TabsProps, type TabsSize, TabsTrigger, type TabsTriggerProps, type TabsVariant, Textarea, type TextareaProps, type TextareaResize, type TextareaShape, type TextareaSize, type TextareaVariant, Tooltip, TooltipContent, type TooltipContentProps, type TooltipProps, type TooltipShadow, type TooltipShape, type TooltipSize, TooltipTrigger, type TooltipTriggerProps, type TooltipVariant, TreeItem, type TreeItemProps, TreeView, type TreeViewProps, type TreeViewSize, Typography, type TypographyAlign, type TypographyColor, type TypographyProps, type TypographyVariant, type TypographyWeight, type UsePaginationRangeOptions, buttonVariants, ensureProgressStyles, ensureSkeletonStyles, renderNotification, useNotification, usePaginationRange, useSidebar };