@wistia/ui 0.23.0 → 0.24.0-beta.285cb437.9b0902d

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 CHANGED
@@ -1,21 +1,17 @@
1
1
 
2
2
  import * as _$react from "react";
3
- import { AnchorHTMLAttributes, CSSProperties, ChangeEvent, ComponentProps, ComponentPropsWithRef, ComponentPropsWithoutRef, Dispatch, ElementType, ForwardRefExoticComponent, HTMLAttributes, InputHTMLAttributes, JSX, LegacyRef, MouseEvent, MutableRefObject, PropsWithChildren, ReactElement, ReactNode, Ref, RefAttributes, RefCallback, RefObject, SetStateAction, SyntheticEvent, TdHTMLAttributes, ThHTMLAttributes } from "react";
3
+ import { AnchorHTMLAttributes, ButtonHTMLAttributes, CSSProperties, ChangeEvent, ComponentProps, ComponentPropsWithRef, ComponentPropsWithoutRef, Dispatch, ElementType, ForwardRefExoticComponent, HTMLAttributes, InputHTMLAttributes, JSX, LegacyRef, MouseEvent, MutableRefObject, PropsWithChildren, ReactElement, ReactNode, Ref, RefAttributes, RefCallback, RefObject, SetStateAction, SyntheticEvent, TdHTMLAttributes, ThHTMLAttributes } from "react";
4
4
  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
9
  import * as _$_radix_ui_react_popover0 from "@radix-ui/react-popover";
12
- import { Anchor, Close, PopoverContentProps as PopoverContentProps$1, Portal, Root as Root$2, Trigger as Trigger$1 } from "@radix-ui/react-popover";
10
+ import { Anchor, Close, PopoverContentProps as PopoverContentProps$1, Portal, Root, Trigger } from "@radix-ui/react-popover";
13
11
  import * as Ariakit from "@ariakit/react";
14
12
  import { DropdownMenuCheckboxItemProps, DropdownMenuContentProps, DropdownMenuItemProps, DropdownMenuRadioGroupProps, DropdownMenuRadioItemProps } from "@radix-ui/react-dropdown-menu";
15
13
  import { Schema } from "yup";
16
- import { HoverCardContentProps } from "@radix-ui/react-hover-card";
17
14
  import ReactMarkdown from "react-markdown";
18
- import { TabsContentProps, TabsListProps, TabsProps, TabsTriggerProps } from "@radix-ui/react-tabs";
19
15
  import { ExtractContentTypeFromConfig, FilePickerReturnTypes, ImperativeFilePickerReturnTypes, UseFilePickerConfig, useImperativeFilePickerConfig } from "use-file-picker/types";
20
16
  export * from "use-file-picker/types";
21
17
 
@@ -452,7 +448,7 @@ type ButtonProps = ButtonAsButtonProps | ButtonAsLinkProps;
452
448
  * action, or performing a delete operation. It replaces the HTML `<button>` element,
453
449
  * unless an `href` attribute is passed, in which it will render an `<a>` element.
454
450
  */
