@chekinapp/ui 0.0.109 → 0.0.111

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -7,6 +7,7 @@ import * as react_jsx_runtime from 'react/jsx-runtime';
7
7
  import * as AvatarPrimitive from '@radix-ui/react-avatar';
8
8
  import * as TabsPrimitive from '@radix-ui/react-tabs';
9
9
  import { DayPicker, PropsRange, PropsBase, DateRange, Matcher } from 'react-day-picker';
10
+ export { DateRange } from 'react-day-picker';
10
11
  import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
11
12
  import { ColumnDef } from '@tanstack/react-table';
12
13
  import * as DialogPrimitive from '@radix-ui/react-dialog';
@@ -864,6 +865,14 @@ declare const uiKitTranslations: {
864
865
  show_more: string;
865
866
  tap_here_to_sign: string;
866
867
  click_here_to_sign: string;
868
+ prefix: string;
869
+ prefix_required: string;
870
+ reset: string;
871
+ show_password: string;
872
+ hide_password: string;
873
+ increment: string;
874
+ decrement: string;
875
+ create_option: string;
867
876
  };
868
877
  readonly es: {
869
878
  verified: string;
@@ -1320,6 +1329,14 @@ declare const uiKitI18nResources: {
1320
1329
  show_more: string;
1321
1330
  tap_here_to_sign: string;
1322
1331
  click_here_to_sign: string;
1332
+ prefix: string;
1333
+ prefix_required: string;
1334
+ reset: string;
1335
+ show_password: string;
1336
+ hide_password: string;
1337
+ increment: string;
1338
+ decrement: string;
1339
+ create_option: string;
1323
1340
  };
1324
1341
  };
1325
1342
  readonly es: {
@@ -2855,10 +2872,97 @@ declare const Input: React$1.ForwardRefExoticComponent<React$1.InputHTMLAttribut
2855
2872
  renderErrorMessage?: boolean;
2856
2873
  } & React$1.RefAttributes<HTMLInputElement>>;
2857
2874
 
2875
+ type PhoneInputOption = {
2876
+ value: string;
2877
+ label: string;
2878
+ disabled?: boolean;
2879
+ data?: unknown;
2880
+ };
2881
+ type PhoneInputValue = {
2882
+ code: string;
2883
+ number: string;
2884
+ };
2885
+
2886
+ type PhoneInputProps = {
2887
+ options: PhoneInputOption[];
2888
+ value?: PhoneInputValue | null;
2889
+ onChange?: (value: PhoneInputValue, name?: string) => void;
2890
+ onBlur?: React$1.FocusEventHandler<HTMLInputElement>;
2891
+ name?: string;
2892
+ codeName?: string;
2893
+ numberName?: string;
2894
+ label?: string;
2895
+ topLabel?: string;
2896
+ prefixLabel?: string;
2897
+ placeholder?: string;
2898
+ codePlaceholder?: string;
2899
+ disabled?: boolean;
2900
+ loading?: boolean;
2901
+ readOnly?: boolean;
2902
+ codeReadOnly?: boolean;
2903
+ optional?: boolean | string;
2904
+ tooltip?: React$1.ReactNode;
2905
+ error?: string;
2906
+ invalid?: boolean;
2907
+ className?: string;
2908
+ autoDetectCode?: boolean;
2909
+ searchable?: boolean;
2910
+ };
2911
+ declare const PhoneInput: React$1.ForwardRefExoticComponent<PhoneInputProps & React$1.RefAttributes<HTMLInputElement>>;
2912
+
2913
+ declare function clearPhoneNumber(value: string): string;
2914
+ declare function findPhoneCode(value: string, codeSet: Set<string>): string | undefined;
2915
+ declare function parsePhoneValueWithOptions(options: PhoneInputOption[]): (value: string) => PhoneInputValue;
2916
+ declare function findPhoneCodeOption(options: PhoneInputOption[], code: string): PhoneInputOption | undefined;
2917
+ declare function formatPhoneCodeOptionLabel(option: PhoneInputOption): string;
2918
+
2858
2919
  type SelectValue$1 = string | number;
2859
2920
  type SelectFilterOption<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = (option: SelectOption<T, V, L>, input: string) => boolean;
2921
+ type SelectIsOptionDisabled<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = (option: SelectOption<T, V, L>) => boolean;
2922
+ type SelectChangeAction = 'select' | 'deselect' | 'clear' | 'create';
2923
+ type SelectChangeMeta = {
2924
+ action: SelectChangeAction;
2925
+ };
2926
+
2927
+ type SelectProps<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = {
2928
+ options?: SelectOption<T, V, L>[];
2929
+ value?: SelectOption<T, V, L> | null;
2930
+ onChange: (option: SelectOption<T, V, L> | null, meta?: SelectChangeMeta) => void;
2931
+ onBlur?: React$1.FocusEventHandler<HTMLDivElement>;
2932
+ label?: string;
2933
+ topLabel?: string;
2934
+ placeholder?: string;
2935
+ getValueLabel?: (option: SelectOption<T, V, L>) => string;
2936
+ disabled?: boolean;
2937
+ readOnly?: boolean;
2938
+ loading?: boolean;
2939
+ optional?: boolean | string;
2940
+ tooltip?: React$1.ReactNode;
2941
+ error?: string;
2942
+ invalid?: boolean;
2943
+ hideErrorMessage?: boolean;
2944
+ className?: string;
2945
+ menuClassName?: string;
2946
+ dropdownClassName?: string;
2947
+ drawerClassName?: string;
2948
+ name?: string;
2949
+ width?: number | string;
2950
+ noOptionsMessage?: () => string | undefined;
2951
+ filterOption?: SelectFilterOption<T, V, L>;
2952
+ isOptionDisabled?: SelectIsOptionDisabled<T, V, L>;
2953
+ helperText?: string;
2954
+ clearable?: boolean;
2955
+ isCreatable?: boolean;
2956
+ onCreateOption?: (input: string) => SelectOption<T, V, L>;
2957
+ formatCreateLabel?: (input: string) => React$1.ReactNode;
2958
+ isValidNewOption?: (input: string, selected: SelectOption<T, V, L> | null | undefined, options: SelectOption<T, V, L>[]) => boolean;
2959
+ };
2960
+ type SelectComponent = <T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string>(props: SelectProps<T, V, L> & {
2961
+ ref?: React$1.Ref<HTMLDivElement>;
2962
+ }) => React$1.ReactElement;
2963
+ declare const Select: SelectComponent;
2860
2964
 
