@chekinapp/ui 0.0.34 → 0.0.35
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 +2092 -1395
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +51 -45
- package/dist/index.css.map +1 -1
- package/dist/index.d.cts +252 -44
- package/dist/index.d.ts +252 -44
- package/dist/index.js +2044 -1363
- package/dist/index.js.map +1 -1
- package/package.json +4 -3
package/dist/index.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React$1 from 'react';
|
|
2
|
-
import React__default, { ReactNode, ElementType, InputHTMLAttributes, ComponentProps, PropsWithChildren, MouseEvent, SVGProps, FC, ImgHTMLAttributes, ComponentType, AnchorHTMLAttributes, ForwardedRef, ButtonHTMLAttributes, HTMLAttributes, TdHTMLAttributes, ThHTMLAttributes, ComponentPropsWithoutRef, ReactElement, TextareaHTMLAttributes, FocusEventHandler,
|
|
2
|
+
import React__default, { ReactNode, ElementType, InputHTMLAttributes, ComponentProps, PropsWithChildren, MouseEvent, SVGProps, FC, ImgHTMLAttributes, ComponentType, AnchorHTMLAttributes, Ref, ForwardedRef, ButtonHTMLAttributes, HTMLAttributes, TdHTMLAttributes, ThHTMLAttributes, ComponentPropsWithoutRef, ReactElement, TextareaHTMLAttributes, FocusEventHandler, RefCallback, RefObject } from 'react';
|
|
3
3
|
import * as AccordionPrimitive from '@radix-ui/react-accordion';
|
|
4
4
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
5
5
|
import * as AvatarPrimitive from '@radix-ui/react-avatar';
|
|
@@ -10,7 +10,7 @@ import { DayPicker } from 'react-day-picker';
|
|
|
10
10
|
import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
|
|
11
11
|
import { ColumnDef } from '@tanstack/react-table';
|
|
12
12
|
import * as DialogPrimitive from '@radix-ui/react-dialog';
|
|
13
|
-
import * as
|
|
13
|
+
import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
|
|
14
14
|
import * as TooltipPrimitive from '@radix-ui/react-tooltip';
|
|
15
15
|
import { TooltipContentProps as TooltipContentProps$1 } from '@radix-ui/react-tooltip';
|
|
16
16
|
import { LucideIcon } from 'lucide-react';
|
|
@@ -18,7 +18,7 @@ import * as LabelPrimitive from '@radix-ui/react-label';
|
|
|
18
18
|
import * as RadixPopover from '@radix-ui/react-popover';
|
|
19
19
|
import * as RadioGroupPrimitive from '@radix-ui/react-radio-group';
|
|
20
20
|
import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area';
|
|
21
|
-
import * as
|
|
21
|
+
import * as SelectPrimitive from '@radix-ui/react-select';
|
|
22
22
|
import * as SeparatorPrimitive from '@radix-ui/react-separator';
|
|
23
23
|
import * as SwitchPrimitives from '@radix-ui/react-switch';
|
|
24
24
|
import { ToastT } from 'sonner';
|
|
@@ -302,7 +302,7 @@ type CopyIconProps = {
|
|
|
302
302
|
className?: string;
|
|
303
303
|
tooltipText?: string;
|
|
304
304
|
size?: 'sm' | 'md';
|
|
305
|
-
variant?: 'default' | '
|
|
305
|
+
variant?: 'default' | 'outline' | 'ghost';
|
|
306
306
|
onClick?: () => string | Promise<string>;
|
|
307
307
|
};
|
|
308
308
|
declare function CopyIcon({ textToCopy, className, tooltipText, size, variant, onClick, }: CopyIconProps): react_jsx_runtime.JSX.Element;
|
|
@@ -335,6 +335,7 @@ declare const DialogContent: React$1.ForwardRefExoticComponent<Omit<DialogPrimit
|
|
|
335
335
|
showCloseButton?: boolean;
|
|
336
336
|
container?: HTMLElement;
|
|
337
337
|
lockScroll?: boolean;
|
|
338
|
+
overlayClassName?: string;
|
|
338
339
|
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
339
340
|
declare const DialogHeader: {
|
|
340
341
|
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
@@ -386,17 +387,82 @@ type DownloadEntryFormsButtonProps = {
|
|
|
386
387
|
};
|
|
387
388
|
declare function DownloadEntryFormsButton({ disabled, isLoading, className, onClick, label, }: DownloadEntryFormsButtonProps): react_jsx_runtime.JSX.Element;
|
|
388
389
|
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
390
|
+
interface DropdownMenuItemContentProps {
|
|
391
|
+
icon?: ReactNode;
|
|
392
|
+
label: ReactNode;
|
|
393
|
+
description?: ReactNode;
|
|
394
|
+
}
|
|
395
|
+
declare function DropdownMenuItemContent({ icon, label, description, }: DropdownMenuItemContentProps): react_jsx_runtime.JSX.Element;
|
|
396
|
+
|
|
397
|
+
declare function DropdownMenu({ ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
398
|
+
declare function DropdownMenuPortal({ ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Portal>): react_jsx_runtime.JSX.Element;
|
|
399
|
+
declare function DropdownMenuTrigger({ ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
|
|
400
|
+
declare function DropdownMenuGroup({ ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Group>): react_jsx_runtime.JSX.Element;
|
|
401
|
+
declare function DropdownMenuSub({ ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Sub>): react_jsx_runtime.JSX.Element;
|
|
402
|
+
declare function DropdownMenuRadioGroup({ ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.RadioGroup>): react_jsx_runtime.JSX.Element;
|
|
403
|
+
declare const DropdownMenuSubTrigger: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubTriggerProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
404
|
+
inset?: boolean;
|
|
405
|
+
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
406
|
+
declare const DropdownMenuSubContent: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
407
|
+
declare const DropdownMenuContent: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
394
408
|
container?: HTMLElement;
|
|
395
409
|
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
396
|
-
type DropdownMenuContentSide = React$1.ComponentPropsWithoutRef<typeof
|
|
397
|
-
declare const DropdownMenuItem: React$1.ForwardRefExoticComponent<Omit<
|
|
398
|
-
|
|
399
|
-
|
|
410
|
+
type DropdownMenuContentSide = React$1.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Content>['side'];
|
|
411
|
+
declare const DropdownMenuItem: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
412
|
+
inset?: boolean;
|
|
413
|
+
active?: boolean;
|
|
414
|
+
leftSlot?: React$1.ReactNode;
|
|
415
|
+
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
416
|
+
declare const DropdownMenuCheckboxItem: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuCheckboxItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
417
|
+
declare const DropdownMenuRadioItem: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuRadioItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
418
|
+
declare const DropdownMenuLabel: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuLabelProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
419
|
+
inset?: boolean;
|
|
420
|
+
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
421
|
+
declare const DropdownMenuSeparator: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSeparatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
422
|
+
declare const DropdownMenuShortcut: {
|
|
423
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLSpanElement>): react_jsx_runtime.JSX.Element;
|
|
424
|
+
displayName: string;
|
|
425
|
+
};
|
|
426
|
+
|
|
427
|
+
interface BaseCheckboxDropdownGroupProps {
|
|
428
|
+
options: CheckboxOption[];
|
|
429
|
+
keepOpenOnSelect?: boolean;
|
|
430
|
+
className?: string;
|
|
431
|
+
}
|
|
432
|
+
interface MultiSelectProps$1 extends BaseCheckboxDropdownGroupProps {
|
|
433
|
+
multiple: true;
|
|
434
|
+
value?: CheckboxOption[] | null;
|
|
435
|
+
onChange: (selectedValues: CheckboxOption[] | null) => void;
|
|
436
|
+
}
|
|
437
|
+
interface SingleSelectProps extends BaseCheckboxDropdownGroupProps {
|
|
438
|
+
multiple: false;
|
|
439
|
+
value?: CheckboxOption | null;
|
|
440
|
+
onChange: (selectedValues: CheckboxOption | null) => void;
|
|
441
|
+
}
|
|
442
|
+
interface AutoDetectProps extends BaseCheckboxDropdownGroupProps {
|
|
443
|
+
multiple?: undefined;
|
|
444
|
+
value?: CheckboxOption | null;
|
|
445
|
+
onChange: (selectedValues: CheckboxOption | null) => void;
|
|
446
|
+
}
|
|
447
|
+
type CheckboxDropdownGroupProps = MultiSelectProps$1 | SingleSelectProps | AutoDetectProps;
|
|
448
|
+
|
|
449
|
+
declare const CheckboxDropdownGroup: React$1.ForwardRefExoticComponent<CheckboxDropdownGroupProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
450
|
+
|
|
451
|
+
interface CheckboxDropdownGroupConfig {
|
|
452
|
+
label: string;
|
|
453
|
+
options: CheckboxOption[];
|
|
454
|
+
value: CheckboxOption[] | CheckboxOption | null;
|
|
455
|
+
onChange: (selectedValues: CheckboxOption[] | CheckboxOption | null) => void;
|
|
456
|
+
multiple?: boolean;
|
|
457
|
+
}
|
|
458
|
+
interface CheckboxDropdownMultiGroupProps {
|
|
459
|
+
groups: CheckboxDropdownGroupConfig[];
|
|
460
|
+
className?: string;
|
|
461
|
+
keepOpenOnSelect?: boolean;
|
|
462
|
+
}
|
|
463
|
+
declare const CheckboxDropdownMultiGroup: React$1.ForwardRefExoticComponent<CheckboxDropdownMultiGroupProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
464
|
+
|
|
465
|
+
declare const CustomCheckboxDropdownGroup: React$1.ForwardRefExoticComponent<CheckboxDropdownGroupProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
400
466
|
|
|
401
467
|
type DropdownButtonProps = {
|
|
402
468
|
trigger: ReactNode | ((isOpen: boolean) => ReactNode);
|
|
@@ -510,12 +576,12 @@ declare const GridItems: React$1.ForwardRefExoticComponent<GridItemsProps & Reac
|
|
|
510
576
|
|
|
511
577
|
declare const statusStyles: {
|
|
512
578
|
readonly INACTIVE: {
|
|
513
|
-
readonly background: "bg-chekin-surface-input-empty";
|
|
514
|
-
readonly color: "text-chekin-gray-2";
|
|
579
|
+
readonly background: "bg-[var(--chekin-color-surface-input-empty)]";
|
|
580
|
+
readonly color: "text-[var(--chekin-color-gray-2)]";
|
|
515
581
|
};
|
|
516
582
|
readonly ACTIVE: {
|
|
517
|
-
readonly background: "bg-chekin-surface-autocomplete";
|
|
518
|
-
readonly color: "text-chekin-blue";
|
|
583
|
+
readonly background: "bg-[var(--chekin-color-surface-autocomplete)]";
|
|
584
|
+
readonly color: "text-[var(--chekin-color-brand-blue)]";
|
|
519
585
|
};
|
|
520
586
|
readonly SUCCESS: {
|
|
521
587
|
readonly background: "bg-emerald-50";
|
|
@@ -523,7 +589,7 @@ declare const statusStyles: {
|
|
|
523
589
|
};
|
|
524
590
|
readonly DANGER: {
|
|
525
591
|
readonly background: "bg-red-50";
|
|
526
|
-
readonly color: "text-
|
|
592
|
+
readonly color: "text-[var(--error-message-color)]";
|
|
527
593
|
};
|
|
528
594
|
};
|
|
529
595
|
interface HaloIconProps extends PropsWithChildren {
|
|
@@ -719,6 +785,13 @@ declare const uiKitTranslations: {
|
|
|
719
785
|
beta: string;
|
|
720
786
|
reviews: string;
|
|
721
787
|
learn_more: string;
|
|
788
|
+
this_cannot_be_reverted: string;
|
|
789
|
+
delete: string;
|
|
790
|
+
cancel: string;
|
|
791
|
+
you_have_made_changes: string;
|
|
792
|
+
would_you_like_to_save_them: string;
|
|
793
|
+
save: string;
|
|
794
|
+
dont_save: string;
|
|
722
795
|
};
|
|
723
796
|
readonly es: {
|
|
724
797
|
verified: string;
|
|
@@ -778,6 +851,13 @@ declare const uiKitTranslations: {
|
|
|
778
851
|
liveness_video: string;
|
|
779
852
|
reviews: string;
|
|
780
853
|
learn_more: string;
|
|
854
|
+
this_cannot_be_reverted: string;
|
|
855
|
+
delete: string;
|
|
856
|
+
cancel: string;
|
|
857
|
+
you_have_made_changes: string;
|
|
858
|
+
would_you_like_to_save_them: string;
|
|
859
|
+
save: string;
|
|
860
|
+
dont_save: string;
|
|
781
861
|
};
|
|
782
862
|
readonly fr: {
|
|
783
863
|
verified: string;
|
|
@@ -837,6 +917,13 @@ declare const uiKitTranslations: {
|
|
|
837
917
|
liveness_video: string;
|
|
838
918
|
reviews: string;
|
|
839
919
|
learn_more: string;
|
|
920
|
+
this_cannot_be_reverted: string;
|
|
921
|
+
delete: string;
|
|
922
|
+
cancel: string;
|
|
923
|
+
you_have_made_changes: string;
|
|
924
|
+
would_you_like_to_save_them: string;
|
|
925
|
+
save: string;
|
|
926
|
+
dont_save: string;
|
|
840
927
|
};
|
|
841
928
|
readonly de: {
|
|
842
929
|
verified: string;
|
|
@@ -896,6 +983,13 @@ declare const uiKitTranslations: {
|
|
|
896
983
|
liveness_video: string;
|
|
897
984
|
reviews: string;
|
|
898
985
|
learn_more: string;
|
|
986
|
+
this_cannot_be_reverted: string;
|
|
987
|
+
delete: string;
|
|
988
|
+
cancel: string;
|
|
989
|
+
you_have_made_changes: string;
|
|
990
|
+
would_you_like_to_save_them: string;
|
|
991
|
+
save: string;
|
|
992
|
+
dont_save: string;
|
|
899
993
|
};
|
|
900
994
|
readonly it: {
|
|
901
995
|
verified: string;
|
|
@@ -955,6 +1049,13 @@ declare const uiKitTranslations: {
|
|
|
955
1049
|
liveness_video: string;
|
|
956
1050
|
reviews: string;
|
|
957
1051
|
learn_more: string;
|
|
1052
|
+
this_cannot_be_reverted: string;
|
|
1053
|
+
delete: string;
|
|
1054
|
+
cancel: string;
|
|
1055
|
+
you_have_made_changes: string;
|
|
1056
|
+
would_you_like_to_save_them: string;
|
|
1057
|
+
save: string;
|
|
1058
|
+
dont_save: string;
|
|
958
1059
|
};
|
|
959
1060
|
readonly pt: {
|
|
960
1061
|
verified: string;
|
|
@@ -1014,6 +1115,13 @@ declare const uiKitTranslations: {
|
|
|
1014
1115
|
liveness_video: string;
|
|
1015
1116
|
reviews: string;
|
|
1016
1117
|
learn_more: string;
|
|
1118
|
+
this_cannot_be_reverted: string;
|
|
1119
|
+
delete: string;
|
|
1120
|
+
cancel: string;
|
|
1121
|
+
you_have_made_changes: string;
|
|
1122
|
+
would_you_like_to_save_them: string;
|
|
1123
|
+
save: string;
|
|
1124
|
+
dont_save: string;
|
|
1017
1125
|
};
|
|
1018
1126
|
};
|
|
1019
1127
|
declare const uiKitI18nResources: {
|
|
@@ -1076,6 +1184,13 @@ declare const uiKitI18nResources: {
|
|
|
1076
1184
|
beta: string;
|
|
1077
1185
|
reviews: string;
|
|
1078
1186
|
learn_more: string;
|
|
1187
|
+
this_cannot_be_reverted: string;
|
|
1188
|
+
delete: string;
|
|
1189
|
+
cancel: string;
|
|
1190
|
+
you_have_made_changes: string;
|
|
1191
|
+
would_you_like_to_save_them: string;
|
|
1192
|
+
save: string;
|
|
1193
|
+
dont_save: string;
|
|
1079
1194
|
};
|
|
1080
1195
|
};
|
|
1081
1196
|
readonly es: {
|
|
@@ -1137,6 +1252,13 @@ declare const uiKitI18nResources: {
|
|
|
1137
1252
|
liveness_video: string;
|
|
1138
1253
|
reviews: string;
|
|
1139
1254
|
learn_more: string;
|
|
1255
|
+
this_cannot_be_reverted: string;
|
|
1256
|
+
delete: string;
|
|
1257
|
+
cancel: string;
|
|
1258
|
+
you_have_made_changes: string;
|
|
1259
|
+
would_you_like_to_save_them: string;
|
|
1260
|
+
save: string;
|
|
1261
|
+
dont_save: string;
|
|
1140
1262
|
};
|
|
1141
1263
|
};
|
|
1142
1264
|
readonly fr: {
|
|
@@ -1198,6 +1320,13 @@ declare const uiKitI18nResources: {
|
|
|
1198
1320
|
liveness_video: string;
|
|
1199
1321
|
reviews: string;
|
|
1200
1322
|
learn_more: string;
|
|
1323
|
+
this_cannot_be_reverted: string;
|
|
1324
|
+
delete: string;
|
|
1325
|
+
cancel: string;
|
|
1326
|
+
you_have_made_changes: string;
|
|
1327
|
+
would_you_like_to_save_them: string;
|
|
1328
|
+
save: string;
|
|
1329
|
+
dont_save: string;
|
|
1201
1330
|
};
|
|
1202
1331
|
};
|
|
1203
1332
|
readonly de: {
|
|
@@ -1259,6 +1388,13 @@ declare const uiKitI18nResources: {
|
|
|
1259
1388
|
liveness_video: string;
|
|
1260
1389
|
reviews: string;
|
|
1261
1390
|
learn_more: string;
|
|
1391
|
+
this_cannot_be_reverted: string;
|
|
1392
|
+
delete: string;
|
|
1393
|
+
cancel: string;
|
|
1394
|
+
you_have_made_changes: string;
|
|
1395
|
+
would_you_like_to_save_them: string;
|
|
1396
|
+
save: string;
|
|
1397
|
+
dont_save: string;
|
|
1262
1398
|
};
|
|
1263
1399
|
};
|
|
1264
1400
|
readonly it: {
|
|
@@ -1320,6 +1456,13 @@ declare const uiKitI18nResources: {
|
|
|
1320
1456
|
liveness_video: string;
|
|
1321
1457
|
reviews: string;
|
|
1322
1458
|
learn_more: string;
|
|
1459
|
+
this_cannot_be_reverted: string;
|
|
1460
|
+
delete: string;
|
|
1461
|
+
cancel: string;
|
|
1462
|
+
you_have_made_changes: string;
|
|
1463
|
+
would_you_like_to_save_them: string;
|
|
1464
|
+
save: string;
|
|
1465
|
+
dont_save: string;
|
|
1323
1466
|
};
|
|
1324
1467
|
};
|
|
1325
1468
|
readonly pt: {
|
|
@@ -1381,6 +1524,13 @@ declare const uiKitI18nResources: {
|
|
|
1381
1524
|
liveness_video: string;
|
|
1382
1525
|
reviews: string;
|
|
1383
1526
|
learn_more: string;
|
|
1527
|
+
this_cannot_be_reverted: string;
|
|
1528
|
+
delete: string;
|
|
1529
|
+
cancel: string;
|
|
1530
|
+
you_have_made_changes: string;
|
|
1531
|
+
would_you_like_to_save_them: string;
|
|
1532
|
+
save: string;
|
|
1533
|
+
dont_save: string;
|
|
1384
1534
|
};
|
|
1385
1535
|
};
|
|
1386
1536
|
};
|
|
@@ -1491,6 +1641,7 @@ type Close = {
|
|
|
1491
1641
|
closeOnDocumentClick?: boolean;
|
|
1492
1642
|
closeOnEscape?: boolean;
|
|
1493
1643
|
};
|
|
1644
|
+
type ModalSize = 'auto' | 'compact';
|
|
1494
1645
|
type ModalProps = {
|
|
1495
1646
|
open?: boolean;
|
|
1496
1647
|
modal?: boolean;
|
|
@@ -1501,8 +1652,10 @@ type ModalProps = {
|
|
|
1501
1652
|
lockScroll?: boolean;
|
|
1502
1653
|
scrollableOverlay?: boolean;
|
|
1503
1654
|
container?: HTMLElement;
|
|
1655
|
+
overlayClassName?: string;
|
|
1656
|
+
size?: ModalSize;
|
|
1504
1657
|
} & Close & Text & Icon & Buttons;
|
|
1505
|
-
declare function Modal({ open, onOpenChange, onClose, children, withCloseButton, closeOnDocumentClick, closeOnEscape, scrollableOverlay, className, title, text, iconSrc, iconAlt, iconProps, buttons, lockScroll, container, modal, }: ModalProps): react_jsx_runtime.JSX.Element;
|
|
1658
|
+
declare function Modal({ open, onOpenChange, onClose, children, withCloseButton, closeOnDocumentClick, closeOnEscape, scrollableOverlay, className, title, text, iconSrc, iconAlt, iconProps, buttons, lockScroll, container, modal, overlayClassName, size, }: ModalProps): react_jsx_runtime.JSX.Element;
|
|
1506
1659
|
declare namespace Modal {
|
|
1507
1660
|
var displayName: string;
|
|
1508
1661
|
}
|
|
@@ -1553,6 +1706,17 @@ declare const PopoverPortal: React$1.FC<RadixPopover.PopoverPortalProps>;
|
|
|
1553
1706
|
declare const PopoverClose: React$1.ForwardRefExoticComponent<RadixPopover.PopoverCloseProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
1554
1707
|
declare const PopoverContent: React$1.ForwardRefExoticComponent<Omit<RadixPopover.PopoverContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
1555
1708
|
|
|
1709
|
+
interface PopoverWithTooltipProps {
|
|
1710
|
+
children: React$1.ReactNode;
|
|
1711
|
+
popoverContent: React$1.ReactNode;
|
|
1712
|
+
tooltipContent: React$1.ReactNode;
|
|
1713
|
+
open?: boolean;
|
|
1714
|
+
onOpenChange?: (open: boolean) => void;
|
|
1715
|
+
popoverContentClassName?: string;
|
|
1716
|
+
tooltipVariant?: 'light' | 'dark';
|
|
1717
|
+
}
|
|
1718
|
+
declare function PopoverWithTooltip({ children, popoverContent, tooltipContent, open, onOpenChange, popoverContentClassName, tooltipVariant, }: PopoverWithTooltipProps): react_jsx_runtime.JSX.Element;
|
|
1719
|
+
|
|
1556
1720
|
interface RadioOption<V = string, D = unknown> {
|
|
1557
1721
|
label: string;
|
|
1558
1722
|
value: V;
|
|
@@ -1698,30 +1862,6 @@ declare const Section: React$1.ForwardRefExoticComponent<SectionProps & React$1.
|
|
|
1698
1862
|
declare const SubSection: React$1.ForwardRefExoticComponent<SectionProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1699
1863
|
declare const DividingSubsection: React$1.ForwardRefExoticComponent<SectionProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1700
1864
|
|
|
1701
|
-
declare const SelectRoot: React$1.FC<RadixSelect.SelectProps>;
|
|
1702
|
-
declare const SelectValue$1: React$1.ForwardRefExoticComponent<RadixSelect.SelectValueProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
1703
|
-
declare const SelectGroup: React$1.ForwardRefExoticComponent<RadixSelect.SelectGroupProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1704
|
-
declare const SelectPortal: React$1.FC<RadixSelect.SelectPortalProps>;
|
|
1705
|
-
declare const SelectTrigger: React$1.ForwardRefExoticComponent<Omit<RadixSelect.SelectTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
1706
|
-
declare const SelectContent: React$1.ForwardRefExoticComponent<Omit<RadixSelect.SelectContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
1707
|
-
declare const SelectItem: React$1.ForwardRefExoticComponent<Omit<RadixSelect.SelectItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
1708
|
-
declare const SelectSeparator: React$1.ForwardRefExoticComponent<Omit<RadixSelect.SelectSeparatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
1709
|
-
declare const SelectLabel: React$1.ForwardRefExoticComponent<Omit<RadixSelect.SelectLabelProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
1710
|
-
interface SelectProps extends React$1.ComponentPropsWithoutRef<typeof RadixSelect.Root> {
|
|
1711
|
-
placeholder?: string;
|
|
1712
|
-
label?: string;
|
|
1713
|
-
supportingText?: string;
|
|
1714
|
-
errorText?: string;
|
|
1715
|
-
containerClassName?: string;
|
|
1716
|
-
triggerClassName?: string;
|
|
1717
|
-
children: React$1.ReactNode;
|
|
1718
|
-
}
|
|
1719
|
-
/**
|
|
1720
|
-
* Convenience wrapper that renders a full labelled Select with trigger + content.
|
|
1721
|
-
* For advanced compositions, use the exported primitives directly.
|
|
1722
|
-
*/
|
|
1723
|
-
declare const Select: React$1.ForwardRefExoticComponent<SelectProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
1724
|
-
|
|
1725
1865
|
type SelectOption<D = unknown, V extends string | number | boolean = string, L extends string | number | ReactNode = string> = {
|
|
1726
1866
|
label: L;
|
|
1727
1867
|
value: V;
|
|
@@ -1736,6 +1876,74 @@ type SelectorOption<T extends string | number> = {
|
|
|
1736
1876
|
disabled?: boolean;
|
|
1737
1877
|
};
|
|
1738
1878
|
|
|
1879
|
+
declare const SelectRoot: React$1.FC<SelectPrimitive.SelectProps>;
|
|
1880
|
+
declare const SelectGroup: React$1.ForwardRefExoticComponent<SelectPrimitive.SelectGroupProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1881
|
+
declare const SelectValue$1: React$1.ForwardRefExoticComponent<SelectPrimitive.SelectValueProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
1882
|
+
declare const SelectPortal: React$1.FC<SelectPrimitive.SelectPortalProps>;
|
|
1883
|
+
type SelectSize = 'sm' | 'md';
|
|
1884
|
+
declare const SelectTrigger: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & {
|
|
1885
|
+
size?: SelectSize;
|
|
1886
|
+
} & React$1.RefAttributes<HTMLButtonElement>>;
|
|
1887
|
+
declare const SelectScrollUpButton: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectScrollUpButtonProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
1888
|
+
declare const SelectScrollDownButton: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectScrollDownButtonProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
1889
|
+
declare const SelectContent: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
1890
|
+
declare const SelectLabel: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectLabelProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
1891
|
+
declare const SelectItem: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
1892
|
+
size?: SelectSize;
|
|
1893
|
+
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
1894
|
+
declare const SelectSeparator: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectSeparatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
1895
|
+
|
|
1896
|
+
type SelectProps<D = unknown, V extends string | number = string, L extends ReactNode = string> = {
|
|
1897
|
+
placeholder?: string;
|
|
1898
|
+
label?: string | ReactNode;
|
|
1899
|
+
className?: string;
|
|
1900
|
+
size?: SelectSize;
|
|
1901
|
+
options?: SelectOption<D, V, L>[];
|
|
1902
|
+
children?: ReactNode;
|
|
1903
|
+
value?: string;
|
|
1904
|
+
onChange?: (value: V) => void;
|
|
1905
|
+
onValueChange?: (value: string) => void;
|
|
1906
|
+
disabled?: boolean;
|
|
1907
|
+
supportingText?: string;
|
|
1908
|
+
errorText?: string;
|
|
1909
|
+
containerClassName?: string;
|
|
1910
|
+
triggerClassName?: string;
|
|
1911
|
+
};
|
|
1912
|
+
declare const SelectInner: <V extends string | number = string, D = unknown, L extends ReactNode = string>({ placeholder, label, className, size, options, supportingText, errorText, containerClassName, triggerClassName, children, value, onChange, onValueChange, disabled, }: SelectProps<D, V, L>, ref: Ref<HTMLButtonElement>) => react_jsx_runtime.JSX.Element;
|
|
1913
|
+
declare const Select: <V extends string | number = string, D = unknown, L extends ReactNode = string>(props: SelectProps<D, V, L> & {
|
|
1914
|
+
ref?: Ref<HTMLButtonElement>;
|
|
1915
|
+
}) => ReturnType<typeof SelectInner>;
|
|
1916
|
+
|
|
1917
|
+
type MultiSelectProps<D, V extends string | number = string, L extends string | number | ReactNode = string> = {
|
|
1918
|
+
label?: string | ReactNode;
|
|
1919
|
+
className?: string;
|
|
1920
|
+
options?: SelectOption<D, V, L>[];
|
|
1921
|
+
children?: ReactNode;
|
|
1922
|
+
value?: (string | number)[];
|
|
1923
|
+
onChange?: (value: (string | number)[]) => void;
|
|
1924
|
+
placeholder?: string;
|
|
1925
|
+
disabled?: boolean;
|
|
1926
|
+
};
|
|
1927
|
+
declare const MultiSelectInner: <V extends string | number = string, D = unknown, L extends string | number | ReactNode = string>({ label, value, onChange, className, options, placeholder, disabled, }: MultiSelectProps<D, V, L>, ref: Ref<HTMLDivElement>) => react_jsx_runtime.JSX.Element;
|
|
1928
|
+
declare const MultiSelect: <V extends string | number = string, D = unknown, L extends string | number | ReactNode = string>(props: MultiSelectProps<D, V, L> & {
|
|
1929
|
+
ref?: Ref<HTMLDivElement>;
|
|
1930
|
+
}) => ReturnType<typeof MultiSelectInner>;
|
|
1931
|
+
|
|
1932
|
+
type InfinitySelectProps = {
|
|
1933
|
+
label: string | ReactNode;
|
|
1934
|
+
className?: string;
|
|
1935
|
+
placeholder?: string;
|
|
1936
|
+
value?: string;
|
|
1937
|
+
onValueChange?: (value: string) => void;
|
|
1938
|
+
options: SelectOption[];
|
|
1939
|
+
hasNextPage: boolean;
|
|
1940
|
+
isFetchingNextPage: boolean;
|
|
1941
|
+
fetchNextPage: () => void;
|
|
1942
|
+
itemHeight?: number;
|
|
1943
|
+
maxHeight?: number;
|
|
1944
|
+
};
|
|
1945
|
+
declare function InfinitySelect({ label, className, placeholder, value, onValueChange, options, hasNextPage, isFetchingNextPage, fetchNextPage, itemHeight, maxHeight, }: InfinitySelectProps): react_jsx_runtime.JSX.Element;
|
|
1946
|
+
|
|
1739
1947
|
type SelectorsProps<T extends string | number, M extends boolean | undefined = undefined> = {
|
|
1740
1948
|
options: SelectorOption<T>[];
|
|
1741
1949
|
onClick?: (event: MouseEvent<HTMLInputElement>, value: SelectorOption<T>) => void | {
|
|
@@ -2697,4 +2905,4 @@ declare function useIsFormTouched({ watch, displayFields, debug, defaultValues,
|
|
|
2697
2905
|
|
|
2698
2906
|
declare function cn(...inputs: ClassValue[]): string;
|
|
2699
2907
|
|
|
2700
|
-
export { Accordion, AccordionContent, type AccordionContentProps, AccordionItem, AccordionTrigger, type AccordionTriggerProps, AirbnbInput, type AirbnbInputProps, AirbnbSearchInput, AirbnbSelect, type AirbnbSelectProps, AlertBox, type AlertBoxProps, AlertSize, AlertSizes, AlertType, AlertTypes, AudioPlayer, type AudioPlayerProps, Avatar, type AvatarProps, Badge, type BadgeProps, BaseCheckbox, type BaseCheckboxProps, BetaBadge, type BetaBadgeProps, BookmarkTabsList, type BookmarkTabsListProps, BookmarkTabsTrigger, type BookmarkTabsTriggerProps, BoxOptionSelector, type BoxOptionSelectorProps, type BoxOptionSelectorSwitchProps, Breadcrumb, type BreadcrumbProps, type BreadcrumbType, Breadcrumbs, type BreadcrumbsProps, Button, ButtonGroup, type ButtonGroupProps, ButtonGroupText, type ButtonGroupTextProps, type ButtonProps, type ButtonStatuses, ButtonsGroupLabel, type ButtonsGroupLabelProps, Calendar, type CalendarProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, type ChannelOption, ChannelSelector, type ChannelSelectorProps, Checkbox, CheckboxGroup, type CheckboxGroupProps, type CheckboxOption, type CheckboxProps, CircularLoader, CommingSoonBadge, type CommingSoonBadgeProps, ConfirmationDialog, type ConfirmationDialogProps, CopyIcon, type CopyIconProps, CopyLinkButton, type CopyLinkButtonProps, type CustomIconEntry, DataTable, type DataTableProps, DatePicker, type DatePickerProps, type DatePickerValue, DefaultSelectTrigger, type DefaultSelectTriggerProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DialogVisuallyHidden, DividingSubsection, DownloadEntryFormsButton, type DownloadEntryFormsButtonProps, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownButton, type DropdownButtonProps, DropdownMenu, DropdownMenuContent, type DropdownMenuContentSide, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuSeparator, DropdownMenuTrigger, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptySectionPlaceholder, type EmptySectionPlaceholderProps, EmptyTitle, ErrorMessage, type ErrorMessageProps, ExternalLink, type ExternalLinkProps, FeatureCard, type FeatureCardProps, FieldErrorMessage, type FieldErrorMessageProps, FieldTrigger, type FieldTriggerProps, FileInputButton, type FileInputButtonProps, FormBox, Content as FormBoxContent, type FormBoxContentProps, Header as FormBoxHeader, type FormBoxHeaderProps, Root as FormBoxRoot, type FormBoxRootProps, SubHeader as FormBoxSubHeader, type FormBoxSubHeaderProps, FramedIcon, type FramedIconProps, FreeTextField, type FreeTextFieldProps, GridItems, type GridItemsProps, type GuestVerificationStatus, HALO_ICON_STATUS, HaloIcon, type HaloIconProps, HelpTooltip, type HelpTooltipProps, IVStatusBadge, type IVStatusBadgeProps, IV_BADGE_STATUS, Icon$1 as Icon, IconButton, type IconButtonProps, type IconEntry, type IconNames, type IconProps, IconRegistry, IconsDropdown, type IconsDropdownProps, Image, ImageFullScreenView, type ImageFullScreenViewProps, type ImageProps, InfoBox, type InfoBoxProps, Input, InputOTP, InputOTPGroup, type InputOTPProps, InputOTPSeparator, InputOTPSlot, type InputProps, LABEL_PLACEMENT, Label, type LabelProps, LargeModal, type LargeModalProps, LearnMoreButton, type LearnMoreButtonProps, Link, type LinkProps, Loader, type LoaderProps, LoadingBar, type LoadingBarProps, type LucideIconEntry, METRIC_CARD_VARIANTS, MetricCard, type MetricCardProps, Modal, ModalButton, ModalLoader, type ModalLoaderProps, type ModalProps, OverlayLoader, type OverlayLoaderProps, PageLoader, type PageLoaderProps, Pagination, type PaginationProps, type PaginationVariant, PhoneField, type PhoneFieldOption, type PhoneFieldProps, type PhoneFieldValue, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, PopoverTrigger, Radio, RadioGroup, RadioGroupItem, type RadioOption, type RadioProps, RadioWithBorder, RatingProgress, type RatingProgressProps, RatingRadioGroup, type RatingRadioGroupProps, RatingStars, type RatingStarsProps, RegistryIcon, ResponsiveSheet, type ResponsiveSheetProps, RotateIcon, type RotateIconProps, ScrollArea, type ScrollAreaProps, ScrollBar, type ScrollBarProps, SearchButton, type SearchButtonProps, SearchInput, type SearchInputProps, SearchableSelect, type SearchableSelectProps, type SearchableSelectValue, Section, type SectionProps, SectionTag, SectionTagColors, type SectionTagProps, Select, SelectContent, type SelectForwardType, SelectGroup, SelectItem, SelectLabel, type SelectOption, SelectPortal, type SelectProps, SelectRoot, SelectSeparator, SelectTrigger, SelectValue$1 as SelectValue, SelectorButton, type SelectorButtonProps, type SelectorOption, Selectors, type SelectorsProps, Separator, type SeparatorProps, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarIcon, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, type SkeletonProps, SmallGridSingleItem, type SmallGridSingleItemProps, SortingAction, type SortingActionProps, type SortingActionValue, type SortingByVariant, StatusBadge, type StatusBadgeProps, type StatusBadgeVariant, StatusBox, type StatusBoxProps, StatusButton, type StatusButtonProps, Stepper, type StepperProps, SubSection, SubSectionSize, Switch, SwitchBlocks, type SwitchBlocksOption, type SwitchBlocksProps, SwitchGroup, type SwitchGroupProps, type SwitchOption, type SwitchProps, TASK_VARIANTS, TabbedSection, type TabbedSectionProps, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TablePlaceholder, type TablePlaceholderProps, TableRow, Tabs, TabsContent, TabsList, type TabsListProps, TabsTrigger, type TabsTriggerProps, TaskCard, type TaskCardProps, TextField, type TextFieldProps, Textarea, type TextareaProps, ThreeDotsLoader, type ThreeDotsLoaderProps, ToggleGroup, ToggleGroupItem, Toggles, type TogglesForwardType, type TogglesProps, Tooltip, TooltipContent, type TooltipContentProps, type TooltipProps, TooltipProvider, TooltipRoot, type TooltipRootProps, TooltipRootWrapper, TooltipTrigger, type UiKitLocale, UploadedFilesList, type UploadedFilesListProps, VideoPlayer, type VideoPlayerProps, WideButton, type WideButtonProps, badgeVariants, bookmarkTabsListVariants, bookmarkTabsTriggerVariants, buttonGroupVariants, buttonVariants, calendarClassNames, cn, copyToClipboard, emptyMediaVariants, getSidebarState, inputVariants, isNumeric, labelVariants, scrollToTop, sectionTagVariants, switchThumbVariants, switchVariants, tabsListVariants, tabsTriggerVariants, toCssSize, toggleVariants, uiKitI18nResources, uiKitTranslations, useAbortController, useClickEscape, useCombinedRef, useCopyToClipboard, useDebounce, useDebouncedFunction, useEvent, useHover, useIsFormTouched, useIsMobile, useIsMounted, useKeyDown, useModalControls, useOutsideClick, usePagination, usePrevious, usePromisedModalControls, useRadioOptions, useResetAfterRequestStatus, useScreenResize, useScrollFrameIntoView, useScrollToTop, useSidebar, useSidebarMenuButton, useSidebarSafe, useTimeout, useTimer, useUpdateToast };
|
|
2908
|
+
export { Accordion, AccordionContent, type AccordionContentProps, AccordionItem, AccordionTrigger, type AccordionTriggerProps, AirbnbInput, type AirbnbInputProps, AirbnbSearchInput, AirbnbSelect, type AirbnbSelectProps, AlertBox, type AlertBoxProps, AlertSize, AlertSizes, AlertType, AlertTypes, AudioPlayer, type AudioPlayerProps, Avatar, type AvatarProps, Badge, type BadgeProps, BaseCheckbox, type BaseCheckboxProps, BetaBadge, type BetaBadgeProps, BookmarkTabsList, type BookmarkTabsListProps, BookmarkTabsTrigger, type BookmarkTabsTriggerProps, BoxOptionSelector, type BoxOptionSelectorProps, type BoxOptionSelectorSwitchProps, Breadcrumb, type BreadcrumbProps, type BreadcrumbType, Breadcrumbs, type BreadcrumbsProps, Button, ButtonGroup, type ButtonGroupProps, ButtonGroupText, type ButtonGroupTextProps, type ButtonProps, type ButtonStatuses, ButtonsGroupLabel, type ButtonsGroupLabelProps, Calendar, type CalendarProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, type ChannelOption, ChannelSelector, type ChannelSelectorProps, Checkbox, CheckboxDropdownGroup, type CheckboxDropdownGroupConfig, type CheckboxDropdownGroupProps, CheckboxDropdownMultiGroup, CheckboxGroup, type CheckboxGroupProps, type CheckboxOption, type CheckboxProps, CircularLoader, CommingSoonBadge, type CommingSoonBadgeProps, ConfirmationDialog, type ConfirmationDialogProps, CopyIcon, type CopyIconProps, CopyLinkButton, type CopyLinkButtonProps, CustomCheckboxDropdownGroup, type CustomIconEntry, DataTable, type DataTableProps, DatePicker, type DatePickerProps, type DatePickerValue, DefaultSelectTrigger, type DefaultSelectTriggerProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DialogVisuallyHidden, DividingSubsection, DownloadEntryFormsButton, type DownloadEntryFormsButtonProps, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownButton, type DropdownButtonProps, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, type DropdownMenuContentSide, DropdownMenuGroup, DropdownMenuItem, DropdownMenuItemContent, type DropdownMenuItemContentProps, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptySectionPlaceholder, type EmptySectionPlaceholderProps, EmptyTitle, ErrorMessage, type ErrorMessageProps, ExternalLink, type ExternalLinkProps, FeatureCard, type FeatureCardProps, FieldErrorMessage, type FieldErrorMessageProps, FieldTrigger, type FieldTriggerProps, FileInputButton, type FileInputButtonProps, FormBox, Content as FormBoxContent, type FormBoxContentProps, Header as FormBoxHeader, type FormBoxHeaderProps, Root as FormBoxRoot, type FormBoxRootProps, SubHeader as FormBoxSubHeader, type FormBoxSubHeaderProps, FramedIcon, type FramedIconProps, FreeTextField, type FreeTextFieldProps, GridItems, type GridItemsProps, type GuestVerificationStatus, HALO_ICON_STATUS, HaloIcon, type HaloIconProps, HelpTooltip, type HelpTooltipProps, IVStatusBadge, type IVStatusBadgeProps, IV_BADGE_STATUS, Icon$1 as Icon, IconButton, type IconButtonProps, type IconEntry, type IconNames, type IconProps, IconRegistry, IconsDropdown, type IconsDropdownProps, Image, ImageFullScreenView, type ImageFullScreenViewProps, type ImageProps, InfinitySelect, type InfinitySelectProps, InfoBox, type InfoBoxProps, Input, InputOTP, InputOTPGroup, type InputOTPProps, InputOTPSeparator, InputOTPSlot, type InputProps, LABEL_PLACEMENT, Label, type LabelProps, LargeModal, type LargeModalProps, LearnMoreButton, type LearnMoreButtonProps, Link, type LinkProps, Loader, type LoaderProps, LoadingBar, type LoadingBarProps, type LucideIconEntry, METRIC_CARD_VARIANTS, MetricCard, type MetricCardProps, Modal, ModalButton, ModalLoader, type ModalLoaderProps, type ModalProps, MultiSelect, type MultiSelectProps, OverlayLoader, type OverlayLoaderProps, PageLoader, type PageLoaderProps, Pagination, type PaginationProps, type PaginationVariant, PhoneField, type PhoneFieldOption, type PhoneFieldProps, type PhoneFieldValue, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, PopoverTrigger, PopoverWithTooltip, type PopoverWithTooltipProps, Radio, RadioGroup, RadioGroupItem, type RadioOption, type RadioProps, RadioWithBorder, RatingProgress, type RatingProgressProps, RatingRadioGroup, type RatingRadioGroupProps, RatingStars, type RatingStarsProps, RegistryIcon, ResponsiveSheet, type ResponsiveSheetProps, RotateIcon, type RotateIconProps, ScrollArea, type ScrollAreaProps, ScrollBar, type ScrollBarProps, SearchButton, type SearchButtonProps, SearchInput, type SearchInputProps, SearchableSelect, type SearchableSelectProps, type SearchableSelectValue, Section, type SectionProps, SectionTag, SectionTagColors, type SectionTagProps, Select, SelectContent, type SelectForwardType, SelectGroup, SelectItem, SelectLabel, type SelectOption, SelectPortal, type SelectProps, SelectRoot, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, type SelectSize, SelectTrigger, SelectValue$1 as SelectValue, SelectorButton, type SelectorButtonProps, type SelectorOption, Selectors, type SelectorsProps, Separator, type SeparatorProps, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarIcon, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, type SkeletonProps, SmallGridSingleItem, type SmallGridSingleItemProps, SortingAction, type SortingActionProps, type SortingActionValue, type SortingByVariant, StatusBadge, type StatusBadgeProps, type StatusBadgeVariant, StatusBox, type StatusBoxProps, StatusButton, type StatusButtonProps, Stepper, type StepperProps, SubSection, SubSectionSize, Switch, SwitchBlocks, type SwitchBlocksOption, type SwitchBlocksProps, SwitchGroup, type SwitchGroupProps, type SwitchOption, type SwitchProps, TASK_VARIANTS, TabbedSection, type TabbedSectionProps, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TablePlaceholder, type TablePlaceholderProps, TableRow, Tabs, TabsContent, TabsList, type TabsListProps, TabsTrigger, type TabsTriggerProps, TaskCard, type TaskCardProps, TextField, type TextFieldProps, Textarea, type TextareaProps, ThreeDotsLoader, type ThreeDotsLoaderProps, ToggleGroup, ToggleGroupItem, Toggles, type TogglesForwardType, type TogglesProps, Tooltip, TooltipContent, type TooltipContentProps, type TooltipProps, TooltipProvider, TooltipRoot, type TooltipRootProps, TooltipRootWrapper, TooltipTrigger, type UiKitLocale, UploadedFilesList, type UploadedFilesListProps, VideoPlayer, type VideoPlayerProps, WideButton, type WideButtonProps, badgeVariants, bookmarkTabsListVariants, bookmarkTabsTriggerVariants, buttonGroupVariants, buttonVariants, calendarClassNames, cn, copyToClipboard, emptyMediaVariants, getSidebarState, inputVariants, isNumeric, labelVariants, scrollToTop, sectionTagVariants, switchThumbVariants, switchVariants, tabsListVariants, tabsTriggerVariants, toCssSize, toggleVariants, uiKitI18nResources, uiKitTranslations, useAbortController, useClickEscape, useCombinedRef, useCopyToClipboard, useDebounce, useDebouncedFunction, useEvent, useHover, useIsFormTouched, useIsMobile, useIsMounted, useKeyDown, useModalControls, useOutsideClick, usePagination, usePrevious, usePromisedModalControls, useRadioOptions, useResetAfterRequestStatus, useScreenResize, useScrollFrameIntoView, useScrollToTop, useSidebar, useSidebarMenuButton, useSidebarSafe, useTimeout, useTimer, useUpdateToast };
|