@uniformdev/design-system 19.170.1 → 19.173.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/esm/index.js +1022 -797
- package/dist/index.d.mts +103 -23
- package/dist/index.d.ts +103 -23
- package/dist/index.js +1203 -958
- package/package.json +13 -13
package/dist/index.d.mts
CHANGED
|
@@ -21107,7 +21107,7 @@ type IconName = keyof typeof allSupportedIcons;
|
|
|
21107
21107
|
/** sets fill color of the svg icon
|
|
21108
21108
|
* @default 'default'
|
|
21109
21109
|
*/
|
|
21110
|
-
type IconColor = 'white' | 'action' | 'default' | 'red' | 'gray' | 'gray300' | 'accent' | 'currentColor' | 'accent-dark' | 'accent-light';
|
|
21110
|
+
type IconColor = 'white' | 'action' | 'default' | 'red' | 'gray' | 'gray300' | 'accent' | 'currentColor' | 'accent-dark' | 'accent-light' | 'accent-alt-dark';
|
|
21111
21111
|
/** sets the type of icon to use from the available list */
|
|
21112
21112
|
type IconType = IconName | IconType$1;
|
|
21113
21113
|
interface IconProps extends IconBaseProps {
|
|
@@ -21187,6 +21187,10 @@ declare function IconsProvider({ children }: {
|
|
|
21187
21187
|
}): _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21188
21188
|
|
|
21189
21189
|
declare const uniformComponentIcon: IconType$1;
|
|
21190
|
+
declare const uniformConditionalValuesIcon: IconType$1;
|
|
21191
|
+
declare const uniformAiIcon: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21192
|
+
declare const uniformLocaleIcon: IconType$1;
|
|
21193
|
+
declare const uniformLocaleDisabledIcon: IconType$1;
|
|
21190
21194
|
declare const uniformComponentPatternIcon: IconType$1;
|
|
21191
21195
|
declare const uniformCompositionPatternIcon: IconType$1;
|
|
21192
21196
|
declare const uniformContentTypeIcon: IconType$1;
|
|
@@ -21347,6 +21351,10 @@ type ChipSizeProp = 'xs' | 'sm' | 'md';
|
|
|
21347
21351
|
type ChipTheme = 'accent-light' | 'accent-dark' | 'accent-alt-light' | 'accent-alt-dark' | 'neutral-light' | 'neutral-dark';
|
|
21348
21352
|
type ChipProps = {
|
|
21349
21353
|
icon?: IconType;
|
|
21354
|
+
/** sets the color of the icon
|
|
21355
|
+
* @default 'currentColor'
|
|
21356
|
+
* */
|
|
21357
|
+
iconColor?: IconColor;
|
|
21350
21358
|
text: ReactNode;
|
|
21351
21359
|
/** sets the size of the chip
|
|
21352
21360
|
* @default 'sm'
|
|
@@ -21371,7 +21379,7 @@ type ChipProps = {
|
|
|
21371
21379
|
* To represent a different object, as a reference
|
|
21372
21380
|
* @example <Chip text="productId" theme="accent-light" chipAction={<DismissibleChipAction onDismiss={() => {...}}/>} />
|
|
21373
21381
|
*/
|
|
21374
|
-
declare const Chip: ({ icon, text, size, theme, variant, chipAction, as, ...props }: ChipProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21382
|
+
declare const Chip: ({ icon, iconColor, text, size, theme, variant, chipAction, as, ...props }: ChipProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21375
21383
|
type DismissibleChipActionProps = {
|
|
21376
21384
|
onDismiss: () => void;
|
|
21377
21385
|
} & HTMLAttributes<HTMLButtonElement>;
|
|
@@ -21392,16 +21400,22 @@ type MultilineChipProps = {
|
|
|
21392
21400
|
*/
|
|
21393
21401
|
declare const MultilineChip: ({ children, onClick, ...props }: MultilineChipProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21394
21402
|
|
|
21403
|
+
type CounterBgColors = 'var(--white)' | 'var(--gray-50)' | 'var(--accent-light)' | 'var(--accent-dark)' | 'transparent';
|
|
21404
|
+
type CounterIconColors = 'auto' | 'var(--utility-caution-icon)' | 'var(--utility-danger-icon)' | 'var(--utility-info-icon)' | 'red';
|
|
21395
21405
|
type CounterProps = {
|
|
21396
21406
|
/** sets the count value, a 0 will show a dot instead of a number. Undefined will cause the counter to disappear. */
|
|
21397
21407
|
count: number | undefined;
|
|
21398
21408
|
/** sets the background color
|
|
21399
21409
|
* @default 'transparent'
|
|
21400
21410
|
*/
|
|
21401
|
-
bgColor?:
|
|
21402
|
-
|
|
21411
|
+
bgColor?: CounterBgColors;
|
|
21412
|
+
/** sets the color of the icon if one is provided */
|
|
21413
|
+
iconColor?: CounterIconColors;
|
|
21414
|
+
/** Optional icon for the counter */
|
|
21415
|
+
icon?: IconType;
|
|
21416
|
+
} & React.HTMLAttributes<HTMLDivElement>;
|
|
21403
21417
|
/** @example <Counter count={1} /> */
|
|
21404
|
-
declare const Counter: ({ count, bgColor, ...props }: CounterProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element | null;
|
|
21418
|
+
declare const Counter: ({ count, bgColor, icon, iconColor, ...props }: CounterProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element | null;
|
|
21405
21419
|
|
|
21406
21420
|
type TextAlignProps = 'left' | 'right' | 'center';
|
|
21407
21421
|
type BoxHeightProps = 'auto' | 'xs' | 'sm' | 'md' | 'lg';
|
|
@@ -21539,6 +21553,13 @@ type DetailsProps = React$1.HTMLAttributes<HTMLDetailsElement> & {
|
|
|
21539
21553
|
/** @example <Details summary="summary text">child content here</Details>*/
|
|
21540
21554
|
declare const Details: ({ summary, children, isOpenByDefault, isOpen, isIndented, isCompact, onChange, ...props }: DetailsProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21541
21555
|
|
|
21556
|
+
type DraggableHandleProps = {
|
|
21557
|
+
disableDnd?: boolean;
|
|
21558
|
+
} & HTMLAttributes<HTMLButtonElement>;
|
|
21559
|
+
declare const DragHandle: React$1.ForwardRefExoticComponent<{
|
|
21560
|
+
disableDnd?: boolean | undefined;
|
|
21561
|
+
} & HTMLAttributes<HTMLButtonElement> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
21562
|
+
|
|
21542
21563
|
interface DrawerRendererProps extends Omit<React__default.HTMLAttributes<HTMLDivElement>, 'children'> {
|
|
21543
21564
|
/** The ID of the stack to render. Some drawers need to use the same stack ID to be rendered here */
|
|
21544
21565
|
stackId: string;
|
|
@@ -22717,12 +22738,20 @@ type MenuThreeDotsProps = {
|
|
|
22717
22738
|
* @default 'More options'
|
|
22718
22739
|
*/
|
|
22719
22740
|
buttonTitle?: string;
|
|
22741
|
+
/** sets the icon size
|
|
22742
|
+
* @default '1rem'
|
|
22743
|
+
*/
|
|
22744
|
+
iconSize?: string;
|
|
22720
22745
|
} & HTMLAttributes<HTMLButtonElement>;
|
|
22721
22746
|
declare const MenuThreeDots: React$1.ForwardRefExoticComponent<{
|
|
22722
22747
|
/** sets the aria-label and title value on the button
|
|
22723
22748
|
* @default 'More options'
|
|
22724
22749
|
*/
|
|
22725
22750
|
buttonTitle?: string | undefined;
|
|
22751
|
+
/** sets the icon size
|
|
22752
|
+
* @default '1rem'
|
|
22753
|
+
*/
|
|
22754
|
+
iconSize?: string | undefined;
|
|
22726
22755
|
} & HTMLAttributes<HTMLButtonElement> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
22727
22756
|
|
|
22728
22757
|
type SearchableMenuProps = {
|
|
@@ -22799,19 +22828,31 @@ type ObjectGridContainerProps = {
|
|
|
22799
22828
|
};
|
|
22800
22829
|
declare const ObjectGridContainer: ({ gridCount, children }: ObjectGridContainerProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22801
22830
|
|
|
22802
|
-
type
|
|
22803
|
-
/**
|
|
22804
|
-
|
|
22805
|
-
/** Slot
|
|
22806
|
-
|
|
22831
|
+
type ObjectHeadingProps = {
|
|
22832
|
+
/** sets the heading value */
|
|
22833
|
+
heading: string;
|
|
22834
|
+
/** Slot that renders a component before the heading */
|
|
22835
|
+
beforeHeadingSlot?: ReactNode;
|
|
22836
|
+
/** Slot that renders a component after the heading */
|
|
22837
|
+
afterHeadingSlot?: ReactNode;
|
|
22838
|
+
};
|
|
22839
|
+
type ObjectItemProps = {
|
|
22840
|
+
/** Slot for the header component, we recommend using <ObjectGridItemHeading /> or <ObjectListItemHeading /> */
|
|
22841
|
+
header: ReactNode;
|
|
22842
|
+
/** Slot for the cover component, we recommend using <ObjectGridItemCoverButton />, <ObjectGridItemCover /> or <ObjectListItemCover /> */
|
|
22843
|
+
cover: ReactNode;
|
|
22807
22844
|
/** Slot for the right component */
|
|
22808
|
-
rightSlot?: React
|
|
22845
|
+
rightSlot?: React.ReactNode;
|
|
22809
22846
|
/** Slot for the menu items, <MenuItem /> component should be used here */
|
|
22810
|
-
menuItems?: React
|
|
22847
|
+
menuItems?: React.ReactNode;
|
|
22811
22848
|
/** If the item is selected */
|
|
22812
22849
|
isSelected?: boolean;
|
|
22813
22850
|
/** Slot for the children */
|
|
22814
|
-
children?: React
|
|
22851
|
+
children?: React.ReactNode;
|
|
22852
|
+
};
|
|
22853
|
+
|
|
22854
|
+
type ObjectGridItemProps = ObjectItemProps & {
|
|
22855
|
+
isSelected?: boolean;
|
|
22815
22856
|
};
|
|
22816
22857
|
declare const ObjectGridItem: ({ header, cover, rightSlot, menuItems, isSelected, children, }: ObjectGridItemProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22817
22858
|
|
|
@@ -22836,14 +22877,7 @@ type ObjectGridItemCoverButtonProps = {
|
|
|
22836
22877
|
} & ObjectGridItemCoverProps;
|
|
22837
22878
|
declare const ObjectGridItemCoverButton: ({ id, isSelected, onSelection, coverSlotLeft, coverSlotRight, selectedText, ...props }: ObjectGridItemCoverButtonProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22838
22879
|
|
|
22839
|
-
type ObjectGridItemTitleProps =
|
|
22840
|
-
/** sets the heading value */
|
|
22841
|
-
heading: string;
|
|
22842
|
-
/** Slot that renders a component before the heading */
|
|
22843
|
-
beforeHeadingSlot?: ReactNode;
|
|
22844
|
-
/** Slot that renders a component after the heading */
|
|
22845
|
-
afterHeadingSlot?: ReactNode;
|
|
22846
|
-
};
|
|
22880
|
+
type ObjectGridItemTitleProps = ObjectHeadingProps;
|
|
22847
22881
|
declare const ObjectGridItemHeading: ({ heading, beforeHeadingSlot, afterHeadingSlot, }: ObjectGridItemTitleProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22848
22882
|
|
|
22849
22883
|
type ObjectGridItemIconWithTooltipProps = {
|
|
@@ -22856,6 +22890,47 @@ type ObjectGridItemIconWithTooltipProps = {
|
|
|
22856
22890
|
} & Pick<TooltipProps, 'placement'>;
|
|
22857
22891
|
declare const ObjectGridItemIconWithTooltip: ({ tooltipTitle, placement, icon, iconColor, }: ObjectGridItemIconWithTooltipProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22858
22892
|
|
|
22893
|
+
/** @deprecated - Beta Object item loading skeleton component */
|
|
22894
|
+
type ObjectItemLoadingSkeletonProps = {
|
|
22895
|
+
/** Show cover image loading skeleton */
|
|
22896
|
+
showCover?: boolean;
|
|
22897
|
+
};
|
|
22898
|
+
/** @deprecated - Beta Object item loading skeleton component
|
|
22899
|
+
* @example <ObjectItemLoadingSkeleton showCover />
|
|
22900
|
+
*/
|
|
22901
|
+
declare const ObjectItemLoadingSkeleton: ({ showCover }: ObjectItemLoadingSkeletonProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22902
|
+
|
|
22903
|
+
/** @deprecated - Beta Object list item component */
|
|
22904
|
+
type ObjectListItemProps = ObjectListItemSingleProps | (ObjectListItemMultiProps & HTMLAttributes<HTMLDivElement>);
|
|
22905
|
+
type ObjectListItemSingleProps = Omit<ObjectItemProps, 'cover' | 'children'> & {
|
|
22906
|
+
cover?: ReactNode;
|
|
22907
|
+
renderAs?: 'single';
|
|
22908
|
+
};
|
|
22909
|
+
type ObjectListItemMultiProps = Omit<ObjectItemProps, 'cover'> & {
|
|
22910
|
+
cover?: ReactNode;
|
|
22911
|
+
renderAs?: 'multi';
|
|
22912
|
+
children?: ReactNode;
|
|
22913
|
+
};
|
|
22914
|
+
/** @deprecated - beta Object list item component */
|
|
22915
|
+
declare const ObjectListItem: (props: ObjectListItemProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22916
|
+
|
|
22917
|
+
/** @deprecated - Beta Object list item container component */
|
|
22918
|
+
declare const ObjectListItemContainer: ({ children, ...props }: RhythmProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22919
|
+
|
|
22920
|
+
/** @deprecated - Beta Object list item cover component */
|
|
22921
|
+
type ObjectListItemCoverProps = {
|
|
22922
|
+
imageUrl?: string;
|
|
22923
|
+
} & HTMLAttributes<HTMLImageElement>;
|
|
22924
|
+
/** @deprecated - beta Object list item cover component */
|
|
22925
|
+
declare const ObjectListItemCover: ({ imageUrl, ...props }: ObjectListItemCoverProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22926
|
+
|
|
22927
|
+
/** @deprecated - Beta Object list item heading component */
|
|
22928
|
+
type ObjectListItemHeadingProps = Omit<ObjectHeadingProps, 'heading'> & HTMLAttributes<HTMLDivElement> & {
|
|
22929
|
+
heading: ReactNode;
|
|
22930
|
+
};
|
|
22931
|
+
/** @deprecated - beta Object list item heading component */
|
|
22932
|
+
declare const ObjectListItemHeading: ({ heading, beforeHeadingSlot, afterHeadingSlot, ...props }: ObjectListItemHeadingProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22933
|
+
|
|
22859
22934
|
declare function Pagination({ limit, offset, total, onPageChange, }: {
|
|
22860
22935
|
limit: number;
|
|
22861
22936
|
offset: number;
|
|
@@ -23342,8 +23417,13 @@ type PopoverProps = PopoverProps$1 & {
|
|
|
23342
23417
|
onInit?: ({ store }: {
|
|
23343
23418
|
store: PopoverStore;
|
|
23344
23419
|
}) => void;
|
|
23420
|
+
/**
|
|
23421
|
+
* Valid CSS unit to set the maximum popover width
|
|
23422
|
+
* @default '220px'
|
|
23423
|
+
*/
|
|
23424
|
+
maxWidth?: string;
|
|
23345
23425
|
};
|
|
23346
|
-
declare const Popover: ({ iconColor, icon, iconSize, buttonText, ariaLabel, placement, testId, trigger, children, baseId, onInit, ...otherProps }: PopoverProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23426
|
+
declare const Popover: ({ iconColor, icon, iconSize, buttonText, ariaLabel, placement, testId, trigger, children, baseId, onInit, maxWidth, ...otherProps }: PopoverProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23347
23427
|
/**
|
|
23348
23428
|
* Hook to get the current popover context
|
|
23349
23429
|
* @description This hook is used to get the current popover context
|
|
@@ -23865,4 +23945,4 @@ type StatusBulletProps = React$1.HTMLAttributes<HTMLSpanElement> & {
|
|
|
23865
23945
|
};
|
|
23866
23946
|
declare const StatusBullet: ({ status, hideText, size, message, ...props }: StatusBulletProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23867
23947
|
|
|
23868
|
-
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 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, 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, 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, type ObjectGridItemProps, type ObjectGridItemTitleProps, 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, uniformComponentIcon, uniformComponentPatternIcon, uniformCompositionPatternIcon, uniformContentTypeIcon, uniformEntryIcon, uniformEntryPatternIcon, useBreakpoint, useCloseCurrentDrawer, useCurrentDrawer, useCurrentTab, useDateTimePickerContext, useDrawer, useIconContext, useOutsideClick, useParameterShell, usePopoverComponentContext, useShortcut, functionalColors as utilityColors, warningIcon, yesNoIcon };
|
|
23948
|
+
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, 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, 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, useShortcut, functionalColors as utilityColors, warningIcon, yesNoIcon };
|
package/dist/index.d.ts
CHANGED
|
@@ -21107,7 +21107,7 @@ type IconName = keyof typeof allSupportedIcons;
|
|
|
21107
21107
|
/** sets fill color of the svg icon
|
|
21108
21108
|
* @default 'default'
|
|
21109
21109
|
*/
|
|
21110
|
-
type IconColor = 'white' | 'action' | 'default' | 'red' | 'gray' | 'gray300' | 'accent' | 'currentColor' | 'accent-dark' | 'accent-light';
|
|
21110
|
+
type IconColor = 'white' | 'action' | 'default' | 'red' | 'gray' | 'gray300' | 'accent' | 'currentColor' | 'accent-dark' | 'accent-light' | 'accent-alt-dark';
|
|
21111
21111
|
/** sets the type of icon to use from the available list */
|
|
21112
21112
|
type IconType = IconName | IconType$1;
|
|
21113
21113
|
interface IconProps extends IconBaseProps {
|
|
@@ -21187,6 +21187,10 @@ declare function IconsProvider({ children }: {
|
|
|
21187
21187
|
}): _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21188
21188
|
|
|
21189
21189
|
declare const uniformComponentIcon: IconType$1;
|
|
21190
|
+
declare const uniformConditionalValuesIcon: IconType$1;
|
|
21191
|
+
declare const uniformAiIcon: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21192
|
+
declare const uniformLocaleIcon: IconType$1;
|
|
21193
|
+
declare const uniformLocaleDisabledIcon: IconType$1;
|
|
21190
21194
|
declare const uniformComponentPatternIcon: IconType$1;
|
|
21191
21195
|
declare const uniformCompositionPatternIcon: IconType$1;
|
|
21192
21196
|
declare const uniformContentTypeIcon: IconType$1;
|
|
@@ -21347,6 +21351,10 @@ type ChipSizeProp = 'xs' | 'sm' | 'md';
|
|
|
21347
21351
|
type ChipTheme = 'accent-light' | 'accent-dark' | 'accent-alt-light' | 'accent-alt-dark' | 'neutral-light' | 'neutral-dark';
|
|
21348
21352
|
type ChipProps = {
|
|
21349
21353
|
icon?: IconType;
|
|
21354
|
+
/** sets the color of the icon
|
|
21355
|
+
* @default 'currentColor'
|
|
21356
|
+
* */
|
|
21357
|
+
iconColor?: IconColor;
|
|
21350
21358
|
text: ReactNode;
|
|
21351
21359
|
/** sets the size of the chip
|
|
21352
21360
|
* @default 'sm'
|
|
@@ -21371,7 +21379,7 @@ type ChipProps = {
|
|
|
21371
21379
|
* To represent a different object, as a reference
|
|
21372
21380
|
* @example <Chip text="productId" theme="accent-light" chipAction={<DismissibleChipAction onDismiss={() => {...}}/>} />
|
|
21373
21381
|
*/
|
|
21374
|
-
declare const Chip: ({ icon, text, size, theme, variant, chipAction, as, ...props }: ChipProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21382
|
+
declare const Chip: ({ icon, iconColor, text, size, theme, variant, chipAction, as, ...props }: ChipProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21375
21383
|
type DismissibleChipActionProps = {
|
|
21376
21384
|
onDismiss: () => void;
|
|
21377
21385
|
} & HTMLAttributes<HTMLButtonElement>;
|
|
@@ -21392,16 +21400,22 @@ type MultilineChipProps = {
|
|
|
21392
21400
|
*/
|
|
21393
21401
|
declare const MultilineChip: ({ children, onClick, ...props }: MultilineChipProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21394
21402
|
|
|
21403
|
+
type CounterBgColors = 'var(--white)' | 'var(--gray-50)' | 'var(--accent-light)' | 'var(--accent-dark)' | 'transparent';
|
|
21404
|
+
type CounterIconColors = 'auto' | 'var(--utility-caution-icon)' | 'var(--utility-danger-icon)' | 'var(--utility-info-icon)' | 'red';
|
|
21395
21405
|
type CounterProps = {
|
|
21396
21406
|
/** sets the count value, a 0 will show a dot instead of a number. Undefined will cause the counter to disappear. */
|
|
21397
21407
|
count: number | undefined;
|
|
21398
21408
|
/** sets the background color
|
|
21399
21409
|
* @default 'transparent'
|
|
21400
21410
|
*/
|
|
21401
|
-
bgColor?:
|
|
21402
|
-
|
|
21411
|
+
bgColor?: CounterBgColors;
|
|
21412
|
+
/** sets the color of the icon if one is provided */
|
|
21413
|
+
iconColor?: CounterIconColors;
|
|
21414
|
+
/** Optional icon for the counter */
|
|
21415
|
+
icon?: IconType;
|
|
21416
|
+
} & React.HTMLAttributes<HTMLDivElement>;
|
|
21403
21417
|
/** @example <Counter count={1} /> */
|
|
21404
|
-
declare const Counter: ({ count, bgColor, ...props }: CounterProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element | null;
|
|
21418
|
+
declare const Counter: ({ count, bgColor, icon, iconColor, ...props }: CounterProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element | null;
|
|
21405
21419
|
|
|
21406
21420
|
type TextAlignProps = 'left' | 'right' | 'center';
|
|
21407
21421
|
type BoxHeightProps = 'auto' | 'xs' | 'sm' | 'md' | 'lg';
|
|
@@ -21539,6 +21553,13 @@ type DetailsProps = React$1.HTMLAttributes<HTMLDetailsElement> & {
|
|
|
21539
21553
|
/** @example <Details summary="summary text">child content here</Details>*/
|
|
21540
21554
|
declare const Details: ({ summary, children, isOpenByDefault, isOpen, isIndented, isCompact, onChange, ...props }: DetailsProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21541
21555
|
|
|
21556
|
+
type DraggableHandleProps = {
|
|
21557
|
+
disableDnd?: boolean;
|
|
21558
|
+
} & HTMLAttributes<HTMLButtonElement>;
|
|
21559
|
+
declare const DragHandle: React$1.ForwardRefExoticComponent<{
|
|
21560
|
+
disableDnd?: boolean | undefined;
|
|
21561
|
+
} & HTMLAttributes<HTMLButtonElement> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
21562
|
+
|
|
21542
21563
|
interface DrawerRendererProps extends Omit<React__default.HTMLAttributes<HTMLDivElement>, 'children'> {
|
|
21543
21564
|
/** The ID of the stack to render. Some drawers need to use the same stack ID to be rendered here */
|
|
21544
21565
|
stackId: string;
|
|
@@ -22717,12 +22738,20 @@ type MenuThreeDotsProps = {
|
|
|
22717
22738
|
* @default 'More options'
|
|
22718
22739
|
*/
|
|
22719
22740
|
buttonTitle?: string;
|
|
22741
|
+
/** sets the icon size
|
|
22742
|
+
* @default '1rem'
|
|
22743
|
+
*/
|
|
22744
|
+
iconSize?: string;
|
|
22720
22745
|
} & HTMLAttributes<HTMLButtonElement>;
|
|
22721
22746
|
declare const MenuThreeDots: React$1.ForwardRefExoticComponent<{
|
|
22722
22747
|
/** sets the aria-label and title value on the button
|
|
22723
22748
|
* @default 'More options'
|
|
22724
22749
|
*/
|
|
22725
22750
|
buttonTitle?: string | undefined;
|
|
22751
|
+
/** sets the icon size
|
|
22752
|
+
* @default '1rem'
|
|
22753
|
+
*/
|
|
22754
|
+
iconSize?: string | undefined;
|
|
22726
22755
|
} & HTMLAttributes<HTMLButtonElement> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
22727
22756
|
|
|
22728
22757
|
type SearchableMenuProps = {
|
|
@@ -22799,19 +22828,31 @@ type ObjectGridContainerProps = {
|
|
|
22799
22828
|
};
|
|
22800
22829
|
declare const ObjectGridContainer: ({ gridCount, children }: ObjectGridContainerProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22801
22830
|
|
|
22802
|
-
type
|
|
22803
|
-
/**
|
|
22804
|
-
|
|
22805
|
-
/** Slot
|
|
22806
|
-
|
|
22831
|
+
type ObjectHeadingProps = {
|
|
22832
|
+
/** sets the heading value */
|
|
22833
|
+
heading: string;
|
|
22834
|
+
/** Slot that renders a component before the heading */
|
|
22835
|
+
beforeHeadingSlot?: ReactNode;
|
|
22836
|
+
/** Slot that renders a component after the heading */
|
|
22837
|
+
afterHeadingSlot?: ReactNode;
|
|
22838
|
+
};
|
|
22839
|
+
type ObjectItemProps = {
|
|
22840
|
+
/** Slot for the header component, we recommend using <ObjectGridItemHeading /> or <ObjectListItemHeading /> */
|
|
22841
|
+
header: ReactNode;
|
|
22842
|
+
/** Slot for the cover component, we recommend using <ObjectGridItemCoverButton />, <ObjectGridItemCover /> or <ObjectListItemCover /> */
|
|
22843
|
+
cover: ReactNode;
|
|
22807
22844
|
/** Slot for the right component */
|
|
22808
|
-
rightSlot?: React
|
|
22845
|
+
rightSlot?: React.ReactNode;
|
|
22809
22846
|
/** Slot for the menu items, <MenuItem /> component should be used here */
|
|
22810
|
-
menuItems?: React
|
|
22847
|
+
menuItems?: React.ReactNode;
|
|
22811
22848
|
/** If the item is selected */
|
|
22812
22849
|
isSelected?: boolean;
|
|
22813
22850
|
/** Slot for the children */
|
|
22814
|
-
children?: React
|
|
22851
|
+
children?: React.ReactNode;
|
|
22852
|
+
};
|
|
22853
|
+
|
|
22854
|
+
type ObjectGridItemProps = ObjectItemProps & {
|
|
22855
|
+
isSelected?: boolean;
|
|
22815
22856
|
};
|
|
22816
22857
|
declare const ObjectGridItem: ({ header, cover, rightSlot, menuItems, isSelected, children, }: ObjectGridItemProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22817
22858
|
|
|
@@ -22836,14 +22877,7 @@ type ObjectGridItemCoverButtonProps = {
|
|
|
22836
22877
|
} & ObjectGridItemCoverProps;
|
|
22837
22878
|
declare const ObjectGridItemCoverButton: ({ id, isSelected, onSelection, coverSlotLeft, coverSlotRight, selectedText, ...props }: ObjectGridItemCoverButtonProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22838
22879
|
|
|
22839
|
-
type ObjectGridItemTitleProps =
|
|
22840
|
-
/** sets the heading value */
|
|
22841
|
-
heading: string;
|
|
22842
|
-
/** Slot that renders a component before the heading */
|
|
22843
|
-
beforeHeadingSlot?: ReactNode;
|
|
22844
|
-
/** Slot that renders a component after the heading */
|
|
22845
|
-
afterHeadingSlot?: ReactNode;
|
|
22846
|
-
};
|
|
22880
|
+
type ObjectGridItemTitleProps = ObjectHeadingProps;
|
|
22847
22881
|
declare const ObjectGridItemHeading: ({ heading, beforeHeadingSlot, afterHeadingSlot, }: ObjectGridItemTitleProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22848
22882
|
|
|
22849
22883
|
type ObjectGridItemIconWithTooltipProps = {
|
|
@@ -22856,6 +22890,47 @@ type ObjectGridItemIconWithTooltipProps = {
|
|
|
22856
22890
|
} & Pick<TooltipProps, 'placement'>;
|
|
22857
22891
|
declare const ObjectGridItemIconWithTooltip: ({ tooltipTitle, placement, icon, iconColor, }: ObjectGridItemIconWithTooltipProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22858
22892
|
|
|
22893
|
+
/** @deprecated - Beta Object item loading skeleton component */
|
|
22894
|
+
type ObjectItemLoadingSkeletonProps = {
|
|
22895
|
+
/** Show cover image loading skeleton */
|
|
22896
|
+
showCover?: boolean;
|
|
22897
|
+
};
|
|
22898
|
+
/** @deprecated - Beta Object item loading skeleton component
|
|
22899
|
+
* @example <ObjectItemLoadingSkeleton showCover />
|
|
22900
|
+
*/
|
|
22901
|
+
declare const ObjectItemLoadingSkeleton: ({ showCover }: ObjectItemLoadingSkeletonProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22902
|
+
|
|
22903
|
+
/** @deprecated - Beta Object list item component */
|
|
22904
|
+
type ObjectListItemProps = ObjectListItemSingleProps | (ObjectListItemMultiProps & HTMLAttributes<HTMLDivElement>);
|
|
22905
|
+
type ObjectListItemSingleProps = Omit<ObjectItemProps, 'cover' | 'children'> & {
|
|
22906
|
+
cover?: ReactNode;
|
|
22907
|
+
renderAs?: 'single';
|
|
22908
|
+
};
|
|
22909
|
+
type ObjectListItemMultiProps = Omit<ObjectItemProps, 'cover'> & {
|
|
22910
|
+
cover?: ReactNode;
|
|
22911
|
+
renderAs?: 'multi';
|
|
22912
|
+
children?: ReactNode;
|
|
22913
|
+
};
|
|
22914
|
+
/** @deprecated - beta Object list item component */
|
|
22915
|
+
declare const ObjectListItem: (props: ObjectListItemProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22916
|
+
|
|
22917
|
+
/** @deprecated - Beta Object list item container component */
|
|
22918
|
+
declare const ObjectListItemContainer: ({ children, ...props }: RhythmProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22919
|
+
|
|
22920
|
+
/** @deprecated - Beta Object list item cover component */
|
|
22921
|
+
type ObjectListItemCoverProps = {
|
|
22922
|
+
imageUrl?: string;
|
|
22923
|
+
} & HTMLAttributes<HTMLImageElement>;
|
|
22924
|
+
/** @deprecated - beta Object list item cover component */
|
|
22925
|
+
declare const ObjectListItemCover: ({ imageUrl, ...props }: ObjectListItemCoverProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22926
|
+
|
|
22927
|
+
/** @deprecated - Beta Object list item heading component */
|
|
22928
|
+
type ObjectListItemHeadingProps = Omit<ObjectHeadingProps, 'heading'> & HTMLAttributes<HTMLDivElement> & {
|
|
22929
|
+
heading: ReactNode;
|
|
22930
|
+
};
|
|
22931
|
+
/** @deprecated - beta Object list item heading component */
|
|
22932
|
+
declare const ObjectListItemHeading: ({ heading, beforeHeadingSlot, afterHeadingSlot, ...props }: ObjectListItemHeadingProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22933
|
+
|
|
22859
22934
|
declare function Pagination({ limit, offset, total, onPageChange, }: {
|
|
22860
22935
|
limit: number;
|
|
22861
22936
|
offset: number;
|
|
@@ -23342,8 +23417,13 @@ type PopoverProps = PopoverProps$1 & {
|
|
|
23342
23417
|
onInit?: ({ store }: {
|
|
23343
23418
|
store: PopoverStore;
|
|
23344
23419
|
}) => void;
|
|
23420
|
+
/**
|
|
23421
|
+
* Valid CSS unit to set the maximum popover width
|
|
23422
|
+
* @default '220px'
|
|
23423
|
+
*/
|
|
23424
|
+
maxWidth?: string;
|
|
23345
23425
|
};
|
|
23346
|
-
declare const Popover: ({ iconColor, icon, iconSize, buttonText, ariaLabel, placement, testId, trigger, children, baseId, onInit, ...otherProps }: PopoverProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23426
|
+
declare const Popover: ({ iconColor, icon, iconSize, buttonText, ariaLabel, placement, testId, trigger, children, baseId, onInit, maxWidth, ...otherProps }: PopoverProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23347
23427
|
/**
|
|
23348
23428
|
* Hook to get the current popover context
|
|
23349
23429
|
* @description This hook is used to get the current popover context
|
|
@@ -23865,4 +23945,4 @@ type StatusBulletProps = React$1.HTMLAttributes<HTMLSpanElement> & {
|
|
|
23865
23945
|
};
|
|
23866
23946
|
declare const StatusBullet: ({ status, hideText, size, message, ...props }: StatusBulletProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23867
23947
|
|
|
23868
|
-
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 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, 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, 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, type ObjectGridItemProps, type ObjectGridItemTitleProps, 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, uniformComponentIcon, uniformComponentPatternIcon, uniformCompositionPatternIcon, uniformContentTypeIcon, uniformEntryIcon, uniformEntryPatternIcon, useBreakpoint, useCloseCurrentDrawer, useCurrentDrawer, useCurrentTab, useDateTimePickerContext, useDrawer, useIconContext, useOutsideClick, useParameterShell, usePopoverComponentContext, useShortcut, functionalColors as utilityColors, warningIcon, yesNoIcon };
|
|
23948
|
+
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, 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, 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, useShortcut, functionalColors as utilityColors, warningIcon, yesNoIcon };
|