@uniformdev/design-system 19.159.0 → 19.159.1-alpha.27
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 +888 -483
- package/dist/index.d.mts +110 -21
- package/dist/index.d.ts +110 -21
- package/dist/index.js +937 -508
- package/package.json +10 -10
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;
|
|
@@ -21354,6 +21354,10 @@ type ChipProps = {
|
|
|
21354
21354
|
theme?: ChipTheme;
|
|
21355
21355
|
chipAction?: React.ReactNode;
|
|
21356
21356
|
size?: ChipSizeProp;
|
|
21357
|
+
/** sets whether to use outlined chip variant
|
|
21358
|
+
* @default 'solid'
|
|
21359
|
+
*/
|
|
21360
|
+
variant?: 'solid' | 'outlined';
|
|
21357
21361
|
/**
|
|
21358
21362
|
* The HTML element to render
|
|
21359
21363
|
* @default 'span'
|
|
@@ -21367,7 +21371,7 @@ type ChipProps = {
|
|
|
21367
21371
|
* To represent a different object, as a reference
|
|
21368
21372
|
* @example <Chip text="productId" theme="accent-light" chipAction={<DismissibleChipAction onDismiss={() => {...}}/>} />
|
|
21369
21373
|
*/
|
|
21370
|
-
declare const Chip: ({ icon, text, size, theme, chipAction, as, ...props }: ChipProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21374
|
+
declare const Chip: ({ icon, text, size, theme, variant, chipAction, as, ...props }: ChipProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21371
21375
|
type DismissibleChipActionProps = {
|
|
21372
21376
|
onDismiss: () => void;
|
|
21373
21377
|
} & HTMLAttributes<HTMLButtonElement>;
|
|
@@ -21434,6 +21438,8 @@ type DateTimePickerProps = {
|
|
|
21434
21438
|
id: string;
|
|
21435
21439
|
/** (optional) sets the label value */
|
|
21436
21440
|
label?: ReactNode;
|
|
21441
|
+
/** (optional) icon for the trigger */
|
|
21442
|
+
triggerIcon?: IconType$2;
|
|
21437
21443
|
/** The current controlled value of the picker */
|
|
21438
21444
|
value: DateTimePickerValue | null | undefined;
|
|
21439
21445
|
/** (optional) The minimum visible date. The calendar will not show previous months */
|
|
@@ -21482,7 +21488,12 @@ declare function useDateTimePickerContext(): {
|
|
|
21482
21488
|
* Subcomponents can manipulate the value directly by using
|
|
21483
21489
|
* the `useDateTimePickerContext()` hook.
|
|
21484
21490
|
*/
|
|
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;
|
|
21491
|
+
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;
|
|
21492
|
+
|
|
21493
|
+
declare function DateTimePickerSummary({ value, placeholder, }: {
|
|
21494
|
+
value: DateTimePickerValue | null | undefined;
|
|
21495
|
+
placeholder: ReactNode;
|
|
21496
|
+
}): _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21486
21497
|
|
|
21487
21498
|
type DescriptionListProps = {
|
|
21488
21499
|
items: {
|
|
@@ -21787,12 +21798,14 @@ type InfoMessageProps = React.HTMLAttributes<HTMLSpanElement> & {
|
|
|
21787
21798
|
message?: string;
|
|
21788
21799
|
/** sets the test id for test automation (optional) */
|
|
21789
21800
|
testId?: string;
|
|
21801
|
+
/** customize the icon (optional) */
|
|
21802
|
+
icon?: IconType;
|
|
21790
21803
|
};
|
|
21791
21804
|
/**
|
|
21792
21805
|
* Component that provides info messaging to input fields
|
|
21793
|
-
* @example <
|
|
21806
|
+
* @example <InfoMessage>be aware of this</InfoMessage>
|
|
21794
21807
|
*/
|
|
21795
|
-
declare const InfoMessage: ({ message, testId, ...props }: InfoMessageProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element | null;
|
|
21808
|
+
declare const InfoMessage: ({ message, testId, icon, ...props }: InfoMessageProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element | null;
|
|
21796
21809
|
|
|
21797
21810
|
type InputProps = React$1.InputHTMLAttributes<HTMLInputElement> & {
|
|
21798
21811
|
/** (optional) sets the label value */
|
|
@@ -21949,7 +21962,7 @@ declare function convertComboBoxGroupsToSelectableGroups(args: ConvertComboBoxGr
|
|
|
21949
21962
|
* Finds all selected values in a combo box where there are multiple selectable groups
|
|
21950
21963
|
* (and selecting a group should select all of its virtual children)
|
|
21951
21964
|
*/
|
|
21952
|
-
declare function getComboBoxSelectedSelectableGroups(selectedValues: MultiValue<ComboBoxSelectableItem>): Set<string>;
|
|
21965
|
+
declare function getComboBoxSelectedSelectableGroups(selectedValues: MultiValue<ComboBoxSelectableItem> | SingleValue<ComboBoxSelectableItem>): Set<string>;
|
|
21953
21966
|
|
|
21954
21967
|
type InputInlineSelectOption = {
|
|
21955
21968
|
/** sets the display name of the option */
|
|
@@ -22001,7 +22014,7 @@ interface InputKeywordSearchProps extends InputHTMLAttributes<HTMLInputElement>
|
|
|
22001
22014
|
/** (optional) makes the input look more compact
|
|
22002
22015
|
* @default false
|
|
22003
22016
|
*/
|
|
22004
|
-
compact?: boolean | 'xs';
|
|
22017
|
+
compact?: boolean | 'sm' | 'xs';
|
|
22005
22018
|
/** (optional) makes the corners of the input rounded
|
|
22006
22019
|
* @default false
|
|
22007
22020
|
*/
|
|
@@ -22297,7 +22310,7 @@ declare const Textarea: React$1.ForwardRefExoticComponent<React$1.TextareaHTMLAt
|
|
|
22297
22310
|
|
|
22298
22311
|
type WarningMessageProps = React.HTMLAttributes<HTMLSpanElement> & {
|
|
22299
22312
|
/** sets the error message value */
|
|
22300
|
-
message?:
|
|
22313
|
+
message?: ReactNode;
|
|
22301
22314
|
/** sets the test id for test automation (optional) */
|
|
22302
22315
|
testId?: string;
|
|
22303
22316
|
};
|
|
@@ -22538,9 +22551,11 @@ declare const LoadingIcon: ({ height, width, ...props }: LoadingIconProps) => _e
|
|
|
22538
22551
|
|
|
22539
22552
|
interface DropdownStyleMenuTriggerProps extends React.HTMLAttributes<HTMLButtonElement> {
|
|
22540
22553
|
children: React.ReactNode;
|
|
22554
|
+
/** sets the background color of the button */
|
|
22555
|
+
bgColor?: string;
|
|
22541
22556
|
}
|
|
22542
22557
|
/** Renders a dropdown menu style menu trigger button */
|
|
22543
|
-
declare function DropdownStyleMenuTrigger({ children, ...buttonProps }: DropdownStyleMenuTriggerProps): _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22558
|
+
declare function DropdownStyleMenuTrigger({ bgColor, children, ...buttonProps }: DropdownStyleMenuTriggerProps): _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22544
22559
|
|
|
22545
22560
|
declare const legacyPlacements: readonly ["auto", "auto-start", "auto-end"];
|
|
22546
22561
|
type LegacyPlacement = (typeof legacyPlacements)[number];
|
|
@@ -22749,6 +22764,71 @@ declare const Modal: React__default.ForwardRefExoticComponent<Omit<ModalProps, "
|
|
|
22749
22764
|
type ModalDialogProps = Omit<ModalProps, 'width'>;
|
|
22750
22765
|
declare const ModalDialog: React$1.ForwardRefExoticComponent<Omit<ModalDialogProps, "ref"> & React$1.RefAttributes<HTMLDialogElement>>;
|
|
22751
22766
|
|
|
22767
|
+
type ObjectGridContainerProps = {
|
|
22768
|
+
/** The number of columns in the grid */
|
|
22769
|
+
gridCount?: number;
|
|
22770
|
+
/** The children to render */
|
|
22771
|
+
children: React.ReactNode;
|
|
22772
|
+
};
|
|
22773
|
+
declare const ObjectGridContainer: ({ gridCount, children }: ObjectGridContainerProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22774
|
+
|
|
22775
|
+
type ObjectGridItemProps = {
|
|
22776
|
+
/** Slot for the header component, we recommend using <ObjectGridItemHeader /> */
|
|
22777
|
+
header: React$1.ReactNode;
|
|
22778
|
+
/** Slot for the cover component, we recommemd using <ObjectGridItemCoverButton /> or <ObjectGridItemCover /> */
|
|
22779
|
+
cover: React$1.ReactNode;
|
|
22780
|
+
/** Slot for the right component */
|
|
22781
|
+
rightSlot?: React$1.ReactNode;
|
|
22782
|
+
/** Slot for the menu items, <MenuItem /> component should be used here */
|
|
22783
|
+
menuItems?: React$1.ReactNode;
|
|
22784
|
+
/** If the item is selected */
|
|
22785
|
+
isSelected?: boolean;
|
|
22786
|
+
/** Slot for the children */
|
|
22787
|
+
children?: React$1.ReactNode;
|
|
22788
|
+
};
|
|
22789
|
+
declare const ObjectGridItem: ({ header, cover, rightSlot, menuItems, isSelected, children, }: ObjectGridItemProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22790
|
+
|
|
22791
|
+
type ObjectGridItemCardCoverProps = {
|
|
22792
|
+
icon: IconType;
|
|
22793
|
+
} | {
|
|
22794
|
+
imageUrl: string;
|
|
22795
|
+
};
|
|
22796
|
+
declare const ObjectGridItemCardCover: (props: ObjectGridItemCardCoverProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element | undefined;
|
|
22797
|
+
type ObjectGridItemCoverProps = {
|
|
22798
|
+
/** The left slot to render components */
|
|
22799
|
+
coverSlotLeft?: React.ReactNode;
|
|
22800
|
+
/** The right slot to render components */
|
|
22801
|
+
coverSlotRight?: React.ReactNode;
|
|
22802
|
+
} & ObjectGridItemCardCoverProps;
|
|
22803
|
+
declare const ObjectGridItemCover: ({ coverSlotLeft, coverSlotRight, ...props }: ObjectGridItemCoverProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22804
|
+
type ObjectGridItemCoverButtonProps = {
|
|
22805
|
+
id: string;
|
|
22806
|
+
onSelection: (id: string) => void;
|
|
22807
|
+
isSelected: boolean;
|
|
22808
|
+
selectedText?: string;
|
|
22809
|
+
} & ObjectGridItemCoverProps;
|
|
22810
|
+
declare const ObjectGridItemCoverButton: ({ id, isSelected, onSelection, coverSlotLeft, coverSlotRight, selectedText, ...props }: ObjectGridItemCoverButtonProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22811
|
+
|
|
22812
|
+
type ObjectGridItemTitleProps = {
|
|
22813
|
+
/** sets the heading value */
|
|
22814
|
+
heading: string;
|
|
22815
|
+
/** Slot that renders a component before the heading */
|
|
22816
|
+
beforeHeadingSlot?: ReactNode;
|
|
22817
|
+
/** Slot that renders a component after the heading */
|
|
22818
|
+
afterHeadingSlot?: ReactNode;
|
|
22819
|
+
};
|
|
22820
|
+
declare const ObjectGridItemHeading: ({ heading, beforeHeadingSlot, afterHeadingSlot, }: ObjectGridItemTitleProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22821
|
+
|
|
22822
|
+
type ObjectGridItemIconWithTooltipProps = {
|
|
22823
|
+
/** The title of the tooltip */
|
|
22824
|
+
tooltipTitle: string;
|
|
22825
|
+
/** The icon to display */
|
|
22826
|
+
icon: IconType;
|
|
22827
|
+
/** The color of the icon */
|
|
22828
|
+
iconColor?: IconColor;
|
|
22829
|
+
} & Pick<TooltipProps, 'placement'>;
|
|
22830
|
+
declare const ObjectGridItemIconWithTooltip: ({ tooltipTitle, placement, icon, iconColor, }: ObjectGridItemIconWithTooltipProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22831
|
+
|
|
22752
22832
|
declare function Pagination({ limit, offset, total, onPageChange, }: {
|
|
22753
22833
|
limit: number;
|
|
22754
22834
|
offset: number;
|
|
@@ -23237,6 +23317,13 @@ type PopoverProps = PopoverProps$1 & {
|
|
|
23237
23317
|
}) => void;
|
|
23238
23318
|
};
|
|
23239
23319
|
declare const Popover: ({ iconColor, icon, iconSize, buttonText, ariaLabel, placement, testId, trigger, children, baseId, onInit, ...otherProps }: PopoverProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23320
|
+
/**
|
|
23321
|
+
* Hook to get the current popover context
|
|
23322
|
+
* @description This hook is used to get the current popover context
|
|
23323
|
+
* useful for closing the popover with a nested button or interative element
|
|
23324
|
+
* @example const currentPopoverContext = usePopoverComponentContext();
|
|
23325
|
+
*/
|
|
23326
|
+
declare const usePopoverComponentContext: () => PopoverStore | undefined;
|
|
23240
23327
|
|
|
23241
23328
|
interface ProgressBarProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
23242
23329
|
current: number;
|
|
@@ -23347,15 +23434,17 @@ type SkeletonProps = React__default.PropsWithChildren<React__default.HTMLAttribu
|
|
|
23347
23434
|
*/
|
|
23348
23435
|
declare const Skeleton: ({ width, height, inline, circle, children, ...otherProps }: SkeletonProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23349
23436
|
|
|
23350
|
-
type SwitchProps = Omit<React
|
|
23437
|
+
type SwitchProps = Omit<React.InputHTMLAttributes<HTMLInputElement>, 'type'> & {
|
|
23351
23438
|
/** sets the label value */
|
|
23352
|
-
label:
|
|
23439
|
+
label: ReactNode;
|
|
23353
23440
|
/** (optional) sets information text */
|
|
23354
23441
|
infoText?: string;
|
|
23355
23442
|
/** sets the toggle text value */
|
|
23356
23443
|
toggleText?: string;
|
|
23357
23444
|
/** sets child elements */
|
|
23358
|
-
children?:
|
|
23445
|
+
children?: ReactNode;
|
|
23446
|
+
/** the size of the control */
|
|
23447
|
+
switchSize?: 'base' | 'sm';
|
|
23359
23448
|
};
|
|
23360
23449
|
/**
|
|
23361
23450
|
* Uniform Switch Input Component
|
|
@@ -23364,13 +23453,15 @@ type SwitchProps = Omit<React$1.InputHTMLAttributes<HTMLInputElement>, 'type'> &
|
|
|
23364
23453
|
*/
|
|
23365
23454
|
declare const Switch: React$1.ForwardRefExoticComponent<Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "type"> & {
|
|
23366
23455
|
/** sets the label value */
|
|
23367
|
-
label:
|
|
23456
|
+
label: ReactNode;
|
|
23368
23457
|
/** (optional) sets information text */
|
|
23369
23458
|
infoText?: string | undefined;
|
|
23370
23459
|
/** sets the toggle text value */
|
|
23371
23460
|
toggleText?: string | undefined;
|
|
23372
23461
|
/** sets child elements */
|
|
23373
|
-
children?:
|
|
23462
|
+
children?: ReactNode;
|
|
23463
|
+
/** the size of the control */
|
|
23464
|
+
switchSize?: "base" | "sm" | undefined;
|
|
23374
23465
|
} & React$1.RefAttributes<HTMLInputElement>>;
|
|
23375
23466
|
|
|
23376
23467
|
type TableProps = {
|
|
@@ -23600,8 +23691,6 @@ type ToastContainerProps = {
|
|
|
23600
23691
|
/**
|
|
23601
23692
|
* A component to render toasts in your app. This component is supposed to be used just once in your app. Typically inside _app.tsx
|
|
23602
23693
|
* @example <App><ToastContainer autoCloseDelay="normal" /></App>
|
|
23603
|
-
*
|
|
23604
|
-
* @deprecated This component is in beta, and might receive breaking changes in minor releases!
|
|
23605
23694
|
*/
|
|
23606
23695
|
declare const ToastContainer: ({ limit, autoCloseDelay }: ToastContainerProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23607
23696
|
|
|
@@ -23749,4 +23838,4 @@ type StatusBulletProps = React$1.HTMLAttributes<HTMLSpanElement> & {
|
|
|
23749
23838
|
};
|
|
23750
23839
|
declare const StatusBullet: ({ status, hideText, size, message, ...props }: StatusBulletProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23751
23840
|
|
|
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 };
|
|
23841
|
+
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, usePopoverComponentContext, 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;
|
|
@@ -21354,6 +21354,10 @@ type ChipProps = {
|
|
|
21354
21354
|
theme?: ChipTheme;
|
|
21355
21355
|
chipAction?: React.ReactNode;
|
|
21356
21356
|
size?: ChipSizeProp;
|
|
21357
|
+
/** sets whether to use outlined chip variant
|
|
21358
|
+
* @default 'solid'
|
|
21359
|
+
*/
|
|
21360
|
+
variant?: 'solid' | 'outlined';
|
|
21357
21361
|
/**
|
|
21358
21362
|
* The HTML element to render
|
|
21359
21363
|
* @default 'span'
|
|
@@ -21367,7 +21371,7 @@ type ChipProps = {
|
|
|
21367
21371
|
* To represent a different object, as a reference
|
|
21368
21372
|
* @example <Chip text="productId" theme="accent-light" chipAction={<DismissibleChipAction onDismiss={() => {...}}/>} />
|
|
21369
21373
|
*/
|
|
21370
|
-
declare const Chip: ({ icon, text, size, theme, chipAction, as, ...props }: ChipProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21374
|
+
declare const Chip: ({ icon, text, size, theme, variant, chipAction, as, ...props }: ChipProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21371
21375
|
type DismissibleChipActionProps = {
|
|
21372
21376
|
onDismiss: () => void;
|
|
21373
21377
|
} & HTMLAttributes<HTMLButtonElement>;
|
|
@@ -21434,6 +21438,8 @@ type DateTimePickerProps = {
|
|
|
21434
21438
|
id: string;
|
|
21435
21439
|
/** (optional) sets the label value */
|
|
21436
21440
|
label?: ReactNode;
|
|
21441
|
+
/** (optional) icon for the trigger */
|
|
21442
|
+
triggerIcon?: IconType$2;
|
|
21437
21443
|
/** The current controlled value of the picker */
|
|
21438
21444
|
value: DateTimePickerValue | null | undefined;
|
|
21439
21445
|
/** (optional) The minimum visible date. The calendar will not show previous months */
|
|
@@ -21482,7 +21488,12 @@ declare function useDateTimePickerContext(): {
|
|
|
21482
21488
|
* Subcomponents can manipulate the value directly by using
|
|
21483
21489
|
* the `useDateTimePickerContext()` hook.
|
|
21484
21490
|
*/
|
|
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;
|
|
21491
|
+
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;
|
|
21492
|
+
|
|
21493
|
+
declare function DateTimePickerSummary({ value, placeholder, }: {
|
|
21494
|
+
value: DateTimePickerValue | null | undefined;
|
|
21495
|
+
placeholder: ReactNode;
|
|
21496
|
+
}): _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21486
21497
|
|
|
21487
21498
|
type DescriptionListProps = {
|
|
21488
21499
|
items: {
|
|
@@ -21787,12 +21798,14 @@ type InfoMessageProps = React.HTMLAttributes<HTMLSpanElement> & {
|
|
|
21787
21798
|
message?: string;
|
|
21788
21799
|
/** sets the test id for test automation (optional) */
|
|
21789
21800
|
testId?: string;
|
|
21801
|
+
/** customize the icon (optional) */
|
|
21802
|
+
icon?: IconType;
|
|
21790
21803
|
};
|
|
21791
21804
|
/**
|
|
21792
21805
|
* Component that provides info messaging to input fields
|
|
21793
|
-
* @example <
|
|
21806
|
+
* @example <InfoMessage>be aware of this</InfoMessage>
|
|
21794
21807
|
*/
|
|
21795
|
-
declare const InfoMessage: ({ message, testId, ...props }: InfoMessageProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element | null;
|
|
21808
|
+
declare const InfoMessage: ({ message, testId, icon, ...props }: InfoMessageProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element | null;
|
|
21796
21809
|
|
|
21797
21810
|
type InputProps = React$1.InputHTMLAttributes<HTMLInputElement> & {
|
|
21798
21811
|
/** (optional) sets the label value */
|
|
@@ -21949,7 +21962,7 @@ declare function convertComboBoxGroupsToSelectableGroups(args: ConvertComboBoxGr
|
|
|
21949
21962
|
* Finds all selected values in a combo box where there are multiple selectable groups
|
|
21950
21963
|
* (and selecting a group should select all of its virtual children)
|
|
21951
21964
|
*/
|
|
21952
|
-
declare function getComboBoxSelectedSelectableGroups(selectedValues: MultiValue<ComboBoxSelectableItem>): Set<string>;
|
|
21965
|
+
declare function getComboBoxSelectedSelectableGroups(selectedValues: MultiValue<ComboBoxSelectableItem> | SingleValue<ComboBoxSelectableItem>): Set<string>;
|
|
21953
21966
|
|
|
21954
21967
|
type InputInlineSelectOption = {
|
|
21955
21968
|
/** sets the display name of the option */
|
|
@@ -22001,7 +22014,7 @@ interface InputKeywordSearchProps extends InputHTMLAttributes<HTMLInputElement>
|
|
|
22001
22014
|
/** (optional) makes the input look more compact
|
|
22002
22015
|
* @default false
|
|
22003
22016
|
*/
|
|
22004
|
-
compact?: boolean | 'xs';
|
|
22017
|
+
compact?: boolean | 'sm' | 'xs';
|
|
22005
22018
|
/** (optional) makes the corners of the input rounded
|
|
22006
22019
|
* @default false
|
|
22007
22020
|
*/
|
|
@@ -22297,7 +22310,7 @@ declare const Textarea: React$1.ForwardRefExoticComponent<React$1.TextareaHTMLAt
|
|
|
22297
22310
|
|
|
22298
22311
|
type WarningMessageProps = React.HTMLAttributes<HTMLSpanElement> & {
|
|
22299
22312
|
/** sets the error message value */
|
|
22300
|
-
message?:
|
|
22313
|
+
message?: ReactNode;
|
|
22301
22314
|
/** sets the test id for test automation (optional) */
|
|
22302
22315
|
testId?: string;
|
|
22303
22316
|
};
|
|
@@ -22538,9 +22551,11 @@ declare const LoadingIcon: ({ height, width, ...props }: LoadingIconProps) => _e
|
|
|
22538
22551
|
|
|
22539
22552
|
interface DropdownStyleMenuTriggerProps extends React.HTMLAttributes<HTMLButtonElement> {
|
|
22540
22553
|
children: React.ReactNode;
|
|
22554
|
+
/** sets the background color of the button */
|
|
22555
|
+
bgColor?: string;
|
|
22541
22556
|
}
|
|
22542
22557
|
/** Renders a dropdown menu style menu trigger button */
|
|
22543
|
-
declare function DropdownStyleMenuTrigger({ children, ...buttonProps }: DropdownStyleMenuTriggerProps): _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22558
|
+
declare function DropdownStyleMenuTrigger({ bgColor, children, ...buttonProps }: DropdownStyleMenuTriggerProps): _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22544
22559
|
|
|
22545
22560
|
declare const legacyPlacements: readonly ["auto", "auto-start", "auto-end"];
|
|
22546
22561
|
type LegacyPlacement = (typeof legacyPlacements)[number];
|
|
@@ -22749,6 +22764,71 @@ declare const Modal: React__default.ForwardRefExoticComponent<Omit<ModalProps, "
|
|
|
22749
22764
|
type ModalDialogProps = Omit<ModalProps, 'width'>;
|
|
22750
22765
|
declare const ModalDialog: React$1.ForwardRefExoticComponent<Omit<ModalDialogProps, "ref"> & React$1.RefAttributes<HTMLDialogElement>>;
|
|
22751
22766
|
|
|
22767
|
+
type ObjectGridContainerProps = {
|
|
22768
|
+
/** The number of columns in the grid */
|
|
22769
|
+
gridCount?: number;
|
|
22770
|
+
/** The children to render */
|
|
22771
|
+
children: React.ReactNode;
|
|
22772
|
+
};
|
|
22773
|
+
declare const ObjectGridContainer: ({ gridCount, children }: ObjectGridContainerProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22774
|
+
|
|
22775
|
+
type ObjectGridItemProps = {
|
|
22776
|
+
/** Slot for the header component, we recommend using <ObjectGridItemHeader /> */
|
|
22777
|
+
header: React$1.ReactNode;
|
|
22778
|
+
/** Slot for the cover component, we recommemd using <ObjectGridItemCoverButton /> or <ObjectGridItemCover /> */
|
|
22779
|
+
cover: React$1.ReactNode;
|
|
22780
|
+
/** Slot for the right component */
|
|
22781
|
+
rightSlot?: React$1.ReactNode;
|
|
22782
|
+
/** Slot for the menu items, <MenuItem /> component should be used here */
|
|
22783
|
+
menuItems?: React$1.ReactNode;
|
|
22784
|
+
/** If the item is selected */
|
|
22785
|
+
isSelected?: boolean;
|
|
22786
|
+
/** Slot for the children */
|
|
22787
|
+
children?: React$1.ReactNode;
|
|
22788
|
+
};
|
|
22789
|
+
declare const ObjectGridItem: ({ header, cover, rightSlot, menuItems, isSelected, children, }: ObjectGridItemProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22790
|
+
|
|
22791
|
+
type ObjectGridItemCardCoverProps = {
|
|
22792
|
+
icon: IconType;
|
|
22793
|
+
} | {
|
|
22794
|
+
imageUrl: string;
|
|
22795
|
+
};
|
|
22796
|
+
declare const ObjectGridItemCardCover: (props: ObjectGridItemCardCoverProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element | undefined;
|
|
22797
|
+
type ObjectGridItemCoverProps = {
|
|
22798
|
+
/** The left slot to render components */
|
|
22799
|
+
coverSlotLeft?: React.ReactNode;
|
|
22800
|
+
/** The right slot to render components */
|
|
22801
|
+
coverSlotRight?: React.ReactNode;
|
|
22802
|
+
} & ObjectGridItemCardCoverProps;
|
|
22803
|
+
declare const ObjectGridItemCover: ({ coverSlotLeft, coverSlotRight, ...props }: ObjectGridItemCoverProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22804
|
+
type ObjectGridItemCoverButtonProps = {
|
|
22805
|
+
id: string;
|
|
22806
|
+
onSelection: (id: string) => void;
|
|
22807
|
+
isSelected: boolean;
|
|
22808
|
+
selectedText?: string;
|
|
22809
|
+
} & ObjectGridItemCoverProps;
|
|
22810
|
+
declare const ObjectGridItemCoverButton: ({ id, isSelected, onSelection, coverSlotLeft, coverSlotRight, selectedText, ...props }: ObjectGridItemCoverButtonProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22811
|
+
|
|
22812
|
+
type ObjectGridItemTitleProps = {
|
|
22813
|
+
/** sets the heading value */
|
|
22814
|
+
heading: string;
|
|
22815
|
+
/** Slot that renders a component before the heading */
|
|
22816
|
+
beforeHeadingSlot?: ReactNode;
|
|
22817
|
+
/** Slot that renders a component after the heading */
|
|
22818
|
+
afterHeadingSlot?: ReactNode;
|
|
22819
|
+
};
|
|
22820
|
+
declare const ObjectGridItemHeading: ({ heading, beforeHeadingSlot, afterHeadingSlot, }: ObjectGridItemTitleProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22821
|
+
|
|
22822
|
+
type ObjectGridItemIconWithTooltipProps = {
|
|
22823
|
+
/** The title of the tooltip */
|
|
22824
|
+
tooltipTitle: string;
|
|
22825
|
+
/** The icon to display */
|
|
22826
|
+
icon: IconType;
|
|
22827
|
+
/** The color of the icon */
|
|
22828
|
+
iconColor?: IconColor;
|
|
22829
|
+
} & Pick<TooltipProps, 'placement'>;
|
|
22830
|
+
declare const ObjectGridItemIconWithTooltip: ({ tooltipTitle, placement, icon, iconColor, }: ObjectGridItemIconWithTooltipProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22831
|
+
|
|
22752
22832
|
declare function Pagination({ limit, offset, total, onPageChange, }: {
|
|
22753
22833
|
limit: number;
|
|
22754
22834
|
offset: number;
|
|
@@ -23237,6 +23317,13 @@ type PopoverProps = PopoverProps$1 & {
|
|
|
23237
23317
|
}) => void;
|
|
23238
23318
|
};
|
|
23239
23319
|
declare const Popover: ({ iconColor, icon, iconSize, buttonText, ariaLabel, placement, testId, trigger, children, baseId, onInit, ...otherProps }: PopoverProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23320
|
+
/**
|
|
23321
|
+
* Hook to get the current popover context
|
|
23322
|
+
* @description This hook is used to get the current popover context
|
|
23323
|
+
* useful for closing the popover with a nested button or interative element
|
|
23324
|
+
* @example const currentPopoverContext = usePopoverComponentContext();
|
|
23325
|
+
*/
|
|
23326
|
+
declare const usePopoverComponentContext: () => PopoverStore | undefined;
|
|
23240
23327
|
|
|
23241
23328
|
interface ProgressBarProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
23242
23329
|
current: number;
|
|
@@ -23347,15 +23434,17 @@ type SkeletonProps = React__default.PropsWithChildren<React__default.HTMLAttribu
|
|
|
23347
23434
|
*/
|
|
23348
23435
|
declare const Skeleton: ({ width, height, inline, circle, children, ...otherProps }: SkeletonProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23349
23436
|
|
|
23350
|
-
type SwitchProps = Omit<React
|
|
23437
|
+
type SwitchProps = Omit<React.InputHTMLAttributes<HTMLInputElement>, 'type'> & {
|
|
23351
23438
|
/** sets the label value */
|
|
23352
|
-
label:
|
|
23439
|
+
label: ReactNode;
|
|
23353
23440
|
/** (optional) sets information text */
|
|
23354
23441
|
infoText?: string;
|
|
23355
23442
|
/** sets the toggle text value */
|
|
23356
23443
|
toggleText?: string;
|
|
23357
23444
|
/** sets child elements */
|
|
23358
|
-
children?:
|
|
23445
|
+
children?: ReactNode;
|
|
23446
|
+
/** the size of the control */
|
|
23447
|
+
switchSize?: 'base' | 'sm';
|
|
23359
23448
|
};
|
|
23360
23449
|
/**
|
|
23361
23450
|
* Uniform Switch Input Component
|
|
@@ -23364,13 +23453,15 @@ type SwitchProps = Omit<React$1.InputHTMLAttributes<HTMLInputElement>, 'type'> &
|
|
|
23364
23453
|
*/
|
|
23365
23454
|
declare const Switch: React$1.ForwardRefExoticComponent<Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "type"> & {
|
|
23366
23455
|
/** sets the label value */
|
|
23367
|
-
label:
|
|
23456
|
+
label: ReactNode;
|
|
23368
23457
|
/** (optional) sets information text */
|
|
23369
23458
|
infoText?: string | undefined;
|
|
23370
23459
|
/** sets the toggle text value */
|
|
23371
23460
|
toggleText?: string | undefined;
|
|
23372
23461
|
/** sets child elements */
|
|
23373
|
-
children?:
|
|
23462
|
+
children?: ReactNode;
|
|
23463
|
+
/** the size of the control */
|
|
23464
|
+
switchSize?: "base" | "sm" | undefined;
|
|
23374
23465
|
} & React$1.RefAttributes<HTMLInputElement>>;
|
|
23375
23466
|
|
|
23376
23467
|
type TableProps = {
|
|
@@ -23600,8 +23691,6 @@ type ToastContainerProps = {
|
|
|
23600
23691
|
/**
|
|
23601
23692
|
* A component to render toasts in your app. This component is supposed to be used just once in your app. Typically inside _app.tsx
|
|
23602
23693
|
* @example <App><ToastContainer autoCloseDelay="normal" /></App>
|
|
23603
|
-
*
|
|
23604
|
-
* @deprecated This component is in beta, and might receive breaking changes in minor releases!
|
|
23605
23694
|
*/
|
|
23606
23695
|
declare const ToastContainer: ({ limit, autoCloseDelay }: ToastContainerProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23607
23696
|
|
|
@@ -23749,4 +23838,4 @@ type StatusBulletProps = React$1.HTMLAttributes<HTMLSpanElement> & {
|
|
|
23749
23838
|
};
|
|
23750
23839
|
declare const StatusBullet: ({ status, hideText, size, message, ...props }: StatusBulletProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23751
23840
|
|
|
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 };
|
|
23841
|
+
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, usePopoverComponentContext, useShortcut, functionalColors as utilityColors, warningIcon, yesNoIcon };
|