@uniformdev/design-system 20.59.1 → 20.60.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
@@ -3411,120 +3411,272 @@ declare const Modal: React__default.ForwardRefExoticComponent<Omit<ModalProps, "
3411
3411
  type ModalDialogProps = Omit<ModalProps, 'width'>;
3412
3412
  declare const ModalDialog: React$1.ForwardRefExoticComponent<Omit<ModalDialogProps, "ref"> & React$1.RefAttributes<HTMLDialogElement>>;
3413
3413
 
3414
+ /** Props for {@link ObjectGridContainer}. */
3414
3415
  type ObjectGridContainerProps = {
3415
- /** The number of columns in the grid
3416
+ /** Number of columns in the grid, passed to CSS `repeat()`.
3417
+ * Accepts a number (e.g. `3`) or any valid `repeat()` track value (e.g. `'auto-fill, minmax(200px, 1fr)'`).
3416
3418
  * @default 3
3417
- * the expected values should follow css repeat() function values
3418
- * see https://developer.mozilla.org/en-US/docs/Web/CSS/repeat#syntax for examples
3419
+ * @see https://developer.mozilla.org/en-US/docs/Web/CSS/repeat#syntax
3419
3420
  */
3420
3421
  gridCount?: string | number;
3421
- /** The children to render */
3422
+ /** Grid item children typically {@link ObjectGridItem} or {@link ObjectGridItemLoadingSkeleton} elements. */
3422
3423
  children: React.ReactNode;
3423
3424
  };
3425
+ /**
3426
+ * CSS Grid container for laying out {@link ObjectGridItem} elements in a responsive grid.
3427
+ * Supports forwarding a ref to the underlying `<div>`.
3428
+ *
3429
+ * @example
3430
+ * ```tsx
3431
+ * <ObjectGridContainer gridCount={4}>
3432
+ * <ObjectGridItem header={<ObjectGridItemHeading heading="Item" />} cover={...} />
3433
+ * </ObjectGridContainer>
3434
+ * ```
3435
+ */
3424
3436
  declare const ObjectGridContainer: React$1.ForwardRefExoticComponent<ObjectGridContainerProps & React$1.RefAttributes<HTMLDivElement>>;
3425
3437
 
3438
+ /** Shared props for heading components used across list and grid Object items. */
3426
3439
  type ObjectHeadingProps = {
3427
- /** sets the heading value */
3440
+ /** The heading content to display. */
3428
3441
  heading: ReactNode;
3429
- /** Slot that renders a component before the heading */
3442
+ /** Slot rendered before the heading text (e.g. an icon or status indicator). */
3430
3443
  beforeHeadingSlot?: ReactNode;
3431
- /** Slot that renders a component after the heading */
3444
+ /** Slot rendered after the heading text (e.g. a badge or chip). */
3432
3445
  afterHeadingSlot?: ReactNode;
3433
- /** sets the heading tooltip */
3446
+ /** Tooltip text shown on hover when the heading is truncated. */
3434
3447
  tooltip?: string;
3435
3448
  };