455
- declare const Button: _$react.ForwardRefExoticComponent<(Omit<ButtonAsButtonProps, "ref"> | Omit<BaseButtonProps & _$react.ClassAttributes<HTMLAnchorElement> & _$react.AnchorHTMLAttributes<HTMLAnchorElement> & {
451
+ declare const Button: _$react.ForwardRefExoticComponent<(Omit<BaseButtonProps & _$react.ClassAttributes<HTMLAnchorElement> & _$react.AnchorHTMLAttributes<HTMLAnchorElement> & {
456
452
  beforeAction?: (() => Promise<void>) | (() => void);
457
453
  children: ReactNode;
458
454
  colorScheme?: ColorSchemeTypes;
@@ -510,7 +506,7 @@ declare const Button: _$react.ForwardRefExoticComponent<(Omit<ButtonAsButtonProp
510
506
  * @ignore
511
507
  */
512
508
  type?: LinkTypes;
513
- }, "ref">) & _$react.RefAttributes<HTMLAnchorElement | HTMLButtonElement>>;
509
+ }, "ref"> | Omit<ButtonAsButtonProps, "ref">) & _$react.RefAttributes<HTMLAnchorElement | HTMLButtonElement>>;
514
510
  //#endregion
515
511
  //#region src/private/components/Toast/Toast.d.ts
516
512
  type ToastProps = ComponentPropsWithoutRef<'div'> & {
@@ -617,7 +613,7 @@ declare const ActionButton: _$react.ForwardRefExoticComponent<(Omit<{
617
613
  * Changes the secondary icon for different use cases
618
614
  */
619
615
  variant?: "default" | "gated" | "menu-down" | "menu-up";
620
- } & Omit<ButtonAsButtonProps, "variant" | "fullWidth" | "isLoading" | "leftIcon" | "rightIcon" | "size" | "unstyled">, "ref"> | Omit<{
616
+ } & Omit<ButtonAsButtonProps, "variant" | "isLoading" | "unstyled" | "size" | "fullWidth" | "leftIcon" | "rightIcon">, "ref"> | Omit<{
621
617
  /**
622
618
  * @override
623
619
  * The text to display for the ActionButton
@@ -646,7 +642,7 @@ declare const ActionButton: _$react.ForwardRefExoticComponent<(Omit<{
646
642
  * Changes the secondary icon for different use cases
647
643
  */
648
644
  variant?: "default" | "gated" | "menu-down" | "menu-up";
649
- } & Omit<ButtonAsLinkProps, "variant" | "fullWidth" | "isLoading" | "leftIcon" | "rightIcon" | "size" | "unstyled">, "ref">) & _$react.RefAttributes<HTMLAnchorElement | HTMLButtonElement>>;
645
+ } & Omit<ButtonAsLinkProps, "variant" | "isLoading" | "unstyled" | "size" | "fullWidth" | "leftIcon" | "rightIcon">, "ref">) & _$react.RefAttributes<HTMLAnchorElement | HTMLButtonElement>>;
650
646
  //#endregion
651
647
  //#region src/components/Avatar/Avatar.d.ts
652
648
  type AvatarInstanceType = 'image' | 'initials';
@@ -1341,7 +1337,7 @@ type CollapsibleTriggerProps = {
1341
1337
  * A trigger element that will toggle the collapsible content.
1342
1338
  * Usually a [Button](?path=/docs/components-button--docs).
1343
1339
  */
1344
- children: ReactNode;
1340
+ children: ReactElement;
1345
1341
  };
