@uniformdev/design-system 19.214.0 → 19.214.1-alpha.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -1,28 +1,24 @@
1
1
  import * as _emotion_react_jsx_runtime from '@emotion/react/jsx-runtime';
2
2
  import { Decorator } from '@storybook/react';
3
3
  import * as React$1 from 'react';
4
- import React__default, { RefObject, ReactElement, HTMLAttributes, MutableRefObject, ReactNode, ImgHTMLAttributes, SVGProps, InputHTMLAttributes, CSSProperties, Ref, PropsWithChildren, ButtonHTMLAttributes, FocusEventHandler, ChangeEvent, HtmlHTMLAttributes } from 'react';
4
+ import React__default, { RefObject, ReactElement, MutableRefObject, HTMLAttributes, ReactNode, ImgHTMLAttributes, SVGProps, InputHTMLAttributes, CSSProperties, Ref, PropsWithChildren, FocusEventHandler, ChangeEvent, HtmlHTMLAttributes } from 'react';
5
5
  import { GroupBase, Props, MultiValue, SingleValue } 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';
9
9
  import { LottieComponentProps } from 'lottie-react';
10
- import { ButtonProps as ButtonProps$1 } from 'reakit/Button';
10
+ import * as _ariakit_react from '@ariakit/react';
11
+ import { TooltipOptions, TooltipStoreProps, 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';
12
+ export { PopoverStore } from '@ariakit/react';
11
13
  import { RefType } from 'react-hotkeys-hook/dist/types';
12
- import { TooltipOptions, TooltipInitialState } from 'reakit/Tooltip';
13
- import { MenuProps as MenuProps$1 } from 'reakit';
14
14
  import { IconType as IconType$1, IconBaseProps } from '@react-icons/all-files/lib';
15
15
  import * as _react_icons_all_files from '@react-icons/all-files';
16
16
  import { IconType as IconType$2 } from '@react-icons/all-files';
17
17
  import { DateValue } from '@internationalized/date';
18
18
  import { CalendarProps as CalendarProps$1, TimeFieldProps, TimeValue } from 'react-aria-components';
19
- import { PopoverState } from 'reakit/Popover';
20
19
  import { CreatableProps } from 'react-select/creatable';
21
20
  import InternalSelect from '../../../node_modules/react-select/dist/declarations/src/Select';
22
21
  import { JsonSchema7Type } from 'zod-to-json-schema/src/parseDef';
23
- import * as _ariakit_react from '@ariakit/react';
24
- import { MenuProps as MenuProps$2, MenuStoreProps, Menu as Menu$1, MenuItemProps as MenuItemProps$1, PopoverProps as PopoverProps$1, PopoverProviderProps, PopoverStore, TabStoreState, TabListProps, TabProps, TabPanelProps } from '@ariakit/react';
25
- export { PopoverStore } from '@ariakit/react';
26
22
  import { InitialConfigType } from '@lexical/react/LexicalComposer';
27
23
  import { LinkParamValue, RichTextParamConfiguration } from '@uniformdev/canvas';
28
24
  export { RichTextBuiltInElement, RichTextBuiltInFormat } from '@uniformdev/canvas';
@@ -125,6 +121,11 @@ declare const buttonGhostDestructive: _emotion_react.SerializedStyles;
125
121
  declare const buttonTertiary: _emotion_react.SerializedStyles;
126
122
  declare const buttonTertiaryOutline: _emotion_react.SerializedStyles;
127
123
  declare const buttonGhostUnimportant: _emotion_react.SerializedStyles;
124
+ declare const buttonSoftPrimary: _emotion_react.SerializedStyles;
125
+ declare const buttonSoftTertiary: _emotion_react.SerializedStyles;
126
+ declare const buttonSoftAlt: _emotion_react.SerializedStyles;
127
+ declare const buttonSoftDestructive: _emotion_react.SerializedStyles;
128
+ declare const buttonSoftAccentPrimary: _emotion_react.SerializedStyles;
128
129
 
129
130
  declare const labelText: _emotion_react.SerializedStyles;
130
131
  declare const input: (whiteSpaceWrap: "wrap" | "nowrap") => _emotion_react.SerializedStyles;
@@ -20266,31 +20267,6 @@ interface AvatarGroupProps extends React.HTMLAttributes<HTMLDivElement> {
20266
20267
  */
20267
20268
  declare const AvatarGroup: ({ max, children, getTruncatedLabel, truncatedProps, ...props }: AvatarGroupProps) => _emotion_react_jsx_runtime.JSX.Element;
20268
20269
 
20269
- type BadgeThemeProps = 'caution' | 'info' | 'note' | 'success' | 'error' | 'unimportant';
20270
- type SizeProps = 'xs' | 'sm' | 'base';
20271
- type BadgeProps = {
20272
- /** sets the text of the badge */
20273
- text: string;
20274
- /** sets the theme of the badge
20275
- * @default unimportant
20276
- */
20277
- theme?: BadgeThemeProps;
20278
- /** sets the size of the badge
20279
- * @default 'base'
20280
- */
20281
- size?: SizeProps;
20282
- /** sets text to uppercase */
20283
- uppercaseText?: boolean;
20284
- } & HTMLAttributes<HTMLSpanElement>;
20285
- type BadgeThemeStyleProps = Record<BadgeThemeProps, SerializedStyles>;
20286
- type BadgeSizeProps = Record<SizeProps, SerializedStyles>;
20287
- /**
20288
- * Uniform Badge Component
20289
- * @example <Badge text="My badge" theme="success" size="base" />
20290
- * @deprecated please use Chip component instead
20291
- */
20292
- declare const Badge: ({ text, theme, size, uppercaseText, ...props }: BadgeProps) => _emotion_react_jsx_runtime.JSX.Element;
20293
-
20294
20270
  type BannerType = 'note' | 'info' | 'caution' | 'danger' | 'success';
20295
20271
  type BannerProps = React__default.HTMLAttributes<HTMLDivElement> & {
20296
20272
  /** The type of the banner.
@@ -20345,23 +20321,6 @@ declare const UniformLogoLarge: ({ ...props }: React.SVGAttributes<SVGElement>)
20345
20321
  */
20346
20322
  declare function getFormattedShortcut(shortcut: string | null): string[];
20347
20323
 
20348
- /**
20349
- * @deprecated Use tooltips or menu items with a shortcut instead,
20350
- * and getFormattedShortcut for display
20351
- */
20352
- declare function ShortcutContext({ children }: {
20353
- children: React__default.ReactNode;
20354
- }): _emotion_react_jsx_runtime.JSX.Element;
20355
- /**
20356
- * @deprecated Use tooltips or menu items with a shortcut instead,
20357
- * and getFormattedShortcut for display
20358
- */
20359
- declare function ShortcutRevealer({ shortcut, macShortcut, className, }: {
20360
- shortcut: string;
20361
- macShortcut?: string;
20362
- className?: SerializedStyles | string;
20363
- }): _emotion_react_jsx_runtime.JSX.Element | null;
20364
-
20365
20324
  type UseShortcutOptions = {
20366
20325
  /**
20367
20326
  * Shortcut to type to activate. Keys are +-delimited.
@@ -20407,19 +20366,36 @@ type TooltipProps = TooltipOptions & {
20407
20366
  /** Content of tooltip popover */
20408
20367
  title: string | React__default.ReactElement;
20409
20368
  /** Optional ability to specify alternative placement. By default - bottom center */
20410
- placement?: TooltipInitialState['placement'];
20369
+ placement?: TooltipStoreProps['placement'];
20411
20370
  /** Optional ability to control visibility of Tooltip manually, useful for showing tooltip on click instead of on hover */
20412
- visible?: TooltipInitialState['visible'];
20371
+ visible?: TooltipStoreProps['open'];
20413
20372
  children: JSX.Element;
20414
20373
  /** If the tooltip should not be rendered inside a portal */
20415
20374
  withoutPortal?: boolean;
20416
20375
  } & Pick<HTMLAttributes<HTMLDivElement>, 'className'>;
20417
20376
  declare function Tooltip({ children, title, placement, visible, withoutPortal, ...props }: TooltipProps): _emotion_react_jsx_runtime.JSX.Element;
20418
20377
 
20419
- /** Button themes that are available to use with our brand */
20420
- type ButtonThemeProps$1 = 'primary' | 'secondary' | 'accent-alt-dark' | 'accent-alt-dark-outline' | 'destructive' | 'tertiary' | 'tertiaryOutline' | 'unimportant' | 'ghost' | 'ghostDestructive' | 'primaryInvert' | 'secondaryInvert' | 'ghostUnimportant';
20421
20378
  /** Button sizes that are available to use with our brand */
20422
20379
  type ButtonSizeProps$1 = 'zero' | 'xs' | 'sm' | 'md' | 'lg' | 'xl';
20380
+ /** Button themes that are available to use with our brand */
20381
+ type ButtonThemeProps$1 = 'primary' | 'secondary' | 'accent-alt-dark' | 'accent-alt-dark-outline' | 'destructive' | 'tertiary' | 'tertiaryOutline' | 'unimportant' | 'ghost' | 'ghostDestructive' | 'primaryInvert' | 'secondaryInvert' | 'ghostUnimportant';
20382
+ /** @deprecated - Beta Button themes for the soft variant */
20383
+ type ButtonSoftThemeProps = 'primary' | 'tertiary' | 'alt' | 'destructive' | 'accent-primary';
20384
+ type ButtonStylesProps = ButtonDefaultStylesProps | ButtonSoftStylesProps;
20385
+ type ButtonDefaultStylesProps = {
20386
+ theme: ButtonThemeProps$1;
20387
+ size: ButtonSizeProps$1;
20388
+ };
20389
+ type ButtonSoftStylesProps = {
20390
+ theme: ButtonSoftThemeProps;
20391
+ size: ButtonSizeProps$1;
20392
+ variant?: 'soft' | undefined;
20393
+ };
20394
+ declare const useButtonStyles: ({ size, ...props }: ButtonStylesProps) => {
20395
+ buttonTheme: SerializedStyles;
20396
+ btnSize: string;
20397
+ };
20398
+
20423
20399
  type ButtonProps = ButtonProps$1 & {
20424
20400
  /** sets the theme of the button
20425
20401
  * @default "primary"
@@ -20447,11 +20423,16 @@ type ButtonProps = ButtonProps$1 & {
20447
20423
  */
20448
20424
  shortcut?: ShortcutReference;
20449
20425
  };
20426
+ /** @deprecated - Beta Button component using the soft variant */
20427
+ type ButtonWithVariantProps = Omit<ButtonProps, 'buttonType'> & {
20428
+ variant?: 'soft';
20429
+ buttonType?: ButtonSoftThemeProps;
20430
+ };
20450
20431
  /**
20451
20432
  * Uniform Button Component
20452
20433
  * @example <Button buttonType="secondary" size="md" onClick={() => alert('hello world!')}>Click me</Button>
20453
20434
  */
20454
- declare const Button: React$1.ForwardRefExoticComponent<Omit<ButtonProps, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
20435
+ declare const Button: React$1.ForwardRefExoticComponent<(Omit<ButtonProps, "ref"> | Omit<ButtonWithVariantProps, "ref">) & React$1.RefAttributes<HTMLButtonElement>>;
20455
20436
 
20456
20437
  declare const allSupportedIcons: {
20457
20438
  'rectangle-rounded': (props: _react_icons_all_files.IconBaseProps) => React.JSX.Element;
@@ -21240,8 +21221,8 @@ type ButtonSizeProps = 'sm' | 'base' | 'lg';
21240
21221
  interface ActionButtonsProps {
21241
21222
  /** Takes a function for the visible button */
21242
21223
  onButtonClick?: () => void;
21243
- /** (optional) reakit placements options for the expandable menu */
21244
- placement?: MenuProps$1['placement'];
21224
+ /** (optional) ariakit placements options for the expandable menu */
21225
+ placement?: MenuStoreProps['placement'];
21245
21226
  /** sets the theme of the button
21246
21227
  * @default "secondary"
21247
21228
  */
@@ -21256,10 +21237,6 @@ interface ActionButtonsProps {
21256
21237
  size?: ButtonSizeProps;
21257
21238
  /** sets additional Menu component styles */
21258
21239
  menuContainerCssClasses?: SerializedStyles;
21259
- /** sets whether to use a React portal rendering or not.
21260
- * @deprecated This property does not work correctly. Use `portal` instead.
21261
- */
21262
- withoutPortal?: boolean;
21263
21240
  /** sets whether to use a React portal rendering or not. */
21264
21241
  portal?: boolean;
21265
21242
  /** (optional) sets the maximum height of the menu
@@ -21281,7 +21258,7 @@ interface ActionButtonsProps {
21281
21258
  }
21282
21259
  /** ButtonWithMenuProps combines the ActionButtonsProps with React HTMLButtonElement attributes */
21283
21260
  type ButtonWithMenuProps = ActionButtonsProps & React$1.ButtonHTMLAttributes<HTMLButtonElement>;
21284
- declare const ButtonWithMenu: ({ onButtonClick, buttonType, buttonText, icon, disabled, children, placement, size, menuContainerCssClasses, withoutPortal, portal, maxMenuHeight, tooltip, shortcut, ...buttonProps }: ButtonWithMenuProps) => _emotion_react_jsx_runtime.JSX.Element;
21261
+ declare const ButtonWithMenu: ({ onButtonClick, buttonType, buttonText, icon, disabled, children, placement, size, menuContainerCssClasses, portal, maxMenuHeight, tooltip, shortcut, ...buttonProps }: ButtonWithMenuProps) => _emotion_react_jsx_runtime.JSX.Element;
21285
21262
 
21286
21263
  /**
21287
21264
  * A string in the ISO 8601 date format: YYYY-MM-DD
@@ -21386,7 +21363,7 @@ declare const CardContainer: ({ bgColor, padding, withLastColumn, children, ...p
21386
21363
  declare const LoadingCardSkeleton: () => _emotion_react_jsx_runtime.JSX.Element;
21387
21364
 
21388
21365
  type ChipSizeProp = 'xs' | 'sm' | 'md';
21389
- type ChipTheme = 'accent-light' | 'accent-dark' | 'accent-alt-light' | 'accent-alt-dark' | 'neutral-light' | 'neutral-dark';
21366
+ type ChipTheme = 'accent-light' | 'accent-dark' | 'accent-alt-light' | 'accent-alt-dark' | 'neutral-light' | 'neutral-dark' | 'utility-caution' | 'utility-danger' | 'utility-info' | 'utility-success';
21390
21367
  type ChipProps = {
21391
21368
  icon?: IconType;
21392
21369
  /** sets the color of the icon
@@ -21590,9 +21567,11 @@ type DateTimePickerProps = {
21590
21567
  /** (optional) sets the base test id for each of the elements with a testid */
21591
21568
  testId?: string;
21592
21569
  /** (optional) sets the popover placement */
21593
- placement?: PopoverState['placement'];
21594
- /** (optional) sets the popover offset */
21595
- offset?: [string | number, string | number] | undefined;
21570
+ placement?: PopoverStoreState['placement'];
21571
+ /** (optional) sets the popover offset
21572
+ * @default 8
21573
+ */
21574
+ offset?: number;
21596
21575
  };
21597
21576
  /**
21598
21577
  * Use this context for slots within the date time picker
@@ -21605,9 +21584,6 @@ declare function useDateTimePickerContext(): {
21605
21584
  };
21606
21585
  /**
21607
21586
  * Date Time Picker
21608
- *
21609
- * @deprecated This component is in beta, name and props are subject to change without a major version
21610
- *
21611
21587
  * This is a Calendar, Time input and TimeZone selector
21612
21588
  * housed in a popup. You can use it to pick a date as well
21613
21589
  * as a time, or you can also change it to only pick a date.
@@ -21615,7 +21591,7 @@ declare function useDateTimePickerContext(): {
21615
21591
  * Subcomponents can manipulate the value directly by using
21616
21592
  * the `useDateTimePickerContext()` hook.
21617
21593
  */
21618
- declare const DateTimePicker: ({ id, label, triggerIcon, value, minVisible, maxVisible, variant, caption, placeholder, belowTimeInputSlot, showLabel, errorMessage, warningMessage, disabled, onChange, testId, placement, offset, ...props }: DateTimePickerProps) => _emotion_react_jsx_runtime.JSX.Element;
21594
+ declare const DateTimePicker: ({ id, label, triggerIcon, value, minVisible, maxVisible, variant, caption, placeholder, belowTimeInputSlot, showLabel, errorMessage, warningMessage, disabled, onChange, offset, testId, placement, ...props }: DateTimePickerProps) => _emotion_react_jsx_runtime.JSX.Element;
21619
21595
 
21620
21596
  declare function DateTimePickerSummary({ value, placeholder, }: {
21621
21597
  value: DateTimePickerValue | null | undefined;
@@ -21654,12 +21630,10 @@ type DetailsProps = React$1.HTMLAttributes<HTMLDetailsElement> & {
21654
21630
  isOpenByDefault?: boolean;
21655
21631
  /** Makes the content indented, and shows an indent guide line.
21656
21632
  * @default false
21657
- * @deprecated this prop is in beta, and might get breaking changes in minor releases.
21658
21633
  */
21659
21634
  isIndented?: boolean;
21660
21635
  /** Makes the the UI of the summary more compact, by removing the paddings.
21661
21636
  * @default false
21662
- * @deprecated this prop is in beta, and might get breaking changes in minor releases.
21663
21637
  */
21664
21638
  isCompact?: boolean;
21665
21639
  };
@@ -21830,7 +21804,7 @@ interface IconButtonProps extends Omit<ButtonProps, 'size'> {
21830
21804
  /** Style for the larger sizes have not been decided yet */
21831
21805
  size?: 'xs' | 'sm' | 'md';
21832
21806
  }
21833
- declare const IconButton: React$1.ForwardRefExoticComponent<Omit<IconButtonProps, "ref"> & React$1.RefAttributes<unknown>>;
21807
+ declare const IconButton: React$1.ForwardRefExoticComponent<Omit<IconButtonProps, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
21834
21808
 
21835
21809
  interface ImageProps extends ImgHTMLAttributes<HTMLImageElement> {
21836
21810
  imgClassName?: string;
@@ -21970,7 +21944,6 @@ type InputProps = React$1.InputHTMLAttributes<HTMLInputElement> & {
21970
21944
  errorTestId?: string;
21971
21945
  /** (option) sets caption message test id for test automation */
21972
21946
  captionTestId?: string;
21973
- capture?: boolean | 'user' | 'environment';
21974
21947
  /**
21975
21948
  * (optional) sets an overriding classname on the root element
21976
21949
  */
@@ -22013,7 +21986,6 @@ declare const Input: React$1.ForwardRefExoticComponent<React$1.InputHTMLAttribut
22013
21986
  errorTestId?: string;
22014
21987
  /** (option) sets caption message test id for test automation */
22015
21988
  captionTestId?: string;
22016
- capture?: boolean | "user" | "environment";
22017
21989
  /**
22018
21990
  * (optional) sets an overriding classname on the root element
22019
21991
  */
@@ -22362,7 +22334,6 @@ type TextareaProps = React$1.TextareaHTMLAttributes<HTMLTextAreaElement> & {
22362
22334
  errorMessage?: string;
22363
22335
  /** (optional) sets and shows the warning message value */
22364
22336
  warningMessage?: string;
22365
- capture?: boolean | 'user' | 'environment';
22366
22337
  };
22367
22338
  /**
22368
22339
  * Textarea Component
@@ -22381,7 +22352,6 @@ declare const Textarea: React$1.ForwardRefExoticComponent<React$1.TextareaHTMLAt
22381
22352
  errorMessage?: string;
22382
22353
  /** (optional) sets and shows the warning message value */
22383
22354
  warningMessage?: string;
22384
- capture?: boolean | "user" | "environment";
22385
22355
  } & React$1.RefAttributes<HTMLTextAreaElement>>;
22386
22356
 
22387
22357
  type WarningMessageProps = React.HTMLAttributes<HTMLSpanElement> & {
@@ -22668,26 +22638,15 @@ declare function DropdownStyleMenuTrigger({ bgColor, children, ...buttonProps }:
22668
22638
 
22669
22639
  declare const legacyPlacements: readonly ["auto", "auto-start", "auto-end"];
22670
22640
  type LegacyPlacement = (typeof legacyPlacements)[number];
22671
- interface MenuProps extends MenuProps$2 {
22672
- /**
22673
- * sets aria-label attribute.
22674
- * @deprecated Set the label directly on the `menuTrigger`
22675
- */
22676
- menuLabel?: string;
22641
+ interface MenuProps extends MenuProps$1 {
22677
22642
  /** the component that triggers the menu functionality */
22678
22643
  menuTrigger: React$1.ReactElement & React$1.RefAttributes<any>;
22679
- /** (optional) reakit placements options for the expandable menu */
22644
+ /** (optional) Ariakit placements options for the expandable menu */
22680
22645
  placement?: MenuStoreProps['placement'] | LegacyPlacement;
22681
22646
  /** (optional) allows users to set additional class names */
22682
22647
  menuItemsContainerCssClasses?: SerializedStyles | string;
22683
22648
  /** (optional) allows users to add child elements */
22684
22649
  children?: React$1.ReactNode;
22685
- /**
22686
- * Overrides the visibility of the menu.
22687
- * When unset, visibility is owned by the menu. When a boolean, forces the menu visibility.
22688
- * @deprecated use the `open` prop instead
22689
- */
22690
- forceVisible?: boolean;
22691
22650
  /**
22692
22651
  * By default the menu will automatically remove MenuItemSeparator components when they are:
22693
22652
  * - the first child
@@ -22699,9 +22658,7 @@ interface MenuProps extends MenuProps$2 {
22699
22658
  * If you need to disable this functionality, set this prop to true.
22700
22659
  */
22701
22660
  disableAutoSeparatorManagement?: boolean;
22702
- /** sets whether to use a React portal rendering or not.
22703
- * @deprecated this prop was added to fix a bug with portal, this issue is now fixed, and we don't need this prop anymore.
22704
- */
22661
+ /** sets whether to use a React portal rendering or not. */
22705
22662
  withoutPortal?: boolean;
22706
22663
  /** (optional) sets the test id attribute */
22707
22664
  testId?: string;
@@ -22787,13 +22744,6 @@ declare function MenuItemIcon({ icon }: {
22787
22744
  */
22788
22745
  declare function MenuItemEmptyIcon(): _emotion_react_jsx_runtime.JSX.Element;
22789
22746
 
22790
- /**
22791
- * @deprecated this is deprecated and will be removed in the next major release. Use MenuGroup instead.
22792
- */
22793
- declare const MenuItemHeading: ({ children }: {
22794
- children: ReactNode;
22795
- }) => _emotion_react_jsx_runtime.JSX.Element;
22796
-
22797
22747
  declare const MenuItemSeparator: () => _emotion_react_jsx_runtime.JSX.Element;
22798
22748
 
22799
22749
  type MenuButtonProp = {
@@ -22843,20 +22793,6 @@ interface SelectableMenuItemProps extends PropsWithChildren<Omit<MenuItemProps,
22843
22793
  }
22844
22794
  declare function SelectableMenuItem({ selected, children, ...menuItemProps }: SelectableMenuItemProps): _emotion_react_jsx_runtime.JSX.Element;
22845
22795
 
22846
- /** @deprecated - use GridListItem component instead */
22847
- type MediaCardProps = Omit<CardProps, 'menuItems'> & {
22848
- title: string;
22849
- subtitle?: React.ReactNode;
22850
- infoPopover?: React.ReactNode;
22851
- cover?: React.ReactNode;
22852
- menuItems?: React.ReactElement<MenuItemProps>[] | React.ReactNode;
22853
- sideSection?: React.ReactNode;
22854
- buttonType?: ButtonHTMLAttributes<HTMLButtonElement>['type'];
22855
- onClick?: () => void;
22856
- };
22857
- /** @deprecated - use GridListItem component instead */
22858
- declare const MediaCard: ({ title, subtitle, infoPopover, cover, menuItems, sideSection, onClick, buttonType, ...cardProps }: MediaCardProps) => _emotion_react_jsx_runtime.JSX.Element;
22859
-
22860
22796
  type ModalProps = {
22861
22797
  header?: React__default.ReactNode;
22862
22798
  children?: React__default.ReactNode;
@@ -22874,10 +22810,6 @@ type ModalProps = {
22874
22810
  width?: string;
22875
22811
  /** A valid CSS height */
22876
22812
  height?: string;
22877
- /** The classname to set on the wrapper of the modal.
22878
- * @deprecated the dialog is not rendered inside a wrapper anymore.
22879
- */
22880
- wrapperClassName?: string;
22881
22813
  /** Removes the default padding on the content wrapper */
22882
22814
  withoutContentPadding?: boolean;
22883
22815
  /** Removes the default background color of the content wrapper */
@@ -23007,7 +22939,7 @@ type ObjectItemLoadingSkeletonProps = {
23007
22939
  declare const ObjectItemLoadingSkeleton: ({ showCover, renderAs, }: ObjectItemLoadingSkeletonProps) => _emotion_react_jsx_runtime.JSX.Element;
23008
22940
 
23009
22941
  /** @deprecated - Beta Object list item component */
23010
- type ObjectListItemProps = ObjectListItemSingleProps | (ObjectListItemMultiProps & HTMLAttributes<HTMLDivElement>);
22942
+ type ObjectListItemProps = (ObjectListItemSingleProps & HTMLAttributes<HTMLDivElement>) | (ObjectListItemMultiProps & HTMLAttributes<HTMLDivElement>);
23011
22943
  type ObjectListItemSingleProps = Omit<ObjectItemProps, 'cover' | 'children'> & {
23012
22944
  cover?: ReactNode;
23013
22945
  dragHandle?: ReactNode;
@@ -23070,11 +23002,9 @@ type CommonParameterProps = {
23070
23002
  /** (optional) allows users to manually set the error message state */
23071
23003
  handleManuallySetErrorMessage?: (message: string | undefined) => void;
23072
23004
  /** sets whether to show the override UI
23073
- * @deprecated
23074
23005
  */
23075
23006
  hasOverriddenValue?: boolean;
23076
23007
  /** sets the function call of the overriding parameters button
23077
- * @deprecated
23078
23008
  */
23079
23009
  onResetOverriddenValue?: () => void;
23080
23010
  };
@@ -23113,42 +23043,16 @@ declare const useParameterShell: () => {
23113
23043
  handleManuallySetErrorMessage: ((message: string | undefined) => void) | undefined;
23114
23044
  };
23115
23045
 
23116
- type ConnectToDataElementButtonProps = HTMLAttributes<HTMLButtonElement> & {
23046
+ type LabelLeadingIconProps = HTMLAttributes<HTMLButtonElement> & {
23117
23047
  icon?: IconType;
23118
23048
  iconColor?: IconColor;
23119
23049
  children?: ReactNode;
23120
- /** @deprecated use isActive */
23121
- isBound?: boolean;
23122
23050
  /** Sets if the button is active (pressed) currently. */
23123
23051
  isActive?: boolean;
23124
23052
  /** Disables hover state, sets aria-disabled */
23125
23053
  isLocked?: boolean;
23126
23054
  };
23127
- declare const LabelLeadingIcon: ({ icon, iconColor, children, isBound, isActive, isLocked, title, ...props }: ConnectToDataElementButtonProps) => _emotion_react_jsx_runtime.JSX.Element;
23128
- /** @deprecated use LabelLeadingIcon */
23129
- declare const ConnectToDataElementButton: ({ icon, iconColor, children, isBound, isActive, isLocked, title, ...props }: ConnectToDataElementButtonProps) => _emotion_react_jsx_runtime.JSX.Element;
23130
-
23131
- type ParameterDataConnectButtonProps = {
23132
- /** Sets the label value */
23133
- label: string;
23134
- /** sets the value for the aria-controls value, this should match the id of the controlled element */
23135
- id: string;
23136
- /** sets the button on click functionality */
23137
- onConnectDatasource: () => void;
23138
- /** sets the value inside the button element */
23139
- children: ReactNode;
23140
- /** (optional): allows user to pass a component within the label */
23141
- labelLeadingIcon?: ReactNode;
23142
- /** sets the help text */
23143
- caption?: string;
23144
- /** sets the disabled state of the button, useful for permissions */
23145
- disabled?: boolean;
23146
- };
23147
- /**
23148
- * @example <ParameterDataConnectButton label="label" id="connect-data-button" onConnectDatasource={() => myFunction()}>Button Text</ParameterDataConnectButton>
23149
- * @deprecated no longer used in uniform UI
23150
- */
23151
- declare function ParameterDataResource({ label, labelLeadingIcon, id, onConnectDatasource, caption, disabled, children, }: ParameterDataConnectButtonProps): _emotion_react_jsx_runtime.JSX.Element;
23055
+ declare const LabelLeadingIcon: ({ icon, iconColor, children, isActive, isLocked, title, ...props }: LabelLeadingIconProps) => _emotion_react_jsx_runtime.JSX.Element;
23152
23056
 
23153
23057
  type ParameterDrawerHeaderProps = {
23154
23058
  title: string;
@@ -23486,11 +23390,9 @@ declare const extractParameterProps: <T>(props: T & CommonParameterInputProps) =
23486
23390
  };
23487
23391
  type ParameterShellOverrideProps = {
23488
23392
  /** sets overriding parameters indicator
23489
- * @deprecated
23490
23393
  */
23491
23394
  hasOverriddenValue?: boolean;
23492
23395
  /** sets the function call of the overriding parameters button
23493
- * @deprecated
23494
23396
  */
23495
23397
  onResetOverriddenValue?: () => void;
23496
23398
  /**
@@ -23508,7 +23410,6 @@ declare const ParameterShell: ({ label, labelLeadingIcon, labelTrailingIcon, hid
23508
23410
  declare const ParameterShellPlaceholder: ({ children }: {
23509
23411
  children?: ReactNode;
23510
23412
  }) => _emotion_react_jsx_runtime.JSX.Element;
23511
- /** @deprecated */
23512
23413
  declare const ParameterOverrideMarker: (props: HTMLAttributes<HTMLButtonElement>) => _emotion_react_jsx_runtime.JSX.Element;
23513
23414
 
23514
23415
  type ParameterTextareaProps = CommonParameterInputProps & React.TextareaHTMLAttributes<HTMLTextAreaElement>;
@@ -23566,8 +23467,6 @@ type PopoverProps = PopoverProps$1 & {
23566
23467
  testId?: string;
23567
23468
  children: ReactNode;
23568
23469
  trigger?: ReactNode;
23569
- /** @deprecated */
23570
- baseId?: string;
23571
23470
  onInit?: ({ store }: {
23572
23471
  store: PopoverStore;
23573
23472
  }) => void;
@@ -23577,7 +23476,7 @@ type PopoverProps = PopoverProps$1 & {
23577
23476
  */
23578
23477
  maxWidth?: string;
23579
23478
  };
23580
- declare const Popover: ({ iconColor, icon, iconSize, buttonText, ariaLabel, placement, testId, trigger, children, baseId, onInit, maxWidth, ...otherProps }: PopoverProps) => _emotion_react_jsx_runtime.JSX.Element;
23479
+ declare const Popover: ({ iconColor, icon, iconSize, buttonText, ariaLabel, placement, testId, trigger, children, onInit, maxWidth, ...otherProps }: PopoverProps) => _emotion_react_jsx_runtime.JSX.Element;
23581
23480
  /**
23582
23481
  * Hook to get the current popover context
23583
23482
  * @description This hook is used to get the current popover context
@@ -23592,9 +23491,6 @@ interface ProgressBarProps extends React$1.HTMLAttributes<HTMLDivElement> {
23592
23491
  theme?: 'primary' | 'secondary' | 'destructive';
23593
23492
  variant?: 'determinate' | 'indeterminate';
23594
23493
  }
23595
- /**
23596
- * @deprecated This component is in beta, and might receive breaking changes in minor releases!
23597
- */
23598
23494
  declare function ProgressBar({ current, max, theme, variant, ...props }: ProgressBarProps): _emotion_react_jsx_runtime.JSX.Element;
23599
23495
 
23600
23496
  type ProgressListItemStatus = 'completed' | 'inProgress' | 'queued';
@@ -23964,10 +23860,6 @@ type HeadingProps = {
23964
23860
  level?: LevelProps;
23965
23861
  /** override the underlying html tag */
23966
23862
  as?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'span' | 'div';
23967
- /** sets whether to display a span with the defined heading styles
23968
- * @deprecated use as="span"
23969
- */
23970
- asSpan?: boolean;
23971
23863
  /** sets the title value */
23972
23864
  children: React$1.ReactNode;
23973
23865
  /** (optional) sets whether to use the default margin for the heading element
@@ -23979,32 +23871,7 @@ type HeadingProps = {
23979
23871
  * Component that sets the heading tag
23980
23872
  * @example <Heading level={1}>Blog Post Title</Heading>
23981
23873
  */
23982
- declare const Heading: ({ level, as, asSpan, withMarginBottom, children, ...hAttributes }: HeadingProps) => _emotion_react_jsx_runtime.JSX.Element;
23983
-
23984
- /** @deprecated - Integration header section props are no longer supported or maintained */
23985
- type IntegrationHeaderSectionProps = React$1.HtmlHTMLAttributes<HTMLDivElement> & {
23986
- /** sets the title text of the integration */
23987
- title: string;
23988
- /** sets the description text of the integration */
23989
- description: string | string[];
23990
- /** (optional) sets the icon of the integration */
23991
- icon?: string | React$1.ComponentType<{
23992
- className?: string;
23993
- }>;
23994
- /** (optional) sets the react child elements*/
23995
- children?: React$1.ReactNode;
23996
- /** (optional) sets an external link to documentation */
23997
- docsLink?: string;
23998
- /** (optional) sets the badge text of the integration */
23999
- badgeText?: string;
24000
- /** (optional) location for the menu options to be positioned */
24001
- menu?: React$1.ReactNode;
24002
- };
24003
- /**
24004
- * @deprecated Uniform Integration Header Section Component is no longer supported or maintained
24005
- * @Example <IntegrationHeaderSection title="custom integration" description="custom integration description text" />
24006
- */
24007
- declare const IntegrationHeaderSection: ({ title, description, icon, docsLink, badgeText, menu, children, ...props }: IntegrationHeaderSectionProps) => _emotion_react_jsx_runtime.JSX.Element;
23874
+ declare const Heading: ({ level, as, withMarginBottom, children, ...hAttributes }: HeadingProps) => _emotion_react_jsx_runtime.JSX.Element;
24008
23875
 
24009
23876
  type LinkColorProps = 'currentColor' | 'destructive' | 'default';
24010
23877
  type LinkProps = React$1.AnchorHTMLAttributes<HTMLAnchorElement> & {
@@ -24104,4 +23971,4 @@ type StatusBulletProps = React$1.HTMLAttributes<HTMLSpanElement> & {
24104
23971
  };
24105
23972
  declare const StatusBullet: ({ status, hideText, size, message, compact, ...props }: StatusBulletProps) => _emotion_react_jsx_runtime.JSX.Element;
24106
23973
 
24107
- export { type ActionButtonsProps, AddButton, type AddButtonProps, AddListButton, type AddListButtonProps, type AddListButtonThemeProps, AnimationFile, type AnimationFileProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, Badge, type BadgeProps, type BadgeSizeProps, type BadgeThemeProps, type BadgeThemeStyleProps, Banner, type BannerProps, type BannerType, BetaDecorator, type BoxHeightProps, type BreakpointSize, type BreakpointsMap, Button, type ButtonProps, type ButtonSizeProps$1 as ButtonSizeProps, type ButtonThemeProps$1 as 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, ConnectToDataElementButton, type ConnectToDataElementButtonProps, 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, 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, IntegrationHeaderSection, type IntegrationHeaderSectionProps, 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 LabelProps, Legend, type LegendProps, type LevelProps, LimitsBar, type LimitsBarProps, Link, type LinkColorProps, LinkList, type LinkListProps, type LinkManagerWithRefType, LinkNode, type LinkProps, LinkWithRef, LoadingCardSkeleton, LoadingIcon, type LoadingIconProps, LoadingIndicator, LoadingOverlay, type LoadingOverlayProps, MediaCard, type MediaCardProps, Menu, MenuButton, type MenuButtonProp, MenuGroup, type MenuGroupProps, MenuItem, MenuItemEmptyIcon, MenuItemHeading, MenuItemIcon, MenuItemInner, type MenuItemProps, MenuItemSeparator, type MenuItemTextThemeProps, type MenuProps, 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, type ParameterDataConnectButtonProps, ParameterDataResource, 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, ParameterOverrideMarker, ParameterRichText, ParameterRichTextInner, type ParameterRichTextInnerProps, type ParameterRichTextProps, ParameterSelect, ParameterSelectInner, type ParameterSelectProps, ParameterShell, ParameterShellContext, ParameterShellPlaceholder, type ParameterShellProps, ParameterTextarea, ParameterTextareaInner, type ParameterTextareaProps, ParameterToggle, ParameterToggleInner, type ParameterToggleProps, Popover, type PopoverProps, ProgressBar, type ProgressBarProps, ProgressList, ProgressListItem, type ProgressListItemProps, type ProgressListProps, type RegisterDrawerProps, ResolveIcon, type ResolveIconProps, 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, ShortcutContext, type ShortcutReference, ShortcutRevealer, Skeleton, type SkeletonProps, 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, 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, addPathSegmentToPathname, borderTopIcon, breakpoints, button, buttonAccentAltDark, buttonAccentAltDarkOutline, buttonDestructive, buttonGhost, buttonGhostDestructive, buttonGhostUnimportant, buttonPrimary, buttonPrimaryInvert, buttonRippleEffect, buttonSecondary, buttonSecondaryInvert, buttonTertiary, buttonTertiaryOutline, buttonUnimportant, canvasAlertIcon, cardIcon, convertComboBoxGroupsToSelectableGroups, cq, customIcons, extractParameterProps, fadeIn, fadeInBottom, fadeInLtr, fadeInRtl, fadeInTop, fadeOutBottom, fullWidthScreenIcon, getComboBoxSelectedSelectableGroups, getDrawerAttributes, getFormattedShortcut, getParentPath, getPathSegment, growSubtle, imageTextIcon, infoFilledIcon, input, inputError, inputSelect, isSecureURL, isValidUrl, jsonIcon, labelText, loader as loaderAnimationData, mq, numberInput, queryStringIcon, rectangleRoundedIcon, replaceUnderscoreInString, richTextToolbarButton, richTextToolbarButtonActive, ripple, scrollbarStyles, settings, settingsIcon, skeletonLoading, slideInTtb, spin, spinner as spinnerAnimationData, structurePanelIcon, supports, textInput, uniformAiIcon, uniformComponentIcon, uniformComponentPatternIcon, uniformCompositionPatternIcon, uniformConditionalValuesIcon, uniformContentTypeIcon, uniformEntryIcon, uniformEntryPatternIcon, uniformLocaleDisabledIcon, uniformLocaleIcon, useBreakpoint, useCloseCurrentDrawer, useCurrentDrawer, useCurrentTab, useDateTimePickerContext, useDrawer, useIconContext, useOutsideClick, useParameterShell, usePopoverComponentContext, useRichTextToolbarState, useShortcut, functionalColors as utilityColors, warningIcon, yesNoIcon, zigZag, zigZagThick };
23974
+ export { type ActionButtonsProps, AddButton, type AddButtonProps, AddListButton, type AddListButtonProps, type AddListButtonThemeProps, AnimationFile, type AnimationFileProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, Banner, type BannerProps, type BannerType, BetaDecorator, type BoxHeightProps, type BreakpointSize, type BreakpointsMap, Button, type ButtonProps, type ButtonSizeProps$1 as ButtonSizeProps, type ButtonSoftThemeProps, type ButtonThemeProps$1 as 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, 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, 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, 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, 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, ParameterOverrideMarker, ParameterRichText, ParameterRichTextInner, type ParameterRichTextInnerProps, type ParameterRichTextProps, ParameterSelect, ParameterSelectInner, type ParameterSelectProps, ParameterShell, ParameterShellContext, ParameterShellPlaceholder, type ParameterShellProps, ParameterTextarea, ParameterTextareaInner, type ParameterTextareaProps, ParameterToggle, ParameterToggleInner, type ParameterToggleProps, Popover, type PopoverProps, ProgressBar, type ProgressBarProps, ProgressList, ProgressListItem, type ProgressListItemProps, type ProgressListProps, type RegisterDrawerProps, ResolveIcon, type ResolveIconProps, 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, 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, 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, addPathSegmentToPathname, borderTopIcon, breakpoints, button, buttonAccentAltDark, buttonAccentAltDarkOutline, buttonDestructive, buttonGhost, buttonGhostDestructive, buttonGhostUnimportant, buttonPrimary, buttonPrimaryInvert, buttonRippleEffect, buttonSecondary, buttonSecondaryInvert, buttonSoftAccentPrimary, buttonSoftAlt, buttonSoftDestructive, buttonSoftPrimary, buttonSoftTertiary, buttonTertiary, buttonTertiaryOutline, buttonUnimportant, canvasAlertIcon, cardIcon, convertComboBoxGroupsToSelectableGroups, cq, customIcons, extractParameterProps, fadeIn, fadeInBottom, fadeInLtr, fadeInRtl, fadeInTop, fadeOutBottom, fullWidthScreenIcon, getComboBoxSelectedSelectableGroups, getDrawerAttributes, getFormattedShortcut, getParentPath, getPathSegment, growSubtle, imageTextIcon, infoFilledIcon, input, inputError, inputSelect, isSecureURL, isValidUrl, jsonIcon, labelText, loader as loaderAnimationData, mq, numberInput, queryStringIcon, rectangleRoundedIcon, replaceUnderscoreInString, richTextToolbarButton, richTextToolbarButtonActive, ripple, scrollbarStyles, settings, settingsIcon, skeletonLoading, slideInTtb, spin, spinner as spinnerAnimationData, structurePanelIcon, supports, textInput, uniformAiIcon, uniformComponentIcon, uniformComponentPatternIcon, uniformCompositionPatternIcon, uniformConditionalValuesIcon, uniformContentTypeIcon, uniformEntryIcon, uniformEntryPatternIcon, uniformLocaleDisabledIcon, uniformLocaleIcon, useBreakpoint, useButtonStyles, useCloseCurrentDrawer, useCurrentDrawer, useCurrentTab, useDateTimePickerContext, useDrawer, useIconContext, useOutsideClick, useParameterShell, usePopoverComponentContext, useRichTextToolbarState, useShortcut, functionalColors as utilityColors, warningIcon, yesNoIcon, zigZag, zigZagThick };