@uniformdev/design-system 19.159.0 → 19.159.1-alpha.16
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 +728 -396
- package/dist/index.d.mts +86 -12
- package/dist/index.d.ts +86 -12
- package/dist/index.js +768 -412
- package/package.json +6 -6
package/dist/index.d.mts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import * as _emotion_react_types_jsx_namespace from '@emotion/react/types/jsx-namespace';
|
|
2
|
-
import {
|
|
2
|
+
import { Decorator } from '@storybook/react';
|
|
3
3
|
import * as React$1 from 'react';
|
|
4
4
|
import React__default, { RefObject, HTMLAttributes, MutableRefObject, ReactNode, ImgHTMLAttributes, SVGProps, InputHTMLAttributes, CSSProperties, Ref, PropsWithChildren, ButtonHTMLAttributes, FocusEventHandler, ChangeEvent, HtmlHTMLAttributes } from 'react';
|
|
5
|
-
import { GroupBase, Props, MultiValue } from 'react-select';
|
|
5
|
+
import { GroupBase, Props, MultiValue, SingleValue } from 'react-select';
|
|
6
6
|
export { ActionMeta, FormatOptionLabelContext, FormatOptionLabelMeta, GetOptionLabel, GetOptionValue, GroupBase, GroupHeadingProps, GroupProps, MenuListProps, MenuPlacement, MultiValue, MultiValueGenericProps, MultiValueProps, MultiValueRemoveProps, OnChangeValue, OptionContext, OptionProps, Options, OptionsOrGroups } from 'react-select';
|
|
7
7
|
import * as _emotion_react from '@emotion/react';
|
|
8
8
|
import { SerializedStyles } from '@emotion/react';
|
|
@@ -46,7 +46,7 @@ type ThemeProps = {
|
|
|
46
46
|
* @example <Theme disableReset={true} /> */
|
|
47
47
|
declare const Theme: ({ disableReset, disableGlobalReset }: ThemeProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
48
48
|
|
|
49
|
-
declare const BetaDecorator:
|
|
49
|
+
declare const BetaDecorator: Decorator;
|
|
50
50
|
|
|
51
51
|
/** Breakpoint label values */
|
|
52
52
|
type BreakpointSize = 'sm' | 'md' | 'lg' | 'xl' | '2xl';
|
|
@@ -20422,8 +20422,7 @@ type ButtonProps = ButtonProps$1 & {
|
|
|
20422
20422
|
};
|
|
20423
20423
|
/**
|
|
20424
20424
|
* Uniform Button Component
|
|
20425
|
-
* @
|
|
20426
|
-
* @example <Button buttonType="secondary" size="md" onClick={() => alert('hello world')}>Click me</Button>
|
|
20425
|
+
* @example <Button buttonType="secondary" size="md" onClick={() => alert('hello world!')}>Click me</Button>
|
|
20427
20426
|
*/
|
|
20428
20427
|
declare const Button: React$1.ForwardRefExoticComponent<Omit<ButtonProps, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
20429
20428
|
|
|
@@ -21189,6 +21188,7 @@ declare function IconsProvider({ children }: {
|
|
|
21189
21188
|
|
|
21190
21189
|
declare const uniformComponentIcon: IconType$1;
|
|
21191
21190
|
declare const uniformComponentPatternIcon: IconType$1;
|
|
21191
|
+
declare const uniformCompositionPatternIcon: IconType$1;
|
|
21192
21192
|
declare const uniformContentTypeIcon: IconType$1;
|
|
21193
21193
|
declare const uniformEntryIcon: IconType$1;
|
|
21194
21194
|
declare const uniformEntryPatternIcon: IconType$1;
|
|
@@ -21434,6 +21434,8 @@ type DateTimePickerProps = {
|
|
|
21434
21434
|
id: string;
|
|
21435
21435
|
/** (optional) sets the label value */
|
|
21436
21436
|
label?: ReactNode;
|
|
21437
|
+
/** (optional) icon for the trigger */
|
|
21438
|
+
triggerIcon?: IconType$2;
|
|
21437
21439
|
/** The current controlled value of the picker */
|
|
21438
21440
|
value: DateTimePickerValue | null | undefined;
|
|
21439
21441
|
/** (optional) The minimum visible date. The calendar will not show previous months */
|
|
@@ -21482,7 +21484,12 @@ declare function useDateTimePickerContext(): {
|
|
|
21482
21484
|
* Subcomponents can manipulate the value directly by using
|
|
21483
21485
|
* the `useDateTimePickerContext()` hook.
|
|
21484
21486
|
*/
|
|
21485
|
-
declare const DateTimePicker: ({ id, label, value, minVisible, maxVisible, variant, caption, placeholder, belowTimeInputSlot, showLabel, errorMessage, warningMessage, disabled, onChange, testId, ...props }: DateTimePickerProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21487
|
+
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;
|
|
21488
|
+
|
|
21489
|
+
declare function DateTimePickerSummary({ value, placeholder, }: {
|
|
21490
|
+
value: DateTimePickerValue | null | undefined;
|
|
21491
|
+
placeholder: ReactNode;
|
|
21492
|
+
}): _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21486
21493
|
|
|
21487
21494
|
type DescriptionListProps = {
|
|
21488
21495
|
items: {
|
|
@@ -21787,12 +21794,14 @@ type InfoMessageProps = React.HTMLAttributes<HTMLSpanElement> & {
|
|
|
21787
21794
|
message?: string;
|
|
21788
21795
|
/** sets the test id for test automation (optional) */
|
|
21789
21796
|
testId?: string;
|
|
21797
|
+
/** customize the icon (optional) */
|
|
21798
|
+
icon?: IconType;
|
|
21790
21799
|
};
|
|
21791
21800
|
/**
|
|
21792
21801
|
* Component that provides info messaging to input fields
|
|
21793
|
-
* @example <
|
|
21802
|
+
* @example <InfoMessage>be aware of this</InfoMessage>
|
|
21794
21803
|
*/
|
|
21795
|
-
declare const InfoMessage: ({ message, testId, ...props }: InfoMessageProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element | null;
|
|
21804
|
+
declare const InfoMessage: ({ message, testId, icon, ...props }: InfoMessageProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element | null;
|
|
21796
21805
|
|
|
21797
21806
|
type InputProps = React$1.InputHTMLAttributes<HTMLInputElement> & {
|
|
21798
21807
|
/** (optional) sets the label value */
|
|
@@ -21949,7 +21958,7 @@ declare function convertComboBoxGroupsToSelectableGroups(args: ConvertComboBoxGr
|
|
|
21949
21958
|
* Finds all selected values in a combo box where there are multiple selectable groups
|
|
21950
21959
|
* (and selecting a group should select all of its virtual children)
|
|
21951
21960
|
*/
|
|
21952
|
-
declare function getComboBoxSelectedSelectableGroups(selectedValues: MultiValue<ComboBoxSelectableItem>): Set<string>;
|
|
21961
|
+
declare function getComboBoxSelectedSelectableGroups(selectedValues: MultiValue<ComboBoxSelectableItem> | SingleValue<ComboBoxSelectableItem>): Set<string>;
|
|
21953
21962
|
|
|
21954
21963
|
type InputInlineSelectOption = {
|
|
21955
21964
|
/** sets the display name of the option */
|
|
@@ -22001,7 +22010,7 @@ interface InputKeywordSearchProps extends InputHTMLAttributes<HTMLInputElement>
|
|
|
22001
22010
|
/** (optional) makes the input look more compact
|
|
22002
22011
|
* @default false
|
|
22003
22012
|
*/
|
|
22004
|
-
compact?: boolean | 'xs';
|
|
22013
|
+
compact?: boolean | 'sm' | 'xs';
|
|
22005
22014
|
/** (optional) makes the corners of the input rounded
|
|
22006
22015
|
* @default false
|
|
22007
22016
|
*/
|
|
@@ -22297,7 +22306,7 @@ declare const Textarea: React$1.ForwardRefExoticComponent<React$1.TextareaHTMLAt
|
|
|
22297
22306
|
|
|
22298
22307
|
type WarningMessageProps = React.HTMLAttributes<HTMLSpanElement> & {
|
|
22299
22308
|
/** sets the error message value */
|
|
22300
|
-
message?:
|
|
22309
|
+
message?: ReactNode;
|
|
22301
22310
|
/** sets the test id for test automation (optional) */
|
|
22302
22311
|
testId?: string;
|
|
22303
22312
|
};
|
|
@@ -22749,6 +22758,71 @@ declare const Modal: React__default.ForwardRefExoticComponent<Omit<ModalProps, "
|
|
|
22749
22758
|
type ModalDialogProps = Omit<ModalProps, 'width'>;
|
|
22750
22759
|
declare const ModalDialog: React$1.ForwardRefExoticComponent<Omit<ModalDialogProps, "ref"> & React$1.RefAttributes<HTMLDialogElement>>;
|
|
22751
22760
|
|
|
22761
|
+
type ObjectGridContainerProps = {
|
|
22762
|
+
/** The number of columns in the grid */
|
|
22763
|
+
gridCount?: number;
|
|
22764
|
+
/** The children to render */
|
|
22765
|
+
children: React.ReactNode;
|
|
22766
|
+
};
|
|
22767
|
+
declare const ObjectGridContainer: ({ gridCount, children }: ObjectGridContainerProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22768
|
+
|
|
22769
|
+
type ObjectGridItemProps = {
|
|
22770
|
+
/** Slot for the header component, we recommend using <ObjectGridItemHeader /> */
|
|
22771
|
+
header: React$1.ReactNode;
|
|
22772
|
+
/** Slot for the cover component, we recommemd using <ObjectGridItemCoverButton /> or <ObjectGridItemCover /> */
|
|
22773
|
+
cover: React$1.ReactNode;
|
|
22774
|
+
/** Slot for the right component */
|
|
22775
|
+
rightSlot?: React$1.ReactNode;
|
|
22776
|
+
/** Slot for the menu items, <MenuItem /> component should be used here */
|
|
22777
|
+
menuItems?: React$1.ReactNode;
|
|
22778
|
+
/** If the item is selected */
|
|
22779
|
+
isSelected?: boolean;
|
|
22780
|
+
/** Slot for the children */
|
|
22781
|
+
children?: React$1.ReactNode;
|
|
22782
|
+
};
|
|
22783
|
+
declare const ObjectGridItem: ({ header, cover, rightSlot, menuItems, isSelected, children, }: ObjectGridItemProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22784
|
+
|
|
22785
|
+
type ObjectGridItemCardCoverProps = {
|
|
22786
|
+
icon: IconType;
|
|
22787
|
+
} | {
|
|
22788
|
+
imageUrl: string;
|
|
22789
|
+
};
|
|
22790
|
+
declare const ObjectGridItemCardCover: (props: ObjectGridItemCardCoverProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element | undefined;
|
|
22791
|
+
type ObjectGridItemCoverProps = {
|
|
22792
|
+
/** The left slot to render components */
|
|
22793
|
+
coverSlotLeft?: React.ReactNode;
|
|
22794
|
+
/** The right slot to render components */
|
|
22795
|
+
coverSlotRight?: React.ReactNode;
|
|
22796
|
+
} & ObjectGridItemCardCoverProps;
|
|
22797
|
+
declare const ObjectGridItemCover: ({ coverSlotLeft, coverSlotRight, ...props }: ObjectGridItemCoverProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22798
|
+
type ObjectGridItemCoverButtonProps = {
|
|
22799
|
+
id: string;
|
|
22800
|
+
onSelection: (id: string) => void;
|
|
22801
|
+
isSelected: boolean;
|
|
22802
|
+
selectedText?: string;
|
|
22803
|
+
} & ObjectGridItemCoverProps;
|
|
22804
|
+
declare const ObjectGridItemCoverButton: ({ id, isSelected, onSelection, coverSlotLeft, coverSlotRight, selectedText, ...props }: ObjectGridItemCoverButtonProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22805
|
+
|
|
22806
|
+
type ObjectGridItemTitleProps = {
|
|
22807
|
+
/** sets the heading value */
|
|
22808
|
+
heading: string;
|
|
22809
|
+
/** Slot that renders a component before the heading */
|
|
22810
|
+
beforeHeadingSlot?: ReactNode;
|
|
22811
|
+
/** Slot that renders a component after the heading */
|
|
22812
|
+
afterHeadingSlot?: ReactNode;
|
|
22813
|
+
};
|
|
22814
|
+
declare const ObjectGridItemHeading: ({ heading, beforeHeadingSlot, afterHeadingSlot, }: ObjectGridItemTitleProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22815
|
+
|
|
22816
|
+
type ObjectGridItemIconWithTooltipProps = {
|
|
22817
|
+
/** The title of the tooltip */
|
|
22818
|
+
tooltipTitle: string;
|
|
22819
|
+
/** The icon to display */
|
|
22820
|
+
icon: IconType;
|
|
22821
|
+
/** The color of the icon */
|
|
22822
|
+
iconColor?: IconColor;
|
|
22823
|
+
} & Pick<TooltipProps, 'placement'>;
|
|
22824
|
+
declare const ObjectGridItemIconWithTooltip: ({ tooltipTitle, placement, icon, iconColor, }: ObjectGridItemIconWithTooltipProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22825
|
+
|
|
22752
22826
|
declare function Pagination({ limit, offset, total, onPageChange, }: {
|
|
22753
22827
|
limit: number;
|
|
22754
22828
|
offset: number;
|
|
@@ -23749,4 +23823,4 @@ type StatusBulletProps = React$1.HTMLAttributes<HTMLSpanElement> & {
|
|
|
23749
23823
|
};
|
|
23750
23824
|
declare const StatusBullet: ({ status, hideText, size, message, ...props }: StatusBulletProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23751
23825
|
|
|
23752
|
-
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, 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, 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, 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, uniformContentTypeIcon, uniformEntryIcon, uniformEntryPatternIcon, useBreakpoint, useCloseCurrentDrawer, useCurrentDrawer, useCurrentTab, useDateTimePickerContext, useDrawer, useIconContext, useOutsideClick, useParameterShell, useShortcut, functionalColors as utilityColors, warningIcon, yesNoIcon };
|
|
23826
|
+
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, 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, useShortcut, functionalColors as utilityColors, warningIcon, yesNoIcon };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import * as _emotion_react_types_jsx_namespace from '@emotion/react/types/jsx-namespace';
|
|
2
|
-
import {
|
|
2
|
+
import { Decorator } from '@storybook/react';
|
|
3
3
|
import * as React$1 from 'react';
|
|
4
4
|
import React__default, { RefObject, HTMLAttributes, MutableRefObject, ReactNode, ImgHTMLAttributes, SVGProps, InputHTMLAttributes, CSSProperties, Ref, PropsWithChildren, ButtonHTMLAttributes, FocusEventHandler, ChangeEvent, HtmlHTMLAttributes } from 'react';
|
|
5
|
-
import { GroupBase, Props, MultiValue } from 'react-select';
|
|
5
|
+
import { GroupBase, Props, MultiValue, SingleValue } from 'react-select';
|
|
6
6
|
export { ActionMeta, FormatOptionLabelContext, FormatOptionLabelMeta, GetOptionLabel, GetOptionValue, GroupBase, GroupHeadingProps, GroupProps, MenuListProps, MenuPlacement, MultiValue, MultiValueGenericProps, MultiValueProps, MultiValueRemoveProps, OnChangeValue, OptionContext, OptionProps, Options, OptionsOrGroups } from 'react-select';
|
|
7
7
|
import * as _emotion_react from '@emotion/react';
|
|
8
8
|
import { SerializedStyles } from '@emotion/react';
|
|
@@ -46,7 +46,7 @@ type ThemeProps = {
|
|
|
46
46
|
* @example <Theme disableReset={true} /> */
|
|
47
47
|
declare const Theme: ({ disableReset, disableGlobalReset }: ThemeProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
48
48
|
|
|
49
|
-
declare const BetaDecorator:
|
|
49
|
+
declare const BetaDecorator: Decorator;
|
|
50
50
|
|
|
51
51
|
/** Breakpoint label values */
|
|
52
52
|
type BreakpointSize = 'sm' | 'md' | 'lg' | 'xl' | '2xl';
|
|
@@ -20422,8 +20422,7 @@ type ButtonProps = ButtonProps$1 & {
|
|
|
20422
20422
|
};
|
|
20423
20423
|
/**
|
|
20424
20424
|
* Uniform Button Component
|
|
20425
|
-
* @
|
|
20426
|
-
* @example <Button buttonType="secondary" size="md" onClick={() => alert('hello world')}>Click me</Button>
|
|
20425
|
+
* @example <Button buttonType="secondary" size="md" onClick={() => alert('hello world!')}>Click me</Button>
|
|
20427
20426
|
*/
|
|
20428
20427
|
declare const Button: React$1.ForwardRefExoticComponent<Omit<ButtonProps, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
20429
20428
|
|
|
@@ -21189,6 +21188,7 @@ declare function IconsProvider({ children }: {
|
|
|
21189
21188
|
|
|
21190
21189
|
declare const uniformComponentIcon: IconType$1;
|
|
21191
21190
|
declare const uniformComponentPatternIcon: IconType$1;
|
|
21191
|
+
declare const uniformCompositionPatternIcon: IconType$1;
|
|
21192
21192
|
declare const uniformContentTypeIcon: IconType$1;
|
|
21193
21193
|
declare const uniformEntryIcon: IconType$1;
|
|
21194
21194
|
declare const uniformEntryPatternIcon: IconType$1;
|
|
@@ -21434,6 +21434,8 @@ type DateTimePickerProps = {
|
|
|
21434
21434
|
id: string;
|
|
21435
21435
|
/** (optional) sets the label value */
|
|
21436
21436
|
label?: ReactNode;
|
|
21437
|
+
/** (optional) icon for the trigger */
|
|
21438
|
+
triggerIcon?: IconType$2;
|
|
21437
21439
|
/** The current controlled value of the picker */
|
|
21438
21440
|
value: DateTimePickerValue | null | undefined;
|
|
21439
21441
|
/** (optional) The minimum visible date. The calendar will not show previous months */
|
|
@@ -21482,7 +21484,12 @@ declare function useDateTimePickerContext(): {
|
|
|
21482
21484
|
* Subcomponents can manipulate the value directly by using
|
|
21483
21485
|
* the `useDateTimePickerContext()` hook.
|
|
21484
21486
|
*/
|
|
21485
|
-
declare const DateTimePicker: ({ id, label, value, minVisible, maxVisible, variant, caption, placeholder, belowTimeInputSlot, showLabel, errorMessage, warningMessage, disabled, onChange, testId, ...props }: DateTimePickerProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21487
|
+
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;
|
|
21488
|
+
|
|
21489
|
+
declare function DateTimePickerSummary({ value, placeholder, }: {
|
|
21490
|
+
value: DateTimePickerValue | null | undefined;
|
|
21491
|
+
placeholder: ReactNode;
|
|
21492
|
+
}): _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21486
21493
|
|
|
21487
21494
|
type DescriptionListProps = {
|
|
21488
21495
|
items: {
|
|
@@ -21787,12 +21794,14 @@ type InfoMessageProps = React.HTMLAttributes<HTMLSpanElement> & {
|
|
|
21787
21794
|
message?: string;
|
|
21788
21795
|
/** sets the test id for test automation (optional) */
|
|
21789
21796
|
testId?: string;
|
|
21797
|
+
/** customize the icon (optional) */
|
|
21798
|
+
icon?: IconType;
|
|
21790
21799
|
};
|
|
21791
21800
|
/**
|
|
21792
21801
|
* Component that provides info messaging to input fields
|
|
21793
|
-
* @example <
|
|
21802
|
+
* @example <InfoMessage>be aware of this</InfoMessage>
|
|
21794
21803
|
*/
|
|
21795
|
-
declare const InfoMessage: ({ message, testId, ...props }: InfoMessageProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element | null;
|
|
21804
|
+
declare const InfoMessage: ({ message, testId, icon, ...props }: InfoMessageProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element | null;
|
|
21796
21805
|
|
|
21797
21806
|
type InputProps = React$1.InputHTMLAttributes<HTMLInputElement> & {
|
|
21798
21807
|
/** (optional) sets the label value */
|
|
@@ -21949,7 +21958,7 @@ declare function convertComboBoxGroupsToSelectableGroups(args: ConvertComboBoxGr
|
|
|
21949
21958
|
* Finds all selected values in a combo box where there are multiple selectable groups
|
|
21950
21959
|
* (and selecting a group should select all of its virtual children)
|
|
21951
21960
|
*/
|
|
21952
|
-
declare function getComboBoxSelectedSelectableGroups(selectedValues: MultiValue<ComboBoxSelectableItem>): Set<string>;
|
|
21961
|
+
declare function getComboBoxSelectedSelectableGroups(selectedValues: MultiValue<ComboBoxSelectableItem> | SingleValue<ComboBoxSelectableItem>): Set<string>;
|
|
21953
21962
|
|
|
21954
21963
|
type InputInlineSelectOption = {
|
|
21955
21964
|
/** sets the display name of the option */
|
|
@@ -22001,7 +22010,7 @@ interface InputKeywordSearchProps extends InputHTMLAttributes<HTMLInputElement>
|
|
|
22001
22010
|
/** (optional) makes the input look more compact
|
|
22002
22011
|
* @default false
|
|
22003
22012
|
*/
|
|
22004
|
-
compact?: boolean | 'xs';
|
|
22013
|
+
compact?: boolean | 'sm' | 'xs';
|
|
22005
22014
|
/** (optional) makes the corners of the input rounded
|
|
22006
22015
|
* @default false
|
|
22007
22016
|
*/
|
|
@@ -22297,7 +22306,7 @@ declare const Textarea: React$1.ForwardRefExoticComponent<React$1.TextareaHTMLAt
|
|
|
22297
22306
|
|
|
22298
22307
|
type WarningMessageProps = React.HTMLAttributes<HTMLSpanElement> & {
|
|
22299
22308
|
/** sets the error message value */
|
|
22300
|
-
message?:
|
|
22309
|
+
message?: ReactNode;
|
|
22301
22310
|
/** sets the test id for test automation (optional) */
|
|
22302
22311
|
testId?: string;
|
|
22303
22312
|
};
|
|
@@ -22749,6 +22758,71 @@ declare const Modal: React__default.ForwardRefExoticComponent<Omit<ModalProps, "
|
|
|
22749
22758
|
type ModalDialogProps = Omit<ModalProps, 'width'>;
|
|
22750
22759
|
declare const ModalDialog: React$1.ForwardRefExoticComponent<Omit<ModalDialogProps, "ref"> & React$1.RefAttributes<HTMLDialogElement>>;
|
|
22751
22760
|
|
|
22761
|
+
type ObjectGridContainerProps = {
|
|
22762
|
+
/** The number of columns in the grid */
|
|
22763
|
+
gridCount?: number;
|
|
22764
|
+
/** The children to render */
|
|
22765
|
+
children: React.ReactNode;
|
|
22766
|
+
};
|
|
22767
|
+
declare const ObjectGridContainer: ({ gridCount, children }: ObjectGridContainerProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22768
|
+
|
|
22769
|
+
type ObjectGridItemProps = {
|
|
22770
|
+
/** Slot for the header component, we recommend using <ObjectGridItemHeader /> */
|
|
22771
|
+
header: React$1.ReactNode;
|
|
22772
|
+
/** Slot for the cover component, we recommemd using <ObjectGridItemCoverButton /> or <ObjectGridItemCover /> */
|
|
22773
|
+
cover: React$1.ReactNode;
|
|
22774
|
+
/** Slot for the right component */
|
|
22775
|
+
rightSlot?: React$1.ReactNode;
|
|
22776
|
+
/** Slot for the menu items, <MenuItem /> component should be used here */
|
|
22777
|
+
menuItems?: React$1.ReactNode;
|
|
22778
|
+
/** If the item is selected */
|
|
22779
|
+
isSelected?: boolean;
|
|
22780
|
+
/** Slot for the children */
|
|
22781
|
+
children?: React$1.ReactNode;
|
|
22782
|
+
};
|
|
22783
|
+
declare const ObjectGridItem: ({ header, cover, rightSlot, menuItems, isSelected, children, }: ObjectGridItemProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22784
|
+
|
|
22785
|
+
type ObjectGridItemCardCoverProps = {
|
|
22786
|
+
icon: IconType;
|
|
22787
|
+
} | {
|
|
22788
|
+
imageUrl: string;
|
|
22789
|
+
};
|
|
22790
|
+
declare const ObjectGridItemCardCover: (props: ObjectGridItemCardCoverProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element | undefined;
|
|
22791
|
+
type ObjectGridItemCoverProps = {
|
|
22792
|
+
/** The left slot to render components */
|
|
22793
|
+
coverSlotLeft?: React.ReactNode;
|
|
22794
|
+
/** The right slot to render components */
|
|
22795
|
+
coverSlotRight?: React.ReactNode;
|
|
22796
|
+
} & ObjectGridItemCardCoverProps;
|
|
22797
|
+
declare const ObjectGridItemCover: ({ coverSlotLeft, coverSlotRight, ...props }: ObjectGridItemCoverProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22798
|
+
type ObjectGridItemCoverButtonProps = {
|
|
22799
|
+
id: string;
|
|
22800
|
+
onSelection: (id: string) => void;
|
|
22801
|
+
isSelected: boolean;
|
|
22802
|
+
selectedText?: string;
|
|
22803
|
+
} & ObjectGridItemCoverProps;
|
|
22804
|
+
declare const ObjectGridItemCoverButton: ({ id, isSelected, onSelection, coverSlotLeft, coverSlotRight, selectedText, ...props }: ObjectGridItemCoverButtonProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22805
|
+
|
|
22806
|
+
type ObjectGridItemTitleProps = {
|
|
22807
|
+
/** sets the heading value */
|
|
22808
|
+
heading: string;
|
|
22809
|
+
/** Slot that renders a component before the heading */
|
|
22810
|
+
beforeHeadingSlot?: ReactNode;
|
|
22811
|
+
/** Slot that renders a component after the heading */
|
|
22812
|
+
afterHeadingSlot?: ReactNode;
|
|
22813
|
+
};
|
|
22814
|
+
declare const ObjectGridItemHeading: ({ heading, beforeHeadingSlot, afterHeadingSlot, }: ObjectGridItemTitleProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22815
|
+
|
|
22816
|
+
type ObjectGridItemIconWithTooltipProps = {
|
|
22817
|
+
/** The title of the tooltip */
|
|
22818
|
+
tooltipTitle: string;
|
|
22819
|
+
/** The icon to display */
|
|
22820
|
+
icon: IconType;
|
|
22821
|
+
/** The color of the icon */
|
|
22822
|
+
iconColor?: IconColor;
|
|
22823
|
+
} & Pick<TooltipProps, 'placement'>;
|
|
22824
|
+
declare const ObjectGridItemIconWithTooltip: ({ tooltipTitle, placement, icon, iconColor, }: ObjectGridItemIconWithTooltipProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22825
|
+
|
|
22752
22826
|
declare function Pagination({ limit, offset, total, onPageChange, }: {
|
|
22753
22827
|
limit: number;
|
|
22754
22828
|
offset: number;
|
|
@@ -23749,4 +23823,4 @@ type StatusBulletProps = React$1.HTMLAttributes<HTMLSpanElement> & {
|
|
|
23749
23823
|
};
|
|
23750
23824
|
declare const StatusBullet: ({ status, hideText, size, message, ...props }: StatusBulletProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23751
23825
|
|
|
23752
|
-
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, 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, 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, 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, uniformContentTypeIcon, uniformEntryIcon, uniformEntryPatternIcon, useBreakpoint, useCloseCurrentDrawer, useCurrentDrawer, useCurrentTab, useDateTimePickerContext, useDrawer, useIconContext, useOutsideClick, useParameterShell, useShortcut, functionalColors as utilityColors, warningIcon, yesNoIcon };
|
|
23826
|
+
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, 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, useShortcut, functionalColors as utilityColors, warningIcon, yesNoIcon };
|