@chekinapp/ui 0.0.72 → 0.0.73

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
@@ -6,7 +6,7 @@ import * as AvatarPrimitive from '@radix-ui/react-avatar';
6
6
  import * as class_variance_authority_types from 'class-variance-authority/types';
7
7
  import { VariantProps } from 'class-variance-authority';
8
8
  import * as TabsPrimitive from '@radix-ui/react-tabs';
9
- import { DayPicker } from 'react-day-picker';
9
+ import { DayPicker, PropsRange, PropsBase, DateRange, Matcher } from 'react-day-picker';
10
10
  import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
11
11
  import { ColumnDef } from '@tanstack/react-table';
12
12
  import * as DialogPrimitive from '@radix-ui/react-dialog';
@@ -771,6 +771,34 @@ declare const uiKitTranslations: {
771
771
  save: string;
772
772
  dont_save: string;
773
773
  copied_exclamation: string;
774
+ search_placeholder: string;
775
+ loading_more: string;
776
+ no_options: string;
777
+ select_option: string;
778
+ clear_all: string;
779
+ remove_item: string;
780
+ upload_file: string;
781
+ download_attachment: string;
782
+ remove_file: string;
783
+ open_calendar: string;
784
+ clear_dates: string;
785
+ select_dates: string;
786
+ pick_date_range: string;
787
+ from: string;
788
+ to: string;
789
+ pick_month: string;
790
+ pick_date: string;
791
+ month: string;
792
+ day: string;
793
+ year: string;
794
+ done: string;
795
+ wrong_period_of_dates: string;
796
+ date_range_max_days_error_one: string;
797
+ date_range_max_days_error_other: string;
798
+ date_range_min_days_error_one: string;
799
+ date_range_min_days_error_other: string;
800
+ past_dates: string;
801
+ future_dates: string;
774
802
  };
775
803
  readonly es: {
776
804
  verified: string;
@@ -1176,6 +1204,34 @@ declare const uiKitI18nResources: {
1176
1204
  save: string;
1177
1205
  dont_save: string;
1178
1206
  copied_exclamation: string;
1207
+ search_placeholder: string;
1208
+ loading_more: string;
1209
+ no_options: string;
1210
+ select_option: string;
1211
+ clear_all: string;
1212
+ remove_item: string;
1213
+ upload_file: string;
1214
+ download_attachment: string;
1215
+ remove_file: string;
1216
+ open_calendar: string;
1217
+ clear_dates: string;
1218
+ select_dates: string;
1219
+ pick_date_range: string;
1220
+ from: string;
1221
+ to: string;
1222
+ pick_month: string;
1223
+ pick_date: string;
1224
+ month: string;
1225
+ day: string;
1226
+ year: string;
1227
+ done: string;
1228
+ wrong_period_of_dates: string;
1229
+ date_range_max_days_error_one: string;
1230
+ date_range_max_days_error_other: string;
1231
+ date_range_min_days_error_one: string;
1232
+ date_range_min_days_error_other: string;
1233
+ past_dates: string;
1234
+ future_dates: string;
1179
1235
  };
1180
1236
  };
1181
1237
  readonly es: {
@@ -2222,6 +2278,7 @@ interface SwitchProps extends Omit<React$1.ComponentPropsWithoutRef<typeof Switc
2222
2278
  readOnly?: boolean;
2223
2279
  label?: React$1.ReactNode;
2224
2280
  error?: string;
2281
+ wrapperClassName?: string;
2225
2282
  }
2226
2283
  declare const Switch: React$1.ForwardRefExoticComponent<SwitchProps & React$1.RefAttributes<HTMLButtonElement>>;
2227
2284
 
@@ -2998,6 +3055,244 @@ type DashboardInfiniteScrollSelectComponent = <T = undefined, V extends SelectVa
2998
3055
  }) => React$1.ReactElement;
2999
3056
  declare const DashboardInfiniteScrollSelect: DashboardInfiniteScrollSelectComponent;
3000
3057
 
