@reeverdev/ui 0.1.49 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +4 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +88 -82
- package/dist/index.d.ts +88 -82
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -44,15 +44,23 @@ export { useTheme } from 'next-themes';
|
|
|
44
44
|
import { Transition } from 'framer-motion';
|
|
45
45
|
import { ClassValue } from 'clsx';
|
|
46
46
|
|
|
47
|
-
declare const
|
|
48
|
-
variant?: "solid" | "
|
|
49
|
-
|
|
47
|
+
declare const alertVariants: (props?: ({
|
|
48
|
+
variant?: "solid" | "bordered" | "flat" | null | undefined;
|
|
49
|
+
type?: "default" | "success" | "warning" | "info" | "error" | null | undefined;
|
|
50
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
51
|
+
type AlertType = "default" | "success" | "warning" | "info" | "error";
|
|
52
|
+
type AlertVariant = "solid" | "bordered" | "flat";
|
|
53
|
+
interface AlertProps extends React$1.HTMLAttributes<HTMLDivElement>, Omit<VariantProps<typeof alertVariants>, "type" | "variant"> {
|
|
54
|
+
type?: AlertType;
|
|
55
|
+
variant?: AlertVariant;
|
|
56
|
+
}
|
|
57
|
+
declare const Alert: React$1.ForwardRefExoticComponent<AlertProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
50
58
|
declare const AlertTitle: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLHeadingElement> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
51
59
|
declare const AlertDescription: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
52
60
|
|
|
53
61
|
declare const badgeIndicatorVariants: (props?: ({
|
|
54
62
|
variant?: "solid" | "bordered" | null | undefined;
|
|
55
|
-
color?: "default" | "success" | "warning" | "danger" | null | undefined;
|
|
63
|
+
color?: "default" | "success" | "warning" | "info" | "danger" | null | undefined;
|
|
56
64
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
57
65
|
placement?: "top-right" | "top-left" | "bottom-right" | "bottom-left" | null | undefined;
|
|
58
66
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
@@ -63,7 +71,7 @@ interface BadgeProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "color
|
|
|
63
71
|
}
|
|
64
72
|
declare const Badge: React$1.ForwardRefExoticComponent<BadgeProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
65
73
|
declare const textBadgeVariants: (props?: ({
|
|
66
|
-
color?: "default" | "success" | "warning" | "danger" | null | undefined;
|
|
74
|
+
color?: "default" | "success" | "warning" | "info" | "danger" | null | undefined;
|
|
67
75
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
68
76
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
69
77
|
interface TextBadgeProps extends Omit<React$1.HTMLAttributes<HTMLSpanElement>, "color">, VariantProps<typeof textBadgeVariants> {
|
|
@@ -71,8 +79,8 @@ interface TextBadgeProps extends Omit<React$1.HTMLAttributes<HTMLSpanElement>, "
|
|
|
71
79
|
declare const TextBadge: React$1.ForwardRefExoticComponent<TextBadgeProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
72
80
|
|
|
73
81
|
declare const buttonVariants: (props?: ({
|
|
74
|
-
variant?: "solid" | "
|
|
75
|
-
color?: "default" | "success" | "warning" | "danger" | null | undefined;
|
|
82
|
+
variant?: "solid" | "bordered" | "flat" | "light" | "ghost" | null | undefined;
|
|
83
|
+
color?: "default" | "success" | "warning" | "info" | "danger" | null | undefined;
|
|
76
84
|
size?: "sm" | "md" | "lg" | "icon" | null | undefined;
|
|
77
85
|
radius?: "none" | "sm" | "md" | "lg" | "full" | null | undefined;
|
|
78
86
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
@@ -220,6 +228,7 @@ declare const sheetVariants: (props?: ({
|
|
|
220
228
|
side?: "left" | "right" | "bottom" | "top" | null | undefined;
|
|
221
229
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
222
230
|
interface SheetContentProps extends React$1.ComponentPropsWithoutRef<typeof DialogPrimitive.Content>, VariantProps<typeof sheetVariants> {
|
|
231
|
+
hideCloseButton?: boolean;
|
|
223
232
|
}
|
|
224
233
|
declare const SheetContent: React$1.ForwardRefExoticComponent<SheetContentProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
225
234
|
declare const SheetHeader: {
|
|
@@ -271,20 +280,20 @@ declare const RadioGroup: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimi
|
|
|
271
280
|
declare const RadioGroupItem: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupItemProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
272
281
|
|
|
273
282
|
declare const toggleVariants: (props?: ({
|
|
274
|
-
variant?: "solid" | "
|
|
283
|
+
variant?: "solid" | "ghost" | "outline" | "soft" | "surface" | null | undefined;
|
|
275
284
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
276
285
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
277
286
|
declare const Toggle: React$1.ForwardRefExoticComponent<Omit<TogglePrimitive.ToggleProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & VariantProps<(props?: ({
|
|
278
|
-
variant?: "solid" | "
|
|
287
|
+
variant?: "solid" | "ghost" | "outline" | "soft" | "surface" | null | undefined;
|
|
279
288
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
280
289
|
} & class_variance_authority_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
281
290
|
|
|
282
291
|
declare const ToggleGroup: React$1.ForwardRefExoticComponent<((Omit<ToggleGroupPrimitive.ToggleGroupSingleProps & React$1.RefAttributes<HTMLDivElement>, "ref"> | Omit<ToggleGroupPrimitive.ToggleGroupMultipleProps & React$1.RefAttributes<HTMLDivElement>, "ref">) & VariantProps<(props?: ({
|
|
283
|
-
variant?: "solid" | "
|
|
292
|
+
variant?: "solid" | "ghost" | "outline" | "soft" | "surface" | null | undefined;
|
|
284
293
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
285
294
|
} & class_variance_authority_types.ClassProp) | undefined) => string>) & React$1.RefAttributes<HTMLDivElement>>;
|
|
286
295
|
declare const ToggleGroupItem: React$1.ForwardRefExoticComponent<Omit<ToggleGroupPrimitive.ToggleGroupItemProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & VariantProps<(props?: ({
|
|
287
|
-
variant?: "solid" | "
|
|
296
|
+
variant?: "solid" | "ghost" | "outline" | "soft" | "surface" | null | undefined;
|
|
288
297
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
289
298
|
} & class_variance_authority_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
290
299
|
|
|
@@ -448,11 +457,11 @@ declare const PaginationEllipsis: {
|
|
|
448
457
|
|
|
449
458
|
declare const Command: React$1.ForwardRefExoticComponent<Omit<{
|
|
450
459
|
children?: React$1.ReactNode;
|
|
451
|
-
} & Pick<Pick<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof React$1.HTMLAttributes<HTMLDivElement
|
|
460
|
+
} & Pick<Pick<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React$1.HTMLAttributes<HTMLDivElement>> & {
|
|
452
461
|
ref?: React$1.Ref<HTMLDivElement>;
|
|
453
462
|
} & {
|
|
454
463
|
asChild?: boolean;
|
|
455
|
-
}, keyof React$1.HTMLAttributes<HTMLDivElement> | "asChild"
|
|
464
|
+
}, "key" | keyof React$1.HTMLAttributes<HTMLDivElement> | "asChild"> & {
|
|
456
465
|
label?: string;
|
|
457
466
|
shouldFilter?: boolean;
|
|
458
467
|
filter?: (value: string, search: string, keywords?: string[]) => number;
|
|
@@ -468,51 +477,51 @@ declare const CommandInput: React$1.ForwardRefExoticComponent<Omit<Omit<Pick<Pic
|
|
|
468
477
|
ref?: React$1.Ref<HTMLInputElement>;
|
|
469
478
|
} & {
|
|
470
479
|
asChild?: boolean;
|
|
471
|
-
}, "
|
|
480
|
+
}, "key" | "asChild" | keyof React$1.InputHTMLAttributes<HTMLInputElement>>, "type" | "onChange" | "value"> & {
|
|
472
481
|
value?: string;
|
|
473
482
|
onValueChange?: (search: string) => void;
|
|
474
483
|
} & React$1.RefAttributes<HTMLInputElement>, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
|
|
475
484
|
declare const CommandList: React$1.ForwardRefExoticComponent<Omit<{
|
|
476
485
|
children?: React$1.ReactNode;
|
|
477
|
-
} & Pick<Pick<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof React$1.HTMLAttributes<HTMLDivElement
|
|
486
|
+
} & Pick<Pick<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React$1.HTMLAttributes<HTMLDivElement>> & {
|
|
478
487
|
ref?: React$1.Ref<HTMLDivElement>;
|
|
479
488
|
} & {
|
|
480
489
|
asChild?: boolean;
|
|
481
|
-
}, keyof React$1.HTMLAttributes<HTMLDivElement> | "asChild"
|
|
490
|
+
}, "key" | keyof React$1.HTMLAttributes<HTMLDivElement> | "asChild"> & {
|
|
482
491
|
label?: string;
|
|
483
492
|
} & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
484
493
|
declare const CommandEmpty: React$1.ForwardRefExoticComponent<Omit<{
|
|
485
494
|
children?: React$1.ReactNode;
|
|
486
|
-
} & Pick<Pick<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof React$1.HTMLAttributes<HTMLDivElement
|
|
495
|
+
} & Pick<Pick<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React$1.HTMLAttributes<HTMLDivElement>> & {
|
|
487
496
|
ref?: React$1.Ref<HTMLDivElement>;
|
|
488
497
|
} & {
|
|
489
498
|
asChild?: boolean;
|
|
490
|
-
}, keyof React$1.HTMLAttributes<HTMLDivElement> | "asChild"
|
|
499
|
+
}, "key" | keyof React$1.HTMLAttributes<HTMLDivElement> | "asChild"> & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
491
500
|
declare const CommandGroup: React$1.ForwardRefExoticComponent<Omit<{
|
|
492
501
|
children?: React$1.ReactNode;
|
|
493
|
-
} & Omit<Pick<Pick<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof React$1.HTMLAttributes<HTMLDivElement
|
|
502
|
+
} & Omit<Pick<Pick<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React$1.HTMLAttributes<HTMLDivElement>> & {
|
|
494
503
|
ref?: React$1.Ref<HTMLDivElement>;
|
|
495
504
|
} & {
|
|
496
505
|
asChild?: boolean;
|
|
497
|
-
}, keyof React$1.HTMLAttributes<HTMLDivElement> | "asChild"
|
|
506
|
+
}, "key" | keyof React$1.HTMLAttributes<HTMLDivElement> | "asChild">, "heading" | "value"> & {
|
|
498
507
|
heading?: React$1.ReactNode;
|
|
499
508
|
value?: string;
|
|
500
509
|
forceMount?: boolean;
|
|
501
510
|
} & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
502
|
-
declare const CommandSeparator: React$1.ForwardRefExoticComponent<Omit<Pick<Pick<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof React$1.HTMLAttributes<HTMLDivElement
|
|
511
|
+
declare const CommandSeparator: React$1.ForwardRefExoticComponent<Omit<Pick<Pick<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React$1.HTMLAttributes<HTMLDivElement>> & {
|
|
503
512
|
ref?: React$1.Ref<HTMLDivElement>;
|
|
504
513
|
} & {
|
|
505
514
|
asChild?: boolean;
|
|
506
|
-
}, keyof React$1.HTMLAttributes<HTMLDivElement> | "asChild"
|
|
515
|
+
}, "key" | keyof React$1.HTMLAttributes<HTMLDivElement> | "asChild"> & {
|
|
507
516
|
alwaysRender?: boolean;
|
|
508
517
|
} & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
509
518
|
declare const CommandItem: React$1.ForwardRefExoticComponent<Omit<{
|
|
510
519
|
children?: React$1.ReactNode;
|
|
511
|
-
} & Omit<Pick<Pick<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof React$1.HTMLAttributes<HTMLDivElement
|
|
520
|
+
} & Omit<Pick<Pick<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React$1.HTMLAttributes<HTMLDivElement>> & {
|
|
512
521
|
ref?: React$1.Ref<HTMLDivElement>;
|
|
513
522
|
} & {
|
|
514
523
|
asChild?: boolean;
|
|
515
|
-
}, keyof React$1.HTMLAttributes<HTMLDivElement> | "asChild"
|
|
524
|
+
}, "key" | keyof React$1.HTMLAttributes<HTMLDivElement> | "asChild">, "onSelect" | "disabled" | "value"> & {
|
|
516
525
|
disabled?: boolean;
|
|
517
526
|
onSelect?: (value: string) => void;
|
|
518
527
|
value?: string;
|
|
@@ -872,7 +881,7 @@ declare const SidebarGroupContent: React$1.ForwardRefExoticComponent<Omit<React$
|
|
|
872
881
|
declare const SidebarMenu: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLUListElement>, HTMLUListElement>, "ref"> & React$1.RefAttributes<HTMLUListElement>>;
|
|
873
882
|
declare const SidebarMenuItem: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & React$1.RefAttributes<HTMLLIElement>>;
|
|
874
883
|
declare const sidebarMenuButtonVariants: (props?: ({
|
|
875
|
-
variant?: "solid" | "
|
|
884
|
+
variant?: "solid" | "ghost" | "outline" | "soft" | "surface" | null | undefined;
|
|
876
885
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
877
886
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
878
887
|
declare const SidebarMenuButton: React$1.ForwardRefExoticComponent<Omit<React$1.ClassAttributes<HTMLButtonElement> & React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
@@ -880,7 +889,7 @@ declare const SidebarMenuButton: React$1.ForwardRefExoticComponent<Omit<React$1.
|
|
|
880
889
|
isActive?: boolean;
|
|
881
890
|
tooltip?: string | React$1.ComponentProps<typeof TooltipContent>;
|
|
882
891
|
} & VariantProps<(props?: ({
|
|
883
|
-
variant?: "solid" | "
|
|
892
|
+
variant?: "solid" | "ghost" | "outline" | "soft" | "surface" | null | undefined;
|
|
884
893
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
885
894
|
} & class_variance_authority_types.ClassProp) | undefined) => string>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
886
895
|
declare const SidebarMenuAction: React$1.ForwardRefExoticComponent<Omit<React$1.ClassAttributes<HTMLButtonElement> & React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
@@ -900,8 +909,8 @@ declare const SidebarMenuSubButton: React$1.ForwardRefExoticComponent<Omit<React
|
|
|
900
909
|
}, "ref"> & React$1.RefAttributes<HTMLAnchorElement>>;
|
|
901
910
|
|
|
902
911
|
declare const chipVariants: (props?: ({
|
|
903
|
-
variant?: "solid" | "
|
|
904
|
-
color?: "success" | "warning" | "
|
|
912
|
+
variant?: "solid" | "ghost" | "outline" | "soft" | "surface" | null | undefined;
|
|
913
|
+
color?: "success" | "warning" | "info" | "danger" | "primary" | "secondary" | null | undefined;
|
|
905
914
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
906
915
|
radius?: "none" | "sm" | "md" | "lg" | "full" | null | undefined;
|
|
907
916
|
clickable?: boolean | null | undefined;
|
|
@@ -985,7 +994,7 @@ declare const InputOTPSlot: React$1.ForwardRefExoticComponent<InputOTPSlotProps
|
|
|
985
994
|
declare const InputOTPSeparator: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
986
995
|
|
|
987
996
|
declare const tagVariants: (props?: ({
|
|
988
|
-
variant?: "solid" | "
|
|
997
|
+
variant?: "solid" | "ghost" | "outline" | "soft" | "surface" | null | undefined;
|
|
989
998
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
990
999
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
991
1000
|
interface Tag {
|
|
@@ -1034,7 +1043,7 @@ interface EmptyStateProps extends React$1.HTMLAttributes<HTMLDivElement>, Varian
|
|
|
1034
1043
|
declare const EmptyState: React$1.ForwardRefExoticComponent<EmptyStateProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1035
1044
|
|
|
1036
1045
|
declare const statCardVariants: (props?: ({
|
|
1037
|
-
variant?: "solid" | "
|
|
1046
|
+
variant?: "solid" | "ghost" | "outline" | "soft" | "surface" | null | undefined;
|
|
1038
1047
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1039
1048
|
interface StatCardProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof statCardVariants> {
|
|
1040
1049
|
/** Label/title for the stat */
|
|
@@ -1053,7 +1062,7 @@ interface StatCardProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantP
|
|
|
1053
1062
|
declare const StatCard: React$1.ForwardRefExoticComponent<StatCardProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1054
1063
|
|
|
1055
1064
|
declare const listVariants: (props?: ({
|
|
1056
|
-
variant?: "
|
|
1065
|
+
variant?: "bordered" | "default" | "striped" | null | undefined;
|
|
1057
1066
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
1058
1067
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1059
1068
|
interface ListProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof listVariants> {
|
|
@@ -1084,7 +1093,7 @@ interface TimelineProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantP
|
|
|
1084
1093
|
}
|
|
1085
1094
|
declare const Timeline: React$1.ForwardRefExoticComponent<TimelineProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1086
1095
|
declare const timelineItemVariants: (props?: ({
|
|
1087
|
-
variant?: "default" | "success" | "warning" | "
|
|
1096
|
+
variant?: "default" | "success" | "warning" | "info" | "error" | null | undefined;
|
|
1088
1097
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1089
1098
|
interface TimelineItemProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof timelineItemVariants> {
|
|
1090
1099
|
}
|
|
@@ -1124,7 +1133,7 @@ interface SegmentedControlItemProps extends React$1.ComponentPropsWithoutRef<typ
|
|
|
1124
1133
|
declare const SegmentedControlItem: React$1.ForwardRefExoticComponent<SegmentedControlItemProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
1125
1134
|
|
|
1126
1135
|
declare const fileUploadVariants: (props?: ({
|
|
1127
|
-
variant?: "default" | "
|
|
1136
|
+
variant?: "default" | "error" | "active" | null | undefined;
|
|
1128
1137
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
1129
1138
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1130
1139
|
interface UploadedFile {
|
|
@@ -1388,7 +1397,7 @@ declare const formatPhoneNumber: (value: string, format: string) => string;
|
|
|
1388
1397
|
declare const PhoneInput: React$1.ForwardRefExoticComponent<PhoneInputProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
1389
1398
|
|
|
1390
1399
|
declare const navbarVariants: (props?: ({
|
|
1391
|
-
variant?: "solid" | "
|
|
1400
|
+
variant?: "solid" | "ghost" | "outline" | "soft" | "surface" | null | undefined;
|
|
1392
1401
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
1393
1402
|
sticky?: boolean | null | undefined;
|
|
1394
1403
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
@@ -1410,7 +1419,7 @@ declare const NavbarLink: React$1.ForwardRefExoticComponent<React$1.AnchorHTMLAt
|
|
|
1410
1419
|
} & React$1.RefAttributes<HTMLAnchorElement>>;
|
|
1411
1420
|
|
|
1412
1421
|
declare const linkVariants: (props?: ({
|
|
1413
|
-
variant?: "solid" | "
|
|
1422
|
+
variant?: "solid" | "ghost" | "outline" | "soft" | "surface" | null | undefined;
|
|
1414
1423
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
1415
1424
|
underline?: "none" | "always" | "hover" | null | undefined;
|
|
1416
1425
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
@@ -1422,7 +1431,7 @@ interface LinkProps extends React$1.AnchorHTMLAttributes<HTMLAnchorElement>, Var
|
|
|
1422
1431
|
declare const Link: React$1.ForwardRefExoticComponent<LinkProps & React$1.RefAttributes<HTMLAnchorElement>>;
|
|
1423
1432
|
|
|
1424
1433
|
declare const backTopVariants: (props?: ({
|
|
1425
|
-
variant?: "solid" | "
|
|
1434
|
+
variant?: "solid" | "ghost" | "outline" | "soft" | "surface" | null | undefined;
|
|
1426
1435
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
1427
1436
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1428
1437
|
interface BackTopProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof backTopVariants> {
|
|
@@ -1762,7 +1771,7 @@ interface UserProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps
|
|
|
1762
1771
|
declare const User: React$1.ForwardRefExoticComponent<UserProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1763
1772
|
|
|
1764
1773
|
declare const codeVariants: (props?: ({
|
|
1765
|
-
variant?: "solid" | "
|
|
1774
|
+
variant?: "solid" | "ghost" | "outline" | "soft" | "surface" | null | undefined;
|
|
1766
1775
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
1767
1776
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1768
1777
|
interface CodeProps extends React$1.HTMLAttributes<HTMLElement>, VariantProps<typeof codeVariants> {
|
|
@@ -1770,7 +1779,7 @@ interface CodeProps extends React$1.HTMLAttributes<HTMLElement>, VariantProps<ty
|
|
|
1770
1779
|
declare const Code: React$1.ForwardRefExoticComponent<CodeProps & React$1.RefAttributes<HTMLElement>>;
|
|
1771
1780
|
|
|
1772
1781
|
declare const snippetVariants: (props?: ({
|
|
1773
|
-
variant?: "solid" | "
|
|
1782
|
+
variant?: "solid" | "ghost" | "outline" | "soft" | "surface" | null | undefined;
|
|
1774
1783
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
1775
1784
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1776
1785
|
interface SnippetProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof snippetVariants> {
|
|
@@ -1845,11 +1854,11 @@ interface ListboxItemProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>,
|
|
|
1845
1854
|
declare const ListboxItem: React$1.ForwardRefExoticComponent<ListboxItemProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1846
1855
|
|
|
1847
1856
|
declare const sortableListVariants: (props?: ({
|
|
1848
|
-
variant?: "
|
|
1857
|
+
variant?: "bordered" | "default" | "cards" | null | undefined;
|
|
1849
1858
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
1850
1859
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1851
1860
|
declare const sortableItemVariants: (props?: ({
|
|
1852
|
-
variant?: "
|
|
1861
|
+
variant?: "bordered" | "default" | "cards" | null | undefined;
|
|
1853
1862
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
1854
1863
|
isDragging?: boolean | null | undefined;
|
|
1855
1864
|
isDragOver?: boolean | null | undefined;
|
|
@@ -1887,7 +1896,7 @@ interface LoadingOverlayProps extends React$1.HTMLAttributes<HTMLDivElement>, Va
|
|
|
1887
1896
|
declare const LoadingOverlay: React$1.ForwardRefExoticComponent<LoadingOverlayProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1888
1897
|
|
|
1889
1898
|
declare const nprogressVariants: (props?: ({
|
|
1890
|
-
color?: "success" | "warning" | "
|
|
1899
|
+
color?: "success" | "warning" | "info" | "danger" | "primary" | "secondary" | null | undefined;
|
|
1891
1900
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1892
1901
|
interface NProgressProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "color">, VariantProps<typeof nprogressVariants> {
|
|
1893
1902
|
isLoading?: boolean;
|
|
@@ -1924,7 +1933,7 @@ declare class ErrorBoundaryClass extends React$1.Component<ErrorBoundaryProps, E
|
|
|
1924
1933
|
componentDidCatch(error: Error, errorInfo: React$1.ErrorInfo): void;
|
|
1925
1934
|
componentDidUpdate(prevProps: ErrorBoundaryProps): void;
|
|
1926
1935
|
reset: () => void;
|
|
1927
|
-
render(): string | number | bigint | boolean |
|
|
1936
|
+
render(): string | number | bigint | boolean | Iterable<React$1.ReactNode> | Promise<string | number | bigint | boolean | React$1.ReactPortal | React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>> | Iterable<React$1.ReactNode> | null | undefined> | react_jsx_runtime.JSX.Element | null | undefined;
|
|
1928
1937
|
}
|
|
1929
1938
|
interface DefaultErrorFallbackProps {
|
|
1930
1939
|
error: Error | null;
|
|
@@ -2026,7 +2035,7 @@ interface TimePickerProps {
|
|
|
2026
2035
|
declare const TimePicker: React$1.ForwardRefExoticComponent<TimePickerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
2027
2036
|
|
|
2028
2037
|
declare const virtualListVariants: (props?: ({
|
|
2029
|
-
variant?: "
|
|
2038
|
+
variant?: "bordered" | "default" | "cards" | null | undefined;
|
|
2030
2039
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
2031
2040
|
interface VirtualListProps<T> extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "children">, VariantProps<typeof virtualListVariants> {
|
|
2032
2041
|
/** Array of items to render */
|
|
@@ -2051,7 +2060,7 @@ declare const VirtualList: <T>(props: VirtualListProps<T> & {
|
|
|
2051
2060
|
}) => React$1.ReactElement;
|
|
2052
2061
|
|
|
2053
2062
|
declare const infiniteScrollVariants: (props?: ({
|
|
2054
|
-
variant?: "
|
|
2063
|
+
variant?: "bordered" | "default" | null | undefined;
|
|
2055
2064
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
2056
2065
|
declare const infiniteScrollLoaderVariants: (props?: ({
|
|
2057
2066
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
@@ -2116,7 +2125,7 @@ declare const ModalTitle: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive
|
|
|
2116
2125
|
declare const ModalDescription: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
2117
2126
|
|
|
2118
2127
|
declare const confirmDialogIconVariants: (props?: ({
|
|
2119
|
-
variant?: "default" | "success" | "warning" | "
|
|
2128
|
+
variant?: "default" | "success" | "warning" | "info" | "danger" | null | undefined;
|
|
2120
2129
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
2121
2130
|
interface ConfirmDialogProps extends VariantProps<typeof confirmDialogIconVariants> {
|
|
2122
2131
|
open?: boolean;
|
|
@@ -2180,7 +2189,7 @@ interface ImageViewerTriggerProps {
|
|
|
2180
2189
|
declare const ImageViewerTrigger: React$1.FC<ImageViewerTriggerProps>;
|
|
2181
2190
|
|
|
2182
2191
|
declare const closeButtonVariants: (props?: ({
|
|
2183
|
-
variant?: "solid" | "
|
|
2192
|
+
variant?: "solid" | "default" | "ghost" | "outline" | null | undefined;
|
|
2184
2193
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
2185
2194
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
2186
2195
|
interface CloseButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof closeButtonVariants> {
|
|
@@ -2190,7 +2199,7 @@ interface CloseButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElemen
|
|
|
2190
2199
|
declare const CloseButton: React$1.ForwardRefExoticComponent<CloseButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
2191
2200
|
|
|
2192
2201
|
declare const actionIconVariants: (props?: ({
|
|
2193
|
-
variant?: "solid" | "
|
|
2202
|
+
variant?: "solid" | "ghost" | "outline" | "soft" | "surface" | null | undefined;
|
|
2194
2203
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
2195
2204
|
color?: "default" | "success" | "warning" | "danger" | "primary" | "secondary" | null | undefined;
|
|
2196
2205
|
radius?: "none" | "sm" | "md" | "lg" | "full" | null | undefined;
|
|
@@ -2248,7 +2257,7 @@ interface VisuallyHiddenProps extends React$1.ComponentPropsWithoutRef<typeof Vi
|
|
|
2248
2257
|
declare const VisuallyHidden: React$1.ForwardRefExoticComponent<VisuallyHiddenProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
2249
2258
|
|
|
2250
2259
|
declare const kbdVariants: (props?: ({
|
|
2251
|
-
variant?: "
|
|
2260
|
+
variant?: "default" | "ghost" | "outline" | null | undefined;
|
|
2252
2261
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
2253
2262
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
2254
2263
|
interface KbdProps extends React$1.HTMLAttributes<HTMLElement>, VariantProps<typeof kbdVariants> {
|
|
@@ -2266,7 +2275,7 @@ interface SpacerProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
|
2266
2275
|
declare const Spacer: React$1.ForwardRefExoticComponent<SpacerProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2267
2276
|
|
|
2268
2277
|
declare const copyButtonVariants: (props?: ({
|
|
2269
|
-
variant?: "solid" | "
|
|
2278
|
+
variant?: "solid" | "default" | "ghost" | "outline" | null | undefined;
|
|
2270
2279
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
2271
2280
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
2272
2281
|
interface CopyButtonProps extends Omit<React$1.ButtonHTMLAttributes<HTMLButtonElement>, "children">, VariantProps<typeof copyButtonVariants> {
|
|
@@ -2286,7 +2295,7 @@ interface CopyButtonProps extends Omit<React$1.ButtonHTMLAttributes<HTMLButtonEl
|
|
|
2286
2295
|
declare const CopyButton: React$1.ForwardRefExoticComponent<CopyButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
2287
2296
|
|
|
2288
2297
|
declare const fullCalendarVariants: (props?: ({
|
|
2289
|
-
variant?: "
|
|
2298
|
+
variant?: "bordered" | "default" | "ghost" | null | undefined;
|
|
2290
2299
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
2291
2300
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
2292
2301
|
type CalendarView = "month" | "week" | "day";
|
|
@@ -2414,13 +2423,13 @@ interface AreaChartProps extends React$1.HTMLAttributes<HTMLDivElement>, Variant
|
|
|
2414
2423
|
declare const AreaChart: React$1.ForwardRefExoticComponent<AreaChartProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2415
2424
|
|
|
2416
2425
|
declare const kanbanBoardVariants: (props?: ({
|
|
2417
|
-
variant?: "
|
|
2426
|
+
variant?: "bordered" | "default" | "ghost" | null | undefined;
|
|
2418
2427
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
2419
2428
|
declare const kanbanColumnVariants: (props?: ({
|
|
2420
|
-
variant?: "
|
|
2429
|
+
variant?: "bordered" | "default" | "ghost" | null | undefined;
|
|
2421
2430
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
2422
2431
|
declare const kanbanCardVariants: (props?: ({
|
|
2423
|
-
variant?: "
|
|
2432
|
+
variant?: "bordered" | "default" | "ghost" | null | undefined;
|
|
2424
2433
|
isDragging?: boolean | null | undefined;
|
|
2425
2434
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
2426
2435
|
interface KanbanCard {
|
|
@@ -2454,7 +2463,7 @@ interface KanbanBoardProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>,
|
|
|
2454
2463
|
declare const KanbanBoard: React$1.ForwardRefExoticComponent<KanbanBoardProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2455
2464
|
|
|
2456
2465
|
declare const carouselVariants: (props?: ({
|
|
2457
|
-
variant?: "
|
|
2466
|
+
variant?: "bordered" | "default" | "cards" | null | undefined;
|
|
2458
2467
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
2459
2468
|
type CarouselApi = UseEmblaCarouselType[1];
|
|
2460
2469
|
type UseCarouselParameters = Parameters<typeof useEmblaCarousel>;
|
|
@@ -2558,7 +2567,7 @@ interface EmojiPickerProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>,
|
|
|
2558
2567
|
declare const EmojiPicker: React$1.ForwardRefExoticComponent<EmojiPickerProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2559
2568
|
|
|
2560
2569
|
declare const richTextEditorVariants: (props?: ({
|
|
2561
|
-
variant?: "
|
|
2570
|
+
variant?: "bordered" | "default" | "ghost" | null | undefined;
|
|
2562
2571
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
2563
2572
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
2564
2573
|
interface RichTextEditorProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "onChange">, VariantProps<typeof richTextEditorVariants> {
|
|
@@ -2582,7 +2591,7 @@ interface RichTextEditorProps extends Omit<React$1.HTMLAttributes<HTMLDivElement
|
|
|
2582
2591
|
declare const RichTextEditor: React$1.ForwardRefExoticComponent<RichTextEditorProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2583
2592
|
|
|
2584
2593
|
declare const imageCropperVariants: (props?: ({
|
|
2585
|
-
variant?: "
|
|
2594
|
+
variant?: "bordered" | "default" | "ghost" | null | undefined;
|
|
2586
2595
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
2587
2596
|
interface ImageCropperProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "onChange">, VariantProps<typeof imageCropperVariants> {
|
|
2588
2597
|
/** Image source URL */
|
|
@@ -2609,7 +2618,7 @@ interface ImageCropperProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>,
|
|
|
2609
2618
|
declare const ImageCropper: React$1.ForwardRefExoticComponent<ImageCropperProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2610
2619
|
|
|
2611
2620
|
declare const qrCodeVariants: (props?: ({
|
|
2612
|
-
variant?: "
|
|
2621
|
+
variant?: "bordered" | "default" | "card" | null | undefined;
|
|
2613
2622
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
2614
2623
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
2615
2624
|
interface QRCodeProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "title">, VariantProps<typeof qrCodeVariants> {
|
|
@@ -2659,7 +2668,7 @@ interface ThemeProviderProps {
|
|
|
2659
2668
|
declare const ThemeProvider: React$1.FC<ThemeProviderProps>;
|
|
2660
2669
|
|
|
2661
2670
|
declare const themeToggleVariants: (props?: ({
|
|
2662
|
-
variant?: "
|
|
2671
|
+
variant?: "bordered" | "default" | "ghost" | null | undefined;
|
|
2663
2672
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
2664
2673
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
2665
2674
|
interface ThemeToggleProps extends VariantProps<typeof themeToggleVariants> {
|
|
@@ -2851,7 +2860,7 @@ declare function useButtonGroup(): {
|
|
|
2851
2860
|
declare const ButtonGroup: React$1.ForwardRefExoticComponent<ButtonGroupProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2852
2861
|
|
|
2853
2862
|
declare const iconButtonVariants: (props?: ({
|
|
2854
|
-
variant?: "solid" | "
|
|
2863
|
+
variant?: "solid" | "ghost" | "outline" | "soft" | "surface" | null | undefined;
|
|
2855
2864
|
size?: "sm" | "md" | "lg" | "xl" | null | undefined;
|
|
2856
2865
|
radius?: "none" | "sm" | "md" | "lg" | "full" | null | undefined;
|
|
2857
2866
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
@@ -2918,7 +2927,7 @@ interface IllustratedMessageProps extends React$1.HTMLAttributes<HTMLDivElement>
|
|
|
2918
2927
|
declare const IllustratedMessage: React$1.ForwardRefExoticComponent<IllustratedMessageProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2919
2928
|
|
|
2920
2929
|
declare const inlineAlertVariants: (props?: ({
|
|
2921
|
-
variant?: "success" | "warning" | "
|
|
2930
|
+
variant?: "success" | "warning" | "info" | "error" | "neutral" | null | undefined;
|
|
2922
2931
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
2923
2932
|
interface InlineAlertProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof inlineAlertVariants> {
|
|
2924
2933
|
/** Title of the alert */
|
|
@@ -2958,7 +2967,7 @@ declare const ActionBarButton: React$1.ForwardRefExoticComponent<React$1.ButtonH
|
|
|
2958
2967
|
} & React$1.RefAttributes<HTMLButtonElement>>;
|
|
2959
2968
|
|
|
2960
2969
|
declare const actionMenuTriggerVariants: (props?: ({
|
|
2961
|
-
variant?: "
|
|
2970
|
+
variant?: "ghost" | "outline" | "subtle" | null | undefined;
|
|
2962
2971
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
2963
2972
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
2964
2973
|
interface ActionMenuItem {
|
|
@@ -2997,11 +3006,11 @@ interface ActionMenuProps extends VariantProps<typeof actionMenuTriggerVariants>
|
|
|
2997
3006
|
declare const ActionMenu: React$1.ForwardRefExoticComponent<ActionMenuProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
2998
3007
|
|
|
2999
3008
|
declare const listViewVariants: (props?: ({
|
|
3000
|
-
variant?: "
|
|
3009
|
+
variant?: "bordered" | "default" | "cards" | null | undefined;
|
|
3001
3010
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
3002
3011
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
3003
3012
|
declare const listViewItemVariants: (props?: ({
|
|
3004
|
-
variant?: "
|
|
3013
|
+
variant?: "bordered" | "default" | "cards" | null | undefined;
|
|
3005
3014
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
3006
3015
|
isSelected?: boolean | null | undefined;
|
|
3007
3016
|
isDisabled?: boolean | null | undefined;
|
|
@@ -3061,7 +3070,7 @@ interface RangeSliderProps extends Omit<React$1.ComponentPropsWithoutRef<typeof
|
|
|
3061
3070
|
declare const RangeSlider: React$1.ForwardRefExoticComponent<RangeSliderProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
3062
3071
|
|
|
3063
3072
|
declare const contextualHelpTriggerVariants: (props?: ({
|
|
3064
|
-
variant?: "warning" | "
|
|
3073
|
+
variant?: "warning" | "info" | "help" | null | undefined;
|
|
3065
3074
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
3066
3075
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
3067
3076
|
declare const contentVariants: (props?: ({
|
|
@@ -3340,8 +3349,8 @@ declare const ColorWheel: React$1.ForwardRefExoticComponent<ColorWheelProps & Re
|
|
|
3340
3349
|
|
|
3341
3350
|
declare const flexVariants: (props?: ({
|
|
3342
3351
|
direction?: "row" | "column" | "column-reverse" | "row-reverse" | null | undefined;
|
|
3343
|
-
align?: "
|
|
3344
|
-
justify?: "
|
|
3352
|
+
align?: "end" | "stretch" | "center" | "start" | "baseline" | null | undefined;
|
|
3353
|
+
justify?: "end" | "center" | "start" | "between" | "around" | "evenly" | null | undefined;
|
|
3345
3354
|
wrap?: "nowrap" | "wrap" | "wrap-reverse" | null | undefined;
|
|
3346
3355
|
gap?: 0 | 1 | 2 | 4 | 3 | 5 | 6 | 8 | 10 | 12 | null | undefined;
|
|
3347
3356
|
inline?: boolean | null | undefined;
|
|
@@ -3362,9 +3371,9 @@ declare const gridVariants: (props?: ({
|
|
|
3362
3371
|
gapX?: 0 | 1 | 2 | 4 | 3 | 5 | 6 | 8 | 10 | 12 | null | undefined;
|
|
3363
3372
|
gapY?: 0 | 1 | 2 | 4 | 3 | 5 | 6 | 8 | 10 | 12 | null | undefined;
|
|
3364
3373
|
flow?: "row" | "dense" | "col" | "row-dense" | "col-dense" | null | undefined;
|
|
3365
|
-
align?: "
|
|
3366
|
-
justify?: "
|
|
3367
|
-
placeItems?: "
|
|
3374
|
+
align?: "end" | "stretch" | "center" | "start" | "baseline" | null | undefined;
|
|
3375
|
+
justify?: "end" | "stretch" | "center" | "start" | null | undefined;
|
|
3376
|
+
placeItems?: "end" | "stretch" | "center" | "start" | null | undefined;
|
|
3368
3377
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
3369
3378
|
interface GridProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof gridVariants> {
|
|
3370
3379
|
/** Element to render as */
|
|
@@ -3396,7 +3405,7 @@ declare const SimpleGrid: React$1.ForwardRefExoticComponent<Omit<GridProps, "col
|
|
|
3396
3405
|
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
3397
3406
|
|
|
3398
3407
|
declare const wellVariants: (props?: ({
|
|
3399
|
-
variant?: "
|
|
3408
|
+
variant?: "default" | "filled" | "outline" | "subtle" | "sunken" | null | undefined;
|
|
3400
3409
|
size?: "sm" | "md" | "lg" | "xl" | null | undefined;
|
|
3401
3410
|
radius?: "none" | "sm" | "md" | "lg" | "full" | "xl" | null | undefined;
|
|
3402
3411
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
@@ -3409,7 +3418,7 @@ declare const Well: React$1.ForwardRefExoticComponent<WellProps & React$1.RefAtt
|
|
|
3409
3418
|
declare const labeledValueVariants: (props?: ({
|
|
3410
3419
|
orientation?: "horizontal" | "vertical" | null | undefined;
|
|
3411
3420
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
3412
|
-
align?: "
|
|
3421
|
+
align?: "end" | "center" | "start" | null | undefined;
|
|
3413
3422
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
3414
3423
|
interface LabeledValueProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "children">, VariantProps<typeof labeledValueVariants> {
|
|
3415
3424
|
/** Label text */
|
|
@@ -3444,7 +3453,7 @@ declare const LabeledValueGroup: React$1.ForwardRefExoticComponent<LabeledValueG
|
|
|
3444
3453
|
|
|
3445
3454
|
declare const searchBarVariants: (props?: ({
|
|
3446
3455
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
3447
|
-
variant?: "
|
|
3456
|
+
variant?: "default" | "ghost" | "filled" | null | undefined;
|
|
3448
3457
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
3449
3458
|
interface SearchSuggestion {
|
|
3450
3459
|
id: string;
|
|
@@ -3578,7 +3587,7 @@ interface NotificationCenterProps extends VariantProps<typeof notificationCenter
|
|
|
3578
3587
|
declare const NotificationCenter: React$1.ForwardRefExoticComponent<NotificationCenterProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
3579
3588
|
|
|
3580
3589
|
declare const announcementBannerVariants: (props?: ({
|
|
3581
|
-
variant?: "default" | "success" | "warning" | "
|
|
3590
|
+
variant?: "default" | "success" | "warning" | "info" | "danger" | "primary" | "gradient" | null | undefined;
|
|
3582
3591
|
position?: "top" | "relative" | null | undefined;
|
|
3583
3592
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
3584
3593
|
interface AnnouncementBannerProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof announcementBannerVariants> {
|
|
@@ -3608,7 +3617,7 @@ interface AnnouncementBannerProps extends React$1.HTMLAttributes<HTMLDivElement>
|
|
|
3608
3617
|
declare const AnnouncementBanner: React$1.ForwardRefExoticComponent<AnnouncementBannerProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
3609
3618
|
|
|
3610
3619
|
declare const fabVariants: (props?: ({
|
|
3611
|
-
variant?: "
|
|
3620
|
+
variant?: "default" | "ghost" | "outline" | "secondary" | "destructive" | null | undefined;
|
|
3612
3621
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
3613
3622
|
position?: "bottom-right" | "bottom-left" | "relative" | "bottom-center" | null | undefined;
|
|
3614
3623
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
@@ -3672,11 +3681,8 @@ interface BottomNavigationProps extends Omit<React$1.HTMLAttributes<HTMLElement>
|
|
|
3672
3681
|
}
|
|
3673
3682
|
declare const BottomNavigation: React$1.ForwardRefExoticComponent<BottomNavigationProps & React$1.RefAttributes<HTMLElement>>;
|
|
3674
3683
|
|
|
3675
|
-
declare const actionSheetVariants: (props?: ({
|
|
3676
|
-
size?: "sm" | "md" | "lg" | "full" | null | undefined;
|
|
3677
|
-
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
3678
3684
|
declare const actionSheetItemVariants: (props?: ({
|
|
3679
|
-
variant?: "
|
|
3685
|
+
variant?: "default" | "destructive" | null | undefined;
|
|
3680
3686
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
3681
3687
|
interface ActionSheetItem {
|
|
3682
3688
|
key: string;
|
|
@@ -3687,7 +3693,7 @@ interface ActionSheetItem {
|
|
|
3687
3693
|
isDestructive?: boolean;
|
|
3688
3694
|
onSelect?: () => void;
|
|
3689
3695
|
}
|
|
3690
|
-
interface ActionSheetProps
|
|
3696
|
+
interface ActionSheetProps {
|
|
3691
3697
|
/** Whether the sheet is open */
|
|
3692
3698
|
open?: boolean;
|
|
3693
3699
|
/** Called when open state changes */
|
|
@@ -3719,7 +3725,7 @@ declare const swipeActionsVariants: (props?: ({
|
|
|
3719
3725
|
variant?: "default" | "card" | null | undefined;
|
|
3720
3726
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
3721
3727
|
declare const swipeActionVariants: (props?: ({
|
|
3722
|
-
variant?: "success" | "warning" | "
|
|
3728
|
+
variant?: "success" | "warning" | "info" | "danger" | "primary" | "secondary" | null | undefined;
|
|
3723
3729
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
3724
3730
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
3725
3731
|
interface SwipeAction {
|
|
@@ -3820,7 +3826,7 @@ declare const AppShellFooter: React$1.ForwardRefExoticComponent<AppShellFooterPr
|
|
|
3820
3826
|
declare const AppShellMain: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
3821
3827
|
|
|
3822
3828
|
declare const dashboardLayoutVariants: (props?: ({
|
|
3823
|
-
variant?: "
|
|
3829
|
+
variant?: "bordered" | "default" | "filled" | null | undefined;
|
|
3824
3830
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
3825
3831
|
interface DashboardLayoutProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof dashboardLayoutVariants> {
|
|
3826
3832
|
/** Navigation items for sidebar */
|
|
@@ -4375,4 +4381,4 @@ declare const Sparkles: React$1.ForwardRefExoticComponent<SparklesProps & React$
|
|
|
4375
4381
|
*/
|
|
4376
4382
|
declare function cn(...inputs: ClassValue[]): string;
|
|
4377
4383
|
|
|
4378
|
-
export { Accordion, AccordionItem, type AccordionItemProps, type AccordionProps, ActionBar, ActionBarButton, type ActionBarProps, ActionGroup, type ActionGroupItem, type ActionGroupProps, ActionIcon, type ActionIconProps, ActionMenu, type ActionMenuGroup, type ActionMenuItem, type ActionMenuProps, ActionSheet, type ActionSheetItem, type ActionSheetProps, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AnnouncementBanner, type AnnouncementBannerProps, AppShell, AppShellAside, AppShellFooter, AppShellHeader, AppShellMain, type AppShellProps, AppShellSidebar, AreaChart, type AreaChartProps, AspectRatio, AuthDivider, AuthFooterLinks, AuthForm, AuthHeader, AuthLayout, type AuthLayoutProps, AuthSocialButtons, Autocomplete, type AutocompleteOption, type AutocompleteProps, Avatar, AvatarFallback, AvatarGroup, type AvatarGroupItem, type AvatarGroupProps, AvatarImage, BackTop, type BackTopProps, Badge, type BadgeProps, BarChart, type BarChartProps, BatteryMeter, BottomNavigation, type BottomNavigationItem, type BottomNavigationProps, Bounce, type BounceProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, COUNTRIES, Calendar, type CalendarEvent, type CalendarProps, type CalendarView, Card, CardContent, CardFooter, CardHeader, Carousel, type CarouselApi, CarouselContent, CarouselItem, type CarouselItemProps, CarouselNext, CarouselPrevious, type CarouselProps, Center, type ChartDataPoint, Checkbox, Checkmark, type CheckmarkProps, type CheckmarkSize, type CheckmarkVariant, Chip, type ChipProps, CircularProgress, CloseButton, type CloseButtonProps, Code, Collapse, type CollapseProps, Collapsible, CollapsibleContent, CollapsibleTrigger, ColorArea, type ColorAreaProps, type ColorAreaValue, ColorField, type ColorFieldProps, type ColorPalette, ColorPicker, type ColorPickerProps, ColorSlider, type ColorSliderChannel, type ColorSliderProps, ColorSwatch, ColorSwatchPicker, type ColorSwatchPickerProps, type ColorSwatchProps, ColorWheel, type ColorWheelProps, type Column, Combobox, type ComboboxOption, type ComboboxProps, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, Confetti, type ConfettiOptions, type ConfettiProps, ConfirmDialog, type ConfirmDialogProps, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, ContextualHelp, type ContextualHelpProps, CopyButton, type CopyButtonProps, Counter, type CounterProps, type Country, CurrencyInput, type CurrencyInputProps, DEFAULT_COLORS, DashboardGrid, DashboardLayout, type DashboardLayoutProps, DashboardPage, DashboardPageHeader, DataTable, type DataTableProps, DateField, type DateFieldProps, type DateFormat, DateInput, type DateInputProps, DatePicker, type DatePickerProps, DateRangePicker, type DateRangePickerProps, DefaultErrorFallback, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DiskUsageMeter, Dots, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EMOJIS, EMOJI_CATEGORIES, EmojiPicker, type EmojiPickerProps, EmptyState, ErrorBoundary, type ErrorBoundaryProps, Expand, type ExpandProps, FAB, type FABAction, Fade, type FadeProps, FieldContext, type FieldContextValue, type FieldState, type FileRejection, FileUpload, type FileUploadProps, Flex, type FlexProps, Flip, type FlipDirection, type FlipProps, FloatingActionButton, type FloatingActionButtonProps, Form, FormContext, type FormContextValue, FormControl, type FormControlProps, FormDescription, type FormDescriptionProps, FormField, type FormFieldProps, FormItem, type FormItemProps, FormLabel, type FormLabelProps, FormMessage, type FormMessageProps, type FormProps, type FormState, FullCalendar, type FullCalendarProps, Glow, type GlowProps, Grid, GridItem, type GridItemProps, GridList, type GridListItem, type GridListProps, type GridProps, HStack, HoverCard, HoverCardContent, HoverCardTrigger, IconButton, type IconButtonProps, IllustratedMessage, type IllustratedMessageProps, Image, ImageCropper, type ImageCropperProps, ImageViewer, type ImageViewerProps, ImageViewerTrigger, type ImageViewerTriggerProps, Indicator, type IndicatorProps, IndicatorWrapper, type IndicatorWrapperProps, InfiniteScroll, type InfiniteScrollProps, InlineAlert, type InlineAlertProps, Input, InputOTP, InputOTPGroup, type InputOTPProps, InputOTPSeparator, InputOTPSlot, type InputOTPSlotProps, type InputProps, KanbanBoard, type KanbanBoardProps, type KanbanCard, type KanbanColumn, Kbd, type KbdProps, Label, LabeledValue, LabeledValueGroup, type LabeledValueGroupProps, type LabeledValueProps, LineChart, type LineChartProps, Link, type LinkProps, List, ListItem, ListItemText, ListView, type ListViewItem, type ListViewProps, Listbox, ListboxItem, type ListboxOption, Loading, LoadingOverlay, type LoadingOverlayProps, type LoadingProps, MASK_PRESETS, type MaskChar, type MaskDefinition, type MaskPreset, MaskedInput, type MaskedInputProps, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, Meter, type MeterProps, Modal, ModalClose, ModalContent, ModalDescription, ModalFooter, ModalHeader, ModalOverlay, ModalPortal, type ModalProps, ModalRoot, ModalTitle, ModalTrigger, MultiSelect, type MultiSelectOption, type MultiSelectProps, NProgress, type NProgressProps, Navbar, NavbarBrand, NavbarContent, NavbarItem, NavbarLink, type NavbarProps, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, type Notification, NotificationCenter, type NotificationCenterProps, type NotificationType, NumberField, type NumberFieldProps, NumberInput, type NumberInputProps, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, type PaginationState, Parallax, type ParallaxProps, PasswordInput, type PasswordInputProps, PhoneInput, type PhoneInputProps, PieChart, type PieChartProps, Pop, type PopProps, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Portal, type PortalProps, Progress, PullToRefresh, type PullToRefreshProps, Pulse, type PulseProps, type PulseSpeed, QRCode, type QRCodeProps, RadioGroup, RadioGroupItem, RangeSlider, type RangeSliderProps, Rating, type RatingProps, ResizableHandle, type ResizableHandleProps, ResizablePanel, ResizablePanelGroup, type ResizablePanelGroupProps, RichTextEditor, type RichTextEditorProps, Ripple, type RippleProps, Rotate, type RotateProps, Scale, type ScaleOrigin, type ScaleProps, ScrollArea, ScrollBar, ScrollProgress, type ScrollProgressPosition, type ScrollProgressProps, ScrollReveal, type ScrollRevealDirection, type ScrollRevealProps, ScrollShadow, type ScrollShadowProps, SearchBar, type SearchBarProps, SearchField, type SearchFieldProps, type SearchSuggestion, SegmentedControl, SegmentedControlItem, type SegmentedControlItemProps, type SegmentedControlProps, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, SettingsCard, SettingsHeader, SettingsLayout, type SettingsLayoutProps, SettingsNavItem, SettingsRow, SettingsSection, SettingsSeparator, Shake, type ShakeIntensity, type ShakeProps, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Shimmer, type ShimmerDirection, type ShimmerProps, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarPersistentToggle, SidebarProvider, SidebarRail, SidebarSeparator, SidebarToggle, SidebarTrigger, SimpleGrid, Skeleton, Slide, type SlideDirection, type SlideProps, Slider, Snippet, type SortDirection, type SortState, type SortableItem, SortableList, Spacer, type SpacerProps, Sparkles, type SparklesProps, Spinner, type SpotlightItem, SpotlightSearch, type SpotlightSearchProps, StatCard, StatusLight, type StatusLightProps, Step, type StepProps, Steps, type StepsProps, type SwipeAction, SwipeActions, type SwipeActionsProps, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, type Tag, TagGroup, type TagGroupProps, TagInput, type TagInputProps, type TagItem, TextBadge, type TextBadgeProps, TextField, type TextFieldProps, TextReveal, type TextRevealDirection, type TextRevealProps, Textarea, type TextareaProps, ThemeProvider, type ThemeProviderProps, ThemeToggle, type ThemeToggleProps, TimeField, type TimeFieldProps, TimeInput, type TimeInputProps, TimePicker, type TimePickerProps, type TimeValue, Timeline, TimelineContent, TimelineItem, TimelineOpposite, TimelineSeparator, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, type TransitionProps, type TreeNode, TreeView, type TreeViewProps, Typewriter, type TypewriterProps, type UploadedFile, User, VStack, type ValidationRule, type ViewerImage, VirtualList, type VirtualListProps, VisuallyHidden, type VisuallyHiddenProps, Well, type WellProps, Wiggle, type WiggleProps, WordRotate, type WordRotateProps, actionBarVariants, actionGroupVariants, actionIconVariants, actionMenuTriggerVariants, actionSheetItemVariants, actionSheetVariants, announcementBannerVariants, appShellVariants, applyMask, authLayoutVariants, autocompleteInputVariants, avatarGroupVariants, backTopVariants, badgeIndicatorVariants, bottomNavigationVariants, buttonGroupVariants, buttonVariants, cardVariants, carouselVariants, chartContainerVariants, chipVariants, circularProgressVariants, closeButtonVariants, cn, codeVariants, colorAreaVariants, colorFieldVariants, colorSliderVariants, colorSwatchPickerVariants, colorSwatchVariants, colorWheelVariants, confirmDialogIconVariants, contextualHelpTriggerVariants, copyButtonVariants, currencyInputVariants, dashboardLayoutVariants, dateFieldVariants, dateInputVariants, defaultColors, dotsVariants, emojiPickerVariants, emptyStateVariants, fabVariants, fileUploadVariants, flexVariants, formatCurrency, formatDate, formatFileSize, formatPhoneNumber, fullCalendarVariants, getFileIcon, getMaskPlaceholder, gridItemVariants, gridListItemVariants, gridListVariants, gridVariants, hexToRgb, hsvToRgb, iconButtonVariants, illustratedMessageVariants, imageCropperVariants, imageVariants, indicatorVariants, infiniteScrollLoaderVariants, infiniteScrollVariants, inlineAlertVariants, inputOTPVariants, inputSizeVariants, kanbanBoardVariants, kanbanCardVariants, kanbanColumnVariants, kbdVariants, labelSizeVariants, labeledValueGroupVariants, labeledValueVariants, linkVariants, listItemVariants, listVariants, listViewItemVariants, listViewVariants, listboxItemVariants, listboxVariants, loadingOverlayVariants, loadingVariants, maskedInputVariants, materialColors, meterVariants, modalContentVariants, navbarVariants, navigationMenuTriggerStyle, notificationCenterVariants, nprogressVariants, numberFieldVariants, parseDate, parseFormattedValue, phoneInputVariants, pullToRefreshVariants, qrCodeVariants, rangeSliderVariants, ratingVariants, rgbToHex, rgbToHsv, richTextEditorVariants, scrollShadowVariants, searchBarVariants, searchFieldVariants, segmentedControlItemVariants, segmentedControlVariants, settingsLayoutVariants, sheetVariants, sidebarMenuButtonVariants, skeletonVariants, snippetVariants, sortableItemVariants, sortableListVariants, spinnerVariants, statCardVariants, statusLightVariants, stepVariants, stepsVariants, swipeActionVariants, swipeActionsVariants, tagGroupItemVariants, tagGroupVariants, tagVariants, tailwindColors, textBadgeVariants, textFieldVariants, themeToggleVariants, timeFieldVariants, timeInputVariants, timelineItemVariants, timelineVariants, toggleVariants, treeViewVariants, unmask, useButtonGroup, useCarousel, useConfetti, useConfirmDialog, useFieldContext, useFormContext, useSidebar, useSpotlight, userVariants, validateFile, validators, virtualListVariants, wellVariants };
|
|
4384
|
+
export { Accordion, AccordionItem, type AccordionItemProps, type AccordionProps, ActionBar, ActionBarButton, type ActionBarProps, ActionGroup, type ActionGroupItem, type ActionGroupProps, ActionIcon, type ActionIconProps, ActionMenu, type ActionMenuGroup, type ActionMenuItem, type ActionMenuProps, ActionSheet, type ActionSheetItem, type ActionSheetProps, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, type AlertType, type AlertVariant, AnnouncementBanner, type AnnouncementBannerProps, AppShell, AppShellAside, AppShellFooter, AppShellHeader, AppShellMain, type AppShellProps, AppShellSidebar, AreaChart, type AreaChartProps, AspectRatio, AuthDivider, AuthFooterLinks, AuthForm, AuthHeader, AuthLayout, type AuthLayoutProps, AuthSocialButtons, Autocomplete, type AutocompleteOption, type AutocompleteProps, Avatar, AvatarFallback, AvatarGroup, type AvatarGroupItem, type AvatarGroupProps, AvatarImage, BackTop, type BackTopProps, Badge, type BadgeProps, BarChart, type BarChartProps, BatteryMeter, BottomNavigation, type BottomNavigationItem, type BottomNavigationProps, Bounce, type BounceProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, COUNTRIES, Calendar, type CalendarEvent, type CalendarProps, type CalendarView, Card, CardContent, CardFooter, CardHeader, Carousel, type CarouselApi, CarouselContent, CarouselItem, type CarouselItemProps, CarouselNext, CarouselPrevious, type CarouselProps, Center, type ChartDataPoint, Checkbox, Checkmark, type CheckmarkProps, type CheckmarkSize, type CheckmarkVariant, Chip, type ChipProps, CircularProgress, CloseButton, type CloseButtonProps, Code, Collapse, type CollapseProps, Collapsible, CollapsibleContent, CollapsibleTrigger, ColorArea, type ColorAreaProps, type ColorAreaValue, ColorField, type ColorFieldProps, type ColorPalette, ColorPicker, type ColorPickerProps, ColorSlider, type ColorSliderChannel, type ColorSliderProps, ColorSwatch, ColorSwatchPicker, type ColorSwatchPickerProps, type ColorSwatchProps, ColorWheel, type ColorWheelProps, type Column, Combobox, type ComboboxOption, type ComboboxProps, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, Confetti, type ConfettiOptions, type ConfettiProps, ConfirmDialog, type ConfirmDialogProps, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, ContextualHelp, type ContextualHelpProps, CopyButton, type CopyButtonProps, Counter, type CounterProps, type Country, CurrencyInput, type CurrencyInputProps, DEFAULT_COLORS, DashboardGrid, DashboardLayout, type DashboardLayoutProps, DashboardPage, DashboardPageHeader, DataTable, type DataTableProps, DateField, type DateFieldProps, type DateFormat, DateInput, type DateInputProps, DatePicker, type DatePickerProps, DateRangePicker, type DateRangePickerProps, DefaultErrorFallback, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DiskUsageMeter, Dots, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EMOJIS, EMOJI_CATEGORIES, EmojiPicker, type EmojiPickerProps, EmptyState, ErrorBoundary, type ErrorBoundaryProps, Expand, type ExpandProps, FAB, type FABAction, Fade, type FadeProps, FieldContext, type FieldContextValue, type FieldState, type FileRejection, FileUpload, type FileUploadProps, Flex, type FlexProps, Flip, type FlipDirection, type FlipProps, FloatingActionButton, type FloatingActionButtonProps, Form, FormContext, type FormContextValue, FormControl, type FormControlProps, FormDescription, type FormDescriptionProps, FormField, type FormFieldProps, FormItem, type FormItemProps, FormLabel, type FormLabelProps, FormMessage, type FormMessageProps, type FormProps, type FormState, FullCalendar, type FullCalendarProps, Glow, type GlowProps, Grid, GridItem, type GridItemProps, GridList, type GridListItem, type GridListProps, type GridProps, HStack, HoverCard, HoverCardContent, HoverCardTrigger, IconButton, type IconButtonProps, IllustratedMessage, type IllustratedMessageProps, Image, ImageCropper, type ImageCropperProps, ImageViewer, type ImageViewerProps, ImageViewerTrigger, type ImageViewerTriggerProps, Indicator, type IndicatorProps, IndicatorWrapper, type IndicatorWrapperProps, InfiniteScroll, type InfiniteScrollProps, InlineAlert, type InlineAlertProps, Input, InputOTP, InputOTPGroup, type InputOTPProps, InputOTPSeparator, InputOTPSlot, type InputOTPSlotProps, type InputProps, KanbanBoard, type KanbanBoardProps, type KanbanCard, type KanbanColumn, Kbd, type KbdProps, Label, LabeledValue, LabeledValueGroup, type LabeledValueGroupProps, type LabeledValueProps, LineChart, type LineChartProps, Link, type LinkProps, List, ListItem, ListItemText, ListView, type ListViewItem, type ListViewProps, Listbox, ListboxItem, type ListboxOption, Loading, LoadingOverlay, type LoadingOverlayProps, type LoadingProps, MASK_PRESETS, type MaskChar, type MaskDefinition, type MaskPreset, MaskedInput, type MaskedInputProps, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, Meter, type MeterProps, Modal, ModalClose, ModalContent, ModalDescription, ModalFooter, ModalHeader, ModalOverlay, ModalPortal, type ModalProps, ModalRoot, ModalTitle, ModalTrigger, MultiSelect, type MultiSelectOption, type MultiSelectProps, NProgress, type NProgressProps, Navbar, NavbarBrand, NavbarContent, NavbarItem, NavbarLink, type NavbarProps, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, type Notification, NotificationCenter, type NotificationCenterProps, type NotificationType, NumberField, type NumberFieldProps, NumberInput, type NumberInputProps, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, type PaginationState, Parallax, type ParallaxProps, PasswordInput, type PasswordInputProps, PhoneInput, type PhoneInputProps, PieChart, type PieChartProps, Pop, type PopProps, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Portal, type PortalProps, Progress, PullToRefresh, type PullToRefreshProps, Pulse, type PulseProps, type PulseSpeed, QRCode, type QRCodeProps, RadioGroup, RadioGroupItem, RangeSlider, type RangeSliderProps, Rating, type RatingProps, ResizableHandle, type ResizableHandleProps, ResizablePanel, ResizablePanelGroup, type ResizablePanelGroupProps, RichTextEditor, type RichTextEditorProps, Ripple, type RippleProps, Rotate, type RotateProps, Scale, type ScaleOrigin, type ScaleProps, ScrollArea, ScrollBar, ScrollProgress, type ScrollProgressPosition, type ScrollProgressProps, ScrollReveal, type ScrollRevealDirection, type ScrollRevealProps, ScrollShadow, type ScrollShadowProps, SearchBar, type SearchBarProps, SearchField, type SearchFieldProps, type SearchSuggestion, SegmentedControl, SegmentedControlItem, type SegmentedControlItemProps, type SegmentedControlProps, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, SettingsCard, SettingsHeader, SettingsLayout, type SettingsLayoutProps, SettingsNavItem, SettingsRow, SettingsSection, SettingsSeparator, Shake, type ShakeIntensity, type ShakeProps, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Shimmer, type ShimmerDirection, type ShimmerProps, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarPersistentToggle, SidebarProvider, SidebarRail, SidebarSeparator, SidebarToggle, SidebarTrigger, SimpleGrid, Skeleton, Slide, type SlideDirection, type SlideProps, Slider, Snippet, type SortDirection, type SortState, type SortableItem, SortableList, Spacer, type SpacerProps, Sparkles, type SparklesProps, Spinner, type SpotlightItem, SpotlightSearch, type SpotlightSearchProps, StatCard, StatusLight, type StatusLightProps, Step, type StepProps, Steps, type StepsProps, type SwipeAction, SwipeActions, type SwipeActionsProps, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, type Tag, TagGroup, type TagGroupProps, TagInput, type TagInputProps, type TagItem, TextBadge, type TextBadgeProps, TextField, type TextFieldProps, TextReveal, type TextRevealDirection, type TextRevealProps, Textarea, type TextareaProps, ThemeProvider, type ThemeProviderProps, ThemeToggle, type ThemeToggleProps, TimeField, type TimeFieldProps, TimeInput, type TimeInputProps, TimePicker, type TimePickerProps, type TimeValue, Timeline, TimelineContent, TimelineItem, TimelineOpposite, TimelineSeparator, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, type TransitionProps, type TreeNode, TreeView, type TreeViewProps, Typewriter, type TypewriterProps, type UploadedFile, User, VStack, type ValidationRule, type ViewerImage, VirtualList, type VirtualListProps, VisuallyHidden, type VisuallyHiddenProps, Well, type WellProps, Wiggle, type WiggleProps, WordRotate, type WordRotateProps, actionBarVariants, actionGroupVariants, actionIconVariants, actionMenuTriggerVariants, actionSheetItemVariants, alertVariants, announcementBannerVariants, appShellVariants, applyMask, authLayoutVariants, autocompleteInputVariants, avatarGroupVariants, backTopVariants, badgeIndicatorVariants, bottomNavigationVariants, buttonGroupVariants, buttonVariants, cardVariants, carouselVariants, chartContainerVariants, chipVariants, circularProgressVariants, closeButtonVariants, cn, codeVariants, colorAreaVariants, colorFieldVariants, colorSliderVariants, colorSwatchPickerVariants, colorSwatchVariants, colorWheelVariants, confirmDialogIconVariants, contextualHelpTriggerVariants, copyButtonVariants, currencyInputVariants, dashboardLayoutVariants, dateFieldVariants, dateInputVariants, defaultColors, dotsVariants, emojiPickerVariants, emptyStateVariants, fabVariants, fileUploadVariants, flexVariants, formatCurrency, formatDate, formatFileSize, formatPhoneNumber, fullCalendarVariants, getFileIcon, getMaskPlaceholder, gridItemVariants, gridListItemVariants, gridListVariants, gridVariants, hexToRgb, hsvToRgb, iconButtonVariants, illustratedMessageVariants, imageCropperVariants, imageVariants, indicatorVariants, infiniteScrollLoaderVariants, infiniteScrollVariants, inlineAlertVariants, inputOTPVariants, inputSizeVariants, kanbanBoardVariants, kanbanCardVariants, kanbanColumnVariants, kbdVariants, labelSizeVariants, labeledValueGroupVariants, labeledValueVariants, linkVariants, listItemVariants, listVariants, listViewItemVariants, listViewVariants, listboxItemVariants, listboxVariants, loadingOverlayVariants, loadingVariants, maskedInputVariants, materialColors, meterVariants, modalContentVariants, navbarVariants, navigationMenuTriggerStyle, notificationCenterVariants, nprogressVariants, numberFieldVariants, parseDate, parseFormattedValue, phoneInputVariants, pullToRefreshVariants, qrCodeVariants, rangeSliderVariants, ratingVariants, rgbToHex, rgbToHsv, richTextEditorVariants, scrollShadowVariants, searchBarVariants, searchFieldVariants, segmentedControlItemVariants, segmentedControlVariants, settingsLayoutVariants, sheetVariants, sidebarMenuButtonVariants, skeletonVariants, snippetVariants, sortableItemVariants, sortableListVariants, spinnerVariants, statCardVariants, statusLightVariants, stepVariants, stepsVariants, swipeActionVariants, swipeActionsVariants, tagGroupItemVariants, tagGroupVariants, tagVariants, tailwindColors, textBadgeVariants, textFieldVariants, themeToggleVariants, timeFieldVariants, timeInputVariants, timelineItemVariants, timelineVariants, toggleVariants, treeViewVariants, unmask, useButtonGroup, useCarousel, useConfetti, useConfirmDialog, useFieldContext, useFormContext, useSidebar, useSpotlight, userVariants, validateFile, validators, virtualListVariants, wellVariants };
|