@chekinapp/ui 0.0.111 → 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';
@@ -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,110 @@ 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;
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
+ };
2926
3029
 
2927
- type SelectProps<T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string> = {
3030
+ type BaseSelectProps<T, V extends SelectValue$1, L extends ReactNode> = {
2928
3031
  options?: SelectOption<T, V, L>[];
2929
- value?: SelectOption<T, V, L> | null;
2930
- onChange: (option: SelectOption<T, V, L> | null, meta?: SelectChangeMeta) => void;
2931
3032
  onBlur?: React$1.FocusEventHandler<HTMLDivElement>;
2932
3033
  label?: string;
2933
3034
  topLabel?: string;
@@ -2950,127 +3051,84 @@ type SelectProps<T = undefined, V extends SelectValue$1 = string, L extends Reac
2950
3051
  noOptionsMessage?: () => string | undefined;
2951
3052
  filterOption?: SelectFilterOption<T, V, L>;
2952
3053
  isOptionDisabled?: SelectIsOptionDisabled<T, V, L>;
3054
+ isOptionSelected?: SelectIsOptionSelected<T, V, L>;
3055
+ formatOptionLabel?: SelectFormatOptionLabel<T, V, L>;
2953
3056
  helperText?: string;
2954
- clearable?: boolean;
2955
3057
  isCreatable?: boolean;
2956
3058
  onCreateOption?: (input: string) => SelectOption<T, V, L>;
2957
3059
  formatCreateLabel?: (input: string) => React$1.ReactNode;
2958
- 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;
2959
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>;
2960
3085
  type SelectComponent = <T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string>(props: SelectProps<T, V, L> & {
2961
3086
  ref?: React$1.Ref<HTMLDivElement>;
2962
3087
  }) => React$1.ReactElement;
2963
3088
  declare const Select: SelectComponent;
2964
3089
 
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;
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>;
2989
3094
  searchPlaceholder?: string;
2990
- filterOption?: SelectFilterOption<T, V, L>;
2991
- helperText?: string;
3095
+ /** Hide the in-menu search input (default: true). */
3096
+ searchable?: boolean;
2992
3097
  };
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>;
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>;
2995
3113
  }) => React$1.ReactElement;
2996
- declare const SearchableSelect: SearchableSelectComponent;
3114
+ declare const SearchingSelect: SearchingSelectComponent;
2997
3115
 
2998
- 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'>;
2999
3117
  declare const CreatableSelect: <T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string>(props: CreatableSelectProps<T, V, L> & {
3000
3118
  ref?: React$1.Ref<HTMLDivElement>;
3001
3119
  }) => React$1.ReactElement;
3002
3120
 
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> & {
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> & {
3038
3123
  ref?: React$1.Ref<HTMLDivElement>;
3039
3124
  }) => React$1.ReactElement;
3040
- declare const MultiSelect: MultiSelectComponent;
3041
3125
 
3042
- 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'>;
3043
3127
  declare const CreatableMultiSelect: <T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string>(props: CreatableMultiSelectProps<T, V, L> & {
3044
3128
  ref?: React$1.Ref<HTMLDivElement>;
3045
3129
  }) => React$1.ReactElement;
3046
3130
 
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;
3131
+ type InfiniteScrollExtras<T, V extends SelectValue$1, L extends ReactNode> = {
3074
3132
  canLoadMore?: boolean;
3075
3133
  isLoadingMore?: boolean;
3076
3134
  loadMoreItems?: () => void;
@@ -3080,12 +3138,68 @@ type InfiniteScrollSelectProps<T = undefined, V extends SelectValue$1 = string,
3080
3138
  listHeight?: number;
3081
3139
  overscan?: number;
3082
3140
  loadMoreThreshold?: number;
3083
- };
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
+ });
3084
3150
  type InfiniteScrollSelectComponent = <T = undefined, V extends SelectValue$1 = string, L extends ReactNode = string>(props: InfiniteScrollSelectProps<T, V, L> & {
3085
3151
  ref?: React$1.Ref<HTMLDivElement>;
3086
3152
  }) => React$1.ReactElement;
3087
3153
  declare const InfiniteScrollSelect: InfiniteScrollSelectComponent;
3088
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
+
3089
3203
  type TextareaProps = Omit<React$1.TextareaHTMLAttributes<HTMLTextAreaElement>, 'name'> & {
3090
3204
  label?: React$1.ReactNode;
3091
3205
  invalid?: boolean;
@@ -3265,21 +3379,21 @@ declare function useValidateDates({ minDays, maxDays, minDate, maxDate, disabled
3265
3379
 
3266
3380
  type TimePickerFormat = 'time' | 'timeEach15Minutes' | 'timeEach30Minutes' | 'hours';
3267
3381
  type TimeSettings = {
3268
- intervalUnit?: 'M' | 'H';
3382
+ interval_unit?: 'M' | 'H';
3269
3383
  interval?: number;
3270
- minTime?: string;
3271
- maxTime?: string;
3384
+ min_time?: string;
3385
+ max_time?: string;
3272
3386
  addNextDay?: boolean;
3273
3387
  };
3274
- type TimePickerProps = Omit<SelectProps<undefined, string, string>, 'options'> & {
3388
+ type TimePickerProps = Omit<SingleSelectProps<undefined, string, string>, 'options'> & {
3275
3389
  format?: TimePickerFormat;
3276
3390
  timeSettings?: TimeSettings;
3277
- options?: SelectProps<undefined, string, string>['options'];
3391
+ options?: SingleSelectProps<undefined, string, string>['options'];
3278
3392
  };
3279
- 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"> & {
3280
3394
  format?: TimePickerFormat;
3281
3395
  timeSettings?: TimeSettings;
3282
- options?: SelectProps<undefined, string, string>["options"];
3396
+ options?: SingleSelectProps<undefined, string, string>["options"];
3283
3397
  } & React$1.RefAttributes<HTMLDivElement>>;
3284
3398
 
3285
3399
  type FileInputValue = File | string | null;
@@ -3525,7 +3639,6 @@ type Props$1 = {
3525
3639
  onFinish?: () => void;
3526
3640
  };
3527
3641
  declare const useCountdown: ({ initialTime, enabled, onFinish }?: Props$1) => {
3528
- count: number;
3529
3642
  timeLeft: number;
3530
3643
  isTimerRunning: boolean;
3531
3644
  resetTimer: () => void;
@@ -3959,4 +4072,4 @@ type AirbnbSearchInputProps = ComponentProps<'input'> & {
3959
4072
  };
3960
4073
  declare const AirbnbSearchInput: React$1.ForwardRefExoticComponent<Omit<AirbnbSearchInputProps, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
3961
4074
 
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 };
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 };