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