@chekinapp/ui 0.0.4 → 0.0.5
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 +294 -109
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +52 -9
- package/dist/index.d.ts +52 -9
- package/dist/index.js +300 -115
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -573,8 +573,9 @@ interface HelpTooltipProps {
|
|
|
573
573
|
contentClassName?: string;
|
|
574
574
|
size?: 16 | 20;
|
|
575
575
|
label?: string;
|
|
576
|
+
triggerAs?: 'button' | 'span';
|
|
576
577
|
}
|
|
577
|
-
declare function HelpTooltip({ content, side, variant, onClick, className, contentClassName, size, label, }: HelpTooltipProps): react_jsx_runtime.JSX.Element;
|
|
578
|
+
declare function HelpTooltip({ content, side, variant, onClick, className, contentClassName, size, label, triggerAs, }: HelpTooltipProps): react_jsx_runtime.JSX.Element;
|
|
578
579
|
|
|
579
580
|
type IconNames = 'shield-star' | 'circled-home' | 'house-i' | 'calendar-days-in' | 'shield-star-in' | 'chart-no-axes-combined-in' | 'chart-no-axes-combined' | 'chart-no-axes-combined-out' | 'shield-star-out' | 'airbnb' | 'whatsapp' | 'sms' | 'meta' | 'instagram' | 'x' | 'facebook' | 'linkedin' | 'host';
|
|
580
581
|
|
|
@@ -1650,10 +1651,15 @@ declare function SearchButton({ onClick, className, icon, ariaLabel }: SearchBut
|
|
|
1650
1651
|
|
|
1651
1652
|
type SearchInputProps = ComponentProps<'input'> & {
|
|
1652
1653
|
className?: string;
|
|
1654
|
+
invalid?: boolean;
|
|
1655
|
+
label?: string;
|
|
1656
|
+
loading?: boolean;
|
|
1653
1657
|
onReset?: () => void;
|
|
1658
|
+
optional?: boolean | string;
|
|
1659
|
+
tooltip?: ReactNode;
|
|
1654
1660
|
wrapperClassName?: string;
|
|
1655
1661
|
};
|
|
1656
|
-
declare function SearchInput({ onReset, placeholder, wrapperClassName, className, ...props }: SearchInputProps): react_jsx_runtime.JSX.Element;
|
|
1662
|
+
declare function SearchInput({ disabled, invalid, label, loading, onReset, optional, placeholder, tooltip, wrapperClassName, className, ...props }: SearchInputProps): react_jsx_runtime.JSX.Element;
|
|
1657
1663
|
|
|
1658
1664
|
declare const sectionTagVariants: (props?: ({
|
|
1659
1665
|
color?: "blue" | "green" | null | undefined;
|
|
@@ -2210,16 +2216,21 @@ declare function VideoPlayer({ src, poster, title, onClose, isFullScreen, autoPl
|
|
|
2210
2216
|
type WideButtonProps = Omit<ButtonProps, 'size'>;
|
|
2211
2217
|
declare function WideButton({ className, disabled, ...props }: WideButtonProps): react_jsx_runtime.JSX.Element;
|
|
2212
2218
|
|
|
2219
|
+
type DatePickerValue = Date | number | null | undefined | '';
|
|
2213
2220
|
type DatePickerProps = {
|
|
2214
2221
|
variant?: 'default' | 'airbnb';
|
|
2215
2222
|
label: string;
|
|
2216
2223
|
topLabel?: string;
|
|
2217
|
-
value?:
|
|
2218
|
-
defaultValue?:
|
|
2224
|
+
value?: DatePickerValue;
|
|
2225
|
+
defaultValue?: DatePickerValue;
|
|
2219
2226
|
onChange: (value: Date | null) => void;
|
|
2220
2227
|
placeholder?: string;
|
|
2221
2228
|
disabled?: boolean;
|
|
2222
2229
|
error?: string;
|
|
2230
|
+
invalid?: boolean;
|
|
2231
|
+
loading?: boolean;
|
|
2232
|
+
optional?: boolean | string;
|
|
2233
|
+
tooltip?: React$1.ReactNode;
|
|
2223
2234
|
className?: string;
|
|
2224
2235
|
name?: string;
|
|
2225
2236
|
minDate?: Date;
|
|
@@ -2283,16 +2294,20 @@ type FieldTriggerProps = {
|
|
|
2283
2294
|
valueId?: string;
|
|
2284
2295
|
helperTextId?: string;
|
|
2285
2296
|
errorId?: string;
|
|
2286
|
-
labelText?:
|
|
2297
|
+
labelText?: React$1.ReactNode;
|
|
2287
2298
|
valueText?: string;
|
|
2288
2299
|
placeholder?: string;
|
|
2289
2300
|
disabled?: boolean;
|
|
2290
|
-
error?: string;
|
|
2301
|
+
error?: boolean | string;
|
|
2302
|
+
loading?: boolean;
|
|
2303
|
+
optional?: boolean | string;
|
|
2304
|
+
tooltip?: React$1.ReactNode;
|
|
2291
2305
|
describedBy?: string;
|
|
2292
2306
|
className?: string;
|
|
2293
2307
|
contentClassName?: string;
|
|
2294
2308
|
trailingAdornment?: React$1.ReactNode;
|
|
2295
2309
|
forceFloatingLabel?: boolean;
|
|
2310
|
+
forceLabelText?: boolean;
|
|
2296
2311
|
hideErrorMessage?: boolean;
|
|
2297
2312
|
children?: React$1.ReactNode;
|
|
2298
2313
|
onClick?: () => void;
|
|
@@ -2308,16 +2323,20 @@ declare const FieldTrigger: React$1.ForwardRefExoticComponent<{
|
|
|
2308
2323
|
valueId?: string;
|
|
2309
2324
|
helperTextId?: string;
|
|
2310
2325
|
errorId?: string;
|
|
2311
|
-
labelText?:
|
|
2326
|
+
labelText?: React$1.ReactNode;
|
|
2312
2327
|
valueText?: string;
|
|
2313
2328
|
placeholder?: string;
|
|
2314
2329
|
disabled?: boolean;
|
|
2315
|
-
error?: string;
|
|
2330
|
+
error?: boolean | string;
|
|
2331
|
+
loading?: boolean;
|
|
2332
|
+
optional?: boolean | string;
|
|
2333
|
+
tooltip?: React$1.ReactNode;
|
|
2316
2334
|
describedBy?: string;
|
|
2317
2335
|
className?: string;
|
|
2318
2336
|
contentClassName?: string;
|
|
2319
2337
|
trailingAdornment?: React$1.ReactNode;
|
|
2320
2338
|
forceFloatingLabel?: boolean;
|
|
2339
|
+
forceLabelText?: boolean;
|
|
2321
2340
|
hideErrorMessage?: boolean;
|
|
2322
2341
|
children?: React$1.ReactNode;
|
|
2323
2342
|
onClick?: () => void;
|
|
@@ -2330,6 +2349,10 @@ type AirbnbInputProps = React$1.InputHTMLAttributes<HTMLInputElement> & {
|
|
|
2330
2349
|
topLabel?: string;
|
|
2331
2350
|
helperText?: string;
|
|
2332
2351
|
error?: string;
|
|
2352
|
+
invalid?: boolean;
|
|
2353
|
+
loading?: boolean;
|
|
2354
|
+
optional?: boolean | string;
|
|
2355
|
+
tooltip?: React$1.ReactNode;
|
|
2333
2356
|
wrapperClassName?: string;
|
|
2334
2357
|
fieldClassName?: string;
|
|
2335
2358
|
contentClassName?: string;
|
|
@@ -2343,6 +2366,10 @@ declare const AirbnbInput: React$1.ForwardRefExoticComponent<React$1.InputHTMLAt
|
|
|
2343
2366
|
topLabel?: string;
|
|
2344
2367
|
helperText?: string;
|
|
2345
2368
|
error?: string;
|
|
2369
|
+
invalid?: boolean;
|
|
2370
|
+
loading?: boolean;
|
|
2371
|
+
optional?: boolean | string;
|
|
2372
|
+
tooltip?: React$1.ReactNode;
|
|
2346
2373
|
wrapperClassName?: string;
|
|
2347
2374
|
fieldClassName?: string;
|
|
2348
2375
|
contentClassName?: string;
|
|
@@ -2369,7 +2396,12 @@ type PhoneFieldProps = {
|
|
|
2369
2396
|
options: PhoneFieldOption[];
|
|
2370
2397
|
placeholder?: string;
|
|
2371
2398
|
disabled?: boolean;
|
|
2399
|
+
codeReadOnly?: boolean;
|
|
2372
2400
|
error?: string;
|
|
2401
|
+
invalid?: boolean;
|
|
2402
|
+
loading?: boolean;
|
|
2403
|
+
optional?: boolean | string;
|
|
2404
|
+
tooltip?: React$1.ReactNode;
|
|
2373
2405
|
className?: string;
|
|
2374
2406
|
name?: string;
|
|
2375
2407
|
codeName?: string;
|
|
@@ -2390,7 +2422,11 @@ type SelectRenderTriggerProps<T = undefined, V extends SelectValue = string, L e
|
|
|
2390
2422
|
value?: SelectOption<T, V, L> | null;
|
|
2391
2423
|
valueLabel?: string;
|
|
2392
2424
|
disabled?: boolean;
|
|
2425
|
+
loading?: boolean;
|
|
2426
|
+
optional?: boolean | string;
|
|
2427
|
+
tooltip?: React$1.ReactNode;
|
|
2393
2428
|
error?: string;
|
|
2429
|
+
invalid?: boolean;
|
|
2394
2430
|
listboxId: string;
|
|
2395
2431
|
describedBy?: string;
|
|
2396
2432
|
triggerRef: React$1.Ref<HTMLButtonElement>;
|
|
@@ -2408,7 +2444,11 @@ type AirbnbSelectProps<T = undefined, V extends SelectValue = string, L extends
|
|
|
2408
2444
|
getValueLabel?: (option: SelectOption<T, V, L>) => string;
|
|
2409
2445
|
renderTrigger?: (props: SelectRenderTriggerProps<T, V, L>) => React$1.ReactNode;
|
|
2410
2446
|
disabled?: boolean;
|
|
2447
|
+
loading?: boolean;
|
|
2448
|
+
optional?: boolean | string;
|
|
2449
|
+
tooltip?: React$1.ReactNode;
|
|
2411
2450
|
error?: string;
|
|
2451
|
+
invalid?: boolean;
|
|
2412
2452
|
hideErrorMessage?: boolean;
|
|
2413
2453
|
className?: string;
|
|
2414
2454
|
menuClassName?: string;
|
|
@@ -2450,6 +2490,9 @@ type SearchableSelectProps<T = undefined, V extends SearchableSelectValue = stri
|
|
|
2450
2490
|
getValueLabel?: (option: SelectOption<T, V, L>) => string;
|
|
2451
2491
|
disabled?: boolean;
|
|
2452
2492
|
error?: string;
|
|
2493
|
+
invalid?: boolean;
|
|
2494
|
+
optional?: boolean | string;
|
|
2495
|
+
tooltip?: ReactNode;
|
|
2453
2496
|
hideErrorMessage?: boolean;
|
|
2454
2497
|
name?: string;
|
|
2455
2498
|
className?: string;
|
|
@@ -2464,4 +2507,4 @@ declare const SearchableSelect: SearchableSelectComponent;
|
|
|
2464
2507
|
|
|
2465
2508
|
declare function cn(...inputs: ClassValue[]): string;
|
|
2466
2509
|
|
|
2467
|
-
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, type ChannelOption, ChannelSelector, type ChannelSelectorProps, Checkbox, CheckboxGroup, type CheckboxGroupProps, type CheckboxOption, type CheckboxProps, CommingSoonBadge, type CommingSoonBadgeProps, ConfirmationDialog, type ConfirmationDialogProps, CopyIcon, type CopyIconProps, CopyLinkButton, type CopyLinkButtonProps, type CustomIconEntry, DataTable, type DataTableProps, DatePicker, type DatePickerProps, DefaultSelectTrigger, type DefaultSelectTriggerProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DialogVisuallyHidden, DividingSubsection, DownloadEntryFormsButton, type DownloadEntryFormsButtonProps, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownButton, type DropdownButtonProps, DropdownMenu, DropdownMenuContent, type DropdownMenuContentSide, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuSeparator, DropdownMenuTrigger, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptySectionPlaceholder, type EmptySectionPlaceholderProps, EmptyTitle, ErrorMessage, type ErrorMessageProps, ExternalLink, type ExternalLinkProps, FeatureCard, type FeatureCardProps, FieldTrigger, type FieldTriggerProps, FileInputButton, type FileInputButtonProps, FormBox, Content as FormBoxContent, type FormBoxContentProps, Header as FormBoxHeader, type FormBoxHeaderProps, Root as FormBoxRoot, type FormBoxRootProps, SubHeader as FormBoxSubHeader, type FormBoxSubHeaderProps, FramedIcon, type FramedIconProps, FreeTextField, type FreeTextFieldProps, GridItems, type GridItemsProps, type GuestVerificationStatus, HALO_ICON_STATUS, HaloIcon, type HaloIconProps, HelpTooltip, type HelpTooltipProps, IVStatusBadge, type IVStatusBadgeProps, IV_BADGE_STATUS, Icon$1 as Icon, IconButton, type IconButtonProps, type IconEntry, type IconNames, type IconProps, IconRegistry, IconsDropdown, type IconsDropdownProps, Image, ImageFullScreenView, type ImageFullScreenViewProps, type ImageProps, InfoBox, type InfoBoxProps, Input, InputOTP, InputOTPGroup, type InputOTPProps, InputOTPSeparator, InputOTPSlot, type InputProps, LABEL_PLACEMENT, Label, type LabelProps, LargeModal, type LargeModalProps, LearnMoreButton, type LearnMoreButtonProps, Link, type LinkProps, Loader, type LoaderProps, LoadingBar, type LoadingBarProps, type LucideIconEntry, METRIC_CARD_VARIANTS, MetricCard, type MetricCardProps, Modal, ModalButton, ModalLoader, type ModalLoaderProps, type ModalProps, OverlayLoader, type OverlayLoaderProps, PageLoader, type PageLoaderProps, Pagination, type PaginationProps, type PaginationVariant, PhoneField, type PhoneFieldOption, type PhoneFieldProps, type PhoneFieldValue, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, PopoverTrigger, Radio, RadioGroup, RadioGroupItem, type RadioOption, type RadioProps, RadioWithBorder, RatingProgress, type RatingProgressProps, RatingRadioGroup, type RatingRadioGroupProps, RatingStars, type RatingStarsProps, RegistryIcon, ResponsiveSheet, type ResponsiveSheetProps, RotateIcon, type RotateIconProps, ScrollArea, type ScrollAreaProps, ScrollBar, type ScrollBarProps, SearchButton, type SearchButtonProps, SearchInput, type SearchInputProps, SearchableSelect, type SearchableSelectProps, type SearchableSelectValue, Section, type SectionProps, SectionTag, SectionTagColors, type SectionTagProps, Select, SelectContent, type SelectForwardType, SelectGroup, SelectItem, SelectLabel, type SelectOption, SelectPortal, type SelectProps, SelectRoot, SelectSeparator, SelectTrigger, SelectValue$1 as SelectValue, SelectorButton, type SelectorButtonProps, type SelectorOption, Selectors, type SelectorsProps, 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, Skeleton, type SkeletonProps, 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, Switch, SwitchBlocks, type SwitchBlocksOption, type SwitchBlocksProps, SwitchGroup, type SwitchGroupProps, type SwitchOption, type SwitchProps, TASK_VARIANTS, TabbedSection, type TabbedSectionProps, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TablePlaceholder, type TablePlaceholderProps, TableRow, Tabs, TabsContent, TabsList, type TabsListProps, TabsTrigger, type TabsTriggerProps, TaskCard, type TaskCardProps, TextField, type TextFieldProps, Textarea, type TextareaProps, ThreeDotsLoader, type ThreeDotsLoaderProps, ToggleGroup, ToggleGroupItem, Toggles, type TogglesForwardType, type TogglesProps, Tooltip, TooltipContent, type TooltipContentProps, type TooltipProps, TooltipProvider, TooltipRoot, type TooltipRootProps, TooltipRootWrapper, TooltipTrigger, type UiKitLocale, UploadedFilesList, type UploadedFilesListProps, VideoPlayer, type VideoPlayerProps, WideButton, type WideButtonProps, badgeVariants, bookmarkTabsListVariants, bookmarkTabsTriggerVariants, buttonGroupVariants, buttonVariants, calendarClassNames, cn, emptyMediaVariants, getSidebarState, inputVariants, labelVariants, sectionTagVariants, switchThumbVariants, switchVariants, tabsListVariants, tabsTriggerVariants, toggleVariants, uiKitI18nResources, uiKitTranslations, useRadioOptions, useSidebar, useSidebarMenuButton, useSidebarSafe, useUpdateToast };
|
|
2510
|
+
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, type ChannelOption, ChannelSelector, type ChannelSelectorProps, Checkbox, CheckboxGroup, type CheckboxGroupProps, type CheckboxOption, type CheckboxProps, CommingSoonBadge, type CommingSoonBadgeProps, ConfirmationDialog, type ConfirmationDialogProps, CopyIcon, type CopyIconProps, CopyLinkButton, type CopyLinkButtonProps, type CustomIconEntry, DataTable, type DataTableProps, DatePicker, type DatePickerProps, type DatePickerValue, DefaultSelectTrigger, type DefaultSelectTriggerProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DialogVisuallyHidden, DividingSubsection, DownloadEntryFormsButton, type DownloadEntryFormsButtonProps, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownButton, type DropdownButtonProps, DropdownMenu, DropdownMenuContent, type DropdownMenuContentSide, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuSeparator, DropdownMenuTrigger, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptySectionPlaceholder, type EmptySectionPlaceholderProps, EmptyTitle, ErrorMessage, type ErrorMessageProps, ExternalLink, type ExternalLinkProps, FeatureCard, type FeatureCardProps, FieldTrigger, type FieldTriggerProps, FileInputButton, type FileInputButtonProps, FormBox, Content as FormBoxContent, type FormBoxContentProps, Header as FormBoxHeader, type FormBoxHeaderProps, Root as FormBoxRoot, type FormBoxRootProps, SubHeader as FormBoxSubHeader, type FormBoxSubHeaderProps, FramedIcon, type FramedIconProps, FreeTextField, type FreeTextFieldProps, GridItems, type GridItemsProps, type GuestVerificationStatus, HALO_ICON_STATUS, HaloIcon, type HaloIconProps, HelpTooltip, type HelpTooltipProps, IVStatusBadge, type IVStatusBadgeProps, IV_BADGE_STATUS, Icon$1 as Icon, IconButton, type IconButtonProps, type IconEntry, type IconNames, type IconProps, IconRegistry, IconsDropdown, type IconsDropdownProps, Image, ImageFullScreenView, type ImageFullScreenViewProps, type ImageProps, InfoBox, type InfoBoxProps, Input, InputOTP, InputOTPGroup, type InputOTPProps, InputOTPSeparator, InputOTPSlot, type InputProps, LABEL_PLACEMENT, Label, type LabelProps, LargeModal, type LargeModalProps, LearnMoreButton, type LearnMoreButtonProps, Link, type LinkProps, Loader, type LoaderProps, LoadingBar, type LoadingBarProps, type LucideIconEntry, METRIC_CARD_VARIANTS, MetricCard, type MetricCardProps, Modal, ModalButton, ModalLoader, type ModalLoaderProps, type ModalProps, OverlayLoader, type OverlayLoaderProps, PageLoader, type PageLoaderProps, Pagination, type PaginationProps, type PaginationVariant, PhoneField, type PhoneFieldOption, type PhoneFieldProps, type PhoneFieldValue, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, PopoverTrigger, Radio, RadioGroup, RadioGroupItem, type RadioOption, type RadioProps, RadioWithBorder, RatingProgress, type RatingProgressProps, RatingRadioGroup, type RatingRadioGroupProps, RatingStars, type RatingStarsProps, RegistryIcon, ResponsiveSheet, type ResponsiveSheetProps, RotateIcon, type RotateIconProps, ScrollArea, type ScrollAreaProps, ScrollBar, type ScrollBarProps, SearchButton, type SearchButtonProps, SearchInput, type SearchInputProps, SearchableSelect, type SearchableSelectProps, type SearchableSelectValue, Section, type SectionProps, SectionTag, SectionTagColors, type SectionTagProps, Select, SelectContent, type SelectForwardType, SelectGroup, SelectItem, SelectLabel, type SelectOption, SelectPortal, type SelectProps, SelectRoot, SelectSeparator, SelectTrigger, SelectValue$1 as SelectValue, SelectorButton, type SelectorButtonProps, type SelectorOption, Selectors, type SelectorsProps, 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, Skeleton, type SkeletonProps, 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, Switch, SwitchBlocks, type SwitchBlocksOption, type SwitchBlocksProps, SwitchGroup, type SwitchGroupProps, type SwitchOption, type SwitchProps, TASK_VARIANTS, TabbedSection, type TabbedSectionProps, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TablePlaceholder, type TablePlaceholderProps, TableRow, Tabs, TabsContent, TabsList, type TabsListProps, TabsTrigger, type TabsTriggerProps, TaskCard, type TaskCardProps, TextField, type TextFieldProps, Textarea, type TextareaProps, ThreeDotsLoader, type ThreeDotsLoaderProps, ToggleGroup, ToggleGroupItem, Toggles, type TogglesForwardType, type TogglesProps, Tooltip, TooltipContent, type TooltipContentProps, type TooltipProps, TooltipProvider, TooltipRoot, type TooltipRootProps, TooltipRootWrapper, TooltipTrigger, type UiKitLocale, UploadedFilesList, type UploadedFilesListProps, VideoPlayer, type VideoPlayerProps, WideButton, type WideButtonProps, badgeVariants, bookmarkTabsListVariants, bookmarkTabsTriggerVariants, buttonGroupVariants, buttonVariants, calendarClassNames, cn, emptyMediaVariants, getSidebarState, inputVariants, labelVariants, sectionTagVariants, switchThumbVariants, switchVariants, tabsListVariants, tabsTriggerVariants, toggleVariants, uiKitI18nResources, uiKitTranslations, useRadioOptions, useSidebar, useSidebarMenuButton, useSidebarSafe, useUpdateToast };
|
package/dist/index.d.ts
CHANGED
|
@@ -573,8 +573,9 @@ interface HelpTooltipProps {
|
|
|
573
573
|
contentClassName?: string;
|
|
574
574
|
size?: 16 | 20;
|
|
575
575
|
label?: string;
|
|
576
|
+
triggerAs?: 'button' | 'span';
|
|
576
577
|
}
|
|
577
|
-
declare function HelpTooltip({ content, side, variant, onClick, className, contentClassName, size, label, }: HelpTooltipProps): react_jsx_runtime.JSX.Element;
|
|
578
|
+
declare function HelpTooltip({ content, side, variant, onClick, className, contentClassName, size, label, triggerAs, }: HelpTooltipProps): react_jsx_runtime.JSX.Element;
|
|
578
579
|
|
|
579
580
|
type IconNames = 'shield-star' | 'circled-home' | 'house-i' | 'calendar-days-in' | 'shield-star-in' | 'chart-no-axes-combined-in' | 'chart-no-axes-combined' | 'chart-no-axes-combined-out' | 'shield-star-out' | 'airbnb' | 'whatsapp' | 'sms' | 'meta' | 'instagram' | 'x' | 'facebook' | 'linkedin' | 'host';
|
|
580
581
|
|
|
@@ -1650,10 +1651,15 @@ declare function SearchButton({ onClick, className, icon, ariaLabel }: SearchBut
|
|
|
1650
1651
|
|
|
1651
1652
|
type SearchInputProps = ComponentProps<'input'> & {
|
|
1652
1653
|
className?: string;
|
|
1654
|
+
invalid?: boolean;
|
|
1655
|
+
label?: string;
|
|
1656
|
+
loading?: boolean;
|
|
1653
1657
|
onReset?: () => void;
|
|
1658
|
+
optional?: boolean | string;
|
|
1659
|
+
tooltip?: ReactNode;
|
|
1654
1660
|
wrapperClassName?: string;
|
|
1655
1661
|
};
|
|
1656
|
-
declare function SearchInput({ onReset, placeholder, wrapperClassName, className, ...props }: SearchInputProps): react_jsx_runtime.JSX.Element;
|
|
1662
|
+
declare function SearchInput({ disabled, invalid, label, loading, onReset, optional, placeholder, tooltip, wrapperClassName, className, ...props }: SearchInputProps): react_jsx_runtime.JSX.Element;
|
|
1657
1663
|
|
|
1658
1664
|
declare const sectionTagVariants: (props?: ({
|
|
1659
1665
|
color?: "blue" | "green" | null | undefined;
|
|
@@ -2210,16 +2216,21 @@ declare function VideoPlayer({ src, poster, title, onClose, isFullScreen, autoPl
|
|
|
2210
2216
|
type WideButtonProps = Omit<ButtonProps, 'size'>;
|
|
2211
2217
|
declare function WideButton({ className, disabled, ...props }: WideButtonProps): react_jsx_runtime.JSX.Element;
|
|
2212
2218
|
|
|
2219
|
+
type DatePickerValue = Date | number | null | undefined | '';
|
|
2213
2220
|
type DatePickerProps = {
|
|
2214
2221
|
variant?: 'default' | 'airbnb';
|
|
2215
2222
|
label: string;
|
|
2216
2223
|
topLabel?: string;
|
|
2217
|
-
value?:
|
|
2218
|
-
defaultValue?:
|
|
2224
|
+
value?: DatePickerValue;
|
|
2225
|
+
defaultValue?: DatePickerValue;
|
|
2219
2226
|
onChange: (value: Date | null) => void;
|
|
2220
2227
|
placeholder?: string;
|
|
2221
2228
|
disabled?: boolean;
|
|
2222
2229
|
error?: string;
|
|
2230
|
+
invalid?: boolean;
|
|
2231
|
+
loading?: boolean;
|
|
2232
|
+
optional?: boolean | string;
|
|
2233
|
+
tooltip?: React$1.ReactNode;
|
|
2223
2234
|
className?: string;
|
|
2224
2235
|
name?: string;
|
|
2225
2236
|
minDate?: Date;
|
|
@@ -2283,16 +2294,20 @@ type FieldTriggerProps = {
|
|
|
2283
2294
|
valueId?: string;
|
|
2284
2295
|
helperTextId?: string;
|
|
2285
2296
|
errorId?: string;
|
|
2286
|
-
labelText?:
|
|
2297
|
+
labelText?: React$1.ReactNode;
|
|
2287
2298
|
valueText?: string;
|
|
2288
2299
|
placeholder?: string;
|
|
2289
2300
|
disabled?: boolean;
|
|
2290
|
-
error?: string;
|
|
2301
|
+
error?: boolean | string;
|
|
2302
|
+
loading?: boolean;
|
|
2303
|
+
optional?: boolean | string;
|
|
2304
|
+
tooltip?: React$1.ReactNode;
|
|
2291
2305
|
describedBy?: string;
|
|
2292
2306
|
className?: string;
|
|
2293
2307
|
contentClassName?: string;
|
|
2294
2308
|
trailingAdornment?: React$1.ReactNode;
|
|
2295
2309
|
forceFloatingLabel?: boolean;
|
|
2310
|
+
forceLabelText?: boolean;
|
|
2296
2311
|
hideErrorMessage?: boolean;
|
|
2297
2312
|
children?: React$1.ReactNode;
|
|
2298
2313
|
onClick?: () => void;
|
|
@@ -2308,16 +2323,20 @@ declare const FieldTrigger: React$1.ForwardRefExoticComponent<{
|
|
|
2308
2323
|
valueId?: string;
|
|
2309
2324
|
helperTextId?: string;
|
|
2310
2325
|
errorId?: string;
|
|
2311
|
-
labelText?:
|
|
2326
|
+
labelText?: React$1.ReactNode;
|
|
2312
2327
|
valueText?: string;
|
|
2313
2328
|
placeholder?: string;
|
|
2314
2329
|
disabled?: boolean;
|
|
2315
|
-
error?: string;
|
|
2330
|
+
error?: boolean | string;
|
|
2331
|
+
loading?: boolean;
|
|
2332
|
+
optional?: boolean | string;
|
|
2333
|
+
tooltip?: React$1.ReactNode;
|
|
2316
2334
|
describedBy?: string;
|
|
2317
2335
|
className?: string;
|
|
2318
2336
|
contentClassName?: string;
|
|
2319
2337
|
trailingAdornment?: React$1.ReactNode;
|
|
2320
2338
|
forceFloatingLabel?: boolean;
|
|
2339
|
+
forceLabelText?: boolean;
|
|
2321
2340
|
hideErrorMessage?: boolean;
|
|
2322
2341
|
children?: React$1.ReactNode;
|
|
2323
2342
|
onClick?: () => void;
|
|
@@ -2330,6 +2349,10 @@ type AirbnbInputProps = React$1.InputHTMLAttributes<HTMLInputElement> & {
|
|
|
2330
2349
|
topLabel?: string;
|
|
2331
2350
|
helperText?: string;
|
|
2332
2351
|
error?: string;
|
|
2352
|
+
invalid?: boolean;
|
|
2353
|
+
loading?: boolean;
|
|
2354
|
+
optional?: boolean | string;
|
|
2355
|
+
tooltip?: React$1.ReactNode;
|
|
2333
2356
|
wrapperClassName?: string;
|
|
2334
2357
|
fieldClassName?: string;
|
|
2335
2358
|
contentClassName?: string;
|
|
@@ -2343,6 +2366,10 @@ declare const AirbnbInput: React$1.ForwardRefExoticComponent<React$1.InputHTMLAt
|
|
|
2343
2366
|
topLabel?: string;
|
|
2344
2367
|
helperText?: string;
|
|
2345
2368
|
error?: string;
|
|
2369
|
+
invalid?: boolean;
|
|
2370
|
+
loading?: boolean;
|
|
2371
|
+
optional?: boolean | string;
|
|
2372
|
+
tooltip?: React$1.ReactNode;
|
|
2346
2373
|
wrapperClassName?: string;
|
|
2347
2374
|
fieldClassName?: string;
|
|
2348
2375
|
contentClassName?: string;
|
|
@@ -2369,7 +2396,12 @@ type PhoneFieldProps = {
|
|
|
2369
2396
|
options: PhoneFieldOption[];
|
|
2370
2397
|
placeholder?: string;
|
|
2371
2398
|
disabled?: boolean;
|
|
2399
|
+
codeReadOnly?: boolean;
|
|
2372
2400
|
error?: string;
|
|
2401
|
+
invalid?: boolean;
|
|
2402
|
+
loading?: boolean;
|
|
2403
|
+
optional?: boolean | string;
|
|
2404
|
+
tooltip?: React$1.ReactNode;
|
|
2373
2405
|
className?: string;
|
|
2374
2406
|
name?: string;
|
|
2375
2407
|
codeName?: string;
|
|
@@ -2390,7 +2422,11 @@ type SelectRenderTriggerProps<T = undefined, V extends SelectValue = string, L e
|
|
|
2390
2422
|
value?: SelectOption<T, V, L> | null;
|
|
2391
2423
|
valueLabel?: string;
|
|
2392
2424
|
disabled?: boolean;
|
|
2425
|
+
loading?: boolean;
|
|
2426
|
+
optional?: boolean | string;
|
|
2427
|
+
tooltip?: React$1.ReactNode;
|
|
2393
2428
|
error?: string;
|
|
2429
|
+
invalid?: boolean;
|
|
2394
2430
|
listboxId: string;
|
|
2395
2431
|
describedBy?: string;
|
|
2396
2432
|
triggerRef: React$1.Ref<HTMLButtonElement>;
|
|
@@ -2408,7 +2444,11 @@ type AirbnbSelectProps<T = undefined, V extends SelectValue = string, L extends
|
|
|
2408
2444
|
getValueLabel?: (option: SelectOption<T, V, L>) => string;
|
|
2409
2445
|
renderTrigger?: (props: SelectRenderTriggerProps<T, V, L>) => React$1.ReactNode;
|
|
2410
2446
|
disabled?: boolean;
|
|
2447
|
+
loading?: boolean;
|
|
2448
|
+
optional?: boolean | string;
|
|
2449
|
+
tooltip?: React$1.ReactNode;
|
|
2411
2450
|
error?: string;
|
|
2451
|
+
invalid?: boolean;
|
|
2412
2452
|
hideErrorMessage?: boolean;
|
|
2413
2453
|
className?: string;
|
|
2414
2454
|
menuClassName?: string;
|
|
@@ -2450,6 +2490,9 @@ type SearchableSelectProps<T = undefined, V extends SearchableSelectValue = stri
|
|
|
2450
2490
|
getValueLabel?: (option: SelectOption<T, V, L>) => string;
|
|
2451
2491
|
disabled?: boolean;
|
|
2452
2492
|
error?: string;
|
|
2493
|
+
invalid?: boolean;
|
|
2494
|
+
optional?: boolean | string;
|
|
2495
|
+
tooltip?: ReactNode;
|
|
2453
2496
|
hideErrorMessage?: boolean;
|
|
2454
2497
|
name?: string;
|
|
2455
2498
|
className?: string;
|
|
@@ -2464,4 +2507,4 @@ declare const SearchableSelect: SearchableSelectComponent;
|
|
|
2464
2507
|
|
|
2465
2508
|
declare function cn(...inputs: ClassValue[]): string;
|
|
2466
2509
|
|
|
2467
|
-
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, type ChannelOption, ChannelSelector, type ChannelSelectorProps, Checkbox, CheckboxGroup, type CheckboxGroupProps, type CheckboxOption, type CheckboxProps, CommingSoonBadge, type CommingSoonBadgeProps, ConfirmationDialog, type ConfirmationDialogProps, CopyIcon, type CopyIconProps, CopyLinkButton, type CopyLinkButtonProps, type CustomIconEntry, DataTable, type DataTableProps, DatePicker, type DatePickerProps, DefaultSelectTrigger, type DefaultSelectTriggerProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DialogVisuallyHidden, DividingSubsection, DownloadEntryFormsButton, type DownloadEntryFormsButtonProps, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownButton, type DropdownButtonProps, DropdownMenu, DropdownMenuContent, type DropdownMenuContentSide, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuSeparator, DropdownMenuTrigger, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptySectionPlaceholder, type EmptySectionPlaceholderProps, EmptyTitle, ErrorMessage, type ErrorMessageProps, ExternalLink, type ExternalLinkProps, FeatureCard, type FeatureCardProps, FieldTrigger, type FieldTriggerProps, FileInputButton, type FileInputButtonProps, FormBox, Content as FormBoxContent, type FormBoxContentProps, Header as FormBoxHeader, type FormBoxHeaderProps, Root as FormBoxRoot, type FormBoxRootProps, SubHeader as FormBoxSubHeader, type FormBoxSubHeaderProps, FramedIcon, type FramedIconProps, FreeTextField, type FreeTextFieldProps, GridItems, type GridItemsProps, type GuestVerificationStatus, HALO_ICON_STATUS, HaloIcon, type HaloIconProps, HelpTooltip, type HelpTooltipProps, IVStatusBadge, type IVStatusBadgeProps, IV_BADGE_STATUS, Icon$1 as Icon, IconButton, type IconButtonProps, type IconEntry, type IconNames, type IconProps, IconRegistry, IconsDropdown, type IconsDropdownProps, Image, ImageFullScreenView, type ImageFullScreenViewProps, type ImageProps, InfoBox, type InfoBoxProps, Input, InputOTP, InputOTPGroup, type InputOTPProps, InputOTPSeparator, InputOTPSlot, type InputProps, LABEL_PLACEMENT, Label, type LabelProps, LargeModal, type LargeModalProps, LearnMoreButton, type LearnMoreButtonProps, Link, type LinkProps, Loader, type LoaderProps, LoadingBar, type LoadingBarProps, type LucideIconEntry, METRIC_CARD_VARIANTS, MetricCard, type MetricCardProps, Modal, ModalButton, ModalLoader, type ModalLoaderProps, type ModalProps, OverlayLoader, type OverlayLoaderProps, PageLoader, type PageLoaderProps, Pagination, type PaginationProps, type PaginationVariant, PhoneField, type PhoneFieldOption, type PhoneFieldProps, type PhoneFieldValue, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, PopoverTrigger, Radio, RadioGroup, RadioGroupItem, type RadioOption, type RadioProps, RadioWithBorder, RatingProgress, type RatingProgressProps, RatingRadioGroup, type RatingRadioGroupProps, RatingStars, type RatingStarsProps, RegistryIcon, ResponsiveSheet, type ResponsiveSheetProps, RotateIcon, type RotateIconProps, ScrollArea, type ScrollAreaProps, ScrollBar, type ScrollBarProps, SearchButton, type SearchButtonProps, SearchInput, type SearchInputProps, SearchableSelect, type SearchableSelectProps, type SearchableSelectValue, Section, type SectionProps, SectionTag, SectionTagColors, type SectionTagProps, Select, SelectContent, type SelectForwardType, SelectGroup, SelectItem, SelectLabel, type SelectOption, SelectPortal, type SelectProps, SelectRoot, SelectSeparator, SelectTrigger, SelectValue$1 as SelectValue, SelectorButton, type SelectorButtonProps, type SelectorOption, Selectors, type SelectorsProps, 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, Skeleton, type SkeletonProps, 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, Switch, SwitchBlocks, type SwitchBlocksOption, type SwitchBlocksProps, SwitchGroup, type SwitchGroupProps, type SwitchOption, type SwitchProps, TASK_VARIANTS, TabbedSection, type TabbedSectionProps, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TablePlaceholder, type TablePlaceholderProps, TableRow, Tabs, TabsContent, TabsList, type TabsListProps, TabsTrigger, type TabsTriggerProps, TaskCard, type TaskCardProps, TextField, type TextFieldProps, Textarea, type TextareaProps, ThreeDotsLoader, type ThreeDotsLoaderProps, ToggleGroup, ToggleGroupItem, Toggles, type TogglesForwardType, type TogglesProps, Tooltip, TooltipContent, type TooltipContentProps, type TooltipProps, TooltipProvider, TooltipRoot, type TooltipRootProps, TooltipRootWrapper, TooltipTrigger, type UiKitLocale, UploadedFilesList, type UploadedFilesListProps, VideoPlayer, type VideoPlayerProps, WideButton, type WideButtonProps, badgeVariants, bookmarkTabsListVariants, bookmarkTabsTriggerVariants, buttonGroupVariants, buttonVariants, calendarClassNames, cn, emptyMediaVariants, getSidebarState, inputVariants, labelVariants, sectionTagVariants, switchThumbVariants, switchVariants, tabsListVariants, tabsTriggerVariants, toggleVariants, uiKitI18nResources, uiKitTranslations, useRadioOptions, useSidebar, useSidebarMenuButton, useSidebarSafe, useUpdateToast };
|
|
2510
|
+
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, type ChannelOption, ChannelSelector, type ChannelSelectorProps, Checkbox, CheckboxGroup, type CheckboxGroupProps, type CheckboxOption, type CheckboxProps, CommingSoonBadge, type CommingSoonBadgeProps, ConfirmationDialog, type ConfirmationDialogProps, CopyIcon, type CopyIconProps, CopyLinkButton, type CopyLinkButtonProps, type CustomIconEntry, DataTable, type DataTableProps, DatePicker, type DatePickerProps, type DatePickerValue, DefaultSelectTrigger, type DefaultSelectTriggerProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DialogVisuallyHidden, DividingSubsection, DownloadEntryFormsButton, type DownloadEntryFormsButtonProps, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownButton, type DropdownButtonProps, DropdownMenu, DropdownMenuContent, type DropdownMenuContentSide, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuSeparator, DropdownMenuTrigger, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptySectionPlaceholder, type EmptySectionPlaceholderProps, EmptyTitle, ErrorMessage, type ErrorMessageProps, ExternalLink, type ExternalLinkProps, FeatureCard, type FeatureCardProps, FieldTrigger, type FieldTriggerProps, FileInputButton, type FileInputButtonProps, FormBox, Content as FormBoxContent, type FormBoxContentProps, Header as FormBoxHeader, type FormBoxHeaderProps, Root as FormBoxRoot, type FormBoxRootProps, SubHeader as FormBoxSubHeader, type FormBoxSubHeaderProps, FramedIcon, type FramedIconProps, FreeTextField, type FreeTextFieldProps, GridItems, type GridItemsProps, type GuestVerificationStatus, HALO_ICON_STATUS, HaloIcon, type HaloIconProps, HelpTooltip, type HelpTooltipProps, IVStatusBadge, type IVStatusBadgeProps, IV_BADGE_STATUS, Icon$1 as Icon, IconButton, type IconButtonProps, type IconEntry, type IconNames, type IconProps, IconRegistry, IconsDropdown, type IconsDropdownProps, Image, ImageFullScreenView, type ImageFullScreenViewProps, type ImageProps, InfoBox, type InfoBoxProps, Input, InputOTP, InputOTPGroup, type InputOTPProps, InputOTPSeparator, InputOTPSlot, type InputProps, LABEL_PLACEMENT, Label, type LabelProps, LargeModal, type LargeModalProps, LearnMoreButton, type LearnMoreButtonProps, Link, type LinkProps, Loader, type LoaderProps, LoadingBar, type LoadingBarProps, type LucideIconEntry, METRIC_CARD_VARIANTS, MetricCard, type MetricCardProps, Modal, ModalButton, ModalLoader, type ModalLoaderProps, type ModalProps, OverlayLoader, type OverlayLoaderProps, PageLoader, type PageLoaderProps, Pagination, type PaginationProps, type PaginationVariant, PhoneField, type PhoneFieldOption, type PhoneFieldProps, type PhoneFieldValue, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, PopoverTrigger, Radio, RadioGroup, RadioGroupItem, type RadioOption, type RadioProps, RadioWithBorder, RatingProgress, type RatingProgressProps, RatingRadioGroup, type RatingRadioGroupProps, RatingStars, type RatingStarsProps, RegistryIcon, ResponsiveSheet, type ResponsiveSheetProps, RotateIcon, type RotateIconProps, ScrollArea, type ScrollAreaProps, ScrollBar, type ScrollBarProps, SearchButton, type SearchButtonProps, SearchInput, type SearchInputProps, SearchableSelect, type SearchableSelectProps, type SearchableSelectValue, Section, type SectionProps, SectionTag, SectionTagColors, type SectionTagProps, Select, SelectContent, type SelectForwardType, SelectGroup, SelectItem, SelectLabel, type SelectOption, SelectPortal, type SelectProps, SelectRoot, SelectSeparator, SelectTrigger, SelectValue$1 as SelectValue, SelectorButton, type SelectorButtonProps, type SelectorOption, Selectors, type SelectorsProps, 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, Skeleton, type SkeletonProps, 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, Switch, SwitchBlocks, type SwitchBlocksOption, type SwitchBlocksProps, SwitchGroup, type SwitchGroupProps, type SwitchOption, type SwitchProps, TASK_VARIANTS, TabbedSection, type TabbedSectionProps, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TablePlaceholder, type TablePlaceholderProps, TableRow, Tabs, TabsContent, TabsList, type TabsListProps, TabsTrigger, type TabsTriggerProps, TaskCard, type TaskCardProps, TextField, type TextFieldProps, Textarea, type TextareaProps, ThreeDotsLoader, type ThreeDotsLoaderProps, ToggleGroup, ToggleGroupItem, Toggles, type TogglesForwardType, type TogglesProps, Tooltip, TooltipContent, type TooltipContentProps, type TooltipProps, TooltipProvider, TooltipRoot, type TooltipRootProps, TooltipRootWrapper, TooltipTrigger, type UiKitLocale, UploadedFilesList, type UploadedFilesListProps, VideoPlayer, type VideoPlayerProps, WideButton, type WideButtonProps, badgeVariants, bookmarkTabsListVariants, bookmarkTabsTriggerVariants, buttonGroupVariants, buttonVariants, calendarClassNames, cn, emptyMediaVariants, getSidebarState, inputVariants, labelVariants, sectionTagVariants, switchThumbVariants, switchVariants, tabsListVariants, tabsTriggerVariants, toggleVariants, uiKitI18nResources, uiKitTranslations, useRadioOptions, useSidebar, useSidebarMenuButton, useSidebarSafe, useUpdateToast };
|