1346
1342
  declare const CollapsibleTrigger: ({
1347
1343
  children
@@ -1657,7 +1653,7 @@ declare const CollapsibleTriggerIcon: {
1657
1653
  };
1658
1654
  //#endregion
1659
1655
  //#region src/components/Collapsible/CollapsibleContent.d.ts
1660
- type CollapsibleContentProps$1 = {
1656
+ type CollapsibleContentProps = {
1661
1657
  /**
1662
1658
  * The number of lines to clamp the content to when `Collapsible` is closed.
1663
1659
  */
@@ -1665,12 +1661,12 @@ type CollapsibleContentProps$1 = {
1665
1661
  /**
1666
1662
  * The content that will be hidden when `Collapsible` is closed.
1667
1663
  */
1668
- children: CollapsibleContentProps['children'];
1664
+ children: ReactNode;
1669
1665
  };
1670
1666
  declare const CollapsibleContent: ({
1671
1667
  clamp,
1672
1668
  children
1673
- }: CollapsibleContentProps$1) => _$react_jsx_runtime0.JSX.Element;
1669
+ }: CollapsibleContentProps) => _$react_jsx_runtime0.JSX.Element;
1674
1670
  //#endregion
1675
1671
  //#region src/components/ColorPicker/ColorGrid.d.ts
1676
1672
  type ColorGridProps = PropsWithChildren & {
@@ -3114,8 +3110,7 @@ type GridProps = ComponentPropsWithoutRef<'div'> & {
3114
3110
  declare const Grid: (<C extends ElementType = "div">(props: PolymorphicComponentProps<C, GridProps>) => _$react.ReactElement | null) & UnknownRecord;
3115
3111
  //#endregion
3116
3112
  //#region src/components/PreviewCard/PreviewCard.d.ts
3117
- type ContentProps$1 = Omit<HoverCardContentProps, 'alignOffset' | 'arrowPadding' | 'asChild' | 'collisionPadding' | 'hideWhenDetached' | 'sideOffset'>;
3118
- type PreviewCardProps = ContentProps$1 & {
3113
+ type PreviewCardProps = {
3119
3114
  /**
3120
3115
  * The content of the preview card
3121
3116
  */
@@ -3132,7 +3127,7 @@ type PreviewCardProps = ContentProps$1 & {
3132
3127
  * The [Link](?path=/docs/components-link--docs) that opens the preview card when hovered.
3133
3128
  * Preview cards should only be used on links—do not use on non-interactive elements (e.g. buttons or plain text).
3134
3129
  */
3135
- trigger: JSX.Element;
3130
+ trigger: ReactElement;
3136
3131
  /**
3137
3132
  * If true, the preview card will use the unstyled Content component instead of StyledContent
3138
3133
  */
@@ -3155,6 +3150,14 @@ type PreviewCardProps = ContentProps$1 & {
3155
3150
  * Force the preview card to be open without user interaction (for debugging and CI)
3156
3151
  */
3157
3152
  forceOpen?: boolean;
3153
+ /**
3154
+ * The preferred side of the trigger to render on
3155
+ */
3156
+ side?: 'bottom' | 'left' | 'right' | 'top';
3157
+ /**
3158
+ * The preferred alignment against the trigger
3159
+ */
3160
+ align?: 'center' | 'end' | 'start';
3158
3161
  };
3159
3162
  /**
3160
3163
  * 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.
@@ -3171,6 +3174,8 @@ declare const PreviewCard: {
3171
3174
  closeDelay,
3172
3175
  colorScheme,
3173
3176
  forceOpen,
3177
+ side,
3178
+ align,
3174
3179
  ...props
3175
3180
  }: PreviewCardProps): JSX.Element;
3176
3181
  displayName: string;
@@ -3289,7 +3294,7 @@ type InputClickToCopyProps = Omit<InputProps, 'autoSelect' | 'disabled' | 'right
3289
3294
  /**
3290
3295
  * Provides a readonly input that copies the text to the clipboard when clicked.
3291
3296
  */
3292
- declare const InputClickToCopy: _$react.ForwardRefExoticComponent<Omit<InputProps, "type" | "rightIcon" | "disabled" | "value" | "autoSelect"> & {
3297
+ declare const InputClickToCopy: _$react.ForwardRefExoticComponent<Omit<InputProps, "type" | "value" | "disabled" | "rightIcon" | "autoSelect"> & {
3293
3298
  /**
3294
3299
  * When disabled, the copy action will not be triggered
3295
3300
  */
@@ -3624,29 +3629,7 @@ type MenuItemButtonProps = ButtonProps & {
3624
3629
  };
3625
3630
  //#endregion
3626
3631
  //#region src/components/Menu/MenuItem.d.ts
3627
- declare const MenuItem: _$react.ForwardRefExoticComponent<(Omit<DropdownMenuItemProps & BaseButtonProps & _$react.ClassAttributes<HTMLButtonElement> & _$react.ButtonHTMLAttributes<HTMLButtonElement> & {
3628
- href?: never;
3629
- type?: "button" | "reset" | "submit";
3630
- children: _$react.ReactNode;
3631
- } & {
3632
- appearance?: "dangerous" | "default" | "gated";
3633
- badge?: _$react.JSX.Element;
3634
- children?: _$react.ReactNode;
3635
- command?: _$react.ReactNode;
3636
- icon?: ButtonProps["leftIcon"];
3637
- leftIcon?: ButtonProps["leftIcon"];
3638
- rightIcon?: ButtonProps["rightIcon"];
3639
- fullWidth?: never;
3640
- asChild?: never;
3641
- variant?: never;
3642
- size?: never;
3643
- unstyled?: never;
3644
- } & {
3645
- /**
3646
- * Treats the menu item as a link when provided
3647
- */
3648
- href?: MenuItemButtonProps["href"];
3649
- }, "ref"> | Omit<DropdownMenuItemProps & BaseButtonProps & _$react.ClassAttributes<HTMLAnchorElement> & _$react.AnchorHTMLAttributes<HTMLAnchorElement> & {
3632
+ declare const MenuItem: _$react.ForwardRefExoticComponent<(Omit<DropdownMenuItemProps & BaseButtonProps & _$react.ClassAttributes<HTMLAnchorElement> & _$react.AnchorHTMLAttributes<HTMLAnchorElement> & {
3650
3633
  beforeAction?: (() => Promise<void>) | (() => void);
3651
3634
  children: _$react.ReactNode;
3652
3635
  colorScheme?: ColorSchemeTypes;
@@ -3724,6 +3707,28 @@ declare const MenuItem: _$react.ForwardRefExoticComponent<(Omit<DropdownMenuItem
3724
3707
  * Treats the menu item as a link when provided
3725
3708
  */
3726
3709
  href?: MenuItemButtonProps["href"];
3710
+ }, "ref"> | Omit<DropdownMenuItemProps & BaseButtonProps & _$react.ClassAttributes<HTMLButtonElement> & _$react.ButtonHTMLAttributes<HTMLButtonElement> & {
3711
+ href?: never;
3712
+ type?: "button" | "reset" | "submit";
3713
+ children: _$react.ReactNode;
3714
+ } & {
3715
+ appearance?: "dangerous" | "default" | "gated";
3716
+ badge?: _$react.JSX.Element;
3717
+ children?: _$react.ReactNode;
3718
+ command?: _$react.ReactNode;
3719
+ icon?: ButtonProps["leftIcon"];
3720
+ leftIcon?: ButtonProps["leftIcon"];
3721
+ rightIcon?: ButtonProps["rightIcon"];
3722
+ fullWidth?: never;
3723
+ asChild?: never;
3724
+ variant?: never;
3725
+ size?: never;
3726
+ unstyled?: never;
3727
+ } & {
3728
+ /**
3729
+ * Treats the menu item as a link when provided
3730
+ */
3731
+ href?: MenuItemButtonProps["href"];
3727
3732
  }, "ref">) & _$react.RefAttributes<HTMLAnchorElement | HTMLButtonElement>>;
3728
3733
  //#endregion
3729
3734
  //#region src/components/Menu/MenuItemLabel.d.ts
@@ -4217,7 +4222,7 @@ declare const PopoverPortal: {
4217
4222
  };
4218
4223
  //#endregion
4219
4224
  //#region src/components/Popover/PopoverRoot.d.ts
4220
- type RadixRootProps = ComponentPropsWithoutRef<typeof Root$2>;
4225
+ type RadixRootProps = ComponentPropsWithoutRef<typeof Root>;
4221
4226
  type PopoverRootProps = Omit<RadixRootProps, 'open'> & {
4222
4227
  /**
4223
4228
  * Controlled open state. When provided, pair with `onOpenChange` to update it.
@@ -4240,7 +4245,7 @@ declare const PopoverRoot: {
4240
4245
  };
4241
4246
  //#endregion
4242
4247
  //#region src/components/Popover/PopoverTrigger.d.ts
4243
- type PopoverTriggerProps = ComponentPropsWithoutRef<typeof Trigger$1>;
4248
+ type PopoverTriggerProps = ComponentPropsWithoutRef<typeof Trigger>;
4244
4249
  /**
4245
4250
  * The button that toggles the popover open and closed. By default it renders a
4246
4251
  * `<button>` wrapping its children; pass `asChild` to merge the trigger
@@ -4340,7 +4345,7 @@ type RadioProps = Omit<ComponentPropsWithoutRef<'input'>, 'hideLabel' | 'label'
4340
4345
  */
4341
4346
  hideLabel?: boolean;
4342
4347
  };
4343
- declare const Radio: _$react.ForwardRefExoticComponent<Omit<Omit<_$react.DetailedHTMLProps<_$react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref">, "label" | "onChange" | "size" | "value" | "hideLabel"> & {
4348
+ declare const Radio: _$react.ForwardRefExoticComponent<Omit<Omit<_$react.DetailedHTMLProps<_$react.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref">, "label" | "onChange" | "value" | "size" | "hideLabel"> & {
4344
4349
  /**
4345
4350
  * Indicates the state of the radio
4346
4351
  */
@@ -4602,7 +4607,7 @@ declare const ScrollArea: _$react.ForwardRefExoticComponent<HTMLAttributes<HTMLD
4602
4607
  } & _$react.RefAttributes<HTMLDivElement>>;
4603
4608
  //#endregion
4604
4609
  //#region src/components/SegmentedControl/SegmentedControl.d.ts
4605
- type SegmentedControlProps = Omit<ToggleGroupSingleProps, 'type'> & {
4610
+ type SegmentedControlProps = {
4606
4611
  /**
4607
4612
  * `SegmentedControlItem`s that will be rendered in grouping
4608
4613
  */
@@ -4631,7 +4636,7 @@ type SegmentedControlProps = Omit<ToggleGroupSingleProps, 'type'> & {
4631
4636
  /**
4632
4637
  * Provides a horizontal set of segments for switching between different values
4633
4638
  */
4634
- declare const SegmentedControl: ForwardRefExoticComponent<RefAttributes<HTMLDivElement> & SegmentedControlProps>;
4639
+ declare const SegmentedControl: ForwardRefExoticComponent<RefAttributes<HTMLDivElement> & SegmentedControlProps & HTMLAttributes<HTMLDivElement>>;
4635
4640
  //#endregion
4636
4641
  //#region src/components/SegmentedControl/SegmentedControlItem.d.ts
4637
4642
  type BaseProps$1 = {
@@ -4776,6 +4781,192 @@ declare const SelectOptionGroup: ({
4776
4781
  ...props
4777
4782
  }: SelectOptionGroupProps) => _$react_jsx_runtime0.JSX.Element;
4778
4783
  //#endregion
4784
+ //#region src/components/Sidebar/Sidebar.d.ts
4785
+ type SidebarProps = HTMLAttributes<HTMLElement> & {
4786
+ /**
4787
+ * The content of the sidebar. Typically a `SidebarHeader`, `SidebarContent`,
4788
+ * and `SidebarFooter` composed together.
4789
+ */
4790
+ children: ReactNode;
4791
+ };
4792
+ declare const Sidebar: _$react.ForwardRefExoticComponent<HTMLAttributes<HTMLElement> & {
4793
+ /**
4794
+ * The content of the sidebar. Typically a `SidebarHeader`, `SidebarContent`,
4795
+ * and `SidebarFooter` composed together.
4796
+ */
4797
+ children: ReactNode;
4798
+ } & _$react.RefAttributes<HTMLDivElement>>;
4799
+ //#endregion
4800
+ //#region src/components/Sidebar/SidebarHeader.d.ts
4801
+ type SidebarHeaderProps = {
4802
+ /**
4803
+ * Content rendered at the top of the sidebar. Typically a `SidebarTitle`,
4804
+ * a `SidebarSearchInput`, or a stack of both.
4805
+ */
4806
+ children: ReactNode;
4807
+ };
4808
+ declare const SidebarHeader: {
4809
+ ({
4810
+ children
4811
+ }: SidebarHeaderProps): _$react_jsx_runtime0.JSX.Element;
4812
+ displayName: string;
4813
+ };
4814
+ //#endregion
4815
+ //#region src/components/Sidebar/SidebarFooter.d.ts
4816
+ type SidebarFooterProps = {
4817
+ /**
4818
+ * Content pinned to the bottom of the sidebar. Typically actions like a
4819
+ * support button, account menu, or sign-out control.
4820
+ */
4821
+ children: ReactNode;
4822
+ };
4823
+ declare const SidebarFooter: {
4824
+ ({
4825
+ children
4826
+ }: SidebarFooterProps): _$react_jsx_runtime0.JSX.Element;
4827
+ displayName: string;
4828
+ };
4829
+ //#endregion
4830
+ //#region src/components/Sidebar/SidebarTitle.d.ts
4831
+ type SidebarTitleProps = {
4832
+ /**
4833
+ * The text shown as the heading at the top of the sidebar.
4834
+ */
4835
+ children: ReactNode;
4836
+ };
4837
+ declare const SidebarTitle: {
4838
+ ({
4839
+ children
4840
+ }: SidebarTitleProps): _$react_jsx_runtime0.JSX.Element;
4841
+ displayName: string;
4842
+ };
4843
+ //#endregion
4844
+ //#region src/components/Sidebar/SidebarContent.d.ts
4845
+ type SidebarContentProps = {
4846
+ /**
4847
+ * The scrollable middle section of the sidebar. Typically one or more
4848
+ * `SidebarGroup`s containing `SidebarButton`s.
4849
+ */
4850
+ children: ReactNode;
4851
+ };
4852
+ declare const SidebarContent: {
4853
+ ({
4854
+ children
4855
+ }: SidebarContentProps): _$react_jsx_runtime0.JSX.Element;
4856
+ displayName: string;
4857
+ };
4858
+ //#endregion
4859
+ //#region src/components/Sidebar/SidebarGroup.d.ts
4860
+ type SidebarGroupProps = {
4861
+ /**
4862
+ * The items in the group, typically `SidebarButton`s, optionally preceded
4863
+ * by a `SidebarGroupLabel`.
4864
+ */
4865
+ children: ReactNode;
4866
+ };
4867
+ declare const SidebarGroup: {
4868
+ ({
4869
+ children
4870
+ }: SidebarGroupProps): _$react_jsx_runtime0.JSX.Element;
4871
+ displayName: string;
4872
+ };
4873
+ //#endregion
4874
+ //#region src/components/Sidebar/SidebarGroupLabel.d.ts
4875
+ type SidebarGroupLabelProps = {
4876
+ /**
4877
+ * The label text for the group.
4878
+ */
4879
+ children: ReactNode;
4880
+ /**
4881
+ * Content rendered after the label text — useful for counts, badges, or
4882
+ * supplementary status indicators.
4883
+ */
4884
+ rightSlot?: ReactNode;
4885
+ /**
4886
+ * Content rendered before the label text — useful for an icon or a small
4887
+ * visual marker.
4888
+ */
4889
+ leftSlot?: ReactNode;
4890
+ };
4891
+ declare const SidebarGroupLabel: {
4892
+ ({
4893
+ children,
4894
+ rightSlot,
4895
+ leftSlot
4896
+ }: SidebarGroupLabelProps): _$react_jsx_runtime0.JSX.Element;
4897
+ displayName: string;
4898
+ };
4899
+ //#endregion
4900
+ //#region src/components/Sidebar/SidebarButton.d.ts
4901
+ type SidebarButtonProps = Omit<ButtonHTMLAttributes<HTMLButtonElement>, 'onClick'> & {
4902
+ /**
4903
+ * The label text shown for the navigation item.
4904
+ */
4905
+ children: ReactNode;
4906
+ /**
4907
+ * Called when the user activates the item by click or keyboard.
4908
+ */
4909
+ onClick?: ((event: MouseEvent) => void) | undefined;
4910
+ /**
4911
+ * If supplied, the item renders as an `<a>` link instead of a `<button>`.
4912
+ */
4913
+ href?: string;
4914
+ /**
4915
+ * Icon rendered before the label.
4916
+ */
4917
+ leftIcon?: ReactNode;
4918
+ /**
4919
+ * Icon rendered after the label — typically a status indicator like a
4920
+ * "gated feature" sparkle or an external-link arrow.
4921
+ */
4922
+ rightIcon?: ReactNode;
4923
+ /**
4924
+ * Marks the item as the currently active navigation entry. Sets
4925
+ * `aria-current="page"` and applies the pressed visual treatment.
4926
+ */
4927
+ selected?: boolean;
4928
+ /**
4929
+ * Disables interaction with the item.
4930
+ */
4931
+ disabled?: boolean;
4932
+ };
4933
+ declare const SidebarButton: _$react.ForwardRefExoticComponent<Omit<ButtonHTMLAttributes<HTMLButtonElement>, "onClick"> & {
4934
+ /**
4935
+ * The label text shown for the navigation item.
4936
+ */
4937
+ children: ReactNode;
4938
+ /**
4939
+ * Called when the user activates the item by click or keyboard.
4940
+ */
4941
+ onClick?: ((event: MouseEvent) => void) | undefined;
4942
+ /**
4943
+ * If supplied, the item renders as an `<a>` link instead of a `<button>`.
4944
+ */
4945
+ href?: string;
4946
+ /**
4947
+ * Icon rendered before the label.
4948
+ */
4949
+ leftIcon?: ReactNode;
4950
+ /**
4951
+ * Icon rendered after the label — typically a status indicator like a
4952
+ * "gated feature" sparkle or an external-link arrow.
4953
+ */
4954
+ rightIcon?: ReactNode;
4955
+ /**
4956
+ * Marks the item as the currently active navigation entry. Sets
4957
+ * `aria-current="page"` and applies the pressed visual treatment.
4958
+ */
4959
+ selected?: boolean;
4960
+ /**
4961
+ * Disables interaction with the item.
4962
+ */
4963
+ disabled?: boolean;
4964
+ } & _$react.RefAttributes<HTMLAnchorElement | HTMLButtonElement>>;
4965
+ //#endregion
4966
+ //#region src/components/Sidebar/SidebarSearchInput.d.ts
4967
+ type SidebarSearchInputProps = Omit<InputProps, 'type'>;
4968
+ declare const SidebarSearchInput: _$react.ForwardRefExoticComponent<SidebarSearchInputProps & _$react.RefAttributes<HTMLInputElement | HTMLTextAreaElement>>;
4969
+ //#endregion
4779
4970
  //#region src/components/Slider/Slider.d.ts
4780
4971
  type SliderProps = Omit<ComponentPropsWithoutRef<'div'>, 'onChange'> & {
4781
4972
  /**
@@ -4816,7 +5007,7 @@ type SliderProps = Omit<ComponentPropsWithoutRef<'div'>, 'onChange'> & {
4816
5007
  * (e.g. on mouseup, touchend, or keyup). Useful for analytics or
4817
5008
  * expensive operations where only the final value matters.
4818
5009
  */
4819
- onValueCommit?: (value: number[]) => void;
5010
+ onValueCommitted?: (value: number[]) => void;
4820
5011
  /**
4821
5012
  * Value to be added or subtracted on each step
4822
5013
  */
@@ -4836,7 +5027,7 @@ declare const Slider: {
4836
5027
  max,
4837
5028
  min,
4838
5029
  onChange,
4839
- onValueCommit,
5030
+ onValueCommitted,
4840
5031
  step,
4841
5032
  value,
4842
5033
  "data-testid": dataTestId,
@@ -5123,7 +5314,12 @@ declare const TableRow: ({
5123
5314
  }: TableRowProps) => JSX.Element;
5124
5315
  //#endregion
5125
5316
  //#region src/components/Tabs/Tabs.d.ts
5126
- type TabsProps$1 = Pick<TabsProps, 'children' | 'defaultValue' | 'onValueChange' | 'value'>;
5317
+ type TabsProps = {
5318
+ children?: React.ReactNode;
5319
+ defaultValue?: string;
5320
+ onValueChange?: (value: string) => void;
5321
+ value?: string;
5322
+ };
5127
5323
  declare const Tabs: {
5128
5324
  ({
5129
5325
  children,
@@ -5131,22 +5327,27 @@ declare const Tabs: {
5131
5327
  onValueChange: onValueChangeProp,
5132
5328
  defaultValue,
5133
5329
  ...props
5134
- }: TabsProps$1): JSX.Element;
5330
+ }: TabsProps): JSX.Element;
5135
5331
  displayName: string;
5136
5332
  };
5137
5333
  //#endregion
5138
5334
  //#region src/components/Tabs/TabsContent.d.ts
5139
- type TabsContentProps$1 = Pick<TabsContentProps, 'children' | 'value'>;
5335
+ type TabsContentProps = {
5336
+ children?: ReactNode;
5337
+ value: string;
5338
+ };
5140
5339
  declare const TabsContent: {
5141
5340
  ({
5142
5341
  children,
5143
5342
  value
5144
- }: TabsContentProps$1): JSX.Element;
5343
+ }: TabsContentProps): JSX.Element;
5145
5344
  displayName: string;
5146
5345
  };
5147
5346
  //#endregion
5148
5347
  //#region src/components/Tabs/TabsList.d.ts
5149
- type TabsListProps$1 = Pick<TabsListProps, 'aria-label'> & PropsWithChildren<{
5348
+ type TabsListProps = {
5349
+ 'aria-label'?: string;
5350
+ } & PropsWithChildren<{
5150
5351
  fullWidth?: boolean;
5151
5352
  }>;
5152
5353
  declare const TabsList: {
@@ -5154,12 +5355,15 @@ declare const TabsList: {
5154
5355
  children,
5155
5356
  fullWidth,
5156
5357
  ...props
5157
- }: TabsListProps$1): JSX.Element;
5358
+ }: TabsListProps): JSX.Element;
5158
5359
  displayName: string;
5159
5360
  };
5160
5361
  //#endregion
5161
5362
  //#region src/components/Tabs/TabsTrigger.d.ts
5162
- type BaseProps = Pick<TabsTriggerProps, 'disabled' | 'value'>;
5363
+ type BaseProps = {
5364
+ disabled?: boolean;
5365
+ value: string;
5366
+ };
5163
5367
  type IconWithLabel = {
5164
5368
  /**
5165
5369
  * The [Icon](?path=/docs/components-icon--docs) component to use, e.g. `<Icon type="favorite" />`
@@ -5190,8 +5394,8 @@ type NoIcon = {
5190
5394
  label?: ReactNode | string;
5191
5395
  'aria-label'?: never;
5192
5396
  };
5193
- type TabsTriggerProps$1 = BaseProps & (IconWithAriaLabel | IconWithLabel | NoIcon);
5194
- declare const TabsTrigger: _$react.ForwardRefExoticComponent<TabsTriggerProps$1 & _$react.RefAttributes<HTMLButtonElement>>;
5397
+ type TabsTriggerProps = BaseProps & (IconWithAriaLabel | IconWithLabel | NoIcon);
5398
+ declare const TabsTrigger: _$react.ForwardRefExoticComponent<TabsTriggerProps & _$react.RefAttributes<HTMLButtonElement>>;
5195
5399
  //#endregion
5196
5400
  //#region src/components/Tag/Tag.d.ts
5197
5401
  type TagProps = ComponentPropsWithoutRef<'div'> & {
@@ -5512,8 +5716,8 @@ declare const WistiaLogo: {
5512
5716
  displayName: string;
5513
5717
  };
5514
5718
  declare namespace index_d_exports {
5515
- 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 };
5719
+ 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, Sidebar, SidebarButton, SidebarButtonProps, SidebarContent, SidebarContentProps, SidebarFooter, SidebarFooterProps, SidebarGroup, SidebarGroupLabel, SidebarGroupLabelProps, SidebarGroupProps, SidebarHeader, SidebarHeaderProps, SidebarProps, SidebarSearchInput, SidebarSearchInputProps, SidebarTitle, SidebarTitleProps, 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 };
5516
5720
  }
5517
5721
  //#endregion
5518
- 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 };
5722
+ 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, Sidebar, SidebarButton, type SidebarButtonProps, SidebarContent, type SidebarContentProps, SidebarFooter, type SidebarFooterProps, SidebarGroup, SidebarGroupLabel, type SidebarGroupLabelProps, type SidebarGroupProps, SidebarHeader, type SidebarHeaderProps, type SidebarProps, SidebarSearchInput, type SidebarSearchInputProps, SidebarTitle, type SidebarTitleProps, 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 };
5519
5723
  //# sourceMappingURL=index.d.ts.map