@uniformdev/design-system 20.50.2-alpha.77 → 20.50.2-alpha.96

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
@@ -16,11 +16,10 @@ import { JsonSchema7Type } from 'zod-to-json-schema';
16
16
  import { InitialConfigType } from '@lexical/react/LexicalComposer';
17
17
  import { LinkParamValue, RichTextParamConfiguration } from '@uniformdev/canvas';
18
18
  export { RichTextBuiltInElement, RichTextBuiltInFormat } from '@uniformdev/canvas';
19
- import { Spread, SerializedElementNode, ElementNode, NodeKey, EditorConfig, DOMConversionMap, RangeSelection, SerializedEditorState, LexicalEditor } from 'lexical';
19
+ import { ElementNode, NodeKey, Spread, SerializedElementNode, EditorConfig, DOMConversionMap, RangeSelection, SerializedEditorState, LexicalEditor } from 'lexical';
20
20
  import * as _uniformdev_richtext from '@uniformdev/richtext';
21
21
  import { RichTextBuiltInElement } from '@uniformdev/richtext';
22
22
  export { richTextBuiltInElements, richTextBuiltInFormats } from '@uniformdev/richtext';
23
- export { Id as ToastId, toast } from 'react-toastify';
24
23
 
25
24
  /** @todo: line 144 onwards will be brought into a title, paragraph, list and link components */
