@uniformdev/design-system 20.49.3 → 20.49.4-alpha.102
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/esm/index.js +3009 -1683
- package/dist/index.d.mts +440 -19
- package/dist/index.d.ts +440 -19
- package/dist/index.js +3318 -1946
- package/package.json +4 -4
package/dist/index.d.mts
CHANGED
|
@@ -2,7 +2,7 @@ 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
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';
|
|
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,6 +2723,190 @@ 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
|
|
|
2726
|
+
type SwatchSize = 'default' | 'small';
|
|
2727
|
+
type SwatchVariant = 'swatch-default' | 'swatch-red' | 'swatch-orange' | 'swatch-yellow' | 'swatch-green' | 'swatch-blue' | 'swatch-purple' | 'swatch-pink' | 'swatch-brown' | 'swatch-gray';
|
|
2728
|
+
type SwatchProps = {
|
|
2729
|
+
/** sets the size of the swatch
|
|
2730
|
+
* @default 'default'
|
|
2731
|
+
*/
|
|
2732
|
+
size?: SwatchSize;
|
|
2733
|
+
/** sets the color variant of the swatch
|
|
2734
|
+
* @default 'swatch-default'
|
|
2735
|
+
*/
|
|
2736
|
+
variant?: SwatchVariant;
|
|
2737
|
+
/** sets the tooltip of the swatch
|
|
2738
|
+
* @default undefined
|
|
2739
|
+
*/
|
|
2740
|
+
tooltip?: string;
|
|
2741
|
+
/** sets the test id of the swatch
|
|
2742
|
+
* @default 'swatch'
|
|
2743
|
+
*/
|
|
2744
|
+
testId?: string;
|
|
2745
|
+
};
|
|
2746
|
+
/** @example <Swatch variant="swatch-blue" size="default" /> */
|
|
2747
|
+
declare const Swatch: ({ size, variant, tooltip, testId, }: SwatchProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
2748
|
+
|
|
2749
|
+
/** Swatch color CSS custom properties
|
|
2750
|
+
* Exports CSS variables for all swatch variants that can be used in other components.
|
|
2751
|
+
* Each variant has --swatch-{variant}-bg and --swatch-{variant}-border variables.
|
|
2752
|
+
* @example <div css={swatchColors}></div>
|
|
2753
|
+
* @example css-in-js my-component { ${swatchColors} }
|
|
2754
|
+
*/
|
|
2755
|
+
declare const swatchColors: _emotion_react.SerializedStyles;
|
|
2756
|
+
/**
|
|
2757
|
+
* Swatch variant styles as plain objects.
|
|
2758
|
+
* Works with both Emotion's css prop and react-select's styles API.
|
|
2759
|
+
* @example <div css={swatchVariant['swatch-blue']}></div>
|
|
2760
|
+
* @example styles={{ multiValue: (base, { data }) => ({ ...base, ...swatchVariant[data.color] }) }}
|
|
2761
|
+
*/
|
|
2762
|
+
declare const swatchVariant: {
|
|
2763
|
+
readonly 'swatch-default': {
|
|
2764
|
+
readonly '--variant-bg': "var(--swatch-default-bg)";
|
|
2765
|
+
readonly '--variant-border': "var(--swatch-default-border)";
|
|
2766
|
+
};
|
|
2767
|
+
readonly 'swatch-gray': {
|
|
2768
|
+
readonly '--variant-bg': "var(--swatch-gray-bg)";
|
|
2769
|
+
readonly '--variant-border': "var(--swatch-gray-border)";
|
|
2770
|
+
};
|
|
2771
|
+
readonly 'swatch-brown': {
|
|
2772
|
+
readonly '--variant-bg': "var(--swatch-brown-bg)";
|
|
2773
|
+
readonly '--variant-border': "var(--swatch-brown-border)";
|
|
2774
|
+
};
|
|
2775
|
+
readonly 'swatch-orange': {
|
|
2776
|
+
readonly '--variant-bg': "var(--swatch-orange-bg)";
|
|
2777
|
+
readonly '--variant-border': "var(--swatch-orange-border)";
|
|
2778
|
+
};
|
|
2779
|
+
readonly 'swatch-yellow': {
|
|
2780
|
+
readonly '--variant-bg': "var(--swatch-yellow-bg)";
|
|
2781
|
+
readonly '--variant-border': "var(--swatch-yellow-border)";
|
|
2782
|
+
};
|
|
2783
|
+
readonly 'swatch-green': {
|
|
2784
|
+
readonly '--variant-bg': "var(--swatch-green-bg)";
|
|
2785
|
+
readonly '--variant-border': "var(--swatch-green-border)";
|
|
2786
|
+
};
|
|
2787
|
+
readonly 'swatch-blue': {
|
|
2788
|
+
readonly '--variant-bg': "var(--swatch-blue-bg)";
|
|
2789
|
+
readonly '--variant-border': "var(--swatch-blue-border)";
|
|
2790
|
+
};
|
|
2791
|
+
readonly 'swatch-purple': {
|
|
2792
|
+
readonly '--variant-bg': "var(--swatch-purple-bg)";
|
|
2793
|
+
readonly '--variant-border': "var(--swatch-purple-border)";
|
|
2794
|
+
};
|
|
2795
|
+
readonly 'swatch-pink': {
|
|
2796
|
+
readonly '--variant-bg': "var(--swatch-pink-bg)";
|
|
2797
|
+
readonly '--variant-border': "var(--swatch-pink-border)";
|
|
2798
|
+
};
|
|
2799
|
+
readonly 'swatch-red': {
|
|
2800
|
+
readonly '--variant-bg': "var(--swatch-red-bg)";
|
|
2801
|
+
readonly '--variant-border': "var(--swatch-red-border)";
|
|
2802
|
+
};
|
|
2803
|
+
};
|
|
2804
|
+
|
|
2805
|
+
/**
|
|
2806
|
+
* SwatchComboBoxLabelStyles provides custom styles for react-select's multiValue and multiValueLabel.
|
|
2807
|
+
* Dynamically applies color based on each option's color property.
|
|
2808
|
+
* @returns A StylesConfig object with customized styles.
|
|
2809
|
+
*/
|
|
2810
|
+
declare const SwatchComboBoxLabelStyles: <TOption, IsMulti extends boolean = boolean, TGroup extends ComboBoxGroupBase<TOption> = ComboBoxGroupBase<TOption>>() => StylesConfig<TOption, IsMulti, TGroup>;
|
|
2811
|
+
declare function SwatchComboBox<TOption = InputComboBoxOption & {
|
|
2812
|
+
color: SwatchVariant;
|
|
2813
|
+
}, IsMulti extends boolean = false, TGroup extends ComboBoxGroupBase<TOption> = ComboBoxGroupBase<TOption>>({ labelTitle, caption, isMulti, ...props }: InputComboBoxProps<TOption, IsMulti, TGroup> & {
|
|
2814
|
+
labelTitle?: string;
|
|
2815
|
+
caption?: string;
|
|
2816
|
+
isMulti?: boolean;
|
|
2817
|
+
}): _emotion_react_jsx_runtime.JSX.Element;
|
|
2818
|
+
|
|
2819
|
+
type SwatchLabelProps = {
|
|
2820
|
+
/** Sets the color variant of the swatch label
|
|
2821
|
+
* @default 'swatch-default'
|
|
2822
|
+
*/
|
|
2823
|
+
variant?: SwatchVariant;
|
|
2824
|
+
/** The text to display inside the swatch label */
|
|
2825
|
+
label: string;
|
|
2826
|
+
/** The size of the swatch label
|
|
2827
|
+
* @default 'default'
|
|
2828
|
+
*/
|
|
2829
|
+
size?: 'xs' | 'sm' | 'md';
|
|
2830
|
+
/** The right slot to display inside the swatch label */
|
|
2831
|
+
rightSlot?: React.ReactNode;
|
|
2832
|
+
/** The tooltip to display inside the swatch label */
|
|
2833
|
+
tooltip?: string | React.ReactElement;
|
|
2834
|
+
/** The left slot to display inside the swatch label */
|
|
2835
|
+
leftSlot?: React.ReactNode;
|
|
2836
|
+
};
|
|
2837
|
+
/**
|
|
2838
|
+
* A colored label component that uses the same color variants as Swatch.
|
|
2839
|
+
* @example <SwatchLabel variant="swatch-blue" label="Blue Label" />
|
|
2840
|
+
*/
|
|
2841
|
+
declare const SwatchLabel: ({ variant, size, label, rightSlot, tooltip, leftSlot, }: SwatchLabelProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
2842
|
+
declare const SwatchLabelRemoveButton: ({ onRemove, size, }: {
|
|
2843
|
+
/** The function to call when the remove button is clicked */
|
|
2844
|
+
onRemove: () => void;
|
|
2845
|
+
/** The size of the remove button
|
|
2846
|
+
* @default 'sm'
|
|
2847
|
+
*/
|
|
2848
|
+
size?: SwatchLabelProps["size"];
|
|
2849
|
+
}) => _emotion_react_jsx_runtime.JSX.Element;
|
|
2850
|
+
/**
|
|
2851
|
+
* A tooltip component that displays a swatch label with a parent title and a description.
|
|
2852
|
+
* @example <SwatchLabelTooltip parentTitle="Parent Title" title="Title" description="Description" />
|
|
2853
|
+
*/
|
|
2854
|
+
declare const SwatchLabelTooltip: ({ parentTitle, title, description, }: {
|
|
2855
|
+
parentTitle?: string | React.ReactElement;
|
|
2856
|
+
title?: string | React.ReactElement;
|
|
2857
|
+
description?: string | React.ReactElement;
|
|
2858
|
+
}) => _emotion_react_jsx_runtime.JSX.Element;
|
|
2859
|
+
|
|
2860
|
+
/** Represents a label item that can be displayed in the quick filter */
|
|
2861
|
+
type LabelsQuickFilterItem = {
|
|
2862
|
+
/** Unique identifier for the label */
|
|
2863
|
+
id: string;
|
|
2864
|
+
/** Display name for the label */
|
|
2865
|
+
name: string;
|
|
2866
|
+
/** Optional swatch variant color */
|
|
2867
|
+
variant?: SwatchVariant;
|
|
2868
|
+
/** Optional tooltip content */
|
|
2869
|
+
tooltip?: string | React.ReactElement;
|
|
2870
|
+
/** Whether this item represents a group header */
|
|
2871
|
+
isGroup?: boolean;
|
|
2872
|
+
/** The parent group ID if this label belongs to a group */
|
|
2873
|
+
parent?: string;
|
|
2874
|
+
};
|
|
2875
|
+
type LabelsQuickFilterProps = {
|
|
2876
|
+
/** The text to display on the filter button */
|
|
2877
|
+
buttonText: string;
|
|
2878
|
+
/** All available label items (including groups and children) */
|
|
2879
|
+
items: LabelsQuickFilterItem[];
|
|
2880
|
+
/** Set or array of currently selected item IDs */
|
|
2881
|
+
selectedIds: Set<string> | string[];
|
|
2882
|
+
/** Callback when a label is selected */
|
|
2883
|
+
onSelect: (item: LabelsQuickFilterItem) => void;
|
|
2884
|
+
/** Callback when a label is deselected */
|
|
2885
|
+
onDeselect: (id: string) => void;
|
|
2886
|
+
/** Whether the filter is disabled */
|
|
2887
|
+
disabled?: boolean;
|
|
2888
|
+
/** Test ID for the component */
|
|
2889
|
+
testId?: string;
|
|
2890
|
+
/** Override the total results count (defaults to items.length excluding groups) */
|
|
2891
|
+
totalResults?: number;
|
|
2892
|
+
/** handles creating a new label */
|
|
2893
|
+
onCreateLabel?: (label: string) => void;
|
|
2894
|
+
/** sets whether to use a React portal rendering or not. */
|
|
2895
|
+
withoutPortal?: boolean;
|
|
2896
|
+
/**
|
|
2897
|
+
* The maximum width of the quick filter container.
|
|
2898
|
+
* Useful for controlling the maximum width of the filter in different layouts (e.g., responsive sidebars).
|
|
2899
|
+
* @default '4rem'
|
|
2900
|
+
*/
|
|
2901
|
+
maxContainerSize?: string;
|
|
2902
|
+
};
|
|
2903
|
+
/**
|
|
2904
|
+
* A reusable quick filter component for selecting labels with swatch colors.
|
|
2905
|
+
* Supports flat labels and grouped labels with nested menus.
|
|
2906
|
+
* @example <LabelsQuickFilter buttonText="Filter by label" items={labels} selectedIds={selectedSet} onSelect={handleSelect} onDeselect={handleDeselect} />
|
|
2907
|
+
*/
|
|
2908
|
+
declare const LabelsQuickFilter: ({ buttonText, items, selectedIds, onSelect, onDeselect, disabled, testId, totalResults, onCreateLabel, withoutPortal, maxContainerSize, }: LabelsQuickFilterProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
2909
|
+
|
|
2713
2910
|
type AsideAndSectionLayout = {
|
|
2714
2911
|
/** sets child components in the aside / supporting column */
|
|
2715
2912
|
sidebar?: ReactNode;
|
|
@@ -2962,6 +3159,8 @@ interface MenuProps extends MenuProps$1 {
|
|
|
2962
3159
|
* @default 'base'
|
|
2963
3160
|
*/
|
|
2964
3161
|
size?: 'small' | 'base';
|
|
3162
|
+
/** (optional) disables the menu trigger so the menu cannot be opened */
|
|
3163
|
+
disabled?: boolean;
|
|
2965
3164
|
}
|
|
2966
3165
|
/**
|
|
2967
3166
|
* Component used for creating clickable menus
|
|
@@ -3100,9 +3299,18 @@ type SearchableMenuProps = {
|
|
|
3100
3299
|
declare const SearchableMenu: (props: SearchableMenuProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
3101
3300
|
|
|
3102
3301
|
interface SelectableMenuItemProps extends PropsWithChildren<Omit<MenuItemProps, 'children'>> {
|
|
3302
|
+
/** whether the menu item is selected */
|
|
3103
3303
|
selected: boolean;
|
|
3304
|
+
/** the styles to use for the selectable menu item
|
|
3305
|
+
* @default 'default'
|
|
3306
|
+
*/
|
|
3307
|
+
selectStyles?: 'default' | 'checkbox-select';
|
|
3308
|
+
/** whether the menu item is selectable
|
|
3309
|
+
* @default true
|
|
3310
|
+
*/
|
|
3311
|
+
isSelectable?: boolean;
|
|
3104
3312
|
}
|
|
3105
|
-
declare function SelectableMenuItem({ selected, children, ...menuItemProps }: SelectableMenuItemProps): _emotion_react_jsx_runtime.JSX.Element;
|
|
3313
|
+
declare function SelectableMenuItem({ selected, children, selectStyles, isSelectable, ...menuItemProps }: SelectableMenuItemProps): _emotion_react_jsx_runtime.JSX.Element;
|
|
3106
3314
|
|
|
3107
3315
|
type ModalProps = {
|
|
3108
3316
|
header?: React__default.ReactNode;
|
|
@@ -3380,6 +3588,7 @@ type BaseParameterActionButtonProps = {
|
|
|
3380
3588
|
* If a React element is provided, it will be displayed as a tooltip.
|
|
3381
3589
|
*/
|
|
3382
3590
|
tooltip?: string | React__default.ReactNode;
|
|
3591
|
+
tooltipProps?: Partial<TooltipProps>;
|
|
3383
3592
|
/**
|
|
3384
3593
|
* The component to render the button as.
|
|
3385
3594
|
* There maybe a scenario where we want to render the button as a div
|
|
@@ -3398,7 +3607,7 @@ interface FilledVariant extends BaseParameterActionButtonProps {
|
|
|
3398
3607
|
inverted?: boolean;
|
|
3399
3608
|
}
|
|
3400
3609
|
type ParameterActionButtonProps = OutlineVariant | FilledVariant;
|
|
3401
|
-
declare const ParameterActionButton: ({ children, themeType, tooltip, renderAs, disabled, ...props }: ParameterActionButtonProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
3610
|
+
declare const ParameterActionButton: ({ children, themeType, tooltip, tooltipProps, renderAs, disabled, ...props }: ParameterActionButtonProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
3402
3611
|
|
|
3403
3612
|
type ParameterDrawerHeaderProps = {
|
|
3404
3613
|
title: string;
|
|
@@ -3485,6 +3694,36 @@ type ParameterLabelProps = HTMLAttributes<HTMLLabelElement> & {
|
|
|
3485
3694
|
/** @example <ParameterLabel id="my-label">my label</ParameterLabel> */
|
|
3486
3695
|
declare const ParameterLabel: ({ id, asSpan, children, testId, ...props }: ParameterLabelProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
3487
3696
|
|
|
3697
|
+
/** Extended option type that supports label-specific properties */
|
|
3698
|
+
type LabelOption = InputComboBoxOption & {
|
|
3699
|
+
/** The color variant for the label swatch */
|
|
3700
|
+
color?: SwatchVariant;
|
|
3701
|
+
/** Whether this option represents a group header */
|
|
3702
|
+
isGroup?: boolean;
|
|
3703
|
+
/** The parent group ID if this label belongs to a group */
|
|
3704
|
+
parent?: string;
|
|
3705
|
+
/** Tooltip content for the label */
|
|
3706
|
+
tooltip?: string | React.ReactElement;
|
|
3707
|
+
};
|
|
3708
|
+
type ParameterLabelsInnerProps = Pick<InputComboBoxProps<LabelOption, true>, 'options' | 'value' | 'defaultValue' | 'onChange' | 'onBlur' | 'isClearable' | 'isDisabled'> & {
|
|
3709
|
+
/** Callback when an item is removed from the selection */
|
|
3710
|
+
onItemRemoved?: (id: string) => void;
|
|
3711
|
+
/** Callback when a new label is created */
|
|
3712
|
+
onCreateLabel?: (label: string) => void;
|
|
3713
|
+
/** Override the text displayed on the filter button */
|
|
3714
|
+
buttonText?: string;
|
|
3715
|
+
};
|
|
3716
|
+
type ParameterLabelsProps = CommonParameterInputProps & ParameterLabelsInnerProps & {
|
|
3717
|
+
disabled?: boolean;
|
|
3718
|
+
};
|
|
3719
|
+
/**
|
|
3720
|
+
* A parameter input component for selecting multiple labels with swatch colors.
|
|
3721
|
+
* Supports grouped labels with nested menus.
|
|
3722
|
+
* @example <ParameterLabels id="labels" label="Labels" options={[]} value={[]} onChange={() => {}} />
|
|
3723
|
+
*/
|
|
3724
|
+
declare const ParameterLabels: ({ disabled, ...props }: ParameterLabelsProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
3725
|
+
declare const ParameterLabelsInner: (props: ParameterLabelsInnerProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
3726
|
+
|
|
3488
3727
|
type ParameterLinkProps = CommonParameterInputProps & React.InputHTMLAttributes<HTMLInputElement> & {
|
|
3489
3728
|
/** (optional) sets the button text when value is empty
|
|
3490
3729
|
* @default 'Configure link'
|
|
@@ -3880,7 +4119,9 @@ declare const ParameterShell: ({ label, labelLeadingIcon, labelTrailingIcon, hid
|
|
|
3880
4119
|
declare const ParameterShellPlaceholder: ({ children }: {
|
|
3881
4120
|
children?: ReactNode;
|
|
3882
4121
|
}) => _emotion_react_jsx_runtime.JSX.Element;
|
|
3883
|
-
declare const ParameterOverrideMarker: (props: HTMLAttributes<HTMLButtonElement>
|
|
4122
|
+
declare const ParameterOverrideMarker: (props: HTMLAttributes<HTMLButtonElement> & {
|
|
4123
|
+
tooltipProps?: Partial<TooltipProps>;
|
|
4124
|
+
}) => _emotion_react_jsx_runtime.JSX.Element;
|
|
3884
4125
|
|
|
3885
4126
|
type ParameterTextareaProps = CommonParameterInputProps & React.TextareaHTMLAttributes<HTMLTextAreaElement>;
|
|
3886
4127
|
/** @example <ParameterTextarea label="label value" id="my-textarea" /> */
|
|
@@ -4028,6 +4269,90 @@ type ProgressListItem<IdType extends string = string> = {
|
|
|
4028
4269
|
};
|
|
4029
4270
|
declare const ProgressListItem: ({ children, status, error, errorLevel, autoEllipsis, }: ProgressListItemProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
4030
4271
|
|
|
4272
|
+
type QuickFilterSelectedItem = {
|
|
4273
|
+
/** Unique identifier for the selected item */
|
|
4274
|
+
id: string;
|
|
4275
|
+
/** Display name for the selected item */
|
|
4276
|
+
name: string;
|
|
4277
|
+
/** Optional swatch variant color */
|
|
4278
|
+
variant?: SwatchVariant | string;
|
|
4279
|
+
/** The tooltip to display inside the selected item */
|
|
4280
|
+
tooltip?: string | React.ReactElement;
|
|
4281
|
+
/** Optional icon to display on the left of the selected item */
|
|
4282
|
+
icon?: IconType;
|
|
4283
|
+
};
|
|
4284
|
+
type QuickFilterProps = {
|
|
4285
|
+
/** the icon to display on the left of the quick filter */
|
|
4286
|
+
iconLeft?: IconType;
|
|
4287
|
+
/** the text to display on the quick filter */
|
|
4288
|
+
buttonText: string;
|
|
4289
|
+
/** the function to call when the quick filter is clicked */
|
|
4290
|
+
/** the size of the quick filter
|
|
4291
|
+
* @default 'sm'
|
|
4292
|
+
*/
|
|
4293
|
+
size?: ButtonSizeProps;
|
|
4294
|
+
/** the test id to use for the quick filter */
|
|
4295
|
+
testId?: string;
|
|
4296
|
+
/** the aria label to use for the quick filter */
|
|
4297
|
+
ariaLabel?: string;
|
|
4298
|
+
/** the children to display inside the quick filter */
|
|
4299
|
+
children: ReactNode;
|
|
4300
|
+
/** whether the quick filter is disabled */
|
|
4301
|
+
disabled?: boolean;
|
|
4302
|
+
/** the selected items to display inside the quick filter */
|
|
4303
|
+
selectedItems?: QuickFilterSelectedItem[];
|
|
4304
|
+
/** the function to call when the search term is changed */
|
|
4305
|
+
onSearchTermChanged: (searchTerm: string) => void;
|
|
4306
|
+
/** addButtonText to use for the add button
|
|
4307
|
+
* @default 'Add'
|
|
4308
|
+
*/
|
|
4309
|
+
addButtonText?: string;
|
|
4310
|
+
/** the css to use for the swatch colors
|
|
4311
|
+
* @default swatchColors from the Swatch component
|
|
4312
|
+
*/
|
|
4313
|
+
swatchColorsCss?: SerializedStyles;
|
|
4314
|
+
/** the function to call when an item is removed */
|
|
4315
|
+
onItemRemoved?: (id: string) => void;
|
|
4316
|
+
/** the total number of results */
|
|
4317
|
+
totalResults: number;
|
|
4318
|
+
/** the maximum height of the menu
|
|
4319
|
+
* @default '320px'
|
|
4320
|
+
*/
|
|
4321
|
+
maxMenuHeight?: string;
|
|
4322
|
+
/** the maximum number of results to display
|
|
4323
|
+
* @default 5
|
|
4324
|
+
*/
|
|
4325
|
+
maxCount?: number;
|
|
4326
|
+
/** the css to use for the container
|
|
4327
|
+
* @default swatchColors from the Swatch component
|
|
4328
|
+
*/
|
|
4329
|
+
containerCss?: SerializedStyles;
|
|
4330
|
+
/** Render function for displaying selected items. Receives selectedItems and onItemRemoved.
|
|
4331
|
+
* @default Renders SwatchLabel components
|
|
4332
|
+
*/
|
|
4333
|
+
resultsComponent?: (props: {
|
|
4334
|
+
selectedItems: QuickFilterSelectedItem[];
|
|
4335
|
+
onItemRemoved?: (id: string) => void;
|
|
4336
|
+
}) => ReactNode;
|
|
4337
|
+
/** the message to display when there are no results
|
|
4338
|
+
* @default ''
|
|
4339
|
+
*/
|
|
4340
|
+
hasNoResultsMessage?: string;
|
|
4341
|
+
/** the placeholder text to display in the search input
|
|
4342
|
+
* @default 'Search...'
|
|
4343
|
+
*/
|
|
4344
|
+
searchPlaceholderText?: string;
|
|
4345
|
+
/**
|
|
4346
|
+
* The maximum width of the quick filter container.
|
|
4347
|
+
* Useful for controlling the maximum width of the filter in different layouts (e.g., responsive sidebars).
|
|
4348
|
+
* @default '4rem'
|
|
4349
|
+
*/
|
|
4350
|
+
maxContainerSize?: string;
|
|
4351
|
+
/** the icon to display on the left of the quick filter when collapsed */
|
|
4352
|
+
collapsedIcon?: IconType;
|
|
4353
|
+
};
|
|
4354
|
+
declare const QuickFilter: ({ iconLeft, collapsedIcon, buttonText, testId, ariaLabel, children, size, disabled, selectedItems, onSearchTermChanged, addButtonText, onItemRemoved, totalResults, maxMenuHeight, maxCount, containerCss, resultsComponent, hasNoResultsMessage, searchPlaceholderText, maxContainerSize, }: QuickFilterProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
4355
|
+
|
|
4031
4356
|
type SegmentedControlOption<TValue extends string = string> = {
|
|
4032
4357
|
value: TValue;
|
|
4033
4358
|
label?: string;
|
|
@@ -4097,6 +4422,114 @@ declare const Spinner: ({ width, label, isPaused, }: {
|
|
|
4097
4422
|
isPaused?: boolean;
|
|
4098
4423
|
}) => _emotion_react_jsx_runtime.JSX.Element;
|
|
4099
4424
|
|
|
4425
|
+
/** The direction of a step transition, determining which slide animation to play. */
|
|
4426
|
+
type StackedModalDirection = 'forward' | 'backward';
|
|
4427
|
+
/** The full navigation state exposed by the `useStackedModal` hook. */
|
|
4428
|
+
type StackedModalContextValue = {
|
|
4429
|
+
/** The zero-indexed active step. */
|
|
4430
|
+
currentStep: number;
|
|
4431
|
+
/** The total number of steps. */
|
|
4432
|
+
totalSteps: number;
|
|
4433
|
+
/** The direction of the last navigation, used to drive slide animations. */
|
|
4434
|
+
direction: StackedModalDirection;
|
|
4435
|
+
/** The zero-indexed step that was active before the last navigation. Used internally for animation. */
|
|
4436
|
+
previousStep: number;
|
|
4437
|
+
/** Navigate to the next step. No-op if already on the last step. */
|
|
4438
|
+
nextStep: () => void;
|
|
4439
|
+
/** Navigate to the previous step. No-op if already on the first step. */
|
|
4440
|
+
goBack: () => void;
|
|
4441
|
+
/** Navigate to a specific step by index. */
|
|
4442
|
+
goToStep: (index: number) => void;
|
|
4443
|
+
};
|
|
4444
|
+
/**
|
|
4445
|
+
* Hook to access the stacked modal navigation context.
|
|
4446
|
+
* Provides the current step, total steps, navigation direction, and functions to navigate between steps.
|
|
4447
|
+
*
|
|
4448
|
+
* @throws If used outside of a `<StackedModal>` component tree.
|
|
4449
|
+
*/
|
|
4450
|
+
declare function useStackedModal(): StackedModalContextValue;
|
|
4451
|
+
/** The semantic transition state for a single step, derived from the navigation context. */
|
|
4452
|
+
type StepTransitionState = {
|
|
4453
|
+
/** Whether this step is the currently visible step. */
|
|
4454
|
+
isActive: boolean;
|
|
4455
|
+
/** Whether this step is animating out after being replaced by a new active step. */
|
|
4456
|
+
isExiting: boolean;
|
|
4457
|
+
/** Whether the modal is idle (no transition in progress). True on initial render and after animations complete. */
|
|
4458
|
+
isIdle: boolean;
|
|
4459
|
+
/** The direction of the current or most recent transition. */
|
|
4460
|
+
direction: StackedModalDirection;
|
|
4461
|
+
};
|
|
4462
|
+
|
|
4463
|
+
type StackedModalProps = {
|
|
4464
|
+
/** The step content. Each child should be a `StackedModalStep` component. */
|
|
4465
|
+
children: ReactNode;
|
|
4466
|
+
/**
|
|
4467
|
+
* Called when the close button is clicked, the Escape button is pressed, or when the modal's backdrop is clicked.
|
|
4468
|
+
* If undefined is passed, the modal will not be closable by the user and the close button will not be rendered.
|
|
4469
|
+
*/
|
|
4470
|
+
onRequestClose: ModalProps['onRequestClose'];
|
|
4471
|
+
/**
|
|
4472
|
+
* The size sets the modal width to one of three options sm = 400px, md = 600px and lg = 800px.
|
|
4473
|
+
* If a width attribute is used the size will be overridden by the width attribute.
|
|
4474
|
+
* @default 'lg'
|
|
4475
|
+
*/
|
|
4476
|
+
modalSize?: ModalProps['modalSize'];
|
|
4477
|
+
/** A valid CSS width. Overrides `modalSize` when provided. */
|
|
4478
|
+
width?: string;
|
|
4479
|
+
/** A valid CSS height. */
|
|
4480
|
+
height?: string;
|
|
4481
|
+
/**
|
|
4482
|
+
* The zero-indexed step to display initially.
|
|
4483
|
+
* @default 0
|
|
4484
|
+
*/
|
|
4485
|
+
initialStep?: number;
|
|
4486
|
+
};
|
|
4487
|
+
/**
|
|
4488
|
+
* A modal component that supports multi-step content with sliding transitions.
|
|
4489
|
+
* Each child should be a `StackedModalStep` component that defines its own header,
|
|
4490
|
+
* content, and button group.
|
|
4491
|
+
*
|
|
4492
|
+
* Use the `useStackedModal` hook inside step content to navigate between steps.
|
|
4493
|
+
*
|
|
4494
|
+
* @example
|
|
4495
|
+
* <StackedModal onRequestClose={handleClose} modalSize="lg">
|
|
4496
|
+
* <StackedModalStep header="Step 1" buttonGroup={<Buttons />}>
|
|
4497
|
+
* <StepOneContent />
|
|
4498
|
+
* </StackedModalStep>
|
|
4499
|
+
* <StackedModalStep header="Step 2" buttonGroup={<Buttons />}>
|
|
4500
|
+
* <StepTwoContent />
|
|
4501
|
+
* </StackedModalStep>
|
|
4502
|
+
* </StackedModal>
|
|
4503
|
+
*/
|
|
4504
|
+
declare const StackedModal: React__default.ForwardRefExoticComponent<StackedModalProps & React__default.RefAttributes<HTMLDialogElement>>;
|
|
4505
|
+
|
|
4506
|
+
/** Props for a single step within a `StackedModal`. */
|
|
4507
|
+
type StackedModalStepProps = {
|
|
4508
|
+
/**
|
|
4509
|
+
* Header content displayed in the modal's header row, inline with the close icon.
|
|
4510
|
+
* This prop is extracted by the parent `StackedModal` and rendered in the
|
|
4511
|
+
* modal chrome -- it is **not** rendered by `StackedModalStep` itself.
|
|
4512
|
+
*/
|
|
4513
|
+
header?: ReactNode;
|
|
4514
|
+
/** Optional button group rendered at the bottom of the step, typically navigation or submit buttons. */
|
|
4515
|
+
buttonGroup?: ReactNode;
|
|
4516
|
+
/** The main body content of the step. */
|
|
4517
|
+
children: ReactNode;
|
|
4518
|
+
};
|
|
4519
|
+
/**
|
|
4520
|
+
* Defines a single step inside a `StackedModal`.
|
|
4521
|
+
*
|
|
4522
|
+
* Renders a scrollable content area and an optional bottom button group.
|
|
4523
|
+
* The `header` prop is read by the parent `StackedModal` and displayed in the
|
|
4524
|
+
* modal header row with a matching slide animation.
|
|
4525
|
+
*
|
|
4526
|
+
* @example
|
|
4527
|
+
* <StackedModalStep header="Account details" buttonGroup={<Button>Next</Button>}>
|
|
4528
|
+
* <FormFields />
|
|
4529
|
+
* </StackedModalStep>
|
|
4530
|
+
*/
|
|
4531
|
+
declare function StackedModalStep({ children, buttonGroup }: StackedModalStepProps): _emotion_react_jsx_runtime.JSX.Element;
|
|
4532
|
+
|
|
4100
4533
|
type SwitchProps = Omit<React.InputHTMLAttributes<HTMLInputElement>, 'type'> & {
|
|
4101
4534
|
/** sets the label value */
|
|
4102
4535
|
label: ReactNode;
|
|
@@ -4361,20 +4794,8 @@ type LinkManagerWithRefType = (props: Partial<LinkProps> & {
|
|
|
4361
4794
|
* We recommend using this link `next/link`
|
|
4362
4795
|
* @example <LinkWithRef linkManagerComponent={NextLink} href="some-url" text="my link" />
|
|
4363
4796
|
*/
|
|
4364
|
-
declare const LinkWithRef: React$1.ForwardRefExoticComponent<Omit<
|
|
4365
|
-
|
|
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
|
-
} & {
|
|
4797
|
+
declare const LinkWithRef: React$1.ForwardRefExoticComponent<Omit<Omit<LinkProps, "text"> & {
|
|
4798
|
+
text?: string;
|
|
4378
4799
|
href: string;
|
|
4379
4800
|
as?: string;
|
|
4380
4801
|
linkManagerComponent: LinkManagerWithRefType;
|
|
@@ -4524,4 +4945,4 @@ declare const StatusBullet: ({ status, hideText, size, message, compact, ...prop
|
|
|
4524
4945
|
|
|
4525
4946
|
declare const actionBarVisibilityStyles: _emotion_react.SerializedStyles;
|
|
4526
4947
|
|
|
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 };
|
|
4948
|
+
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 };
|