@chekinapp/ui 0.0.4 → 0.0.6
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 +296 -109
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +59 -9
- package/dist/index.d.ts +59 -9
- package/dist/index.js +301 -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;
|
|
@@ -2254,6 +2265,13 @@ declare const DrawerFooter: {
|
|
|
2254
2265
|
declare const DrawerTitle: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
|
|
2255
2266
|
declare const DrawerDescription: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
2256
2267
|
|
|
2268
|
+
type FieldErrorMessageProps = Omit<React$1.HTMLAttributes<HTMLParagraphElement>, 'children'> & {
|
|
2269
|
+
message?: React$1.ReactNode;
|
|
2270
|
+
children?: React$1.ReactNode;
|
|
2271
|
+
disabled?: boolean;
|
|
2272
|
+
};
|
|
2273
|
+
declare function FieldErrorMessage({ id, message, children, disabled, className, ...props }: FieldErrorMessageProps): react_jsx_runtime.JSX.Element | null;
|
|
2274
|
+
|
|
2257
2275
|
type ResponsiveSheetProps = {
|
|
2258
2276
|
open: boolean;
|
|
2259
2277
|
onClose: () => void;
|
|
@@ -2283,16 +2301,20 @@ type FieldTriggerProps = {
|
|
|
2283
2301
|
valueId?: string;
|
|
2284
2302
|
helperTextId?: string;
|
|
2285
2303
|
errorId?: string;
|
|
2286
|
-
labelText?:
|
|
2304
|
+
labelText?: React$1.ReactNode;
|
|
2287
2305
|
valueText?: string;
|
|
2288
2306
|
placeholder?: string;
|
|
2289
2307
|
disabled?: boolean;
|
|
2290
|
-
error?: string;
|
|
2308
|
+
error?: boolean | string;
|
|
2309
|
+
loading?: boolean;
|
|
2310
|
+
optional?: boolean | string;
|
|
2311
|
+
tooltip?: React$1.ReactNode;
|
|
2291
2312
|
describedBy?: string;
|
|
2292
2313
|
className?: string;
|
|
2293
2314
|
contentClassName?: string;
|
|
2294
2315
|
trailingAdornment?: React$1.ReactNode;
|
|
2295
2316
|
forceFloatingLabel?: boolean;
|
|
2317
|
+
forceLabelText?: boolean;
|
|
2296
2318
|
hideErrorMessage?: boolean;
|
|
2297
2319
|
children?: React$1.ReactNode;
|
|
2298
2320
|
onClick?: () => void;
|
|
@@ -2308,16 +2330,20 @@ declare const FieldTrigger: React$1.ForwardRefExoticComponent<{
|
|
|
2308
2330
|
valueId?: string;
|
|
2309
2331
|
helperTextId?: string;
|
|
2310
2332
|
errorId?: string;
|
|
2311
|
-
labelText?:
|
|
2333
|
+
labelText?: React$1.ReactNode;
|
|
2312
2334
|
valueText?: string;
|
|
2313
2335
|
placeholder?: string;
|
|
2314
2336
|
disabled?: boolean;
|
|
2315
|
-
error?: string;
|
|
2337
|
+
error?: boolean | string;
|
|
2338
|
+
loading?: boolean;
|
|
2339
|
+
optional?: boolean | string;
|
|
2340
|
+
tooltip?: React$1.ReactNode;
|
|
2316
2341
|
describedBy?: string;
|
|
2317
2342
|
className?: string;
|
|
2318
2343
|
contentClassName?: string;
|
|
2319
2344
|
trailingAdornment?: React$1.ReactNode;
|
|
2320
2345
|
forceFloatingLabel?: boolean;
|
|
2346
|
+
forceLabelText?: boolean;
|
|
2321
2347
|
hideErrorMessage?: boolean;
|
|
2322
2348
|
children?: React$1.ReactNode;
|
|
2323
2349
|
onClick?: () => void;
|
|
@@ -2330,6 +2356,10 @@ type AirbnbInputProps = React$1.InputHTMLAttributes<HTMLInputElement> & {
|
|
|
2330
2356
|
topLabel?: string;
|
|
2331
2357
|
helperText?: string;
|
|
2332
2358
|
error?: string;
|
|
2359
|
+
invalid?: boolean;
|
|
2360
|
+
loading?: boolean;
|
|
2361
|
+
optional?: boolean | string;
|
|
2362
|
+
tooltip?: React$1.ReactNode;
|
|
2333
2363
|
wrapperClassName?: string;
|
|
2334
2364
|
fieldClassName?: string;
|
|
2335
2365
|
contentClassName?: string;
|
|
@@ -2343,6 +2373,10 @@ declare const AirbnbInput: React$1.ForwardRefExoticComponent<React$1.InputHTMLAt
|
|
|
2343
2373
|
topLabel?: string;
|
|
2344
2374
|
helperText?: string;
|
|
2345
2375
|
error?: string;
|
|
2376
|
+
invalid?: boolean;
|
|
2377
|
+
loading?: boolean;
|
|
2378
|
+
optional?: boolean | string;
|
|
2379
|
+
tooltip?: React$1.ReactNode;
|
|
2346
2380
|
wrapperClassName?: string;
|
|
2347
2381
|
fieldClassName?: string;
|
|
2348
2382
|
contentClassName?: string;
|
|
@@ -2369,7 +2403,12 @@ type PhoneFieldProps = {
|
|
|
2369
2403
|
options: PhoneFieldOption[];
|
|
2370
2404
|
placeholder?: string;
|
|
2371
2405
|
disabled?: boolean;
|
|
2406
|
+
codeReadOnly?: boolean;
|
|
2372
2407
|
error?: string;
|
|
2408
|
+
invalid?: boolean;
|
|
2409
|
+
loading?: boolean;
|
|
2410
|
+
optional?: boolean | string;
|
|
2411
|
+
tooltip?: React$1.ReactNode;
|
|
2373
2412
|
className?: string;
|
|
2374
2413
|
name?: string;
|
|
2375
2414
|
codeName?: string;
|
|
@@ -2390,7 +2429,11 @@ type SelectRenderTriggerProps<T = undefined, V extends SelectValue = string, L e
|
|
|
2390
2429
|
value?: SelectOption<T, V, L> | null;
|
|
2391
2430
|
valueLabel?: string;
|
|
2392
2431
|
disabled?: boolean;
|
|
2432
|
+
loading?: boolean;
|
|
2433
|
+
optional?: boolean | string;
|
|
2434
|
+
tooltip?: React$1.ReactNode;
|
|
2393
2435
|
error?: string;
|
|
2436
|
+
invalid?: boolean;
|
|
2394
2437
|
listboxId: string;
|
|
2395
2438
|
describedBy?: string;
|
|
2396
2439
|
triggerRef: React$1.Ref<HTMLButtonElement>;
|
|
@@ -2408,7 +2451,11 @@ type AirbnbSelectProps<T = undefined, V extends SelectValue = string, L extends
|
|
|
2408
2451
|
getValueLabel?: (option: SelectOption<T, V, L>) => string;
|
|
2409
2452
|
renderTrigger?: (props: SelectRenderTriggerProps<T, V, L>) => React$1.ReactNode;
|
|
2410
2453
|
disabled?: boolean;
|
|
2454
|
+
loading?: boolean;
|
|
2455
|
+
optional?: boolean | string;
|
|
2456
|
+
tooltip?: React$1.ReactNode;
|
|
2411
2457
|
error?: string;
|
|
2458
|
+
invalid?: boolean;
|
|
2412
2459
|
hideErrorMessage?: boolean;
|
|
2413
2460
|
className?: string;
|
|
2414
2461
|
menuClassName?: string;
|
|
@@ -2450,6 +2497,9 @@ type SearchableSelectProps<T = undefined, V extends SearchableSelectValue = stri
|
|
|
2450
2497
|
getValueLabel?: (option: SelectOption<T, V, L>) => string;
|
|
2451
2498
|
disabled?: boolean;
|
|
2452
2499
|
error?: string;
|
|
2500
|
+
invalid?: boolean;
|
|
2501
|
+
optional?: boolean | string;
|
|
2502
|
+
tooltip?: ReactNode;
|
|
2453
2503
|
hideErrorMessage?: boolean;
|
|
2454
2504
|
name?: string;
|
|
2455
2505
|
className?: string;
|
|
@@ -2464,4 +2514,4 @@ declare const SearchableSelect: SearchableSelectComponent;
|
|
|
2464
2514
|
|
|
2465
2515
|
declare function cn(...inputs: ClassValue[]): string;
|
|
2466
2516
|
|
|
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 };
|
|
2517
|
+
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, FieldErrorMessage, type FieldErrorMessageProps, 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;
|
|
@@ -2254,6 +2265,13 @@ declare const DrawerFooter: {
|
|
|
2254
2265
|
declare const DrawerTitle: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
|
|
2255
2266
|
declare const DrawerDescription: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
2256
2267
|
|
|
2268
|
+
type FieldErrorMessageProps = Omit<React$1.HTMLAttributes<HTMLParagraphElement>, 'children'> & {
|
|
2269
|
+
message?: React$1.ReactNode;
|
|
2270
|
+
children?: React$1.ReactNode;
|
|
2271
|
+
disabled?: boolean;
|
|
2272
|
+
};
|
|
2273
|
+
declare function FieldErrorMessage({ id, message, children, disabled, className, ...props }: FieldErrorMessageProps): react_jsx_runtime.JSX.Element | null;
|
|
2274
|
+
|
|
2257
2275
|
type ResponsiveSheetProps = {
|
|
2258
2276
|
open: boolean;
|
|
2259
2277
|
onClose: () => void;
|
|
@@ -2283,16 +2301,20 @@ type FieldTriggerProps = {
|
|
|
2283
2301
|
valueId?: string;
|
|
2284
2302
|
helperTextId?: string;
|
|
2285
2303
|
errorId?: string;
|
|
2286
|
-
labelText?:
|
|
2304
|
+
labelText?: React$1.ReactNode;
|
|
2287
2305
|
valueText?: string;
|
|
2288
2306
|
placeholder?: string;
|
|
2289
2307
|
disabled?: boolean;
|
|
2290
|
-
error?: string;
|
|
2308
|
+
error?: boolean | string;
|
|
2309
|
+
loading?: boolean;
|
|
2310
|
+
optional?: boolean | string;
|
|
2311
|
+
tooltip?: React$1.ReactNode;
|
|
2291
2312
|
describedBy?: string;
|
|
2292
2313
|
className?: string;
|
|
2293
2314
|
contentClassName?: string;
|
|
2294
2315
|
trailingAdornment?: React$1.ReactNode;
|
|
2295
2316
|
forceFloatingLabel?: boolean;
|
|
2317
|
+
forceLabelText?: boolean;
|
|
2296
2318
|
hideErrorMessage?: boolean;
|
|
2297
2319
|
children?: React$1.ReactNode;
|
|
2298
2320
|
onClick?: () => void;
|
|
@@ -2308,16 +2330,20 @@ declare const FieldTrigger: React$1.ForwardRefExoticComponent<{
|
|
|
2308
2330
|
valueId?: string;
|
|
2309
2331
|
helperTextId?: string;
|
|
2310
2332
|
errorId?: string;
|
|
2311
|
-
labelText?:
|
|
2333
|
+
labelText?: React$1.ReactNode;
|
|
2312
2334
|
valueText?: string;
|
|
2313
2335
|
placeholder?: string;
|
|
2314
2336
|
disabled?: boolean;
|
|
2315
|
-
error?: string;
|
|
2337
|
+
error?: boolean | string;
|
|
2338
|
+
loading?: boolean;
|
|
2339
|
+
optional?: boolean | string;
|
|
2340
|
+
tooltip?: React$1.ReactNode;
|
|
2316
2341
|
describedBy?: string;
|
|
2317
2342
|
className?: string;
|
|
2318
2343
|
contentClassName?: string;
|
|
2319
2344
|
trailingAdornment?: React$1.ReactNode;
|
|
2320
2345
|
forceFloatingLabel?: boolean;
|
|
2346
|
+
forceLabelText?: boolean;
|
|
2321
2347
|
hideErrorMessage?: boolean;
|
|
2322
2348
|
children?: React$1.ReactNode;
|
|
2323
2349
|
onClick?: () => void;
|
|
@@ -2330,6 +2356,10 @@ type AirbnbInputProps = React$1.InputHTMLAttributes<HTMLInputElement> & {
|
|
|
2330
2356
|
topLabel?: string;
|
|
2331
2357
|
helperText?: string;
|
|
2332
2358
|
error?: string;
|
|
2359
|
+
invalid?: boolean;
|
|
2360
|
+
loading?: boolean;
|
|
2361
|
+
optional?: boolean | string;
|
|
2362
|
+
tooltip?: React$1.ReactNode;
|
|
2333
2363
|
wrapperClassName?: string;
|
|
2334
2364
|
fieldClassName?: string;
|
|
2335
2365
|
contentClassName?: string;
|
|
@@ -2343,6 +2373,10 @@ declare const AirbnbInput: React$1.ForwardRefExoticComponent<React$1.InputHTMLAt
|
|
|
2343
2373
|
topLabel?: string;
|
|
2344
2374
|
helperText?: string;
|
|
2345
2375
|
error?: string;
|
|
2376
|
+
invalid?: boolean;
|
|
2377
|
+
loading?: boolean;
|
|
2378
|
+
optional?: boolean | string;
|
|
2379
|
+
tooltip?: React$1.ReactNode;
|
|
2346
2380
|
wrapperClassName?: string;
|
|
2347
2381
|
fieldClassName?: string;
|
|
2348
2382
|
contentClassName?: string;
|
|
@@ -2369,7 +2403,12 @@ type PhoneFieldProps = {
|
|
|
2369
2403
|
options: PhoneFieldOption[];
|
|
2370
2404
|
placeholder?: string;
|
|
2371
2405
|
disabled?: boolean;
|
|
2406
|
+
codeReadOnly?: boolean;
|
|
2372
2407
|
error?: string;
|
|
2408
|
+
invalid?: boolean;
|
|
2409
|
+
loading?: boolean;
|
|
2410
|
+
optional?: boolean | string;
|
|
2411
|
+
tooltip?: React$1.ReactNode;
|
|
2373
2412
|
className?: string;
|
|
2374
2413
|
name?: string;
|
|
2375
2414
|
codeName?: string;
|
|
@@ -2390,7 +2429,11 @@ type SelectRenderTriggerProps<T = undefined, V extends SelectValue = string, L e
|
|
|
2390
2429
|
value?: SelectOption<T, V, L> | null;
|
|
2391
2430
|
valueLabel?: string;
|
|
2392
2431
|
disabled?: boolean;
|
|
2432
|
+
loading?: boolean;
|
|
2433
|
+
optional?: boolean | string;
|
|
2434
|
+
tooltip?: React$1.ReactNode;
|
|
2393
2435
|
error?: string;
|
|
2436
|
+
invalid?: boolean;
|
|
2394
2437
|
listboxId: string;
|
|
2395
2438
|
describedBy?: string;
|
|
2396
2439
|
triggerRef: React$1.Ref<HTMLButtonElement>;
|
|
@@ -2408,7 +2451,11 @@ type AirbnbSelectProps<T = undefined, V extends SelectValue = string, L extends
|
|
|
2408
2451
|
getValueLabel?: (option: SelectOption<T, V, L>) => string;
|
|
2409
2452
|
renderTrigger?: (props: SelectRenderTriggerProps<T, V, L>) => React$1.ReactNode;
|
|
2410
2453
|
disabled?: boolean;
|
|
2454
|
+
loading?: boolean;
|
|
2455
|
+
optional?: boolean | string;
|
|
2456
|
+
tooltip?: React$1.ReactNode;
|
|
2411
2457
|
error?: string;
|
|
2458
|
+
invalid?: boolean;
|
|
2412
2459
|
hideErrorMessage?: boolean;
|
|
2413
2460
|
className?: string;
|
|
2414
2461
|
menuClassName?: string;
|
|
@@ -2450,6 +2497,9 @@ type SearchableSelectProps<T = undefined, V extends SearchableSelectValue = stri
|
|
|
2450
2497
|
getValueLabel?: (option: SelectOption<T, V, L>) => string;
|
|
2451
2498
|
disabled?: boolean;
|
|
2452
2499
|
error?: string;
|
|
2500
|
+
invalid?: boolean;
|
|
2501
|
+
optional?: boolean | string;
|
|
2502
|
+
tooltip?: ReactNode;
|
|
2453
2503
|
hideErrorMessage?: boolean;
|
|
2454
2504
|
name?: string;
|
|
2455
2505
|
className?: string;
|
|
@@ -2464,4 +2514,4 @@ declare const SearchableSelect: SearchableSelectComponent;
|
|
|
2464
2514
|
|
|
2465
2515
|
declare function cn(...inputs: ClassValue[]): string;
|
|
2466
2516
|
|
|
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 };
|
|
2517
|
+
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, FieldErrorMessage, type FieldErrorMessageProps, 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 };
|