@uniformdev/design-system 19.103.0 → 19.106.1

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.mts CHANGED
@@ -11,6 +11,8 @@ import { MenuProps as MenuProps$1 } from 'reakit';
11
11
  import * as _react_icons_all_files_lib from '@react-icons/all-files/lib';
12
12
  import { IconType as IconType$1, IconBaseProps } from '@react-icons/all-files/lib';
13
13
  import * as _react_icons_all_files from '@react-icons/all-files';
14
+ import { DateValue } from '@internationalized/date';
15
+ import { CalendarProps as CalendarProps$1, TimeFieldProps, TimeValue } from 'react-aria-components';
14
16
  import InternalSelect from 'react-select/dist/declarations/src/Select';
15
17
  import { StateManagerProps } from 'react-select/dist/declarations/src/useStateManager';
16
18
  import { JsonSchema7Type } from 'zod-to-json-schema/src/parseDef';
@@ -21095,6 +21097,8 @@ interface ActionButtonsProps {
21095
21097
  children: React$1.ReactNode;
21096
21098
  /** sets the button size */
21097
21099
  size?: ButtonSizeProps;
21100
+ /** sets additional Menu component styles */
21101
+ menuContainerCssClasses?: SerializedStyles;
21098
21102
  }
21099
21103
  /** ButtonWithMenuProps combines the ActionButtonsProps with React HTMLButtonElement attributes */
21100
21104
  type ButtonWithMenuProps = ActionButtonsProps & React$1.ButtonHTMLAttributes<HTMLButtonElement>;
@@ -21120,7 +21124,26 @@ type ButtonWithMenuProps = ActionButtonsProps & React$1.ButtonHTMLAttributes<HTM
21120
21124
  </MenuItem>
21121
21125
  </ButtonWithMenu>
21122
21126
  */