3058
+ type DashboardTextareaProps = Omit<React$1.TextareaHTMLAttributes<HTMLTextAreaElement>, 'name'> & {
3059
+ label?: React$1.ReactNode;
3060
+ invalid?: boolean;
3061
+ error?: string;
3062
+ empty?: boolean;
3063
+ optional?: boolean | string;
3064
+ loading?: boolean;
3065
+ tooltip?: React$1.ReactNode;
3066
+ helperText?: string;
3067
+ name?: string;
3068
+ className?: string;
3069
+ textareaClassName?: string;
3070
+ minRows?: number;
3071
+ maxRows?: number;
3072
+ autosize?: boolean;
3073
+ };
3074
+ declare const DashboardTextarea: React$1.ForwardRefExoticComponent<Omit<React$1.TextareaHTMLAttributes<HTMLTextAreaElement>, "name"> & {
3075
+ label?: React$1.ReactNode;
3076
+ invalid?: boolean;
3077
+ error?: string;
3078
+ empty?: boolean;
3079
+ optional?: boolean | string;
3080
+ loading?: boolean;
3081
+ tooltip?: React$1.ReactNode;
3082
+ helperText?: string;
3083
+ name?: string;
3084
+ className?: string;
3085
+ textareaClassName?: string;
3086
+ minRows?: number;
3087
+ maxRows?: number;
3088
+ autosize?: boolean;
3089
+ } & React$1.RefAttributes<HTMLTextAreaElement>>;
3090
+
3091
+ type DashboardDatepickerValue = Date | null;
3092
+ type DashboardDatepickerProps = {
3093
+ label?: string;
3094
+ value?: DashboardDatepickerValue;
3095
+ defaultValue?: DashboardDatepickerValue;
3096
+ onChange?: (value: DashboardDatepickerValue, name?: string) => void;
3097
+ name?: string;
3098
+ invalid?: boolean;
3099
+ error?: string;
3100
+ disabled?: boolean;
3101
+ readOnly?: boolean;
3102
+ loading?: boolean;
3103
+ optional?: boolean | string;
3104
+ tooltip?: React$1.ReactNode;
3105
+ className?: string;
3106
+ monthLabels?: string[];
3107
+ dayPlaceholder?: string;
3108
+ yearPlaceholder?: string;
3109
+ monthPlaceholder?: string;
3110
+ mobilePlaceholder?: string;
3111
+ mobileTitle?: string;
3112
+ doneLabel?: string;
3113
+ hideErrorMessage?: boolean;
3114
+ helperText?: string;
3115
+ width?: number | string;
3116
+ locale?: string;
3117
+ minDate?: Date;
3118
+ maxDate?: Date;
3119
+ formatValue?: (date: Date) => string;
3120
+ };
3121
+ declare const DashboardDatepicker: React$1.ForwardRefExoticComponent<DashboardDatepickerProps & React$1.RefAttributes<HTMLInputElement>>;
3122
+
3123
+ declare const DEFAULT_DISPLAY_FORMAT = "dd-MM-yyyy";
3124
+ declare const formatDate: (format?: string) => (date: Date) => string;
3125
+ declare const parseDate: (displayFormat?: string) => (dateStr: string) => Date | undefined;
3126
+ type DateInput = Date | string | number;
3127
+
3128
+ type OpenDirection = 'up' | 'down';
3129
+ type DashboardDateRangePickerProps = Omit<Partial<PropsRange>, 'mode' | 'selected'> & Omit<PropsBase, 'mode' | 'selected' | 'disabled'> & {
3130
+ label?: string;
3131
+ value?: DateRange;
3132
+ defaultValue?: DateRange;
3133
+ onChange?: (value: DateRange | undefined, name?: string) => void;
3134
+ onBlur?: (value: DateRange | undefined) => void;
3135
+ name?: string;
3136
+ invalid?: boolean;
3137
+ error?: string;
3138
+ disabled?: boolean;
3139
+ readOnly?: boolean;
3140
+ loading?: boolean;
3141
+ optional?: boolean | string;
3142
+ tooltip?: React$1.ReactNode;
3143
+ className?: string;
3144
+ displayFormat?: string;
3145
+ placeholder?: string;
3146
+ fromPlaceholder?: string;
3147
+ toPlaceholder?: string;
3148
+ minDate?: DateInput;
3149
+ maxDate?: DateInput;
3150
+ minDays?: number;
3151
+ maxDays?: number;
3152
+ disabledDays?: Matcher | Matcher[];
3153
+ hideClearDates?: boolean;
3154
+ hideCalendarIcon?: boolean;
3155
+ hideErrorMessage?: boolean;
3156
+ helperText?: string;
3157
+ width?: number | string;
3158
+ numberOfMonths?: number;
3159
+ openDirection?: OpenDirection;
3160
+ autoFocusOnOpen?: boolean;
3161
+ };
3162
+ type DashboardDateRangePickerImperativeProps = {
3163
+ setDateRange: (dateRange?: DateRange) => void;
3164
+ focus: () => void;
3165
+ open: () => void;
3166
+ close: () => void;
3167
+ };
3168
+ declare const DashboardDateRangePicker: React$1.ForwardRefExoticComponent<Omit<Partial<PropsRange>, "mode" | "selected"> & Omit<PropsBase, "disabled" | "mode" | "selected"> & {
3169
+ label?: string;
3170
+ value?: DateRange;
3171
+ defaultValue?: DateRange;
3172
+ onChange?: (value: DateRange | undefined, name?: string) => void;
3173
+ onBlur?: (value: DateRange | undefined) => void;
3174
+ name?: string;
3175
+ invalid?: boolean;
3176
+ error?: string;
3177
+ disabled?: boolean;
3178
+ readOnly?: boolean;
3179
+ loading?: boolean;
3180
+ optional?: boolean | string;
3181
+ tooltip?: React$1.ReactNode;
3182
+ className?: string;
3183
+ displayFormat?: string;
3184
+ placeholder?: string;
3185
+ fromPlaceholder?: string;
3186
+ toPlaceholder?: string;
3187
+ minDate?: DateInput;
3188
+ maxDate?: DateInput;
3189
+ minDays?: number;
3190
+ maxDays?: number;
3191
+ disabledDays?: Matcher | Matcher[];
3192
+ hideClearDates?: boolean;
3193
+ hideCalendarIcon?: boolean;
3194
+ hideErrorMessage?: boolean;
3195
+ helperText?: string;
3196
+ width?: number | string;
3197
+ numberOfMonths?: number;
3198
+ openDirection?: OpenDirection;
3199
+ autoFocusOnOpen?: boolean;
3200
+ } & React$1.RefAttributes<DashboardDateRangePickerImperativeProps>>;
3201
+
3202
+ type IsDayBlockedProps = {
3203
+ maxDays?: number;
3204
+ minDays?: number;
3205
+ minDate?: DateInput;
3206
+ maxDate?: DateInput;
3207
+ datesRange?: DateRange;
3208
+ };
3209
+ declare const isDayBlocked: ({ minDate, maxDate, maxDays, minDays, datesRange }: IsDayBlockedProps) => (date: Date) => boolean;
3210
+
3211
+ type CreateDisabledMatchersProps = {
3212
+ disabledDays?: Matcher | Matcher[];
3213
+ minDate?: DateInput;
3214
+ maxDate?: DateInput;
3215
+ maxDays?: number;
3216
+ minDays?: number;
3217
+ datesRange?: DateRange;
3218
+ };
3219
+ declare const createDisabledMatchers: ({ disabledDays, minDate, maxDate, maxDays, minDays, datesRange, }: CreateDisabledMatchersProps) => Matcher[];
3220
+
3221
+ type UseValidateDatesProps = {
3222
+ minDays?: number;
3223
+ maxDays?: number;
3224
+ minDate?: DateInput;
3225
+ maxDate?: DateInput;
3226
+ disabledDays?: Matcher | Matcher[];
3227
+ onError?: (error: string) => void;
3228
+ onSuccess?: () => void;
3229
+ displayFormat?: string;
3230
+ };
3231
+ declare function useValidateDates({ minDays, maxDays, minDate, maxDate, disabledDays, onError, onSuccess, displayFormat, }: UseValidateDatesProps): {
3232
+ validateDates: (dates?: DateRange) => boolean;
3233
+ };
3234
+
3235
+ type DashboardTimePickerFormat = 'time' | 'timeEach15Minutes' | 'timeEach30Minutes' | 'hours';
3236
+ type DashboardTimeSettings = {
3237
+ intervalUnit?: 'M' | 'H';
3238
+ interval?: number;
3239
+ minTime?: string;
3240
+ maxTime?: string;
3241
+ addNextDay?: boolean;
3242
+ };
3243
+ type DashboardTimePickerProps = Omit<DashboardSelectProps<undefined, string, string>, 'options'> & {
3244
+ format?: DashboardTimePickerFormat;
3245
+ timeSettings?: DashboardTimeSettings;
3246
+ options?: DashboardSelectProps<undefined, string, string>['options'];
3247
+ };
3248
+ declare const DashboardTimePicker: React$1.ForwardRefExoticComponent<Omit<DashboardSelectProps<undefined, string, string>, "options"> & {
3249
+ format?: DashboardTimePickerFormat;
3250
+ timeSettings?: DashboardTimeSettings;
3251
+ options?: DashboardSelectProps<undefined, string, string>["options"];
3252
+ } & React$1.RefAttributes<HTMLButtonElement>>;
3253
+
3254
+ type DashboardFileInputValue = File | string | null;
3255
+ type DashboardFileInputProps = {
3256
+ label?: string;
3257
+ value?: DashboardFileInputValue;
3258
+ onChange?: (value: File | null, event?: React$1.ChangeEvent<HTMLInputElement>) => void;
3259
+ onDownload?: (url: string) => void;
3260
+ name?: string;
3261
+ placeholder?: string;
3262
+ accept?: string;
3263
+ multiple?: boolean;
3264
+ disabled?: boolean;
3265
+ readOnly?: boolean;
3266
+ loading?: boolean;
3267
+ invalid?: boolean;
3268
+ error?: string;
3269
+ optional?: boolean | string;
3270
+ tooltip?: React$1.ReactNode;
3271
+ helperText?: string;
3272
+ hideErrorMessage?: boolean;
3273
+ className?: string;
3274
+ width?: number | string;
3275
+ downloadLabel?: string;
3276
+ fileNameFromUrl?: (url: string) => string;
3277
+ };
3278
+ declare const DashboardFileInput: React$1.ForwardRefExoticComponent<DashboardFileInputProps & React$1.RefAttributes<HTMLInputElement>>;
3279
+
3280
+ type DashboardSelectIconsBoxProps = {
3281
+ children: React$1.ReactNode;
3282
+ icons: string[];
3283
+ renderIcon: (iconName: string, color: string) => React$1.ReactNode;
3284
+ onSelect: (iconName: string) => void;
3285
+ columns?: number;
3286
+ iconsColor?: string;
3287
+ isOpen?: boolean;
3288
+ defaultOpen?: boolean;
3289
+ onOpenChange?: (isOpen: boolean) => void;
3290
+ position?: 'left' | 'right' | 'center';
3291
+ className?: string;
3292
+ boxClassName?: string;
3293
+ };
3294
+ declare function DashboardSelectIconsBox({ children, icons, renderIcon, onSelect, columns, iconsColor, isOpen: controlledOpen, defaultOpen, onOpenChange, position, className, boxClassName, }: DashboardSelectIconsBoxProps): react_jsx_runtime.JSX.Element;
3295
+
3001
3296
  type SearchableSelectValue = string | number;
