@chekinapp/ui 0.2.3 → 0.2.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 +180 -119
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +48 -29
- package/dist/index.d.ts +48 -29
- package/dist/index.js +159 -99
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -5459,7 +5459,7 @@ declare enum SubSectionSize {
|
|
|
5459
5459
|
|
|
5460
5460
|
type ReactEntity = ReactNode;
|
|
5461
5461
|
type SectionProps = {
|
|
5462
|
-
children
|
|
5462
|
+
children?: ReactEntity;
|
|
5463
5463
|
title?: ReactEntity;
|
|
5464
5464
|
titleTooltip?: ReactEntity | string;
|
|
5465
5465
|
subtitle?: ReactEntity;
|
|
@@ -6357,26 +6357,26 @@ declare function findPhoneCodeOption(options: PhoneInputOption[], code: string):
|
|
|
6357
6357
|
declare function formatPhoneCodeOptionLabel(option: PhoneInputOption): string;
|
|
6358
6358
|
|
|
6359
6359
|
type SelectValue$1 = string | number;
|
|
6360
|
-
type SelectOptionGroup<T =
|
|
6360
|
+
type SelectOptionGroup<T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string> = {
|
|
6361
6361
|
label: ReactNode;
|
|
6362
6362
|
options: SelectOption<T, V, L>[];
|
|
6363
6363
|
};
|
|
6364
|
-
type SelectGroupedOption<T =
|
|
6365
|
-
type SelectFormatGroupLabel<T =
|
|
6366
|
-
type SelectFilterOption<T =
|
|
6367
|
-
type SelectIsOptionDisabled<T =
|
|
6364
|
+
type SelectGroupedOption<T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string> = SelectOption<T, V, L> | SelectOptionGroup<T, V, L>;
|
|
6365
|
+
type SelectFormatGroupLabel<T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string> = (group: SelectOptionGroup<T, V, L>) => ReactNode;
|
|
6366
|
+
type SelectFilterOption<T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string> = (option: SelectOption<T, V, L>, input: string) => boolean;
|
|
6367
|
+
type SelectIsOptionDisabled<T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string> = (option: SelectOption<T, V, L>) => boolean;
|
|
6368
6368
|
type SelectChangeAction = 'select' | 'deselect' | 'clear' | 'create';
|
|
6369
6369
|
type SelectChangeMeta = {
|
|
6370
6370
|
action: SelectChangeAction;
|
|
6371
6371
|
};
|
|
6372
6372
|
type SelectFormatOptionLabelContext = 'menu' | 'value';
|
|
6373
|
-
type SelectFormatOptionLabelMeta<T =
|
|
6373
|
+
type SelectFormatOptionLabelMeta<T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string> = {
|
|
6374
6374
|
context: SelectFormatOptionLabelContext;
|
|
6375
6375
|
inputValue: string;
|
|
6376
6376
|
selectValue: SelectOption<T, V, L>[];
|
|
6377
6377
|
};
|
|
6378
|
-
type SelectFormatOptionLabel<T =
|
|
6379
|
-
type SelectIsOptionSelected<T =
|
|
6378
|
+
type SelectFormatOptionLabel<T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string> = (option: SelectOption<T, V, L>, meta: SelectFormatOptionLabelMeta<T, V, L>) => ReactNode;
|
|
6379
|
+
type SelectIsOptionSelected<T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string> = (option: SelectOption<T, V, L>, selectValue: SelectOption<T, V, L>[]) => boolean;
|
|
6380
6380
|
|
|
6381
6381
|
type ControlProps<T, V extends SelectValue$1, L extends ReactNode> = {
|
|
6382
6382
|
triggerId: string;
|
|
@@ -6545,24 +6545,24 @@ type MultiSelectModeProps<T, V extends SelectValue$1, L extends ReactNode> = Bas
|
|
|
6545
6545
|
onChange?: (value: SelectOption<T, V, L>[], meta?: SelectChangeMeta) => void;
|
|
6546
6546
|
closeMenuOnSelect?: boolean;
|
|
6547
6547
|
};
|
|
6548
|
-
type SelectProps<T =
|
|
6549
|
-
type SelectComponent = <T =
|
|
6548
|
+
type SelectProps<T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string> = SingleSelectProps<T, V, L> | MultiSelectModeProps<T, V, L>;
|
|
6549
|
+
type SelectComponent = <T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string>(props: SelectProps<T, V, L> & {
|
|
6550
6550
|
ref?: React$1.Ref<HTMLDivElement>;
|
|
6551
6551
|
}) => React$1.ReactElement;
|
|
6552
6552
|
declare const Select: SelectComponent;
|
|
6553
6553
|
|
|
6554
|
-
type CreatableSelectProps<T =
|
|
6555
|
-
declare const CreatableSelect: <T =
|
|
6554
|
+
type CreatableSelectProps<T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string> = Omit<SingleSelectProps<T, V, L>, 'isCreatable' | 'isMulti'>;
|
|
6555
|
+
declare const CreatableSelect: <T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string>(props: CreatableSelectProps<T, V, L> & {
|
|
6556
6556
|
ref?: React$1.Ref<HTMLDivElement>;
|
|
6557
6557
|
}) => React$1.ReactElement;
|
|
6558
6558
|
|
|
6559
|
-
type MultiSelectProps<T =
|
|
6560
|
-
declare const MultiSelect: <T =
|
|
6559
|
+
type MultiSelectProps<T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string> = Omit<MultiSelectModeProps<T, V, L>, 'isMulti'>;
|
|
6560
|
+
declare const MultiSelect: <T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string>(props: MultiSelectProps<T, V, L> & {
|
|
6561
6561
|
ref?: React$1.Ref<HTMLDivElement>;
|
|
6562
6562
|
}) => React$1.ReactElement;
|
|
6563
6563
|
|
|
6564
|
-
type CreatableMultiSelectProps<T =
|
|
6565
|
-
declare const CreatableMultiSelect: <T =
|
|
6564
|
+
type CreatableMultiSelectProps<T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string> = Omit<MultiSelectModeProps<T, V, L>, 'isCreatable' | 'isMulti'>;
|
|
6565
|
+
declare const CreatableMultiSelect: <T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string>(props: CreatableMultiSelectProps<T, V, L> & {
|
|
6566
6566
|
ref?: React$1.Ref<HTMLDivElement>;
|
|
6567
6567
|
}) => React$1.ReactElement;
|
|
6568
6568
|
|
|
@@ -6584,16 +6584,16 @@ type InfiniteScrollSingleProps<T, V extends SelectValue$1, L extends ReactNode>
|
|
|
6584
6584
|
type InfiniteScrollMultiSelectProps$1<T, V extends SelectValue$1, L extends ReactNode> = Omit<MultiSelectModeProps<T, V, L>, 'options'> & InfiniteScrollExtras & {
|
|
6585
6585
|
options?: SelectOption<T, V, L>[];
|
|
6586
6586
|
};
|
|
6587
|
-
type InfiniteScrollSelectProps<T =
|
|
6588
|
-
type InfiniteScrollSelectComponent = <T =
|
|
6587
|
+
type InfiniteScrollSelectProps<T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string> = InfiniteScrollSingleProps<T, V, L> | InfiniteScrollMultiSelectProps$1<T, V, L>;
|
|
6588
|
+
type InfiniteScrollSelectComponent = <T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string>(props: InfiniteScrollSelectProps<T, V, L> & {
|
|
6589
6589
|
ref?: React$1.Ref<HTMLDivElement>;
|
|
6590
6590
|
}) => React$1.ReactElement;
|
|
6591
6591
|
declare const InfiniteScrollSelect: InfiniteScrollSelectComponent;
|
|
6592
6592
|
|
|
6593
|
-
type InfiniteScrollMultiSelectProps<T =
|
|
6593
|
+
type InfiniteScrollMultiSelectProps<T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string> = Omit<Extract<InfiniteScrollSelectProps<T, V, L>, {
|
|
6594
6594
|
isMulti: true;
|
|
6595
6595
|
}>, 'isMulti'>;
|
|
6596
|
-
declare const InfiniteScrollMultiSelect: <T =
|
|
6596
|
+
declare const InfiniteScrollMultiSelect: <T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string>(props: InfiniteScrollMultiSelectProps<T, V, L> & {
|
|
6597
6597
|
ref?: React$1.Ref<HTMLDivElement>;
|
|
6598
6598
|
}) => React$1.ReactElement;
|
|
6599
6599
|
|
|
@@ -6609,7 +6609,7 @@ type SelectCheckboxesPaginationProps = {
|
|
|
6609
6609
|
overscan?: number;
|
|
6610
6610
|
loadMoreThreshold?: number;
|
|
6611
6611
|
};
|
|
6612
|
-
type SelectCheckboxesProps<T =
|
|
6612
|
+
type SelectCheckboxesProps<T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string> = Omit<MultiSelectModeProps<T, V, L>, 'isMulti' | 'components' | 'searchPosition' | 'menuHeader' | 'options'> & {
|
|
6613
6613
|
options?: SelectGroupedOption<T, V, L>[];
|
|
6614
6614
|
trigger?: SelectCheckboxesTriggerRenderer;
|
|
6615
6615
|
components?: SelectComponents<T, V, L>;
|
|
@@ -6618,7 +6618,7 @@ type SelectCheckboxesProps<T = undefined, V extends SelectValue$1 = string, L ex
|
|
|
6618
6618
|
selectAllLabel?: string;
|
|
6619
6619
|
searchable?: boolean;
|
|
6620
6620
|
} & SelectCheckboxesPaginationProps;
|
|
6621
|
-
type SelectCheckboxesComponent = <T =
|
|
6621
|
+
type SelectCheckboxesComponent = <T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string>(props: SelectCheckboxesProps<T, V, L> & {
|
|
6622
6622
|
ref?: React$1.Ref<HTMLDivElement>;
|
|
6623
6623
|
}) => React$1.ReactElement;
|
|
6624
6624
|
declare const SelectCheckboxes: SelectCheckboxesComponent;
|
|
@@ -7289,6 +7289,7 @@ type AirbnbDatePickerProps = {
|
|
|
7289
7289
|
loading?: boolean;
|
|
7290
7290
|
optional?: boolean | string;
|
|
7291
7291
|
tooltip?: React$1.ReactNode;
|
|
7292
|
+
helper?: React$1.ReactNode;
|
|
7292
7293
|
className?: string;
|
|
7293
7294
|
name?: string;
|
|
7294
7295
|
minDate?: Date;
|
|
@@ -7300,6 +7301,14 @@ type AirbnbDatePickerProps = {
|
|
|
7300
7301
|
};
|
|
7301
7302
|
declare const AirbnbDatePicker: React$1.ForwardRefExoticComponent<AirbnbDatePickerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
7302
7303
|
|
|
7304
|
+
type AirbnbFieldHelperTextProps = {
|
|
7305
|
+
id?: string;
|
|
7306
|
+
helper?: React$1.ReactNode;
|
|
7307
|
+
disabled?: boolean;
|
|
7308
|
+
className?: string;
|
|
7309
|
+
};
|
|
7310
|
+
declare function AirbnbFieldHelperText({ id, helper, disabled, className, }: AirbnbFieldHelperTextProps): react_jsx_runtime.JSX.Element | null;
|
|
7311
|
+
|
|
7303
7312
|
type AirbnbFieldTriggerProps = {
|
|
7304
7313
|
as?: 'button' | 'div';
|
|
7305
7314
|
id: string;
|
|
@@ -7312,6 +7321,7 @@ type AirbnbFieldTriggerProps = {
|
|
|
7312
7321
|
labelText?: React$1.ReactNode;
|
|
7313
7322
|
valueText?: string;
|
|
7314
7323
|
placeholder?: string;
|
|
7324
|
+
helper?: React$1.ReactNode;
|
|
7315
7325
|
disabled?: boolean;
|
|
7316
7326
|
error?: boolean | string;
|
|
7317
7327
|
loading?: boolean;
|
|
@@ -7340,6 +7350,7 @@ declare const AirbnbFieldTrigger: React$1.ForwardRefExoticComponent<{
|
|
|
7340
7350
|
labelText?: React$1.ReactNode;
|
|
7341
7351
|
valueText?: string;
|
|
7342
7352
|
placeholder?: string;
|
|
7353
|
+
helper?: React$1.ReactNode;
|
|
7343
7354
|
disabled?: boolean;
|
|
7344
7355
|
error?: boolean | string;
|
|
7345
7356
|
loading?: boolean;
|
|
@@ -7361,6 +7372,7 @@ type AirbnbInputProps = React$1.InputHTMLAttributes<HTMLInputElement> & {
|
|
|
7361
7372
|
label?: string;
|
|
7362
7373
|
topLabel?: string;
|
|
7363
7374
|
helperText?: string;
|
|
7375
|
+
helper?: React$1.ReactNode;
|
|
7364
7376
|
error?: string;
|
|
7365
7377
|
invalid?: boolean;
|
|
7366
7378
|
loading?: boolean;
|
|
@@ -7377,6 +7389,7 @@ declare const AirbnbInput: React$1.ForwardRefExoticComponent<React$1.InputHTMLAt
|
|
|
7377
7389
|
label?: string;
|
|
7378
7390
|
topLabel?: string;
|
|
7379
7391
|
helperText?: string;
|
|
7392
|
+
helper?: React$1.ReactNode;
|
|
7380
7393
|
error?: string;
|
|
7381
7394
|
invalid?: boolean;
|
|
7382
7395
|
loading?: boolean;
|
|
@@ -7414,6 +7427,7 @@ type AirbnbPhoneFieldProps = {
|
|
|
7414
7427
|
loading?: boolean;
|
|
7415
7428
|
optional?: boolean | string;
|
|
7416
7429
|
tooltip?: React$1.ReactNode;
|
|
7430
|
+
helper?: React$1.ReactNode;
|
|
7417
7431
|
className?: string;
|
|
7418
7432
|
name?: string;
|
|
7419
7433
|
codeName?: string;
|
|
@@ -7425,7 +7439,7 @@ type AirbnbPhoneFieldProps = {
|
|
|
7425
7439
|
declare const AirbnbPhoneField: React$1.ForwardRefExoticComponent<AirbnbPhoneFieldProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
7426
7440
|
|
|
7427
7441
|
type SelectValue = string | number;
|
|
7428
|
-
type SelectRenderTriggerProps<T =
|
|
7442
|
+
type SelectRenderTriggerProps<T = unknown, V extends SelectValue = string, L extends string | number | React$1.ReactNode = string> = {
|
|
7429
7443
|
id: string;
|
|
7430
7444
|
open: boolean;
|
|
7431
7445
|
label: string;
|
|
@@ -7437,6 +7451,7 @@ type SelectRenderTriggerProps<T = undefined, V extends SelectValue = string, L e
|
|
|
7437
7451
|
loading?: boolean;
|
|
7438
7452
|
optional?: boolean | string;
|
|
7439
7453
|
tooltip?: React$1.ReactNode;
|
|
7454
|
+
helper?: React$1.ReactNode;
|
|
7440
7455
|
error?: string;
|
|
7441
7456
|
invalid?: boolean;
|
|
7442
7457
|
listboxId: string;
|
|
@@ -7446,7 +7461,7 @@ type SelectRenderTriggerProps<T = undefined, V extends SelectValue = string, L e
|
|
|
7446
7461
|
onKeyDown: React$1.KeyboardEventHandler<HTMLButtonElement>;
|
|
7447
7462
|
onBlur?: React$1.FocusEventHandler<HTMLButtonElement>;
|
|
7448
7463
|
};
|
|
7449
|
-
type AirbnbSelectProps<T =
|
|
7464
|
+
type AirbnbSelectProps<T = unknown, V extends SelectValue = string, L extends string | number | React$1.ReactNode = string> = {
|
|
7450
7465
|
options?: SelectOption<T, V, L>[];
|
|
7451
7466
|
value?: SelectOption<T, V, L> | null;
|
|
7452
7467
|
defaultValue?: SelectOption<T, V, L> | null;
|
|
@@ -7461,6 +7476,7 @@ type AirbnbSelectProps<T = undefined, V extends SelectValue = string, L extends
|
|
|
7461
7476
|
loading?: boolean;
|
|
7462
7477
|
optional?: boolean | string;
|
|
7463
7478
|
tooltip?: React$1.ReactNode;
|
|
7479
|
+
helper?: React$1.ReactNode;
|
|
7464
7480
|
error?: string;
|
|
7465
7481
|
invalid?: boolean;
|
|
7466
7482
|
hideErrorMessage?: boolean;
|
|
@@ -7474,12 +7490,12 @@ type AirbnbSelectProps<T = undefined, V extends SelectValue = string, L extends
|
|
|
7474
7490
|
filterOption?: (option: SelectOption<T, V, L>) => boolean;
|
|
7475
7491
|
};
|
|
7476
7492
|
|
|
7477
|
-
declare const AirbnbSelect: <T =
|
|
7493
|
+
declare const AirbnbSelect: <T = unknown, V extends SelectValue = string, L extends string | number | ReactNode = string>(props: AirbnbSelectProps<T, V, L> & {
|
|
7478
7494
|
ref?: React$1.Ref<HTMLButtonElement>;
|
|
7479
7495
|
}) => React$1.ReactElement;
|
|
7480
7496
|
|
|
7481
7497
|
type AirbnbSearchableSelectValue = string | number;
|
|
7482
|
-
type AirbnbSearchableSelectProps<T =
|
|
7498
|
+
type AirbnbSearchableSelectProps<T = unknown, V extends AirbnbSearchableSelectValue = string, L extends ReactNode = string> = {
|
|
7483
7499
|
options: SelectOption<T, V, L>[];
|
|
7484
7500
|
value?: SelectOption<T, V, L> | null;
|
|
7485
7501
|
onChange: (option: SelectOption<T, V, L>) => void;
|
|
@@ -7502,6 +7518,7 @@ type AirbnbSearchableSelectProps<T = undefined, V extends AirbnbSearchableSelect
|
|
|
7502
7518
|
invalid?: boolean;
|
|
7503
7519
|
optional?: boolean | string;
|
|
7504
7520
|
tooltip?: ReactNode;
|
|
7521
|
+
helper?: ReactNode;
|
|
7505
7522
|
hideErrorMessage?: boolean;
|
|
7506
7523
|
name?: string;
|
|
7507
7524
|
className?: string;
|
|
@@ -7511,11 +7528,12 @@ type AirbnbSearchableSelectProps<T = undefined, V extends AirbnbSearchableSelect
|
|
|
7511
7528
|
loadingMessage?: () => string | undefined;
|
|
7512
7529
|
};
|
|
7513
7530
|
|
|
7514
|
-
type AirbnbSearchableSelectComponent = <T =
|
|
7531
|
+
type AirbnbSearchableSelectComponent = <T = unknown, V extends AirbnbSearchableSelectValue = string, L extends ReactNode = string>(props: AirbnbSearchableSelectProps<T, V, L> & React$1.RefAttributes<HTMLButtonElement>) => React$1.ReactElement | null;
|
|
7515
7532
|
declare const AirbnbSearchableSelect: AirbnbSearchableSelectComponent;
|
|
7516
7533
|
|
|
7517
7534
|
type AirbnbSearchInputProps = ComponentProps<'input'> & {
|
|
7518
7535
|
onReset?: () => void;
|
|
7536
|
+
helper?: React$1.ReactNode;
|
|
7519
7537
|
wrapperClassName?: string;
|
|
7520
7538
|
};
|
|
7521
7539
|
declare const AirbnbSearchInput: React$1.ForwardRefExoticComponent<Omit<AirbnbSearchInputProps, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
|
|
@@ -7527,8 +7545,9 @@ interface AirbnbSwitchProps extends Omit<React$1.ComponentPropsWithoutRef<typeof
|
|
|
7527
7545
|
readOnly?: boolean;
|
|
7528
7546
|
label?: React$1.ReactNode;
|
|
7529
7547
|
error?: string;
|
|
7548
|
+
helper?: React$1.ReactNode;
|
|
7530
7549
|
wrapperClassName?: string;
|
|
7531
7550
|
}
|
|
7532
7551
|
declare const AirbnbSwitch: React$1.ForwardRefExoticComponent<AirbnbSwitchProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
7533
7552
|
|
|
7534
|
-
export { ALERT_BOX_VARIANTS, Accordion, AccordionContent, type AccordionContentProps, AccordionItem, AccordionTrigger, type AccordionTriggerProps, AirbnbDatePicker, type AirbnbDatePickerProps, type AirbnbDatePickerValue, AirbnbFieldTrigger, type AirbnbFieldTriggerProps, AirbnbInput, type AirbnbInputProps, AirbnbPhoneField, type AirbnbPhoneFieldOption, type AirbnbPhoneFieldProps, type AirbnbPhoneFieldValue, AirbnbSearchInput, AirbnbSearchableSelect, type AirbnbSearchableSelectProps, type AirbnbSearchableSelectValue, AirbnbSelect, type AirbnbSelectProps, AirbnbSwitch, type AirbnbSwitchProps, Alert, AlertBox, type AlertBoxProps, type AlertBoxVariant, AlertDescription, AlertSize, AlertSizes, AlertTitle, AlertType, AlertTypes, AudioPlayer, type AudioPlayerProps, Avatar, type AvatarProps, Badge, type BadgeProps, BaseCheckbox, type BaseCheckboxProps, type BaseSelectProps, BetaBadge, type BetaBadgeProps, BookmarkTabsList, type BookmarkTabsListProps, BookmarkTabsTrigger, type BookmarkTabsTriggerProps, BoxOptionSelector, type BoxOptionSelectorProps, type BoxOptionSelectorSwitchProps, Breadcrumb, type BreadcrumbProps, type BreadcrumbType, Breadcrumbs, type BreadcrumbsProps, Button, ButtonGroup, type ButtonGroupProps, ButtonGroupText, type ButtonGroupTextProps, type ButtonProps, type ButtonStatuses, ButtonsGroupLabel, type ButtonsGroupLabelProps, Calendar, type CalendarProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, CarouselNext, CarouselPrevious, type CarouselProps, CarouselRoot, type CarouselRootProps, CarouselSlide, CarouselTrack, CarouselViewport, CheckList, type CheckListProps, Checkbox, CheckboxDropdownGroup, type CheckboxDropdownGroupConfig, type CheckboxDropdownGroupProps, CheckboxDropdownMultiGroup, CheckboxGroup, type CheckboxGroupProps, type CheckboxOption, type CheckboxProps, type CheckboxSize, CircularLoader, Collapsible, CollapsibleContent, CollapsibleTrigger, CommingSoonBadge, type CommingSoonBadgeProps, ConfirmationDialog, type ConfirmationDialogProps, CopyIcon, type CopyIconProps, CopyInput, type CopyInputProps, CopyLinkButton, type CopyLinkButtonProps, CopyString, type CopyStringProps, Counter, type CounterProps, CounterSize, CreatableMultiSelect, type CreatableMultiSelectProps, CreatableSelect, type CreatableSelectProps, CustomCheckboxDropdownGroup, type CustomIconEntry, DEFAULT_DISPLAY_FORMAT, DEVICE_BREAKPOINTS, DataTable, type DataTableProps, DateRangePicker, type DateRangePickerImperativeProps, type OpenDirection as DateRangePickerOpenDirection, type DateRangePickerProps, DateTableFilter, Datepicker, type DatepickerDate, type DatepickerHandle, type DatepickerProps, type DatepickerSubfield, DebouncedSearchInput, type DebouncedSearchInputProps, DefaultSelectTrigger, type DefaultSelectTriggerProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DialogVisuallyHidden, DividingSubsection, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownButton, type DropdownButtonProps, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, type DropdownMenuContentSide, DropdownMenuGroup, DropdownMenuItem, DropdownMenuItemContent, type DropdownMenuItemContentProps, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptySectionPlaceholder, type EmptySectionPlaceholderProps, EmptyTitle, ErrorMessage, type ErrorMessageProps, ExpandableContent, type ExpandableContentProps, type ExpandableContentTrigger, ExternalLink, type ExternalLinkProps, FieldErrorMessage, type FieldErrorMessageProps, FileInput, FileInputButton, type FileInputButtonProps, type FileInputProps, type FileInputValue, FormBox, Content as FormBoxContent, type FormBoxContentProps, Header as FormBoxHeader, type FormBoxHeaderProps, Root$1 as FormBoxRoot, type FormBoxRootProps, SubHeader as FormBoxSubHeader, type FormBoxSubHeaderProps, FramedIcon, type FramedIconProps, HALO_ICON_STATUS, HaloIcon, type HaloIconProps, HelpTooltip, type HelpTooltipProps, IconButton, type IconButtonProps, type IconEntry, IconsDropdown, type IconsDropdownProps, Image, ImageFullScreenView, type ImageFullScreenViewProps, type ImageProps, InfiniteScrollMultiSelect, type InfiniteScrollMultiSelectProps, InfiniteScrollSelect, type InfiniteScrollSelectProps, InfoBox, type InfoBoxProps, Input, InputOTP, InputOTPGroup, type InputOTPProps, InputOTPSeparator, InputOTPSlot, type InputProps, Label, type LabelProps, LargeModal, type LargeModalProps, LearnMoreButton, type LearnMoreButtonProps, LegacyInfinitySelect, type LegacyInfinitySelectProps, LegacyInput, type LegacyInputProps, LegacyMultiSelect, type LegacyMultiSelectProps, LegacySelect, LegacySelectContent, LegacySelectGroup, LegacySelectItem, LegacySelectLabel, LegacySelectPortal, type LegacySelectProps, LegacySelectRoot, LegacySelectScrollDownButton, LegacySelectScrollUpButton, LegacySelectSeparator, type LegacySelectSize, LegacySelectTrigger, LegacySelectValue, LegacyTextarea, type LegacyTextareaProps, Link, type LinkProps, LoadingBar, type LoadingBarProps, type LucideIconEntry, type MobileCameraProps, type MobileScreenshotPayload, MobileWebcam, Modal, ModalButton, ModalLoader, type ModalLoaderProps, type ModalProps, MultiSelect, type MultiSelectProps, NumberedList, type NumberedListProps, type OptionsCardsProps, OverlayLoader, type OverlayLoaderProps, Pagination, type PaginationProps, type PaginationVariant, PhoneInput, type PhoneInputHandle, type PhoneInputOption, type PhoneInputProps, type PhoneInputSubfield, type PhoneInputValue, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, PopoverTrigger, PopoverWithTooltip, type PopoverWithTooltipProps, Radio, type RadioCardOption, MemoizedRadioCardsGroup as RadioCardsGroup, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioOption, type RadioProps, type RadioSize, RadioWithBorder, RatingProgress, type RatingProgressProps, RatingRadioGroup, type RatingRadioGroupProps, RatingStars, type RatingStarsProps, type RegisterUiKitI18nOptions, ResponsiveDropdown, type ResponsiveDropdownOption, type ResponsiveDropdownProps, ResponsiveSheet, type ResponsiveSheetProps, RotateArrow, type RotateArrowProps, ScrollArea, type ScrollAreaProps, ScrollBar, type ScrollBarProps, type ScrollableAreaState, SearchButton, type SearchButtonProps, SearchInput, type SearchInputProps, Section, SectionGroup, type SectionGroupItemProps, type SectionGroupLabelProps, type SectionGroupProps, type SectionProps, SectionTag, SectionTagColors, type SectionTagProps, Select, SelectAllRow, type SelectAllRowProps, SelectCheckboxOption, SelectCheckboxes, type SelectCheckboxesProps, type SelectCheckboxesTriggerRenderer, type SelectFormatGroupLabel, type SelectGroupedOption, SelectIconsBox, type SelectIconsBoxProps, type MultiSelectModeProps as SelectMultiProps, type SelectOption, type SelectOptionGroup, type SelectProps, type SelectorOption, Separator, type SeparatorProps, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarIcon, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, SignatureCanvas, type SignatureCanvasRef, type SingleSelectProps, Skeleton, type SkeletonProps, Slider, SmallGridSingleItem, type SmallGridSingleItemProps, SortingAction, type SortingActionProps, type SortingActionValue, type SortingByVariant, StatusBadge, type StatusBadgeProps, type StatusBadgeVariant, StatusBox, type StatusBoxProps, StatusButton, type StatusButtonProps, Stepper, type StepperProps, SubSection, SubSectionSize, SvgIcon, type SvgIconProps, type SvgIconSize, Switch, SwitchBlocks, type SwitchBlocksOption, type SwitchBlocksProps, SwitchGroup, type SwitchGroupProps, type SwitchOption, type SwitchProps, TabbedSection, type TabbedSectionProps, Table, TableBody, TableCaption, TableCell, TableFilter, type TableFilterProps, TableFooter, TableHead, TableHeader, TableLoader, type TableLoaderProps, type TableLoaderRootProps, TablePlaceholder, type TablePlaceholderProps, TableRow, Tabs, TabsContent, TabsList, type TabsListProps, TabsTrigger, type TabsTriggerProps, Textarea, type TextareaProps, ThreeDotsLoader, type ThreeDotsLoaderProps, TimePicker, type TimePickerFormat, type TimePickerProps, type TimeSettings, Timeline, TimelineConnector, type TimelineConnectorProps, TimelineContent, type TimelineContentProps, type TimelineContextProps, TimelineDescription, type TimelineDescriptionProps, TimelineDot, type TimelineDotProps, TimelineItem, type TimelineItemProps, type TimelineProps, TimelineSeparator, type TimelineSeparatorProps, TimelineTitle, type TimelineTitleProps, ToggleGroup, ToggleGroupItem, Toggles, type TogglesForwardType, type TogglesProps, Tooltip, TooltipContent, type TooltipContentProps, type TooltipProps, TooltipProvider, TooltipRoot, type TooltipRootProps, TooltipRootWrapper, TooltipTrigger, UI_KIT_I18N_NAMESPACE, UI_KIT_LANGUAGE_FALLBACKS, type UiKitLocale, UploadedFilesList, type UploadedFilesListProps, type UseScrollableAreaOptions, type UseScrollableAreaResult, VerticalTabs, type VerticalTabsProps, type VerticalTabsStep, type VideoConstraints, VideoModal, type VideoModalProps, VideoPlayer, type VideoPlayerProps, VisualCheckbox, type VisualCheckboxProps, Webcam, type WebcamProps, type WebcamRefTypes, WideButton, type WideButtonProps, addSupportEmailToMessage, badgeVariants, bookmarkTabsListVariants, bookmarkTabsTriggerVariants, buttonGroupVariants, buttonVariants, calendarClassNames, clearPhoneNumber, cn, compressFile, compressImage, copyToClipboard, countriesFilter, createDisabledMatchers, emptyMediaVariants, findPhoneCode, findPhoneCodeOption, formatDate, formatPhoneCodeOptionLabel, getErrorMessage, getFileSizeMB, getScrollableAreaState, getSidebarState, isDayBlocked, isNumeric, labelVariants, parseDate, parsePhoneValueWithOptions, registerUiKitI18n, scrollToTop, sectionTagVariants, switchThumbVariants, switchVariants, tabsListVariants, tabsTriggerVariants, toCssSize, toastResponseError, toggleVariants, uiKitI18nResources, uiKitTranslations, useAbortController, useAccordionState, useCarouselContext, useClickEscape, useCombinedRef, useCopyToClipboard, useCountdown, useDebounce, useDebouncedFunction, useEvent, useHover, useIframeFocusTrapFallback, useIsFormTouched, useIsMobile, useIsMounted, useKeyDown, useLoadMore, useLockBodyScroll, useModalControls, useModalWithHistoryControls, useOutsideClick, usePagination, usePrevious, usePromisedModalControls, useRadioOptions, useResetAfterRequestStatus, useScreenResize, useScrollFrameIntoView, useScrollToTop, useScrollableArea, useSearchInput, useSidebar, useSidebarMenuButton, useSidebarSafe, useStickyStuck, useSwitchSectionActive, useTimeline, useTimeout, useTimeoutRef, useUpdateToast, useValidateDates };
|
|
7553
|
+
export { ALERT_BOX_VARIANTS, Accordion, AccordionContent, type AccordionContentProps, AccordionItem, AccordionTrigger, type AccordionTriggerProps, AirbnbDatePicker, type AirbnbDatePickerProps, type AirbnbDatePickerValue, AirbnbFieldHelperText, type AirbnbFieldHelperTextProps, AirbnbFieldTrigger, type AirbnbFieldTriggerProps, AirbnbInput, type AirbnbInputProps, AirbnbPhoneField, type AirbnbPhoneFieldOption, type AirbnbPhoneFieldProps, type AirbnbPhoneFieldValue, AirbnbSearchInput, AirbnbSearchableSelect, type AirbnbSearchableSelectProps, type AirbnbSearchableSelectValue, AirbnbSelect, type AirbnbSelectProps, AirbnbSwitch, type AirbnbSwitchProps, Alert, AlertBox, type AlertBoxProps, type AlertBoxVariant, AlertDescription, AlertSize, AlertSizes, AlertTitle, AlertType, AlertTypes, AudioPlayer, type AudioPlayerProps, Avatar, type AvatarProps, Badge, type BadgeProps, BaseCheckbox, type BaseCheckboxProps, type BaseSelectProps, BetaBadge, type BetaBadgeProps, BookmarkTabsList, type BookmarkTabsListProps, BookmarkTabsTrigger, type BookmarkTabsTriggerProps, BoxOptionSelector, type BoxOptionSelectorProps, type BoxOptionSelectorSwitchProps, Breadcrumb, type BreadcrumbProps, type BreadcrumbType, Breadcrumbs, type BreadcrumbsProps, Button, ButtonGroup, type ButtonGroupProps, ButtonGroupText, type ButtonGroupTextProps, type ButtonProps, type ButtonStatuses, ButtonsGroupLabel, type ButtonsGroupLabelProps, Calendar, type CalendarProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, CarouselNext, CarouselPrevious, type CarouselProps, CarouselRoot, type CarouselRootProps, CarouselSlide, CarouselTrack, CarouselViewport, CheckList, type CheckListProps, Checkbox, CheckboxDropdownGroup, type CheckboxDropdownGroupConfig, type CheckboxDropdownGroupProps, CheckboxDropdownMultiGroup, CheckboxGroup, type CheckboxGroupProps, type CheckboxOption, type CheckboxProps, type CheckboxSize, CircularLoader, Collapsible, CollapsibleContent, CollapsibleTrigger, CommingSoonBadge, type CommingSoonBadgeProps, ConfirmationDialog, type ConfirmationDialogProps, CopyIcon, type CopyIconProps, CopyInput, type CopyInputProps, CopyLinkButton, type CopyLinkButtonProps, CopyString, type CopyStringProps, Counter, type CounterProps, CounterSize, CreatableMultiSelect, type CreatableMultiSelectProps, CreatableSelect, type CreatableSelectProps, CustomCheckboxDropdownGroup, type CustomIconEntry, DEFAULT_DISPLAY_FORMAT, DEVICE_BREAKPOINTS, DataTable, type DataTableProps, DateRangePicker, type DateRangePickerImperativeProps, type OpenDirection as DateRangePickerOpenDirection, type DateRangePickerProps, DateTableFilter, Datepicker, type DatepickerDate, type DatepickerHandle, type DatepickerProps, type DatepickerSubfield, DebouncedSearchInput, type DebouncedSearchInputProps, DefaultSelectTrigger, type DefaultSelectTriggerProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DialogVisuallyHidden, DividingSubsection, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownButton, type DropdownButtonProps, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, type DropdownMenuContentSide, DropdownMenuGroup, DropdownMenuItem, DropdownMenuItemContent, type DropdownMenuItemContentProps, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptySectionPlaceholder, type EmptySectionPlaceholderProps, EmptyTitle, ErrorMessage, type ErrorMessageProps, ExpandableContent, type ExpandableContentProps, type ExpandableContentTrigger, ExternalLink, type ExternalLinkProps, FieldErrorMessage, type FieldErrorMessageProps, FileInput, FileInputButton, type FileInputButtonProps, type FileInputProps, type FileInputValue, FormBox, Content as FormBoxContent, type FormBoxContentProps, Header as FormBoxHeader, type FormBoxHeaderProps, Root$1 as FormBoxRoot, type FormBoxRootProps, SubHeader as FormBoxSubHeader, type FormBoxSubHeaderProps, FramedIcon, type FramedIconProps, HALO_ICON_STATUS, HaloIcon, type HaloIconProps, HelpTooltip, type HelpTooltipProps, IconButton, type IconButtonProps, type IconEntry, IconsDropdown, type IconsDropdownProps, Image, ImageFullScreenView, type ImageFullScreenViewProps, type ImageProps, InfiniteScrollMultiSelect, type InfiniteScrollMultiSelectProps, InfiniteScrollSelect, type InfiniteScrollSelectProps, InfoBox, type InfoBoxProps, Input, InputOTP, InputOTPGroup, type InputOTPProps, InputOTPSeparator, InputOTPSlot, type InputProps, Label, type LabelProps, LargeModal, type LargeModalProps, LearnMoreButton, type LearnMoreButtonProps, LegacyInfinitySelect, type LegacyInfinitySelectProps, LegacyInput, type LegacyInputProps, LegacyMultiSelect, type LegacyMultiSelectProps, LegacySelect, LegacySelectContent, LegacySelectGroup, LegacySelectItem, LegacySelectLabel, LegacySelectPortal, type LegacySelectProps, LegacySelectRoot, LegacySelectScrollDownButton, LegacySelectScrollUpButton, LegacySelectSeparator, type LegacySelectSize, LegacySelectTrigger, LegacySelectValue, LegacyTextarea, type LegacyTextareaProps, Link, type LinkProps, LoadingBar, type LoadingBarProps, type LucideIconEntry, type MobileCameraProps, type MobileScreenshotPayload, MobileWebcam, Modal, ModalButton, ModalLoader, type ModalLoaderProps, type ModalProps, MultiSelect, type MultiSelectProps, NumberedList, type NumberedListProps, type OptionsCardsProps, OverlayLoader, type OverlayLoaderProps, Pagination, type PaginationProps, type PaginationVariant, PhoneInput, type PhoneInputHandle, type PhoneInputOption, type PhoneInputProps, type PhoneInputSubfield, type PhoneInputValue, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, PopoverTrigger, PopoverWithTooltip, type PopoverWithTooltipProps, Radio, type RadioCardOption, MemoizedRadioCardsGroup as RadioCardsGroup, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioOption, type RadioProps, type RadioSize, RadioWithBorder, RatingProgress, type RatingProgressProps, RatingRadioGroup, type RatingRadioGroupProps, RatingStars, type RatingStarsProps, type RegisterUiKitI18nOptions, ResponsiveDropdown, type ResponsiveDropdownOption, type ResponsiveDropdownProps, ResponsiveSheet, type ResponsiveSheetProps, RotateArrow, type RotateArrowProps, ScrollArea, type ScrollAreaProps, ScrollBar, type ScrollBarProps, type ScrollableAreaState, SearchButton, type SearchButtonProps, SearchInput, type SearchInputProps, Section, SectionGroup, type SectionGroupItemProps, type SectionGroupLabelProps, type SectionGroupProps, type SectionProps, SectionTag, SectionTagColors, type SectionTagProps, Select, SelectAllRow, type SelectAllRowProps, SelectCheckboxOption, SelectCheckboxes, type SelectCheckboxesProps, type SelectCheckboxesTriggerRenderer, type SelectFormatGroupLabel, type SelectGroupedOption, SelectIconsBox, type SelectIconsBoxProps, type MultiSelectModeProps as SelectMultiProps, type SelectOption, type SelectOptionGroup, type SelectProps, type SelectorOption, Separator, type SeparatorProps, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarIcon, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, SignatureCanvas, type SignatureCanvasRef, type SingleSelectProps, Skeleton, type SkeletonProps, Slider, SmallGridSingleItem, type SmallGridSingleItemProps, SortingAction, type SortingActionProps, type SortingActionValue, type SortingByVariant, StatusBadge, type StatusBadgeProps, type StatusBadgeVariant, StatusBox, type StatusBoxProps, StatusButton, type StatusButtonProps, Stepper, type StepperProps, SubSection, SubSectionSize, SvgIcon, type SvgIconProps, type SvgIconSize, Switch, SwitchBlocks, type SwitchBlocksOption, type SwitchBlocksProps, SwitchGroup, type SwitchGroupProps, type SwitchOption, type SwitchProps, TabbedSection, type TabbedSectionProps, Table, TableBody, TableCaption, TableCell, TableFilter, type TableFilterProps, TableFooter, TableHead, TableHeader, TableLoader, type TableLoaderProps, type TableLoaderRootProps, TablePlaceholder, type TablePlaceholderProps, TableRow, Tabs, TabsContent, TabsList, type TabsListProps, TabsTrigger, type TabsTriggerProps, Textarea, type TextareaProps, ThreeDotsLoader, type ThreeDotsLoaderProps, TimePicker, type TimePickerFormat, type TimePickerProps, type TimeSettings, Timeline, TimelineConnector, type TimelineConnectorProps, TimelineContent, type TimelineContentProps, type TimelineContextProps, TimelineDescription, type TimelineDescriptionProps, TimelineDot, type TimelineDotProps, TimelineItem, type TimelineItemProps, type TimelineProps, TimelineSeparator, type TimelineSeparatorProps, TimelineTitle, type TimelineTitleProps, ToggleGroup, ToggleGroupItem, Toggles, type TogglesForwardType, type TogglesProps, Tooltip, TooltipContent, type TooltipContentProps, type TooltipProps, TooltipProvider, TooltipRoot, type TooltipRootProps, TooltipRootWrapper, TooltipTrigger, UI_KIT_I18N_NAMESPACE, UI_KIT_LANGUAGE_FALLBACKS, type UiKitLocale, UploadedFilesList, type UploadedFilesListProps, type UseScrollableAreaOptions, type UseScrollableAreaResult, VerticalTabs, type VerticalTabsProps, type VerticalTabsStep, type VideoConstraints, VideoModal, type VideoModalProps, VideoPlayer, type VideoPlayerProps, VisualCheckbox, type VisualCheckboxProps, Webcam, type WebcamProps, type WebcamRefTypes, WideButton, type WideButtonProps, addSupportEmailToMessage, badgeVariants, bookmarkTabsListVariants, bookmarkTabsTriggerVariants, buttonGroupVariants, buttonVariants, calendarClassNames, clearPhoneNumber, cn, compressFile, compressImage, copyToClipboard, countriesFilter, createDisabledMatchers, emptyMediaVariants, findPhoneCode, findPhoneCodeOption, formatDate, formatPhoneCodeOptionLabel, getErrorMessage, getFileSizeMB, getScrollableAreaState, getSidebarState, isDayBlocked, isNumeric, labelVariants, parseDate, parsePhoneValueWithOptions, registerUiKitI18n, scrollToTop, sectionTagVariants, switchThumbVariants, switchVariants, tabsListVariants, tabsTriggerVariants, toCssSize, toastResponseError, toggleVariants, uiKitI18nResources, uiKitTranslations, useAbortController, useAccordionState, useCarouselContext, useClickEscape, useCombinedRef, useCopyToClipboard, useCountdown, useDebounce, useDebouncedFunction, useEvent, useHover, useIframeFocusTrapFallback, useIsFormTouched, useIsMobile, useIsMounted, useKeyDown, useLoadMore, useLockBodyScroll, useModalControls, useModalWithHistoryControls, useOutsideClick, usePagination, usePrevious, usePromisedModalControls, useRadioOptions, useResetAfterRequestStatus, useScreenResize, useScrollFrameIntoView, useScrollToTop, useScrollableArea, useSearchInput, useSidebar, useSidebarMenuButton, useSidebarSafe, useStickyStuck, useSwitchSectionActive, useTimeline, useTimeout, useTimeoutRef, useUpdateToast, useValidateDates };
|
package/dist/index.d.ts
CHANGED
|
@@ -5459,7 +5459,7 @@ declare enum SubSectionSize {
|
|
|
5459
5459
|
|
|
5460
5460
|
type ReactEntity = ReactNode;
|
|
5461
5461
|
type SectionProps = {
|
|
5462
|
-
children
|
|
5462
|
+
children?: ReactEntity;
|
|
5463
5463
|
title?: ReactEntity;
|
|
5464
5464
|
titleTooltip?: ReactEntity | string;
|
|
5465
5465
|
subtitle?: ReactEntity;
|
|
@@ -6357,26 +6357,26 @@ declare function findPhoneCodeOption(options: PhoneInputOption[], code: string):
|
|
|
6357
6357
|
declare function formatPhoneCodeOptionLabel(option: PhoneInputOption): string;
|
|
6358
6358
|
|
|
6359
6359
|
type SelectValue$1 = string | number;
|
|
6360
|
-
type SelectOptionGroup<T =
|
|
6360
|
+
type SelectOptionGroup<T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string> = {
|
|
6361
6361
|
label: ReactNode;
|
|
6362
6362
|
options: SelectOption<T, V, L>[];
|
|
6363
6363
|
};
|
|
6364
|
-
type SelectGroupedOption<T =
|
|
6365
|
-
type SelectFormatGroupLabel<T =
|
|
6366
|
-
type SelectFilterOption<T =
|
|
6367
|
-
type SelectIsOptionDisabled<T =
|
|
6364
|
+
type SelectGroupedOption<T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string> = SelectOption<T, V, L> | SelectOptionGroup<T, V, L>;
|
|
6365
|
+
type SelectFormatGroupLabel<T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string> = (group: SelectOptionGroup<T, V, L>) => ReactNode;
|
|
6366
|
+
type SelectFilterOption<T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string> = (option: SelectOption<T, V, L>, input: string) => boolean;
|
|
6367
|
+
type SelectIsOptionDisabled<T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string> = (option: SelectOption<T, V, L>) => boolean;
|
|
6368
6368
|
type SelectChangeAction = 'select' | 'deselect' | 'clear' | 'create';
|
|
6369
6369
|
type SelectChangeMeta = {
|
|
6370
6370
|
action: SelectChangeAction;
|
|
6371
6371
|
};
|
|
6372
6372
|
type SelectFormatOptionLabelContext = 'menu' | 'value';
|
|
6373
|
-
type SelectFormatOptionLabelMeta<T =
|
|
6373
|
+
type SelectFormatOptionLabelMeta<T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string> = {
|
|
6374
6374
|
context: SelectFormatOptionLabelContext;
|
|
6375
6375
|
inputValue: string;
|
|
6376
6376
|
selectValue: SelectOption<T, V, L>[];
|
|
6377
6377
|
};
|
|
6378
|
-
type SelectFormatOptionLabel<T =
|
|
6379
|
-
type SelectIsOptionSelected<T =
|
|
6378
|
+
type SelectFormatOptionLabel<T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string> = (option: SelectOption<T, V, L>, meta: SelectFormatOptionLabelMeta<T, V, L>) => ReactNode;
|
|
6379
|
+
type SelectIsOptionSelected<T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string> = (option: SelectOption<T, V, L>, selectValue: SelectOption<T, V, L>[]) => boolean;
|
|
6380
6380
|
|
|
6381
6381
|
type ControlProps<T, V extends SelectValue$1, L extends ReactNode> = {
|
|
6382
6382
|
triggerId: string;
|
|
@@ -6545,24 +6545,24 @@ type MultiSelectModeProps<T, V extends SelectValue$1, L extends ReactNode> = Bas
|
|
|
6545
6545
|
onChange?: (value: SelectOption<T, V, L>[], meta?: SelectChangeMeta) => void;
|
|
6546
6546
|
closeMenuOnSelect?: boolean;
|
|
6547
6547
|
};
|
|
6548
|
-
type SelectProps<T =
|
|
6549
|
-
type SelectComponent = <T =
|
|
6548
|
+
type SelectProps<T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string> = SingleSelectProps<T, V, L> | MultiSelectModeProps<T, V, L>;
|
|
6549
|
+
type SelectComponent = <T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string>(props: SelectProps<T, V, L> & {
|
|
6550
6550
|
ref?: React$1.Ref<HTMLDivElement>;
|
|
6551
6551
|
}) => React$1.ReactElement;
|
|
6552
6552
|
declare const Select: SelectComponent;
|
|
6553
6553
|
|
|
6554
|
-
type CreatableSelectProps<T =
|
|
6555
|
-
declare const CreatableSelect: <T =
|
|
6554
|
+
type CreatableSelectProps<T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string> = Omit<SingleSelectProps<T, V, L>, 'isCreatable' | 'isMulti'>;
|
|
6555
|
+
declare const CreatableSelect: <T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string>(props: CreatableSelectProps<T, V, L> & {
|
|
6556
6556
|
ref?: React$1.Ref<HTMLDivElement>;
|
|
6557
6557
|
}) => React$1.ReactElement;
|
|
6558
6558
|
|
|
6559
|
-
type MultiSelectProps<T =
|
|
6560
|
-
declare const MultiSelect: <T =
|
|
6559
|
+
type MultiSelectProps<T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string> = Omit<MultiSelectModeProps<T, V, L>, 'isMulti'>;
|
|
6560
|
+
declare const MultiSelect: <T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string>(props: MultiSelectProps<T, V, L> & {
|
|
6561
6561
|
ref?: React$1.Ref<HTMLDivElement>;
|
|
6562
6562
|
}) => React$1.ReactElement;
|
|
6563
6563
|
|
|
6564
|
-
type CreatableMultiSelectProps<T =
|
|
6565
|
-
declare const CreatableMultiSelect: <T =
|
|
6564
|
+
type CreatableMultiSelectProps<T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string> = Omit<MultiSelectModeProps<T, V, L>, 'isCreatable' | 'isMulti'>;
|
|
6565
|
+
declare const CreatableMultiSelect: <T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string>(props: CreatableMultiSelectProps<T, V, L> & {
|
|
6566
6566
|
ref?: React$1.Ref<HTMLDivElement>;
|
|
6567
6567
|
}) => React$1.ReactElement;
|
|
6568
6568
|
|
|
@@ -6584,16 +6584,16 @@ type InfiniteScrollSingleProps<T, V extends SelectValue$1, L extends ReactNode>
|
|
|
6584
6584
|
type InfiniteScrollMultiSelectProps$1<T, V extends SelectValue$1, L extends ReactNode> = Omit<MultiSelectModeProps<T, V, L>, 'options'> & InfiniteScrollExtras & {
|
|
6585
6585
|
options?: SelectOption<T, V, L>[];
|
|
6586
6586
|
};
|
|
6587
|
-
type InfiniteScrollSelectProps<T =
|
|
6588
|
-
type InfiniteScrollSelectComponent = <T =
|
|
6587
|
+
type InfiniteScrollSelectProps<T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string> = InfiniteScrollSingleProps<T, V, L> | InfiniteScrollMultiSelectProps$1<T, V, L>;
|
|
6588
|
+
type InfiniteScrollSelectComponent = <T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string>(props: InfiniteScrollSelectProps<T, V, L> & {
|
|
6589
6589
|
ref?: React$1.Ref<HTMLDivElement>;
|
|
6590
6590
|
}) => React$1.ReactElement;
|
|
6591
6591
|
declare const InfiniteScrollSelect: InfiniteScrollSelectComponent;
|
|
6592
6592
|
|
|
6593
|
-
type InfiniteScrollMultiSelectProps<T =
|
|
6593
|
+
type InfiniteScrollMultiSelectProps<T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string> = Omit<Extract<InfiniteScrollSelectProps<T, V, L>, {
|
|
6594
6594
|
isMulti: true;
|
|
6595
6595
|
}>, 'isMulti'>;
|
|
6596
|
-
declare const InfiniteScrollMultiSelect: <T =
|
|
6596
|
+
declare const InfiniteScrollMultiSelect: <T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string>(props: InfiniteScrollMultiSelectProps<T, V, L> & {
|
|
6597
6597
|
ref?: React$1.Ref<HTMLDivElement>;
|
|
6598
6598
|
}) => React$1.ReactElement;
|
|
6599
6599
|
|
|
@@ -6609,7 +6609,7 @@ type SelectCheckboxesPaginationProps = {
|
|
|
6609
6609
|
overscan?: number;
|
|
6610
6610
|
loadMoreThreshold?: number;
|
|
6611
6611
|
};
|
|
6612
|
-
type SelectCheckboxesProps<T =
|
|
6612
|
+
type SelectCheckboxesProps<T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string> = Omit<MultiSelectModeProps<T, V, L>, 'isMulti' | 'components' | 'searchPosition' | 'menuHeader' | 'options'> & {
|
|
6613
6613
|
options?: SelectGroupedOption<T, V, L>[];
|
|
6614
6614
|
trigger?: SelectCheckboxesTriggerRenderer;
|
|
6615
6615
|
components?: SelectComponents<T, V, L>;
|
|
@@ -6618,7 +6618,7 @@ type SelectCheckboxesProps<T = undefined, V extends SelectValue$1 = string, L ex
|
|
|
6618
6618
|
selectAllLabel?: string;
|
|
6619
6619
|
searchable?: boolean;
|
|
6620
6620
|
} & SelectCheckboxesPaginationProps;
|
|
6621
|
-
type SelectCheckboxesComponent = <T =
|
|
6621
|
+
type SelectCheckboxesComponent = <T = unknown, V extends SelectValue$1 = string, L extends ReactNode = string>(props: SelectCheckboxesProps<T, V, L> & {
|
|
6622
6622
|
ref?: React$1.Ref<HTMLDivElement>;
|
|
6623
6623
|
}) => React$1.ReactElement;
|
|
6624
6624
|
declare const SelectCheckboxes: SelectCheckboxesComponent;
|
|
@@ -7289,6 +7289,7 @@ type AirbnbDatePickerProps = {
|
|
|
7289
7289
|
loading?: boolean;
|
|
7290
7290
|
optional?: boolean | string;
|
|
7291
7291
|
tooltip?: React$1.ReactNode;
|
|
7292
|
+
helper?: React$1.ReactNode;
|
|
7292
7293
|
className?: string;
|
|
7293
7294
|
name?: string;
|
|
7294
7295
|
minDate?: Date;
|
|
@@ -7300,6 +7301,14 @@ type AirbnbDatePickerProps = {
|
|
|
7300
7301
|
};
|
|
7301
7302
|
declare const AirbnbDatePicker: React$1.ForwardRefExoticComponent<AirbnbDatePickerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
7302
7303
|
|
|
7304
|
+
type AirbnbFieldHelperTextProps = {
|
|
7305
|
+
id?: string;
|
|
7306
|
+
helper?: React$1.ReactNode;
|
|
7307
|
+
disabled?: boolean;
|
|
7308
|
+
className?: string;
|
|
7309
|
+
};
|
|
7310
|
+
declare function AirbnbFieldHelperText({ id, helper, disabled, className, }: AirbnbFieldHelperTextProps): react_jsx_runtime.JSX.Element | null;
|
|
7311
|
+
|
|
7303
7312
|
type AirbnbFieldTriggerProps = {
|
|
7304
7313
|
as?: 'button' | 'div';
|
|
7305
7314
|
id: string;
|
|
@@ -7312,6 +7321,7 @@ type AirbnbFieldTriggerProps = {
|
|
|
7312
7321
|
labelText?: React$1.ReactNode;
|
|
7313
7322
|
valueText?: string;
|
|
7314
7323
|
placeholder?: string;
|
|
7324
|
+
helper?: React$1.ReactNode;
|
|
7315
7325
|
disabled?: boolean;
|
|
7316
7326
|
error?: boolean | string;
|
|
7317
7327
|
loading?: boolean;
|
|
@@ -7340,6 +7350,7 @@ declare const AirbnbFieldTrigger: React$1.ForwardRefExoticComponent<{
|
|
|
7340
7350
|
labelText?: React$1.ReactNode;
|
|
7341
7351
|
valueText?: string;
|
|
7342
7352
|
placeholder?: string;
|
|
7353
|
+
helper?: React$1.ReactNode;
|
|
7343
7354
|
disabled?: boolean;
|
|
7344
7355
|
error?: boolean | string;
|
|
7345
7356
|
loading?: boolean;
|
|
@@ -7361,6 +7372,7 @@ type AirbnbInputProps = React$1.InputHTMLAttributes<HTMLInputElement> & {
|
|
|
7361
7372
|
label?: string;
|
|
7362
7373
|
topLabel?: string;
|
|
7363
7374
|
helperText?: string;
|
|
7375
|
+
helper?: React$1.ReactNode;
|
|
7364
7376
|
error?: string;
|
|
7365
7377
|
invalid?: boolean;
|
|
7366
7378
|
loading?: boolean;
|
|
@@ -7377,6 +7389,7 @@ declare const AirbnbInput: React$1.ForwardRefExoticComponent<React$1.InputHTMLAt
|
|
|
7377
7389
|
label?: string;
|
|
7378
7390
|
topLabel?: string;
|
|
7379
7391
|
helperText?: string;
|
|
7392
|
+
helper?: React$1.ReactNode;
|
|
7380
7393
|
error?: string;
|
|
7381
7394
|
invalid?: boolean;
|
|
7382
7395
|
loading?: boolean;
|
|
@@ -7414,6 +7427,7 @@ type AirbnbPhoneFieldProps = {
|
|
|
7414
7427
|
loading?: boolean;
|
|
7415
7428
|
optional?: boolean | string;
|
|
7416
7429
|
tooltip?: React$1.ReactNode;
|
|
7430
|
+
helper?: React$1.ReactNode;
|
|
7417
7431
|
className?: string;
|
|
7418
7432
|
name?: string;
|
|
7419
7433
|
codeName?: string;
|
|
@@ -7425,7 +7439,7 @@ type AirbnbPhoneFieldProps = {
|
|
|
7425
7439
|
declare const AirbnbPhoneField: React$1.ForwardRefExoticComponent<AirbnbPhoneFieldProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
7426
7440
|
|
|
7427
7441
|
type SelectValue = string | number;
|
|
7428
|
-
type SelectRenderTriggerProps<T =
|
|
7442
|
+
type SelectRenderTriggerProps<T = unknown, V extends SelectValue = string, L extends string | number | React$1.ReactNode = string> = {
|
|
7429
7443
|
id: string;
|
|
7430
7444
|
open: boolean;
|
|
7431
7445
|
label: string;
|
|
@@ -7437,6 +7451,7 @@ type SelectRenderTriggerProps<T = undefined, V extends SelectValue = string, L e
|
|
|
7437
7451
|
loading?: boolean;
|
|
7438
7452
|
optional?: boolean | string;
|
|
7439
7453
|
tooltip?: React$1.ReactNode;
|
|
7454
|
+
helper?: React$1.ReactNode;
|
|
7440
7455
|
error?: string;
|
|
7441
7456
|
invalid?: boolean;
|
|
7442
7457
|
listboxId: string;
|
|
@@ -7446,7 +7461,7 @@ type SelectRenderTriggerProps<T = undefined, V extends SelectValue = string, L e
|
|
|
7446
7461
|
onKeyDown: React$1.KeyboardEventHandler<HTMLButtonElement>;
|
|
7447
7462
|
onBlur?: React$1.FocusEventHandler<HTMLButtonElement>;
|
|
7448
7463
|
};
|
|
7449
|
-
type AirbnbSelectProps<T =
|
|
7464
|
+
type AirbnbSelectProps<T = unknown, V extends SelectValue = string, L extends string | number | React$1.ReactNode = string> = {
|
|
7450
7465
|
options?: SelectOption<T, V, L>[];
|
|
7451
7466
|
value?: SelectOption<T, V, L> | null;
|
|
7452
7467
|
defaultValue?: SelectOption<T, V, L> | null;
|
|
@@ -7461,6 +7476,7 @@ type AirbnbSelectProps<T = undefined, V extends SelectValue = string, L extends
|
|
|
7461
7476
|
loading?: boolean;
|
|
7462
7477
|
optional?: boolean | string;
|
|
7463
7478
|
tooltip?: React$1.ReactNode;
|
|
7479
|
+
helper?: React$1.ReactNode;
|
|
7464
7480
|
error?: string;
|
|
7465
7481
|
invalid?: boolean;
|
|
7466
7482
|
hideErrorMessage?: boolean;
|
|
@@ -7474,12 +7490,12 @@ type AirbnbSelectProps<T = undefined, V extends SelectValue = string, L extends
|
|
|
7474
7490
|
filterOption?: (option: SelectOption<T, V, L>) => boolean;
|
|
7475
7491
|
};
|
|
7476
7492
|
|
|
7477
|
-
declare const AirbnbSelect: <T =
|
|
7493
|
+
declare const AirbnbSelect: <T = unknown, V extends SelectValue = string, L extends string | number | ReactNode = string>(props: AirbnbSelectProps<T, V, L> & {
|
|
7478
7494
|
ref?: React$1.Ref<HTMLButtonElement>;
|
|
7479
7495
|
}) => React$1.ReactElement;
|
|
7480
7496
|
|
|
7481
7497
|
type AirbnbSearchableSelectValue = string | number;
|
|
7482
|
-
type AirbnbSearchableSelectProps<T =
|
|
7498
|
+
type AirbnbSearchableSelectProps<T = unknown, V extends AirbnbSearchableSelectValue = string, L extends ReactNode = string> = {
|
|
7483
7499
|
options: SelectOption<T, V, L>[];
|
|
7484
7500
|
value?: SelectOption<T, V, L> | null;
|
|
7485
7501
|
onChange: (option: SelectOption<T, V, L>) => void;
|
|
@@ -7502,6 +7518,7 @@ type AirbnbSearchableSelectProps<T = undefined, V extends AirbnbSearchableSelect
|
|
|
7502
7518
|
invalid?: boolean;
|
|
7503
7519
|
optional?: boolean | string;
|
|
7504
7520
|
tooltip?: ReactNode;
|
|
7521
|
+
helper?: ReactNode;
|
|
7505
7522
|
hideErrorMessage?: boolean;
|
|
7506
7523
|
name?: string;
|
|
7507
7524
|
className?: string;
|
|
@@ -7511,11 +7528,12 @@ type AirbnbSearchableSelectProps<T = undefined, V extends AirbnbSearchableSelect
|
|
|
7511
7528
|
loadingMessage?: () => string | undefined;
|
|
7512
7529
|
};
|
|
7513
7530
|
|
|
7514
|
-
type AirbnbSearchableSelectComponent = <T =
|
|
7531
|
+
type AirbnbSearchableSelectComponent = <T = unknown, V extends AirbnbSearchableSelectValue = string, L extends ReactNode = string>(props: AirbnbSearchableSelectProps<T, V, L> & React$1.RefAttributes<HTMLButtonElement>) => React$1.ReactElement | null;
|
|
7515
7532
|
declare const AirbnbSearchableSelect: AirbnbSearchableSelectComponent;
|
|
7516
7533
|
|
|
7517
7534
|
type AirbnbSearchInputProps = ComponentProps<'input'> & {
|
|
7518
7535
|
onReset?: () => void;
|
|
7536
|
+
helper?: React$1.ReactNode;
|
|
7519
7537
|
wrapperClassName?: string;
|
|
7520
7538
|
};
|
|
7521
7539
|
declare const AirbnbSearchInput: React$1.ForwardRefExoticComponent<Omit<AirbnbSearchInputProps, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
|
|
@@ -7527,8 +7545,9 @@ interface AirbnbSwitchProps extends Omit<React$1.ComponentPropsWithoutRef<typeof
|
|
|
7527
7545
|
readOnly?: boolean;
|
|
7528
7546
|
label?: React$1.ReactNode;
|
|
7529
7547
|
error?: string;
|
|
7548
|
+
helper?: React$1.ReactNode;
|
|
7530
7549
|
wrapperClassName?: string;
|
|
7531
7550
|
}
|
|
7532
7551
|
declare const AirbnbSwitch: React$1.ForwardRefExoticComponent<AirbnbSwitchProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
7533
7552
|
|
|
7534
|
-
export { ALERT_BOX_VARIANTS, Accordion, AccordionContent, type AccordionContentProps, AccordionItem, AccordionTrigger, type AccordionTriggerProps, AirbnbDatePicker, type AirbnbDatePickerProps, type AirbnbDatePickerValue, AirbnbFieldTrigger, type AirbnbFieldTriggerProps, AirbnbInput, type AirbnbInputProps, AirbnbPhoneField, type AirbnbPhoneFieldOption, type AirbnbPhoneFieldProps, type AirbnbPhoneFieldValue, AirbnbSearchInput, AirbnbSearchableSelect, type AirbnbSearchableSelectProps, type AirbnbSearchableSelectValue, AirbnbSelect, type AirbnbSelectProps, AirbnbSwitch, type AirbnbSwitchProps, Alert, AlertBox, type AlertBoxProps, type AlertBoxVariant, AlertDescription, AlertSize, AlertSizes, AlertTitle, AlertType, AlertTypes, AudioPlayer, type AudioPlayerProps, Avatar, type AvatarProps, Badge, type BadgeProps, BaseCheckbox, type BaseCheckboxProps, type BaseSelectProps, BetaBadge, type BetaBadgeProps, BookmarkTabsList, type BookmarkTabsListProps, BookmarkTabsTrigger, type BookmarkTabsTriggerProps, BoxOptionSelector, type BoxOptionSelectorProps, type BoxOptionSelectorSwitchProps, Breadcrumb, type BreadcrumbProps, type BreadcrumbType, Breadcrumbs, type BreadcrumbsProps, Button, ButtonGroup, type ButtonGroupProps, ButtonGroupText, type ButtonGroupTextProps, type ButtonProps, type ButtonStatuses, ButtonsGroupLabel, type ButtonsGroupLabelProps, Calendar, type CalendarProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, CarouselNext, CarouselPrevious, type CarouselProps, CarouselRoot, type CarouselRootProps, CarouselSlide, CarouselTrack, CarouselViewport, CheckList, type CheckListProps, Checkbox, CheckboxDropdownGroup, type CheckboxDropdownGroupConfig, type CheckboxDropdownGroupProps, CheckboxDropdownMultiGroup, CheckboxGroup, type CheckboxGroupProps, type CheckboxOption, type CheckboxProps, type CheckboxSize, CircularLoader, Collapsible, CollapsibleContent, CollapsibleTrigger, CommingSoonBadge, type CommingSoonBadgeProps, ConfirmationDialog, type ConfirmationDialogProps, CopyIcon, type CopyIconProps, CopyInput, type CopyInputProps, CopyLinkButton, type CopyLinkButtonProps, CopyString, type CopyStringProps, Counter, type CounterProps, CounterSize, CreatableMultiSelect, type CreatableMultiSelectProps, CreatableSelect, type CreatableSelectProps, CustomCheckboxDropdownGroup, type CustomIconEntry, DEFAULT_DISPLAY_FORMAT, DEVICE_BREAKPOINTS, DataTable, type DataTableProps, DateRangePicker, type DateRangePickerImperativeProps, type OpenDirection as DateRangePickerOpenDirection, type DateRangePickerProps, DateTableFilter, Datepicker, type DatepickerDate, type DatepickerHandle, type DatepickerProps, type DatepickerSubfield, DebouncedSearchInput, type DebouncedSearchInputProps, DefaultSelectTrigger, type DefaultSelectTriggerProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DialogVisuallyHidden, DividingSubsection, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownButton, type DropdownButtonProps, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, type DropdownMenuContentSide, DropdownMenuGroup, DropdownMenuItem, DropdownMenuItemContent, type DropdownMenuItemContentProps, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptySectionPlaceholder, type EmptySectionPlaceholderProps, EmptyTitle, ErrorMessage, type ErrorMessageProps, ExpandableContent, type ExpandableContentProps, type ExpandableContentTrigger, ExternalLink, type ExternalLinkProps, FieldErrorMessage, type FieldErrorMessageProps, FileInput, FileInputButton, type FileInputButtonProps, type FileInputProps, type FileInputValue, FormBox, Content as FormBoxContent, type FormBoxContentProps, Header as FormBoxHeader, type FormBoxHeaderProps, Root$1 as FormBoxRoot, type FormBoxRootProps, SubHeader as FormBoxSubHeader, type FormBoxSubHeaderProps, FramedIcon, type FramedIconProps, HALO_ICON_STATUS, HaloIcon, type HaloIconProps, HelpTooltip, type HelpTooltipProps, IconButton, type IconButtonProps, type IconEntry, IconsDropdown, type IconsDropdownProps, Image, ImageFullScreenView, type ImageFullScreenViewProps, type ImageProps, InfiniteScrollMultiSelect, type InfiniteScrollMultiSelectProps, InfiniteScrollSelect, type InfiniteScrollSelectProps, InfoBox, type InfoBoxProps, Input, InputOTP, InputOTPGroup, type InputOTPProps, InputOTPSeparator, InputOTPSlot, type InputProps, Label, type LabelProps, LargeModal, type LargeModalProps, LearnMoreButton, type LearnMoreButtonProps, LegacyInfinitySelect, type LegacyInfinitySelectProps, LegacyInput, type LegacyInputProps, LegacyMultiSelect, type LegacyMultiSelectProps, LegacySelect, LegacySelectContent, LegacySelectGroup, LegacySelectItem, LegacySelectLabel, LegacySelectPortal, type LegacySelectProps, LegacySelectRoot, LegacySelectScrollDownButton, LegacySelectScrollUpButton, LegacySelectSeparator, type LegacySelectSize, LegacySelectTrigger, LegacySelectValue, LegacyTextarea, type LegacyTextareaProps, Link, type LinkProps, LoadingBar, type LoadingBarProps, type LucideIconEntry, type MobileCameraProps, type MobileScreenshotPayload, MobileWebcam, Modal, ModalButton, ModalLoader, type ModalLoaderProps, type ModalProps, MultiSelect, type MultiSelectProps, NumberedList, type NumberedListProps, type OptionsCardsProps, OverlayLoader, type OverlayLoaderProps, Pagination, type PaginationProps, type PaginationVariant, PhoneInput, type PhoneInputHandle, type PhoneInputOption, type PhoneInputProps, type PhoneInputSubfield, type PhoneInputValue, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, PopoverTrigger, PopoverWithTooltip, type PopoverWithTooltipProps, Radio, type RadioCardOption, MemoizedRadioCardsGroup as RadioCardsGroup, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioOption, type RadioProps, type RadioSize, RadioWithBorder, RatingProgress, type RatingProgressProps, RatingRadioGroup, type RatingRadioGroupProps, RatingStars, type RatingStarsProps, type RegisterUiKitI18nOptions, ResponsiveDropdown, type ResponsiveDropdownOption, type ResponsiveDropdownProps, ResponsiveSheet, type ResponsiveSheetProps, RotateArrow, type RotateArrowProps, ScrollArea, type ScrollAreaProps, ScrollBar, type ScrollBarProps, type ScrollableAreaState, SearchButton, type SearchButtonProps, SearchInput, type SearchInputProps, Section, SectionGroup, type SectionGroupItemProps, type SectionGroupLabelProps, type SectionGroupProps, type SectionProps, SectionTag, SectionTagColors, type SectionTagProps, Select, SelectAllRow, type SelectAllRowProps, SelectCheckboxOption, SelectCheckboxes, type SelectCheckboxesProps, type SelectCheckboxesTriggerRenderer, type SelectFormatGroupLabel, type SelectGroupedOption, SelectIconsBox, type SelectIconsBoxProps, type MultiSelectModeProps as SelectMultiProps, type SelectOption, type SelectOptionGroup, type SelectProps, type SelectorOption, Separator, type SeparatorProps, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarIcon, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, SignatureCanvas, type SignatureCanvasRef, type SingleSelectProps, Skeleton, type SkeletonProps, Slider, SmallGridSingleItem, type SmallGridSingleItemProps, SortingAction, type SortingActionProps, type SortingActionValue, type SortingByVariant, StatusBadge, type StatusBadgeProps, type StatusBadgeVariant, StatusBox, type StatusBoxProps, StatusButton, type StatusButtonProps, Stepper, type StepperProps, SubSection, SubSectionSize, SvgIcon, type SvgIconProps, type SvgIconSize, Switch, SwitchBlocks, type SwitchBlocksOption, type SwitchBlocksProps, SwitchGroup, type SwitchGroupProps, type SwitchOption, type SwitchProps, TabbedSection, type TabbedSectionProps, Table, TableBody, TableCaption, TableCell, TableFilter, type TableFilterProps, TableFooter, TableHead, TableHeader, TableLoader, type TableLoaderProps, type TableLoaderRootProps, TablePlaceholder, type TablePlaceholderProps, TableRow, Tabs, TabsContent, TabsList, type TabsListProps, TabsTrigger, type TabsTriggerProps, Textarea, type TextareaProps, ThreeDotsLoader, type ThreeDotsLoaderProps, TimePicker, type TimePickerFormat, type TimePickerProps, type TimeSettings, Timeline, TimelineConnector, type TimelineConnectorProps, TimelineContent, type TimelineContentProps, type TimelineContextProps, TimelineDescription, type TimelineDescriptionProps, TimelineDot, type TimelineDotProps, TimelineItem, type TimelineItemProps, type TimelineProps, TimelineSeparator, type TimelineSeparatorProps, TimelineTitle, type TimelineTitleProps, ToggleGroup, ToggleGroupItem, Toggles, type TogglesForwardType, type TogglesProps, Tooltip, TooltipContent, type TooltipContentProps, type TooltipProps, TooltipProvider, TooltipRoot, type TooltipRootProps, TooltipRootWrapper, TooltipTrigger, UI_KIT_I18N_NAMESPACE, UI_KIT_LANGUAGE_FALLBACKS, type UiKitLocale, UploadedFilesList, type UploadedFilesListProps, type UseScrollableAreaOptions, type UseScrollableAreaResult, VerticalTabs, type VerticalTabsProps, type VerticalTabsStep, type VideoConstraints, VideoModal, type VideoModalProps, VideoPlayer, type VideoPlayerProps, VisualCheckbox, type VisualCheckboxProps, Webcam, type WebcamProps, type WebcamRefTypes, WideButton, type WideButtonProps, addSupportEmailToMessage, badgeVariants, bookmarkTabsListVariants, bookmarkTabsTriggerVariants, buttonGroupVariants, buttonVariants, calendarClassNames, clearPhoneNumber, cn, compressFile, compressImage, copyToClipboard, countriesFilter, createDisabledMatchers, emptyMediaVariants, findPhoneCode, findPhoneCodeOption, formatDate, formatPhoneCodeOptionLabel, getErrorMessage, getFileSizeMB, getScrollableAreaState, getSidebarState, isDayBlocked, isNumeric, labelVariants, parseDate, parsePhoneValueWithOptions, registerUiKitI18n, scrollToTop, sectionTagVariants, switchThumbVariants, switchVariants, tabsListVariants, tabsTriggerVariants, toCssSize, toastResponseError, toggleVariants, uiKitI18nResources, uiKitTranslations, useAbortController, useAccordionState, useCarouselContext, useClickEscape, useCombinedRef, useCopyToClipboard, useCountdown, useDebounce, useDebouncedFunction, useEvent, useHover, useIframeFocusTrapFallback, useIsFormTouched, useIsMobile, useIsMounted, useKeyDown, useLoadMore, useLockBodyScroll, useModalControls, useModalWithHistoryControls, useOutsideClick, usePagination, usePrevious, usePromisedModalControls, useRadioOptions, useResetAfterRequestStatus, useScreenResize, useScrollFrameIntoView, useScrollToTop, useScrollableArea, useSearchInput, useSidebar, useSidebarMenuButton, useSidebarSafe, useStickyStuck, useSwitchSectionActive, useTimeline, useTimeout, useTimeoutRef, useUpdateToast, useValidateDates };
|
|
7553
|
+
export { ALERT_BOX_VARIANTS, Accordion, AccordionContent, type AccordionContentProps, AccordionItem, AccordionTrigger, type AccordionTriggerProps, AirbnbDatePicker, type AirbnbDatePickerProps, type AirbnbDatePickerValue, AirbnbFieldHelperText, type AirbnbFieldHelperTextProps, AirbnbFieldTrigger, type AirbnbFieldTriggerProps, AirbnbInput, type AirbnbInputProps, AirbnbPhoneField, type AirbnbPhoneFieldOption, type AirbnbPhoneFieldProps, type AirbnbPhoneFieldValue, AirbnbSearchInput, AirbnbSearchableSelect, type AirbnbSearchableSelectProps, type AirbnbSearchableSelectValue, AirbnbSelect, type AirbnbSelectProps, AirbnbSwitch, type AirbnbSwitchProps, Alert, AlertBox, type AlertBoxProps, type AlertBoxVariant, AlertDescription, AlertSize, AlertSizes, AlertTitle, AlertType, AlertTypes, AudioPlayer, type AudioPlayerProps, Avatar, type AvatarProps, Badge, type BadgeProps, BaseCheckbox, type BaseCheckboxProps, type BaseSelectProps, BetaBadge, type BetaBadgeProps, BookmarkTabsList, type BookmarkTabsListProps, BookmarkTabsTrigger, type BookmarkTabsTriggerProps, BoxOptionSelector, type BoxOptionSelectorProps, type BoxOptionSelectorSwitchProps, Breadcrumb, type BreadcrumbProps, type BreadcrumbType, Breadcrumbs, type BreadcrumbsProps, Button, ButtonGroup, type ButtonGroupProps, ButtonGroupText, type ButtonGroupTextProps, type ButtonProps, type ButtonStatuses, ButtonsGroupLabel, type ButtonsGroupLabelProps, Calendar, type CalendarProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, CarouselNext, CarouselPrevious, type CarouselProps, CarouselRoot, type CarouselRootProps, CarouselSlide, CarouselTrack, CarouselViewport, CheckList, type CheckListProps, Checkbox, CheckboxDropdownGroup, type CheckboxDropdownGroupConfig, type CheckboxDropdownGroupProps, CheckboxDropdownMultiGroup, CheckboxGroup, type CheckboxGroupProps, type CheckboxOption, type CheckboxProps, type CheckboxSize, CircularLoader, Collapsible, CollapsibleContent, CollapsibleTrigger, CommingSoonBadge, type CommingSoonBadgeProps, ConfirmationDialog, type ConfirmationDialogProps, CopyIcon, type CopyIconProps, CopyInput, type CopyInputProps, CopyLinkButton, type CopyLinkButtonProps, CopyString, type CopyStringProps, Counter, type CounterProps, CounterSize, CreatableMultiSelect, type CreatableMultiSelectProps, CreatableSelect, type CreatableSelectProps, CustomCheckboxDropdownGroup, type CustomIconEntry, DEFAULT_DISPLAY_FORMAT, DEVICE_BREAKPOINTS, DataTable, type DataTableProps, DateRangePicker, type DateRangePickerImperativeProps, type OpenDirection as DateRangePickerOpenDirection, type DateRangePickerProps, DateTableFilter, Datepicker, type DatepickerDate, type DatepickerHandle, type DatepickerProps, type DatepickerSubfield, DebouncedSearchInput, type DebouncedSearchInputProps, DefaultSelectTrigger, type DefaultSelectTriggerProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DialogVisuallyHidden, DividingSubsection, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownButton, type DropdownButtonProps, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, type DropdownMenuContentSide, DropdownMenuGroup, DropdownMenuItem, DropdownMenuItemContent, type DropdownMenuItemContentProps, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptySectionPlaceholder, type EmptySectionPlaceholderProps, EmptyTitle, ErrorMessage, type ErrorMessageProps, ExpandableContent, type ExpandableContentProps, type ExpandableContentTrigger, ExternalLink, type ExternalLinkProps, FieldErrorMessage, type FieldErrorMessageProps, FileInput, FileInputButton, type FileInputButtonProps, type FileInputProps, type FileInputValue, FormBox, Content as FormBoxContent, type FormBoxContentProps, Header as FormBoxHeader, type FormBoxHeaderProps, Root$1 as FormBoxRoot, type FormBoxRootProps, SubHeader as FormBoxSubHeader, type FormBoxSubHeaderProps, FramedIcon, type FramedIconProps, HALO_ICON_STATUS, HaloIcon, type HaloIconProps, HelpTooltip, type HelpTooltipProps, IconButton, type IconButtonProps, type IconEntry, IconsDropdown, type IconsDropdownProps, Image, ImageFullScreenView, type ImageFullScreenViewProps, type ImageProps, InfiniteScrollMultiSelect, type InfiniteScrollMultiSelectProps, InfiniteScrollSelect, type InfiniteScrollSelectProps, InfoBox, type InfoBoxProps, Input, InputOTP, InputOTPGroup, type InputOTPProps, InputOTPSeparator, InputOTPSlot, type InputProps, Label, type LabelProps, LargeModal, type LargeModalProps, LearnMoreButton, type LearnMoreButtonProps, LegacyInfinitySelect, type LegacyInfinitySelectProps, LegacyInput, type LegacyInputProps, LegacyMultiSelect, type LegacyMultiSelectProps, LegacySelect, LegacySelectContent, LegacySelectGroup, LegacySelectItem, LegacySelectLabel, LegacySelectPortal, type LegacySelectProps, LegacySelectRoot, LegacySelectScrollDownButton, LegacySelectScrollUpButton, LegacySelectSeparator, type LegacySelectSize, LegacySelectTrigger, LegacySelectValue, LegacyTextarea, type LegacyTextareaProps, Link, type LinkProps, LoadingBar, type LoadingBarProps, type LucideIconEntry, type MobileCameraProps, type MobileScreenshotPayload, MobileWebcam, Modal, ModalButton, ModalLoader, type ModalLoaderProps, type ModalProps, MultiSelect, type MultiSelectProps, NumberedList, type NumberedListProps, type OptionsCardsProps, OverlayLoader, type OverlayLoaderProps, Pagination, type PaginationProps, type PaginationVariant, PhoneInput, type PhoneInputHandle, type PhoneInputOption, type PhoneInputProps, type PhoneInputSubfield, type PhoneInputValue, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, PopoverTrigger, PopoverWithTooltip, type PopoverWithTooltipProps, Radio, type RadioCardOption, MemoizedRadioCardsGroup as RadioCardsGroup, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioOption, type RadioProps, type RadioSize, RadioWithBorder, RatingProgress, type RatingProgressProps, RatingRadioGroup, type RatingRadioGroupProps, RatingStars, type RatingStarsProps, type RegisterUiKitI18nOptions, ResponsiveDropdown, type ResponsiveDropdownOption, type ResponsiveDropdownProps, ResponsiveSheet, type ResponsiveSheetProps, RotateArrow, type RotateArrowProps, ScrollArea, type ScrollAreaProps, ScrollBar, type ScrollBarProps, type ScrollableAreaState, SearchButton, type SearchButtonProps, SearchInput, type SearchInputProps, Section, SectionGroup, type SectionGroupItemProps, type SectionGroupLabelProps, type SectionGroupProps, type SectionProps, SectionTag, SectionTagColors, type SectionTagProps, Select, SelectAllRow, type SelectAllRowProps, SelectCheckboxOption, SelectCheckboxes, type SelectCheckboxesProps, type SelectCheckboxesTriggerRenderer, type SelectFormatGroupLabel, type SelectGroupedOption, SelectIconsBox, type SelectIconsBoxProps, type MultiSelectModeProps as SelectMultiProps, type SelectOption, type SelectOptionGroup, type SelectProps, type SelectorOption, Separator, type SeparatorProps, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarIcon, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, SignatureCanvas, type SignatureCanvasRef, type SingleSelectProps, Skeleton, type SkeletonProps, Slider, SmallGridSingleItem, type SmallGridSingleItemProps, SortingAction, type SortingActionProps, type SortingActionValue, type SortingByVariant, StatusBadge, type StatusBadgeProps, type StatusBadgeVariant, StatusBox, type StatusBoxProps, StatusButton, type StatusButtonProps, Stepper, type StepperProps, SubSection, SubSectionSize, SvgIcon, type SvgIconProps, type SvgIconSize, Switch, SwitchBlocks, type SwitchBlocksOption, type SwitchBlocksProps, SwitchGroup, type SwitchGroupProps, type SwitchOption, type SwitchProps, TabbedSection, type TabbedSectionProps, Table, TableBody, TableCaption, TableCell, TableFilter, type TableFilterProps, TableFooter, TableHead, TableHeader, TableLoader, type TableLoaderProps, type TableLoaderRootProps, TablePlaceholder, type TablePlaceholderProps, TableRow, Tabs, TabsContent, TabsList, type TabsListProps, TabsTrigger, type TabsTriggerProps, Textarea, type TextareaProps, ThreeDotsLoader, type ThreeDotsLoaderProps, TimePicker, type TimePickerFormat, type TimePickerProps, type TimeSettings, Timeline, TimelineConnector, type TimelineConnectorProps, TimelineContent, type TimelineContentProps, type TimelineContextProps, TimelineDescription, type TimelineDescriptionProps, TimelineDot, type TimelineDotProps, TimelineItem, type TimelineItemProps, type TimelineProps, TimelineSeparator, type TimelineSeparatorProps, TimelineTitle, type TimelineTitleProps, ToggleGroup, ToggleGroupItem, Toggles, type TogglesForwardType, type TogglesProps, Tooltip, TooltipContent, type TooltipContentProps, type TooltipProps, TooltipProvider, TooltipRoot, type TooltipRootProps, TooltipRootWrapper, TooltipTrigger, UI_KIT_I18N_NAMESPACE, UI_KIT_LANGUAGE_FALLBACKS, type UiKitLocale, UploadedFilesList, type UploadedFilesListProps, type UseScrollableAreaOptions, type UseScrollableAreaResult, VerticalTabs, type VerticalTabsProps, type VerticalTabsStep, type VideoConstraints, VideoModal, type VideoModalProps, VideoPlayer, type VideoPlayerProps, VisualCheckbox, type VisualCheckboxProps, Webcam, type WebcamProps, type WebcamRefTypes, WideButton, type WideButtonProps, addSupportEmailToMessage, badgeVariants, bookmarkTabsListVariants, bookmarkTabsTriggerVariants, buttonGroupVariants, buttonVariants, calendarClassNames, clearPhoneNumber, cn, compressFile, compressImage, copyToClipboard, countriesFilter, createDisabledMatchers, emptyMediaVariants, findPhoneCode, findPhoneCodeOption, formatDate, formatPhoneCodeOptionLabel, getErrorMessage, getFileSizeMB, getScrollableAreaState, getSidebarState, isDayBlocked, isNumeric, labelVariants, parseDate, parsePhoneValueWithOptions, registerUiKitI18n, scrollToTop, sectionTagVariants, switchThumbVariants, switchVariants, tabsListVariants, tabsTriggerVariants, toCssSize, toastResponseError, toggleVariants, uiKitI18nResources, uiKitTranslations, useAbortController, useAccordionState, useCarouselContext, useClickEscape, useCombinedRef, useCopyToClipboard, useCountdown, useDebounce, useDebouncedFunction, useEvent, useHover, useIframeFocusTrapFallback, useIsFormTouched, useIsMobile, useIsMounted, useKeyDown, useLoadMore, useLockBodyScroll, useModalControls, useModalWithHistoryControls, useOutsideClick, usePagination, usePrevious, usePromisedModalControls, useRadioOptions, useResetAfterRequestStatus, useScreenResize, useScrollFrameIntoView, useScrollToTop, useScrollableArea, useSearchInput, useSidebar, useSidebarMenuButton, useSidebarSafe, useStickyStuck, useSwitchSectionActive, useTimeline, useTimeout, useTimeoutRef, useUpdateToast, useValidateDates };
|