@chekinapp/ui 0.0.87 → 0.0.89
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 +2299 -1982
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +76 -18
- package/dist/index.d.ts +76 -18
- package/dist/index.js +2193 -1882
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import * as React$1 from 'react';
|
|
2
2
|
import React__default, { ReactNode, ElementType, HTMLAttributes, InputHTMLAttributes, ComponentProps, PropsWithChildren, MouseEvent, SVGProps, ComponentType, ImgHTMLAttributes, AnchorHTMLAttributes, Ref, FC, ButtonHTMLAttributes, TdHTMLAttributes, ThHTMLAttributes, MouseEventHandler, ComponentPropsWithoutRef, ReactElement, ForwardedRef, TextareaHTMLAttributes, FocusEventHandler, RefCallback, RefObject, ChangeEvent } from 'react';
|
|
3
3
|
import * as AccordionPrimitive from '@radix-ui/react-accordion';
|
|
4
|
-
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
5
|
-
import * as AvatarPrimitive from '@radix-ui/react-avatar';
|
|
6
4
|
import * as class_variance_authority_types from 'class-variance-authority/types';
|
|
7
5
|
import { VariantProps } from 'class-variance-authority';
|
|
6
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
7
|
+
import * as AvatarPrimitive from '@radix-ui/react-avatar';
|
|
8
8
|
import * as TabsPrimitive from '@radix-ui/react-tabs';
|
|
9
9
|
import { DayPicker, PropsRange, PropsBase, DateRange, Matcher } from 'react-day-picker';
|
|
10
10
|
import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
|
|
@@ -47,6 +47,18 @@ interface AccordionContentProps extends React$1.ComponentPropsWithoutRef<typeof
|
|
|
47
47
|
}
|
|
48
48
|
declare const AccordionContent: React$1.ForwardRefExoticComponent<AccordionContentProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
49
49
|
|
|
50
|
+
declare const Alert: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & VariantProps<(props?: ({
|
|
51
|
+
variant?: "default" | "destructive" | null | undefined;
|
|
52
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLDivElement>>;
|
|
53
|
+
declare const AlertTitle: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
|
|
54
|
+
declare const AlertDescription: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
55
|
+
|
|
56
|
+
declare const ALERT_BOX_VARIANTS: {
|
|
57
|
+
readonly primary: "primary";
|
|
58
|
+
readonly secondary: "secondary";
|
|
59
|
+
};
|
|
60
|
+
type AlertBoxVariant = (typeof ALERT_BOX_VARIANTS)[keyof typeof ALERT_BOX_VARIANTS];
|
|
61
|
+
|
|
50
62
|
declare enum AlertType {
|
|
51
63
|
INFO = "INFO",
|
|
52
64
|
WARNING = "WARNING",
|
|
@@ -93,7 +105,7 @@ interface AvatarProps extends React$1.ComponentPropsWithoutRef<typeof AvatarPrim
|
|
|
93
105
|
declare const Avatar: React$1.ForwardRefExoticComponent<AvatarProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
94
106
|
|
|
95
107
|
declare const badgeVariants: (props?: ({
|
|
96
|
-
variant?: "default" | "
|
|
108
|
+
variant?: "default" | "destructive" | "secondary" | "outline" | null | undefined;
|
|
97
109
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
98
110
|
interface BadgeProps extends React$1.ComponentProps<'span'>, VariantProps<typeof badgeVariants> {
|
|
99
111
|
asChild?: boolean;
|
|
@@ -161,7 +173,7 @@ type BreadcrumbsProps = {
|
|
|
161
173
|
declare function Breadcrumbs({ className, children }: BreadcrumbsProps): react_jsx_runtime.JSX.Element;
|
|
162
174
|
|
|
163
175
|
declare const buttonVariants: (props?: ({
|
|
164
|
-
variant?: "link" | "default" | "
|
|
176
|
+
variant?: "link" | "default" | "destructive" | "primary" | "secondary" | "outline" | "ghost" | "tertiary" | null | undefined;
|
|
165
177
|
size?: "s" | "default" | "sm" | "md" | "lg" | "icon" | "m" | "xs" | null | undefined;
|
|
166
178
|
shape?: "rounded" | "pill" | null | undefined;
|
|
167
179
|
readOnly?: boolean | null | undefined;
|
|
@@ -633,7 +645,7 @@ declare const SvgIcon: React$1.ForwardRefExoticComponent<SvgIconProps & React$1.
|
|
|
633
645
|
declare const iconButtonVariants: (props?: ({
|
|
634
646
|
size?: "s" | "default" | "m" | "l" | null | undefined;
|
|
635
647
|
shape?: "circle" | "rounded" | null | undefined;
|
|
636
|
-
variant?: "
|
|
648
|
+
variant?: "destructive" | "primary" | "secondary" | "ghost" | null | undefined;
|
|
637
649
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
638
650
|
interface IconButtonProps extends Omit<React$1.ButtonHTMLAttributes<HTMLButtonElement>, 'children'>, VariantProps<typeof iconButtonVariants> {
|
|
639
651
|
label?: string;
|
|
@@ -1745,6 +1757,13 @@ interface PopoverWithTooltipProps {
|
|
|
1745
1757
|
}
|
|
1746
1758
|
declare function PopoverWithTooltip({ children, popoverContent, tooltipContent, open, onOpenChange, popoverContentClassName, tooltipVariant, }: PopoverWithTooltipProps): react_jsx_runtime.JSX.Element;
|
|
1747
1759
|
|
|
1760
|
+
type RadioSize = 'default' | 'm';
|
|
1761
|
+
declare const RadioGroup: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
1762
|
+
interface RadioGroupItemProps extends React$1.ComponentPropsWithoutRef<typeof RadioGroupPrimitive.Item> {
|
|
1763
|
+
size?: RadioSize;
|
|
1764
|
+
}
|
|
1765
|
+
declare const RadioGroupItem: React$1.ForwardRefExoticComponent<RadioGroupItemProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
1766
|
+
|
|
1748
1767
|
interface RadioOption<V = string, D = unknown> {
|
|
1749
1768
|
label: string;
|
|
1750
1769
|
value: V;
|
|
@@ -1763,11 +1782,12 @@ interface RadioProps<V = string, D = unknown> {
|
|
|
1763
1782
|
option: RadioOption<V, D>;
|
|
1764
1783
|
isSelected: boolean;
|
|
1765
1784
|
}) => React.ReactNode;
|
|
1785
|
+
size?: RadioSize;
|
|
1766
1786
|
}
|
|
1767
1787
|
|
|
1768
1788
|
declare const Radio: React$1.ForwardRefExoticComponent<RadioProps<string, unknown> & React$1.RefAttributes<HTMLDivElement>>;
|
|
1769
1789
|
|
|
1770
|
-
declare function RadioWithBorder({ ...props }: RadioProps): react_jsx_runtime.JSX.Element;
|
|
1790
|
+
declare function RadioWithBorder({ size, ...props }: RadioProps): react_jsx_runtime.JSX.Element;
|
|
1771
1791
|
|
|
1772
1792
|
interface UseRadioOptionsProps {
|
|
1773
1793
|
options: RadioOption[];
|
|
@@ -1814,13 +1834,6 @@ type OptionsCardsProps = {
|
|
|
1814
1834
|
};
|
|
1815
1835
|
declare const MemoizedRadioCardsGroup: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<OptionsCardsProps & React$1.RefAttributes<HTMLDivElement>>>;
|
|
1816
1836
|
|
|
1817
|
-
type RadioSize = 'default' | 'm';
|
|
1818
|
-
declare const RadioGroup: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
1819
|
-
interface RadioGroupItemProps extends React$1.ComponentPropsWithoutRef<typeof RadioGroupPrimitive.Item> {
|
|
1820
|
-
size?: RadioSize;
|
|
1821
|
-
}
|
|
1822
|
-
declare const RadioGroupItem: React$1.ForwardRefExoticComponent<RadioGroupItemProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
1823
|
-
|
|
1824
1837
|
type RatingProgressProps = {
|
|
1825
1838
|
label: string;
|
|
1826
1839
|
score: number;
|
|
@@ -1829,10 +1842,28 @@ type RatingProgressProps = {
|
|
|
1829
1842
|
};
|
|
1830
1843
|
declare function RatingProgress({ label, score, maxScore, className, }: RatingProgressProps): react_jsx_runtime.JSX.Element;
|
|
1831
1844
|
|
|
1832
|
-
type
|
|
1845
|
+
type RatingRadioGroupOption = {
|
|
1833
1846
|
label: string;
|
|
1834
1847
|
value: number;
|
|
1835
1848
|
};
|
|
1849
|
+
type RatingRadioGroupSize = 'default' | 'lg';
|
|
1850
|
+
|
|
1851
|
+
type RatingRadioGroupItemProps = {
|
|
1852
|
+
option: RatingRadioGroupOption;
|
|
1853
|
+
size?: RatingRadioGroupSize;
|
|
1854
|
+
};
|
|
1855
|
+
declare function RatingRadioGroupItem({ option, size }: RatingRadioGroupItemProps): react_jsx_runtime.JSX.Element;
|
|
1856
|
+
|
|
1857
|
+
type RatingRadioGroupLegendProps = {
|
|
1858
|
+
children?: ReactNode;
|
|
1859
|
+
};
|
|
1860
|
+
declare function RatingRadioGroupLegend({ children }: RatingRadioGroupLegendProps): react_jsx_runtime.JSX.Element | null;
|
|
1861
|
+
|
|
1862
|
+
type RatingRadioGroupListProps = {
|
|
1863
|
+
children: ReactNode;
|
|
1864
|
+
};
|
|
1865
|
+
declare function RatingRadioGroupList({ children }: RatingRadioGroupListProps): react_jsx_runtime.JSX.Element;
|
|
1866
|
+
|
|
1836
1867
|
type RatingRadioGroupProps = {
|
|
1837
1868
|
value?: number;
|
|
1838
1869
|
onChange?: (value: number) => void;
|
|
@@ -1840,9 +1871,16 @@ type RatingRadioGroupProps = {
|
|
|
1840
1871
|
disabled?: boolean;
|
|
1841
1872
|
name?: string;
|
|
1842
1873
|
className?: string;
|
|
1843
|
-
options
|
|
1874
|
+
options?: RatingRadioGroupOption[];
|
|
1875
|
+
size?: RatingRadioGroupSize;
|
|
1876
|
+
children?: ReactNode;
|
|
1877
|
+
};
|
|
1878
|
+
declare function RatingRadioGroupRoot({ value, onChange, label, name, className, options, size, children, }: RatingRadioGroupProps): react_jsx_runtime.JSX.Element;
|
|
1879
|
+
declare const RatingRadioGroup: typeof RatingRadioGroupRoot & {
|
|
1880
|
+
Legend: typeof RatingRadioGroupLegend;
|
|
1881
|
+
List: typeof RatingRadioGroupList;
|
|
1882
|
+
Item: typeof RatingRadioGroupItem;
|
|
1844
1883
|
};
|
|
1845
|
-
declare function RatingRadioGroup({ value, onChange, label, name, className, options, }: RatingRadioGroupProps): react_jsx_runtime.JSX.Element;
|
|
1846
1884
|
|
|
1847
1885
|
type RatingStarsProps = {
|
|
1848
1886
|
rating: number;
|
|
@@ -2671,6 +2709,7 @@ declare const DrawerContent: React$1.ForwardRefExoticComponent<Omit<DialogPrimit
|
|
|
2671
2709
|
showHandle?: boolean;
|
|
2672
2710
|
closeOnOverlayClick?: boolean;
|
|
2673
2711
|
lockScroll?: boolean;
|
|
2712
|
+
disableDrag?: boolean;
|
|
2674
2713
|
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
2675
2714
|
declare const DrawerHeader: {
|
|
2676
2715
|
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
@@ -2706,8 +2745,9 @@ type ResponsiveSheetProps = {
|
|
|
2706
2745
|
showDrawerHandle?: boolean;
|
|
2707
2746
|
closeOnOverlayClick?: boolean;
|
|
2708
2747
|
closeOnEscape?: boolean;
|
|
2748
|
+
disableDrag?: boolean;
|
|
2709
2749
|
};
|
|
2710
|
-
declare function ResponsiveSheet({ open, onClose, title, description, children, className, contentClassName, dialogClassName, drawerClassName, titleClassName, descriptionClassName, showCloseButton, showDrawerHandle, closeOnOverlayClick, closeOnEscape, }: Readonly<ResponsiveSheetProps>): react_jsx_runtime.JSX.Element;
|
|
2750
|
+
declare function ResponsiveSheet({ open, onClose, title, description, children, className, contentClassName, dialogClassName, drawerClassName, titleClassName, descriptionClassName, showCloseButton, showDrawerHandle, closeOnOverlayClick, closeOnEscape, disableDrag, }: Readonly<ResponsiveSheetProps>): react_jsx_runtime.JSX.Element;
|
|
2711
2751
|
|
|
2712
2752
|
type DropdownSide = 'top' | 'right' | 'bottom' | 'left';
|
|
2713
2753
|
type DropdownAlign = 'start' | 'center' | 'end';
|
|
@@ -3431,6 +3471,19 @@ declare function useModalControls(initState?: boolean, { disabled }?: {
|
|
|
3431
3471
|
setIsOpen: React$1.Dispatch<React$1.SetStateAction<boolean>>;
|
|
3432
3472
|
};
|
|
3433
3473
|
|
|
3474
|
+
type UseModalControlsOptions = {
|
|
3475
|
+
key: string;
|
|
3476
|
+
enabled?: boolean;
|
|
3477
|
+
initState?: boolean;
|
|
3478
|
+
};
|
|
3479
|
+
declare function useModalWithHistoryControls({ key, initState, enabled, }: UseModalControlsOptions): {
|
|
3480
|
+
isOpen: boolean;
|
|
3481
|
+
openModal: () => void;
|
|
3482
|
+
closeModal: () => void;
|
|
3483
|
+
toggleModal: () => void;
|
|
3484
|
+
setIsOpen: React$1.Dispatch<React$1.SetStateAction<boolean>>;
|
|
3485
|
+
};
|
|
3486
|
+
|
|
3434
3487
|
type OutsideClickHandler = (event: Event) => void;
|
|
3435
3488
|
type UseOutsideClickProps<T extends Element> = {
|
|
3436
3489
|
elementRef: RefObject<T> | null;
|
|
@@ -3446,6 +3499,11 @@ declare function useScreenResize(maxWidth: string | null, matchString?: string):
|
|
|
3446
3499
|
isInitialized: boolean;
|
|
3447
3500
|
};
|
|
3448
3501
|
|
|
3502
|
+
declare function useLockBodyScroll(needLock?: boolean): {
|
|
3503
|
+
resetScroll: () => void;
|
|
3504
|
+
lockScroll: () => void;
|
|
3505
|
+
};
|
|
3506
|
+
|
|
3449
3507
|
type UseScrollFrameIntoViewOptions = {
|
|
3450
3508
|
behavior?: ScrollBehavior;
|
|
3451
3509
|
elementRef?: RefObject<HTMLElement | null>;
|
|
@@ -3631,4 +3689,4 @@ declare function toastResponseError(error: unknown, options?: CustomToastOptions
|
|
|
3631
3689
|
|
|
3632
3690
|
declare function getErrorMessage(error?: any): any;
|
|
3633
3691
|
|
|
3634
|
-
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, Carousel, CarouselNext, CarouselPrevious, type CarouselProps, CarouselRoot, type CarouselRootProps, CarouselSlide, CarouselTrack, CarouselViewport, CheckList, type CheckListProps, Checkbox, CheckboxDropdownGroup, type CheckboxDropdownGroupConfig, type CheckboxDropdownGroupProps, CheckboxDropdownMultiGroup, CheckboxGroup, type CheckboxGroupProps, type CheckboxOption, type CheckboxProps, type CheckboxSize, CircularLoader, Collapsible, CollapsibleContent, CollapsibleTrigger, CommingSoonBadge, type CommingSoonBadgeProps, ConfirmationDialog, type ConfirmationDialogProps, CopyIcon, type CopyIconProps, CopyLinkButton, type CopyLinkButtonProps, CopyString, type CopyStringProps, CustomCheckboxDropdownGroup, type CustomIconEntry, DEFAULT_DISPLAY_FORMAT, DEVICE_BREAKPOINTS, DashboardCreatableMultiSelect, type DashboardCreatableMultiSelectProps, DashboardDateRangePicker, type DashboardDateRangePickerImperativeProps, type OpenDirection as DashboardDateRangePickerOpenDirection, type DashboardDateRangePickerProps, DashboardDatepicker, type DashboardDatepickerProps, type DashboardDatepickerValue, DashboardFileInput, type DashboardFileInputProps, type DashboardFileInputValue, DashboardInfiniteScrollSelect, type DashboardInfiniteScrollSelectProps, DashboardInput, type DashboardInputProps, DashboardMultiSelect, type DashboardMultiSelectChipRenderer, type DashboardMultiSelectProps, DashboardSelect, DashboardSelectIconsBox, type DashboardSelectIconsBoxProps, type DashboardSelectProps, DashboardTextarea, type DashboardTextareaProps, DashboardTimePicker, type DashboardTimePickerFormat, type DashboardTimePickerProps, type DashboardTimeSettings, DataTable, type DataTableProps, DatePicker, type DatePickerProps, type DatePickerValue, DateTableFilter, DebouncedSearchInput, type DebouncedSearchInputProps, DefaultSelectTrigger, type DefaultSelectTriggerProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DialogVisuallyHidden, DividingSubsection, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownButton, type DropdownButtonProps, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, type DropdownMenuContentSide, DropdownMenuGroup, DropdownMenuItem, DropdownMenuItemContent, type DropdownMenuItemContentProps, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptySectionPlaceholder, type EmptySectionPlaceholderProps, EmptyTitle, ErrorMessage, type ErrorMessageProps, ExternalLink, type ExternalLinkProps, FieldErrorMessage, type FieldErrorMessageProps, FieldTrigger, type FieldTriggerProps, FileInputButton, type FileInputButtonProps, FormBox, Content as FormBoxContent, type FormBoxContentProps, Header as FormBoxHeader, type FormBoxHeaderProps, Root$1 as FormBoxRoot, type FormBoxRootProps, SubHeader as FormBoxSubHeader, type FormBoxSubHeaderProps, FramedIcon, type FramedIconProps, FreeTextField, type FreeTextFieldProps, HALO_ICON_STATUS, HaloIcon, type HaloIconProps, HelpTooltip, type HelpTooltipProps, IconButton, type IconButtonProps, type IconEntry, IconsDropdown, type IconsDropdownProps, Image, ImageFullScreenView, type ImageFullScreenViewProps, type ImageProps, InfinitySelect, type InfinitySelectProps, InfoBox, type InfoBoxProps, Input, InputOTP, InputOTPGroup, type InputOTPProps, InputOTPSeparator, InputOTPSlot, type InputProps, Label, type LabelProps, LargeModal, type LargeModalProps, LearnMoreButton, type LearnMoreButtonProps, Link, type LinkProps, LoadingBar, type LoadingBarProps, type LucideIconEntry, Modal, ModalButton, ModalLoader, type ModalLoaderProps, type ModalProps, MultiSelect, type MultiSelectProps, NumberedList, type NumberedListProps, type OptionsCardsProps, OverlayLoader, type OverlayLoaderProps, Pagination, type PaginationProps, type PaginationVariant, PhoneField, type PhoneFieldOption, type PhoneFieldProps, type PhoneFieldValue, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, PopoverTrigger, PopoverWithTooltip, type PopoverWithTooltipProps, Radio, type RadioCardOption, MemoizedRadioCardsGroup as RadioCardsGroup, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioOption, type RadioProps, type RadioSize, RadioWithBorder, RatingProgress, type RatingProgressProps, RatingRadioGroup, type RatingRadioGroupProps, RatingStars, type RatingStarsProps, type RegisterUiKitI18nOptions, ResponsiveDropdown, type ResponsiveDropdownOption, type ResponsiveDropdownProps, ResponsiveSheet, type ResponsiveSheetProps, RotateArrow, type RotateArrowProps, ScrollArea, type ScrollAreaProps, ScrollBar, type ScrollBarProps, type ScrollableAreaState, SearchButton, type SearchButtonProps, SearchInput, type SearchInputProps, SearchableSelect, type SearchableSelectProps, type SearchableSelectValue, Section, SectionGroup, type SectionGroupItemProps, type SectionGroupLabelProps, type SectionGroupProps, type SectionProps, SectionTag, SectionTagColors, type SectionTagProps, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, type SelectOption, SelectPortal, type SelectProps, SelectRoot, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, type SelectSize, SelectTrigger, SelectValue$2 as SelectValue, type SelectorOption, Separator, type SeparatorProps, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarIcon, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, SignatureCanvas, Skeleton, type SkeletonProps, Slider, SmallGridSingleItem, type SmallGridSingleItemProps, SortingAction, type SortingActionProps, type SortingActionValue, type SortingByVariant, StatusBadge, type StatusBadgeProps, type StatusBadgeVariant, StatusBox, type StatusBoxProps, StatusButton, type StatusButtonProps, Stepper, type StepperProps, SubSection, SubSectionSize, SvgIcon, type SvgIconProps, type SvgIconSize, Switch, SwitchBlocks, type SwitchBlocksOption, type SwitchBlocksProps, SwitchGroup, type SwitchGroupProps, type SwitchOption, type SwitchProps, TabbedSection, type TabbedSectionProps, Table, TableBody, TableCaption, TableCell, TableFilter, type TableFilterProps, TableFooter, TableHead, TableHeader, TableLoader, type TableLoaderProps, type TableLoaderRootProps, TablePlaceholder, type TablePlaceholderProps, TableRow, Tabs, TabsContent, TabsList, type TabsListProps, TabsTrigger, type TabsTriggerProps, TextField, type TextFieldProps, Textarea, type TextareaProps, ThreeDotsLoader, type ThreeDotsLoaderProps, Timeline, TimelineConnector, type TimelineConnectorProps, TimelineContent, type TimelineContentProps, type TimelineContextProps, TimelineDescription, type TimelineDescriptionProps, TimelineDot, type TimelineDotProps, TimelineItem, type TimelineItemProps, type TimelineProps, TimelineSeparator, type TimelineSeparatorProps, TimelineTitle, type TimelineTitleProps, ToggleGroup, ToggleGroupItem, Toggles, type TogglesForwardType, type TogglesProps, Tooltip, TooltipContent, type TooltipContentProps, type TooltipProps, TooltipProvider, TooltipRoot, type TooltipRootProps, TooltipRootWrapper, TooltipTrigger, UI_KIT_I18N_NAMESPACE, type UiKitLocale, UploadedFilesList, type UploadedFilesListProps, type UseScrollableAreaOptions, type UseScrollableAreaResult, VerticalTabs, type VerticalTabsProps, type VerticalTabsStep, VideoModal, type VideoModalProps, VideoPlayer, type VideoPlayerProps, Webcam, type WebcamProps, type WebcamRefTypes, WideButton, type WideButtonProps, addSupportEmailToMessage, badgeVariants, bookmarkTabsListVariants, bookmarkTabsTriggerVariants, buttonGroupVariants, buttonVariants, calendarClassNames, cn, copyToClipboard, createDisabledMatchers, emptyMediaVariants, formatDate, getErrorMessage, getScrollableAreaState, getSidebarState, inputVariants, isDayBlocked, isNumeric, labelVariants, parseDate, registerUiKitI18n, scrollToTop, sectionTagVariants, switchThumbVariants, switchVariants, tabsListVariants, tabsTriggerVariants, toCssSize, toastResponseError, toggleVariants, uiKitI18nResources, uiKitTranslations, useAbortController, useAccordionState, useCarouselContext, useClickEscape, useCombinedRef, useCopyToClipboard, useDebounce, useDebouncedFunction, useEvent, useHover, useIframeFocusTrapFallback, useIsFormTouched, useIsMobile, useIsMounted, useKeyDown, useLoadMore, useModalControls, useOutsideClick, usePagination, usePrevious, usePromisedModalControls, useRadioOptions, useResetAfterRequestStatus, useScreenResize, useScrollFrameIntoView, useScrollToTop, useScrollableArea, useSearchInput, useSidebar, useSidebarMenuButton, useSidebarSafe, useStickyStuck, useSwitchSectionActive, useTimeline, useTimeout, useTimeoutRef, useTimer, useUpdateToast, useValidateDates };
|
|
3692
|
+
export { ALERT_BOX_VARIANTS, Accordion, AccordionContent, type AccordionContentProps, AccordionItem, AccordionTrigger, type AccordionTriggerProps, AirbnbInput, type AirbnbInputProps, AirbnbSearchInput, AirbnbSelect, type AirbnbSelectProps, Alert, AlertBox, type AlertBoxProps, type AlertBoxVariant, AlertDescription, AlertSize, AlertSizes, AlertTitle, 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, Carousel, CarouselNext, CarouselPrevious, type CarouselProps, CarouselRoot, type CarouselRootProps, CarouselSlide, CarouselTrack, CarouselViewport, CheckList, type CheckListProps, Checkbox, CheckboxDropdownGroup, type CheckboxDropdownGroupConfig, type CheckboxDropdownGroupProps, CheckboxDropdownMultiGroup, CheckboxGroup, type CheckboxGroupProps, type CheckboxOption, type CheckboxProps, type CheckboxSize, CircularLoader, Collapsible, CollapsibleContent, CollapsibleTrigger, CommingSoonBadge, type CommingSoonBadgeProps, ConfirmationDialog, type ConfirmationDialogProps, CopyIcon, type CopyIconProps, CopyLinkButton, type CopyLinkButtonProps, CopyString, type CopyStringProps, CustomCheckboxDropdownGroup, type CustomIconEntry, DEFAULT_DISPLAY_FORMAT, DEVICE_BREAKPOINTS, DashboardCreatableMultiSelect, type DashboardCreatableMultiSelectProps, DashboardDateRangePicker, type DashboardDateRangePickerImperativeProps, type OpenDirection as DashboardDateRangePickerOpenDirection, type DashboardDateRangePickerProps, DashboardDatepicker, type DashboardDatepickerProps, type DashboardDatepickerValue, DashboardFileInput, type DashboardFileInputProps, type DashboardFileInputValue, DashboardInfiniteScrollSelect, type DashboardInfiniteScrollSelectProps, DashboardInput, type DashboardInputProps, DashboardMultiSelect, type DashboardMultiSelectChipRenderer, type DashboardMultiSelectProps, DashboardSelect, DashboardSelectIconsBox, type DashboardSelectIconsBoxProps, type DashboardSelectProps, DashboardTextarea, type DashboardTextareaProps, DashboardTimePicker, type DashboardTimePickerFormat, type DashboardTimePickerProps, type DashboardTimeSettings, DataTable, type DataTableProps, DatePicker, type DatePickerProps, type DatePickerValue, DateTableFilter, DebouncedSearchInput, type DebouncedSearchInputProps, DefaultSelectTrigger, type DefaultSelectTriggerProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DialogVisuallyHidden, DividingSubsection, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownButton, type DropdownButtonProps, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, type DropdownMenuContentSide, DropdownMenuGroup, DropdownMenuItem, DropdownMenuItemContent, type DropdownMenuItemContentProps, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptySectionPlaceholder, type EmptySectionPlaceholderProps, EmptyTitle, ErrorMessage, type ErrorMessageProps, ExternalLink, type ExternalLinkProps, FieldErrorMessage, type FieldErrorMessageProps, FieldTrigger, type FieldTriggerProps, FileInputButton, type FileInputButtonProps, FormBox, Content as FormBoxContent, type FormBoxContentProps, Header as FormBoxHeader, type FormBoxHeaderProps, Root$1 as FormBoxRoot, type FormBoxRootProps, SubHeader as FormBoxSubHeader, type FormBoxSubHeaderProps, FramedIcon, type FramedIconProps, FreeTextField, type FreeTextFieldProps, HALO_ICON_STATUS, HaloIcon, type HaloIconProps, HelpTooltip, type HelpTooltipProps, IconButton, type IconButtonProps, type IconEntry, IconsDropdown, type IconsDropdownProps, Image, ImageFullScreenView, type ImageFullScreenViewProps, type ImageProps, InfinitySelect, type InfinitySelectProps, InfoBox, type InfoBoxProps, Input, InputOTP, InputOTPGroup, type InputOTPProps, InputOTPSeparator, InputOTPSlot, type InputProps, Label, type LabelProps, LargeModal, type LargeModalProps, LearnMoreButton, type LearnMoreButtonProps, Link, type LinkProps, LoadingBar, type LoadingBarProps, type LucideIconEntry, Modal, ModalButton, ModalLoader, type ModalLoaderProps, type ModalProps, MultiSelect, type MultiSelectProps, NumberedList, type NumberedListProps, type OptionsCardsProps, OverlayLoader, type OverlayLoaderProps, Pagination, type PaginationProps, type PaginationVariant, PhoneField, type PhoneFieldOption, type PhoneFieldProps, type PhoneFieldValue, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, PopoverTrigger, PopoverWithTooltip, type PopoverWithTooltipProps, Radio, type RadioCardOption, MemoizedRadioCardsGroup as RadioCardsGroup, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioOption, type RadioProps, type RadioSize, RadioWithBorder, RatingProgress, type RatingProgressProps, RatingRadioGroup, type RatingRadioGroupProps, RatingStars, type RatingStarsProps, type RegisterUiKitI18nOptions, ResponsiveDropdown, type ResponsiveDropdownOption, type ResponsiveDropdownProps, ResponsiveSheet, type ResponsiveSheetProps, RotateArrow, type RotateArrowProps, ScrollArea, type ScrollAreaProps, ScrollBar, type ScrollBarProps, type ScrollableAreaState, SearchButton, type SearchButtonProps, SearchInput, type SearchInputProps, SearchableSelect, type SearchableSelectProps, type SearchableSelectValue, Section, SectionGroup, type SectionGroupItemProps, type SectionGroupLabelProps, type SectionGroupProps, type SectionProps, SectionTag, SectionTagColors, type SectionTagProps, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, type SelectOption, SelectPortal, type SelectProps, SelectRoot, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, type SelectSize, SelectTrigger, SelectValue$2 as SelectValue, type SelectorOption, Separator, type SeparatorProps, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarIcon, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, SignatureCanvas, Skeleton, type SkeletonProps, Slider, SmallGridSingleItem, type SmallGridSingleItemProps, SortingAction, type SortingActionProps, type SortingActionValue, type SortingByVariant, StatusBadge, type StatusBadgeProps, type StatusBadgeVariant, StatusBox, type StatusBoxProps, StatusButton, type StatusButtonProps, Stepper, type StepperProps, SubSection, SubSectionSize, SvgIcon, type SvgIconProps, type SvgIconSize, Switch, SwitchBlocks, type SwitchBlocksOption, type SwitchBlocksProps, SwitchGroup, type SwitchGroupProps, type SwitchOption, type SwitchProps, TabbedSection, type TabbedSectionProps, Table, TableBody, TableCaption, TableCell, TableFilter, type TableFilterProps, TableFooter, TableHead, TableHeader, TableLoader, type TableLoaderProps, type TableLoaderRootProps, TablePlaceholder, type TablePlaceholderProps, TableRow, Tabs, TabsContent, TabsList, type TabsListProps, TabsTrigger, type TabsTriggerProps, TextField, type TextFieldProps, Textarea, type TextareaProps, ThreeDotsLoader, type ThreeDotsLoaderProps, Timeline, TimelineConnector, type TimelineConnectorProps, TimelineContent, type TimelineContentProps, type TimelineContextProps, TimelineDescription, type TimelineDescriptionProps, TimelineDot, type TimelineDotProps, TimelineItem, type TimelineItemProps, type TimelineProps, TimelineSeparator, type TimelineSeparatorProps, TimelineTitle, type TimelineTitleProps, ToggleGroup, ToggleGroupItem, Toggles, type TogglesForwardType, type TogglesProps, Tooltip, TooltipContent, type TooltipContentProps, type TooltipProps, TooltipProvider, TooltipRoot, type TooltipRootProps, TooltipRootWrapper, TooltipTrigger, UI_KIT_I18N_NAMESPACE, type UiKitLocale, UploadedFilesList, type UploadedFilesListProps, type UseScrollableAreaOptions, type UseScrollableAreaResult, VerticalTabs, type VerticalTabsProps, type VerticalTabsStep, VideoModal, type VideoModalProps, VideoPlayer, type VideoPlayerProps, Webcam, type WebcamProps, type WebcamRefTypes, WideButton, type WideButtonProps, addSupportEmailToMessage, badgeVariants, bookmarkTabsListVariants, bookmarkTabsTriggerVariants, buttonGroupVariants, buttonVariants, calendarClassNames, cn, copyToClipboard, createDisabledMatchers, emptyMediaVariants, formatDate, getErrorMessage, getScrollableAreaState, getSidebarState, inputVariants, isDayBlocked, isNumeric, labelVariants, parseDate, registerUiKitI18n, scrollToTop, sectionTagVariants, switchThumbVariants, switchVariants, tabsListVariants, tabsTriggerVariants, toCssSize, toastResponseError, toggleVariants, uiKitI18nResources, uiKitTranslations, useAbortController, useAccordionState, useCarouselContext, useClickEscape, useCombinedRef, useCopyToClipboard, useDebounce, useDebouncedFunction, useEvent, useHover, useIframeFocusTrapFallback, useIsFormTouched, useIsMobile, useIsMounted, useKeyDown, useLoadMore, useLockBodyScroll, useModalControls, useModalWithHistoryControls, useOutsideClick, usePagination, usePrevious, usePromisedModalControls, useRadioOptions, useResetAfterRequestStatus, useScreenResize, useScrollFrameIntoView, useScrollToTop, useScrollableArea, useSearchInput, useSidebar, useSidebarMenuButton, useSidebarSafe, useStickyStuck, useSwitchSectionActive, useTimeline, useTimeout, useTimeoutRef, useTimer, useUpdateToast, useValidateDates };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import * as React$1 from 'react';
|
|
2
2
|
import React__default, { ReactNode, ElementType, HTMLAttributes, InputHTMLAttributes, ComponentProps, PropsWithChildren, MouseEvent, SVGProps, ComponentType, ImgHTMLAttributes, AnchorHTMLAttributes, Ref, FC, ButtonHTMLAttributes, TdHTMLAttributes, ThHTMLAttributes, MouseEventHandler, ComponentPropsWithoutRef, ReactElement, ForwardedRef, TextareaHTMLAttributes, FocusEventHandler, RefCallback, RefObject, ChangeEvent } from 'react';
|
|
3
3
|
import * as AccordionPrimitive from '@radix-ui/react-accordion';
|
|
4
|
-
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
5
|
-
import * as AvatarPrimitive from '@radix-ui/react-avatar';
|
|
6
4
|
import * as class_variance_authority_types from 'class-variance-authority/types';
|
|
7
5
|
import { VariantProps } from 'class-variance-authority';
|
|
6
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
7
|
+
import * as AvatarPrimitive from '@radix-ui/react-avatar';
|
|
8
8
|
import * as TabsPrimitive from '@radix-ui/react-tabs';
|
|
9
9
|
import { DayPicker, PropsRange, PropsBase, DateRange, Matcher } from 'react-day-picker';
|
|
10
10
|
import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
|
|
@@ -47,6 +47,18 @@ interface AccordionContentProps extends React$1.ComponentPropsWithoutRef<typeof
|
|
|
47
47
|
}
|
|
48
48
|
declare const AccordionContent: React$1.ForwardRefExoticComponent<AccordionContentProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
49
49
|
|
|
50
|
+
declare const Alert: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & VariantProps<(props?: ({
|
|
51
|
+
variant?: "default" | "destructive" | null | undefined;
|
|
52
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLDivElement>>;
|
|
53
|
+
declare const AlertTitle: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
|
|
54
|
+
declare const AlertDescription: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
55
|
+
|
|
56
|
+
declare const ALERT_BOX_VARIANTS: {
|
|
57
|
+
readonly primary: "primary";
|
|
58
|
+
readonly secondary: "secondary";
|
|
59
|
+
};
|
|
60
|
+
type AlertBoxVariant = (typeof ALERT_BOX_VARIANTS)[keyof typeof ALERT_BOX_VARIANTS];
|
|
61
|
+
|
|
50
62
|
declare enum AlertType {
|
|
51
63
|
INFO = "INFO",
|
|
52
64
|
WARNING = "WARNING",
|
|
@@ -93,7 +105,7 @@ interface AvatarProps extends React$1.ComponentPropsWithoutRef<typeof AvatarPrim
|
|
|
93
105
|
declare const Avatar: React$1.ForwardRefExoticComponent<AvatarProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
94
106
|
|
|
95
107
|
declare const badgeVariants: (props?: ({
|
|
96
|
-
variant?: "default" | "
|
|
108
|
+
variant?: "default" | "destructive" | "secondary" | "outline" | null | undefined;
|
|
97
109
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
98
110
|
interface BadgeProps extends React$1.ComponentProps<'span'>, VariantProps<typeof badgeVariants> {
|
|
99
111
|
asChild?: boolean;
|
|
@@ -161,7 +173,7 @@ type BreadcrumbsProps = {
|
|
|
161
173
|
declare function Breadcrumbs({ className, children }: BreadcrumbsProps): react_jsx_runtime.JSX.Element;
|
|
162
174
|
|
|
163
175
|
declare const buttonVariants: (props?: ({
|
|
164
|
-
variant?: "link" | "default" | "
|
|
176
|
+
variant?: "link" | "default" | "destructive" | "primary" | "secondary" | "outline" | "ghost" | "tertiary" | null | undefined;
|
|
165
177
|
size?: "s" | "default" | "sm" | "md" | "lg" | "icon" | "m" | "xs" | null | undefined;
|
|
166
178
|
shape?: "rounded" | "pill" | null | undefined;
|
|
167
179
|
readOnly?: boolean | null | undefined;
|
|
@@ -633,7 +645,7 @@ declare const SvgIcon: React$1.ForwardRefExoticComponent<SvgIconProps & React$1.
|
|
|
633
645
|
declare const iconButtonVariants: (props?: ({
|
|
634
646
|
size?: "s" | "default" | "m" | "l" | null | undefined;
|
|
635
647
|
shape?: "circle" | "rounded" | null | undefined;
|
|
636
|
-
variant?: "
|
|
648
|
+
variant?: "destructive" | "primary" | "secondary" | "ghost" | null | undefined;
|
|
637
649
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
638
650
|
interface IconButtonProps extends Omit<React$1.ButtonHTMLAttributes<HTMLButtonElement>, 'children'>, VariantProps<typeof iconButtonVariants> {
|
|
639
651
|
label?: string;
|
|
@@ -1745,6 +1757,13 @@ interface PopoverWithTooltipProps {
|
|
|
1745
1757
|
}
|
|
1746
1758
|
declare function PopoverWithTooltip({ children, popoverContent, tooltipContent, open, onOpenChange, popoverContentClassName, tooltipVariant, }: PopoverWithTooltipProps): react_jsx_runtime.JSX.Element;
|
|
1747
1759
|
|
|
1760
|
+
type RadioSize = 'default' | 'm';
|
|
1761
|
+
declare const RadioGroup: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
1762
|
+
interface RadioGroupItemProps extends React$1.ComponentPropsWithoutRef<typeof RadioGroupPrimitive.Item> {
|
|
1763
|
+
size?: RadioSize;
|
|
1764
|
+
}
|
|
1765
|
+
declare const RadioGroupItem: React$1.ForwardRefExoticComponent<RadioGroupItemProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
1766
|
+
|
|
1748
1767
|
interface RadioOption<V = string, D = unknown> {
|
|
1749
1768
|
label: string;
|
|
1750
1769
|
value: V;
|
|
@@ -1763,11 +1782,12 @@ interface RadioProps<V = string, D = unknown> {
|
|
|
1763
1782
|
option: RadioOption<V, D>;
|
|
1764
1783
|
isSelected: boolean;
|
|
1765
1784
|
}) => React.ReactNode;
|
|
1785
|
+
size?: RadioSize;
|
|
1766
1786
|
}
|
|
1767
1787
|
|
|
1768
1788
|
declare const Radio: React$1.ForwardRefExoticComponent<RadioProps<string, unknown> & React$1.RefAttributes<HTMLDivElement>>;
|
|
1769
1789
|
|
|
1770
|
-
declare function RadioWithBorder({ ...props }: RadioProps): react_jsx_runtime.JSX.Element;
|
|
1790
|
+
declare function RadioWithBorder({ size, ...props }: RadioProps): react_jsx_runtime.JSX.Element;
|
|
1771
1791
|
|
|
1772
1792
|
interface UseRadioOptionsProps {
|
|
1773
1793
|
options: RadioOption[];
|
|
@@ -1814,13 +1834,6 @@ type OptionsCardsProps = {
|
|
|
1814
1834
|
};
|
|
1815
1835
|
declare const MemoizedRadioCardsGroup: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<OptionsCardsProps & React$1.RefAttributes<HTMLDivElement>>>;
|
|
1816
1836
|
|
|
1817
|
-
type RadioSize = 'default' | 'm';
|
|
1818
|
-
declare const RadioGroup: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
1819
|
-
interface RadioGroupItemProps extends React$1.ComponentPropsWithoutRef<typeof RadioGroupPrimitive.Item> {
|
|
1820
|
-
size?: RadioSize;
|
|
1821
|
-
}
|
|
1822
|
-
declare const RadioGroupItem: React$1.ForwardRefExoticComponent<RadioGroupItemProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
1823
|
-
|
|
1824
1837
|
type RatingProgressProps = {
|
|
1825
1838
|
label: string;
|
|
1826
1839
|
score: number;
|
|
@@ -1829,10 +1842,28 @@ type RatingProgressProps = {
|
|
|
1829
1842
|
};
|
|
1830
1843
|
declare function RatingProgress({ label, score, maxScore, className, }: RatingProgressProps): react_jsx_runtime.JSX.Element;
|
|
1831
1844
|
|
|
1832
|
-
type
|
|
1845
|
+
type RatingRadioGroupOption = {
|
|
1833
1846
|
label: string;
|
|
1834
1847
|
value: number;
|
|
1835
1848
|
};
|
|
1849
|
+
type RatingRadioGroupSize = 'default' | 'lg';
|
|
1850
|
+
|
|
1851
|
+
type RatingRadioGroupItemProps = {
|
|
1852
|
+
option: RatingRadioGroupOption;
|
|
1853
|
+
size?: RatingRadioGroupSize;
|
|
1854
|
+
};
|
|
1855
|
+
declare function RatingRadioGroupItem({ option, size }: RatingRadioGroupItemProps): react_jsx_runtime.JSX.Element;
|
|
1856
|
+
|
|
1857
|
+
type RatingRadioGroupLegendProps = {
|
|
1858
|
+
children?: ReactNode;
|
|
1859
|
+
};
|
|
1860
|
+
declare function RatingRadioGroupLegend({ children }: RatingRadioGroupLegendProps): react_jsx_runtime.JSX.Element | null;
|
|
1861
|
+
|
|
1862
|
+
type RatingRadioGroupListProps = {
|
|
1863
|
+
children: ReactNode;
|
|
1864
|
+
};
|
|
1865
|
+
declare function RatingRadioGroupList({ children }: RatingRadioGroupListProps): react_jsx_runtime.JSX.Element;
|
|
1866
|
+
|
|
1836
1867
|
type RatingRadioGroupProps = {
|
|
1837
1868
|
value?: number;
|
|
1838
1869
|
onChange?: (value: number) => void;
|
|
@@ -1840,9 +1871,16 @@ type RatingRadioGroupProps = {
|
|
|
1840
1871
|
disabled?: boolean;
|
|
1841
1872
|
name?: string;
|
|
1842
1873
|
className?: string;
|
|
1843
|
-
options
|
|
1874
|
+
options?: RatingRadioGroupOption[];
|
|
1875
|
+
size?: RatingRadioGroupSize;
|
|
1876
|
+
children?: ReactNode;
|
|
1877
|
+
};
|
|
1878
|
+
declare function RatingRadioGroupRoot({ value, onChange, label, name, className, options, size, children, }: RatingRadioGroupProps): react_jsx_runtime.JSX.Element;
|
|
1879
|
+
declare const RatingRadioGroup: typeof RatingRadioGroupRoot & {
|
|
1880
|
+
Legend: typeof RatingRadioGroupLegend;
|
|
1881
|
+
List: typeof RatingRadioGroupList;
|
|
1882
|
+
Item: typeof RatingRadioGroupItem;
|
|
1844
1883
|
};
|
|
1845
|
-
declare function RatingRadioGroup({ value, onChange, label, name, className, options, }: RatingRadioGroupProps): react_jsx_runtime.JSX.Element;
|
|
1846
1884
|
|
|
1847
1885
|
type RatingStarsProps = {
|
|
1848
1886
|
rating: number;
|
|
@@ -2671,6 +2709,7 @@ declare const DrawerContent: React$1.ForwardRefExoticComponent<Omit<DialogPrimit
|
|
|
2671
2709
|
showHandle?: boolean;
|
|
2672
2710
|
closeOnOverlayClick?: boolean;
|
|
2673
2711
|
lockScroll?: boolean;
|
|
2712
|
+
disableDrag?: boolean;
|
|
2674
2713
|
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
2675
2714
|
declare const DrawerHeader: {
|
|
2676
2715
|
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
@@ -2706,8 +2745,9 @@ type ResponsiveSheetProps = {
|
|
|
2706
2745
|
showDrawerHandle?: boolean;
|
|
2707
2746
|
closeOnOverlayClick?: boolean;
|
|
2708
2747
|
closeOnEscape?: boolean;
|
|
2748
|
+
disableDrag?: boolean;
|
|
2709
2749
|
};
|
|
2710
|
-
declare function ResponsiveSheet({ open, onClose, title, description, children, className, contentClassName, dialogClassName, drawerClassName, titleClassName, descriptionClassName, showCloseButton, showDrawerHandle, closeOnOverlayClick, closeOnEscape, }: Readonly<ResponsiveSheetProps>): react_jsx_runtime.JSX.Element;
|
|
2750
|
+
declare function ResponsiveSheet({ open, onClose, title, description, children, className, contentClassName, dialogClassName, drawerClassName, titleClassName, descriptionClassName, showCloseButton, showDrawerHandle, closeOnOverlayClick, closeOnEscape, disableDrag, }: Readonly<ResponsiveSheetProps>): react_jsx_runtime.JSX.Element;
|
|
2711
2751
|
|
|
2712
2752
|
type DropdownSide = 'top' | 'right' | 'bottom' | 'left';
|
|
2713
2753
|
type DropdownAlign = 'start' | 'center' | 'end';
|
|
@@ -3431,6 +3471,19 @@ declare function useModalControls(initState?: boolean, { disabled }?: {
|
|
|
3431
3471
|
setIsOpen: React$1.Dispatch<React$1.SetStateAction<boolean>>;
|
|
3432
3472
|
};
|
|
3433
3473
|
|
|
3474
|
+
type UseModalControlsOptions = {
|
|
3475
|
+
key: string;
|
|
3476
|
+
enabled?: boolean;
|
|
3477
|
+
initState?: boolean;
|
|
3478
|
+
};
|
|
3479
|
+
declare function useModalWithHistoryControls({ key, initState, enabled, }: UseModalControlsOptions): {
|
|
3480
|
+
isOpen: boolean;
|
|
3481
|
+
openModal: () => void;
|
|
3482
|
+
closeModal: () => void;
|
|
3483
|
+
toggleModal: () => void;
|
|
3484
|
+
setIsOpen: React$1.Dispatch<React$1.SetStateAction<boolean>>;
|
|
3485
|
+
};
|
|
3486
|
+
|
|
3434
3487
|
type OutsideClickHandler = (event: Event) => void;
|
|
3435
3488
|
type UseOutsideClickProps<T extends Element> = {
|
|
3436
3489
|
elementRef: RefObject<T> | null;
|
|
@@ -3446,6 +3499,11 @@ declare function useScreenResize(maxWidth: string | null, matchString?: string):
|
|
|
3446
3499
|
isInitialized: boolean;
|
|
3447
3500
|
};
|
|
3448
3501
|
|
|
3502
|
+
declare function useLockBodyScroll(needLock?: boolean): {
|
|
3503
|
+
resetScroll: () => void;
|
|
3504
|
+
lockScroll: () => void;
|
|
3505
|
+
};
|
|
3506
|
+
|
|
3449
3507
|
type UseScrollFrameIntoViewOptions = {
|
|
3450
3508
|
behavior?: ScrollBehavior;
|
|
3451
3509
|
elementRef?: RefObject<HTMLElement | null>;
|
|
@@ -3631,4 +3689,4 @@ declare function toastResponseError(error: unknown, options?: CustomToastOptions
|
|
|
3631
3689
|
|
|
3632
3690
|
declare function getErrorMessage(error?: any): any;
|
|
3633
3691
|
|
|
3634
|
-
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, Carousel, CarouselNext, CarouselPrevious, type CarouselProps, CarouselRoot, type CarouselRootProps, CarouselSlide, CarouselTrack, CarouselViewport, CheckList, type CheckListProps, Checkbox, CheckboxDropdownGroup, type CheckboxDropdownGroupConfig, type CheckboxDropdownGroupProps, CheckboxDropdownMultiGroup, CheckboxGroup, type CheckboxGroupProps, type CheckboxOption, type CheckboxProps, type CheckboxSize, CircularLoader, Collapsible, CollapsibleContent, CollapsibleTrigger, CommingSoonBadge, type CommingSoonBadgeProps, ConfirmationDialog, type ConfirmationDialogProps, CopyIcon, type CopyIconProps, CopyLinkButton, type CopyLinkButtonProps, CopyString, type CopyStringProps, CustomCheckboxDropdownGroup, type CustomIconEntry, DEFAULT_DISPLAY_FORMAT, DEVICE_BREAKPOINTS, DashboardCreatableMultiSelect, type DashboardCreatableMultiSelectProps, DashboardDateRangePicker, type DashboardDateRangePickerImperativeProps, type OpenDirection as DashboardDateRangePickerOpenDirection, type DashboardDateRangePickerProps, DashboardDatepicker, type DashboardDatepickerProps, type DashboardDatepickerValue, DashboardFileInput, type DashboardFileInputProps, type DashboardFileInputValue, DashboardInfiniteScrollSelect, type DashboardInfiniteScrollSelectProps, DashboardInput, type DashboardInputProps, DashboardMultiSelect, type DashboardMultiSelectChipRenderer, type DashboardMultiSelectProps, DashboardSelect, DashboardSelectIconsBox, type DashboardSelectIconsBoxProps, type DashboardSelectProps, DashboardTextarea, type DashboardTextareaProps, DashboardTimePicker, type DashboardTimePickerFormat, type DashboardTimePickerProps, type DashboardTimeSettings, DataTable, type DataTableProps, DatePicker, type DatePickerProps, type DatePickerValue, DateTableFilter, DebouncedSearchInput, type DebouncedSearchInputProps, DefaultSelectTrigger, type DefaultSelectTriggerProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DialogVisuallyHidden, DividingSubsection, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownButton, type DropdownButtonProps, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, type DropdownMenuContentSide, DropdownMenuGroup, DropdownMenuItem, DropdownMenuItemContent, type DropdownMenuItemContentProps, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptySectionPlaceholder, type EmptySectionPlaceholderProps, EmptyTitle, ErrorMessage, type ErrorMessageProps, ExternalLink, type ExternalLinkProps, FieldErrorMessage, type FieldErrorMessageProps, FieldTrigger, type FieldTriggerProps, FileInputButton, type FileInputButtonProps, FormBox, Content as FormBoxContent, type FormBoxContentProps, Header as FormBoxHeader, type FormBoxHeaderProps, Root$1 as FormBoxRoot, type FormBoxRootProps, SubHeader as FormBoxSubHeader, type FormBoxSubHeaderProps, FramedIcon, type FramedIconProps, FreeTextField, type FreeTextFieldProps, HALO_ICON_STATUS, HaloIcon, type HaloIconProps, HelpTooltip, type HelpTooltipProps, IconButton, type IconButtonProps, type IconEntry, IconsDropdown, type IconsDropdownProps, Image, ImageFullScreenView, type ImageFullScreenViewProps, type ImageProps, InfinitySelect, type InfinitySelectProps, InfoBox, type InfoBoxProps, Input, InputOTP, InputOTPGroup, type InputOTPProps, InputOTPSeparator, InputOTPSlot, type InputProps, Label, type LabelProps, LargeModal, type LargeModalProps, LearnMoreButton, type LearnMoreButtonProps, Link, type LinkProps, LoadingBar, type LoadingBarProps, type LucideIconEntry, Modal, ModalButton, ModalLoader, type ModalLoaderProps, type ModalProps, MultiSelect, type MultiSelectProps, NumberedList, type NumberedListProps, type OptionsCardsProps, OverlayLoader, type OverlayLoaderProps, Pagination, type PaginationProps, type PaginationVariant, PhoneField, type PhoneFieldOption, type PhoneFieldProps, type PhoneFieldValue, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, PopoverTrigger, PopoverWithTooltip, type PopoverWithTooltipProps, Radio, type RadioCardOption, MemoizedRadioCardsGroup as RadioCardsGroup, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioOption, type RadioProps, type RadioSize, RadioWithBorder, RatingProgress, type RatingProgressProps, RatingRadioGroup, type RatingRadioGroupProps, RatingStars, type RatingStarsProps, type RegisterUiKitI18nOptions, ResponsiveDropdown, type ResponsiveDropdownOption, type ResponsiveDropdownProps, ResponsiveSheet, type ResponsiveSheetProps, RotateArrow, type RotateArrowProps, ScrollArea, type ScrollAreaProps, ScrollBar, type ScrollBarProps, type ScrollableAreaState, SearchButton, type SearchButtonProps, SearchInput, type SearchInputProps, SearchableSelect, type SearchableSelectProps, type SearchableSelectValue, Section, SectionGroup, type SectionGroupItemProps, type SectionGroupLabelProps, type SectionGroupProps, type SectionProps, SectionTag, SectionTagColors, type SectionTagProps, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, type SelectOption, SelectPortal, type SelectProps, SelectRoot, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, type SelectSize, SelectTrigger, SelectValue$2 as SelectValue, type SelectorOption, Separator, type SeparatorProps, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarIcon, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, SignatureCanvas, Skeleton, type SkeletonProps, Slider, SmallGridSingleItem, type SmallGridSingleItemProps, SortingAction, type SortingActionProps, type SortingActionValue, type SortingByVariant, StatusBadge, type StatusBadgeProps, type StatusBadgeVariant, StatusBox, type StatusBoxProps, StatusButton, type StatusButtonProps, Stepper, type StepperProps, SubSection, SubSectionSize, SvgIcon, type SvgIconProps, type SvgIconSize, Switch, SwitchBlocks, type SwitchBlocksOption, type SwitchBlocksProps, SwitchGroup, type SwitchGroupProps, type SwitchOption, type SwitchProps, TabbedSection, type TabbedSectionProps, Table, TableBody, TableCaption, TableCell, TableFilter, type TableFilterProps, TableFooter, TableHead, TableHeader, TableLoader, type TableLoaderProps, type TableLoaderRootProps, TablePlaceholder, type TablePlaceholderProps, TableRow, Tabs, TabsContent, TabsList, type TabsListProps, TabsTrigger, type TabsTriggerProps, TextField, type TextFieldProps, Textarea, type TextareaProps, ThreeDotsLoader, type ThreeDotsLoaderProps, Timeline, TimelineConnector, type TimelineConnectorProps, TimelineContent, type TimelineContentProps, type TimelineContextProps, TimelineDescription, type TimelineDescriptionProps, TimelineDot, type TimelineDotProps, TimelineItem, type TimelineItemProps, type TimelineProps, TimelineSeparator, type TimelineSeparatorProps, TimelineTitle, type TimelineTitleProps, ToggleGroup, ToggleGroupItem, Toggles, type TogglesForwardType, type TogglesProps, Tooltip, TooltipContent, type TooltipContentProps, type TooltipProps, TooltipProvider, TooltipRoot, type TooltipRootProps, TooltipRootWrapper, TooltipTrigger, UI_KIT_I18N_NAMESPACE, type UiKitLocale, UploadedFilesList, type UploadedFilesListProps, type UseScrollableAreaOptions, type UseScrollableAreaResult, VerticalTabs, type VerticalTabsProps, type VerticalTabsStep, VideoModal, type VideoModalProps, VideoPlayer, type VideoPlayerProps, Webcam, type WebcamProps, type WebcamRefTypes, WideButton, type WideButtonProps, addSupportEmailToMessage, badgeVariants, bookmarkTabsListVariants, bookmarkTabsTriggerVariants, buttonGroupVariants, buttonVariants, calendarClassNames, cn, copyToClipboard, createDisabledMatchers, emptyMediaVariants, formatDate, getErrorMessage, getScrollableAreaState, getSidebarState, inputVariants, isDayBlocked, isNumeric, labelVariants, parseDate, registerUiKitI18n, scrollToTop, sectionTagVariants, switchThumbVariants, switchVariants, tabsListVariants, tabsTriggerVariants, toCssSize, toastResponseError, toggleVariants, uiKitI18nResources, uiKitTranslations, useAbortController, useAccordionState, useCarouselContext, useClickEscape, useCombinedRef, useCopyToClipboard, useDebounce, useDebouncedFunction, useEvent, useHover, useIframeFocusTrapFallback, useIsFormTouched, useIsMobile, useIsMounted, useKeyDown, useLoadMore, useModalControls, useOutsideClick, usePagination, usePrevious, usePromisedModalControls, useRadioOptions, useResetAfterRequestStatus, useScreenResize, useScrollFrameIntoView, useScrollToTop, useScrollableArea, useSearchInput, useSidebar, useSidebarMenuButton, useSidebarSafe, useStickyStuck, useSwitchSectionActive, useTimeline, useTimeout, useTimeoutRef, useTimer, useUpdateToast, useValidateDates };
|
|
3692
|
+
export { ALERT_BOX_VARIANTS, Accordion, AccordionContent, type AccordionContentProps, AccordionItem, AccordionTrigger, type AccordionTriggerProps, AirbnbInput, type AirbnbInputProps, AirbnbSearchInput, AirbnbSelect, type AirbnbSelectProps, Alert, AlertBox, type AlertBoxProps, type AlertBoxVariant, AlertDescription, AlertSize, AlertSizes, AlertTitle, 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, Carousel, CarouselNext, CarouselPrevious, type CarouselProps, CarouselRoot, type CarouselRootProps, CarouselSlide, CarouselTrack, CarouselViewport, CheckList, type CheckListProps, Checkbox, CheckboxDropdownGroup, type CheckboxDropdownGroupConfig, type CheckboxDropdownGroupProps, CheckboxDropdownMultiGroup, CheckboxGroup, type CheckboxGroupProps, type CheckboxOption, type CheckboxProps, type CheckboxSize, CircularLoader, Collapsible, CollapsibleContent, CollapsibleTrigger, CommingSoonBadge, type CommingSoonBadgeProps, ConfirmationDialog, type ConfirmationDialogProps, CopyIcon, type CopyIconProps, CopyLinkButton, type CopyLinkButtonProps, CopyString, type CopyStringProps, CustomCheckboxDropdownGroup, type CustomIconEntry, DEFAULT_DISPLAY_FORMAT, DEVICE_BREAKPOINTS, DashboardCreatableMultiSelect, type DashboardCreatableMultiSelectProps, DashboardDateRangePicker, type DashboardDateRangePickerImperativeProps, type OpenDirection as DashboardDateRangePickerOpenDirection, type DashboardDateRangePickerProps, DashboardDatepicker, type DashboardDatepickerProps, type DashboardDatepickerValue, DashboardFileInput, type DashboardFileInputProps, type DashboardFileInputValue, DashboardInfiniteScrollSelect, type DashboardInfiniteScrollSelectProps, DashboardInput, type DashboardInputProps, DashboardMultiSelect, type DashboardMultiSelectChipRenderer, type DashboardMultiSelectProps, DashboardSelect, DashboardSelectIconsBox, type DashboardSelectIconsBoxProps, type DashboardSelectProps, DashboardTextarea, type DashboardTextareaProps, DashboardTimePicker, type DashboardTimePickerFormat, type DashboardTimePickerProps, type DashboardTimeSettings, DataTable, type DataTableProps, DatePicker, type DatePickerProps, type DatePickerValue, DateTableFilter, DebouncedSearchInput, type DebouncedSearchInputProps, DefaultSelectTrigger, type DefaultSelectTriggerProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DialogVisuallyHidden, DividingSubsection, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownButton, type DropdownButtonProps, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, type DropdownMenuContentSide, DropdownMenuGroup, DropdownMenuItem, DropdownMenuItemContent, type DropdownMenuItemContentProps, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptySectionPlaceholder, type EmptySectionPlaceholderProps, EmptyTitle, ErrorMessage, type ErrorMessageProps, ExternalLink, type ExternalLinkProps, FieldErrorMessage, type FieldErrorMessageProps, FieldTrigger, type FieldTriggerProps, FileInputButton, type FileInputButtonProps, FormBox, Content as FormBoxContent, type FormBoxContentProps, Header as FormBoxHeader, type FormBoxHeaderProps, Root$1 as FormBoxRoot, type FormBoxRootProps, SubHeader as FormBoxSubHeader, type FormBoxSubHeaderProps, FramedIcon, type FramedIconProps, FreeTextField, type FreeTextFieldProps, HALO_ICON_STATUS, HaloIcon, type HaloIconProps, HelpTooltip, type HelpTooltipProps, IconButton, type IconButtonProps, type IconEntry, IconsDropdown, type IconsDropdownProps, Image, ImageFullScreenView, type ImageFullScreenViewProps, type ImageProps, InfinitySelect, type InfinitySelectProps, InfoBox, type InfoBoxProps, Input, InputOTP, InputOTPGroup, type InputOTPProps, InputOTPSeparator, InputOTPSlot, type InputProps, Label, type LabelProps, LargeModal, type LargeModalProps, LearnMoreButton, type LearnMoreButtonProps, Link, type LinkProps, LoadingBar, type LoadingBarProps, type LucideIconEntry, Modal, ModalButton, ModalLoader, type ModalLoaderProps, type ModalProps, MultiSelect, type MultiSelectProps, NumberedList, type NumberedListProps, type OptionsCardsProps, OverlayLoader, type OverlayLoaderProps, Pagination, type PaginationProps, type PaginationVariant, PhoneField, type PhoneFieldOption, type PhoneFieldProps, type PhoneFieldValue, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, PopoverTrigger, PopoverWithTooltip, type PopoverWithTooltipProps, Radio, type RadioCardOption, MemoizedRadioCardsGroup as RadioCardsGroup, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioOption, type RadioProps, type RadioSize, RadioWithBorder, RatingProgress, type RatingProgressProps, RatingRadioGroup, type RatingRadioGroupProps, RatingStars, type RatingStarsProps, type RegisterUiKitI18nOptions, ResponsiveDropdown, type ResponsiveDropdownOption, type ResponsiveDropdownProps, ResponsiveSheet, type ResponsiveSheetProps, RotateArrow, type RotateArrowProps, ScrollArea, type ScrollAreaProps, ScrollBar, type ScrollBarProps, type ScrollableAreaState, SearchButton, type SearchButtonProps, SearchInput, type SearchInputProps, SearchableSelect, type SearchableSelectProps, type SearchableSelectValue, Section, SectionGroup, type SectionGroupItemProps, type SectionGroupLabelProps, type SectionGroupProps, type SectionProps, SectionTag, SectionTagColors, type SectionTagProps, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, type SelectOption, SelectPortal, type SelectProps, SelectRoot, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, type SelectSize, SelectTrigger, SelectValue$2 as SelectValue, type SelectorOption, Separator, type SeparatorProps, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarIcon, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, SignatureCanvas, Skeleton, type SkeletonProps, Slider, SmallGridSingleItem, type SmallGridSingleItemProps, SortingAction, type SortingActionProps, type SortingActionValue, type SortingByVariant, StatusBadge, type StatusBadgeProps, type StatusBadgeVariant, StatusBox, type StatusBoxProps, StatusButton, type StatusButtonProps, Stepper, type StepperProps, SubSection, SubSectionSize, SvgIcon, type SvgIconProps, type SvgIconSize, Switch, SwitchBlocks, type SwitchBlocksOption, type SwitchBlocksProps, SwitchGroup, type SwitchGroupProps, type SwitchOption, type SwitchProps, TabbedSection, type TabbedSectionProps, Table, TableBody, TableCaption, TableCell, TableFilter, type TableFilterProps, TableFooter, TableHead, TableHeader, TableLoader, type TableLoaderProps, type TableLoaderRootProps, TablePlaceholder, type TablePlaceholderProps, TableRow, Tabs, TabsContent, TabsList, type TabsListProps, TabsTrigger, type TabsTriggerProps, TextField, type TextFieldProps, Textarea, type TextareaProps, ThreeDotsLoader, type ThreeDotsLoaderProps, Timeline, TimelineConnector, type TimelineConnectorProps, TimelineContent, type TimelineContentProps, type TimelineContextProps, TimelineDescription, type TimelineDescriptionProps, TimelineDot, type TimelineDotProps, TimelineItem, type TimelineItemProps, type TimelineProps, TimelineSeparator, type TimelineSeparatorProps, TimelineTitle, type TimelineTitleProps, ToggleGroup, ToggleGroupItem, Toggles, type TogglesForwardType, type TogglesProps, Tooltip, TooltipContent, type TooltipContentProps, type TooltipProps, TooltipProvider, TooltipRoot, type TooltipRootProps, TooltipRootWrapper, TooltipTrigger, UI_KIT_I18N_NAMESPACE, type UiKitLocale, UploadedFilesList, type UploadedFilesListProps, type UseScrollableAreaOptions, type UseScrollableAreaResult, VerticalTabs, type VerticalTabsProps, type VerticalTabsStep, VideoModal, type VideoModalProps, VideoPlayer, type VideoPlayerProps, Webcam, type WebcamProps, type WebcamRefTypes, WideButton, type WideButtonProps, addSupportEmailToMessage, badgeVariants, bookmarkTabsListVariants, bookmarkTabsTriggerVariants, buttonGroupVariants, buttonVariants, calendarClassNames, cn, copyToClipboard, createDisabledMatchers, emptyMediaVariants, formatDate, getErrorMessage, getScrollableAreaState, getSidebarState, inputVariants, isDayBlocked, isNumeric, labelVariants, parseDate, registerUiKitI18n, scrollToTop, sectionTagVariants, switchThumbVariants, switchVariants, tabsListVariants, tabsTriggerVariants, toCssSize, toastResponseError, toggleVariants, uiKitI18nResources, uiKitTranslations, useAbortController, useAccordionState, useCarouselContext, useClickEscape, useCombinedRef, useCopyToClipboard, useDebounce, useDebouncedFunction, useEvent, useHover, useIframeFocusTrapFallback, useIsFormTouched, useIsMobile, useIsMounted, useKeyDown, useLoadMore, useLockBodyScroll, useModalControls, useModalWithHistoryControls, useOutsideClick, usePagination, usePrevious, usePromisedModalControls, useRadioOptions, useResetAfterRequestStatus, useScreenResize, useScrollFrameIntoView, useScrollToTop, useScrollableArea, useSearchInput, useSidebar, useSidebarMenuButton, useSidebarSafe, useStickyStuck, useSwitchSectionActive, useTimeline, useTimeout, useTimeoutRef, useTimer, useUpdateToast, useValidateDates };
|