@reeverdev/ui 0.3.9 → 0.4.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.cjs +9 -9
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +142 -19
- package/dist/index.d.ts +142 -19
- package/dist/index.js +9 -9
- package/dist/index.js.map +1 -1
- package/dist/plugin.cjs +1 -1
- package/dist/plugin.cjs.map +1 -1
- package/dist/plugin.d.cts +4 -4
- package/dist/plugin.d.ts +4 -4
- package/dist/plugin.js +1 -1
- package/dist/plugin.js.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -87,7 +87,9 @@ declare const CardContent: React$1.ForwardRefExoticComponent<React$1.HTMLAttribu
|
|
|
87
87
|
declare const CardFooter: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
88
88
|
|
|
89
89
|
type CheckedState = boolean | "indeterminate";
|
|
90
|
-
|
|
90
|
+
type CheckboxColor = "default" | "success" | "warning" | "danger";
|
|
91
|
+
type CheckboxSize = "sm" | "md" | "lg";
|
|
92
|
+
interface CheckboxProps extends Omit<React$1.ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "defaultChecked" | "disabled" | "color"> {
|
|
91
93
|
checked?: CheckedState;
|
|
92
94
|
defaultChecked?: CheckedState;
|
|
93
95
|
onCheckedChange?: (checked: CheckedState) => void;
|
|
@@ -99,6 +101,10 @@ interface CheckboxProps extends Omit<React$1.ButtonHTMLAttributes<HTMLButtonElem
|
|
|
99
101
|
text?: React$1.ReactNode;
|
|
100
102
|
/** Description text below the text */
|
|
101
103
|
description?: string;
|
|
104
|
+
/** Size of the checkbox */
|
|
105
|
+
size?: CheckboxSize;
|
|
106
|
+
/** Color of the checkbox */
|
|
107
|
+
color?: CheckboxColor;
|
|
102
108
|
}
|
|
103
109
|
declare const Checkbox: React$1.ForwardRefExoticComponent<CheckboxProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
104
110
|
|
|
@@ -141,10 +147,10 @@ interface SeparatorProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
|
141
147
|
declare const Separator: React$1.ForwardRefExoticComponent<SeparatorProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
142
148
|
|
|
143
149
|
declare const colorMap: {
|
|
144
|
-
readonly default: "bg-
|
|
145
|
-
readonly success: "bg-green-
|
|
146
|
-
readonly warning: "bg-
|
|
147
|
-
readonly danger: "bg-red-
|
|
150
|
+
readonly default: "bg-primary";
|
|
151
|
+
readonly success: "bg-green-500";
|
|
152
|
+
readonly warning: "bg-yellow-500";
|
|
153
|
+
readonly danger: "bg-red-500";
|
|
148
154
|
};
|
|
149
155
|
declare const sizeMap: {
|
|
150
156
|
readonly sm: {
|
|
@@ -201,6 +207,8 @@ interface TextareaProps extends Omit<React$1.TextareaHTMLAttributes<HTMLTextArea
|
|
|
201
207
|
errorMessage?: string;
|
|
202
208
|
/** Whether the textarea is in error state */
|
|
203
209
|
isInvalid?: boolean;
|
|
210
|
+
/** Show character count */
|
|
211
|
+
showCount?: boolean;
|
|
204
212
|
}
|
|
205
213
|
declare const Textarea: React$1.ForwardRefExoticComponent<TextareaProps & React$1.RefAttributes<HTMLTextAreaElement>>;
|
|
206
214
|
|
|
@@ -494,7 +502,7 @@ declare const ContextMenuShortcut: {
|
|
|
494
502
|
displayName: string;
|
|
495
503
|
};
|
|
496
504
|
|
|
497
|
-
type RadioColor = "default" | "
|
|
505
|
+
type RadioColor = "default" | "success" | "warning" | "danger";
|
|
498
506
|
interface RadioGroupProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "defaultValue" | "onChange"> {
|
|
499
507
|
value?: string;
|
|
500
508
|
defaultValue?: string;
|
|
@@ -531,9 +539,16 @@ declare const RadioDescription: React$1.ForwardRefExoticComponent<RadioDescripti
|
|
|
531
539
|
interface RadioContentProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
532
540
|
}
|
|
533
541
|
declare const RadioContent: React$1.ForwardRefExoticComponent<RadioContentProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
542
|
+
interface RadioGroupItemProps extends Omit<React$1.HTMLAttributes<HTMLLabelElement>, "value"> {
|
|
543
|
+
value: string;
|
|
544
|
+
label?: React$1.ReactNode;
|
|
545
|
+
description?: React$1.ReactNode;
|
|
546
|
+
isDisabled?: boolean;
|
|
547
|
+
}
|
|
548
|
+
declare const RadioGroupItem: React$1.ForwardRefExoticComponent<RadioGroupItemProps & React$1.RefAttributes<HTMLLabelElement>>;
|
|
534
549
|
|
|
535
550
|
declare const toggleVariants: (props?: ({
|
|
536
|
-
variant?: "solid" | "bordered" | "
|
|
551
|
+
variant?: "solid" | "bordered" | "flat" | null | undefined;
|
|
537
552
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
538
553
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
539
554
|
interface ToggleProps extends Omit<React$1.ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "disabled">, VariantProps<typeof toggleVariants> {
|
|
@@ -565,7 +580,9 @@ interface ToggleGroupItemProps extends Omit<React$1.ButtonHTMLAttributes<HTMLBut
|
|
|
565
580
|
}
|
|
566
581
|
declare const ToggleGroupItem: React$1.ForwardRefExoticComponent<ToggleGroupItemProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
567
582
|
|
|
568
|
-
|
|
583
|
+
type SliderSize = "sm" | "md" | "lg";
|
|
584
|
+
type SliderColor = "default" | "success" | "warning" | "danger";
|
|
585
|
+
interface SliderProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "onChange" | "defaultValue" | "color"> {
|
|
569
586
|
value?: number[];
|
|
570
587
|
defaultValue?: number[];
|
|
571
588
|
onValueChange?: (value: number[]) => void;
|
|
@@ -575,7 +592,11 @@ interface SliderProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "onCh
|
|
|
575
592
|
step?: number;
|
|
576
593
|
isDisabled?: boolean;
|
|
577
594
|
orientation?: "horizontal" | "vertical";
|
|
595
|
+
/** @deprecated Use `color` instead */
|
|
578
596
|
trackColor?: "primary" | "success" | "warning" | "danger" | string;
|
|
597
|
+
color?: SliderColor | string;
|
|
598
|
+
size?: SliderSize;
|
|
599
|
+
label?: React$1.ReactNode;
|
|
579
600
|
name?: string;
|
|
580
601
|
}
|
|
581
602
|
declare const Slider: React$1.ForwardRefExoticComponent<SliderProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
@@ -625,7 +646,7 @@ declare const CollapsibleContent: React$1.ForwardRefExoticComponent<CollapsibleC
|
|
|
625
646
|
declare const progressVariants: (props?: ({
|
|
626
647
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
627
648
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
628
|
-
type ProgressColor = "primary" | "
|
|
649
|
+
type ProgressColor = "primary" | "success" | "warning" | "danger" | (string & {});
|
|
629
650
|
interface ProgressProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "color">, VariantProps<typeof progressVariants> {
|
|
630
651
|
value?: number;
|
|
631
652
|
max?: number;
|
|
@@ -807,6 +828,81 @@ declare const DrawerGroupLabel: React$1.ForwardRefExoticComponent<React$1.HTMLAt
|
|
|
807
828
|
declare const DrawerInset: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
808
829
|
declare const DrawerProvider: React$1.ForwardRefExoticComponent<DrawerProps & React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
809
830
|
|
|
831
|
+
type SidebarSide = "left" | "right";
|
|
832
|
+
type SidebarVariant = "sidebar" | "floating" | "inset";
|
|
833
|
+
type SidebarCollapsible = "offcanvas" | "icon" | "none";
|
|
834
|
+
interface SidebarContextValue {
|
|
835
|
+
state: "expanded" | "collapsed";
|
|
836
|
+
isOpen: boolean;
|
|
837
|
+
setOpen: (open: boolean) => void;
|
|
838
|
+
isOpenMobile: boolean;
|
|
839
|
+
setOpenMobile: (open: boolean) => void;
|
|
840
|
+
isMobile: boolean;
|
|
841
|
+
toggleSidebar: () => void;
|
|
842
|
+
side: SidebarSide;
|
|
843
|
+
variant: SidebarVariant;
|
|
844
|
+
collapsible: SidebarCollapsible;
|
|
845
|
+
}
|
|
846
|
+
declare function useSidebar(): SidebarContextValue;
|
|
847
|
+
declare function useSidebarSafe(): SidebarContextValue | null;
|
|
848
|
+
interface SidebarProviderProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
849
|
+
/** Default open state for uncontrolled usage @default true */
|
|
850
|
+
defaultOpen?: boolean;
|
|
851
|
+
/** Controlled open state */
|
|
852
|
+
isOpen?: boolean;
|
|
853
|
+
/** Callback when open state changes */
|
|
854
|
+
onOpenChange?: (open: boolean) => void;
|
|
855
|
+
}
|
|
856
|
+
declare const SidebarProvider: React$1.ForwardRefExoticComponent<SidebarProviderProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
857
|
+
interface SidebarProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
858
|
+
/** Which side the sidebar appears on @default "left" */
|
|
859
|
+
side?: SidebarSide;
|
|
860
|
+
/** Visual style variant @default "sidebar" */
|
|
861
|
+
variant?: SidebarVariant;
|
|
862
|
+
/** How the sidebar collapses @default "offcanvas" */
|
|
863
|
+
collapsible?: SidebarCollapsible;
|
|
864
|
+
}
|
|
865
|
+
declare const Sidebar: React$1.ForwardRefExoticComponent<SidebarProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
866
|
+
declare const SidebarHeader: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
867
|
+
declare const SidebarContent: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
868
|
+
declare const SidebarFooter: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
869
|
+
declare const SidebarGroup: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
870
|
+
declare const SidebarGroupLabel: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
871
|
+
declare const SidebarGroupAction: React$1.ForwardRefExoticComponent<React$1.ButtonHTMLAttributes<HTMLButtonElement> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
872
|
+
declare const SidebarGroupContent: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
873
|
+
declare const SidebarMenu: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLUListElement> & React$1.RefAttributes<HTMLUListElement>>;
|
|
874
|
+
declare const SidebarMenuItem: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLLIElement> & React$1.RefAttributes<HTMLLIElement>>;
|
|
875
|
+
declare const sidebarMenuButtonVariants: (props?: ({
|
|
876
|
+
variant?: "bordered" | "default" | "ghost" | null | undefined;
|
|
877
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
878
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
879
|
+
interface SidebarMenuButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof sidebarMenuButtonVariants> {
|
|
880
|
+
/** Whether the menu item is currently active */
|
|
881
|
+
isActive?: boolean;
|
|
882
|
+
/** Show tooltip when collapsed */
|
|
883
|
+
tooltip?: string | React$1.ReactNode;
|
|
884
|
+
/** Render as child element (for links) */
|
|
885
|
+
asChild?: boolean;
|
|
886
|
+
}
|
|
887
|
+
declare const SidebarMenuButton: React$1.ForwardRefExoticComponent<SidebarMenuButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
888
|
+
declare const SidebarMenuAction: React$1.ForwardRefExoticComponent<React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
889
|
+
showOnHover?: boolean;
|
|
890
|
+
} & React$1.RefAttributes<HTMLButtonElement>>;
|
|
891
|
+
declare const SidebarMenuBadge: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
892
|
+
declare const SidebarMenuSub: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLUListElement> & React$1.RefAttributes<HTMLUListElement>>;
|
|
893
|
+
declare const SidebarMenuSubItem: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLLIElement> & React$1.RefAttributes<HTMLLIElement>>;
|
|
894
|
+
declare const SidebarMenuSubButton: React$1.ForwardRefExoticComponent<React$1.AnchorHTMLAttributes<HTMLAnchorElement> & {
|
|
895
|
+
isActive?: boolean;
|
|
896
|
+
size?: "sm" | "md";
|
|
897
|
+
} & React$1.RefAttributes<HTMLAnchorElement>>;
|
|
898
|
+
declare const SidebarMenuSkeleton: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & {
|
|
899
|
+
showIcon?: boolean;
|
|
900
|
+
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
901
|
+
declare const SidebarTrigger: React$1.ForwardRefExoticComponent<React$1.ButtonHTMLAttributes<HTMLButtonElement> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
902
|
+
declare const SidebarRail: React$1.ForwardRefExoticComponent<React$1.ButtonHTMLAttributes<HTMLButtonElement> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
903
|
+
declare const SidebarSeparator: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
904
|
+
declare const SidebarInset: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
905
|
+
|
|
810
906
|
declare const Table: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableElement> & React$1.RefAttributes<HTMLTableElement>>;
|
|
811
907
|
declare const TableHeader: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableSectionElement> & React$1.RefAttributes<HTMLTableSectionElement>>;
|
|
812
908
|
declare const TableBody: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableSectionElement> & React$1.RefAttributes<HTMLTableSectionElement>>;
|
|
@@ -1131,6 +1227,22 @@ interface PasswordInputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputE
|
|
|
1131
1227
|
* @default "md"
|
|
1132
1228
|
*/
|
|
1133
1229
|
radius?: "none" | "sm" | "md" | "lg" | "full";
|
|
1230
|
+
/**
|
|
1231
|
+
* Label for the input
|
|
1232
|
+
*/
|
|
1233
|
+
label?: React$1.ReactNode;
|
|
1234
|
+
/**
|
|
1235
|
+
* Whether the input is invalid
|
|
1236
|
+
*/
|
|
1237
|
+
isInvalid?: boolean;
|
|
1238
|
+
/**
|
|
1239
|
+
* Error message to display
|
|
1240
|
+
*/
|
|
1241
|
+
errorMessage?: React$1.ReactNode;
|
|
1242
|
+
/**
|
|
1243
|
+
* Whether the input is required
|
|
1244
|
+
*/
|
|
1245
|
+
isRequired?: boolean;
|
|
1134
1246
|
}
|
|
1135
1247
|
declare const PasswordInput: React$1.ForwardRefExoticComponent<PasswordInputProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
1136
1248
|
|
|
@@ -1260,8 +1372,8 @@ interface RatingProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "onCh
|
|
|
1260
1372
|
declare const Rating: React$1.ForwardRefExoticComponent<RatingProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1261
1373
|
|
|
1262
1374
|
declare const chipVariants: (props?: ({
|
|
1263
|
-
variant?: "solid" | "bordered" | "
|
|
1264
|
-
color?: "success" | "warning" | "danger" | "primary" |
|
|
1375
|
+
variant?: "solid" | "bordered" | "flat" | "light" | null | undefined;
|
|
1376
|
+
color?: "success" | "warning" | "danger" | "primary" | null | undefined;
|
|
1265
1377
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
1266
1378
|
radius?: "none" | "sm" | "md" | "lg" | "full" | null | undefined;
|
|
1267
1379
|
clickable?: boolean | null | undefined;
|
|
@@ -1343,7 +1455,7 @@ declare const InputOTPSlot: React$1.ForwardRefExoticComponent<InputOTPSlotProps
|
|
|
1343
1455
|
declare const InputOTPSeparator: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
1344
1456
|
|
|
1345
1457
|
declare const tagVariants: (props?: ({
|
|
1346
|
-
variant?: "solid" | "bordered" | "flat" |
|
|
1458
|
+
variant?: "solid" | "bordered" | "flat" | null | undefined;
|
|
1347
1459
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
1348
1460
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1349
1461
|
interface Tag {
|
|
@@ -1376,6 +1488,7 @@ interface TagInputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElemen
|
|
|
1376
1488
|
}
|
|
1377
1489
|
declare const TagInput: React$1.ForwardRefExoticComponent<TagInputProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
1378
1490
|
|
|
1491
|
+
type EmptyStateSize = "sm" | "md" | "lg";
|
|
1379
1492
|
interface EmptyStateProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
1380
1493
|
/** Icon to display */
|
|
1381
1494
|
icon?: React$1.ReactNode;
|
|
@@ -1385,6 +1498,8 @@ interface EmptyStateProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
|
1385
1498
|
description?: string;
|
|
1386
1499
|
/** Action button or link */
|
|
1387
1500
|
action?: React$1.ReactNode;
|
|
1501
|
+
/** Size of the empty state */
|
|
1502
|
+
size?: EmptyStateSize;
|
|
1388
1503
|
}
|
|
1389
1504
|
declare const EmptyState: React$1.ForwardRefExoticComponent<EmptyStateProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1390
1505
|
|
|
@@ -1533,7 +1648,10 @@ interface FileRejection {
|
|
|
1533
1648
|
message: string;
|
|
1534
1649
|
}[];
|
|
1535
1650
|
}
|
|
1536
|
-
|
|
1651
|
+
type FileUploadSize = "sm" | "md" | "lg";
|
|
1652
|
+
interface FileUploadProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "onDrop">, Omit<VariantProps<typeof fileUploadVariants>, "size"> {
|
|
1653
|
+
/** Size of the file upload area */
|
|
1654
|
+
size?: FileUploadSize;
|
|
1537
1655
|
/** Callback when files are dropped */
|
|
1538
1656
|
onFilesChange?: (files: File[]) => void;
|
|
1539
1657
|
/** Callback when file is rejected */
|
|
@@ -1801,7 +1919,7 @@ declare const NavbarLink: React$1.ForwardRefExoticComponent<React$1.AnchorHTMLAt
|
|
|
1801
1919
|
|
|
1802
1920
|
interface LinkProps extends React$1.AnchorHTMLAttributes<HTMLAnchorElement> {
|
|
1803
1921
|
/** Text color - semantic color or custom CSS color */
|
|
1804
|
-
color?: "primary" | "
|
|
1922
|
+
color?: "primary" | "success" | "warning" | "danger" | "muted" | (string & {});
|
|
1805
1923
|
/** Underline behavior */
|
|
1806
1924
|
underline?: "none" | "hover" | "always";
|
|
1807
1925
|
/** Opens link in new tab with security attributes */
|
|
@@ -2509,6 +2627,11 @@ interface TimePickerProps {
|
|
|
2509
2627
|
* Disabled state
|
|
2510
2628
|
*/
|
|
2511
2629
|
isDisabled?: boolean;
|
|
2630
|
+
/**
|
|
2631
|
+
* Hide the "Now" button
|
|
2632
|
+
* @default false
|
|
2633
|
+
*/
|
|
2634
|
+
hideNow?: boolean;
|
|
2512
2635
|
/**
|
|
2513
2636
|
* Additional class name
|
|
2514
2637
|
*/
|
|
@@ -2999,7 +3122,7 @@ interface ThemeToggleProps extends VariantProps<typeof themeToggleVariants> {
|
|
|
2999
3122
|
declare const ThemeToggle: React$1.ForwardRefExoticComponent<ThemeToggleProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
3000
3123
|
|
|
3001
3124
|
type Radius = "none" | "sm" | "md" | "lg" | "full";
|
|
3002
|
-
type Color = "default" | "primary" | "
|
|
3125
|
+
type Color = "default" | "primary" | "success" | "warning" | "danger";
|
|
3003
3126
|
interface ReeverUIContextValue {
|
|
3004
3127
|
/** Disable all animations globally */
|
|
3005
3128
|
disableAnimation: boolean;
|
|
@@ -3496,7 +3619,7 @@ interface BottomNavigationProps extends React$1.HTMLAttributes<HTMLDivElement>,
|
|
|
3496
3619
|
declare const BottomNavigation: React$1.ForwardRefExoticComponent<BottomNavigationProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
3497
3620
|
|
|
3498
3621
|
declare const actionSheetItemVariants: (props?: ({
|
|
3499
|
-
variant?: "default" | "
|
|
3622
|
+
variant?: "default" | "danger" | null | undefined;
|
|
3500
3623
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
3501
3624
|
interface ActionSheetItem {
|
|
3502
3625
|
key: string;
|
|
@@ -3539,14 +3662,14 @@ declare const swipeActionsVariants: (props?: ({
|
|
|
3539
3662
|
variant?: "default" | "card" | null | undefined;
|
|
3540
3663
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
3541
3664
|
declare const swipeActionVariants: (props?: ({
|
|
3542
|
-
variant?: "success" | "warning" | "danger" | "primary" |
|
|
3665
|
+
variant?: "success" | "warning" | "danger" | "primary" | null | undefined;
|
|
3543
3666
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
3544
3667
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
3545
3668
|
interface SwipeAction {
|
|
3546
3669
|
key: string;
|
|
3547
3670
|
label: string;
|
|
3548
3671
|
icon?: React$1.ReactNode;
|
|
3549
|
-
variant?: "primary" | "
|
|
3672
|
+
variant?: "primary" | "success" | "warning" | "danger";
|
|
3550
3673
|
onAction?: () => void;
|
|
3551
3674
|
}
|
|
3552
3675
|
interface SwipeActionsProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof swipeActionsVariants> {
|
|
@@ -7940,4 +8063,4 @@ declare function maskPhone(phone: string, visibleEnd?: number): string;
|
|
|
7940
8063
|
*/
|
|
7941
8064
|
declare function maskCreditCard(cardNumber: string): string;
|
|
7942
8065
|
|
|
7943
|
-
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, ButtonGroupSeparator, type ButtonGroupSeparatorProps, type ButtonProps, type ByteFormatOptions, 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, type CompactFormatOptions, 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, type CurrencyFormatOptions, CurrencyInput, type CurrencyInputProps, DEFAULT_COLORS, DataTable, type DataTableProps, type DateFormat, type 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, type EmptyStateProps, 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, type FormatOptions, FullCalendar, type FullCalendarProps, Glow, type GlowProps, GridList, type GridListItem, type GridListProps, H1, type H1Props, H2, type H2Props, H3, type H3Props, H4, type H4Props, type HSL, type HSLA, 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, 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, type NumberFormatOptions, 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, type PercentFormatOptions, 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, type RGB, type RGBA, 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, type RelativeTimeOptions, 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, addDays, addHours, addMinutes, addMonths, addYears, alertVariants, alpha, applyMask, autocompleteInputVariants, avatarGroupVariants, backTopVariants, badgeIndicatorVariants, bannerVariants, bottomNavigationVariants, buttonVariants, calculatePasswordStrength, camelCase, capitalize, cardVariants, carouselVariants, chartContainerVariants, chipVariants, circularProgressVariants, closeButtonVariants, cn, codeVariants, colorAreaVariants, colorSliderVariants, colorSwatchPickerVariants, colorSwatchVariants, colorWheelVariants, complement, contextualHelpTriggerVariants, copyButtonVariants, currencyInputVariants, darken, datePickerVariants, defaultPasswordRequirements, desaturate, differenceInDays, differenceInHours, differenceInMinutes, drawerMenuButtonVariants, emojiPickerVariants, endOfDay, endOfMonth, fabVariants, fileUploadVariants, formatBytes, formatCompact, formatCreditCard, formatCurrency, formatDate, formatFileSize, formatISO, formatISODateTime, formatList, formatNumber, formatOrdinal, formatPercent, formatPhone, formatPhoneNumber, formatRelative, formatTime, fullCalendarVariants, getContrastRatio, getFileIcon, getInitials, getLuminance, getMaskPlaceholder, getPasswordStrengthColor, getPasswordStrengthLabel, getTextColor, gridListItemVariants, gridListVariants, hexToHsl, hexToRgb, hexToRgba, hslToHex, hslToRgb, imageCropperVariants, imageVariants, infiniteScrollLoaderVariants, infiniteScrollVariants, inputOTPVariants, invert, isDarkColor, isFuture, isLightColor, isPast, isSameDay, isSameMonth, isSameYear, isToday, isTomorrow, isValidDate, isYesterday, kbdVariants, kebabCase, lighten, listItemVariants, listVariants, mask, maskCreditCard, maskEmail, maskPhone, maskedInputVariants, meetsContrastAA, meetsContrastAAA, mix, modalContentVariants, navbarVariants, navigationMenuLinkStyle, navigationMenuTriggerStyle, parseColor, parseDate, pascalCase, phoneInputVariants, pluralize, pullToRefreshVariants, qrCodeVariants, rangeSliderVariants, ratingVariants, rgbToHex, rgbToHsl, rgbaToHex, saturate, selectVariants, sentenceCase, skeletonVariants, slugify, snakeCase, snippetVariants, spinnerVariants, startOfDay, startOfMonth, statCardVariants, stepVariants, stepsVariants, swipeActionVariants, swipeActionsVariants, colorMap as switchColors, tagVariants, textBadgeVariants, themeToggleVariants, timeAgo, timeInputVariants, timelineItemVariants, timelineVariants, titleCase, toggleVariants, treeItemVariants, treeVariants, truncate, truncateMiddle, 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 };
|
|
8066
|
+
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, ButtonGroupSeparator, type ButtonGroupSeparatorProps, type ButtonProps, type ByteFormatOptions, 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, type CompactFormatOptions, 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, type CurrencyFormatOptions, CurrencyInput, type CurrencyInputProps, DEFAULT_COLORS, DataTable, type DataTableProps, type DateFormat, type 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, type EmptyStateProps, 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, type FormatOptions, FullCalendar, type FullCalendarProps, Glow, type GlowProps, GridList, type GridListItem, type GridListProps, H1, type H1Props, H2, type H2Props, H3, type H3Props, H4, type H4Props, type HSL, type HSLA, 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, 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, type NumberFormatOptions, 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, type PercentFormatOptions, 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, type RGB, type RGBA, Radio, RadioContent, type RadioContentProps, RadioControl, type RadioControlProps, RadioDescription, type RadioDescriptionProps, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioGroupProps, RadioIndicator, type RadioIndicatorProps, RadioLabel, type RadioLabelProps, type RadioProps, type Radius, RangeSlider, type RangeSliderProps, Rating, type RatingProps, ReeverUIContext, type ReeverUIContextValue, ReeverUIProvider, type ReeverUIProviderProps, type RelativeTimeOptions, 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, Sidebar, type SidebarCollapsible, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, type SidebarMenuButtonProps, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, type SidebarProps, SidebarProvider, type SidebarProviderProps, SidebarRail, SidebarSeparator, type SidebarSide, SidebarTrigger, type SidebarVariant, 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, addDays, addHours, addMinutes, addMonths, addYears, alertVariants, alpha, applyMask, autocompleteInputVariants, avatarGroupVariants, backTopVariants, badgeIndicatorVariants, bannerVariants, bottomNavigationVariants, buttonVariants, calculatePasswordStrength, camelCase, capitalize, cardVariants, carouselVariants, chartContainerVariants, chipVariants, circularProgressVariants, closeButtonVariants, cn, codeVariants, colorAreaVariants, colorSliderVariants, colorSwatchPickerVariants, colorSwatchVariants, colorWheelVariants, complement, contextualHelpTriggerVariants, copyButtonVariants, currencyInputVariants, darken, datePickerVariants, defaultPasswordRequirements, desaturate, differenceInDays, differenceInHours, differenceInMinutes, drawerMenuButtonVariants, emojiPickerVariants, endOfDay, endOfMonth, fabVariants, fileUploadVariants, formatBytes, formatCompact, formatCreditCard, formatCurrency, formatDate, formatFileSize, formatISO, formatISODateTime, formatList, formatNumber, formatOrdinal, formatPercent, formatPhone, formatPhoneNumber, formatRelative, formatTime, fullCalendarVariants, getContrastRatio, getFileIcon, getInitials, getLuminance, getMaskPlaceholder, getPasswordStrengthColor, getPasswordStrengthLabel, getTextColor, gridListItemVariants, gridListVariants, hexToHsl, hexToRgb, hexToRgba, hslToHex, hslToRgb, imageCropperVariants, imageVariants, infiniteScrollLoaderVariants, infiniteScrollVariants, inputOTPVariants, invert, isDarkColor, isFuture, isLightColor, isPast, isSameDay, isSameMonth, isSameYear, isToday, isTomorrow, isValidDate, isYesterday, kbdVariants, kebabCase, lighten, listItemVariants, listVariants, mask, maskCreditCard, maskEmail, maskPhone, maskedInputVariants, meetsContrastAA, meetsContrastAAA, mix, modalContentVariants, navbarVariants, navigationMenuLinkStyle, navigationMenuTriggerStyle, parseColor, parseDate, pascalCase, phoneInputVariants, pluralize, pullToRefreshVariants, qrCodeVariants, rangeSliderVariants, ratingVariants, rgbToHex, rgbToHsl, rgbaToHex, saturate, selectVariants, sentenceCase, sidebarMenuButtonVariants, skeletonVariants, slugify, snakeCase, snippetVariants, spinnerVariants, startOfDay, startOfMonth, statCardVariants, stepVariants, stepsVariants, swipeActionVariants, swipeActionsVariants, colorMap as switchColors, tagVariants, textBadgeVariants, themeToggleVariants, timeAgo, timeInputVariants, timelineItemVariants, timelineVariants, titleCase, toggleVariants, treeItemVariants, treeVariants, truncate, truncateMiddle, 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, useSidebar, useSidebarSafe, useSpeechRecognition, useSpeechSynthesis, useSpotlight, useSpringValue, useStack, useThrottle, useThrottledCallback, useTimeout, useTimeoutControls, useTimeoutFlag, useTimer, useToggle, useWindowHeight, useWindowScroll, useWindowSize, useWindowWidth, userVariants, validateFile, validators };
|