@chekinapp/ui 0.0.110 → 0.0.113

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.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import * as React$1 from 'react';
2
- import React__default, { ReactNode, ElementType, HTMLAttributes, ComponentProps, ReactElement, InputHTMLAttributes, PropsWithChildren, MouseEvent, SVGProps, ComponentType, ImgHTMLAttributes, AnchorHTMLAttributes, FC, ButtonHTMLAttributes, TdHTMLAttributes, ThHTMLAttributes, MouseEventHandler, ComponentPropsWithoutRef, ForwardedRef, Ref, RefCallback, RefObject, ChangeEvent, TextareaHTMLAttributes, FocusEventHandler } from 'react';
2
+ import React__default, { ReactNode, ElementType, HTMLAttributes, ComponentProps, ReactElement, InputHTMLAttributes, PropsWithChildren, MouseEvent, SVGProps, ComponentType, ImgHTMLAttributes, AnchorHTMLAttributes, FC, ButtonHTMLAttributes, TdHTMLAttributes, ThHTMLAttributes, MouseEventHandler, ComponentPropsWithoutRef, ForwardedRef, Ref, ChangeEventHandler, FocusEventHandler, KeyboardEventHandler, RefObject, RefCallback, ChangeEvent, TextareaHTMLAttributes } from 'react';
3
3
  import * as AccordionPrimitive from '@radix-ui/react-accordion';
4
4
  import * as class_variance_authority_types from 'class-variance-authority/types';
5
5
  import { VariantProps } from 'class-variance-authority';
@@ -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';
@@ -464,7 +465,7 @@ interface MultiSelectProps$1 extends BaseCheckboxDropdownGroupProps {
464
465
  value?: CheckboxOption[] | null;
465
466
  onChange: (selectedValues: CheckboxOption[] | null) => void;
466
467
  }
