@wistia/ui 0.22.7 → 0.22.9-beta.014159f2.bdc0210
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.d.ts +281 -51
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +585 -354
- package/dist/index.js.map +1 -1
- package/package.json +25 -24
package/dist/index.d.ts
CHANGED
|
@@ -5,16 +5,10 @@ import * as _$styled_components0 from "styled-components";
|
|
|
5
5
|
import { css } from "styled-components";
|
|
6
6
|
import * as _$react_jsx_runtime0 from "react/jsx-runtime";
|
|
7
7
|
import { FileAmountLimitValidator, FileSizeValidator, FileTypeValidator, ImageDimensionsValidator, PersistentFileAmountLimitValidator } from "use-file-picker/validators";
|
|
8
|
-
import { CollapsibleContentProps } from "@radix-ui/react-collapsible";
|
|
9
8
|
import { Color } from "culori/fn";
|
|
10
|
-
import { ToggleGroupSingleProps } from "@radix-ui/react-toggle-group";
|
|
11
|
-
import { PopoverContentProps } from "@radix-ui/react-popover";
|
|
12
9
|
import * as Ariakit from "@ariakit/react";
|
|
13
|
-
import { DropdownMenuCheckboxItemProps, DropdownMenuContentProps, DropdownMenuItemProps, DropdownMenuRadioGroupProps, DropdownMenuRadioItemProps } from "@radix-ui/react-dropdown-menu";
|
|
14
10
|
import { Schema } from "yup";
|
|
15
|
-
import { HoverCardContentProps } from "@radix-ui/react-hover-card";
|
|
16
11
|
import ReactMarkdown from "react-markdown";
|
|
17
|
-
import { TabsContentProps, TabsListProps, TabsProps, TabsTriggerProps } from "@radix-ui/react-tabs";
|
|
18
12
|
import { ExtractContentTypeFromConfig, FilePickerReturnTypes, ImperativeFilePickerReturnTypes, UseFilePickerConfig, useImperativeFilePickerConfig } from "use-file-picker/types";
|
|
19
13
|
export * from "use-file-picker/types";
|
|
20
14
|
|
|
@@ -615,7 +609,7 @@ declare const ActionButton: _$react.ForwardRefExoticComponent<(Omit<{
|
|
|
615
609
|
* Changes the secondary icon for different use cases
|
|
616
610
|
*/
|
|
617
611
|
variant?: "default" | "gated" | "menu-down" | "menu-up";
|
|
618
|
-
} & Omit<ButtonAsButtonProps, "
|
|
612
|
+
} & Omit<ButtonAsButtonProps, "fullWidth" | "isLoading" | "leftIcon" | "rightIcon" | "size" | "unstyled" | "variant">, "ref"> | Omit<{
|
|
619
613
|
/**
|
|
620
614
|
* @override
|
|
621
615
|
* The text to display for the ActionButton
|
|
@@ -644,7 +638,7 @@ declare const ActionButton: _$react.ForwardRefExoticComponent<(Omit<{
|
|
|
644
638
|
* Changes the secondary icon for different use cases
|
|
645
639
|
*/
|
|
646
640
|
variant?: "default" | "gated" | "menu-down" | "menu-up";
|
|
647
|
-
} & Omit<ButtonAsLinkProps, "
|
|
641
|
+
} & Omit<ButtonAsLinkProps, "fullWidth" | "isLoading" | "leftIcon" | "rightIcon" | "size" | "unstyled" | "variant">, "ref">) & _$react.RefAttributes<HTMLAnchorElement | HTMLButtonElement>>;
|
|
648
642
|
//#endregion
|
|
649
643
|
//#region src/components/Avatar/Avatar.d.ts
|
|
650
644
|
type AvatarInstanceType = 'image' | 'initials';
|
|
@@ -1230,7 +1224,7 @@ declare const Center: _$react.ForwardRefExoticComponent<Omit<_$react.DetailedHTM
|
|
|
1230
1224
|
//#endregion
|
|
1231
1225
|
//#region src/components/Checkbox/Checkbox.d.ts
|
|
1232
1226
|
type CheckboxSizeType = 'lg' | 'md' | 'sm';
|
|
1233
|
-
declare const Checkbox: _$react.ForwardRefExoticComponent<Omit<Omit<_$react.DetailedHTMLProps<_$react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref">, "label" | "
|
|
1227
|
+
declare const Checkbox: _$react.ForwardRefExoticComponent<Omit<Omit<_$react.DetailedHTMLProps<_$react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref">, "label" | "size" | "onChange" | "hideLabel"> & {
|
|
1234
1228
|
/**
|
|
1235
1229
|
* Indicates the state of the checkbox
|
|
1236
1230
|
*/
|
|
@@ -1339,7 +1333,7 @@ type CollapsibleTriggerProps = {
|
|
|
1339
1333
|
* A trigger element that will toggle the collapsible content.
|
|
1340
1334
|
* Usually a [Button](?path=/docs/components-button--docs).
|
|
1341
1335
|
*/
|
|
1342
|
-
children:
|
|
1336
|
+
children: ReactElement;
|
|
1343
1337
|
};
|
|
1344
1338
|
declare const CollapsibleTrigger: ({
|
|
1345
1339
|
children
|
|
@@ -1637,7 +1631,7 @@ declare const CollapsibleTriggerIcon: {
|
|
|
1637
1631
|
};
|
|
1638
1632
|
//#endregion
|
|
1639
1633
|
//#region src/components/Collapsible/CollapsibleContent.d.ts
|
|
1640
|
-
type CollapsibleContentProps
|
|
1634
|
+
type CollapsibleContentProps = {
|
|
1641
1635
|
/**
|
|
1642
1636
|
* The number of lines to clamp the content to when `Collapsible` is closed.
|
|
1643
1637
|
*/
|
|
@@ -1645,12 +1639,12 @@ type CollapsibleContentProps$1 = {
|
|
|
1645
1639
|
/**
|
|
1646
1640
|
* The content that will be hidden when `Collapsible` is closed.
|
|
1647
1641
|
*/
|
|
1648
|
-
children:
|
|
1642
|
+
children: ReactNode;
|
|
1649
1643
|
};
|
|
1650
1644
|
declare const CollapsibleContent: ({
|
|
1651
1645
|
clamp,
|
|
1652
1646
|
children
|
|
1653
|
-
}: CollapsibleContentProps
|
|
1647
|
+
}: CollapsibleContentProps) => _$react_jsx_runtime0.JSX.Element;
|
|
1654
1648
|
//#endregion
|
|
1655
1649
|
//#region src/components/ColorPicker/ColorGrid.d.ts
|
|
1656
1650
|
type ColorGridProps = PropsWithChildren & {
|
|
@@ -3094,8 +3088,7 @@ type GridProps = ComponentPropsWithoutRef<'div'> & {
|
|
|
3094
3088
|
declare const Grid: (<C extends ElementType = "div">(props: PolymorphicComponentProps<C, GridProps>) => _$react.ReactElement | null) & UnknownRecord;
|
|
3095
3089
|
//#endregion
|
|
3096
3090
|
//#region src/components/PreviewCard/PreviewCard.d.ts
|
|
3097
|
-
type
|
|
3098
|
-
type PreviewCardProps = ContentProps$1 & {
|
|
3091
|
+
type PreviewCardProps = {
|
|
3099
3092
|
/**
|
|
3100
3093
|
* The content of the preview card
|
|
3101
3094
|
*/
|
|
@@ -3112,7 +3105,7 @@ type PreviewCardProps = ContentProps$1 & {
|
|
|
3112
3105
|
* The [Link](?path=/docs/components-link--docs) that opens the preview card when hovered.
|
|
3113
3106
|
* Preview cards should only be used on links—do not use on non-interactive elements (e.g. buttons or plain text).
|
|
3114
3107
|
*/
|
|
3115
|
-
trigger:
|
|
3108
|
+
trigger: ReactElement;
|
|
3116
3109
|
/**
|
|
3117
3110
|
* If true, the preview card will use the unstyled Content component instead of StyledContent
|
|
3118
3111
|
*/
|
|
@@ -3135,6 +3128,14 @@ type PreviewCardProps = ContentProps$1 & {
|
|
|
3135
3128
|
* Force the preview card to be open without user interaction (for debugging and CI)
|
|
3136
3129
|
*/
|
|
3137
3130
|
forceOpen?: boolean;
|
|
3131
|
+
/**
|
|
3132
|
+
* The preferred side of the trigger to render on
|
|
3133
|
+
*/
|
|
3134
|
+
side?: 'bottom' | 'left' | 'right' | 'top';
|
|
3135
|
+
/**
|
|
3136
|
+
* The preferred alignment against the trigger
|
|
3137
|
+
*/
|
|
3138
|
+
align?: 'center' | 'end' | 'start';
|
|
3138
3139
|
};
|
|
3139
3140
|
/**
|
|
3140
3141
|
* Preview cards reveal content on hover. **Everything in the card must also exist at the destination**—never put information only in the preview. This pattern is for sighted-only, so treat the card as a preview, not a source of truth.
|
|
@@ -3151,6 +3152,8 @@ declare const PreviewCard: {
|
|
|
3151
3152
|
closeDelay,
|
|
3152
3153
|
colorScheme,
|
|
3153
3154
|
forceOpen,
|
|
3155
|
+
side,
|
|
3156
|
+
align,
|
|
3154
3157
|
...props
|
|
3155
3158
|
}: PreviewCardProps): JSX.Element;
|
|
3156
3159
|
displayName: string;
|
|
@@ -3269,7 +3272,7 @@ type InputClickToCopyProps = Omit<InputProps, 'autoSelect' | 'disabled' | 'right
|
|
|
3269
3272
|
/**
|
|
3270
3273
|
* Provides a readonly input that copies the text to the clipboard when clicked.
|
|
3271
3274
|
*/
|
|
3272
|
-
declare const InputClickToCopy: _$react.ForwardRefExoticComponent<Omit<InputProps, "
|
|
3275
|
+
declare const InputClickToCopy: _$react.ForwardRefExoticComponent<Omit<InputProps, "rightIcon" | "disabled" | "type" | "value" | "autoSelect"> & {
|
|
3273
3276
|
/**
|
|
3274
3277
|
* When disabled, the copy action will not be triggered
|
|
3275
3278
|
*/
|
|
@@ -3298,7 +3301,7 @@ type InputPasswordProps = Omit<InputProps, 'leftIcon' | 'monospace' | 'rightIcon
|
|
|
3298
3301
|
/**
|
|
3299
3302
|
* A password input component with a toggle button to show or hide the password text.
|
|
3300
3303
|
*/
|
|
3301
|
-
declare const InputPassword: _$react.ForwardRefExoticComponent<Omit<InputProps, "
|
|
3304
|
+
declare const InputPassword: _$react.ForwardRefExoticComponent<Omit<InputProps, "leftIcon" | "rightIcon" | "type" | "monospace"> & {
|
|
3302
3305
|
/**
|
|
3303
3306
|
* Set the disabled state of the input
|
|
3304
3307
|
*/
|
|
@@ -3479,10 +3482,6 @@ type MenuProps = MenuControlProps & {
|
|
|
3479
3482
|
* The label for the trigger element, this is ignored if `trigger` is defined
|
|
3480
3483
|
*/
|
|
3481
3484
|
label?: string;
|
|
3482
|
-
/**
|
|
3483
|
-
* Callback for when the user clicks or focuses outside of the menu
|
|
3484
|
-
*/
|
|
3485
|
-
onInteractOutside?: DropdownMenuContentProps['onInteractOutside'];
|
|
3486
3485
|
/**
|
|
3487
3486
|
* The side the menu appears on, relative to the trigger
|
|
3488
3487
|
*/
|
|
@@ -3604,7 +3603,7 @@ type MenuItemButtonProps = ButtonProps & {
|
|
|
3604
3603
|
};
|
|
3605
3604
|
//#endregion
|
|
3606
3605
|
//#region src/components/Menu/MenuItem.d.ts
|
|
3607
|
-
declare const MenuItem: _$react.ForwardRefExoticComponent<(Omit<
|
|
3606
|
+
declare const MenuItem: _$react.ForwardRefExoticComponent<(Omit<BaseButtonProps & _$react.ClassAttributes<HTMLButtonElement> & _$react.ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
3608
3607
|
href?: never;
|
|
3609
3608
|
type?: "button" | "reset" | "submit";
|
|
3610
3609
|
children: _$react.ReactNode;
|
|
@@ -3626,7 +3625,16 @@ declare const MenuItem: _$react.ForwardRefExoticComponent<(Omit<DropdownMenuItem
|
|
|
3626
3625
|
* Treats the menu item as a link when provided
|
|
3627
3626
|
*/
|
|
3628
3627
|
href?: MenuItemButtonProps["href"];
|
|
3629
|
-
|
|
3628
|
+
/**
|
|
3629
|
+
* Whether the menu should close when this item is clicked
|
|
3630
|
+
* @default true
|
|
3631
|
+
*/
|
|
3632
|
+
closeOnClick?: boolean;
|
|
3633
|
+
/**
|
|
3634
|
+
* Callback when the item is selected
|
|
3635
|
+
*/
|
|
3636
|
+
onSelect?: (event: SyntheticEvent) => void;
|
|
3637
|
+
}, "ref"> | Omit<BaseButtonProps & _$react.ClassAttributes<HTMLAnchorElement> & _$react.AnchorHTMLAttributes<HTMLAnchorElement> & {
|
|
3630
3638
|
beforeAction?: (() => Promise<void>) | (() => void);
|
|
3631
3639
|
children: _$react.ReactNode;
|
|
3632
3640
|
colorScheme?: ColorSchemeTypes;
|
|
@@ -3662,7 +3670,16 @@ declare const MenuItem: _$react.ForwardRefExoticComponent<(Omit<DropdownMenuItem
|
|
|
3662
3670
|
* Treats the menu item as a link when provided
|
|
3663
3671
|
*/
|
|
3664
3672
|
href?: MenuItemButtonProps["href"];
|
|
3665
|
-
|
|
3673
|
+
/**
|
|
3674
|
+
* Whether the menu should close when this item is clicked
|
|
3675
|
+
* @default true
|
|
3676
|
+
*/
|
|
3677
|
+
closeOnClick?: boolean;
|
|
3678
|
+
/**
|
|
3679
|
+
* Callback when the item is selected
|
|
3680
|
+
*/
|
|
3681
|
+
onSelect?: (event: SyntheticEvent) => void;
|
|
3682
|
+
}, "ref"> | Omit<BaseButtonProps & _$react.ClassAttributes<HTMLAnchorElement> & _$react.AnchorHTMLAttributes<HTMLAnchorElement> & {
|
|
3666
3683
|
beforeAction?: (() => Promise<void>) | (() => void);
|
|
3667
3684
|
children: _$react.ReactNode;
|
|
3668
3685
|
colorScheme?: ColorSchemeTypes;
|
|
@@ -3704,6 +3721,15 @@ declare const MenuItem: _$react.ForwardRefExoticComponent<(Omit<DropdownMenuItem
|
|
|
3704
3721
|
* Treats the menu item as a link when provided
|
|
3705
3722
|
*/
|
|
3706
3723
|
href?: MenuItemButtonProps["href"];
|
|
3724
|
+
/**
|
|
3725
|
+
* Whether the menu should close when this item is clicked
|
|
3726
|
+
* @default true
|
|
3727
|
+
*/
|
|
3728
|
+
closeOnClick?: boolean;
|
|
3729
|
+
/**
|
|
3730
|
+
* Callback when the item is selected
|
|
3731
|
+
*/
|
|
3732
|
+
onSelect?: (event: SyntheticEvent) => void;
|
|
3707
3733
|
}, "ref">) & _$react.RefAttributes<HTMLAnchorElement | HTMLButtonElement>>;
|
|
3708
3734
|
//#endregion
|
|
3709
3735
|
//#region src/components/Menu/MenuItemLabel.d.ts
|
|
@@ -3729,15 +3755,19 @@ declare const MenuItemDescription: ({
|
|
|
3729
3755
|
}: MenuItemDescriptionProps) => _$react_jsx_runtime0.JSX.Element;
|
|
3730
3756
|
//#endregion
|
|
3731
3757
|
//#region src/components/Menu/MenuRadioGroup.d.ts
|
|
3732
|
-
type MenuRadioGroupProps =
|
|
3758
|
+
type MenuRadioGroupProps = {
|
|
3733
3759
|
/**
|
|
3734
3760
|
* The radio items
|
|
3735
3761
|
*/
|
|
3736
3762
|
children: ReactNode | ReactNode[];
|
|
3737
3763
|
/**
|
|
3738
|
-
*
|
|
3764
|
+
* The value of the selected radio item
|
|
3739
3765
|
*/
|
|
3740
|
-
|
|
3766
|
+
value?: string;
|
|
3767
|
+
/**
|
|
3768
|
+
* Callback when the value changes
|
|
3769
|
+
*/
|
|
3770
|
+
onValueChange?: (value: string) => void;
|
|
3741
3771
|
};
|
|
3742
3772
|
declare const MenuRadioGroup: {
|
|
3743
3773
|
({
|
|
@@ -3748,7 +3778,7 @@ declare const MenuRadioGroup: {
|
|
|
3748
3778
|
};
|
|
3749
3779
|
//#endregion
|
|
3750
3780
|
//#region src/components/Menu/RadioMenuItem.d.ts
|
|
3751
|
-
type RadioMenuItemProps =
|
|
3781
|
+
type RadioMenuItemProps = MenuItemButtonProps & {
|
|
3752
3782
|
/**
|
|
3753
3783
|
* Optional `Icon` to use as the indicator that the radio item is selected. Must be an instance of [Icon](../?path=/docs/components-icon--docs)
|
|
3754
3784
|
*/
|
|
@@ -3756,7 +3786,7 @@ type RadioMenuItemProps = DropdownMenuRadioItemProps & MenuItemButtonProps & {
|
|
|
3756
3786
|
/**
|
|
3757
3787
|
* The value of the item
|
|
3758
3788
|
*/
|
|
3759
|
-
value:
|
|
3789
|
+
value: string;
|
|
3760
3790
|
/**
|
|
3761
3791
|
* @ignore
|
|
3762
3792
|
*/
|
|
@@ -3769,6 +3799,10 @@ type RadioMenuItemProps = DropdownMenuRadioItemProps & MenuItemButtonProps & {
|
|
|
3769
3799
|
* @ignore
|
|
3770
3800
|
*/
|
|
3771
3801
|
ref?: never;
|
|
3802
|
+
/**
|
|
3803
|
+
* Callback when the item is selected
|
|
3804
|
+
*/
|
|
3805
|
+
onSelect?: (event: SyntheticEvent) => void;
|
|
3772
3806
|
};
|
|
3773
3807
|
declare const RadioMenuItem: {
|
|
3774
3808
|
({
|
|
@@ -3781,7 +3815,7 @@ declare const RadioMenuItem: {
|
|
|
3781
3815
|
};
|
|
3782
3816
|
//#endregion
|
|
3783
3817
|
//#region src/components/Menu/CheckboxMenuItem.d.ts
|
|
3784
|
-
type CheckboxMenuItemProps =
|
|
3818
|
+
type CheckboxMenuItemProps = MenuItemButtonProps & {
|
|
3785
3819
|
/** Callback to fire when the checked status changes */onCheckedChange: (checked: boolean) => void;
|
|
3786
3820
|
/**
|
|
3787
3821
|
* Optional `Icon` to use as the indicator that the checkbox item is selected. Must be an instance of [Icon](../?path=/docs/components-icon--docs)
|
|
@@ -3803,6 +3837,10 @@ type CheckboxMenuItemProps = DropdownMenuCheckboxItemProps & MenuItemButtonProps
|
|
|
3803
3837
|
* @ignore
|
|
3804
3838
|
*/
|
|
3805
3839
|
ref?: never;
|
|
3840
|
+
/**
|
|
3841
|
+
* Callback when the item is selected
|
|
3842
|
+
*/
|
|
3843
|
+
onSelect?: (event: SyntheticEvent) => void;
|
|
3806
3844
|
};
|
|
3807
3845
|
declare const CheckboxMenuItem: {
|
|
3808
3846
|
({
|
|
@@ -4047,8 +4085,7 @@ type UncontrolledPopoverProps = {
|
|
|
4047
4085
|
onOpenChange?: never;
|
|
4048
4086
|
};
|
|
4049
4087
|
type PopoverControlProps = ControlledPopoverProps | UncontrolledPopoverProps;
|
|
4050
|
-
type
|
|
4051
|
-
type PopoverProps = ContentProps & PopoverControlProps & {
|
|
4088
|
+
type PopoverProps = PopoverControlProps & {
|
|
4052
4089
|
/**
|
|
4053
4090
|
* The content of the popover
|
|
4054
4091
|
*/
|
|
@@ -4072,13 +4109,13 @@ type PopoverProps = ContentProps & PopoverControlProps & {
|
|
|
4072
4109
|
/**
|
|
4073
4110
|
* An interactive element. Most commonly a [Button](?path=/docs/components-button--docs) or [IconButton]([Button](?path=/docs/components-iconbutton--docs)).
|
|
4074
4111
|
*/
|
|
4075
|
-
trigger:
|
|
4112
|
+
trigger: ReactElement;
|
|
4076
4113
|
/**
|
|
4077
4114
|
* If true, the popover will use the unstyled Content component instead of StyledContent
|
|
4078
4115
|
*/
|
|
4079
4116
|
unstyled?: boolean;
|
|
4080
4117
|
/**
|
|
4081
|
-
* If true, the popover will use a custom
|
|
4118
|
+
* If true, the popover will use a custom arrow on the trigger
|
|
4082
4119
|
*/
|
|
4083
4120
|
withArrow?: boolean;
|
|
4084
4121
|
/**
|
|
@@ -4090,9 +4127,26 @@ type PopoverProps = ContentProps & PopoverControlProps & {
|
|
|
4090
4127
|
* Inline styles applied to the popover popup
|
|
4091
4128
|
*/
|
|
4092
4129
|
style?: CSSProperties;
|
|
4130
|
+
/**
|
|
4131
|
+
* The preferred side of the trigger to render on
|
|
4132
|
+
*/
|
|
4133
|
+
side?: 'bottom' | 'left' | 'right' | 'top';
|
|
4134
|
+
/**
|
|
4135
|
+
* The preferred alignment against the trigger
|
|
4136
|
+
*/
|
|
4137
|
+
align?: 'center' | 'end' | 'start';
|
|
4138
|
+
/**
|
|
4139
|
+
* Whether the trigger should be treated as a native button (default: true)
|
|
4140
|
+
*/
|
|
4141
|
+
nativeButton?: boolean;
|
|
4093
4142
|
};
|
|
4094
4143
|
/**
|
|
4095
4144
|
* Displays rich content in a portal, triggered by a button.
|
|
4145
|
+
*
|
|
4146
|
+
* For more control — custom anchor, access to event handlers like
|
|
4147
|
+
* `onPointerDownOutside`, no injected close button, etc. — compose the
|
|
4148
|
+
* primitives directly: `PopoverRoot`, `PopoverTrigger`, `PopoverAnchor`,
|
|
4149
|
+
* `PopoverPortal`, `PopoverContent`, `PopoverClose`.
|
|
4096
4150
|
*/
|
|
4097
4151
|
declare const Popover: {
|
|
4098
4152
|
({
|
|
@@ -4108,11 +4162,174 @@ declare const Popover: {
|
|
|
4108
4162
|
isAnimated,
|
|
4109
4163
|
colorScheme,
|
|
4110
4164
|
style,
|
|
4165
|
+
side,
|
|
4166
|
+
align,
|
|
4167
|
+
nativeButton,
|
|
4111
4168
|
...props
|
|
4112
4169
|
}: PopoverProps): JSX.Element;
|
|
4113
4170
|
displayName: string;
|
|
4114
4171
|
};
|
|
4115
4172
|
//#endregion
|
|
4173
|
+
//#region src/components/Popover/PopoverAnchor.d.ts
|
|
4174
|
+
type PopoverAnchorProps = {
|
|
4175
|
+
children: ReactNode;
|
|
4176
|
+
};
|
|
4177
|
+
/**
|
|
4178
|
+
* Positions the popover relative to an element other than the trigger. Useful
|
|
4179
|
+
* when the element the user interacts with (e.g. a text input) is separate
|
|
4180
|
+
* from what the popover attaches to.
|
|
4181
|
+
*
|
|
4182
|
+
* Wrap the anchor element and nest `PopoverTrigger` inside it.
|
|
4183
|
+
*/
|
|
4184
|
+
declare const PopoverAnchor: {
|
|
4185
|
+
({
|
|
4186
|
+
children
|
|
4187
|
+
}: PopoverAnchorProps): JSX.Element;
|
|
4188
|
+
displayName: string;
|
|
4189
|
+
};
|
|
4190
|
+
//#endregion
|
|
4191
|
+
//#region src/components/Popover/PopoverArrow.d.ts
|
|
4192
|
+
type PopoverArrowProps = {
|
|
4193
|
+
/**
|
|
4194
|
+
* Should the arrow be animated with ripple effect
|
|
4195
|
+
*/
|
|
4196
|
+
isAnimated: boolean;
|
|
4197
|
+
};
|
|
4198
|
+
declare const PopoverArrow: {
|
|
4199
|
+
({
|
|
4200
|
+
isAnimated
|
|
4201
|
+
}: PopoverArrowProps): JSX.Element;
|
|
4202
|
+
displayName: string;
|
|
4203
|
+
};
|
|
4204
|
+
//#endregion
|
|
4205
|
+
//#region src/components/Popover/PopoverClose.d.ts
|
|
4206
|
+
type PopoverCloseProps = Omit<ComponentPropsWithoutRef<'button'>, 'render'> & {
|
|
4207
|
+
/**
|
|
4208
|
+
* A React element to merge close behavior onto.
|
|
4209
|
+
* When provided, the close button renders this element instead of a plain `<button>`.
|
|
4210
|
+
*/
|
|
4211
|
+
render?: ReactElement;
|
|
4212
|
+
};
|
|
4213
|
+
/**
|
|
4214
|
+
* An element that closes the popover when activated. Defaults to a `<button>`;
|
|
4215
|
+
* pass `render` to merge the close behavior onto a single child element. For
|
|
4216
|
+
* a pre-styled icon close button, use `PopoverCloseButton`.
|
|
4217
|
+
*/
|
|
4218
|
+
declare const PopoverClose: _$react.ForwardRefExoticComponent<Omit<Omit<_$react.DetailedHTMLProps<_$react.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref">, "render"> & {
|
|
4219
|
+
/**
|
|
4220
|
+
* A React element to merge close behavior onto.
|
|
4221
|
+
* When provided, the close button renders this element instead of a plain `<button>`.
|
|
4222
|
+
*/
|
|
4223
|
+
render?: ReactElement;
|
|
4224
|
+
} & _$react.RefAttributes<HTMLButtonElement>>;
|
|
4225
|
+
//#endregion
|
|
4226
|
+
//#region src/components/Popover/PopoverCloseButton.d.ts
|
|
4227
|
+
type PopoverCloseButtonProps = {
|
|
4228
|
+
/** Accessible label for the close button. Defaults to "Close". */label?: string;
|
|
4229
|
+
};
|
|
4230
|
+
/**
|
|
4231
|
+
* A pre-styled close button intended to be placed inside a `PopoverContent`.
|
|
4232
|
+
* For a custom close control, use `PopoverClose` directly.
|
|
4233
|
+
*/
|
|
4234
|
+
declare const PopoverCloseButton: {
|
|
4235
|
+
({
|
|
4236
|
+
label
|
|
4237
|
+
}?: PopoverCloseButtonProps): JSX.Element;
|
|
4238
|
+
displayName: string;
|
|
4239
|
+
};
|
|
4240
|
+
//#endregion
|
|
4241
|
+
//#region src/components/Popover/PopoverContent.d.ts
|
|
4242
|
+
type PopoverContentProps = {
|
|
4243
|
+
/** Sets the [color scheme](/docs/color-schemes) applied inside the portal. */colorScheme?: ColorSchemeTypes; /** Remove the default surface styling (padding, background, border, etc.). */
|
|
4244
|
+
unstyled?: boolean; /** Applied as `max-width` on the popover surface. Pass `"none"` to uncap. */
|
|
4245
|
+
maxWidth?: string; /** Applied as `max-height` on the popover surface. Pass `"none"` to uncap. */
|
|
4246
|
+
maxHeight?: string; /** Which side of the trigger to render the popover on. */
|
|
4247
|
+
side?: 'bottom' | 'left' | 'right' | 'top'; /** How to align the popover relative to the specified side. */
|
|
4248
|
+
align?: 'center' | 'end' | 'start'; /** Distance between the anchor and the popup in pixels. */
|
|
4249
|
+
sideOffset?: number; /** Inline styles applied to the popup. */
|
|
4250
|
+
style?: CSSProperties; /** The popover content. */
|
|
4251
|
+
children?: React.ReactNode; /** Role applied to the popup element. */
|
|
4252
|
+
role?: string;
|
|
4253
|
+
};
|
|
4254
|
+
/**
|
|
4255
|
+
* The styled popover surface. Place inside a `PopoverRoot` (typically wrapped
|
|
4256
|
+
* in a `PopoverPortal`). Wraps a `Positioner` and `Popup` internally.
|
|
4257
|
+
*/
|
|
4258
|
+
declare const PopoverContent: _$react.ForwardRefExoticComponent<PopoverContentProps & _$react.RefAttributes<HTMLDivElement>>;
|
|
4259
|
+
//#endregion
|
|
4260
|
+
//#region src/components/Popover/PopoverPortal.d.ts
|
|
4261
|
+
type PopoverPortalProps = {
|
|
4262
|
+
children: ReactNode;
|
|
4263
|
+
};
|
|
4264
|
+
/**
|
|
4265
|
+
* Portals the popover content out of the DOM hierarchy of its trigger so it can
|
|
4266
|
+
* escape clipping ancestors (`overflow: hidden`, transformed containers, etc.).
|
|
4267
|
+
*/
|
|
4268
|
+
declare const PopoverPortal: {
|
|
4269
|
+
({
|
|
4270
|
+
children
|
|
4271
|
+
}: PopoverPortalProps): JSX.Element;
|
|
4272
|
+
displayName: string;
|
|
4273
|
+
};
|
|
4274
|
+
//#endregion
|
|
4275
|
+
//#region src/components/Popover/PopoverRoot.d.ts
|
|
4276
|
+
type PopoverRootProps = {
|
|
4277
|
+
/**
|
|
4278
|
+
* Controlled open state. When provided, pair with `onOpenChange` to update it.
|
|
4279
|
+
* Leave unset for uncontrolled behavior.
|
|
4280
|
+
*/
|
|
4281
|
+
isOpen?: boolean; /** Called when the popover open state changes. */
|
|
4282
|
+
onOpenChange?: (isOpen: boolean) => void; /** The composable popover children (Trigger, Portal, etc.). */
|
|
4283
|
+
children: ReactNode;
|
|
4284
|
+
};
|
|
4285
|
+
/**
|
|
4286
|
+
* The root of a composable popover. Wrap `PopoverTrigger` (or `PopoverAnchor`)
|
|
4287
|
+
* and `PopoverContent` inside it.
|
|
4288
|
+
*
|
|
4289
|
+
* For the common "button opens a panel" case, prefer the bundled `Popover`.
|
|
4290
|
+
*/
|
|
4291
|
+
declare const PopoverRoot: {
|
|
4292
|
+
({
|
|
4293
|
+
isOpen,
|
|
4294
|
+
onOpenChange,
|
|
4295
|
+
children
|
|
4296
|
+
}: PopoverRootProps): JSX.Element;
|
|
4297
|
+
displayName: string;
|
|
4298
|
+
};
|
|
4299
|
+
//#endregion
|
|
4300
|
+
//#region src/components/Popover/PopoverTrigger.d.ts
|
|
4301
|
+
type PopoverTriggerProps = Omit<ComponentPropsWithoutRef<'button'>, 'render'> & {
|
|
4302
|
+
/**
|
|
4303
|
+
* A React element to merge trigger behavior onto.
|
|
4304
|
+
* When provided, the trigger renders this element instead of a plain `<button>`.
|
|
4305
|
+
*/
|
|
4306
|
+
render?: ReactElement;
|
|
4307
|
+
/**
|
|
4308
|
+
* Whether the trigger should be treated as a native button.
|
|
4309
|
+
* Set to `false` if the rendered element is not a button (e.g. `<div>`).
|
|
4310
|
+
* @default true
|
|
4311
|
+
*/
|
|
4312
|
+
nativeButton?: boolean;
|
|
4313
|
+
};
|
|
4314
|
+
/**
|
|
4315
|
+
* The button that toggles the popover open and closed. By default it renders a
|
|
4316
|
+
* `<button>` wrapping its children; pass `render` to merge the trigger
|
|
4317
|
+
* behavior onto a single child element (e.g. a `Button` or `IconButton`).
|
|
4318
|
+
*/
|
|
4319
|
+
declare const PopoverTrigger: _$react.ForwardRefExoticComponent<Omit<Omit<_$react.DetailedHTMLProps<_$react.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref">, "render"> & {
|
|
4320
|
+
/**
|
|
4321
|
+
* A React element to merge trigger behavior onto.
|
|
4322
|
+
* When provided, the trigger renders this element instead of a plain `<button>`.
|
|
4323
|
+
*/
|
|
4324
|
+
render?: ReactElement;
|
|
4325
|
+
/**
|
|
4326
|
+
* Whether the trigger should be treated as a native button.
|
|
4327
|
+
* Set to `false` if the rendered element is not a button (e.g. `<div>`).
|
|
4328
|
+
* @default true
|
|
4329
|
+
*/
|
|
4330
|
+
nativeButton?: boolean;
|
|
4331
|
+
} & _$react.RefAttributes<HTMLButtonElement>>;
|
|
4332
|
+
//#endregion
|
|
4116
4333
|
//#region src/components/ProgressBar/ProgressBar.d.ts
|
|
4117
4334
|
type ProgressBarProps = ComponentPropsWithoutRef<'div'> & {
|
|
4118
4335
|
/**
|
|
@@ -4205,7 +4422,7 @@ type RadioProps = Omit<ComponentPropsWithoutRef<'input'>, 'hideLabel' | 'label'
|
|
|
4205
4422
|
*/
|
|
4206
4423
|
hideLabel?: boolean;
|
|
4207
4424
|
};
|
|
4208
|
-
declare const Radio: _$react.ForwardRefExoticComponent<Omit<Omit<_$react.DetailedHTMLProps<_$react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref">, "label" | "
|
|
4425
|
+
declare const Radio: _$react.ForwardRefExoticComponent<Omit<Omit<_$react.DetailedHTMLProps<_$react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref">, "label" | "size" | "value" | "onChange" | "hideLabel"> & {
|
|
4209
4426
|
/**
|
|
4210
4427
|
* Indicates the state of the radio
|
|
4211
4428
|
*/
|
|
@@ -4467,7 +4684,7 @@ declare const ScrollArea: _$react.ForwardRefExoticComponent<HTMLAttributes<HTMLD
|
|
|
4467
4684
|
} & _$react.RefAttributes<HTMLDivElement>>;
|
|
4468
4685
|
//#endregion
|
|
4469
4686
|
//#region src/components/SegmentedControl/SegmentedControl.d.ts
|
|
4470
|
-
type SegmentedControlProps =
|
|
4687
|
+
type SegmentedControlProps = {
|
|
4471
4688
|
/**
|
|
4472
4689
|
* `SegmentedControlItem`s that will be rendered in grouping
|
|
4473
4690
|
*/
|
|
@@ -4496,7 +4713,7 @@ type SegmentedControlProps = Omit<ToggleGroupSingleProps, 'type'> & {
|
|
|
4496
4713
|
/**
|
|
4497
4714
|
* Provides a horizontal set of segments for switching between different values
|
|
4498
4715
|
*/
|
|
4499
|
-
declare const SegmentedControl: ForwardRefExoticComponent<RefAttributes<HTMLDivElement> & SegmentedControlProps
|
|
4716
|
+
declare const SegmentedControl: ForwardRefExoticComponent<RefAttributes<HTMLDivElement> & SegmentedControlProps & HTMLAttributes<HTMLDivElement>>;
|
|
4500
4717
|
//#endregion
|
|
4501
4718
|
//#region src/components/SegmentedControl/SegmentedControlItem.d.ts
|
|
4502
4719
|
type BaseProps$1 = {
|
|
@@ -4681,7 +4898,7 @@ type SliderProps = Omit<ComponentPropsWithoutRef<'div'>, 'onChange'> & {
|
|
|
4681
4898
|
* (e.g. on mouseup, touchend, or keyup). Useful for analytics or
|
|
4682
4899
|
* expensive operations where only the final value matters.
|
|
4683
4900
|
*/
|
|
4684
|
-
|
|
4901
|
+
onValueCommitted?: (value: number[]) => void;
|
|
4685
4902
|
/**
|
|
4686
4903
|
* Value to be added or subtracted on each step
|
|
4687
4904
|
*/
|
|
@@ -4701,7 +4918,7 @@ declare const Slider: {
|
|
|
4701
4918
|
max,
|
|
4702
4919
|
min,
|
|
4703
4920
|
onChange,
|
|
4704
|
-
|
|
4921
|
+
onValueCommitted,
|
|
4705
4922
|
step,
|
|
4706
4923
|
value,
|
|
4707
4924
|
"data-testid": dataTestId,
|
|
@@ -4988,7 +5205,12 @@ declare const TableRow: ({
|
|
|
4988
5205
|
}: TableRowProps) => JSX.Element;
|
|
4989
5206
|
//#endregion
|
|
4990
5207
|
//#region src/components/Tabs/Tabs.d.ts
|
|
4991
|
-
type TabsProps
|
|
5208
|
+
type TabsProps = {
|
|
5209
|
+
children?: React.ReactNode;
|
|
5210
|
+
defaultValue?: string;
|
|
5211
|
+
onValueChange?: (value: string) => void;
|
|
5212
|
+
value?: string;
|
|
5213
|
+
};
|
|
4992
5214
|
declare const Tabs: {
|
|
4993
5215
|
({
|
|
4994
5216
|
children,
|
|
@@ -4996,22 +5218,27 @@ declare const Tabs: {
|
|
|
4996
5218
|
onValueChange: onValueChangeProp,
|
|
4997
5219
|
defaultValue,
|
|
4998
5220
|
...props
|
|
4999
|
-
}: TabsProps
|
|
5221
|
+
}: TabsProps): JSX.Element;
|
|
5000
5222
|
displayName: string;
|
|
5001
5223
|
};
|
|
5002
5224
|
//#endregion
|
|
5003
5225
|
//#region src/components/Tabs/TabsContent.d.ts
|
|
5004
|
-
type TabsContentProps
|
|
5226
|
+
type TabsContentProps = {
|
|
5227
|
+
children?: ReactNode;
|
|
5228
|
+
value: string;
|
|
5229
|
+
};
|
|
5005
5230
|
declare const TabsContent: {
|
|
5006
5231
|
({
|
|
5007
5232
|
children,
|
|
5008
5233
|
value
|
|
5009
|
-
}: TabsContentProps
|
|
5234
|
+
}: TabsContentProps): JSX.Element;
|
|
5010
5235
|
displayName: string;
|
|
5011
5236
|
};
|
|
5012
5237
|
//#endregion
|
|
5013
5238
|
//#region src/components/Tabs/TabsList.d.ts
|
|
5014
|
-
type TabsListProps
|
|
5239
|
+
type TabsListProps = {
|
|
5240
|
+
'aria-label'?: string;
|
|
5241
|
+
} & PropsWithChildren<{
|
|
5015
5242
|
fullWidth?: boolean;
|
|
5016
5243
|
}>;
|
|
5017
5244
|
declare const TabsList: {
|
|
@@ -5019,12 +5246,15 @@ declare const TabsList: {
|
|
|
5019
5246
|
children,
|
|
5020
5247
|
fullWidth,
|
|
5021
5248
|
...props
|
|
5022
|
-
}: TabsListProps
|
|
5249
|
+
}: TabsListProps): JSX.Element;
|
|
5023
5250
|
displayName: string;
|
|
5024
5251
|
};
|
|
5025
5252
|
//#endregion
|
|
5026
5253
|
//#region src/components/Tabs/TabsTrigger.d.ts
|
|
5027
|
-
type BaseProps =
|
|
5254
|
+
type BaseProps = {
|
|
5255
|
+
disabled?: boolean;
|
|
5256
|
+
value: string;
|
|
5257
|
+
};
|
|
5028
5258
|
type IconWithLabel = {
|
|
5029
5259
|
/**
|
|
5030
5260
|
* The [Icon](?path=/docs/components-icon--docs) component to use, e.g. `<Icon type="favorite" />`
|
|
@@ -5055,8 +5285,8 @@ type NoIcon = {
|
|
|
5055
5285
|
label?: ReactNode | string;
|
|
5056
5286
|
'aria-label'?: never;
|
|
5057
5287
|
};
|
|
5058
|
-
type TabsTriggerProps
|
|
5059
|
-
declare const TabsTrigger: _$react.ForwardRefExoticComponent<TabsTriggerProps
|
|
5288
|
+
type TabsTriggerProps = BaseProps & (IconWithAriaLabel | IconWithLabel | NoIcon);
|
|
5289
|
+
declare const TabsTrigger: _$react.ForwardRefExoticComponent<TabsTriggerProps & _$react.RefAttributes<HTMLButtonElement>>;
|
|
5060
5290
|
//#endregion
|
|
5061
5291
|
//#region src/components/Tag/Tag.d.ts
|
|
5062
5292
|
type TagProps = ComponentPropsWithoutRef<'div'> & {
|
|
@@ -5377,8 +5607,8 @@ declare const WistiaLogo: {
|
|
|
5377
5607
|
displayName: string;
|
|
5378
5608
|
};
|
|
5379
5609
|
declare namespace index_d_exports {
|
|
5380
|
-
export { ActionButton, ActionButtonProps, Avatar, AvatarProps, AvatarStatus, Badge, BadgeProps, Banner, BannerProps, Box, BoxProps, Breadcrumb, BreadcrumbProps, Breadcrumbs, BreadcrumbsProps, Button, ButtonGroup, ButtonProps, Card, CardProps, Center, CenterProps, Checkbox, CheckboxGroup, CheckboxMenuItem, ClickRegion, ClickRegionProps, Collapsible, CollapsibleContent, CollapsibleProps, CollapsibleTrigger, CollapsibleTriggerIcon, ColorGrid, ColorGridOption, ColorGridOptionProps, ColorGridProps, ColorList, ColorListGroup, ColorListGroupProps, ColorListOption, ColorListOptionProps, ColorListProps, ColorPicker, ColorPickerPopoverContent, ColorPickerPopoverContentProps, ColorPickerProps, ColorPickerSection, ColorPickerSectionProps, ColorPickerTrigger, ColorPickerTriggerProps, ColorSchemeTypes, ColorSchemeWrapper, ColorSchemeWrapperProps, Combobox, ComboboxOption, ComboboxOptionProps, ComboboxProps, ContextMenu, ContextMenuProps, ContrastControls, CustomizableThemeWrapper, CustomizableThemeWrapperProps, DataCard, DataCardHoverArrow, DataCardProps, DataCardTrend, DataCardTrendProps, DataCards, DataCardsProps, DataList, DataListItem, DataListItemLabel, DataListItemValue, DataListProps, Divider, EditableHeading, EditableHeadingProps, EditableText, EditableTextCancelButton, EditableTextContext, EditableTextDisplay, EditableTextInput, EditableTextLabel, EditableTextProps, EditableTextRoot, EditableTextRootProps, EditableTextSubmitButton, EditableTextTrigger, Ellipsis, EllipsisProps, FeatureCard, FeatureCardImage, FeatureCardProps, FileAmountLimitValidator, FileSizeValidator, FileTypeValidator, FilterMenu, FilterMenuItem, Form, FormErrorSummary, FormField, FormFieldProps, FormGroup, FormGroupProps, FormProps, Grid, GridProps, Heading, HeadingProps, HexColorInput, HexColorInputProps, HueSlider, Icon, IconButton, IconButtonProps, IconNameType, Image, ImageDimensionsValidator, ImageProps, Input, InputClickToCopy, InputClickToCopyProps, InputPassword, InputPasswordProps, InputProps, KeyboardKeys, KeyboardShortcut, Label, LabelProps, Link, LinkProps, List, ListItem, ListItemProps, ListProps, Mark, MarkProps, Markdown, MarkdownProps, Menu, MenuItem, MenuItemDescription, MenuItemLabel, MenuLabel, MenuRadioGroup, Meter, MeterProps, MeterSegment, Modal, ModalCallout, ModalCallouts, ModalProps, PersistentFileAmountLimitValidator, Popover, PopoverProps, PreviewCard, PreviewCardProps, ProgressBar, ProgressBarProps, Radio, RadioCard, RadioCardImage, RadioCardImageProps, RadioCardProps, RadioGroup, RadioMenuItem, RadioProps, SaturationAndValuePicker, ScreenReaderOnly, ScrollArea, ScrollAreaProps, SegmentedControl, SegmentedControlItem, SegmentedControlItemProps, SegmentedControlProps, Select, SelectOption, SelectOptionGroup, SelectOptionGroupProps, SelectOptionProps, SelectProps, Slider, SliderProps, SplitButton, SplitButtonProps, Stack, SubMenu, Switch, SwitchProps, Table, TableBody, TableBodyProps, TableCell, TableCellProps, TableFoot, TableFootProps, TableHead, TableHeadProps, TableProps, TableRow, TableRowProps, Tabs, TabsContent, TabsList, TabsTrigger, Tag, TagProps, Text, TextProps, Thumbnail, ThumbnailBadge, ThumbnailBadgeProps, ThumbnailCollage, ThumbnailCollageProps, ThumbnailProps, Tooltip, TooltipProps, UIProvider, UseActiveMqReturnType, UseIsHoveredReturnType, UseMqReturnType, UseToastProps, ValueNameOrHexCode, ValueSwatch, WistiaLogo, calculateContrast, coerceToBoolean, colorSchemeOptions, copyToClipboard, dateTime, iconSizeMap, isKeyboardKey, mergeRefs, mq, useActiveMq, useAriaLive, useBoolean, useClipboard, useElementObserver, useFilePicker, useFocusTrap, useForceUpdate, useFormState, useImperativeFilePicker, useIsHovered, useKey, useKeyPress, useLocalStorage, useLockBodyScroll, useMq, useOnClickOutside, usePreviousValue, useToast, useWindowSize, validateWithYup };
|
|
5610
|
+
export { ActionButton, ActionButtonProps, Avatar, AvatarProps, AvatarStatus, Badge, BadgeProps, Banner, BannerProps, Box, BoxProps, Breadcrumb, BreadcrumbProps, Breadcrumbs, BreadcrumbsProps, Button, ButtonGroup, ButtonProps, Card, CardProps, Center, CenterProps, Checkbox, CheckboxGroup, CheckboxMenuItem, ClickRegion, ClickRegionProps, Collapsible, CollapsibleContent, CollapsibleProps, CollapsibleTrigger, CollapsibleTriggerIcon, ColorGrid, ColorGridOption, ColorGridOptionProps, ColorGridProps, ColorList, ColorListGroup, ColorListGroupProps, ColorListOption, ColorListOptionProps, ColorListProps, ColorPicker, ColorPickerPopoverContent, ColorPickerPopoverContentProps, ColorPickerProps, ColorPickerSection, ColorPickerSectionProps, ColorPickerTrigger, ColorPickerTriggerProps, ColorSchemeTypes, ColorSchemeWrapper, ColorSchemeWrapperProps, Combobox, ComboboxOption, ComboboxOptionProps, ComboboxProps, ContextMenu, ContextMenuProps, ContrastControls, CustomizableThemeWrapper, CustomizableThemeWrapperProps, DataCard, DataCardHoverArrow, DataCardProps, DataCardTrend, DataCardTrendProps, DataCards, DataCardsProps, DataList, DataListItem, DataListItemLabel, DataListItemValue, DataListProps, Divider, EditableHeading, EditableHeadingProps, EditableText, EditableTextCancelButton, EditableTextContext, EditableTextDisplay, EditableTextInput, EditableTextLabel, EditableTextProps, EditableTextRoot, EditableTextRootProps, EditableTextSubmitButton, EditableTextTrigger, Ellipsis, EllipsisProps, FeatureCard, FeatureCardImage, FeatureCardProps, FileAmountLimitValidator, FileSizeValidator, FileTypeValidator, FilterMenu, FilterMenuItem, Form, FormErrorSummary, FormField, FormFieldProps, FormGroup, FormGroupProps, FormProps, Grid, GridProps, Heading, HeadingProps, HexColorInput, HexColorInputProps, HueSlider, Icon, IconButton, IconButtonProps, IconNameType, Image, ImageDimensionsValidator, ImageProps, Input, InputClickToCopy, InputClickToCopyProps, InputPassword, InputPasswordProps, InputProps, KeyboardKeys, KeyboardShortcut, Label, LabelProps, Link, LinkProps, List, ListItem, ListItemProps, ListProps, Mark, MarkProps, Markdown, MarkdownProps, Menu, MenuItem, MenuItemDescription, MenuItemLabel, MenuLabel, MenuRadioGroup, Meter, MeterProps, MeterSegment, Modal, ModalCallout, ModalCallouts, ModalProps, PersistentFileAmountLimitValidator, Popover, PopoverAnchor, PopoverAnchorProps, PopoverArrow, PopoverArrowProps, PopoverClose, PopoverCloseButton, PopoverCloseButtonProps, PopoverCloseProps, PopoverContent, PopoverContentProps, PopoverPortal, PopoverPortalProps, PopoverProps, PopoverRoot, PopoverRootProps, PopoverTrigger, PopoverTriggerProps, PreviewCard, PreviewCardProps, ProgressBar, ProgressBarProps, Radio, RadioCard, RadioCardImage, RadioCardImageProps, RadioCardProps, RadioGroup, RadioMenuItem, RadioProps, SaturationAndValuePicker, ScreenReaderOnly, ScrollArea, ScrollAreaProps, SegmentedControl, SegmentedControlItem, SegmentedControlItemProps, SegmentedControlProps, Select, SelectOption, SelectOptionGroup, SelectOptionGroupProps, SelectOptionProps, SelectProps, Slider, SliderProps, SplitButton, SplitButtonProps, Stack, SubMenu, Switch, SwitchProps, Table, TableBody, TableBodyProps, TableCell, TableCellProps, TableFoot, TableFootProps, TableHead, TableHeadProps, TableProps, TableRow, TableRowProps, Tabs, TabsContent, TabsList, TabsTrigger, Tag, TagProps, Text, TextProps, Thumbnail, ThumbnailBadge, ThumbnailBadgeProps, ThumbnailCollage, ThumbnailCollageProps, ThumbnailProps, Tooltip, TooltipProps, UIProvider, UseActiveMqReturnType, UseIsHoveredReturnType, UseMqReturnType, UseToastProps, ValueNameOrHexCode, ValueSwatch, WistiaLogo, calculateContrast, coerceToBoolean, colorSchemeOptions, copyToClipboard, dateTime, iconSizeMap, isKeyboardKey, mergeRefs, mq, useActiveMq, useAriaLive, useBoolean, useClipboard, useElementObserver, useFilePicker, useFocusTrap, useForceUpdate, useFormState, useImperativeFilePicker, useIsHovered, useKey, useKeyPress, useLocalStorage, useLockBodyScroll, useMq, useOnClickOutside, usePreviousValue, useToast, useWindowSize, validateWithYup };
|
|
5381
5611
|
}
|
|
5382
5612
|
//#endregion
|
|
5383
|
-
export { ActionButton, type ActionButtonProps, Avatar, type AvatarProps, type AvatarStatus, Badge, type BadgeProps, Banner, type BannerProps, Box, type BoxProps, Breadcrumb, type BreadcrumbProps, Breadcrumbs, type BreadcrumbsProps, Button, ButtonGroup, type ButtonProps, Card, type CardProps, Center, type CenterProps, Checkbox, CheckboxGroup, CheckboxMenuItem, ClickRegion, type ClickRegionProps, Collapsible, CollapsibleContent, type CollapsibleProps, CollapsibleTrigger, CollapsibleTriggerIcon, ColorGrid, ColorGridOption, type ColorGridOptionProps, type ColorGridProps, ColorList, ColorListGroup, type ColorListGroupProps, ColorListOption, type ColorListOptionProps, type ColorListProps, ColorPicker, ColorPickerPopoverContent, type ColorPickerPopoverContentProps, type ColorPickerProps, ColorPickerSection, type ColorPickerSectionProps, ColorPickerTrigger, type ColorPickerTriggerProps, type ColorSchemeTypes, ColorSchemeWrapper, type ColorSchemeWrapperProps, Combobox, ComboboxOption, type ComboboxOptionProps, type ComboboxProps, ContextMenu, type ContextMenuProps, ContrastControls, CustomizableThemeWrapper, type CustomizableThemeWrapperProps, DataCard, DataCardHoverArrow, type DataCardProps, DataCardTrend, type DataCardTrendProps, DataCards, type DataCardsProps, DataList, DataListItem, DataListItemLabel, DataListItemValue, type DataListProps, Divider, EditableHeading, type EditableHeadingProps, EditableText, EditableTextCancelButton, EditableTextContext, EditableTextDisplay, EditableTextInput, EditableTextLabel, type EditableTextProps, EditableTextRoot, type EditableTextRootProps, EditableTextSubmitButton, EditableTextTrigger, Ellipsis, type EllipsisProps, FeatureCard, FeatureCardImage, type FeatureCardProps, FileAmountLimitValidator, FileSizeValidator, FileTypeValidator, FilterMenu, FilterMenuItem, Form, FormErrorSummary, FormField, type FormFieldProps, FormGroup, type FormGroupProps, type FormProps, Grid, type GridProps, Heading, type HeadingProps, HexColorInput, type HexColorInputProps, HueSlider, Icon, IconButton, type IconButtonProps, type IconNameType, Image, ImageDimensionsValidator, type ImageProps, Input, InputClickToCopy, type InputClickToCopyProps, InputPassword, type InputPasswordProps, type InputProps, type KeyboardKeys, KeyboardShortcut, Label, type LabelProps, Link, type LinkProps, List, ListItem, type ListItemProps, type ListProps, Mark, type MarkProps, Markdown, type MarkdownProps, Menu, MenuItem, MenuItemDescription, MenuItemLabel, MenuLabel, MenuRadioGroup, Meter, type MeterProps, type MeterSegment, Modal, ModalCallout, ModalCallouts, type ModalProps, PersistentFileAmountLimitValidator, Popover, type PopoverProps, PreviewCard, type PreviewCardProps, ProgressBar, type ProgressBarProps, Radio, RadioCard, RadioCardImage, type RadioCardImageProps, type RadioCardProps, RadioGroup, RadioMenuItem, type RadioProps, SaturationAndValuePicker, ScreenReaderOnly, ScrollArea, ScrollAreaProps, SegmentedControl, SegmentedControlItem, type SegmentedControlItemProps, type SegmentedControlProps, Select, SelectOption, SelectOptionGroup, type SelectOptionGroupProps, type SelectOptionProps, type SelectProps, Slider, type SliderProps, SplitButton, type SplitButtonProps, Stack, SubMenu, Switch, type SwitchProps, Table, TableBody, type TableBodyProps, TableCell, type TableCellProps, TableFoot, type TableFootProps, TableHead, type TableHeadProps, type TableProps, TableRow, type TableRowProps, Tabs, TabsContent, TabsList, TabsTrigger, Tag, type TagProps, Text, type TextProps, Thumbnail, ThumbnailBadge, type ThumbnailBadgeProps, ThumbnailCollage, type ThumbnailCollageProps, type ThumbnailProps, Tooltip, type TooltipProps, UIProvider, UseActiveMqReturnType, UseIsHoveredReturnType, UseMqReturnType, type UseToastProps, ValueNameOrHexCode, ValueSwatch, WistiaLogo, calculateContrast, coerceToBoolean, colorSchemeOptions, copyToClipboard, dateTime, iconSizeMap, isKeyboardKey, mergeRefs, mq, useActiveMq, useAriaLive, useBoolean, useClipboard, useElementObserver, useFilePicker, useFocusTrap, useForceUpdate, useFormState, useImperativeFilePicker, useIsHovered, useKey, useKeyPress, useLocalStorage, useLockBodyScroll, useMq, useOnClickOutside, usePreviousValue, useToast, useWindowSize, validateWithYup };
|
|
5613
|
+
export { ActionButton, type ActionButtonProps, Avatar, type AvatarProps, type AvatarStatus, Badge, type BadgeProps, Banner, type BannerProps, Box, type BoxProps, Breadcrumb, type BreadcrumbProps, Breadcrumbs, type BreadcrumbsProps, Button, ButtonGroup, type ButtonProps, Card, type CardProps, Center, type CenterProps, Checkbox, CheckboxGroup, CheckboxMenuItem, ClickRegion, type ClickRegionProps, Collapsible, CollapsibleContent, type CollapsibleProps, CollapsibleTrigger, CollapsibleTriggerIcon, ColorGrid, ColorGridOption, type ColorGridOptionProps, type ColorGridProps, ColorList, ColorListGroup, type ColorListGroupProps, ColorListOption, type ColorListOptionProps, type ColorListProps, ColorPicker, ColorPickerPopoverContent, type ColorPickerPopoverContentProps, type ColorPickerProps, ColorPickerSection, type ColorPickerSectionProps, ColorPickerTrigger, type ColorPickerTriggerProps, type ColorSchemeTypes, ColorSchemeWrapper, type ColorSchemeWrapperProps, Combobox, ComboboxOption, type ComboboxOptionProps, type ComboboxProps, ContextMenu, type ContextMenuProps, ContrastControls, CustomizableThemeWrapper, type CustomizableThemeWrapperProps, DataCard, DataCardHoverArrow, type DataCardProps, DataCardTrend, type DataCardTrendProps, DataCards, type DataCardsProps, DataList, DataListItem, DataListItemLabel, DataListItemValue, type DataListProps, Divider, EditableHeading, type EditableHeadingProps, EditableText, EditableTextCancelButton, EditableTextContext, EditableTextDisplay, EditableTextInput, EditableTextLabel, type EditableTextProps, EditableTextRoot, type EditableTextRootProps, EditableTextSubmitButton, EditableTextTrigger, Ellipsis, type EllipsisProps, FeatureCard, FeatureCardImage, type FeatureCardProps, FileAmountLimitValidator, FileSizeValidator, FileTypeValidator, FilterMenu, FilterMenuItem, Form, FormErrorSummary, FormField, type FormFieldProps, FormGroup, type FormGroupProps, type FormProps, Grid, type GridProps, Heading, type HeadingProps, HexColorInput, type HexColorInputProps, HueSlider, Icon, IconButton, type IconButtonProps, type IconNameType, Image, ImageDimensionsValidator, type ImageProps, Input, InputClickToCopy, type InputClickToCopyProps, InputPassword, type InputPasswordProps, type InputProps, type KeyboardKeys, KeyboardShortcut, Label, type LabelProps, Link, type LinkProps, List, ListItem, type ListItemProps, type ListProps, Mark, type MarkProps, Markdown, type MarkdownProps, Menu, MenuItem, MenuItemDescription, MenuItemLabel, MenuLabel, MenuRadioGroup, Meter, type MeterProps, type MeterSegment, Modal, ModalCallout, ModalCallouts, type ModalProps, PersistentFileAmountLimitValidator, Popover, PopoverAnchor, type PopoverAnchorProps, PopoverArrow, type PopoverArrowProps, PopoverClose, PopoverCloseButton, type PopoverCloseButtonProps, type PopoverCloseProps, PopoverContent, type PopoverContentProps, PopoverPortal, type PopoverPortalProps, type PopoverProps, PopoverRoot, type PopoverRootProps, PopoverTrigger, type PopoverTriggerProps, PreviewCard, type PreviewCardProps, ProgressBar, type ProgressBarProps, Radio, RadioCard, RadioCardImage, type RadioCardImageProps, type RadioCardProps, RadioGroup, RadioMenuItem, type RadioProps, SaturationAndValuePicker, ScreenReaderOnly, ScrollArea, ScrollAreaProps, SegmentedControl, SegmentedControlItem, type SegmentedControlItemProps, type SegmentedControlProps, Select, SelectOption, SelectOptionGroup, type SelectOptionGroupProps, type SelectOptionProps, type SelectProps, Slider, type SliderProps, SplitButton, type SplitButtonProps, Stack, SubMenu, Switch, type SwitchProps, Table, TableBody, type TableBodyProps, TableCell, type TableCellProps, TableFoot, type TableFootProps, TableHead, type TableHeadProps, type TableProps, TableRow, type TableRowProps, Tabs, TabsContent, TabsList, TabsTrigger, Tag, type TagProps, Text, type TextProps, Thumbnail, ThumbnailBadge, type ThumbnailBadgeProps, ThumbnailCollage, type ThumbnailCollageProps, type ThumbnailProps, Tooltip, type TooltipProps, UIProvider, UseActiveMqReturnType, UseIsHoveredReturnType, UseMqReturnType, type UseToastProps, ValueNameOrHexCode, ValueSwatch, WistiaLogo, calculateContrast, coerceToBoolean, colorSchemeOptions, copyToClipboard, dateTime, iconSizeMap, isKeyboardKey, mergeRefs, mq, useActiveMq, useAriaLive, useBoolean, useClipboard, useElementObserver, useFilePicker, useFocusTrap, useForceUpdate, useFormState, useImperativeFilePicker, useIsHovered, useKey, useKeyPress, useLocalStorage, useLockBodyScroll, useMq, useOnClickOutside, usePreviousValue, useToast, useWindowSize, validateWithYup };
|
|
5384
5614
|
//# sourceMappingURL=index.d.ts.map
|