@baseline-ui/core 0.26.0 → 0.28.0

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,15 +1,16 @@
1
1
  import React, { Key, Dispatch, SetStateAction } from 'react';
2
2
  import { IconProps, SVGRProps } from '@baseline-ui/icons';
3
3
  import * as react_stately from 'react-stately';
4
- import { DraggableCollectionStateOptions, DroppableCollectionStateOptions, Orientation, ListState, TooltipTriggerProps, SliderStateOptions, ToggleProps, OverlayTriggerProps, OverlayTriggerState, MenuTriggerProps, NumberFieldStateOptions, ListProps, SelectStateOptions, Item as Item$2, Selection as Selection$1, ComboBoxStateOptions, Node as Node$2 } from 'react-stately';
4
+ import { DraggableCollectionStateOptions, DroppableCollectionStateOptions, Orientation, ListState, OverlayTriggerProps, OverlayTriggerState, TooltipTriggerProps, SliderStateOptions, ToggleProps, MenuTriggerProps, NumberFieldStateOptions, ListProps, SelectStateOptions, Item as Item$2, Selection as Selection$1, ComboBoxStateOptions, Node as Node$2 } from 'react-stately';
5
5
  import * as react_aria from 'react-aria';
6
- import { DraggableCollectionOptions, DroppableCollectionOptions, AriaListBoxProps, AriaListBoxOptions, OptionAria, AriaButtonProps, AriaTooltipProps, AriaPositionProps, AriaSliderProps, AriaSwitchProps, AriaSearchFieldProps, AriaPopoverProps, useOverlayTrigger, AriaMenuProps, AriaMenuTriggerProps, AriaLinkOptions, SeparatorProps as SeparatorProps$1, AriaProgressBarProps, AriaTextFieldProps, OverlayProps, AriaToggleButtonProps, AriaCheckboxProps, AriaNumberFieldProps, I18nProviderProps as I18nProviderProps$1, LocalizedStrings, useNumberFormatter, useDateFormatter, AriaTagGroupProps, AriaSelectOptions, Key as Key$1, AriaDialogProps, DropOptions, ClipboardProps, PressProps, AriaRadioGroupProps, AriaModalOverlayProps, AriaComboBoxOptions, AriaComboBoxProps, AriaGridListOptions, GridListItemAria, Locale } from 'react-aria';
6
+ import { DraggableCollectionOptions, DroppableCollectionOptions, AriaListBoxProps, AriaListBoxOptions, OptionAria, AriaButtonProps, AriaPopoverProps, useOverlayTrigger, AriaTooltipProps, AriaPositionProps, AriaSliderProps, AriaSwitchProps, AriaSearchFieldProps, AriaMenuProps, AriaMenuTriggerProps, AriaLinkOptions, SeparatorProps as SeparatorProps$1, AriaProgressBarProps, AriaTextFieldProps, OverlayProps, AriaToggleButtonProps, AriaCheckboxProps, AriaNumberFieldProps, I18nProviderProps as I18nProviderProps$1, LocalizedStrings, useNumberFormatter, useDateFormatter, AriaTagGroupProps, AriaSelectOptions, Key as Key$1, AriaDialogProps, DropOptions, ClipboardProps, PressProps, AriaRadioGroupProps, AriaModalOverlayProps, AriaComboBoxOptions, AriaComboBoxProps, AriaGridListOptions, GridListItemAria, Locale } from 'react-aria';
7
7
  export { I18nProviderProps, useCollator, useDateFormatter, useNumberFormatter } from 'react-aria';
8
8
  import { Node as Node$1, DragItem, DOMAttributes, AriaLabelingProps, AriaValidationProps, DOMProps } from '@react-types/shared';
9
9
  import { Theme, Sprinkles } from '@baseline-ui/tokens';
10
10
  import { AriaTabListProps } from '@react-types/tabs';
11
11
  import { ColorFieldProps, Color } from '@react-stately/color';
