@uniformdev/design-system 20.50.2-alpha.39 → 20.50.2-alpha.77

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.mts CHANGED
@@ -6,9 +6,6 @@ import { GroupBase, Props, MultiValue, SingleValue, StylesConfig } from 'react-s
6
6
  export { ActionMeta, FormatOptionLabelContext, FormatOptionLabelMeta, GetOptionLabel, GetOptionValue, GroupBase, GroupHeadingProps, GroupProps, MenuListProps, MenuPlacement, MultiValue, MultiValueGenericProps, MultiValueProps, MultiValueRemoveProps, OnChangeValue, OptionContext, OptionProps, Options, OptionsOrGroups } from 'react-select';
7
7
  import * as _emotion_react from '@emotion/react';
8
8
  import { SerializedStyles, Interpolation, Theme as Theme$1 } from '@emotion/react';
9
- import * as _ariakit_react from '@ariakit/react';
10
- import { TooltipOptions, TooltipStoreProps, TooltipProps as TooltipProps$1, ButtonProps as ButtonProps$1, MenuStoreProps, PopoverStoreState, MenuProps as MenuProps$1, Menu as Menu$1, MenuItemProps as MenuItemProps$1, PopoverProps as PopoverProps$1, PopoverProviderProps, PopoverStore, TabStoreState, TabListProps, TabProps, TabPanelProps } from '@ariakit/react';
11
- export { PopoverStore } from '@ariakit/react';
12
9
  import { IconType as IconType$2, IconBaseProps } from '@react-icons/all-files/lib';
13
10
  import * as _react_icons_all_files from '@react-icons/all-files';
14
11
  import { IconType as IconType$1 } from '@react-icons/all-files';
@@ -505,24 +502,40 @@ interface UseShortcutResult extends ShortcutReference {
505
502
  }
506
503
  declare function useShortcut({ disabled, handler, shortcut, macShortcut, doNotPreventDefault, activeWhenEditing, useKey, }: UseShortcutOptions): UseShortcutResult;
507
504
 
508
- type TooltipProps = TooltipOptions & {
505
+ type Placement = 'top' | 'top-start' | 'top-end' | 'bottom' | 'bottom-start' | 'bottom-end' | 'left' | 'left-start' | 'left-end' | 'right' | 'right-start' | 'right-end';
506
+ interface PopoverStore {
507
+ show(): void;
508
+ hide(): void;
509
+ readonly open: boolean;
510
+ }
511
+
512
+ type TooltipProps = {
509
513
  /** Content of tooltip popover */
510
514
  title: string | React.ReactElement;
511
515
  /** Optional ability to specify alternative placement. By default - bottom center */
512
- placement?: TooltipStoreProps['placement'];
516
+ placement?: Placement;
513
517
  /** Optional ability to control visibility of Tooltip manually, useful for showing tooltip on click instead of on hover */
514
- visible?: TooltipStoreProps['open'];
518
+ visible?: boolean | undefined;
515
519
  /** Offset between the reference and the popover on the main axis. Use it only in special cases. */
516
- gutter?: TooltipProps$1['gutter'];
520
+ gutter?: number;
517
521
  children: ReactElement;
518
522
  /** If the tooltip should not be rendered inside a portal */
519
523
  withoutPortal?: boolean;
520
- /** sets the delay time before showing the tooltip
524
+ /**
525
+ * Sets the delay time before showing the tooltip.
521
526
  * @default 0
522
527
  */
523
528
  timeout?: number;
524
- } & Pick<HTMLAttributes<HTMLDivElement>, 'className'>;
525
- declare function Tooltip({ children, title, placement, visible, withoutPortal, timeout, ...tooltipProps }: TooltipProps): _emotion_react_jsx_runtime.JSX.Element;
529
+ /**
530
+ * Sets the visibility of the tooltip. This is deprecated and will be removed in the next major version.
531
+ * @deprecated Use `visible` instead.
532
+ */
533
+ open?: boolean | undefined;
534
+ } & Omit<HTMLAttributes<HTMLDivElement>, 'title' | 'children'>;
535
+ /**
536
+ * Displays contextual information when hovering or focusing an element.
537
+ */
538
+ declare function Tooltip({ children, title, placement, visible, withoutPortal, timeout, gutter, ...popupProps }: TooltipProps): _emotion_react_jsx_runtime.JSX.Element;
526
539
 
527
540
  /** Button sizes that are available to use with our brand */
528
541
  type ButtonSizeProps = 'zero' | 'xs' | 'sm' | 'md' | 'lg' | 'xl';
@@ -551,7 +564,7 @@ declare const useButtonStyles: ({ size, ...props }: ButtonStylesProps) => {
551
564
  btnSize: string;
552
565
  };
553
566
 
