@uniformdev/design-system 19.205.0 → 19.206.0
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 +203 -89
- package/dist/index.d.mts +40 -17
- package/dist/index.d.ts +40 -17
- package/dist/index.js +492 -380
- package/package.json +4 -4
package/dist/index.d.mts
CHANGED
|
@@ -20394,7 +20394,7 @@ type TooltipProps = TooltipOptions & {
|
|
|
20394
20394
|
children: JSX.Element;
|
|
20395
20395
|
/** If the tooltip should not be rendered inside a portal */
|
|
20396
20396
|
withoutPortal?: boolean;
|
|
20397
|
-
}
|
|
20397
|
+
} & Pick<HTMLAttributes<HTMLDivElement>, 'className'>;
|
|
20398
20398
|
declare function Tooltip({ children, title, placement, visible, withoutPortal, ...props }: TooltipProps): _emotion_react_jsx_runtime.JSX.Element;
|
|
20399
20399
|
|
|
20400
20400
|
/** Button themes that are available to use with our brand */
|
|
@@ -22824,6 +22824,7 @@ interface SelectableMenuItemProps extends PropsWithChildren<Omit<MenuItemProps,
|
|
|
22824
22824
|
}
|
|
22825
22825
|
declare function SelectableMenuItem({ selected, children, ...menuItemProps }: SelectableMenuItemProps): _emotion_react_jsx_runtime.JSX.Element;
|
|
22826
22826
|
|
|
22827
|
+
/** @deprecated - use GridListItem component instead */
|
|
22827
22828
|
type MediaCardProps = Omit<CardProps, 'menuItems'> & {
|
|
22828
22829
|
title: string;
|
|
22829
22830
|
subtitle?: React.ReactNode;
|
|
@@ -22834,6 +22835,7 @@ type MediaCardProps = Omit<CardProps, 'menuItems'> & {
|
|
|
22834
22835
|
buttonType?: ButtonHTMLAttributes<HTMLButtonElement>['type'];
|
|
22835
22836
|
onClick?: () => void;
|
|
22836
22837
|
};
|
|
22838
|
+
/** @deprecated - use GridListItem component instead */
|
|
22837
22839
|
declare const MediaCard: ({ title, subtitle, infoPopover, cover, menuItems, sideSection, onClick, buttonType, ...cardProps }: MediaCardProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22838
22840
|
|
|
22839
22841
|
type ModalProps = {
|
|
@@ -22880,20 +22882,26 @@ type ModalDialogProps = Omit<ModalProps, 'width'>;
|
|
|
22880
22882
|
declare const ModalDialog: React$1.ForwardRefExoticComponent<Omit<ModalDialogProps, "ref"> & React$1.RefAttributes<HTMLDialogElement>>;
|
|
22881
22883
|
|
|
22882
22884
|
type ObjectGridContainerProps = {
|
|
22883
|
-
/** The number of columns in the grid
|
|
22884
|
-
|
|
22885
|
+
/** The number of columns in the grid
|
|
22886
|
+
* @default 3
|
|
22887
|
+
* the expected values should follow css repeat() function values
|
|
22888
|
+
* see https://developer.mozilla.org/en-US/docs/Web/CSS/repeat#syntax for examples
|
|
22889
|
+
*/
|
|
22890
|
+
gridCount?: string | number;
|
|
22885
22891
|
/** The children to render */
|
|
22886
22892
|
children: React.ReactNode;
|
|
22887
22893
|
};
|
|
22888
|
-
declare const ObjectGridContainer:
|
|
22894
|
+
declare const ObjectGridContainer: React$1.ForwardRefExoticComponent<ObjectGridContainerProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
22889
22895
|
|
|
22890
22896
|
type ObjectHeadingProps = {
|
|
22891
22897
|
/** sets the heading value */
|
|
22892
|
-
heading:
|
|
22898
|
+
heading: ReactNode;
|
|
22893
22899
|
/** Slot that renders a component before the heading */
|
|
22894
22900
|
beforeHeadingSlot?: ReactNode;
|
|
22895
22901
|
/** Slot that renders a component after the heading */
|
|
22896
22902
|
afterHeadingSlot?: ReactNode;
|
|
22903
|
+
/** sets the heading tooltip */
|
|
22904
|
+
tooltip?: string;
|
|
22897
22905
|
};
|
|
22898
22906
|
type ObjectItemProps = {
|
|
22899
22907
|
/** Slot for the header component, we recommend using <ObjectGridItemHeading /> or <ObjectListItemHeading /> */
|
|
@@ -22912,13 +22920,20 @@ type ObjectItemProps = {
|
|
|
22912
22920
|
|
|
22913
22921
|
type ObjectGridItemProps = ObjectItemProps & {
|
|
22914
22922
|
isSelected?: boolean;
|
|
22915
|
-
|
|
22916
|
-
|
|
22923
|
+
/** sets the menu test id
|
|
22924
|
+
* @default object-grid-item-menu-btn
|
|
22925
|
+
*/
|
|
22926
|
+
menuTestId?: string;
|
|
22927
|
+
} & HTMLAttributes<HTMLDivElement>;
|
|
22928
|
+
declare const ObjectGridItem: ({ header, cover, rightSlot, menuItems, isSelected, children, menuTestId, ...props }: ObjectGridItemProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22917
22929
|
|
|
22918
22930
|
type ObjectGridItemCardCoverProps = {
|
|
22919
22931
|
icon: IconType;
|
|
22932
|
+
iconColor?: 'currentColor' | 'accent-dark' | 'accent-alt-dark';
|
|
22920
22933
|
} | {
|
|
22921
22934
|
imageUrl: string;
|
|
22935
|
+
srcSet?: string;
|
|
22936
|
+
alt?: string;
|
|
22922
22937
|
};
|
|
22923
22938
|
declare const ObjectGridItemCardCover: (props: ObjectGridItemCardCoverProps) => _emotion_react_jsx_runtime.JSX.Element | undefined;
|
|
22924
22939
|
type ObjectGridItemCoverProps = {
|
|
@@ -22926,18 +22941,22 @@ type ObjectGridItemCoverProps = {
|
|
|
22926
22941
|
coverSlotLeft?: React.ReactNode;
|
|
22927
22942
|
/** The right slot to render components */
|
|
22928
22943
|
coverSlotRight?: React.ReactNode;
|
|
22944
|
+
/** The bottom left slot to render components */
|
|
22945
|
+
coverSlotBottomLeft?: React.ReactNode;
|
|
22946
|
+
/** The bottom right slot to render components */
|
|
22947
|
+
coverSlotBottomRight?: React.ReactNode;
|
|
22929
22948
|
} & ObjectGridItemCardCoverProps;
|
|
22930
|
-
declare const ObjectGridItemCover: ({ coverSlotLeft, coverSlotRight, ...props }: ObjectGridItemCoverProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22949
|
+
declare const ObjectGridItemCover: ({ coverSlotLeft, coverSlotRight, coverSlotBottomLeft, coverSlotBottomRight, ...props }: ObjectGridItemCoverProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22931
22950
|
type ObjectGridItemCoverButtonProps = {
|
|
22932
22951
|
id: string;
|
|
22933
22952
|
onSelection: (id: string) => void;
|
|
22934
|
-
isSelected
|
|
22953
|
+
isSelected?: boolean;
|
|
22935
22954
|
selectedText?: string;
|
|
22936
|
-
} & ObjectGridItemCoverProps;
|
|
22937
|
-
declare const ObjectGridItemCoverButton: ({ id, isSelected, onSelection,
|
|
22955
|
+
} & Omit<ObjectGridItemCoverProps, 'coverSlotBottomRight'> & ObjectGridItemCardCoverProps;
|
|
22956
|
+
declare const ObjectGridItemCoverButton: ({ id, isSelected, onSelection, selectedText, ...props }: ObjectGridItemCoverButtonProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22938
22957
|
|
|
22939
|
-
type ObjectGridItemTitleProps = ObjectHeadingProps
|
|
22940
|
-
declare const ObjectGridItemHeading: ({ heading, beforeHeadingSlot, afterHeadingSlot, }: ObjectGridItemTitleProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22958
|
+
type ObjectGridItemTitleProps = ObjectHeadingProps & HTMLAttributes<HTMLDivElement>;
|
|
22959
|
+
declare const ObjectGridItemHeading: ({ heading, beforeHeadingSlot, afterHeadingSlot, tooltip, ...props }: ObjectGridItemTitleProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22941
22960
|
|
|
22942
22961
|
type ObjectGridItemIconWithTooltipProps = {
|
|
22943
22962
|
/** The title of the tooltip */
|
|
@@ -22946,8 +22965,8 @@ type ObjectGridItemIconWithTooltipProps = {
|
|
|
22946
22965
|
icon: IconType;
|
|
22947
22966
|
/** The color of the icon */
|
|
22948
22967
|
iconColor?: IconColor;
|
|
22949
|
-
} & Pick<TooltipProps, 'placement'>;
|
|
22950
|
-
declare const ObjectGridItemIconWithTooltip: ({ tooltipTitle, placement, icon, iconColor, }: ObjectGridItemIconWithTooltipProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22968
|
+
} & Pick<TooltipProps, 'placement' | 'withoutPortal'>;
|
|
22969
|
+
declare const ObjectGridItemIconWithTooltip: ({ tooltipTitle, placement, icon, iconColor, ...props }: ObjectGridItemIconWithTooltipProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22951
22970
|
|
|
22952
22971
|
/** @deprecated - Beta Object grid loading skeleton component
|
|
22953
22972
|
* @example <ObjectGridItemLoadingSkeleton />
|
|
@@ -22999,7 +23018,7 @@ type ObjectListItemCoverProps = {
|
|
|
22999
23018
|
declare const ObjectListItemCover: ({ imageUrl, noImageText, ...props }: ObjectListItemCoverProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23000
23019
|
|
|
23001
23020
|
/** @deprecated - Beta Object list item heading component */
|
|
23002
|
-
type ObjectListItemHeadingProps = Omit<ObjectHeadingProps, 'heading'> & HTMLAttributes<HTMLDivElement> & {
|
|
23021
|
+
type ObjectListItemHeadingProps = Omit<ObjectHeadingProps, 'heading' | 'tooltip'> & HTMLAttributes<HTMLDivElement> & {
|
|
23003
23022
|
heading: ReactNode;
|
|
23004
23023
|
};
|
|
23005
23024
|
/** @deprecated - beta Object list item heading component */
|
|
@@ -24059,7 +24078,11 @@ type StatusBulletProps = React$1.HTMLAttributes<HTMLSpanElement> & {
|
|
|
24059
24078
|
* @default 'base'
|
|
24060
24079
|
*/
|
|
24061
24080
|
size?: 'sm' | 'base';
|
|
24081
|
+
/** sets whether to show or hide the tooltip text
|
|
24082
|
+
* @default false
|
|
24083
|
+
*/
|
|
24084
|
+
compact?: boolean;
|
|
24062
24085
|
};
|
|
24063
|
-
declare const StatusBullet: ({ status, hideText, size, message, ...props }: StatusBulletProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
24086
|
+
declare const StatusBullet: ({ status, hideText, size, message, compact, ...props }: StatusBulletProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
24064
24087
|
|
|
24065
24088
|
export { type ActionButtonsProps, AddButton, type AddButtonProps, AddListButton, type AddListButtonProps, type AddListButtonThemeProps, AnimationFile, type AnimationFileProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, Badge, type BadgeProps, type BadgeSizeProps, type BadgeThemeProps, type BadgeThemeStyleProps, Banner, type BannerProps, type BannerType, BetaDecorator, type BoxHeightProps, type BreakpointSize, type BreakpointsMap, Button, type ButtonProps, type ButtonSizeProps$1 as ButtonSizeProps, type ButtonThemeProps$1 as ButtonThemeProps, ButtonWithMenu, type ButtonWithMenuProps, Calendar, type CalendarProps, Callout, type CalloutProps, type CalloutType, Caption, type CaptionProps, Card, CardContainer, type CardContainerBgColorProps, type CardContainerProps, type CardProps, CardTitle, type CardTitleProps, CheckboxWithInfo, type CheckboxWithInforProps, type ChildFunction, Chip, type ChipProps, type ChipTheme, type ComboBoxGroupBase, type ComboBoxSelectableGroup, type ComboBoxSelectableItem, type ComboBoxSelectableOption, ConnectToDataElementButton, type ConnectToDataElementButtonProps, Container, type ContainerProps, type ConvertComboBoxGroupsToSelectableGroupsOptions, Counter, type CounterBgColors, type CounterIconColors, type CounterProps, CreateTeamIntegrationTile, type CreateTeamIntegrationTileProps, CurrentDrawerContext, DashedBox, type DashedBoxProps, DateTimePicker, type DateTimePickerProps, DateTimePickerSummary, type DateTimePickerValue, DateTimePickerVariant, DebouncedInputKeywordSearch, type DebouncedInputKeywordSearchProps, DescriptionList, type DescriptionListProps, Details, type DetailsProps, DismissibleChipAction, DragHandle, type DraggableHandleProps, Drawer, DrawerContent, type DrawerContentProps, type DrawerContextValue, type DrawerItem, type DrawerProps, DrawerProvider, DrawerRenderer, type DrawerRendererItemProps, type DrawerRendererProps, type DrawersRegistryRecord, DropdownStyleMenuTrigger, type DropdownStyleMenuTriggerProps, EditTeamIntegrationTile, type EditTeamIntegrationTileProps, ErrorMessage, type ErrorMessageProps, FieldMessage, type FieldMessageProps, Fieldset, type FieldsetProps, Heading, type HeadingProps, HexModalBackground, HorizontalRhythm, Icon, IconButton, type IconButtonProps, type IconColor, type IconName, type IconProps, type IconType, IconsProvider, Image, ImageBroken, type ImageProps, InfoMessage, type InfoMessageProps, Input, InputComboBox, type InputComboBoxOption, type InputComboBoxProps, InputCreatableComboBox, type InputCreatableComboBoxProps, InputInlineSelect, type InputInlineSelectOption, type InputInlineSelectProps, InputKeywordSearch, type InputKeywordSearchProps, type InputProps, InputSelect, type InputSelectProps, InputTime, type InputTimeProps, InputToggle, type InputToggleProps, IntegrationComingSoon, type IntegrationComingSoonProps, IntegrationHeaderSection, type IntegrationHeaderSectionProps, IntegrationLoadingTile, type IntegrationLoadingTileProps, IntegrationModalHeader, type IntegrationModalHeaderProps, IntegrationModalIcon, type IntegrationModalIconProps, IntegrationTile, type IntegrationTileProps, type IsoDateString, type IsoDateTimeString, type IsoTimeString, JsonEditor, type JsonEditorProps, KeyValueInput, type KeyValueInputProps, type KeyValueItem, Label, LabelLeadingIcon, type LabelProps, Legend, type LegendProps, type LevelProps, LimitsBar, type LimitsBarProps, Link, type LinkColorProps, LinkList, type LinkListProps, type LinkManagerWithRefType, LinkNode, type LinkProps, LinkWithRef, LoadingCardSkeleton, LoadingIcon, type LoadingIconProps, LoadingIndicator, LoadingOverlay, type LoadingOverlayProps, MediaCard, type MediaCardProps, Menu, MenuButton, type MenuButtonProp, MenuGroup, type MenuGroupProps, MenuItem, MenuItemEmptyIcon, MenuItemHeading, MenuItemIcon, MenuItemInner, type MenuItemProps, MenuItemSeparator, type MenuItemTextThemeProps, type MenuProps, MenuThreeDots, type MenuThreeDotsProps, Modal, ModalDialog, type ModalDialogProps, type ModalProps, MultilineChip, type MultilineChipProps, ObjectGridContainer, type ObjectGridContainerProps, ObjectGridItem, ObjectGridItemCardCover, type ObjectGridItemCardCoverProps, ObjectGridItemCover, ObjectGridItemCoverButton, type ObjectGridItemCoverButtonProps, type ObjectGridItemCoverProps, ObjectGridItemHeading, ObjectGridItemIconWithTooltip, type ObjectGridItemIconWithTooltipProps, ObjectGridItemLoadingSkeleton, type ObjectGridItemProps, type ObjectGridItemTitleProps, ObjectItemLoadingSkeleton, type ObjectItemLoadingSkeletonProps, ObjectListItem, ObjectListItemContainer, ObjectListItemCover, type ObjectListItemCoverProps, ObjectListItemHeading, type ObjectListItemHeadingProps, type ObjectListItemProps, PageHeaderSection, type PageHeaderSectionProps, Pagination, Paragraph, type ParagraphProps, type ParameterDataConnectButtonProps, ParameterDataResource, ParameterDrawerHeader, type ParameterDrawerHeaderProps, ParameterGroup, type ParameterGroupProps, ParameterImage, ParameterImageInner, ParameterImagePreview, type ParameterImageProps, ParameterInput, ParameterInputInner, type ParameterInputProps, ParameterLabel, type ParameterLabelProps, ParameterLink, ParameterLinkInner, type ParameterLinkProps, ParameterMenuButton, type ParameterMenuButtonProps, ParameterMultiSelect, ParameterMultiSelectInner, type ParameterMultiSelectOption, type ParameterMultiSelectProps, ParameterNameAndPublicIdInput, type ParameterNameAndPublicIdInputProps, ParameterOverrideMarker, ParameterRichText, ParameterRichTextInner, type ParameterRichTextInnerProps, type ParameterRichTextProps, ParameterSelect, ParameterSelectInner, type ParameterSelectProps, ParameterShell, ParameterShellContext, ParameterShellPlaceholder, type ParameterShellProps, ParameterTextarea, ParameterTextareaInner, type ParameterTextareaProps, ParameterToggle, ParameterToggleInner, type ParameterToggleProps, Popover, type PopoverProps, ProgressBar, type ProgressBarProps, ProgressList, ProgressListItem, type ProgressListItemProps, type ProgressListProps, type RegisterDrawerProps, ResolveIcon, type ResolveIconProps, type RhythmProps, type RichTextParamValue, RichTextToolbarIcon, type ScrollableItemProps, ScrollableList, type ScrollableListContainerProps, ScrollableListInputItem, ScrollableListItem, type ScrollableListItemProps, type ScrollableListProps, SearchableMenu, type SearchableMenuProps, SegmentedControl, type SegmentedControlOption, type SegmentedControlProps, SelectableMenuItem, type SelectableMenuItemProps, type SerializedLinkNode, ShortcutContext, type ShortcutReference, ShortcutRevealer, Skeleton, type SkeletonProps, StatusBullet, type StatusBulletProps, type StatusTypeProps, SuccessMessage, type SuccessMessageProps, Switch, type SwitchProps, TAKEOVER_STACK_ID, TabButton, TabButtonGroup, type TabButtonProps, TabContent, type TabContentProps, Table, TableBody, type TableBodyProps, TableCellData, type TableCellDataProps, TableCellHead, type TableCellHeadProps, TableFoot, type TableFootProps, TableHead, type TableHeadProps, type TableProps, TableRow, type TableRowProps, Tabs, type TabsProps, TakeoverDrawerRenderer, type TextAlignProps, Textarea, type TextareaProps, Theme, type ThemeProps, Tile, TileContainer, type TileContainerProps, type TileProps, TileText, type TileTitleProps, ToastContainer, type ToastContainerProps, Tooltip, type TooltipProps, TwoColumnLayout, type TwoColumnLayoutProps, UniformBadge, UniformLogo, UniformLogoLarge, type UniformLogoProps, type UseShortcutOptions, type UseShortcutResult, VerticalRhythm, WarningMessage, type WarningMessageProps, accessibleHidden, addPathSegmentToPathname, borderTopIcon, breakpoints, button, buttonAccentAltDark, buttonAccentAltDarkOutline, buttonDestructive, buttonGhost, buttonGhostDestructive, buttonGhostUnimportant, buttonPrimary, buttonPrimaryInvert, buttonRippleEffect, buttonSecondary, buttonSecondaryInvert, buttonTertiary, buttonTertiaryOutline, buttonUnimportant, canvasAlertIcon, cardIcon, convertComboBoxGroupsToSelectableGroups, cq, customIcons, extractParameterProps, fadeIn, fadeInBottom, fadeInLtr, fadeInRtl, fadeInTop, fadeOutBottom, fullWidthScreenIcon, getComboBoxSelectedSelectableGroups, getDrawerAttributes, getFormattedShortcut, getParentPath, getPathSegment, growSubtle, imageTextIcon, infoFilledIcon, input, inputError, inputSelect, isSecureURL, isValidUrl, jsonIcon, labelText, loader as loaderAnimationData, mq, numberInput, queryStringIcon, rectangleRoundedIcon, replaceUnderscoreInString, richTextToolbarButton, richTextToolbarButtonActive, ripple, scrollbarStyles, settings, settingsIcon, skeletonLoading, slideInTtb, spin, spinner as spinnerAnimationData, structurePanelIcon, supports, textInput, uniformAiIcon, uniformComponentIcon, uniformComponentPatternIcon, uniformCompositionPatternIcon, uniformConditionalValuesIcon, uniformContentTypeIcon, uniformEntryIcon, uniformEntryPatternIcon, uniformLocaleDisabledIcon, uniformLocaleIcon, useBreakpoint, useCloseCurrentDrawer, useCurrentDrawer, useCurrentTab, useDateTimePickerContext, useDrawer, useIconContext, useOutsideClick, useParameterShell, usePopoverComponentContext, useRichTextToolbarState, useShortcut, functionalColors as utilityColors, warningIcon, yesNoIcon, zigZag, zigZagThick };
|
package/dist/index.d.ts
CHANGED
|
@@ -20394,7 +20394,7 @@ type TooltipProps = TooltipOptions & {
|
|
|
20394
20394
|
children: JSX.Element;
|
|
20395
20395
|
/** If the tooltip should not be rendered inside a portal */
|
|
20396
20396
|
withoutPortal?: boolean;
|
|
20397
|
-
}
|
|
20397
|
+
} & Pick<HTMLAttributes<HTMLDivElement>, 'className'>;
|
|
20398
20398
|
declare function Tooltip({ children, title, placement, visible, withoutPortal, ...props }: TooltipProps): _emotion_react_jsx_runtime.JSX.Element;
|
|
20399
20399
|
|
|
20400
20400
|
/** Button themes that are available to use with our brand */
|
|
@@ -22824,6 +22824,7 @@ interface SelectableMenuItemProps extends PropsWithChildren<Omit<MenuItemProps,
|
|
|
22824
22824
|
}
|
|
22825
22825
|
declare function SelectableMenuItem({ selected, children, ...menuItemProps }: SelectableMenuItemProps): _emotion_react_jsx_runtime.JSX.Element;
|
|
22826
22826
|
|
|
22827
|
+
/** @deprecated - use GridListItem component instead */
|
|
22827
22828
|
type MediaCardProps = Omit<CardProps, 'menuItems'> & {
|
|
22828
22829
|
title: string;
|
|
22829
22830
|
subtitle?: React.ReactNode;
|
|
@@ -22834,6 +22835,7 @@ type MediaCardProps = Omit<CardProps, 'menuItems'> & {
|
|
|
22834
22835
|
buttonType?: ButtonHTMLAttributes<HTMLButtonElement>['type'];
|
|
22835
22836
|
onClick?: () => void;
|
|
22836
22837
|
};
|
|
22838
|
+
/** @deprecated - use GridListItem component instead */
|
|
22837
22839
|
declare const MediaCard: ({ title, subtitle, infoPopover, cover, menuItems, sideSection, onClick, buttonType, ...cardProps }: MediaCardProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22838
22840
|
|
|
22839
22841
|
type ModalProps = {
|
|
@@ -22880,20 +22882,26 @@ type ModalDialogProps = Omit<ModalProps, 'width'>;
|
|
|
22880
22882
|
declare const ModalDialog: React$1.ForwardRefExoticComponent<Omit<ModalDialogProps, "ref"> & React$1.RefAttributes<HTMLDialogElement>>;
|
|
22881
22883
|
|
|
22882
22884
|
type ObjectGridContainerProps = {
|
|
22883
|
-
/** The number of columns in the grid
|
|
22884
|
-
|
|
22885
|
+
/** The number of columns in the grid
|
|
22886
|
+
* @default 3
|
|
22887
|
+
* the expected values should follow css repeat() function values
|
|
22888
|
+
* see https://developer.mozilla.org/en-US/docs/Web/CSS/repeat#syntax for examples
|
|
22889
|
+
*/
|
|
22890
|
+
gridCount?: string | number;
|
|
22885
22891
|
/** The children to render */
|
|
22886
22892
|
children: React.ReactNode;
|
|
22887
22893
|
};
|
|
22888
|
-
declare const ObjectGridContainer:
|
|
22894
|
+
declare const ObjectGridContainer: React$1.ForwardRefExoticComponent<ObjectGridContainerProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
22889
22895
|
|
|
22890
22896
|
type ObjectHeadingProps = {
|
|
22891
22897
|
/** sets the heading value */
|
|
22892
|
-
heading:
|
|
22898
|
+
heading: ReactNode;
|
|
22893
22899
|
/** Slot that renders a component before the heading */
|
|
22894
22900
|
beforeHeadingSlot?: ReactNode;
|
|
22895
22901
|
/** Slot that renders a component after the heading */
|
|
22896
22902
|
afterHeadingSlot?: ReactNode;
|
|
22903
|
+
/** sets the heading tooltip */
|
|
22904
|
+
tooltip?: string;
|
|
22897
22905
|
};
|
|
22898
22906
|
type ObjectItemProps = {
|
|
22899
22907
|
/** Slot for the header component, we recommend using <ObjectGridItemHeading /> or <ObjectListItemHeading /> */
|
|
@@ -22912,13 +22920,20 @@ type ObjectItemProps = {
|
|
|
22912
22920
|
|
|
22913
22921
|
type ObjectGridItemProps = ObjectItemProps & {
|
|
22914
22922
|
isSelected?: boolean;
|
|
22915
|
-
|
|
22916
|
-
|
|
22923
|
+
/** sets the menu test id
|
|
22924
|
+
* @default object-grid-item-menu-btn
|
|
22925
|
+
*/
|
|
22926
|
+
menuTestId?: string;
|
|
22927
|
+
} & HTMLAttributes<HTMLDivElement>;
|
|
22928
|
+
declare const ObjectGridItem: ({ header, cover, rightSlot, menuItems, isSelected, children, menuTestId, ...props }: ObjectGridItemProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22917
22929
|
|
|
22918
22930
|
type ObjectGridItemCardCoverProps = {
|
|
22919
22931
|
icon: IconType;
|
|
22932
|
+
iconColor?: 'currentColor' | 'accent-dark' | 'accent-alt-dark';
|
|
22920
22933
|
} | {
|
|
22921
22934
|
imageUrl: string;
|
|
22935
|
+
srcSet?: string;
|
|
22936
|
+
alt?: string;
|
|
22922
22937
|
};
|
|
22923
22938
|
declare const ObjectGridItemCardCover: (props: ObjectGridItemCardCoverProps) => _emotion_react_jsx_runtime.JSX.Element | undefined;
|
|
22924
22939
|
type ObjectGridItemCoverProps = {
|
|
@@ -22926,18 +22941,22 @@ type ObjectGridItemCoverProps = {
|
|
|
22926
22941
|
coverSlotLeft?: React.ReactNode;
|
|
22927
22942
|
/** The right slot to render components */
|
|
22928
22943
|
coverSlotRight?: React.ReactNode;
|
|
22944
|
+
/** The bottom left slot to render components */
|
|
22945
|
+
coverSlotBottomLeft?: React.ReactNode;
|
|
22946
|
+
/** The bottom right slot to render components */
|
|
22947
|
+
coverSlotBottomRight?: React.ReactNode;
|
|
22929
22948
|
} & ObjectGridItemCardCoverProps;
|
|
22930
|
-
declare const ObjectGridItemCover: ({ coverSlotLeft, coverSlotRight, ...props }: ObjectGridItemCoverProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22949
|
+
declare const ObjectGridItemCover: ({ coverSlotLeft, coverSlotRight, coverSlotBottomLeft, coverSlotBottomRight, ...props }: ObjectGridItemCoverProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22931
22950
|
type ObjectGridItemCoverButtonProps = {
|
|
22932
22951
|
id: string;
|
|
22933
22952
|
onSelection: (id: string) => void;
|
|
22934
|
-
isSelected
|
|
22953
|
+
isSelected?: boolean;
|
|
22935
22954
|
selectedText?: string;
|
|
22936
|
-
} & ObjectGridItemCoverProps;
|
|
22937
|
-
declare const ObjectGridItemCoverButton: ({ id, isSelected, onSelection,
|
|
22955
|
+
} & Omit<ObjectGridItemCoverProps, 'coverSlotBottomRight'> & ObjectGridItemCardCoverProps;
|
|
22956
|
+
declare const ObjectGridItemCoverButton: ({ id, isSelected, onSelection, selectedText, ...props }: ObjectGridItemCoverButtonProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22938
22957
|
|
|
22939
|
-
type ObjectGridItemTitleProps = ObjectHeadingProps
|
|
22940
|
-
declare const ObjectGridItemHeading: ({ heading, beforeHeadingSlot, afterHeadingSlot, }: ObjectGridItemTitleProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22958
|
+
type ObjectGridItemTitleProps = ObjectHeadingProps & HTMLAttributes<HTMLDivElement>;
|
|
22959
|
+
declare const ObjectGridItemHeading: ({ heading, beforeHeadingSlot, afterHeadingSlot, tooltip, ...props }: ObjectGridItemTitleProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22941
22960
|
|
|
22942
22961
|
type ObjectGridItemIconWithTooltipProps = {
|
|
22943
22962
|
/** The title of the tooltip */
|
|
@@ -22946,8 +22965,8 @@ type ObjectGridItemIconWithTooltipProps = {
|
|
|
22946
22965
|
icon: IconType;
|
|
22947
22966
|
/** The color of the icon */
|
|
22948
22967
|
iconColor?: IconColor;
|
|
22949
|
-
} & Pick<TooltipProps, 'placement'>;
|
|
22950
|
-
declare const ObjectGridItemIconWithTooltip: ({ tooltipTitle, placement, icon, iconColor, }: ObjectGridItemIconWithTooltipProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22968
|
+
} & Pick<TooltipProps, 'placement' | 'withoutPortal'>;
|
|
22969
|
+
declare const ObjectGridItemIconWithTooltip: ({ tooltipTitle, placement, icon, iconColor, ...props }: ObjectGridItemIconWithTooltipProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22951
22970
|
|
|
22952
22971
|
/** @deprecated - Beta Object grid loading skeleton component
|
|
22953
22972
|
* @example <ObjectGridItemLoadingSkeleton />
|
|
@@ -22999,7 +23018,7 @@ type ObjectListItemCoverProps = {
|
|
|
22999
23018
|
declare const ObjectListItemCover: ({ imageUrl, noImageText, ...props }: ObjectListItemCoverProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23000
23019
|
|
|
23001
23020
|
/** @deprecated - Beta Object list item heading component */
|
|
23002
|
-
type ObjectListItemHeadingProps = Omit<ObjectHeadingProps, 'heading'> & HTMLAttributes<HTMLDivElement> & {
|
|
23021
|
+
type ObjectListItemHeadingProps = Omit<ObjectHeadingProps, 'heading' | 'tooltip'> & HTMLAttributes<HTMLDivElement> & {
|
|
23003
23022
|
heading: ReactNode;
|
|
23004
23023
|
};
|
|
23005
23024
|
/** @deprecated - beta Object list item heading component */
|
|
@@ -24059,7 +24078,11 @@ type StatusBulletProps = React$1.HTMLAttributes<HTMLSpanElement> & {
|
|
|
24059
24078
|
* @default 'base'
|
|
24060
24079
|
*/
|
|
24061
24080
|
size?: 'sm' | 'base';
|
|
24081
|
+
/** sets whether to show or hide the tooltip text
|
|
24082
|
+
* @default false
|
|
24083
|
+
*/
|
|
24084
|
+
compact?: boolean;
|
|
24062
24085
|
};
|
|
24063
|
-
declare const StatusBullet: ({ status, hideText, size, message, ...props }: StatusBulletProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
24086
|
+
declare const StatusBullet: ({ status, hideText, size, message, compact, ...props }: StatusBulletProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
24064
24087
|
|
|
24065
24088
|
export { type ActionButtonsProps, AddButton, type AddButtonProps, AddListButton, type AddListButtonProps, type AddListButtonThemeProps, AnimationFile, type AnimationFileProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, Badge, type BadgeProps, type BadgeSizeProps, type BadgeThemeProps, type BadgeThemeStyleProps, Banner, type BannerProps, type BannerType, BetaDecorator, type BoxHeightProps, type BreakpointSize, type BreakpointsMap, Button, type ButtonProps, type ButtonSizeProps$1 as ButtonSizeProps, type ButtonThemeProps$1 as ButtonThemeProps, ButtonWithMenu, type ButtonWithMenuProps, Calendar, type CalendarProps, Callout, type CalloutProps, type CalloutType, Caption, type CaptionProps, Card, CardContainer, type CardContainerBgColorProps, type CardContainerProps, type CardProps, CardTitle, type CardTitleProps, CheckboxWithInfo, type CheckboxWithInforProps, type ChildFunction, Chip, type ChipProps, type ChipTheme, type ComboBoxGroupBase, type ComboBoxSelectableGroup, type ComboBoxSelectableItem, type ComboBoxSelectableOption, ConnectToDataElementButton, type ConnectToDataElementButtonProps, Container, type ContainerProps, type ConvertComboBoxGroupsToSelectableGroupsOptions, Counter, type CounterBgColors, type CounterIconColors, type CounterProps, CreateTeamIntegrationTile, type CreateTeamIntegrationTileProps, CurrentDrawerContext, DashedBox, type DashedBoxProps, DateTimePicker, type DateTimePickerProps, DateTimePickerSummary, type DateTimePickerValue, DateTimePickerVariant, DebouncedInputKeywordSearch, type DebouncedInputKeywordSearchProps, DescriptionList, type DescriptionListProps, Details, type DetailsProps, DismissibleChipAction, DragHandle, type DraggableHandleProps, Drawer, DrawerContent, type DrawerContentProps, type DrawerContextValue, type DrawerItem, type DrawerProps, DrawerProvider, DrawerRenderer, type DrawerRendererItemProps, type DrawerRendererProps, type DrawersRegistryRecord, DropdownStyleMenuTrigger, type DropdownStyleMenuTriggerProps, EditTeamIntegrationTile, type EditTeamIntegrationTileProps, ErrorMessage, type ErrorMessageProps, FieldMessage, type FieldMessageProps, Fieldset, type FieldsetProps, Heading, type HeadingProps, HexModalBackground, HorizontalRhythm, Icon, IconButton, type IconButtonProps, type IconColor, type IconName, type IconProps, type IconType, IconsProvider, Image, ImageBroken, type ImageProps, InfoMessage, type InfoMessageProps, Input, InputComboBox, type InputComboBoxOption, type InputComboBoxProps, InputCreatableComboBox, type InputCreatableComboBoxProps, InputInlineSelect, type InputInlineSelectOption, type InputInlineSelectProps, InputKeywordSearch, type InputKeywordSearchProps, type InputProps, InputSelect, type InputSelectProps, InputTime, type InputTimeProps, InputToggle, type InputToggleProps, IntegrationComingSoon, type IntegrationComingSoonProps, IntegrationHeaderSection, type IntegrationHeaderSectionProps, IntegrationLoadingTile, type IntegrationLoadingTileProps, IntegrationModalHeader, type IntegrationModalHeaderProps, IntegrationModalIcon, type IntegrationModalIconProps, IntegrationTile, type IntegrationTileProps, type IsoDateString, type IsoDateTimeString, type IsoTimeString, JsonEditor, type JsonEditorProps, KeyValueInput, type KeyValueInputProps, type KeyValueItem, Label, LabelLeadingIcon, type LabelProps, Legend, type LegendProps, type LevelProps, LimitsBar, type LimitsBarProps, Link, type LinkColorProps, LinkList, type LinkListProps, type LinkManagerWithRefType, LinkNode, type LinkProps, LinkWithRef, LoadingCardSkeleton, LoadingIcon, type LoadingIconProps, LoadingIndicator, LoadingOverlay, type LoadingOverlayProps, MediaCard, type MediaCardProps, Menu, MenuButton, type MenuButtonProp, MenuGroup, type MenuGroupProps, MenuItem, MenuItemEmptyIcon, MenuItemHeading, MenuItemIcon, MenuItemInner, type MenuItemProps, MenuItemSeparator, type MenuItemTextThemeProps, type MenuProps, MenuThreeDots, type MenuThreeDotsProps, Modal, ModalDialog, type ModalDialogProps, type ModalProps, MultilineChip, type MultilineChipProps, ObjectGridContainer, type ObjectGridContainerProps, ObjectGridItem, ObjectGridItemCardCover, type ObjectGridItemCardCoverProps, ObjectGridItemCover, ObjectGridItemCoverButton, type ObjectGridItemCoverButtonProps, type ObjectGridItemCoverProps, ObjectGridItemHeading, ObjectGridItemIconWithTooltip, type ObjectGridItemIconWithTooltipProps, ObjectGridItemLoadingSkeleton, type ObjectGridItemProps, type ObjectGridItemTitleProps, ObjectItemLoadingSkeleton, type ObjectItemLoadingSkeletonProps, ObjectListItem, ObjectListItemContainer, ObjectListItemCover, type ObjectListItemCoverProps, ObjectListItemHeading, type ObjectListItemHeadingProps, type ObjectListItemProps, PageHeaderSection, type PageHeaderSectionProps, Pagination, Paragraph, type ParagraphProps, type ParameterDataConnectButtonProps, ParameterDataResource, ParameterDrawerHeader, type ParameterDrawerHeaderProps, ParameterGroup, type ParameterGroupProps, ParameterImage, ParameterImageInner, ParameterImagePreview, type ParameterImageProps, ParameterInput, ParameterInputInner, type ParameterInputProps, ParameterLabel, type ParameterLabelProps, ParameterLink, ParameterLinkInner, type ParameterLinkProps, ParameterMenuButton, type ParameterMenuButtonProps, ParameterMultiSelect, ParameterMultiSelectInner, type ParameterMultiSelectOption, type ParameterMultiSelectProps, ParameterNameAndPublicIdInput, type ParameterNameAndPublicIdInputProps, ParameterOverrideMarker, ParameterRichText, ParameterRichTextInner, type ParameterRichTextInnerProps, type ParameterRichTextProps, ParameterSelect, ParameterSelectInner, type ParameterSelectProps, ParameterShell, ParameterShellContext, ParameterShellPlaceholder, type ParameterShellProps, ParameterTextarea, ParameterTextareaInner, type ParameterTextareaProps, ParameterToggle, ParameterToggleInner, type ParameterToggleProps, Popover, type PopoverProps, ProgressBar, type ProgressBarProps, ProgressList, ProgressListItem, type ProgressListItemProps, type ProgressListProps, type RegisterDrawerProps, ResolveIcon, type ResolveIconProps, type RhythmProps, type RichTextParamValue, RichTextToolbarIcon, type ScrollableItemProps, ScrollableList, type ScrollableListContainerProps, ScrollableListInputItem, ScrollableListItem, type ScrollableListItemProps, type ScrollableListProps, SearchableMenu, type SearchableMenuProps, SegmentedControl, type SegmentedControlOption, type SegmentedControlProps, SelectableMenuItem, type SelectableMenuItemProps, type SerializedLinkNode, ShortcutContext, type ShortcutReference, ShortcutRevealer, Skeleton, type SkeletonProps, StatusBullet, type StatusBulletProps, type StatusTypeProps, SuccessMessage, type SuccessMessageProps, Switch, type SwitchProps, TAKEOVER_STACK_ID, TabButton, TabButtonGroup, type TabButtonProps, TabContent, type TabContentProps, Table, TableBody, type TableBodyProps, TableCellData, type TableCellDataProps, TableCellHead, type TableCellHeadProps, TableFoot, type TableFootProps, TableHead, type TableHeadProps, type TableProps, TableRow, type TableRowProps, Tabs, type TabsProps, TakeoverDrawerRenderer, type TextAlignProps, Textarea, type TextareaProps, Theme, type ThemeProps, Tile, TileContainer, type TileContainerProps, type TileProps, TileText, type TileTitleProps, ToastContainer, type ToastContainerProps, Tooltip, type TooltipProps, TwoColumnLayout, type TwoColumnLayoutProps, UniformBadge, UniformLogo, UniformLogoLarge, type UniformLogoProps, type UseShortcutOptions, type UseShortcutResult, VerticalRhythm, WarningMessage, type WarningMessageProps, accessibleHidden, addPathSegmentToPathname, borderTopIcon, breakpoints, button, buttonAccentAltDark, buttonAccentAltDarkOutline, buttonDestructive, buttonGhost, buttonGhostDestructive, buttonGhostUnimportant, buttonPrimary, buttonPrimaryInvert, buttonRippleEffect, buttonSecondary, buttonSecondaryInvert, buttonTertiary, buttonTertiaryOutline, buttonUnimportant, canvasAlertIcon, cardIcon, convertComboBoxGroupsToSelectableGroups, cq, customIcons, extractParameterProps, fadeIn, fadeInBottom, fadeInLtr, fadeInRtl, fadeInTop, fadeOutBottom, fullWidthScreenIcon, getComboBoxSelectedSelectableGroups, getDrawerAttributes, getFormattedShortcut, getParentPath, getPathSegment, growSubtle, imageTextIcon, infoFilledIcon, input, inputError, inputSelect, isSecureURL, isValidUrl, jsonIcon, labelText, loader as loaderAnimationData, mq, numberInput, queryStringIcon, rectangleRoundedIcon, replaceUnderscoreInString, richTextToolbarButton, richTextToolbarButtonActive, ripple, scrollbarStyles, settings, settingsIcon, skeletonLoading, slideInTtb, spin, spinner as spinnerAnimationData, structurePanelIcon, supports, textInput, uniformAiIcon, uniformComponentIcon, uniformComponentPatternIcon, uniformCompositionPatternIcon, uniformConditionalValuesIcon, uniformContentTypeIcon, uniformEntryIcon, uniformEntryPatternIcon, uniformLocaleDisabledIcon, uniformLocaleIcon, useBreakpoint, useCloseCurrentDrawer, useCurrentDrawer, useCurrentTab, useDateTimePickerContext, useDrawer, useIconContext, useOutsideClick, useParameterShell, usePopoverComponentContext, useRichTextToolbarState, useShortcut, functionalColors as utilityColors, warningIcon, yesNoIcon, zigZag, zigZagThick };
|