26
25
  type ThemeProps = {
@@ -55,10 +54,12 @@ declare const useBreakpoint: () => BreakpointSize;
55
54
  * Media Query Helper Function
56
55
  * @function
57
56
  * @param {string} size - The responsive breakpoint value
58
- * @returns {string} - compiled media query e.g. (min-width: 640px)
57
+ * @param {'min' | 'max'} [bound='min'] - Whether to use min-width or max-width
58
+ * @returns {string} - compiled media query e.g. @media (min-width: 640px)
59
59
  * @example `${mq('md')} { background: red; }`
60
+ * @example `${mq('lg', 'max')} { overflow: hidden; }`
60
61
  */
61
- declare const mq: (size: BreakpointSize) => string;
62
+ declare const mq: (size: BreakpointSize, bound?: "min" | "max") => string;
62
63
  /**
63
64
  * Media Query Helper Function
64
65
  * @function
@@ -342,7 +343,7 @@ type AddListButtonProps = React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
342
343
  */
343
344
  declare const AddListButton: ({ buttonText, onButtonClick, disabled, icon, variant, theme, ...buttonProps }: AddListButtonProps) => _emotion_react_jsx_runtime.JSX.Element;
344
345
 
345
- type AvatarSizeProp = '2xs' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
346
+ type AvatarSizeProp = '2xs' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | '3xl';
346
347
  type AvatarProps = {
347
348
  /**
348
349
  * The src of the avatar.
@@ -367,6 +368,27 @@ type AvatarProps = {
367
368
  */
368
369
  declare const Avatar: ({ src, label, children, size, as, labelWithoutPortal, ...props }: AvatarProps) => _emotion_react_jsx_runtime.JSX.Element;
369
370
 
371
+ /** Canonical width tokens for each `Avatar` `size` (single source of truth for rem values). */
372
+ declare const AVATAR_SIZE_2XS = "1rem";
373
+ declare const AVATAR_SIZE_XS = "1.5rem";
374
+ declare const AVATAR_SIZE_SM = "2rem";
375
+ declare const AVATAR_SIZE_MD = "2.5rem";
376
+ declare const AVATAR_SIZE_LG = "3rem";
377
+ declare const AVATAR_SIZE_XL = "4rem";
378
+ declare const AVATAR_SIZE_2XL = "5rem";
379
+ /** Largest step (6rem ≈ 96px when root font size is 16px). */
380
+ declare const AVATAR_SIZE_3XL = "6rem";
381
+ declare const avatarStyles: _emotion_react.SerializedStyles;
382
+ declare const avatarImageStyles: _emotion_react.SerializedStyles;
383
+ declare const avatarSize2xsStyles: _emotion_react.SerializedStyles;
384
+ declare const avatarSizeXsStyles: _emotion_react.SerializedStyles;
385
+ declare const avatarSizeSmStyles: _emotion_react.SerializedStyles;
386
+ declare const avatarSizeMdStyles: _emotion_react.SerializedStyles;
387
+ declare const avatarSizeLgStyles: _emotion_react.SerializedStyles;
388
+ declare const avatarSizeXlStyles: _emotion_react.SerializedStyles;
389
+ declare const avatarSize2xlStyles: _emotion_react.SerializedStyles;
390
+ declare const avatarSize3xlStyles: _emotion_react.SerializedStyles;
391
+
370
392
  interface AvatarGroupProps extends React.HTMLAttributes<HTMLDivElement> {
371
393
  /**
372
394
  * The maximum number of avatars to show. This must be 2 or more.
@@ -2761,6 +2783,14 @@ type KeyValueInputProps<TValue extends string = string> = {
2761
2783
  onChange: (icon: string) => void;
2762
2784
  disabled?: boolean;
2763
2785
  }) => ReactNode;
2786
+ /**
2787
+ * When true, keys and values are treated as fully independent: typing a key
2788
+ * does not autofill the value, and multi-line paste lines without a comma
2789
+ * are imported as keys with empty values rather than mirroring key into value.
2790
+ * Use for inputs where the value has no logical relation to the key
2791
+ * (e.g. HTTP header name/value pairs).
2792
+ */
2793
+ independentKeyValue?: boolean;
2764
2794
  };
2765
2795
  /**
2766
2796
  * A component to render a sortable key-value input
@@ -2769,7 +2799,7 @@ type KeyValueInputProps<TValue extends string = string> = {
2769
2799
  * return <KeyValueInput value={value} onChange={setValue} />
2770
2800
  * @deprecated This component is in beta, name and props are subject to change without a major version
2771
2801
  */
2772
- declare const KeyValueInput: <TValue extends string = string>({ value, onChange, label, newItemDefault, keyLabel, valueLabel, iconLabel, keyInfoPopover, valueInfoPopover, iconInfoPopover, disabled, errors, onFocusChange, showIconColumn, renderIconSelector, }: KeyValueInputProps<TValue>) => _emotion_react_jsx_runtime.JSX.Element;
2802
+ declare const KeyValueInput: <TValue extends string = string>({ value, onChange, label, newItemDefault, keyLabel, valueLabel, iconLabel, keyInfoPopover, valueInfoPopover, iconInfoPopover, disabled, errors, onFocusChange, showIconColumn, renderIconSelector, independentKeyValue, }: KeyValueInputProps<TValue>) => _emotion_react_jsx_runtime.JSX.Element;
2773
2803
 
2774
2804
  interface DropdownStyleMenuTriggerProps extends ButtonHTMLAttributes<HTMLButtonElement> {
2775
2805
  children: React.ReactNode;
@@ -3528,6 +3558,41 @@ declare const ModalDialog: React$1.ForwardRefExoticComponent<Omit<ModalDialogPro
3528
3558
  declare const ModalPortalContext: React$1.Context<HTMLElement | null>;
3529
3559
  declare function useModalPortalContainer(): HTMLElement | null;
3530
3560
 
3561
+ /**
3562
+ * Tracks the stack of currently open native `<dialog>` elements that have been
3563
+ * promoted to the browser's top layer via `HTMLDialogElement.showModal()`.
3564
+ *
3565
+ * Anything portalled to `document.body` is rendered behind any top-layer
3566
+ * dialog, which means toasts (whose Base UI portal defaults to `body`) would
3567
+ * be hidden behind an open modal. By keeping a shared stack here we can hand
3568
+ * the topmost dialog to `BaseToast.Portal`'s `container` prop and have toasts
3569
+ * portal _into_ that dialog while it is open, then fall back to `body` when no
3570
+ * modal is on screen.
3571
+ *
3572
+ * The stack supports nested modals — each `Modal` registers on mount /
3573
+ * `showModal()` and unregisters on cleanup, and listeners always receive the
3574
+ * topmost (last-pushed) entry.
3575
+ */
3576
+ /**
3577
+ * Push a dialog element onto the stack. Intended to be called by `Modal`
3578
+ * immediately after `showModal()` so the dialog can become the active toast
3579
+ * portal target.
3580
+ */
3581
+ declare const pushTopLayerDialog: (dialog: HTMLDialogElement) => void;
3582
+ /**
3583
+ * Remove a dialog element from the stack. Safe to call even if the dialog is
3584
+ * not currently in the stack (no-op in that case).
3585
+ */
3586
+ declare const popTopLayerDialog: (dialog: HTMLDialogElement) => void;
3587
+ /**
3588
+ * Subscribe to changes to the topmost open dialog. The listener is invoked
3589
+ * immediately with the current top (or `null` if no dialog is open) so
3590
+ * subscribers don't need a separate initial read.
3591
+ *
3592
+ * @returns A teardown function that removes the listener.
3593
+ */
3594
+ declare const subscribeTopLayerDialog: (listener: (top: HTMLDialogElement | null) => void) => (() => void);
3595
+
3531
3596
  /** Props for {@link ObjectGridContainer}. */
3532
3597
  type ObjectGridContainerProps = {
3533
3598
  /** Number of columns in the grid, passed to CSS `repeat()`.
@@ -5400,16 +5465,143 @@ type TileTitleProps = {
5400
5465
  } & HTMLAttributes<HTMLSpanElement>;
5401
5466
  declare const TileText: ({ as, children, ...props }: TileTitleProps) => _emotion_react_jsx_runtime.JSX.Element;
5402
5467
 
5468
+ /**
5469
+ * Identifier returned by `toast.*` calls. Kept as `string | number` for
5470
+ * backwards compatibility with the previous react-toastify `Id` type that
5471
+ * several consumers store in `useRef<number | string>`. Internally the
5472
+ * underlying Base UI manager always uses `string`.
5473
+ */
5474
+ type ToastId = string | number;
5475
+ /**
5476
+ * The shape consumers can store on a toast via the `data` field. Recognised
5477
+ * by the default `<ToastList>` renderer to render either a progress bar or
5478
+ * an inline Undo affordance, while keeping the imperative `toast.*` API
5479
+ * unchanged for the rest of the codebase.
5480
+ */
5481
+ type ToastData = {
5482
+ /** Progress-bar toast (used by `CopyValuesToLocales`). */
5483
+ kind: 'progress';
5484
+ /** Label rendered above the progress bar. */
5485
+ label: React__default.ReactNode;
5486
+ /** Completion ratio in the closed interval [0, 1]. */
5487
+ progress: number;
5488
+ } | {
5489
+ /** Toast with an inline 'Undo' button (used by the InlineAI popovers). */
5490
+ kind: 'undoable';
5491
+ /** Description rendered next to the Undo button. */
5492
+ description: React__default.ReactNode;
5493
+ /** Invoked when the user clicks the Undo button. */
5494
+ onUndo: () => void;
5495
+ /** Custom label for the Undo button. */
5496
+ undoLabel?: string;
5497
+ };
5498
+ /**
5499
+ * Per-call options accepted by every `toast.*` method. The shape mirrors the
5500
+ * legacy react-toastify options the design system used to forward.
5501
+ */
5502
+ type ToastOptions = {
5503
+ /**
5504
+ * Time in milliseconds before the toast is auto-dismissed. Pass `false` to
5505
+ * keep the toast open until it is dismissed manually (maps to Base UI's
5506
+ * `timeout: 0`).
5507
+ */
5508
+ autoClose?: number | false;
5509
+ /**
5510
+ * Stable id for the toast. When provided, calling a toast method again with
5511
+ * the same id updates the existing toast in place (and refreshes its
5512
+ * auto-dismiss timer) instead of stacking a new one. Useful for deduping
5513
+ * toasts triggered by repeated user actions.
5514
+ */
5515
+ toastId?: string;
5516
+ };
5517
+ /**
5518
+ * Promise-toast options accepted by `toast.promise`. Each handler may be a
5519
+ * static description string or a function that receives the resolved value /
5520
+ * rejection error and returns a description. All three keys are optional to
5521
+ * mirror react-toastify's behaviour where any unset state simply rendered an
5522
+ * empty toast (or none at all when the promise settled fast enough).
5523
+ */
5524
+ type ToastPromiseOptions<TValue, TError = unknown> = {
5525
+ /** Description shown while the promise is pending. */
5526
+ pending?: React__default.ReactNode;
5527
+ /** Description shown when the promise resolves. */
5528
+ success?: React__default.ReactNode | ((value: TValue) => React__default.ReactNode);
5529
+ /** Description shown when the promise rejects. */
5530
+ error?: React__default.ReactNode | ((error: TError) => React__default.ReactNode);
5531
+ };
5532
+ /**
5533
+ * Patch shape accepted by `toast.update`. A subset of Base UI's
5534
+ * `ToastManagerUpdateOptions<ToastData>` that consumers actually use.
5535
+ */
5536
+ type ToastUpdate = {
5537
+ type?: string;
5538
+ description?: React__default.ReactNode;
5539
+ timeout?: number;
5540
+ data?: ToastData;
5541
+ };
5542
+ /**
5543
+ * Imperative API for showing toasts from anywhere in the app. Mirrors the
5544
+ * historical react-toastify surface (`toast`, `.success`, `.error`, `.info`,
5545
+ * `.warning`, `.loading`, `.dismiss`, `.update`, `.done`, `.promise`) so the
5546
+ * ~200 existing call sites continue to work unchanged. Internally delegates
5547
+ * to the singleton Base UI `toastManager` mounted by `<ToastContainer />`.
5548
+ */
5549
+ declare const toast: ((description: React__default.ReactNode, options?: ToastOptions) => ToastId) & {
5550
+ success: (description: React__default.ReactNode, options?: ToastOptions) => ToastId;
5551
+ error: (description: React__default.ReactNode, options?: ToastOptions) => ToastId;
5552
+ info: (description: React__default.ReactNode, options?: ToastOptions) => ToastId;
5553
+ warning: (description: React__default.ReactNode, options?: ToastOptions) => ToastId;
5554
+ loading: (description: React__default.ReactNode) => ToastId;
5555
+ dismiss: (id?: ToastId) => void;
5556
+ update: (id: ToastId, patch: ToastUpdate) => void;
5557
+ /**
5558
+ * Closes the toast. Carried forward from the react-toastify API where
5559
+ * `done()` ended a `loading` toast — Base UI has no separate concept,
5560
+ * so this is an alias for `dismiss(id)`.
5561
+ */
5562
+ done: (id: ToastId) => void;
5563
+ /**
5564
+ * Wraps an async operation in a 3-state toast (loading / success / error).
5565
+ * Accepts either a `Promise` or a thunk returning a `Promise` to match the
5566
+ * historical react-toastify usage. The optional `TError` type argument
5567
+ * narrows the parameter type of the `error` callback for call sites that
5568
+ * historically supplied an explicit error type (e.g. `toast.promise<void, Error>`).
5569
+ *
5570
+ * Unlike Base UI's built-in `toastManager.promise`, this implementation
5571
+ * skips rendering toasts for states whose option is `undefined`. This
5572
+ * preserves the legacy react-toastify behaviour many call sites depend on
5573
+ * (e.g. save-draft flows omit `pending`/`success` and only want a toast
5574
+ * when the operation fails).
5575
+ */
5576
+ promise: <TValue, TError = unknown>(input: Promise<TValue> | (() => Promise<TValue>), options: ToastPromiseOptions<TValue, TError>) => Promise<TValue>;
5577
+ };
5403
5578
  type ToastContainerProps = {
5579
+ /**
5580
+ * Maximum number of toasts visible at once. Older toasts are dismissed when
5581
+ * the limit is exceeded.
5582
+ * @default 4
5583
+ */
5404
5584
  limit?: number;
5405
- /** sets the auto close delay in seconds normal: 5 seconds, medium: 8 seconds, long: 10 seconds
5585
+ /**
5586
+ * Default auto-close duration applied to every toast that does not specify
5587
+ * its own `autoClose` option.
5588
+ * - `'normal'` — 5 seconds
5589
+ * - `'medium'` — 8 seconds
5590
+ * - `'long'` — 10 seconds
5406
5591
  * @default 'normal'
5407
5592
  */
5408
5593
  autoCloseDelay?: 'normal' | 'medium' | 'long';
5409
5594
  };
5410
5595
  /**
5411
- * A component to render toasts in your app. This component is supposed to be used just once in your app. Typically inside _app.tsx
5412
- * @example <App><ToastContainer autoCloseDelay="normal" /></App>
5596
+ * Renders the global toast viewport. Intended to be mounted exactly once near
5597
+ * the root of the app (typically in `_app.tsx`).
5598
+ *
5599
+ * @example
5600
+ * ```tsx
5601
+ * <App>
5602
+ * <ToastContainer autoCloseDelay="normal" />
5603
+ * </App>
5604
+ * ```
5413
5605
  */
5414
5606
  declare const ToastContainer: ({ limit, autoCloseDelay }: ToastContainerProps) => _emotion_react_jsx_runtime.JSX.Element;
5415
5607
 
@@ -5436,4 +5628,4 @@ declare const StatusBullet: ({ status, hideText, size, message, compact, ...prop
5436
5628
 
5437
5629
  declare const actionBarVisibilityStyles: _emotion_react.SerializedStyles;
5438
5630
 
5439
- export { type ActionButtonsProps, AddButton, type AddButtonProps, AddListButton, type AddListButtonProps, type AddListButtonThemeProps, AsideAndSectionLayout, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, Banner, type BannerProps, type BannerType, BetaDecorator, type BoxHeightProps, type BreakpointSize, type BreakpointsMap, Button, type ButtonProps, type ButtonSizeProps, type ButtonSoftThemeProps, type ButtonThemeProps, ButtonWithMenu, type ButtonWithMenuProps, Calendar, type CalendarCellCss, type CalendarProps, type CalendarStyles, 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, Container, type ContainerProps, type ConvertComboBoxGroupsToSelectableGroupsOptions, Counter, type CounterBgColors, type CounterIconColors, type CounterProps, CreateTeamIntegrationTile, type CreateTeamIntegrationTileProps, CurrentDrawerContext, DashedBox, type DashedBoxProps, DateTimePicker, type DateTimePickerProps, DateTimePickerSummary, type DateTimePickerValue, DateTimePickerVariant, DebouncedInputKeywordSearch, type DebouncedInputKeywordSearchProps, DescriptionList, type DescriptionListProps, Details, type DetailsProps, DismissibleChipAction, DragHandle, type DraggableHandleProps, Drawer, DrawerContent, type DrawerContentProps, type DrawerContextValue, type DrawerItem, type DrawerProps, DrawerProvider, DrawerRenderer, type DrawerRendererItemProps, type DrawerRendererProps, type DrawersRegistryRecord, DropdownStyleMenuTrigger, type DropdownStyleMenuTriggerProps, EditTeamIntegrationTile, type EditTeamIntegrationTileProps, ErrorMessage, type ErrorMessageProps, FieldMessage, type FieldMessageProps, Fieldset, type FieldsetProps, FilterChip, FlexiCard, FlexiCardTitle, type GroupedOption, Heading, type HeadingProps, 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, IntegrationLoadingTile, type IntegrationLoadingTileProps, IntegrationModalHeader, type IntegrationModalHeaderProps, IntegrationModalIcon, type IntegrationModalIconProps, IntegrationTile, type IntegrationTileProps, type IsoDateString, type IsoDateTimeString, type IsoTimeString, JsonEditor, type JsonEditorProps, KeyValueInput, type KeyValueInputProps, type KeyValueItem, Label, LabelLeadingIcon, type LabelLeadingIconProps, type LabelOption, type LabelProps, LabelsQuickFilter, type LabelsQuickFilterItem, type LabelsQuickFilterProps, Legend, type LegendProps, type LevelProps, LimitsBar, type LimitsBarProps, Link, LinkButton, type LinkButtonProps, type LinkColorProps, LinkList, type LinkListProps, type LinkManagerWithRefType, LinkNode, type LinkProps, LinkTile, type LinkTileWithRefProps, LinkWithRef, LoadingCardSkeleton, LoadingIcon, type LoadingIconProps, LoadingIndicator, LoadingOverlay, type LoadingOverlayProps, Menu, MenuButton, type MenuButtonProp, MenuGroup, type MenuGroupProps, MenuItem, MenuItemEmptyIcon, MenuItemIcon, MenuItemInner, type MenuItemProps, MenuItemSeparator, type MenuItemTextThemeProps, type MenuProps, MenuSelect, MenuThreeDots, type MenuThreeDotsProps, Modal, ModalDialog, type ModalDialogProps, ModalPortalContext, type ModalProps, MultilineChip, type MultilineChipProps, ObjectGridContainer, type ObjectGridContainerProps, ObjectGridItem, ObjectGridItemCardCover, type ObjectGridItemCardCoverProps, ObjectGridItemCover, ObjectGridItemCoverButton, type ObjectGridItemCoverButtonProps, type ObjectGridItemCoverProps, ObjectGridItemHeading, ObjectGridItemIconWithTooltip, type ObjectGridItemIconWithTooltipProps, ObjectGridItemLoadingSkeleton, type ObjectGridItemProps, type ObjectGridItemTitleProps, ObjectItemLoadingSkeleton, type ObjectItemLoadingSkeletonProps, ObjectListItem, ObjectListItemContainer, ObjectListItemCover, type ObjectListItemCoverProps, ObjectListItemHeading, type ObjectListItemHeadingProps, type ObjectListItemProps, ObjectListSubText, PageHeaderSection, type PageHeaderSectionProps, Pagination, Paragraph, type ParagraphProps, ParameterActionButton, type ParameterActionButtonProps, ParameterDrawerHeader, type ParameterDrawerHeaderProps, ParameterGroup, type ParameterGroupProps, ParameterImage, ParameterImageInner, ParameterImagePreview, type ParameterImageProps, ParameterInput, ParameterInputInner, type ParameterInputProps, ParameterLabel, type ParameterLabelProps, ParameterLabels, ParameterLabelsInner, ParameterLink, ParameterLinkInner, type ParameterLinkProps, ParameterMenuButton, type ParameterMenuButtonProps, ParameterMultiSelect, ParameterMultiSelectInner, type ParameterMultiSelectOption, type ParameterMultiSelectProps, ParameterNameAndPublicIdInput, type ParameterNameAndPublicIdInputProps, ParameterNumberSlider, ParameterNumberSliderInner, type ParameterNumberSliderProps, ParameterOverrideMarker, ParameterRichText, ParameterRichTextInner, type ParameterRichTextInnerProps, type ParameterRichTextProps, ParameterSelect, ParameterSelectInner, type ParameterSelectProps, ParameterSelectSlider, ParameterSelectSliderInner, type ParameterSelectSliderProps, ParameterShell, ParameterShellContext, ParameterShellPlaceholder, type ParameterShellProps, ParameterTextarea, ParameterTextareaInner, type ParameterTextareaProps, ParameterToggle, ParameterToggleInner, type ParameterToggleProps, Popover, PopoverBody, type PopoverBodyProps, type PopoverProps, type PopoverStore, ProgressBar, type ProgressBarProps, ProgressList, ProgressListItem, type ProgressListItemProps, type ProgressListProps, QuickFilter, type QuickFilterSelectedItem, type RegisterDrawerProps, ResolveIcon, type ResolveIconProps, ResponsiveTableContainer, 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, type ShortcutReference, Skeleton, type SkeletonProps, Slider, SliderLabels, type SliderLabelsProps, type SliderOption, type SliderProps, Spinner, StackedModal, type StackedModalProps, StackedModalStep, type StackedModalStepProps, StatusBullet, type StatusBulletProps, type StatusTypeProps, type StepTransitionState, SuccessMessage, type SuccessMessageProps, Swatch, SwatchComboBox, SwatchComboBoxLabelStyles, SwatchLabel, type SwatchLabelProps, SwatchLabelRemoveButton, SwatchLabelTooltip, type SwatchProps, type SwatchSize, type SwatchVariant, Switch, type SwitchProps, TAKEOVER_STACK_ID, TabButton, TabButtonGroup, type TabButtonGroupProps, 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, type TickMark, 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, actionBarVisibilityStyles, addPathSegmentToPathname, borderTopIcon, breakpoints, button, buttonAccentAltDark, buttonAccentAltDarkOutline, buttonDestructive, buttonDisabled, buttonGhost, buttonGhostDestructive, buttonGhostUnimportant, buttonPrimary, buttonPrimaryInvert, buttonRippleEffect, buttonSecondary, buttonSecondaryInvert, buttonSoftAccentPrimary, buttonSoftAlt, buttonSoftDestructive, buttonSoftPrimary, buttonSoftTertiary, buttonTertiary, buttonTertiaryOutline, buttonUnimportant, canvasAlertIcon, cardIcon, chatIcon, convertComboBoxGroupsToSelectableGroups, cq, customIcons, debounce, extractParameterProps, fadeIn, fadeInBottom, fadeInLtr, fadeInRtl, fadeInTop, fadeOutBottom, fullWidthScreenIcon, getButtonSize, getButtonStyles, getComboBoxSelectedSelectableGroups, getDrawerAttributes, getFormattedShortcut, getParentPath, getPathSegment, growSubtle, imageTextIcon, infoFilledIcon, input, inputError, inputSelect, isSecureURL, isValidUrl, jsonIcon, labelText, mq, numberInput, prefersReducedMotion, queryStringIcon, rectangleRoundedIcon, replaceUnderscoreInString, richTextToolbarButton, richTextToolbarButtonActive, ripple, scrollbarStyles, settings, settingsIcon, skeletonLoading, slideInRtl, slideInTtb, spin, structurePanelIcon, supports, swatchColors, swatchVariant, textInput, uniformAiIcon, uniformComponentIcon, uniformComponentPatternIcon, uniformCompositionPatternIcon, uniformConditionalValuesIcon, uniformContentTypeIcon, uniformEntryIcon, uniformEntryPatternIcon, uniformLocaleDisabledIcon, uniformLocaleIcon, uniformStatusDraftIcon, uniformStatusModifiedIcon, uniformStatusPublishedIcon, uniformUsageStatusIcon, useBreakpoint, useButtonStyles, useCloseCurrentDrawer, useCurrentDrawer, useCurrentTab, useDateTimePickerContext, useDrawer, useIconContext, useImageLoadFallback, useIsSubmenuTriggerMode, useModalPortalContainer, useOutsideClick, useParameterShell, usePopoverComponentContext, useRichTextToolbarState, useShortcut, useStackedModal, functionalColors as utilityColors, warningIcon, yesNoIcon, zigZag, zigZagThick };
5631
+ export { AVATAR_SIZE_2XL, AVATAR_SIZE_2XS, AVATAR_SIZE_3XL, AVATAR_SIZE_LG, AVATAR_SIZE_MD, AVATAR_SIZE_SM, AVATAR_SIZE_XL, AVATAR_SIZE_XS, type ActionButtonsProps, AddButton, type AddButtonProps, AddListButton, type AddListButtonProps, type AddListButtonThemeProps, AsideAndSectionLayout, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, Banner, type BannerProps, type BannerType, BetaDecorator, type BoxHeightProps, type BreakpointSize, type BreakpointsMap, Button, type ButtonProps, type ButtonSizeProps, type ButtonSoftThemeProps, type ButtonThemeProps, ButtonWithMenu, type ButtonWithMenuProps, Calendar, type CalendarCellCss, type CalendarProps, type CalendarStyles, 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, Container, type ContainerProps, type ConvertComboBoxGroupsToSelectableGroupsOptions, Counter, type CounterBgColors, type CounterIconColors, type CounterProps, CreateTeamIntegrationTile, type CreateTeamIntegrationTileProps, CurrentDrawerContext, DashedBox, type DashedBoxProps, DateTimePicker, type DateTimePickerProps, DateTimePickerSummary, type DateTimePickerValue, DateTimePickerVariant, DebouncedInputKeywordSearch, type DebouncedInputKeywordSearchProps, DescriptionList, type DescriptionListProps, Details, type DetailsProps, DismissibleChipAction, DragHandle, type DraggableHandleProps, Drawer, DrawerContent, type DrawerContentProps, type DrawerContextValue, type DrawerItem, type DrawerProps, DrawerProvider, DrawerRenderer, type DrawerRendererItemProps, type DrawerRendererProps, type DrawersRegistryRecord, DropdownStyleMenuTrigger, type DropdownStyleMenuTriggerProps, EditTeamIntegrationTile, type EditTeamIntegrationTileProps, ErrorMessage, type ErrorMessageProps, FieldMessage, type FieldMessageProps, Fieldset, type FieldsetProps, FilterChip, FlexiCard, FlexiCardTitle, type GroupedOption, Heading, type HeadingProps, 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, IntegrationLoadingTile, type IntegrationLoadingTileProps, IntegrationModalHeader, type IntegrationModalHeaderProps, IntegrationModalIcon, type IntegrationModalIconProps, IntegrationTile, type IntegrationTileProps, type IsoDateString, type IsoDateTimeString, type IsoTimeString, JsonEditor, type JsonEditorProps, KeyValueInput, type KeyValueInputProps, type KeyValueItem, Label, LabelLeadingIcon, type LabelLeadingIconProps, type LabelOption, type LabelProps, LabelsQuickFilter, type LabelsQuickFilterItem, type LabelsQuickFilterProps, Legend, type LegendProps, type LevelProps, LimitsBar, type LimitsBarProps, Link, LinkButton, type LinkButtonProps, type LinkColorProps, LinkList, type LinkListProps, type LinkManagerWithRefType, LinkNode, type LinkProps, LinkTile, type LinkTileWithRefProps, LinkWithRef, LoadingCardSkeleton, LoadingIcon, type LoadingIconProps, LoadingIndicator, LoadingOverlay, type LoadingOverlayProps, Menu, MenuButton, type MenuButtonProp, MenuGroup, type MenuGroupProps, MenuItem, MenuItemEmptyIcon, MenuItemIcon, MenuItemInner, type MenuItemProps, MenuItemSeparator, type MenuItemTextThemeProps, type MenuProps, MenuSelect, MenuThreeDots, type MenuThreeDotsProps, Modal, ModalDialog, type ModalDialogProps, ModalPortalContext, type ModalProps, MultilineChip, type MultilineChipProps, ObjectGridContainer, type ObjectGridContainerProps, ObjectGridItem, ObjectGridItemCardCover, type ObjectGridItemCardCoverProps, ObjectGridItemCover, ObjectGridItemCoverButton, type ObjectGridItemCoverButtonProps, type ObjectGridItemCoverProps, ObjectGridItemHeading, ObjectGridItemIconWithTooltip, type ObjectGridItemIconWithTooltipProps, ObjectGridItemLoadingSkeleton, type ObjectGridItemProps, type ObjectGridItemTitleProps, ObjectItemLoadingSkeleton, type ObjectItemLoadingSkeletonProps, ObjectListItem, ObjectListItemContainer, ObjectListItemCover, type ObjectListItemCoverProps, ObjectListItemHeading, type ObjectListItemHeadingProps, type ObjectListItemProps, ObjectListSubText, PageHeaderSection, type PageHeaderSectionProps, Pagination, Paragraph, type ParagraphProps, ParameterActionButton, type ParameterActionButtonProps, ParameterDrawerHeader, type ParameterDrawerHeaderProps, ParameterGroup, type ParameterGroupProps, ParameterImage, ParameterImageInner, ParameterImagePreview, type ParameterImageProps, ParameterInput, ParameterInputInner, type ParameterInputProps, ParameterLabel, type ParameterLabelProps, ParameterLabels, ParameterLabelsInner, ParameterLink, ParameterLinkInner, type ParameterLinkProps, ParameterMenuButton, type ParameterMenuButtonProps, ParameterMultiSelect, ParameterMultiSelectInner, type ParameterMultiSelectOption, type ParameterMultiSelectProps, ParameterNameAndPublicIdInput, type ParameterNameAndPublicIdInputProps, ParameterNumberSlider, ParameterNumberSliderInner, type ParameterNumberSliderProps, ParameterOverrideMarker, ParameterRichText, ParameterRichTextInner, type ParameterRichTextInnerProps, type ParameterRichTextProps, ParameterSelect, ParameterSelectInner, type ParameterSelectProps, ParameterSelectSlider, ParameterSelectSliderInner, type ParameterSelectSliderProps, ParameterShell, ParameterShellContext, ParameterShellPlaceholder, type ParameterShellProps, ParameterTextarea, ParameterTextareaInner, type ParameterTextareaProps, ParameterToggle, ParameterToggleInner, type ParameterToggleProps, Popover, PopoverBody, type PopoverBodyProps, type PopoverProps, type PopoverStore, ProgressBar, type ProgressBarProps, ProgressList, ProgressListItem, type ProgressListItemProps, type ProgressListProps, QuickFilter, type QuickFilterSelectedItem, type RegisterDrawerProps, ResolveIcon, type ResolveIconProps, ResponsiveTableContainer, 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, type ShortcutReference, Skeleton, type SkeletonProps, Slider, SliderLabels, type SliderLabelsProps, type SliderOption, type SliderProps, Spinner, StackedModal, type StackedModalProps, StackedModalStep, type StackedModalStepProps, StatusBullet, type StatusBulletProps, type StatusTypeProps, type StepTransitionState, SuccessMessage, type SuccessMessageProps, Swatch, SwatchComboBox, SwatchComboBoxLabelStyles, SwatchLabel, type SwatchLabelProps, SwatchLabelRemoveButton, SwatchLabelTooltip, type SwatchProps, type SwatchSize, type SwatchVariant, Switch, type SwitchProps, TAKEOVER_STACK_ID, TabButton, TabButtonGroup, type TabButtonGroupProps, 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, type TickMark, Tile, TileContainer, type TileContainerProps, type TileProps, TileText, type TileTitleProps, ToastContainer, type ToastContainerProps, type ToastData, type ToastId, type ToastOptions, type ToastPromiseOptions, type ToastUpdate, Tooltip, type TooltipProps, TwoColumnLayout, type TwoColumnLayoutProps, UniformBadge, UniformLogo, UniformLogoLarge, type UniformLogoProps, type UseShortcutOptions, type UseShortcutResult, VerticalRhythm, WarningMessage, type WarningMessageProps, accessibleHidden, actionBarVisibilityStyles, addPathSegmentToPathname, avatarImageStyles, avatarSize2xlStyles, avatarSize2xsStyles, avatarSize3xlStyles, avatarSizeLgStyles, avatarSizeMdStyles, avatarSizeSmStyles, avatarSizeXlStyles, avatarSizeXsStyles, avatarStyles, borderTopIcon, breakpoints, button, buttonAccentAltDark, buttonAccentAltDarkOutline, buttonDestructive, buttonDisabled, buttonGhost, buttonGhostDestructive, buttonGhostUnimportant, buttonPrimary, buttonPrimaryInvert, buttonRippleEffect, buttonSecondary, buttonSecondaryInvert, buttonSoftAccentPrimary, buttonSoftAlt, buttonSoftDestructive, buttonSoftPrimary, buttonSoftTertiary, buttonTertiary, buttonTertiaryOutline, buttonUnimportant, canvasAlertIcon, cardIcon, chatIcon, convertComboBoxGroupsToSelectableGroups, cq, customIcons, debounce, extractParameterProps, fadeIn, fadeInBottom, fadeInLtr, fadeInRtl, fadeInTop, fadeOutBottom, fullWidthScreenIcon, getButtonSize, getButtonStyles, getComboBoxSelectedSelectableGroups, getDrawerAttributes, getFormattedShortcut, getParentPath, getPathSegment, growSubtle, imageTextIcon, infoFilledIcon, input, inputError, inputSelect, isSecureURL, isValidUrl, jsonIcon, labelText, mq, numberInput, popTopLayerDialog, prefersReducedMotion, pushTopLayerDialog, queryStringIcon, rectangleRoundedIcon, replaceUnderscoreInString, richTextToolbarButton, richTextToolbarButtonActive, ripple, scrollbarStyles, settings, settingsIcon, skeletonLoading, slideInRtl, slideInTtb, spin, structurePanelIcon, subscribeTopLayerDialog, supports, swatchColors, swatchVariant, textInput, toast, uniformAiIcon, uniformComponentIcon, uniformComponentPatternIcon, uniformCompositionPatternIcon, uniformConditionalValuesIcon, uniformContentTypeIcon, uniformEntryIcon, uniformEntryPatternIcon, uniformLocaleDisabledIcon, uniformLocaleIcon, uniformStatusDraftIcon, uniformStatusModifiedIcon, uniformStatusPublishedIcon, uniformUsageStatusIcon, useBreakpoint, useButtonStyles, useCloseCurrentDrawer, useCurrentDrawer, useCurrentTab, useDateTimePickerContext, useDrawer, useIconContext, useImageLoadFallback, useIsSubmenuTriggerMode, useModalPortalContainer, useOutsideClick, useParameterShell, usePopoverComponentContext, useRichTextToolbarState, useShortcut, useStackedModal, functionalColors as utilityColors, warningIcon, yesNoIcon, zigZag, zigZagThick };
package/dist/index.d.ts CHANGED
@@ -16,11 +16,10 @@ import { JsonSchema7Type } from 'zod-to-json-schema';
16
16
  import { InitialConfigType } from '@lexical/react/LexicalComposer';
17
17
  import { LinkParamValue, RichTextParamConfiguration } from '@uniformdev/canvas';
18
18
  export { RichTextBuiltInElement, RichTextBuiltInFormat } from '@uniformdev/canvas';
19
- import { Spread, SerializedElementNode, ElementNode, NodeKey, EditorConfig, DOMConversionMap, RangeSelection, SerializedEditorState, LexicalEditor } from 'lexical';
19
+ import { ElementNode, NodeKey, Spread, SerializedElementNode, EditorConfig, DOMConversionMap, RangeSelection, SerializedEditorState, LexicalEditor } from 'lexical';
20
20
  import * as _uniformdev_richtext from '@uniformdev/richtext';
21
21
  import { RichTextBuiltInElement } from '@uniformdev/richtext';
22
22
  export { richTextBuiltInElements, richTextBuiltInFormats } from '@uniformdev/richtext';
23
- export { Id as ToastId, toast } from 'react-toastify';
24
23
 
25
24
  /** @todo: line 144 onwards will be brought into a title, paragraph, list and link components */
26
25
  type ThemeProps = {
@@ -55,10 +54,12 @@ declare const useBreakpoint: () => BreakpointSize;
55
54
  * Media Query Helper Function
56
55
  * @function
57
56
  * @param {string} size - The responsive breakpoint value
58
- * @returns {string} - compiled media query e.g. (min-width: 640px)
57
+ * @param {'min' | 'max'} [bound='min'] - Whether to use min-width or max-width
58
+ * @returns {string} - compiled media query e.g. @media (min-width: 640px)
59
59
  * @example `${mq('md')} { background: red; }`
60
+ * @example `${mq('lg', 'max')} { overflow: hidden; }`
60
61
  */
61
- declare const mq: (size: BreakpointSize) => string;
62
+ declare const mq: (size: BreakpointSize, bound?: "min" | "max") => string;
62
63
  /**
63
64
  * Media Query Helper Function
64
65
  * @function
@@ -342,7 +343,7 @@ type AddListButtonProps = React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
342
343
  */
343
344
  declare const AddListButton: ({ buttonText, onButtonClick, disabled, icon, variant, theme, ...buttonProps }: AddListButtonProps) => _emotion_react_jsx_runtime.JSX.Element;
344
345
 
345
- type AvatarSizeProp = '2xs' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
346
+ type AvatarSizeProp = '2xs' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | '3xl';
346
347
  type AvatarProps = {
347
348
  /**
348
349
  * The src of the avatar.
@@ -367,6 +368,27 @@ type AvatarProps = {
367
368
  */
368
369
  declare const Avatar: ({ src, label, children, size, as, labelWithoutPortal, ...props }: AvatarProps) => _emotion_react_jsx_runtime.JSX.Element;
369
370
 
371
+ /** Canonical width tokens for each `Avatar` `size` (single source of truth for rem values). */
372
+ declare const AVATAR_SIZE_2XS = "1rem";
373
+ declare const AVATAR_SIZE_XS = "1.5rem";
374
+ declare const AVATAR_SIZE_SM = "2rem";
375
+ declare const AVATAR_SIZE_MD = "2.5rem";
376
+ declare const AVATAR_SIZE_LG = "3rem";
377
+ declare const AVATAR_SIZE_XL = "4rem";
378
+ declare const AVATAR_SIZE_2XL = "5rem";
379
+ /** Largest step (6rem ≈ 96px when root font size is 16px). */
380
+ declare const AVATAR_SIZE_3XL = "6rem";
381
+ declare const avatarStyles: _emotion_react.SerializedStyles;
382
+ declare const avatarImageStyles: _emotion_react.SerializedStyles;
383
+ declare const avatarSize2xsStyles: _emotion_react.SerializedStyles;
384
+ declare const avatarSizeXsStyles: _emotion_react.SerializedStyles;
385
+ declare const avatarSizeSmStyles: _emotion_react.SerializedStyles;
386
+ declare const avatarSizeMdStyles: _emotion_react.SerializedStyles;
387
+ declare const avatarSizeLgStyles: _emotion_react.SerializedStyles;
388
+ declare const avatarSizeXlStyles: _emotion_react.SerializedStyles;
389
+ declare const avatarSize2xlStyles: _emotion_react.SerializedStyles;
390
+ declare const avatarSize3xlStyles: _emotion_react.SerializedStyles;
391
+
370
392
  interface AvatarGroupProps extends React.HTMLAttributes<HTMLDivElement> {
371
393
  /**
372
394
  * The maximum number of avatars to show. This must be 2 or more.
@@ -2761,6 +2783,14 @@ type KeyValueInputProps<TValue extends string = string> = {
2761
2783
  onChange: (icon: string) => void;
2762
2784
  disabled?: boolean;
2763
2785
  }) => ReactNode;
2786
+ /**
2787
+ * When true, keys and values are treated as fully independent: typing a key
2788
+ * does not autofill the value, and multi-line paste lines without a comma
2789
+ * are imported as keys with empty values rather than mirroring key into value.
2790
+ * Use for inputs where the value has no logical relation to the key
2791
+ * (e.g. HTTP header name/value pairs).
2792
+ */
2793
+ independentKeyValue?: boolean;
2764
2794
  };
2765
2795
  /**
2766
2796
  * A component to render a sortable key-value input
@@ -2769,7 +2799,7 @@ type KeyValueInputProps<TValue extends string = string> = {
2769
2799
  * return <KeyValueInput value={value} onChange={setValue} />
2770
2800
  * @deprecated This component is in beta, name and props are subject to change without a major version
2771
2801
  */
2772
- declare const KeyValueInput: <TValue extends string = string>({ value, onChange, label, newItemDefault, keyLabel, valueLabel, iconLabel, keyInfoPopover, valueInfoPopover, iconInfoPopover, disabled, errors, onFocusChange, showIconColumn, renderIconSelector, }: KeyValueInputProps<TValue>) => _emotion_react_jsx_runtime.JSX.Element;
2802
+ declare const KeyValueInput: <TValue extends string = string>({ value, onChange, label, newItemDefault, keyLabel, valueLabel, iconLabel, keyInfoPopover, valueInfoPopover, iconInfoPopover, disabled, errors, onFocusChange, showIconColumn, renderIconSelector, independentKeyValue, }: KeyValueInputProps<TValue>) => _emotion_react_jsx_runtime.JSX.Element;
2773
2803
 
2774
2804
  interface DropdownStyleMenuTriggerProps extends ButtonHTMLAttributes<HTMLButtonElement> {
2775
2805
  children: React.ReactNode;
@@ -3528,6 +3558,41 @@ declare const ModalDialog: React$1.ForwardRefExoticComponent<Omit<ModalDialogPro
3528
3558
  declare const ModalPortalContext: React$1.Context<HTMLElement | null>;
3529
3559
  declare function useModalPortalContainer(): HTMLElement | null;
3530
3560
 
3561
+ /**
3562
+ * Tracks the stack of currently open native `<dialog>` elements that have been
3563
+ * promoted to the browser's top layer via `HTMLDialogElement.showModal()`.
3564
+ *
3565
+ * Anything portalled to `document.body` is rendered behind any top-layer
3566
+ * dialog, which means toasts (whose Base UI portal defaults to `body`) would
3567
+ * be hidden behind an open modal. By keeping a shared stack here we can hand
3568
+ * the topmost dialog to `BaseToast.Portal`'s `container` prop and have toasts
3569
+ * portal _into_ that dialog while it is open, then fall back to `body` when no
3570
+ * modal is on screen.
3571
+ *
3572
+ * The stack supports nested modals — each `Modal` registers on mount /
3573
+ * `showModal()` and unregisters on cleanup, and listeners always receive the
3574
+ * topmost (last-pushed) entry.
3575
+ */
3576
+ /**
3577
+ * Push a dialog element onto the stack. Intended to be called by `Modal`
3578
+ * immediately after `showModal()` so the dialog can become the active toast
3579
+ * portal target.
3580
+ */
3581
+ declare const pushTopLayerDialog: (dialog: HTMLDialogElement) => void;
3582
+ /**
3583
+ * Remove a dialog element from the stack. Safe to call even if the dialog is
3584
+ * not currently in the stack (no-op in that case).
3585
+ */
3586
+ declare const popTopLayerDialog: (dialog: HTMLDialogElement) => void;
3587
+ /**
3588
+ * Subscribe to changes to the topmost open dialog. The listener is invoked
3589
+ * immediately with the current top (or `null` if no dialog is open) so
3590
+ * subscribers don't need a separate initial read.
3591
+ *
3592
+ * @returns A teardown function that removes the listener.
3593
+ */
3594
+ declare const subscribeTopLayerDialog: (listener: (top: HTMLDialogElement | null) => void) => (() => void);
3595
+
3531
3596
  /** Props for {@link ObjectGridContainer}. */
3532
3597
  type ObjectGridContainerProps = {
3533
3598
  /** Number of columns in the grid, passed to CSS `repeat()`.
@@ -5400,16 +5465,143 @@ type TileTitleProps = {
5400
5465
  } & HTMLAttributes<HTMLSpanElement>;
5401
5466
  declare const TileText: ({ as, children, ...props }: TileTitleProps) => _emotion_react_jsx_runtime.JSX.Element;
5402
5467
 
5468
+ /**
5469
+ * Identifier returned by `toast.*` calls. Kept as `string | number` for
5470
+ * backwards compatibility with the previous react-toastify `Id` type that
5471
+ * several consumers store in `useRef<number | string>`. Internally the
5472
+ * underlying Base UI manager always uses `string`.
5473
+ */
5474
+ type ToastId = string | number;
5475
+ /**
5476
+ * The shape consumers can store on a toast via the `data` field. Recognised
5477
+ * by the default `<ToastList>` renderer to render either a progress bar or
5478
+ * an inline Undo affordance, while keeping the imperative `toast.*` API
5479
+ * unchanged for the rest of the codebase.
5480
+ */
5481
+ type ToastData = {
5482
+ /** Progress-bar toast (used by `CopyValuesToLocales`). */
5483
+ kind: 'progress';
5484
+ /** Label rendered above the progress bar. */
5485
+ label: React__default.ReactNode;
5486
+ /** Completion ratio in the closed interval [0, 1]. */
5487
+ progress: number;
5488
+ } | {
5489
+ /** Toast with an inline 'Undo' button (used by the InlineAI popovers). */
5490
+ kind: 'undoable';
5491
+ /** Description rendered next to the Undo button. */
5492
+ description: React__default.ReactNode;
5493
+ /** Invoked when the user clicks the Undo button. */
5494
+ onUndo: () => void;
5495
+ /** Custom label for the Undo button. */
5496
+ undoLabel?: string;
5497
+ };
5498
+ /**
5499
+ * Per-call options accepted by every `toast.*` method. The shape mirrors the
5500
+ * legacy react-toastify options the design system used to forward.
5501
+ */
5502
+ type ToastOptions = {
5503
+ /**
5504
+ * Time in milliseconds before the toast is auto-dismissed. Pass `false` to
5505
+ * keep the toast open until it is dismissed manually (maps to Base UI's
5506
+ * `timeout: 0`).
5507
+ */
5508
+ autoClose?: number | false;
5509
+ /**
5510
+ * Stable id for the toast. When provided, calling a toast method again with
5511
+ * the same id updates the existing toast in place (and refreshes its
5512
+ * auto-dismiss timer) instead of stacking a new one. Useful for deduping
5513
+ * toasts triggered by repeated user actions.
5514
+ */
5515
+ toastId?: string;
5516
+ };
5517
+ /**
5518
+ * Promise-toast options accepted by `toast.promise`. Each handler may be a
5519
+ * static description string or a function that receives the resolved value /
5520
+ * rejection error and returns a description. All three keys are optional to
5521
+ * mirror react-toastify's behaviour where any unset state simply rendered an
5522
+ * empty toast (or none at all when the promise settled fast enough).
5523
+ */
5524
+ type ToastPromiseOptions<TValue, TError = unknown> = {
5525
+ /** Description shown while the promise is pending. */
5526
+ pending?: React__default.ReactNode;
5527
+ /** Description shown when the promise resolves. */
5528
+ success?: React__default.ReactNode | ((value: TValue) => React__default.ReactNode);
5529
+ /** Description shown when the promise rejects. */
5530
+ error?: React__default.ReactNode | ((error: TError) => React__default.ReactNode);
5531
+ };
5532
+ /**
5533
+ * Patch shape accepted by `toast.update`. A subset of Base UI's
5534
+ * `ToastManagerUpdateOptions<ToastData>` that consumers actually use.
5535
+ */
5536
+ type ToastUpdate = {
5537
+ type?: string;
5538
+ description?: React__default.ReactNode;
5539
+ timeout?: number;
5540
+ data?: ToastData;
5541
+ };
5542
+ /**
5543
+ * Imperative API for showing toasts from anywhere in the app. Mirrors the
5544
+ * historical react-toastify surface (`toast`, `.success`, `.error`, `.info`,
5545
+ * `.warning`, `.loading`, `.dismiss`, `.update`, `.done`, `.promise`) so the
5546
+ * ~200 existing call sites continue to work unchanged. Internally delegates
5547
+ * to the singleton Base UI `toastManager` mounted by `<ToastContainer />`.
5548
+ */
5549
+ declare const toast: ((description: React__default.ReactNode, options?: ToastOptions) => ToastId) & {
5550
+ success: (description: React__default.ReactNode, options?: ToastOptions) => ToastId;
5551
+ error: (description: React__default.ReactNode, options?: ToastOptions) => ToastId;
5552
+ info: (description: React__default.ReactNode, options?: ToastOptions) => ToastId;
5553
+ warning: (description: React__default.ReactNode, options?: ToastOptions) => ToastId;
5554
+ loading: (description: React__default.ReactNode) => ToastId;
5555
+ dismiss: (id?: ToastId) => void;
5556
+ update: (id: ToastId, patch: ToastUpdate) => void;
5557
+ /**
5558
+ * Closes the toast. Carried forward from the react-toastify API where
5559
+ * `done()` ended a `loading` toast — Base UI has no separate concept,
5560
+ * so this is an alias for `dismiss(id)`.
5561
+ */
5562
+ done: (id: ToastId) => void;
5563
+ /**
5564
+ * Wraps an async operation in a 3-state toast (loading / success / error).
5565
+ * Accepts either a `Promise` or a thunk returning a `Promise` to match the
5566
+ * historical react-toastify usage. The optional `TError` type argument
5567
+ * narrows the parameter type of the `error` callback for call sites that
5568
+ * historically supplied an explicit error type (e.g. `toast.promise<void, Error>`).
5569
+ *
5570
+ * Unlike Base UI's built-in `toastManager.promise`, this implementation
5571
+ * skips rendering toasts for states whose option is `undefined`. This
5572
+ * preserves the legacy react-toastify behaviour many call sites depend on
5573
+ * (e.g. save-draft flows omit `pending`/`success` and only want a toast
5574
+ * when the operation fails).
5575
+ */
5576
+ promise: <TValue, TError = unknown>(input: Promise<TValue> | (() => Promise<TValue>), options: ToastPromiseOptions<TValue, TError>) => Promise<TValue>;
5577
+ };
5403
5578
  type ToastContainerProps = {
5579
+ /**
5580
+ * Maximum number of toasts visible at once. Older toasts are dismissed when
5581
+ * the limit is exceeded.
5582
+ * @default 4
5583
+ */
5404
5584
  limit?: number;
5405
- /** sets the auto close delay in seconds normal: 5 seconds, medium: 8 seconds, long: 10 seconds
5585
+ /**
5586
+ * Default auto-close duration applied to every toast that does not specify
5587
+ * its own `autoClose` option.
5588
+ * - `'normal'` — 5 seconds
5589
+ * - `'medium'` — 8 seconds
5590
+ * - `'long'` — 10 seconds
5406
5591
  * @default 'normal'
5407
5592
  */
5408
5593
  autoCloseDelay?: 'normal' | 'medium' | 'long';
5409
5594
  };
5410
5595
  /**
5411
- * A component to render toasts in your app. This component is supposed to be used just once in your app. Typically inside _app.tsx
5412
- * @example <App><ToastContainer autoCloseDelay="normal" /></App>
5596
+ * Renders the global toast viewport. Intended to be mounted exactly once near
5597
+ * the root of the app (typically in `_app.tsx`).
5598
+ *
5599
+ * @example
5600
+ * ```tsx
5601
+ * <App>
5602
+ * <ToastContainer autoCloseDelay="normal" />
5603
+ * </App>
5604
+ * ```
5413
5605
  */
5414
5606
  declare const ToastContainer: ({ limit, autoCloseDelay }: ToastContainerProps) => _emotion_react_jsx_runtime.JSX.Element;
5415
5607
 
@@ -5436,4 +5628,4 @@ declare const StatusBullet: ({ status, hideText, size, message, compact, ...prop
5436
5628
 
5437
5629
  declare const actionBarVisibilityStyles: _emotion_react.SerializedStyles;
5438
5630
 
5439
- export { type ActionButtonsProps, AddButton, type AddButtonProps, AddListButton, type AddListButtonProps, type AddListButtonThemeProps, AsideAndSectionLayout, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, Banner, type BannerProps, type BannerType, BetaDecorator, type BoxHeightProps, type BreakpointSize, type BreakpointsMap, Button, type ButtonProps, type ButtonSizeProps, type ButtonSoftThemeProps, type ButtonThemeProps, ButtonWithMenu, type ButtonWithMenuProps, Calendar, type CalendarCellCss, type CalendarProps, type CalendarStyles, 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, Container, type ContainerProps, type ConvertComboBoxGroupsToSelectableGroupsOptions, Counter, type CounterBgColors, type CounterIconColors, type CounterProps, CreateTeamIntegrationTile, type CreateTeamIntegrationTileProps, CurrentDrawerContext, DashedBox, type DashedBoxProps, DateTimePicker, type DateTimePickerProps, DateTimePickerSummary, type DateTimePickerValue, DateTimePickerVariant, DebouncedInputKeywordSearch, type DebouncedInputKeywordSearchProps, DescriptionList, type DescriptionListProps, Details, type DetailsProps, DismissibleChipAction, DragHandle, type DraggableHandleProps, Drawer, DrawerContent, type DrawerContentProps, type DrawerContextValue, type DrawerItem, type DrawerProps, DrawerProvider, DrawerRenderer, type DrawerRendererItemProps, type DrawerRendererProps, type DrawersRegistryRecord, DropdownStyleMenuTrigger, type DropdownStyleMenuTriggerProps, EditTeamIntegrationTile, type EditTeamIntegrationTileProps, ErrorMessage, type ErrorMessageProps, FieldMessage, type FieldMessageProps, Fieldset, type FieldsetProps, FilterChip, FlexiCard, FlexiCardTitle, type GroupedOption, Heading, type HeadingProps, 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, IntegrationLoadingTile, type IntegrationLoadingTileProps, IntegrationModalHeader, type IntegrationModalHeaderProps, IntegrationModalIcon, type IntegrationModalIconProps, IntegrationTile, type IntegrationTileProps, type IsoDateString, type IsoDateTimeString, type IsoTimeString, JsonEditor, type JsonEditorProps, KeyValueInput, type KeyValueInputProps, type KeyValueItem, Label, LabelLeadingIcon, type LabelLeadingIconProps, type LabelOption, type LabelProps, LabelsQuickFilter, type LabelsQuickFilterItem, type LabelsQuickFilterProps, Legend, type LegendProps, type LevelProps, LimitsBar, type LimitsBarProps, Link, LinkButton, type LinkButtonProps, type LinkColorProps, LinkList, type LinkListProps, type LinkManagerWithRefType, LinkNode, type LinkProps, LinkTile, type LinkTileWithRefProps, LinkWithRef, LoadingCardSkeleton, LoadingIcon, type LoadingIconProps, LoadingIndicator, LoadingOverlay, type LoadingOverlayProps, Menu, MenuButton, type MenuButtonProp, MenuGroup, type MenuGroupProps, MenuItem, MenuItemEmptyIcon, MenuItemIcon, MenuItemInner, type MenuItemProps, MenuItemSeparator, type MenuItemTextThemeProps, type MenuProps, MenuSelect, MenuThreeDots, type MenuThreeDotsProps, Modal, ModalDialog, type ModalDialogProps, ModalPortalContext, type ModalProps, MultilineChip, type MultilineChipProps, ObjectGridContainer, type ObjectGridContainerProps, ObjectGridItem, ObjectGridItemCardCover, type ObjectGridItemCardCoverProps, ObjectGridItemCover, ObjectGridItemCoverButton, type ObjectGridItemCoverButtonProps, type ObjectGridItemCoverProps, ObjectGridItemHeading, ObjectGridItemIconWithTooltip, type ObjectGridItemIconWithTooltipProps, ObjectGridItemLoadingSkeleton, type ObjectGridItemProps, type ObjectGridItemTitleProps, ObjectItemLoadingSkeleton, type ObjectItemLoadingSkeletonProps, ObjectListItem, ObjectListItemContainer, ObjectListItemCover, type ObjectListItemCoverProps, ObjectListItemHeading, type ObjectListItemHeadingProps, type ObjectListItemProps, ObjectListSubText, PageHeaderSection, type PageHeaderSectionProps, Pagination, Paragraph, type ParagraphProps, ParameterActionButton, type ParameterActionButtonProps, ParameterDrawerHeader, type ParameterDrawerHeaderProps, ParameterGroup, type ParameterGroupProps, ParameterImage, ParameterImageInner, ParameterImagePreview, type ParameterImageProps, ParameterInput, ParameterInputInner, type ParameterInputProps, ParameterLabel, type ParameterLabelProps, ParameterLabels, ParameterLabelsInner, ParameterLink, ParameterLinkInner, type ParameterLinkProps, ParameterMenuButton, type ParameterMenuButtonProps, ParameterMultiSelect, ParameterMultiSelectInner, type ParameterMultiSelectOption, type ParameterMultiSelectProps, ParameterNameAndPublicIdInput, type ParameterNameAndPublicIdInputProps, ParameterNumberSlider, ParameterNumberSliderInner, type ParameterNumberSliderProps, ParameterOverrideMarker, ParameterRichText, ParameterRichTextInner, type ParameterRichTextInnerProps, type ParameterRichTextProps, ParameterSelect, ParameterSelectInner, type ParameterSelectProps, ParameterSelectSlider, ParameterSelectSliderInner, type ParameterSelectSliderProps, ParameterShell, ParameterShellContext, ParameterShellPlaceholder, type ParameterShellProps, ParameterTextarea, ParameterTextareaInner, type ParameterTextareaProps, ParameterToggle, ParameterToggleInner, type ParameterToggleProps, Popover, PopoverBody, type PopoverBodyProps, type PopoverProps, type PopoverStore, ProgressBar, type ProgressBarProps, ProgressList, ProgressListItem, type ProgressListItemProps, type ProgressListProps, QuickFilter, type QuickFilterSelectedItem, type RegisterDrawerProps, ResolveIcon, type ResolveIconProps, ResponsiveTableContainer, 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, type ShortcutReference, Skeleton, type SkeletonProps, Slider, SliderLabels, type SliderLabelsProps, type SliderOption, type SliderProps, Spinner, StackedModal, type StackedModalProps, StackedModalStep, type StackedModalStepProps, StatusBullet, type StatusBulletProps, type StatusTypeProps, type StepTransitionState, SuccessMessage, type SuccessMessageProps, Swatch, SwatchComboBox, SwatchComboBoxLabelStyles, SwatchLabel, type SwatchLabelProps, SwatchLabelRemoveButton, SwatchLabelTooltip, type SwatchProps, type SwatchSize, type SwatchVariant, Switch, type SwitchProps, TAKEOVER_STACK_ID, TabButton, TabButtonGroup, type TabButtonGroupProps, 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, type TickMark, 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, actionBarVisibilityStyles, addPathSegmentToPathname, borderTopIcon, breakpoints, button, buttonAccentAltDark, buttonAccentAltDarkOutline, buttonDestructive, buttonDisabled, buttonGhost, buttonGhostDestructive, buttonGhostUnimportant, buttonPrimary, buttonPrimaryInvert, buttonRippleEffect, buttonSecondary, buttonSecondaryInvert, buttonSoftAccentPrimary, buttonSoftAlt, buttonSoftDestructive, buttonSoftPrimary, buttonSoftTertiary, buttonTertiary, buttonTertiaryOutline, buttonUnimportant, canvasAlertIcon, cardIcon, chatIcon, convertComboBoxGroupsToSelectableGroups, cq, customIcons, debounce, extractParameterProps, fadeIn, fadeInBottom, fadeInLtr, fadeInRtl, fadeInTop, fadeOutBottom, fullWidthScreenIcon, getButtonSize, getButtonStyles, getComboBoxSelectedSelectableGroups, getDrawerAttributes, getFormattedShortcut, getParentPath, getPathSegment, growSubtle, imageTextIcon, infoFilledIcon, input, inputError, inputSelect, isSecureURL, isValidUrl, jsonIcon, labelText, mq, numberInput, prefersReducedMotion, queryStringIcon, rectangleRoundedIcon, replaceUnderscoreInString, richTextToolbarButton, richTextToolbarButtonActive, ripple, scrollbarStyles, settings, settingsIcon, skeletonLoading, slideInRtl, slideInTtb, spin, structurePanelIcon, supports, swatchColors, swatchVariant, textInput, uniformAiIcon, uniformComponentIcon, uniformComponentPatternIcon, uniformCompositionPatternIcon, uniformConditionalValuesIcon, uniformContentTypeIcon, uniformEntryIcon, uniformEntryPatternIcon, uniformLocaleDisabledIcon, uniformLocaleIcon, uniformStatusDraftIcon, uniformStatusModifiedIcon, uniformStatusPublishedIcon, uniformUsageStatusIcon, useBreakpoint, useButtonStyles, useCloseCurrentDrawer, useCurrentDrawer, useCurrentTab, useDateTimePickerContext, useDrawer, useIconContext, useImageLoadFallback, useIsSubmenuTriggerMode, useModalPortalContainer, useOutsideClick, useParameterShell, usePopoverComponentContext, useRichTextToolbarState, useShortcut, useStackedModal, functionalColors as utilityColors, warningIcon, yesNoIcon, zigZag, zigZagThick };
5631
+ export { AVATAR_SIZE_2XL, AVATAR_SIZE_2XS, AVATAR_SIZE_3XL, AVATAR_SIZE_LG, AVATAR_SIZE_MD, AVATAR_SIZE_SM, AVATAR_SIZE_XL, AVATAR_SIZE_XS, type ActionButtonsProps, AddButton, type AddButtonProps, AddListButton, type AddListButtonProps, type AddListButtonThemeProps, AsideAndSectionLayout, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, Banner, type BannerProps, type BannerType, BetaDecorator, type BoxHeightProps, type BreakpointSize, type BreakpointsMap, Button, type ButtonProps, type ButtonSizeProps, type ButtonSoftThemeProps, type ButtonThemeProps, ButtonWithMenu, type ButtonWithMenuProps, Calendar, type CalendarCellCss, type CalendarProps, type CalendarStyles, 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, Container, type ContainerProps, type ConvertComboBoxGroupsToSelectableGroupsOptions, Counter, type CounterBgColors, type CounterIconColors, type CounterProps, CreateTeamIntegrationTile, type CreateTeamIntegrationTileProps, CurrentDrawerContext, DashedBox, type DashedBoxProps, DateTimePicker, type DateTimePickerProps, DateTimePickerSummary, type DateTimePickerValue, DateTimePickerVariant, DebouncedInputKeywordSearch, type DebouncedInputKeywordSearchProps, DescriptionList, type DescriptionListProps, Details, type DetailsProps, DismissibleChipAction, DragHandle, type DraggableHandleProps, Drawer, DrawerContent, type DrawerContentProps, type DrawerContextValue, type DrawerItem, type DrawerProps, DrawerProvider, DrawerRenderer, type DrawerRendererItemProps, type DrawerRendererProps, type DrawersRegistryRecord, DropdownStyleMenuTrigger, type DropdownStyleMenuTriggerProps, EditTeamIntegrationTile, type EditTeamIntegrationTileProps, ErrorMessage, type ErrorMessageProps, FieldMessage, type FieldMessageProps, Fieldset, type FieldsetProps, FilterChip, FlexiCard, FlexiCardTitle, type GroupedOption, Heading, type HeadingProps, 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, IntegrationLoadingTile, type IntegrationLoadingTileProps, IntegrationModalHeader, type IntegrationModalHeaderProps, IntegrationModalIcon, type IntegrationModalIconProps, IntegrationTile, type IntegrationTileProps, type IsoDateString, type IsoDateTimeString, type IsoTimeString, JsonEditor, type JsonEditorProps, KeyValueInput, type KeyValueInputProps, type KeyValueItem, Label, LabelLeadingIcon, type LabelLeadingIconProps, type LabelOption, type LabelProps, LabelsQuickFilter, type LabelsQuickFilterItem, type LabelsQuickFilterProps, Legend, type LegendProps, type LevelProps, LimitsBar, type LimitsBarProps, Link, LinkButton, type LinkButtonProps, type LinkColorProps, LinkList, type LinkListProps, type LinkManagerWithRefType, LinkNode, type LinkProps, LinkTile, type LinkTileWithRefProps, LinkWithRef, LoadingCardSkeleton, LoadingIcon, type LoadingIconProps, LoadingIndicator, LoadingOverlay, type LoadingOverlayProps, Menu, MenuButton, type MenuButtonProp, MenuGroup, type MenuGroupProps, MenuItem, MenuItemEmptyIcon, MenuItemIcon, MenuItemInner, type MenuItemProps, MenuItemSeparator, type MenuItemTextThemeProps, type MenuProps, MenuSelect, MenuThreeDots, type MenuThreeDotsProps, Modal, ModalDialog, type ModalDialogProps, ModalPortalContext, type ModalProps, MultilineChip, type MultilineChipProps, ObjectGridContainer, type ObjectGridContainerProps, ObjectGridItem, ObjectGridItemCardCover, type ObjectGridItemCardCoverProps, ObjectGridItemCover, ObjectGridItemCoverButton, type ObjectGridItemCoverButtonProps, type ObjectGridItemCoverProps, ObjectGridItemHeading, ObjectGridItemIconWithTooltip, type ObjectGridItemIconWithTooltipProps, ObjectGridItemLoadingSkeleton, type ObjectGridItemProps, type ObjectGridItemTitleProps, ObjectItemLoadingSkeleton, type ObjectItemLoadingSkeletonProps, ObjectListItem, ObjectListItemContainer, ObjectListItemCover, type ObjectListItemCoverProps, ObjectListItemHeading, type ObjectListItemHeadingProps, type ObjectListItemProps, ObjectListSubText, PageHeaderSection, type PageHeaderSectionProps, Pagination, Paragraph, type ParagraphProps, ParameterActionButton, type ParameterActionButtonProps, ParameterDrawerHeader, type ParameterDrawerHeaderProps, ParameterGroup, type ParameterGroupProps, ParameterImage, ParameterImageInner, ParameterImagePreview, type ParameterImageProps, ParameterInput, ParameterInputInner, type ParameterInputProps, ParameterLabel, type ParameterLabelProps, ParameterLabels, ParameterLabelsInner, ParameterLink, ParameterLinkInner, type ParameterLinkProps, ParameterMenuButton, type ParameterMenuButtonProps, ParameterMultiSelect, ParameterMultiSelectInner, type ParameterMultiSelectOption, type ParameterMultiSelectProps, ParameterNameAndPublicIdInput, type ParameterNameAndPublicIdInputProps, ParameterNumberSlider, ParameterNumberSliderInner, type ParameterNumberSliderProps, ParameterOverrideMarker, ParameterRichText, ParameterRichTextInner, type ParameterRichTextInnerProps, type ParameterRichTextProps, ParameterSelect, ParameterSelectInner, type ParameterSelectProps, ParameterSelectSlider, ParameterSelectSliderInner, type ParameterSelectSliderProps, ParameterShell, ParameterShellContext, ParameterShellPlaceholder, type ParameterShellProps, ParameterTextarea, ParameterTextareaInner, type ParameterTextareaProps, ParameterToggle, ParameterToggleInner, type ParameterToggleProps, Popover, PopoverBody, type PopoverBodyProps, type PopoverProps, type PopoverStore, ProgressBar, type ProgressBarProps, ProgressList, ProgressListItem, type ProgressListItemProps, type ProgressListProps, QuickFilter, type QuickFilterSelectedItem, type RegisterDrawerProps, ResolveIcon, type ResolveIconProps, ResponsiveTableContainer, 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, type ShortcutReference, Skeleton, type SkeletonProps, Slider, SliderLabels, type SliderLabelsProps, type SliderOption, type SliderProps, Spinner, StackedModal, type StackedModalProps, StackedModalStep, type StackedModalStepProps, StatusBullet, type StatusBulletProps, type StatusTypeProps, type StepTransitionState, SuccessMessage, type SuccessMessageProps, Swatch, SwatchComboBox, SwatchComboBoxLabelStyles, SwatchLabel, type SwatchLabelProps, SwatchLabelRemoveButton, SwatchLabelTooltip, type SwatchProps, type SwatchSize, type SwatchVariant, Switch, type SwitchProps, TAKEOVER_STACK_ID, TabButton, TabButtonGroup, type TabButtonGroupProps, 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, type TickMark, Tile, TileContainer, type TileContainerProps, type TileProps, TileText, type TileTitleProps, ToastContainer, type ToastContainerProps, type ToastData, type ToastId, type ToastOptions, type ToastPromiseOptions, type ToastUpdate, Tooltip, type TooltipProps, TwoColumnLayout, type TwoColumnLayoutProps, UniformBadge, UniformLogo, UniformLogoLarge, type UniformLogoProps, type UseShortcutOptions, type UseShortcutResult, VerticalRhythm, WarningMessage, type WarningMessageProps, accessibleHidden, actionBarVisibilityStyles, addPathSegmentToPathname, avatarImageStyles, avatarSize2xlStyles, avatarSize2xsStyles, avatarSize3xlStyles, avatarSizeLgStyles, avatarSizeMdStyles, avatarSizeSmStyles, avatarSizeXlStyles, avatarSizeXsStyles, avatarStyles, borderTopIcon, breakpoints, button, buttonAccentAltDark, buttonAccentAltDarkOutline, buttonDestructive, buttonDisabled, buttonGhost, buttonGhostDestructive, buttonGhostUnimportant, buttonPrimary, buttonPrimaryInvert, buttonRippleEffect, buttonSecondary, buttonSecondaryInvert, buttonSoftAccentPrimary, buttonSoftAlt, buttonSoftDestructive, buttonSoftPrimary, buttonSoftTertiary, buttonTertiary, buttonTertiaryOutline, buttonUnimportant, canvasAlertIcon, cardIcon, chatIcon, convertComboBoxGroupsToSelectableGroups, cq, customIcons, debounce, extractParameterProps, fadeIn, fadeInBottom, fadeInLtr, fadeInRtl, fadeInTop, fadeOutBottom, fullWidthScreenIcon, getButtonSize, getButtonStyles, getComboBoxSelectedSelectableGroups, getDrawerAttributes, getFormattedShortcut, getParentPath, getPathSegment, growSubtle, imageTextIcon, infoFilledIcon, input, inputError, inputSelect, isSecureURL, isValidUrl, jsonIcon, labelText, mq, numberInput, popTopLayerDialog, prefersReducedMotion, pushTopLayerDialog, queryStringIcon, rectangleRoundedIcon, replaceUnderscoreInString, richTextToolbarButton, richTextToolbarButtonActive, ripple, scrollbarStyles, settings, settingsIcon, skeletonLoading, slideInRtl, slideInTtb, spin, structurePanelIcon, subscribeTopLayerDialog, supports, swatchColors, swatchVariant, textInput, toast, uniformAiIcon, uniformComponentIcon, uniformComponentPatternIcon, uniformCompositionPatternIcon, uniformConditionalValuesIcon, uniformContentTypeIcon, uniformEntryIcon, uniformEntryPatternIcon, uniformLocaleDisabledIcon, uniformLocaleIcon, uniformStatusDraftIcon, uniformStatusModifiedIcon, uniformStatusPublishedIcon, uniformUsageStatusIcon, useBreakpoint, useButtonStyles, useCloseCurrentDrawer, useCurrentDrawer, useCurrentTab, useDateTimePickerContext, useDrawer, useIconContext, useImageLoadFallback, useIsSubmenuTriggerMode, useModalPortalContainer, useOutsideClick, useParameterShell, usePopoverComponentContext, useRichTextToolbarState, useShortcut, useStackedModal, functionalColors as utilityColors, warningIcon, yesNoIcon, zigZag, zigZagThick };