@uniformdev/design-system 19.50.0 → 19.50.2-alpha.45

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 & {
@@ -20690,6 +20692,7 @@ declare const allSupportedIcons: {
20690
20692
  'yes-no': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20691
20693
  'diamond-outline': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20692
20694
  'diamond-fill': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20695
+ 'magic-wand': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20693
20696
  'add-r': _react_icons_all_files_lib.IconType;
20694
20697
  add: _react_icons_all_files_lib.IconType;
20695
20698
  airplane: _react_icons_all_files_lib.IconType;
@@ -21339,7 +21342,7 @@ type IconName = keyof typeof allSupportedIcons;
21339
21342
  /** sets fill color of the svg icon
21340
21343
  * @default 'default'
21341
21344
  */
21342
- type IconColor = 'action' | 'default' | 'red' | 'gray' | 'accent' | 'currentColor' | 'accent-light';
21345
+ type IconColor = 'white' | 'action' | 'default' | 'red' | 'gray' | 'accent' | 'currentColor' | 'accent-light';
21343
21346
  /** sets the type of icon to use from the available list */
21344
21347
  type IconType = IconName | IconType$1;
21345
21348
  interface IconProps extends IconBaseProps {
@@ -21396,6 +21399,7 @@ declare const customIcons: {
21396
21399
  'yes-no': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21397
21400
  'diamond-outline': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21398
21401
  'diamond-fill': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21402
+ 'magic-wand': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21399
21403
  };
21400
21404
 
21401
21405
  type IconsMap = Record<string, IconType$1>;
@@ -21991,12 +21995,13 @@ declare const ScrollableListInputItem: ({ label, icon, active, disableShadow, ch
21991
21995
  type ScrollableListItemProps = React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
21992
21996
  /** sets the button text value */
21993
21997
  buttonText: string;
21998
+ icon?: React$1.ReactElement;
21994
21999
  } & ScrollableListContainerProps;
21995
22000
  /**
21996
22001
  * Component used within <ScrollableList /> for adding interactive button components with predefined styles
21997
22002
  * @example <ScrollableListItem buttontext="my button" active={false} />
21998
22003
  */
21999
- declare const ScrollableListItem: ({ buttonText, active, disableShadow, ...props }: ScrollableListItemProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
22004
+ declare const ScrollableListItem: ({ buttonText, icon, active, disableShadow, ...props }: ScrollableListItemProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
22000
22005
 
22001
22006
  /**
22002
22007
  * Loading Indicator
@@ -22212,6 +22217,8 @@ type CommonParameterInputProps = CommonParameterProps & {
22212
22217
  caption?: string;
22213
22218
  /** sets menu items within the design system component Menu */
22214
22219
  menuItems?: ReactNode;
22220
+ /** sets action items */
22221
+ actionItems?: React.ReactNode;
22215
22222
  /** (option) sets validation message test id for test automation */
22216
22223
  errorTestId?: string;
22217
22224
  /** (option) sets caption message test id for test automation */
@@ -22324,6 +22331,7 @@ type ParameterInputProps = CommonParameterInputProps & React.InputHTMLAttributes
22324
22331
  declare const ParameterInput: React$1.ForwardRefExoticComponent<CommonParameterProps & {
22325
22332
  caption?: string | undefined;
22326
22333
  menuItems?: React$1.ReactNode;
22334
+ actionItems?: React$1.ReactNode;
22327
22335
  errorTestId?: string | undefined;
22328
22336
  captionTestId?: string | undefined;
22329
22337
  title?: string | undefined;
@@ -22355,6 +22363,7 @@ type ParameterLinkProps = CommonParameterInputProps & React.InputHTMLAttributes<
22355
22363
  declare const ParameterLink: React$1.ForwardRefExoticComponent<CommonParameterProps & {
22356
22364
  caption?: string | undefined;
22357
22365
  menuItems?: React$1.ReactNode;
22366
+ actionItems?: React$1.ReactNode;
22358
22367
  errorTestId?: string | undefined;
22359
22368
  captionTestId?: string | undefined;
22360
22369
  title?: string | undefined;
@@ -22507,6 +22516,7 @@ type ParameterSelectProps = CommonParameterInputProps & CommonParameterSelectPro
22507
22516
  declare const ParameterSelect: React$1.ForwardRefExoticComponent<CommonParameterProps & {
22508
22517
  caption?: string | undefined;
22509
22518
  menuItems?: React$1.ReactNode;
22519
+ actionItems?: React$1.ReactNode;
22510
22520
  errorTestId?: string | undefined;
22511
22521
  captionTestId?: string | undefined;
22512
22522
  title?: string | undefined;
@@ -22519,6 +22529,7 @@ declare const ParameterSelectInner: React$1.ForwardRefExoticComponent<Omit<Param
22519
22529
  declare const extractParameterProps: <T>(props: T & CommonParameterProps & {
22520
22530
  caption?: string | undefined;
22521
22531
  menuItems?: ReactNode;
22532
+ actionItems?: ReactNode;
22522
22533
  errorTestId?: string | undefined;
22523
22534
  captionTestId?: string | undefined;
22524
22535
  title?: string | undefined;
@@ -22542,6 +22553,7 @@ declare const extractParameterProps: <T>(props: T & CommonParameterProps & {
22542
22553
  innerProps: Omit<T & CommonParameterProps & {
22543
22554
  caption?: string | undefined;
22544
22555
  menuItems?: ReactNode;
22556
+ actionItems?: ReactNode;
22545
22557
  errorTestId?: string | undefined;
22546
22558
  captionTestId?: string | undefined;
22547
22559
  title?: string | undefined;
@@ -22562,7 +22574,7 @@ type ParameterShellProps = React.InputHTMLAttributes<HTMLDivElement> & CommonPar
22562
22574
  * Uniform Parameter shell component
22563
22575
  * @example <ParameterShell label="my label" id="my-id"><ParameterInput onChange={() => {}} /></ParameterShell>
22564
22576
  */
22565
- 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;
22577
+ 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;
22566
22578
  declare const ParameterShellPlaceholder: ({ children }: {
22567
22579
  children?: ReactNode;
22568
22580
  }) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
@@ -22574,6 +22586,7 @@ type ParameterTextareaProps = CommonParameterInputProps & React.TextareaHTMLAttr
22574
22586
  declare const ParameterTextarea: React$1.ForwardRefExoticComponent<CommonParameterProps & {
22575
22587
  caption?: string | undefined;
22576
22588
  menuItems?: React$1.ReactNode;
22589
+ actionItems?: React$1.ReactNode;
22577
22590
  errorTestId?: string | undefined;
22578
22591
  captionTestId?: string | undefined;
22579
22592
  title?: string | undefined;
@@ -22588,6 +22601,7 @@ type ParameterToggleProps = Omit<React.InputHTMLAttributes<HTMLInputElement>, 't
22588
22601
  declare const ParameterToggle: React$1.ForwardRefExoticComponent<Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "type"> & CommonParameterProps & {
22589
22602
  caption?: string | undefined;
22590
22603
  menuItems?: React$1.ReactNode;
22604
+ actionItems?: React$1.ReactNode;
22591
22605
  errorTestId?: string | undefined;
22592
22606
  captionTestId?: string | undefined;
22593
22607
  title?: string | undefined;
@@ -23123,4 +23137,4 @@ type StatusBulletProps = React$1.HTMLAttributes<HTMLSpanElement> & {
23123
23137
  };
23124
23138
  declare const StatusBullet: ({ status, hideText, size, message, ...props }: StatusBulletProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23125
23139
 
23126
- 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, ImageBroken, 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, 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 };
23140
+ 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, ImageBroken, 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, 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 & {
@@ -20690,6 +20692,7 @@ declare const allSupportedIcons: {
20690
20692
  'yes-no': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20691
20693
  'diamond-outline': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20692
20694
  'diamond-fill': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20695
+ 'magic-wand': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20693
20696
  'add-r': _react_icons_all_files_lib.IconType;
20694
20697
  add: _react_icons_all_files_lib.IconType;
20695
20698
  airplane: _react_icons_all_files_lib.IconType;
@@ -21339,7 +21342,7 @@ type IconName = keyof typeof allSupportedIcons;
21339
21342
  /** sets fill color of the svg icon
21340
21343
  * @default 'default'
21341
21344
  */
21342
- type IconColor = 'action' | 'default' | 'red' | 'gray' | 'accent' | 'currentColor' | 'accent-light';
21345
+ type IconColor = 'white' | 'action' | 'default' | 'red' | 'gray' | 'accent' | 'currentColor' | 'accent-light';
21343
21346
  /** sets the type of icon to use from the available list */
21344
21347
  type IconType = IconName | IconType$1;
21345
21348
  interface IconProps extends IconBaseProps {
@@ -21396,6 +21399,7 @@ declare const customIcons: {
21396
21399
  'yes-no': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21397
21400
  'diamond-outline': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21398
21401
  'diamond-fill': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21402
+ 'magic-wand': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21399
21403
  };
21400
21404
 
21401
21405
  type IconsMap = Record<string, IconType$1>;
@@ -21991,12 +21995,13 @@ declare const ScrollableListInputItem: ({ label, icon, active, disableShadow, ch
21991
21995
  type ScrollableListItemProps = React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
21992
21996
  /** sets the button text value */
21993
21997
  buttonText: string;
21998
+ icon?: React$1.ReactElement;
21994
21999
  } & ScrollableListContainerProps;
21995
22000
  /**
21996
22001
  * Component used within <ScrollableList /> for adding interactive button components with predefined styles
21997
22002
  * @example <ScrollableListItem buttontext="my button" active={false} />
21998
22003
  */
21999
- declare const ScrollableListItem: ({ buttonText, active, disableShadow, ...props }: ScrollableListItemProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
22004
+ declare const ScrollableListItem: ({ buttonText, icon, active, disableShadow, ...props }: ScrollableListItemProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
22000
22005
 
22001
22006
  /**
22002
22007
  * Loading Indicator
@@ -22212,6 +22217,8 @@ type CommonParameterInputProps = CommonParameterProps & {
22212
22217
  caption?: string;
22213
22218
  /** sets menu items within the design system component Menu */
22214
22219
  menuItems?: ReactNode;
22220
+ /** sets action items */
22221
+ actionItems?: React.ReactNode;
22215
22222
  /** (option) sets validation message test id for test automation */
22216
22223
  errorTestId?: string;
22217
22224
  /** (option) sets caption message test id for test automation */
@@ -22324,6 +22331,7 @@ type ParameterInputProps = CommonParameterInputProps & React.InputHTMLAttributes
22324
22331
  declare const ParameterInput: React$1.ForwardRefExoticComponent<CommonParameterProps & {
22325
22332
  caption?: string | undefined;
22326
22333
  menuItems?: React$1.ReactNode;
22334
+ actionItems?: React$1.ReactNode;
22327
22335
  errorTestId?: string | undefined;
22328
22336
  captionTestId?: string | undefined;
22329
22337
  title?: string | undefined;
@@ -22355,6 +22363,7 @@ type ParameterLinkProps = CommonParameterInputProps & React.InputHTMLAttributes<
22355
22363
  declare const ParameterLink: React$1.ForwardRefExoticComponent<CommonParameterProps & {
22356
22364
  caption?: string | undefined;
22357
22365
  menuItems?: React$1.ReactNode;
22366
+ actionItems?: React$1.ReactNode;
22358
22367
  errorTestId?: string | undefined;
22359
22368
  captionTestId?: string | undefined;
22360
22369
  title?: string | undefined;
@@ -22507,6 +22516,7 @@ type ParameterSelectProps = CommonParameterInputProps & CommonParameterSelectPro
22507
22516
  declare const ParameterSelect: React$1.ForwardRefExoticComponent<CommonParameterProps & {
22508
22517
  caption?: string | undefined;
22509
22518
  menuItems?: React$1.ReactNode;
22519
+ actionItems?: React$1.ReactNode;
22510
22520
  errorTestId?: string | undefined;
22511
22521
  captionTestId?: string | undefined;
22512
22522
  title?: string | undefined;
@@ -22519,6 +22529,7 @@ declare const ParameterSelectInner: React$1.ForwardRefExoticComponent<Omit<Param
22519
22529
  declare const extractParameterProps: <T>(props: T & CommonParameterProps & {
22520
22530
  caption?: string | undefined;
22521
22531
  menuItems?: ReactNode;
22532
+ actionItems?: ReactNode;
22522
22533
  errorTestId?: string | undefined;
22523
22534
  captionTestId?: string | undefined;
22524
22535
  title?: string | undefined;
@@ -22542,6 +22553,7 @@ declare const extractParameterProps: <T>(props: T & CommonParameterProps & {
22542
22553
  innerProps: Omit<T & CommonParameterProps & {
22543
22554
  caption?: string | undefined;
22544
22555
  menuItems?: ReactNode;
22556
+ actionItems?: ReactNode;
22545
22557
  errorTestId?: string | undefined;
22546
22558
  captionTestId?: string | undefined;
22547
22559
  title?: string | undefined;
@@ -22562,7 +22574,7 @@ type ParameterShellProps = React.InputHTMLAttributes<HTMLDivElement> & CommonPar
22562
22574
  * Uniform Parameter shell component
22563
22575
  * @example <ParameterShell label="my label" id="my-id"><ParameterInput onChange={() => {}} /></ParameterShell>
22564
22576
  */
22565
- 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;
22577
+ 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;
22566
22578
  declare const ParameterShellPlaceholder: ({ children }: {
22567
22579
  children?: ReactNode;
22568
22580
  }) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
@@ -22574,6 +22586,7 @@ type ParameterTextareaProps = CommonParameterInputProps & React.TextareaHTMLAttr
22574
22586
  declare const ParameterTextarea: React$1.ForwardRefExoticComponent<CommonParameterProps & {
22575
22587
  caption?: string | undefined;
22576
22588
  menuItems?: React$1.ReactNode;
22589
+ actionItems?: React$1.ReactNode;
22577
22590
  errorTestId?: string | undefined;
22578
22591
  captionTestId?: string | undefined;
22579
22592
  title?: string | undefined;
@@ -22588,6 +22601,7 @@ type ParameterToggleProps = Omit<React.InputHTMLAttributes<HTMLInputElement>, 't
22588
22601
  declare const ParameterToggle: React$1.ForwardRefExoticComponent<Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "type"> & CommonParameterProps & {
22589
22602
  caption?: string | undefined;
22590
22603
  menuItems?: React$1.ReactNode;
22604
+ actionItems?: React$1.ReactNode;
22591
22605
  errorTestId?: string | undefined;
22592
22606
  captionTestId?: string | undefined;
22593
22607
  title?: string | undefined;
@@ -23123,4 +23137,4 @@ type StatusBulletProps = React$1.HTMLAttributes<HTMLSpanElement> & {
23123
23137
  };
23124
23138
  declare const StatusBullet: ({ status, hideText, size, message, ...props }: StatusBulletProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23125
23139
 
23126
- 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, ImageBroken, 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, 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 };
23140
+ 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, ImageBroken, 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, 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 };