21123
- declare const ButtonWithMenu: ({ onButtonClick, buttonType, buttonText, icon, disabled, children, placement, size, ...buttonProps }: ButtonWithMenuProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
21127
+ declare const ButtonWithMenu: ({ onButtonClick, buttonType, buttonText, icon, disabled, children, placement, size, menuContainerCssClasses, ...buttonProps }: ButtonWithMenuProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
21128
+
21129
+ /**
21130
+ * A string in the ISO 8601 date format: YYYY-MM-DD
21131
+ */
21132
+ type IsoDateString = string;
21133
+ type CalendarProps = Pick<CalendarProps$1<DateValue>, 'autoFocus' | 'isDisabled' | 'isReadOnly' | 'isInvalid'> & Omit<HTMLAttributes<HTMLDivElement>, 'onChange' | 'onBlur' | 'onFocus'> & {
21134
+ value: IsoDateString | null | undefined;
21135
+ timeZone: string;
21136
+ minValue?: IsoDateString;
21137
+ maxValue?: IsoDateString;
21138
+ onChange?: (value: IsoDateString) => void;
21139
+ };
21140
+ /**
21141
+ * A Calendar Grid which allows the user to navigate
21142
+ * and select a date.
21143
+ *
21144
+ * @deprecated This component is in beta, name and props are subject to change without a major version
21145
+ */
21146
+ declare const Calendar: ({ value, timeZone, minValue, maxValue, onChange, autoFocus, isDisabled, isInvalid, isReadOnly, ...props }: CalendarProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
21124
21147
 
21125
21148
  /** Callout button types available to use with our brand */
21126
21149
  type CalloutType = 'caution' | 'danger' | 'info' | 'note' | 'success' | 'tip' | 'error';
@@ -21274,6 +21297,73 @@ type DashedBoxProps = React$1.HTMLAttributes<HTMLDivElement> & {
21274
21297
  */
21275
21298
  declare const DashedBox: ({ bgColor, textAlign, boxHeight, children, ...props }: DashedBoxProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
21276
21299
 
21300
+ /**
21301
+ * A string in the ISO 8601 datetime format
21302
+ */
21303
+ type IsoDateTimeString = string;
21304
+ declare enum DateTimePickerVariant {
21305
+ Date = "date",
21306
+ ZonedDateTime = "zoned-datetime"
21307
+ }
21308
+ interface DateTimePickerValue {
21309
+ datetime: IsoDateTimeString | null;
21310
+ timeZone?: string;
21311
+ }
21312
+
21313
+ type DateTimePickerProps = {
21314
+ id: string;
21315
+ /** (optional) sets the label value */
21316
+ label?: string;
21317
+ /** The current controlled value of the picker */
21318
+ value: DateTimePickerValue | null | undefined;
21319
+ /** (optional) The minimum visible date. The calendar will not show previous months */
21320
+ minVisible?: IsoDateTimeString;
21321
+ /** (optional) The maximum visible date. The calendar will not show subsequent months */
21322
+ maxVisible?: IsoDateTimeString;
21323
+ /** (optional) An event that fires when the value changes */
21324
+ onChange?: (value: DateTimePickerValue) => void;
21325
+ /** (optional) The UI variant for the picker which controls which components are shown */
21326
+ variant?: DateTimePickerVariant;
21327
+ /** (optional) sets caption text value */
21328
+ placeholder?: ReactNode;
21329
+ /** (optional) A slot below the time input, use this to populate quick time presets */
21330
+ belowTimeInputSlot?: ReactNode;
21331
+ /** (optional) sets caption text value */
21332
+ caption?: string | JSX.Element;
21333
+ /** (optional) sets whether to show the label or hide it and add a aria-label attributes to the input field directly */
21334
+ showLabel?: boolean;
21335
+ /** (optional) sets and shows the error message value */
21336
+ errorMessage?: string;
21337
+ /** (optional) sets and shows the warning message value */
21338
+ warningMessage?: string;
21339
+ /** (optional) disables the input preventing any interaction */
21340
+ disabled?: boolean;
21341
+ /** (optional) sets the base test id for each of the elements with a testid */
21342
+ testId?: string;
21343
+ };
21344
+ /**
21345
+ * Use this context for slots within the date time picker
21346
+ * in order to manipulate the current value
21347
+ */
21348
+ declare function useDateTimePickerContext(): {
21349
+ clearValue(): void;
21350
+ changeDate(isoDate: string): void;
21351
+ changeTime(isoTime: string): void;
21352
+ };
21353
+ /**
21354
+ * Date Time Picker
21355
+ *
21356
+ * @deprecated This component is in beta, name and props are subject to change without a major version
21357
+ *
21358
+ * This is a Calendar, Time input and TimeZone selector
21359
+ * housed in a popup. You can use it to pick a date as well
21360
+ * as a time, or you can also change it to only pick a date.
21361
+ *
21362
+ * Subcomponents can manipulate the value directly by using
21363
+ * the `useDateTimePickerContext()` hook.
21364
+ */
21365
+ 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;
21366
+
21277
21367
  type DescriptionListProps = {
21278
21368
  items: {
21279
21369
  label: string;
@@ -21767,7 +21857,108 @@ type InputSelectProps = React.SelectHTMLAttributes<HTMLSelectElement> & {
21767
21857
  * Input Select Component
21768
21858
  * @example <InputSelect label="my label" options={[{label: "option 1"}, {label: "option 2"}]} />
21769
21859
  */
21770
- declare const InputSelect: ({ label, defaultOption, options, caption, errorMessage, warningMessage, showLabel, labelCta, compact, classNameContainer, classNameControl, classNameLabel, ...props }: InputSelectProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
21860
+ declare const InputSelect: React$1.ForwardRefExoticComponent<React$1.SelectHTMLAttributes<HTMLSelectElement> & {
21861
+ /** (optional) sets the first item in the options list with empty value */
21862
+ defaultOption?: string | undefined;
21863
+ /** sets an array of select options with value and text value */
21864
+ options: Array<React.OptionHTMLAttributes<HTMLOptionElement> & {
21865
+ label: string;
21866
+ }>;
21867
+ /** (optional) sets caption text value */
21868
+ caption?: string | JSX.Element | undefined;
21869
+ /** sets the label value */
21870
+ label: string;
21871
+ /** (optional) sets whether to hide the label and use aria-label on the input field
21872
+ * @default false
21873
+ */
21874
+ showLabel?: boolean | undefined;
21875
+ /** (optional) sets and shows the the error message value */
21876
+ errorMessage?: string | undefined;
21877
+ /** (optional) sets and shows the warning message value */
21878
+ warningMessage?: string | undefined;
21879
+ /** (optional) allows react components to be added inline with the label element */
21880
+ labelCta?: JSX.Element | undefined;
21881
+ /** (optional) styles the component in a compact format */
21882
+ compact?: boolean | undefined;
21883
+ /**
21884
+ * (optional) sets an overriding classname on the container element
21885
+ * @deprecated */
21886
+ classNameContainer?: string | undefined;
21887
+ /**
21888
+ * (optional) sets an overriding classname on the input element
21889
+ * @deprecated */
21890
+ classNameControl?: string | undefined;
21891
+ /**
21892
+ * (optional) sets an overriding classname on the label element
21893
+ * @deprecated */
21894
+ classNameLabel?: string | undefined;
21895
+ } & React$1.RefAttributes<HTMLSelectElement>>;
21896
+
21897
+ /**
21898
+ * A string in the ISO 8601 time format: hh:mm
21899
+ */
21900
+ type IsoTimeString = string;
21901
+ type InputTimeProps = Pick<TimeFieldProps<TimeValue>, 'id' | 'name' | 'hourCycle' | 'autoFocus'> & Pick<React$1.InputHTMLAttributes<HTMLInputElement>, 'disabled'> & {
21902
+ /** (optional) sets the label value */
21903
+ label?: string;
21904
+ /** (optional) sets caption text value */
21905
+ caption?: string | JSX.Element;
21906
+ /** The current value in ISO 8601 time format */
21907
+ value: IsoTimeString | null | undefined;
21908
+ /** (optional) sets the minimum time value in iso8601 time format. ie 10:00 */
21909
+ minValue?: IsoTimeString;
21910
+ /** (optional) sets the maximum time value in iso8601 time format. ie 22:00 */
21911
+ maxValue?: IsoTimeString;
21912
+ /** (optional) sets whether to show the label or hide it and add a aria-label attributes to the input field directly */
21913
+ showLabel?: boolean;
21914
+ /** (optional) sets and shows the the error message value */
21915
+ errorMessage?: string;
21916
+ /** (optional) sets and shows the warning message value */
21917
+ warningMessage?: string;
21918
+ /** (optional) sets the test id for input field container for test automation*/
21919
+ containerTestId?: string;
21920
+ /** (optional) sets label test id */
21921
+ labelTestId?: string;
21922
+ /** (option) sets validation message test id for test automation */
21923
+ errorTestId?: string;
21924
+ /** (option) sets caption message test id for test automation */
21925
+ captionTestId?: string;
21926
+ belowInputSlot?: ReactNode;
21927
+ onChange?: (value: IsoTimeString) => void;
21928
+ };
21929
+ /**
21930
+ * Time input with segmented control
21931
+ *
21932
+ * @deprecated This component is in beta, name and props are subject to change without a major version
21933
+ */
21934
+ declare const InputTime: React$1.ForwardRefExoticComponent<Pick<TimeFieldProps<TimeValue>, "autoFocus" | "id" | "name" | "hourCycle"> & Pick<React$1.InputHTMLAttributes<HTMLInputElement>, "disabled"> & {
21935
+ /** (optional) sets the label value */
21936
+ label?: string | undefined;
21937
+ /** (optional) sets caption text value */
21938
+ caption?: string | JSX.Element | undefined;
21939
+ /** The current value in ISO 8601 time format */
21940
+ value: IsoTimeString | null | undefined;
21941
+ /** (optional) sets the minimum time value in iso8601 time format. ie 10:00 */
21942
+ minValue?: string | undefined;
21943
+ /** (optional) sets the maximum time value in iso8601 time format. ie 22:00 */
21944
+ maxValue?: string | undefined;
21945
+ /** (optional) sets whether to show the label or hide it and add a aria-label attributes to the input field directly */
21946
+ showLabel?: boolean | undefined;
21947
+ /** (optional) sets and shows the the error message value */
21948
+ errorMessage?: string | undefined;
21949
+ /** (optional) sets and shows the warning message value */
21950
+ warningMessage?: string | undefined;
21951
+ /** (optional) sets the test id for input field container for test automation*/
21952
+ containerTestId?: string | undefined;
21953
+ /** (optional) sets label test id */
21954
+ labelTestId?: string | undefined;
21955
+ /** (option) sets validation message test id for test automation */
21956
+ errorTestId?: string | undefined;
21957
+ /** (option) sets caption message test id for test automation */
21958
+ captionTestId?: string | undefined;
21959
+ belowInputSlot?: ReactNode;
21960
+ onChange?: ((value: IsoTimeString) => void) | undefined;
21961
+ } & React$1.RefAttributes<HTMLDivElement>>;
21771
21962
 
21772
21963
  type FontWeightProps = 'normal' | 'medium' | 'bold';
21773
21964
  type InputToggleProps = React$1.InputHTMLAttributes<HTMLInputElement> & {
@@ -22642,7 +22833,7 @@ declare const extractParameterProps: <T>(props: T & CommonParameterProps & {
22642
22833
  errorTestId?: string | undefined;
22643
22834
  captionTestId?: string | undefined;
22644
22835
  title?: string | undefined;
22645
- }, "caption" | "label" | "title" | "id" | "menuItems" | "warningMessage" | "errorMessage" | "infoMessage" | "errorTestId" | "captionTestId" | "hiddenLabel" | "labelLeadingIcon" | "hasOverriddenValue" | "onResetOverriddenValue">;
22836
+ }, "caption" | "label" | "title" | "id" | "errorMessage" | "menuItems" | "warningMessage" | "infoMessage" | "errorTestId" | "captionTestId" | "hiddenLabel" | "labelLeadingIcon" | "hasOverriddenValue" | "onResetOverriddenValue">;
22646
22837
  };
22647
22838
  type ParameterShellOverrideProps = {
22648
22839
  /** sets overriding parameters indicator
@@ -23259,4 +23450,4 @@ type StatusBulletProps = React$1.HTMLAttributes<HTMLSpanElement> & {
23259
23450
  };
23260
23451
  declare const StatusBullet: ({ status, hideText, size, message, ...props }: StatusBulletProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23261
23452
 
23262
- export { type ActionButtonsProps, AddButton, type AddButtonProps, AddListButton, type AddListButtonProps, type AddListButtonThemeProps, AnimationFile, type AnimationFileProps, type ArrowPositionProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, Badge, type BadgeProps, type BadgeSizeProps, type BadgeThemeProps, type BadgeThemeStyleProps, Banner, type BannerProps, type BannerType, type BoxHeightProps, type BreakpointSize, type BreakpointsMap, Button, type ButtonProps, type ButtonSizeProps$1 as ButtonSizeProps, type ButtonThemeProps$1 as ButtonThemeProps, ButtonWithMenu, type ButtonWithMenuProps, 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, 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, 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, InlineAlert, type InlineAlertProps, Input, InputComboBox, type InputComboBoxOption, type InputComboBoxProps, InputInlineSelect, type InputInlineSelectOption, type InputInlineSelectProps, InputKeywordSearch, type InputKeywordSearchProps, type InputProps, InputSelect, type InputSelectProps, InputToggle, type InputToggleProps, IntegrationComingSoon, type IntegrationComingSoonProps, IntegrationHeaderSection, type IntegrationHeaderSectionProps, IntegrationLoadingTile, type IntegrationLoadingTileProps, IntegrationModalHeader, type IntegrationModalHeaderProps, IntegrationModalIcon, type IntegrationModalIconProps, IntegrationTile, type IntegrationTileProps, 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, MenuGroup, type MenuGroupProps, MenuItem, MenuItemInner, type MenuItemProps, MenuItemSeparator, type MenuItemTextThemeProps, type MenuProps, Modal, 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, 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, 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, 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, getParentPath, getPathSegment, growSubtle, imageTextIcon, infoFilledIcon, input, inputError, inputSelect, isMacLike, isSecureURL, isValidUrl, jsonIcon, labelText, loader as loaderAnimationData, macifyShortcut, mq, numberInput, queryStringIcon, rectangleRoundedIcon, replaceUnderscoreInString, richTextToolbarButton, richTextToolbarButtonActive, ripple, scrollbarStyles, settings, settingsIcon, skeletonLoading, slideInTtb, spinner as spinnerAnimationData, structurePanelIcon, supports, textInput, useBreakpoint, useCloseCurrentDrawer, useCurrentDrawer, useCurrentTab, useDrawer, useIconContext, useOutsideClick, useParameterShell, useShortcut, warningIcon, yesNoIcon };
23453
+ export { type ActionButtonsProps, AddButton, type AddButtonProps, AddListButton, type AddListButtonProps, type AddListButtonThemeProps, AnimationFile, type AnimationFileProps, type ArrowPositionProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, Badge, type BadgeProps, type BadgeSizeProps, type BadgeThemeProps, type BadgeThemeStyleProps, Banner, type BannerProps, type BannerType, 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, 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, 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, InlineAlert, type InlineAlertProps, 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, MenuGroup, type MenuGroupProps, MenuItem, MenuItemInner, type MenuItemProps, MenuItemSeparator, type MenuItemTextThemeProps, type MenuProps, Modal, 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, 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, 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, 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, getParentPath, getPathSegment, growSubtle, imageTextIcon, infoFilledIcon, input, inputError, inputSelect, isMacLike, isSecureURL, isValidUrl, jsonIcon, labelText, loader as loaderAnimationData, macifyShortcut, mq, numberInput, queryStringIcon, rectangleRoundedIcon, replaceUnderscoreInString, richTextToolbarButton, richTextToolbarButtonActive, ripple, scrollbarStyles, settings, settingsIcon, skeletonLoading, slideInTtb, spinner as spinnerAnimationData, structurePanelIcon, supports, textInput, useBreakpoint, useCloseCurrentDrawer, useCurrentDrawer, useCurrentTab, useDateTimePickerContext, useDrawer, useIconContext, useOutsideClick, useParameterShell, useShortcut, warningIcon, yesNoIcon };
package/dist/index.d.ts CHANGED
@@ -11,6 +11,8 @@ import { MenuProps as MenuProps$1 } from 'reakit';
11
11
  import * as _react_icons_all_files_lib from '@react-icons/all-files/lib';
12
12
  import { IconType as IconType$1, IconBaseProps } from '@react-icons/all-files/lib';
13
13
  import * as _react_icons_all_files from '@react-icons/all-files';
14
+ import { DateValue } from '@internationalized/date';
15
+ import { CalendarProps as CalendarProps$1, TimeFieldProps, TimeValue } from 'react-aria-components';
14
16
  import InternalSelect from 'react-select/dist/declarations/src/Select';
15
17
  import { StateManagerProps } from 'react-select/dist/declarations/src/useStateManager';
16
18
  import { JsonSchema7Type } from 'zod-to-json-schema/src/parseDef';
@@ -21095,6 +21097,8 @@ interface ActionButtonsProps {
21095
21097
  children: React$1.ReactNode;
21096
21098
  /** sets the button size */
21097
21099
  size?: ButtonSizeProps;
21100
+ /** sets additional Menu component styles */
21101
+ menuContainerCssClasses?: SerializedStyles;
21098
21102
  }
21099
21103
  /** ButtonWithMenuProps combines the ActionButtonsProps with React HTMLButtonElement attributes */
21100
21104
  type ButtonWithMenuProps = ActionButtonsProps & React$1.ButtonHTMLAttributes<HTMLButtonElement>;
@@ -21120,7 +21124,26 @@ type ButtonWithMenuProps = ActionButtonsProps & React$1.ButtonHTMLAttributes<HTM
21120
21124
  </MenuItem>
21121
21125
  </ButtonWithMenu>
21122
21126
  */
21123
- declare const ButtonWithMenu: ({ onButtonClick, buttonType, buttonText, icon, disabled, children, placement, size, ...buttonProps }: ButtonWithMenuProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
21127
+ declare const ButtonWithMenu: ({ onButtonClick, buttonType, buttonText, icon, disabled, children, placement, size, menuContainerCssClasses, ...buttonProps }: ButtonWithMenuProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
21128
+
21129
+ /**
21130
+ * A string in the ISO 8601 date format: YYYY-MM-DD
21131
+ */
21132
+ type IsoDateString = string;
21133
+ type CalendarProps = Pick<CalendarProps$1<DateValue>, 'autoFocus' | 'isDisabled' | 'isReadOnly' | 'isInvalid'> & Omit<HTMLAttributes<HTMLDivElement>, 'onChange' | 'onBlur' | 'onFocus'> & {
21134
+ value: IsoDateString | null | undefined;
21135
+ timeZone: string;
21136
+ minValue?: IsoDateString;
21137
+ maxValue?: IsoDateString;
21138
+ onChange?: (value: IsoDateString) => void;
21139
+ };
21140
+ /**
21141
+ * A Calendar Grid which allows the user to navigate
21142
+ * and select a date.
21143
+ *
21144
+ * @deprecated This component is in beta, name and props are subject to change without a major version
21145
+ */
21146
+ declare const Calendar: ({ value, timeZone, minValue, maxValue, onChange, autoFocus, isDisabled, isInvalid, isReadOnly, ...props }: CalendarProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
21124
21147
 
21125
21148
  /** Callout button types available to use with our brand */
21126
21149
  type CalloutType = 'caution' | 'danger' | 'info' | 'note' | 'success' | 'tip' | 'error';
@@ -21274,6 +21297,73 @@ type DashedBoxProps = React$1.HTMLAttributes<HTMLDivElement> & {
21274
21297
  */
21275
21298
  declare const DashedBox: ({ bgColor, textAlign, boxHeight, children, ...props }: DashedBoxProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
21276
21299
 
21300
+ /**
21301
+ * A string in the ISO 8601 datetime format
21302
+ */
21303
+ type IsoDateTimeString = string;
21304
+ declare enum DateTimePickerVariant {
21305
+ Date = "date",
21306
+ ZonedDateTime = "zoned-datetime"
21307
+ }
21308
+ interface DateTimePickerValue {
21309
+ datetime: IsoDateTimeString | null;
21310
+ timeZone?: string;
21311
+ }
21312
+
21313
+ type DateTimePickerProps = {
21314
+ id: string;
21315
+ /** (optional) sets the label value */
21316
+ label?: string;
21317
+ /** The current controlled value of the picker */
21318
+ value: DateTimePickerValue | null | undefined;
21319
+ /** (optional) The minimum visible date. The calendar will not show previous months */
21320
+ minVisible?: IsoDateTimeString;
21321
+ /** (optional) The maximum visible date. The calendar will not show subsequent months */
21322
+ maxVisible?: IsoDateTimeString;
21323
+ /** (optional) An event that fires when the value changes */
21324
+ onChange?: (value: DateTimePickerValue) => void;
21325
+ /** (optional) The UI variant for the picker which controls which components are shown */
21326
+ variant?: DateTimePickerVariant;
21327
+ /** (optional) sets caption text value */
21328
+ placeholder?: ReactNode;
21329
+ /** (optional) A slot below the time input, use this to populate quick time presets */
21330
+ belowTimeInputSlot?: ReactNode;
21331
+ /** (optional) sets caption text value */
21332
+ caption?: string | JSX.Element;
21333
+ /** (optional) sets whether to show the label or hide it and add a aria-label attributes to the input field directly */
21334
+ showLabel?: boolean;
21335
+ /** (optional) sets and shows the error message value */
21336
+ errorMessage?: string;
21337
+ /** (optional) sets and shows the warning message value */
21338
+ warningMessage?: string;
21339
+ /** (optional) disables the input preventing any interaction */
21340
+ disabled?: boolean;
21341
+ /** (optional) sets the base test id for each of the elements with a testid */
21342
+ testId?: string;
21343
+ };
21344
+ /**
21345
+ * Use this context for slots within the date time picker
21346
+ * in order to manipulate the current value
21347
+ */
21348
+ declare function useDateTimePickerContext(): {
21349
+ clearValue(): void;
21350
+ changeDate(isoDate: string): void;
21351
+ changeTime(isoTime: string): void;
21352
+ };
21353
+ /**
21354
+ * Date Time Picker
21355
+ *
21356
+ * @deprecated This component is in beta, name and props are subject to change without a major version
21357
+ *
21358
+ * This is a Calendar, Time input and TimeZone selector
21359
+ * housed in a popup. You can use it to pick a date as well
21360
+ * as a time, or you can also change it to only pick a date.
21361
+ *
21362
+ * Subcomponents can manipulate the value directly by using
21363
+ * the `useDateTimePickerContext()` hook.
21364
+ */
21365
+ 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;
21366
+
21277
21367
  type DescriptionListProps = {
21278
21368
  items: {
21279
21369
  label: string;
@@ -21767,7 +21857,108 @@ type InputSelectProps = React.SelectHTMLAttributes<HTMLSelectElement> & {
21767
21857
  * Input Select Component
21768
21858
  * @example <InputSelect label="my label" options={[{label: "option 1"}, {label: "option 2"}]} />
21769
21859
  */
21770
- declare const InputSelect: ({ label, defaultOption, options, caption, errorMessage, warningMessage, showLabel, labelCta, compact, classNameContainer, classNameControl, classNameLabel, ...props }: InputSelectProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
21860
+ declare const InputSelect: React$1.ForwardRefExoticComponent<React$1.SelectHTMLAttributes<HTMLSelectElement> & {
21861
+ /** (optional) sets the first item in the options list with empty value */
21862
+ defaultOption?: string | undefined;
21863
+ /** sets an array of select options with value and text value */
21864
+ options: Array<React.OptionHTMLAttributes<HTMLOptionElement> & {
21865
+ label: string;
21866
+ }>;
21867
+ /** (optional) sets caption text value */
21868
+ caption?: string | JSX.Element | undefined;
21869
+ /** sets the label value */
21870
+ label: string;
21871
+ /** (optional) sets whether to hide the label and use aria-label on the input field
21872
+ * @default false
21873
+ */
21874
+ showLabel?: boolean | undefined;
21875
+ /** (optional) sets and shows the the error message value */
21876
+ errorMessage?: string | undefined;
21877
+ /** (optional) sets and shows the warning message value */
21878
+ warningMessage?: string | undefined;
21879
+ /** (optional) allows react components to be added inline with the label element */
21880
+ labelCta?: JSX.Element | undefined;
21881
+ /** (optional) styles the component in a compact format */
21882
+ compact?: boolean | undefined;
21883
+ /**
21884
+ * (optional) sets an overriding classname on the container element
21885
+ * @deprecated */
21886
+ classNameContainer?: string | undefined;
21887
+ /**
21888
+ * (optional) sets an overriding classname on the input element
21889
+ * @deprecated */
21890
+ classNameControl?: string | undefined;
21891
+ /**
21892
+ * (optional) sets an overriding classname on the label element
21893
+ * @deprecated */
21894
+ classNameLabel?: string | undefined;
21895
+ } & React$1.RefAttributes<HTMLSelectElement>>;
21896
+
21897
+ /**
21898
+ * A string in the ISO 8601 time format: hh:mm
21899
+ */
21900
+ type IsoTimeString = string;
21901
+ type InputTimeProps = Pick<TimeFieldProps<TimeValue>, 'id' | 'name' | 'hourCycle' | 'autoFocus'> & Pick<React$1.InputHTMLAttributes<HTMLInputElement>, 'disabled'> & {
21902
+ /** (optional) sets the label value */
21903
+ label?: string;
21904
+ /** (optional) sets caption text value */
21905
+ caption?: string | JSX.Element;
21906
+ /** The current value in ISO 8601 time format */
21907
+ value: IsoTimeString | null | undefined;
21908
+ /** (optional) sets the minimum time value in iso8601 time format. ie 10:00 */
21909
+ minValue?: IsoTimeString;
21910
+ /** (optional) sets the maximum time value in iso8601 time format. ie 22:00 */
21911
+ maxValue?: IsoTimeString;
21912
+ /** (optional) sets whether to show the label or hide it and add a aria-label attributes to the input field directly */
21913
+ showLabel?: boolean;
21914
+ /** (optional) sets and shows the the error message value */
21915
+ errorMessage?: string;
21916
+ /** (optional) sets and shows the warning message value */
21917
+ warningMessage?: string;
21918
+ /** (optional) sets the test id for input field container for test automation*/
21919
+ containerTestId?: string;
21920
+ /** (optional) sets label test id */
21921
+ labelTestId?: string;
21922
+ /** (option) sets validation message test id for test automation */
21923
+ errorTestId?: string;
21924
+ /** (option) sets caption message test id for test automation */
21925
+ captionTestId?: string;
21926
+ belowInputSlot?: ReactNode;
21927
+ onChange?: (value: IsoTimeString) => void;
21928
+ };
21929
+ /**
21930
+ * Time input with segmented control
21931
+ *
21932
+ * @deprecated This component is in beta, name and props are subject to change without a major version
21933
+ */
21934
+ declare const InputTime: React$1.ForwardRefExoticComponent<Pick<TimeFieldProps<TimeValue>, "autoFocus" | "id" | "name" | "hourCycle"> & Pick<React$1.InputHTMLAttributes<HTMLInputElement>, "disabled"> & {
21935
+ /** (optional) sets the label value */
21936
+ label?: string | undefined;
21937
+ /** (optional) sets caption text value */
21938
+ caption?: string | JSX.Element | undefined;
21939
+ /** The current value in ISO 8601 time format */
21940
+ value: IsoTimeString | null | undefined;
21941
+ /** (optional) sets the minimum time value in iso8601 time format. ie 10:00 */
21942
+ minValue?: string | undefined;
21943
+ /** (optional) sets the maximum time value in iso8601 time format. ie 22:00 */
21944
+ maxValue?: string | undefined;
21945
+ /** (optional) sets whether to show the label or hide it and add a aria-label attributes to the input field directly */
21946
+ showLabel?: boolean | undefined;
21947
+ /** (optional) sets and shows the the error message value */
21948
+ errorMessage?: string | undefined;
21949
+ /** (optional) sets and shows the warning message value */
21950
+ warningMessage?: string | undefined;
21951
+ /** (optional) sets the test id for input field container for test automation*/
21952
+ containerTestId?: string | undefined;
21953
+ /** (optional) sets label test id */
21954
+ labelTestId?: string | undefined;
21955
+ /** (option) sets validation message test id for test automation */
21956
+ errorTestId?: string | undefined;
21957
+ /** (option) sets caption message test id for test automation */
21958
+ captionTestId?: string | undefined;
21959
+ belowInputSlot?: ReactNode;
21960
+ onChange?: ((value: IsoTimeString) => void) | undefined;
21961
+ } & React$1.RefAttributes<HTMLDivElement>>;
21771
21962
 
21772
21963
  type FontWeightProps = 'normal' | 'medium' | 'bold';
21773
21964
  type InputToggleProps = React$1.InputHTMLAttributes<HTMLInputElement> & {
@@ -22642,7 +22833,7 @@ declare const extractParameterProps: <T>(props: T & CommonParameterProps & {
22642
22833
  errorTestId?: string | undefined;
22643
22834
  captionTestId?: string | undefined;
22644
22835
  title?: string | undefined;
22645
- }, "caption" | "label" | "title" | "id" | "menuItems" | "warningMessage" | "errorMessage" | "infoMessage" | "errorTestId" | "captionTestId" | "hiddenLabel" | "labelLeadingIcon" | "hasOverriddenValue" | "onResetOverriddenValue">;
22836
+ }, "caption" | "label" | "title" | "id" | "errorMessage" | "menuItems" | "warningMessage" | "infoMessage" | "errorTestId" | "captionTestId" | "hiddenLabel" | "labelLeadingIcon" | "hasOverriddenValue" | "onResetOverriddenValue">;
22646
22837
  };
22647
22838
  type ParameterShellOverrideProps = {
22648
22839
  /** sets overriding parameters indicator
@@ -23259,4 +23450,4 @@ type StatusBulletProps = React$1.HTMLAttributes<HTMLSpanElement> & {
23259
23450
  };
23260
23451
  declare const StatusBullet: ({ status, hideText, size, message, ...props }: StatusBulletProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23261
23452
 
23262
- export { type ActionButtonsProps, AddButton, type AddButtonProps, AddListButton, type AddListButtonProps, type AddListButtonThemeProps, AnimationFile, type AnimationFileProps, type ArrowPositionProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, Badge, type BadgeProps, type BadgeSizeProps, type BadgeThemeProps, type BadgeThemeStyleProps, Banner, type BannerProps, type BannerType, type BoxHeightProps, type BreakpointSize, type BreakpointsMap, Button, type ButtonProps, type ButtonSizeProps$1 as ButtonSizeProps, type ButtonThemeProps$1 as ButtonThemeProps, ButtonWithMenu, type ButtonWithMenuProps, 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, 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, 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, InlineAlert, type InlineAlertProps, Input, InputComboBox, type InputComboBoxOption, type InputComboBoxProps, InputInlineSelect, type InputInlineSelectOption, type InputInlineSelectProps, InputKeywordSearch, type InputKeywordSearchProps, type InputProps, InputSelect, type InputSelectProps, InputToggle, type InputToggleProps, IntegrationComingSoon, type IntegrationComingSoonProps, IntegrationHeaderSection, type IntegrationHeaderSectionProps, IntegrationLoadingTile, type IntegrationLoadingTileProps, IntegrationModalHeader, type IntegrationModalHeaderProps, IntegrationModalIcon, type IntegrationModalIconProps, IntegrationTile, type IntegrationTileProps, 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, MenuGroup, type MenuGroupProps, MenuItem, MenuItemInner, type MenuItemProps, MenuItemSeparator, type MenuItemTextThemeProps, type MenuProps, Modal, 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, 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, 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, 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, getParentPath, getPathSegment, growSubtle, imageTextIcon, infoFilledIcon, input, inputError, inputSelect, isMacLike, isSecureURL, isValidUrl, jsonIcon, labelText, loader as loaderAnimationData, macifyShortcut, mq, numberInput, queryStringIcon, rectangleRoundedIcon, replaceUnderscoreInString, richTextToolbarButton, richTextToolbarButtonActive, ripple, scrollbarStyles, settings, settingsIcon, skeletonLoading, slideInTtb, spinner as spinnerAnimationData, structurePanelIcon, supports, textInput, useBreakpoint, useCloseCurrentDrawer, useCurrentDrawer, useCurrentTab, useDrawer, useIconContext, useOutsideClick, useParameterShell, useShortcut, warningIcon, yesNoIcon };
23453
+ export { type ActionButtonsProps, AddButton, type AddButtonProps, AddListButton, type AddListButtonProps, type AddListButtonThemeProps, AnimationFile, type AnimationFileProps, type ArrowPositionProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, Badge, type BadgeProps, type BadgeSizeProps, type BadgeThemeProps, type BadgeThemeStyleProps, Banner, type BannerProps, type BannerType, 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, 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, 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, InlineAlert, type InlineAlertProps, 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, MenuGroup, type MenuGroupProps, MenuItem, MenuItemInner, type MenuItemProps, MenuItemSeparator, type MenuItemTextThemeProps, type MenuProps, Modal, 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, 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, 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, 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, getParentPath, getPathSegment, growSubtle, imageTextIcon, infoFilledIcon, input, inputError, inputSelect, isMacLike, isSecureURL, isValidUrl, jsonIcon, labelText, loader as loaderAnimationData, macifyShortcut, mq, numberInput, queryStringIcon, rectangleRoundedIcon, replaceUnderscoreInString, richTextToolbarButton, richTextToolbarButtonActive, ripple, scrollbarStyles, settings, settingsIcon, skeletonLoading, slideInTtb, spinner as spinnerAnimationData, structurePanelIcon, supports, textInput, useBreakpoint, useCloseCurrentDrawer, useCurrentDrawer, useCurrentTab, useDateTimePickerContext, useDrawer, useIconContext, useOutsideClick, useParameterShell, useShortcut, warningIcon, yesNoIcon };