@uniformdev/design-system 19.173.1-alpha.17 → 19.175.1-alpha.35
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 +562 -486
- package/dist/index.d.mts +36 -18
- package/dist/index.d.ts +36 -18
- package/dist/index.js +632 -552
- package/package.json +4 -4
package/dist/index.d.mts
CHANGED
|
@@ -16,6 +16,7 @@ import * as _react_icons_all_files from '@react-icons/all-files';
|
|
|
16
16
|
import { IconType as IconType$2 } from '@react-icons/all-files';
|
|
17
17
|
import { DateValue } from '@internationalized/date';
|
|
18
18
|
import { CalendarProps as CalendarProps$1, TimeFieldProps, TimeValue } from 'react-aria-components';
|
|
19
|
+
import { PopoverState } from 'reakit/Popover';
|
|
19
20
|
import { CreatableProps } from 'react-select/creatable';
|
|
20
21
|
import InternalSelect from 'react-select/dist/declarations/src/Select';
|
|
21
22
|
import { JsonSchema7Type } from 'zod-to-json-schema/src/parseDef';
|
|
@@ -21187,10 +21188,6 @@ declare function IconsProvider({ children }: {
|
|
|
21187
21188
|
}): _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21188
21189
|
|
|
21189
21190
|
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;
|
|
21194
21191
|
declare const uniformComponentPatternIcon: IconType$1;
|
|
21195
21192
|
declare const uniformCompositionPatternIcon: IconType$1;
|
|
21196
21193
|
declare const uniformContentTypeIcon: IconType$1;
|
|
@@ -21400,22 +21397,16 @@ type MultilineChipProps = {
|
|
|
21400
21397
|
*/
|
|
21401
21398
|
declare const MultilineChip: ({ children, onClick, ...props }: MultilineChipProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21402
21399
|
|
|
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';
|
|
21405
21400
|
type CounterProps = {
|
|
21406
21401
|
/** sets the count value, a 0 will show a dot instead of a number. Undefined will cause the counter to disappear. */
|
|
21407
21402
|
count: number | undefined;
|
|
21408
21403
|
/** sets the background color
|
|
21409
21404
|
* @default 'transparent'
|
|
21410
21405
|
*/
|
|
21411
|
-
bgColor?:
|
|
21412
|
-
|
|
21413
|
-
iconColor?: CounterIconColors;
|
|
21414
|
-
/** Optional icon for the counter */
|
|
21415
|
-
icon?: IconType;
|
|
21416
|
-
} & React.HTMLAttributes<HTMLDivElement>;
|
|
21406
|
+
bgColor?: 'var(--white)' | 'var(--gray-50)' | 'transparent';
|
|
21407
|
+
} & React$1.HTMLAttributes<HTMLDivElement>;
|
|
21417
21408
|
/** @example <Counter count={1} /> */
|
|
21418
|
-
declare const Counter: ({ count, bgColor,
|
|
21409
|
+
declare const Counter: ({ count, bgColor, ...props }: CounterProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element | null;
|
|
21419
21410
|
|
|
21420
21411
|
type TextAlignProps = 'left' | 'right' | 'center';
|
|
21421
21412
|
type BoxHeightProps = 'auto' | 'xs' | 'sm' | 'md' | 'lg';
|
|
@@ -21480,6 +21471,10 @@ type DateTimePickerProps = {
|
|
|
21480
21471
|
disabled?: boolean;
|
|
21481
21472
|
/** (optional) sets the base test id for each of the elements with a testid */
|
|
21482
21473
|
testId?: string;
|
|
21474
|
+
/** (optional) sets the popover placement */
|
|
21475
|
+
placement?: PopoverState['placement'];
|
|
21476
|
+
/** (optional) sets the popover offset */
|
|
21477
|
+
offset?: [string | number, string | number] | undefined;
|
|
21483
21478
|
};
|
|
21484
21479
|
/**
|
|
21485
21480
|
* Use this context for slots within the date time picker
|
|
@@ -21502,7 +21497,7 @@ declare function useDateTimePickerContext(): {
|
|
|
21502
21497
|
* Subcomponents can manipulate the value directly by using
|
|
21503
21498
|
* the `useDateTimePickerContext()` hook.
|
|
21504
21499
|
*/
|
|
21505
|
-
declare const DateTimePicker: ({ id, label, triggerIcon, value, minVisible, maxVisible, variant, caption, placeholder, belowTimeInputSlot, showLabel, errorMessage, warningMessage, disabled, onChange, testId, ...props }: DateTimePickerProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21500
|
+
declare const DateTimePicker: ({ id, label, triggerIcon, value, minVisible, maxVisible, variant, caption, placeholder, belowTimeInputSlot, showLabel, errorMessage, warningMessage, disabled, onChange, testId, placement, offset, ...props }: DateTimePickerProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21506
21501
|
|
|
21507
21502
|
declare function DateTimePickerSummary({ value, placeholder, }: {
|
|
21508
21503
|
value: DateTimePickerValue | null | undefined;
|
|
@@ -21555,9 +21550,17 @@ declare const Details: ({ summary, children, isOpenByDefault, isOpen, isIndented
|
|
|
21555
21550
|
|
|
21556
21551
|
type DraggableHandleProps = {
|
|
21557
21552
|
disableDnd?: boolean;
|
|
21553
|
+
/** (optional) Height of the drag handle
|
|
21554
|
+
* @default 3.125rem
|
|
21555
|
+
*/
|
|
21556
|
+
height?: string;
|
|
21558
21557
|
} & HTMLAttributes<HTMLButtonElement>;
|
|
21559
21558
|
declare const DragHandle: React$1.ForwardRefExoticComponent<{
|
|
21560
21559
|
disableDnd?: boolean | undefined;
|
|
21560
|
+
/** (optional) Height of the drag handle
|
|
21561
|
+
* @default 3.125rem
|
|
21562
|
+
*/
|
|
21563
|
+
height?: string | undefined;
|
|
21561
21564
|
} & HTMLAttributes<HTMLButtonElement> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
21562
21565
|
|
|
21563
21566
|
interface DrawerRendererProps extends Omit<React__default.HTMLAttributes<HTMLDivElement>, 'children'> {
|
|
@@ -22890,24 +22893,35 @@ type ObjectGridItemIconWithTooltipProps = {
|
|
|
22890
22893
|
} & Pick<TooltipProps, 'placement'>;
|
|
22891
22894
|
declare const ObjectGridItemIconWithTooltip: ({ tooltipTitle, placement, icon, iconColor, }: ObjectGridItemIconWithTooltipProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22892
22895
|
|
|
22896
|
+
/** @deprecated - Beta Object grid loading skeleton component
|
|
22897
|
+
* @example <ObjectGridItemLoadingSkeleton />
|
|
22898
|
+
*/
|
|
22899
|
+
declare const ObjectGridItemLoadingSkeleton: () => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22900
|
+
|
|
22893
22901
|
/** @deprecated - Beta Object item loading skeleton component */
|
|
22894
22902
|
type ObjectItemLoadingSkeletonProps = {
|
|
22895
22903
|
/** Show cover image loading skeleton */
|
|
22896
22904
|
showCover?: boolean;
|
|
22905
|
+
/** Render as single or multi
|
|
22906
|
+
* @default 'single'
|
|
22907
|
+
*/
|
|
22908
|
+
renderAs?: 'single' | 'multi';
|
|
22897
22909
|
};
|
|
22898
22910
|
/** @deprecated - Beta Object item loading skeleton component
|
|
22899
22911
|
* @example <ObjectItemLoadingSkeleton showCover />
|
|
22900
22912
|
*/
|
|
22901
|
-
declare const ObjectItemLoadingSkeleton: ({ showCover }: ObjectItemLoadingSkeletonProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22913
|
+
declare const ObjectItemLoadingSkeleton: ({ showCover, renderAs, }: ObjectItemLoadingSkeletonProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22902
22914
|
|
|
22903
22915
|
/** @deprecated - Beta Object list item component */
|
|
22904
22916
|
type ObjectListItemProps = ObjectListItemSingleProps | (ObjectListItemMultiProps & HTMLAttributes<HTMLDivElement>);
|
|
22905
22917
|
type ObjectListItemSingleProps = Omit<ObjectItemProps, 'cover' | 'children'> & {
|
|
22906
22918
|
cover?: ReactNode;
|
|
22919
|
+
dragHandle?: ReactNode;
|
|
22907
22920
|
renderAs?: 'single';
|
|
22908
22921
|
};
|
|
22909
22922
|
type ObjectListItemMultiProps = Omit<ObjectItemProps, 'cover'> & {
|
|
22910
22923
|
cover?: ReactNode;
|
|
22924
|
+
dragHandle?: ReactNode;
|
|
22911
22925
|
renderAs?: 'multi';
|
|
22912
22926
|
children?: ReactNode;
|
|
22913
22927
|
};
|
|
@@ -22915,14 +22929,18 @@ type ObjectListItemMultiProps = Omit<ObjectItemProps, 'cover'> & {
|
|
|
22915
22929
|
declare const ObjectListItem: (props: ObjectListItemProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22916
22930
|
|
|
22917
22931
|
/** @deprecated - Beta Object list item container component */
|
|
22918
|
-
declare const ObjectListItemContainer: ({ children, ...props }: RhythmProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22932
|
+
declare const ObjectListItemContainer: ({ children, gap, ...props }: RhythmProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22919
22933
|
|
|
22920
22934
|
/** @deprecated - Beta Object list item cover component */
|
|
22921
22935
|
type ObjectListItemCoverProps = {
|
|
22922
22936
|
imageUrl?: string;
|
|
22937
|
+
/** (optional) sets the text to display when there is no image
|
|
22938
|
+
* @default 'Image not available'
|
|
22939
|
+
*/
|
|
22940
|
+
noImageText?: string;
|
|
22923
22941
|
} & HTMLAttributes<HTMLImageElement>;
|
|
22924
22942
|
/** @deprecated - beta Object list item cover component */
|
|
22925
|
-
declare const ObjectListItemCover: ({ imageUrl, ...props }: ObjectListItemCoverProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22943
|
+
declare const ObjectListItemCover: ({ imageUrl, noImageText, ...props }: ObjectListItemCoverProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22926
22944
|
|
|
22927
22945
|
/** @deprecated - Beta Object list item heading component */
|
|
22928
22946
|
type ObjectListItemHeadingProps = Omit<ObjectHeadingProps, 'heading'> & HTMLAttributes<HTMLDivElement> & {
|
|
@@ -23945,4 +23963,4 @@ type StatusBulletProps = React$1.HTMLAttributes<HTMLSpanElement> & {
|
|
|
23945
23963
|
};
|
|
23946
23964
|
declare const StatusBullet: ({ status, hideText, size, message, ...props }: StatusBulletProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23947
23965
|
|
|
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
|
|
23966
|
+
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, 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, 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, uniformComponentIcon, uniformComponentPatternIcon, uniformCompositionPatternIcon, uniformContentTypeIcon, uniformEntryIcon, uniformEntryPatternIcon, useBreakpoint, useCloseCurrentDrawer, useCurrentDrawer, useCurrentTab, useDateTimePickerContext, useDrawer, useIconContext, useOutsideClick, useParameterShell, usePopoverComponentContext, useShortcut, functionalColors as utilityColors, warningIcon, yesNoIcon };
|
package/dist/index.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ import * as _react_icons_all_files from '@react-icons/all-files';
|
|
|
16
16
|
import { IconType as IconType$2 } from '@react-icons/all-files';
|
|
17
17
|
import { DateValue } from '@internationalized/date';
|
|
18
18
|
import { CalendarProps as CalendarProps$1, TimeFieldProps, TimeValue } from 'react-aria-components';
|
|
19
|
+
import { PopoverState } from 'reakit/Popover';
|
|
19
20
|
import { CreatableProps } from 'react-select/creatable';
|
|
20
21
|
import InternalSelect from 'react-select/dist/declarations/src/Select';
|
|
21
22
|
import { JsonSchema7Type } from 'zod-to-json-schema/src/parseDef';
|
|
@@ -21187,10 +21188,6 @@ declare function IconsProvider({ children }: {
|
|
|
21187
21188
|
}): _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21188
21189
|
|
|
21189
21190
|
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;
|
|
21194
21191
|
declare const uniformComponentPatternIcon: IconType$1;
|
|
21195
21192
|
declare const uniformCompositionPatternIcon: IconType$1;
|
|
21196
21193
|
declare const uniformContentTypeIcon: IconType$1;
|
|
@@ -21400,22 +21397,16 @@ type MultilineChipProps = {
|
|
|
21400
21397
|
*/
|
|
21401
21398
|
declare const MultilineChip: ({ children, onClick, ...props }: MultilineChipProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21402
21399
|
|
|
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';
|
|
21405
21400
|
type CounterProps = {
|
|
21406
21401
|
/** sets the count value, a 0 will show a dot instead of a number. Undefined will cause the counter to disappear. */
|
|
21407
21402
|
count: number | undefined;
|
|
21408
21403
|
/** sets the background color
|
|
21409
21404
|
* @default 'transparent'
|
|
21410
21405
|
*/
|
|
21411
|
-
bgColor?:
|
|
21412
|
-
|
|
21413
|
-
iconColor?: CounterIconColors;
|
|
21414
|
-
/** Optional icon for the counter */
|
|
21415
|
-
icon?: IconType;
|
|
21416
|
-
} & React.HTMLAttributes<HTMLDivElement>;
|
|
21406
|
+
bgColor?: 'var(--white)' | 'var(--gray-50)' | 'transparent';
|
|
21407
|
+
} & React$1.HTMLAttributes<HTMLDivElement>;
|
|
21417
21408
|
/** @example <Counter count={1} /> */
|
|
21418
|
-
declare const Counter: ({ count, bgColor,
|
|
21409
|
+
declare const Counter: ({ count, bgColor, ...props }: CounterProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element | null;
|
|
21419
21410
|
|
|
21420
21411
|
type TextAlignProps = 'left' | 'right' | 'center';
|
|
21421
21412
|
type BoxHeightProps = 'auto' | 'xs' | 'sm' | 'md' | 'lg';
|
|
@@ -21480,6 +21471,10 @@ type DateTimePickerProps = {
|
|
|
21480
21471
|
disabled?: boolean;
|
|
21481
21472
|
/** (optional) sets the base test id for each of the elements with a testid */
|
|
21482
21473
|
testId?: string;
|
|
21474
|
+
/** (optional) sets the popover placement */
|
|
21475
|
+
placement?: PopoverState['placement'];
|
|
21476
|
+
/** (optional) sets the popover offset */
|
|
21477
|
+
offset?: [string | number, string | number] | undefined;
|
|
21483
21478
|
};
|
|
21484
21479
|
/**
|
|
21485
21480
|
* Use this context for slots within the date time picker
|
|
@@ -21502,7 +21497,7 @@ declare function useDateTimePickerContext(): {
|
|
|
21502
21497
|
* Subcomponents can manipulate the value directly by using
|
|
21503
21498
|
* the `useDateTimePickerContext()` hook.
|
|
21504
21499
|
*/
|
|
21505
|
-
declare const DateTimePicker: ({ id, label, triggerIcon, value, minVisible, maxVisible, variant, caption, placeholder, belowTimeInputSlot, showLabel, errorMessage, warningMessage, disabled, onChange, testId, ...props }: DateTimePickerProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21500
|
+
declare const DateTimePicker: ({ id, label, triggerIcon, value, minVisible, maxVisible, variant, caption, placeholder, belowTimeInputSlot, showLabel, errorMessage, warningMessage, disabled, onChange, testId, placement, offset, ...props }: DateTimePickerProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21506
21501
|
|
|
21507
21502
|
declare function DateTimePickerSummary({ value, placeholder, }: {
|
|
21508
21503
|
value: DateTimePickerValue | null | undefined;
|
|
@@ -21555,9 +21550,17 @@ declare const Details: ({ summary, children, isOpenByDefault, isOpen, isIndented
|
|
|
21555
21550
|
|
|
21556
21551
|
type DraggableHandleProps = {
|
|
21557
21552
|
disableDnd?: boolean;
|
|
21553
|
+
/** (optional) Height of the drag handle
|
|
21554
|
+
* @default 3.125rem
|
|
21555
|
+
*/
|
|
21556
|
+
height?: string;
|
|
21558
21557
|
} & HTMLAttributes<HTMLButtonElement>;
|
|
21559
21558
|
declare const DragHandle: React$1.ForwardRefExoticComponent<{
|
|
21560
21559
|
disableDnd?: boolean | undefined;
|
|
21560
|
+
/** (optional) Height of the drag handle
|
|
21561
|
+
* @default 3.125rem
|
|
21562
|
+
*/
|
|
21563
|
+
height?: string | undefined;
|
|
21561
21564
|
} & HTMLAttributes<HTMLButtonElement> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
21562
21565
|
|
|
21563
21566
|
interface DrawerRendererProps extends Omit<React__default.HTMLAttributes<HTMLDivElement>, 'children'> {
|
|
@@ -22890,24 +22893,35 @@ type ObjectGridItemIconWithTooltipProps = {
|
|
|
22890
22893
|
} & Pick<TooltipProps, 'placement'>;
|
|
22891
22894
|
declare const ObjectGridItemIconWithTooltip: ({ tooltipTitle, placement, icon, iconColor, }: ObjectGridItemIconWithTooltipProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22892
22895
|
|
|
22896
|
+
/** @deprecated - Beta Object grid loading skeleton component
|
|
22897
|
+
* @example <ObjectGridItemLoadingSkeleton />
|
|
22898
|
+
*/
|
|
22899
|
+
declare const ObjectGridItemLoadingSkeleton: () => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22900
|
+
|
|
22893
22901
|
/** @deprecated - Beta Object item loading skeleton component */
|
|
22894
22902
|
type ObjectItemLoadingSkeletonProps = {
|
|
22895
22903
|
/** Show cover image loading skeleton */
|
|
22896
22904
|
showCover?: boolean;
|
|
22905
|
+
/** Render as single or multi
|
|
22906
|
+
* @default 'single'
|
|
22907
|
+
*/
|
|
22908
|
+
renderAs?: 'single' | 'multi';
|
|
22897
22909
|
};
|
|
22898
22910
|
/** @deprecated - Beta Object item loading skeleton component
|
|
22899
22911
|
* @example <ObjectItemLoadingSkeleton showCover />
|
|
22900
22912
|
*/
|
|
22901
|
-
declare const ObjectItemLoadingSkeleton: ({ showCover }: ObjectItemLoadingSkeletonProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22913
|
+
declare const ObjectItemLoadingSkeleton: ({ showCover, renderAs, }: ObjectItemLoadingSkeletonProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22902
22914
|
|
|
22903
22915
|
/** @deprecated - Beta Object list item component */
|
|
22904
22916
|
type ObjectListItemProps = ObjectListItemSingleProps | (ObjectListItemMultiProps & HTMLAttributes<HTMLDivElement>);
|
|
22905
22917
|
type ObjectListItemSingleProps = Omit<ObjectItemProps, 'cover' | 'children'> & {
|
|
22906
22918
|
cover?: ReactNode;
|
|
22919
|
+
dragHandle?: ReactNode;
|
|
22907
22920
|
renderAs?: 'single';
|
|
22908
22921
|
};
|
|
22909
22922
|
type ObjectListItemMultiProps = Omit<ObjectItemProps, 'cover'> & {
|
|
22910
22923
|
cover?: ReactNode;
|
|
22924
|
+
dragHandle?: ReactNode;
|
|
22911
22925
|
renderAs?: 'multi';
|
|
22912
22926
|
children?: ReactNode;
|
|
22913
22927
|
};
|
|
@@ -22915,14 +22929,18 @@ type ObjectListItemMultiProps = Omit<ObjectItemProps, 'cover'> & {
|
|
|
22915
22929
|
declare const ObjectListItem: (props: ObjectListItemProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22916
22930
|
|
|
22917
22931
|
/** @deprecated - Beta Object list item container component */
|
|
22918
|
-
declare const ObjectListItemContainer: ({ children, ...props }: RhythmProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22932
|
+
declare const ObjectListItemContainer: ({ children, gap, ...props }: RhythmProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22919
22933
|
|
|
22920
22934
|
/** @deprecated - Beta Object list item cover component */
|
|
22921
22935
|
type ObjectListItemCoverProps = {
|
|
22922
22936
|
imageUrl?: string;
|
|
22937
|
+
/** (optional) sets the text to display when there is no image
|
|
22938
|
+
* @default 'Image not available'
|
|
22939
|
+
*/
|
|
22940
|
+
noImageText?: string;
|
|
22923
22941
|
} & HTMLAttributes<HTMLImageElement>;
|
|
22924
22942
|
/** @deprecated - beta Object list item cover component */
|
|
22925
|
-
declare const ObjectListItemCover: ({ imageUrl, ...props }: ObjectListItemCoverProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22943
|
+
declare const ObjectListItemCover: ({ imageUrl, noImageText, ...props }: ObjectListItemCoverProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22926
22944
|
|
|
22927
22945
|
/** @deprecated - Beta Object list item heading component */
|
|
22928
22946
|
type ObjectListItemHeadingProps = Omit<ObjectHeadingProps, 'heading'> & HTMLAttributes<HTMLDivElement> & {
|
|
@@ -23945,4 +23963,4 @@ type StatusBulletProps = React$1.HTMLAttributes<HTMLSpanElement> & {
|
|
|
23945
23963
|
};
|
|
23946
23964
|
declare const StatusBullet: ({ status, hideText, size, message, ...props }: StatusBulletProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23947
23965
|
|
|
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
|
|
23966
|
+
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, 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, 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, uniformComponentIcon, uniformComponentPatternIcon, uniformCompositionPatternIcon, uniformContentTypeIcon, uniformEntryIcon, uniformEntryPatternIcon, useBreakpoint, useCloseCurrentDrawer, useCurrentDrawer, useCurrentTab, useDateTimePickerContext, useDrawer, useIconContext, useOutsideClick, useParameterShell, usePopoverComponentContext, useShortcut, functionalColors as utilityColors, warningIcon, yesNoIcon };
|