@uniformdev/design-system 19.158.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/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 { DecoratorFn } from '@storybook/react';
2
+ import { Decorator } from '@storybook/react';
3
3
  import * as React$1 from 'react';
4
- import React__default, { RefObject, HTMLAttributes, MutableRefObject, ReactNode, ImgHTMLAttributes, SVGProps, InputHTMLAttributes, CSSProperties, Ref, ButtonHTMLAttributes, FocusEventHandler, ChangeEvent, HtmlHTMLAttributes } from 'react';
5
- import { GroupBase, Props } from 'react-select';
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, 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';
@@ -16,6 +16,7 @@ import * as _react_icons_all_files from '@react-icons/all-files';
16
16
  import { IconType as IconType$2 } from '@react-icons/all-files';
17
17
  import { DateValue } from '@internationalized/date';
18
18
  import { CalendarProps as CalendarProps$1, TimeFieldProps, TimeValue } from 'react-aria-components';
19
+ import { CreatableProps } from 'react-select/creatable';
19
20
  import InternalSelect from 'react-select/dist/declarations/src/Select';
20
21
  import { JsonSchema7Type } from 'zod-to-json-schema/src/parseDef';
21
22
  import * as _ariakit_react from '@ariakit/react';
@@ -45,7 +46,7 @@ type ThemeProps = {
45
46
  * @example <Theme disableReset={true} /> */
46
47
  declare const Theme: ({ disableReset, disableGlobalReset }: ThemeProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
47
48
 
48
- declare const BetaDecorator: DecoratorFn;
49
+ declare const BetaDecorator: Decorator;
49
50
 
50
51
  /** Breakpoint label values */
51
52
  type BreakpointSize = 'sm' | 'md' | 'lg' | 'xl' | '2xl';
@@ -20421,8 +20422,7 @@ type ButtonProps = ButtonProps$1 & {
20421
20422
  };
20422
20423
  /**
20423
20424
  * Uniform Button Component
20424
- * @param {BaseButtonProps} props - object of button props from reakit
20425
- * @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>
20426
20426
  */
20427
20427
  declare const Button: React$1.ForwardRefExoticComponent<Omit<ButtonProps, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
20428
20428
 
@@ -21188,6 +21188,7 @@ declare function IconsProvider({ children }: {
21188
21188
 
21189
21189
  declare const uniformComponentIcon: IconType$1;
21190
21190
  declare const uniformComponentPatternIcon: IconType$1;
21191
+ declare const uniformCompositionPatternIcon: IconType$1;
21191
21192
  declare const uniformContentTypeIcon: IconType$1;
21192
21193
  declare const uniformEntryIcon: IconType$1;
21193
21194
  declare const uniformEntryPatternIcon: IconType$1;
@@ -21433,6 +21434,8 @@ type DateTimePickerProps = {
21433
21434
  id: string;
21434
21435
  /** (optional) sets the label value */
21435
21436
  label?: ReactNode;
21437
+ /** (optional) icon for the trigger */
21438
+ triggerIcon?: IconType$2;
21436
21439
  /** The current controlled value of the picker */
21437
21440
  value: DateTimePickerValue | null | undefined;
21438
21441
  /** (optional) The minimum visible date. The calendar will not show previous months */
@@ -21481,7 +21484,12 @@ declare function useDateTimePickerContext(): {
21481
21484
  * Subcomponents can manipulate the value directly by using
21482
21485
  * the `useDateTimePickerContext()` hook.
21483
21486
  */
21484
- 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;
21485
21493
 
21486
21494
  type DescriptionListProps = {
21487
21495
  items: {
@@ -21786,12 +21794,14 @@ type InfoMessageProps = React.HTMLAttributes<HTMLSpanElement> & {
21786
21794
  message?: string;
21787
21795
  /** sets the test id for test automation (optional) */
21788
21796
  testId?: string;
21797
+ /** customize the icon (optional) */
21798
+ icon?: IconType;
21789
21799
  };
21790
21800
  /**
21791
21801
  * Component that provides info messaging to input fields
21792
- * @example <WarningMessage>be aware of this</ErrorMessage>
21802
+ * @example <InfoMessage>be aware of this</InfoMessage>
21793
21803
  */
21794
- 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;
21795
21805
 
21796
21806
  type InputProps = React$1.InputHTMLAttributes<HTMLInputElement> & {
21797
21807
  /** (optional) sets the label value */
@@ -21876,21 +21886,79 @@ declare const Input: React$1.ForwardRefExoticComponent<React$1.InputHTMLAttribut
21876
21886
  classNameLabel?: string | SerializedStyles | undefined;
21877
21887
  } & React$1.RefAttributes<HTMLInputElement>>;
21878
21888
 
21879
- type InputComboBoxOption = {
21889
+ /**
21890
+ * Default type of option for the combo box.
21891
+ * Note: you can use any type of object you want.
21892
+ * If it has a `label` and `value` property, it will auto wire those.
21893
+ * If you want to use different properties, you can use the `getOptionLabel` and `getOptionValue` props.
21894
+ */
21895
+ type InputComboBoxOption<TValue = string> = {
21880
21896
  /** sets the label value */
21881
21897
  label: string;
21882
- /** sets the input value */
21883
- value: string;
21898
+ /** sets the option value */
21899
+ value: TValue;
21884
21900
  /** (optional) sets the disabled value on the input */
21885
21901
  isDisabled?: boolean;
21902
+ /**
21903
+ * Sets an indent on the menu item.
21904
+ * Can be used to create faux groups, where the groups may be selected.
21905
+ * Note: this works for any type used for an option where a boolean called indented exists.
21906
+ */
21907
+ indented?: boolean;
21886
21908
  };
21887
21909
  type InputComboBoxProps<TOption = InputComboBoxOption, IsMulti extends boolean = boolean, TGroup extends GroupBase<TOption> = GroupBase<TOption>> = Props<TOption, IsMulti, TGroup> & React$1.RefAttributes<InternalSelect<TOption, IsMulti, TGroup>>;
21910
+ type InputCreatableComboBoxProps<TOption = InputComboBoxOption, IsMulti extends boolean = boolean, TGroup extends GroupBase<TOption> = GroupBase<TOption>> = CreatableProps<TOption, IsMulti, TGroup>;
21888
21911
  type ComboBoxGroupBase<TOption> = GroupBase<TOption>;
21889
21912
  /**
21890
21913
  * InputComboBox
21891
21914
  * @component
21892
21915
  * @example <InputComboBox name="name" id="combo-box" options={[{ value: 'chocolate', label: 'Chocolate' }, { value: 'strawberry', label: 'Strawberry' }, { value: 'vanilla', label: 'Vanilla' }]} isMulti /> */
21893
21916
  declare function InputComboBox<TOption = InputComboBoxOption, IsMulti extends boolean = false, TGroup extends ComboBoxGroupBase<TOption> = ComboBoxGroupBase<TOption>>(props: InputComboBoxProps<TOption, IsMulti, TGroup>): _emotion_react_types_jsx_namespace.EmotionJSX.Element;
21917
+ /**
21918
+ * InputCreatableComboBox
21919
+ * Like ComboBox, but allows for creating new options
21920
+ * @component
21921
+ * @example <InputCreatableComboBox name="name" id="combo-box" options={[{ value: 'chocolate', label: 'Chocolate' }, { value: 'strawberry', label: 'Strawberry' }, { value: 'vanilla', label: 'Vanilla' }]} isMulti /> */
21922
+ declare function InputCreatableComboBox<TOption = InputComboBoxOption, IsMulti extends boolean = false, TGroup extends ComboBoxGroupBase<TOption> = ComboBoxGroupBase<TOption>>(props: InputCreatableComboBoxProps<TOption, IsMulti, TGroup>): _emotion_react_types_jsx_namespace.EmotionJSX.Element;
21923
+
21924
+ type ComboBoxSelectableOption = InputComboBoxOption<string | string[]>;
21925
+ interface ComboBoxSelectableGroup extends GroupBase<ComboBoxSelectableOption> {
21926
+ /**
21927
+ * Controls the behavior when the selectable group is selected.
21928
+ * - when undefined, the values of all children of the group will be selected
21929
+ * - when a non-empty array, the values in the array will be explicitly selected
21930
+ * - when an empty array, the group will not be clickable and only its children can be selected (regular group behaviour)
21931
+ *
21932
+ * Note: when a non-empty array, and all of those values are selected, the group will be removed from options.
21933
+ */
21934
+ value?: string[];
21935
+ }
21936
+ type ComboBoxSelectableItem = ComboBoxSelectableOption | ComboBoxSelectableGroup;
21937
+ type ConvertComboBoxGroupsToSelectableGroupsOptions = {
21938
+ /** The grouped combo box options */
21939
+ options: readonly ComboBoxSelectableItem[];
21940
+ /** Set of selected IDs, used to determine selected items */
21941
+ selectedItems: Set<string>;
21942
+ /**
21943
+ * Whether multi selection is allowed (selectable groups will turn into regular groups)
21944
+ * Use this when sharing code between single and multi-select components.
21945
+ */
21946
+ selectionMode?: 'single' | 'multi';
21947
+ };
21948
+ /**
21949
+ * Converts combo box options that can contain optgroups
21950
+ * Into a set of group-less options where the optgroup becomes a selectable option,
21951
+ * and selecting it selects all of its children.
21952
+ */
21953
+ declare function convertComboBoxGroupsToSelectableGroups(args: ConvertComboBoxGroupsToSelectableGroupsOptions): {
21954
+ groupedOptions: readonly ComboBoxSelectableItem[];
21955
+ selectedOptions: readonly ComboBoxSelectableOption[];
21956
+ };
21957
+ /**
21958
+ * Finds all selected values in a combo box where there are multiple selectable groups
21959
+ * (and selecting a group should select all of its virtual children)
21960
+ */
21961
+ declare function getComboBoxSelectedSelectableGroups(selectedValues: MultiValue<ComboBoxSelectableItem> | SingleValue<ComboBoxSelectableItem>): Set<string>;
21894
21962
 
21895
21963
  type InputInlineSelectOption = {
21896
21964
  /** sets the display name of the option */
@@ -21942,7 +22010,7 @@ interface InputKeywordSearchProps extends InputHTMLAttributes<HTMLInputElement>
21942
22010
  /** (optional) makes the input look more compact
21943
22011
  * @default false
21944
22012
  */
21945
- compact?: boolean;
22013
+ compact?: boolean | 'sm' | 'xs';
21946
22014
  /** (optional) makes the corners of the input rounded
21947
22015
  * @default false
21948
22016
  */
@@ -21966,7 +22034,12 @@ type DebouncedInputKeywordSearchProps = Omit<InputKeywordSearchProps, 'value'> &
21966
22034
  *
21967
22035
  * @example <DebouncedInputKeywordSearch onSearchTextChanged={setKeyword} delay={500} />
21968
22036
  */
21969
- declare const DebouncedInputKeywordSearch: ({ delay, onSearchTextChanged, defaultValue, ...props }: DebouncedInputKeywordSearchProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
22037
+ declare const DebouncedInputKeywordSearch: React$1.ForwardRefExoticComponent<Omit<InputKeywordSearchProps, "value"> & {
22038
+ /** Debounce delay in milliseconds */
22039
+ delay?: number | undefined;
22040
+ /**Default value to initialize field with, as it is not controlled component and does not support providing values */
22041
+ defaultValue?: string | undefined;
22042
+ } & React$1.RefAttributes<HTMLInputElement>>;
21970
22043
 
21971
22044
  type InputSelectProps = React.SelectHTMLAttributes<HTMLSelectElement> & {
21972
22045
  /** (optional) sets the first item in the options list with empty value */
@@ -22233,7 +22306,7 @@ declare const Textarea: React$1.ForwardRefExoticComponent<React$1.TextareaHTMLAt
22233
22306
 
22234
22307
  type WarningMessageProps = React.HTMLAttributes<HTMLSpanElement> & {
22235
22308
  /** sets the error message value */
22236
- message?: string;
22309
+ message?: ReactNode;
22237
22310
  /** sets the test id for test automation (optional) */
22238
22311
  testId?: string;
22239
22312
  };
@@ -22472,6 +22545,12 @@ interface LoadingIconProps extends HTMLAttributes<SVGSVGElement> {
22472
22545
  */
22473
22546
  declare const LoadingIcon: ({ height, width, ...props }: LoadingIconProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
22474
22547
 
22548
+ interface DropdownStyleMenuTriggerProps extends React.HTMLAttributes<HTMLButtonElement> {
22549
+ children: React.ReactNode;
22550
+ }
22551
+ /** Renders a dropdown menu style menu trigger button */
22552
+ declare function DropdownStyleMenuTrigger({ children, ...buttonProps }: DropdownStyleMenuTriggerProps): _emotion_react_types_jsx_namespace.EmotionJSX.Element;
22553
+
22475
22554
  declare const legacyPlacements: readonly ["auto", "auto-start", "auto-end"];
22476
22555
  type LegacyPlacement = (typeof legacyPlacements)[number];
22477
22556
  interface MenuProps extends MenuProps$2 {
@@ -22531,7 +22610,7 @@ declare const Menu: React$1.ForwardRefExoticComponent<Omit<MenuProps, "ref"> & R
22531
22610
 
22532
22611
  type MenuGroupProps = {
22533
22612
  /** Title for the menu group. If undefined or an empty string, the group will render as normal menu */
22534
- title: string | undefined;
22613
+ title: ReactNode | undefined;
22535
22614
  /** Menu items to render in the group */
22536
22615
  children: ReactNode;
22537
22616
  };
@@ -22613,6 +22692,26 @@ declare const MenuThreeDots: React$1.ForwardRefExoticComponent<{
22613
22692
  buttonTitle?: string | undefined;
22614
22693
  } & HTMLAttributes<HTMLButtonElement> & React$1.RefAttributes<HTMLButtonElement>>;
22615
22694
 
22695
+ type SearchableMenuProps = {
22696
+ /** Note: this is pre-debounced for your handling enjoyment */
22697
+ onSearchTextChanged: (searchTerm: string) => void;
22698
+ /** Shows a no results message when no matching results exist */
22699
+ hasNoResults: boolean | string;
22700
+ /** Disables the search function, i.e. if few menu items exist */
22701
+ disableSearch?: boolean;
22702
+ /** Sets the placeholder in the search input */
22703
+ searchPlaceholder?: string;
22704
+ } & MenuProps;
22705
+ /**
22706
+ * Searchable menu allows searching through its menu items
22707
+ */
22708
+ declare function SearchableMenu(props: SearchableMenuProps): _emotion_react_types_jsx_namespace.EmotionJSX.Element;
22709
+
22710
+ interface SelectableMenuItemProps extends PropsWithChildren<Omit<MenuItemProps, 'children'>> {
22711
+ selected: boolean;
22712
+ }
22713
+ declare function SelectableMenuItem({ selected, children, ...menuItemProps }: SelectableMenuItemProps): _emotion_react_types_jsx_namespace.EmotionJSX.Element;
22714
+
22616
22715
  type MediaCardProps = Omit<CardProps, 'menuItems'> & {
22617
22716
  title: string;
22618
22717
  subtitle?: React.ReactNode;
@@ -22659,6 +22758,71 @@ declare const Modal: React__default.ForwardRefExoticComponent<Omit<ModalProps, "
22659
22758
  type ModalDialogProps = Omit<ModalProps, 'width'>;
22660
22759
  declare const ModalDialog: React$1.ForwardRefExoticComponent<Omit<ModalDialogProps, "ref"> & React$1.RefAttributes<HTMLDialogElement>>;
22661
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
+
22662
22826
  declare function Pagination({ limit, offset, total, onPageChange, }: {
22663
22827
  limit: number;
22664
22828
  offset: number;
@@ -23056,7 +23220,7 @@ declare const extractParameterProps: <T>(props: T & CommonParameterProps & {
23056
23220
  errorTestId?: string | undefined;
23057
23221
  captionTestId?: string | undefined;
23058
23222
  title?: string | undefined;
23059
- }, "caption" | "label" | "title" | "id" | "errorMessage" | "menuItems" | "warningMessage" | "infoMessage" | "errorTestId" | "captionTestId" | "hiddenLabel" | "labelLeadingIcon" | "hasOverriddenValue" | "onResetOverriddenValue">;
23223
+ }, "caption" | "label" | "title" | "id" | "warningMessage" | "errorMessage" | "infoMessage" | "errorTestId" | "captionTestId" | "menuItems" | "hiddenLabel" | "labelLeadingIcon" | "hasOverriddenValue" | "onResetOverriddenValue">;
23060
23224
  };
23061
23225
  type ParameterShellOverrideProps = {
23062
23226
  /** sets overriding parameters indicator
@@ -23659,4 +23823,4 @@ type StatusBulletProps = React$1.HTMLAttributes<HTMLSpanElement> & {
23659
23823
  };
23660
23824
  declare const StatusBullet: ({ status, hideText, size, message, ...props }: StatusBulletProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23661
23825
 
23662
- 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, ConnectToDataElementButton, type ConnectToDataElementButtonProps, Container, type ContainerProps, 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, 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, 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, SegmentedControl, type SegmentedControlOption, type SegmentedControlProps, 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, cq, customIcons, extractParameterProps, fadeIn, fadeInBottom, fadeInLtr, fadeInRtl, fadeInTop, fadeOutBottom, fullWidthScreenIcon, 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 };