@chekinapp/ui 0.0.72 → 0.0.74

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,12 +1,12 @@
1
1
  import * as React$1 from 'react';
2
- import React__default, { ReactNode, ElementType, ComponentProps, HTMLAttributes, InputHTMLAttributes, PropsWithChildren, MouseEvent, SVGProps, ComponentType, ImgHTMLAttributes, AnchorHTMLAttributes, Ref, FC, ButtonHTMLAttributes, TdHTMLAttributes, ThHTMLAttributes, MouseEventHandler, ComponentPropsWithoutRef, ReactElement, ForwardedRef, TextareaHTMLAttributes, FocusEventHandler, RefCallback, RefObject, ChangeEvent } from 'react';
2
+ import React__default, { ReactNode, ElementType, HTMLAttributes, InputHTMLAttributes, ComponentProps, PropsWithChildren, MouseEvent, SVGProps, ComponentType, ImgHTMLAttributes, AnchorHTMLAttributes, Ref, FC, ButtonHTMLAttributes, TdHTMLAttributes, ThHTMLAttributes, MouseEventHandler, ComponentPropsWithoutRef, ReactElement, ForwardedRef, TextareaHTMLAttributes, FocusEventHandler, RefCallback, RefObject, ChangeEvent } from 'react';
3
3
  import * as AccordionPrimitive from '@radix-ui/react-accordion';
4
4
  import * as react_jsx_runtime from 'react/jsx-runtime';
5
5
  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';
@@ -310,14 +310,6 @@ type CopyIconProps = {
310
310
  };
311
311
  declare function CopyIcon({ textToCopy, className, tooltipText, size, variant, onClick, }: CopyIconProps): react_jsx_runtime.JSX.Element;
312
312
 
313
- type InputProps = React$1.ComponentProps<'input'>;
314
- declare const Input: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
315
-
316
- type CopyInputProps = Omit<ComponentProps<typeof Input>, 'value'> & {
317
- value?: string | number;
318
- };
319
- declare function CopyInput({ value, className, ...props }: CopyInputProps): react_jsx_runtime.JSX.Element;
320
-
321
313
  type CopyLinkButtonProps = {
322
314
  link: string | undefined;
323
315
  labelText: string;
@@ -661,6 +653,9 @@ interface ImageProps extends ImgHTMLAttributes<HTMLImageElement> {
661
653
  }
662
654
  declare function Image({ src, alt, className, fallbackSrc, ...props }: ImageProps): react_jsx_runtime.JSX.Element;
663
655
 
656
+ type InputProps = React$1.ComponentProps<'input'>;
657
+ declare const Input: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
658
+
664
659
  type InputOTPProps = {
665
660
  maxLength: number;
666
661
  value?: string;
@@ -771,6 +766,34 @@ declare const uiKitTranslations: {
771
766
  save: string;
772
767
  dont_save: string;
773
768
  copied_exclamation: string;
769
+ search_placeholder: string;
770
+ loading_more: string;
771
+ no_options: string;
772
+ select_option: string;
773
+ clear_all: string;
774
+ remove_item: string;
775
+ upload_file: string;
776
+ download_attachment: string;
777
+ remove_file: string;
778
+ open_calendar: string;
779
+ clear_dates: string;
780
+ select_dates: string;
781
+ pick_date_range: string;
782
+ from: string;
783
+ to: string;
784
+ pick_month: string;
785
+ pick_date: string;
786
+ month: string;
787
+ day: string;
788
+ year: string;
789
+ done: string;
790
+ wrong_period_of_dates: string;
791
+ date_range_max_days_error_one: string;
792
+ date_range_max_days_error_other: string;
793
+ date_range_min_days_error_one: string;
794
+ date_range_min_days_error_other: string;
795
+ past_dates: string;
796
+ future_dates: string;
774
797
  };
775
798
  readonly es: {
776
799
  verified: string;
@@ -1176,6 +1199,34 @@ declare const uiKitI18nResources: {
1176
1199
  save: string;
1177
1200
  dont_save: string;
1178
1201
  copied_exclamation: string;
1202
+ search_placeholder: string;
1203
+ loading_more: string;
1204
+ no_options: string;
1205
+ select_option: string;
1206
+ clear_all: string;
1207
+ remove_item: string;
1208
+ upload_file: string;
1209
+ download_attachment: string;
1210
+ remove_file: string;
1211
+ open_calendar: string;
1212
+ clear_dates: string;
1213
+ select_dates: string;
1214
+ pick_date_range: string;
1215
+ from: string;
1216
+ to: string;
1217
+ pick_month: string;
1218
+ pick_date: string;
1219
+ month: string;
1220
+ day: string;
1221
+ year: string;
1222
+ done: string;
1223
+ wrong_period_of_dates: string;
1224
+ date_range_max_days_error_one: string;
1225
+ date_range_max_days_error_other: string;
1226
+ date_range_min_days_error_one: string;
1227
+ date_range_min_days_error_other: string;
1228
+ past_dates: string;
1229
+ future_dates: string;
1179
1230
  };
1180
1231
  };
1181
1232
  readonly es: {
@@ -2222,6 +2273,7 @@ interface SwitchProps extends Omit<React$1.ComponentPropsWithoutRef<typeof Switc
2222
2273
  readOnly?: boolean;
2223
2274
  label?: React$1.ReactNode;
2224
2275
  error?: string;
2276
+ wrapperClassName?: string;
2225
2277
  }
2226
2278
  declare const Switch: React$1.ForwardRefExoticComponent<SwitchProps & React$1.RefAttributes<HTMLButtonElement>>;
2227
2279
 
@@ -2998,6 +3050,244 @@ type DashboardInfiniteScrollSelectComponent = <T = undefined, V extends SelectVa
2998
3050
  }) => React$1.ReactElement;