3449
+ /**
3450
+ * Shared props for Object item components ({@link ObjectListItem} and {@link ObjectGridItem}).
3451
+ * Defines the common slot-based API for composing item layouts.
3452
+ */
3436
3453
  type ObjectItemProps = {
3437
- /** Slot for the header component, we recommend using <ObjectGridItemHeading /> or <ObjectListItemHeading /> */
3454
+ /** Slot for the header use {@link ObjectGridItemHeading} or {@link ObjectListItemHeading}. */
3438
3455
  header: ReactNode;
3439
- /** Slot for the cover component, we recommend using <ObjectGridItemCoverButton />, <ObjectGridItemCover /> or <ObjectListItemCover /> */
3456
+ /** Slot for the cover media use {@link ObjectGridItemCoverButton}, {@link ObjectGridItemCover}, or {@link ObjectListItemCover}. */
3440
3457
  cover: ReactNode;
3441
- /** Slot for the right component */
3458
+ /** Slot rendered on the right side of the item (e.g. timestamps, status badges). */
3442
3459
  rightSlot?: React.ReactNode;
3443
- /** Slot for the menu items, <MenuItem /> component should be used here */
3460
+ /** Slot for the left component */
3461
+ leftSlot?: React.ReactNode;
3462
+ /** Slot for context menu items — pass `<MenuItem />` elements here. When provided, a three-dot menu trigger is rendered automatically. */
3444
3463
  menuItems?: React.ReactNode;
3445
- /** If the item is selected */
3464
+ /** Whether the item is visually marked as selected via `aria-selected`. */
3446
3465
  isSelected?: boolean;
3447
- /** Slot for the children */
3466
+ /** Additional child content rendered below the header (only visible in `renderAs="multi"` mode for list items). */
3448
3467
  children?: React.ReactNode;
3449
3468
  };
3450
3469
 
