@chekinapp/ui 0.0.123 → 0.0.125
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.cjs +78 -20
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +18 -2
- package/dist/index.d.ts +18 -2
- package/dist/index.js +78 -20
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -2890,6 +2890,7 @@ type PhoneInputProps = {
|
|
|
2890
2890
|
options: PhoneInputOption[];
|
|
2891
2891
|
value?: PhoneInputValue | null;
|
|
2892
2892
|
onChange?: (value: PhoneInputValue, name?: string) => void;
|
|
2893
|
+
onFocus?: React$1.FocusEventHandler<HTMLInputElement>;
|
|
2893
2894
|
onBlur?: React$1.FocusEventHandler<HTMLInputElement>;
|
|
2894
2895
|
name?: string;
|
|
2895
2896
|
codeName?: string;
|
|
@@ -3042,6 +3043,7 @@ type SelectComponents<T = unknown, V extends SelectValue$1 = SelectValue$1, L ex
|
|
|
3042
3043
|
type BaseSelectProps<T, V extends SelectValue$1, L extends ReactNode> = {
|
|
3043
3044
|
options?: SelectGroupedOption<T, V, L>[];
|
|
3044
3045
|
onBlur?: React$1.FocusEventHandler<HTMLDivElement>;
|
|
3046
|
+
onFocus?: React$1.FocusEventHandler<HTMLInputElement>;
|
|
3045
3047
|
label?: string;
|
|
3046
3048
|
topLabel?: string;
|
|
3047
3049
|
placeholder?: string;
|
|
@@ -3222,11 +3224,21 @@ declare const Textarea: React$1.ForwardRefExoticComponent<Omit<React$1.TextareaH
|
|
|
3222
3224
|
} & React$1.RefAttributes<HTMLTextAreaElement>>;
|
|
3223
3225
|
|
|
3224
3226
|
type DatepickerDate = Date | null;
|
|
3227
|
+
type DatepickerSubfield = 'day' | 'month' | 'year';
|
|
3228
|
+
type DatepickerHandle = {
|
|
3229
|
+
getDayValue: () => string;
|
|
3230
|
+
getYearValue: () => string;
|
|
3231
|
+
setDayValue: (value: string) => void;
|
|
3232
|
+
setYearValue: (value: string) => void;
|
|
3233
|
+
};
|
|
3225
3234
|
type DatepickerProps = {
|
|
3226
3235
|
label?: string;
|
|
3227
3236
|
value?: DatepickerDate;
|
|
3228
3237
|
defaultValue?: DatepickerDate;
|
|
3229
3238
|
onChange?: (value: DatepickerDate, name?: string) => void;
|
|
3239
|
+
onFocus?: React$1.FocusEventHandler<HTMLInputElement | HTMLButtonElement>;
|
|
3240
|
+
onFieldFocus?: (subfield: DatepickerSubfield) => void;
|
|
3241
|
+
onFieldBlur?: (subfield: DatepickerSubfield) => void;
|
|
3230
3242
|
name?: string;
|
|
3231
3243
|
invalid?: boolean;
|
|
3232
3244
|
error?: string;
|
|
@@ -3251,7 +3263,7 @@ type DatepickerProps = {
|
|
|
3251
3263
|
maxDate?: Date;
|
|
3252
3264
|
formatValue?: (date: Date) => string;
|
|
3253
3265
|
};
|
|
3254
|
-
declare const Datepicker: React$1.ForwardRefExoticComponent<DatepickerProps & React$1.RefAttributes<
|
|
3266
|
+
declare const Datepicker: React$1.ForwardRefExoticComponent<DatepickerProps & React$1.RefAttributes<DatepickerHandle>>;
|
|
3255
3267
|
|
|
3256
3268
|
declare const DEFAULT_DISPLAY_FORMAT = "dd-MM-yyyy";
|
|
3257
3269
|
declare const formatDate: (format?: string) => (date: Date) => string;
|
|
@@ -3264,6 +3276,7 @@ type DateRangePickerProps = Omit<Partial<PropsRange>, 'mode' | 'selected'> & Omi
|
|
|
3264
3276
|
value?: DateRange;
|
|
3265
3277
|
defaultValue?: DateRange;
|
|
3266
3278
|
onChange?: (value: DateRange | undefined, name?: string) => void;
|
|
3279
|
+
onFocus?: React$1.FocusEventHandler<HTMLInputElement>;
|
|
3267
3280
|
onBlur?: (value: DateRange | undefined) => void;
|
|
3268
3281
|
name?: string;
|
|
3269
3282
|
invalid?: boolean;
|
|
@@ -3303,6 +3316,7 @@ declare const DateRangePicker: React$1.ForwardRefExoticComponent<Omit<Partial<Pr
|
|
|
3303
3316
|
value?: DateRange;
|
|
3304
3317
|
defaultValue?: DateRange;
|
|
3305
3318
|
onChange?: (value: DateRange | undefined, name?: string) => void;
|
|
3319
|
+
onFocus?: React$1.FocusEventHandler<HTMLInputElement>;
|
|
3306
3320
|
onBlur?: (value: DateRange | undefined) => void;
|
|
3307
3321
|
name?: string;
|
|
3308
3322
|
invalid?: boolean;
|
|
@@ -3389,6 +3403,7 @@ type FileInputProps = {
|
|
|
3389
3403
|
label?: string;
|
|
3390
3404
|
value?: FileInputValue;
|
|
3391
3405
|
onChange?: (value: File | null, event?: React$1.ChangeEvent<HTMLInputElement>) => void;
|
|
3406
|
+
onFocus?: React$1.FocusEventHandler<HTMLInputElement>;
|
|
3392
3407
|
onDownload?: (url: string) => void;
|
|
3393
3408
|
name?: string;
|
|
3394
3409
|
placeholder?: string;
|
|
@@ -3420,6 +3435,7 @@ type SelectIconsBoxProps = {
|
|
|
3420
3435
|
isOpen?: boolean;
|
|
3421
3436
|
defaultOpen?: boolean;
|
|
3422
3437
|
onOpenChange?: (isOpen: boolean) => void;
|
|
3438
|
+
onFocus?: React$1.FocusEventHandler<HTMLDivElement>;
|
|
3423
3439
|
position?: 'left' | 'right' | 'center';
|
|
3424
3440
|
className?: string;
|
|
3425
3441
|
boxClassName?: string;
|
|
@@ -4065,4 +4081,4 @@ interface AirbnbSwitchProps extends Omit<React$1.ComponentPropsWithoutRef<typeof
|
|
|
4065
4081
|
}
|
|
4066
4082
|
declare const AirbnbSwitch: React$1.ForwardRefExoticComponent<AirbnbSwitchProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
4067
4083
|
|
|
4068
|
-
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, AirbnbSwitch, type AirbnbSwitchProps, 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 DatepickerDate, type DatepickerProps, 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, Section, SectionGroup, type SectionGroupItemProps, type SectionGroupLabelProps, type SectionGroupProps, type SectionProps, SectionTag, SectionTagColors, type SectionTagProps, Select, SelectAllRow, type SelectAllRowProps, SelectCheckboxOption, SelectCheckboxes, type SelectCheckboxesProps, type SelectCheckboxesTriggerRenderer, type SelectFormatGroupLabel, type SelectGroupedOption, SelectIconsBox, type SelectIconsBoxProps, type MultiSelectModeProps as SelectMultiProps, type SelectOption, type SelectOptionGroup, 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 };
|
|
4084
|
+
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, AirbnbSwitch, type AirbnbSwitchProps, 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 DatepickerDate, type DatepickerHandle, type DatepickerProps, type DatepickerSubfield, 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, Section, SectionGroup, type SectionGroupItemProps, type SectionGroupLabelProps, type SectionGroupProps, type SectionProps, SectionTag, SectionTagColors, type SectionTagProps, Select, SelectAllRow, type SelectAllRowProps, SelectCheckboxOption, SelectCheckboxes, type SelectCheckboxesProps, type SelectCheckboxesTriggerRenderer, type SelectFormatGroupLabel, type SelectGroupedOption, SelectIconsBox, type SelectIconsBoxProps, type MultiSelectModeProps as SelectMultiProps, type SelectOption, type SelectOptionGroup, 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 };
|
package/dist/index.d.ts
CHANGED
|
@@ -2890,6 +2890,7 @@ type PhoneInputProps = {
|
|
|
2890
2890
|
options: PhoneInputOption[];
|
|
2891
2891
|
value?: PhoneInputValue | null;
|
|
2892
2892
|
onChange?: (value: PhoneInputValue, name?: string) => void;
|
|
2893
|
+
onFocus?: React$1.FocusEventHandler<HTMLInputElement>;
|
|
2893
2894
|
onBlur?: React$1.FocusEventHandler<HTMLInputElement>;
|
|
2894
2895
|
name?: string;
|
|
2895
2896
|
codeName?: string;
|
|
@@ -3042,6 +3043,7 @@ type SelectComponents<T = unknown, V extends SelectValue$1 = SelectValue$1, L ex
|
|
|
3042
3043
|
type BaseSelectProps<T, V extends SelectValue$1, L extends ReactNode> = {
|
|
3043
3044
|
options?: SelectGroupedOption<T, V, L>[];
|
|
3044
3045
|
onBlur?: React$1.FocusEventHandler<HTMLDivElement>;
|
|
3046
|
+
onFocus?: React$1.FocusEventHandler<HTMLInputElement>;
|
|
3045
3047
|
label?: string;
|
|
3046
3048
|
topLabel?: string;
|
|
3047
3049
|
placeholder?: string;
|
|
@@ -3222,11 +3224,21 @@ declare const Textarea: React$1.ForwardRefExoticComponent<Omit<React$1.TextareaH
|
|
|
3222
3224
|
} & React$1.RefAttributes<HTMLTextAreaElement>>;
|
|
3223
3225
|
|
|
3224
3226
|
type DatepickerDate = Date | null;
|
|
3227
|
+
type DatepickerSubfield = 'day' | 'month' | 'year';
|
|
3228
|
+
type DatepickerHandle = {
|
|
3229
|
+
getDayValue: () => string;
|
|
3230
|
+
getYearValue: () => string;
|
|
3231
|
+
setDayValue: (value: string) => void;
|
|
3232
|
+
setYearValue: (value: string) => void;
|
|
3233
|
+
};
|
|
3225
3234
|
type DatepickerProps = {
|
|
3226
3235
|
label?: string;
|
|
3227
3236
|
value?: DatepickerDate;
|
|
3228
3237
|
defaultValue?: DatepickerDate;
|
|
3229
3238
|
onChange?: (value: DatepickerDate, name?: string) => void;
|
|
3239
|
+
onFocus?: React$1.FocusEventHandler<HTMLInputElement | HTMLButtonElement>;
|
|
3240
|
+
onFieldFocus?: (subfield: DatepickerSubfield) => void;
|
|
3241
|
+
onFieldBlur?: (subfield: DatepickerSubfield) => void;
|
|
3230
3242
|
name?: string;
|
|
3231
3243
|
invalid?: boolean;
|
|
3232
3244
|
error?: string;
|
|
@@ -3251,7 +3263,7 @@ type DatepickerProps = {
|
|
|
3251
3263
|
maxDate?: Date;
|
|
3252
3264
|
formatValue?: (date: Date) => string;
|
|
3253
3265
|
};
|
|
3254
|
-
declare const Datepicker: React$1.ForwardRefExoticComponent<DatepickerProps & React$1.RefAttributes<
|
|
3266
|
+
declare const Datepicker: React$1.ForwardRefExoticComponent<DatepickerProps & React$1.RefAttributes<DatepickerHandle>>;
|
|
3255
3267
|
|
|
3256
3268
|
declare const DEFAULT_DISPLAY_FORMAT = "dd-MM-yyyy";
|
|
3257
3269
|
declare const formatDate: (format?: string) => (date: Date) => string;
|
|
@@ -3264,6 +3276,7 @@ type DateRangePickerProps = Omit<Partial<PropsRange>, 'mode' | 'selected'> & Omi
|
|
|
3264
3276
|
value?: DateRange;
|
|
3265
3277
|
defaultValue?: DateRange;
|
|
3266
3278
|
onChange?: (value: DateRange | undefined, name?: string) => void;
|
|
3279
|
+
onFocus?: React$1.FocusEventHandler<HTMLInputElement>;
|
|
3267
3280
|
onBlur?: (value: DateRange | undefined) => void;
|
|
3268
3281
|
name?: string;
|
|
3269
3282
|
invalid?: boolean;
|
|
@@ -3303,6 +3316,7 @@ declare const DateRangePicker: React$1.ForwardRefExoticComponent<Omit<Partial<Pr
|
|
|
3303
3316
|
value?: DateRange;
|
|
3304
3317
|
defaultValue?: DateRange;
|
|
3305
3318
|
onChange?: (value: DateRange | undefined, name?: string) => void;
|
|
3319
|
+
onFocus?: React$1.FocusEventHandler<HTMLInputElement>;
|
|
3306
3320
|
onBlur?: (value: DateRange | undefined) => void;
|
|
3307
3321
|
name?: string;
|
|
3308
3322
|
invalid?: boolean;
|
|
@@ -3389,6 +3403,7 @@ type FileInputProps = {
|
|
|
3389
3403
|
label?: string;
|
|
3390
3404
|
value?: FileInputValue;
|
|
3391
3405
|
onChange?: (value: File | null, event?: React$1.ChangeEvent<HTMLInputElement>) => void;
|
|
3406
|
+
onFocus?: React$1.FocusEventHandler<HTMLInputElement>;
|
|
3392
3407
|
onDownload?: (url: string) => void;
|
|
3393
3408
|
name?: string;
|
|
3394
3409
|
placeholder?: string;
|
|
@@ -3420,6 +3435,7 @@ type SelectIconsBoxProps = {
|
|
|
3420
3435
|
isOpen?: boolean;
|
|
3421
3436
|
defaultOpen?: boolean;
|
|
3422
3437
|
onOpenChange?: (isOpen: boolean) => void;
|
|
3438
|
+
onFocus?: React$1.FocusEventHandler<HTMLDivElement>;
|
|
3423
3439
|
position?: 'left' | 'right' | 'center';
|
|
3424
3440
|
className?: string;
|
|
3425
3441
|
boxClassName?: string;
|
|
@@ -4065,4 +4081,4 @@ interface AirbnbSwitchProps extends Omit<React$1.ComponentPropsWithoutRef<typeof
|
|
|
4065
4081
|
}
|
|
4066
4082
|
declare const AirbnbSwitch: React$1.ForwardRefExoticComponent<AirbnbSwitchProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
4067
4083
|
|
|
4068
|
-
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, AirbnbSwitch, type AirbnbSwitchProps, 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 DatepickerDate, type DatepickerProps, 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, Section, SectionGroup, type SectionGroupItemProps, type SectionGroupLabelProps, type SectionGroupProps, type SectionProps, SectionTag, SectionTagColors, type SectionTagProps, Select, SelectAllRow, type SelectAllRowProps, SelectCheckboxOption, SelectCheckboxes, type SelectCheckboxesProps, type SelectCheckboxesTriggerRenderer, type SelectFormatGroupLabel, type SelectGroupedOption, SelectIconsBox, type SelectIconsBoxProps, type MultiSelectModeProps as SelectMultiProps, type SelectOption, type SelectOptionGroup, 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 };
|
|
4084
|
+
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, AirbnbSwitch, type AirbnbSwitchProps, 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 DatepickerDate, type DatepickerHandle, type DatepickerProps, type DatepickerSubfield, 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, Section, SectionGroup, type SectionGroupItemProps, type SectionGroupLabelProps, type SectionGroupProps, type SectionProps, SectionTag, SectionTagColors, type SectionTagProps, Select, SelectAllRow, type SelectAllRowProps, SelectCheckboxOption, SelectCheckboxes, type SelectCheckboxesProps, type SelectCheckboxesTriggerRenderer, type SelectFormatGroupLabel, type SelectGroupedOption, SelectIconsBox, type SelectIconsBoxProps, type MultiSelectModeProps as SelectMultiProps, type SelectOption, type SelectOptionGroup, 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 };
|
package/dist/index.js
CHANGED
|
@@ -12494,7 +12494,8 @@ function SelectFieldShell({
|
|
|
12494
12494
|
{
|
|
12495
12495
|
id: errorId,
|
|
12496
12496
|
message: errorMessage,
|
|
12497
|
-
className: "mt-[1px] text-[14px]"
|
|
12497
|
+
className: "mt-[1px] text-[14px]",
|
|
12498
|
+
"data-testid": name ? `${name}-error` : void 0
|
|
12498
12499
|
}
|
|
12499
12500
|
)
|
|
12500
12501
|
] })
|
|
@@ -13202,6 +13203,7 @@ function useSelectState(params) {
|
|
|
13202
13203
|
closeMenuOnSelect,
|
|
13203
13204
|
openMenuOnFocus = true,
|
|
13204
13205
|
onKeyDown,
|
|
13206
|
+
onFocus,
|
|
13205
13207
|
onBlur,
|
|
13206
13208
|
isSearchInDropdown
|
|
13207
13209
|
} = params;
|
|
@@ -13218,9 +13220,7 @@ function useSelectState(params) {
|
|
|
13218
13220
|
[singleSelected, getValueLabel]
|
|
13219
13221
|
);
|
|
13220
13222
|
const isSearchOnlyInput = isMulti || Boolean(isSearchInDropdown);
|
|
13221
|
-
const [inputValue, setInputValue] = React48.useState(
|
|
13222
|
-
isSearchOnlyInput ? "" : valueLabel
|
|
13223
|
-
);
|
|
13223
|
+
const [inputValue, setInputValue] = React48.useState(isSearchOnlyInput ? "" : valueLabel);
|
|
13224
13224
|
const hasValue = selectedOptions.length > 0;
|
|
13225
13225
|
const isBlocked = Boolean(disabled) || Boolean(loading) || Boolean(readOnly);
|
|
13226
13226
|
const hasInvalidState = Boolean(error);
|
|
@@ -13379,14 +13379,18 @@ function useSelectState(params) {
|
|
|
13379
13379
|
},
|
|
13380
13380
|
[isOpen, setIsOpen]
|
|
13381
13381
|
);
|
|
13382
|
-
const handleInputFocus = React48.useCallback(
|
|
13383
|
-
|
|
13384
|
-
|
|
13385
|
-
|
|
13386
|
-
|
|
13387
|
-
|
|
13388
|
-
|
|
13389
|
-
|
|
13382
|
+
const handleInputFocus = React48.useCallback(
|
|
13383
|
+
(event) => {
|
|
13384
|
+
if (isBlocked) return;
|
|
13385
|
+
onFocus?.(event);
|
|
13386
|
+
setIsFocused(true);
|
|
13387
|
+
if (openMenuOnFocus) setIsOpen(true);
|
|
13388
|
+
if (!isMulti) {
|
|
13389
|
+
requestAnimationFrame(() => inputRef.current?.select());
|
|
13390
|
+
}
|
|
13391
|
+
},
|
|
13392
|
+
[isBlocked, onFocus, openMenuOnFocus, setIsOpen, isMulti]
|
|
13393
|
+
);
|
|
13390
13394
|
const handleContainerClick = React48.useCallback(() => {
|
|
13391
13395
|
if (isBlocked) return;
|
|
13392
13396
|
inputRef.current?.focus();
|
|
@@ -13820,6 +13824,7 @@ function SelectInternal(props, ref) {
|
|
|
13820
13824
|
const {
|
|
13821
13825
|
options = [],
|
|
13822
13826
|
onBlur,
|
|
13827
|
+
onFocus,
|
|
13823
13828
|
label,
|
|
13824
13829
|
topLabel,
|
|
13825
13830
|
placeholder,
|
|
@@ -13921,6 +13926,7 @@ function SelectInternal(props, ref) {
|
|
|
13921
13926
|
closeMenuOnSelect,
|
|
13922
13927
|
openMenuOnFocus,
|
|
13923
13928
|
onKeyDown,
|
|
13929
|
+
onFocus,
|
|
13924
13930
|
onBlur,
|
|
13925
13931
|
isSearchInDropdown
|
|
13926
13932
|
});
|
|
@@ -14147,6 +14153,7 @@ var PhoneInput = React50.forwardRef(
|
|
|
14147
14153
|
options,
|
|
14148
14154
|
value,
|
|
14149
14155
|
onChange,
|
|
14156
|
+
onFocus,
|
|
14150
14157
|
onBlur,
|
|
14151
14158
|
name,
|
|
14152
14159
|
codeName,
|
|
@@ -14286,6 +14293,7 @@ var PhoneInput = React50.forwardRef(
|
|
|
14286
14293
|
tooltip,
|
|
14287
14294
|
"aria-label": resolvedLabel || name,
|
|
14288
14295
|
onChange: handleNumberChange,
|
|
14296
|
+
onFocus,
|
|
14289
14297
|
onBlur,
|
|
14290
14298
|
renderErrorMessage: false,
|
|
14291
14299
|
wrapperClassName: "!max-w-none"
|
|
@@ -15875,6 +15883,9 @@ var Datepicker = React62.forwardRef(
|
|
|
15875
15883
|
value,
|
|
15876
15884
|
defaultValue,
|
|
15877
15885
|
onChange,
|
|
15886
|
+
onFocus,
|
|
15887
|
+
onFieldFocus,
|
|
15888
|
+
onFieldBlur,
|
|
15878
15889
|
name,
|
|
15879
15890
|
invalid,
|
|
15880
15891
|
error,
|
|
@@ -15938,9 +15949,30 @@ var Datepicker = React62.forwardRef(
|
|
|
15938
15949
|
const [monthInputValue, setMonthInputValue] = React62.useState("");
|
|
15939
15950
|
const [monthHighlightIndex, setMonthHighlightIndex] = React62.useState(-1);
|
|
15940
15951
|
const isMobile3 = useIsMobile();
|
|
15952
|
+
const emitChangeRef = React62.useRef(() => {
|
|
15953
|
+
});
|
|
15954
|
+
const dayStateRef = React62.useRef(day);
|
|
15955
|
+
const yearStateRef = React62.useRef(year);
|
|
15956
|
+
const monthIndexRef = React62.useRef(monthIndex);
|
|
15957
|
+
dayStateRef.current = day;
|
|
15958
|
+
yearStateRef.current = year;
|
|
15959
|
+
monthIndexRef.current = monthIndex;
|
|
15941
15960
|
React62.useImperativeHandle(
|
|
15942
15961
|
ref,
|
|
15943
|
-
() =>
|
|
15962
|
+
() => ({
|
|
15963
|
+
getDayValue: () => dayStateRef.current,
|
|
15964
|
+
getYearValue: () => yearStateRef.current,
|
|
15965
|
+
setDayValue: (next) => {
|
|
15966
|
+
if (!PARTIAL_DAY_PATTERN.test(next)) return;
|
|
15967
|
+
setDay(next);
|
|
15968
|
+
emitChangeRef.current(next, monthIndexRef.current, yearStateRef.current);
|
|
15969
|
+
},
|
|
15970
|
+
setYearValue: (next) => {
|
|
15971
|
+
if (!PARTIAL_YEAR_PATTERN.test(next)) return;
|
|
15972
|
+
setYear(next);
|
|
15973
|
+
emitChangeRef.current(dayStateRef.current, monthIndexRef.current, next);
|
|
15974
|
+
}
|
|
15975
|
+
}),
|
|
15944
15976
|
[]
|
|
15945
15977
|
);
|
|
15946
15978
|
React62.useEffect(() => {
|
|
@@ -16001,6 +16033,7 @@ var Datepicker = React62.forwardRef(
|
|
|
16001
16033
|
},
|
|
16002
16034
|
[name, onChange]
|
|
16003
16035
|
);
|
|
16036
|
+
emitChangeRef.current = emitChange;
|
|
16004
16037
|
const handleDayChange = (event) => {
|
|
16005
16038
|
const next = event.target.value;
|
|
16006
16039
|
if (!PARTIAL_DAY_PATTERN.test(next)) return;
|
|
@@ -16188,6 +16221,7 @@ var Datepicker = React62.forwardRef(
|
|
|
16188
16221
|
"aria-busy": loading,
|
|
16189
16222
|
disabled: isBlocked || readOnly,
|
|
16190
16223
|
onClick: openWheel,
|
|
16224
|
+
onFocus,
|
|
16191
16225
|
className: cn(
|
|
16192
16226
|
"relative m-0 box-border flex h-12 w-full cursor-pointer items-center justify-between gap-2 rounded-[6px] border-0 px-4 text-left text-[16px] font-medium leading-5 outline-none transition-colors duration-200",
|
|
16193
16227
|
triggerText ? "bg-transparent text-[var(--chekin-color-brand-navy)]" : "bg-[var(--empty-field-background)] text-[var(--chekin-color-gray-1)]",
|
|
@@ -16230,8 +16264,15 @@ var Datepicker = React62.forwardRef(
|
|
|
16230
16264
|
"aria-invalid": isInvalid,
|
|
16231
16265
|
"aria-labelledby": labelId,
|
|
16232
16266
|
onChange: handleDayChange,
|
|
16233
|
-
onFocus: () =>
|
|
16234
|
-
|
|
16267
|
+
onFocus: (event) => {
|
|
16268
|
+
onFocus?.(event);
|
|
16269
|
+
onFieldFocus?.("day");
|
|
16270
|
+
setFocusedField("day");
|
|
16271
|
+
},
|
|
16272
|
+
onBlur: () => {
|
|
16273
|
+
onFieldBlur?.("day");
|
|
16274
|
+
setFocusedField(null);
|
|
16275
|
+
},
|
|
16235
16276
|
maxLength: 2,
|
|
16236
16277
|
className: subInputClass
|
|
16237
16278
|
}
|
|
@@ -16258,7 +16299,9 @@ var Datepicker = React62.forwardRef(
|
|
|
16258
16299
|
disabled: isBlocked,
|
|
16259
16300
|
readOnly,
|
|
16260
16301
|
onChange: handleMonthInputChange,
|
|
16261
|
-
onFocus: () => {
|
|
16302
|
+
onFocus: (event) => {
|
|
16303
|
+
onFocus?.(event);
|
|
16304
|
+
onFieldFocus?.("month");
|
|
16262
16305
|
setFocusedField("month");
|
|
16263
16306
|
if (!isBlocked && !readOnly) {
|
|
16264
16307
|
setIsMonthOpen(true);
|
|
@@ -16266,6 +16309,7 @@ var Datepicker = React62.forwardRef(
|
|
|
16266
16309
|
}
|
|
16267
16310
|
},
|
|
16268
16311
|
onBlur: () => {
|
|
16312
|
+
onFieldBlur?.("month");
|
|
16269
16313
|
setFocusedField(null);
|
|
16270
16314
|
commitMonthInput();
|
|
16271
16315
|
},
|
|
@@ -16313,8 +16357,15 @@ var Datepicker = React62.forwardRef(
|
|
|
16313
16357
|
"aria-invalid": isInvalid,
|
|
16314
16358
|
"aria-labelledby": labelId,
|
|
16315
16359
|
onChange: handleYearChange,
|
|
16316
|
-
onFocus: () =>
|
|
16317
|
-
|
|
16360
|
+
onFocus: (event) => {
|
|
16361
|
+
onFocus?.(event);
|
|
16362
|
+
onFieldFocus?.("year");
|
|
16363
|
+
setFocusedField("year");
|
|
16364
|
+
},
|
|
16365
|
+
onBlur: () => {
|
|
16366
|
+
onFieldBlur?.("year");
|
|
16367
|
+
setFocusedField(null);
|
|
16368
|
+
},
|
|
16318
16369
|
maxLength: 4,
|
|
16319
16370
|
className: subInputClass
|
|
16320
16371
|
}
|
|
@@ -16844,6 +16895,7 @@ var DateRangePicker = React66.forwardRef(function DateRangePicker2({
|
|
|
16844
16895
|
value: externalValue,
|
|
16845
16896
|
defaultValue,
|
|
16846
16897
|
onChange,
|
|
16898
|
+
onFocus,
|
|
16847
16899
|
onBlur,
|
|
16848
16900
|
name,
|
|
16849
16901
|
invalid,
|
|
@@ -17039,11 +17091,13 @@ var DateRangePicker = React66.forwardRef(function DateRangePicker2({
|
|
|
17039
17091
|
openCalendarLabel: t("open_calendar"),
|
|
17040
17092
|
onFromTextChange: setFromText,
|
|
17041
17093
|
onToTextChange: setToText,
|
|
17042
|
-
onFromFocus: () => {
|
|
17094
|
+
onFromFocus: (event) => {
|
|
17095
|
+
onFocus?.(event);
|
|
17043
17096
|
setFocusedInput("from");
|
|
17044
17097
|
if (!readOnly && !isBlocked) setIsOpen(true);
|
|
17045
17098
|
},
|
|
17046
|
-
onToFocus: () => {
|
|
17099
|
+
onToFocus: (event) => {
|
|
17100
|
+
onFocus?.(event);
|
|
17047
17101
|
setFocusedInput("to");
|
|
17048
17102
|
if (!readOnly && !isBlocked) setIsOpen(true);
|
|
17049
17103
|
},
|
|
@@ -17300,6 +17354,7 @@ var FileInput = React69.forwardRef(function FileInput2({
|
|
|
17300
17354
|
label,
|
|
17301
17355
|
value,
|
|
17302
17356
|
onChange,
|
|
17357
|
+
onFocus,
|
|
17303
17358
|
onDownload = defaultDownload,
|
|
17304
17359
|
name = "file",
|
|
17305
17360
|
placeholder,
|
|
@@ -17373,6 +17428,7 @@ var FileInput = React69.forwardRef(function FileInput2({
|
|
|
17373
17428
|
multiple,
|
|
17374
17429
|
disabled: isBlocked || readOnly,
|
|
17375
17430
|
onChange: handleFileChange,
|
|
17431
|
+
onFocus,
|
|
17376
17432
|
className: "absolute h-[0.1px] w-[0.1px] opacity-0",
|
|
17377
17433
|
"aria-labelledby": labelId,
|
|
17378
17434
|
"aria-invalid": isInvalid
|
|
@@ -17473,6 +17529,7 @@ var SelectIconsBox = React70.forwardRef(
|
|
|
17473
17529
|
isOpen: controlledOpen,
|
|
17474
17530
|
defaultOpen = false,
|
|
17475
17531
|
onOpenChange,
|
|
17532
|
+
onFocus,
|
|
17476
17533
|
position = "left",
|
|
17477
17534
|
className,
|
|
17478
17535
|
boxClassName
|
|
@@ -17500,6 +17557,7 @@ var SelectIconsBox = React70.forwardRef(
|
|
|
17500
17557
|
setOpen(false);
|
|
17501
17558
|
};
|
|
17502
17559
|
const handleContainerFocus = (event) => {
|
|
17560
|
+
onFocus?.(event);
|
|
17503
17561
|
if (event.target !== event.currentTarget) return;
|
|
17504
17562
|
const focusable = event.currentTarget.querySelector(
|
|
17505
17563
|
FOCUSABLE_TRIGGER_SELECTOR2
|