@chekinapp/ui 0.0.66 → 0.0.68
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 +2519 -921
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +180 -18
- package/dist/index.d.ts +180 -18
- package/dist/index.js +2642 -1049
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -136,13 +136,6 @@ interface BoxOptionSelectorProps {
|
|
|
136
136
|
disabled?: boolean;
|
|
137
137
|
selectedValue: string;
|
|
138
138
|
optionalLabel?: string;
|
|
139
|
-
switchComponent?: React$1.ComponentType<{
|
|
140
|
-
id: string;
|
|
141
|
-
value: boolean;
|
|
142
|
-
disabled?: boolean;
|
|
143
|
-
size?: 'sm' | 'md' | 'lg';
|
|
144
|
-
onChange: (checked: boolean) => void;
|
|
145
|
-
}>;
|
|
146
139
|
}
|
|
147
140
|
declare const BoxOptionSelector: React$1.ForwardRefExoticComponent<BoxOptionSelectorProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
148
141
|
|
|
@@ -644,7 +637,7 @@ interface SvgIconProps extends Omit<SVGProps<SVGSVGElement>, 'ref'> {
|
|
|
644
637
|
declare const SvgIcon: React$1.ForwardRefExoticComponent<SvgIconProps & React$1.RefAttributes<SVGSVGElement>>;
|
|
645
638
|
|
|
646
639
|
declare const iconButtonVariants: (props?: ({
|
|
647
|
-
size?: "s" | "m" | "l" | null | undefined;
|
|
640
|
+
size?: "s" | "default" | "m" | "l" | null | undefined;
|
|
648
641
|
shape?: "circle" | "rounded" | null | undefined;
|
|
649
642
|
variant?: "secondary" | "destructive" | "primary" | "ghost" | null | undefined;
|
|
650
643
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
@@ -1734,7 +1727,7 @@ type SelectOption<D = unknown, V extends string | number | boolean = string, L e
|
|
|
1734
1727
|
isDisabled?: boolean;
|
|
1735
1728
|
readOnly?: boolean;
|
|
1736
1729
|
};
|
|
1737
|
-
type SelectorOption<T extends string | number = string> = {
|
|
1730
|
+
type SelectorOption<T extends string | number | boolean = string> = {
|
|
1738
1731
|
value: T;
|
|
1739
1732
|
label?: string | ReactNode;
|
|
1740
1733
|
disabled?: boolean;
|
|
@@ -1883,7 +1876,7 @@ declare const DividingSubsection: React$1.ForwardRefExoticComponent<SectionProps
|
|
|
1883
1876
|
|
|
1884
1877
|
declare const SelectRoot: React$1.FC<SelectPrimitive.SelectProps>;
|
|
1885
1878
|
declare const SelectGroup: React$1.ForwardRefExoticComponent<SelectPrimitive.SelectGroupProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1886
|
-
declare const SelectValue$
|
|
1879
|
+
declare const SelectValue$2: React$1.ForwardRefExoticComponent<SelectPrimitive.SelectValueProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
1887
1880
|
declare const SelectPortal: React$1.FC<SelectPrimitive.SelectPortalProps>;
|
|
1888
1881
|
type SelectSize = 'sm' | 'md';
|
|
1889
1882
|
declare const SelectTrigger: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & {
|
|
@@ -2424,7 +2417,7 @@ declare const ToggleGroupItem: React$1.ForwardRefExoticComponent<Omit<ToggleGrou
|
|
|
2424
2417
|
theme?: "default" | "sky-blue" | null | undefined;
|
|
2425
2418
|
} & class_variance_authority_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
2426
2419
|
|
|
2427
|
-
type TogglesProps<T extends string | number, M extends boolean | undefined = undefined> = {
|
|
2420
|
+
type TogglesProps<T extends string | number | boolean, M extends boolean | undefined = undefined> = {
|
|
2428
2421
|
options: SelectorOption<T>[];
|
|
2429
2422
|
onClick?: (event: MouseEvent<HTMLButtonElement>, value: SelectorOption<T>) => void | {
|
|
2430
2423
|
shouldPrevent: boolean;
|
|
@@ -2450,8 +2443,8 @@ type TogglesProps<T extends string | number, M extends boolean | undefined = und
|
|
|
2450
2443
|
value?: T;
|
|
2451
2444
|
onChange?: (value: T, event: MouseEvent<HTMLButtonElement>) => void;
|
|
2452
2445
|
});
|
|
2453
|
-
declare function TogglesInternal<T extends string | number, M extends boolean | undefined = undefined>({ className, groupClassName, loading, disabled, value, options, variant, size, theme, onAnySelectorActive, onClick, onChange, readOnly, minSelected, disabledItems, readonlyItems, label, multiple, }: TogglesProps<T, M>, ref: ForwardedRef<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
2454
|
-
type TogglesForwardType = <T extends string | number, M extends boolean | undefined = true>(props: TogglesProps<T, M> & {
|
|
2446
|
+
declare function TogglesInternal<T extends string | number | boolean, M extends boolean | undefined = undefined>({ className, groupClassName, loading, disabled, value, options, variant, size, theme, onAnySelectorActive, onClick, onChange, readOnly, minSelected, disabledItems, readonlyItems, label, multiple, }: TogglesProps<T, M>, ref: ForwardedRef<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
2447
|
+
type TogglesForwardType = <T extends string | number | boolean, M extends boolean | undefined = true>(props: TogglesProps<T, M> & {
|
|
2455
2448
|
ref?: ForwardedRef<HTMLDivElement>;
|
|
2456
2449
|
}) => ReturnType<typeof TogglesInternal>;
|
|
2457
2450
|
declare const Toggles: TogglesForwardType;
|
|
@@ -2773,8 +2766,8 @@ type PhoneFieldProps = {
|
|
|
2773
2766
|
};
|
|
2774
2767
|
declare const PhoneField: React$1.ForwardRefExoticComponent<PhoneFieldProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
2775
2768
|
|
|
2776
|
-
type SelectValue = string | number;
|
|
2777
|
-
type SelectRenderTriggerProps<T = undefined, V extends SelectValue = string, L extends string | number | React$1.ReactNode = string> = {
|
|
2769
|
+
type SelectValue$1 = string | number;
|
|
2770
|
+
type SelectRenderTriggerProps<T = undefined, V extends SelectValue$1 = string, L extends string | number | React$1.ReactNode = string> = {
|
|
2778
2771
|
id: string;
|
|
2779
2772
|
open: boolean;
|
|
2780
2773
|
variant: 'default' | 'airbnb';
|
|
@@ -2796,7 +2789,7 @@ type SelectRenderTriggerProps<T = undefined, V extends SelectValue = string, L e
|
|
|
2796
2789
|
onKeyDown: React$1.KeyboardEventHandler<HTMLButtonElement>;
|
|
2797
2790
|
onBlur?: React$1.FocusEventHandler<HTMLButtonElement>;
|
|
2798
2791
|
};
|
|
2799
|
-
type AirbnbSelectProps<T = undefined, V extends SelectValue = string, L extends string | number | React$1.ReactNode = string> = {
|
|
2792
|
+
type AirbnbSelectProps<T = undefined, V extends SelectValue$1 = string, L extends string | number | React$1.ReactNode = string> = {
|
|
2800
2793
|
options?: SelectOption<T, V, L>[];
|
|
2801
2794
|
value?: SelectOption<T, V, L> | null;
|
|
2802
2795
|
onChange: (option: SelectOption<T, V, L>) => void;
|
|
@@ -2823,7 +2816,7 @@ type AirbnbSelectProps<T = undefined, V extends SelectValue = string, L extends
|
|
|
2823
2816
|
noOptionsMessage?: () => string | undefined;
|
|
2824
2817
|
};
|
|
2825
2818
|
|
|
2826
|
-
declare const AirbnbSelect: <T = undefined, V extends SelectValue = string, L extends string | number | ReactNode = string>(props: AirbnbSelectProps<T, V, L> & {
|
|
2819
|
+
declare const AirbnbSelect: <T = undefined, V extends SelectValue$1 = string, L extends string | number | ReactNode = string>(props: AirbnbSelectProps<T, V, L> & {
|
|
2827
2820
|
ref?: React$1.Ref<HTMLButtonElement>;
|
|
2828
2821
|
}) => React$1.ReactElement;
|
|
2829
2822
|
|
|
@@ -2833,6 +2826,175 @@ type AirbnbSearchInputProps = ComponentProps<'input'> & {
|
|
|
2833
2826
|
};
|
|
2834
2827
|
declare const AirbnbSearchInput: React$1.ForwardRefExoticComponent<Omit<AirbnbSearchInputProps, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
|
|
2835
2828
|
|
|
2829
|
+
type DashboardInputProps = React$1.InputHTMLAttributes<HTMLInputElement> & {
|
|
2830
|
+
label?: string | React$1.ReactNode;
|
|
2831
|
+
topLabel?: string;
|
|
2832
|
+
tooltip?: React$1.ReactNode;
|
|
2833
|
+
optional?: boolean | string;
|
|
2834
|
+
error?: unknown;
|
|
2835
|
+
invalid?: boolean;
|
|
2836
|
+
loading?: boolean;
|
|
2837
|
+
empty?: boolean;
|
|
2838
|
+
helperText?: string;
|
|
2839
|
+
footer?: string | React$1.ReactNode;
|
|
2840
|
+
width?: number | string;
|
|
2841
|
+
leftIcon?: React$1.ReactNode;
|
|
2842
|
+
sign?: string | React$1.ReactNode;
|
|
2843
|
+
onReset?: () => void;
|
|
2844
|
+
showNumberButtons?: boolean;
|
|
2845
|
+
onIncrement?: (e: React$1.MouseEvent<HTMLButtonElement>) => void;
|
|
2846
|
+
onDecrement?: (e: React$1.MouseEvent<HTMLButtonElement>) => void;
|
|
2847
|
+
wrapperClassName?: string;
|
|
2848
|
+
fieldClassName?: string;
|
|
2849
|
+
contentClassName?: string;
|
|
2850
|
+
inputClassName?: string;
|
|
2851
|
+
trailingAdornment?: React$1.ReactNode;
|
|
2852
|
+
renderErrorMessage?: boolean;
|
|
2853
|
+
};
|
|
2854
|
+
declare const DashboardInput: React$1.ForwardRefExoticComponent<React$1.InputHTMLAttributes<HTMLInputElement> & {
|
|
2855
|
+
label?: string | React$1.ReactNode;
|
|
2856
|
+
topLabel?: string;
|
|
2857
|
+
tooltip?: React$1.ReactNode;
|
|
2858
|
+
optional?: boolean | string;
|
|
2859
|
+
error?: unknown;
|
|
2860
|
+
invalid?: boolean;
|
|
2861
|
+
loading?: boolean;
|
|
2862
|
+
empty?: boolean;
|
|
2863
|
+
helperText?: string;
|
|
2864
|
+
footer?: string | React$1.ReactNode;
|
|
2865
|
+
width?: number | string;
|
|
2866
|
+
leftIcon?: React$1.ReactNode;
|
|
2867
|
+
sign?: string | React$1.ReactNode;
|
|
2868
|
+
onReset?: () => void;
|
|
2869
|
+
showNumberButtons?: boolean;
|
|
2870
|
+
onIncrement?: (e: React$1.MouseEvent<HTMLButtonElement>) => void;
|
|
2871
|
+
onDecrement?: (e: React$1.MouseEvent<HTMLButtonElement>) => void;
|
|
2872
|
+
wrapperClassName?: string;
|
|
2873
|
+
fieldClassName?: string;
|
|
2874
|
+
contentClassName?: string;
|
|
2875
|
+
inputClassName?: string;
|
|
2876
|
+
trailingAdornment?: React$1.ReactNode;
|
|
2877
|
+
renderErrorMessage?: boolean;
|
|
2878
|
+
} & React$1.RefAttributes<HTMLInputElement>>;
|
|
2879
|
+
|
|
2880
|
+
type SelectValue = string | number;
|
|
2881
|
+
type DashboardSelectFilterOption<T = undefined, V extends SelectValue = string, L extends ReactNode = string> = (option: SelectOption<T, V, L>, input: string) => boolean;
|
|
2882
|
+
|
|
2883
|
+
type DashboardSelectProps<T = undefined, V extends SelectValue = string, L extends ReactNode = string> = {
|
|
2884
|
+
options?: SelectOption<T, V, L>[];
|
|
2885
|
+
value?: SelectOption<T, V, L> | null;
|
|
2886
|
+
onChange: (option: SelectOption<T, V, L>) => void;
|
|
2887
|
+
onBlur?: React$1.FocusEventHandler<HTMLButtonElement>;
|
|
2888
|
+
label: string;
|
|
2889
|
+
topLabel?: string;
|
|
2890
|
+
placeholder?: string;
|
|
2891
|
+
getValueLabel?: (option: SelectOption<T, V, L>) => string;
|
|
2892
|
+
disabled?: boolean;
|
|
2893
|
+
loading?: boolean;
|
|
2894
|
+
optional?: boolean | string;
|
|
2895
|
+
tooltip?: React$1.ReactNode;
|
|
2896
|
+
error?: string;
|
|
2897
|
+
invalid?: boolean;
|
|
2898
|
+
hideErrorMessage?: boolean;
|
|
2899
|
+
className?: string;
|
|
2900
|
+
menuClassName?: string;
|
|
2901
|
+
dropdownClassName?: string;
|
|
2902
|
+
name?: string;
|
|
2903
|
+
width?: number | string;
|
|
2904
|
+
noOptionsMessage?: () => string | undefined;
|
|
2905
|
+
searchable?: boolean;
|
|
2906
|
+
searchPlaceholder?: string;
|
|
2907
|
+
filterOption?: DashboardSelectFilterOption<T, V, L>;
|
|
2908
|
+
helperText?: string;
|
|
2909
|
+
};
|
|
2910
|
+
type DashboardSelectComponent = <T = undefined, V extends SelectValue = string, L extends ReactNode = string>(props: DashboardSelectProps<T, V, L> & {
|
|
2911
|
+
ref?: React$1.Ref<HTMLButtonElement>;
|
|
2912
|
+
}) => React$1.ReactElement;
|
|
2913
|
+
declare const DashboardSelect: DashboardSelectComponent;
|
|
2914
|
+
|
|
2915
|
+
type DashboardMultiSelectChipRenderer<T, V extends SelectValue, L extends ReactNode> = (option: SelectOption<T, V, L>, onRemove: () => void) => React$1.ReactNode;
|
|
2916
|
+
type DashboardMultiSelectProps<T = undefined, V extends SelectValue = string, L extends ReactNode = string> = {
|
|
2917
|
+
options?: SelectOption<T, V, L>[];
|
|
2918
|
+
value?: SelectOption<T, V, L>[] | null;
|
|
2919
|
+
onChange: (value: SelectOption<T, V, L>[]) => void;
|
|
2920
|
+
onBlur?: React$1.FocusEventHandler<HTMLDivElement>;
|
|
2921
|
+
label: string;
|
|
2922
|
+
topLabel?: string;
|
|
2923
|
+
placeholder?: string;
|
|
2924
|
+
disabled?: boolean;
|
|
2925
|
+
readOnly?: boolean;
|
|
2926
|
+
loading?: boolean;
|
|
2927
|
+
optional?: boolean | string;
|
|
2928
|
+
tooltip?: React$1.ReactNode;
|
|
2929
|
+
error?: string;
|
|
2930
|
+
invalid?: boolean;
|
|
2931
|
+
hideErrorMessage?: boolean;
|
|
2932
|
+
className?: string;
|
|
2933
|
+
menuClassName?: string;
|
|
2934
|
+
dropdownClassName?: string;
|
|
2935
|
+
name?: string;
|
|
2936
|
+
width?: number | string;
|
|
2937
|
+
noOptionsMessage?: () => string | undefined;
|
|
2938
|
+
filterOption?: DashboardSelectFilterOption<T, V, L>;
|
|
2939
|
+
closeMenuOnSelect?: boolean;
|
|
2940
|
+
renderChip?: DashboardMultiSelectChipRenderer<T, V, L>;
|
|
2941
|
+
helperText?: string;
|
|
2942
|
+
isCreatable?: boolean;
|
|
2943
|
+
onCreateOption?: (input: string) => SelectOption<T, V, L>;
|
|
2944
|
+
formatCreateLabel?: (input: string) => React$1.ReactNode;
|
|
2945
|
+
isValidNewOption?: (input: string, selected: SelectOption<T, V, L>[], options: SelectOption<T, V, L>[]) => boolean;
|
|
2946
|
+
};
|
|
2947
|
+
type DashboardMultiSelectComponent = <T = undefined, V extends SelectValue = string, L extends ReactNode = string>(props: DashboardMultiSelectProps<T, V, L> & {
|
|
2948
|
+
ref?: React$1.Ref<HTMLDivElement>;
|
|
2949
|
+
}) => React$1.ReactElement;
|
|
2950
|
+
declare const DashboardMultiSelect: DashboardMultiSelectComponent;
|
|
2951
|
+
|
|
2952
|
+
type DashboardCreatableMultiSelectProps<T = undefined, V extends SelectValue = string, L extends ReactNode = string> = Omit<DashboardMultiSelectProps<T, V, L>, 'isCreatable'>;
|
|
2953
|
+
declare const DashboardCreatableMultiSelect: <T = undefined, V extends SelectValue = string, L extends ReactNode = string>(props: DashboardCreatableMultiSelectProps<T, V, L> & {
|
|
2954
|
+
ref?: React$1.Ref<HTMLDivElement>;
|
|
2955
|
+
}) => React$1.ReactElement;
|
|
2956
|
+
|
|
2957
|
+
type DashboardInfiniteScrollSelectProps<T = undefined, V extends SelectValue = string, L extends ReactNode = string> = {
|
|
2958
|
+
options?: SelectOption<T, V, L>[];
|
|
2959
|
+
value?: SelectOption<T, V, L> | null;
|
|
2960
|
+
onChange: (option: SelectOption<T, V, L>) => void;
|
|
2961
|
+
onBlur?: React$1.FocusEventHandler<HTMLButtonElement>;
|
|
2962
|
+
label: string;
|
|
2963
|
+
topLabel?: string;
|
|
2964
|
+
placeholder?: string;
|
|
2965
|
+
getValueLabel?: (option: SelectOption<T, V, L>) => string;
|
|
2966
|
+
disabled?: boolean;
|
|
2967
|
+
loading?: boolean;
|
|
2968
|
+
optional?: boolean | string;
|
|
2969
|
+
tooltip?: React$1.ReactNode;
|
|
2970
|
+
error?: string;
|
|
2971
|
+
invalid?: boolean;
|
|
2972
|
+
hideErrorMessage?: boolean;
|
|
2973
|
+
className?: string;
|
|
2974
|
+
menuClassName?: string;
|
|
2975
|
+
dropdownClassName?: string;
|
|
2976
|
+
name?: string;
|
|
2977
|
+
width?: number | string;
|
|
2978
|
+
noOptionsMessage?: () => string | undefined;
|
|
2979
|
+
searchable?: boolean;
|
|
2980
|
+
searchPlaceholder?: string;
|
|
2981
|
+
filterOption?: DashboardSelectFilterOption<T, V, L>;
|
|
2982
|
+
helperText?: string;
|
|
2983
|
+
canLoadMore?: boolean;
|
|
2984
|
+
isLoadingMore?: boolean;
|
|
2985
|
+
loadMoreItems?: () => void;
|
|
2986
|
+
loadingMoreText?: string;
|
|
2987
|
+
onSearchChange?: (input: string) => void;
|
|
2988
|
+
itemHeight?: number;
|
|
2989
|
+
listHeight?: number;
|
|
2990
|
+
overscan?: number;
|
|
2991
|
+
loadMoreThreshold?: number;
|
|
2992
|
+
};
|
|
2993
|
+
type DashboardInfiniteScrollSelectComponent = <T = undefined, V extends SelectValue = string, L extends ReactNode = string>(props: DashboardInfiniteScrollSelectProps<T, V, L> & {
|
|
2994
|
+
ref?: React$1.Ref<HTMLButtonElement>;
|
|
2995
|
+
}) => React$1.ReactElement;
|
|
2996
|
+
declare const DashboardInfiniteScrollSelect: DashboardInfiniteScrollSelectComponent;
|
|
2997
|
+
|
|
2836
2998
|
type SearchableSelectValue = string | number;
|
|
2837
2999
|
type SearchableSelectProps<T = undefined, V extends SearchableSelectValue = string, L extends ReactNode = string> = {
|
|
2838
3000
|
options: SelectOption<T, V, L>[];
|
|
@@ -3132,4 +3294,4 @@ declare function toastResponseError(error: unknown, options?: CustomToastOptions
|
|
|
3132
3294
|
|
|
3133
3295
|
declare function getErrorMessage(error?: any): any;
|
|
3134
3296
|
|
|
3135
|
-
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, CheckList, type CheckListProps, Checkbox, CheckboxDropdownGroup, type CheckboxDropdownGroupConfig, type CheckboxDropdownGroupProps, CheckboxDropdownMultiGroup, CheckboxGroup, type CheckboxGroupProps, type CheckboxOption, type CheckboxProps, type CheckboxSize, CircularLoader, CommingSoonBadge, type CommingSoonBadgeProps, ConfirmationDialog, type ConfirmationDialogProps, CopyIcon, type CopyIconProps, CopyInput, type CopyInputProps, CopyLinkButton, type CopyLinkButtonProps, CopyString, type CopyStringProps, CustomCheckboxDropdownGroup, type CustomIconEntry, DEVICE_BREAKPOINTS, DataTable, type DataTableProps, DatePicker, type DatePickerProps, type DatePickerValue, DateTableFilter, DebouncedSearchInput, type DebouncedSearchInputProps, DefaultSelectTrigger, type DefaultSelectTriggerProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DialogVisuallyHidden, DividingSubsection, 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, FieldErrorMessage, type FieldErrorMessageProps, FieldTrigger, type FieldTriggerProps, FileInputButton, type FileInputButtonProps, FormBox, Content as FormBoxContent, type FormBoxContentProps, Header as FormBoxHeader, type FormBoxHeaderProps, Root$1 as FormBoxRoot, type FormBoxRootProps, SubHeader as FormBoxSubHeader, type FormBoxSubHeaderProps, FramedIcon, type FramedIconProps, FreeTextField, type FreeTextFieldProps, HALO_ICON_STATUS, HaloIcon, type HaloIconProps, HelpTooltip, type HelpTooltipProps, IconButton, type IconButtonProps, type IconEntry, 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, type LabelProps, LargeModal, type LargeModalProps, LearnMoreButton, type LearnMoreButtonProps, Link, type LinkProps, LoadingBar, type LoadingBarProps, type LucideIconEntry, Modal, ModalButton, ModalLoader, type ModalLoaderProps, type ModalProps, MultiSelect, type MultiSelectProps, NumberedList, type NumberedListProps, type OptionsCardsProps, OverlayLoader, type OverlayLoaderProps, Pagination, type PaginationProps, type PaginationVariant, PhoneField, type PhoneFieldOption, type PhoneFieldProps, type PhoneFieldValue, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, PopoverTrigger, PopoverWithTooltip, type PopoverWithTooltipProps, Radio, type RadioCardOption, MemoizedRadioCardsGroup as RadioCardsGroup, RadioGroup, RadioGroupItem, type RadioOption, type RadioProps, RadioWithBorder, RatingProgress, type RatingProgressProps, RatingRadioGroup, type RatingRadioGroupProps, RatingStars, type RatingStarsProps, type RegisterUiKitI18nOptions, ResponsiveSheet, type ResponsiveSheetProps, RotateArrow, type RotateArrowProps, ScrollArea, type ScrollAreaProps, ScrollBar, type ScrollBarProps, type ScrollableAreaState, SearchButton, type SearchButtonProps, SearchInput, type SearchInputProps, SearchableSelect, type SearchableSelectProps, type SearchableSelectValue, Section, SectionGroup, type SectionGroupItemProps, type SectionGroupLabelProps, type SectionGroupProps, type SectionProps, SectionTag, SectionTagColors, type SectionTagProps, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, type SelectOption, SelectPortal, type SelectProps, SelectRoot, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, type SelectSize, SelectTrigger, SelectValue$
|
|
3297
|
+
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, CheckList, type CheckListProps, Checkbox, CheckboxDropdownGroup, type CheckboxDropdownGroupConfig, type CheckboxDropdownGroupProps, CheckboxDropdownMultiGroup, CheckboxGroup, type CheckboxGroupProps, type CheckboxOption, type CheckboxProps, type CheckboxSize, CircularLoader, CommingSoonBadge, type CommingSoonBadgeProps, ConfirmationDialog, type ConfirmationDialogProps, CopyIcon, type CopyIconProps, CopyInput, type CopyInputProps, CopyLinkButton, type CopyLinkButtonProps, CopyString, type CopyStringProps, CustomCheckboxDropdownGroup, type CustomIconEntry, DEVICE_BREAKPOINTS, DashboardCreatableMultiSelect, type DashboardCreatableMultiSelectProps, DashboardInfiniteScrollSelect, type DashboardInfiniteScrollSelectProps, DashboardInput, type DashboardInputProps, DashboardMultiSelect, type DashboardMultiSelectChipRenderer, type DashboardMultiSelectProps, DashboardSelect, type DashboardSelectProps, DataTable, type DataTableProps, DatePicker, type DatePickerProps, type DatePickerValue, DateTableFilter, DebouncedSearchInput, type DebouncedSearchInputProps, DefaultSelectTrigger, type DefaultSelectTriggerProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DialogVisuallyHidden, DividingSubsection, 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, FieldErrorMessage, type FieldErrorMessageProps, FieldTrigger, type FieldTriggerProps, FileInputButton, type FileInputButtonProps, FormBox, Content as FormBoxContent, type FormBoxContentProps, Header as FormBoxHeader, type FormBoxHeaderProps, Root$1 as FormBoxRoot, type FormBoxRootProps, SubHeader as FormBoxSubHeader, type FormBoxSubHeaderProps, FramedIcon, type FramedIconProps, FreeTextField, type FreeTextFieldProps, HALO_ICON_STATUS, HaloIcon, type HaloIconProps, HelpTooltip, type HelpTooltipProps, IconButton, type IconButtonProps, type IconEntry, 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, type LabelProps, LargeModal, type LargeModalProps, LearnMoreButton, type LearnMoreButtonProps, Link, type LinkProps, LoadingBar, type LoadingBarProps, type LucideIconEntry, Modal, ModalButton, ModalLoader, type ModalLoaderProps, type ModalProps, MultiSelect, type MultiSelectProps, NumberedList, type NumberedListProps, type OptionsCardsProps, OverlayLoader, type OverlayLoaderProps, Pagination, type PaginationProps, type PaginationVariant, PhoneField, type PhoneFieldOption, type PhoneFieldProps, type PhoneFieldValue, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, PopoverTrigger, PopoverWithTooltip, type PopoverWithTooltipProps, Radio, type RadioCardOption, MemoizedRadioCardsGroup as RadioCardsGroup, RadioGroup, RadioGroupItem, type RadioOption, type RadioProps, RadioWithBorder, RatingProgress, type RatingProgressProps, RatingRadioGroup, type RatingRadioGroupProps, RatingStars, type RatingStarsProps, type RegisterUiKitI18nOptions, ResponsiveSheet, type ResponsiveSheetProps, RotateArrow, type RotateArrowProps, ScrollArea, type ScrollAreaProps, ScrollBar, type ScrollBarProps, type ScrollableAreaState, SearchButton, type SearchButtonProps, SearchInput, type SearchInputProps, SearchableSelect, type SearchableSelectProps, type SearchableSelectValue, Section, SectionGroup, type SectionGroupItemProps, type SectionGroupLabelProps, type SectionGroupProps, type SectionProps, SectionTag, SectionTagColors, type SectionTagProps, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, type SelectOption, SelectPortal, type SelectProps, SelectRoot, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, type SelectSize, SelectTrigger, SelectValue$2 as SelectValue, type SelectorOption, 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, SignatureCanvas, Skeleton, type SkeletonProps, Slider, SliderNext, SliderPrevious, type SliderProps, SliderRoot, type SliderRootProps, SliderSlide, SliderTrack, SliderViewport, 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, SvgIcon, type SvgIconProps, type SvgIconSize, Switch, SwitchBlocks, type SwitchBlocksOption, type SwitchBlocksProps, SwitchGroup, type SwitchGroupProps, type SwitchOption, type SwitchProps, TabbedSection, type TabbedSectionProps, Table, TableBody, TableCaption, TableCell, TableFilter, type TableFilterProps, TableFooter, TableHead, TableHeader, TableLoader, type TableLoaderProps, type TableLoaderRootProps, TablePlaceholder, type TablePlaceholderProps, TableRow, Tabs, TabsContent, TabsList, type TabsListProps, TabsTrigger, type TabsTriggerProps, TextField, type TextFieldProps, Textarea, type TextareaProps, ThreeDotsLoader, type ThreeDotsLoaderProps, Timeline, TimelineConnector, type TimelineConnectorProps, TimelineContent, type TimelineContentProps, type TimelineContextProps, TimelineDescription, type TimelineDescriptionProps, TimelineDot, type TimelineDotProps, TimelineItem, type TimelineItemProps, type TimelineProps, TimelineSeparator, type TimelineSeparatorProps, TimelineTitle, type TimelineTitleProps, ToggleGroup, ToggleGroupItem, Toggles, type TogglesForwardType, type TogglesProps, Tooltip, TooltipContent, type TooltipContentProps, type TooltipProps, TooltipProvider, TooltipRoot, type TooltipRootProps, TooltipRootWrapper, TooltipTrigger, UI_KIT_I18N_NAMESPACE, type UiKitLocale, UploadedFilesList, type UploadedFilesListProps, type UseScrollableAreaOptions, type UseScrollableAreaResult, VerticalTabs, type VerticalTabsProps, type VerticalTabsStep, VideoModal, type VideoModalProps, VideoPlayer, type VideoPlayerProps, Webcam, type WebcamProps, type WebcamRefTypes, WideButton, type WideButtonProps, addSupportEmailToMessage, badgeVariants, bookmarkTabsListVariants, bookmarkTabsTriggerVariants, buttonGroupVariants, buttonVariants, calendarClassNames, cn, copyToClipboard, emptyMediaVariants, getErrorMessage, getScrollableAreaState, getSidebarState, inputVariants, isNumeric, labelVariants, registerUiKitI18n, scrollToTop, sectionTagVariants, switchThumbVariants, switchVariants, tabsListVariants, tabsTriggerVariants, toCssSize, toastResponseError, toggleVariants, uiKitI18nResources, uiKitTranslations, useAbortController, useAccordionState, useClickEscape, useCombinedRef, useCopyToClipboard, useDebounce, useDebouncedFunction, useEvent, useHover, useIframeFocusTrapFallback, useIsFormTouched, useIsMobile, useIsMounted, useKeyDown, useLoadMore, useModalControls, useOutsideClick, usePagination, usePrevious, usePromisedModalControls, useRadioOptions, useResetAfterRequestStatus, useScreenResize, useScrollFrameIntoView, useScrollToTop, useScrollableArea, useSearchInput, useSidebar, useSidebarMenuButton, useSidebarSafe, useSliderContext, useStickyStuck, useSwitchSectionActive, useTimeline, useTimeout, useTimeoutRef, useTimer, useUpdateToast };
|
package/dist/index.d.ts
CHANGED
|
@@ -136,13 +136,6 @@ interface BoxOptionSelectorProps {
|
|
|
136
136
|
disabled?: boolean;
|
|
137
137
|
selectedValue: string;
|
|
138
138
|
optionalLabel?: string;
|
|
139
|
-
switchComponent?: React$1.ComponentType<{
|
|
140
|
-
id: string;
|
|
141
|
-
value: boolean;
|
|
142
|
-
disabled?: boolean;
|
|
143
|
-
size?: 'sm' | 'md' | 'lg';
|
|
144
|
-
onChange: (checked: boolean) => void;
|
|
145
|
-
}>;
|
|
146
139
|
}
|
|
147
140
|
declare const BoxOptionSelector: React$1.ForwardRefExoticComponent<BoxOptionSelectorProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
148
141
|
|
|
@@ -644,7 +637,7 @@ interface SvgIconProps extends Omit<SVGProps<SVGSVGElement>, 'ref'> {
|
|
|
644
637
|
declare const SvgIcon: React$1.ForwardRefExoticComponent<SvgIconProps & React$1.RefAttributes<SVGSVGElement>>;
|
|
645
638
|
|
|
646
639
|
declare const iconButtonVariants: (props?: ({
|
|
647
|
-
size?: "s" | "m" | "l" | null | undefined;
|
|
640
|
+
size?: "s" | "default" | "m" | "l" | null | undefined;
|
|
648
641
|
shape?: "circle" | "rounded" | null | undefined;
|
|
649
642
|
variant?: "secondary" | "destructive" | "primary" | "ghost" | null | undefined;
|
|
650
643
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
@@ -1734,7 +1727,7 @@ type SelectOption<D = unknown, V extends string | number | boolean = string, L e
|
|
|
1734
1727
|
isDisabled?: boolean;
|
|
1735
1728
|
readOnly?: boolean;
|
|
1736
1729
|
};
|
|
1737
|
-
type SelectorOption<T extends string | number = string> = {
|
|
1730
|
+
type SelectorOption<T extends string | number | boolean = string> = {
|
|
1738
1731
|
value: T;
|
|
1739
1732
|
label?: string | ReactNode;
|
|
1740
1733
|
disabled?: boolean;
|
|
@@ -1883,7 +1876,7 @@ declare const DividingSubsection: React$1.ForwardRefExoticComponent<SectionProps
|
|
|
1883
1876
|
|
|
1884
1877
|
declare const SelectRoot: React$1.FC<SelectPrimitive.SelectProps>;
|
|
1885
1878
|
declare const SelectGroup: React$1.ForwardRefExoticComponent<SelectPrimitive.SelectGroupProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1886
|
-
declare const SelectValue$
|
|
1879
|
+
declare const SelectValue$2: React$1.ForwardRefExoticComponent<SelectPrimitive.SelectValueProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
1887
1880
|
declare const SelectPortal: React$1.FC<SelectPrimitive.SelectPortalProps>;
|
|
1888
1881
|
type SelectSize = 'sm' | 'md';
|
|
1889
1882
|
declare const SelectTrigger: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & {
|
|
@@ -2424,7 +2417,7 @@ declare const ToggleGroupItem: React$1.ForwardRefExoticComponent<Omit<ToggleGrou
|
|
|
2424
2417
|
theme?: "default" | "sky-blue" | null | undefined;
|
|
2425
2418
|
} & class_variance_authority_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
2426
2419
|
|
|
2427
|
-
type TogglesProps<T extends string | number, M extends boolean | undefined = undefined> = {
|
|
2420
|
+
type TogglesProps<T extends string | number | boolean, M extends boolean | undefined = undefined> = {
|
|
2428
2421
|
options: SelectorOption<T>[];
|
|
2429
2422
|
onClick?: (event: MouseEvent<HTMLButtonElement>, value: SelectorOption<T>) => void | {
|
|
2430
2423
|
shouldPrevent: boolean;
|
|
@@ -2450,8 +2443,8 @@ type TogglesProps<T extends string | number, M extends boolean | undefined = und
|
|
|
2450
2443
|
value?: T;
|
|
2451
2444
|
onChange?: (value: T, event: MouseEvent<HTMLButtonElement>) => void;
|
|
2452
2445
|
});
|
|
2453
|
-
declare function TogglesInternal<T extends string | number, M extends boolean | undefined = undefined>({ className, groupClassName, loading, disabled, value, options, variant, size, theme, onAnySelectorActive, onClick, onChange, readOnly, minSelected, disabledItems, readonlyItems, label, multiple, }: TogglesProps<T, M>, ref: ForwardedRef<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
2454
|
-
type TogglesForwardType = <T extends string | number, M extends boolean | undefined = true>(props: TogglesProps<T, M> & {
|
|
2446
|
+
declare function TogglesInternal<T extends string | number | boolean, M extends boolean | undefined = undefined>({ className, groupClassName, loading, disabled, value, options, variant, size, theme, onAnySelectorActive, onClick, onChange, readOnly, minSelected, disabledItems, readonlyItems, label, multiple, }: TogglesProps<T, M>, ref: ForwardedRef<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
2447
|
+
type TogglesForwardType = <T extends string | number | boolean, M extends boolean | undefined = true>(props: TogglesProps<T, M> & {
|
|
2455
2448
|
ref?: ForwardedRef<HTMLDivElement>;
|
|
2456
2449
|
}) => ReturnType<typeof TogglesInternal>;
|
|
2457
2450
|
declare const Toggles: TogglesForwardType;
|
|
@@ -2773,8 +2766,8 @@ type PhoneFieldProps = {
|
|
|
2773
2766
|
};
|
|
2774
2767
|
declare const PhoneField: React$1.ForwardRefExoticComponent<PhoneFieldProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
2775
2768
|
|
|
2776
|
-
type SelectValue = string | number;
|
|
2777
|
-
type SelectRenderTriggerProps<T = undefined, V extends SelectValue = string, L extends string | number | React$1.ReactNode = string> = {
|
|
2769
|
+
type SelectValue$1 = string | number;
|
|
2770
|
+
type SelectRenderTriggerProps<T = undefined, V extends SelectValue$1 = string, L extends string | number | React$1.ReactNode = string> = {
|
|
2778
2771
|
id: string;
|
|
2779
2772
|
open: boolean;
|
|
2780
2773
|
variant: 'default' | 'airbnb';
|
|
@@ -2796,7 +2789,7 @@ type SelectRenderTriggerProps<T = undefined, V extends SelectValue = string, L e
|
|
|
2796
2789
|
onKeyDown: React$1.KeyboardEventHandler<HTMLButtonElement>;
|
|
2797
2790
|
onBlur?: React$1.FocusEventHandler<HTMLButtonElement>;
|
|
2798
2791
|
};
|
|
2799
|
-
type AirbnbSelectProps<T = undefined, V extends SelectValue = string, L extends string | number | React$1.ReactNode = string> = {
|
|
2792
|
+
type AirbnbSelectProps<T = undefined, V extends SelectValue$1 = string, L extends string | number | React$1.ReactNode = string> = {
|
|
2800
2793
|
options?: SelectOption<T, V, L>[];
|
|
2801
2794
|
value?: SelectOption<T, V, L> | null;
|
|
2802
2795
|
onChange: (option: SelectOption<T, V, L>) => void;
|
|
@@ -2823,7 +2816,7 @@ type AirbnbSelectProps<T = undefined, V extends SelectValue = string, L extends
|
|
|
2823
2816
|
noOptionsMessage?: () => string | undefined;
|
|
2824
2817
|
};
|
|
2825
2818
|
|
|
2826
|
-
declare const AirbnbSelect: <T = undefined, V extends SelectValue = string, L extends string | number | ReactNode = string>(props: AirbnbSelectProps<T, V, L> & {
|
|
2819
|
+
declare const AirbnbSelect: <T = undefined, V extends SelectValue$1 = string, L extends string | number | ReactNode = string>(props: AirbnbSelectProps<T, V, L> & {
|
|
2827
2820
|
ref?: React$1.Ref<HTMLButtonElement>;
|
|
2828
2821
|
}) => React$1.ReactElement;
|
|
2829
2822
|
|
|
@@ -2833,6 +2826,175 @@ type AirbnbSearchInputProps = ComponentProps<'input'> & {
|
|
|
2833
2826
|
};
|
|
2834
2827
|
declare const AirbnbSearchInput: React$1.ForwardRefExoticComponent<Omit<AirbnbSearchInputProps, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
|
|
2835
2828
|
|
|
2829
|
+
type DashboardInputProps = React$1.InputHTMLAttributes<HTMLInputElement> & {
|
|
2830
|
+
label?: string | React$1.ReactNode;
|
|
2831
|
+
topLabel?: string;
|
|
2832
|
+
tooltip?: React$1.ReactNode;
|
|
2833
|
+
optional?: boolean | string;
|
|
2834
|
+
error?: unknown;
|
|
2835
|
+
invalid?: boolean;
|
|
2836
|
+
loading?: boolean;
|
|
2837
|
+
empty?: boolean;
|
|
2838
|
+
helperText?: string;
|
|
2839
|
+
footer?: string | React$1.ReactNode;
|
|
2840
|
+
width?: number | string;
|
|
2841
|
+
leftIcon?: React$1.ReactNode;
|
|
2842
|
+
sign?: string | React$1.ReactNode;
|
|
2843
|
+
onReset?: () => void;
|
|
2844
|
+
showNumberButtons?: boolean;
|
|
2845
|
+
onIncrement?: (e: React$1.MouseEvent<HTMLButtonElement>) => void;
|
|
2846
|
+
onDecrement?: (e: React$1.MouseEvent<HTMLButtonElement>) => void;
|
|
2847
|
+
wrapperClassName?: string;
|
|
2848
|
+
fieldClassName?: string;
|
|
2849
|
+
contentClassName?: string;
|
|
2850
|
+
inputClassName?: string;
|
|
2851
|
+
trailingAdornment?: React$1.ReactNode;
|
|
2852
|
+
renderErrorMessage?: boolean;
|
|
2853
|
+
};
|
|
2854
|
+
declare const DashboardInput: React$1.ForwardRefExoticComponent<React$1.InputHTMLAttributes<HTMLInputElement> & {
|
|
2855
|
+
label?: string | React$1.ReactNode;
|
|
2856
|
+
topLabel?: string;
|
|
2857
|
+
tooltip?: React$1.ReactNode;
|
|
2858
|
+
optional?: boolean | string;
|
|
2859
|
+
error?: unknown;
|
|
2860
|
+
invalid?: boolean;
|
|
2861
|
+
loading?: boolean;
|
|
2862
|
+
empty?: boolean;
|
|
2863
|
+
helperText?: string;
|
|
2864
|
+
footer?: string | React$1.ReactNode;
|
|
2865
|
+
width?: number | string;
|
|
2866
|
+
leftIcon?: React$1.ReactNode;
|
|
2867
|
+
sign?: string | React$1.ReactNode;
|
|
2868
|
+
onReset?: () => void;
|
|
2869
|
+
showNumberButtons?: boolean;
|
|
2870
|
+
onIncrement?: (e: React$1.MouseEvent<HTMLButtonElement>) => void;
|
|
2871
|
+
onDecrement?: (e: React$1.MouseEvent<HTMLButtonElement>) => void;
|
|
2872
|
+
wrapperClassName?: string;
|
|
2873
|
+
fieldClassName?: string;
|
|
2874
|
+
contentClassName?: string;
|
|
2875
|
+
inputClassName?: string;
|
|
2876
|
+
trailingAdornment?: React$1.ReactNode;
|
|
2877
|
+
renderErrorMessage?: boolean;
|
|
2878
|
+
} & React$1.RefAttributes<HTMLInputElement>>;
|
|
2879
|
+
|
|
2880
|
+
type SelectValue = string | number;
|
|
2881
|
+
type DashboardSelectFilterOption<T = undefined, V extends SelectValue = string, L extends ReactNode = string> = (option: SelectOption<T, V, L>, input: string) => boolean;
|
|
2882
|
+
|
|
2883
|
+
type DashboardSelectProps<T = undefined, V extends SelectValue = string, L extends ReactNode = string> = {
|
|
2884
|
+
options?: SelectOption<T, V, L>[];
|
|
2885
|
+
value?: SelectOption<T, V, L> | null;
|
|
2886
|
+
onChange: (option: SelectOption<T, V, L>) => void;
|
|
2887
|
+
onBlur?: React$1.FocusEventHandler<HTMLButtonElement>;
|
|
2888
|
+
label: string;
|
|
2889
|
+
topLabel?: string;
|
|
2890
|
+
placeholder?: string;
|
|
2891
|
+
getValueLabel?: (option: SelectOption<T, V, L>) => string;
|
|
2892
|
+
disabled?: boolean;
|
|
2893
|
+
loading?: boolean;
|
|
2894
|
+
optional?: boolean | string;
|
|
2895
|
+
tooltip?: React$1.ReactNode;
|
|
2896
|
+
error?: string;
|
|
2897
|
+
invalid?: boolean;
|
|
2898
|
+
hideErrorMessage?: boolean;
|
|
2899
|
+
className?: string;
|
|
2900
|
+
menuClassName?: string;
|
|
2901
|
+
dropdownClassName?: string;
|
|
2902
|
+
name?: string;
|
|
2903
|
+
width?: number | string;
|
|
2904
|
+
noOptionsMessage?: () => string | undefined;
|
|
2905
|
+
searchable?: boolean;
|
|
2906
|
+
searchPlaceholder?: string;
|
|
2907
|
+
filterOption?: DashboardSelectFilterOption<T, V, L>;
|
|
2908
|
+
helperText?: string;
|
|
2909
|
+
};
|
|
2910
|
+
type DashboardSelectComponent = <T = undefined, V extends SelectValue = string, L extends ReactNode = string>(props: DashboardSelectProps<T, V, L> & {
|
|
2911
|
+
ref?: React$1.Ref<HTMLButtonElement>;
|
|
2912
|
+
}) => React$1.ReactElement;
|
|
2913
|
+
declare const DashboardSelect: DashboardSelectComponent;
|
|
2914
|
+
|
|
2915
|
+
type DashboardMultiSelectChipRenderer<T, V extends SelectValue, L extends ReactNode> = (option: SelectOption<T, V, L>, onRemove: () => void) => React$1.ReactNode;
|
|
2916
|
+
type DashboardMultiSelectProps<T = undefined, V extends SelectValue = string, L extends ReactNode = string> = {
|
|
2917
|
+
options?: SelectOption<T, V, L>[];
|
|
2918
|
+
value?: SelectOption<T, V, L>[] | null;
|
|
2919
|
+
onChange: (value: SelectOption<T, V, L>[]) => void;
|
|
2920
|
+
onBlur?: React$1.FocusEventHandler<HTMLDivElement>;
|
|
2921
|
+
label: string;
|
|
2922
|
+
topLabel?: string;
|
|
2923
|
+
placeholder?: string;
|
|
2924
|
+
disabled?: boolean;
|
|
2925
|
+
readOnly?: boolean;
|
|
2926
|
+
loading?: boolean;
|
|
2927
|
+
optional?: boolean | string;
|
|
2928
|
+
tooltip?: React$1.ReactNode;
|
|
2929
|
+
error?: string;
|
|
2930
|
+
invalid?: boolean;
|
|
2931
|
+
hideErrorMessage?: boolean;
|
|
2932
|
+
className?: string;
|
|
2933
|
+
menuClassName?: string;
|
|
2934
|
+
dropdownClassName?: string;
|
|
2935
|
+
name?: string;
|
|
2936
|
+
width?: number | string;
|
|
2937
|
+
noOptionsMessage?: () => string | undefined;
|
|
2938
|
+
filterOption?: DashboardSelectFilterOption<T, V, L>;
|
|
2939
|
+
closeMenuOnSelect?: boolean;
|
|
2940
|
+
renderChip?: DashboardMultiSelectChipRenderer<T, V, L>;
|
|
2941
|
+
helperText?: string;
|
|
2942
|
+
isCreatable?: boolean;
|
|
2943
|
+
onCreateOption?: (input: string) => SelectOption<T, V, L>;
|
|
2944
|
+
formatCreateLabel?: (input: string) => React$1.ReactNode;
|
|
2945
|
+
isValidNewOption?: (input: string, selected: SelectOption<T, V, L>[], options: SelectOption<T, V, L>[]) => boolean;
|
|
2946
|
+
};
|
|
2947
|
+
type DashboardMultiSelectComponent = <T = undefined, V extends SelectValue = string, L extends ReactNode = string>(props: DashboardMultiSelectProps<T, V, L> & {
|
|
2948
|
+
ref?: React$1.Ref<HTMLDivElement>;
|
|
2949
|
+
}) => React$1.ReactElement;
|
|
2950
|
+
declare const DashboardMultiSelect: DashboardMultiSelectComponent;
|
|
2951
|
+
|
|
2952
|
+
type DashboardCreatableMultiSelectProps<T = undefined, V extends SelectValue = string, L extends ReactNode = string> = Omit<DashboardMultiSelectProps<T, V, L>, 'isCreatable'>;
|
|
2953
|
+
declare const DashboardCreatableMultiSelect: <T = undefined, V extends SelectValue = string, L extends ReactNode = string>(props: DashboardCreatableMultiSelectProps<T, V, L> & {
|
|
2954
|
+
ref?: React$1.Ref<HTMLDivElement>;
|
|
2955
|
+
}) => React$1.ReactElement;
|
|
2956
|
+
|
|
2957
|
+
type DashboardInfiniteScrollSelectProps<T = undefined, V extends SelectValue = string, L extends ReactNode = string> = {
|
|
2958
|
+
options?: SelectOption<T, V, L>[];
|
|
2959
|
+
value?: SelectOption<T, V, L> | null;
|
|
2960
|
+
onChange: (option: SelectOption<T, V, L>) => void;
|
|
2961
|
+
onBlur?: React$1.FocusEventHandler<HTMLButtonElement>;
|
|
2962
|
+
label: string;
|
|
2963
|
+
topLabel?: string;
|
|
2964
|
+
placeholder?: string;
|
|
2965
|
+
getValueLabel?: (option: SelectOption<T, V, L>) => string;
|
|
2966
|
+
disabled?: boolean;
|
|
2967
|
+
loading?: boolean;
|
|
2968
|
+
optional?: boolean | string;
|
|
2969
|
+
tooltip?: React$1.ReactNode;
|
|
2970
|
+
error?: string;
|
|
2971
|
+
invalid?: boolean;
|
|
2972
|
+
hideErrorMessage?: boolean;
|
|
2973
|
+
className?: string;
|
|
2974
|
+
menuClassName?: string;
|
|
2975
|
+
dropdownClassName?: string;
|
|
2976
|
+
name?: string;
|
|
2977
|
+
width?: number | string;
|
|
2978
|
+
noOptionsMessage?: () => string | undefined;
|
|
2979
|
+
searchable?: boolean;
|
|
2980
|
+
searchPlaceholder?: string;
|
|
2981
|
+
filterOption?: DashboardSelectFilterOption<T, V, L>;
|
|
2982
|
+
helperText?: string;
|
|
2983
|
+
canLoadMore?: boolean;
|
|
2984
|
+
isLoadingMore?: boolean;
|
|
2985
|
+
loadMoreItems?: () => void;
|
|
2986
|
+
loadingMoreText?: string;
|
|
2987
|
+
onSearchChange?: (input: string) => void;
|
|
2988
|
+
itemHeight?: number;
|
|
2989
|
+
listHeight?: number;
|
|
2990
|
+
overscan?: number;
|
|
2991
|
+
loadMoreThreshold?: number;
|
|
2992
|
+
};
|
|
2993
|
+
type DashboardInfiniteScrollSelectComponent = <T = undefined, V extends SelectValue = string, L extends ReactNode = string>(props: DashboardInfiniteScrollSelectProps<T, V, L> & {
|
|
2994
|
+
ref?: React$1.Ref<HTMLButtonElement>;
|
|
2995
|
+
}) => React$1.ReactElement;
|
|
2996
|
+
declare const DashboardInfiniteScrollSelect: DashboardInfiniteScrollSelectComponent;
|
|
2997
|
+
|
|
2836
2998
|
type SearchableSelectValue = string | number;
|
|
2837
2999
|
type SearchableSelectProps<T = undefined, V extends SearchableSelectValue = string, L extends ReactNode = string> = {
|
|
2838
3000
|
options: SelectOption<T, V, L>[];
|
|
@@ -3132,4 +3294,4 @@ declare function toastResponseError(error: unknown, options?: CustomToastOptions
|
|
|
3132
3294
|
|
|
3133
3295
|
declare function getErrorMessage(error?: any): any;
|
|
3134
3296
|
|
|
3135
|
-
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, CheckList, type CheckListProps, Checkbox, CheckboxDropdownGroup, type CheckboxDropdownGroupConfig, type CheckboxDropdownGroupProps, CheckboxDropdownMultiGroup, CheckboxGroup, type CheckboxGroupProps, type CheckboxOption, type CheckboxProps, type CheckboxSize, CircularLoader, CommingSoonBadge, type CommingSoonBadgeProps, ConfirmationDialog, type ConfirmationDialogProps, CopyIcon, type CopyIconProps, CopyInput, type CopyInputProps, CopyLinkButton, type CopyLinkButtonProps, CopyString, type CopyStringProps, CustomCheckboxDropdownGroup, type CustomIconEntry, DEVICE_BREAKPOINTS, DataTable, type DataTableProps, DatePicker, type DatePickerProps, type DatePickerValue, DateTableFilter, DebouncedSearchInput, type DebouncedSearchInputProps, DefaultSelectTrigger, type DefaultSelectTriggerProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DialogVisuallyHidden, DividingSubsection, 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, FieldErrorMessage, type FieldErrorMessageProps, FieldTrigger, type FieldTriggerProps, FileInputButton, type FileInputButtonProps, FormBox, Content as FormBoxContent, type FormBoxContentProps, Header as FormBoxHeader, type FormBoxHeaderProps, Root$1 as FormBoxRoot, type FormBoxRootProps, SubHeader as FormBoxSubHeader, type FormBoxSubHeaderProps, FramedIcon, type FramedIconProps, FreeTextField, type FreeTextFieldProps, HALO_ICON_STATUS, HaloIcon, type HaloIconProps, HelpTooltip, type HelpTooltipProps, IconButton, type IconButtonProps, type IconEntry, 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, type LabelProps, LargeModal, type LargeModalProps, LearnMoreButton, type LearnMoreButtonProps, Link, type LinkProps, LoadingBar, type LoadingBarProps, type LucideIconEntry, Modal, ModalButton, ModalLoader, type ModalLoaderProps, type ModalProps, MultiSelect, type MultiSelectProps, NumberedList, type NumberedListProps, type OptionsCardsProps, OverlayLoader, type OverlayLoaderProps, Pagination, type PaginationProps, type PaginationVariant, PhoneField, type PhoneFieldOption, type PhoneFieldProps, type PhoneFieldValue, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, PopoverTrigger, PopoverWithTooltip, type PopoverWithTooltipProps, Radio, type RadioCardOption, MemoizedRadioCardsGroup as RadioCardsGroup, RadioGroup, RadioGroupItem, type RadioOption, type RadioProps, RadioWithBorder, RatingProgress, type RatingProgressProps, RatingRadioGroup, type RatingRadioGroupProps, RatingStars, type RatingStarsProps, type RegisterUiKitI18nOptions, ResponsiveSheet, type ResponsiveSheetProps, RotateArrow, type RotateArrowProps, ScrollArea, type ScrollAreaProps, ScrollBar, type ScrollBarProps, type ScrollableAreaState, SearchButton, type SearchButtonProps, SearchInput, type SearchInputProps, SearchableSelect, type SearchableSelectProps, type SearchableSelectValue, Section, SectionGroup, type SectionGroupItemProps, type SectionGroupLabelProps, type SectionGroupProps, type SectionProps, SectionTag, SectionTagColors, type SectionTagProps, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, type SelectOption, SelectPortal, type SelectProps, SelectRoot, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, type SelectSize, SelectTrigger, SelectValue$
|
|
3297
|
+
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, CheckList, type CheckListProps, Checkbox, CheckboxDropdownGroup, type CheckboxDropdownGroupConfig, type CheckboxDropdownGroupProps, CheckboxDropdownMultiGroup, CheckboxGroup, type CheckboxGroupProps, type CheckboxOption, type CheckboxProps, type CheckboxSize, CircularLoader, CommingSoonBadge, type CommingSoonBadgeProps, ConfirmationDialog, type ConfirmationDialogProps, CopyIcon, type CopyIconProps, CopyInput, type CopyInputProps, CopyLinkButton, type CopyLinkButtonProps, CopyString, type CopyStringProps, CustomCheckboxDropdownGroup, type CustomIconEntry, DEVICE_BREAKPOINTS, DashboardCreatableMultiSelect, type DashboardCreatableMultiSelectProps, DashboardInfiniteScrollSelect, type DashboardInfiniteScrollSelectProps, DashboardInput, type DashboardInputProps, DashboardMultiSelect, type DashboardMultiSelectChipRenderer, type DashboardMultiSelectProps, DashboardSelect, type DashboardSelectProps, DataTable, type DataTableProps, DatePicker, type DatePickerProps, type DatePickerValue, DateTableFilter, DebouncedSearchInput, type DebouncedSearchInputProps, DefaultSelectTrigger, type DefaultSelectTriggerProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DialogVisuallyHidden, DividingSubsection, 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, FieldErrorMessage, type FieldErrorMessageProps, FieldTrigger, type FieldTriggerProps, FileInputButton, type FileInputButtonProps, FormBox, Content as FormBoxContent, type FormBoxContentProps, Header as FormBoxHeader, type FormBoxHeaderProps, Root$1 as FormBoxRoot, type FormBoxRootProps, SubHeader as FormBoxSubHeader, type FormBoxSubHeaderProps, FramedIcon, type FramedIconProps, FreeTextField, type FreeTextFieldProps, HALO_ICON_STATUS, HaloIcon, type HaloIconProps, HelpTooltip, type HelpTooltipProps, IconButton, type IconButtonProps, type IconEntry, 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, type LabelProps, LargeModal, type LargeModalProps, LearnMoreButton, type LearnMoreButtonProps, Link, type LinkProps, LoadingBar, type LoadingBarProps, type LucideIconEntry, Modal, ModalButton, ModalLoader, type ModalLoaderProps, type ModalProps, MultiSelect, type MultiSelectProps, NumberedList, type NumberedListProps, type OptionsCardsProps, OverlayLoader, type OverlayLoaderProps, Pagination, type PaginationProps, type PaginationVariant, PhoneField, type PhoneFieldOption, type PhoneFieldProps, type PhoneFieldValue, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, PopoverTrigger, PopoverWithTooltip, type PopoverWithTooltipProps, Radio, type RadioCardOption, MemoizedRadioCardsGroup as RadioCardsGroup, RadioGroup, RadioGroupItem, type RadioOption, type RadioProps, RadioWithBorder, RatingProgress, type RatingProgressProps, RatingRadioGroup, type RatingRadioGroupProps, RatingStars, type RatingStarsProps, type RegisterUiKitI18nOptions, ResponsiveSheet, type ResponsiveSheetProps, RotateArrow, type RotateArrowProps, ScrollArea, type ScrollAreaProps, ScrollBar, type ScrollBarProps, type ScrollableAreaState, SearchButton, type SearchButtonProps, SearchInput, type SearchInputProps, SearchableSelect, type SearchableSelectProps, type SearchableSelectValue, Section, SectionGroup, type SectionGroupItemProps, type SectionGroupLabelProps, type SectionGroupProps, type SectionProps, SectionTag, SectionTagColors, type SectionTagProps, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, type SelectOption, SelectPortal, type SelectProps, SelectRoot, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, type SelectSize, SelectTrigger, SelectValue$2 as SelectValue, type SelectorOption, 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, SignatureCanvas, Skeleton, type SkeletonProps, Slider, SliderNext, SliderPrevious, type SliderProps, SliderRoot, type SliderRootProps, SliderSlide, SliderTrack, SliderViewport, 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, SvgIcon, type SvgIconProps, type SvgIconSize, Switch, SwitchBlocks, type SwitchBlocksOption, type SwitchBlocksProps, SwitchGroup, type SwitchGroupProps, type SwitchOption, type SwitchProps, TabbedSection, type TabbedSectionProps, Table, TableBody, TableCaption, TableCell, TableFilter, type TableFilterProps, TableFooter, TableHead, TableHeader, TableLoader, type TableLoaderProps, type TableLoaderRootProps, TablePlaceholder, type TablePlaceholderProps, TableRow, Tabs, TabsContent, TabsList, type TabsListProps, TabsTrigger, type TabsTriggerProps, TextField, type TextFieldProps, Textarea, type TextareaProps, ThreeDotsLoader, type ThreeDotsLoaderProps, Timeline, TimelineConnector, type TimelineConnectorProps, TimelineContent, type TimelineContentProps, type TimelineContextProps, TimelineDescription, type TimelineDescriptionProps, TimelineDot, type TimelineDotProps, TimelineItem, type TimelineItemProps, type TimelineProps, TimelineSeparator, type TimelineSeparatorProps, TimelineTitle, type TimelineTitleProps, ToggleGroup, ToggleGroupItem, Toggles, type TogglesForwardType, type TogglesProps, Tooltip, TooltipContent, type TooltipContentProps, type TooltipProps, TooltipProvider, TooltipRoot, type TooltipRootProps, TooltipRootWrapper, TooltipTrigger, UI_KIT_I18N_NAMESPACE, type UiKitLocale, UploadedFilesList, type UploadedFilesListProps, type UseScrollableAreaOptions, type UseScrollableAreaResult, VerticalTabs, type VerticalTabsProps, type VerticalTabsStep, VideoModal, type VideoModalProps, VideoPlayer, type VideoPlayerProps, Webcam, type WebcamProps, type WebcamRefTypes, WideButton, type WideButtonProps, addSupportEmailToMessage, badgeVariants, bookmarkTabsListVariants, bookmarkTabsTriggerVariants, buttonGroupVariants, buttonVariants, calendarClassNames, cn, copyToClipboard, emptyMediaVariants, getErrorMessage, getScrollableAreaState, getSidebarState, inputVariants, isNumeric, labelVariants, registerUiKitI18n, scrollToTop, sectionTagVariants, switchThumbVariants, switchVariants, tabsListVariants, tabsTriggerVariants, toCssSize, toastResponseError, toggleVariants, uiKitI18nResources, uiKitTranslations, useAbortController, useAccordionState, useClickEscape, useCombinedRef, useCopyToClipboard, useDebounce, useDebouncedFunction, useEvent, useHover, useIframeFocusTrapFallback, useIsFormTouched, useIsMobile, useIsMounted, useKeyDown, useLoadMore, useModalControls, useOutsideClick, usePagination, usePrevious, usePromisedModalControls, useRadioOptions, useResetAfterRequestStatus, useScreenResize, useScrollFrameIntoView, useScrollToTop, useScrollableArea, useSearchInput, useSidebar, useSidebarMenuButton, useSidebarSafe, useSliderContext, useStickyStuck, useSwitchSectionActive, useTimeline, useTimeout, useTimeoutRef, useTimer, useUpdateToast };
|