@uniformdev/design-system 20.49.3 → 20.49.4-alpha.124

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
@@ -1,8 +1,8 @@
1
1
  import * as _emotion_react_jsx_runtime from '@emotion/react/jsx-runtime';
2
2
  import { Decorator } from '@storybook/react-vite';
3
3
  import * as React$1 from 'react';
4
- import React__default, { RefObject, ReactElement, HTMLAttributes, ReactNode, ButtonHTMLAttributes, ImgHTMLAttributes, SVGProps, InputHTMLAttributes, CSSProperties, Ref, HtmlHTMLAttributes, PropsWithChildren, FocusEventHandler, ChangeEvent } from 'react';
5
- import { GroupBase, Props, MultiValue, SingleValue } from 'react-select';
4
+ import React__default, { RefObject, ReactElement, HTMLAttributes, ReactNode, ButtonHTMLAttributes, ImgHTMLAttributes, SVGProps, InputHTMLAttributes, HtmlHTMLAttributes, PropsWithChildren, CSSProperties, Ref, FocusEventHandler, ChangeEvent } from 'react';
5
+ import { GroupBase, Props, MultiValue, SingleValue, StylesConfig } from 'react-select';
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 } from '@emotion/react';
@@ -589,6 +589,19 @@ type ButtonWithVariantProps = Omit<ButtonProps, 'buttonType'> & {
589
589
  */
590
590
  declare const Button: React$1.ForwardRefExoticComponent<(Omit<ButtonProps, "ref"> | Omit<ButtonWithVariantProps, "ref">) & React$1.RefAttributes<HTMLButtonElement>>;
591
591
 
592
+ type LinkButtonProps = ButtonProps$1 & {
593
+ /** React child node */
594
+ children?: React$1.ReactNode;
595
+ /** (optional) sets whether the link is truncated or not */
596
+ truncated?: boolean;
597
+ };
598
+ /**
599
+ * @deprecated - Beta - A button styled as a link with ghost-like appearance.
600
+ * Features no padding, left-aligned content, text truncation, and no background hover color.
601
+ * @example <LinkButton onClick={() => {}}>Click me</LinkButton>
602
+ */
603
+ declare const LinkButton: React$1.ForwardRefExoticComponent<Omit<LinkButtonProps, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
604
+
592
605
  declare const rectangleRoundedIcon: IconType$1;
593
606
  declare const cardIcon: IconType$1;
594
607
  declare const imageTextIcon: IconType$1;
@@ -2710,209 +2723,6 @@ type KeyValueInputProps<TValue extends string = string> = {
2710
2723
  */
2711
2724
  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;
2712
2725
 
2713
- type AsideAndSectionLayout = {
2714
- /** sets child components in the aside / supporting column */
2715
- sidebar?: ReactNode;
2716
- /** sets child components in the section / main content column */
2717
- children: ReactNode;
2718
- /** Makes the sidebar sticky to the top of the container
2719
- * @default false
2720
- */
2721
- isStickyAside?: boolean;
2722
- };
2723
- declare const AsideAndSectionLayout: ({ sidebar, children, isStickyAside, }: AsideAndSectionLayout) => _emotion_react_jsx_runtime.JSX.Element;
2724
-
2725
- type SpacingProp = '0' | '2xs' | 'xs' | 'sm' | 'base' | 'md' | 'lg' | 'xl' | '2xl';
2726
- type BackgroundColorProp = 'transparent' | 'white' | 'gray-50' | 'gray-100' | 'gray-200' | 'gray-300' | 'gray-400' | 'gray-500' | 'gray-600' | 'gray-700' | 'gray-800' | 'gray-900';
2727
- type HtmlTagProps = 'div' | 'section' | 'article' | 'aside' | 'span';
2728
- type BorderRadiusProps = 'rounded-sm' | 'rounded-base' | 'rounded-md';
2729
- type CommonContainerProps = {
2730
- /** sets the background color of the element */
2731
- backgroundColor?: BackgroundColorProp;
2732
- /** sets border: 1px solid var(--gray-300)*/
2733
- border?: boolean;
2734
- /** sets the border radius of the element */
2735
- rounded?: BorderRadiusProps;
2736
- /** sets the padding of the element */
2737
- padding?: string;
2738
- /** sets the margin of the element */
2739
- margin?: string;
2740
- };
2741
- type RhythmProps = React.HTMLAttributes<HTMLDivElement | HTMLFieldSetElement> & {
2742
- /** sets the wrapping html tag
2743
- * @default 'div'
2744
- */
2745
- tag?: HtmlTagProps | 'fieldset';
2746
- /** sets the spacing between each element
2747
- * @default 'div'
2748
- */
2749
- gap?: SpacingProp;
2750
- /** sets the alignment of elements
2751
- * @default normal browser behaviour
2752
- */
2753
- align?: CSSProperties['alignItems'];
2754
- justify?: CSSProperties['justifyContent'];
2755
- children: React.ReactNode;
2756
- /** for use when fieldset is applied to the tag prop */
2757
- disabled?: boolean;
2758
- ref?: Ref<HTMLDivElement>;
2759
- };
2760
-
2761
- type ContainerProps = CommonContainerProps & React$1.HTMLAttributes<HTMLDivElement> & {
2762
- tag?: HtmlTagProps;
2763
- children: React$1.ReactNode;
2764
- };
2765
- declare const Container: ({ tag, backgroundColor, border, rounded, padding, margin, children, ...props }: ContainerProps) => _emotion_react_jsx_runtime.JSX.Element;
2766
-
2767
- declare const HorizontalRhythm: ({ align, justify, tag, gap, children, ref, ...props }: RhythmProps) => _emotion_react_jsx_runtime.JSX.Element;
2768
-
2769
- type TwoColumnLayoutProps = {
2770
- /** sets the full bleed background colour
2771
- * @default 'var(--white)'
2772
- */
2773
- bgColor?: 'var(--white)' | 'var(--gray-50)';
2774
- /** sets child components in the aside / supporting column */
2775
- supportingContent?: ReactNode;
2776
- /** sets child components in the section / main content column */
2777
- children?: ReactNode;
2778
- /** inverts the layout placing the aside container on the left
2779
- * @default false
2780
- */
2781
- invertLayout?: boolean;
2782
- };
2783
- /** @example <TwoColumnLayout supportingContent={<div>supporting content</div>}><h1>title</h1></TwoColumnLayout> */
2784
- declare const TwoColumnLayout: ({ bgColor, invertLayout, supportingContent, children, }: TwoColumnLayoutProps) => _emotion_react_jsx_runtime.JSX.Element;
2785
-
2786
- declare const VerticalRhythm: ({ align, justify, tag, gap, children, ref, ...props }: RhythmProps) => _emotion_react_jsx_runtime.JSX.Element;
2787
-
2788
- type LimitsBarProps = {
2789
- /** The current value of used limits */
2790
- current: number;
2791
- /** The maximum number of limits */
2792
- max: number;
2793
- /** @deprecated No longer used */
2794
- label?: string;
2795
- /** Optional popover content for info icon */
2796
- popoverContent?: ReactNode;
2797
- };
2798
- /**
2799
- * Uniform Limits Bar Component
2800
- * @example <LimitsBar current={3} max={5} />
2801
- */
2802
- declare const LimitsBar: ({ current, max, popoverContent }: LimitsBarProps) => _emotion_react_jsx_runtime.JSX.Element;
2803
-
2804
- type LinkListProps = React$1.HTMLAttributes<HTMLDivElement> & {
2805
- /** sets the title field */
2806
- title: string;
2807
- /** (optional) sets react child component */
2808
- children?: React$1.ReactNode;
2809
- };
2810
- declare const LinkList: ({ title, children, ...props }: LinkListProps) => _emotion_react_jsx_runtime.JSX.Element;
2811
-
2812
- type ScrollableListProps = React$1.HTMLAttributes<HTMLDivElement> & {
2813
- /** (optional) sets the label value */
2814
- label?: string;
2815
- /** (optional) allows users to add child components within the container */
2816
- children?: React$1.ReactNode;
2817
- };
2818
- /**
2819
- * Component that sets the base structure for scrollable content in a max height container
2820
- * @example <ScrollableList label="allowed content types"><button>say hello</button></ScrollableList>
2821
- */
2822
- declare const ScrollableList: ({ label, children, ...props }: ScrollableListProps) => _emotion_react_jsx_runtime.JSX.Element;
2823
-
2824
- type ScrollableListContainerProps = {
2825
- /** sets whether to show or hide the shadow around the element
2826
- * @default 'false'
2827
- */
2828
- disableShadow?: boolean;
2829
- /** sets the active style of the button */
2830
- active: boolean;
2831
- };
2832
-
2833
- type ScrollableItemProps = {
2834
- /** sets an element within the label > span element */
2835
- icon?: React.ReactElement;
2836
- /**sets the label value */
2837
- label: string | React.ReactElement;
2838
- /** sets a data-testid on the label */
2839
- labelTestId?: string;
2840
- /** recommended to use a form input element of type radio or checkbox */
2841
- children: React.ReactNode;
2842
- } & ScrollableListContainerProps;
2843
- /** @example <ScrollableListInputItem label="my label" active={true}><input type="radio" name="age" /></ScrollableListInputItem>*/
2844
- declare const ScrollableListInputItem: ({ label, icon, active, disableShadow, children, labelTestId, ...props }: ScrollableItemProps) => _emotion_react_jsx_runtime.JSX.Element;
2845
-
2846
- type ScrollableListItemProps = React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
2847
- /** sets the button text value */
2848
- buttonText: string;
2849
- icon?: React$1.ReactElement;
2850
- } & ScrollableListContainerProps;
2851
- /**
2852
- * Component used within <ScrollableList /> for adding interactive button components with predefined styles
2853
- * @example <ScrollableListItem buttontext="my button" active={false} />
2854
- */
2855
- declare const ScrollableListItem: ({ buttonText, icon, active, disableShadow, ...props }: ScrollableListItemProps) => _emotion_react_jsx_runtime.JSX.Element;
2856
-
2857
- type LoadingIndicatorProps = {
2858
- color?: 'gray' | 'accent-alt';
2859
- size?: 'lg' | 'sm';
2860
- } & Omit<HTMLAttributes<HTMLDivElement>, 'color'>;
2861
- /**
2862
- * Loading Indicator
2863
- * @example <LoadingIndicator />
2864
- */
2865
- declare const LoadingIndicator: ({ size, color, ...props }: LoadingIndicatorProps) => _emotion_react_jsx_runtime.JSX.Element;
2866
-
2867
- interface LoadingOverlayProps {
2868
- /** sets whether to display the loading overlay components */
2869
- isActive: boolean;
2870
- /** (optional) type that sets a text value or React component under the loading icon */
2871
- statusMessage?: string | ReactNode;
2872
- /** (optional) the z-index value of the overlay
2873
- * @default 9999
2874
- */
2875
- zIndex?: number;
2876
- /** (optional) sets the width and height of the loader
2877
- * @default 128
2878
- */
2879
- loaderSize?: number;
2880
- /** (optional) sets the loading overlay background color
2881
- * @default 'var(--white)'
2882
- */
2883
- overlayBackgroundColor?: 'transparent' | 'var(--white)';
2884
- /** (optional) if set to true, the animation of the loading indicator is paused
2885
- * @default false
2886
- */
2887
- isPaused?: boolean;
2888
- /** (optional) aligns the content of the overlay to the top instead of having it centered
2889
- * @default false
2890
- */
2891
- isTopAligned?: boolean;
2892
- children?: React.ReactNode;
2893
- /** (optional) sets the position of the overlay
2894
- * @default 'absolute'
2895
- */
2896
- position?: 'absolute' | 'fixed';
2897
- }
2898
- /**
2899
- * Loading Overlay.
2900
- * NOTE: the container/parent element must have a non-static `position` value for the overlay to work properly.
2901
- * @example <LoadingOverlay isActive={true} statusMessage="Loading..." />
2902
- */
2903
- declare const LoadingOverlay: ({ isActive, statusMessage, zIndex, loaderSize, overlayBackgroundColor, isTopAligned, isPaused, children, position, }: LoadingOverlayProps) => _emotion_react_jsx_runtime.JSX.Element;
2904
- interface LoadingIconProps extends HTMLAttributes<SVGSVGElement> {
2905
- /** (optional) prop that sets a number value for the height of the icon */
2906
- width?: number;
2907
- /** (optional) prop that sets a number value for the width of the icon */
2908
- height?: number;
2909
- }
2910
- /**
2911
- * Loading Icon
2912
- * @example <LoadingIcon height={128} width={128} />
2913
- */
2914
- declare const LoadingIcon: ({ height, width, ...props }: LoadingIconProps) => _emotion_react_jsx_runtime.JSX.Element;
2915
-
2916
2726
  interface DropdownStyleMenuTriggerProps extends React.HTMLAttributes<HTMLButtonElement> {
2917
2727
  children: React.ReactNode;
2918
2728
  /** sets the background color of the button */
@@ -2962,6 +2772,8 @@ interface MenuProps extends MenuProps$1 {
2962
2772
  * @default 'base'
2963
2773
  */
2964
2774
  size?: 'small' | 'base';
2775
+ /** (optional) disables the menu trigger so the menu cannot be opened */
2776
+ disabled?: boolean;
2965
2777
  }
2966
2778
  /**
2967
2779
  * Component used for creating clickable menus
@@ -3100,50 +2912,471 @@ type SearchableMenuProps = {
3100
2912
  declare const SearchableMenu: (props: SearchableMenuProps) => _emotion_react_jsx_runtime.JSX.Element;
3101
2913
 
3102
2914
  interface SelectableMenuItemProps extends PropsWithChildren<Omit<MenuItemProps, 'children'>> {
2915
+ /** whether the menu item is selected */
3103
2916
  selected: boolean;
2917
+ /** the styles to use for the selectable menu item
2918
+ * @default 'default'
2919
+ */
2920
+ selectStyles?: 'default' | 'checkbox-select';
2921
+ /** whether the menu item is selectable
2922
+ * @default true
2923
+ */
2924
+ isSelectable?: boolean;
3104
2925
  }
3105
- declare function SelectableMenuItem({ selected, children, ...menuItemProps }: SelectableMenuItemProps): _emotion_react_jsx_runtime.JSX.Element;
2926
+ declare function SelectableMenuItem({ selected, children, selectStyles, isSelectable, ...menuItemProps }: SelectableMenuItemProps): _emotion_react_jsx_runtime.JSX.Element;
3106
2927
 
3107
- type ModalProps = {
3108
- header?: React__default.ReactNode;
3109
- children?: React__default.ReactNode;
3110
- /**
3111
- * Called when the close button is clicked, the Escape button is pressed, or when the modal's backdrop is clicked.
3112
- * If undefined is passed, the modal will not be closable by the user and the close button will not be rendered.
2928
+ type SwatchSize = 'default' | 'small';
2929
+ type SwatchVariant = 'swatch-default' | 'swatch-red' | 'swatch-orange' | 'swatch-yellow' | 'swatch-green' | 'swatch-blue' | 'swatch-purple' | 'swatch-pink' | 'swatch-brown' | 'swatch-gray';
2930
+ type SwatchProps = {
2931
+ /** sets the size of the swatch
2932
+ * @default 'default'
3113
2933
  */
3114
- onRequestClose: (() => void) | undefined;
3115
- /** The size sets the modal width to one of three options sm = 400px, md = 600px and lg = 800px
3116
- * if a width attribute is used the size will be overridden by the width attribute
3117
- * @default 'lg'
2934
+ size?: SwatchSize;
2935
+ /** sets the color variant of the swatch
2936
+ * @default 'swatch-default'
3118
2937
  */
3119
- modalSize?: 'sm' | 'md' | 'lg';
3120
- /** A valid CSS width */
3121
- width?: string;
3122
- /** A valid CSS height */
3123
- height?: string;
3124
- /** Removes the default padding on the content wrapper */
3125
- withoutContentPadding?: boolean;
3126
- /** Removes the default background color of the content wrapper */
3127
- withoutContentBackground?: boolean;
3128
- /** Places buttons at the bottom of the modal */
3129
- buttonGroup?: ReactNode;
3130
- /**
3131
- * Disables scrolling of the modal body if the content exceeds the height.
3132
- * Can be required for modals that have comboboxes where the menu items are expected
3133
- * to overflow the bounds of the modal.
2938
+ variant?: SwatchVariant;
2939
+ /** sets the tooltip of the swatch
2940
+ * @default undefined
3134
2941
  */
3135
- disableBodyScroll?: boolean;
3136
- } & React__default.HTMLProps<HTMLDialogElement>;
2942
+ tooltip?: string;
2943
+ /** sets the test id of the swatch
2944
+ * @default 'swatch'
2945
+ */
2946
+ testId?: string;
2947
+ };
2948
+ /** @example <Swatch variant="swatch-blue" size="default" /> */
2949
+ declare const Swatch: ({ size, variant, tooltip, testId, }: SwatchProps) => _emotion_react_jsx_runtime.JSX.Element;
2950
+
2951
+ /** Swatch color CSS custom properties
2952
+ * Exports CSS variables for all swatch variants that can be used in other components.
2953
+ * Each variant has --swatch-{variant}-bg and --swatch-{variant}-border variables.
2954
+ * @example <div css={swatchColors}></div>
2955
+ * @example css-in-js my-component { ${swatchColors} }
2956
+ */
2957
+ declare const swatchColors: _emotion_react.SerializedStyles;
3137
2958
  /**
3138
- * A modal component to open a dialog with a backdrop that covers the whole page.
3139
- * @example <Modal>Hello World</Modal>
2959
+ * Swatch variant styles as plain objects.
2960
+ * Works with both Emotion's css prop and react-select's styles API.
2961
+ * @example <div css={swatchVariant['swatch-blue']}></div>
2962
+ * @example styles={{ multiValue: (base, { data }) => ({ ...base, ...swatchVariant[data.color] }) }}
3140
2963
  */