2861
- type SelectProps<T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string> = {
2965
+ type SearchableSelectProps<T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string> = {
2862
2966
  options?: SelectOption<T, V, L>[];
2863
2967
  value?: SelectOption<T, V, L> | null;
2864
2968
  onChange: (option: SelectOption<T, V, L>) => void;
@@ -2886,16 +2990,21 @@ type SelectProps<T = unknown, V extends SelectValue$1 = string, L extends ReactN
2886
2990
  filterOption?: SelectFilterOption<T, V, L>;
2887
2991
  helperText?: string;
2888
2992
  };
2889
- type SelectComponent = <T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string>(props: SelectProps<T, V, L> & {
2993
+ type SearchableSelectComponent = <T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string>(props: SearchableSelectProps<T, V, L> & {
2890
2994
  ref?: React$1.Ref<HTMLButtonElement>;
2891
2995
  }) => React$1.ReactElement;
2892
- declare const Select: SelectComponent;
2996
+ declare const SearchableSelect: SearchableSelectComponent;
2997
+
2998
+ type CreatableSelectProps<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = Omit<SelectProps<T, V, L>, 'isCreatable'>;
2999
+ declare const CreatableSelect: <T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string>(props: CreatableSelectProps<T, V, L> & {
3000
+ ref?: React$1.Ref<HTMLDivElement>;
3001
+ }) => React$1.ReactElement;
2893
3002
 
2894
3003
  type MultiSelectChipRenderer<T, V extends SelectValue$1, L extends ReactNode> = (option: SelectOption<T, V, L>, onRemove: () => void) => React$1.ReactNode;
2895
3004
  type MultiSelectProps<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = {
2896
3005
  options?: SelectOption<T, V, L>[];
2897
3006
  value?: SelectOption<T, V, L>[] | null;
2898
- onChange: (value: SelectOption<T, V, L>[]) => void;
3007
+ onChange: (value: SelectOption<T, V, L>[], meta?: SelectChangeMeta) => void;
2899
3008
  onBlur?: React$1.FocusEventHandler<HTMLDivElement>;
2900
3009
  label: string;
2901
3010
  topLabel?: string;
@@ -2916,6 +3025,7 @@ type MultiSelectProps<T = undefined, V extends SelectValue$1 = string, L extends
2916
3025
  width?: number | string;
2917
3026
  noOptionsMessage?: () => string | undefined;
2918
3027
  filterOption?: SelectFilterOption<T, V, L>;
3028
+ isOptionDisabled?: SelectIsOptionDisabled<T, V, L>;
2919
3029
  closeMenuOnSelect?: boolean;
2920
3030
  renderChip?: MultiSelectChipRenderer<T, V, L>;
2921
3031
  helperText?: string;
@@ -2924,7 +3034,7 @@ type MultiSelectProps<T = undefined, V extends SelectValue$1 = string, L extends
2924
3034
  formatCreateLabel?: (input: string) => React$1.ReactNode;
2925
3035
  isValidNewOption?: (input: string, selected: SelectOption<T, V, L>[], options: SelectOption<T, V, L>[]) => boolean;
2926
3036
  };
2927
- type MultiSelectComponent = <T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string>(props: MultiSelectProps<T, V, L> & {
3037
+ type MultiSelectComponent = <T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string>(props: MultiSelectProps<T, V, L> & {
2928
3038
  ref?: React$1.Ref<HTMLDivElement>;
2929
3039
  }) => React$1.ReactElement;
2930
3040
  declare const MultiSelect: MultiSelectComponent;
@@ -2937,13 +3047,14 @@ declare const CreatableMultiSelect: <T = undefined, V extends SelectValue$1 = st
2937
3047
  type InfiniteScrollSelectProps<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = {
2938
3048
  options?: SelectOption<T, V, L>[];
2939
3049
  value?: SelectOption<T, V, L> | null;
2940
- onChange: (option: SelectOption<T, V, L>) => void;
2941
- onBlur?: React$1.FocusEventHandler<HTMLButtonElement>;
3050
+ onChange: (option: SelectOption<T, V, L> | null) => void;
3051
+ onBlur?: React$1.FocusEventHandler<HTMLDivElement>;
2942
3052
  label: string;
2943
3053
  topLabel?: string;
2944
3054
  placeholder?: string;
2945
3055
  getValueLabel?: (option: SelectOption<T, V, L>) => string;
2946
3056
  disabled?: boolean;
3057
+ readOnly?: boolean;
2947
3058
  loading?: boolean;
2948
3059
  optional?: boolean | string;
2949
3060
  tooltip?: React$1.ReactNode;
@@ -2957,10 +3068,9 @@ type InfiniteScrollSelectProps<T = undefined, V extends SelectValue$1 = string,
2957
3068
  name?: string;
2958
3069
  width?: number | string;
2959
3070
  noOptionsMessage?: () => string | undefined;
2960
- searchable?: boolean;
2961
- searchPlaceholder?: string;
2962
3071
  filterOption?: SelectFilterOption<T, V, L>;
2963
3072
  helperText?: string;
3073
+ clearable?: boolean;
2964
3074
  canLoadMore?: boolean;
2965
3075
  isLoadingMore?: boolean;
2966
3076
  loadMoreItems?: () => void;
@@ -2972,7 +3082,7 @@ type InfiniteScrollSelectProps<T = undefined, V extends SelectValue$1 = string,
2972
3082
  loadMoreThreshold?: number;
2973
3083
  };
2974
3084
  type InfiniteScrollSelectComponent = <T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string>(props: InfiniteScrollSelectProps<T, V, L> & {
2975
- ref?: React$1.Ref<HTMLButtonElement>;
3085
+ ref?: React$1.Ref<HTMLDivElement>;
2976
3086
  }) => React$1.ReactElement;
2977
3087
  declare const InfiniteScrollSelect: InfiniteScrollSelectComponent;
2978
3088
 
@@ -3170,7 +3280,7 @@ declare const TimePicker: React$1.ForwardRefExoticComponent<Omit<SelectProps<und
3170
3280
  format?: TimePickerFormat;
3171
3281
  timeSettings?: TimeSettings;
3172
3282
  options?: SelectProps<undefined, string, string>["options"];
3173
- } & React$1.RefAttributes<HTMLButtonElement>>;
3283
+ } & React$1.RefAttributes<HTMLDivElement>>;
3174
3284
 
3175
3285
  type FileInputValue = File | string | null;
3176
3286
  type FileInputProps = {
@@ -3414,7 +3524,8 @@ type Props$1 = {
3414
3524
  enabled?: boolean;
3415
3525
  onFinish?: () => void;
3416
3526
  };
3417
- declare const useCountdown: ({ initialTime, enabled, onFinish, }?: Props$1) => {
3527
+ declare const useCountdown: ({ initialTime, enabled, onFinish }?: Props$1) => {
3528
+ count: number;
3418
3529
  timeLeft: number;
3419
3530
  isTimerRunning: boolean;
3420
3531
  resetTimer: () => void;
@@ -3848,4 +3959,4 @@ type AirbnbSearchInputProps = ComponentProps<'input'> & {
3848
3959
  };
3849
3960
  declare const AirbnbSearchInput: React$1.ForwardRefExoticComponent<Omit<AirbnbSearchInputProps, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
3850
3961
 
3851
- export { ALERT_BOX_VARIANTS, Accordion, AccordionContent, type AccordionContentProps, AccordionItem, AccordionTrigger, type AccordionTriggerProps, AirbnbDatePicker, type AirbnbDatePickerProps, type AirbnbDatePickerValue, AirbnbFieldTrigger, type AirbnbFieldTriggerProps, AirbnbInput, type AirbnbInputProps, AirbnbPhoneField, type AirbnbPhoneFieldOption, type AirbnbPhoneFieldProps, type AirbnbPhoneFieldValue, AirbnbSearchInput, AirbnbSearchableSelect, type AirbnbSearchableSelectProps, type AirbnbSearchableSelectValue, AirbnbSelect, type AirbnbSelectProps, Alert, AlertBox, type AlertBoxProps, type AlertBoxVariant, AlertDescription, AlertSize, AlertSizes, AlertTitle, 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, Carousel, CarouselNext, CarouselPrevious, type CarouselProps, CarouselRoot, type CarouselRootProps, CarouselSlide, CarouselTrack, CarouselViewport, CheckList, type CheckListProps, Checkbox, CheckboxDropdownGroup, type CheckboxDropdownGroupConfig, type CheckboxDropdownGroupProps, CheckboxDropdownMultiGroup, CheckboxGroup, type CheckboxGroupProps, type CheckboxOption, type CheckboxProps, type CheckboxSize, CircularLoader, Collapsible, CollapsibleContent, CollapsibleTrigger, CommingSoonBadge, type CommingSoonBadgeProps, ConfirmationDialog, type ConfirmationDialogProps, CopyIcon, type CopyIconProps, CopyLinkButton, type CopyLinkButtonProps, CopyString, type CopyStringProps, Counter, type CounterProps, CounterSize, CreatableMultiSelect, type CreatableMultiSelectProps, CustomCheckboxDropdownGroup, type CustomIconEntry, DEFAULT_DISPLAY_FORMAT, DEVICE_BREAKPOINTS, DataTable, type DataTableProps, DateRangePicker, type DateRangePickerImperativeProps, type OpenDirection as DateRangePickerOpenDirection, type DateRangePickerProps, DateTableFilter, Datepicker, type DatepickerProps, type DatepickerValue, 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, ExpandableContent, type ExpandableContentProps, type ExpandableContentTrigger, ExternalLink, type ExternalLinkProps, FieldErrorMessage, type FieldErrorMessageProps, FileInput, FileInputButton, type FileInputButtonProps, type FileInputProps, type FileInputValue, 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, InfiniteScrollSelect, type InfiniteScrollSelectProps, InfoBox, type InfoBoxProps, Input, InputOTP, InputOTPGroup, type InputOTPProps, InputOTPSeparator, InputOTPSlot, type InputProps, Label, type LabelProps, LargeModal, type LargeModalProps, LearnMoreButton, type LearnMoreButtonProps, LegacyInfinitySelect, type LegacyInfinitySelectProps, LegacyInput, type LegacyInputProps, LegacyMultiSelect, type LegacyMultiSelectProps, LegacySelect, LegacySelectContent, LegacySelectGroup, LegacySelectItem, LegacySelectLabel, LegacySelectPortal, type LegacySelectProps, LegacySelectRoot, LegacySelectScrollDownButton, LegacySelectScrollUpButton, LegacySelectSeparator, type LegacySelectSize, LegacySelectTrigger, LegacySelectValue, LegacyTextarea, type LegacyTextareaProps, Link, type LinkProps, LoadingBar, type LoadingBarProps, type LucideIconEntry, type MobileCameraProps, type MobileScreenshotPayload, MobileWebcam, Modal, ModalButton, ModalLoader, type ModalLoaderProps, type ModalProps, MultiSelect, type MultiSelectChipRenderer, type MultiSelectProps, NumberedList, type NumberedListProps, type OptionsCardsProps, OverlayLoader, type OverlayLoaderProps, Pagination, type PaginationProps, type PaginationVariant, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, PopoverTrigger, PopoverWithTooltip, type PopoverWithTooltipProps, Radio, type RadioCardOption, MemoizedRadioCardsGroup as RadioCardsGroup, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioOption, type RadioProps, type RadioSize, RadioWithBorder, RatingProgress, type RatingProgressProps, RatingRadioGroup, type RatingRadioGroupProps, RatingStars, type RatingStarsProps, type RegisterUiKitI18nOptions, ResponsiveDropdown, type ResponsiveDropdownOption, type ResponsiveDropdownProps, ResponsiveSheet, type ResponsiveSheetProps, RotateArrow, type RotateArrowProps, ScrollArea, type ScrollAreaProps, ScrollBar, type ScrollBarProps, type ScrollableAreaState, SearchButton, type SearchButtonProps, SearchInput, type SearchInputProps, Section, SectionGroup, type SectionGroupItemProps, type SectionGroupLabelProps, type SectionGroupProps, type SectionProps, SectionTag, SectionTagColors, type SectionTagProps, Select, SelectIconsBox, type SelectIconsBoxProps, type SelectOption, type SelectProps, 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, type SignatureCanvasRef, Skeleton, type SkeletonProps, Slider, 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, Textarea, type TextareaProps, ThreeDotsLoader, type ThreeDotsLoaderProps, TimePicker, type TimePickerFormat, type TimePickerProps, type TimeSettings, 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, type VideoConstraints, VideoModal, type VideoModalProps, VideoPlayer, type VideoPlayerProps, Webcam, type WebcamProps, type WebcamRefTypes, WideButton, type WideButtonProps, addSupportEmailToMessage, badgeVariants, bookmarkTabsListVariants, bookmarkTabsTriggerVariants, buttonGroupVariants, buttonVariants, calendarClassNames, cn, compressFile, compressImage, copyToClipboard, createDisabledMatchers, emptyMediaVariants, formatDate, getErrorMessage, getFileSizeMB, getScrollableAreaState, getSidebarState, isDayBlocked, isNumeric, labelVariants, parseDate, registerUiKitI18n, scrollToTop, sectionTagVariants, switchThumbVariants, switchVariants, tabsListVariants, tabsTriggerVariants, toCssSize, toastResponseError, toggleVariants, uiKitI18nResources, uiKitTranslations, useAbortController, useAccordionState, useCarouselContext, useClickEscape, useCombinedRef, useCopyToClipboard, useCountdown, useDebounce, useDebouncedFunction, useEvent, useHover, useIframeFocusTrapFallback, useIsFormTouched, useIsMobile, useIsMounted, useKeyDown, useLoadMore, useLockBodyScroll, useModalControls, useModalWithHistoryControls, useOutsideClick, usePagination, usePrevious, usePromisedModalControls, useRadioOptions, useResetAfterRequestStatus, useScreenResize, useScrollFrameIntoView, useScrollToTop, useScrollableArea, useSearchInput, useSidebar, useSidebarMenuButton, useSidebarSafe, useStickyStuck, useSwitchSectionActive, useTimeline, useTimeout, useTimeoutRef, useUpdateToast, useValidateDates };
3962
+ export { ALERT_BOX_VARIANTS, Accordion, AccordionContent, type AccordionContentProps, AccordionItem, AccordionTrigger, type AccordionTriggerProps, AirbnbDatePicker, type AirbnbDatePickerProps, type AirbnbDatePickerValue, AirbnbFieldTrigger, type AirbnbFieldTriggerProps, AirbnbInput, type AirbnbInputProps, AirbnbPhoneField, type AirbnbPhoneFieldOption, type AirbnbPhoneFieldProps, type AirbnbPhoneFieldValue, AirbnbSearchInput, AirbnbSearchableSelect, type AirbnbSearchableSelectProps, type AirbnbSearchableSelectValue, AirbnbSelect, type AirbnbSelectProps, Alert, AlertBox, type AlertBoxProps, type AlertBoxVariant, AlertDescription, AlertSize, AlertSizes, AlertTitle, 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, Carousel, CarouselNext, CarouselPrevious, type CarouselProps, CarouselRoot, type CarouselRootProps, CarouselSlide, CarouselTrack, CarouselViewport, CheckList, type CheckListProps, Checkbox, CheckboxDropdownGroup, type CheckboxDropdownGroupConfig, type CheckboxDropdownGroupProps, CheckboxDropdownMultiGroup, CheckboxGroup, type CheckboxGroupProps, type CheckboxOption, type CheckboxProps, type CheckboxSize, CircularLoader, Collapsible, CollapsibleContent, CollapsibleTrigger, CommingSoonBadge, type CommingSoonBadgeProps, ConfirmationDialog, type ConfirmationDialogProps, CopyIcon, type CopyIconProps, CopyLinkButton, type CopyLinkButtonProps, CopyString, type CopyStringProps, Counter, type CounterProps, CounterSize, CreatableMultiSelect, type CreatableMultiSelectProps, CreatableSelect, type CreatableSelectProps, CustomCheckboxDropdownGroup, type CustomIconEntry, DEFAULT_DISPLAY_FORMAT, DEVICE_BREAKPOINTS, DataTable, type DataTableProps, DateRangePicker, type DateRangePickerImperativeProps, type OpenDirection as DateRangePickerOpenDirection, type DateRangePickerProps, DateTableFilter, Datepicker, type DatepickerProps, type DatepickerValue, 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, ExpandableContent, type ExpandableContentProps, type ExpandableContentTrigger, ExternalLink, type ExternalLinkProps, FieldErrorMessage, type FieldErrorMessageProps, FileInput, FileInputButton, type FileInputButtonProps, type FileInputProps, type FileInputValue, 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, InfiniteScrollSelect, type InfiniteScrollSelectProps, InfoBox, type InfoBoxProps, Input, InputOTP, InputOTPGroup, type InputOTPProps, InputOTPSeparator, InputOTPSlot, type InputProps, Label, type LabelProps, LargeModal, type LargeModalProps, LearnMoreButton, type LearnMoreButtonProps, LegacyInfinitySelect, type LegacyInfinitySelectProps, LegacyInput, type LegacyInputProps, LegacyMultiSelect, type LegacyMultiSelectProps, LegacySelect, LegacySelectContent, LegacySelectGroup, LegacySelectItem, LegacySelectLabel, LegacySelectPortal, type LegacySelectProps, LegacySelectRoot, LegacySelectScrollDownButton, LegacySelectScrollUpButton, LegacySelectSeparator, type LegacySelectSize, LegacySelectTrigger, LegacySelectValue, LegacyTextarea, type LegacyTextareaProps, Link, type LinkProps, LoadingBar, type LoadingBarProps, type LucideIconEntry, type MobileCameraProps, type MobileScreenshotPayload, MobileWebcam, Modal, ModalButton, ModalLoader, type ModalLoaderProps, type ModalProps, MultiSelect, type MultiSelectChipRenderer, type MultiSelectProps, NumberedList, type NumberedListProps, type OptionsCardsProps, OverlayLoader, type OverlayLoaderProps, Pagination, type PaginationProps, type PaginationVariant, PhoneInput, type PhoneInputOption, type PhoneInputProps, type PhoneInputValue, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, PopoverTrigger, PopoverWithTooltip, type PopoverWithTooltipProps, Radio, type RadioCardOption, MemoizedRadioCardsGroup as RadioCardsGroup, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioOption, type RadioProps, type RadioSize, RadioWithBorder, RatingProgress, type RatingProgressProps, RatingRadioGroup, type RatingRadioGroupProps, RatingStars, type RatingStarsProps, type RegisterUiKitI18nOptions, ResponsiveDropdown, type ResponsiveDropdownOption, type ResponsiveDropdownProps, ResponsiveSheet, type ResponsiveSheetProps, RotateArrow, type RotateArrowProps, ScrollArea, type ScrollAreaProps, ScrollBar, type ScrollBarProps, type ScrollableAreaState, SearchButton, type SearchButtonProps, SearchInput, type SearchInputProps, SearchableSelect, type SearchableSelectProps, Section, SectionGroup, type SectionGroupItemProps, type SectionGroupLabelProps, type SectionGroupProps, type SectionProps, SectionTag, SectionTagColors, type SectionTagProps, Select, SelectIconsBox, type SelectIconsBoxProps, type SelectOption, type SelectProps, 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, type SignatureCanvasRef, Skeleton, type SkeletonProps, Slider, 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, Textarea, type TextareaProps, ThreeDotsLoader, type ThreeDotsLoaderProps, TimePicker, type TimePickerFormat, type TimePickerProps, type TimeSettings, 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, type VideoConstraints, VideoModal, type VideoModalProps, VideoPlayer, type VideoPlayerProps, Webcam, type WebcamProps, type WebcamRefTypes, WideButton, type WideButtonProps, addSupportEmailToMessage, badgeVariants, bookmarkTabsListVariants, bookmarkTabsTriggerVariants, buttonGroupVariants, buttonVariants, calendarClassNames, clearPhoneNumber, cn, compressFile, compressImage, copyToClipboard, createDisabledMatchers, emptyMediaVariants, findPhoneCode, findPhoneCodeOption, formatDate, formatPhoneCodeOptionLabel, getErrorMessage, getFileSizeMB, getScrollableAreaState, getSidebarState, isDayBlocked, isNumeric, labelVariants, parseDate, parsePhoneValueWithOptions, registerUiKitI18n, scrollToTop, sectionTagVariants, switchThumbVariants, switchVariants, tabsListVariants, tabsTriggerVariants, toCssSize, toastResponseError, toggleVariants, uiKitI18nResources, uiKitTranslations, useAbortController, useAccordionState, useCarouselContext, useClickEscape, useCombinedRef, useCopyToClipboard, useCountdown, useDebounce, useDebouncedFunction, useEvent, useHover, useIframeFocusTrapFallback, useIsFormTouched, useIsMobile, useIsMounted, useKeyDown, useLoadMore, useLockBodyScroll, useModalControls, useModalWithHistoryControls, useOutsideClick, usePagination, usePrevious, usePromisedModalControls, useRadioOptions, useResetAfterRequestStatus, useScreenResize, useScrollFrameIntoView, useScrollToTop, useScrollableArea, useSearchInput, useSidebar, useSidebarMenuButton, useSidebarSafe, useStickyStuck, useSwitchSectionActive, useTimeline, useTimeout, useTimeoutRef, useUpdateToast, useValidateDates };
package/dist/index.d.ts CHANGED
@@ -7,6 +7,7 @@ import * as react_jsx_runtime from 'react/jsx-runtime';
7
7
  import * as AvatarPrimitive from '@radix-ui/react-avatar';
8
8
  import * as TabsPrimitive from '@radix-ui/react-tabs';
9
9
  import { DayPicker, PropsRange, PropsBase, DateRange, Matcher } from 'react-day-picker';
10
+ export { DateRange } from 'react-day-picker';
10
11
  import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
11
12
  import { ColumnDef } from '@tanstack/react-table';
12
13
  import * as DialogPrimitive from '@radix-ui/react-dialog';
@@ -864,6 +865,14 @@ declare const uiKitTranslations: {
864
865
  show_more: string;
865
866
  tap_here_to_sign: string;
866
867
  click_here_to_sign: string;
868
+ prefix: string;
869
+ prefix_required: string;
870
+ reset: string;
871
+ show_password: string;
872
+ hide_password: string;
873
+ increment: string;
874
+ decrement: string;
875
+ create_option: string;
867
876
  };
868
877
  readonly es: {
869
878
  verified: string;
@@ -1320,6 +1329,14 @@ declare const uiKitI18nResources: {
1320
1329
  show_more: string;
1321
1330
  tap_here_to_sign: string;
1322
1331
  click_here_to_sign: string;
1332
+ prefix: string;
1333
+ prefix_required: string;
1334
+ reset: string;
1335
+ show_password: string;
1336
+ hide_password: string;
1337
+ increment: string;
1338
+ decrement: string;
1339
+ create_option: string;
1323
1340
  };
1324
1341
  };
1325
1342
  readonly es: {
@@ -2855,10 +2872,97 @@ declare const Input: React$1.ForwardRefExoticComponent<React$1.InputHTMLAttribut
2855
2872
  renderErrorMessage?: boolean;
2856
2873
  } & React$1.RefAttributes<HTMLInputElement>>;
2857
2874
 
2875
+ type PhoneInputOption = {
2876
+ value: string;
2877
+ label: string;
2878
+ disabled?: boolean;
2879
+ data?: unknown;
2880
+ };
2881
+ type PhoneInputValue = {
2882
+ code: string;
2883
+ number: string;
2884
+ };
2885
+
2886
+ type PhoneInputProps = {
2887
+ options: PhoneInputOption[];
2888
+ value?: PhoneInputValue | null;
2889
+ onChange?: (value: PhoneInputValue, name?: string) => void;
2890
+ onBlur?: React$1.FocusEventHandler<HTMLInputElement>;
2891
+ name?: string;
2892
+ codeName?: string;
2893
+ numberName?: string;
2894
+ label?: string;
2895
+ topLabel?: string;
2896
+ prefixLabel?: string;
2897
+ placeholder?: string;
2898
+ codePlaceholder?: string;
2899
+ disabled?: boolean;
2900
+ loading?: boolean;
2901
+ readOnly?: boolean;
2902
+ codeReadOnly?: boolean;
2903
+ optional?: boolean | string;
2904
+ tooltip?: React$1.ReactNode;
2905
+ error?: string;
2906
+ invalid?: boolean;
2907
+ className?: string;
2908
+ autoDetectCode?: boolean;
2909
+ searchable?: boolean;
2910
+ };
2911
+ declare const PhoneInput: React$1.ForwardRefExoticComponent<PhoneInputProps & React$1.RefAttributes<HTMLInputElement>>;
2912
+
2913
+ declare function clearPhoneNumber(value: string): string;
2914
+ declare function findPhoneCode(value: string, codeSet: Set<string>): string | undefined;
2915
+ declare function parsePhoneValueWithOptions(options: PhoneInputOption[]): (value: string) => PhoneInputValue;
2916
+ declare function findPhoneCodeOption(options: PhoneInputOption[], code: string): PhoneInputOption | undefined;
2917
+ declare function formatPhoneCodeOptionLabel(option: PhoneInputOption): string;
2918
+
2858
2919
  type SelectValue$1 = string | number;
2859
2920
  type SelectFilterOption<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = (option: SelectOption<T, V, L>, input: string) => boolean;
2921
+ type SelectIsOptionDisabled<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = (option: SelectOption<T, V, L>) => boolean;
2922
+ type SelectChangeAction = 'select' | 'deselect' | 'clear' | 'create';
2923
+ type SelectChangeMeta = {
2924
+ action: SelectChangeAction;
2925
+ };
2926
+
2927
+ type SelectProps<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = {
2928
+ options?: SelectOption<T, V, L>[];
2929
+ value?: SelectOption<T, V, L> | null;
2930
+ onChange: (option: SelectOption<T, V, L> | null, meta?: SelectChangeMeta) => void;
2931
+ onBlur?: React$1.FocusEventHandler<HTMLDivElement>;
2932
+ label?: string;
2933
+ topLabel?: string;
2934
+ placeholder?: string;
2935
+ getValueLabel?: (option: SelectOption<T, V, L>) => string;
2936
+ disabled?: boolean;
2937
+ readOnly?: boolean;
2938
+ loading?: boolean;
2939
+ optional?: boolean | string;
2940
+ tooltip?: React$1.ReactNode;
2941
+ error?: string;
2942
+ invalid?: boolean;
2943
+ hideErrorMessage?: boolean;
2944
+ className?: string;
2945
+ menuClassName?: string;
2946
+ dropdownClassName?: string;
2947
+ drawerClassName?: string;
2948
+ name?: string;
2949
+ width?: number | string;
2950
+ noOptionsMessage?: () => string | undefined;
2951
+ filterOption?: SelectFilterOption<T, V, L>;
2952
+ isOptionDisabled?: SelectIsOptionDisabled<T, V, L>;
2953
+ helperText?: string;
2954
+ clearable?: boolean;
2955
+ isCreatable?: boolean;
2956
+ onCreateOption?: (input: string) => SelectOption<T, V, L>;
2957
+ formatCreateLabel?: (input: string) => React$1.ReactNode;
2958
+ isValidNewOption?: (input: string, selected: SelectOption<T, V, L> | null | undefined, options: SelectOption<T, V, L>[]) => boolean;
2959
+ };
2960
+ type SelectComponent = <T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string>(props: SelectProps<T, V, L> & {
2961
+ ref?: React$1.Ref<HTMLDivElement>;
2962
+ }) => React$1.ReactElement;
2963
+ declare const Select: SelectComponent;
2860
2964
 
2861
- type SelectProps<T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string> = {
2965
+ type SearchableSelectProps<T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string> = {
2862
2966
  options?: SelectOption<T, V, L>[];
2863
2967
  value?: SelectOption<T, V, L> | null;
2864
2968
  onChange: (option: SelectOption<T, V, L>) => void;
@@ -2886,16 +2990,21 @@ type SelectProps<T = unknown, V extends SelectValue$1 = string, L extends ReactN
2886
2990
  filterOption?: SelectFilterOption<T, V, L>;
2887
2991
  helperText?: string;
2888
2992
  };
2889
- type SelectComponent = <T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string>(props: SelectProps<T, V, L> & {
2993
+ type SearchableSelectComponent = <T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string>(props: SearchableSelectProps<T, V, L> & {
2890
2994
  ref?: React$1.Ref<HTMLButtonElement>;
2891
2995
  }) => React$1.ReactElement;
2892
- declare const Select: SelectComponent;
2996
+ declare const SearchableSelect: SearchableSelectComponent;
2997
+
2998
+ type CreatableSelectProps<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = Omit<SelectProps<T, V, L>, 'isCreatable'>;
2999
+ declare const CreatableSelect: <T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string>(props: CreatableSelectProps<T, V, L> & {
3000
+ ref?: React$1.Ref<HTMLDivElement>;
3001
+ }) => React$1.ReactElement;
2893
3002
 
2894
3003
  type MultiSelectChipRenderer<T, V extends SelectValue$1, L extends ReactNode> = (option: SelectOption<T, V, L>, onRemove: () => void) => React$1.ReactNode;
2895
3004
  type MultiSelectProps<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = {
2896
3005
  options?: SelectOption<T, V, L>[];
2897
3006
  value?: SelectOption<T, V, L>[] | null;
2898
- onChange: (value: SelectOption<T, V, L>[]) => void;
3007
+ onChange: (value: SelectOption<T, V, L>[], meta?: SelectChangeMeta) => void;
2899
3008
  onBlur?: React$1.FocusEventHandler<HTMLDivElement>;
2900
3009
  label: string;
2901
3010
  topLabel?: string;
@@ -2916,6 +3025,7 @@ type MultiSelectProps<T = undefined, V extends SelectValue$1 = string, L extends
2916
3025
  width?: number | string;
2917
3026
  noOptionsMessage?: () => string | undefined;
2918
3027
  filterOption?: SelectFilterOption<T, V, L>;
3028
+ isOptionDisabled?: SelectIsOptionDisabled<T, V, L>;
2919
3029
  closeMenuOnSelect?: boolean;
2920
3030
  renderChip?: MultiSelectChipRenderer<T, V, L>;
2921
3031
  helperText?: string;
@@ -2924,7 +3034,7 @@ type MultiSelectProps<T = undefined, V extends SelectValue$1 = string, L extends
2924
3034
  formatCreateLabel?: (input: string) => React$1.ReactNode;
2925
3035
  isValidNewOption?: (input: string, selected: SelectOption<T, V, L>[], options: SelectOption<T, V, L>[]) => boolean;
2926
3036
  };
2927
- type MultiSelectComponent = <T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string>(props: MultiSelectProps<T, V, L> & {
3037
+ type MultiSelectComponent = <T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string>(props: MultiSelectProps<T, V, L> & {
2928
3038
  ref?: React$1.Ref<HTMLDivElement>;
2929
3039
  }) => React$1.ReactElement;
2930
3040
  declare const MultiSelect: MultiSelectComponent;
@@ -2937,13 +3047,14 @@ declare const CreatableMultiSelect: <T = undefined, V extends SelectValue$1 = st
2937
3047
  type InfiniteScrollSelectProps<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = {
2938
3048
  options?: SelectOption<T, V, L>[];
2939
3049
  value?: SelectOption<T, V, L> | null;
2940
- onChange: (option: SelectOption<T, V, L>) => void;
2941
- onBlur?: React$1.FocusEventHandler<HTMLButtonElement>;
3050
+ onChange: (option: SelectOption<T, V, L> | null) => void;
3051
+ onBlur?: React$1.FocusEventHandler<HTMLDivElement>;
2942
3052
  label: string;
2943
3053
  topLabel?: string;
2944
3054
  placeholder?: string;
2945
3055
  getValueLabel?: (option: SelectOption<T, V, L>) => string;
2946
3056
  disabled?: boolean;
3057
+ readOnly?: boolean;
2947
3058
  loading?: boolean;
2948
3059
  optional?: boolean | string;
2949
3060
  tooltip?: React$1.ReactNode;
@@ -2957,10 +3068,9 @@ type InfiniteScrollSelectProps<T = undefined, V extends SelectValue$1 = string,
2957
3068
  name?: string;
2958
3069
  width?: number | string;
2959
3070
  noOptionsMessage?: () => string | undefined;
2960
- searchable?: boolean;
2961
- searchPlaceholder?: string;
2962
3071
  filterOption?: SelectFilterOption<T, V, L>;
2963
3072
  helperText?: string;
3073
+ clearable?: boolean;
2964
3074
  canLoadMore?: boolean;
2965
3075
  isLoadingMore?: boolean;
2966
3076
  loadMoreItems?: () => void;
@@ -2972,7 +3082,7 @@ type InfiniteScrollSelectProps<T = undefined, V extends SelectValue$1 = string,
2972
3082
  loadMoreThreshold?: number;
2973
3083
  };
2974
3084
  type InfiniteScrollSelectComponent = <T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string>(props: InfiniteScrollSelectProps<T, V, L> & {
2975
- ref?: React$1.Ref<HTMLButtonElement>;
3085
+ ref?: React$1.Ref<HTMLDivElement>;
2976
3086
  }) => React$1.ReactElement;
2977
3087
  declare const InfiniteScrollSelect: InfiniteScrollSelectComponent;
2978
3088
 
@@ -3170,7 +3280,7 @@ declare const TimePicker: React$1.ForwardRefExoticComponent<Omit<SelectProps<und
3170
3280
  format?: TimePickerFormat;
3171
3281
  timeSettings?: TimeSettings;
3172
3282
  options?: SelectProps<undefined, string, string>["options"];
3173
- } & React$1.RefAttributes<HTMLButtonElement>>;
3283
+ } & React$1.RefAttributes<HTMLDivElement>>;
3174
3284
 
3175
3285
  type FileInputValue = File | string | null;
3176
3286
  type FileInputProps = {
@@ -3414,7 +3524,8 @@ type Props$1 = {
3414
3524
  enabled?: boolean;
3415
3525
  onFinish?: () => void;
3416
3526
  };
3417
- declare const useCountdown: ({ initialTime, enabled, onFinish, }?: Props$1) => {
3527
+ declare const useCountdown: ({ initialTime, enabled, onFinish }?: Props$1) => {
3528
+ count: number;
3418
3529
  timeLeft: number;
3419
3530
  isTimerRunning: boolean;
3420
3531
  resetTimer: () => void;
@@ -3848,4 +3959,4 @@ type AirbnbSearchInputProps = ComponentProps<'input'> & {
3848
3959
  };
3849
3960
  declare const AirbnbSearchInput: React$1.ForwardRefExoticComponent<Omit<AirbnbSearchInputProps, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
3850
3961
 
3851
- export { ALERT_BOX_VARIANTS, Accordion, AccordionContent, type AccordionContentProps, AccordionItem, AccordionTrigger, type AccordionTriggerProps, AirbnbDatePicker, type AirbnbDatePickerProps, type AirbnbDatePickerValue, AirbnbFieldTrigger, type AirbnbFieldTriggerProps, AirbnbInput, type AirbnbInputProps, AirbnbPhoneField, type AirbnbPhoneFieldOption, type AirbnbPhoneFieldProps, type AirbnbPhoneFieldValue, AirbnbSearchInput, AirbnbSearchableSelect, type AirbnbSearchableSelectProps, type AirbnbSearchableSelectValue, AirbnbSelect, type AirbnbSelectProps, Alert, AlertBox, type AlertBoxProps, type AlertBoxVariant, AlertDescription, AlertSize, AlertSizes, AlertTitle, 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, Carousel, CarouselNext, CarouselPrevious, type CarouselProps, CarouselRoot, type CarouselRootProps, CarouselSlide, CarouselTrack, CarouselViewport, CheckList, type CheckListProps, Checkbox, CheckboxDropdownGroup, type CheckboxDropdownGroupConfig, type CheckboxDropdownGroupProps, CheckboxDropdownMultiGroup, CheckboxGroup, type CheckboxGroupProps, type CheckboxOption, type CheckboxProps, type CheckboxSize, CircularLoader, Collapsible, CollapsibleContent, CollapsibleTrigger, CommingSoonBadge, type CommingSoonBadgeProps, ConfirmationDialog, type ConfirmationDialogProps, CopyIcon, type CopyIconProps, CopyLinkButton, type CopyLinkButtonProps, CopyString, type CopyStringProps, Counter, type CounterProps, CounterSize, CreatableMultiSelect, type CreatableMultiSelectProps, CustomCheckboxDropdownGroup, type CustomIconEntry, DEFAULT_DISPLAY_FORMAT, DEVICE_BREAKPOINTS, DataTable, type DataTableProps, DateRangePicker, type DateRangePickerImperativeProps, type OpenDirection as DateRangePickerOpenDirection, type DateRangePickerProps, DateTableFilter, Datepicker, type DatepickerProps, type DatepickerValue, 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, ExpandableContent, type ExpandableContentProps, type ExpandableContentTrigger, ExternalLink, type ExternalLinkProps, FieldErrorMessage, type FieldErrorMessageProps, FileInput, FileInputButton, type FileInputButtonProps, type FileInputProps, type FileInputValue, 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, InfiniteScrollSelect, type InfiniteScrollSelectProps, InfoBox, type InfoBoxProps, Input, InputOTP, InputOTPGroup, type InputOTPProps, InputOTPSeparator, InputOTPSlot, type InputProps, Label, type LabelProps, LargeModal, type LargeModalProps, LearnMoreButton, type LearnMoreButtonProps, LegacyInfinitySelect, type LegacyInfinitySelectProps, LegacyInput, type LegacyInputProps, LegacyMultiSelect, type LegacyMultiSelectProps, LegacySelect, LegacySelectContent, LegacySelectGroup, LegacySelectItem, LegacySelectLabel, LegacySelectPortal, type LegacySelectProps, LegacySelectRoot, LegacySelectScrollDownButton, LegacySelectScrollUpButton, LegacySelectSeparator, type LegacySelectSize, LegacySelectTrigger, LegacySelectValue, LegacyTextarea, type LegacyTextareaProps, Link, type LinkProps, LoadingBar, type LoadingBarProps, type LucideIconEntry, type MobileCameraProps, type MobileScreenshotPayload, MobileWebcam, Modal, ModalButton, ModalLoader, type ModalLoaderProps, type ModalProps, MultiSelect, type MultiSelectChipRenderer, type MultiSelectProps, NumberedList, type NumberedListProps, type OptionsCardsProps, OverlayLoader, type OverlayLoaderProps, Pagination, type PaginationProps, type PaginationVariant, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, PopoverTrigger, PopoverWithTooltip, type PopoverWithTooltipProps, Radio, type RadioCardOption, MemoizedRadioCardsGroup as RadioCardsGroup, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioOption, type RadioProps, type RadioSize, RadioWithBorder, RatingProgress, type RatingProgressProps, RatingRadioGroup, type RatingRadioGroupProps, RatingStars, type RatingStarsProps, type RegisterUiKitI18nOptions, ResponsiveDropdown, type ResponsiveDropdownOption, type ResponsiveDropdownProps, ResponsiveSheet, type ResponsiveSheetProps, RotateArrow, type RotateArrowProps, ScrollArea, type ScrollAreaProps, ScrollBar, type ScrollBarProps, type ScrollableAreaState, SearchButton, type SearchButtonProps, SearchInput, type SearchInputProps, Section, SectionGroup, type SectionGroupItemProps, type SectionGroupLabelProps, type SectionGroupProps, type SectionProps, SectionTag, SectionTagColors, type SectionTagProps, Select, SelectIconsBox, type SelectIconsBoxProps, type SelectOption, type SelectProps, 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, type SignatureCanvasRef, Skeleton, type SkeletonProps, Slider, 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, Textarea, type TextareaProps, ThreeDotsLoader, type ThreeDotsLoaderProps, TimePicker, type TimePickerFormat, type TimePickerProps, type TimeSettings, 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, type VideoConstraints, VideoModal, type VideoModalProps, VideoPlayer, type VideoPlayerProps, Webcam, type WebcamProps, type WebcamRefTypes, WideButton, type WideButtonProps, addSupportEmailToMessage, badgeVariants, bookmarkTabsListVariants, bookmarkTabsTriggerVariants, buttonGroupVariants, buttonVariants, calendarClassNames, cn, compressFile, compressImage, copyToClipboard, createDisabledMatchers, emptyMediaVariants, formatDate, getErrorMessage, getFileSizeMB, getScrollableAreaState, getSidebarState, isDayBlocked, isNumeric, labelVariants, parseDate, registerUiKitI18n, scrollToTop, sectionTagVariants, switchThumbVariants, switchVariants, tabsListVariants, tabsTriggerVariants, toCssSize, toastResponseError, toggleVariants, uiKitI18nResources, uiKitTranslations, useAbortController, useAccordionState, useCarouselContext, useClickEscape, useCombinedRef, useCopyToClipboard, useCountdown, useDebounce, useDebouncedFunction, useEvent, useHover, useIframeFocusTrapFallback, useIsFormTouched, useIsMobile, useIsMounted, useKeyDown, useLoadMore, useLockBodyScroll, useModalControls, useModalWithHistoryControls, useOutsideClick, usePagination, usePrevious, usePromisedModalControls, useRadioOptions, useResetAfterRequestStatus, useScreenResize, useScrollFrameIntoView, useScrollToTop, useScrollableArea, useSearchInput, useSidebar, useSidebarMenuButton, useSidebarSafe, useStickyStuck, useSwitchSectionActive, useTimeline, useTimeout, useTimeoutRef, useUpdateToast, useValidateDates };
3962
+ export { ALERT_BOX_VARIANTS, Accordion, AccordionContent, type AccordionContentProps, AccordionItem, AccordionTrigger, type AccordionTriggerProps, AirbnbDatePicker, type AirbnbDatePickerProps, type AirbnbDatePickerValue, AirbnbFieldTrigger, type AirbnbFieldTriggerProps, AirbnbInput, type AirbnbInputProps, AirbnbPhoneField, type AirbnbPhoneFieldOption, type AirbnbPhoneFieldProps, type AirbnbPhoneFieldValue, AirbnbSearchInput, AirbnbSearchableSelect, type AirbnbSearchableSelectProps, type AirbnbSearchableSelectValue, AirbnbSelect, type AirbnbSelectProps, Alert, AlertBox, type AlertBoxProps, type AlertBoxVariant, AlertDescription, AlertSize, AlertSizes, AlertTitle, 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, Carousel, CarouselNext, CarouselPrevious, type CarouselProps, CarouselRoot, type CarouselRootProps, CarouselSlide, CarouselTrack, CarouselViewport, CheckList, type CheckListProps, Checkbox, CheckboxDropdownGroup, type CheckboxDropdownGroupConfig, type CheckboxDropdownGroupProps, CheckboxDropdownMultiGroup, CheckboxGroup, type CheckboxGroupProps, type CheckboxOption, type CheckboxProps, type CheckboxSize, CircularLoader, Collapsible, CollapsibleContent, CollapsibleTrigger, CommingSoonBadge, type CommingSoonBadgeProps, ConfirmationDialog, type ConfirmationDialogProps, CopyIcon, type CopyIconProps, CopyLinkButton, type CopyLinkButtonProps, CopyString, type CopyStringProps, Counter, type CounterProps, CounterSize, CreatableMultiSelect, type CreatableMultiSelectProps, CreatableSelect, type CreatableSelectProps, CustomCheckboxDropdownGroup, type CustomIconEntry, DEFAULT_DISPLAY_FORMAT, DEVICE_BREAKPOINTS, DataTable, type DataTableProps, DateRangePicker, type DateRangePickerImperativeProps, type OpenDirection as DateRangePickerOpenDirection, type DateRangePickerProps, DateTableFilter, Datepicker, type DatepickerProps, type DatepickerValue, 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, ExpandableContent, type ExpandableContentProps, type ExpandableContentTrigger, ExternalLink, type ExternalLinkProps, FieldErrorMessage, type FieldErrorMessageProps, FileInput, FileInputButton, type FileInputButtonProps, type FileInputProps, type FileInputValue, 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, InfiniteScrollSelect, type InfiniteScrollSelectProps, InfoBox, type InfoBoxProps, Input, InputOTP, InputOTPGroup, type InputOTPProps, InputOTPSeparator, InputOTPSlot, type InputProps, Label, type LabelProps, LargeModal, type LargeModalProps, LearnMoreButton, type LearnMoreButtonProps, LegacyInfinitySelect, type LegacyInfinitySelectProps, LegacyInput, type LegacyInputProps, LegacyMultiSelect, type LegacyMultiSelectProps, LegacySelect, LegacySelectContent, LegacySelectGroup, LegacySelectItem, LegacySelectLabel, LegacySelectPortal, type LegacySelectProps, LegacySelectRoot, LegacySelectScrollDownButton, LegacySelectScrollUpButton, LegacySelectSeparator, type LegacySelectSize, LegacySelectTrigger, LegacySelectValue, LegacyTextarea, type LegacyTextareaProps, Link, type LinkProps, LoadingBar, type LoadingBarProps, type LucideIconEntry, type MobileCameraProps, type MobileScreenshotPayload, MobileWebcam, Modal, ModalButton, ModalLoader, type ModalLoaderProps, type ModalProps, MultiSelect, type MultiSelectChipRenderer, type MultiSelectProps, NumberedList, type NumberedListProps, type OptionsCardsProps, OverlayLoader, type OverlayLoaderProps, Pagination, type PaginationProps, type PaginationVariant, PhoneInput, type PhoneInputOption, type PhoneInputProps, type PhoneInputValue, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, PopoverTrigger, PopoverWithTooltip, type PopoverWithTooltipProps, Radio, type RadioCardOption, MemoizedRadioCardsGroup as RadioCardsGroup, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioOption, type RadioProps, type RadioSize, RadioWithBorder, RatingProgress, type RatingProgressProps, RatingRadioGroup, type RatingRadioGroupProps, RatingStars, type RatingStarsProps, type RegisterUiKitI18nOptions, ResponsiveDropdown, type ResponsiveDropdownOption, type ResponsiveDropdownProps, ResponsiveSheet, type ResponsiveSheetProps, RotateArrow, type RotateArrowProps, ScrollArea, type ScrollAreaProps, ScrollBar, type ScrollBarProps, type ScrollableAreaState, SearchButton, type SearchButtonProps, SearchInput, type SearchInputProps, SearchableSelect, type SearchableSelectProps, Section, SectionGroup, type SectionGroupItemProps, type SectionGroupLabelProps, type SectionGroupProps, type SectionProps, SectionTag, SectionTagColors, type SectionTagProps, Select, SelectIconsBox, type SelectIconsBoxProps, type SelectOption, type SelectProps, 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, type SignatureCanvasRef, Skeleton, type SkeletonProps, Slider, 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, Textarea, type TextareaProps, ThreeDotsLoader, type ThreeDotsLoaderProps, TimePicker, type TimePickerFormat, type TimePickerProps, type TimeSettings, 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, type VideoConstraints, VideoModal, type VideoModalProps, VideoPlayer, type VideoPlayerProps, Webcam, type WebcamProps, type WebcamRefTypes, WideButton, type WideButtonProps, addSupportEmailToMessage, badgeVariants, bookmarkTabsListVariants, bookmarkTabsTriggerVariants, buttonGroupVariants, buttonVariants, calendarClassNames, clearPhoneNumber, cn, compressFile, compressImage, copyToClipboard, createDisabledMatchers, emptyMediaVariants, findPhoneCode, findPhoneCodeOption, formatDate, formatPhoneCodeOptionLabel, getErrorMessage, getFileSizeMB, getScrollableAreaState, getSidebarState, isDayBlocked, isNumeric, labelVariants, parseDate, parsePhoneValueWithOptions, registerUiKitI18n, scrollToTop, sectionTagVariants, switchThumbVariants, switchVariants, tabsListVariants, tabsTriggerVariants, toCssSize, toastResponseError, toggleVariants, uiKitI18nResources, uiKitTranslations, useAbortController, useAccordionState, useCarouselContext, useClickEscape, useCombinedRef, useCopyToClipboard, useCountdown, useDebounce, useDebouncedFunction, useEvent, useHover, useIframeFocusTrapFallback, useIsFormTouched, useIsMobile, useIsMounted, useKeyDown, useLoadMore, useLockBodyScroll, useModalControls, useModalWithHistoryControls, useOutsideClick, usePagination, usePrevious, usePromisedModalControls, useRadioOptions, useResetAfterRequestStatus, useScreenResize, useScrollFrameIntoView, useScrollToTop, useScrollableArea, useSearchInput, useSidebar, useSidebarMenuButton, useSidebarSafe, useStickyStuck, useSwitchSectionActive, useTimeline, useTimeout, useTimeoutRef, useUpdateToast, useValidateDates };