@baseline-ui/core 0.21.0 → 0.22.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.ts CHANGED
@@ -1,9 +1,9 @@
1
1
  import React, { Key, Dispatch, SetStateAction } from 'react';
2
- import { DraggableCollectionStateOptions, DroppableCollectionStateOptions, Orientation, ListState, SliderStateOptions, ToggleProps, OverlayTriggerProps, OverlayTriggerState, MenuTriggerProps, TooltipTriggerProps, NumberFieldStateOptions, ListProps, SelectStateOptions, Item as Item$1 } from 'react-stately';
2
+ import { DraggableCollectionStateOptions, DroppableCollectionStateOptions, Orientation, ListState, SliderStateOptions, ToggleProps, OverlayTriggerProps, OverlayTriggerState, MenuTriggerProps, TooltipTriggerProps, NumberFieldStateOptions, ListProps, SelectStateOptions, Item as Item$2, Selection as Selection$1, ComboBoxStateOptions, ListData, ListOptions } from 'react-stately';
3
3
  import * as react_aria from 'react-aria';
4
- import { DraggableCollectionOptions, DroppableCollectionOptions, AriaListBoxProps, AriaListBoxOptions, OptionAria, AriaButtonProps, AriaSliderProps, AriaSwitchProps, AriaSearchFieldProps, AriaPopoverProps, useOverlayTrigger, AriaMenuProps, AriaMenuTriggerProps, AriaLinkOptions, SeparatorProps as SeparatorProps$1, AriaProgressBarProps, AriaTextFieldProps, AriaTooltipProps, AriaPositionProps, OverlayProps, AriaToggleButtonProps, AriaCheckboxProps, AriaNumberFieldProps, I18nProviderProps as I18nProviderProps$1, LocalizedStrings, useNumberFormatter, useDateFormatter, AriaTagGroupProps, AriaSelectOptions, AriaDialogProps, DropOptions, ClipboardProps, PressProps, AriaRadioGroupProps, AriaModalOverlayProps, Locale } from 'react-aria';
4
+ import { DraggableCollectionOptions, DroppableCollectionOptions, AriaListBoxProps, AriaListBoxOptions, OptionAria, AriaButtonProps, AriaSliderProps, AriaSwitchProps, AriaSearchFieldProps, AriaPopoverProps, useOverlayTrigger, AriaMenuProps, AriaMenuTriggerProps, AriaLinkOptions, SeparatorProps as SeparatorProps$1, AriaProgressBarProps, AriaTextFieldProps, AriaTooltipProps, AriaPositionProps, OverlayProps, AriaToggleButtonProps, AriaCheckboxProps, AriaNumberFieldProps, I18nProviderProps as I18nProviderProps$1, LocalizedStrings, useNumberFormatter, useDateFormatter, AriaTagGroupProps, AriaSelectOptions, AriaDialogProps, DropOptions, ClipboardProps, PressProps, AriaRadioGroupProps, AriaModalOverlayProps, AriaComboBoxOptions, AriaComboBoxProps, Locale, Key as Key$1 } from 'react-aria';
5
5
  export { I18nProviderProps, useCollator, useDateFormatter, useNumberFormatter } from 'react-aria';
6
- import { Node as Node$1, DragItem, AriaLabelingProps } from '@react-types/shared';
6
+ import { Node as Node$1, DragItem, DOMAttributes, AriaLabelingProps, AriaValidationProps } from '@react-types/shared';
7
7
  import { IconProps, SVGRProps } from '@baseline-ui/icons';
8
8
  import { Theme, Sprinkles } from '@baseline-ui/tokens';
9
9
  import { AriaTabListProps } from '@react-types/tabs';
