@uniformdev/design-system 19.53.0 → 19.53.1-alpha.41

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -82,6 +82,8 @@ declare const buttonRippleEffect: (props: {
82
82
  hoverColor: string;
83
83
  activeColor?: string;
84
84
  }) => _emotion_react.SerializedStyles;
85
+ declare const buttonAccentAltDark: _emotion_react.SerializedStyles;
86
+ declare const buttonAccentAltDarkOutline: _emotion_react.SerializedStyles;
85
87
  declare const buttonPrimary: _emotion_react.SerializedStyles;
86
88
  declare const buttonDestructive: _emotion_react.SerializedStyles;
87
89
  declare const buttonSecondary: _emotion_react.SerializedStyles;
@@ -20280,7 +20282,7 @@ declare const UniformLogo: ({ theme, ...props }: UniformLogoProps & React.SVGAtt
20280
20282
  declare const UniformLogoLarge: ({ ...props }: React.SVGAttributes<SVGElement>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
20281
20283
 
20282
20284
  /** Button themes that are available to use with our brand */
20283
- type ButtonThemeProps$1 = 'primary' | 'secondary' | 'destructive' | 'tertiary' | 'tertiaryOutline' | 'unimportant' | 'ghost' | 'ghostDestructive' | 'primaryInvert' | 'secondaryInvert' | 'ghostUnimportant';
20285
+ type ButtonThemeProps$1 = 'primary' | 'secondary' | 'accent-alt-dark' | 'accent-alt-dark-outline' | 'destructive' | 'tertiary' | 'tertiaryOutline' | 'unimportant' | 'ghost' | 'ghostDestructive' | 'primaryInvert' | 'secondaryInvert' | 'ghostUnimportant';
20284
20286
  /** Button sizes that are available to use with our brand */
20285
20287
  type ButtonSizeProps = 'zero' | 'xs' | 'sm' | 'md' | 'lg' | 'xl';
20286
20288
  type ButtonProps = ButtonProps$1 & {
@@ -20693,6 +20695,7 @@ declare const allSupportedIcons: {
20693
20695
  'yes-no': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20694
20696
  'diamond-outline': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20695
20697
  'diamond-fill': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20698
+ 'magic-wand': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20696
20699
  'add-r': _react_icons_all_files_lib.IconType;
20697
20700
  add: _react_icons_all_files_lib.IconType;
20698
20701
  airplane: _react_icons_all_files_lib.IconType;
@@ -21342,7 +21345,7 @@ type IconName = keyof typeof allSupportedIcons;
21342
21345
  /** sets fill color of the svg icon
21343
21346
  * @default 'default'
21344
21347
  */
21345
- type IconColor = 'action' | 'default' | 'red' | 'gray' | 'accent' | 'currentColor' | 'accent-light';
21348
+ type IconColor = 'white' | 'action' | 'default' | 'red' | 'gray' | 'accent' | 'currentColor' | 'accent-light';
21346
21349
  /** sets the type of icon to use from the available list */
21347
21350
  type IconType = IconName | IconType$1;
21348
21351
  interface IconProps extends IconBaseProps {
@@ -21399,6 +21402,7 @@ declare const customIcons: {
21399
21402
  'yes-no': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21400
21403
  'diamond-outline': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21401
21404
  'diamond-fill': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21405
+ 'magic-wand': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21402
21406
  };
21403
21407
 
21404
21408
  type IconsMap = Record<string, IconType$1>;
@@ -22000,12 +22004,13 @@ declare const ScrollableListInputItem: ({ label, icon, active, disableShadow, ch
22000
22004
  type ScrollableListItemProps = React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
22001
22005
  /** sets the button text value */
22002
22006
  buttonText: string;
22007
+ icon?: React$1.ReactElement;
22003
22008
  } & ScrollableListContainerProps;
22004
22009
  /**
22005
22010
  * Component used within <ScrollableList /> for adding interactive button components with predefined styles
22006
22011
  * @example <ScrollableListItem buttontext="my button" active={false} />
22007
22012
  */
22008
- declare const ScrollableListItem: ({ buttonText, active, disableShadow, ...props }: ScrollableListItemProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
22013
+ declare const ScrollableListItem: ({ buttonText, icon, active, disableShadow, ...props }: ScrollableListItemProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
22009
22014
 
22010
22015
  /**
22011
22016
  * Loading Indicator
@@ -22221,6 +22226,8 @@ type CommonParameterInputProps = CommonParameterProps & {
22221
22226
  caption?: string;
22222
22227
  /** sets menu items within the design system component Menu */
22223
22228
  menuItems?: ReactNode;
22229
+ /** sets action items */
22230
+ actionItems?: React.ReactNode;
22224
22231
  /** (option) sets validation message test id for test automation */
22225
22232
  errorTestId?: string;
22226
22233
  /** (option) sets caption message test id for test automation */
@@ -22333,6 +22340,7 @@ type ParameterInputProps = CommonParameterInputProps & React.InputHTMLAttributes
22333
22340
  declare const ParameterInput: React$1.ForwardRefExoticComponent<CommonParameterProps & {
22334
22341
  caption?: string | undefined;
22335
22342
  menuItems?: React$1.ReactNode;
22343
+ actionItems?: React$1.ReactNode;
22336
22344
  errorTestId?: string | undefined;
22337
22345
  captionTestId?: string | undefined;
22338
22346
  title?: string | undefined;
@@ -22364,6 +22372,7 @@ type ParameterLinkProps = CommonParameterInputProps & React.InputHTMLAttributes<
22364
22372
  declare const ParameterLink: React$1.ForwardRefExoticComponent<CommonParameterProps & {
22365
22373
  caption?: string | undefined;
22366
22374
  menuItems?: React$1.ReactNode;
22375
+ actionItems?: React$1.ReactNode;
22367
22376
  errorTestId?: string | undefined;
22368
22377
  captionTestId?: string | undefined;
22369
22378
  title?: string | undefined;
@@ -22516,6 +22525,7 @@ type ParameterSelectProps = CommonParameterInputProps & CommonParameterSelectPro
22516
22525
  declare const ParameterSelect: React$1.ForwardRefExoticComponent<CommonParameterProps & {
22517
22526
  caption?: string | undefined;
22518
22527
  menuItems?: React$1.ReactNode;
22528
+ actionItems?: React$1.ReactNode;
22519
22529
  errorTestId?: string | undefined;
22520
22530
  captionTestId?: string | undefined;
22521
22531
  title?: string | undefined;
@@ -22528,6 +22538,7 @@ declare const ParameterSelectInner: React$1.ForwardRefExoticComponent<Omit<Param
22528
22538
  declare const extractParameterProps: <T>(props: T & CommonParameterProps & {
22529
22539
  caption?: string | undefined;
22530
22540
  menuItems?: ReactNode;
22541
+ actionItems?: ReactNode;
22531
22542
  errorTestId?: string | undefined;
22532
22543
  captionTestId?: string | undefined;
22533
22544
  title?: string | undefined;
@@ -22551,6 +22562,7 @@ declare const extractParameterProps: <T>(props: T & CommonParameterProps & {
22551
22562
  innerProps: Omit<T & CommonParameterProps & {
22552
22563
  caption?: string | undefined;
22553
22564
  menuItems?: ReactNode;
22565
+ actionItems?: ReactNode;
22554
22566
  errorTestId?: string | undefined;
22555
22567
  captionTestId?: string | undefined;
22556
22568
  title?: string | undefined;
@@ -22571,7 +22583,7 @@ type ParameterShellProps = React.InputHTMLAttributes<HTMLDivElement> & CommonPar
22571
22583
  * Uniform Parameter shell component
22572
22584
  * @example <ParameterShell label="my label" id="my-id"><ParameterInput onChange={() => {}} /></ParameterShell>
22573
22585
  */
22574
- declare const ParameterShell: ({ label, labelLeadingIcon, labelTrailingIcon, hiddenLabel, id, errorMessage, warningMessage, infoMessage, caption, errorTestId, captionTestId, menuItems, hasOverriddenValue, onResetOverriddenValue, title, children, ...props }: ParameterShellProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
22586
+ declare const ParameterShell: ({ label, labelLeadingIcon, labelTrailingIcon, hiddenLabel, id, errorMessage, warningMessage, infoMessage, caption, errorTestId, captionTestId, menuItems, actionItems, hasOverriddenValue, onResetOverriddenValue, title, children, ...props }: ParameterShellProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
22575
22587
  declare const ParameterShellPlaceholder: ({ children }: {
22576
22588
  children?: ReactNode;
22577
22589
  }) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
@@ -22583,6 +22595,7 @@ type ParameterTextareaProps = CommonParameterInputProps & React.TextareaHTMLAttr
22583
22595
  declare const ParameterTextarea: React$1.ForwardRefExoticComponent<CommonParameterProps & {
22584
22596
  caption?: string | undefined;
22585
22597
  menuItems?: React$1.ReactNode;
22598
+ actionItems?: React$1.ReactNode;
22586
22599
  errorTestId?: string | undefined;
22587
22600
  captionTestId?: string | undefined;
22588
22601
  title?: string | undefined;
@@ -22597,6 +22610,7 @@ type ParameterToggleProps = Omit<React.InputHTMLAttributes<HTMLInputElement>, 't
22597
22610
  declare const ParameterToggle: React$1.ForwardRefExoticComponent<Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "type"> & CommonParameterProps & {
22598
22611
  caption?: string | undefined;
22599
22612
  menuItems?: React$1.ReactNode;
22613
+ actionItems?: React$1.ReactNode;
22600
22614
  errorTestId?: string | undefined;
22601
22615
  captionTestId?: string | undefined;
22602
22616
  title?: string | undefined;
@@ -23132,4 +23146,4 @@ type StatusBulletProps = React$1.HTMLAttributes<HTMLSpanElement> & {
23132
23146
  };
23133
23147
  declare const StatusBullet: ({ status, hideText, size, message, ...props }: StatusBulletProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23134
23148
 
23135
- export { ActionButtonsProps, AddButton, AddButtonProps, AddListButton, AddListButtonProps, AddListButtonThemeProps, AnimationFile, AnimationFileProps, ArrowPositionProps, Avatar, AvatarGroup, AvatarGroupProps, AvatarProps, Badge, BadgeProps, BadgeSizeProps, BadgeThemeProps, BadgeThemeStyleProps, Banner, BannerProps, BannerType, BoxHeightProps, BreakpointSize, BreakpointsMap, Button, ButtonProps, ButtonSizeProps, ButtonThemeProps$1 as ButtonThemeProps, ButtonWithMenu, ButtonWithMenuProps, Callout, CalloutProps, CalloutType, Caption, CaptionProps, Card, CardContainer, CardContainerBgColorProps, CardContainerProps, CardProps, CardTitle, CardTitleProps, CheckboxWithInfo, CheckboxWithInforProps, ChildFunction, Chip, ChipProps, ChipTheme, ComboBoxGroupBase, ConnectToDataElementButton, ConnectToDataElementButtonProps, Container, ContainerProps, Counter, CounterProps, CreateTeamIntegrationTile, CreateTeamIntegrationTileProps, CurrentDrawerContext, DashedBox, DashedBoxProps, DescriptionList, DescriptionListProps, Details, DetailsProps, DismissibleChipAction, Drawer, DrawerContent, DrawerContentProps, DrawerContextValue, DrawerItem, DrawerProps, DrawerProvider, DrawerRenderer, DrawerRendererItemProps, DrawerRendererProps, DrawersRegistryRecord, EditTeamIntegrationTile, EditTeamIntegrationTileProps, ErrorMessage, ErrorMessageProps, Fieldset, FieldsetProps, Heading, HeadingProps, HexModalBackground, HorizontalRhythm, Icon, IconButton, IconButtonProps, IconColor, IconName, IconProps, IconType, IconsProvider, Image, ImageBroken, ImageProps, InfoMessage, InfoMessageProps, InlineAlert, InlineAlertProps, Input, InputComboBox, InputComboBoxOption, InputComboBoxProps, InputInlineSelect, InputInlineSelectOption, InputInlineSelectProps, InputKeywordSearch, InputKeywordSearchProps, InputProps, InputSelect, InputSelectProps, InputToggle, InputToggleProps, IntegrationComingSoon, IntegrationComingSoonProps, IntegrationHeaderSection, IntegrationHeaderSectionProps, IntegrationLoadingTile, IntegrationLoadingTileProps, IntegrationModalHeader, IntegrationModalHeaderProps, IntegrationModalIcon, IntegrationModalIconProps, IntegrationTile, IntegrationTileProps, JsonEditor, JsonEditorProps, Label, LabelLeadingIcon, LabelProps, Legend, LegendProps, LevelProps, LimitsBar, LimitsBarProps, Link, LinkColorProps, LinkList, LinkListProps, LinkManagerWithRefType, LinkNode, LinkProps, LinkWithRef, LoadingCardSkeleton, LoadingIcon, LoadingIconProps, LoadingIndicator, LoadingOverlay, LoadingOverlayProps, MediaCard, MediaCardProps, Menu, MenuContext, MenuGroup, MenuGroupProps, MenuItem, MenuItemProps, MenuItemSeparator, MenuItemTextThemeProps, MenuProps, Modal, ModalProps, MultilineChip, MultilineChipProps, PageHeaderSection, PageHeaderSectionProps, Paragraph, ParagraphProps, ParameterDataConnectButtonProps, ParameterDataResource, ParameterDrawerHeader, ParameterDrawerHeaderProps, ParameterGroup, ParameterGroupProps, ParameterImage, ParameterImageInner, ParameterImagePreview, ParameterImageProps, ParameterInput, ParameterInputInner, ParameterInputProps, ParameterLabel, ParameterLabelProps, ParameterLink, ParameterLinkInner, ParameterLinkProps, ParameterMenuButton, ParameterMenuButtonProps, ParameterNameAndPublicIdInput, ParameterNameAndPublicIdInputProps, ParameterOverrideMarker, ParameterRichText, ParameterRichTextInner, ParameterRichTextInnerProps, ParameterRichTextProps, ParameterSelect, ParameterSelectInner, ParameterSelectProps, ParameterShell, ParameterShellContext, ParameterShellPlaceholder, ParameterShellProps, ParameterTextarea, ParameterTextareaInner, ParameterTextareaProps, ParameterToggle, ParameterToggleInner, ParameterToggleProps, Popover, PopoverProps, ProgressList, ProgressListItem, ProgressListItemProps, ProgressListProps, RegisterDrawerProps, ResolveIcon, ResolveIconProps, RhythmProps, RichTextParamValue, RichTextToolbarIcon, ScrollableItemProps, ScrollableList, ScrollableListContainerProps, ScrollableListInputItem, ScrollableListItem, ScrollableListItemProps, ScrollableListProps, SegmentedControl, SegmentedControlOption, SegmentedControlProps, SerializedLinkNode, ShortcutContext, ShortcutRevealer, Skeleton, SkeletonProps, StatusBullet, StatusBulletProps, StatusTypeProps, SuccessMessage, SuccessMessageProps, Switch, SwitchProps, TabButton, TabButtonGroup, TabButtonProps, TabContent, TabContentProps, Table, TableBody, TableBodyProps, TableCellData, TableCellDataProps, TableCellHead, TableCellHeadProps, TableFoot, TableFootProps, TableHead, TableHeadProps, TableProps, TableRow, TableRowProps, Tabs, TabsProps, TextAlignProps, Textarea, TextareaProps, Theme, ThemeProps, Tile, TileContainer, TileContainerProps, TileProps, TileText, TileTitleProps, Tooltip, TooltipProps, TwoColumnLayout, TwoColumnLayoutProps, UniformBadge, UniformLogo, UniformLogoLarge, UniformLogoProps, UseShortcutOptions, VerticalRhythm, WarningMessage, WarningMessageProps, accessibleHidden, borderTopIcon, breakpoints, button, buttonDestructive, buttonGhost, buttonGhostDestructive, buttonGhostUnimportant, buttonPrimary, buttonPrimaryInvert, buttonRippleEffect, buttonSecondary, buttonSecondaryInvert, buttonTertiary, buttonTertiaryOutline, buttonUnimportant, canvasAlertIcon, cardIcon, cq, customIcons, extractParameterProps, fadeIn, fadeInBottom, fadeInLtr, fadeInRtl, fadeInTop, fadeOutBottom, fullWidthScreenIcon, getDrawerAttributes, growSubtle, imageTextIcon, infoFilledIcon, input, inputError, inputSelect, isMacLike, jsonIcon, labelText, loader as loaderAnimationData, macifyShortcut, mq, numberInput, queryStringIcon, rectangleRoundedIcon, replaceUnderscoreInString, richTextToolbarButton, richTextToolbarButtonActive, ripple, scrollbarStyles, settings, settingsIcon, skeletonLoading, slideInTtb, spinner as spinnerAnimationData, structurePanelIcon, supports, textInput, useBreakpoint, useCloseCurrentDrawer, useCurrentDrawer, useCurrentTab, useDrawer, useIconContext, useMenuContext, useOutsideClick, useParameterShell, useShortcut, warningIcon, yesNoIcon };
23149
+ export { ActionButtonsProps, AddButton, AddButtonProps, AddListButton, AddListButtonProps, AddListButtonThemeProps, AnimationFile, AnimationFileProps, ArrowPositionProps, Avatar, AvatarGroup, AvatarGroupProps, AvatarProps, Badge, BadgeProps, BadgeSizeProps, BadgeThemeProps, BadgeThemeStyleProps, Banner, BannerProps, BannerType, BoxHeightProps, BreakpointSize, BreakpointsMap, Button, ButtonProps, ButtonSizeProps, ButtonThemeProps$1 as ButtonThemeProps, ButtonWithMenu, ButtonWithMenuProps, Callout, CalloutProps, CalloutType, Caption, CaptionProps, Card, CardContainer, CardContainerBgColorProps, CardContainerProps, CardProps, CardTitle, CardTitleProps, CheckboxWithInfo, CheckboxWithInforProps, ChildFunction, Chip, ChipProps, ChipTheme, ComboBoxGroupBase, ConnectToDataElementButton, ConnectToDataElementButtonProps, Container, ContainerProps, Counter, CounterProps, CreateTeamIntegrationTile, CreateTeamIntegrationTileProps, CurrentDrawerContext, DashedBox, DashedBoxProps, DescriptionList, DescriptionListProps, Details, DetailsProps, DismissibleChipAction, Drawer, DrawerContent, DrawerContentProps, DrawerContextValue, DrawerItem, DrawerProps, DrawerProvider, DrawerRenderer, DrawerRendererItemProps, DrawerRendererProps, DrawersRegistryRecord, EditTeamIntegrationTile, EditTeamIntegrationTileProps, ErrorMessage, ErrorMessageProps, Fieldset, FieldsetProps, Heading, HeadingProps, HexModalBackground, HorizontalRhythm, Icon, IconButton, IconButtonProps, IconColor, IconName, IconProps, IconType, IconsProvider, Image, ImageBroken, ImageProps, InfoMessage, InfoMessageProps, InlineAlert, InlineAlertProps, Input, InputComboBox, InputComboBoxOption, InputComboBoxProps, InputInlineSelect, InputInlineSelectOption, InputInlineSelectProps, InputKeywordSearch, InputKeywordSearchProps, InputProps, InputSelect, InputSelectProps, InputToggle, InputToggleProps, IntegrationComingSoon, IntegrationComingSoonProps, IntegrationHeaderSection, IntegrationHeaderSectionProps, IntegrationLoadingTile, IntegrationLoadingTileProps, IntegrationModalHeader, IntegrationModalHeaderProps, IntegrationModalIcon, IntegrationModalIconProps, IntegrationTile, IntegrationTileProps, JsonEditor, JsonEditorProps, Label, LabelLeadingIcon, LabelProps, Legend, LegendProps, LevelProps, LimitsBar, LimitsBarProps, Link, LinkColorProps, LinkList, LinkListProps, LinkManagerWithRefType, LinkNode, LinkProps, LinkWithRef, LoadingCardSkeleton, LoadingIcon, LoadingIconProps, LoadingIndicator, LoadingOverlay, LoadingOverlayProps, MediaCard, MediaCardProps, Menu, MenuContext, MenuGroup, MenuGroupProps, MenuItem, MenuItemProps, MenuItemSeparator, MenuItemTextThemeProps, MenuProps, Modal, ModalProps, MultilineChip, MultilineChipProps, PageHeaderSection, PageHeaderSectionProps, Paragraph, ParagraphProps, ParameterDataConnectButtonProps, ParameterDataResource, ParameterDrawerHeader, ParameterDrawerHeaderProps, ParameterGroup, ParameterGroupProps, ParameterImage, ParameterImageInner, ParameterImagePreview, ParameterImageProps, ParameterInput, ParameterInputInner, ParameterInputProps, ParameterLabel, ParameterLabelProps, ParameterLink, ParameterLinkInner, ParameterLinkProps, ParameterMenuButton, ParameterMenuButtonProps, ParameterNameAndPublicIdInput, ParameterNameAndPublicIdInputProps, ParameterOverrideMarker, ParameterRichText, ParameterRichTextInner, ParameterRichTextInnerProps, ParameterRichTextProps, ParameterSelect, ParameterSelectInner, ParameterSelectProps, ParameterShell, ParameterShellContext, ParameterShellPlaceholder, ParameterShellProps, ParameterTextarea, ParameterTextareaInner, ParameterTextareaProps, ParameterToggle, ParameterToggleInner, ParameterToggleProps, Popover, PopoverProps, ProgressList, ProgressListItem, ProgressListItemProps, ProgressListProps, RegisterDrawerProps, ResolveIcon, ResolveIconProps, RhythmProps, RichTextParamValue, RichTextToolbarIcon, ScrollableItemProps, ScrollableList, ScrollableListContainerProps, ScrollableListInputItem, ScrollableListItem, ScrollableListItemProps, ScrollableListProps, SegmentedControl, SegmentedControlOption, SegmentedControlProps, SerializedLinkNode, ShortcutContext, ShortcutRevealer, Skeleton, SkeletonProps, StatusBullet, StatusBulletProps, StatusTypeProps, SuccessMessage, SuccessMessageProps, Switch, SwitchProps, TabButton, TabButtonGroup, TabButtonProps, TabContent, TabContentProps, Table, TableBody, TableBodyProps, TableCellData, TableCellDataProps, TableCellHead, TableCellHeadProps, TableFoot, TableFootProps, TableHead, TableHeadProps, TableProps, TableRow, TableRowProps, Tabs, TabsProps, TextAlignProps, Textarea, TextareaProps, Theme, ThemeProps, Tile, TileContainer, TileContainerProps, TileProps, TileText, TileTitleProps, Tooltip, TooltipProps, TwoColumnLayout, TwoColumnLayoutProps, UniformBadge, UniformLogo, UniformLogoLarge, UniformLogoProps, UseShortcutOptions, VerticalRhythm, WarningMessage, WarningMessageProps, accessibleHidden, borderTopIcon, breakpoints, button, buttonAccentAltDark, buttonAccentAltDarkOutline, buttonDestructive, buttonGhost, buttonGhostDestructive, buttonGhostUnimportant, buttonPrimary, buttonPrimaryInvert, buttonRippleEffect, buttonSecondary, buttonSecondaryInvert, buttonTertiary, buttonTertiaryOutline, buttonUnimportant, canvasAlertIcon, cardIcon, cq, customIcons, extractParameterProps, fadeIn, fadeInBottom, fadeInLtr, fadeInRtl, fadeInTop, fadeOutBottom, fullWidthScreenIcon, getDrawerAttributes, growSubtle, imageTextIcon, infoFilledIcon, input, inputError, inputSelect, isMacLike, jsonIcon, labelText, loader as loaderAnimationData, macifyShortcut, mq, numberInput, queryStringIcon, rectangleRoundedIcon, replaceUnderscoreInString, richTextToolbarButton, richTextToolbarButtonActive, ripple, scrollbarStyles, settings, settingsIcon, skeletonLoading, slideInTtb, spinner as spinnerAnimationData, structurePanelIcon, supports, textInput, useBreakpoint, useCloseCurrentDrawer, useCurrentDrawer, useCurrentTab, useDrawer, useIconContext, useMenuContext, useOutsideClick, useParameterShell, useShortcut, warningIcon, yesNoIcon };
package/dist/index.d.ts CHANGED
@@ -82,6 +82,8 @@ declare const buttonRippleEffect: (props: {
82
82
  hoverColor: string;
83
83
  activeColor?: string;
84
84
  }) => _emotion_react.SerializedStyles;
85
+ declare const buttonAccentAltDark: _emotion_react.SerializedStyles;
86
+ declare const buttonAccentAltDarkOutline: _emotion_react.SerializedStyles;
85
87
  declare const buttonPrimary: _emotion_react.SerializedStyles;
86
88
  declare const buttonDestructive: _emotion_react.SerializedStyles;
87
89
  declare const buttonSecondary: _emotion_react.SerializedStyles;
@@ -20280,7 +20282,7 @@ declare const UniformLogo: ({ theme, ...props }: UniformLogoProps & React.SVGAtt
20280
20282
  declare const UniformLogoLarge: ({ ...props }: React.SVGAttributes<SVGElement>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
20281
20283
 
20282
20284
  /** Button themes that are available to use with our brand */
20283
- type ButtonThemeProps$1 = 'primary' | 'secondary' | 'destructive' | 'tertiary' | 'tertiaryOutline' | 'unimportant' | 'ghost' | 'ghostDestructive' | 'primaryInvert' | 'secondaryInvert' | 'ghostUnimportant';
20285
+ type ButtonThemeProps$1 = 'primary' | 'secondary' | 'accent-alt-dark' | 'accent-alt-dark-outline' | 'destructive' | 'tertiary' | 'tertiaryOutline' | 'unimportant' | 'ghost' | 'ghostDestructive' | 'primaryInvert' | 'secondaryInvert' | 'ghostUnimportant';
20284
20286
  /** Button sizes that are available to use with our brand */
20285
20287
  type ButtonSizeProps = 'zero' | 'xs' | 'sm' | 'md' | 'lg' | 'xl';
20286
20288
  type ButtonProps = ButtonProps$1 & {
@@ -20693,6 +20695,7 @@ declare const allSupportedIcons: {
20693
20695
  'yes-no': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20694
20696
  'diamond-outline': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20695
20697
  'diamond-fill': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20698
+ 'magic-wand': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20696
20699
  'add-r': _react_icons_all_files_lib.IconType;
20697
20700
  add: _react_icons_all_files_lib.IconType;
20698
20701
  airplane: _react_icons_all_files_lib.IconType;
@@ -21342,7 +21345,7 @@ type IconName = keyof typeof allSupportedIcons;
21342
21345
  /** sets fill color of the svg icon
21343
21346
  * @default 'default'
21344
21347
  */
21345
- type IconColor = 'action' | 'default' | 'red' | 'gray' | 'accent' | 'currentColor' | 'accent-light';
21348
+ type IconColor = 'white' | 'action' | 'default' | 'red' | 'gray' | 'accent' | 'currentColor' | 'accent-light';
21346
21349
  /** sets the type of icon to use from the available list */
21347
21350
  type IconType = IconName | IconType$1;
21348
21351
  interface IconProps extends IconBaseProps {
@@ -21399,6 +21402,7 @@ declare const customIcons: {
21399
21402
  'yes-no': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21400
21403
  'diamond-outline': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21401
21404
  'diamond-fill': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21405
+ 'magic-wand': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21402
21406
  };
21403
21407
 
21404
21408
  type IconsMap = Record<string, IconType$1>;
@@ -22000,12 +22004,13 @@ declare const ScrollableListInputItem: ({ label, icon, active, disableShadow, ch
22000
22004
  type ScrollableListItemProps = React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
22001
22005
  /** sets the button text value */
22002
22006
  buttonText: string;
22007
+ icon?: React$1.ReactElement;
22003
22008
  } & ScrollableListContainerProps;
22004
22009
  /**
22005
22010
  * Component used within <ScrollableList /> for adding interactive button components with predefined styles
22006
22011
  * @example <ScrollableListItem buttontext="my button" active={false} />
22007
22012
  */
22008
- declare const ScrollableListItem: ({ buttonText, active, disableShadow, ...props }: ScrollableListItemProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
22013
+ declare const ScrollableListItem: ({ buttonText, icon, active, disableShadow, ...props }: ScrollableListItemProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
22009
22014
 
22010
22015
  /**
22011
22016
  * Loading Indicator
@@ -22221,6 +22226,8 @@ type CommonParameterInputProps = CommonParameterProps & {
22221
22226
  caption?: string;
22222
22227
  /** sets menu items within the design system component Menu */
22223
22228
  menuItems?: ReactNode;
22229
+ /** sets action items */
22230
+ actionItems?: React.ReactNode;
22224
22231
  /** (option) sets validation message test id for test automation */
22225
22232
  errorTestId?: string;
22226
22233
  /** (option) sets caption message test id for test automation */
@@ -22333,6 +22340,7 @@ type ParameterInputProps = CommonParameterInputProps & React.InputHTMLAttributes
22333
22340
  declare const ParameterInput: React$1.ForwardRefExoticComponent<CommonParameterProps & {
22334
22341
  caption?: string | undefined;
22335
22342
  menuItems?: React$1.ReactNode;
22343
+ actionItems?: React$1.ReactNode;
22336
22344
  errorTestId?: string | undefined;
22337
22345
  captionTestId?: string | undefined;
22338
22346
  title?: string | undefined;
@@ -22364,6 +22372,7 @@ type ParameterLinkProps = CommonParameterInputProps & React.InputHTMLAttributes<
22364
22372
  declare const ParameterLink: React$1.ForwardRefExoticComponent<CommonParameterProps & {
22365
22373
  caption?: string | undefined;
22366
22374
  menuItems?: React$1.ReactNode;
22375
+ actionItems?: React$1.ReactNode;
22367
22376
  errorTestId?: string | undefined;
22368
22377
  captionTestId?: string | undefined;
22369
22378
  title?: string | undefined;
@@ -22516,6 +22525,7 @@ type ParameterSelectProps = CommonParameterInputProps & CommonParameterSelectPro
22516
22525
  declare const ParameterSelect: React$1.ForwardRefExoticComponent<CommonParameterProps & {
22517
22526
  caption?: string | undefined;
22518
22527
  menuItems?: React$1.ReactNode;
22528
+ actionItems?: React$1.ReactNode;
22519
22529
  errorTestId?: string | undefined;
22520
22530
  captionTestId?: string | undefined;
22521
22531
  title?: string | undefined;
@@ -22528,6 +22538,7 @@ declare const ParameterSelectInner: React$1.ForwardRefExoticComponent<Omit<Param
22528
22538
  declare const extractParameterProps: <T>(props: T & CommonParameterProps & {
22529
22539
  caption?: string | undefined;
22530
22540
  menuItems?: ReactNode;
22541
+ actionItems?: ReactNode;
22531
22542
  errorTestId?: string | undefined;
22532
22543
  captionTestId?: string | undefined;
22533
22544
  title?: string | undefined;
@@ -22551,6 +22562,7 @@ declare const extractParameterProps: <T>(props: T & CommonParameterProps & {
22551
22562
  innerProps: Omit<T & CommonParameterProps & {
22552
22563
  caption?: string | undefined;
22553
22564
  menuItems?: ReactNode;
22565
+ actionItems?: ReactNode;
22554
22566
  errorTestId?: string | undefined;
22555
22567
  captionTestId?: string | undefined;
22556
22568
  title?: string | undefined;
@@ -22571,7 +22583,7 @@ type ParameterShellProps = React.InputHTMLAttributes<HTMLDivElement> & CommonPar
22571
22583
  * Uniform Parameter shell component
22572
22584
  * @example <ParameterShell label="my label" id="my-id"><ParameterInput onChange={() => {}} /></ParameterShell>
22573
22585
  */
22574
- declare const ParameterShell: ({ label, labelLeadingIcon, labelTrailingIcon, hiddenLabel, id, errorMessage, warningMessage, infoMessage, caption, errorTestId, captionTestId, menuItems, hasOverriddenValue, onResetOverriddenValue, title, children, ...props }: ParameterShellProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
22586
+ declare const ParameterShell: ({ label, labelLeadingIcon, labelTrailingIcon, hiddenLabel, id, errorMessage, warningMessage, infoMessage, caption, errorTestId, captionTestId, menuItems, actionItems, hasOverriddenValue, onResetOverriddenValue, title, children, ...props }: ParameterShellProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
22575
22587
  declare const ParameterShellPlaceholder: ({ children }: {
22576
22588
  children?: ReactNode;
22577
22589
  }) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
@@ -22583,6 +22595,7 @@ type ParameterTextareaProps = CommonParameterInputProps & React.TextareaHTMLAttr
22583
22595
  declare const ParameterTextarea: React$1.ForwardRefExoticComponent<CommonParameterProps & {
22584
22596
  caption?: string | undefined;
22585
22597
  menuItems?: React$1.ReactNode;
22598
+ actionItems?: React$1.ReactNode;
22586
22599
  errorTestId?: string | undefined;
22587
22600
  captionTestId?: string | undefined;
22588
22601
  title?: string | undefined;
@@ -22597,6 +22610,7 @@ type ParameterToggleProps = Omit<React.InputHTMLAttributes<HTMLInputElement>, 't
22597
22610
  declare const ParameterToggle: React$1.ForwardRefExoticComponent<Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "type"> & CommonParameterProps & {
22598
22611
  caption?: string | undefined;
22599
22612
  menuItems?: React$1.ReactNode;
22613
+ actionItems?: React$1.ReactNode;
22600
22614
  errorTestId?: string | undefined;
22601
22615
  captionTestId?: string | undefined;
22602
22616
  title?: string | undefined;
@@ -23132,4 +23146,4 @@ type StatusBulletProps = React$1.HTMLAttributes<HTMLSpanElement> & {
23132
23146
  };
23133
23147
  declare const StatusBullet: ({ status, hideText, size, message, ...props }: StatusBulletProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23134
23148
 
23135
- export { ActionButtonsProps, AddButton, AddButtonProps, AddListButton, AddListButtonProps, AddListButtonThemeProps, AnimationFile, AnimationFileProps, ArrowPositionProps, Avatar, AvatarGroup, AvatarGroupProps, AvatarProps, Badge, BadgeProps, BadgeSizeProps, BadgeThemeProps, BadgeThemeStyleProps, Banner, BannerProps, BannerType, BoxHeightProps, BreakpointSize, BreakpointsMap, Button, ButtonProps, ButtonSizeProps, ButtonThemeProps$1 as ButtonThemeProps, ButtonWithMenu, ButtonWithMenuProps, Callout, CalloutProps, CalloutType, Caption, CaptionProps, Card, CardContainer, CardContainerBgColorProps, CardContainerProps, CardProps, CardTitle, CardTitleProps, CheckboxWithInfo, CheckboxWithInforProps, ChildFunction, Chip, ChipProps, ChipTheme, ComboBoxGroupBase, ConnectToDataElementButton, ConnectToDataElementButtonProps, Container, ContainerProps, Counter, CounterProps, CreateTeamIntegrationTile, CreateTeamIntegrationTileProps, CurrentDrawerContext, DashedBox, DashedBoxProps, DescriptionList, DescriptionListProps, Details, DetailsProps, DismissibleChipAction, Drawer, DrawerContent, DrawerContentProps, DrawerContextValue, DrawerItem, DrawerProps, DrawerProvider, DrawerRenderer, DrawerRendererItemProps, DrawerRendererProps, DrawersRegistryRecord, EditTeamIntegrationTile, EditTeamIntegrationTileProps, ErrorMessage, ErrorMessageProps, Fieldset, FieldsetProps, Heading, HeadingProps, HexModalBackground, HorizontalRhythm, Icon, IconButton, IconButtonProps, IconColor, IconName, IconProps, IconType, IconsProvider, Image, ImageBroken, ImageProps, InfoMessage, InfoMessageProps, InlineAlert, InlineAlertProps, Input, InputComboBox, InputComboBoxOption, InputComboBoxProps, InputInlineSelect, InputInlineSelectOption, InputInlineSelectProps, InputKeywordSearch, InputKeywordSearchProps, InputProps, InputSelect, InputSelectProps, InputToggle, InputToggleProps, IntegrationComingSoon, IntegrationComingSoonProps, IntegrationHeaderSection, IntegrationHeaderSectionProps, IntegrationLoadingTile, IntegrationLoadingTileProps, IntegrationModalHeader, IntegrationModalHeaderProps, IntegrationModalIcon, IntegrationModalIconProps, IntegrationTile, IntegrationTileProps, JsonEditor, JsonEditorProps, Label, LabelLeadingIcon, LabelProps, Legend, LegendProps, LevelProps, LimitsBar, LimitsBarProps, Link, LinkColorProps, LinkList, LinkListProps, LinkManagerWithRefType, LinkNode, LinkProps, LinkWithRef, LoadingCardSkeleton, LoadingIcon, LoadingIconProps, LoadingIndicator, LoadingOverlay, LoadingOverlayProps, MediaCard, MediaCardProps, Menu, MenuContext, MenuGroup, MenuGroupProps, MenuItem, MenuItemProps, MenuItemSeparator, MenuItemTextThemeProps, MenuProps, Modal, ModalProps, MultilineChip, MultilineChipProps, PageHeaderSection, PageHeaderSectionProps, Paragraph, ParagraphProps, ParameterDataConnectButtonProps, ParameterDataResource, ParameterDrawerHeader, ParameterDrawerHeaderProps, ParameterGroup, ParameterGroupProps, ParameterImage, ParameterImageInner, ParameterImagePreview, ParameterImageProps, ParameterInput, ParameterInputInner, ParameterInputProps, ParameterLabel, ParameterLabelProps, ParameterLink, ParameterLinkInner, ParameterLinkProps, ParameterMenuButton, ParameterMenuButtonProps, ParameterNameAndPublicIdInput, ParameterNameAndPublicIdInputProps, ParameterOverrideMarker, ParameterRichText, ParameterRichTextInner, ParameterRichTextInnerProps, ParameterRichTextProps, ParameterSelect, ParameterSelectInner, ParameterSelectProps, ParameterShell, ParameterShellContext, ParameterShellPlaceholder, ParameterShellProps, ParameterTextarea, ParameterTextareaInner, ParameterTextareaProps, ParameterToggle, ParameterToggleInner, ParameterToggleProps, Popover, PopoverProps, ProgressList, ProgressListItem, ProgressListItemProps, ProgressListProps, RegisterDrawerProps, ResolveIcon, ResolveIconProps, RhythmProps, RichTextParamValue, RichTextToolbarIcon, ScrollableItemProps, ScrollableList, ScrollableListContainerProps, ScrollableListInputItem, ScrollableListItem, ScrollableListItemProps, ScrollableListProps, SegmentedControl, SegmentedControlOption, SegmentedControlProps, SerializedLinkNode, ShortcutContext, ShortcutRevealer, Skeleton, SkeletonProps, StatusBullet, StatusBulletProps, StatusTypeProps, SuccessMessage, SuccessMessageProps, Switch, SwitchProps, TabButton, TabButtonGroup, TabButtonProps, TabContent, TabContentProps, Table, TableBody, TableBodyProps, TableCellData, TableCellDataProps, TableCellHead, TableCellHeadProps, TableFoot, TableFootProps, TableHead, TableHeadProps, TableProps, TableRow, TableRowProps, Tabs, TabsProps, TextAlignProps, Textarea, TextareaProps, Theme, ThemeProps, Tile, TileContainer, TileContainerProps, TileProps, TileText, TileTitleProps, Tooltip, TooltipProps, TwoColumnLayout, TwoColumnLayoutProps, UniformBadge, UniformLogo, UniformLogoLarge, UniformLogoProps, UseShortcutOptions, VerticalRhythm, WarningMessage, WarningMessageProps, accessibleHidden, borderTopIcon, breakpoints, button, buttonDestructive, buttonGhost, buttonGhostDestructive, buttonGhostUnimportant, buttonPrimary, buttonPrimaryInvert, buttonRippleEffect, buttonSecondary, buttonSecondaryInvert, buttonTertiary, buttonTertiaryOutline, buttonUnimportant, canvasAlertIcon, cardIcon, cq, customIcons, extractParameterProps, fadeIn, fadeInBottom, fadeInLtr, fadeInRtl, fadeInTop, fadeOutBottom, fullWidthScreenIcon, getDrawerAttributes, growSubtle, imageTextIcon, infoFilledIcon, input, inputError, inputSelect, isMacLike, jsonIcon, labelText, loader as loaderAnimationData, macifyShortcut, mq, numberInput, queryStringIcon, rectangleRoundedIcon, replaceUnderscoreInString, richTextToolbarButton, richTextToolbarButtonActive, ripple, scrollbarStyles, settings, settingsIcon, skeletonLoading, slideInTtb, spinner as spinnerAnimationData, structurePanelIcon, supports, textInput, useBreakpoint, useCloseCurrentDrawer, useCurrentDrawer, useCurrentTab, useDrawer, useIconContext, useMenuContext, useOutsideClick, useParameterShell, useShortcut, warningIcon, yesNoIcon };
23149
+ export { ActionButtonsProps, AddButton, AddButtonProps, AddListButton, AddListButtonProps, AddListButtonThemeProps, AnimationFile, AnimationFileProps, ArrowPositionProps, Avatar, AvatarGroup, AvatarGroupProps, AvatarProps, Badge, BadgeProps, BadgeSizeProps, BadgeThemeProps, BadgeThemeStyleProps, Banner, BannerProps, BannerType, BoxHeightProps, BreakpointSize, BreakpointsMap, Button, ButtonProps, ButtonSizeProps, ButtonThemeProps$1 as ButtonThemeProps, ButtonWithMenu, ButtonWithMenuProps, Callout, CalloutProps, CalloutType, Caption, CaptionProps, Card, CardContainer, CardContainerBgColorProps, CardContainerProps, CardProps, CardTitle, CardTitleProps, CheckboxWithInfo, CheckboxWithInforProps, ChildFunction, Chip, ChipProps, ChipTheme, ComboBoxGroupBase, ConnectToDataElementButton, ConnectToDataElementButtonProps, Container, ContainerProps, Counter, CounterProps, CreateTeamIntegrationTile, CreateTeamIntegrationTileProps, CurrentDrawerContext, DashedBox, DashedBoxProps, DescriptionList, DescriptionListProps, Details, DetailsProps, DismissibleChipAction, Drawer, DrawerContent, DrawerContentProps, DrawerContextValue, DrawerItem, DrawerProps, DrawerProvider, DrawerRenderer, DrawerRendererItemProps, DrawerRendererProps, DrawersRegistryRecord, EditTeamIntegrationTile, EditTeamIntegrationTileProps, ErrorMessage, ErrorMessageProps, Fieldset, FieldsetProps, Heading, HeadingProps, HexModalBackground, HorizontalRhythm, Icon, IconButton, IconButtonProps, IconColor, IconName, IconProps, IconType, IconsProvider, Image, ImageBroken, ImageProps, InfoMessage, InfoMessageProps, InlineAlert, InlineAlertProps, Input, InputComboBox, InputComboBoxOption, InputComboBoxProps, InputInlineSelect, InputInlineSelectOption, InputInlineSelectProps, InputKeywordSearch, InputKeywordSearchProps, InputProps, InputSelect, InputSelectProps, InputToggle, InputToggleProps, IntegrationComingSoon, IntegrationComingSoonProps, IntegrationHeaderSection, IntegrationHeaderSectionProps, IntegrationLoadingTile, IntegrationLoadingTileProps, IntegrationModalHeader, IntegrationModalHeaderProps, IntegrationModalIcon, IntegrationModalIconProps, IntegrationTile, IntegrationTileProps, JsonEditor, JsonEditorProps, Label, LabelLeadingIcon, LabelProps, Legend, LegendProps, LevelProps, LimitsBar, LimitsBarProps, Link, LinkColorProps, LinkList, LinkListProps, LinkManagerWithRefType, LinkNode, LinkProps, LinkWithRef, LoadingCardSkeleton, LoadingIcon, LoadingIconProps, LoadingIndicator, LoadingOverlay, LoadingOverlayProps, MediaCard, MediaCardProps, Menu, MenuContext, MenuGroup, MenuGroupProps, MenuItem, MenuItemProps, MenuItemSeparator, MenuItemTextThemeProps, MenuProps, Modal, ModalProps, MultilineChip, MultilineChipProps, PageHeaderSection, PageHeaderSectionProps, Paragraph, ParagraphProps, ParameterDataConnectButtonProps, ParameterDataResource, ParameterDrawerHeader, ParameterDrawerHeaderProps, ParameterGroup, ParameterGroupProps, ParameterImage, ParameterImageInner, ParameterImagePreview, ParameterImageProps, ParameterInput, ParameterInputInner, ParameterInputProps, ParameterLabel, ParameterLabelProps, ParameterLink, ParameterLinkInner, ParameterLinkProps, ParameterMenuButton, ParameterMenuButtonProps, ParameterNameAndPublicIdInput, ParameterNameAndPublicIdInputProps, ParameterOverrideMarker, ParameterRichText, ParameterRichTextInner, ParameterRichTextInnerProps, ParameterRichTextProps, ParameterSelect, ParameterSelectInner, ParameterSelectProps, ParameterShell, ParameterShellContext, ParameterShellPlaceholder, ParameterShellProps, ParameterTextarea, ParameterTextareaInner, ParameterTextareaProps, ParameterToggle, ParameterToggleInner, ParameterToggleProps, Popover, PopoverProps, ProgressList, ProgressListItem, ProgressListItemProps, ProgressListProps, RegisterDrawerProps, ResolveIcon, ResolveIconProps, RhythmProps, RichTextParamValue, RichTextToolbarIcon, ScrollableItemProps, ScrollableList, ScrollableListContainerProps, ScrollableListInputItem, ScrollableListItem, ScrollableListItemProps, ScrollableListProps, SegmentedControl, SegmentedControlOption, SegmentedControlProps, SerializedLinkNode, ShortcutContext, ShortcutRevealer, Skeleton, SkeletonProps, StatusBullet, StatusBulletProps, StatusTypeProps, SuccessMessage, SuccessMessageProps, Switch, SwitchProps, TabButton, TabButtonGroup, TabButtonProps, TabContent, TabContentProps, Table, TableBody, TableBodyProps, TableCellData, TableCellDataProps, TableCellHead, TableCellHeadProps, TableFoot, TableFootProps, TableHead, TableHeadProps, TableProps, TableRow, TableRowProps, Tabs, TabsProps, TextAlignProps, Textarea, TextareaProps, Theme, ThemeProps, Tile, TileContainer, TileContainerProps, TileProps, TileText, TileTitleProps, Tooltip, TooltipProps, TwoColumnLayout, TwoColumnLayoutProps, UniformBadge, UniformLogo, UniformLogoLarge, UniformLogoProps, UseShortcutOptions, VerticalRhythm, WarningMessage, WarningMessageProps, accessibleHidden, borderTopIcon, breakpoints, button, buttonAccentAltDark, buttonAccentAltDarkOutline, buttonDestructive, buttonGhost, buttonGhostDestructive, buttonGhostUnimportant, buttonPrimary, buttonPrimaryInvert, buttonRippleEffect, buttonSecondary, buttonSecondaryInvert, buttonTertiary, buttonTertiaryOutline, buttonUnimportant, canvasAlertIcon, cardIcon, cq, customIcons, extractParameterProps, fadeIn, fadeInBottom, fadeInLtr, fadeInRtl, fadeInTop, fadeOutBottom, fullWidthScreenIcon, getDrawerAttributes, growSubtle, imageTextIcon, infoFilledIcon, input, inputError, inputSelect, isMacLike, jsonIcon, labelText, loader as loaderAnimationData, macifyShortcut, mq, numberInput, queryStringIcon, rectangleRoundedIcon, replaceUnderscoreInString, richTextToolbarButton, richTextToolbarButtonActive, ripple, scrollbarStyles, settings, settingsIcon, skeletonLoading, slideInTtb, spinner as spinnerAnimationData, structurePanelIcon, supports, textInput, useBreakpoint, useCloseCurrentDrawer, useCurrentDrawer, useCurrentTab, useDrawer, useIconContext, useMenuContext, useOutsideClick, useParameterShell, useShortcut, warningIcon, yesNoIcon };