3002
3297
  type SearchableSelectProps<T = undefined, V extends SearchableSelectValue = string, L extends ReactNode = string> = {
3003
3298
  options: SelectOption<T, V, L>[];
@@ -3297,4 +3592,4 @@ declare function toastResponseError(error: unknown, options?: CustomToastOptions
3297
3592
 
3298
3593
  declare function getErrorMessage(error?: any): any;
3299
3594
 
3300
- export { Accordion, AccordionContent, type AccordionContentProps, AccordionItem, AccordionTrigger, type AccordionTriggerProps, AirbnbInput, type AirbnbInputProps, AirbnbSearchInput, AirbnbSelect, type AirbnbSelectProps, AlertBox, type AlertBoxProps, AlertSize, AlertSizes, 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, CheckList, type CheckListProps, Checkbox, CheckboxDropdownGroup, type CheckboxDropdownGroupConfig, type CheckboxDropdownGroupProps, CheckboxDropdownMultiGroup, CheckboxGroup, type CheckboxGroupProps, type CheckboxOption, type CheckboxProps, type CheckboxSize, CircularLoader, CommingSoonBadge, type CommingSoonBadgeProps, ConfirmationDialog, type ConfirmationDialogProps, CopyIcon, type CopyIconProps, CopyInput, type CopyInputProps, CopyLinkButton, type CopyLinkButtonProps, CopyString, type CopyStringProps, CustomCheckboxDropdownGroup, type CustomIconEntry, DEVICE_BREAKPOINTS, DashboardCreatableMultiSelect, type DashboardCreatableMultiSelectProps, DashboardInfiniteScrollSelect, type DashboardInfiniteScrollSelectProps, DashboardInput, type DashboardInputProps, DashboardMultiSelect, type DashboardMultiSelectChipRenderer, type DashboardMultiSelectProps, DashboardSelect, type DashboardSelectProps, DataTable, type DataTableProps, DatePicker, type DatePickerProps, type DatePickerValue, DateTableFilter, DebouncedSearchInput, type DebouncedSearchInputProps, DefaultSelectTrigger, type DefaultSelectTriggerProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DialogVisuallyHidden, DividingSubsection, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownButton, type DropdownButtonProps, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, type DropdownMenuContentSide, DropdownMenuGroup, DropdownMenuItem, DropdownMenuItemContent, type DropdownMenuItemContentProps, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptySectionPlaceholder, type EmptySectionPlaceholderProps, EmptyTitle, ErrorMessage, type ErrorMessageProps, ExternalLink, type ExternalLinkProps, FieldErrorMessage, type FieldErrorMessageProps, FieldTrigger, type FieldTriggerProps, FileInputButton, type FileInputButtonProps, FormBox, Content as FormBoxContent, type FormBoxContentProps, Header as FormBoxHeader, type FormBoxHeaderProps, Root$1 as FormBoxRoot, type FormBoxRootProps, SubHeader as FormBoxSubHeader, type FormBoxSubHeaderProps, FramedIcon, type FramedIconProps, FreeTextField, type FreeTextFieldProps, HALO_ICON_STATUS, HaloIcon, type HaloIconProps, HelpTooltip, type HelpTooltipProps, IconButton, type IconButtonProps, type IconEntry, IconsDropdown, type IconsDropdownProps, Image, ImageFullScreenView, type ImageFullScreenViewProps, type ImageProps, InfinitySelect, type InfinitySelectProps, InfoBox, type InfoBoxProps, Input, InputOTP, InputOTPGroup, type InputOTPProps, InputOTPSeparator, InputOTPSlot, type InputProps, Label, type LabelProps, LargeModal, type LargeModalProps, LearnMoreButton, type LearnMoreButtonProps, Link, type LinkProps, LoadingBar, type LoadingBarProps, type LucideIconEntry, Modal, ModalButton, ModalLoader, type ModalLoaderProps, type ModalProps, MultiSelect, type MultiSelectProps, NumberedList, type NumberedListProps, type OptionsCardsProps, OverlayLoader, type OverlayLoaderProps, Pagination, type PaginationProps, type PaginationVariant, PhoneField, type PhoneFieldOption, type PhoneFieldProps, type PhoneFieldValue, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, PopoverTrigger, PopoverWithTooltip, type PopoverWithTooltipProps, Radio, type RadioCardOption, MemoizedRadioCardsGroup as RadioCardsGroup, RadioGroup, RadioGroupItem, type RadioOption, type RadioProps, RadioWithBorder, RatingProgress, type RatingProgressProps, RatingRadioGroup, type RatingRadioGroupProps, RatingStars, type RatingStarsProps, type RegisterUiKitI18nOptions, ResponsiveSheet, type ResponsiveSheetProps, RotateArrow, type RotateArrowProps, ScrollArea, type ScrollAreaProps, ScrollBar, type ScrollBarProps, type ScrollableAreaState, SearchButton, type SearchButtonProps, SearchInput, type SearchInputProps, SearchableSelect, type SearchableSelectProps, type SearchableSelectValue, Section, SectionGroup, type SectionGroupItemProps, type SectionGroupLabelProps, type SectionGroupProps, type SectionProps, SectionTag, SectionTagColors, type SectionTagProps, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, type SelectOption, SelectPortal, type SelectProps, SelectRoot, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, type SelectSize, SelectTrigger, SelectValue$2 as SelectValue, 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, Skeleton, type SkeletonProps, Slider, SliderNext, SliderPrevious, type SliderProps, SliderRoot, type SliderRootProps, SliderSlide, SliderTrack, SliderViewport, 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, TextField, type TextFieldProps, Textarea, type TextareaProps, ThreeDotsLoader, type ThreeDotsLoaderProps, Timeline, TimelineConnector, type TimelineConnectorProps, TimelineContent, type TimelineContentProps, type TimelineContextProps, TimelineDescription, type TimelineDescriptionProps, TimelineDot, type TimelineDotProps, TimelineItem, type TimelineItemProps, type TimelineProps, TimelineSeparator, type TimelineSeparatorProps, TimelineTitle, type TimelineTitleProps, ToggleGroup, ToggleGroupItem, Toggles, type TogglesForwardType, type TogglesProps, Tooltip, TooltipContent, type TooltipContentProps, type TooltipProps, TooltipProvider, TooltipRoot, type TooltipRootProps, TooltipRootWrapper, TooltipTrigger, UI_KIT_I18N_NAMESPACE, type UiKitLocale, UploadedFilesList, type UploadedFilesListProps, type UseScrollableAreaOptions, type UseScrollableAreaResult, VerticalTabs, type VerticalTabsProps, type VerticalTabsStep, VideoModal, type VideoModalProps, VideoPlayer, type VideoPlayerProps, Webcam, type WebcamProps, type WebcamRefTypes, WideButton, type WideButtonProps, addSupportEmailToMessage, badgeVariants, bookmarkTabsListVariants, bookmarkTabsTriggerVariants, buttonGroupVariants, buttonVariants, calendarClassNames, cn, copyToClipboard, emptyMediaVariants, getErrorMessage, getScrollableAreaState, getSidebarState, inputVariants, isNumeric, labelVariants, registerUiKitI18n, scrollToTop, sectionTagVariants, switchThumbVariants, switchVariants, tabsListVariants, tabsTriggerVariants, toCssSize, toastResponseError, toggleVariants, uiKitI18nResources, uiKitTranslations, useAbortController, useAccordionState, useClickEscape, useCombinedRef, useCopyToClipboard, useDebounce, useDebouncedFunction, useEvent, useHover, useIframeFocusTrapFallback, useIsFormTouched, useIsMobile, useIsMounted, useKeyDown, useLoadMore, useModalControls, useOutsideClick, usePagination, usePrevious, usePromisedModalControls, useRadioOptions, useResetAfterRequestStatus, useScreenResize, useScrollFrameIntoView, useScrollToTop, useScrollableArea, useSearchInput, useSidebar, useSidebarMenuButton, useSidebarSafe, useSliderContext, useStickyStuck, useSwitchSectionActive, useTimeline, useTimeout, useTimeoutRef, useTimer, useUpdateToast };
3595
+ export { Accordion, AccordionContent, type AccordionContentProps, AccordionItem, AccordionTrigger, type AccordionTriggerProps, AirbnbInput, type AirbnbInputProps, AirbnbSearchInput, AirbnbSelect, type AirbnbSelectProps, AlertBox, type AlertBoxProps, AlertSize, AlertSizes, 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, CheckList, type CheckListProps, Checkbox, CheckboxDropdownGroup, type CheckboxDropdownGroupConfig, type CheckboxDropdownGroupProps, CheckboxDropdownMultiGroup, CheckboxGroup, type CheckboxGroupProps, type CheckboxOption, type CheckboxProps, type CheckboxSize, CircularLoader, CommingSoonBadge, type CommingSoonBadgeProps, ConfirmationDialog, type ConfirmationDialogProps, CopyIcon, type CopyIconProps, CopyInput, type CopyInputProps, CopyLinkButton, type CopyLinkButtonProps, CopyString, type CopyStringProps, CustomCheckboxDropdownGroup, type CustomIconEntry, DEFAULT_DISPLAY_FORMAT, DEVICE_BREAKPOINTS, DashboardCreatableMultiSelect, type DashboardCreatableMultiSelectProps, DashboardDateRangePicker, type DashboardDateRangePickerImperativeProps, type OpenDirection as DashboardDateRangePickerOpenDirection, type DashboardDateRangePickerProps, DashboardDatepicker, type DashboardDatepickerProps, type DashboardDatepickerValue, DashboardFileInput, type DashboardFileInputProps, type DashboardFileInputValue, DashboardInfiniteScrollSelect, type DashboardInfiniteScrollSelectProps, DashboardInput, type DashboardInputProps, DashboardMultiSelect, type DashboardMultiSelectChipRenderer, type DashboardMultiSelectProps, DashboardSelect, DashboardSelectIconsBox, type DashboardSelectIconsBoxProps, type DashboardSelectProps, DashboardTextarea, type DashboardTextareaProps, DashboardTimePicker, type DashboardTimePickerFormat, type DashboardTimePickerProps, type DashboardTimeSettings, DataTable, type DataTableProps, DatePicker, type DatePickerProps, type DatePickerValue, DateTableFilter, DebouncedSearchInput, type DebouncedSearchInputProps, DefaultSelectTrigger, type DefaultSelectTriggerProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DialogVisuallyHidden, DividingSubsection, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownButton, type DropdownButtonProps, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, type DropdownMenuContentSide, DropdownMenuGroup, DropdownMenuItem, DropdownMenuItemContent, type DropdownMenuItemContentProps, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptySectionPlaceholder, type EmptySectionPlaceholderProps, EmptyTitle, ErrorMessage, type ErrorMessageProps, ExternalLink, type ExternalLinkProps, FieldErrorMessage, type FieldErrorMessageProps, FieldTrigger, type FieldTriggerProps, FileInputButton, type FileInputButtonProps, FormBox, Content as FormBoxContent, type FormBoxContentProps, Header as FormBoxHeader, type FormBoxHeaderProps, Root$1 as FormBoxRoot, type FormBoxRootProps, SubHeader as FormBoxSubHeader, type FormBoxSubHeaderProps, FramedIcon, type FramedIconProps, FreeTextField, type FreeTextFieldProps, HALO_ICON_STATUS, HaloIcon, type HaloIconProps, HelpTooltip, type HelpTooltipProps, IconButton, type IconButtonProps, type IconEntry, IconsDropdown, type IconsDropdownProps, Image, ImageFullScreenView, type ImageFullScreenViewProps, type ImageProps, InfinitySelect, type InfinitySelectProps, InfoBox, type InfoBoxProps, Input, InputOTP, InputOTPGroup, type InputOTPProps, InputOTPSeparator, InputOTPSlot, type InputProps, Label, type LabelProps, LargeModal, type LargeModalProps, LearnMoreButton, type LearnMoreButtonProps, Link, type LinkProps, LoadingBar, type LoadingBarProps, type LucideIconEntry, Modal, ModalButton, ModalLoader, type ModalLoaderProps, type ModalProps, MultiSelect, type MultiSelectProps, NumberedList, type NumberedListProps, type OptionsCardsProps, OverlayLoader, type OverlayLoaderProps, Pagination, type PaginationProps, type PaginationVariant, PhoneField, type PhoneFieldOption, type PhoneFieldProps, type PhoneFieldValue, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, PopoverTrigger, PopoverWithTooltip, type PopoverWithTooltipProps, Radio, type RadioCardOption, MemoizedRadioCardsGroup as RadioCardsGroup, RadioGroup, RadioGroupItem, type RadioOption, type RadioProps, RadioWithBorder, RatingProgress, type RatingProgressProps, RatingRadioGroup, type RatingRadioGroupProps, RatingStars, type RatingStarsProps, type RegisterUiKitI18nOptions, ResponsiveSheet, type ResponsiveSheetProps, RotateArrow, type RotateArrowProps, ScrollArea, type ScrollAreaProps, ScrollBar, type ScrollBarProps, type ScrollableAreaState, SearchButton, type SearchButtonProps, SearchInput, type SearchInputProps, SearchableSelect, type SearchableSelectProps, type SearchableSelectValue, Section, SectionGroup, type SectionGroupItemProps, type SectionGroupLabelProps, type SectionGroupProps, type SectionProps, SectionTag, SectionTagColors, type SectionTagProps, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, type SelectOption, SelectPortal, type SelectProps, SelectRoot, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, type SelectSize, SelectTrigger, SelectValue$2 as SelectValue, 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, Skeleton, type SkeletonProps, Slider, SliderNext, SliderPrevious, type SliderProps, SliderRoot, type SliderRootProps, SliderSlide, SliderTrack, SliderViewport, 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, TextField, type TextFieldProps, Textarea, type TextareaProps, ThreeDotsLoader, type ThreeDotsLoaderProps, Timeline, TimelineConnector, type TimelineConnectorProps, TimelineContent, type TimelineContentProps, type TimelineContextProps, TimelineDescription, type TimelineDescriptionProps, TimelineDot, type TimelineDotProps, TimelineItem, type TimelineItemProps, type TimelineProps, TimelineSeparator, type TimelineSeparatorProps, TimelineTitle, type TimelineTitleProps, ToggleGroup, ToggleGroupItem, Toggles, type TogglesForwardType, type TogglesProps, Tooltip, TooltipContent, type TooltipContentProps, type TooltipProps, TooltipProvider, TooltipRoot, type TooltipRootProps, TooltipRootWrapper, TooltipTrigger, UI_KIT_I18N_NAMESPACE, type UiKitLocale, UploadedFilesList, type UploadedFilesListProps, type UseScrollableAreaOptions, type UseScrollableAreaResult, VerticalTabs, type VerticalTabsProps, type VerticalTabsStep, VideoModal, type VideoModalProps, VideoPlayer, type VideoPlayerProps, Webcam, type WebcamProps, type WebcamRefTypes, WideButton, type WideButtonProps, addSupportEmailToMessage, badgeVariants, bookmarkTabsListVariants, bookmarkTabsTriggerVariants, buttonGroupVariants, buttonVariants, calendarClassNames, cn, copyToClipboard, createDisabledMatchers, emptyMediaVariants, formatDate, getErrorMessage, getScrollableAreaState, getSidebarState, inputVariants, isDayBlocked, isNumeric, labelVariants, parseDate, registerUiKitI18n, scrollToTop, sectionTagVariants, switchThumbVariants, switchVariants, tabsListVariants, tabsTriggerVariants, toCssSize, toastResponseError, toggleVariants, uiKitI18nResources, uiKitTranslations, useAbortController, useAccordionState, useClickEscape, useCombinedRef, useCopyToClipboard, useDebounce, useDebouncedFunction, useEvent, useHover, useIframeFocusTrapFallback, useIsFormTouched, useIsMobile, useIsMounted, useKeyDown, useLoadMore, useModalControls, useOutsideClick, usePagination, usePrevious, usePromisedModalControls, useRadioOptions, useResetAfterRequestStatus, useScreenResize, useScrollFrameIntoView, useScrollToTop, useScrollableArea, useSearchInput, useSidebar, useSidebarMenuButton, useSidebarSafe, useSliderContext, useStickyStuck, useSwitchSectionActive, useTimeline, useTimeout, useTimeoutRef, useTimer, useUpdateToast, useValidateDates };