3141
- declare const Modal: React__default.ForwardRefExoticComponent<Omit<ModalProps, "ref"> & React__default.RefAttributes<HTMLDialogElement>>;
3142
-
3143
- type ModalDialogProps = Omit<ModalProps, 'width'>;
3144
- declare const ModalDialog: React$1.ForwardRefExoticComponent<Omit<ModalDialogProps, "ref"> & React$1.RefAttributes<HTMLDialogElement>>;
3145
-
3146
- type ObjectGridContainerProps = {
2964
+ declare const swatchVariant: {
2965
+ readonly 'swatch-default': {
2966
+ readonly '--variant-bg': "var(--swatch-default-bg)";
2967
+ readonly '--variant-border': "var(--swatch-default-border)";
2968
+ };
2969
+ readonly 'swatch-gray': {
2970
+ readonly '--variant-bg': "var(--swatch-gray-bg)";
2971
+ readonly '--variant-border': "var(--swatch-gray-border)";
2972
+ };
2973
+ readonly 'swatch-brown': {
2974
+ readonly '--variant-bg': "var(--swatch-brown-bg)";
2975
+ readonly '--variant-border': "var(--swatch-brown-border)";
2976
+ };
2977
+ readonly 'swatch-orange': {
2978
+ readonly '--variant-bg': "var(--swatch-orange-bg)";
2979
+ readonly '--variant-border': "var(--swatch-orange-border)";
2980
+ };
2981
+ readonly 'swatch-yellow': {
2982
+ readonly '--variant-bg': "var(--swatch-yellow-bg)";
2983
+ readonly '--variant-border': "var(--swatch-yellow-border)";
2984
+ };
2985
+ readonly 'swatch-green': {
2986
+ readonly '--variant-bg': "var(--swatch-green-bg)";
2987
+ readonly '--variant-border': "var(--swatch-green-border)";
2988
+ };
2989
+ readonly 'swatch-blue': {
2990
+ readonly '--variant-bg': "var(--swatch-blue-bg)";
2991
+ readonly '--variant-border': "var(--swatch-blue-border)";
2992
+ };
2993
+ readonly 'swatch-purple': {
2994
+ readonly '--variant-bg': "var(--swatch-purple-bg)";
2995
+ readonly '--variant-border': "var(--swatch-purple-border)";
2996
+ };
2997
+ readonly 'swatch-pink': {
2998
+ readonly '--variant-bg': "var(--swatch-pink-bg)";
2999
+ readonly '--variant-border': "var(--swatch-pink-border)";
3000
+ };
3001
+ readonly 'swatch-red': {
3002
+ readonly '--variant-bg': "var(--swatch-red-bg)";
3003
+ readonly '--variant-border': "var(--swatch-red-border)";
3004
+ };
3005
+ };
3006
+
3007
+ /**
3008
+ * SwatchComboBoxLabelStyles provides custom styles for react-select's multiValue and multiValueLabel.
3009
+ * Dynamically applies color based on each option's color property.
3010
+ * @returns A StylesConfig object with customized styles.
3011
+ */
3012
+ declare const SwatchComboBoxLabelStyles: <TOption, IsMulti extends boolean = boolean, TGroup extends ComboBoxGroupBase<TOption> = ComboBoxGroupBase<TOption>>() => StylesConfig<TOption, IsMulti, TGroup>;
3013
+ declare function SwatchComboBox<TOption = InputComboBoxOption & {
3014
+ color: SwatchVariant;
3015
+ }, IsMulti extends boolean = false, TGroup extends ComboBoxGroupBase<TOption> = ComboBoxGroupBase<TOption>>({ labelTitle, caption, isMulti, ...props }: InputComboBoxProps<TOption, IsMulti, TGroup> & {
3016
+ labelTitle?: string;
3017
+ caption?: string;
3018
+ isMulti?: boolean;
3019
+ }): _emotion_react_jsx_runtime.JSX.Element;
3020
+
3021
+ type SwatchLabelProps = {
3022
+ /** Sets the color variant of the swatch label
3023
+ * @default 'swatch-default'
3024
+ */
3025
+ variant?: SwatchVariant;
3026
+ /** The text to display inside the swatch label */
3027
+ label: string;
3028
+ /** The size of the swatch label
3029
+ * @default 'default'
3030
+ */
3031
+ size?: 'xs' | 'sm' | 'md';
3032
+ /** The right slot to display inside the swatch label */
3033
+ rightSlot?: React.ReactNode;
3034
+ /** The tooltip to display inside the swatch label */
3035
+ tooltip?: string | React.ReactElement;
3036
+ /** The left slot to display inside the swatch label */
3037
+ leftSlot?: React.ReactNode;
3038
+ };
3039
+ /**
3040
+ * A colored label component that uses the same color variants as Swatch.
3041
+ * @example <SwatchLabel variant="swatch-blue" label="Blue Label" />
3042
+ */
3043
+ declare const SwatchLabel: ({ variant, size, label, rightSlot, tooltip, leftSlot, }: SwatchLabelProps) => _emotion_react_jsx_runtime.JSX.Element;
3044
+ declare const SwatchLabelRemoveButton: ({ onRemove, size, }: {
3045
+ /** The function to call when the remove button is clicked */
3046
+ onRemove: () => void;
3047
+ /** The size of the remove button
3048
+ * @default 'sm'
3049
+ */
3050
+ size?: SwatchLabelProps["size"];
3051
+ }) => _emotion_react_jsx_runtime.JSX.Element;
3052
+ /**
3053
+ * A tooltip component that displays a swatch label with a parent title and a description.
3054
+ * @example <SwatchLabelTooltip parentTitle="Parent Title" title="Title" description="Description" />
3055
+ */
3056
+ declare const SwatchLabelTooltip: ({ parentTitle, title, description, }: {
3057
+ parentTitle?: string | React.ReactElement;
3058
+ title?: string | React.ReactElement;
3059
+ description?: string | React.ReactElement;
3060
+ }) => _emotion_react_jsx_runtime.JSX.Element;
3061
+
3062
+ /** Represents a label item that can be displayed in the quick filter */
3063
+ type LabelsQuickFilterItem = {
3064
+ /** Unique identifier for the label */
3065
+ id: string;
3066
+ /** Display name for the label */
3067
+ name: string;
3068
+ /** Optional swatch variant color */
3069
+ variant?: SwatchVariant;
3070
+ /** Optional tooltip content */
3071
+ tooltip?: string | React.ReactElement;
3072
+ /** Whether this item represents a group header */
3073
+ isGroup?: boolean;
3074
+ /** The parent group ID if this label belongs to a group */
3075
+ parent?: string;
3076
+ };
3077
+ type LabelsQuickFilterProps = {
3078
+ /** The text to display on the filter button */
3079
+ buttonText: string;
3080
+ /** The text to display on the add button */
3081
+ addButtonText?: string | null;
3082
+ /** All available label items (including groups and children) */
3083
+ items: LabelsQuickFilterItem[];
3084
+ /** Set or array of currently selected item IDs */
3085
+ selectedIds: Set<string> | string[];
3086
+ /** Callback when a label is selected */
3087
+ onSelect: (item: LabelsQuickFilterItem) => void;
3088
+ /** Callback when a label is deselected */
3089
+ onDeselect: (id: string) => void;
3090
+ /** Whether the filter is disabled */
3091
+ disabled?: boolean;
3092
+ /** Test ID for the component */
3093
+ testId?: string;
3094
+ /** Override the total results count (defaults to items.length excluding groups) */
3095
+ totalResults?: number;
3096
+ /** handles creating a new label */
3097
+ onCreateLabel?: (label: string) => void;
3098
+ /** sets whether to use a React portal rendering or not. */
3099
+ withoutPortal?: boolean;
3100
+ /**
3101
+ * The maximum width of the quick filter container.
3102
+ * Useful for controlling the maximum width of the filter in different layouts (e.g., responsive sidebars).
3103
+ * @default '4rem'
3104
+ */
3105
+ maxContainerSize?: string;
3106
+ /** the function to call when the quick filter is opened */
3107
+ onOpen?: () => void;
3108
+ /** the function to call when the quick filter is closed */
3109
+ onClose?: () => void;
3110
+ /**
3111
+ * Override the Ariakit placement of the dropdown menu.
3112
+ * @default 'bottom-end'
3113
+ */
3114
+ menuPlacement?: MenuProps['placement'];
3115
+ /**
3116
+ * Override the Ariakit getAnchorRect for custom menu anchor positioning.
3117
+ * Pass `null` to disable the built-in default and use standard Ariakit positioning.
3118
+ */
3119
+ menuGetAnchorRect?: MenuProps['getAnchorRect'] | null;
3120
+ /**
3121
+ * Override the Ariakit updatePosition to control when the menu repositions.
3122
+ * Pass `null` to disable the built-in default (position freezing) and allow normal repositioning.
3123
+ */
3124
+ menuUpdatePosition?: MenuProps['updatePosition'] | null;
3125
+ /** the maximum number of results to display
3126
+ * @default 0 (no limit)
3127
+ */
3128
+ maxCount?: number;
3129
+ };
3130
+ /**
3131
+ * A reusable quick filter component for selecting labels with swatch colors.
3132
+ * Supports flat labels and grouped labels with nested menus.
3133
+ * @example <LabelsQuickFilter buttonText="Filter by label" items={labels} selectedIds={selectedSet} onSelect={handleSelect} onDeselect={handleDeselect} />
3134
+ */
3135
+ declare const LabelsQuickFilter: ({ buttonText, addButtonText, items, selectedIds, onSelect, onDeselect, disabled, testId, totalResults, onCreateLabel, withoutPortal, maxContainerSize, onOpen, onClose, menuPlacement, menuGetAnchorRect, menuUpdatePosition, maxCount, }: LabelsQuickFilterProps) => _emotion_react_jsx_runtime.JSX.Element;
3136
+
3137
+ type AsideAndSectionLayout = {
3138
+ /** sets child components in the aside / supporting column */
3139
+ sidebar?: ReactNode;
3140
+ /** sets child components in the section / main content column */
3141
+ children: ReactNode;
3142
+ /** Makes the sidebar sticky to the top of the container
3143
+ * @default false
3144
+ */
3145
+ isStickyAside?: boolean;
3146
+ };
3147
+ declare const AsideAndSectionLayout: ({ sidebar, children, isStickyAside, }: AsideAndSectionLayout) => _emotion_react_jsx_runtime.JSX.Element;
3148
+
3149
+ type SpacingProp = '0' | '2xs' | 'xs' | 'sm' | 'base' | 'md' | 'lg' | 'xl' | '2xl';
3150
+ type BackgroundColorProp = 'transparent' | 'white' | 'gray-50' | 'gray-100' | 'gray-200' | 'gray-300' | 'gray-400' | 'gray-500' | 'gray-600' | 'gray-700' | 'gray-800' | 'gray-900';
3151
+ type HtmlTagProps = 'div' | 'section' | 'article' | 'aside' | 'span';
3152
+ type BorderRadiusProps = 'rounded-sm' | 'rounded-base' | 'rounded-md';
3153
+ type CommonContainerProps = {
3154
+ /** sets the background color of the element */
3155
+ backgroundColor?: BackgroundColorProp;
3156
+ /** sets border: 1px solid var(--gray-300)*/
3157
+ border?: boolean;
3158
+ /** sets the border radius of the element */
3159
+ rounded?: BorderRadiusProps;
3160
+ /** sets the padding of the element */
3161
+ padding?: string;
3162
+ /** sets the margin of the element */
3163
+ margin?: string;
3164
+ };
3165
+ type RhythmProps = React.HTMLAttributes<HTMLDivElement | HTMLFieldSetElement> & {
3166
+ /** sets the wrapping html tag
3167
+ * @default 'div'
3168
+ */
3169
+ tag?: HtmlTagProps | 'fieldset';
3170
+ /** sets the spacing between each element
3171
+ * @default 'div'
3172
+ */
3173
+ gap?: SpacingProp;
3174
+ /** sets the alignment of elements
3175
+ * @default normal browser behaviour
3176
+ */
3177
+ align?: CSSProperties['alignItems'];
3178
+ justify?: CSSProperties['justifyContent'];
3179
+ children: React.ReactNode;
3180
+ /** for use when fieldset is applied to the tag prop */
3181
+ disabled?: boolean;
3182
+ ref?: Ref<HTMLDivElement>;
3183
+ };
3184
+
3185
+ type ContainerProps = CommonContainerProps & React$1.HTMLAttributes<HTMLDivElement> & {
3186
+ tag?: HtmlTagProps;
3187
+ children: React$1.ReactNode;
3188
+ };
3189
+ declare const Container: ({ tag, backgroundColor, border, rounded, padding, margin, children, ...props }: ContainerProps) => _emotion_react_jsx_runtime.JSX.Element;
3190
+
3191
+ declare const HorizontalRhythm: ({ align, justify, tag, gap, children, ref, ...props }: RhythmProps) => _emotion_react_jsx_runtime.JSX.Element;
3192
+
3193
+ type TwoColumnLayoutProps = {
3194
+ /** sets the full bleed background colour
3195
+ * @default 'var(--white)'
3196
+ */
3197
+ bgColor?: 'var(--white)' | 'var(--gray-50)';
3198
+ /** sets child components in the aside / supporting column */
3199
+ supportingContent?: ReactNode;
3200
+ /** sets child components in the section / main content column */
3201
+ children?: ReactNode;
3202
+ /** inverts the layout placing the aside container on the left
3203
+ * @default false
3204
+ */
3205
+ invertLayout?: boolean;
3206
+ };
3207
+ /** @example <TwoColumnLayout supportingContent={<div>supporting content</div>}><h1>title</h1></TwoColumnLayout> */
3208
+ declare const TwoColumnLayout: ({ bgColor, invertLayout, supportingContent, children, }: TwoColumnLayoutProps) => _emotion_react_jsx_runtime.JSX.Element;
3209
+
3210
+ declare const VerticalRhythm: ({ align, justify, tag, gap, children, ref, ...props }: RhythmProps) => _emotion_react_jsx_runtime.JSX.Element;
3211
+
3212
+ type LimitsBarProps = {
3213
+ /** The current value of used limits */
3214
+ current: number;
3215
+ /** The maximum number of limits */
3216
+ max: number;
3217
+ /** @deprecated No longer used */
3218
+ label?: string;
3219
+ /** Optional popover content for info icon */
3220
+ popoverContent?: ReactNode;
3221
+ };
3222
+ /**
3223
+ * Uniform Limits Bar Component
3224
+ * @example <LimitsBar current={3} max={5} />
3225
+ */
3226
+ declare const LimitsBar: ({ current, max, popoverContent }: LimitsBarProps) => _emotion_react_jsx_runtime.JSX.Element;
3227
+
3228
+ type LinkListProps = React$1.HTMLAttributes<HTMLDivElement> & {
3229
+ /** sets the title field */
3230
+ title: string;
3231
+ /** (optional) sets react child component */
3232
+ children?: React$1.ReactNode;
3233
+ };
3234
+ declare const LinkList: ({ title, children, ...props }: LinkListProps) => _emotion_react_jsx_runtime.JSX.Element;
3235
+
3236
+ type ScrollableListProps = React$1.HTMLAttributes<HTMLDivElement> & {
3237
+ /** (optional) sets the label value */
3238
+ label?: string;
3239
+ /** (optional) allows users to add child components within the container */
3240
+ children?: React$1.ReactNode;
3241
+ };
3242
+ /**
3243
+ * Component that sets the base structure for scrollable content in a max height container
3244
+ * @example <ScrollableList label="allowed content types"><button>say hello</button></ScrollableList>
3245
+ */
3246
+ declare const ScrollableList: ({ label, children, ...props }: ScrollableListProps) => _emotion_react_jsx_runtime.JSX.Element;
3247
+
3248
+ type ScrollableListContainerProps = {
3249
+ /** sets whether to show or hide the shadow around the element
3250
+ * @default 'false'
3251
+ */
3252
+ disableShadow?: boolean;
3253
+ /** sets the active style of the button */
3254
+ active: boolean;
3255
+ };
3256
+
3257
+ type ScrollableItemProps = {
3258
+ /** sets an element within the label > span element */
3259
+ icon?: React.ReactElement;
3260
+ /**sets the label value */
3261
+ label: string | React.ReactElement;
3262
+ /** sets a data-testid on the label */
3263
+ labelTestId?: string;
3264
+ /** recommended to use a form input element of type radio or checkbox */
3265
+ children: React.ReactNode;
3266
+ } & ScrollableListContainerProps;
3267
+ /** @example <ScrollableListInputItem label="my label" active={true}><input type="radio" name="age" /></ScrollableListInputItem>*/
3268
+ declare const ScrollableListInputItem: ({ label, icon, active, disableShadow, children, labelTestId, ...props }: ScrollableItemProps) => _emotion_react_jsx_runtime.JSX.Element;
3269
+
3270
+ type ScrollableListItemProps = React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
3271
+ /** sets the button text value */
3272
+ buttonText: string;
3273
+ icon?: React$1.ReactElement;
3274
+ } & ScrollableListContainerProps;
3275
+ /**
3276
+ * Component used within <ScrollableList /> for adding interactive button components with predefined styles
3277
+ * @example <ScrollableListItem buttontext="my button" active={false} />
3278
+ */
3279
+ declare const ScrollableListItem: ({ buttonText, icon, active, disableShadow, ...props }: ScrollableListItemProps) => _emotion_react_jsx_runtime.JSX.Element;
3280
+
3281
+ type LoadingIndicatorProps = {
3282
+ color?: 'gray' | 'accent-alt';
3283
+ size?: 'lg' | 'sm';
3284
+ } & Omit<HTMLAttributes<HTMLDivElement>, 'color'>;
3285
+ /**
3286
+ * Loading Indicator
3287
+ * @example <LoadingIndicator />
3288
+ */
3289
+ declare const LoadingIndicator: ({ size, color, ...props }: LoadingIndicatorProps) => _emotion_react_jsx_runtime.JSX.Element;
3290
+
3291
+ interface LoadingOverlayProps {
3292
+ /** sets whether to display the loading overlay components */
3293
+ isActive: boolean;
3294
+ /** (optional) type that sets a text value or React component under the loading icon */
3295
+ statusMessage?: string | ReactNode;
3296
+ /** (optional) the z-index value of the overlay
3297
+ * @default 9999
3298
+ */
3299
+ zIndex?: number;
3300
+ /** (optional) sets the width and height of the loader
3301
+ * @default 128
3302
+ */
3303
+ loaderSize?: number;
3304
+ /** (optional) sets the loading overlay background color
3305
+ * @default 'var(--white)'
3306
+ */
3307
+ overlayBackgroundColor?: 'transparent' | 'var(--white)';
3308
+ /** (optional) if set to true, the animation of the loading indicator is paused
3309
+ * @default false
3310
+ */
3311
+ isPaused?: boolean;
3312
+ /** (optional) aligns the content of the overlay to the top instead of having it centered
3313
+ * @default false
3314
+ */
3315
+ isTopAligned?: boolean;
3316
+ children?: React.ReactNode;
3317
+ /** (optional) sets the position of the overlay
3318
+ * @default 'absolute'
3319
+ */
3320
+ position?: 'absolute' | 'fixed';
3321
+ }
3322
+ /**
3323
+ * Loading Overlay.
3324
+ * NOTE: the container/parent element must have a non-static `position` value for the overlay to work properly.
3325
+ * @example <LoadingOverlay isActive={true} statusMessage="Loading..." />
3326
+ */
3327
+ declare const LoadingOverlay: ({ isActive, statusMessage, zIndex, loaderSize, overlayBackgroundColor, isTopAligned, isPaused, children, position, }: LoadingOverlayProps) => _emotion_react_jsx_runtime.JSX.Element;
3328
+ interface LoadingIconProps extends HTMLAttributes<SVGSVGElement> {
3329
+ /** (optional) prop that sets a number value for the height of the icon */
3330
+ width?: number;
3331
+ /** (optional) prop that sets a number value for the width of the icon */
3332
+ height?: number;
3333
+ }
3334
+ /**
3335
+ * Loading Icon
3336
+ * @example <LoadingIcon height={128} width={128} />
3337
+ */
3338
+ declare const LoadingIcon: ({ height, width, ...props }: LoadingIconProps) => _emotion_react_jsx_runtime.JSX.Element;
3339
+
3340
+ type ModalProps = {
3341
+ header?: React__default.ReactNode;
3342
+ children?: React__default.ReactNode;
3343
+ /**
3344
+ * Called when the close button is clicked, the Escape button is pressed, or when the modal's backdrop is clicked.
3345
+ * If undefined is passed, the modal will not be closable by the user and the close button will not be rendered.
3346
+ */
3347
+ onRequestClose: (() => void) | undefined;
3348
+ /** The size sets the modal width to one of three options sm = 400px, md = 600px and lg = 800px
3349
+ * if a width attribute is used the size will be overridden by the width attribute
3350
+ * @default 'lg'
3351
+ */
3352
+ modalSize?: 'sm' | 'md' | 'lg';
3353
+ /** A valid CSS width */
3354
+ width?: string;
3355
+ /** A valid CSS height */
3356
+ height?: string;
3357
+ /** Removes the default padding on the content wrapper */
3358
+ withoutContentPadding?: boolean;
3359
+ /** Removes the default background color of the content wrapper */
3360
+ withoutContentBackground?: boolean;
3361
+ /** Places buttons at the bottom of the modal */
3362
+ buttonGroup?: ReactNode;
3363
+ /**
3364
+ * Disables scrolling of the modal body if the content exceeds the height.
3365
+ * Can be required for modals that have comboboxes where the menu items are expected
3366
+ * to overflow the bounds of the modal.
3367
+ */
3368
+ disableBodyScroll?: boolean;
3369
+ } & React__default.HTMLProps<HTMLDialogElement>;
3370
+ /**
3371
+ * A modal component to open a dialog with a backdrop that covers the whole page.
3372
+ * @example <Modal>Hello World</Modal>
3373
+ */
3374
+ declare const Modal: React__default.ForwardRefExoticComponent<Omit<ModalProps, "ref"> & React__default.RefAttributes<HTMLDialogElement>>;
3375
+
3376
+ type ModalDialogProps = Omit<ModalProps, 'width'>;
3377
+ declare const ModalDialog: React$1.ForwardRefExoticComponent<Omit<ModalDialogProps, "ref"> & React$1.RefAttributes<HTMLDialogElement>>;
3378
+
3379
+ type ObjectGridContainerProps = {
3147
3380
  /** The number of columns in the grid
3148
3381
  * @default 3
3149
3382
  * the expected values should follow css repeat() function values
@@ -3380,6 +3613,7 @@ type BaseParameterActionButtonProps = {
3380
3613
  * If a React element is provided, it will be displayed as a tooltip.
3381
3614
  */
3382
3615
  tooltip?: string | React__default.ReactNode;
3616
+ tooltipProps?: Partial<TooltipProps>;
3383
3617
  /**
3384
3618
  * The component to render the button as.
3385
3619
  * There maybe a scenario where we want to render the button as a div
@@ -3398,7 +3632,7 @@ interface FilledVariant extends BaseParameterActionButtonProps {
3398
3632
  inverted?: boolean;
3399
3633
  }
3400
3634
  type ParameterActionButtonProps = OutlineVariant | FilledVariant;
3401
- declare const ParameterActionButton: ({ children, themeType, tooltip, renderAs, disabled, ...props }: ParameterActionButtonProps) => _emotion_react_jsx_runtime.JSX.Element;
3635
+ declare const ParameterActionButton: ({ children, themeType, tooltip, tooltipProps, renderAs, disabled, ...props }: ParameterActionButtonProps) => _emotion_react_jsx_runtime.JSX.Element;
3402
3636
 
3403
3637
  type ParameterDrawerHeaderProps = {
3404
3638
  title: string;
@@ -3485,6 +3719,44 @@ type ParameterLabelProps = HTMLAttributes<HTMLLabelElement> & {
3485
3719
  /** @example <ParameterLabel id="my-label">my label</ParameterLabel> */
3486
3720
  declare const ParameterLabel: ({ id, asSpan, children, testId, ...props }: ParameterLabelProps) => _emotion_react_jsx_runtime.JSX.Element;
3487
3721
 
3722
+ /** Extended option type that supports label-specific properties */
3723
+ type LabelOption = InputComboBoxOption & {
3724
+ /** The color variant for the label swatch */
3725
+ color?: SwatchVariant;
3726
+ /** Whether this option represents a group header */
3727
+ isGroup?: boolean;
3728
+ /** The parent group ID if this label belongs to a group */
3729
+ parent?: string;
3730
+ /** Tooltip content for the label */
3731
+ tooltip?: string | React.ReactElement;
3732
+ };
3733
+ type ParameterLabelsInnerProps = Pick<InputComboBoxProps<LabelOption, true>, 'options' | 'value' | 'defaultValue' | 'onChange' | 'onBlur' | 'isClearable' | 'isDisabled'> & {
3734
+ /** Callback when an item is removed from the selection */
3735
+ onItemRemoved?: (id: string) => void;
3736
+ /** Callback when a new label is created */
3737
+ onCreateLabel?: (label: string) => void;
3738
+ /** Override the text displayed on the filter button */
3739
+ buttonText?: string;
3740
+ /** Override the text displayed on the add button */
3741
+ addButtonText?: string | null;
3742
+ /** the function to call when the quick filter is opened */
3743
+ onOpen?: () => void;
3744
+ /** the function to call when the quick filter is closed */
3745
+ onClose?: () => void;
3746
+ /** The maximum number of labels that can be selected */
3747
+ maxCount?: number;
3748
+ };
3749
+ type ParameterLabelsProps = CommonParameterInputProps & ParameterLabelsInnerProps & {
3750
+ disabled?: boolean;
3751
+ };
3752
+ /**
3753
+ * A parameter input component for selecting multiple labels with swatch colors.
3754
+ * Supports grouped labels with nested menus.
3755
+ * @example <ParameterLabels id="labels" label="Labels" options={[]} value={[]} onChange={() => {}} />
3756
+ */
3757
+ declare const ParameterLabels: ({ disabled, ...props }: ParameterLabelsProps) => _emotion_react_jsx_runtime.JSX.Element;
3758
+ declare const ParameterLabelsInner: (props: ParameterLabelsInnerProps) => _emotion_react_jsx_runtime.JSX.Element;
3759
+
3488
3760
  type ParameterLinkProps = CommonParameterInputProps & React.InputHTMLAttributes<HTMLInputElement> & {
3489
3761
  /** (optional) sets the button text when value is empty
3490
3762
  * @default 'Configure link'
@@ -3880,7 +4152,9 @@ declare const ParameterShell: ({ label, labelLeadingIcon, labelTrailingIcon, hid
3880
4152
  declare const ParameterShellPlaceholder: ({ children }: {
3881
4153
  children?: ReactNode;
3882
4154
  }) => _emotion_react_jsx_runtime.JSX.Element;
3883
- declare const ParameterOverrideMarker: (props: HTMLAttributes<HTMLButtonElement>) => _emotion_react_jsx_runtime.JSX.Element;
4155
+ declare const ParameterOverrideMarker: (props: HTMLAttributes<HTMLButtonElement> & {
4156
+ tooltipProps?: Partial<TooltipProps>;
4157
+ }) => _emotion_react_jsx_runtime.JSX.Element;
3884
4158
 
3885
4159
  type ParameterTextareaProps = CommonParameterInputProps & React.TextareaHTMLAttributes<HTMLTextAreaElement>;
3886
4160
  /** @example <ParameterTextarea label="label value" id="my-textarea" /> */
@@ -4028,6 +4302,111 @@ type ProgressListItem<IdType extends string = string> = {
4028
4302
  };
4029
4303
  declare const ProgressListItem: ({ children, status, error, errorLevel, autoEllipsis, }: ProgressListItemProps) => _emotion_react_jsx_runtime.JSX.Element;
4030
4304
 
4305
+ type QuickFilterSelectedItem = {
4306
+ /** Unique identifier for the selected item */
4307
+ id: string;
4308
+ /** Display name for the selected item */
4309
+ name: string;
4310
+ /** Optional swatch variant color */
4311
+ variant?: SwatchVariant | string;
4312
+ /** The tooltip to display inside the selected item */
4313
+ tooltip?: string | React.ReactElement;
4314
+ /** Optional icon to display on the left of the selected item */
4315
+ icon?: IconType;
4316
+ };
4317
+ type QuickFilterProps = {
4318
+ /** the icon to display on the left of the quick filter */
4319
+ iconLeft?: IconType;
4320
+ /** the text to display on the quick filter */
4321
+ buttonText: string;
4322
+ /** the function to call when the quick filter is clicked */
4323
+ /** the size of the quick filter
4324
+ * @default 'sm'
4325
+ */
4326
+ size?: ButtonSizeProps;
4327
+ /** the test id to use for the quick filter */
4328
+ testId?: string;
4329
+ /** the aria label to use for the quick filter */
4330
+ ariaLabel?: string;
4331
+ /** the children to display inside the quick filter */
4332
+ children: ReactNode;
4333
+ /** whether the quick filter is disabled */
4334
+ disabled?: boolean;
4335
+ /** the selected items to display inside the quick filter */
4336
+ selectedItems?: QuickFilterSelectedItem[];
4337
+ /** the function to call when the search term is changed */
4338
+ onSearchTermChanged: (searchTerm: string) => void;
4339
+ /** addButtonText to use for the add button
4340
+ * @default 'Add'
4341
+ */
4342
+ addButtonText?: string | null;
4343
+ /** the css to use for the swatch colors
4344
+ * @default swatchColors from the Swatch component
4345
+ */
4346
+ swatchColorsCss?: SerializedStyles;
4347
+ /** the function to call when an item is removed */
4348
+ onItemRemoved?: (id: string) => void;
4349
+ /** the total number of results */
4350
+ totalResults: number;
4351
+ /** the maximum height of the menu
4352
+ * @default '320px'
4353
+ */
4354
+ maxMenuHeight?: string;
4355
+ /** the maximum number of results to display
4356
+ * @default 5
4357
+ */
4358
+ maxCount?: number;
4359
+ /** the css to use for the container
4360
+ * @default swatchColors from the Swatch component
4361
+ */
4362
+ containerCss?: SerializedStyles;
4363
+ /** Render function for displaying selected items. Receives selectedItems and onItemRemoved.
4364
+ * @default Renders SwatchLabel components
4365
+ */
4366
+ resultsComponent?: (props: {
4367
+ selectedItems: QuickFilterSelectedItem[];
4368
+ onItemRemoved?: (id: string) => void;
4369
+ }) => ReactNode;
4370
+ /** the message to display when there are no results
4371
+ * @default ''
4372
+ */
4373
+ hasNoResultsMessage?: string;
4374
+ /** the placeholder text to display in the search input
4375
+ * @default 'Search...'
4376
+ */
4377
+ searchPlaceholderText?: string;
4378
+ /**
4379
+ * The maximum width of the quick filter container.
4380
+ * Useful for controlling the maximum width of the filter in different layouts (e.g., responsive sidebars).
4381
+ * @default '4rem'
4382
+ */
4383
+ maxContainerSize?: string;
4384
+ /** the icon to display on the left of the quick filter when collapsed */
4385
+ collapsedIcon?: IconType;
4386
+ /** the function to call when the quick filter is opened */
4387
+ onOpen?: () => void;
4388
+ /** the function to call when the quick filter is closed */
4389
+ onClose?: () => void;
4390
+ /**
4391
+ * Override the Ariakit placement of the dropdown menu.
4392
+ * @default 'bottom-end'
4393
+ */
4394
+ menuPlacement?: MenuProps['placement'];
4395
+ /**
4396
+ * Override the Ariakit getAnchorRect for custom menu anchor positioning.
4397
+ * Pass `null` to disable the built-in default and use standard Ariakit positioning.
4398
+ * @default Anchors to the container's right edge
4399
+ */
4400
+ menuGetAnchorRect?: MenuProps['getAnchorRect'] | null;
4401
+ /**
4402
+ * Override the Ariakit updatePosition to control when the menu repositions.
4403
+ * Pass `null` to disable the built-in default (position freezing) and allow normal repositioning.
4404
+ * @default Freezes position after initial placement
4405
+ */
4406
+ menuUpdatePosition?: MenuProps['updatePosition'] | null;
4407
+ };
4408
+ declare const QuickFilter: ({ iconLeft, collapsedIcon, buttonText, testId, ariaLabel, children, size, disabled, selectedItems, onSearchTermChanged, addButtonText, onItemRemoved, totalResults, maxMenuHeight, maxCount, containerCss, resultsComponent, hasNoResultsMessage, searchPlaceholderText, maxContainerSize, onOpen, onClose, menuPlacement, menuGetAnchorRect, menuUpdatePosition, }: QuickFilterProps) => _emotion_react_jsx_runtime.JSX.Element;
4409
+
4031
4410
  type SegmentedControlOption<TValue extends string = string> = {
4032
4411
  value: TValue;
4033
4412
  label?: string;
@@ -4097,6 +4476,114 @@ declare const Spinner: ({ width, label, isPaused, }: {
4097
4476
  isPaused?: boolean;
4098
4477
  }) => _emotion_react_jsx_runtime.JSX.Element;
4099
4478
 
4479
+ /** The direction of a step transition, determining which slide animation to play. */
4480
+ type StackedModalDirection = 'forward' | 'backward';
4481
+ /** The full navigation state exposed by the `useStackedModal` hook. */
4482
+ type StackedModalContextValue = {
4483
+ /** The zero-indexed active step. */
4484
+ currentStep: number;
4485
+ /** The total number of steps. */
4486
+ totalSteps: number;
4487
+ /** The direction of the last navigation, used to drive slide animations. */
4488
+ direction: StackedModalDirection;
4489
+ /** The zero-indexed step that was active before the last navigation. Used internally for animation. */
4490
+ previousStep: number;
4491
+ /** Navigate to the next step. No-op if already on the last step. */
4492
+ nextStep: () => void;
4493
+ /** Navigate to the previous step. No-op if already on the first step. */
4494
+ goBack: () => void;
4495
+ /** Navigate to a specific step by index. */
4496
+ goToStep: (index: number) => void;
4497
+ };
4498
+ /**
4499
+ * Hook to access the stacked modal navigation context.
4500
+ * Provides the current step, total steps, navigation direction, and functions to navigate between steps.
4501
+ *
4502
+ * @throws If used outside of a `<StackedModal>` component tree.
4503
+ */
4504
+ declare function useStackedModal(): StackedModalContextValue;
4505
+ /** The semantic transition state for a single step, derived from the navigation context. */
4506
+ type StepTransitionState = {
4507
+ /** Whether this step is the currently visible step. */
4508
+ isActive: boolean;
4509
+ /** Whether this step is animating out after being replaced by a new active step. */
4510
+ isExiting: boolean;
4511
+ /** Whether the modal is idle (no transition in progress). True on initial render and after animations complete. */
4512
+ isIdle: boolean;
4513
+ /** The direction of the current or most recent transition. */
4514
+ direction: StackedModalDirection;
4515
+ };
4516
+
4517
+ type StackedModalProps = {
4518
+ /** The step content. Each child should be a `StackedModalStep` component. */
4519
+ children: ReactNode;
4520
+ /**
4521
+ * Called when the close button is clicked, the Escape button is pressed, or when the modal's backdrop is clicked.
4522
+ * If undefined is passed, the modal will not be closable by the user and the close button will not be rendered.
4523
+ */
4524
+ onRequestClose: ModalProps['onRequestClose'];
4525
+ /**
4526
+ * The size sets the modal width to one of three options sm = 400px, md = 600px and lg = 800px.
4527
+ * If a width attribute is used the size will be overridden by the width attribute.
4528
+ * @default 'lg'
4529
+ */
4530
+ modalSize?: ModalProps['modalSize'];
4531
+ /** A valid CSS width. Overrides `modalSize` when provided. */
4532
+ width?: string;
4533
+ /** A valid CSS height. */
4534
+ height?: string;
4535
+ /**
4536
+ * The zero-indexed step to display initially.
4537
+ * @default 0
4538
+ */
4539
+ initialStep?: number;
4540
+ };
4541
+ /**
4542
+ * A modal component that supports multi-step content with sliding transitions.
4543
+ * Each child should be a `StackedModalStep` component that defines its own header,
4544
+ * content, and button group.
4545
+ *
4546
+ * Use the `useStackedModal` hook inside step content to navigate between steps.
4547
+ *
4548
+ * @example
4549
+ * <StackedModal onRequestClose={handleClose} modalSize="lg">
4550
+ * <StackedModalStep header="Step 1" buttonGroup={<Buttons />}>
4551
+ * <StepOneContent />
4552
+ * </StackedModalStep>
4553
+ * <StackedModalStep header="Step 2" buttonGroup={<Buttons />}>
4554
+ * <StepTwoContent />
4555
+ * </StackedModalStep>
4556
+ * </StackedModal>
4557
+ */
4558
+ declare const StackedModal: React__default.ForwardRefExoticComponent<StackedModalProps & React__default.RefAttributes<HTMLDialogElement>>;
4559
+
4560
+ /** Props for a single step within a `StackedModal`. */
4561
+ type StackedModalStepProps = {
4562
+ /**
4563
+ * Header content displayed in the modal's header row, inline with the close icon.
4564
+ * This prop is extracted by the parent `StackedModal` and rendered in the
4565
+ * modal chrome -- it is **not** rendered by `StackedModalStep` itself.
4566
+ */
4567
+ header?: ReactNode;
4568
+ /** Optional button group rendered at the bottom of the step, typically navigation or submit buttons. */
4569
+ buttonGroup?: ReactNode;
4570
+ /** The main body content of the step. */
4571
+ children: ReactNode;
4572
+ };
4573
+ /**
4574
+ * Defines a single step inside a `StackedModal`.
4575
+ *
4576
+ * Renders a scrollable content area and an optional bottom button group.
4577
+ * The `header` prop is read by the parent `StackedModal` and displayed in the
4578
+ * modal header row with a matching slide animation.
4579
+ *
4580
+ * @example
4581
+ * <StackedModalStep header="Account details" buttonGroup={<Button>Next</Button>}>
4582
+ * <FormFields />
4583
+ * </StackedModalStep>
4584
+ */
4585
+ declare function StackedModalStep({ children, buttonGroup }: StackedModalStepProps): _emotion_react_jsx_runtime.JSX.Element;
4586
+
4100
4587
  type SwitchProps = Omit<React.InputHTMLAttributes<HTMLInputElement>, 'type'> & {
4101
4588
  /** sets the label value */
4102
4589
  label: ReactNode;
@@ -4361,20 +4848,8 @@ type LinkManagerWithRefType = (props: Partial<LinkProps> & {
4361
4848
  * We recommend using this link `next/link`
4362
4849
  * @example <LinkWithRef linkManagerComponent={NextLink} href="some-url" text="my link" />
4363
4850
  */
4364
- declare const LinkWithRef: React$1.ForwardRefExoticComponent<Omit<React$1.AnchorHTMLAttributes<HTMLAnchorElement> & {
4365
- /** sets the link text and title text */
4366
- text: string;
4367
- /** (optional) sets the link color
4368
- * @default 'currentColor'
4369
- */
4370
- linkColor?: LinkColorProps;
4371
- /** (optional) sets whether the link is external or not adding an icon to the link */
4372
- external?: boolean;
4373
- /** (optional) For supporting inside next/link component */
4374
- ref?: React$1.ForwardedRef<HTMLAnchorElement>;
4375
- /** (optional) sets react child elements */
4376
- children?: React$1.ReactNode;
4377
- } & {
4851
+ declare const LinkWithRef: React$1.ForwardRefExoticComponent<Omit<Omit<LinkProps, "text"> & {
4852
+ text?: string;
4378
4853
  href: string;
4379
4854
  as?: string;
4380
4855
  linkManagerComponent: LinkManagerWithRefType;
@@ -4524,4 +4999,4 @@ declare const StatusBullet: ({ status, hideText, size, message, compact, ...prop
4524
4999
 
4525
5000
  declare const actionBarVisibilityStyles: _emotion_react.SerializedStyles;
4526
5001
 
4527
- 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 CalendarProps, 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 LabelProps, Legend, type LegendProps, type LevelProps, LimitsBar, type LimitsBarProps, Link, 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, 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, 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, StatusBullet, type StatusBulletProps, type StatusTypeProps, SuccessMessage, type SuccessMessageProps, 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, 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, functionalColors as utilityColors, warningIcon, yesNoIcon, zigZag, zigZagThick };
5002
+ 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 CalendarProps, 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 };