@chekinapp/ui 0.0.107 → 0.0.108

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
@@ -459,7 +459,7 @@ interface BaseCheckboxDropdownGroupProps {
459
459
  keepOpenOnSelect?: boolean;
460
460
  className?: string;
461
461
  }
462
- interface MultiSelectProps extends BaseCheckboxDropdownGroupProps {
462
+ interface MultiSelectProps$1 extends BaseCheckboxDropdownGroupProps {
463
463
  multiple: true;
464
464
  value?: CheckboxOption[] | null;
465
465
  onChange: (selectedValues: CheckboxOption[] | null) => void;
@@ -474,7 +474,7 @@ interface AutoDetectProps extends BaseCheckboxDropdownGroupProps {
474
474
  value?: CheckboxOption | null;
475
475
  onChange: (selectedValues: CheckboxOption | null) => void;
476
476
  }
477
- type CheckboxDropdownGroupProps = MultiSelectProps | SingleSelectProps | AutoDetectProps;
477
+ type CheckboxDropdownGroupProps = MultiSelectProps$1 | SingleSelectProps | AutoDetectProps;
478
478
 
479
479
  declare const CheckboxDropdownGroup: React$1.ForwardRefExoticComponent<CheckboxDropdownGroupProps & React$1.RefAttributes<HTMLDivElement>>;
480
480
 
@@ -2806,7 +2806,7 @@ type ResponsiveDropdownProps = {
2806
2806
  };
2807
2807
  declare function ResponsiveDropdown({ trigger, options, children, side, align, disabled, title, className, dropdownClassName, drawerClassName, }: Readonly<ResponsiveDropdownProps>): react_jsx_runtime.JSX.Element;
2808
2808
 
2809
- type DashboardInputProps = React$1.InputHTMLAttributes<HTMLInputElement> & {
2809
+ type InputProps = React$1.InputHTMLAttributes<HTMLInputElement> & {
2810
2810
  label?: string | React$1.ReactNode;
2811
2811
  topLabel?: string;
2812
2812
  tooltip?: React$1.ReactNode;
@@ -2830,7 +2830,7 @@ type DashboardInputProps = React$1.InputHTMLAttributes<HTMLInputElement> & {
2830
2830
  trailingAdornment?: React$1.ReactNode;
2831
2831
  renderErrorMessage?: boolean;
2832
2832
  };
2833
- declare const DashboardInput: React$1.ForwardRefExoticComponent<React$1.InputHTMLAttributes<HTMLInputElement> & {
2833
+ declare const Input: React$1.ForwardRefExoticComponent<React$1.InputHTMLAttributes<HTMLInputElement> & {
2834
2834
  label?: string | React$1.ReactNode;
2835
2835
  topLabel?: string;
2836
2836
  tooltip?: React$1.ReactNode;
@@ -2856,9 +2856,9 @@ declare const DashboardInput: React$1.ForwardRefExoticComponent<React$1.InputHTM
2856
2856
  } & React$1.RefAttributes<HTMLInputElement>>;
2857
2857
 
2858
2858
  type SelectValue$1 = string | number;
2859
- type DashboardSelectFilterOption<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = (option: SelectOption<T, V, L>, input: string) => boolean;
2859
+ type SelectFilterOption<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = (option: SelectOption<T, V, L>, input: string) => boolean;
2860
2860
 
2861
- type DashboardSelectProps<T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string> = {
2861
+ type SelectProps<T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string> = {
2862
2862
  options?: SelectOption<T, V, L>[];
2863
2863
  value?: SelectOption<T, V, L> | null;
2864
2864
  onChange: (option: SelectOption<T, V, L>) => void;
@@ -2883,16 +2883,16 @@ type DashboardSelectProps<T = unknown, V extends SelectValue$1 = string, L exten
2883
2883
  noOptionsMessage?: () => string | undefined;
2884
2884
  searchable?: boolean;
2885
2885
  searchPlaceholder?: string;
2886
- filterOption?: DashboardSelectFilterOption<T, V, L>;
2886
+ filterOption?: SelectFilterOption<T, V, L>;
2887
2887
  helperText?: string;
2888
2888
  };
2889
- type DashboardSelectComponent = <T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string>(props: DashboardSelectProps<T, V, L> & {
2889
+ type SelectComponent = <T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string>(props: SelectProps<T, V, L> & {
2890
2890
  ref?: React$1.Ref<HTMLButtonElement>;
2891
2891
  }) => React$1.ReactElement;
2892
- declare const DashboardSelect: DashboardSelectComponent;
2892
+ declare const Select: SelectComponent;
2893
2893
 
2894
- type DashboardMultiSelectChipRenderer<T, V extends SelectValue$1, L extends ReactNode> = (option: SelectOption<T, V, L>, onRemove: () => void) => React$1.ReactNode;
2895
- type DashboardMultiSelectProps<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = {
2894
+ type MultiSelectChipRenderer<T, V extends SelectValue$1, L extends ReactNode> = (option: SelectOption<T, V, L>, onRemove: () => void) => React$1.ReactNode;
2895
+ type MultiSelectProps<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = {
2896
2896
  options?: SelectOption<T, V, L>[];
2897
2897
  value?: SelectOption<T, V, L>[] | null;
2898
2898
  onChange: (value: SelectOption<T, V, L>[]) => void;
@@ -2915,26 +2915,26 @@ type DashboardMultiSelectProps<T = undefined, V extends SelectValue$1 = string,
2915
2915
  name?: string;
2916
2916
  width?: number | string;
2917
2917
  noOptionsMessage?: () => string | undefined;
2918
- filterOption?: DashboardSelectFilterOption<T, V, L>;
2918
+ filterOption?: SelectFilterOption<T, V, L>;
2919
2919
  closeMenuOnSelect?: boolean;
2920
- renderChip?: DashboardMultiSelectChipRenderer<T, V, L>;
2920
+ renderChip?: MultiSelectChipRenderer<T, V, L>;
2921
2921
  helperText?: string;
2922
2922
  isCreatable?: boolean;
2923
2923
  onCreateOption?: (input: string) => SelectOption<T, V, L>;
2924
2924
  formatCreateLabel?: (input: string) => React$1.ReactNode;
2925
2925
  isValidNewOption?: (input: string, selected: SelectOption<T, V, L>[], options: SelectOption<T, V, L>[]) => boolean;
2926
2926
  };
2927
- type DashboardMultiSelectComponent = <T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string>(props: DashboardMultiSelectProps<T, V, L> & {
2927
+ type MultiSelectComponent = <T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string>(props: MultiSelectProps<T, V, L> & {
2928
2928
  ref?: React$1.Ref<HTMLDivElement>;
2929
2929
  }) => React$1.ReactElement;
2930
- declare const DashboardMultiSelect: DashboardMultiSelectComponent;
2930
+ declare const MultiSelect: MultiSelectComponent;
2931
2931
 
2932
- type DashboardCreatableMultiSelectProps<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = Omit<DashboardMultiSelectProps<T, V, L>, 'isCreatable'>;
2933
- declare const DashboardCreatableMultiSelect: <T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string>(props: DashboardCreatableMultiSelectProps<T, V, L> & {
2932
+ type CreatableMultiSelectProps<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = Omit<MultiSelectProps<T, V, L>, 'isCreatable'>;
2933
+ declare const CreatableMultiSelect: <T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string>(props: CreatableMultiSelectProps<T, V, L> & {
2934
2934
  ref?: React$1.Ref<HTMLDivElement>;
2935
2935
  }) => React$1.ReactElement;
2936
2936
 
2937
- type DashboardInfiniteScrollSelectProps<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = {
2937
+ type InfiniteScrollSelectProps<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = {
2938
2938
  options?: SelectOption<T, V, L>[];
2939
2939
  value?: SelectOption<T, V, L> | null;
2940
2940
  onChange: (option: SelectOption<T, V, L>) => void;
@@ -2959,7 +2959,7 @@ type DashboardInfiniteScrollSelectProps<T = undefined, V extends SelectValue$1 =
2959
2959
  noOptionsMessage?: () => string | undefined;
2960
2960
  searchable?: boolean;
2961
2961
  searchPlaceholder?: string;
2962
- filterOption?: DashboardSelectFilterOption<T, V, L>;
2962
+ filterOption?: SelectFilterOption<T, V, L>;
2963
2963
  helperText?: string;
2964
2964
  canLoadMore?: boolean;
2965
2965
  isLoadingMore?: boolean;
@@ -2971,12 +2971,12 @@ type DashboardInfiniteScrollSelectProps<T = undefined, V extends SelectValue$1 =
2971
2971
  overscan?: number;
2972
2972
  loadMoreThreshold?: number;
2973
2973
  };
2974
- type DashboardInfiniteScrollSelectComponent = <T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string>(props: DashboardInfiniteScrollSelectProps<T, V, L> & {
2974
+ type InfiniteScrollSelectComponent = <T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string>(props: InfiniteScrollSelectProps<T, V, L> & {
2975
2975
  ref?: React$1.Ref<HTMLButtonElement>;
2976
2976
  }) => React$1.ReactElement;
2977
- declare const DashboardInfiniteScrollSelect: DashboardInfiniteScrollSelectComponent;
2977
+ declare const InfiniteScrollSelect: InfiniteScrollSelectComponent;
2978
2978
 
2979
- type DashboardTextareaProps = Omit<React$1.TextareaHTMLAttributes<HTMLTextAreaElement>, 'name'> & {
2979
+ type TextareaProps = Omit<React$1.TextareaHTMLAttributes<HTMLTextAreaElement>, 'name'> & {
2980
2980
  label?: React$1.ReactNode;
2981
2981
  invalid?: boolean;
2982
2982
  error?: string;
@@ -2992,7 +2992,7 @@ type DashboardTextareaProps = Omit<React$1.TextareaHTMLAttributes<HTMLTextAreaEl
2992
2992
  maxRows?: number;
2993
2993
  autosize?: boolean;
2994
2994
  };
2995
- declare const DashboardTextarea: React$1.ForwardRefExoticComponent<Omit<React$1.TextareaHTMLAttributes<HTMLTextAreaElement>, "name"> & {
2995
+ declare const Textarea: React$1.ForwardRefExoticComponent<Omit<React$1.TextareaHTMLAttributes<HTMLTextAreaElement>, "name"> & {
2996
2996
  label?: React$1.ReactNode;
2997
2997
  invalid?: boolean;
2998
2998
  error?: string;
@@ -3009,12 +3009,12 @@ declare const DashboardTextarea: React$1.ForwardRefExoticComponent<Omit<React$1.
3009
3009
  autosize?: boolean;
3010
3010
  } & React$1.RefAttributes<HTMLTextAreaElement>>;
3011
3011
 
3012
- type DashboardDatepickerValue = Date | null;
3013
- type DashboardDatepickerProps = {
3012
+ type DatepickerValue = Date | null;
3013
+ type DatepickerProps = {
3014
3014
  label?: string;
3015
- value?: DashboardDatepickerValue;
3016
- defaultValue?: DashboardDatepickerValue;
3017
- onChange?: (value: DashboardDatepickerValue, name?: string) => void;
3015
+ value?: DatepickerValue;
3016
+ defaultValue?: DatepickerValue;
3017
+ onChange?: (value: DatepickerValue, name?: string) => void;
3018
3018
  name?: string;
3019
3019
  invalid?: boolean;
3020
3020
  error?: string;
@@ -3039,7 +3039,7 @@ type DashboardDatepickerProps = {
3039
3039
  maxDate?: Date;
3040
3040
  formatValue?: (date: Date) => string;
3041
3041
  };
3042
- declare const DashboardDatepicker: React$1.ForwardRefExoticComponent<DashboardDatepickerProps & React$1.RefAttributes<HTMLInputElement>>;
3042
+ declare const Datepicker: React$1.ForwardRefExoticComponent<DatepickerProps & React$1.RefAttributes<HTMLInputElement>>;
3043
3043
 
3044
3044
  declare const DEFAULT_DISPLAY_FORMAT = "dd-MM-yyyy";
3045
3045
  declare const formatDate: (format?: string) => (date: Date) => string;
@@ -3047,7 +3047,7 @@ declare const parseDate: (displayFormat?: string) => (dateStr: string) => Date |
3047
3047
  type DateInput = Date | string | number;
3048
3048
 
3049
3049
  type OpenDirection = 'up' | 'down';
3050
- type DashboardDateRangePickerProps = Omit<Partial<PropsRange>, 'mode' | 'selected'> & Omit<PropsBase, 'mode' | 'selected' | 'disabled'> & {
3050
+ type DateRangePickerProps = Omit<Partial<PropsRange>, 'mode' | 'selected'> & Omit<PropsBase, 'mode' | 'selected' | 'disabled'> & {
3051
3051
  label?: string;
3052
3052
  value?: DateRange;
3053
3053
  defaultValue?: DateRange;
@@ -3080,13 +3080,13 @@ type DashboardDateRangePickerProps = Omit<Partial<PropsRange>, 'mode' | 'selecte
3080
3080
  openDirection?: OpenDirection;
3081
3081
  autoFocusOnOpen?: boolean;
3082
3082
  };
3083
- type DashboardDateRangePickerImperativeProps = {
3083
+ type DateRangePickerImperativeProps = {
3084
3084
  setDateRange: (dateRange?: DateRange) => void;
3085
3085
  focus: () => void;
3086
3086
  open: () => void;
3087
3087
  close: () => void;
3088
3088
  };
3089
- declare const DashboardDateRangePicker: React$1.ForwardRefExoticComponent<Omit<Partial<PropsRange>, "mode" | "selected"> & Omit<PropsBase, "disabled" | "mode" | "selected"> & {
3089
+ declare const DateRangePicker: React$1.ForwardRefExoticComponent<Omit<Partial<PropsRange>, "mode" | "selected"> & Omit<PropsBase, "disabled" | "mode" | "selected"> & {
3090
3090
  label?: string;
3091
3091
  value?: DateRange;
3092
3092
  defaultValue?: DateRange;
@@ -3118,7 +3118,7 @@ declare const DashboardDateRangePicker: React$1.ForwardRefExoticComponent<Omit<P
3118
3118
  numberOfMonths?: number;
3119
3119
  openDirection?: OpenDirection;
3120
3120
  autoFocusOnOpen?: boolean;
3121
- } & React$1.RefAttributes<DashboardDateRangePickerImperativeProps>>;
3121
+ } & React$1.RefAttributes<DateRangePickerImperativeProps>>;
3122
3122
 
3123
3123
  type IsDayBlockedProps = {
3124
3124
  maxDays?: number;
@@ -3153,29 +3153,29 @@ declare function useValidateDates({ minDays, maxDays, minDate, maxDate, disabled
3153
3153
  validateDates: (dates?: DateRange) => boolean;
3154
3154
  };
3155
3155
 
3156
- type DashboardTimePickerFormat = 'time' | 'timeEach15Minutes' | 'timeEach30Minutes' | 'hours';
3157
- type DashboardTimeSettings = {
3156
+ type TimePickerFormat = 'time' | 'timeEach15Minutes' | 'timeEach30Minutes' | 'hours';
3157
+ type TimeSettings = {
3158
3158
  intervalUnit?: 'M' | 'H';
3159
3159
  interval?: number;
3160
3160
  minTime?: string;
3161
3161
  maxTime?: string;
3162
3162
  addNextDay?: boolean;
3163
3163
  };
3164
- type DashboardTimePickerProps = Omit<DashboardSelectProps<undefined, string, string>, 'options'> & {
3165
- format?: DashboardTimePickerFormat;
3166
- timeSettings?: DashboardTimeSettings;
3167
- options?: DashboardSelectProps<undefined, string, string>['options'];
3164
+ type TimePickerProps = Omit<SelectProps<undefined, string, string>, 'options'> & {
3165
+ format?: TimePickerFormat;
3166
+ timeSettings?: TimeSettings;
3167
+ options?: SelectProps<undefined, string, string>['options'];
3168
3168
  };
3169
- declare const DashboardTimePicker: React$1.ForwardRefExoticComponent<Omit<DashboardSelectProps<undefined, string, string>, "options"> & {
3170
- format?: DashboardTimePickerFormat;
3171
- timeSettings?: DashboardTimeSettings;
3172
- options?: DashboardSelectProps<undefined, string, string>["options"];
3169
+ declare const TimePicker: React$1.ForwardRefExoticComponent<Omit<SelectProps<undefined, string, string>, "options"> & {
3170
+ format?: TimePickerFormat;
3171
+ timeSettings?: TimeSettings;
3172
+ options?: SelectProps<undefined, string, string>["options"];
3173
3173
  } & React$1.RefAttributes<HTMLButtonElement>>;
3174
3174
 
3175
- type DashboardFileInputValue = File | string | null;
3176
- type DashboardFileInputProps = {
3175
+ type FileInputValue = File | string | null;
3176
+ type FileInputProps = {
3177
3177
  label?: string;
3178
- value?: DashboardFileInputValue;
3178
+ value?: FileInputValue;
3179
3179
  onChange?: (value: File | null, event?: React$1.ChangeEvent<HTMLInputElement>) => void;
3180
3180
  onDownload?: (url: string) => void;
3181
3181
  name?: string;
@@ -3196,9 +3196,9 @@ type DashboardFileInputProps = {
3196
3196
  downloadLabel?: string;
3197
3197
  fileNameFromUrl?: (url: string) => string;
3198
3198
  };
3199
- declare const DashboardFileInput: React$1.ForwardRefExoticComponent<DashboardFileInputProps & React$1.RefAttributes<HTMLInputElement>>;
3199
+ declare const FileInput: React$1.ForwardRefExoticComponent<FileInputProps & React$1.RefAttributes<HTMLInputElement>>;
3200
3200
 
3201
- type DashboardSelectIconsBoxProps = {
3201
+ type SelectIconsBoxProps = {
3202
3202
  children: React$1.ReactNode;
3203
3203
  icons: string[];
3204
3204
  renderIcon: (iconName: string, color: string) => React$1.ReactNode;
@@ -3212,7 +3212,7 @@ type DashboardSelectIconsBoxProps = {
3212
3212
  className?: string;
3213
3213
  boxClassName?: string;
3214
3214
  };
3215
- declare function DashboardSelectIconsBox({ children, icons, renderIcon, onSelect, columns, iconsColor, isOpen: controlledOpen, defaultOpen, onOpenChange, position, className, boxClassName, }: DashboardSelectIconsBoxProps): react_jsx_runtime.JSX.Element;
3215
+ declare function SelectIconsBox({ children, icons, renderIcon, onSelect, columns, iconsColor, isOpen: controlledOpen, defaultOpen, onOpenChange, position, className, boxClassName, }: SelectIconsBoxProps): react_jsx_runtime.JSX.Element;
3216
3216
 
3217
3217
  declare function copyToClipboard(value: string | number): void;
3218
3218
 
@@ -3848,4 +3848,4 @@ type AirbnbSearchInputProps = ComponentProps<'input'> & {
3848
3848
  };
3849
3849
  declare const AirbnbSearchInput: React$1.ForwardRefExoticComponent<Omit<AirbnbSearchInputProps, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
3850
3850
 
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, CustomCheckboxDropdownGroup, type CustomIconEntry, DEFAULT_DISPLAY_FORMAT, DEVICE_BREAKPOINTS, DashboardCreatableMultiSelect, type DashboardCreatableMultiSelectProps, DashboardDateRangePicker, type DashboardDateRangePickerImperativeProps, type OpenDirection as DashboardDateRangePickerOpenDirection, type DashboardDateRangePickerProps, DashboardDatepicker, type DashboardDatepickerProps, type DashboardDatepickerValue, DashboardFileInput, type DashboardFileInputProps, type DashboardFileInputValue, DashboardInfiniteScrollSelect, type DashboardInfiniteScrollSelectProps, DashboardInput, type DashboardInputProps, DashboardMultiSelect, type DashboardMultiSelectChipRenderer, type DashboardMultiSelectProps, DashboardSelect, DashboardSelectIconsBox, type DashboardSelectIconsBoxProps, type DashboardSelectProps, DashboardTextarea, type DashboardTextareaProps, DashboardTimePicker, type DashboardTimePickerFormat, type DashboardTimePickerProps, type DashboardTimeSettings, DataTable, type DataTableProps, 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, ExpandableContent, type ExpandableContentProps, type ExpandableContentTrigger, ExternalLink, type ExternalLinkProps, FieldErrorMessage, type FieldErrorMessageProps, 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, InfoBox, type InfoBoxProps, InputOTP, InputOTPGroup, type InputOTPProps, InputOTPSeparator, InputOTPSlot, 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, 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, type SelectOption, 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, 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, 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 };
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 };
package/dist/index.d.ts CHANGED
@@ -459,7 +459,7 @@ interface BaseCheckboxDropdownGroupProps {
459
459
  keepOpenOnSelect?: boolean;
460
460
  className?: string;
461
461
  }
462
- interface MultiSelectProps extends BaseCheckboxDropdownGroupProps {
462
+ interface MultiSelectProps$1 extends BaseCheckboxDropdownGroupProps {
463
463
  multiple: true;
464
464
  value?: CheckboxOption[] | null;
465
465
  onChange: (selectedValues: CheckboxOption[] | null) => void;
@@ -474,7 +474,7 @@ interface AutoDetectProps extends BaseCheckboxDropdownGroupProps {
474
474
  value?: CheckboxOption | null;
475
475
  onChange: (selectedValues: CheckboxOption | null) => void;
476
476
  }
477
- type CheckboxDropdownGroupProps = MultiSelectProps | SingleSelectProps | AutoDetectProps;
477
+ type CheckboxDropdownGroupProps = MultiSelectProps$1 | SingleSelectProps | AutoDetectProps;
478
478
 
479
479
  declare const CheckboxDropdownGroup: React$1.ForwardRefExoticComponent<CheckboxDropdownGroupProps & React$1.RefAttributes<HTMLDivElement>>;
480
480
 
@@ -2806,7 +2806,7 @@ type ResponsiveDropdownProps = {
2806
2806
  };
2807
2807
  declare function ResponsiveDropdown({ trigger, options, children, side, align, disabled, title, className, dropdownClassName, drawerClassName, }: Readonly<ResponsiveDropdownProps>): react_jsx_runtime.JSX.Element;
2808
2808
 
2809
- type DashboardInputProps = React$1.InputHTMLAttributes<HTMLInputElement> & {
2809
+ type InputProps = React$1.InputHTMLAttributes<HTMLInputElement> & {
2810
2810
  label?: string | React$1.ReactNode;
2811
2811
  topLabel?: string;
2812
2812
  tooltip?: React$1.ReactNode;
@@ -2830,7 +2830,7 @@ type DashboardInputProps = React$1.InputHTMLAttributes<HTMLInputElement> & {
2830
2830
  trailingAdornment?: React$1.ReactNode;
2831
2831
  renderErrorMessage?: boolean;
2832
2832
  };
2833
- declare const DashboardInput: React$1.ForwardRefExoticComponent<React$1.InputHTMLAttributes<HTMLInputElement> & {
2833
+ declare const Input: React$1.ForwardRefExoticComponent<React$1.InputHTMLAttributes<HTMLInputElement> & {
2834
2834
  label?: string | React$1.ReactNode;
2835
2835
  topLabel?: string;
2836
2836
  tooltip?: React$1.ReactNode;
@@ -2856,9 +2856,9 @@ declare const DashboardInput: React$1.ForwardRefExoticComponent<React$1.InputHTM
2856
2856
  } & React$1.RefAttributes<HTMLInputElement>>;
2857
2857
 
2858
2858
  type SelectValue$1 = string | number;
2859
- type DashboardSelectFilterOption<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = (option: SelectOption<T, V, L>, input: string) => boolean;
2859
+ type SelectFilterOption<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = (option: SelectOption<T, V, L>, input: string) => boolean;
2860
2860
 
2861
- type DashboardSelectProps<T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string> = {
2861
+ type SelectProps<T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string> = {
2862
2862
  options?: SelectOption<T, V, L>[];
2863
2863
  value?: SelectOption<T, V, L> | null;
2864
2864
  onChange: (option: SelectOption<T, V, L>) => void;
@@ -2883,16 +2883,16 @@ type DashboardSelectProps<T = unknown, V extends SelectValue$1 = string, L exten
2883
2883
  noOptionsMessage?: () => string | undefined;
2884
2884
  searchable?: boolean;
2885
2885
  searchPlaceholder?: string;
2886
- filterOption?: DashboardSelectFilterOption<T, V, L>;
2886
+ filterOption?: SelectFilterOption<T, V, L>;
2887
2887
  helperText?: string;
2888
2888
  };
2889
- type DashboardSelectComponent = <T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string>(props: DashboardSelectProps<T, V, L> & {
2889
+ type SelectComponent = <T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string>(props: SelectProps<T, V, L> & {
2890
2890
  ref?: React$1.Ref<HTMLButtonElement>;
2891
2891
  }) => React$1.ReactElement;
2892
- declare const DashboardSelect: DashboardSelectComponent;
2892
+ declare const Select: SelectComponent;
2893
2893
 
2894
- type DashboardMultiSelectChipRenderer<T, V extends SelectValue$1, L extends ReactNode> = (option: SelectOption<T, V, L>, onRemove: () => void) => React$1.ReactNode;
2895
- type DashboardMultiSelectProps<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = {
2894
+ type MultiSelectChipRenderer<T, V extends SelectValue$1, L extends ReactNode> = (option: SelectOption<T, V, L>, onRemove: () => void) => React$1.ReactNode;
2895
+ type MultiSelectProps<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = {
2896
2896
  options?: SelectOption<T, V, L>[];
2897
2897
  value?: SelectOption<T, V, L>[] | null;
2898
2898
  onChange: (value: SelectOption<T, V, L>[]) => void;
@@ -2915,26 +2915,26 @@ type DashboardMultiSelectProps<T = undefined, V extends SelectValue$1 = string,
2915
2915
  name?: string;
2916
2916
  width?: number | string;
2917
2917
  noOptionsMessage?: () => string | undefined;
2918
- filterOption?: DashboardSelectFilterOption<T, V, L>;
2918
+ filterOption?: SelectFilterOption<T, V, L>;
2919
2919
  closeMenuOnSelect?: boolean;
2920
- renderChip?: DashboardMultiSelectChipRenderer<T, V, L>;
2920
+ renderChip?: MultiSelectChipRenderer<T, V, L>;
2921
2921
  helperText?: string;
2922
2922
  isCreatable?: boolean;
2923
2923
  onCreateOption?: (input: string) => SelectOption<T, V, L>;
2924
2924
  formatCreateLabel?: (input: string) => React$1.ReactNode;
2925
2925
  isValidNewOption?: (input: string, selected: SelectOption<T, V, L>[], options: SelectOption<T, V, L>[]) => boolean;
2926
2926
  };
2927
- type DashboardMultiSelectComponent = <T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string>(props: DashboardMultiSelectProps<T, V, L> & {
2927
+ type MultiSelectComponent = <T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string>(props: MultiSelectProps<T, V, L> & {
2928
2928
  ref?: React$1.Ref<HTMLDivElement>;
2929
2929
  }) => React$1.ReactElement;
2930
- declare const DashboardMultiSelect: DashboardMultiSelectComponent;
2930
+ declare const MultiSelect: MultiSelectComponent;
2931
2931
 
2932
- type DashboardCreatableMultiSelectProps<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = Omit<DashboardMultiSelectProps<T, V, L>, 'isCreatable'>;
2933
- declare const DashboardCreatableMultiSelect: <T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string>(props: DashboardCreatableMultiSelectProps<T, V, L> & {
2932
+ type CreatableMultiSelectProps<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = Omit<MultiSelectProps<T, V, L>, 'isCreatable'>;
2933
+ declare const CreatableMultiSelect: <T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string>(props: CreatableMultiSelectProps<T, V, L> & {
2934
2934
  ref?: React$1.Ref<HTMLDivElement>;
2935
2935
  }) => React$1.ReactElement;
2936
2936
 
2937
- type DashboardInfiniteScrollSelectProps<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = {
2937
+ type InfiniteScrollSelectProps<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = {
2938
2938
  options?: SelectOption<T, V, L>[];
2939
2939
  value?: SelectOption<T, V, L> | null;
2940
2940
  onChange: (option: SelectOption<T, V, L>) => void;
@@ -2959,7 +2959,7 @@ type DashboardInfiniteScrollSelectProps<T = undefined, V extends SelectValue$1 =
2959
2959
  noOptionsMessage?: () => string | undefined;
2960
2960
  searchable?: boolean;
2961
2961
  searchPlaceholder?: string;
2962
- filterOption?: DashboardSelectFilterOption<T, V, L>;
2962
+ filterOption?: SelectFilterOption<T, V, L>;
2963
2963
  helperText?: string;
2964
2964
  canLoadMore?: boolean;
2965
2965
  isLoadingMore?: boolean;
@@ -2971,12 +2971,12 @@ type DashboardInfiniteScrollSelectProps<T = undefined, V extends SelectValue$1 =
2971
2971
  overscan?: number;
2972
2972
  loadMoreThreshold?: number;
2973
2973
  };
2974
- type DashboardInfiniteScrollSelectComponent = <T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string>(props: DashboardInfiniteScrollSelectProps<T, V, L> & {
2974
+ type InfiniteScrollSelectComponent = <T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string>(props: InfiniteScrollSelectProps<T, V, L> & {
2975
2975
  ref?: React$1.Ref<HTMLButtonElement>;
2976
2976
  }) => React$1.ReactElement;
2977
- declare const DashboardInfiniteScrollSelect: DashboardInfiniteScrollSelectComponent;
2977
+ declare const InfiniteScrollSelect: InfiniteScrollSelectComponent;
2978
2978
 
2979
- type DashboardTextareaProps = Omit<React$1.TextareaHTMLAttributes<HTMLTextAreaElement>, 'name'> & {
2979
+ type TextareaProps = Omit<React$1.TextareaHTMLAttributes<HTMLTextAreaElement>, 'name'> & {
2980
2980
  label?: React$1.ReactNode;
2981
2981
  invalid?: boolean;
2982
2982
  error?: string;
@@ -2992,7 +2992,7 @@ type DashboardTextareaProps = Omit<React$1.TextareaHTMLAttributes<HTMLTextAreaEl
2992
2992
  maxRows?: number;
2993
2993
  autosize?: boolean;
2994
2994
  };
2995
- declare const DashboardTextarea: React$1.ForwardRefExoticComponent<Omit<React$1.TextareaHTMLAttributes<HTMLTextAreaElement>, "name"> & {
2995
+ declare const Textarea: React$1.ForwardRefExoticComponent<Omit<React$1.TextareaHTMLAttributes<HTMLTextAreaElement>, "name"> & {
2996
2996
  label?: React$1.ReactNode;
2997
2997
  invalid?: boolean;
2998
2998
  error?: string;
@@ -3009,12 +3009,12 @@ declare const DashboardTextarea: React$1.ForwardRefExoticComponent<Omit<React$1.
3009
3009
  autosize?: boolean;
3010
3010
  } & React$1.RefAttributes<HTMLTextAreaElement>>;
3011
3011
 
3012
- type DashboardDatepickerValue = Date | null;
3013
- type DashboardDatepickerProps = {
3012
+ type DatepickerValue = Date | null;
3013
+ type DatepickerProps = {
3014
3014
  label?: string;
3015
- value?: DashboardDatepickerValue;
3016
- defaultValue?: DashboardDatepickerValue;
3017
- onChange?: (value: DashboardDatepickerValue, name?: string) => void;
3015
+ value?: DatepickerValue;
3016
+ defaultValue?: DatepickerValue;
3017
+ onChange?: (value: DatepickerValue, name?: string) => void;
3018
3018
  name?: string;
3019
3019
  invalid?: boolean;
3020
3020
  error?: string;
@@ -3039,7 +3039,7 @@ type DashboardDatepickerProps = {
3039
3039
  maxDate?: Date;
3040
3040
  formatValue?: (date: Date) => string;
3041
3041
  };
3042
- declare const DashboardDatepicker: React$1.ForwardRefExoticComponent<DashboardDatepickerProps & React$1.RefAttributes<HTMLInputElement>>;
3042
+ declare const Datepicker: React$1.ForwardRefExoticComponent<DatepickerProps & React$1.RefAttributes<HTMLInputElement>>;
3043
3043
 
3044
3044
  declare const DEFAULT_DISPLAY_FORMAT = "dd-MM-yyyy";
3045
3045
  declare const formatDate: (format?: string) => (date: Date) => string;
@@ -3047,7 +3047,7 @@ declare const parseDate: (displayFormat?: string) => (dateStr: string) => Date |
3047
3047
  type DateInput = Date | string | number;
3048
3048
 
3049
3049
  type OpenDirection = 'up' | 'down';
3050
- type DashboardDateRangePickerProps = Omit<Partial<PropsRange>, 'mode' | 'selected'> & Omit<PropsBase, 'mode' | 'selected' | 'disabled'> & {
3050
+ type DateRangePickerProps = Omit<Partial<PropsRange>, 'mode' | 'selected'> & Omit<PropsBase, 'mode' | 'selected' | 'disabled'> & {
3051
3051
  label?: string;
3052
3052
  value?: DateRange;
3053
3053
  defaultValue?: DateRange;
@@ -3080,13 +3080,13 @@ type DashboardDateRangePickerProps = Omit<Partial<PropsRange>, 'mode' | 'selecte
3080
3080
  openDirection?: OpenDirection;
3081
3081
  autoFocusOnOpen?: boolean;
3082
3082
  };
3083
- type DashboardDateRangePickerImperativeProps = {
3083
+ type DateRangePickerImperativeProps = {
3084
3084
  setDateRange: (dateRange?: DateRange) => void;
3085
3085
  focus: () => void;
3086
3086
  open: () => void;
3087
3087
  close: () => void;
3088
3088
  };
3089
- declare const DashboardDateRangePicker: React$1.ForwardRefExoticComponent<Omit<Partial<PropsRange>, "mode" | "selected"> & Omit<PropsBase, "disabled" | "mode" | "selected"> & {
3089
+ declare const DateRangePicker: React$1.ForwardRefExoticComponent<Omit<Partial<PropsRange>, "mode" | "selected"> & Omit<PropsBase, "disabled" | "mode" | "selected"> & {
3090
3090
  label?: string;
3091
3091
  value?: DateRange;
3092
3092
  defaultValue?: DateRange;
@@ -3118,7 +3118,7 @@ declare const DashboardDateRangePicker: React$1.ForwardRefExoticComponent<Omit<P
3118
3118
  numberOfMonths?: number;
3119
3119
  openDirection?: OpenDirection;
3120
3120
  autoFocusOnOpen?: boolean;
3121
- } & React$1.RefAttributes<DashboardDateRangePickerImperativeProps>>;
3121
+ } & React$1.RefAttributes<DateRangePickerImperativeProps>>;
3122
3122
 
3123
3123
  type IsDayBlockedProps = {
3124
3124
  maxDays?: number;
@@ -3153,29 +3153,29 @@ declare function useValidateDates({ minDays, maxDays, minDate, maxDate, disabled
3153
3153
  validateDates: (dates?: DateRange) => boolean;
3154
3154
  };
3155
3155
 
3156
- type DashboardTimePickerFormat = 'time' | 'timeEach15Minutes' | 'timeEach30Minutes' | 'hours';
3157
- type DashboardTimeSettings = {
3156
+ type TimePickerFormat = 'time' | 'timeEach15Minutes' | 'timeEach30Minutes' | 'hours';
3157
+ type TimeSettings = {
3158
3158
  intervalUnit?: 'M' | 'H';
3159
3159
  interval?: number;
3160
3160
  minTime?: string;
3161
3161
  maxTime?: string;
3162
3162
  addNextDay?: boolean;
3163
3163
  };
3164
- type DashboardTimePickerProps = Omit<DashboardSelectProps<undefined, string, string>, 'options'> & {
3165
- format?: DashboardTimePickerFormat;
3166
- timeSettings?: DashboardTimeSettings;
3167
- options?: DashboardSelectProps<undefined, string, string>['options'];
3164
+ type TimePickerProps = Omit<SelectProps<undefined, string, string>, 'options'> & {
3165
+ format?: TimePickerFormat;
3166
+ timeSettings?: TimeSettings;
3167
+ options?: SelectProps<undefined, string, string>['options'];
3168
3168
  };
3169
- declare const DashboardTimePicker: React$1.ForwardRefExoticComponent<Omit<DashboardSelectProps<undefined, string, string>, "options"> & {
3170
- format?: DashboardTimePickerFormat;
3171
- timeSettings?: DashboardTimeSettings;
3172
- options?: DashboardSelectProps<undefined, string, string>["options"];
3169
+ declare const TimePicker: React$1.ForwardRefExoticComponent<Omit<SelectProps<undefined, string, string>, "options"> & {
3170
+ format?: TimePickerFormat;
3171
+ timeSettings?: TimeSettings;
3172
+ options?: SelectProps<undefined, string, string>["options"];
3173
3173
  } & React$1.RefAttributes<HTMLButtonElement>>;
3174
3174
 
3175
- type DashboardFileInputValue = File | string | null;
3176
- type DashboardFileInputProps = {
3175
+ type FileInputValue = File | string | null;
3176
+ type FileInputProps = {
3177
3177
  label?: string;
3178
- value?: DashboardFileInputValue;
3178
+ value?: FileInputValue;
3179
3179
  onChange?: (value: File | null, event?: React$1.ChangeEvent<HTMLInputElement>) => void;
3180
3180
  onDownload?: (url: string) => void;
3181
3181
  name?: string;
@@ -3196,9 +3196,9 @@ type DashboardFileInputProps = {
3196
3196
  downloadLabel?: string;
3197
3197
  fileNameFromUrl?: (url: string) => string;
3198
3198
  };
3199
- declare const DashboardFileInput: React$1.ForwardRefExoticComponent<DashboardFileInputProps & React$1.RefAttributes<HTMLInputElement>>;
3199
+ declare const FileInput: React$1.ForwardRefExoticComponent<FileInputProps & React$1.RefAttributes<HTMLInputElement>>;
3200
3200
 
3201
- type DashboardSelectIconsBoxProps = {
3201
+ type SelectIconsBoxProps = {
3202
3202
  children: React$1.ReactNode;
3203
3203
  icons: string[];
3204
3204
  renderIcon: (iconName: string, color: string) => React$1.ReactNode;
@@ -3212,7 +3212,7 @@ type DashboardSelectIconsBoxProps = {
3212
3212
  className?: string;
3213
3213
  boxClassName?: string;
3214
3214
  };
3215
- declare function DashboardSelectIconsBox({ children, icons, renderIcon, onSelect, columns, iconsColor, isOpen: controlledOpen, defaultOpen, onOpenChange, position, className, boxClassName, }: DashboardSelectIconsBoxProps): react_jsx_runtime.JSX.Element;
3215
+ declare function SelectIconsBox({ children, icons, renderIcon, onSelect, columns, iconsColor, isOpen: controlledOpen, defaultOpen, onOpenChange, position, className, boxClassName, }: SelectIconsBoxProps): react_jsx_runtime.JSX.Element;
3216
3216
 
3217
3217
  declare function copyToClipboard(value: string | number): void;
3218
3218
 
@@ -3848,4 +3848,4 @@ type AirbnbSearchInputProps = ComponentProps<'input'> & {
3848
3848
  };
3849
3849
  declare const AirbnbSearchInput: React$1.ForwardRefExoticComponent<Omit<AirbnbSearchInputProps, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
3850
3850
 
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, CustomCheckboxDropdownGroup, type CustomIconEntry, DEFAULT_DISPLAY_FORMAT, DEVICE_BREAKPOINTS, DashboardCreatableMultiSelect, type DashboardCreatableMultiSelectProps, DashboardDateRangePicker, type DashboardDateRangePickerImperativeProps, type OpenDirection as DashboardDateRangePickerOpenDirection, type DashboardDateRangePickerProps, DashboardDatepicker, type DashboardDatepickerProps, type DashboardDatepickerValue, DashboardFileInput, type DashboardFileInputProps, type DashboardFileInputValue, DashboardInfiniteScrollSelect, type DashboardInfiniteScrollSelectProps, DashboardInput, type DashboardInputProps, DashboardMultiSelect, type DashboardMultiSelectChipRenderer, type DashboardMultiSelectProps, DashboardSelect, DashboardSelectIconsBox, type DashboardSelectIconsBoxProps, type DashboardSelectProps, DashboardTextarea, type DashboardTextareaProps, DashboardTimePicker, type DashboardTimePickerFormat, type DashboardTimePickerProps, type DashboardTimeSettings, DataTable, type DataTableProps, 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, ExpandableContent, type ExpandableContentProps, type ExpandableContentTrigger, ExternalLink, type ExternalLinkProps, FieldErrorMessage, type FieldErrorMessageProps, 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, InfoBox, type InfoBoxProps, InputOTP, InputOTPGroup, type InputOTPProps, InputOTPSeparator, InputOTPSlot, 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, 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, type SelectOption, 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, 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, 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 };
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 };