@reeverdev/ui 0.3.0 → 0.3.2

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
@@ -64,9 +64,10 @@ declare const buttonVariants: (props?: ({
64
64
  size?: "sm" | "md" | "lg" | null | undefined;
65
65
  radius?: "none" | "sm" | "md" | "lg" | "full" | null | undefined;
66
66
  } & class_variance_authority_types.ClassProp) | undefined) => string;
67
- interface ButtonProps extends Omit<React$1.ButtonHTMLAttributes<HTMLButtonElement>, "color">, VariantProps<typeof buttonVariants> {
67
+ interface ButtonProps extends Omit<React$1.ButtonHTMLAttributes<HTMLButtonElement>, "color" | "disabled">, VariantProps<typeof buttonVariants> {
68
68
  href?: string;
69
- loading?: boolean;
69
+ isLoading?: boolean;
70
+ isDisabled?: boolean;
70
71
  startContent?: React$1.ReactNode;
71
72
  endContent?: React$1.ReactNode;
72
73
  isIconOnly?: boolean;
@@ -86,11 +87,12 @@ declare const CardContent: React$1.ForwardRefExoticComponent<React$1.HTMLAttribu
86
87
  declare const CardFooter: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
87
88
 
88
89
  type CheckedState = boolean | "indeterminate";
89
- interface CheckboxProps extends Omit<React$1.ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "defaultChecked"> {
90
+ interface CheckboxProps extends Omit<React$1.ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "defaultChecked" | "disabled"> {
90
91
  checked?: CheckedState;
91
92
  defaultChecked?: CheckedState;
92
93
  onCheckedChange?: (checked: CheckedState) => void;
93
- required?: boolean;
94
+ isRequired?: boolean;
95
+ isDisabled?: boolean;
94
96
  name?: string;
95
97
  value?: string;
96
98
  /** Text label for the checkbox */
@@ -104,11 +106,15 @@ declare const inputVariants: (props?: ({
104
106
  size?: "sm" | "md" | "lg" | null | undefined;
105
107
  radius?: "none" | "sm" | "md" | "lg" | null | undefined;
106
108
  } & class_variance_authority_types.ClassProp) | undefined) => string;
107
- interface InputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "required" | "size">, VariantProps<typeof inputVariants> {
109
+ interface InputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "required" | "size" | "disabled" | "readOnly">, VariantProps<typeof inputVariants> {
108
110
  /** Label text for the input */
109
111
  label?: string;
110
112
  /** Mark the field as required with indicator */
111
113
  isRequired?: boolean;
114
+ /** Whether the input is disabled */
115
+ isDisabled?: boolean;
116
+ /** Whether the input is read-only */
117
+ isReadOnly?: boolean;
112
118
  /** Description text below the input */
113
119
  description?: string;
114
120
  /** Error message to display */
@@ -159,11 +165,12 @@ declare const sizeMap: {
159
165
  };
160
166
  type SwitchColor = keyof typeof colorMap;
161
167
  type SwitchSize = keyof typeof sizeMap;
162
- interface SwitchProps extends Omit<React$1.ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "color"> {
168
+ interface SwitchProps extends Omit<React$1.ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "color" | "disabled"> {
163
169
  checked?: boolean;
164
170
  defaultChecked?: boolean;
165
171
  onCheckedChange?: (checked: boolean) => void;
166
- required?: boolean;
172
+ isRequired?: boolean;
173
+ isDisabled?: boolean;
167
174
  name?: string;
168
175
  value?: string;
169
176
  /** Switch color */
@@ -179,11 +186,15 @@ declare const textareaVariants: (props?: ({
179
186
  size?: "sm" | "md" | "lg" | null | undefined;
180
187
  radius?: "none" | "sm" | "md" | "lg" | null | undefined;
181
188
  } & class_variance_authority_types.ClassProp) | undefined) => string;
182
- interface TextareaProps extends Omit<React$1.TextareaHTMLAttributes<HTMLTextAreaElement>, "required">, VariantProps<typeof textareaVariants> {
189
+ interface TextareaProps extends Omit<React$1.TextareaHTMLAttributes<HTMLTextAreaElement>, "required" | "disabled" | "readOnly">, VariantProps<typeof textareaVariants> {
183
190
  /** Label text for the textarea */
184
191
  label?: string;
185
192
  /** Mark the field as required with indicator */
186
193
  isRequired?: boolean;
194
+ /** Whether the textarea is disabled */
195
+ isDisabled?: boolean;
196
+ /** Whether the textarea is read-only */
197
+ isReadOnly?: boolean;
187
198
  /** Description text below the textarea */
188
199
  description?: string;
189
200
  /** Error message to display */
@@ -273,7 +284,7 @@ interface SelectCommonProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>,
273
284
  searchable?: boolean;
274
285
  searchPlaceholder?: string;
275
286
  emptyText?: string;
276
- disabled?: boolean;
287
+ isDisabled?: boolean;
277
288
  clearable?: boolean;
278
289
  maxDisplayItems?: number;
279
290
  maxDropdownHeight?: number;
@@ -285,7 +296,7 @@ declare const Select: React$1.ForwardRefExoticComponent<SelectProps & React$1.Re
285
296
 
286
297
  type Side$2 = "top" | "right" | "bottom" | "left";
287
298
  type Align$2 = "start" | "center" | "end";
288
- type Radius = "none" | "sm" | "md" | "lg" | "full";
299
+ type Radius$1 = "none" | "sm" | "md" | "lg" | "full";
289
300
  interface DropdownProps {
290
301
  children: React$1.ReactNode;
291
302
  open?: boolean;
@@ -305,12 +316,12 @@ interface DropdownContentProps extends React$1.HTMLAttributes<HTMLDivElement> {
305
316
  onInteractOutside?: () => void;
306
317
  onEscapeKeyDown?: () => void;
307
318
  loop?: boolean;
308
- radius?: Radius;
319
+ radius?: Radius$1;
309
320
  }
310
321
  declare const DropdownContent: React$1.ForwardRefExoticComponent<DropdownContentProps & React$1.RefAttributes<HTMLDivElement>>;
311
322
  interface DropdownItemProps extends React$1.HTMLAttributes<HTMLDivElement> {
312
323
  inset?: boolean;
313
- disabled?: boolean;
324
+ isDisabled?: boolean;
314
325
  onSelect?: () => void;
315
326
  /** Icon or element to show before the content */
316
327
  startContent?: React$1.ReactNode;
@@ -341,7 +352,7 @@ interface DropdownSubProps {
341
352
  declare const DropdownSub: React$1.FC<DropdownSubProps>;
342
353
  interface DropdownSubTriggerProps extends React$1.HTMLAttributes<HTMLDivElement> {
343
354
  inset?: boolean;
344
- disabled?: boolean;
355
+ isDisabled?: boolean;
345
356
  }
346
357
  declare const DropdownSubTrigger: React$1.ForwardRefExoticComponent<DropdownSubTriggerProps & React$1.RefAttributes<HTMLDivElement>>;
347
358
  interface DropdownSubContentProps extends React$1.HTMLAttributes<HTMLDivElement> {
@@ -461,14 +472,14 @@ interface ContextMenuSubContentProps extends React$1.HTMLAttributes<HTMLDivEleme
461
472
  declare const ContextMenuSubContent: React$1.ForwardRefExoticComponent<ContextMenuSubContentProps & React$1.RefAttributes<HTMLDivElement>>;
462
473
  interface ContextMenuItemProps extends React$1.HTMLAttributes<HTMLDivElement> {
463
474
  inset?: boolean;
464
- disabled?: boolean;
475
+ isDisabled?: boolean;
465
476
  onSelect?: () => void;
466
477
  }
467
478
  declare const ContextMenuItem: React$1.ForwardRefExoticComponent<ContextMenuItemProps & React$1.RefAttributes<HTMLDivElement>>;
468
479
  interface ContextMenuCheckboxItemProps extends React$1.HTMLAttributes<HTMLDivElement> {
469
480
  checked?: boolean;
470
481
  onCheckedChange?: (checked: boolean) => void;
471
- disabled?: boolean;
482
+ isDisabled?: boolean;
472
483
  }
473
484
  declare const ContextMenuCheckboxItem: React$1.ForwardRefExoticComponent<ContextMenuCheckboxItemProps & React$1.RefAttributes<HTMLDivElement>>;
474
485
  interface ContextMenuSectionProps extends React$1.HTMLAttributes<HTMLDivElement> {
@@ -489,7 +500,7 @@ interface RadioGroupProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "
489
500
  defaultValue?: string;
490
501
  onValueChange?: (value: string) => void;
491
502
  name?: string;
492
- disabled?: boolean;
503
+ isDisabled?: boolean;
493
504
  required?: boolean;
494
505
  orientation?: "horizontal" | "vertical";
495
506
  size?: "sm" | "md" | "lg";
@@ -498,7 +509,7 @@ interface RadioGroupProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "
498
509
  declare const RadioGroup: React$1.ForwardRefExoticComponent<RadioGroupProps & React$1.RefAttributes<HTMLDivElement>>;
499
510
  interface RadioProps extends Omit<React$1.HTMLAttributes<HTMLLabelElement>, "value"> {
500
511
  value: string;
501
- disabled?: boolean;
512
+ isDisabled?: boolean;
502
513
  }
503
514
  declare const Radio: React$1.ForwardRefExoticComponent<RadioProps & React$1.RefAttributes<HTMLLabelElement>>;
504
515
  interface RadioControlProps {
@@ -525,10 +536,11 @@ declare const toggleVariants: (props?: ({
525
536
  variant?: "solid" | "bordered" | "ghost" | "soft" | "surface" | null | undefined;
526
537
  size?: "sm" | "md" | "lg" | null | undefined;
527
538
  } & class_variance_authority_types.ClassProp) | undefined) => string;
528
- interface ToggleProps extends Omit<React$1.ButtonHTMLAttributes<HTMLButtonElement>, "onChange">, VariantProps<typeof toggleVariants> {
539
+ interface ToggleProps extends Omit<React$1.ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "disabled">, VariantProps<typeof toggleVariants> {
529
540
  pressed?: boolean;
530
541
  defaultPressed?: boolean;
531
542
  onPressedChange?: (pressed: boolean) => void;
543
+ isDisabled?: boolean;
532
544
  }
533
545
  declare const Toggle: React$1.ForwardRefExoticComponent<ToggleProps & React$1.RefAttributes<HTMLButtonElement>>;
534
546
 
@@ -545,7 +557,7 @@ interface ToggleGroupMultipleProps {
545
557
  onValueChange?: (value: string[]) => void;
546
558
  }
547
559
  type ToggleGroupProps = (ToggleGroupSingleProps | ToggleGroupMultipleProps) & Omit<React$1.HTMLAttributes<HTMLDivElement>, "defaultValue" | "onChange"> & VariantProps<typeof toggleVariants> & {
548
- disabled?: boolean;
560
+ isDisabled?: boolean;
549
561
  };
550
562
  declare const ToggleGroup: React$1.ForwardRefExoticComponent<ToggleGroupProps & React$1.RefAttributes<HTMLDivElement>>;
551
563
  interface ToggleGroupItemProps extends Omit<React$1.ButtonHTMLAttributes<HTMLButtonElement>, "value">, VariantProps<typeof toggleVariants> {
@@ -561,7 +573,7 @@ interface SliderProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "onCh
561
573
  min?: number;
562
574
  max?: number;
563
575
  step?: number;
564
- disabled?: boolean;
576
+ isDisabled?: boolean;
565
577
  orientation?: "horizontal" | "vertical";
566
578
  trackColor?: "primary" | "success" | "warning" | "danger" | string;
567
579
  name?: string;
@@ -581,13 +593,13 @@ interface AccordionMultipleProps {
581
593
  onValueChange?: (value: string[]) => void;
582
594
  }
583
595
  type AccordionProps = (AccordionSingleProps | AccordionMultipleProps) & Omit<React$1.HTMLAttributes<HTMLDivElement>, "defaultValue" | "onChange"> & {
584
- disabled?: boolean;
596
+ isDisabled?: boolean;
585
597
  collapsible?: boolean;
586
598
  };
587
599
  declare const Accordion: React$1.ForwardRefExoticComponent<AccordionProps & React$1.RefAttributes<HTMLDivElement>>;
588
600
  interface AccordionItemProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "title"> {
589
601
  value: string;
590
- disabled?: boolean;
602
+ isDisabled?: boolean;
591
603
  title?: React$1.ReactNode;
592
604
  subtitle?: React$1.ReactNode;
593
605
  startContent?: React$1.ReactNode;
@@ -598,7 +610,7 @@ interface CollapsibleProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>,
598
610
  open?: boolean;
599
611
  defaultOpen?: boolean;
600
612
  onOpenChange?: (open: boolean) => void;
601
- disabled?: boolean;
613
+ isDisabled?: boolean;
602
614
  title?: React$1.ReactNode;
603
615
  }
604
616
  declare const Collapsible: React$1.ForwardRefExoticComponent<CollapsibleProps & React$1.RefAttributes<HTMLDivElement>>;
@@ -1090,7 +1102,11 @@ declare const CommandShortcut: {
1090
1102
  displayName: string;
1091
1103
  };
1092
1104
 
1093
- interface PasswordInputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "type" | "size"> {
1105
+ interface PasswordInputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "type" | "size" | "disabled"> {
1106
+ /**
1107
+ * Whether the input is disabled
1108
+ */
1109
+ isDisabled?: boolean;
1094
1110
  /**
1095
1111
  * Show toggle button to reveal/hide password
1096
1112
  * @default true
@@ -1109,7 +1125,11 @@ interface PasswordInputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputE
1109
1125
  }
1110
1126
  declare const PasswordInput: React$1.ForwardRefExoticComponent<PasswordInputProps & React$1.RefAttributes<HTMLInputElement>>;
1111
1127
 
1112
- interface NumberInputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "type" | "onChange" | "size"> {
1128
+ interface NumberInputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "type" | "onChange" | "size" | "disabled"> {
1129
+ /**
1130
+ * Whether the input is disabled
1131
+ */
1132
+ isDisabled?: boolean;
1113
1133
  /**
1114
1134
  * Show increment/decrement buttons
1115
1135
  * @default true
@@ -1214,11 +1234,11 @@ interface RatingProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "onCh
1214
1234
  * Read only mode
1215
1235
  * @default false
1216
1236
  */
1217
- readOnly?: boolean;
1237
+ isReadOnly?: boolean;
1218
1238
  /**
1219
1239
  * Disabled state
1220
1240
  */
1221
- disabled?: boolean;
1241
+ isDisabled?: boolean;
1222
1242
  /**
1223
1243
  * Color for filled icons
1224
1244
  */
@@ -1247,7 +1267,7 @@ interface ChipProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "color"
1247
1267
  /** Callback when close button is clicked */
1248
1268
  onClose?: () => void;
1249
1269
  /** If true, the chip is disabled */
1250
- disabled?: boolean;
1270
+ isDisabled?: boolean;
1251
1271
  }
1252
1272
  declare const Chip: React$1.ForwardRefExoticComponent<ChipProps & React$1.RefAttributes<HTMLDivElement>>;
1253
1273
 
@@ -1282,7 +1302,9 @@ declare const CircularProgress: React$1.ForwardRefExoticComponent<CircularProgre
1282
1302
  declare const inputOTPVariants: (props?: ({
1283
1303
  size?: "sm" | "md" | "lg" | null | undefined;
1284
1304
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1285
- interface InputOTPProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "size" | "onChange">, VariantProps<typeof inputOTPVariants> {
1305
+ interface InputOTPProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "size" | "onChange" | "disabled">, VariantProps<typeof inputOTPVariants> {
1306
+ /** Whether the input is disabled */
1307
+ isDisabled?: boolean;
1286
1308
  /** Maximum number of characters */
1287
1309
  maxLength: number;
1288
1310
  /** Current value */
@@ -1335,7 +1357,7 @@ interface TagInputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElemen
1335
1357
  /** Whether to allow duplicate tags */
1336
1358
  allowDuplicates?: boolean;
1337
1359
  /** Whether the input is disabled */
1338
- disabled?: boolean;
1360
+ isDisabled?: boolean;
1339
1361
  /** Whether the input is read-only */
1340
1362
  readOnly?: boolean;
1341
1363
  /** Custom tag renderer */
@@ -1523,7 +1545,7 @@ interface FileUploadProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "
1523
1545
  /** Whether multiple files allowed */
1524
1546
  multiple?: boolean;
1525
1547
  /** Whether the upload is disabled */
1526
- disabled?: boolean;
1548
+ isDisabled?: boolean;
1527
1549
  }
1528
1550
  declare const getFileIcon: (file: File) => React$1.ForwardRefExoticComponent<Omit<lucide_react.LucideProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
1529
1551
  declare const formatFileSize: (bytes: number) => string;
@@ -1541,7 +1563,7 @@ interface ColorPickerProps {
1541
1563
  /** Callback when color changes */
1542
1564
  onChange?: (color: string) => void;
1543
1565
  /** Whether the picker is disabled */
1544
- disabled?: boolean;
1566
+ isDisabled?: boolean;
1545
1567
  /** Preset colors to show */
1546
1568
  presets?: string[];
1547
1569
  /** Whether to show the input field */
@@ -1564,7 +1586,7 @@ declare const timeInputVariants: (props?: ({
1564
1586
  size?: "sm" | "md" | "lg" | null | undefined;
1565
1587
  radius?: "none" | "sm" | "md" | "lg" | null | undefined;
1566
1588
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1567
- interface TimeInputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "size" | "value" | "onChange">, VariantProps<typeof timeInputVariants> {
1589
+ interface TimeInputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "size" | "value" | "onChange" | "disabled">, VariantProps<typeof timeInputVariants> {
1568
1590
  /** Current time value (HH:mm format) */
1569
1591
  value?: string;
1570
1592
  /** Callback when time changes */
@@ -1583,6 +1605,8 @@ interface TimeInputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputEleme
1583
1605
  label?: string;
1584
1606
  /** Mark the field as required with indicator */
1585
1607
  isRequired?: boolean;
1608
+ /** Whether the input is disabled */
1609
+ isDisabled?: boolean;
1586
1610
  /** Description text below the input */
1587
1611
  description?: string;
1588
1612
  /** Error message to display */
@@ -1595,7 +1619,9 @@ declare const TimeInput: React$1.ForwardRefExoticComponent<TimeInputProps & Reac
1595
1619
  declare const currencyInputVariants: (props?: ({
1596
1620
  size?: "sm" | "md" | "lg" | null | undefined;
1597
1621
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1598
- interface CurrencyInputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "size" | "value" | "onChange">, VariantProps<typeof currencyInputVariants> {
1622
+ interface CurrencyInputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "size" | "value" | "onChange" | "disabled">, VariantProps<typeof currencyInputVariants> {
1623
+ /** Whether the input is disabled */
1624
+ isDisabled?: boolean;
1599
1625
  /** Current numeric value */
1600
1626
  value?: number;
1601
1627
  /** Default numeric value */
@@ -1684,7 +1710,9 @@ declare const MASK_PRESETS: {
1684
1710
  };
1685
1711
  };
1686
1712
  type MaskPreset = keyof typeof MASK_PRESETS;
1687
- interface MaskedInputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "size" | "value" | "onChange">, VariantProps<typeof maskedInputVariants> {
1713
+ interface MaskedInputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "size" | "value" | "onChange" | "disabled">, VariantProps<typeof maskedInputVariants> {
1714
+ /** Whether the input is disabled */
1715
+ isDisabled?: boolean;
1688
1716
  /** Current masked value */
1689
1717
  value?: string;
1690
1718
  /** Default value */
@@ -1716,7 +1744,9 @@ interface Country {
1716
1744
  format: string;
1717
1745
  }
1718
1746
  declare const COUNTRIES: Country[];
1719
- interface PhoneInputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "size" | "value" | "onChange">, VariantProps<typeof phoneInputVariants> {
1747
+ interface PhoneInputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "size" | "value" | "onChange" | "disabled">, VariantProps<typeof phoneInputVariants> {
1748
+ /** Whether the input is disabled */
1749
+ isDisabled?: boolean;
1720
1750
  /** Current phone value (just the number, without dial code) */
1721
1751
  value?: string;
1722
1752
  /** Default phone value */
@@ -1850,19 +1880,19 @@ interface MenubarContentProps extends React$1.HTMLAttributes<HTMLDivElement> {
1850
1880
  declare const MenubarContent: React$1.ForwardRefExoticComponent<MenubarContentProps & React$1.RefAttributes<HTMLDivElement>>;
1851
1881
  interface MenubarItemProps extends React$1.HTMLAttributes<HTMLDivElement> {
1852
1882
  inset?: boolean;
1853
- disabled?: boolean;
1883
+ isDisabled?: boolean;
1854
1884
  onSelect?: () => void;
1855
1885
  }
1856
1886
  declare const MenubarItem: React$1.ForwardRefExoticComponent<MenubarItemProps & React$1.RefAttributes<HTMLDivElement>>;
1857
1887
  interface MenubarCheckboxItemProps extends React$1.HTMLAttributes<HTMLDivElement> {
1858
1888
  checked?: boolean;
1859
1889
  onCheckedChange?: (checked: boolean) => void;
1860
- disabled?: boolean;
1890
+ isDisabled?: boolean;
1861
1891
  }
1862
1892
  declare const MenubarCheckboxItem: React$1.ForwardRefExoticComponent<MenubarCheckboxItemProps & React$1.RefAttributes<HTMLDivElement>>;
1863
1893
  interface MenubarRadioItemProps extends React$1.HTMLAttributes<HTMLDivElement> {
1864
1894
  value: string;
1865
- disabled?: boolean;
1895
+ isDisabled?: boolean;
1866
1896
  }
1867
1897
  declare const MenubarRadioItem: React$1.ForwardRefExoticComponent<MenubarRadioItemProps & React$1.RefAttributes<HTMLDivElement>>;
1868
1898
  interface MenubarSectionProps extends React$1.HTMLAttributes<HTMLDivElement> {
@@ -1909,7 +1939,7 @@ interface TreeNode {
1909
1939
  /** Child nodes */
1910
1940
  children?: TreeNode[];
1911
1941
  /** Whether node is disabled */
1912
- disabled?: boolean;
1942
+ isDisabled?: boolean;
1913
1943
  /** Whether node can be selected (default: true) */
1914
1944
  selectable?: boolean;
1915
1945
  /** Whether node shows checkbox (default: follows Tree.checkable) */
@@ -2039,7 +2069,7 @@ interface TreeProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "onSele
2039
2069
  /** Block node (fill remaining horizontal space) */
2040
2070
  blockNode?: boolean;
2041
2071
  /** Disable the tree */
2042
- disabled?: boolean;
2072
+ isDisabled?: boolean;
2043
2073
  }
2044
2074
  declare const Tree: React$1.ForwardRefExoticComponent<TreeProps & React$1.RefAttributes<HTMLDivElement>>;
2045
2075
 
@@ -2050,7 +2080,7 @@ declare const autocompleteInputVariants: (props?: ({
2050
2080
  interface AutocompleteOption {
2051
2081
  value: string;
2052
2082
  label: string;
2053
- disabled?: boolean;
2083
+ isDisabled?: boolean;
2054
2084
  }
2055
2085
  interface AutocompleteProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "size" | "value" | "onChange" | "onSelect">, VariantProps<typeof autocompleteInputVariants> {
2056
2086
  /** Current input value */
@@ -2199,6 +2229,89 @@ interface FormMessageProps extends React$1.HTMLAttributes<HTMLParagraphElement>
2199
2229
  }
2200
2230
  declare const FormMessage: React$1.ForwardRefExoticComponent<FormMessageProps & React$1.RefAttributes<HTMLParagraphElement>>;
2201
2231
 
2232
+ interface TextFieldProps extends Omit<InputProps, "isInvalid" | "errorMessage"> {
2233
+ /** Field name (required when used in Form) */
2234
+ name?: string;
2235
+ /** Validation rules (used with Form) */
2236
+ rules?: ValidationRule[];
2237
+ /** Custom validation function - return error message or null/undefined if valid */
2238
+ validate?: (value: string) => string | null | undefined;
2239
+ /** Error message (controlled) */
2240
+ errorMessage?: string;
2241
+ /** Whether the field is invalid (controlled) */
2242
+ isInvalid?: boolean;
2243
+ }
2244
+ declare const TextField: React$1.ForwardRefExoticComponent<TextFieldProps & React$1.RefAttributes<HTMLInputElement>>;
2245
+
2246
+ interface TextareaFieldProps extends Omit<TextareaProps, "isInvalid" | "errorMessage"> {
2247
+ /** Field name (required when used in Form) */
2248
+ name?: string;
2249
+ /** Validation rules (used with Form) */
2250
+ rules?: ValidationRule[];
2251
+ /** Custom validation function - return error message or null/undefined if valid */
2252
+ validate?: (value: string) => string | null | undefined;
2253
+ /** Error message (controlled) */
2254
+ errorMessage?: string;
2255
+ /** Whether the field is invalid (controlled) */
2256
+ isInvalid?: boolean;
2257
+ }
2258
+ declare const TextareaField: React$1.ForwardRefExoticComponent<TextareaFieldProps & React$1.RefAttributes<HTMLTextAreaElement>>;
2259
+
2260
+ interface NumberFieldProps extends Omit<NumberInputProps, "isInvalid" | "errorMessage"> {
2261
+ /** Field name (required when used in Form) */
2262
+ name?: string;
2263
+ /** Validation rules (used with Form) */
2264
+ rules?: ValidationRule[];
2265
+ /** Custom validation function - return error message or null/undefined if valid */
2266
+ validate?: (value: number | undefined) => string | null | undefined;
2267
+ /** Error message (controlled) */
2268
+ errorMessage?: string;
2269
+ /** Whether the field is invalid (controlled) */
2270
+ isInvalid?: boolean;
2271
+ /** Label for the field */
2272
+ label?: string;
2273
+ /** Description text */
2274
+ description?: string;
2275
+ /** Whether field is required */
2276
+ isRequired?: boolean;
2277
+ }
2278
+ declare const NumberField: React$1.ForwardRefExoticComponent<NumberFieldProps & React$1.RefAttributes<HTMLInputElement>>;
2279
+
2280
+ interface SelectFieldSingleProps {
2281
+ multiple?: false;
2282
+ value?: string;
2283
+ defaultValue?: string;
2284
+ onValueChange?: (value: string) => void;
2285
+ /** Custom validation function - return error message or null/undefined if valid */
2286
+ validate?: (value: string) => string | null | undefined;
2287
+ }
2288
+ interface SelectFieldMultipleProps {
2289
+ multiple: true;
2290
+ value?: string[];
2291
+ defaultValue?: string[];
2292
+ onValueChange?: (value: string[]) => void;
2293
+ /** Custom validation function - return error message or null/undefined if valid */
2294
+ validate?: (value: string[]) => string | null | undefined;
2295
+ }
2296
+ interface SelectFieldCommonProps extends Omit<SelectProps, "multiple" | "value" | "defaultValue" | "onValueChange"> {
2297
+ /** Field name (required when used in Form) */
2298
+ name?: string;
2299
+ /** Validation rules (used with Form) */
2300
+ rules?: ValidationRule[];
2301
+ /** Error message (controlled) */
2302
+ errorMessage?: string;
2303
+ /** Whether the field is invalid (controlled) */
2304
+ isInvalid?: boolean;
2305
+ /** Label for the field */
2306
+ label?: string;
2307
+ /** Description text */
2308
+ description?: string;
2309
+ /** Whether field is required */
2310
+ isRequired?: boolean;
2311
+ }
2312
+ type SelectFieldProps = SelectFieldCommonProps & (SelectFieldSingleProps | SelectFieldMultipleProps);
2313
+ declare const SelectField: React$1.ForwardRefExoticComponent<SelectFieldProps & React$1.RefAttributes<HTMLDivElement>>;
2314
+
2202
2315
  declare const userVariants: (props?: ({
2203
2316
  size?: "sm" | "md" | "lg" | null | undefined;
2204
2317
  } & class_variance_authority_types.ClassProp) | undefined) => string;
@@ -2323,7 +2436,8 @@ declare const dateRangePickerVariants: (props?: ({
2323
2436
  size?: "sm" | "md" | "lg" | null | undefined;
2324
2437
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2325
2438
  type DateRangeFormat = "dd/MM/yyyy" | "MM/dd/yyyy" | "yyyy-MM-dd" | "dd.MM.yyyy";
2326
- interface DateRangePickerProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "size" | "type" | "onChange" | "value" | "defaultValue">, VariantProps<typeof dateRangePickerVariants> {
2439
+ interface DateRangePickerProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "size" | "type" | "onChange" | "value" | "defaultValue" | "disabled">, VariantProps<typeof dateRangePickerVariants> {
2440
+ isDisabled?: boolean;
2327
2441
  label?: React$1.ReactNode;
2328
2442
  description?: React$1.ReactNode;
2329
2443
  errorMessage?: React$1.ReactNode;
@@ -2399,7 +2513,7 @@ interface TimePickerProps {
2399
2513
  /**
2400
2514
  * Disabled state
2401
2515
  */
2402
- disabled?: boolean;
2516
+ isDisabled?: boolean;
2403
2517
  /**
2404
2518
  * Additional class name
2405
2519
  */
@@ -2484,13 +2598,13 @@ interface KbdProps extends React$1.HTMLAttributes<HTMLElement>, VariantProps<typ
2484
2598
  /** Callback when keyboard shortcut is pressed */
2485
2599
  onPress?: (e: KeyboardEvent) => void;
2486
2600
  /** Whether the shortcut is disabled */
2487
- disabled?: boolean;
2601
+ isDisabled?: boolean;
2488
2602
  /** Whether to prevent default browser behavior when shortcut is triggered */
2489
2603
  preventDefault?: boolean;
2490
2604
  }
2491
2605
  declare const Kbd: React$1.ForwardRefExoticComponent<KbdProps & React$1.RefAttributes<HTMLElement>>;
2492
2606
  declare function useKeyboardShortcut(keys: string | string[], callback: (e: KeyboardEvent) => void, options?: {
2493
- disabled?: boolean;
2607
+ isDisabled?: boolean;
2494
2608
  preventDefault?: boolean;
2495
2609
  }): void;
2496
2610
 
@@ -2889,11 +3003,43 @@ interface ThemeToggleProps extends VariantProps<typeof themeToggleVariants> {
2889
3003
  }
2890
3004
  declare const ThemeToggle: React$1.ForwardRefExoticComponent<ThemeToggleProps & React$1.RefAttributes<HTMLButtonElement>>;
2891
3005
 
3006
+ type Radius = "none" | "sm" | "md" | "lg" | "full";
3007
+ type Color = "default" | "primary" | "secondary" | "success" | "warning" | "danger";
3008
+ interface ReeverUIContextValue {
3009
+ /** Disable all animations globally */
3010
+ disableAnimation: boolean;
3011
+ /** Default border radius for components */
3012
+ defaultRadius: Radius;
3013
+ /** Default color for components */
3014
+ defaultColor: Color;
3015
+ /** Locale for internationalization */
3016
+ locale: string;
3017
+ /** Custom navigation function (for Next.js router integration) */
3018
+ navigate?: (path: string) => void;
3019
+ }
3020
+ interface ReeverUIProviderProps extends Omit<ThemeProviderProps, "children"> {
3021
+ children: React$1.ReactNode;
3022
+ /** Disable all animations globally */
3023
+ disableAnimation?: boolean;
3024
+ /** Default border radius for components */
3025
+ defaultRadius?: Radius;
3026
+ /** Default color for components */
3027
+ defaultColor?: Color;
3028
+ /** Locale for internationalization */
3029
+ locale?: string;
3030
+ /** Custom navigation function (for Next.js router integration) */
3031
+ navigate?: (path: string) => void;
3032
+ }
3033
+ declare const ReeverUIContext: React$1.Context<ReeverUIContextValue>;
3034
+ declare const useReeverUI: () => ReeverUIContextValue;
3035
+ declare const ReeverUIProvider: React$1.FC<ReeverUIProviderProps>;
3036
+
2892
3037
  declare const datePickerVariants: (props?: ({
2893
3038
  size?: "sm" | "md" | "lg" | null | undefined;
2894
3039
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2895
3040
  type DateFormat = "dd/MM/yyyy" | "MM/dd/yyyy" | "yyyy-MM-dd" | "dd.MM.yyyy";
2896
- interface DatePickerProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "size" | "type" | "onChange" | "value" | "defaultValue">, VariantProps<typeof datePickerVariants> {
3041
+ interface DatePickerProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "size" | "type" | "onChange" | "value" | "defaultValue" | "disabled">, VariantProps<typeof datePickerVariants> {
3042
+ isDisabled?: boolean;
2897
3043
  label?: React$1.ReactNode;
2898
3044
  description?: React$1.ReactNode;
2899
3045
  errorMessage?: React$1.ReactNode;
@@ -2938,7 +3084,7 @@ declare const buttonGroupVariants: (props?: ({
2938
3084
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2939
3085
  interface ButtonGroupProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof buttonGroupVariants> {
2940
3086
  /** Whether buttons are disabled */
2941
- disabled?: boolean;
3087
+ isDisabled?: boolean;
2942
3088
  }
2943
3089
  declare function useButtonGroup(): {
2944
3090
  disabled?: boolean;
@@ -3007,7 +3153,7 @@ interface RangeSliderProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>,
3007
3153
  min?: number;
3008
3154
  max?: number;
3009
3155
  step?: number;
3010
- disabled?: boolean;
3156
+ isDisabled?: boolean;
3011
3157
  showLabels?: boolean;
3012
3158
  formatLabel?: (value: number) => string;
3013
3159
  trackColor?: "primary" | "success" | "warning" | "danger" | string;
@@ -3127,7 +3273,7 @@ interface ColorSwatchPickerProps extends Omit<React$1.HTMLAttributes<HTMLDivElem
3127
3273
  /** Shape of swatches */
3128
3274
  swatchShape?: "square" | "circle";
3129
3275
  /** Whether swatches are disabled */
3130
- disabled?: boolean;
3276
+ isDisabled?: boolean;
3131
3277
  /** Custom ring color when selected (defaults to foreground) */
3132
3278
  selectedRingColor?: string;
3133
3279
  }
@@ -3342,7 +3488,7 @@ interface BottomNavigationItem {
3342
3488
  /** Show dot badge instead of count */
3343
3489
  showDot?: boolean;
3344
3490
  /** Disabled state */
3345
- disabled?: boolean;
3491
+ isDisabled?: boolean;
3346
3492
  /** Custom href for navigation */
3347
3493
  href?: string;
3348
3494
  }
@@ -7157,4 +7303,4 @@ declare function getPasswordStrengthColor(strength: number): string;
7157
7303
  */
7158
7304
  declare function getPasswordStrengthLabel(strength: number): string;
7159
7305
 
7160
- export { Accordion, AccordionItem, type AccordionItemProps, type AccordionProps, ActionBar, ActionBarButton, type ActionBarProps, ActionGroup, type ActionGroupItem, type ActionGroupProps, ActionSheet, type ActionSheetItem, type ActionSheetProps, Alert, AlertDescription, type AlertRadius, AlertTitle, type AlertType, type AlertVariant, type AllowDropInfo, AreaChart, type AreaChartProps, AspectRatio, AudioPlayer, type AudioPlayerProps, type AudioTrack, Autocomplete, type AutocompleteOption, type AutocompleteProps, Avatar, AvatarFallback, AvatarGroup, type AvatarGroupItem, type AvatarGroupProps, AvatarImage, BackTop, type BackTopProps, Badge, type BadgeProps, Banner, type BannerProps, BarChart, type BarChartProps, Blockquote, type BlockquoteProps, 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, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, type CarouselItemProps, CarouselNext, CarouselPrevious, type CarouselProps, type ChartDataPoint, type CheckInfo, Checkbox, Checkmark, type CheckmarkProps, type CheckmarkSize, type CheckmarkVariant, Chip, type ChipProps, CircularProgress, CloseButton, type CloseButtonProps, Code, CodeBlock, type CodeBlockProps, type CodeBlockTabItem, Collapse, type CollapseProps, Collapsible, CollapsibleContent, CollapsibleTrigger, ColorArea, type ColorAreaProps, type ColorAreaValue, ColorPicker, type ColorPickerProps, ColorSlider, type ColorSliderChannel, type ColorSliderProps, ColorSwatch, ColorSwatchPicker, type ColorSwatchPickerProps, type ColorSwatchProps, ColorWheel, type ColorWheelProps, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, type CommandItemProps, CommandList, CommandSeparator, CommandShortcut, Confetti, type ConfettiOptions, type ConfettiProps, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuPortal, ContextMenuSection, type ContextMenuSectionProps, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, ContextualHelp, type ContextualHelpProps, CopyButton, type CopyButtonProps, Counter, type CounterProps, type Country, CurrencyInput, type CurrencyInputProps, DEFAULT_COLORS, DataTable, type DataTableProps, DateField, type DateFormat, DateInput, DatePicker, type DatePickerProps, DateRangePicker, type DateRangePickerProps, type DragInfo, type DraggableConfig, Drawer, type DrawerBackdrop, DrawerBody, DrawerClose, type DrawerCollapsible, DrawerContent, DrawerDescription, DrawerFooter, DrawerGroup, DrawerGroupLabel, DrawerHeader, DrawerInset, DrawerMenu, DrawerMenuButton, DrawerMenuItem, type DrawerMode, type DrawerPlacement, type DrawerProps, DrawerProvider, DrawerSeparator, DrawerSidebar, type DrawerSidebarProps, type DrawerSize, DrawerTitle, DrawerToggle, DrawerTrigger, type DrawerVariant, type DropInfo, Dropdown, DropdownContent, type DropdownContentProps, DropdownGroup, type DropdownGroupProps, DropdownItem, type DropdownItemProps, DropdownLabel, type DropdownProps, DropdownSection, type DropdownSectionProps, DropdownSeparator, type DropdownSeparatorProps, DropdownShortcut, DropdownSub, DropdownSubContent, type DropdownSubContentProps, type DropdownSubProps, DropdownSubTrigger, type DropdownSubTriggerProps, DropdownTrigger, type DropdownTriggerProps, EMOJIS, EMOJI_CATEGORIES, EmojiPicker, type EmojiPickerProps, EmptyState, Expand, type ExpandInfo, type ExpandProps, FAB, type FABAction, Fade, type FadeProps, FieldContext, type FieldContextValue, type FieldState, type FileRejection, FileUpload, type FileUploadProps, type FlatCheckInfo, type FlatSelectInfo, 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, GridList, type GridListItem, type GridListProps, H1, type H1Props, H2, type H2Props, H3, type H3Props, H4, type H4Props, HeatmapCalendar, type HeatmapCalendarProps, type HeatmapValue, HoverCard, HoverCardContent, HoverCardTrigger, Image, ImageComparison, type ImageComparisonProps, ImageCropper, type ImageCropperProps, ImageViewer, type ImageViewerProps, ImageViewerTrigger, type ImageViewerTriggerProps, InfiniteScroll, type InfiniteScrollProps, InlineCode, type InlineCodeProps, Input, InputOTP, InputOTPGroup, type InputOTPProps, InputOTPSeparator, InputOTPSlot, type InputOTPSlotProps, type InputProps, KanbanBoard, type KanbanBoardProps, type KanbanCard, type KanbanColumn, Kbd, type KbdProps, Label, type Language, Large, type LargeProps, Lead, type LeadProps, LineChart, type LineChartProps, Link, type LinkProps, List, type ListDataItem, ListItemComponent as ListItem, type ListItemComponentProps, ListItemText, type ListItemTextProps, type ListProps, Loading, type LoadingProps, MASK_PRESETS, type MaskChar, type MaskDefinition, type MaskPreset, MaskedInput, type MaskedInputProps, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSection, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, Modal, type ModalBackdrop, ModalBody, ModalClose, ModalContent, ModalDescription, ModalFooter, ModalHeader, ModalOverlay, type ModalPlacement, ModalPortal, type ModalProps, ModalRoot, type ModalScrollBehavior, ModalTitle, ModalTrigger, Muted, type MutedProps, Navbar, NavbarBrand, NavbarContent, NavbarItem, NavbarLink, type NavbarProps, NavigationMenu, NavigationMenuContent, type NavigationMenuContentProps, NavigationMenuIndicator, type NavigationMenuIndicatorProps, NavigationMenuItem, type NavigationMenuItemProps, NavigationMenuLink, type NavigationMenuLinkProps, NavigationMenuList, type NavigationMenuListProps, type NavigationMenuProps, NavigationMenuTrigger, type NavigationMenuTriggerProps, NavigationMenuViewport, NumberInput, type NumberInputProps, PDFViewer, type PDFViewerProps, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, type PaginationState, Paragraph, type ParagraphProps, Parallax, type ParallaxProps, PasswordInput, type PasswordInputProps, type PasswordRequirement, PhoneInput, type PhoneInputProps, PieChart, type PieChartProps, Pop, type PopProps, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Progress, PullToRefresh, type PullToRefreshProps, Pulse, type PulseProps, type PulseSpeed, QRCode, type QRCodeProps, type QRCodeRef, Radio, RadioContent, type RadioContentProps, RadioControl, type RadioControlProps, RadioDescription, type RadioDescriptionProps, RadioGroup, type RadioGroupProps, RadioIndicator, type RadioIndicatorProps, RadioLabel, type RadioLabelProps, type RadioProps, RangeSlider, type RangeSliderProps, Rating, type RatingProps, ResizableHandle, type ResizableHandleProps, ResizablePanel, ResizablePanelGroup, type ResizablePanelGroupProps, Ripple, type RippleProps, Rotate, type RotateProps, Scale, type ScaleOrigin, type ScaleProps, ScrollArea, type ScrollAreaProps, ScrollProgress, type ScrollProgressPosition, type ScrollProgressProps, ScrollReveal, type ScrollRevealDirection, type ScrollRevealProps, Select, type SelectInfo, type SelectOption, type SelectProps, Separator, type SeparatorProps, Shake, type ShakeIntensity, type ShakeProps, Shimmer, type ShimmerDirection, type ShimmerProps, Skeleton, Slide, type SlideDirection, type SlideProps, Slider, Small, type SmallProps, Snippet, type SortDirection, type SortState, Sparkles, type SparklesProps, Spinner, type SpotlightItem, SpotlightSearch, type SpotlightSearchProps, StatCard, Step, type StepProps, Steps, type StepsProps, type SwipeAction, SwipeActions, type SwipeActionsProps, Switch, type SwitchColor, type SwitchProps, type SwitchSize, TabbedCodeBlock, type TabbedCodeBlockProps, Table, TableBody, TableCaption, TableCell, type TableColumn, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, type Tag, TagInput, type TagInputProps, TextBadge, type TextBadgeProps, TextReveal, type TextRevealDirection, type TextRevealProps, Textarea, type TextareaProps, ThemeProvider, type ThemeProviderProps, ThemeToggle, type ThemeToggleProps, TimeInput, type TimeInputProps, TimePicker, type TimePickerProps, Timeline, TimelineContent, TimelineItem, TimelineOpposite, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, type TooltipProps, type TransitionProps, Tree, type TreeNode, type TreeProps, Typewriter, type TypewriterProps, UL, type ULProps, type UploadedFile, User, type ValidationRule, VideoPlayer, type VideoPlayerProps, type VideoSource, type ViewerImage, Wiggle, type WiggleProps, WordRotate, type WordRotateProps, actionBarVariants, actionGroupVariants, actionSheetItemVariants, alertVariants, applyMask, autocompleteInputVariants, avatarGroupVariants, backTopVariants, badgeIndicatorVariants, bannerVariants, bottomNavigationVariants, buttonGroupVariants, buttonVariants, calculatePasswordStrength, cardVariants, carouselVariants, chartContainerVariants, chipVariants, circularProgressVariants, closeButtonVariants, cn, codeVariants, colorAreaVariants, colorSliderVariants, colorSwatchPickerVariants, colorSwatchVariants, colorWheelVariants, contextualHelpTriggerVariants, copyButtonVariants, currencyInputVariants, datePickerVariants, defaultPasswordRequirements, drawerMenuButtonVariants, emojiPickerVariants, emptyStateVariants, fabVariants, fileUploadVariants, formatCurrency, formatDate, formatFileSize, formatPhoneNumber, fullCalendarVariants, getFileIcon, getMaskPlaceholder, getPasswordStrengthColor, getPasswordStrengthLabel, gridListItemVariants, gridListVariants, hexToRgb, hsvToRgb, imageCropperVariants, imageVariants, infiniteScrollLoaderVariants, infiniteScrollVariants, inputOTPVariants, kbdVariants, listItemVariants, listVariants, loadingVariants, maskedInputVariants, modalContentVariants, navbarVariants, navigationMenuLinkStyle, navigationMenuTriggerStyle, parseDate, parseFormattedValue, phoneInputVariants, pullToRefreshVariants, qrCodeVariants, rangeSliderVariants, ratingVariants, rgbToHex, rgbToHsv, selectVariants, skeletonVariants, snippetVariants, spinnerVariants, statCardVariants, stepVariants, stepsVariants, swipeActionVariants, swipeActionsVariants, colorMap as switchColors, tagVariants, textBadgeVariants, themeToggleVariants, timeInputVariants, timelineItemVariants, timelineVariants, toggleVariants, treeItemVariants, treeVariants, unmask, useAnimatedValue, useAsync, useAsyncRetry, useBodyScrollLock, useBooleanToggle, useBreakpoint, useBreakpoints, useButtonGroup, useCarousel, useClickOutside, useClickOutsideMultiple, useConfetti, useCopy, useCopyToClipboard, useCountdown, useCounter, useCycle, useDebounce, useDebouncedCallback, useDebouncedCallbackWithControls, useDelayedValue, useDisclosure, useDisclosureOpen, useDistance, useDocumentIsVisible, useDocumentVisibility, useDocumentVisibilityCallback, useDrawer, useElementSize, useEventListener, useEventListenerRef, useFetch, useFieldContext, useFocusTrap, useFocusTrapRef, useFormContext, useFullscreen, useFullscreenRef, useGeolocation, useHotkeys, useHotkeysMap, useHover, useHoverDelay, useHoverProps, useHoverRef, useIdle, useIdleCallback, useIncrementCounter, useIntersectionObserver, useIntersectionObserverRef, useInterval, useIntervalControls, useIsDesktop, useIsMobile, useIsTablet, useKeyPress, useKeyPressed, useKeyboardShortcut, useLazyLoad, useList, useLocalStorage, useLongPress, useMap, useMediaPermission, useMediaQuery, useMouse, useMouseElement, useMouseElementRef, useMutation, useMutationObserver, useMutationObserverRef, useNotificationPermission, useOnlineStatus, useOnlineStatusCallback, usePermission, usePrefersColorScheme, usePrefersReducedMotion, usePrevious, usePreviousDistinct, usePreviousWithInitial, useQueue, useRafLoop, useRecord, useResizeObserver, useResizeObserverRef, useScrollLock, useScrollPosition, useSelection, useSessionStorage, useSet, useSpeechRecognition, useSpeechSynthesis, useSpotlight, useSpringValue, useStack, useThrottle, useThrottledCallback, useTimeout, useTimeoutControls, useTimeoutFlag, useTimer, useToggle, useWindowHeight, useWindowScroll, useWindowSize, useWindowWidth, userVariants, validateFile, validators };
7306
+ export { Accordion, AccordionItem, type AccordionItemProps, type AccordionProps, ActionBar, ActionBarButton, type ActionBarProps, ActionGroup, type ActionGroupItem, type ActionGroupProps, ActionSheet, type ActionSheetItem, type ActionSheetProps, Alert, AlertDescription, type AlertRadius, AlertTitle, type AlertType, type AlertVariant, type AllowDropInfo, AreaChart, type AreaChartProps, AspectRatio, AudioPlayer, type AudioPlayerProps, type AudioTrack, Autocomplete, type AutocompleteOption, type AutocompleteProps, Avatar, AvatarFallback, AvatarGroup, type AvatarGroupItem, type AvatarGroupProps, AvatarImage, BackTop, type BackTopProps, Badge, type BadgeProps, Banner, type BannerProps, BarChart, type BarChartProps, Blockquote, type BlockquoteProps, 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, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, type CarouselItemProps, CarouselNext, CarouselPrevious, type CarouselProps, type ChartDataPoint, type CheckInfo, Checkbox, Checkmark, type CheckmarkProps, type CheckmarkSize, type CheckmarkVariant, Chip, type ChipProps, CircularProgress, CloseButton, type CloseButtonProps, Code, CodeBlock, type CodeBlockProps, type CodeBlockTabItem, Collapse, type CollapseProps, Collapsible, CollapsibleContent, CollapsibleTrigger, type Color, ColorArea, type ColorAreaProps, type ColorAreaValue, ColorPicker, type ColorPickerProps, ColorSlider, type ColorSliderChannel, type ColorSliderProps, ColorSwatch, ColorSwatchPicker, type ColorSwatchPickerProps, type ColorSwatchProps, ColorWheel, type ColorWheelProps, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, type CommandItemProps, CommandList, CommandSeparator, CommandShortcut, Confetti, type ConfettiOptions, type ConfettiProps, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuPortal, ContextMenuSection, type ContextMenuSectionProps, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, ContextualHelp, type ContextualHelpProps, CopyButton, type CopyButtonProps, Counter, type CounterProps, type Country, CurrencyInput, type CurrencyInputProps, DEFAULT_COLORS, DataTable, type DataTableProps, DateField, type DateFormat, DateInput, DatePicker, type DatePickerProps, DateRangePicker, type DateRangePickerProps, type DragInfo, type DraggableConfig, Drawer, type DrawerBackdrop, DrawerBody, DrawerClose, type DrawerCollapsible, DrawerContent, DrawerDescription, DrawerFooter, DrawerGroup, DrawerGroupLabel, DrawerHeader, DrawerInset, DrawerMenu, DrawerMenuButton, DrawerMenuItem, type DrawerMode, type DrawerPlacement, type DrawerProps, DrawerProvider, DrawerSeparator, DrawerSidebar, type DrawerSidebarProps, type DrawerSize, DrawerTitle, DrawerToggle, DrawerTrigger, type DrawerVariant, type DropInfo, Dropdown, DropdownContent, type DropdownContentProps, DropdownGroup, type DropdownGroupProps, DropdownItem, type DropdownItemProps, DropdownLabel, type DropdownProps, DropdownSection, type DropdownSectionProps, DropdownSeparator, type DropdownSeparatorProps, DropdownShortcut, DropdownSub, DropdownSubContent, type DropdownSubContentProps, type DropdownSubProps, DropdownSubTrigger, type DropdownSubTriggerProps, DropdownTrigger, type DropdownTriggerProps, EMOJIS, EMOJI_CATEGORIES, EmojiPicker, type EmojiPickerProps, EmptyState, Expand, type ExpandInfo, type ExpandProps, FAB, type FABAction, Fade, type FadeProps, FieldContext, type FieldContextValue, type FieldState, type FileRejection, FileUpload, type FileUploadProps, type FlatCheckInfo, type FlatSelectInfo, 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, GridList, type GridListItem, type GridListProps, H1, type H1Props, H2, type H2Props, H3, type H3Props, H4, type H4Props, HeatmapCalendar, type HeatmapCalendarProps, type HeatmapValue, HoverCard, HoverCardContent, HoverCardTrigger, Image, ImageComparison, type ImageComparisonProps, ImageCropper, type ImageCropperProps, ImageViewer, type ImageViewerProps, ImageViewerTrigger, type ImageViewerTriggerProps, InfiniteScroll, type InfiniteScrollProps, InlineCode, type InlineCodeProps, Input, InputOTP, InputOTPGroup, type InputOTPProps, InputOTPSeparator, InputOTPSlot, type InputOTPSlotProps, type InputProps, KanbanBoard, type KanbanBoardProps, type KanbanCard, type KanbanColumn, Kbd, type KbdProps, Label, type Language, Large, type LargeProps, Lead, type LeadProps, LineChart, type LineChartProps, Link, type LinkProps, List, type ListDataItem, ListItemComponent as ListItem, type ListItemComponentProps, ListItemText, type ListItemTextProps, type ListProps, Loading, type LoadingProps, MASK_PRESETS, type MaskChar, type MaskDefinition, type MaskPreset, MaskedInput, type MaskedInputProps, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSection, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, Modal, type ModalBackdrop, ModalBody, ModalClose, ModalContent, ModalDescription, ModalFooter, ModalHeader, ModalOverlay, type ModalPlacement, ModalPortal, type ModalProps, ModalRoot, type ModalScrollBehavior, ModalTitle, ModalTrigger, Muted, type MutedProps, Navbar, NavbarBrand, NavbarContent, NavbarItem, NavbarLink, type NavbarProps, NavigationMenu, NavigationMenuContent, type NavigationMenuContentProps, NavigationMenuIndicator, type NavigationMenuIndicatorProps, NavigationMenuItem, type NavigationMenuItemProps, NavigationMenuLink, type NavigationMenuLinkProps, NavigationMenuList, type NavigationMenuListProps, type NavigationMenuProps, NavigationMenuTrigger, type NavigationMenuTriggerProps, NavigationMenuViewport, NumberField, type NumberFieldProps, NumberInput, type NumberInputProps, PDFViewer, type PDFViewerProps, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, type PaginationState, Paragraph, type ParagraphProps, Parallax, type ParallaxProps, PasswordInput, type PasswordInputProps, type PasswordRequirement, PhoneInput, type PhoneInputProps, PieChart, type PieChartProps, Pop, type PopProps, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Progress, PullToRefresh, type PullToRefreshProps, Pulse, type PulseProps, type PulseSpeed, QRCode, type QRCodeProps, type QRCodeRef, Radio, RadioContent, type RadioContentProps, RadioControl, type RadioControlProps, RadioDescription, type RadioDescriptionProps, RadioGroup, type RadioGroupProps, RadioIndicator, type RadioIndicatorProps, RadioLabel, type RadioLabelProps, type RadioProps, type Radius, RangeSlider, type RangeSliderProps, Rating, type RatingProps, ReeverUIContext, type ReeverUIContextValue, ReeverUIProvider, type ReeverUIProviderProps, ResizableHandle, type ResizableHandleProps, ResizablePanel, ResizablePanelGroup, type ResizablePanelGroupProps, Ripple, type RippleProps, Rotate, type RotateProps, Scale, type ScaleOrigin, type ScaleProps, ScrollArea, type ScrollAreaProps, ScrollProgress, type ScrollProgressPosition, type ScrollProgressProps, ScrollReveal, type ScrollRevealDirection, type ScrollRevealProps, Select, SelectField, type SelectFieldProps, type SelectInfo, type SelectOption, type SelectProps, Separator, type SeparatorProps, Shake, type ShakeIntensity, type ShakeProps, Shimmer, type ShimmerDirection, type ShimmerProps, Skeleton, Slide, type SlideDirection, type SlideProps, Slider, Small, type SmallProps, Snippet, type SortDirection, type SortState, Sparkles, type SparklesProps, Spinner, type SpotlightItem, SpotlightSearch, type SpotlightSearchProps, StatCard, Step, type StepProps, Steps, type StepsProps, type SwipeAction, SwipeActions, type SwipeActionsProps, Switch, type SwitchColor, type SwitchProps, type SwitchSize, TabbedCodeBlock, type TabbedCodeBlockProps, Table, TableBody, TableCaption, TableCell, type TableColumn, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, type Tag, TagInput, type TagInputProps, TextBadge, type TextBadgeProps, TextField, type TextFieldProps, TextReveal, type TextRevealDirection, type TextRevealProps, Textarea, TextareaField, type TextareaFieldProps, type TextareaProps, ThemeProvider, type ThemeProviderProps, ThemeToggle, type ThemeToggleProps, TimeInput, type TimeInputProps, TimePicker, type TimePickerProps, Timeline, TimelineContent, TimelineItem, TimelineOpposite, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, type TooltipProps, type TransitionProps, Tree, type TreeNode, type TreeProps, Typewriter, type TypewriterProps, UL, type ULProps, type UploadedFile, User, type ValidationRule, VideoPlayer, type VideoPlayerProps, type VideoSource, type ViewerImage, Wiggle, type WiggleProps, WordRotate, type WordRotateProps, actionBarVariants, actionGroupVariants, actionSheetItemVariants, alertVariants, applyMask, autocompleteInputVariants, avatarGroupVariants, backTopVariants, badgeIndicatorVariants, bannerVariants, bottomNavigationVariants, buttonGroupVariants, buttonVariants, calculatePasswordStrength, cardVariants, carouselVariants, chartContainerVariants, chipVariants, circularProgressVariants, closeButtonVariants, cn, codeVariants, colorAreaVariants, colorSliderVariants, colorSwatchPickerVariants, colorSwatchVariants, colorWheelVariants, contextualHelpTriggerVariants, copyButtonVariants, currencyInputVariants, datePickerVariants, defaultPasswordRequirements, drawerMenuButtonVariants, emojiPickerVariants, emptyStateVariants, fabVariants, fileUploadVariants, formatCurrency, formatDate, formatFileSize, formatPhoneNumber, fullCalendarVariants, getFileIcon, getMaskPlaceholder, getPasswordStrengthColor, getPasswordStrengthLabel, gridListItemVariants, gridListVariants, hexToRgb, hsvToRgb, imageCropperVariants, imageVariants, infiniteScrollLoaderVariants, infiniteScrollVariants, inputOTPVariants, kbdVariants, listItemVariants, listVariants, loadingVariants, maskedInputVariants, modalContentVariants, navbarVariants, navigationMenuLinkStyle, navigationMenuTriggerStyle, parseDate, parseFormattedValue, phoneInputVariants, pullToRefreshVariants, qrCodeVariants, rangeSliderVariants, ratingVariants, rgbToHex, rgbToHsv, selectVariants, skeletonVariants, snippetVariants, spinnerVariants, statCardVariants, stepVariants, stepsVariants, swipeActionVariants, swipeActionsVariants, colorMap as switchColors, tagVariants, textBadgeVariants, themeToggleVariants, timeInputVariants, timelineItemVariants, timelineVariants, toggleVariants, treeItemVariants, treeVariants, unmask, useAnimatedValue, useAsync, useAsyncRetry, useBodyScrollLock, useBooleanToggle, useBreakpoint, useBreakpoints, useButtonGroup, useCarousel, useClickOutside, useClickOutsideMultiple, useConfetti, useCopy, useCopyToClipboard, useCountdown, useCounter, useCycle, useDebounce, useDebouncedCallback, useDebouncedCallbackWithControls, useDelayedValue, useDisclosure, useDisclosureOpen, useDistance, useDocumentIsVisible, useDocumentVisibility, useDocumentVisibilityCallback, useDrawer, useElementSize, useEventListener, useEventListenerRef, useFetch, useFieldContext, useFocusTrap, useFocusTrapRef, useFormContext, useFullscreen, useFullscreenRef, useGeolocation, useHotkeys, useHotkeysMap, useHover, useHoverDelay, useHoverProps, useHoverRef, useIdle, useIdleCallback, useIncrementCounter, useIntersectionObserver, useIntersectionObserverRef, useInterval, useIntervalControls, useIsDesktop, useIsMobile, useIsTablet, useKeyPress, useKeyPressed, useKeyboardShortcut, useLazyLoad, useList, useLocalStorage, useLongPress, useMap, useMediaPermission, useMediaQuery, useMouse, useMouseElement, useMouseElementRef, useMutation, useMutationObserver, useMutationObserverRef, useNotificationPermission, useOnlineStatus, useOnlineStatusCallback, usePermission, usePrefersColorScheme, usePrefersReducedMotion, usePrevious, usePreviousDistinct, usePreviousWithInitial, useQueue, useRafLoop, useRecord, useReeverUI, useResizeObserver, useResizeObserverRef, useScrollLock, useScrollPosition, useSelection, useSessionStorage, useSet, useSpeechRecognition, useSpeechSynthesis, useSpotlight, useSpringValue, useStack, useThrottle, useThrottledCallback, useTimeout, useTimeoutControls, useTimeoutFlag, useTimer, useToggle, useWindowHeight, useWindowScroll, useWindowSize, useWindowWidth, userVariants, validateFile, validators };