467
- interface SingleSelectProps extends BaseCheckboxDropdownGroupProps {
468
+ interface SingleSelectProps$1 extends BaseCheckboxDropdownGroupProps {
468
469
  multiple: false;
469
470
  value?: CheckboxOption | null;
470
471
  onChange: (selectedValues: CheckboxOption | null) => void;
@@ -474,7 +475,7 @@ interface AutoDetectProps extends BaseCheckboxDropdownGroupProps {
474
475
  value?: CheckboxOption | null;
475
476
  onChange: (selectedValues: CheckboxOption | null) => void;
476
477
  }
477
- type CheckboxDropdownGroupProps = MultiSelectProps$1 | SingleSelectProps | AutoDetectProps;
478
+ type CheckboxDropdownGroupProps = MultiSelectProps$1 | SingleSelectProps$1 | AutoDetectProps;
478
479
 
479
480
  declare const CheckboxDropdownGroup: React$1.ForwardRefExoticComponent<CheckboxDropdownGroupProps & React$1.RefAttributes<HTMLDivElement>>;
480
481
 
@@ -814,6 +815,7 @@ declare const uiKitTranslations: {
814
815
  dont_save: string;
815
816
  copied_exclamation: string;
816
817
  search_placeholder: string;
818
+ type_to_search: string;
817
819
  loading_more: string;
818
820
  no_options: string;
819
821
  select_option: string;
@@ -1278,6 +1280,7 @@ declare const uiKitI18nResources: {
1278
1280
  dont_save: string;
1279
1281
  copied_exclamation: string;
1280
1282
  search_placeholder: string;
1283
+ type_to_search: string;
1281
1284
  loading_more: string;
1282
1285
  no_options: string;
1283
1286
  select_option: string;
@@ -2917,13 +2920,117 @@ declare function formatPhoneCodeOptionLabel(option: PhoneInputOption): string;
2917
2920
 
2918
2921
  type SelectValue$1 = string | number;
2919
2922
  type SelectFilterOption<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = (option: SelectOption<T, V, L>, input: string) => boolean;
2923
+ type SelectIsOptionDisabled<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = (option: SelectOption<T, V, L>) => boolean;
2924
+ type SelectChangeAction = 'select' | 'deselect' | 'clear' | 'create';
2925
+ type SelectChangeMeta = {
2926
+ action: SelectChangeAction;
2927
+ };
2928
+ type SelectFormatOptionLabelContext = 'menu' | 'value';
2929
+ type SelectFormatOptionLabelMeta<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = {
2930
+ context: SelectFormatOptionLabelContext;
2931
+ inputValue: string;
2932
+ selectValue: SelectOption<T, V, L>[];
2933
+ };
2934
+ type SelectFormatOptionLabel<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = (option: SelectOption<T, V, L>, meta: SelectFormatOptionLabelMeta<T, V, L>) => ReactNode;
2935
+ type SelectIsOptionSelected<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = (option: SelectOption<T, V, L>, selectValue: SelectOption<T, V, L>[]) => boolean;
2936
+
2937
+ type ControlProps<T, V extends SelectValue$1, L extends ReactNode> = {
2938
+ triggerId: string;
2939
+ listboxId: string;
2940
+ labelId: string;
2941
+ valueId: string;
2942
+ describedErrorId?: string;
2943
+ getOptionId: (index: number) => string;
2944
+ inputRef: Ref<HTMLInputElement>;
2945
+ inputValue: string;
2946
+ placeholder?: string;
2947
+ isMulti: boolean;
2948
+ isOpen: boolean;
2949
+ isFocused: boolean;
2950
+ isBlocked: boolean;
2951
+ hasValue: boolean;
2952
+ isEmpty: boolean;
2953
+ invalid: boolean;
2954
+ loading?: boolean;
2955
+ disabled?: boolean;
2956
+ readOnly?: boolean;
2957
+ highlightedIndex: number;
2958
+ selectedOptions: SelectOption<T, V, L>[];
2959
+ valueLabel: string;
2960
+ onInputChange: ChangeEventHandler<HTMLInputElement>;
2961
+ onInputFocus: FocusEventHandler<HTMLInputElement>;
2962
+ onInputKeyDown: KeyboardEventHandler<HTMLInputElement>;
2963
+ onContainerClick: () => void;
2964
+ onClear: (event: MouseEvent) => void;
2965
+ onRemoveOption: (option: SelectOption<T, V, L>) => void;
2966
+ clearable?: boolean;
2967
+ clearLabel?: string;
2968
+ hideIndicator?: boolean;
2969
+ autoFocus?: boolean;
2970
+ components: SelectComponents<T, V, L>;
2971
+ };
2972
+ type MenuListProps<T, V extends SelectValue$1, L extends ReactNode> = {
2973
+ id: string;
2974
+ labelledBy: string;
2975
+ describedBy?: string;
2976
+ getOptionId: (index: number) => string;
2977
+ options: SelectOption<T, V, L>[];
2978
+ selectedOptions: SelectOption<T, V, L>[];
2979
+ isMulti: boolean;
2980
+ highlightedIndex: number;
2981
+ onOptionHover: (index: number) => void;
2982
+ onOptionClick: (option: SelectOption<T, V, L>) => void;
2983
+ disabled?: boolean;
2984
+ isOptionDisabled?: SelectIsOptionDisabled<T, V, L>;
2985
+ listRef?: RefObject<HTMLDivElement>;
2986
+ registerOptionRef: (index: number, node: HTMLButtonElement | null) => void;
2987
+ menuClassName?: string;
2988
+ noOptionsMessage?: () => string | undefined;
2989
+ emptyContent?: ReactNode;
2990
+ footer?: ReactNode;
2991
+ inputValue?: string;
2992
+ formatOptionLabel?: SelectFormatOptionLabel<T, V, L>;
2993
+ isOptionSelected?: SelectIsOptionSelected<T, V, L>;
2994
+ components: SelectComponents<T, V, L>;
2995
+ };
2996
+ type OptionProps<T, V extends SelectValue$1, L extends ReactNode> = {
2997
+ option: SelectOption<T, V, L>;
2998
+ index: number;
2999
+ isSelected: boolean;
3000
+ isHighlighted: boolean;
3001
+ isDisabled: boolean;
3002
+ isLast: boolean;
3003
+ isMulti: boolean;
3004
+ id: string;
3005
+ onClick: (option: SelectOption<T, V, L>) => void;
3006
+ onHover: (index: number) => void;
3007
+ innerRef: (node: HTMLButtonElement | null) => void;
3008
+ inputValue?: string;
3009
+ selectedOptions?: SelectOption<T, V, L>[];
3010
+ formatOptionLabel?: SelectFormatOptionLabel<T, V, L>;
3011
+ };
3012
+ type MultiValueChipProps<T, V extends SelectValue$1, L extends ReactNode> = {
3013
+ option: SelectOption<T, V, L>;
3014
+ readOnly?: boolean;
3015
+ onRemove: () => void;
3016
+ };
3017
+ type CreateOptionProps = {
3018
+ inputValue: string;
3019
+ onCreate: () => void;
3020
+ formatCreateLabel?: (input: string) => ReactNode;
3021
+ };
3022
+ type SelectComponents<T = unknown, V extends SelectValue$1 = SelectValue$1, L extends ReactNode = ReactNode> = {
3023
+ Control?: ComponentType<ControlProps<T, V, L>>;
3024
+ MenuList?: ComponentType<MenuListProps<T, V, L>>;
3025
+ Option?: ComponentType<OptionProps<T, V, L>>;
3026
+ MultiValueChip?: ComponentType<MultiValueChipProps<T, V, L>>;
3027
+ CreateOption?: ComponentType<CreateOptionProps>;
3028
+ };
2920
3029
 
2921
- type SelectProps<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = {
3030
+ type BaseSelectProps<T, V extends SelectValue$1, L extends ReactNode> = {
2922
3031
  options?: SelectOption<T, V, L>[];
2923
- value?: SelectOption<T, V, L> | null;
2924
- onChange: (option: SelectOption<T, V, L> | null) => void;
2925
3032
  onBlur?: React$1.FocusEventHandler<HTMLDivElement>;
2926
- label: string;
3033
+ label?: string;
2927
3034
  topLabel?: string;
2928
3035
  placeholder?: string;
2929
3036
  getValueLabel?: (option: SelectOption<T, V, L>) => string;
@@ -2943,126 +3050,85 @@ type SelectProps<T = undefined, V extends SelectValue$1 = string, L extends Reac
2943
3050
  width?: number | string;
2944
3051
  noOptionsMessage?: () => string | undefined;
2945
3052
  filterOption?: SelectFilterOption<T, V, L>;
3053
+ isOptionDisabled?: SelectIsOptionDisabled<T, V, L>;
3054
+ isOptionSelected?: SelectIsOptionSelected<T, V, L>;
3055
+ formatOptionLabel?: SelectFormatOptionLabel<T, V, L>;
2946
3056
  helperText?: string;
2947
- clearable?: boolean;
2948
3057
  isCreatable?: boolean;
2949
3058
  onCreateOption?: (input: string) => SelectOption<T, V, L>;
2950
3059
  formatCreateLabel?: (input: string) => React$1.ReactNode;
2951
- isValidNewOption?: (input: string, selected: SelectOption<T, V, L> | null | undefined, options: SelectOption<T, V, L>[]) => boolean;
3060
+ isValidNewOption?: (input: string, selectedOptions: SelectOption<T, V, L>[], options: SelectOption<T, V, L>[]) => boolean;
3061
+ menuIsOpen?: boolean;
3062
+ onMenuOpenChange?: (open: boolean) => void;
3063
+ autoFocus?: boolean;
3064
+ onKeyDown?: React$1.KeyboardEventHandler<HTMLInputElement>;
3065
+ hideIndicator?: boolean;
3066
+ openMenuOnFocus?: boolean;
3067
+ components?: SelectComponents<T, V, L>;
3068
+ onInputChange?: (value: string) => void;
3069
+ searchPosition?: 'trigger' | 'dropdown';
3070
+ menuHeader?: React$1.ReactNode;
3071
+ };
3072
+ type SingleSelectProps<T, V extends SelectValue$1, L extends ReactNode> = BaseSelectProps<T, V, L> & {
3073
+ isMulti?: false;
3074
+ value?: SelectOption<T, V, L> | null;
3075
+ onChange: (option: SelectOption<T, V, L> | null, meta?: SelectChangeMeta) => void;
3076
+ clearable?: boolean;
2952
3077
  };
3078
+ type MultiSelectModeProps<T, V extends SelectValue$1, L extends ReactNode> = BaseSelectProps<T, V, L> & {
3079
+ isMulti: true;
3080
+ value?: SelectOption<T, V, L>[] | null;
3081
+ onChange: (value: SelectOption<T, V, L>[], meta?: SelectChangeMeta) => void;
3082
+ closeMenuOnSelect?: boolean;
3083
+ };
3084
+ type SelectProps<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = SingleSelectProps<T, V, L> | MultiSelectModeProps<T, V, L>;
2953
3085
  type SelectComponent = <T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string>(props: SelectProps<T, V, L> & {
2954
3086
  ref?: React$1.Ref<HTMLDivElement>;
2955
3087
  }) => React$1.ReactElement;
2956
3088
  declare const Select: SelectComponent;
2957
3089
 
2958
- type SearchableSelectProps<T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string> = {
2959
- options?: SelectOption<T, V, L>[];
2960
- value?: SelectOption<T, V, L> | null;
2961
- onChange: (option: SelectOption<T, V, L>) => void;
2962
- onBlur?: React$1.FocusEventHandler<HTMLButtonElement>;
2963
- label: string;
2964
- topLabel?: string;
2965
- placeholder?: string;
2966
- getValueLabel?: (option: SelectOption<T, V, L>) => string;
2967
- disabled?: boolean;
2968
- loading?: boolean;
2969
- optional?: boolean | string;
2970
- tooltip?: React$1.ReactNode;
2971
- error?: string;
2972
- invalid?: boolean;
2973
- hideErrorMessage?: boolean;
2974
- className?: string;
2975
- menuClassName?: string;
2976
- dropdownClassName?: string;
2977
- drawerClassName?: string;
2978
- name?: string;
2979
- width?: number | string;
2980
- noOptionsMessage?: () => string | undefined;
2981
- searchable?: boolean;
3090
+ type SearchingSelectTriggerRenderer = (isOpen: boolean, toggle: () => void) => React$1.ReactNode;
3091
+ type SearchingSelectBaseProps<T, V extends SelectValue$1, L extends ReactNode> = Omit<SingleSelectProps<T, V, L>, 'isMulti' | 'searchPosition' | 'components'> & {
3092
+ trigger?: SearchingSelectTriggerRenderer;
3093
+ components?: SelectComponents<T, V, L>;
2982
3094
  searchPlaceholder?: string;
2983
- filterOption?: SelectFilterOption<T, V, L>;
2984
- helperText?: string;
3095
+ /** Hide the in-menu search input (default: true). */
3096
+ searchable?: boolean;
2985
3097
  };
2986
- type SearchableSelectComponent = <T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string>(props: SearchableSelectProps<T, V, L> & {
2987
- ref?: React$1.Ref<HTMLButtonElement>;
3098
+ type SearchingSelectPaginationProps<T, V extends SelectValue$1, L extends ReactNode> = {
3099
+ canLoadMore?: boolean;
3100
+ isLoadingMore?: boolean;
3101
+ loadMoreItems?: () => void;
3102
+ loadingMoreText?: string;
3103
+ onSearchChange?: (input: string) => void;
3104
+ itemHeight?: number;
3105
+ listHeight?: number;
3106
+ overscan?: number;
3107
+ loadMoreThreshold?: number;
3108
+ getFullSearchOption?: (query: string) => SelectOption<T, V, L> | null | undefined;
3109
+ };
3110
+ type SearchingSelectProps<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = SearchingSelectBaseProps<T, V, L> & SearchingSelectPaginationProps<T, V, L>;
3111
+ type SearchingSelectComponent = <T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string>(props: SearchingSelectProps<T, V, L> & {
3112
+ ref?: React$1.Ref<HTMLDivElement>;
2988
3113
  }) => React$1.ReactElement;
2989
- declare const SearchableSelect: SearchableSelectComponent;
3114
+ declare const SearchingSelect: SearchingSelectComponent;
2990
3115
 
2991
- type CreatableSelectProps<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = Omit<SelectProps<T, V, L>, 'isCreatable'>;
3116
+ type CreatableSelectProps<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = Omit<SingleSelectProps<T, V, L>, 'isCreatable' | 'isMulti'>;
2992
3117
  declare const CreatableSelect: <T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string>(props: CreatableSelectProps<T, V, L> & {
2993
3118
  ref?: React$1.Ref<HTMLDivElement>;
2994
3119
  }) => React$1.ReactElement;
2995
3120
 
2996
- type MultiSelectChipRenderer<T, V extends SelectValue$1, L extends ReactNode> = (option: SelectOption<T, V, L>, onRemove: () => void) => React$1.ReactNode;
2997
- type MultiSelectProps<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = {
2998
- options?: SelectOption<T, V, L>[];
2999
- value?: SelectOption<T, V, L>[] | null;
3000
- onChange: (value: SelectOption<T, V, L>[]) => void;
3001
- onBlur?: React$1.FocusEventHandler<HTMLDivElement>;
3002
- label: string;
3003
- topLabel?: string;
3004
- placeholder?: string;
3005
- disabled?: boolean;
3006
- readOnly?: boolean;
3007
- loading?: boolean;
3008
- optional?: boolean | string;
3009
- tooltip?: React$1.ReactNode;
3010
- error?: string;
3011
- invalid?: boolean;
3012
- hideErrorMessage?: boolean;
3013
- className?: string;
3014
- menuClassName?: string;
3015
- dropdownClassName?: string;
3016
- drawerClassName?: string;
3017
- name?: string;
3018
- width?: number | string;
3019
- noOptionsMessage?: () => string | undefined;
3020
- filterOption?: SelectFilterOption<T, V, L>;
3021
- closeMenuOnSelect?: boolean;
3022
- renderChip?: MultiSelectChipRenderer<T, V, L>;
3023
- helperText?: string;
3024
- isCreatable?: boolean;
3025
- onCreateOption?: (input: string) => SelectOption<T, V, L>;
3026
- formatCreateLabel?: (input: string) => React$1.ReactNode;
3027
- isValidNewOption?: (input: string, selected: SelectOption<T, V, L>[], options: SelectOption<T, V, L>[]) => boolean;
3028
- };
3029
- type MultiSelectComponent = <T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string>(props: MultiSelectProps<T, V, L> & {
3121
+ type MultiSelectProps<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = Omit<MultiSelectModeProps<T, V, L>, 'isMulti'>;
3122
+ declare const MultiSelect: <T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string>(props: MultiSelectProps<T, V, L> & {
3030
3123
  ref?: React$1.Ref<HTMLDivElement>;
3031
3124
  }) => React$1.ReactElement;
3032
- declare const MultiSelect: MultiSelectComponent;
3033
3125
 
3034
- type CreatableMultiSelectProps<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = Omit<MultiSelectProps<T, V, L>, 'isCreatable'>;
3126
+ type CreatableMultiSelectProps<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = Omit<MultiSelectModeProps<T, V, L>, 'isCreatable' | 'isMulti'>;
3035
3127
  declare const CreatableMultiSelect: <T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string>(props: CreatableMultiSelectProps<T, V, L> & {
3036
3128
  ref?: React$1.Ref<HTMLDivElement>;
3037
3129
  }) => React$1.ReactElement;
3038
3130
 
3039
- type InfiniteScrollSelectProps<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = {
3040
- options?: SelectOption<T, V, L>[];
3041
- value?: SelectOption<T, V, L> | null;
3042
- onChange: (option: SelectOption<T, V, L> | null) => void;
3043
- onBlur?: React$1.FocusEventHandler<HTMLDivElement>;
3044
- label: string;
3045
- topLabel?: string;
3046
- placeholder?: string;
3047
- getValueLabel?: (option: SelectOption<T, V, L>) => string;
3048
- disabled?: boolean;
3049
- readOnly?: boolean;
3050
- loading?: boolean;
3051
- optional?: boolean | string;
3052
- tooltip?: React$1.ReactNode;
3053
- error?: string;
3054
- invalid?: boolean;
3055
- hideErrorMessage?: boolean;
3056
- className?: string;
3057
- menuClassName?: string;
3058
- dropdownClassName?: string;
3059
- drawerClassName?: string;
3060
- name?: string;
3061
- width?: number | string;
3062
- noOptionsMessage?: () => string | undefined;
3063
- filterOption?: SelectFilterOption<T, V, L>;
3064
- helperText?: string;
3065
- clearable?: boolean;
3131
+ type InfiniteScrollExtras<T, V extends SelectValue$1, L extends ReactNode> = {
3066
3132
  canLoadMore?: boolean;
3067
3133
  isLoadingMore?: boolean;
3068
3134
  loadMoreItems?: () => void;
@@ -3072,12 +3138,68 @@ type InfiniteScrollSelectProps<T = undefined, V extends SelectValue$1 = string,
3072
3138
  listHeight?: number;
3073
3139
  overscan?: number;
3074
3140
  loadMoreThreshold?: number;
3075
- };
3141
+ getFullSearchOption?: (query: string) => SelectOption<T, V, L> | null | undefined;
3142
+ };
3143
+ type InfiniteScrollSingleProps<T, V extends SelectValue$1, L extends ReactNode> = Omit<SingleSelectProps<T, V, L>, 'isMulti'> & InfiniteScrollExtras<T, V, L>;
3144
+ type InfiniteScrollMultiSelectProps$1<T, V extends SelectValue$1, L extends ReactNode> = Omit<MultiSelectModeProps<T, V, L>, 'isMulti'> & InfiniteScrollExtras<T, V, L>;
3145
+ type InfiniteScrollSelectProps<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = (InfiniteScrollSingleProps<T, V, L> & {
3146
+ isMulti?: false;
3147
+ }) | (InfiniteScrollMultiSelectProps$1<T, V, L> & {
3148
+ isMulti: true;
3149
+ });
3076
3150
  type InfiniteScrollSelectComponent = <T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string>(props: InfiniteScrollSelectProps<T, V, L> & {
3077
3151
  ref?: React$1.Ref<HTMLDivElement>;
3078
3152
  }) => React$1.ReactElement;
3079
3153
  declare const InfiniteScrollSelect: InfiniteScrollSelectComponent;
3080
3154
 
3155
+ type InfiniteScrollMultiSelectProps<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = Omit<Extract<InfiniteScrollSelectProps<T, V, L>, {
3156
+ isMulti: true;
3157
+ }>, 'isMulti'>;
3158
+ declare const InfiniteScrollMultiSelect: <T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string>(props: InfiniteScrollMultiSelectProps<T, V, L> & {
3159
+ ref?: React$1.Ref<HTMLDivElement>;
3160
+ }) => React$1.ReactElement;
3161
+
3162
+ type SelectCheckboxesTriggerRenderer = (isOpen: boolean, toggle: () => void) => React$1.ReactNode;
3163
+ type SelectCheckboxesPaginationProps<T, V extends SelectValue$1, L extends ReactNode> = {
3164
+ canLoadMore?: boolean;
3165
+ isLoadingMore?: boolean;
3166
+ loadMoreItems?: () => void;
3167
+ loadingMoreText?: string;
3168
+ onSearchChange?: (input: string) => void;
3169
+ itemHeight?: number;
3170
+ listHeight?: number;
3171
+ overscan?: number;
3172
+ loadMoreThreshold?: number;
3173
+ getFullSearchOption?: (query: string) => SelectOption<T, V, L> | null | undefined;
3174
+ };
3175
+ type SelectCheckboxesProps<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = Omit<MultiSelectModeProps<T, V, L>, 'isMulti' | 'components' | 'searchPosition' | 'menuHeader'> & {
3176
+ trigger?: SelectCheckboxesTriggerRenderer;
3177
+ components?: SelectComponents<T, V, L>;
3178
+ /** Custom display for the count text in the trigger. Receives (count, total). */
3179
+ valueText?: string | ((selectedCount: number, total: number) => string);
3180
+ /** Show "Select All" row at top of menu (default false). */
3181
+ allowSelectAll?: boolean;
3182
+ selectAllLabel?: string;
3183
+ /** Render the in-menu search input (default true). */
3184
+ searchable?: boolean;
3185
+ searchPlaceholder?: string;
3186
+ } & SelectCheckboxesPaginationProps<T, V, L>;
3187
+ type SelectCheckboxesComponent = <T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string>(props: SelectCheckboxesProps<T, V, L> & {
3188
+ ref?: React$1.Ref<HTMLDivElement>;
3189
+ }) => React$1.ReactElement;
3190
+ declare const SelectCheckboxes: SelectCheckboxesComponent;
3191
+
3192
+ declare function SelectCheckboxOption<T, V extends SelectValue$1, L extends ReactNode>(props: OptionProps<T, V, L>): react_jsx_runtime.JSX.Element;
3193
+
3194
+ type SelectAllRowProps = {
3195
+ label: string;
3196
+ checked: boolean;
3197
+ indeterminate?: boolean;
3198
+ disabled?: boolean;
3199
+ onToggle: () => void;
3200
+ };
3201
+ declare function SelectAllRow({ label, checked, indeterminate, disabled, onToggle, }: SelectAllRowProps): react_jsx_runtime.JSX.Element;
3202
+
3081
3203
  type TextareaProps = Omit<React$1.TextareaHTMLAttributes<HTMLTextAreaElement>, 'name'> & {
3082
3204
  label?: React$1.ReactNode;
3083
3205
  invalid?: boolean;
@@ -3257,21 +3379,21 @@ declare function useValidateDates({ minDays, maxDays, minDate, maxDate, disabled
3257
3379
 
3258
3380
  type TimePickerFormat = 'time' | 'timeEach15Minutes' | 'timeEach30Minutes' | 'hours';
3259
3381
  type TimeSettings = {
3260
- intervalUnit?: 'M' | 'H';
3382
+ interval_unit?: 'M' | 'H';
3261
3383
  interval?: number;
3262
- minTime?: string;
3263
- maxTime?: string;
3384
+ min_time?: string;
3385
+ max_time?: string;
3264
3386
  addNextDay?: boolean;
3265
3387
  };
3266
- type TimePickerProps = Omit<SelectProps<undefined, string, string>, 'options'> & {
3388
+ type TimePickerProps = Omit<SingleSelectProps<undefined, string, string>, 'options'> & {
3267
3389
  format?: TimePickerFormat;
3268
3390
  timeSettings?: TimeSettings;
3269
- options?: SelectProps<undefined, string, string>['options'];
3391
+ options?: SingleSelectProps<undefined, string, string>['options'];
3270
3392
  };
3271
- declare const TimePicker: React$1.ForwardRefExoticComponent<Omit<SelectProps<undefined, string, string>, "options"> & {
3393
+ declare const TimePicker: React$1.ForwardRefExoticComponent<Omit<SingleSelectProps<undefined, string, string>, "options"> & {
3272
3394
  format?: TimePickerFormat;
3273
3395
  timeSettings?: TimeSettings;
3274
- options?: SelectProps<undefined, string, string>["options"];
3396
+ options?: SingleSelectProps<undefined, string, string>["options"];
3275
3397
  } & React$1.RefAttributes<HTMLDivElement>>;
3276
3398
 
3277
3399
  type FileInputValue = File | string | null;
@@ -3516,7 +3638,7 @@ type Props$1 = {
3516
3638
  enabled?: boolean;
3517
3639
  onFinish?: () => void;
3518
3640
  };
3519
- declare const useCountdown: ({ initialTime, enabled, onFinish, }?: Props$1) => {
3641
+ declare const useCountdown: ({ initialTime, enabled, onFinish }?: Props$1) => {
3520
3642
  timeLeft: number;
3521
3643
  isTimerRunning: boolean;
3522
3644
  resetTimer: () => void;
@@ -3950,4 +4072,4 @@ type AirbnbSearchInputProps = ComponentProps<'input'> & {
3950
4072
  };
3951
4073
  declare const AirbnbSearchInput: React$1.ForwardRefExoticComponent<Omit<AirbnbSearchInputProps, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
3952
4074
 
3953
- 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 };
4075
+ 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, type BaseSelectProps, 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, InfiniteScrollMultiSelect, type InfiniteScrollMultiSelectProps, 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 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, SearchingSelect, type SearchingSelectProps, type SearchingSelectTriggerRenderer, Section, SectionGroup, type SectionGroupItemProps, type SectionGroupLabelProps, type SectionGroupProps, type SectionProps, SectionTag, SectionTagColors, type SectionTagProps, Select, SelectAllRow, type SelectAllRowProps, SelectCheckboxOption, SelectCheckboxes, type SelectCheckboxesProps, type SelectCheckboxesTriggerRenderer, SelectIconsBox, type SelectIconsBoxProps, type MultiSelectModeProps as SelectMultiProps, 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, type SingleSelectProps, 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 };