12
12
  import { OnRender, OnRenderStart, OnDragStart, OnDrag, OnDragEnd, OnResizeStart, OnResize, OnResizeEnd, OnRotateStart, OnRotate, OnRotateEnd, OnSnap, RotationPosition } from 'react-moveable';
13
+ import { KeyboardProps } from '@react-aria/interactions';
13
14
  import { AriaToolbarProps } from '@react-aria/toolbar';
14
15
  import { UseTransitionProps } from '@react-spring/core';
15
16
  import { AriaColorSwatchProps } from '@react-aria/color';
@@ -190,6 +191,15 @@ interface ListBoxProps extends StylingProps, Omit<AriaListBoxProps<ListItem> & A
190
191
  declare const ListBox: React.ForwardRefExoticComponent<ListBoxProps & React.RefAttributes<HTMLUListElement>>;
191
192
 
192
193
  interface ActionButtonSharedProps extends Omit<AriaButtonProps<"button" | "div">, "rel" | "href" | "target" | "children">, StylingProps {
194
+ /**
195
+ * There are some cases where we need to use a button that is not interactive.
196
+ * For example, when we need to use a button inside a TabItem component that
197
+ * should remove the tab when clicked. Since this button never needs to be
198
+ * focused directly, we can set this prop to true to avoid the button being
199
+ * focusable. At the same time we also avoid the [nested element
200
+ * rule](https://dequeuniversity.com/rules/axe/html/4.6/nested-interactive)
201
+ */
202
+ UNSAFE_NON_INTERACTIVE?: boolean;
193
203
  }
194
204
  interface ActionButtonProps extends ActionButtonSharedProps {
195
205
  /**
@@ -230,6 +240,59 @@ interface DomNodeRendererProps extends StylingProps {
230
240
 
231
241
  declare const DomNodeRenderer: React.ForwardRefExoticComponent<DomNodeRendererProps & React.RefAttributes<HTMLDivElement>>;
232
242
 
243
+ declare type OverlayTriggerProps_ = Parameters<typeof useOverlayTrigger>[0];
244
+ interface PopoverProps extends OverlayTriggerProps, OverlayTriggerProps_ {
245
+ /** The children of the popover. */
246
+ children: React.ReactNode;
247
+ }
248
+ interface PopoverContentProps extends Omit<AriaPopoverProps, "popoverRef" | "triggerRef" | "arrowSize" | "arrowBoundaryOffset">, StylingProps {
249
+ /**
250
+ * The reference element for the popover position. By default, the popover is
251
+ * positioned relative to the trigger element.
252
+ */
253
+ triggerRef?: React.RefObject<HTMLElement>;
254
+ /** The class name for the underlay element. */
255
+ underlayClassName?: string;
256
+ /** The contents of the popover. */
257
+ children: React.ReactNode | ((state: OverlayTriggerState) => React.ReactNode);
258
+ /**
259
+ * The container element for the popover. By default, the modal is rendered as
260
+ * a child of the body element.
261
+ *
262
+ * @default document.body
263
+ */
264
+ portalContainer?: HTMLElement;
265
+ /**
266
+ * Whether to include an arrow on the popover.
267
+ *
268
+ * @default false
269
+ */
270
+ includeArrow?: boolean;
271
+ /** The class name for the content container element. */
272
+ contentContainerClassName?: string;
273
+ /** The style for the content container element. */
274
+ contentContainerStyle?: React.CSSProperties;
275
+ }
276
+ interface PopoverTriggerProps {
277
+ /** The contents of the popover trigger. */
278
+ children?: React.ReactNode | (({ isOpen, triggerProps, triggerRef, }: {
279
+ isOpen: boolean;
280
+ triggerProps: AriaButtonProps<"button">;
281
+ triggerRef: React.RefObject<HTMLElement>;
282
+ }) => React.ReactNode);
283
+ /**
284
+ * Client rect to be used as anchor for the popover content when no child
285
+ * element is provided.
286
+ */
287
+ anchorRect?: Rect;
288
+ }
289
+
290
+ declare const PopoverContent: React.ForwardRefExoticComponent<PopoverContentProps & React.RefAttributes<HTMLDivElement>>;
291
+
292
+ declare const PopoverTrigger: React.FC<PopoverTriggerProps>;
293
+
294
+ declare const Popover: React.FC<PopoverProps>;
295
+
233
296
  interface TooltipProps extends StylingProps, TooltipTriggerProps, AriaTooltipProps, Omit<AriaPositionProps, "overlayRef" | "targetRef" | "maxHeight" | "isOpen" | "arrowSize"> {
234
297
  /** The content of the tooltip. */
235
298
  text?: string;
@@ -305,13 +368,15 @@ interface SliderProps extends Omit<AriaSliderProps<number> & SliderStateOptions<
305
368
  */
306
369
  includeNumberInput?: boolean;
307
370
  }