2999
3051
  declare const DashboardInfiniteScrollSelect: DashboardInfiniteScrollSelectComponent;
3000
3052
 
3053
+ type DashboardTextareaProps = Omit<React$1.TextareaHTMLAttributes<HTMLTextAreaElement>, 'name'> & {
3054
+ label?: React$1.ReactNode;
3055
+ invalid?: boolean;
3056
+ error?: string;
3057
+ empty?: boolean;
3058
+ optional?: boolean | string;
3059
+ loading?: boolean;
3060
+ tooltip?: React$1.ReactNode;
3061
+ helperText?: string;
3062
+ name?: string;
3063
+ className?: string;
3064
+ textareaClassName?: string;
3065
+ minRows?: number;
3066
+ maxRows?: number;
3067
+ autosize?: boolean;
3068
+ };
3069
+ declare const DashboardTextarea: React$1.ForwardRefExoticComponent<Omit<React$1.TextareaHTMLAttributes<HTMLTextAreaElement>, "name"> & {
3070
+ label?: React$1.ReactNode;
3071
+ invalid?: boolean;
3072
+ error?: string;
3073
+ empty?: boolean;
3074
+ optional?: boolean | string;
3075
+ loading?: boolean;
3076
+ tooltip?: React$1.ReactNode;
3077
+ helperText?: string;
3078
+ name?: string;
3079
+ className?: string;
3080
+ textareaClassName?: string;
3081
+ minRows?: number;
3082
+ maxRows?: number;
3083
+ autosize?: boolean;
3084
+ } & React$1.RefAttributes<HTMLTextAreaElement>>;
3085
+
3086
+ type DashboardDatepickerValue = Date | null;
3087
+ type DashboardDatepickerProps = {
3088
+ label?: string;
3089
+ value?: DashboardDatepickerValue;
3090
+ defaultValue?: DashboardDatepickerValue;
3091
+ onChange?: (value: DashboardDatepickerValue, name?: string) => void;
3092
+ name?: string;
3093
+ invalid?: boolean;
3094
+ error?: string;
3095
+ disabled?: boolean;
3096
+ readOnly?: boolean;
3097
+ loading?: boolean;
3098
+ optional?: boolean | string;
3099
+ tooltip?: React$1.ReactNode;
3100
+ className?: string;
3101
+ monthLabels?: string[];
3102
+ dayPlaceholder?: string;
3103
+ yearPlaceholder?: string;
3104
+ monthPlaceholder?: string;
3105
+ mobilePlaceholder?: string;
3106
+ mobileTitle?: string;
3107
+ doneLabel?: string;
3108
+ hideErrorMessage?: boolean;
3109
+ helperText?: string;
3110
+ width?: number | string;
3111
+ locale?: string;
3112
+ minDate?: Date;
3113
+ maxDate?: Date;
3114
+ formatValue?: (date: Date) => string;
3115
+ };
3116
+ declare const DashboardDatepicker: React$1.ForwardRefExoticComponent<DashboardDatepickerProps & React$1.RefAttributes<HTMLInputElement>>;
3117
+
3118
+ declare const DEFAULT_DISPLAY_FORMAT = "dd-MM-yyyy";
3119
+ declare const formatDate: (format?: string) => (date: Date) => string;
3120
+ declare const parseDate: (displayFormat?: string) => (dateStr: string) => Date | undefined;
3121
+ type DateInput = Date | string | number;
3122
+
3123
+ type OpenDirection = 'up' | 'down';
3124
+ type DashboardDateRangePickerProps = Omit<Partial<PropsRange>, 'mode' | 'selected'> & Omit<PropsBase, 'mode' | 'selected' | 'disabled'> & {
3125
+ label?: string;
3126
+ value?: DateRange;
3127
+ defaultValue?: DateRange;
3128
+ onChange?: (value: DateRange | undefined, name?: string) => void;
3129
+ onBlur?: (value: DateRange | undefined) => void;
3130
+ name?: string;
3131
+ invalid?: boolean;
3132
+ error?: string;
3133
+ disabled?: boolean;
3134
+ readOnly?: boolean;
3135
+ loading?: boolean;
3136
+ optional?: boolean | string;
3137
+ tooltip?: React$1.ReactNode;
3138
+ className?: string;
3139
+ displayFormat?: string;
3140
+ placeholder?: string;
3141
+ fromPlaceholder?: string;
3142
+ toPlaceholder?: string;
3143
+ minDate?: DateInput;
3144
+ maxDate?: DateInput;
3145
+ minDays?: number;
3146
+ maxDays?: number;
3147
+ disabledDays?: Matcher | Matcher[];
3148
+ hideClearDates?: boolean;
3149
+ hideCalendarIcon?: boolean;
3150
+ hideErrorMessage?: boolean;
3151
+ helperText?: string;
3152
+ width?: number | string;
3153
+ numberOfMonths?: number;
3154
+ openDirection?: OpenDirection;
3155
+ autoFocusOnOpen?: boolean;
3156
+ };
3157
+ type DashboardDateRangePickerImperativeProps = {
3158
+ setDateRange: (dateRange?: DateRange) => void;
3159
+ focus: () => void;
3160
+ open: () => void;
3161
+ close: () => void;
3162
+ };
3163
+ declare const DashboardDateRangePicker: React$1.ForwardRefExoticComponent<Omit<Partial<PropsRange>, "mode" | "selected"> & Omit<PropsBase, "disabled" | "mode" | "selected"> & {
3164
+ label?: string;
3165
+ value?: DateRange;
3166
+ defaultValue?: DateRange;
3167
+ onChange?: (value: DateRange | undefined, name?: string) => void;
3168
+ onBlur?: (value: DateRange | undefined) => void;
3169
+ name?: string;
3170
+ invalid?: boolean;
3171
+ error?: string;
3172
+ disabled?: boolean;
3173
+ readOnly?: boolean;
3174
+ loading?: boolean;
3175
+ optional?: boolean | string;
3176
+ tooltip?: React$1.ReactNode;
3177
+ className?: string;
3178
+ displayFormat?: string;
3179
+ placeholder?: string;
3180
+ fromPlaceholder?: string;
3181
+ toPlaceholder?: string;
3182
+ minDate?: DateInput;
3183
+ maxDate?: DateInput;
3184
+ minDays?: number;
3185
+ maxDays?: number;
3186
+ disabledDays?: Matcher | Matcher[];
3187
+ hideClearDates?: boolean;
3188
+ hideCalendarIcon?: boolean;
3189
+ hideErrorMessage?: boolean;
3190
+ helperText?: string;
3191
+ width?: number | string;
3192
+ numberOfMonths?: number;
3193
+ openDirection?: OpenDirection;
3194
+ autoFocusOnOpen?: boolean;
3195
+ } & React$1.RefAttributes<DashboardDateRangePickerImperativeProps>>;
3196
+
3197
+ type IsDayBlockedProps = {
3198
+ maxDays?: number;
3199
+ minDays?: number;
3200
+ minDate?: DateInput;
3201
+ maxDate?: DateInput;
3202
+ datesRange?: DateRange;
3203
+ };
3204
+ declare const isDayBlocked: ({ minDate, maxDate, maxDays, minDays, datesRange }: IsDayBlockedProps) => (date: Date) => boolean;
3205
+
3206
+ type CreateDisabledMatchersProps = {
3207
+ disabledDays?: Matcher | Matcher[];
3208
+ minDate?: DateInput;
3209
+ maxDate?: DateInput;
3210
+ maxDays?: number;
3211
+ minDays?: number;
3212
+ datesRange?: DateRange;
3213
+ };
3214
+ declare const createDisabledMatchers: ({ disabledDays, minDate, maxDate, maxDays, minDays, datesRange, }: CreateDisabledMatchersProps) => Matcher[];
3215
+
3216
+ type UseValidateDatesProps = {
3217
+ minDays?: number;
3218
+ maxDays?: number;
3219
+ minDate?: DateInput;
3220
+ maxDate?: DateInput;
3221
+ disabledDays?: Matcher | Matcher[];
3222
+ onError?: (error: string) => void;
3223
+ onSuccess?: () => void;
3224
+ displayFormat?: string;
3225
+ };
3226
+ declare function useValidateDates({ minDays, maxDays, minDate, maxDate, disabledDays, onError, onSuccess, displayFormat, }: UseValidateDatesProps): {
3227
+ validateDates: (dates?: DateRange) => boolean;
3228
+ };
3229
+
3230
+ type DashboardTimePickerFormat = 'time' | 'timeEach15Minutes' | 'timeEach30Minutes' | 'hours';
3231
+ type DashboardTimeSettings = {
3232
+ intervalUnit?: 'M' | 'H';
3233
+ interval?: number;
3234
+ minTime?: string;
3235
+ maxTime?: string;
3236
+ addNextDay?: boolean;
3237
+ };
3238
+ type DashboardTimePickerProps = Omit<DashboardSelectProps<undefined, string, string>, 'options'> & {
3239
+ format?: DashboardTimePickerFormat;
3240
+ timeSettings?: DashboardTimeSettings;
3241
+ options?: DashboardSelectProps<undefined, string, string>['options'];
3242
+ };
3243
+ declare const DashboardTimePicker: React$1.ForwardRefExoticComponent<Omit<DashboardSelectProps<undefined, string, string>, "options"> & {
3244
+ format?: DashboardTimePickerFormat;
3245
+ timeSettings?: DashboardTimeSettings;
3246
+ options?: DashboardSelectProps<undefined, string, string>["options"];
3247
+ } & React$1.RefAttributes<HTMLButtonElement>>;
3248
+
3249
+ type DashboardFileInputValue = File | string | null;
3250
+ type DashboardFileInputProps = {
3251
+ label?: string;
3252
+ value?: DashboardFileInputValue;
3253
+ onChange?: (value: File | null, event?: React$1.ChangeEvent<HTMLInputElement>) => void;
3254
+ onDownload?: (url: string) => void;
3255
+ name?: string;
3256
+ placeholder?: string;
3257
+ accept?: string;
3258
+ multiple?: boolean;
3259
+ disabled?: boolean;
3260
+ readOnly?: boolean;
3261
+ loading?: boolean;
3262
+ invalid?: boolean;
3263
+ error?: string;
3264
+ optional?: boolean | string;
3265
+ tooltip?: React$1.ReactNode;
3266
+ helperText?: string;
3267
+ hideErrorMessage?: boolean;
3268
+ className?: string;
3269
+ width?: number | string;
3270
+ downloadLabel?: string;
3271
+ fileNameFromUrl?: (url: string) => string;
3272
+ };
3273
+ declare const DashboardFileInput: React$1.ForwardRefExoticComponent<DashboardFileInputProps & React$1.RefAttributes<HTMLInputElement>>;
3274
+
3275
+ type DashboardSelectIconsBoxProps = {
3276
+ children: React$1.ReactNode;
3277
+ icons: string[];
3278
+ renderIcon: (iconName: string, color: string) => React$1.ReactNode;
3279
+ onSelect: (iconName: string) => void;
3280
+ columns?: number;
3281
+ iconsColor?: string;
3282
+ isOpen?: boolean;
3283
+ defaultOpen?: boolean;
3284
+ onOpenChange?: (isOpen: boolean) => void;
3285
+ position?: 'left' | 'right' | 'center';
3286
+ className?: string;
3287
+ boxClassName?: string;
3288
+ };
3289
+ declare function DashboardSelectIconsBox({ children, icons, renderIcon, onSelect, columns, iconsColor, isOpen: controlledOpen, defaultOpen, onOpenChange, position, className, boxClassName, }: DashboardSelectIconsBoxProps): react_jsx_runtime.JSX.Element;
3290
+
3001
3291
  type SearchableSelectValue = string | number;
3002
3292
  type SearchableSelectProps<T = undefined, V extends SearchableSelectValue = string, L extends ReactNode = string> = {
3003
3293
  options: SelectOption<T, V, L>[];
@@ -3297,4 +3587,4 @@ declare function toastResponseError(error: unknown, options?: CustomToastOptions
3297
3587
 
3298
3588
  declare function getErrorMessage(error?: any): any;
3299
3589
 
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 };
3590
+ 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, 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 };