@baseline-ui/core 0.37.1 → 0.39.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/Acknowledgements.md +12692 -17640
- package/dist/index.css +1 -1
- package/dist/index.d.mts +126 -21
- package/dist/index.d.ts +126 -21
- package/dist/index.js +6 -33
- package/dist/index.mjs +6 -33
- package/package.json +10 -8
package/dist/index.d.ts
CHANGED
|
@@ -1,24 +1,25 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import React__default, { AriaRole, Key, ReactNode, Dispatch, SetStateAction } from 'react';
|
|
3
3
|
import { IconProps, SVGRProps } from '@baseline-ui/icons';
|
|
4
|
-
import
|
|
4
|
+
import * as react_aria from 'react-aria';
|
|
5
|
+
import { DroppableCollectionOptions, AriaListBoxProps, AriaListBoxOptions, OptionAria, AriaButtonProps, AriaPopoverProps, useOverlayTrigger, AriaTooltipProps, AriaPositionProps, FocusableOptions, 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, AriaTimeFieldProps, TimeValue, AriaDateFieldProps, DateValue, FocusProps, KeyboardProps as KeyboardProps$1, PressEvent, Locale } from 'react-aria';
|
|
5
6
|
export { I18nProviderProps, useCollator, useDateFormatter, useNumberFormatter } from 'react-aria';
|
|
6
|
-
import { DraggableCollectionStateOptions, DroppableCollectionStateOptions, Orientation, ListState,
|
|
7
|
+
import { DraggableCollectionStateOptions, DroppableCollectionStateOptions, Orientation, ListState, OverlayTriggerState, OverlayTriggerProps, TooltipTriggerProps, SliderStateOptions, ToggleProps, MenuTriggerProps, NumberFieldStateOptions, ListProps, SelectStateOptions, Item as Item$2, Selection as Selection$1, ComboBoxStateOptions, Node as Node$2, TimeFieldStateOptions, TreeProps, DateFieldStateOptions } from 'react-stately';
|
|
7
8
|
import { Node as Node$1, DragItem, FocusableElement, DOMAttributes, AriaLabelingProps, AriaValidationProps, DOMProps } from '@react-types/shared';
|
|
8
9
|
import { PressHookProps, KeyboardProps } from '@react-aria/interactions';
|
|
9
|
-
import { Theme, Sprinkles } from '@baseline-ui/tokens';
|
|
10
|
-
export { MotionGlobalConfig } from 'motion/react';
|
|
11
10
|
import { AriaTabListProps } from '@react-types/tabs';
|
|
12
11
|
import { ColorFieldProps, Color } from '@react-stately/color';
|
|
13
12
|
import { OnRender, OnRenderStart, OnDragStart, OnDrag, OnDragEnd, OnResizeStart, OnResize, OnResizeEnd, OnRotateStart, OnRotate, OnRotateEnd, OnSnap, RotationPosition } from 'react-moveable';
|
|
13
|
+
import { Theme, Sprinkles } from '@baseline-ui/tokens';
|
|
14
14
|
import { AriaToolbarProps } from '@react-aria/toolbar';
|
|
15
15
|
import { AriaColorSwatchProps } from '@react-aria/color';
|
|
16
16
|
import { AriaActionGroupProps } from '@react-aria/actiongroup';
|
|
17
17
|
import { TreeItem } from 'react-complex-tree';
|
|
18
|
-
import { PanelProps as PanelProps$1,
|
|
18
|
+
import { PanelProps as PanelProps$1, ImperativePanelHandle as ImperativePanelHandle$1, PanelGroupProps as PanelGroupProps$1, ImperativePanelGroupHandle as ImperativePanelGroupHandle$1, PanelResizeHandleProps as PanelResizeHandleProps$1 } from 'react-resizable-panels';
|
|
19
19
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
20
20
|
import { ToastQueue } from '@react-stately/toast';
|
|
21
21
|
export { ToastQueue } from '@react-stately/toast';
|
|
22
|
+
export { MotionGlobalConfig } from 'motion/react';
|
|
22
23
|
|
|
23
24
|
interface ListOption<T = Record<string, any>> {
|
|
24
25
|
id: string;
|
|
@@ -467,6 +468,7 @@ interface SearchInputProps extends Omit<AriaSearchFieldProps, "validationState"
|
|
|
467
468
|
|
|
468
469
|
declare const SearchInput: React__default.ForwardRefExoticComponent<SearchInputProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
469
470
|
|
|
471
|
+
type ThemeProviderTheme = Theme | "light" | "dark" | "system";
|
|
470
472
|
interface ThemeProviderProps extends StylingProps {
|
|
471
473
|
/**
|
|
472
474
|
* The theme to use. If not provided, the theme will be inherited from the
|
|
@@ -475,14 +477,22 @@ interface ThemeProviderProps extends StylingProps {
|
|
|
475
477
|
*
|
|
476
478
|
* @default "system"
|
|
477
479
|
*/
|
|
478
|
-
theme?:
|
|
480
|
+
theme?: ThemeProviderTheme;
|
|
479
481
|
/** The children to render. */
|
|
480
482
|
children: React__default.ReactNode;
|
|
483
|
+
/**
|
|
484
|
+
* A function that will be called when the theme changes from any of the child
|
|
485
|
+
* components.
|
|
486
|
+
*
|
|
487
|
+
* @deprecated This prop is deprecated and will be removed in a future
|
|
488
|
+
* version. Please use the `onThemeChange` prop instead.
|
|
489
|
+
*/
|
|
490
|
+
setTheme?: (theme: ThemeProviderTheme) => void;
|
|
481
491
|
/**
|
|
482
492
|
* A function that will be called when the theme changes from any of the child
|
|
483
493
|
* components.
|
|
484
494
|
*/
|
|
485
|
-
|
|
495
|
+
onThemeChange?: (theme: ThemeProviderTheme) => void;
|
|
486
496
|
}
|
|
487
497
|
|
|
488
498
|
declare const ThemeProvider: React__default.ForwardRefExoticComponent<ThemeProviderProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
@@ -507,6 +517,9 @@ declare function useUserPreferences(ownerWindow?: (Window & typeof globalThis) |
|
|
|
507
517
|
transparency: boolean;
|
|
508
518
|
};
|
|
509
519
|
|
|
520
|
+
declare function disableAnimations(): void;
|
|
521
|
+
declare function enableAnimations(): void;
|
|
522
|
+
|
|
510
523
|
interface PortalContainerProviderProps {
|
|
511
524
|
/**
|
|
512
525
|
* The container element for the popover. By default, the modal is rendered as
|
|
@@ -674,15 +687,7 @@ interface ProgressBarProps extends StylingProps, Omit<AriaProgressBarProps, "isI
|
|
|
674
687
|
|
|
675
688
|
declare const ProgressBar: React__default.ForwardRefExoticComponent<ProgressBarProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
676
689
|
|
|
677
|
-
interface
|
|
678
|
-
/** The description to display below the input. */
|
|
679
|
-
description?: string;
|
|
680
|
-
/** The error message to display when the input is in an error state. */
|
|
681
|
-
errorMessage?: string;
|
|
682
|
-
/** The warning message to display when the input is in a warning state. */
|
|
683
|
-
warningMessage?: string;
|
|
684
|
-
}
|
|
685
|
-
interface TextInputProps extends Omit<AriaTextFieldProps, "validationState" | "isInvalid" | "description" | "errorMessage">, StylingProps, InputMessage {
|
|
690
|
+
interface SharedInputProps extends StylingProps, Pick<AriaTextFieldProps, "isReadOnly" | "isDisabled"> {
|
|
686
691
|
/** The state of the input. */
|
|
687
692
|
validationState?: "valid" | "error" | "warning";
|
|
688
693
|
/**
|
|
@@ -697,8 +702,32 @@ interface TextInputProps extends Omit<AriaTextFieldProps, "validationState" | "i
|
|
|
697
702
|
* @default top
|
|
698
703
|
*/
|
|
699
704
|
labelPosition?: "top" | "start";
|
|
700
|
-
/**
|
|
701
|
-
|
|
705
|
+
/** The props to apply to the label element. */
|
|
706
|
+
labelProps?: React__default.HTMLAttributes<HTMLLabelElement>;
|
|
707
|
+
/** The props to apply to the input element. */
|
|
708
|
+
fieldProps?: React__default.HTMLAttributes<HTMLDivElement>;
|
|
709
|
+
/** The message to display below the input. */
|
|
710
|
+
message?: React__default.ReactNode;
|
|
711
|
+
/** The content to display inside the input wrapper. */
|
|
712
|
+
children?: React__default.ReactNode;
|
|
713
|
+
/** Whether the input is focused. */
|
|
714
|
+
isFocused?: boolean;
|
|
715
|
+
/** The label to display above the input. */
|
|
716
|
+
label?: React__default.ReactNode;
|
|
717
|
+
wrapperRef?: React__default.Ref<HTMLDivElement>;
|
|
718
|
+
wrapperClassName?: string;
|
|
719
|
+
isInvalid?: boolean;
|
|
720
|
+
}
|
|
721
|
+
|
|
722
|
+
interface InputMessage {
|
|
723
|
+
/** The description to display below the input. */
|
|
724
|
+
description?: string;
|
|
725
|
+
/** The error message to display when the input is in an error state. */
|
|
726
|
+
errorMessage?: string;
|
|
727
|
+
/** The warning message to display when the input is in a warning state. */
|
|
728
|
+
warningMessage?: string;
|
|
729
|
+
}
|
|
730
|
+
interface TextInputProps extends Omit<AriaTextFieldProps, "validationState" | "isInvalid" | "description" | "errorMessage">, StylingProps, InputMessage, Pick<SharedInputProps, "validationState" | "variant" | "labelPosition"> {
|
|
702
731
|
/** The style object to apply to the input element */
|
|
703
732
|
inputStyle?: React__default.CSSProperties;
|
|
704
733
|
/** The class name to apply to the input element */
|
|
@@ -1872,13 +1901,13 @@ interface GroupProps extends StylingProps, AriaLabelingProps {
|
|
|
1872
1901
|
declare const Group: React__default.ForwardRefExoticComponent<GroupProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
1873
1902
|
|
|
1874
1903
|
type SprinkleProps = Parameters<Sprinkles>[0];
|
|
1875
|
-
interface BoxProps extends Pick<StylingProps, "data-block-id">,
|
|
1904
|
+
interface BoxProps extends Pick<StylingProps, "data-block-id">, DOMAttributes<HTMLElement>, SprinkleProps {
|
|
1876
1905
|
/**
|
|
1877
1906
|
* The HTML element to use for the box.
|
|
1878
1907
|
*
|
|
1879
1908
|
* @default "div"
|
|
1880
1909
|
*/
|
|
1881
|
-
elementType?:
|
|
1910
|
+
elementType?: keyof React__default.ReactHTML;
|
|
1882
1911
|
}
|
|
1883
1912
|
|
|
1884
1913
|
declare const Box: React__default.ForwardRefExoticComponent<BoxProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
@@ -2647,6 +2676,10 @@ interface ColorSwatchPickerProps extends StylingProps, Pick<RadioGroupProps, "op
|
|
|
2647
2676
|
|
|
2648
2677
|
declare const ColorSwatchPicker: React__default.ForwardRefExoticComponent<ColorSwatchPickerProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
2649
2678
|
|
|
2679
|
+
declare const TimeField: React__default.ForwardRefExoticComponent<StylingProps & Omit<Omit<TimeFieldStateOptions<react_aria.TimeValue>, "locale"> & react_aria.AriaTimeFieldProps<react_aria.TimeValue>, "validationState" | "isRequired" | "validate" | "isInvalid"> & Pick<SharedInputProps, "label" | "variant" | "labelPosition" | "validationState"> & InputMessage & React__default.RefAttributes<HTMLDivElement>>;
|
|
2680
|
+
|
|
2681
|
+
type TimeFieldProps = StylingProps & Omit<Omit<TimeFieldStateOptions, "locale"> & AriaTimeFieldProps<TimeValue>, "validationState" | "isInvalid" | "isRequired" | "validate"> & Pick<SharedInputProps, "variant" | "labelPosition" | "validationState" | "label"> & InputMessage;
|
|
2682
|
+
|
|
2650
2683
|
interface TreeListItem extends ListOption {
|
|
2651
2684
|
children?: TreeListItem[];
|
|
2652
2685
|
}
|
|
@@ -2872,6 +2905,78 @@ interface FrameProviderProps extends BlockProps {
|
|
|
2872
2905
|
|
|
2873
2906
|
declare const FrameProvider: React__default.FC<FrameProviderProps>;
|
|
2874
2907
|
|
|
2908
|
+
declare const DateField: React__default.ForwardRefExoticComponent<StylingProps & Omit<Omit<DateFieldStateOptions<react_aria.DateValue>, "locale"> & react_aria.AriaDateFieldProps<react_aria.DateValue>, "validationState" | "isRequired" | "validate" | "isInvalid" | "createCalendar"> & Pick<SharedInputProps, "label" | "variant" | "labelPosition" | "validationState"> & InputMessage & React__default.RefAttributes<HTMLDivElement>>;
|
|
2909
|
+
|
|
2910
|
+
type DateFieldProps = StylingProps & Omit<Omit<DateFieldStateOptions, "locale"> & AriaDateFieldProps<DateValue>, "validationState" | "isInvalid" | "isRequired" | "validate" | "createCalendar"> & Pick<SharedInputProps, "variant" | "labelPosition" | "validationState" | "label"> & InputMessage;
|
|
2911
|
+
|
|
2912
|
+
interface MagnifierProps extends BlockProps {
|
|
2913
|
+
/** The magnifier's content. */
|
|
2914
|
+
children: React__default.ReactNode;
|
|
2915
|
+
/** Whether the magnifier is disabled. */
|
|
2916
|
+
isDisabled?: boolean;
|
|
2917
|
+
/** The callback function that is called when the magnifier is moved. */
|
|
2918
|
+
onMove?: (options: {
|
|
2919
|
+
coordinates: {
|
|
2920
|
+
x: number;
|
|
2921
|
+
y: number;
|
|
2922
|
+
};
|
|
2923
|
+
boundingRect: DOMRect | null;
|
|
2924
|
+
}) => void;
|
|
2925
|
+
/** The coordinates of the magnifier. */
|
|
2926
|
+
coordinates?: {
|
|
2927
|
+
x: number;
|
|
2928
|
+
y: number;
|
|
2929
|
+
};
|
|
2930
|
+
}
|
|
2931
|
+
interface MagnifierContentProps extends StylingProps, AriaLabelingProps, FocusProps<FocusableElement>, KeyboardProps$1 {
|
|
2932
|
+
/** The magnifier's content. */
|
|
2933
|
+
children: React__default.ReactElement;
|
|
2934
|
+
/** The callback function that is called when the magnifier is pressed. */
|
|
2935
|
+
onPress?: (e: PressEvent) => void;
|
|
2936
|
+
}
|
|
2937
|
+
interface Description {
|
|
2938
|
+
label: string;
|
|
2939
|
+
icon: React__default.FC<IconProps>;
|
|
2940
|
+
}
|
|
2941
|
+
interface MagnifierDisplayProps extends StylingProps {
|
|
2942
|
+
/** The description of the magnifier. */
|
|
2943
|
+
description?: Description[] | ((options: {
|
|
2944
|
+
coordinates: {
|
|
2945
|
+
x: number;
|
|
2946
|
+
y: number;
|
|
2947
|
+
};
|
|
2948
|
+
boundingRect: DOMRect | null;
|
|
2949
|
+
}) => Description[]);
|
|
2950
|
+
/**
|
|
2951
|
+
* The scale of the magnifier.
|
|
2952
|
+
*
|
|
2953
|
+
* @default 5
|
|
2954
|
+
*/
|
|
2955
|
+
scale?: number;
|
|
2956
|
+
}
|
|
2957
|
+
|
|
2958
|
+
declare const Magnifier: React__default.FC<MagnifierProps>;
|
|
2959
|
+
|
|
2960
|
+
declare const MagnifierContent: React__default.ForwardRefExoticComponent<MagnifierContentProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
2961
|
+
|
|
2962
|
+
declare const MagnifierDisplay: React__default.ForwardRefExoticComponent<MagnifierDisplayProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
2963
|
+
|
|
2964
|
+
interface Breakpoints {
|
|
2965
|
+
mobile: number;
|
|
2966
|
+
tablet: number;
|
|
2967
|
+
desktop: number;
|
|
2968
|
+
}
|
|
2969
|
+
interface DeviceProviderProps extends BlockProps {
|
|
2970
|
+
children: React__default.ReactNode;
|
|
2971
|
+
/** The breakpoints to use for the device provider. */
|
|
2972
|
+
breakpoints?: Breakpoints;
|
|
2973
|
+
}
|
|
2974
|
+
|
|
2975
|
+
declare const DeviceProviderContext: React__default.Context<{
|
|
2976
|
+
breakpoints: Breakpoints;
|
|
2977
|
+
}>;
|
|
2978
|
+
declare const DeviceProvider: React__default.FC<DeviceProviderProps>;
|
|
2979
|
+
|
|
2875
2980
|
/**
|
|
2876
2981
|
* A hook that creates an IntersectionObserver and observes a target element.
|
|
2877
2982
|
*
|
|
@@ -3203,4 +3308,4 @@ type Device = ReturnType<typeof useDevice>;
|
|
|
3203
3308
|
*/
|
|
3204
3309
|
declare function usePortalContainer(_portalContainer?: HTMLElement): HTMLElement | undefined;
|
|
3205
3310
|
|
|
3206
|
-
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, Focusable, type FocusableProps, FrameProvider, type FrameProviderProps, FreehandCanvas, type FreehandCanvasProps, GlobalToastRegion, 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, type ImperativePanelGroupHandle, type ImperativePanelHandle, InlineAlert, type InlineAlertProps, Link, type LinkProps, ListBox, type ListBoxProps, type ListHandle, type ListOption, Markdown, type MarkdownProps, Menu, type MenuItem, type MenuProps, type MessageDescriptor, MessageFormat, type MessageFormatProps, type MessageFormatter, Modal, ModalClose, ModalContent, type ModalContentProps, type ModalProps, ModalTrigger, NumberFormat, type NumberFormatProps, NumberInput, type NumberInputProps, Pagination, type PaginationProps, Panel, PanelGroup, type PanelGroupProps, type PanelProps, PanelResizeHandle, type PanelResizeHandleProps, 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, type ReactComplexTreeItem, 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, type ToastProps, ToggleButton, type ToggleButtonProps, ToggleIconButton, type ToggleIconButtonProps, Toolbar, type ToolbarProps, Tooltip, type TooltipProps, Transform, type TransformProps, TreeView, type TreeViewProps, defineMessages, isInsideOverlayContent, isRect, useDevice, useI18n, useImage, useIntersectionObserver, useIsFirstRender, useLocalStorage, useMutationObserver, usePortalContainer, useResizeObserver, useTextSelection, useUndoRedo, useUserPreferences };
|
|
3311
|
+
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, DateField, type DateFieldProps, DateFormat, type DateFormatProps, type Device, DeviceProvider, DeviceProviderContext, type DeviceProviderProps, Dialog, type DialogProps, DialogTitle, type DialogTitleProps, DomNodeRenderer, type DomNodeRendererProps, Drawer, type DrawerProps, Editor, type EditorHandle, type EditorProps, FileUpload, type FileUploadProps, Focusable, type FocusableProps, FrameProvider, type FrameProviderProps, FreehandCanvas, type FreehandCanvasProps, GlobalToastRegion, 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, type ImperativePanelGroupHandle, type ImperativePanelHandle, InlineAlert, type InlineAlertProps, Link, type LinkProps, ListBox, type ListBoxProps, type ListHandle, type ListOption, Magnifier, MagnifierContent, type MagnifierContentProps, MagnifierDisplay, type MagnifierDisplayProps, type MagnifierProps, Markdown, type MarkdownProps, Menu, type MenuItem, type MenuProps, type MessageDescriptor, MessageFormat, type MessageFormatProps, type MessageFormatter, Modal, ModalClose, ModalContent, type ModalContentProps, type ModalProps, ModalTrigger, NumberFormat, type NumberFormatProps, NumberInput, type NumberInputProps, Pagination, type PaginationProps, Panel, PanelGroup, type PanelGroupProps, type PanelProps, PanelResizeHandle, type PanelResizeHandleProps, 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, type ReactComplexTreeItem, 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, TimeField, type TimeFieldProps, type ToastProps, ToggleButton, type ToggleButtonProps, ToggleIconButton, type ToggleIconButtonProps, Toolbar, type ToolbarProps, Tooltip, type TooltipProps, Transform, type TransformProps, TreeView, type TreeViewProps, defineMessages, disableAnimations, enableAnimations, isInsideOverlayContent, isRect, useDevice, useI18n, useImage, useIntersectionObserver, useIsFirstRender, useLocalStorage, useMutationObserver, usePortalContainer, useResizeObserver, useTextSelection, useUndoRedo, useUserPreferences };
|