3451
- type ObjectGridItemProps = ObjectItemProps & {
3470
+ /** Props for {@link ObjectGridItem}. */
3471
+ type ObjectGridItemProps = Omit<ObjectItemProps, 'leftSlot'> & {
3472
+ /** Whether the item is visually marked as selected. */
3452
3473
  isSelected?: boolean;
3453
- /** sets the menu test id
3454
- * @default object-grid-item-menu-btn
3474
+ /** Override the `data-testid` on the context menu trigger button.
3475
+ * @default 'object-grid-item-menu-btn'
3455
3476
  */
3456
3477
  menuTestId?: string;
3457
3478
  } & HTMLAttributes<HTMLDivElement>;
3479
+ /**
3480
+ * A card-style grid item for displaying an object with cover media, heading, subtitle, and optional context menu.
3481
+ *
3482
+ * When an `onClick` handler is provided, the entire card becomes clickable with hover styles.
3483
+ * Menu and right-slot interactions use `stopPropagation` to prevent triggering the card click.
3484
+ * Wrap items with {@link ObjectGridContainer} for responsive grid layout.
3485
+ *
3486
+ * @example
3487
+ * ```tsx
3488
+ * <ObjectGridItem
3489
+ * cover={<ObjectGridItemCover imageUrl="/thumb.jpg" icon={uniformComposition} />}
3490
+ * header={<ObjectGridItemHeading heading="My composition" tooltip="My composition" />}
3491
+ * rightSlot={<StatusBullet status="published" />}
3492
+ * menuItems={<MenuItem onClick={onEdit}>Edit</MenuItem>}
3493
+ * onClick={handleOpen}
3494
+ * />
3495
+ * ```
3496
+ */
3458
3497
  declare const ObjectGridItem: ({ header, cover, rightSlot, menuItems, isSelected, children, menuTestId, ...props }: ObjectGridItemProps) => _emotion_react_jsx_runtime.JSX.Element;
3459
3498
 
3499
+ /**
3500
+ * Props for {@link ObjectGridItemCardCover}.
3501
+ * Pass **either** an `icon` or an `imageUrl` — the component renders the appropriate variant.
3502
+ */
3460
3503
  type ObjectGridItemCardCoverProps = {
3461
- icon: IconType;
3462
- iconColor?: 'currentColor' | 'accent-dark' | 'accent-alt-dark';
3504
+ /** Icon to render as the card cover. */ icon: IconType;
3505
+ /** Color applied to the icon. */ iconColor?: 'currentColor' | 'accent-dark' | 'accent-alt-dark';
3463
3506
  } | {
3464
- imageUrl: string;
3465
- srcSet?: string;
3466
- alt?: string;
3467
- errorFallbackSrc?: string;
3507
+ /** URL of the image to render as the card cover. */ imageUrl: string;
3508
+ /** Optional `srcSet` for responsive images. */ srcSet?: string;
3509
+ /** Alt text for the image. */ alt?: string;
3510
+ /** Fallback image URL shown when the primary image fails to load. */ errorFallbackSrc?: string;
3468
3511
  };
3512
+ /**
3513
+ * Low-level cover media for a grid card — renders either a lazy-loaded image
3514
+ * or an icon with a ghost background. Typically used via {@link ObjectGridItemCover}
3515
+ * rather than directly.
3516
+ */
3469
3517
  declare const ObjectGridItemCardCover: (props: ObjectGridItemCardCoverProps) => _emotion_react_jsx_runtime.JSX.Element | undefined;
3518
+ /**
3519
+ * Props for {@link ObjectGridItemCover}.
3520
+ * Extends {@link ObjectGridItemCardCoverProps} with overlay slots at each corner.
3521
+ */
3470
3522
  type ObjectGridItemCoverProps = {
3471
- /** The left slot to render components */
3523
+ /** Slot positioned at the top-left of the cover (e.g. a selection checkbox). */
3472
3524
  coverSlotLeft?: React.ReactNode;
3473
- /** The right slot to render components */
3525
+ /** Slot positioned at the top-right of the cover (e.g. a favourite icon). */
3474
3526
  coverSlotRight?: React.ReactNode;
3475
- /** The bottom left slot to render components */
3527
+ /** Slot positioned at the bottom-left of the cover. */
3476
3528
  coverSlotBottomLeft?: React.ReactNode;
3477
- /** The bottom right slot to render components */
3529
+ /** Slot positioned at the bottom-right of the cover (e.g. a status chip). */
3478
3530
  coverSlotBottomRight?: React.ReactNode;
3479
3531
  } & ObjectGridItemCardCoverProps;
3532
+ /**
3533
+ * Grid item cover with corner overlay slots for badges, checkboxes, or status indicators.
3534
+ * Wraps {@link ObjectGridItemCardCover} and positions slot content at each corner.
3535
+ *
3536
+ * @example
3537
+ * ```tsx
3538
+ * <ObjectGridItemCover
3539
+ * imageUrl="/thumb.jpg"
3540
+ * coverSlotRight={<Chip text="New" />}
3541
+ * />
3542
+ * ```
3543
+ */
3480
3544
  declare const ObjectGridItemCover: ({ coverSlotLeft, coverSlotRight, coverSlotBottomLeft, coverSlotBottomRight, ...props }: ObjectGridItemCoverProps) => _emotion_react_jsx_runtime.JSX.Element;
3545
+ /**
3546
+ * Props for {@link ObjectGridItemCoverButton}.
3547
+ * The `coverSlotBottomRight` is reserved for the selection chip and cannot be overridden.
3548
+ */
3481
3549
  type ObjectGridItemCoverButtonProps = {
3550
+ /** Unique identifier passed back to `onSelection` when the cover is clicked. */
3482
3551
  id: string;
3552
+ /** Callback fired when the cover button is clicked. */
3483
3553
  onSelection: (id: string) => void;
3554
+ /** Whether this cover is currently selected — renders a chip in the bottom-right corner. */
3484
3555
  isSelected?: boolean;
3556
+ /** Label text shown on the selection chip.
3557
+ * @default 'selected'
3558
+ */
3485
3559
  selectedText?: string;
3486
3560
  } & Omit<ObjectGridItemCoverProps, 'coverSlotBottomRight'> & ObjectGridItemCardCoverProps;
3561
+ /**
3562
+ * Clickable variant of {@link ObjectGridItemCover} that acts as a selection toggle.
3563
+ * When selected, a chip with `selectedText` appears in the bottom-right corner.
3564
+ * Click events are stopped from propagating to parent elements.
3565
+ *
3566
+ * @example
3567
+ * ```tsx
3568
+ * <ObjectGridItemCoverButton
3569
+ * id={item.id}
3570
+ * imageUrl={item.thumbnail}
3571
+ * isSelected={selectedId === item.id}
3572
+ * onSelection={setSelectedId}
3573
+ * />
3574
+ * ```
3575
+ */
3487
3576
  declare const ObjectGridItemCoverButton: ({ id, isSelected, onSelection, selectedText, ...props }: ObjectGridItemCoverButtonProps) => _emotion_react_jsx_runtime.JSX.Element;
3488
3577
 
3578
+ /** Props for {@link ObjectGridItemHeading}. */
3489
3579
  type ObjectGridItemTitleProps = ObjectHeadingProps & HTMLAttributes<HTMLDivElement>;
3580
+ /**
3581
+ * Heading component designed for use inside {@link ObjectGridItem}'s `header` slot.
3582
+ *
3583
+ * Automatically detects when the heading text is truncated (via a `ResizeObserver`)
3584
+ * and shows the `tooltip` on hover so users can still read the full title.
3585
+ * Click events on `beforeHeadingSlot` and `afterHeadingSlot` are stopped from propagating
3586
+ * to the parent grid item.
3587
+ *
3588
+ * @example
3589
+ * ```tsx
3590
+ * <ObjectGridItemHeading
3591
+ * heading="My composition"
3592
+ * tooltip="My composition"
3593
+ * beforeHeadingSlot={<Icon icon={uniformComposition} />}
3594
+ * />
3595
+ * ```
3596
+ */
3490
3597
  declare const ObjectGridItemHeading: ({ heading, beforeHeadingSlot, afterHeadingSlot, tooltip, ...props }: ObjectGridItemTitleProps) => _emotion_react_jsx_runtime.JSX.Element;
3491
3598
 
3599
+ /** Props for {@link ObjectGridItemIconWithTooltip}. */
3492
3600
  type ObjectGridItemIconWithTooltipProps = {
3493
- /** The title of the tooltip */
3601
+ /** Text shown inside the tooltip on hover. */
3494
3602
  tooltipTitle: string;
3495
- /** The icon to display */
3603
+ /** The icon to render. */
3496
3604
  icon: IconType;
3497
- /** The color of the icon */
3605
+ /** Color applied to the icon.
3606
+ * @default 'accent-dark'
3607
+ */
3498
3608
  iconColor?: IconColor;
3499
3609
  } & Pick<TooltipProps, 'placement' | 'withoutPortal'>;
3610
+ /**
3611
+ * Small icon with a tooltip, designed for the `rightSlot` of {@link ObjectGridItem}.
3612
+ * Useful for showing contextual indicators (e.g. entry type, locale) without taking up text space.
3613
+ *
3614
+ * @example
3615
+ * ```tsx
3616
+ * <ObjectGridItemIconWithTooltip
3617
+ * tooltipTitle="Composition"
3618
+ * icon={uniformComposition}
3619
+ * />
3620
+ * ```
3621
+ */
3500
3622
  declare const ObjectGridItemIconWithTooltip: ({ tooltipTitle, placement, icon, iconColor, ...props }: ObjectGridItemIconWithTooltipProps) => _emotion_react_jsx_runtime.JSX.Element;
3501
3623
 
3502
- /** @deprecated - Beta Object grid loading skeleton component
3503
- * @example <ObjectGridItemLoadingSkeleton />
3624
+ /**
3625
+ * Animated skeleton placeholder for {@link ObjectGridItem}, displayed while data is loading.
3626
+ * Renders a simulated cover image and two text lines matching the visual dimensions
3627
+ * of a real grid card so the layout doesn't shift on load.
3628
+ *
3629
+ * @example
3630
+ * ```tsx
3631
+ * <ObjectGridContainer gridCount={3}>
3632
+ * <ObjectGridItemLoadingSkeleton />
3633
+ * <ObjectGridItemLoadingSkeleton />
3634
+ * <ObjectGridItemLoadingSkeleton />
3635
+ * </ObjectGridContainer>
3636
+ * ```
3504
3637
  */
3505
3638
  declare const ObjectGridItemLoadingSkeleton: () => _emotion_react_jsx_runtime.JSX.Element;
3506
3639
 
3507
- /** @deprecated - Beta Object item loading skeleton component */
3640
+ /** Props for {@link ObjectItemLoadingSkeleton}. */
3508
3641
  type ObjectItemLoadingSkeletonProps = {
3509
- /** Show cover image loading skeleton */
3642
+ /** When `true`, renders an additional 80×55 animated rectangle representing a cover image. */
3510
3643
  showCover?: boolean;
3511
- /** Render as single or multi
3644
+ /** Controls the skeleton layout to match the corresponding {@link ObjectListItem} mode.
3645
+ * - `"single"` — single text line (vertically centered).
3646
+ * - `"multi"` — two text lines (top-aligned).
3512
3647
  * @default 'single'
3513
3648
  */
3514
3649
  renderAs?: 'single' | 'multi';
3515
3650
  };
3516
- /** @deprecated - Beta Object item loading skeleton component
3517
- * @example <ObjectItemLoadingSkeleton showCover />
3651
+ /**
3652
+ * Animated skeleton placeholder for {@link ObjectListItem}, displayed while data is loading.
3653
+ * Matches the visual dimensions of a real list item so the layout doesn't shift on load.
3654
+ *
3655
+ * @example
3656
+ * ```tsx
3657
+ * <ObjectListItemContainer>
3658
+ * <ObjectItemLoadingSkeleton />
3659
+ * <ObjectItemLoadingSkeleton showCover renderAs="multi" />
3660
+ * </ObjectListItemContainer>
3661
+ * ```
3518
3662
  */
3519
3663
  declare const ObjectItemLoadingSkeleton: ({ showCover, renderAs, }: ObjectItemLoadingSkeletonProps) => _emotion_react_jsx_runtime.JSX.Element;
3520
3664
 
3521
- /** @deprecated - Beta Object list item component */
3665
+ /**
3666
+ * Props for {@link ObjectListItem}.
3667
+ *
3668
+ * Supports two layout modes via `renderAs`:
3669
+ * - `"single"` (default) — header and right slot vertically centered on one line.
3670
+ * - `"multi"` — header aligned to top with additional `children` rendered below it.
3671
+ */
3522
3672
  type ObjectListItemProps = {
3523
- /** Optional ref to the stacked route container to scope all components rendered via portal to be inside the stacked route container */
3673
+ /** Portal target for the context menu, useful inside stacked route containers to prevent clipping. */
3524
3674
  portalElement?: MenuProps['portalElement'];
3675
+ /** Optional cover media rendered to the left of the header (e.g. {@link ObjectListItemCover}). */
3525
3676
  cover?: ReactNode;
3677
+ /** Optional drag handle rendered at the leading edge (e.g. `<DragHandle />`). */
3526
3678
  dragHandle?: ReactNode;
3527
- /** Sets the container query width for wrapping container
3679
+ /** Minimum width at which the container query breakpoint activates to lay out columns side-by-side.
3528
3680
  * @default '34rem'
3529
3681
  */
3530
3682
  minContainerQueryWidth?: string;
@@ -3536,29 +3688,93 @@ type ObjectListItemMultiProps = Omit<ObjectItemProps, 'cover'> & {
3536
3688
  renderAs?: 'multi';
3537
3689
  children?: ReactNode;
3538
3690
  };
3539
- /** @deprecated - beta Object list item component */
3691
+ /**
3692
+ * A horizontal list item for displaying an object with header, cover, right slot, and optional context menu.
3693
+ *
3694
+ * Uses container queries so the layout adapts to its parent width rather than the viewport.
3695
+ * Wrap items with {@link ObjectListItemContainer} to get proper list semantics and dividers.
3696
+ *
3697
+ * @example
3698
+ * ```tsx
3699
+ * <ObjectListItem
3700
+ * header={<ObjectListItemHeading heading="My entry" />}
3701
+ * rightSlot={<StatusBullet status="published" />}
3702
+ * menuItems={<MenuItem onClick={onDelete}>Delete</MenuItem>}
3703
+ * />
3704
+ * ```
3705
+ */
3540
3706
  declare const ObjectListItem: ({ minContainerQueryWidth, ...props }: ObjectListItemProps) => _emotion_react_jsx_runtime.JSX.Element;
3541
3707
 
3542
- /** @deprecated - Beta Object list item container component */
3708
+ /**
3709
+ * Vertical container that wraps {@link ObjectListItem} elements with `role="list"` semantics
3710
+ * and renders a top-border divider between each item.
3711
+ *
3712
+ * @example
3713
+ * ```tsx
3714
+ * <ObjectListItemContainer>
3715
+ * <ObjectListItem header={<ObjectListItemHeading heading="Item 1" />} />
3716
+ * <ObjectListItem header={<ObjectListItemHeading heading="Item 2" />} />
3717
+ * </ObjectListItemContainer>
3718
+ * ```
3719
+ */
3543
3720
  declare const ObjectListItemContainer: ({ children, gap, ...props }: RhythmProps) => _emotion_react_jsx_runtime.JSX.Element;
3544
3721
 
3545
- /** @deprecated - Beta Object list item cover component */
3722
+ /** Props for {@link ObjectListItemCover}. */
3546
3723
  type ObjectListItemCoverProps = {
3724
+ /** URL of the thumbnail image. When omitted, a placeholder with `noImageText` is shown instead. */
3547
3725
  imageUrl?: string;
3548
- /** (optional) sets the text to display when there is no image
3726
+ /** Placeholder text displayed when `imageUrl` is not provided.
3549
3727
  * @default 'Image not available'
3550
3728
  */
3551
3729
  noImageText?: string;
3730
+ /** (optional) sets the icon to display when there is no image */
3731
+ icon?: IconType | undefined;
3552
3732
  } & HTMLAttributes<HTMLImageElement>;
3553
- /** @deprecated - beta Object list item cover component */
3554
- declare const ObjectListItemCover: ({ imageUrl, noImageText, ...props }: ObjectListItemCoverProps) => _emotion_react_jsx_runtime.JSX.Element;
3733
+ /**
3734
+ * Thumbnail cover image for use inside {@link ObjectListItem}'s `cover` slot.
3735
+ * Renders a fixed-size (80×45) container with a lazy-loaded image, or a
3736
+ * text placeholder when no `imageUrl` is available.
3737
+ *
3738
+ * @example
3739
+ * ```tsx
3740
+ * <ObjectListItem
3741
+ * cover={<ObjectListItemCover imageUrl="https://example.com/thumb.jpg" />}
3742
+ * header={<ObjectListItemHeading heading="My entry" />}
3743
+ * />
3744
+ * ```
3745
+ */
3746
+ declare const ObjectListItemCover: ({ imageUrl, noImageText, icon, ...props }: ObjectListItemCoverProps) => _emotion_react_jsx_runtime.JSX.Element;
3555
3747
 
3556
- /** @deprecated - Beta Object list item heading component */
3748
+ /** Props for {@link ObjectListItemHeading}. */
3557
3749
  type ObjectListItemHeadingProps = Omit<ObjectHeadingProps, 'heading' | 'tooltip'> & HTMLAttributes<HTMLDivElement> & {
3750
+ /** The heading content — typically a string, link, or inline element. */
3558
3751
  heading: ReactNode;
3752
+ /** Override the `data-testid` on the heading element.
3753
+ * @default 'reference-item-name'
3754
+ */
3755
+ headingTestId?: string;
3559
3756
  };
3560
- /** @deprecated - beta Object list item heading component */
3561
- declare const ObjectListItemHeading: ({ heading, beforeHeadingSlot, afterHeadingSlot, ...props }: ObjectListItemHeadingProps) => _emotion_react_jsx_runtime.JSX.Element;
3757
+ /**
3758
+ * Heading component designed for use inside {@link ObjectListItem}'s `header` slot.
3759
+ *
3760
+ * Renders a responsive heading row that stacks vertically on narrow containers
3761
+ * and switches to a horizontal layout at wider widths (controlled by a container query).
3762
+ *
3763
+ * @example
3764
+ * ```tsx
3765
+ * <ObjectListItemHeading
3766
+ * heading={<a href="/entries/123">My entry</a>}
3767
+ * beforeHeadingSlot={<Icon icon={uniformComposition} />}
3768
+ * afterHeadingSlot={<Chip text="Draft" />}
3769
+ * />
3770
+ * ```
3771
+ */
3772
+ declare const ObjectListItemHeading: ({ heading, beforeHeadingSlot, afterHeadingSlot, headingTestId, ...props }: ObjectListItemHeadingProps) => _emotion_react_jsx_runtime.JSX.Element;
3773
+
3774
+ type ObjectListSubTextProps = {
3775
+ children: React.ReactNode;
3776
+ } & React.HTMLAttributes<HTMLDivElement>;
3777
+ declare const ObjectListSubText: ({ children, ...props }: ObjectListSubTextProps) => _emotion_react_jsx_runtime.JSX.Element;
3562
3778
 
3563
3779
  declare function Pagination({ limit, offset, total, onPageChange, }: {
3564
3780
  limit: number;
@@ -5058,4 +5274,4 @@ declare const StatusBullet: ({ status, hideText, size, message, compact, ...prop
5058
5274
 
5059
5275
  declare const actionBarVisibilityStyles: _emotion_react.SerializedStyles;
5060
5276
 
5061
- 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, HexModalBackground, HorizontalRhythm, Icon, IconButton, type IconButtonProps, type IconColor, type IconName, type IconProps, type IconType, IconsProvider, Image, ImageBroken, type ImageProps, InfoMessage, type InfoMessageProps, Input, InputComboBox, type InputComboBoxOption, type InputComboBoxProps, InputCreatableComboBox, type InputCreatableComboBoxProps, InputInlineSelect, type InputInlineSelectOption, type InputInlineSelectProps, InputKeywordSearch, type InputKeywordSearchProps, type InputProps, InputSelect, type InputSelectProps, InputTime, type InputTimeProps, InputToggle, type InputToggleProps, IntegrationComingSoon, type IntegrationComingSoonProps, 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, 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, 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, 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 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, useOutsideClick, useParameterShell, usePopoverComponentContext, useRichTextToolbarState, useShortcut, useStackedModal, functionalColors as utilityColors, warningIcon, yesNoIcon, zigZag, zigZagThick };
5277
+ 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, HexModalBackground, HorizontalRhythm, Icon, IconButton, type IconButtonProps, type IconColor, type IconName, type IconProps, type IconType, IconsProvider, Image, ImageBroken, type ImageProps, InfoMessage, type InfoMessageProps, Input, InputComboBox, type InputComboBoxOption, type InputComboBoxProps, InputCreatableComboBox, type InputCreatableComboBoxProps, InputInlineSelect, type InputInlineSelectOption, type InputInlineSelectProps, InputKeywordSearch, type InputKeywordSearchProps, type InputProps, InputSelect, type InputSelectProps, InputTime, type InputTimeProps, InputToggle, type InputToggleProps, IntegrationComingSoon, type IntegrationComingSoonProps, 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, 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, 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 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, useOutsideClick, useParameterShell, usePopoverComponentContext, useRichTextToolbarState, useShortcut, useStackedModal, functionalColors as utilityColors, warningIcon, yesNoIcon, zigZag, zigZagThick };