@reeverdev/ui 0.2.0 → 0.2.1

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.ts CHANGED
@@ -44,15 +44,23 @@ export { useTheme } from 'next-themes';
44
44
  import { Transition } from 'framer-motion';
45
45
  import { ClassValue } from 'clsx';
46
46
 
47
- declare const Alert: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & VariantProps<(props?: ({
48
- variant?: "solid" | "outline" | "ghost" | "soft" | "surface" | "destructive" | null | undefined;
49
- } & class_variance_authority_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLDivElement>>;
47
+ declare const alertVariants: (props?: ({
48
+ variant?: "solid" | "bordered" | "flat" | null | undefined;
49
+ type?: "default" | "success" | "warning" | "info" | "error" | null | undefined;
50
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
51
+ type AlertType = "default" | "success" | "warning" | "info" | "error";
52
+ type AlertVariant = "solid" | "bordered" | "flat";
53
+ interface AlertProps extends React$1.HTMLAttributes<HTMLDivElement>, Omit<VariantProps<typeof alertVariants>, "type" | "variant"> {
54
+ type?: AlertType;
55
+ variant?: AlertVariant;
56
+ }
57
+ declare const Alert: React$1.ForwardRefExoticComponent<AlertProps & React$1.RefAttributes<HTMLDivElement>>;
50
58
  declare const AlertTitle: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLHeadingElement> & React$1.RefAttributes<HTMLParagraphElement>>;
51
59
  declare const AlertDescription: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
52
60
 
53
61
  declare const badgeIndicatorVariants: (props?: ({
54
62
  variant?: "solid" | "bordered" | null | undefined;
55
- color?: "default" | "success" | "warning" | "danger" | null | undefined;
63
+ color?: "default" | "success" | "warning" | "info" | "danger" | null | undefined;
56
64
  size?: "sm" | "md" | "lg" | null | undefined;
57
65
  placement?: "top-right" | "top-left" | "bottom-right" | "bottom-left" | null | undefined;
58
66
  } & class_variance_authority_types.ClassProp) | undefined) => string;
@@ -63,7 +71,7 @@ interface BadgeProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "color
63
71
  }
64
72
  declare const Badge: React$1.ForwardRefExoticComponent<BadgeProps & React$1.RefAttributes<HTMLDivElement>>;
65
73
  declare const textBadgeVariants: (props?: ({
66
- color?: "default" | "success" | "warning" | "danger" | null | undefined;
74
+ color?: "default" | "success" | "warning" | "info" | "danger" | null | undefined;
67
75
  size?: "sm" | "md" | "lg" | null | undefined;
68
76
  } & class_variance_authority_types.ClassProp) | undefined) => string;
69
77
  interface TextBadgeProps extends Omit<React$1.HTMLAttributes<HTMLSpanElement>, "color">, VariantProps<typeof textBadgeVariants> {
@@ -71,8 +79,8 @@ interface TextBadgeProps extends Omit<React$1.HTMLAttributes<HTMLSpanElement>, "
71
79
  declare const TextBadge: React$1.ForwardRefExoticComponent<TextBadgeProps & React$1.RefAttributes<HTMLSpanElement>>;
72
80
 
73
81
  declare const buttonVariants: (props?: ({
74
- variant?: "solid" | "ghost" | "flat" | "bordered" | "light" | null | undefined;
75
- color?: "default" | "success" | "warning" | "danger" | null | undefined;
82
+ variant?: "solid" | "bordered" | "flat" | "light" | "ghost" | null | undefined;
83
+ color?: "default" | "success" | "warning" | "info" | "danger" | null | undefined;
76
84
  size?: "sm" | "md" | "lg" | "icon" | null | undefined;
77
85
  radius?: "none" | "sm" | "md" | "lg" | "full" | null | undefined;
78
86
  } & class_variance_authority_types.ClassProp) | undefined) => string;
@@ -272,20 +280,20 @@ declare const RadioGroup: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimi
272
280
  declare const RadioGroupItem: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupItemProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
273
281
 
274
282
  declare const toggleVariants: (props?: ({
275
- variant?: "solid" | "outline" | "ghost" | "soft" | "surface" | null | undefined;
283
+ variant?: "solid" | "ghost" | "outline" | "soft" | "surface" | null | undefined;
276
284
  size?: "sm" | "md" | "lg" | null | undefined;
277
285
  } & class_variance_authority_types.ClassProp) | undefined) => string;
278
286
  declare const Toggle: React$1.ForwardRefExoticComponent<Omit<TogglePrimitive.ToggleProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & VariantProps<(props?: ({
279
- variant?: "solid" | "outline" | "ghost" | "soft" | "surface" | null | undefined;
287
+ variant?: "solid" | "ghost" | "outline" | "soft" | "surface" | null | undefined;
280
288
  size?: "sm" | "md" | "lg" | null | undefined;
281
289
  } & class_variance_authority_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLButtonElement>>;
282
290
 
283
291
  declare const ToggleGroup: React$1.ForwardRefExoticComponent<((Omit<ToggleGroupPrimitive.ToggleGroupSingleProps & React$1.RefAttributes<HTMLDivElement>, "ref"> | Omit<ToggleGroupPrimitive.ToggleGroupMultipleProps & React$1.RefAttributes<HTMLDivElement>, "ref">) & VariantProps<(props?: ({
284
- variant?: "solid" | "outline" | "ghost" | "soft" | "surface" | null | undefined;
292
+ variant?: "solid" | "ghost" | "outline" | "soft" | "surface" | null | undefined;
285
293
  size?: "sm" | "md" | "lg" | null | undefined;
286
294
  } & class_variance_authority_types.ClassProp) | undefined) => string>) & React$1.RefAttributes<HTMLDivElement>>;
287
295
  declare const ToggleGroupItem: React$1.ForwardRefExoticComponent<Omit<ToggleGroupPrimitive.ToggleGroupItemProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & VariantProps<(props?: ({
288
- variant?: "solid" | "outline" | "ghost" | "soft" | "surface" | null | undefined;
296
+ variant?: "solid" | "ghost" | "outline" | "soft" | "surface" | null | undefined;
289
297
  size?: "sm" | "md" | "lg" | null | undefined;
290
298
  } & class_variance_authority_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLButtonElement>>;
291
299
 
@@ -449,11 +457,11 @@ declare const PaginationEllipsis: {
449
457
 
450
458
  declare const Command: React$1.ForwardRefExoticComponent<Omit<{
451
459
  children?: React$1.ReactNode;
452
- } & Pick<Pick<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof React$1.HTMLAttributes<HTMLDivElement> | "key"> & {
460
+ } & Pick<Pick<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React$1.HTMLAttributes<HTMLDivElement>> & {
453
461
  ref?: React$1.Ref<HTMLDivElement>;
454
462
  } & {
455
463
  asChild?: boolean;
456
- }, keyof React$1.HTMLAttributes<HTMLDivElement> | "asChild" | "key"> & {
464
+ }, "key" | keyof React$1.HTMLAttributes<HTMLDivElement> | "asChild"> & {
457
465
  label?: string;
458
466
  shouldFilter?: boolean;
459
467
  filter?: (value: string, search: string, keywords?: string[]) => number;
@@ -469,51 +477,51 @@ declare const CommandInput: React$1.ForwardRefExoticComponent<Omit<Omit<Pick<Pic
469
477
  ref?: React$1.Ref<HTMLInputElement>;
470
478
  } & {
471
479
  asChild?: boolean;
472
- }, "asChild" | "key" | keyof React$1.InputHTMLAttributes<HTMLInputElement>>, "onChange" | "type" | "value"> & {
480
+ }, "key" | "asChild" | keyof React$1.InputHTMLAttributes<HTMLInputElement>>, "type" | "onChange" | "value"> & {
473
481
  value?: string;
474
482
  onValueChange?: (search: string) => void;
475
483
  } & React$1.RefAttributes<HTMLInputElement>, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
476
484
  declare const CommandList: React$1.ForwardRefExoticComponent<Omit<{
477
485
  children?: React$1.ReactNode;
478
- } & Pick<Pick<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof React$1.HTMLAttributes<HTMLDivElement> | "key"> & {
486
+ } & Pick<Pick<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React$1.HTMLAttributes<HTMLDivElement>> & {
479
487
  ref?: React$1.Ref<HTMLDivElement>;
480
488
  } & {
481
489
  asChild?: boolean;
482
- }, keyof React$1.HTMLAttributes<HTMLDivElement> | "asChild" | "key"> & {
490
+ }, "key" | keyof React$1.HTMLAttributes<HTMLDivElement> | "asChild"> & {
483
491
  label?: string;
484
492
  } & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
485
493
  declare const CommandEmpty: React$1.ForwardRefExoticComponent<Omit<{
486
494
  children?: React$1.ReactNode;
487
- } & Pick<Pick<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof React$1.HTMLAttributes<HTMLDivElement> | "key"> & {
495
+ } & Pick<Pick<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React$1.HTMLAttributes<HTMLDivElement>> & {
488
496
  ref?: React$1.Ref<HTMLDivElement>;
489
497
  } & {
490
498
  asChild?: boolean;
491
- }, keyof React$1.HTMLAttributes<HTMLDivElement> | "asChild" | "key"> & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
499
+ }, "key" | keyof React$1.HTMLAttributes<HTMLDivElement> | "asChild"> & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
492
500
  declare const CommandGroup: React$1.ForwardRefExoticComponent<Omit<{
493
501
  children?: React$1.ReactNode;
494
- } & Omit<Pick<Pick<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof React$1.HTMLAttributes<HTMLDivElement> | "key"> & {
502
+ } & Omit<Pick<Pick<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React$1.HTMLAttributes<HTMLDivElement>> & {
495
503
  ref?: React$1.Ref<HTMLDivElement>;
496
504
  } & {
497
505
  asChild?: boolean;
498
- }, keyof React$1.HTMLAttributes<HTMLDivElement> | "asChild" | "key">, "heading" | "value"> & {
506
+ }, "key" | keyof React$1.HTMLAttributes<HTMLDivElement> | "asChild">, "heading" | "value"> & {
499
507
  heading?: React$1.ReactNode;
500
508
  value?: string;
501
509
  forceMount?: boolean;
502
510
  } & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
503
- declare const CommandSeparator: React$1.ForwardRefExoticComponent<Omit<Pick<Pick<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof React$1.HTMLAttributes<HTMLDivElement> | "key"> & {
511
+ declare const CommandSeparator: React$1.ForwardRefExoticComponent<Omit<Pick<Pick<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React$1.HTMLAttributes<HTMLDivElement>> & {
504
512
  ref?: React$1.Ref<HTMLDivElement>;
505
513
  } & {
506
514
  asChild?: boolean;
507
- }, keyof React$1.HTMLAttributes<HTMLDivElement> | "asChild" | "key"> & {
515
+ }, "key" | keyof React$1.HTMLAttributes<HTMLDivElement> | "asChild"> & {
508
516
  alwaysRender?: boolean;
509
517
  } & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
510
518
  declare const CommandItem: React$1.ForwardRefExoticComponent<Omit<{
511
519
  children?: React$1.ReactNode;
512
- } & Omit<Pick<Pick<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof React$1.HTMLAttributes<HTMLDivElement> | "key"> & {
520
+ } & Omit<Pick<Pick<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React$1.HTMLAttributes<HTMLDivElement>> & {
513
521
  ref?: React$1.Ref<HTMLDivElement>;
514
522
  } & {
515
523
  asChild?: boolean;
516
- }, keyof React$1.HTMLAttributes<HTMLDivElement> | "asChild" | "key">, "onSelect" | "disabled" | "value"> & {
524
+ }, "key" | keyof React$1.HTMLAttributes<HTMLDivElement> | "asChild">, "onSelect" | "disabled" | "value"> & {
517
525
  disabled?: boolean;
518
526
  onSelect?: (value: string) => void;
519
527
  value?: string;
@@ -873,7 +881,7 @@ declare const SidebarGroupContent: React$1.ForwardRefExoticComponent<Omit<React$
873
881
  declare const SidebarMenu: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLUListElement>, HTMLUListElement>, "ref"> & React$1.RefAttributes<HTMLUListElement>>;
874
882
  declare const SidebarMenuItem: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & React$1.RefAttributes<HTMLLIElement>>;
875
883
  declare const sidebarMenuButtonVariants: (props?: ({
876
- variant?: "solid" | "outline" | "ghost" | "soft" | "surface" | null | undefined;
884
+ variant?: "solid" | "ghost" | "outline" | "soft" | "surface" | null | undefined;
877
885
  size?: "sm" | "md" | "lg" | null | undefined;
878
886
  } & class_variance_authority_types.ClassProp) | undefined) => string;
879
887
  declare const SidebarMenuButton: React$1.ForwardRefExoticComponent<Omit<React$1.ClassAttributes<HTMLButtonElement> & React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
@@ -881,7 +889,7 @@ declare const SidebarMenuButton: React$1.ForwardRefExoticComponent<Omit<React$1.
881
889
  isActive?: boolean;
882
890
  tooltip?: string | React$1.ComponentProps<typeof TooltipContent>;
883
891
  } & VariantProps<(props?: ({
884
- variant?: "solid" | "outline" | "ghost" | "soft" | "surface" | null | undefined;
892
+ variant?: "solid" | "ghost" | "outline" | "soft" | "surface" | null | undefined;
885
893
  size?: "sm" | "md" | "lg" | null | undefined;
886
894
  } & class_variance_authority_types.ClassProp) | undefined) => string>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
887
895
  declare const SidebarMenuAction: React$1.ForwardRefExoticComponent<Omit<React$1.ClassAttributes<HTMLButtonElement> & React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
@@ -901,8 +909,8 @@ declare const SidebarMenuSubButton: React$1.ForwardRefExoticComponent<Omit<React
901
909
  }, "ref"> & React$1.RefAttributes<HTMLAnchorElement>>;
902
910
 
903
911
  declare const chipVariants: (props?: ({
904
- variant?: "solid" | "outline" | "ghost" | "soft" | "surface" | null | undefined;
905
- color?: "success" | "warning" | "danger" | "primary" | "secondary" | "info" | null | undefined;
912
+ variant?: "solid" | "ghost" | "outline" | "soft" | "surface" | null | undefined;
913
+ color?: "success" | "warning" | "info" | "danger" | "primary" | "secondary" | null | undefined;
906
914
  size?: "sm" | "md" | "lg" | null | undefined;
907
915
  radius?: "none" | "sm" | "md" | "lg" | "full" | null | undefined;
908
916
  clickable?: boolean | null | undefined;
@@ -986,7 +994,7 @@ declare const InputOTPSlot: React$1.ForwardRefExoticComponent<InputOTPSlotProps
986
994
  declare const InputOTPSeparator: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
987
995
 
988
996
  declare const tagVariants: (props?: ({
989
- variant?: "solid" | "outline" | "ghost" | "soft" | "surface" | null | undefined;
997
+ variant?: "solid" | "ghost" | "outline" | "soft" | "surface" | null | undefined;
990
998
  size?: "sm" | "md" | "lg" | null | undefined;
991
999
  } & class_variance_authority_types.ClassProp) | undefined) => string;
992
1000
  interface Tag {
@@ -1035,7 +1043,7 @@ interface EmptyStateProps extends React$1.HTMLAttributes<HTMLDivElement>, Varian
1035
1043
  declare const EmptyState: React$1.ForwardRefExoticComponent<EmptyStateProps & React$1.RefAttributes<HTMLDivElement>>;
1036
1044
 
1037
1045
  declare const statCardVariants: (props?: ({
1038
- variant?: "solid" | "outline" | "ghost" | "soft" | "surface" | null | undefined;
1046
+ variant?: "solid" | "ghost" | "outline" | "soft" | "surface" | null | undefined;
1039
1047
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1040
1048
  interface StatCardProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof statCardVariants> {
1041
1049
  /** Label/title for the stat */
@@ -1054,7 +1062,7 @@ interface StatCardProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantP
1054
1062
  declare const StatCard: React$1.ForwardRefExoticComponent<StatCardProps & React$1.RefAttributes<HTMLDivElement>>;
1055
1063
 
1056
1064
  declare const listVariants: (props?: ({
1057
- variant?: "default" | "bordered" | "striped" | null | undefined;
1065
+ variant?: "bordered" | "default" | "striped" | null | undefined;
1058
1066
  size?: "sm" | "md" | "lg" | null | undefined;
1059
1067
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1060
1068
  interface ListProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof listVariants> {
@@ -1085,7 +1093,7 @@ interface TimelineProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantP
1085
1093
  }
1086
1094
  declare const Timeline: React$1.ForwardRefExoticComponent<TimelineProps & React$1.RefAttributes<HTMLDivElement>>;
1087
1095
  declare const timelineItemVariants: (props?: ({
1088
- variant?: "default" | "success" | "warning" | "error" | "info" | null | undefined;
1096
+ variant?: "default" | "success" | "warning" | "info" | "error" | null | undefined;
1089
1097
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1090
1098
  interface TimelineItemProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof timelineItemVariants> {
1091
1099
  }
@@ -1125,7 +1133,7 @@ interface SegmentedControlItemProps extends React$1.ComponentPropsWithoutRef<typ
1125
1133
  declare const SegmentedControlItem: React$1.ForwardRefExoticComponent<SegmentedControlItemProps & React$1.RefAttributes<HTMLButtonElement>>;
1126
1134
 
1127
1135
  declare const fileUploadVariants: (props?: ({
1128
- variant?: "default" | "active" | "error" | null | undefined;
1136
+ variant?: "default" | "error" | "active" | null | undefined;
1129
1137
  size?: "sm" | "md" | "lg" | null | undefined;
1130
1138
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1131
1139
  interface UploadedFile {
@@ -1389,7 +1397,7 @@ declare const formatPhoneNumber: (value: string, format: string) => string;
1389
1397
  declare const PhoneInput: React$1.ForwardRefExoticComponent<PhoneInputProps & React$1.RefAttributes<HTMLInputElement>>;
1390
1398
 
1391
1399
  declare const navbarVariants: (props?: ({
1392
- variant?: "solid" | "outline" | "ghost" | "soft" | "surface" | null | undefined;
1400
+ variant?: "solid" | "ghost" | "outline" | "soft" | "surface" | null | undefined;
1393
1401
  size?: "sm" | "md" | "lg" | null | undefined;
1394
1402
  sticky?: boolean | null | undefined;
1395
1403
  } & class_variance_authority_types.ClassProp) | undefined) => string;
@@ -1411,7 +1419,7 @@ declare const NavbarLink: React$1.ForwardRefExoticComponent<React$1.AnchorHTMLAt
1411
1419
  } & React$1.RefAttributes<HTMLAnchorElement>>;
1412
1420
 
1413
1421
  declare const linkVariants: (props?: ({
1414
- variant?: "solid" | "outline" | "ghost" | "soft" | "surface" | null | undefined;
1422
+ variant?: "solid" | "ghost" | "outline" | "soft" | "surface" | null | undefined;
1415
1423
  size?: "sm" | "md" | "lg" | null | undefined;
1416
1424
  underline?: "none" | "always" | "hover" | null | undefined;
1417
1425
  } & class_variance_authority_types.ClassProp) | undefined) => string;
@@ -1423,7 +1431,7 @@ interface LinkProps extends React$1.AnchorHTMLAttributes<HTMLAnchorElement>, Var
1423
1431
  declare const Link: React$1.ForwardRefExoticComponent<LinkProps & React$1.RefAttributes<HTMLAnchorElement>>;
1424
1432
 
1425
1433
  declare const backTopVariants: (props?: ({
1426
- variant?: "solid" | "outline" | "ghost" | "soft" | "surface" | null | undefined;
1434
+ variant?: "solid" | "ghost" | "outline" | "soft" | "surface" | null | undefined;
1427
1435
  size?: "sm" | "md" | "lg" | null | undefined;
1428
1436
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1429
1437
  interface BackTopProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof backTopVariants> {
@@ -1763,7 +1771,7 @@ interface UserProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps
1763
1771
  declare const User: React$1.ForwardRefExoticComponent<UserProps & React$1.RefAttributes<HTMLDivElement>>;
1764
1772
 
1765
1773
  declare const codeVariants: (props?: ({
1766
- variant?: "solid" | "outline" | "ghost" | "soft" | "surface" | null | undefined;
1774
+ variant?: "solid" | "ghost" | "outline" | "soft" | "surface" | null | undefined;
1767
1775
  size?: "sm" | "md" | "lg" | null | undefined;
1768
1776
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1769
1777
  interface CodeProps extends React$1.HTMLAttributes<HTMLElement>, VariantProps<typeof codeVariants> {
@@ -1771,7 +1779,7 @@ interface CodeProps extends React$1.HTMLAttributes<HTMLElement>, VariantProps<ty
1771
1779
  declare const Code: React$1.ForwardRefExoticComponent<CodeProps & React$1.RefAttributes<HTMLElement>>;
1772
1780
 
1773
1781
  declare const snippetVariants: (props?: ({
1774
- variant?: "solid" | "outline" | "ghost" | "soft" | "surface" | null | undefined;
1782
+ variant?: "solid" | "ghost" | "outline" | "soft" | "surface" | null | undefined;
1775
1783
  size?: "sm" | "md" | "lg" | null | undefined;
1776
1784
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1777
1785
  interface SnippetProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof snippetVariants> {
@@ -1846,11 +1854,11 @@ interface ListboxItemProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>,
1846
1854
  declare const ListboxItem: React$1.ForwardRefExoticComponent<ListboxItemProps & React$1.RefAttributes<HTMLDivElement>>;
1847
1855
 
1848
1856
  declare const sortableListVariants: (props?: ({
1849
- variant?: "default" | "bordered" | "cards" | null | undefined;
1857
+ variant?: "bordered" | "default" | "cards" | null | undefined;
1850
1858
  size?: "sm" | "md" | "lg" | null | undefined;
1851
1859
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1852
1860
  declare const sortableItemVariants: (props?: ({
1853
- variant?: "default" | "bordered" | "cards" | null | undefined;
1861
+ variant?: "bordered" | "default" | "cards" | null | undefined;
1854
1862
  size?: "sm" | "md" | "lg" | null | undefined;
1855
1863
  isDragging?: boolean | null | undefined;
1856
1864
  isDragOver?: boolean | null | undefined;
@@ -1888,7 +1896,7 @@ interface LoadingOverlayProps extends React$1.HTMLAttributes<HTMLDivElement>, Va
1888
1896
  declare const LoadingOverlay: React$1.ForwardRefExoticComponent<LoadingOverlayProps & React$1.RefAttributes<HTMLDivElement>>;
1889
1897
 
1890
1898
  declare const nprogressVariants: (props?: ({
1891
- color?: "success" | "warning" | "danger" | "primary" | "secondary" | "info" | null | undefined;
1899
+ color?: "success" | "warning" | "info" | "danger" | "primary" | "secondary" | null | undefined;
1892
1900
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1893
1901
  interface NProgressProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "color">, VariantProps<typeof nprogressVariants> {
1894
1902
  isLoading?: boolean;
@@ -1925,7 +1933,7 @@ declare class ErrorBoundaryClass extends React$1.Component<ErrorBoundaryProps, E
1925
1933
  componentDidCatch(error: Error, errorInfo: React$1.ErrorInfo): void;
1926
1934
  componentDidUpdate(prevProps: ErrorBoundaryProps): void;
1927
1935
  reset: () => void;
1928
- render(): string | number | bigint | boolean | react_jsx_runtime.JSX.Element | Iterable<React$1.ReactNode> | Promise<string | number | bigint | boolean | React$1.ReactPortal | React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>> | Iterable<React$1.ReactNode> | null | undefined> | null | undefined;
1936
+ render(): string | number | bigint | boolean | Iterable<React$1.ReactNode> | Promise<string | number | bigint | boolean | React$1.ReactPortal | React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>> | Iterable<React$1.ReactNode> | null | undefined> | react_jsx_runtime.JSX.Element | null | undefined;
1929
1937
  }
1930
1938
  interface DefaultErrorFallbackProps {
1931
1939
  error: Error | null;
@@ -2027,7 +2035,7 @@ interface TimePickerProps {
2027
2035
  declare const TimePicker: React$1.ForwardRefExoticComponent<TimePickerProps & React$1.RefAttributes<HTMLButtonElement>>;
2028
2036
 
2029
2037
  declare const virtualListVariants: (props?: ({
2030
- variant?: "default" | "bordered" | "cards" | null | undefined;
2038
+ variant?: "bordered" | "default" | "cards" | null | undefined;
2031
2039
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2032
2040
  interface VirtualListProps<T> extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "children">, VariantProps<typeof virtualListVariants> {
2033
2041
  /** Array of items to render */
@@ -2052,7 +2060,7 @@ declare const VirtualList: <T>(props: VirtualListProps<T> & {
2052
2060
  }) => React$1.ReactElement;
2053
2061
 
2054
2062
  declare const infiniteScrollVariants: (props?: ({
2055
- variant?: "default" | "bordered" | null | undefined;
2063
+ variant?: "bordered" | "default" | null | undefined;
2056
2064
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2057
2065
  declare const infiniteScrollLoaderVariants: (props?: ({
2058
2066
  size?: "sm" | "md" | "lg" | null | undefined;
@@ -2117,7 +2125,7 @@ declare const ModalTitle: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive
2117
2125
  declare const ModalDescription: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
2118
2126
 
2119
2127
  declare const confirmDialogIconVariants: (props?: ({
2120
- variant?: "default" | "success" | "warning" | "danger" | "info" | null | undefined;
2128
+ variant?: "default" | "success" | "warning" | "info" | "danger" | null | undefined;
2121
2129
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2122
2130
  interface ConfirmDialogProps extends VariantProps<typeof confirmDialogIconVariants> {
2123
2131
  open?: boolean;
@@ -2181,7 +2189,7 @@ interface ImageViewerTriggerProps {
2181
2189
  declare const ImageViewerTrigger: React$1.FC<ImageViewerTriggerProps>;
2182
2190
 
2183
2191
  declare const closeButtonVariants: (props?: ({
2184
- variant?: "solid" | "outline" | "ghost" | "default" | null | undefined;
2192
+ variant?: "solid" | "default" | "ghost" | "outline" | null | undefined;
2185
2193
  size?: "sm" | "md" | "lg" | null | undefined;
2186
2194
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2187
2195
  interface CloseButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof closeButtonVariants> {
@@ -2191,7 +2199,7 @@ interface CloseButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElemen
2191
2199
  declare const CloseButton: React$1.ForwardRefExoticComponent<CloseButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
2192
2200
 
2193
2201
  declare const actionIconVariants: (props?: ({
2194
- variant?: "solid" | "outline" | "ghost" | "soft" | "surface" | null | undefined;
2202
+ variant?: "solid" | "ghost" | "outline" | "soft" | "surface" | null | undefined;
2195
2203
  size?: "sm" | "md" | "lg" | null | undefined;
2196
2204
  color?: "default" | "success" | "warning" | "danger" | "primary" | "secondary" | null | undefined;
2197
2205
  radius?: "none" | "sm" | "md" | "lg" | "full" | null | undefined;
@@ -2249,7 +2257,7 @@ interface VisuallyHiddenProps extends React$1.ComponentPropsWithoutRef<typeof Vi
2249
2257
  declare const VisuallyHidden: React$1.ForwardRefExoticComponent<VisuallyHiddenProps & React$1.RefAttributes<HTMLSpanElement>>;
2250
2258
 
2251
2259
  declare const kbdVariants: (props?: ({
2252
- variant?: "outline" | "ghost" | "default" | null | undefined;
2260
+ variant?: "default" | "ghost" | "outline" | null | undefined;
2253
2261
  size?: "sm" | "md" | "lg" | null | undefined;
2254
2262
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2255
2263
  interface KbdProps extends React$1.HTMLAttributes<HTMLElement>, VariantProps<typeof kbdVariants> {
@@ -2267,7 +2275,7 @@ interface SpacerProps extends React$1.HTMLAttributes<HTMLDivElement> {
2267
2275
  declare const Spacer: React$1.ForwardRefExoticComponent<SpacerProps & React$1.RefAttributes<HTMLDivElement>>;
2268
2276
 
2269
2277
  declare const copyButtonVariants: (props?: ({
2270
- variant?: "solid" | "outline" | "ghost" | "default" | null | undefined;
2278
+ variant?: "solid" | "default" | "ghost" | "outline" | null | undefined;
2271
2279
  size?: "sm" | "md" | "lg" | null | undefined;
2272
2280
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2273
2281
  interface CopyButtonProps extends Omit<React$1.ButtonHTMLAttributes<HTMLButtonElement>, "children">, VariantProps<typeof copyButtonVariants> {
@@ -2287,7 +2295,7 @@ interface CopyButtonProps extends Omit<React$1.ButtonHTMLAttributes<HTMLButtonEl
2287
2295
  declare const CopyButton: React$1.ForwardRefExoticComponent<CopyButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
2288
2296
 
2289
2297
  declare const fullCalendarVariants: (props?: ({
2290
- variant?: "ghost" | "default" | "bordered" | null | undefined;
2298
+ variant?: "bordered" | "default" | "ghost" | null | undefined;
2291
2299
  size?: "sm" | "md" | "lg" | null | undefined;
2292
2300
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2293
2301
  type CalendarView = "month" | "week" | "day";
@@ -2415,13 +2423,13 @@ interface AreaChartProps extends React$1.HTMLAttributes<HTMLDivElement>, Variant
2415
2423
  declare const AreaChart: React$1.ForwardRefExoticComponent<AreaChartProps & React$1.RefAttributes<HTMLDivElement>>;
2416
2424
 
2417
2425
  declare const kanbanBoardVariants: (props?: ({
2418
- variant?: "ghost" | "default" | "bordered" | null | undefined;
2426
+ variant?: "bordered" | "default" | "ghost" | null | undefined;
2419
2427
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2420
2428
  declare const kanbanColumnVariants: (props?: ({
2421
- variant?: "ghost" | "default" | "bordered" | null | undefined;
2429
+ variant?: "bordered" | "default" | "ghost" | null | undefined;
2422
2430
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2423
2431
  declare const kanbanCardVariants: (props?: ({
2424
- variant?: "ghost" | "default" | "bordered" | null | undefined;
2432
+ variant?: "bordered" | "default" | "ghost" | null | undefined;
2425
2433
  isDragging?: boolean | null | undefined;
2426
2434
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2427
2435
  interface KanbanCard {
@@ -2455,7 +2463,7 @@ interface KanbanBoardProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>,
2455
2463
  declare const KanbanBoard: React$1.ForwardRefExoticComponent<KanbanBoardProps & React$1.RefAttributes<HTMLDivElement>>;
2456
2464
 
2457
2465
  declare const carouselVariants: (props?: ({
2458
- variant?: "default" | "bordered" | "cards" | null | undefined;
2466
+ variant?: "bordered" | "default" | "cards" | null | undefined;
2459
2467
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2460
2468
  type CarouselApi = UseEmblaCarouselType[1];
2461
2469
  type UseCarouselParameters = Parameters<typeof useEmblaCarousel>;
@@ -2559,7 +2567,7 @@ interface EmojiPickerProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>,
2559
2567
  declare const EmojiPicker: React$1.ForwardRefExoticComponent<EmojiPickerProps & React$1.RefAttributes<HTMLDivElement>>;
2560
2568
 
2561
2569
  declare const richTextEditorVariants: (props?: ({
2562
- variant?: "ghost" | "default" | "bordered" | null | undefined;
2570
+ variant?: "bordered" | "default" | "ghost" | null | undefined;
2563
2571
  size?: "sm" | "md" | "lg" | null | undefined;
2564
2572
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2565
2573
  interface RichTextEditorProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "onChange">, VariantProps<typeof richTextEditorVariants> {
@@ -2583,7 +2591,7 @@ interface RichTextEditorProps extends Omit<React$1.HTMLAttributes<HTMLDivElement
2583
2591
  declare const RichTextEditor: React$1.ForwardRefExoticComponent<RichTextEditorProps & React$1.RefAttributes<HTMLDivElement>>;
2584
2592
 
2585
2593
  declare const imageCropperVariants: (props?: ({
2586
- variant?: "ghost" | "default" | "bordered" | null | undefined;
2594
+ variant?: "bordered" | "default" | "ghost" | null | undefined;
2587
2595
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2588
2596
  interface ImageCropperProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "onChange">, VariantProps<typeof imageCropperVariants> {
2589
2597
  /** Image source URL */
@@ -2610,7 +2618,7 @@ interface ImageCropperProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>,
2610
2618
  declare const ImageCropper: React$1.ForwardRefExoticComponent<ImageCropperProps & React$1.RefAttributes<HTMLDivElement>>;
2611
2619
 
2612
2620
  declare const qrCodeVariants: (props?: ({
2613
- variant?: "default" | "bordered" | "card" | null | undefined;
2621
+ variant?: "bordered" | "default" | "card" | null | undefined;
2614
2622
  size?: "sm" | "md" | "lg" | null | undefined;
2615
2623
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2616
2624
  interface QRCodeProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "title">, VariantProps<typeof qrCodeVariants> {
@@ -2660,7 +2668,7 @@ interface ThemeProviderProps {
2660
2668
  declare const ThemeProvider: React$1.FC<ThemeProviderProps>;
2661
2669
 
2662
2670
  declare const themeToggleVariants: (props?: ({
2663
- variant?: "ghost" | "default" | "bordered" | null | undefined;
2671
+ variant?: "bordered" | "default" | "ghost" | null | undefined;
2664
2672
  size?: "sm" | "md" | "lg" | null | undefined;
2665
2673
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2666
2674
  interface ThemeToggleProps extends VariantProps<typeof themeToggleVariants> {
@@ -2852,7 +2860,7 @@ declare function useButtonGroup(): {
2852
2860
  declare const ButtonGroup: React$1.ForwardRefExoticComponent<ButtonGroupProps & React$1.RefAttributes<HTMLDivElement>>;
2853
2861
 
2854
2862
  declare const iconButtonVariants: (props?: ({
2855
- variant?: "solid" | "outline" | "ghost" | "soft" | "surface" | null | undefined;
2863
+ variant?: "solid" | "ghost" | "outline" | "soft" | "surface" | null | undefined;
2856
2864
  size?: "sm" | "md" | "lg" | "xl" | null | undefined;
2857
2865
  radius?: "none" | "sm" | "md" | "lg" | "full" | null | undefined;
2858
2866
  } & class_variance_authority_types.ClassProp) | undefined) => string;
@@ -2919,7 +2927,7 @@ interface IllustratedMessageProps extends React$1.HTMLAttributes<HTMLDivElement>
2919
2927
  declare const IllustratedMessage: React$1.ForwardRefExoticComponent<IllustratedMessageProps & React$1.RefAttributes<HTMLDivElement>>;
2920
2928
 
2921
2929
  declare const inlineAlertVariants: (props?: ({
2922
- variant?: "success" | "warning" | "error" | "info" | "neutral" | null | undefined;
2930
+ variant?: "success" | "warning" | "info" | "error" | "neutral" | null | undefined;
2923
2931
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2924
2932
  interface InlineAlertProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof inlineAlertVariants> {
2925
2933
  /** Title of the alert */
@@ -2959,7 +2967,7 @@ declare const ActionBarButton: React$1.ForwardRefExoticComponent<React$1.ButtonH
2959
2967
  } & React$1.RefAttributes<HTMLButtonElement>>;
2960
2968
 
2961
2969
  declare const actionMenuTriggerVariants: (props?: ({
2962
- variant?: "outline" | "ghost" | "subtle" | null | undefined;
2970
+ variant?: "ghost" | "outline" | "subtle" | null | undefined;
2963
2971
  size?: "sm" | "md" | "lg" | null | undefined;
2964
2972
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2965
2973
  interface ActionMenuItem {
@@ -2998,11 +3006,11 @@ interface ActionMenuProps extends VariantProps<typeof actionMenuTriggerVariants>
2998
3006
  declare const ActionMenu: React$1.ForwardRefExoticComponent<ActionMenuProps & React$1.RefAttributes<HTMLButtonElement>>;
2999
3007
 
3000
3008
  declare const listViewVariants: (props?: ({
3001
- variant?: "default" | "bordered" | "cards" | null | undefined;
3009
+ variant?: "bordered" | "default" | "cards" | null | undefined;
3002
3010
  size?: "sm" | "md" | "lg" | null | undefined;
3003
3011
  } & class_variance_authority_types.ClassProp) | undefined) => string;
3004
3012
  declare const listViewItemVariants: (props?: ({
3005
- variant?: "default" | "bordered" | "cards" | null | undefined;
3013
+ variant?: "bordered" | "default" | "cards" | null | undefined;
3006
3014
  size?: "sm" | "md" | "lg" | null | undefined;
3007
3015
  isSelected?: boolean | null | undefined;
3008
3016
  isDisabled?: boolean | null | undefined;
@@ -3062,7 +3070,7 @@ interface RangeSliderProps extends Omit<React$1.ComponentPropsWithoutRef<typeof
3062
3070
  declare const RangeSlider: React$1.ForwardRefExoticComponent<RangeSliderProps & React$1.RefAttributes<HTMLSpanElement>>;
3063
3071
 
3064
3072
  declare const contextualHelpTriggerVariants: (props?: ({
3065
- variant?: "warning" | "help" | "info" | null | undefined;
3073
+ variant?: "warning" | "info" | "help" | null | undefined;
3066
3074
  size?: "sm" | "md" | "lg" | null | undefined;
3067
3075
  } & class_variance_authority_types.ClassProp) | undefined) => string;
3068
3076
  declare const contentVariants: (props?: ({
@@ -3341,8 +3349,8 @@ declare const ColorWheel: React$1.ForwardRefExoticComponent<ColorWheelProps & Re
3341
3349
 
3342
3350
  declare const flexVariants: (props?: ({
3343
3351
  direction?: "row" | "column" | "column-reverse" | "row-reverse" | null | undefined;
3344
- align?: "stretch" | "center" | "end" | "start" | "baseline" | null | undefined;
3345
- justify?: "center" | "end" | "start" | "between" | "around" | "evenly" | null | undefined;
3352
+ align?: "end" | "stretch" | "center" | "start" | "baseline" | null | undefined;
3353
+ justify?: "end" | "center" | "start" | "between" | "around" | "evenly" | null | undefined;
3346
3354
  wrap?: "nowrap" | "wrap" | "wrap-reverse" | null | undefined;
3347
3355
  gap?: 0 | 1 | 2 | 4 | 3 | 5 | 6 | 8 | 10 | 12 | null | undefined;
3348
3356
  inline?: boolean | null | undefined;
@@ -3363,9 +3371,9 @@ declare const gridVariants: (props?: ({
3363
3371
  gapX?: 0 | 1 | 2 | 4 | 3 | 5 | 6 | 8 | 10 | 12 | null | undefined;
3364
3372
  gapY?: 0 | 1 | 2 | 4 | 3 | 5 | 6 | 8 | 10 | 12 | null | undefined;
3365
3373
  flow?: "row" | "dense" | "col" | "row-dense" | "col-dense" | null | undefined;
3366
- align?: "stretch" | "center" | "end" | "start" | "baseline" | null | undefined;
3367
- justify?: "stretch" | "center" | "end" | "start" | null | undefined;
3368
- placeItems?: "stretch" | "center" | "end" | "start" | null | undefined;
3374
+ align?: "end" | "stretch" | "center" | "start" | "baseline" | null | undefined;
3375
+ justify?: "end" | "stretch" | "center" | "start" | null | undefined;
3376
+ placeItems?: "end" | "stretch" | "center" | "start" | null | undefined;
3369
3377
  } & class_variance_authority_types.ClassProp) | undefined) => string;
3370
3378
  interface GridProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof gridVariants> {
3371
3379
  /** Element to render as */
@@ -3397,7 +3405,7 @@ declare const SimpleGrid: React$1.ForwardRefExoticComponent<Omit<GridProps, "col
3397
3405
  } & React$1.RefAttributes<HTMLDivElement>>;
3398
3406
 
3399
3407
  declare const wellVariants: (props?: ({
3400
- variant?: "outline" | "default" | "filled" | "subtle" | "sunken" | null | undefined;
3408
+ variant?: "default" | "filled" | "outline" | "subtle" | "sunken" | null | undefined;
3401
3409
  size?: "sm" | "md" | "lg" | "xl" | null | undefined;
3402
3410
  radius?: "none" | "sm" | "md" | "lg" | "full" | "xl" | null | undefined;
3403
3411
  } & class_variance_authority_types.ClassProp) | undefined) => string;
@@ -3410,7 +3418,7 @@ declare const Well: React$1.ForwardRefExoticComponent<WellProps & React$1.RefAtt
3410
3418
  declare const labeledValueVariants: (props?: ({
3411
3419
  orientation?: "horizontal" | "vertical" | null | undefined;
3412
3420
  size?: "sm" | "md" | "lg" | null | undefined;
3413
- align?: "center" | "end" | "start" | null | undefined;
3421
+ align?: "end" | "center" | "start" | null | undefined;
3414
3422
  } & class_variance_authority_types.ClassProp) | undefined) => string;
3415
3423
  interface LabeledValueProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "children">, VariantProps<typeof labeledValueVariants> {
3416
3424
  /** Label text */
@@ -3445,7 +3453,7 @@ declare const LabeledValueGroup: React$1.ForwardRefExoticComponent<LabeledValueG
3445
3453
 
3446
3454
  declare const searchBarVariants: (props?: ({
3447
3455
  size?: "sm" | "md" | "lg" | null | undefined;
3448
- variant?: "ghost" | "default" | "filled" | null | undefined;
3456
+ variant?: "default" | "ghost" | "filled" | null | undefined;
3449
3457
  } & class_variance_authority_types.ClassProp) | undefined) => string;
3450
3458
  interface SearchSuggestion {
3451
3459
  id: string;
@@ -3579,7 +3587,7 @@ interface NotificationCenterProps extends VariantProps<typeof notificationCenter
3579
3587
  declare const NotificationCenter: React$1.ForwardRefExoticComponent<NotificationCenterProps & React$1.RefAttributes<HTMLButtonElement>>;
3580
3588
 
3581
3589
  declare const announcementBannerVariants: (props?: ({
3582
- variant?: "default" | "success" | "warning" | "danger" | "primary" | "info" | "gradient" | null | undefined;
3590
+ variant?: "default" | "success" | "warning" | "info" | "danger" | "primary" | "gradient" | null | undefined;
3583
3591
  position?: "top" | "relative" | null | undefined;
3584
3592
  } & class_variance_authority_types.ClassProp) | undefined) => string;
3585
3593
  interface AnnouncementBannerProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof announcementBannerVariants> {
@@ -3609,7 +3617,7 @@ interface AnnouncementBannerProps extends React$1.HTMLAttributes<HTMLDivElement>
3609
3617
  declare const AnnouncementBanner: React$1.ForwardRefExoticComponent<AnnouncementBannerProps & React$1.RefAttributes<HTMLDivElement>>;
3610
3618
 
3611
3619
  declare const fabVariants: (props?: ({
3612
- variant?: "outline" | "ghost" | "destructive" | "default" | "secondary" | null | undefined;
3620
+ variant?: "default" | "ghost" | "outline" | "secondary" | "destructive" | null | undefined;
3613
3621
  size?: "sm" | "md" | "lg" | null | undefined;
3614
3622
  position?: "bottom-right" | "bottom-left" | "relative" | "bottom-center" | null | undefined;
3615
3623
  } & class_variance_authority_types.ClassProp) | undefined) => string;
@@ -3674,7 +3682,7 @@ interface BottomNavigationProps extends Omit<React$1.HTMLAttributes<HTMLElement>
3674
3682
  declare const BottomNavigation: React$1.ForwardRefExoticComponent<BottomNavigationProps & React$1.RefAttributes<HTMLElement>>;
3675
3683
 
3676
3684
  declare const actionSheetItemVariants: (props?: ({
3677
- variant?: "destructive" | "default" | null | undefined;
3685
+ variant?: "default" | "destructive" | null | undefined;
3678
3686
  } & class_variance_authority_types.ClassProp) | undefined) => string;
3679
3687
  interface ActionSheetItem {
3680
3688
  key: string;
@@ -3717,7 +3725,7 @@ declare const swipeActionsVariants: (props?: ({
3717
3725
  variant?: "default" | "card" | null | undefined;
3718
3726
  } & class_variance_authority_types.ClassProp) | undefined) => string;
3719
3727
  declare const swipeActionVariants: (props?: ({
3720
- variant?: "success" | "warning" | "danger" | "primary" | "secondary" | "info" | null | undefined;
3728
+ variant?: "success" | "warning" | "info" | "danger" | "primary" | "secondary" | null | undefined;
3721
3729
  size?: "sm" | "md" | "lg" | null | undefined;
3722
3730
  } & class_variance_authority_types.ClassProp) | undefined) => string;
3723
3731
  interface SwipeAction {
@@ -3818,7 +3826,7 @@ declare const AppShellFooter: React$1.ForwardRefExoticComponent<AppShellFooterPr
3818
3826
  declare const AppShellMain: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
3819
3827
 
3820
3828
  declare const dashboardLayoutVariants: (props?: ({
3821
- variant?: "default" | "bordered" | "filled" | null | undefined;
3829
+ variant?: "bordered" | "default" | "filled" | null | undefined;
3822
3830
  } & class_variance_authority_types.ClassProp) | undefined) => string;
3823
3831
  interface DashboardLayoutProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof dashboardLayoutVariants> {
3824
3832
  /** Navigation items for sidebar */
@@ -4373,4 +4381,4 @@ declare const Sparkles: React$1.ForwardRefExoticComponent<SparklesProps & React$
4373
4381
  */
4374
4382
  declare function cn(...inputs: ClassValue[]): string;
4375
4383
 
4376
- 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, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AnnouncementBanner, type AnnouncementBannerProps, 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, 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, type ColorPalette, ColorPicker, type ColorPickerProps, ColorSlider, type ColorSliderChannel, type ColorSliderProps, ColorSwatch, ColorSwatchPicker, type ColorSwatchPickerProps, type ColorSwatchProps, ColorWheel, type ColorWheelProps, type Column, Combobox, type ComboboxOption, type ComboboxProps, 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, ModalClose, ModalContent, ModalDescription, ModalFooter, ModalHeader, ModalOverlay, ModalPortal, type ModalProps, ModalRoot, ModalTitle, ModalTrigger, MultiSelect, type MultiSelectOption, type MultiSelectProps, 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, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, 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, announcementBannerVariants, appShellVariants, applyMask, authLayoutVariants, autocompleteInputVariants, avatarGroupVariants, backTopVariants, badgeIndicatorVariants, bottomNavigationVariants, buttonGroupVariants, buttonVariants, cardVariants, carouselVariants, chartContainerVariants, chipVariants, circularProgressVariants, closeButtonVariants, cn, codeVariants, colorAreaVariants, colorFieldVariants, colorSliderVariants, colorSwatchPickerVariants, colorSwatchVariants, colorWheelVariants, confirmDialogIconVariants, contextualHelpTriggerVariants, copyButtonVariants, currencyInputVariants, dashboardLayoutVariants, dateFieldVariants, dateInputVariants, defaultColors, 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, materialColors, meterVariants, modalContentVariants, navbarVariants, navigationMenuTriggerStyle, notificationCenterVariants, nprogressVariants, numberFieldVariants, parseDate, parseFormattedValue, phoneInputVariants, pullToRefreshVariants, qrCodeVariants, rangeSliderVariants, ratingVariants, rgbToHex, rgbToHsv, richTextEditorVariants, scrollShadowVariants, searchBarVariants, searchFieldVariants, segmentedControlItemVariants, segmentedControlVariants, settingsLayoutVariants, sheetVariants, sidebarMenuButtonVariants, skeletonVariants, snippetVariants, sortableItemVariants, sortableListVariants, spinnerVariants, statCardVariants, statusLightVariants, stepVariants, stepsVariants, swipeActionVariants, swipeActionsVariants, tagGroupItemVariants, tagGroupVariants, tagVariants, tailwindColors, textBadgeVariants, textFieldVariants, themeToggleVariants, timeFieldVariants, timeInputVariants, timelineItemVariants, timelineVariants, toggleVariants, treeViewVariants, unmask, useButtonGroup, useCarousel, useConfetti, useConfirmDialog, useFieldContext, useFormContext, useSidebar, useSpotlight, userVariants, validateFile, validators, virtualListVariants, wellVariants };
4384
+ 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, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, type AlertType, type AlertVariant, AnnouncementBanner, type AnnouncementBannerProps, 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, 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, type ColorPalette, ColorPicker, type ColorPickerProps, ColorSlider, type ColorSliderChannel, type ColorSliderProps, ColorSwatch, ColorSwatchPicker, type ColorSwatchPickerProps, type ColorSwatchProps, ColorWheel, type ColorWheelProps, type Column, Combobox, type ComboboxOption, type ComboboxProps, 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, ModalClose, ModalContent, ModalDescription, ModalFooter, ModalHeader, ModalOverlay, ModalPortal, type ModalProps, ModalRoot, ModalTitle, ModalTrigger, MultiSelect, type MultiSelectOption, type MultiSelectProps, 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, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, 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, announcementBannerVariants, appShellVariants, applyMask, authLayoutVariants, autocompleteInputVariants, avatarGroupVariants, backTopVariants, badgeIndicatorVariants, bottomNavigationVariants, buttonGroupVariants, buttonVariants, cardVariants, carouselVariants, chartContainerVariants, chipVariants, circularProgressVariants, closeButtonVariants, cn, codeVariants, colorAreaVariants, colorFieldVariants, colorSliderVariants, colorSwatchPickerVariants, colorSwatchVariants, colorWheelVariants, confirmDialogIconVariants, contextualHelpTriggerVariants, copyButtonVariants, currencyInputVariants, dashboardLayoutVariants, dateFieldVariants, dateInputVariants, defaultColors, 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, materialColors, meterVariants, modalContentVariants, navbarVariants, navigationMenuTriggerStyle, notificationCenterVariants, nprogressVariants, numberFieldVariants, parseDate, parseFormattedValue, phoneInputVariants, pullToRefreshVariants, qrCodeVariants, rangeSliderVariants, ratingVariants, rgbToHex, rgbToHsv, richTextEditorVariants, scrollShadowVariants, searchBarVariants, searchFieldVariants, segmentedControlItemVariants, segmentedControlVariants, settingsLayoutVariants, sheetVariants, sidebarMenuButtonVariants, skeletonVariants, snippetVariants, sortableItemVariants, sortableListVariants, spinnerVariants, statCardVariants, statusLightVariants, stepVariants, stepsVariants, swipeActionVariants, swipeActionsVariants, tagGroupItemVariants, tagGroupVariants, tagVariants, tailwindColors, textBadgeVariants, textFieldVariants, themeToggleVariants, timeFieldVariants, timeInputVariants, timelineItemVariants, timelineVariants, toggleVariants, treeViewVariants, unmask, useButtonGroup, useCarousel, useConfetti, useConfirmDialog, useFieldContext, useFormContext, useSidebar, useSpotlight, userVariants, validateFile, validators, virtualListVariants, wellVariants };