@chekinapp/ui 0.0.111 → 0.0.114

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
@@ -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, UIEvent, 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';
@@ -465,7 +465,7 @@ interface MultiSelectProps$1 extends BaseCheckboxDropdownGroupProps {
465
465
  value?: CheckboxOption[] | null;
466
466
  onChange: (selectedValues: CheckboxOption[] | null) => void;
467
467
  }
468
- interface SingleSelectProps extends BaseCheckboxDropdownGroupProps {
468
+ interface SingleSelectProps$1 extends BaseCheckboxDropdownGroupProps {
469
469
  multiple: false;
470
470
  value?: CheckboxOption | null;
471
471
  onChange: (selectedValues: CheckboxOption | null) => void;
@@ -475,7 +475,7 @@ interface AutoDetectProps extends BaseCheckboxDropdownGroupProps {
475
475
  value?: CheckboxOption | null;
476
476
  onChange: (selectedValues: CheckboxOption | null) => void;
477
477
  }
478
- type CheckboxDropdownGroupProps = MultiSelectProps$1 | SingleSelectProps | AutoDetectProps;
478
+ type CheckboxDropdownGroupProps = MultiSelectProps$1 | SingleSelectProps$1 | AutoDetectProps;
479
479
 
480
480
  declare const CheckboxDropdownGroup: React$1.ForwardRefExoticComponent<CheckboxDropdownGroupProps & React$1.RefAttributes<HTMLDivElement>>;
481
481
 
@@ -815,6 +815,7 @@ declare const uiKitTranslations: {
815
815
  dont_save: string;
816
816
  copied_exclamation: string;
817
817
  search_placeholder: string;
818
+ type_to_search: string;
818
819
  loading_more: string;
819
820
  no_options: string;
820
821
  select_option: string;
@@ -1279,6 +1280,7 @@ declare const uiKitI18nResources: {
1279
1280
  dont_save: string;
1280
1281
  copied_exclamation: string;
1281
1282
  search_placeholder: string;
1283
+ type_to_search: string;
1282
1284
  loading_more: string;
1283
1285
  no_options: string;
1284
1286
  select_option: string;
@@ -2923,11 +2925,111 @@ type SelectChangeAction = 'select' | 'deselect' | 'clear' | 'create';
2923
2925
  type SelectChangeMeta = {
2924
2926
  action: SelectChangeAction;
2925
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;
2926
2936
 
2927
- type SelectProps<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = {
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
+ onMenuScrollToBottom?: (event: UIEvent<HTMLDivElement>) => void;
2995
+ components: SelectComponents<T, V, L>;
2996
+ };
2997
+ type OptionProps<T, V extends SelectValue$1, L extends ReactNode> = {
2998
+ option: SelectOption<T, V, L>;
2999
+ index: number;
3000
+ isSelected: boolean;
3001
+ isHighlighted: boolean;
3002
+ isDisabled: boolean;
3003
+ isLast: boolean;
3004
+ isMulti: boolean;
3005
+ id: string;
3006
+ onClick: (option: SelectOption<T, V, L>) => void;
3007
+ onHover: (index: number) => void;
3008
+ innerRef: (node: HTMLButtonElement | null) => void;
3009
+ inputValue?: string;
3010
+ selectedOptions?: SelectOption<T, V, L>[];
3011
+ formatOptionLabel?: SelectFormatOptionLabel<T, V, L>;
3012
+ };
3013
+ type MultiValueChipProps<T, V extends SelectValue$1, L extends ReactNode> = {
3014
+ option: SelectOption<T, V, L>;
3015
+ readOnly?: boolean;
3016
+ onRemove: () => void;
3017
+ };
3018
+ type CreateOptionProps = {
3019
+ inputValue: string;
3020
+ onCreate: () => void;
3021
+ formatCreateLabel?: (input: string) => ReactNode;
3022
+ };
3023
+ type SelectComponents<T = unknown, V extends SelectValue$1 = SelectValue$1, L extends ReactNode = ReactNode> = {
3024
+ Control?: ComponentType<ControlProps<T, V, L>>;
3025
+ MenuList?: ComponentType<MenuListProps<T, V, L>>;
3026
+ Option?: ComponentType<OptionProps<T, V, L>>;
3027
+ MultiValueChip?: ComponentType<MultiValueChipProps<T, V, L>>;
3028
+ CreateOption?: ComponentType<CreateOptionProps>;
3029
+ };
3030
+
3031
+ type BaseSelectProps<T, V extends SelectValue$1, L extends ReactNode> = {
2928
3032
  options?: SelectOption<T, V, L>[];
2929
- value?: SelectOption<T, V, L> | null;
2930
- onChange: (option: SelectOption<T, V, L> | null, meta?: SelectChangeMeta) => void;
2931
3033
  onBlur?: React$1.FocusEventHandler<HTMLDivElement>;
2932
3034
  label?: string;
2933
3035
  topLabel?: string;
@@ -2950,127 +3052,85 @@ type SelectProps<T = undefined, V extends SelectValue$1 = string, L extends Reac
2950
3052
  noOptionsMessage?: () => string | undefined;
2951
3053
  filterOption?: SelectFilterOption<T, V, L>;
2952
3054
  isOptionDisabled?: SelectIsOptionDisabled<T, V, L>;
3055
+ isOptionSelected?: SelectIsOptionSelected<T, V, L>;
3056
+ formatOptionLabel?: SelectFormatOptionLabel<T, V, L>;
2953
3057
  helperText?: string;
2954
- clearable?: boolean;
2955
3058
  isCreatable?: boolean;
2956
3059
  onCreateOption?: (input: string) => SelectOption<T, V, L>;
2957
3060
  formatCreateLabel?: (input: string) => React$1.ReactNode;
2958
- isValidNewOption?: (input: string, selected: SelectOption<T, V, L> | null | undefined, options: SelectOption<T, V, L>[]) => boolean;
3061
+ isValidNewOption?: (input: string, selectedOptions: SelectOption<T, V, L>[], options: SelectOption<T, V, L>[]) => boolean;
3062
+ menuIsOpen?: boolean;
3063
+ onMenuOpenChange?: (open: boolean) => void;
3064
+ autoFocus?: boolean;
3065
+ onKeyDown?: React$1.KeyboardEventHandler<HTMLInputElement>;
3066
+ hideIndicator?: boolean;
3067
+ openMenuOnFocus?: boolean;
3068
+ components?: SelectComponents<T, V, L>;
3069
+ onInputChange?: (value: string) => void;
3070
+ searchPosition?: 'trigger' | 'dropdown';
3071
+ menuHeader?: React$1.ReactNode;
3072
+ onMenuScrollToBottom?: (event: React$1.UIEvent<HTMLDivElement>) => void;
3073
+ };
3074
+ type SingleSelectProps<T, V extends SelectValue$1, L extends ReactNode> = BaseSelectProps<T, V, L> & {
3075
+ isMulti?: false;
3076
+ value?: SelectOption<T, V, L> | null;
3077
+ onChange: (option: SelectOption<T, V, L> | null, meta?: SelectChangeMeta) => void;
3078
+ clearable?: boolean;
2959
3079
  };
3080
+ type MultiSelectModeProps<T, V extends SelectValue$1, L extends ReactNode> = BaseSelectProps<T, V, L> & {
3081
+ isMulti: true;
3082
+ value?: SelectOption<T, V, L>[] | null;
3083
+ onChange: (value: SelectOption<T, V, L>[], meta?: SelectChangeMeta) => void;
3084
+ closeMenuOnSelect?: boolean;
3085
+ };
3086
+ type SelectProps<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = SingleSelectProps<T, V, L> | MultiSelectModeProps<T, V, L>;
2960
3087
  type SelectComponent = <T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string>(props: SelectProps<T, V, L> & {
2961
3088
  ref?: React$1.Ref<HTMLDivElement>;
2962
3089
  }) => React$1.ReactElement;
2963
3090
  declare const Select: SelectComponent;
2964
3091
 
2965
- type SearchableSelectProps<T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string> = {
2966
- options?: SelectOption<T, V, L>[];
2967
- value?: SelectOption<T, V, L> | null;
2968
- onChange: (option: SelectOption<T, V, L>) => void;
2969
- onBlur?: React$1.FocusEventHandler<HTMLButtonElement>;
2970
- label: string;
2971
- topLabel?: string;
2972
- placeholder?: string;
2973
- getValueLabel?: (option: SelectOption<T, V, L>) => string;
2974
- disabled?: boolean;
2975
- loading?: boolean;
2976
- optional?: boolean | string;
2977
- tooltip?: React$1.ReactNode;
2978
- error?: string;
2979
- invalid?: boolean;
2980
- hideErrorMessage?: boolean;
2981
- className?: string;
2982
- menuClassName?: string;
2983
- dropdownClassName?: string;
2984
- drawerClassName?: string;
2985
- name?: string;
2986
- width?: number | string;
2987
- noOptionsMessage?: () => string | undefined;
2988
- searchable?: boolean;
3092
+ type SearchingSelectTriggerRenderer = (isOpen: boolean, toggle: () => void) => React$1.ReactNode;
3093
+ type SearchingSelectBaseProps<T, V extends SelectValue$1, L extends ReactNode> = Omit<SingleSelectProps<T, V, L>, 'isMulti' | 'searchPosition' | 'components'> & {
3094
+ trigger?: SearchingSelectTriggerRenderer;
3095
+ components?: SelectComponents<T, V, L>;
2989
3096
  searchPlaceholder?: string;
2990
- filterOption?: SelectFilterOption<T, V, L>;
2991
- helperText?: string;
3097
+ /** Hide the in-menu search input (default: true). */
3098
+ searchable?: boolean;
2992
3099
  };
2993
- type SearchableSelectComponent = <T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string>(props: SearchableSelectProps<T, V, L> & {
2994
- ref?: React$1.Ref<HTMLButtonElement>;
3100
+ type SearchingSelectPaginationProps<T, V extends SelectValue$1, L extends ReactNode> = {
3101
+ canLoadMore?: boolean;
3102
+ isLoadingMore?: boolean;
3103
+ loadMoreItems?: () => void;
3104
+ loadingMoreText?: string;
3105
+ onSearchChange?: (input: string) => void;
3106
+ itemHeight?: number;
3107
+ listHeight?: number;
3108
+ overscan?: number;
3109
+ loadMoreThreshold?: number;
3110
+ getFullSearchOption?: (query: string) => SelectOption<T, V, L> | null | undefined;
3111
+ };
3112
+ type SearchingSelectProps<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = SearchingSelectBaseProps<T, V, L> & SearchingSelectPaginationProps<T, V, L>;
3113
+ type SearchingSelectComponent = <T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string>(props: SearchingSelectProps<T, V, L> & {
3114
+ ref?: React$1.Ref<HTMLDivElement>;
2995
3115
  }) => React$1.ReactElement;
2996
- declare const SearchableSelect: SearchableSelectComponent;
3116
+ declare const SearchingSelect: SearchingSelectComponent;
2997
3117
 
2998
- type CreatableSelectProps<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = Omit<SelectProps<T, V, L>, 'isCreatable'>;
3118
+ type CreatableSelectProps<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = Omit<SingleSelectProps<T, V, L>, 'isCreatable' | 'isMulti'>;
2999
3119
  declare const CreatableSelect: <T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string>(props: CreatableSelectProps<T, V, L> & {
3000
3120
  ref?: React$1.Ref<HTMLDivElement>;
3001
3121
  }) => React$1.ReactElement;
3002
3122
 
3003
- type MultiSelectChipRenderer<T, V extends SelectValue$1, L extends ReactNode> = (option: SelectOption<T, V, L>, onRemove: () => void) => React$1.ReactNode;
3004
- type MultiSelectProps<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = {
3005
- options?: SelectOption<T, V, L>[];
3006
- value?: SelectOption<T, V, L>[] | null;
3007
- onChange: (value: SelectOption<T, V, L>[], meta?: SelectChangeMeta) => void;
3008
- onBlur?: React$1.FocusEventHandler<HTMLDivElement>;
3009
- label: string;
3010
- topLabel?: string;
3011
- placeholder?: string;
3012
- disabled?: boolean;
3013
- readOnly?: boolean;
3014
- loading?: boolean;
3015
- optional?: boolean | string;
3016
- tooltip?: React$1.ReactNode;
3017
- error?: string;
3018
- invalid?: boolean;
3019
- hideErrorMessage?: boolean;
3020
- className?: string;
3021
- menuClassName?: string;
3022
- dropdownClassName?: string;
3023
- drawerClassName?: string;
3024
- name?: string;
3025
- width?: number | string;
3026
- noOptionsMessage?: () => string | undefined;
3027
- filterOption?: SelectFilterOption<T, V, L>;
3028
- isOptionDisabled?: SelectIsOptionDisabled<T, V, L>;
3029
- closeMenuOnSelect?: boolean;
3030
- renderChip?: MultiSelectChipRenderer<T, V, L>;
3031
- helperText?: string;
3032
- isCreatable?: boolean;
3033
- onCreateOption?: (input: string) => SelectOption<T, V, L>;
3034
- formatCreateLabel?: (input: string) => React$1.ReactNode;
3035
- isValidNewOption?: (input: string, selected: SelectOption<T, V, L>[], options: SelectOption<T, V, L>[]) => boolean;
3036
- };
3037
- type MultiSelectComponent = <T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string>(props: MultiSelectProps<T, V, L> & {
3123
+ type MultiSelectProps<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = Omit<MultiSelectModeProps<T, V, L>, 'isMulti'>;
3124
+ declare const MultiSelect: <T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string>(props: MultiSelectProps<T, V, L> & {
3038
3125
  ref?: React$1.Ref<HTMLDivElement>;
3039
3126
  }) => React$1.ReactElement;
3040
- declare const MultiSelect: MultiSelectComponent;
3041
3127
 
3042
- type CreatableMultiSelectProps<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = Omit<MultiSelectProps<T, V, L>, 'isCreatable'>;
3128
+ type CreatableMultiSelectProps<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = Omit<MultiSelectModeProps<T, V, L>, 'isCreatable' | 'isMulti'>;
3043
3129
  declare const CreatableMultiSelect: <T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string>(props: CreatableMultiSelectProps<T, V, L> & {
3044
3130
  ref?: React$1.Ref<HTMLDivElement>;
3045
3131
  }) => React$1.ReactElement;
3046
3132
 
3047
- type InfiniteScrollSelectProps<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = {
3048
- options?: SelectOption<T, V, L>[];
3049
- value?: SelectOption<T, V, L> | null;
3050
- onChange: (option: SelectOption<T, V, L> | null) => void;
3051
- onBlur?: React$1.FocusEventHandler<HTMLDivElement>;
3052
- label: string;
3053
- topLabel?: string;
3054
- placeholder?: string;
3055
- getValueLabel?: (option: SelectOption<T, V, L>) => string;
3056
- disabled?: boolean;
3057
- readOnly?: boolean;
3058
- loading?: boolean;
3059
- optional?: boolean | string;
3060
- tooltip?: React$1.ReactNode;
3061
- error?: string;
3062
- invalid?: boolean;
3063
- hideErrorMessage?: boolean;
3064
- className?: string;
3065
- menuClassName?: string;
3066
- dropdownClassName?: string;
3067
- drawerClassName?: string;
3068
- name?: string;
3069
- width?: number | string;
3070
- noOptionsMessage?: () => string | undefined;
3071
- filterOption?: SelectFilterOption<T, V, L>;
3072
- helperText?: string;
3073
- clearable?: boolean;
3133
+ type InfiniteScrollExtras<T, V extends SelectValue$1, L extends ReactNode> = {
3074
3134
  canLoadMore?: boolean;
3075
3135
  isLoadingMore?: boolean;
3076
3136
  loadMoreItems?: () => void;
@@ -3080,12 +3140,68 @@ type InfiniteScrollSelectProps<T = undefined, V extends SelectValue$1 = string,
3080
3140
  listHeight?: number;
3081
3141
  overscan?: number;
3082
3142
  loadMoreThreshold?: number;
3083
- };
3143
+ getFullSearchOption?: (query: string) => SelectOption<T, V, L> | null | undefined;
3144
+ };
3145
+ type InfiniteScrollSingleProps<T, V extends SelectValue$1, L extends ReactNode> = Omit<SingleSelectProps<T, V, L>, 'isMulti'> & InfiniteScrollExtras<T, V, L>;
3146
+ type InfiniteScrollMultiSelectProps$1<T, V extends SelectValue$1, L extends ReactNode> = Omit<MultiSelectModeProps<T, V, L>, 'isMulti'> & InfiniteScrollExtras<T, V, L>;
3147
+ type InfiniteScrollSelectProps<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = (InfiniteScrollSingleProps<T, V, L> & {
3148
+ isMulti?: false;
3149
+ }) | (InfiniteScrollMultiSelectProps$1<T, V, L> & {
3150
+ isMulti: true;
3151
+ });
3084
3152
  type InfiniteScrollSelectComponent = <T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string>(props: InfiniteScrollSelectProps<T, V, L> & {
3085
3153
  ref?: React$1.Ref<HTMLDivElement>;
3086
3154
  }) => React$1.ReactElement;
3087
3155
  declare const InfiniteScrollSelect: InfiniteScrollSelectComponent;
3088
3156
 
3157
+ type InfiniteScrollMultiSelectProps<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = Omit<Extract<InfiniteScrollSelectProps<T, V, L>, {
3158
+ isMulti: true;
3159
+ }>, 'isMulti'>;
3160
+ declare const InfiniteScrollMultiSelect: <T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string>(props: InfiniteScrollMultiSelectProps<T, V, L> & {
3161
+ ref?: React$1.Ref<HTMLDivElement>;
3162
+ }) => React$1.ReactElement;
3163
+
3164
+ type SelectCheckboxesTriggerRenderer = (isOpen: boolean, toggle: () => void) => React$1.ReactNode;
3165
+ type SelectCheckboxesPaginationProps<T, V extends SelectValue$1, L extends ReactNode> = {
3166
+ canLoadMore?: boolean;
3167
+ isLoadingMore?: boolean;
3168
+ loadMoreItems?: () => void;
3169
+ loadingMoreText?: string;
3170
+ onSearchChange?: (input: string) => void;
3171
+ itemHeight?: number;
3172
+ listHeight?: number;
3173
+ overscan?: number;
3174
+ loadMoreThreshold?: number;
3175
+ getFullSearchOption?: (query: string) => SelectOption<T, V, L> | null | undefined;
3176
+ };
3177
+ type SelectCheckboxesProps<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = Omit<MultiSelectModeProps<T, V, L>, 'isMulti' | 'components' | 'searchPosition' | 'menuHeader'> & {
3178
+ trigger?: SelectCheckboxesTriggerRenderer;
3179
+ components?: SelectComponents<T, V, L>;
3180
+ /** Custom display for the count text in the trigger. Receives (count, total). */
3181
+ valueText?: string | ((selectedCount: number, total: number) => string);
3182
+ /** Show "Select All" row at top of menu (default false). */
3183
+ allowSelectAll?: boolean;
3184
+ selectAllLabel?: string;
3185
+ /** Render the in-menu search input (default true). */
3186
+ searchable?: boolean;
3187
+ searchPlaceholder?: string;
3188
+ } & SelectCheckboxesPaginationProps<T, V, L>;
3189
+ type SelectCheckboxesComponent = <T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string>(props: SelectCheckboxesProps<T, V, L> & {
3190
+ ref?: React$1.Ref<HTMLDivElement>;
3191
+ }) => React$1.ReactElement;
3192
+ declare const SelectCheckboxes: SelectCheckboxesComponent;
3193
+
3194
+ declare function SelectCheckboxOption<T, V extends SelectValue$1, L extends ReactNode>(props: OptionProps<T, V, L>): react_jsx_runtime.JSX.Element;
3195
+
3196
+ type SelectAllRowProps = {
3197
+ label: string;
3198
+ checked: boolean;
3199
+ indeterminate?: boolean;
3200
+ disabled?: boolean;
3201
+ onToggle: () => void;
3202
+ };
3203
+ declare function SelectAllRow({ label, checked, indeterminate, disabled, onToggle, }: SelectAllRowProps): react_jsx_runtime.JSX.Element;
3204
+
3089
3205
  type TextareaProps = Omit<React$1.TextareaHTMLAttributes<HTMLTextAreaElement>, 'name'> & {
3090
3206
  label?: React$1.ReactNode;
3091
3207
  invalid?: boolean;
@@ -3265,21 +3381,21 @@ declare function useValidateDates({ minDays, maxDays, minDate, maxDate, disabled
3265
3381
 
3266
3382
  type TimePickerFormat = 'time' | 'timeEach15Minutes' | 'timeEach30Minutes' | 'hours';
3267
3383
  type TimeSettings = {
3268
- intervalUnit?: 'M' | 'H';
3384
+ interval_unit?: 'M' | 'H';
3269
3385
  interval?: number;
3270
- minTime?: string;
3271
- maxTime?: string;
3386
+ min_time?: string;
3387
+ max_time?: string;
3272
3388
  addNextDay?: boolean;
3273
3389
  };
3274
- type TimePickerProps = Omit<SelectProps<undefined, string, string>, 'options'> & {
3390
+ type TimePickerProps = Omit<SingleSelectProps<undefined, string, string>, 'options'> & {
3275
3391
  format?: TimePickerFormat;
3276
3392
  timeSettings?: TimeSettings;
3277
- options?: SelectProps<undefined, string, string>['options'];
3393
+ options?: SingleSelectProps<undefined, string, string>['options'];
3278
3394
  };
3279
- declare const TimePicker: React$1.ForwardRefExoticComponent<Omit<SelectProps<undefined, string, string>, "options"> & {
3395
+ declare const TimePicker: React$1.ForwardRefExoticComponent<Omit<SingleSelectProps<undefined, string, string>, "options"> & {
3280
3396
  format?: TimePickerFormat;
3281
3397
  timeSettings?: TimeSettings;
3282
- options?: SelectProps<undefined, string, string>["options"];
3398
+ options?: SingleSelectProps<undefined, string, string>["options"];
3283
3399
  } & React$1.RefAttributes<HTMLDivElement>>;
3284
3400
 
3285
3401
  type FileInputValue = File | string | null;
@@ -3322,7 +3438,7 @@ type SelectIconsBoxProps = {
3322
3438
  className?: string;
3323
3439
  boxClassName?: string;
3324
3440
  };
3325
- declare function SelectIconsBox({ children, icons, renderIcon, onSelect, columns, iconsColor, isOpen: controlledOpen, defaultOpen, onOpenChange, position, className, boxClassName, }: SelectIconsBoxProps): react_jsx_runtime.JSX.Element;
3441
+ declare const SelectIconsBox: React$1.ForwardRefExoticComponent<SelectIconsBoxProps & React$1.RefAttributes<HTMLDivElement>>;
3326
3442
 
3327
3443
  declare function copyToClipboard(value: string | number): void;
3328
3444
 
@@ -3525,7 +3641,6 @@ type Props$1 = {
3525
3641
  onFinish?: () => void;
3526
3642
  };
3527
3643
  declare const useCountdown: ({ initialTime, enabled, onFinish }?: Props$1) => {
3528
- count: number;
3529
3644
  timeLeft: number;
3530
3645
  isTimerRunning: boolean;
3531
3646
  resetTimer: () => void;
@@ -3959,4 +4074,4 @@ type AirbnbSearchInputProps = ComponentProps<'input'> & {
3959
4074
  };
3960
4075
  declare const AirbnbSearchInput: React$1.ForwardRefExoticComponent<Omit<AirbnbSearchInputProps, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
3961
4076
 
3962
- export { ALERT_BOX_VARIANTS, Accordion, AccordionContent, type AccordionContentProps, AccordionItem, AccordionTrigger, type AccordionTriggerProps, AirbnbDatePicker, type AirbnbDatePickerProps, type AirbnbDatePickerValue, AirbnbFieldTrigger, type AirbnbFieldTriggerProps, AirbnbInput, type AirbnbInputProps, AirbnbPhoneField, type AirbnbPhoneFieldOption, type AirbnbPhoneFieldProps, type AirbnbPhoneFieldValue, AirbnbSearchInput, AirbnbSearchableSelect, type AirbnbSearchableSelectProps, type AirbnbSearchableSelectValue, AirbnbSelect, type AirbnbSelectProps, Alert, AlertBox, type AlertBoxProps, type AlertBoxVariant, AlertDescription, AlertSize, AlertSizes, AlertTitle, AlertType, AlertTypes, AudioPlayer, type AudioPlayerProps, Avatar, type AvatarProps, Badge, type BadgeProps, BaseCheckbox, type BaseCheckboxProps, BetaBadge, type BetaBadgeProps, BookmarkTabsList, type BookmarkTabsListProps, BookmarkTabsTrigger, type BookmarkTabsTriggerProps, BoxOptionSelector, type BoxOptionSelectorProps, type BoxOptionSelectorSwitchProps, Breadcrumb, type BreadcrumbProps, type BreadcrumbType, Breadcrumbs, type BreadcrumbsProps, Button, ButtonGroup, type ButtonGroupProps, ButtonGroupText, type ButtonGroupTextProps, type ButtonProps, type ButtonStatuses, ButtonsGroupLabel, type ButtonsGroupLabelProps, Calendar, type CalendarProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, CarouselNext, CarouselPrevious, type CarouselProps, CarouselRoot, type CarouselRootProps, CarouselSlide, CarouselTrack, CarouselViewport, CheckList, type CheckListProps, Checkbox, CheckboxDropdownGroup, type CheckboxDropdownGroupConfig, type CheckboxDropdownGroupProps, CheckboxDropdownMultiGroup, CheckboxGroup, type CheckboxGroupProps, type CheckboxOption, type CheckboxProps, type CheckboxSize, CircularLoader, Collapsible, CollapsibleContent, CollapsibleTrigger, CommingSoonBadge, type CommingSoonBadgeProps, ConfirmationDialog, type ConfirmationDialogProps, CopyIcon, type CopyIconProps, CopyLinkButton, type CopyLinkButtonProps, CopyString, type CopyStringProps, Counter, type CounterProps, CounterSize, CreatableMultiSelect, type CreatableMultiSelectProps, CreatableSelect, type CreatableSelectProps, CustomCheckboxDropdownGroup, type CustomIconEntry, DEFAULT_DISPLAY_FORMAT, DEVICE_BREAKPOINTS, DataTable, type DataTableProps, DateRangePicker, type DateRangePickerImperativeProps, type OpenDirection as DateRangePickerOpenDirection, type DateRangePickerProps, DateTableFilter, Datepicker, type DatepickerProps, type DatepickerValue, DebouncedSearchInput, type DebouncedSearchInputProps, DefaultSelectTrigger, type DefaultSelectTriggerProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DialogVisuallyHidden, DividingSubsection, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownButton, type DropdownButtonProps, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, type DropdownMenuContentSide, DropdownMenuGroup, DropdownMenuItem, DropdownMenuItemContent, type DropdownMenuItemContentProps, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptySectionPlaceholder, type EmptySectionPlaceholderProps, EmptyTitle, ErrorMessage, type ErrorMessageProps, ExpandableContent, type ExpandableContentProps, type ExpandableContentTrigger, ExternalLink, type ExternalLinkProps, FieldErrorMessage, type FieldErrorMessageProps, FileInput, FileInputButton, type FileInputButtonProps, type FileInputProps, type FileInputValue, FormBox, Content as FormBoxContent, type FormBoxContentProps, Header as FormBoxHeader, type FormBoxHeaderProps, Root$1 as FormBoxRoot, type FormBoxRootProps, SubHeader as FormBoxSubHeader, type FormBoxSubHeaderProps, FramedIcon, type FramedIconProps, FreeTextField, type FreeTextFieldProps, HALO_ICON_STATUS, HaloIcon, type HaloIconProps, HelpTooltip, type HelpTooltipProps, IconButton, type IconButtonProps, type IconEntry, IconsDropdown, type IconsDropdownProps, Image, ImageFullScreenView, type ImageFullScreenViewProps, type ImageProps, InfiniteScrollSelect, type InfiniteScrollSelectProps, InfoBox, type InfoBoxProps, Input, InputOTP, InputOTPGroup, type InputOTPProps, InputOTPSeparator, InputOTPSlot, type InputProps, Label, type LabelProps, LargeModal, type LargeModalProps, LearnMoreButton, type LearnMoreButtonProps, LegacyInfinitySelect, type LegacyInfinitySelectProps, LegacyInput, type LegacyInputProps, LegacyMultiSelect, type LegacyMultiSelectProps, LegacySelect, LegacySelectContent, LegacySelectGroup, LegacySelectItem, LegacySelectLabel, LegacySelectPortal, type LegacySelectProps, LegacySelectRoot, LegacySelectScrollDownButton, LegacySelectScrollUpButton, LegacySelectSeparator, type LegacySelectSize, LegacySelectTrigger, LegacySelectValue, LegacyTextarea, type LegacyTextareaProps, Link, type LinkProps, LoadingBar, type LoadingBarProps, type LucideIconEntry, type MobileCameraProps, type MobileScreenshotPayload, MobileWebcam, Modal, ModalButton, ModalLoader, type ModalLoaderProps, type ModalProps, MultiSelect, type MultiSelectChipRenderer, type MultiSelectProps, NumberedList, type NumberedListProps, type OptionsCardsProps, OverlayLoader, type OverlayLoaderProps, Pagination, type PaginationProps, type PaginationVariant, PhoneInput, type PhoneInputOption, type PhoneInputProps, type PhoneInputValue, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, PopoverTrigger, PopoverWithTooltip, type PopoverWithTooltipProps, Radio, type RadioCardOption, MemoizedRadioCardsGroup as RadioCardsGroup, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioOption, type RadioProps, type RadioSize, RadioWithBorder, RatingProgress, type RatingProgressProps, RatingRadioGroup, type RatingRadioGroupProps, RatingStars, type RatingStarsProps, type RegisterUiKitI18nOptions, ResponsiveDropdown, type ResponsiveDropdownOption, type ResponsiveDropdownProps, ResponsiveSheet, type ResponsiveSheetProps, RotateArrow, type RotateArrowProps, ScrollArea, type ScrollAreaProps, ScrollBar, type ScrollBarProps, type ScrollableAreaState, SearchButton, type SearchButtonProps, SearchInput, type SearchInputProps, SearchableSelect, type SearchableSelectProps, Section, SectionGroup, type SectionGroupItemProps, type SectionGroupLabelProps, type SectionGroupProps, type SectionProps, SectionTag, SectionTagColors, type SectionTagProps, Select, SelectIconsBox, type SelectIconsBoxProps, type SelectOption, type SelectProps, type SelectorOption, Separator, type SeparatorProps, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarIcon, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, SignatureCanvas, type SignatureCanvasRef, Skeleton, type SkeletonProps, Slider, SmallGridSingleItem, type SmallGridSingleItemProps, SortingAction, type SortingActionProps, type SortingActionValue, type SortingByVariant, StatusBadge, type StatusBadgeProps, type StatusBadgeVariant, StatusBox, type StatusBoxProps, StatusButton, type StatusButtonProps, Stepper, type StepperProps, SubSection, SubSectionSize, SvgIcon, type SvgIconProps, type SvgIconSize, Switch, SwitchBlocks, type SwitchBlocksOption, type SwitchBlocksProps, SwitchGroup, type SwitchGroupProps, type SwitchOption, type SwitchProps, TabbedSection, type TabbedSectionProps, Table, TableBody, TableCaption, TableCell, TableFilter, type TableFilterProps, TableFooter, TableHead, TableHeader, TableLoader, type TableLoaderProps, type TableLoaderRootProps, TablePlaceholder, type TablePlaceholderProps, TableRow, Tabs, TabsContent, TabsList, type TabsListProps, TabsTrigger, type TabsTriggerProps, Textarea, type TextareaProps, ThreeDotsLoader, type ThreeDotsLoaderProps, TimePicker, type TimePickerFormat, type TimePickerProps, type TimeSettings, Timeline, TimelineConnector, type TimelineConnectorProps, TimelineContent, type TimelineContentProps, type TimelineContextProps, TimelineDescription, type TimelineDescriptionProps, TimelineDot, type TimelineDotProps, TimelineItem, type TimelineItemProps, type TimelineProps, TimelineSeparator, type TimelineSeparatorProps, TimelineTitle, type TimelineTitleProps, ToggleGroup, ToggleGroupItem, Toggles, type TogglesForwardType, type TogglesProps, Tooltip, TooltipContent, type TooltipContentProps, type TooltipProps, TooltipProvider, TooltipRoot, type TooltipRootProps, TooltipRootWrapper, TooltipTrigger, UI_KIT_I18N_NAMESPACE, type UiKitLocale, UploadedFilesList, type UploadedFilesListProps, type UseScrollableAreaOptions, type UseScrollableAreaResult, VerticalTabs, type VerticalTabsProps, type VerticalTabsStep, type VideoConstraints, VideoModal, type VideoModalProps, VideoPlayer, type VideoPlayerProps, Webcam, type WebcamProps, type WebcamRefTypes, WideButton, type WideButtonProps, addSupportEmailToMessage, badgeVariants, bookmarkTabsListVariants, bookmarkTabsTriggerVariants, buttonGroupVariants, buttonVariants, calendarClassNames, clearPhoneNumber, cn, compressFile, compressImage, copyToClipboard, createDisabledMatchers, emptyMediaVariants, findPhoneCode, findPhoneCodeOption, formatDate, formatPhoneCodeOptionLabel, getErrorMessage, getFileSizeMB, getScrollableAreaState, getSidebarState, isDayBlocked, isNumeric, labelVariants, parseDate, parsePhoneValueWithOptions, registerUiKitI18n, scrollToTop, sectionTagVariants, switchThumbVariants, switchVariants, tabsListVariants, tabsTriggerVariants, toCssSize, toastResponseError, toggleVariants, uiKitI18nResources, uiKitTranslations, useAbortController, useAccordionState, useCarouselContext, useClickEscape, useCombinedRef, useCopyToClipboard, useCountdown, useDebounce, useDebouncedFunction, useEvent, useHover, useIframeFocusTrapFallback, useIsFormTouched, useIsMobile, useIsMounted, useKeyDown, useLoadMore, useLockBodyScroll, useModalControls, useModalWithHistoryControls, useOutsideClick, usePagination, usePrevious, usePromisedModalControls, useRadioOptions, useResetAfterRequestStatus, useScreenResize, useScrollFrameIntoView, useScrollToTop, useScrollableArea, useSearchInput, useSidebar, useSidebarMenuButton, useSidebarSafe, useStickyStuck, useSwitchSectionActive, useTimeline, useTimeout, useTimeoutRef, useUpdateToast, useValidateDates };
4077
+ 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 };