@@ -57,12 +57,12 @@ interface StylingProps extends BlockProps {
57
57
  */
58
58
  declare function isInsideOverlayContent(selector: HTMLElement): Element | null;
59
59
 
60
- interface ListOption {
60
+ interface ListOption<T = Record<string, any>> {
61
61
  id: string;
62
62
  label: string;
63
63
  description?: string;
64
64
  icon?: React.FC<IconProps>;
65
- data?: Record<string, any>;
65
+ data?: T;
66
66
  /**
67
67
  * The type of item.
68
68
  *
@@ -151,7 +151,7 @@ interface ActionButtonProps extends ActionButtonSharedProps {
151
151
  *
152
152
  * @default primary
153
153
  */
154
- variant?: "primary" | "secondary" | "tertiary" | "ghost" | "popover";
154
+ variant?: "primary" | "secondary" | "tertiary" | "ghost" | "popover" | "toolbar";
155
155
  /** The button's label. */
156
156
  label: React.ReactNode;
157
157
  /** The button's icon before the label. */
@@ -163,7 +163,7 @@ interface ActionButtonProps extends ActionButtonSharedProps {
163
163
  *
164
164
  * @default sm
165
165
  */
166
- size?: "sm" | "md";
166
+ size?: "sm" | "md" | "lg";
167
167
  /** Indicates whether focusing should be prevented on press. */
168
168
  preventFocusOnPress?: boolean;
169
169
  }
@@ -388,8 +388,27 @@ interface MenuProps extends MenuPopoverProps, MenuTriggerProps, Omit<AriaMenuPro
388
388
  * <ActionButton label="Label">
389
389
  * </Menu>
390
390
  * ```
391
+ *
392
+ * @deprecated Use `renderTrigger` instead.
391
393
  */
392
394
  children?: React.ReactNode;
395
+ /**
396
+ * A function that renders the trigger element of the component. The default
397
+ * implementation renders an `ActionButton` component.
398
+ *
399
+ * ```tsx
400
+ * <Menu renderTrigger={({ buttonProps, ref }) => <ActionButton {...buttonProps} label="Label" ref={ref} />
401
+ * ```
402
+ */
403
+ renderTrigger?: (options: {
404
+ buttonProps: ActionButtonProps;
405
+ ref: React.RefObject<HTMLButtonElement>;
406
+ }) => React.ReactNode;
407
+ /**
408
+ * The label of the trigger element. This can be a string, a React node, or a
409
+ * function that accepts a boolean indicating whether the menu is open.
410
+ */
411
+ triggerLabel?: React.ReactNode | ((isOpen: boolean) => React.ReactNode);
393
412
  }
394
413
 
395
414
  declare const Menu: React.ForwardRefExoticComponent<MenuProps & React.RefAttributes<HTMLUListElement>>;
@@ -632,7 +651,7 @@ interface ToggleButtonProps extends StylingProps, Omit<AriaToggleButtonProps, "c
632
651
  *
633
652
  * @default "md"
634
653
  */
635
- size?: "md" | "lg";
654
+ size?: "sm" | "md" | "lg";
636
655
  /** Indicates whether focusing should be prevented on press. */
637
656
  preventFocusOnPress?: boolean;
638
657
  }
@@ -695,26 +714,26 @@ declare type DateFormatProps = Parameters<typeof useDateFormatter>[0] & {
695
714
 
696
715
  declare const DateFormat: React.FC<DateFormatProps>;
697
716
 
698
- interface Item {
717
+ interface Item$1 {
699
718
  id: string;
700
719
  label: string;
701
720
  variant?: "neutral" | "red" | "green" | "blue" | "high-contrast";
702
721
  icon?: React.FC<SVGRProps>;
703
722
  }
704
- interface TagGroupProps extends StylingProps, Omit<AriaTagGroupProps<Item>, "children" | "errorMessage" | "description">, Omit<ListProps<Item>, "children" | "collection" | "filter"> {
723
+ interface TagGroupProps extends StylingProps, Omit<AriaTagGroupProps<Item$1>, "children" | "errorMessage" | "description">, Omit<ListProps<Item$1>, "children" | "collection" | "filter"> {
705
724
  /**
706
725
  * The items to display in the tag group.
707
726
  *
708
727
  * Type Item = { id: string; label: string; variant?: "neutral" | "red" |
709
728
  * "green" | "blue" | "high-contrast"; icon?: React.FC<SVGRProps>; }
710
729
  */
711
- items: Item[];
730
+ items: Item$1[];
712
731
  /**
713
732
  * The variant of the tag group.
714
733
  *
715
734
  * @default "neutral"
716
735
  */
717
- variant?: Item["variant"];
736
+ variant?: Item$1["variant"];
718
737
  /** The label for the tag group. */
719
738
  "aria-label": string;
720
739
  }
@@ -813,6 +832,18 @@ interface SelectProps extends Omit<AriaSelectOptions<ListItem> & SelectStateOpti
813
832
  validationState?: "valid" | "error" | "warning";
814
833
  /** Whether the select component is read only. */
815
834
  isReadOnly?: boolean;
835
+ /**
836
+ * This callback can be used to render the trigger element of the select
837
+ * component. The trigger element is the element that is clicked to open the
838
+ * select menu.
839
+ */
840
+ renderTrigger?: (options: {
841
+ buttonProps: Omit<ActionButtonProps, "variant" | "label">;
842
+ valueProps: DOMAttributes;
843
+ isOpen: boolean;
844
+ selectedValue: ListItem | null;
845
+ ref: React.RefObject<HTMLButtonElement>;
846
+ }) => React.ReactNode;
816
847
  }
817
848
 
818
849
  declare const Select: React.ForwardRefExoticComponent<SelectProps & React.RefAttributes<HTMLDivElement>>;
@@ -848,7 +879,7 @@ interface AvatarProps extends StylingProps {
848
879
 
849
880
  declare const Avatar: React.ForwardRefExoticComponent<AvatarProps & React.RefAttributes<HTMLSpanElement>>;
850
881
 
851
- declare type ItemProps = React.ComponentProps<typeof Item$1> & StylingProps & {
882
+ declare type ItemProps = React.ComponentProps<typeof Item$2> & StylingProps & {
852
883
  key?: Key;
853
884
  icon?: React.FC<SVGRProps>;
854
885
  value?: string;
@@ -1685,12 +1716,37 @@ interface ColorPresetInlineInputProps extends Omit<RadioGroupProps, "items" | "d
1685
1716
  declare const ColorPresetInlineInput: React.ForwardRefExoticComponent<ColorPresetInlineInputProps & React.RefAttributes<HTMLDivElement>>;
1686
1717
 
1687
1718
  interface ToolbarProps extends StylingProps, AriaToolbarProps {
1719
+ /** The children of the toolbar. */
1688
1720
  children: React.ReactNode;
1689
1721
  /**
1690
1722
  * Identifies the element (or elements) whose contents or presence are
1691
1723
  * controlled by the current element.
1692
1724
  */
1693
1725
  "aria-controls"?: string;
1726
+ /**
1727
+ * This prop is used to determine if the toolbar should be collapsible. If
1728
+ * true, the buttons in the toolbar will be hidden behind a menu when the
1729
+ * toolbar is too small to display all of the buttons.
1730
+ *
1731
+ * @default false
1732
+ */
1733
+ isCollapsible?: boolean;
1734
+ /**
1735
+ * The props to pass to the Menu component when the toolbar is collapsible.
1736
+ * This prop is only relevant when `isCollapsible` is true.
1737
+ */
1738
+ collapsibleMenuProps?: Omit<MenuProps, "items" | "onAction" | "placement" | "disabledKeys">;
1739
+ /**
1740
+ * The trigger to use for the menu when the toolbar is collapsible. This prop
1741
+ * is only relevant when `isCollapsible` is true.
1742
+ */
1743
+ collapsibleMenuTrigger?: React.ReactNode;
1744
+ /**
1745
+ * A function that renders a spacer element in the collapsible toolbar between
1746
+ * the toolbar buttons and the menu trigger. This prop is only relevant when
1747
+ * `isCollapsible` is true.
1748
+ */
1749
+ renderSpacer?: () => React.ReactNode;
1694
1750
  }
1695
1751
 
1696
1752
  declare const Toolbar: React.ForwardRefExoticComponent<ToolbarProps & React.RefAttributes<HTMLDivElement>>;
@@ -1857,6 +1913,12 @@ interface EditorProps extends StylingProps, AriaLabelingProps {
1857
1913
  * @default false
1858
1914
  */
1859
1915
  autoFocus?: boolean;
1916
+ /**
1917
+ * Whether to save the editor value when `Enter` key is pressed.
1918
+ *
1919
+ * @default false
1920
+ */
1921
+ saveOnEnter?: boolean;
1860
1922
  }
1861
1923
 
1862
1924
  declare const Editor: React.MemoExoticComponent<React.ForwardRefExoticComponent<EditorProps & React.RefAttributes<HTMLDivElement>>>;
@@ -1997,6 +2059,138 @@ interface AudioPlayerProps extends StylingProps, AriaLabelingProps {
1997
2059
 
1998
2060
  declare const AudioPlayer: React.ForwardRefExoticComponent<AudioPlayerProps & React.RefAttributes<HTMLDivElement>>;
1999
2061
 
2062
+ interface Item {
2063
+ id: string;
2064
+ src?: string;
2065
+ alt?: string;
2066
+ label: string;
2067
+ }
2068
+ interface ImageGalleryProps extends StylingProps, Omit<ListBoxProps, "items" | "layout" | "grid" | "renderOption" | "renderDropIndicator" | "renderDragPreview" | "UNSAFE_state" | "showSelectedIcon" | "orientation" | "shouldSelectOnPressUp" | "shouldFocusOnHover" | "dropIndicatorClassName" | "dropIndicatorStyle" | "shouldUseVirtualFocus" | "getItems" | "acceptedDragTypes" | "sectionClassName" | "sectionStyle"> {
2069
+ /**
2070
+ * An array of objects containing the image source, alt text, and label for
2071
+ * each image.
2072
+ *
2073
+ * ```tsx
2074
+ * const items = [
2075
+ * {
2076
+ * id: "1",
2077
+ * src: "https://example.com/image1.jpg",
2078
+ * alt: "Image 1",
2079
+ * label: "Image 1",
2080
+ * },
2081
+ * {
2082
+ * id: "2",
2083
+ * src: "https://example.com/image2.jpg",
2084
+ * alt: "Image 2",
2085
+ * label: "Image 2",
2086
+ * },
2087
+ * ];
2088
+ * ```
2089
+ */
2090
+ items: Item[];
2091
+ /**
2092
+ * The size of the images.
2093
+ *
2094
+ * @default "sm"
2095
+ */
2096
+ size?: "sm" | "md";
2097
+ /**
2098
+ * The aspect ratio of the images.
2099
+ *
2100
+ * @default 16 / 9
2101
+ */
2102
+ aspectRatio?: number;
2103
+ /**
2104
+ * The fit of the images.
2105
+ *
2106
+ * @default "cover"
2107
+ */
2108
+ fit?: "contain" | "cover";
2109
+ /** A callback that is called when the list of images or selection is updated. */
2110
+ onListChange?: (items: Item[]) => void;
2111
+ /** A callback that is called when an image is deleted. */
2112
+ onDelete?: (keys: Selection$1) => void;
2113
+ }
2114
+
2115
+ declare const ImageGallery: React.ForwardRefExoticComponent<ImageGalleryProps & React.RefAttributes<HTMLDivElement>>;
2116
+
2117
+ interface ComboBoxProps extends StylingProps, Omit<AriaComboBoxOptions<ListItem>, "items" | "children" | "inputRef" | "popoverRef" | "listBoxRef" | "buttonRef" | "validationState" | "errorMessage" | "description">, Omit<AriaComboBoxProps<ListItem>, "items" | "children" | "errorMessage" | "description" | "validationState">, Omit<ListBoxProps, "autoFocus" | "onBlur" | "onFocus" | "onSelectionChange" | "selectionBehavior" | "selectionMode" | "selectedKeys" | "defaultSelectedKeys" | "renderDropIndicator" | "renderDragPreview" | "UNSAFE_state" | "dropIndicatorClassName" | "dropIndicatorStyle" | keyof DragAndDropProps>, AriaValidationProps, Omit<ComboBoxStateOptions<ListItem>, "items" | "children" | "errorMessage" | "description" | "validationState" | "selectedKey">, InputMessage {
2118
+ /** ID of the initially selected item */
2119
+ defaultSelectedKey?: string;
2120
+ /**
2121
+ * The state of the combobox input.
2122
+ *
2123
+ * @default valid
2124
+ */
2125
+ validationState?: "valid" | "error" | "warning";
2126
+ /**
2127
+ * The variant of the text input.
2128
+ *
2129
+ * @default primary
2130
+ */
2131
+ variant?: "primary" | "ghost";
2132
+ /**
2133
+ * The position of the label relative to the input.
2134
+ *
2135
+ * @default top
2136
+ */
2137
+ labelPosition?: "top" | "start";
2138
+ /** Whether the input is read only. */
2139
+ readOnly?: boolean;
2140
+ /** The style object to apply to the input element */
2141
+ inputStyle?: React.CSSProperties;
2142
+ /** The class name to apply to the input element */
2143
+ inputClassName?: string;
2144
+ /** Optional label for the toggle button */
2145
+ toggleLabel?: string;
2146
+ /**
2147
+ * The custom render function for the listbox options.
2148
+ *
2149
+ * @param item Node<ListItem>
2150
+ * @param options [OptionAria]()
2151
+ * @param ref React.RefObject<HTMLLIElement>
2152
+ */
2153
+ renderOption?: (item: Node$1<ListItem>, options: OptionAria & {
2154
+ showSelectedIcon?: boolean;
2155
+ _state: ListState<ListItem>;
2156
+ }, ref: React.Ref<HTMLLIElement>) => React.ReactNode;
2157
+ filterItems?: boolean;
2158
+ onInputChange?: (value: string) => void;
2159
+ showIcon?: boolean;
2160
+ /**
2161
+ * The items to render in the listbox. Items have the following shape:
2162
+ *
2163
+ * ```ts
2164
+ * export type ListOption = {
2165
+ * id: string;
2166
+ * label: string;
2167
+ * description?: string;
2168
+ * icon?: React.FC<IconProps>;
2169
+ * };
2170
+ *
2171
+ * export type ListSection = {
2172
+ * id: string;
2173
+ * title?: string;
2174
+ * type: "section";
2175
+ * children: ListOption[];
2176
+ * };
2177
+ *
2178
+ * type ListItem = ListOption | ListSection;
2179
+ * ```
2180
+ */
2181
+ items: ListItem[];
2182
+ /**
2183
+ * Specify which interaction should trigger the dropdown to open
2184
+ *
2185
+ * @default input
2186
+ */
2187
+ menuTrigger?: "manual" | "input" | "focus";
2188
+ /** Custom filter function to use when filtering items. */
2189
+ filter?: ComboBoxStateOptions<ListItem>["defaultFilter"];
2190
+ }
2191
+
2192
+ declare const ComboBox: React.ForwardRefExoticComponent<ComboBoxProps & React.RefAttributes<HTMLDivElement>>;
2193
+
2000
2194
  /**
2001
2195
  * A hook that creates an IntersectionObserver and observes a target element.
2002
2196
  *
@@ -2089,19 +2283,6 @@ interface ResizeObserverOptions {
2089
2283
  * alt: "Placeholder image",
2090
2284
  * });
2091
2285
  * ```;
2092
- *
2093
- * @param {Object} options - The options object.
2094
- * @param {string} options.src - The image source URL.
2095
- * @param {string} options.alt - The image alt text.
2096
- * @returns {Object} An object containing the image loading state and props.
2097
- * @returns {boolean} IsLoaded - Whether the image has loaded.
2098
- * @returns {boolean} HasError - Whether there was an error loading the image.
2099
- * @returns {boolean} IsLoading - Whether the image is currently loading.
2100
- * @returns {Object} ImgProps - The image props to be passed to the `img`
2101
- * element.
2102
- * @returns {string} ImgProps.src - The image source URL, or `undefined` if the
2103
- * image hasn't loaded yet.
2104
- * @returns {string} ImgProps.alt - The image alt text.
2105
2286
  */
2106
2287
  declare function useImage({ src, alt }: {
2107
2288
  src?: string;
@@ -2325,7 +2506,7 @@ interface TextSelectionProps {
2325
2506
  * @param element - The element to use to get the owner window. Defaults to
2326
2507
  * `document.body`.
2327
2508
  */
2328
- declare function useDevice(element?: Element | null | undefined): "tablet" | "desktop" | "mobile";
2509
+ declare function useDevice(element?: Element | null | undefined): "desktop" | "tablet" | "mobile";
2329
2510
 
2330
2511
  /**
2331
2512
  * Custom hook for accessing PortalContainerProviderContext. This hook allows
@@ -2339,4 +2520,11 @@ declare function useDevice(element?: Element | null | undefined): "tablet" | "de
2339
2520
  */
2340
2521
  declare function usePortalContainer(_portalContainer?: HTMLElement): HTMLElement | undefined;
2341
2522
 
2342
- export { Accordion, AccordionItem, type AccordionItemProps, type AccordionProps, ActionButton, type ActionButtonProps, ActionIconButton, type ActionIconButtonProps, AlertDialog, type AlertDialogProps, AudioPlayer, type AudioPlayerProps, Avatar, type AvatarProps, type BlockProps, Box, type BoxProps, Checkbox, type CheckboxProps, ColorInput, type ColorInputProps, type ColorPreset, ColorPresetInlineInput, type ColorPresetInlineInputProps, ColorSwatch, type ColorSwatchProps, DateFormat, type DateFormatProps, Dialog, type DialogProps, DialogTitle, type DialogTitleProps, DomNodeRenderer, type DomNodeRendererProps, Drawer, type DrawerProps, Editor, type EditorHandle, type EditorProps, FileUpload, type FileUploadProps, FreehandCanvas, type FreehandCanvasProps, Group, type GroupProps, I18nProvider, type I18nResult, IconColorInputButton, ImageDropZone, type ImageDropZoneProps, InlineAlert, type InlineAlertProps, Link, type LinkProps, ListBox, type ListBoxProps, type ListOption, Markdown, type MarkdownProps, Menu, type MenuItem, type MenuProps, type MessageDescriptor, MessageFormat, type MessageFormatProps, Modal, ModalClose, ModalContent, type ModalContentProps, type ModalProps, ModalTrigger, NumberFormat, type NumberFormatProps, NumberInput, type NumberInputProps, Pagination, type PaginationProps, Popover, PopoverContent, type PopoverContentProps, type PopoverProps, PopoverTrigger, type PopoverTriggerProps, Portal, PortalContainerProvider, type PortalProps, Preview, type PreviewProps, ProgressBar, type ProgressBarProps, ProgressSpinner, type ProgressSpinnerProps, RadioGroup, type RadioGroupProps, Reaction, type ReactionProps, ScrollControlButton, type ScrollControlButtonProps, SearchInput, type SearchInputProps, Select, type SelectProps, Separator, type SeparatorProps, Slider, type SliderProps, type StylingProps, Switch, type SwitchProps, TabItem, type TabItemProps, Tabs, type TabsProps, TagGroup, type TagGroupProps, Text, TextInput, type TextInputProps, type TextProps, ThemeProvider, type ThemeProviderProps, ToggleButton, type ToggleButtonProps, ToggleIconButton, type ToggleIconButtonProps, Toolbar, type ToolbarProps, Tooltip, type TooltipProps, Transform, type TransformProps, Transition, type TransitionProps, defineMessages, isInsideOverlayContent, useDevice, useI18n, useImage, useIntersectionObserver, useIsFirstRender, useLocalStorage, useMutationObserver, usePortalContainer, useResizeObserver, useTextSelection, useUndoRedo, useUserPreferences };
2523
+ interface DynamicListOptions<T> extends ListOptions<T> {
2524
+ onListChange?: (items: T[]) => void;
2525
+ onSelectionChange?: (selectedKeys: Selection$1) => void;
2526
+ getKey?: (item: T) => Key$1;
2527
+ }
2528
+ declare function useDynamicListData<T>(options: DynamicListOptions<T>): ListData<T>;
2529
+
2530
+ export { Accordion, AccordionItem, type AccordionItemProps, type AccordionProps, ActionButton, type ActionButtonProps, ActionIconButton, type ActionIconButtonProps, AlertDialog, type AlertDialogProps, AudioPlayer, type AudioPlayerProps, Avatar, type AvatarProps, type BlockProps, Box, type BoxProps, Checkbox, type CheckboxProps, ColorInput, type ColorInputProps, type ColorPreset, ColorPresetInlineInput, type ColorPresetInlineInputProps, ColorSwatch, type ColorSwatchProps, ComboBox, type ComboBoxProps, DateFormat, type DateFormatProps, Dialog, type DialogProps, DialogTitle, type DialogTitleProps, DomNodeRenderer, type DomNodeRendererProps, Drawer, type DrawerProps, Editor, type EditorHandle, type EditorProps, FileUpload, type FileUploadProps, FreehandCanvas, type FreehandCanvasProps, Group, type GroupProps, I18nProvider, type I18nResult, IconColorInputButton, ImageDropZone, type ImageDropZoneProps, ImageGallery, type ImageGalleryProps, InlineAlert, type InlineAlertProps, Link, type LinkProps, ListBox, type ListBoxProps, type ListOption, Markdown, type MarkdownProps, Menu, type MenuItem, type MenuProps, type MessageDescriptor, MessageFormat, type MessageFormatProps, Modal, ModalClose, ModalContent, type ModalContentProps, type ModalProps, ModalTrigger, NumberFormat, type NumberFormatProps, NumberInput, type NumberInputProps, Pagination, type PaginationProps, Popover, PopoverContent, type PopoverContentProps, type PopoverProps, PopoverTrigger, type PopoverTriggerProps, Portal, PortalContainerProvider, type PortalProps, Preview, type PreviewProps, ProgressBar, type ProgressBarProps, ProgressSpinner, type ProgressSpinnerProps, RadioGroup, type RadioGroupProps, Reaction, type ReactionProps, ScrollControlButton, type ScrollControlButtonProps, SearchInput, type SearchInputProps, Select, type SelectProps, Separator, type SeparatorProps, Slider, type SliderProps, type StylingProps, Switch, type SwitchProps, TabItem, type TabItemProps, Tabs, type TabsProps, TagGroup, type TagGroupProps, Text, TextInput, type TextInputProps, type TextProps, ThemeProvider, type ThemeProviderProps, ToggleButton, type ToggleButtonProps, ToggleIconButton, type ToggleIconButtonProps, Toolbar, type ToolbarProps, Tooltip, type TooltipProps, Transform, type TransformProps, Transition, type TransitionProps, defineMessages, isInsideOverlayContent, useDevice, useDynamicListData, useI18n, useImage, useIntersectionObserver, useIsFirstRender, useLocalStorage, useMutationObserver, usePortalContainer, useResizeObserver, useTextSelection, useUndoRedo, useUserPreferences };