554
- type ButtonProps = ButtonProps$1 & {
567
+ type ButtonProps = React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
555
568
  /** sets the theme of the button
556
569
  * @default "primary"
557
570
  */
@@ -587,9 +600,9 @@ type ButtonWithVariantProps = Omit<ButtonProps, 'buttonType'> & {
587
600
  * Uniform Button Component
588
601
  * @example <Button buttonType="secondary" size="md" onClick={() => alert('hello world!')}>Click me</Button>
589
602
  */
590
- declare const Button: React$1.ForwardRefExoticComponent<(Omit<ButtonProps, "ref"> | Omit<ButtonWithVariantProps, "ref">) & React$1.RefAttributes<HTMLButtonElement>>;
603
+ declare const Button: React$1.ForwardRefExoticComponent<(ButtonProps | ButtonWithVariantProps) & React$1.RefAttributes<HTMLButtonElement>>;
591
604
 
592
- type LinkButtonProps = ButtonProps$1 & {
605
+ type LinkButtonProps = React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
593
606
  /** React child node */
594
607
  children?: React$1.ReactNode;
595
608
  /** (optional) sets whether the link is truncated or not */
@@ -600,7 +613,12 @@ type LinkButtonProps = ButtonProps$1 & {
600
613
  * Features no padding, left-aligned content, text truncation, and no background hover color.
601
614
  * @example <LinkButton onClick={() => {}}>Click me</LinkButton>
602
615
  */
603
- declare const LinkButton: React$1.ForwardRefExoticComponent<Omit<LinkButtonProps, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
616
+ declare const LinkButton: React$1.ForwardRefExoticComponent<React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
617
+ /** React child node */
618
+ children?: React$1.ReactNode;
619
+ /** (optional) sets whether the link is truncated or not */
620
+ truncated?: boolean;
621
+ } & React$1.RefAttributes<HTMLButtonElement>>;
604
622
 
605
623
  declare const rectangleRoundedIcon: IconType$1;
606
624
  declare const cardIcon: IconType$1;
@@ -1413,8 +1431,8 @@ type ButtonWithMenuStylesProps = ButtonWithMenuDefaultStylesProps | ButtonWithMe
1413
1431
  interface ActionButtonsProps extends Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, 'size' | 'disabled'> {
1414
1432
  /** Takes a function for the visible button */
1415
1433
  onButtonClick?: () => void;
1416
- /** (optional) ariakit placements options for the expandable menu */
1417
- placement?: MenuStoreProps['placement'];
1434
+ /** (optional) placement options for the expandable menu */
1435
+ placement?: Placement;
1418
1436
  /** sets the button text value */
1419
1437
  buttonText: React.ReactNode;
1420
1438
  /** sets a leading icon supporting the button text */
@@ -1635,15 +1653,23 @@ type DismissibleChipActionProps = {
1635
1653
  declare const DismissibleChipAction: ({ onDismiss, ...props }: DismissibleChipActionProps) => _emotion_react_jsx_runtime.JSX.Element;
1636
1654
 
1637
1655
  type FilterChipSize = 'xs' | 'sm' | 'md' | 'lg';
1638
- type FilterChipProps = {
1656
+ /**
1657
+ * Compact button used to toggle a filter on/off, optionally rendered as a
1658
+ * dropdown trigger. Spreads `...props` first then sets `type` last with a
1659
+ * fallback to `"button"` so wrappers like Base UI's `Menu.Trigger` (which can
1660
+ * forward `type: undefined` via `cloneElement`) cannot accidentally turn it
1661
+ * into a submit button inside a `<form>`. Marked with `markNativeButton` so
1662
+ * `Menu` knows the rendered DOM is a real `<button>` and can pass
1663
+ * `nativeButton={true}` to Base UI.
1664
+ */
1665
+ declare const FilterChip: React$1.ForwardRefExoticComponent<{
1639
1666
  leadingIcon?: IconType;
1640
1667
  asDropdown?: boolean;
1641
1668
  children: React.ReactNode;
1642
1669
  dataTestId?: string;
1643
1670
  size?: FilterChipSize;
1644
1671
  isSelected?: boolean;
1645
- } & ButtonHTMLAttributes<HTMLButtonElement>;
1646
- declare const FilterChip: ({ leadingIcon, asDropdown, children, dataTestId, size, isSelected, ...props }: FilterChipProps) => _emotion_react_jsx_runtime.JSX.Element;
1672
+ } & ButtonHTMLAttributes<HTMLButtonElement> & React$1.RefAttributes<HTMLButtonElement>>;
1647
1673
 
1648
1674
  type MultilineChipProps = {
1649
1675
  children: ReactNode;
@@ -1809,7 +1835,7 @@ type DateTimePickerProps = {
1809
1835
  /** (optional) sets the base test id for each of the elements with a testid */
1810
1836
  testId?: string;
1811
1837
  /** (optional) sets the popover placement */
1812
- placement?: PopoverStoreState['placement'];
1838
+ placement?: Placement;
1813
1839
  /** (optional) sets the popover offset
1814
1840
  * @default 8
1815
1841
  */
@@ -2076,7 +2102,7 @@ interface IconButtonProps extends Omit<ButtonProps, 'size'> {
2076
2102
  /** Style for the larger sizes have not been decided yet */
2077
2103
  size?: 'xs' | 'sm' | 'md';
2078
2104
  }
2079
- declare const IconButton: React$1.ForwardRefExoticComponent<Omit<IconButtonProps, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
2105
+ declare const IconButton: React$1.ForwardRefExoticComponent<IconButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
2080
2106
 
2081
2107
  interface ImageProps extends ImgHTMLAttributes<HTMLImageElement> {
2082
2108
  imgClassName?: string;
@@ -2681,8 +2707,6 @@ type IntegrationModalHeaderProps = {
2681
2707
  /** (optional) sets child elements in */
2682
2708
  menu?: React$1.ReactNode;
2683
2709
  };
2684
- type HexModalBackgroundProps = React$1.SVGAttributes<SVGElement>;
2685
- declare const HexModalBackground: ({ ...props }: HexModalBackgroundProps) => _emotion_react_jsx_runtime.JSX.Element;
2686
2710
  /** Uniform Integration Modal Header
2687
2711
  * @example <IntegrationModalHeader icon="/icon.svg" name="name" />
2688
2712
  */
@@ -2747,7 +2771,7 @@ type KeyValueInputProps<TValue extends string = string> = {
2747
2771
  */
2748
2772
  declare const KeyValueInput: <TValue extends string = string>({ value, onChange, label, newItemDefault, keyLabel, valueLabel, iconLabel, keyInfoPopover, valueInfoPopover, iconInfoPopover, disabled, errors, onFocusChange, showIconColumn, renderIconSelector, }: KeyValueInputProps<TValue>) => _emotion_react_jsx_runtime.JSX.Element;
2749
2773
 
2750
- interface DropdownStyleMenuTriggerProps extends React.HTMLAttributes<HTMLButtonElement> {
2774
+ interface DropdownStyleMenuTriggerProps extends ButtonHTMLAttributes<HTMLButtonElement> {
2751
2775
  children: React.ReactNode;
2752
2776
  /** sets the background color of the button */
2753
2777
  bgColor?: string;
@@ -2756,17 +2780,29 @@ interface DropdownStyleMenuTriggerProps extends React.HTMLAttributes<HTMLButtonE
2756
2780
  */
2757
2781
  variant?: 'ghost' | 'outline';
2758
2782
  }
2759
- /** Renders a dropdown menu style menu trigger button */
2783
+ /**
2784
+ * Renders a dropdown menu style menu trigger button. Marked with
2785
+ * `markNativeButton` so the design system's `Menu` knows to opt into Base UI's
2786
+ * native-button code path even though the React element type is a function
2787
+ * component.
2788
+ */
2760
2789
  declare const DropdownStyleMenuTrigger: React$1.ForwardRefExoticComponent<DropdownStyleMenuTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
2761
2790
 
2762
2791
  declare const legacyPlacements: readonly ["auto", "auto-start", "auto-end"];
2763
2792
  type LegacyPlacement = (typeof legacyPlacements)[number];
2764
- interface MenuProps extends MenuProps$1 {
2765
- /** the component that triggers the menu functionality */
2793
+ /**
2794
+ * @internal Hook used by MenuItem to detect when it is being rendered as the
2795
+ * `render` element of a Base UI SubmenuTrigger, so it can render a plain styled
2796
+ * div instead of `<BaseUIMenu.Item>` (which conflicts with SubmenuTrigger's own
2797
+ * composite-store registration and breaks click handling on submenu children).
2798
+ */
2799
+ declare function useIsSubmenuTriggerMode(): boolean;
2800
+ interface MenuProps extends Pick<React$1.HTMLAttributes<HTMLDivElement>, 'className' | 'id' | 'style'> {
2801
+ /** The component that triggers the menu functionality */
2766
2802
  menuTrigger: React$1.ReactElement & React$1.RefAttributes<any>;
2767
- /** (optional) Ariakit placements options for the expandable menu */
2768
- placement?: MenuStoreProps['placement'] | LegacyPlacement;
2769
- /** (optional) allows users to set additional class names */
2803
+ /** (optional) placement options for the expandable menu */
2804
+ placement?: Placement | LegacyPlacement;
2805
+ /** (optional) allows users to set additional class names */
2770
2806
  menuItemsContainerCssClasses?: SerializedStyles | string;
2771
2807
  /** (optional) allows users to add child elements */
2772
2808
  children?: React$1.ReactNode;
@@ -2781,7 +2817,7 @@ interface MenuProps extends MenuProps$1 {
2781
2817
  * If you need to disable this functionality, set this prop to true.
2782
2818
  */
2783
2819
  disableAutoSeparatorManagement?: boolean;
2784
- /** sets whether to use a React portal rendering or not. */
2820
+ /** Sets whether to use a React portal rendering or not. */
2785
2821
  withoutPortal?: boolean;
2786
2822
  /** (optional) sets the test id attribute */
2787
2823
  testId?: string;
@@ -2790,14 +2826,47 @@ interface MenuProps extends MenuProps$1 {
2790
2826
  * this is not compatible with nested menus that expand to the left or right of the menu
2791
2827
  */
2792
2828
  maxMenuHeight?: string;
2793
- portalElement?: React$1.ComponentProps<typeof Menu$1>['portalElement'];
2794
- /** sets the menu size
2829
+ /** Optional container element for the portal */
2830
+ portalElement?: HTMLElement | null;
2831
+ /** Sets the menu size
2795
2832
  * it's recommended to use the same size for all menu items in a menu
2796
2833
  * @default 'base'
2797
2834
  */
2798
2835
  size?: 'small' | 'base';
2799
2836
  /** (optional) disables the menu trigger so the menu cannot be opened */
2800
2837
  disabled?: boolean;
2838
+ /** Controls the open state of the menu (controlled mode) */
2839
+ open?: boolean;
2840
+ /** Called when the menu closes */
2841
+ onClose?: () => void;
2842
+ /** Called when the menu open state changes */
2843
+ onOpenChange?: (open: boolean) => void;
2844
+ /** Distance between the trigger and the menu popup in pixels */
2845
+ gutter?: number;
2846
+ /** Offset along the alignment axis in pixels */
2847
+ shift?: number;
2848
+ /**
2849
+ * Returns a custom anchor rect for positioning the menu.
2850
+ * Used by QuickFilter for custom anchor positioning.
2851
+ */
2852
+ getAnchorRect?: (anchor: HTMLElement | null) => {
2853
+ x?: number;
2854
+ y?: number;
2855
+ width?: number;
2856
+ height?: number;
2857
+ };
2858
+ /**
2859
+ * Controls when the menu repositions.
2860
+ * When provided, disables automatic anchor tracking after initial placement.
2861
+ */
2862
+ updatePosition?: (props: {
2863
+ updatePosition: () => void;
2864
+ }) => void;
2865
+ /**
2866
+ * @deprecated use `withoutPortal={false}` instead (default behavior).
2867
+ * Kept for backward compatibility.
2868
+ */
2869
+ portal?: boolean;
2801
2870
  }
2802
2871
  /**
2803
2872
  * Component used for creating clickable menus
@@ -2809,7 +2878,7 @@ interface MenuProps extends MenuProps$1 {
2809
2878
  * <MenuItem>Item 1</MenuItem>
2810
2879
  * </Menu>
2811
2880
  */
2812
- declare const Menu: React$1.ForwardRefExoticComponent<Omit<MenuProps, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
2881
+ declare const Menu: React$1.ForwardRefExoticComponent<MenuProps & React$1.RefAttributes<HTMLDivElement>>;
2813
2882
 
2814
2883
  type MenuGroupProps = {
2815
2884
  /** Title for the menu group. If undefined or an empty string, the group will render as normal menu */
@@ -2825,7 +2894,7 @@ declare const MenuGroup: ({ title, children }: MenuGroupProps) => _emotion_react
2825
2894
  * accent-alt - AI color (accent-alt-dark). DOES NOT change the text - only the icon color!
2826
2895
  */
2827
2896
  type MenuItemTextThemeProps = 'base' | 'red' | 'accent-alt';
2828
- type MenuItemProps = MenuItemProps$1 & {
2897
+ type MenuItemProps = Pick<React$1.HTMLAttributes<HTMLDivElement>, 'className' | 'style' | 'tabIndex' | 'id' | 'title' | 'onMouseEnter' | 'onMouseLeave'> & {
2829
2898
  /**
2830
2899
  * Sets child elements within the component.
2831
2900
  * Can be omitted when using the `render` prop
@@ -2833,6 +2902,11 @@ type MenuItemProps = MenuItemProps$1 & {
2833
2902
  children?: ChildFunction | React$1.ReactNode;
2834
2903
  /** (optional) set whether to hide the menu after a click action */
2835
2904
  hideMenuOnClick?: boolean;
2905
+ /**
2906
+ * @deprecated Use `hideMenuOnClick` instead.
2907
+ * Alias kept for backward compatibility.
2908
+ */
2909
+ hideOnClick?: boolean;
2836
2910
  /** (optional) set an icon along side the item text, we recommend using the MenuItemIcon component
2837
2911
  * @example <MenuItemIcon icon="add-r" />
2838
2912
  */
@@ -2853,8 +2927,18 @@ type MenuItemProps = MenuItemProps$1 & {
2853
2927
  * be automatically set to invoke the shortcut's handler function.
2854
2928
  */
2855
2929
  shortcut?: ShortcutReference;
2930
+ /** Click handler for the menu item */
2931
+ onClick?: React$1.MouseEventHandler<HTMLElement>;
2932
+ /** Whether the menu item is disabled */
2933
+ disabled?: boolean;
2934
+ /** Overrides the rendered element */
2935
+ render?: React$1.ReactElement;
2936
+ /** Ref forwarded to the root element */
2937
+ ref?: React$1.Ref<HTMLDivElement>;
2938
+ /** Overrides the text label to use when the item is matched during keyboard text navigation */
2939
+ label?: string;
2856
2940
  };
2857
- type ChildFunction = (menuItemProps: MenuItemProps$1) => React$1.ReactElement | null;
2941
+ type ChildFunction = (menuItemProps: Record<string, unknown>) => React$1.ReactElement | null;
2858
2942
  /**
2859
2943
  * MenuItem Component used along side <Menu /> component
2860
2944
  * @example <MenuItem onClick={() => alert('menu item was clicked')} icon={<RedClose />}>Remove Link</MenuItem>
@@ -2862,8 +2946,8 @@ type ChildFunction = (menuItemProps: MenuItemProps$1) => React$1.ReactElement |
2862
2946
  declare const MenuItem: React$1.ForwardRefExoticComponent<Omit<MenuItemProps, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
2863
2947
  /**
2864
2948
  * MenuItem Component for headless use outside <Menu /> component
2865
- * Use only if adapting Uniform menu item appearance to a non-ariakit menu.
2866
- * This is required because ariakit does not let you use MenuItem outside of a Menu component.
2949
+ * Use only if adapting Uniform menu item appearance to a non-Base UI menu.
2950
+ * This is required because Base UI does not let you use MenuItem outside of a Menu component.
2867
2951
  * @example <MenuItemInner onClick={() => alert('menu item was clicked')} icon={<RedClose />}>Remove Link</MenuItem>
2868
2952
  */
2869
2953
  declare const MenuItemInner: React$1.FC<MenuItemProps>;
@@ -2886,10 +2970,20 @@ declare const MenuItemSeparator: ({ ...props }: HtmlHTMLAttributes<HTMLHRElement
2886
2970
 
2887
2971
  type MenuButtonProp = {
2888
2972
  children: React.ReactNode;
2889
- } & HTMLAttributes<HTMLButtonElement>;
2973
+ } & ButtonHTMLAttributes<HTMLButtonElement>;
2974
+ /**
2975
+ * Bare `<button type="button">` styled wrapper used as a Menu trigger.
2976
+ *
2977
+ * The `type` attribute is set after `...props` with a fallback so wrappers
2978
+ * such as Base UI's `Menu.Trigger` (which can forward `type: undefined` via
2979
+ * `cloneElement`) cannot accidentally turn this into a submit button when
2980
+ * placed inside a `<form>`. Marked with `markNativeButton` so the design
2981
+ * system's `Menu` component knows to opt into Base UI's native-button code
2982
+ * path.
2983
+ */
2890
2984
  declare const MenuButton: React$1.ForwardRefExoticComponent<{
2891
2985
  children: React.ReactNode;
2892
- } & HTMLAttributes<HTMLButtonElement> & React$1.RefAttributes<HTMLButtonElement>>;
2986
+ } & ButtonHTMLAttributes<HTMLButtonElement> & React$1.RefAttributes<HTMLButtonElement>>;
2893
2987
  type MenuThreeDotsProps = {
2894
2988
  /** sets the aria-label and title value on the button
2895
2989
  * @default 'More options'
@@ -2900,7 +2994,12 @@ type MenuThreeDotsProps = {
2900
2994
  */
2901
2995
  iconSize?: string;
2902
2996
  disabled?: boolean;
2903
- } & HTMLAttributes<HTMLButtonElement>;
2997
+ } & ButtonHTMLAttributes<HTMLButtonElement>;
2998
+ /**
2999
+ * Three-dot ("more options") Menu trigger. Marked as a native-button trigger
3000
+ * so `Menu` reports `nativeButton={true}` to Base UI even though it is a
3001
+ * function component (Base UI inspects the React element's outer `type`).
3002
+ */
2904
3003
  declare const MenuThreeDots: React$1.ForwardRefExoticComponent<{
2905
3004
  /** sets the aria-label and title value on the button
2906
3005
  * @default 'More options'
@@ -2911,14 +3010,18 @@ declare const MenuThreeDots: React$1.ForwardRefExoticComponent<{
2911
3010
  */
2912
3011
  iconSize?: string;
2913
3012
  disabled?: boolean;
2914
- } & HTMLAttributes<HTMLButtonElement> & React$1.RefAttributes<HTMLButtonElement>>;
3013
+ } & ButtonHTMLAttributes<HTMLButtonElement> & React$1.RefAttributes<HTMLButtonElement>>;
3014
+ /**
3015
+ * Select-style Menu trigger that renders the current value with a chevron.
3016
+ * Marked as a native-button trigger for the same reason as `MenuThreeDots`.
3017
+ */
2915
3018
  declare const MenuSelect: React$1.ForwardRefExoticComponent<{
2916
3019
  /** sets the size of the menu select
2917
3020
  * @default 'base'
2918
3021
  */
2919
3022
  size?: "xs" | "sm" | "base" | "md" | "lg";
2920
3023
  children: React.ReactNode;
2921
- } & HTMLAttributes<HTMLButtonElement> & React$1.RefAttributes<HTMLButtonElement>>;
3024
+ } & ButtonHTMLAttributes<HTMLButtonElement> & React$1.RefAttributes<HTMLButtonElement>>;
2922
3025
 
2923
3026
  type SearchableMenuProps = {
2924
3027
  /** Note: this is pre-debounced for your handling enjoyment */
@@ -2929,7 +3032,7 @@ type SearchableMenuProps = {
2929
3032
  disableSearch?: boolean;
2930
3033
  /** Sets the placeholder in the search input */
2931
3034
  searchPlaceholder?: string;
2932
- /** Called when Enter is pressed in the search input and no active menu item handles the event */
3035
+ /** Called when Enter is pressed in the search input and no highlighted menu item handles the event */
2933
3036
  onSearchEnterKeyDown?: () => void;
2934
3037
  } & MenuProps;
2935
3038
  /**
@@ -2949,7 +3052,15 @@ interface SelectableMenuItemProps extends PropsWithChildren<Omit<MenuItemProps,
2949
3052
  */
2950
3053
  isSelectable?: boolean;
2951
3054
  }
2952
- declare function SelectableMenuItem({ selected, children, selectStyles, isSelectable, ...menuItemProps }: SelectableMenuItemProps): _emotion_react_jsx_runtime.JSX.Element;
3055
+ /**
3056
+ * A {@link MenuItem} that displays a selected state via a leading check icon.
3057
+ *
3058
+ * The component forwards refs to the underlying menu item DOM node so that
3059
+ * Base UI's `SubmenuTrigger` (which clones its `render` element and attaches a
3060
+ * ref for positioning/focus management) works correctly when a
3061
+ * SelectableMenuItem is used as a submenu trigger.
3062
+ */
3063
+ declare const SelectableMenuItem: React$1.ForwardRefExoticComponent<Omit<SelectableMenuItemProps, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
2953
3064
 
2954
3065
  type SwatchSize = 'default' | 'small';
2955
3066
  type SwatchVariant = 'swatch-default' | 'swatch-red' | 'swatch-orange' | 'swatch-yellow' | 'swatch-green' | 'swatch-blue' | 'swatch-purple' | 'swatch-pink' | 'swatch-brown' | 'swatch-gray';
@@ -3134,7 +3245,7 @@ type LabelsQuickFilterProps = {
3134
3245
  /** the function to call when the quick filter is closed */
3135
3246
  onClose?: () => void;
3136
3247
  /**
3137
- * Override the Ariakit placement of the dropdown menu.
3248
+ * Override the placement of the dropdown menu.
3138
3249
  * @default 'right-start'
3139
3250
  */
3140
3251
  menuPlacement?: MenuProps['placement'];
@@ -3147,14 +3258,12 @@ type LabelsQuickFilterProps = {
3147
3258
  y?: number;
3148
3259
  width?: number;
3149
3260
  height?: number;
3150
- } | null) | null;
3261
+ }) | null;
3151
3262
  /**
3152
3263
  * Override the updatePosition callback to control when the menu repositions.
3153
3264
  * Pass `null` to disable the built-in default (position freezing) and allow normal repositioning.
3154
3265
  */
3155
- menuUpdatePosition?: ((props: {
3156
- updatePosition: () => Promise<void>;
3157
- }) => void | Promise<void>) | null;
3266
+ menuUpdatePosition?: MenuProps['updatePosition'] | null;
3158
3267
  /** the maximum number of results to display
3159
3268
  * @default 0 (no limit)
3160
3269
  */
@@ -3411,6 +3520,14 @@ declare const Modal: React__default.ForwardRefExoticComponent<Omit<ModalProps, "
3411
3520
  type ModalDialogProps = Omit<ModalProps, 'width'>;
3412
3521
  declare const ModalDialog: React$1.ForwardRefExoticComponent<Omit<ModalDialogProps, "ref"> & React$1.RefAttributes<HTMLDialogElement>>;
3413
3522
 
3523
+ /**
3524
+ * Context for passing a portal container element to child popover/menu components
3525
+ * rendered inside a Modal. This ensures floating elements render into the dialog
3526
+ * instead of document.body, preventing clipping by the modal's overflow.
3527
+ */
3528
+ declare const ModalPortalContext: React$1.Context<HTMLElement | null>;
3529
+ declare function useModalPortalContainer(): HTMLElement | null;
3530
+
3414
3531
  /** Props for {@link ObjectGridContainer}. */
3415
3532
  type ObjectGridContainerProps = {
3416
3533
  /** Number of columns in the grid, passed to CSS `repeat()`.
@@ -3457,6 +3574,8 @@ type ObjectItemProps = {
3457
3574
  cover: ReactNode;
3458
3575
  /** Slot rendered on the right side of the item (e.g. timestamps, status badges). */
3459
3576
  rightSlot?: React.ReactNode;
3577
+ /** Slot for the left component */
3578
+ leftSlot?: React.ReactNode;
3460
3579
  /** Slot for context menu items — pass `<MenuItem />` elements here. When provided, a three-dot menu trigger is rendered automatically. */
3461
3580
  menuItems?: React.ReactNode;
3462
3581
  /** Whether the item is visually marked as selected via `aria-selected`. */
@@ -3466,7 +3585,7 @@ type ObjectItemProps = {
3466
3585
  };
3467
3586
 
3468
3587
  /** Props for {@link ObjectGridItem}. */
3469
- type ObjectGridItemProps = ObjectItemProps & {
3588
+ type ObjectGridItemProps = Omit<ObjectItemProps, 'leftSlot'> & {
3470
3589
  /** Whether the item is visually marked as selected. */
3471
3590
  isSelected?: boolean;
3472
3591
  /** Override the `data-testid` on the context menu trigger button.
@@ -3725,6 +3844,8 @@ type ObjectListItemCoverProps = {
3725
3844
  * @default 'Image not available'
3726
3845
  */
3727
3846
  noImageText?: string;
3847
+ /** (optional) sets the icon to display when there is no image */
3848
+ icon?: IconType | undefined;
3728
3849
  } & HTMLAttributes<HTMLImageElement>;
3729
3850
  /**
3730
3851
  * Thumbnail cover image for use inside {@link ObjectListItem}'s `cover` slot.
@@ -3739,7 +3860,7 @@ type ObjectListItemCoverProps = {
3739
3860
  * />
3740
3861
  * ```
3741
3862
  */
3742
- declare const ObjectListItemCover: ({ imageUrl, noImageText, ...props }: ObjectListItemCoverProps) => _emotion_react_jsx_runtime.JSX.Element;
3863
+ declare const ObjectListItemCover: ({ imageUrl, noImageText, icon, ...props }: ObjectListItemCoverProps) => _emotion_react_jsx_runtime.JSX.Element;
3743
3864
 
3744
3865
  /** Props for {@link ObjectListItemHeading}. */
3745
3866
  type ObjectListItemHeadingProps = Omit<ObjectHeadingProps, 'heading' | 'tooltip'> & HTMLAttributes<HTMLDivElement> & {
@@ -3767,6 +3888,11 @@ type ObjectListItemHeadingProps = Omit<ObjectHeadingProps, 'heading' | 'tooltip'
3767
3888
  */
3768
3889
  declare const ObjectListItemHeading: ({ heading, beforeHeadingSlot, afterHeadingSlot, headingTestId, ...props }: ObjectListItemHeadingProps) => _emotion_react_jsx_runtime.JSX.Element;
3769
3890
 
3891
+ type ObjectListSubTextProps = {
3892
+ children: React.ReactNode;
3893
+ } & React.HTMLAttributes<HTMLDivElement>;
3894
+ declare const ObjectListSubText: ({ children, ...props }: ObjectListSubTextProps) => _emotion_react_jsx_runtime.JSX.Element;
3895
+
3770
3896
  declare function Pagination({ limit, offset, total, onPageChange, }: {
3771
3897
  limit: number;
3772
3898
  offset: number;
@@ -4448,8 +4574,7 @@ declare const ParameterToggleInner: React$1.ForwardRefExoticComponent<Omit<React
4448
4574
  withoutIndeterminateState?: boolean;
4449
4575
  } & React$1.RefAttributes<HTMLInputElement>>;
4450
4576
 
4451
- type PopoverProps = Omit<PopoverProps$1, 'unmountOnHide'> & {
4452
- /** sets the aria-controls and id value of the matching popover set */
4577
+ type PopoverProps = Pick<React.HTMLAttributes<HTMLDivElement>, 'className' | 'style' | 'tabIndex' | 'id'> & {
4453
4578
  /** sets the icon color
4454
4579
  * @default 'action'
4455
4580
  */
@@ -4469,7 +4594,7 @@ type PopoverProps = Omit<PopoverProps$1, 'unmountOnHide'> & {
4469
4594
  /** sets the placement of the popover
4470
4595
  * @default 'bottom'
4471
4596
  */
4472
- placement?: PopoverProviderProps['placement'];
4597
+ placement?: Placement;
4473
4598
  /** sets a test id for e2e tests */
4474
4599
  testId?: string;
4475
4600
  children: ReactNode;
@@ -4486,15 +4611,36 @@ type PopoverProps = Omit<PopoverProps$1, 'unmountOnHide'> & {
4486
4611
  * @default 'small'
4487
4612
  */
4488
4613
  variant?: 'large' | 'small';
4614
+ /**
4615
+ * Distance between the anchor and the popover in pixels.
4616
+ * @default 0
4617
+ */
4618
+ gutter?: number;
4619
+ /**
4620
+ * Whether to render the popover in a portal.
4621
+ * @default true
4622
+ */
4623
+ portal?: boolean;
4624
+ /** Controls the popover open state externally. */
4625
+ open?: boolean;
4626
+ /** Called when the popover open state changes. */
4627
+ onOpenChange?: (open: boolean) => void;
4628
+ /** Disables the popover trigger */
4629
+ disabled?: boolean;
4489
4630
  };
4490
- declare const Popover: ({ iconColor, icon, iconSize, buttonText, ariaLabel, placement, testId, trigger, children, onInit, variant, maxWidth, ...otherProps }: PopoverProps) => _emotion_react_jsx_runtime.JSX.Element;
4631
+ interface PopoverComponentContextValue {
4632
+ open: boolean;
4633
+ setOpen: (open: boolean) => void;
4634
+ hide: () => void;
4635
+ show: () => void;
4636
+ }
4637
+ declare const Popover: ({ iconColor, icon, iconSize, buttonText, ariaLabel, placement, testId, trigger, children, onInit, variant, maxWidth, gutter, portal, open: controlledOpen, onOpenChange: controlledOnOpenChange, className, style, tabIndex, id, disabled, }: PopoverProps) => _emotion_react_jsx_runtime.JSX.Element;
4491
4638
  /**
4492
- * Hook to get the current popover context
4493
- * @description This hook is used to get the current popover context
4494
- * useful for closing the popover with a nested button or interactive element
4495
- * @example const currentPopoverContext = usePopoverComponentContext();
4639
+ * Hook to get the current popover context.
4640
+ * Useful for closing the popover with a nested button or interactive element.
4641
+ * @example const popoverContext = usePopoverComponentContext();
4496
4642
  */
4497
- declare const usePopoverComponentContext: () => PopoverStore | undefined;
4643
+ declare const usePopoverComponentContext: () => PopoverComponentContextValue | null;
4498
4644
 
4499
4645
  type PopoverBodyProps = React.HTMLAttributes<HTMLDivElement> & {
4500
4646
  /**
@@ -4645,7 +4791,7 @@ type QuickFilterProps = {
4645
4791
  /** the function to call when the quick filter is closed */
4646
4792
  onClose?: () => void;
4647
4793
  /**
4648
- * Override the Ariakit placement of the dropdown menu.
4794
+ * Override the placement of the dropdown menu.
4649
4795
  * @default 'right-start'
4650
4796
  */
4651
4797
  menuPlacement?: MenuProps['placement'];
@@ -4659,15 +4805,13 @@ type QuickFilterProps = {
4659
4805
  y?: number;
4660
4806
  width?: number;
4661
4807
  height?: number;
4662
- } | null) | null;
4808
+ }) | null;
4663
4809
  /**
4664
4810
  * Override the updatePosition callback to control when the menu repositions.
4665
4811
  * Pass `null` to disable the built-in default (position freezing) and allow normal repositioning.
4666
4812
  * @default Freezes position after initial placement
4667
4813
  */
4668
- menuUpdatePosition?: ((props: {
4669
- updatePosition: () => Promise<void>;
4670
- }) => void | Promise<void>) | null;
4814
+ menuUpdatePosition?: MenuProps['updatePosition'] | null;
4671
4815
  /** Called when Enter is pressed in the search input and no active menu item handles the event */
4672
4816
  onSearchEnterKeyDown?: () => void;
4673
4817
  };
@@ -4943,30 +5087,57 @@ declare const TableRow: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedH
4943
5087
  declare const TableCellHead: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.ThHTMLAttributes<HTMLTableHeaderCellElement>, HTMLTableHeaderCellElement>, "ref"> & React$1.RefAttributes<HTMLTableCellElement>>;
4944
5088
  declare const TableCellData: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.TdHTMLAttributes<HTMLTableDataCellElement>, HTMLTableDataCellElement>, "ref"> & React$1.RefAttributes<HTMLTableCellElement>>;
4945
5089
 
4946
- declare const useCurrentTab: () => _ariakit_react.TabStore;
5090
+ interface TabsContextValue {
5091
+ value: string | undefined;
5092
+ setValue: (value: string | undefined) => void;
5093
+ }
5094
+ /** Returns the current tabs context with `value` and `setValue`. Must be used inside `<Tabs>`. */
5095
+ declare const useCurrentTab: () => TabsContextValue;
4947
5096
  type TabsProps<TTabName extends string = string> = {
4948
5097
  children: React__default.ReactNode;
4949
5098
  selectedId?: TTabName;
4950
5099
  manual?: boolean;
4951
- orientation?: TabStoreState['orientation'];
5100
+ orientation?: 'horizontal' | 'vertical';
4952
5101
  onSelectedIdChange?: (tabName: TTabName | undefined) => void;
4953
5102
  /**
4954
5103
  * @deprecated you can control the route state on the application level.
4955
5104
  */
4956
5105
  useHashForState?: boolean;
5106
+ /** Forwarded to the root element. Receives the `className` generated by Emotion's `css` prop. */
5107
+ className?: string;
5108
+ /** Forwarded to the root element. */
5109
+ style?: React__default.CSSProperties;
5110
+ };
5111
+ declare const Tabs: <TTabName extends string = string>({ children, onSelectedIdChange, useHashForState, selectedId, manual, orientation, className, style, }: TabsProps<TTabName>) => _emotion_react_jsx_runtime.JSX.Element;
5112
+ type TabButtonGroupProps = React__default.HTMLAttributes<HTMLDivElement> & {
5113
+ children?: React__default.ReactNode;
4957
5114
  };
4958
- declare const Tabs: <TTabName extends string = string>({ children, onSelectedIdChange, useHashForState, selectedId, manual, ...props }: TabsProps<TTabName>) => _emotion_react_jsx_runtime.JSX.Element;
4959
- declare const TabButtonGroup: ({ children, ...props }: Partial<TabListProps>) => _emotion_react_jsx_runtime.JSX.Element;
4960
- type TabButtonProps<TTabName extends string = string> = Partial<TabProps> & {
5115
+ declare const TabButtonGroup: ({ children, ...props }: TabButtonGroupProps) => _emotion_react_jsx_runtime.JSX.Element;
5116
+ type TabButtonProps<TTabName extends string = string> = React__default.ButtonHTMLAttributes<HTMLButtonElement> & {
4961
5117
  id: TTabName;
4962
5118
  children: React__default.ReactNode;
4963
5119
  };
4964
5120
  declare const TabButton: <TTabName extends string = string>({ children, id, ...props }: TabButtonProps<TTabName>) => _emotion_react_jsx_runtime.JSX.Element;
4965
- type TabContentProps<TTabName extends string = string> = Partial<TabPanelProps> & {
5121
+ type TabContentProps<TTabName extends string = string> = Omit<React__default.HTMLAttributes<HTMLDivElement>, 'id'> & {
5122
+ /**
5123
+ * When `tabId` is not set, this identifies which tab the panel belongs to.
5124
+ * When `tabId` IS set, this is just the HTML `id` attribute on the panel element.
5125
+ * @deprecated Pass `tabId` for tab identification; use `id` only as an HTML id.
5126
+ */
5127
+ id?: TTabName | (string & {});
5128
+ /** Identifies which tab this content panel belongs to. Matches the `id` on the corresponding `TabButton`. */
4966
5129
  tabId?: TTabName;
5130
+ /**
5131
+ * Whether to keep the panel mounted in the DOM when its tab is inactive.
5132
+ * Defaults to `true` so that embedded forms (e.g. Formik with debounced
5133
+ * auto-submit) preserve their state and pending work across tab switches.
5134
+ * Pass `false` only when you explicitly want inactive panels unmounted.
5135
+ * @default true
5136
+ */
5137
+ keepMounted?: boolean;
4967
5138
  children: React__default.ReactNode;
4968
5139
  };
4969
- declare const TabContent: <TTabName extends string = string>({ children, ...props }: TabContentProps<TTabName>) => _emotion_react_jsx_runtime.JSX.Element;
5140
+ declare const TabContent: <TTabName extends string = string>({ children, tabId, id, keepMounted, ...props }: TabContentProps<TTabName>) => _emotion_react_jsx_runtime.JSX.Element;
4970
5141
 
4971
5142
  type CreateTeamIntegrationTileProps = React.HTMLAttributes<HTMLDivElement> & {
4972
5143
  /** (optional) sets the title value
@@ -5265,4 +5436,4 @@ declare const StatusBullet: ({ status, hideText, size, message, compact, ...prop
5265
5436
 
5266
5437
  declare const actionBarVisibilityStyles: _emotion_react.SerializedStyles;
5267
5438
 
5268
- export { type ActionButtonsProps, AddButton, type AddButtonProps, AddListButton, type AddListButtonProps, type AddListButtonThemeProps, AsideAndSectionLayout, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, Banner, type BannerProps, type BannerType, BetaDecorator, type BoxHeightProps, type BreakpointSize, type BreakpointsMap, Button, type ButtonProps, type ButtonSizeProps, type ButtonSoftThemeProps, type ButtonThemeProps, ButtonWithMenu, type ButtonWithMenuProps, Calendar, type CalendarCellCss, type CalendarProps, type CalendarStyles, Callout, type CalloutProps, type CalloutType, Caption, type CaptionProps, Card, CardContainer, type CardContainerBgColorProps, type CardContainerProps, type CardProps, CardTitle, type CardTitleProps, CheckboxWithInfo, type CheckboxWithInforProps, type ChildFunction, Chip, type ChipProps, type ChipTheme, type ComboBoxGroupBase, type ComboBoxSelectableGroup, type ComboBoxSelectableItem, type ComboBoxSelectableOption, Container, type ContainerProps, type ConvertComboBoxGroupsToSelectableGroupsOptions, Counter, type CounterBgColors, type CounterIconColors, type CounterProps, CreateTeamIntegrationTile, type CreateTeamIntegrationTileProps, CurrentDrawerContext, DashedBox, type DashedBoxProps, DateTimePicker, type DateTimePickerProps, DateTimePickerSummary, type DateTimePickerValue, DateTimePickerVariant, DebouncedInputKeywordSearch, type DebouncedInputKeywordSearchProps, DescriptionList, type DescriptionListProps, Details, type DetailsProps, DismissibleChipAction, DragHandle, type DraggableHandleProps, Drawer, DrawerContent, type DrawerContentProps, type DrawerContextValue, type DrawerItem, type DrawerProps, DrawerProvider, DrawerRenderer, type DrawerRendererItemProps, type DrawerRendererProps, type DrawersRegistryRecord, DropdownStyleMenuTrigger, type DropdownStyleMenuTriggerProps, EditTeamIntegrationTile, type EditTeamIntegrationTileProps, ErrorMessage, type ErrorMessageProps, FieldMessage, type FieldMessageProps, Fieldset, type FieldsetProps, FilterChip, FlexiCard, FlexiCardTitle, type GroupedOption, Heading, type HeadingProps, HexModalBackground, HorizontalRhythm, Icon, IconButton, type IconButtonProps, type IconColor, type IconName, type IconProps, type IconType, IconsProvider, Image, ImageBroken, type ImageProps, InfoMessage, type InfoMessageProps, Input, InputComboBox, type InputComboBoxOption, type InputComboBoxProps, InputCreatableComboBox, type InputCreatableComboBoxProps, InputInlineSelect, type InputInlineSelectOption, type InputInlineSelectProps, InputKeywordSearch, type InputKeywordSearchProps, type InputProps, InputSelect, type InputSelectProps, InputTime, type InputTimeProps, InputToggle, type InputToggleProps, IntegrationComingSoon, type IntegrationComingSoonProps, IntegrationLoadingTile, type IntegrationLoadingTileProps, IntegrationModalHeader, type IntegrationModalHeaderProps, IntegrationModalIcon, type IntegrationModalIconProps, IntegrationTile, type IntegrationTileProps, type IsoDateString, type IsoDateTimeString, type IsoTimeString, JsonEditor, type JsonEditorProps, KeyValueInput, type KeyValueInputProps, type KeyValueItem, Label, LabelLeadingIcon, type LabelLeadingIconProps, type LabelOption, type LabelProps, LabelsQuickFilter, type LabelsQuickFilterItem, type LabelsQuickFilterProps, Legend, type LegendProps, type LevelProps, LimitsBar, type LimitsBarProps, Link, LinkButton, type LinkButtonProps, type LinkColorProps, LinkList, type LinkListProps, type LinkManagerWithRefType, LinkNode, type LinkProps, LinkTile, type LinkTileWithRefProps, LinkWithRef, LoadingCardSkeleton, LoadingIcon, type LoadingIconProps, LoadingIndicator, LoadingOverlay, type LoadingOverlayProps, Menu, MenuButton, type MenuButtonProp, MenuGroup, type MenuGroupProps, MenuItem, MenuItemEmptyIcon, MenuItemIcon, MenuItemInner, type MenuItemProps, MenuItemSeparator, type MenuItemTextThemeProps, type MenuProps, MenuSelect, MenuThreeDots, type MenuThreeDotsProps, Modal, ModalDialog, type ModalDialogProps, type ModalProps, MultilineChip, type MultilineChipProps, ObjectGridContainer, type ObjectGridContainerProps, ObjectGridItem, ObjectGridItemCardCover, type ObjectGridItemCardCoverProps, ObjectGridItemCover, ObjectGridItemCoverButton, type ObjectGridItemCoverButtonProps, type ObjectGridItemCoverProps, ObjectGridItemHeading, ObjectGridItemIconWithTooltip, type ObjectGridItemIconWithTooltipProps, ObjectGridItemLoadingSkeleton, type ObjectGridItemProps, type ObjectGridItemTitleProps, ObjectItemLoadingSkeleton, type ObjectItemLoadingSkeletonProps, ObjectListItem, ObjectListItemContainer, ObjectListItemCover, type ObjectListItemCoverProps, ObjectListItemHeading, type ObjectListItemHeadingProps, type ObjectListItemProps, PageHeaderSection, type PageHeaderSectionProps, Pagination, Paragraph, type ParagraphProps, ParameterActionButton, type ParameterActionButtonProps, ParameterDrawerHeader, type ParameterDrawerHeaderProps, ParameterGroup, type ParameterGroupProps, ParameterImage, ParameterImageInner, ParameterImagePreview, type ParameterImageProps, ParameterInput, ParameterInputInner, type ParameterInputProps, ParameterLabel, type ParameterLabelProps, ParameterLabels, ParameterLabelsInner, ParameterLink, ParameterLinkInner, type ParameterLinkProps, ParameterMenuButton, type ParameterMenuButtonProps, ParameterMultiSelect, ParameterMultiSelectInner, type ParameterMultiSelectOption, type ParameterMultiSelectProps, ParameterNameAndPublicIdInput, type ParameterNameAndPublicIdInputProps, ParameterNumberSlider, ParameterNumberSliderInner, type ParameterNumberSliderProps, ParameterOverrideMarker, ParameterRichText, ParameterRichTextInner, type ParameterRichTextInnerProps, type ParameterRichTextProps, ParameterSelect, ParameterSelectInner, type ParameterSelectProps, ParameterSelectSlider, ParameterSelectSliderInner, type ParameterSelectSliderProps, ParameterShell, ParameterShellContext, ParameterShellPlaceholder, type ParameterShellProps, ParameterTextarea, ParameterTextareaInner, type ParameterTextareaProps, ParameterToggle, ParameterToggleInner, type ParameterToggleProps, Popover, PopoverBody, type PopoverBodyProps, type PopoverProps, ProgressBar, type ProgressBarProps, ProgressList, ProgressListItem, type ProgressListItemProps, type ProgressListProps, QuickFilter, type QuickFilterSelectedItem, type RegisterDrawerProps, ResolveIcon, type ResolveIconProps, ResponsiveTableContainer, type RhythmProps, type RichTextParamValue, RichTextToolbarIcon, type ScrollableItemProps, ScrollableList, type ScrollableListContainerProps, ScrollableListInputItem, ScrollableListItem, type ScrollableListItemProps, type ScrollableListProps, SearchableMenu, type SearchableMenuProps, SegmentedControl, type SegmentedControlOption, type SegmentedControlProps, SelectableMenuItem, type SelectableMenuItemProps, type SerializedLinkNode, type ShortcutReference, Skeleton, type SkeletonProps, Slider, SliderLabels, type SliderLabelsProps, type SliderOption, type SliderProps, Spinner, StackedModal, type StackedModalProps, StackedModalStep, type StackedModalStepProps, StatusBullet, type StatusBulletProps, type StatusTypeProps, type StepTransitionState, SuccessMessage, type SuccessMessageProps, Swatch, SwatchComboBox, SwatchComboBoxLabelStyles, SwatchLabel, type SwatchLabelProps, SwatchLabelRemoveButton, SwatchLabelTooltip, type SwatchProps, type SwatchSize, type SwatchVariant, Switch, type SwitchProps, TAKEOVER_STACK_ID, TabButton, TabButtonGroup, type TabButtonProps, TabContent, type TabContentProps, Table, TableBody, type TableBodyProps, TableCellData, type TableCellDataProps, TableCellHead, type TableCellHeadProps, TableFoot, type TableFootProps, TableHead, type TableHeadProps, type TableProps, TableRow, type TableRowProps, Tabs, type TabsProps, TakeoverDrawerRenderer, type TextAlignProps, Textarea, type TextareaProps, Theme, type ThemeProps, type TickMark, Tile, TileContainer, type TileContainerProps, type TileProps, TileText, type TileTitleProps, ToastContainer, type ToastContainerProps, Tooltip, type TooltipProps, TwoColumnLayout, type TwoColumnLayoutProps, UniformBadge, UniformLogo, UniformLogoLarge, type UniformLogoProps, type UseShortcutOptions, type UseShortcutResult, VerticalRhythm, WarningMessage, type WarningMessageProps, accessibleHidden, actionBarVisibilityStyles, addPathSegmentToPathname, borderTopIcon, breakpoints, button, buttonAccentAltDark, buttonAccentAltDarkOutline, buttonDestructive, buttonDisabled, buttonGhost, buttonGhostDestructive, buttonGhostUnimportant, buttonPrimary, buttonPrimaryInvert, buttonRippleEffect, buttonSecondary, buttonSecondaryInvert, buttonSoftAccentPrimary, buttonSoftAlt, buttonSoftDestructive, buttonSoftPrimary, buttonSoftTertiary, buttonTertiary, buttonTertiaryOutline, buttonUnimportant, canvasAlertIcon, cardIcon, chatIcon, convertComboBoxGroupsToSelectableGroups, cq, customIcons, debounce, extractParameterProps, fadeIn, fadeInBottom, fadeInLtr, fadeInRtl, fadeInTop, fadeOutBottom, fullWidthScreenIcon, getButtonSize, getButtonStyles, getComboBoxSelectedSelectableGroups, getDrawerAttributes, getFormattedShortcut, getParentPath, getPathSegment, growSubtle, imageTextIcon, infoFilledIcon, input, inputError, inputSelect, isSecureURL, isValidUrl, jsonIcon, labelText, mq, numberInput, prefersReducedMotion, queryStringIcon, rectangleRoundedIcon, replaceUnderscoreInString, richTextToolbarButton, richTextToolbarButtonActive, ripple, scrollbarStyles, settings, settingsIcon, skeletonLoading, slideInRtl, slideInTtb, spin, structurePanelIcon, supports, swatchColors, swatchVariant, textInput, uniformAiIcon, uniformComponentIcon, uniformComponentPatternIcon, uniformCompositionPatternIcon, uniformConditionalValuesIcon, uniformContentTypeIcon, uniformEntryIcon, uniformEntryPatternIcon, uniformLocaleDisabledIcon, uniformLocaleIcon, uniformStatusDraftIcon, uniformStatusModifiedIcon, uniformStatusPublishedIcon, uniformUsageStatusIcon, useBreakpoint, useButtonStyles, useCloseCurrentDrawer, useCurrentDrawer, useCurrentTab, useDateTimePickerContext, useDrawer, useIconContext, useImageLoadFallback, useOutsideClick, useParameterShell, usePopoverComponentContext, useRichTextToolbarState, useShortcut, useStackedModal, functionalColors as utilityColors, warningIcon, yesNoIcon, zigZag, zigZagThick };
5439
+ export { type ActionButtonsProps, AddButton, type AddButtonProps, AddListButton, type AddListButtonProps, type AddListButtonThemeProps, AsideAndSectionLayout, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, Banner, type BannerProps, type BannerType, BetaDecorator, type BoxHeightProps, type BreakpointSize, type BreakpointsMap, Button, type ButtonProps, type ButtonSizeProps, type ButtonSoftThemeProps, type ButtonThemeProps, ButtonWithMenu, type ButtonWithMenuProps, Calendar, type CalendarCellCss, type CalendarProps, type CalendarStyles, Callout, type CalloutProps, type CalloutType, Caption, type CaptionProps, Card, CardContainer, type CardContainerBgColorProps, type CardContainerProps, type CardProps, CardTitle, type CardTitleProps, CheckboxWithInfo, type CheckboxWithInforProps, type ChildFunction, Chip, type ChipProps, type ChipTheme, type ComboBoxGroupBase, type ComboBoxSelectableGroup, type ComboBoxSelectableItem, type ComboBoxSelectableOption, Container, type ContainerProps, type ConvertComboBoxGroupsToSelectableGroupsOptions, Counter, type CounterBgColors, type CounterIconColors, type CounterProps, CreateTeamIntegrationTile, type CreateTeamIntegrationTileProps, CurrentDrawerContext, DashedBox, type DashedBoxProps, DateTimePicker, type DateTimePickerProps, DateTimePickerSummary, type DateTimePickerValue, DateTimePickerVariant, DebouncedInputKeywordSearch, type DebouncedInputKeywordSearchProps, DescriptionList, type DescriptionListProps, Details, type DetailsProps, DismissibleChipAction, DragHandle, type DraggableHandleProps, Drawer, DrawerContent, type DrawerContentProps, type DrawerContextValue, type DrawerItem, type DrawerProps, DrawerProvider, DrawerRenderer, type DrawerRendererItemProps, type DrawerRendererProps, type DrawersRegistryRecord, DropdownStyleMenuTrigger, type DropdownStyleMenuTriggerProps, EditTeamIntegrationTile, type EditTeamIntegrationTileProps, ErrorMessage, type ErrorMessageProps, FieldMessage, type FieldMessageProps, Fieldset, type FieldsetProps, FilterChip, FlexiCard, FlexiCardTitle, type GroupedOption, Heading, type HeadingProps, HorizontalRhythm, Icon, IconButton, type IconButtonProps, type IconColor, type IconName, type IconProps, type IconType, IconsProvider, Image, ImageBroken, type ImageProps, InfoMessage, type InfoMessageProps, Input, InputComboBox, type InputComboBoxOption, type InputComboBoxProps, InputCreatableComboBox, type InputCreatableComboBoxProps, InputInlineSelect, type InputInlineSelectOption, type InputInlineSelectProps, InputKeywordSearch, type InputKeywordSearchProps, type InputProps, InputSelect, type InputSelectProps, InputTime, type InputTimeProps, InputToggle, type InputToggleProps, IntegrationComingSoon, type IntegrationComingSoonProps, IntegrationLoadingTile, type IntegrationLoadingTileProps, IntegrationModalHeader, type IntegrationModalHeaderProps, IntegrationModalIcon, type IntegrationModalIconProps, IntegrationTile, type IntegrationTileProps, type IsoDateString, type IsoDateTimeString, type IsoTimeString, JsonEditor, type JsonEditorProps, KeyValueInput, type KeyValueInputProps, type KeyValueItem, Label, LabelLeadingIcon, type LabelLeadingIconProps, type LabelOption, type LabelProps, LabelsQuickFilter, type LabelsQuickFilterItem, type LabelsQuickFilterProps, Legend, type LegendProps, type LevelProps, LimitsBar, type LimitsBarProps, Link, LinkButton, type LinkButtonProps, type LinkColorProps, LinkList, type LinkListProps, type LinkManagerWithRefType, LinkNode, type LinkProps, LinkTile, type LinkTileWithRefProps, LinkWithRef, LoadingCardSkeleton, LoadingIcon, type LoadingIconProps, LoadingIndicator, LoadingOverlay, type LoadingOverlayProps, Menu, MenuButton, type MenuButtonProp, MenuGroup, type MenuGroupProps, MenuItem, MenuItemEmptyIcon, MenuItemIcon, MenuItemInner, type MenuItemProps, MenuItemSeparator, type MenuItemTextThemeProps, type MenuProps, MenuSelect, MenuThreeDots, type MenuThreeDotsProps, Modal, ModalDialog, type ModalDialogProps, ModalPortalContext, type ModalProps, MultilineChip, type MultilineChipProps, ObjectGridContainer, type ObjectGridContainerProps, ObjectGridItem, ObjectGridItemCardCover, type ObjectGridItemCardCoverProps, ObjectGridItemCover, ObjectGridItemCoverButton, type ObjectGridItemCoverButtonProps, type ObjectGridItemCoverProps, ObjectGridItemHeading, ObjectGridItemIconWithTooltip, type ObjectGridItemIconWithTooltipProps, ObjectGridItemLoadingSkeleton, type ObjectGridItemProps, type ObjectGridItemTitleProps, ObjectItemLoadingSkeleton, type ObjectItemLoadingSkeletonProps, ObjectListItem, ObjectListItemContainer, ObjectListItemCover, type ObjectListItemCoverProps, ObjectListItemHeading, type ObjectListItemHeadingProps, type ObjectListItemProps, ObjectListSubText, PageHeaderSection, type PageHeaderSectionProps, Pagination, Paragraph, type ParagraphProps, ParameterActionButton, type ParameterActionButtonProps, ParameterDrawerHeader, type ParameterDrawerHeaderProps, ParameterGroup, type ParameterGroupProps, ParameterImage, ParameterImageInner, ParameterImagePreview, type ParameterImageProps, ParameterInput, ParameterInputInner, type ParameterInputProps, ParameterLabel, type ParameterLabelProps, ParameterLabels, ParameterLabelsInner, ParameterLink, ParameterLinkInner, type ParameterLinkProps, ParameterMenuButton, type ParameterMenuButtonProps, ParameterMultiSelect, ParameterMultiSelectInner, type ParameterMultiSelectOption, type ParameterMultiSelectProps, ParameterNameAndPublicIdInput, type ParameterNameAndPublicIdInputProps, ParameterNumberSlider, ParameterNumberSliderInner, type ParameterNumberSliderProps, ParameterOverrideMarker, ParameterRichText, ParameterRichTextInner, type ParameterRichTextInnerProps, type ParameterRichTextProps, ParameterSelect, ParameterSelectInner, type ParameterSelectProps, ParameterSelectSlider, ParameterSelectSliderInner, type ParameterSelectSliderProps, ParameterShell, ParameterShellContext, ParameterShellPlaceholder, type ParameterShellProps, ParameterTextarea, ParameterTextareaInner, type ParameterTextareaProps, ParameterToggle, ParameterToggleInner, type ParameterToggleProps, Popover, PopoverBody, type PopoverBodyProps, type PopoverProps, type PopoverStore, ProgressBar, type ProgressBarProps, ProgressList, ProgressListItem, type ProgressListItemProps, type ProgressListProps, QuickFilter, type QuickFilterSelectedItem, type RegisterDrawerProps, ResolveIcon, type ResolveIconProps, ResponsiveTableContainer, type RhythmProps, type RichTextParamValue, RichTextToolbarIcon, type ScrollableItemProps, ScrollableList, type ScrollableListContainerProps, ScrollableListInputItem, ScrollableListItem, type ScrollableListItemProps, type ScrollableListProps, SearchableMenu, type SearchableMenuProps, SegmentedControl, type SegmentedControlOption, type SegmentedControlProps, SelectableMenuItem, type SelectableMenuItemProps, type SerializedLinkNode, type ShortcutReference, Skeleton, type SkeletonProps, Slider, SliderLabels, type SliderLabelsProps, type SliderOption, type SliderProps, Spinner, StackedModal, type StackedModalProps, StackedModalStep, type StackedModalStepProps, StatusBullet, type StatusBulletProps, type StatusTypeProps, type StepTransitionState, SuccessMessage, type SuccessMessageProps, Swatch, SwatchComboBox, SwatchComboBoxLabelStyles, SwatchLabel, type SwatchLabelProps, SwatchLabelRemoveButton, SwatchLabelTooltip, type SwatchProps, type SwatchSize, type SwatchVariant, Switch, type SwitchProps, TAKEOVER_STACK_ID, TabButton, TabButtonGroup, type TabButtonGroupProps, type TabButtonProps, TabContent, type TabContentProps, Table, TableBody, type TableBodyProps, TableCellData, type TableCellDataProps, TableCellHead, type TableCellHeadProps, TableFoot, type TableFootProps, TableHead, type TableHeadProps, type TableProps, TableRow, type TableRowProps, Tabs, type TabsProps, TakeoverDrawerRenderer, type TextAlignProps, Textarea, type TextareaProps, Theme, type ThemeProps, type TickMark, Tile, TileContainer, type TileContainerProps, type TileProps, TileText, type TileTitleProps, ToastContainer, type ToastContainerProps, Tooltip, type TooltipProps, TwoColumnLayout, type TwoColumnLayoutProps, UniformBadge, UniformLogo, UniformLogoLarge, type UniformLogoProps, type UseShortcutOptions, type UseShortcutResult, VerticalRhythm, WarningMessage, type WarningMessageProps, accessibleHidden, actionBarVisibilityStyles, addPathSegmentToPathname, borderTopIcon, breakpoints, button, buttonAccentAltDark, buttonAccentAltDarkOutline, buttonDestructive, buttonDisabled, buttonGhost, buttonGhostDestructive, buttonGhostUnimportant, buttonPrimary, buttonPrimaryInvert, buttonRippleEffect, buttonSecondary, buttonSecondaryInvert, buttonSoftAccentPrimary, buttonSoftAlt, buttonSoftDestructive, buttonSoftPrimary, buttonSoftTertiary, buttonTertiary, buttonTertiaryOutline, buttonUnimportant, canvasAlertIcon, cardIcon, chatIcon, convertComboBoxGroupsToSelectableGroups, cq, customIcons, debounce, extractParameterProps, fadeIn, fadeInBottom, fadeInLtr, fadeInRtl, fadeInTop, fadeOutBottom, fullWidthScreenIcon, getButtonSize, getButtonStyles, getComboBoxSelectedSelectableGroups, getDrawerAttributes, getFormattedShortcut, getParentPath, getPathSegment, growSubtle, imageTextIcon, infoFilledIcon, input, inputError, inputSelect, isSecureURL, isValidUrl, jsonIcon, labelText, mq, numberInput, prefersReducedMotion, queryStringIcon, rectangleRoundedIcon, replaceUnderscoreInString, richTextToolbarButton, richTextToolbarButtonActive, ripple, scrollbarStyles, settings, settingsIcon, skeletonLoading, slideInRtl, slideInTtb, spin, structurePanelIcon, supports, swatchColors, swatchVariant, textInput, uniformAiIcon, uniformComponentIcon, uniformComponentPatternIcon, uniformCompositionPatternIcon, uniformConditionalValuesIcon, uniformContentTypeIcon, uniformEntryIcon, uniformEntryPatternIcon, uniformLocaleDisabledIcon, uniformLocaleIcon, uniformStatusDraftIcon, uniformStatusModifiedIcon, uniformStatusPublishedIcon, uniformUsageStatusIcon, useBreakpoint, useButtonStyles, useCloseCurrentDrawer, useCurrentDrawer, useCurrentTab, useDateTimePickerContext, useDrawer, useIconContext, useImageLoadFallback, useIsSubmenuTriggerMode, useModalPortalContainer, useOutsideClick, useParameterShell, usePopoverComponentContext, useRichTextToolbarState, useShortcut, useStackedModal, functionalColors as utilityColors, warningIcon, yesNoIcon, zigZag, zigZagThick };