308
- interface IconSliderProps extends Pick<SliderProps, "value" | "minValue" | "maxValue" | "onChange" | "defaultValue">, StylingProps, IconComponentProps {
371
+ interface IconSliderProps extends Pick<SliderProps, "value" | "minValue" | "maxValue" | "onChange" | "defaultValue" | "includeNumberInput">, StylingProps, IconComponentProps {
309
372
  /**
310
373
  * A function to format the value of the slider.
311
374
  *
312
375
  * @default value => value
313
376
  */
314
377
  formatValue?: (value: number) => string | number;
378
+ /** The props passed to the `PopoverContent` component. */
379
+ popoverContentProps?: Omit<PopoverContentProps, "children">;
315
380
  }
316
381
 
317
382
  declare const Slider: React.ForwardRefExoticComponent<SliderProps & React.RefAttributes<HTMLDivElement>>;
@@ -405,59 +470,6 @@ interface PortalContainerProviderProps {
405
470
 
406
471
  declare const PortalContainerProvider: React.FC<PortalContainerProviderProps>;
407
472
 
408
- declare type OverlayTriggerProps_ = Parameters<typeof useOverlayTrigger>[0];
409
- interface PopoverProps extends OverlayTriggerProps, OverlayTriggerProps_ {
410
- /** The children of the popover. */
411
- children: React.ReactNode;
412
- }
413
- interface PopoverContentProps extends Omit<AriaPopoverProps, "popoverRef" | "triggerRef" | "arrowSize" | "arrowBoundaryOffset">, StylingProps {
414
- /**
415
- * The reference element for the popover position. By default, the popover is
416
- * positioned relative to the trigger element.
417
- */
418
- triggerRef?: React.RefObject<HTMLElement>;
419
- /** The class name for the underlay element. */
420
- underlayClassName?: string;
421
- /** The contents of the popover. */
422
- children: React.ReactNode | ((state: OverlayTriggerState) => React.ReactNode);
423
- /**
424
- * The container element for the popover. By default, the modal is rendered as
425
- * a child of the body element.
426
- *
427
- * @default document.body
428
- */
429
- portalContainer?: HTMLElement;
430
- /**
431
- * Whether to include an arrow on the popover.
432
- *
433
- * @default false
434
- */
435
- includeArrow?: boolean;
436
- /** The class name for the content container element. */
437
- contentContainerClassName?: string;
438
- /** The style for the content container element. */
439
- contentContainerStyle?: React.CSSProperties;
440
- }
441
- interface PopoverTriggerProps {
442
- /** The contents of the popover trigger. */
443
- children?: React.ReactNode | (({ isOpen, triggerProps, triggerRef, }: {
444
- isOpen: boolean;
445
- triggerProps: AriaButtonProps<"button">;
446
- triggerRef: React.RefObject<HTMLElement>;
447
- }) => React.ReactNode);
448
- /**
449
- * Client rect to be used as anchor for the popover content when no child
450
- * element is provided.
451
- */
452
- anchorRect?: Rect;
453
- }
454
-
455
- declare const PopoverContent: React.ForwardRefExoticComponent<PopoverContentProps & React.RefAttributes<HTMLDivElement>>;
456
-
457
- declare const PopoverTrigger: React.FC<PopoverTriggerProps>;
458
-
459
- declare const Popover: React.FC<PopoverProps>;
460
-
461
473
  declare type MenuOption = Omit<ListOption, "description"> & {
462
474
  keyboardShortcut?: string;
463
475
  };
@@ -722,7 +734,7 @@ interface CheckboxProps extends Omit<AriaCheckboxProps, "children" | "validation
722
734
 
723
735
  declare const Checkbox: React.ForwardRefExoticComponent<CheckboxProps & React.RefAttributes<HTMLLabelElement>>;
724
736
 
725
- declare type Excluded = "isDisabled" | "isReadOnly" | "isRequired" | "locale" | "validationState" | "label" | "formatOptions" | "isInvalid" | "validationBehaviour" | "validate" | "description" | "errorMessage";
737
+ declare type Excluded = "isRequired" | "locale" | "validationState" | "label" | "formatOptions" | "isInvalid" | "validationBehaviour" | "validate" | "description" | "errorMessage";
726
738
  interface PaginationProps extends Omit<AriaNumberFieldProps, Excluded>, Omit<NumberFieldStateOptions, Excluded>, StylingProps {
727
739
  /** The largest value allowed for the input. */
728
740
  maxValue: number;
@@ -740,6 +752,8 @@ interface PaginationProps extends Omit<AriaNumberFieldProps, Excluded>, Omit<Num
740
752
  * @default md
741
753
  */
742
754
  size?: "xs" | "sm" | "md" | "lg";
755
+ /** Whether to hide the increment and decrement actions. */
756
+ hideActions?: boolean;
743
757
  }
744
758
 
745
759
  declare const Pagination: React.ForwardRefExoticComponent<PaginationProps & React.RefAttributes<HTMLDivElement>>;
@@ -1241,7 +1255,7 @@ interface IconColorInputProps extends StylingProps, Omit<ColorInputProps, "rende
1241
1255
  *
1242
1256
  * @default standard
1243
1257
  */
1244
- variant: "compact" | "standard";
1258
+ variant?: "compact" | "standard";
1245
1259
  }
1246
1260
 
1247
1261
  declare const ColorInput: React.ForwardRefExoticComponent<ColorInputProps & React.RefAttributes<HTMLDivElement>>;
@@ -1322,26 +1336,26 @@ interface FreehandCanvasProps extends StylingProps, AriaLabelingProps {
1322
1336
  */
1323
1337
  isBound?: boolean;
1324
1338
  /**
1325
- * Callback for when the points change. This is called on every point change.
1339
+ * Callback for when the lines change. This is called on every point change.
1326
1340
  *
1327
- * @param points
1341
+ * @param lines
1328
1342
  */
1329
- onChange?: (points: number[][][]) => void;
1343
+ onChange?: (lines: FreehandCanvasLine[]) => void;
1330
1344
  /**
1331
- * Callback for when the points change has ended. This is called once after
1332
- * the pointerup event. It is recommended to use this callback for performance
1345
+ * Callback for when the lines change has ended. This is called once after the
1346
+ * pointerup event. It is recommended to use this callback for performance
1333
1347
  * reasons.
1334
1348
  *
1335
- * @param points
1349
+ * @param lines
1336
1350
  */
1337
- onChangeEnd?: (points: number[][][]) => void;
1338
- /** The default points to render. */
1339
- defaultValue?: number[][][];
1351
+ onChangeEnd?: (lines: FreehandCanvasLine[]) => void;
1352
+ /** The default lines to render. */
1353
+ defaultValue?: FreehandCanvasLine[];
1340
1354
  /**
1341
1355
  * The value of the canvas. This can be used to make the canvas a controlled
1342
1356
  * component.
1343
1357
  */
1344
- value?: number[][][];
1358
+ value?: FreehandCanvasLine[];
1345
1359
  /** The label for the canvas. */
1346
1360
  label?: string;
1347
1361
  /**
@@ -1369,6 +1383,10 @@ interface FreehandCanvasProps extends StylingProps, AriaLabelingProps {
1369
1383
  /** Description for the canvas. */
1370
1384
  description?: string;
1371
1385
  }
1386
+ /** A line in the freehand canvas. */
1387
+ declare type FreehandCanvasLine = FreehandCanvasPoint[];
1388
+ /** A point in the freehand canvas. The pressure is optional. */
1389
+ declare type FreehandCanvasPoint = [x: number, y: number, pressure?: number];
1372
1390
 
1373
1391
  declare const FreehandCanvas: React.ForwardRefExoticComponent<FreehandCanvasProps & React.RefAttributes<HTMLDivElement>>;
1374
1392
 
@@ -1802,6 +1820,8 @@ interface ToolbarProps extends StylingProps, AriaToolbarProps {
1802
1820
  * `isCollapsible` is true.
1803
1821
  */
1804
1822
  renderSpacer?: boolean;
1823
+ /** The callback to call when any key is pressed. */
1824
+ onKeyDown?: KeyboardProps["onKeyDown"];
1805
1825
  }
1806
1826
 
1807
1827
  declare const Toolbar: React.ForwardRefExoticComponent<ToolbarProps & React.RefAttributes<HTMLDivElement>>;
@@ -2205,7 +2225,7 @@ interface ImageGalleryProps extends StylingProps, Omit<ListBoxProps, "items" | "
2205
2225
 
2206
2226
  declare const ImageGallery: React.ForwardRefExoticComponent<ImageGalleryProps & React.RefAttributes<HTMLDivElement>>;
2207
2227
 
2208
- interface ButtonSelectProps extends StylingProps, Pick<SelectProps, "isDisabled" | "validationState" | "onSelectionChange" | "selectedKey" | "defaultSelectedKey" | "items" | "showSelectedIcon" | "isOpen" | "defaultOpen">, Pick<ToggleButtonProps, "onPress" | "isSelected" | "defaultSelected" | "excludeFromTabOrder">, AriaLabelingProps {
2228
+ interface ButtonSelectProps extends StylingProps, Pick<SelectProps, "isDisabled" | "validationState" | "onSelectionChange" | "selectedKey" | "defaultSelectedKey" | "items" | "showSelectedIcon" | "isOpen" | "defaultOpen" | "optionClassName" | "optionStyle">, Pick<ToggleButtonProps, "onPress" | "isSelected" | "defaultSelected" | "excludeFromTabOrder">, AriaLabelingProps {
2209
2229
  /**
2210
2230
  * The size of the button.
2211
2231
  *
@@ -2223,6 +2243,8 @@ interface ButtonSelectProps extends StylingProps, Pick<SelectProps, "isDisabled"
2223
2243
  isSelected: boolean;
2224
2244
  selectedKey: string;
2225
2245
  }) => void;
2246
+ /** The aria-label for the select button. */
2247
+ moreAriaLabel?: string;
2226
2248
  }
2227
2249
 
2228
2250
  declare const ButtonSelect: React.ForwardRefExoticComponent<ButtonSelectProps & React.RefAttributes<HTMLDivElement>>;
@@ -2392,6 +2414,14 @@ declare type GridListProps = Omit<StylingProps & ListProps<ListOption> & AriaGri
2392
2414
  renderGridItem: (item: Node$1<ListOption>, options: GridListItemAria & {
2393
2415
  checkBoxProps?: CheckboxProps;
2394
2416
  }, ref: React.Ref<HTMLLIElement>) => React.ReactElement;
2417
+ /**
2418
+ * Enables editing mode which disables keydown event capturing, useful
2419
+ * when you may want the internal `GridList` from taking away focus from
2420
+ * child input due to type-ahead
2421
+ *
2422
+ * @default false
2423
+ */
2424
+ isEditing?: boolean;
2395
2425
  }, "children" | "suppressTextValueWarning" | "allowDuplicateSelectionEvents" | "linkBehavior" | "keyboardDelegate" | "isVirtualized" | "filter">;
2396
2426
 
2397
2427
  declare const GridList: React.ForwardRefExoticComponent<GridListProps & React.RefAttributes<HTMLUListElement>>;
@@ -2402,8 +2432,6 @@ interface ActionGroupProps extends StylingProps, Omit<AriaActionGroupProps<ListI
2402
2432
  /**
2403
2433
  * Represents the mode of selection for a component. This variable should be
2404
2434
  * assigned one of the following string values: "single" or "multiple".
2405
- *
2406
- * @default "single"
2407
2435
  */
2408
2436
  selectionMode?: "single" | "multiple";
2409
2437
  /** The props to be passed to the tooltip component. */
@@ -2788,6 +2816,7 @@ interface TextSelectionProps {
2788
2816
  * `document.body`.
2789
2817
  */
2790
2818
  declare function useDevice(element?: Element | null | undefined): "mobile" | "tablet" | "desktop";
2819
+ declare type Device = ReturnType<typeof useDevice>;
2791
2820
 
2792
2821
  /**
2793
2822
  * Custom hook for accessing PortalContainerProviderContext. This hook allows
@@ -2801,4 +2830,4 @@ declare function useDevice(element?: Element | null | undefined): "mobile" | "ta
2801
2830
  */
2802
2831
  declare function usePortalContainer(_portalContainer?: HTMLElement): HTMLElement | undefined;
2803
2832
 
2804
- export { Accordion, AccordionItem, type AccordionItemProps, type AccordionProps, ActionButton, type ActionButtonProps, ActionGroup, ActionGroupItem, type ActionGroupProps, ActionIconButton, type ActionIconButtonProps, AlertDialog, type AlertDialogProps, AudioPlayer, type AudioPlayerProps, Avatar, type AvatarProps, type BlockProps, Box, type BoxProps, ButtonSelect, type ButtonSelectProps, Checkbox, type CheckboxProps, ColorInput, type ColorInputProps, type ColorPreset, ColorSwatch, ColorSwatchPicker, type ColorSwatchPickerProps, 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, GridList, type GridListProps, Group, type GroupProps, I18nProvider, type I18nResult, IconColorInput, IconColorInputButton, type IconColorInputProps, IconSelect, type IconSelectProps, IconSlider, type IconSliderProps, 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, type Rect, 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, isRect, useDevice, useI18n, useImage, useIntersectionObserver, useIsFirstRender, useLocalStorage, useMutationObserver, usePortalContainer, useResizeObserver, useTextSelection, useUndoRedo, useUserPreferences };
2833
+ export { Accordion, AccordionItem, type AccordionItemProps, type AccordionProps, ActionButton, type ActionButtonProps, ActionGroup, ActionGroupItem, type ActionGroupProps, ActionIconButton, type ActionIconButtonProps, AlertDialog, type AlertDialogProps, AudioPlayer, type AudioPlayerProps, Avatar, type AvatarProps, type BlockProps, Box, type BoxProps, ButtonSelect, type ButtonSelectProps, Checkbox, type CheckboxProps, ColorInput, type ColorInputProps, type ColorPreset, ColorSwatch, ColorSwatchPicker, type ColorSwatchPickerProps, type ColorSwatchProps, ComboBox, type ComboBoxProps, DateFormat, type DateFormatProps, type Device, Dialog, type DialogProps, DialogTitle, type DialogTitleProps, DomNodeRenderer, type DomNodeRendererProps, Drawer, type DrawerProps, Editor, type EditorHandle, type EditorProps, FileUpload, type FileUploadProps, FreehandCanvas, type FreehandCanvasProps, GridList, type GridListProps, Group, type GroupProps, I18nProvider, type I18nResult, IconColorInput, IconColorInputButton, type IconColorInputProps, IconSelect, type IconSelectProps, IconSlider, type IconSliderProps, 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, type Rect, 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, isRect, useDevice, useI18n, useImage, useIntersectionObserver, useIsFirstRender, useLocalStorage, useMutationObserver, usePortalContainer, useResizeObserver, useTextSelection, useUndoRedo, useUserPreferences };