@baseline-ui/core 0.35.1 → 0.37.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 +23712 -11575
- package/dist/index.css +1 -1
- package/dist/index.d.mts +53 -50
- package/dist/index.d.ts +53 -50
- package/dist/index.js +5 -180
- package/dist/index.mjs +5 -48
- package/package.json +13 -11
package/dist/index.d.ts
CHANGED
|
@@ -1,22 +1,24 @@
|
|
|
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 { 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, Locale } from 'react-aria';
|
|
5
5
|
export { I18nProviderProps, useCollator, useDateFormatter, useNumberFormatter } from 'react-aria';
|
|
6
6
|
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, TreeProps } from 'react-stately';
|
|
7
7
|
import { Node as Node$1, DragItem, FocusableElement, DOMAttributes, AriaLabelingProps, AriaValidationProps, DOMProps } from '@react-types/shared';
|
|
8
8
|
import { PressHookProps, KeyboardProps } from '@react-aria/interactions';
|
|
9
9
|
import { Theme, Sprinkles } from '@baseline-ui/tokens';
|
|
10
|
+
export { MotionGlobalConfig } from 'motion/react';
|
|
10
11
|
import { AriaTabListProps } from '@react-types/tabs';
|
|
11
12
|
import { ColorFieldProps, Color } from '@react-stately/color';
|
|
12
13
|
import { OnRender, OnRenderStart, OnDragStart, OnDrag, OnDragEnd, OnResizeStart, OnResize, OnResizeEnd, OnRotateStart, OnRotate, OnRotateEnd, OnSnap, RotationPosition } from 'react-moveable';
|
|
13
14
|
import { AriaToolbarProps } from '@react-aria/toolbar';
|
|
14
|
-
import { UseTransitionProps } from '@react-spring/core';
|
|
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
18
|
import { PanelProps as PanelProps$1, PanelGroupProps as PanelGroupProps$1, PanelResizeHandleProps as PanelResizeHandleProps$1, ImperativePanelGroupHandle as ImperativePanelGroupHandle$1, ImperativePanelHandle as ImperativePanelHandle$1 } from 'react-resizable-panels';
|
|
19
19
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
20
|
+
import { ToastQueue } from '@react-stately/toast';
|
|
21
|
+
export { ToastQueue } from '@react-stately/toast';
|
|
20
22
|
|
|
21
23
|
interface ListOption<T = Record<string, any>> {
|
|
22
24
|
id: string;
|
|
@@ -30,9 +32,9 @@ interface ListSection<T = Record<string, any>> {
|
|
|
30
32
|
title?: string;
|
|
31
33
|
children: ListOption<T>[];
|
|
32
34
|
}
|
|
33
|
-
|
|
35
|
+
type ListItem = ListOption | ListSection;
|
|
34
36
|
|
|
35
|
-
|
|
37
|
+
type DragAndDropProps = Omit<DraggableCollectionStateOptions & DroppableCollectionOptions & DroppableCollectionStateOptions, "keyboardDelegate" | "dropTargetDelegate" | "shouldAcceptItemDrop" | "onDropEnter" | "onDropActivate" | "onDropExit" | "getDropOperation" | "collection" | "selectionManager" | "onRootDrop" | "onInsert" | "getAllowedDropOperations" | "getItems" | "onItemDrop"> & Partial<Pick<DraggableCollectionStateOptions, "getItems">> & {
|
|
36
38
|
/**
|
|
37
39
|
* Indicates whether reordering is enabled.
|
|
38
40
|
*
|
|
@@ -202,9 +204,7 @@ interface ListBoxProps extends StylingProps, Omit<AriaListBoxProps<ListItem> & A
|
|
|
202
204
|
|
|
203
205
|
declare const ListBox: React__default.ForwardRefExoticComponent<ListBoxProps & React__default.RefAttributes<HTMLUListElement>>;
|
|
204
206
|
|
|
205
|
-
|
|
206
|
-
isSelected?: boolean;
|
|
207
|
-
} = object> = {
|
|
207
|
+
type UIStateOptions<T = object> = {
|
|
208
208
|
isHovered?: boolean;
|
|
209
209
|
isFocused?: boolean;
|
|
210
210
|
isPressed?: boolean;
|
|
@@ -265,15 +265,15 @@ interface DomNodeRendererProps extends StylingProps, Omit<PressHookProps, "ref">
|
|
|
265
265
|
|
|
266
266
|
declare const DomNodeRenderer: React__default.ForwardRefExoticComponent<DomNodeRendererProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
267
267
|
|
|
268
|
-
|
|
268
|
+
type OverlayTriggerProps_ = Parameters<typeof useOverlayTrigger>[0];
|
|
269
269
|
interface PopoverProps extends OverlayTriggerProps, OverlayTriggerProps_, BlockProps {
|
|
270
270
|
/** The children of the popover. */
|
|
271
271
|
children: React__default.ReactNode;
|
|
272
272
|
}
|
|
273
|
-
|
|
273
|
+
type ClassName$1 = string | ((state: {
|
|
274
274
|
isOpen: boolean;
|
|
275
275
|
}) => string | undefined);
|
|
276
|
-
|
|
276
|
+
type Style = React__default.CSSProperties | ((state: {
|
|
277
277
|
isOpen: boolean;
|
|
278
278
|
}) => React__default.CSSProperties | undefined);
|
|
279
279
|
interface PopoverContentProps extends Omit<AriaPopoverProps, "popoverRef" | "triggerRef" | "arrowSize" | "arrowBoundaryOffset">, BlockProps {
|
|
@@ -500,7 +500,7 @@ declare const ThemeProvider: React__default.ForwardRefExoticComponent<ThemeProvi
|
|
|
500
500
|
* object.
|
|
501
501
|
* @returns The user preferences.
|
|
502
502
|
*/
|
|
503
|
-
declare function useUserPreferences(ownerWindow?: Window & typeof globalThis): {
|
|
503
|
+
declare function useUserPreferences(ownerWindow?: (Window & typeof globalThis) | undefined): {
|
|
504
504
|
colorScheme: "dark" | "light";
|
|
505
505
|
highContrast: boolean;
|
|
506
506
|
reducedMotion: boolean;
|
|
@@ -521,14 +521,14 @@ interface PortalContainerProviderProps {
|
|
|
521
521
|
|
|
522
522
|
declare const PortalContainerProvider: React__default.FC<PortalContainerProviderProps>;
|
|
523
523
|
|
|
524
|
-
|
|
524
|
+
type MenuOption = Omit<ListOption, "description"> & {
|
|
525
525
|
keyboardShortcut?: string;
|
|
526
526
|
};
|
|
527
|
-
|
|
527
|
+
type MenuSection = Omit<ListSection, "children"> & {
|
|
528
528
|
children: MenuOption[];
|
|
529
529
|
};
|
|
530
|
-
|
|
531
|
-
|
|
530
|
+
type MenuItem = MenuOption | MenuSection;
|
|
531
|
+
type MenuPopoverProps = Pick<PopoverContentProps, "isNonModal" | "placement" | "shouldUpdatePosition" | "shouldFlip" | "boundaryElement" | "crossOffset" | "offset" | "portalContainer">;
|
|
532
532
|
interface MenuProps extends MenuPopoverProps, MenuTriggerProps, Omit<AriaMenuProps<MenuItem>, "children">, Omit<AriaMenuTriggerProps, "type"> {
|
|
533
533
|
/** The `className` property assigned to the root element of the component. */
|
|
534
534
|
className?: string;
|
|
@@ -808,7 +808,7 @@ interface CheckboxProps extends Omit<AriaCheckboxProps, "children" | "validation
|
|
|
808
808
|
|
|
809
809
|
declare const Checkbox: React__default.ForwardRefExoticComponent<CheckboxProps & React__default.RefAttributes<HTMLLabelElement>>;
|
|
810
810
|
|
|
811
|
-
|
|
811
|
+
type Excluded = "isRequired" | "locale" | "validationState" | "label" | "formatOptions" | "isInvalid" | "validationBehaviour" | "validate" | "description" | "errorMessage";
|
|
812
812
|
interface PaginationProps extends Omit<AriaNumberFieldProps, Excluded>, Omit<NumberFieldStateOptions, Excluded>, StylingProps {
|
|
813
813
|
/** The largest value allowed for the input. */
|
|
814
814
|
maxValue: number;
|
|
@@ -847,14 +847,14 @@ interface I18nProviderProps extends I18nProviderProps$1 {
|
|
|
847
847
|
|
|
848
848
|
declare const I18nProvider: React__default.FC<I18nProviderProps>;
|
|
849
849
|
|
|
850
|
-
|
|
850
|
+
type NumberFormatProps = Parameters<typeof useNumberFormatter>[0] & {
|
|
851
851
|
/** The number to format. */
|
|
852
852
|
value: number;
|
|
853
853
|
};
|
|
854
854
|
|
|
855
855
|
declare const NumberFormat: React__default.FC<NumberFormatProps>;
|
|
856
856
|
|
|
857
|
-
|
|
857
|
+
type DateFormatProps = Parameters<typeof useDateFormatter>[0] & {
|
|
858
858
|
/** The date to format. */
|
|
859
859
|
date: Date;
|
|
860
860
|
};
|
|
@@ -1040,7 +1040,7 @@ interface AvatarProps extends StylingProps {
|
|
|
1040
1040
|
|
|
1041
1041
|
declare const Avatar: React__default.ForwardRefExoticComponent<AvatarProps & React__default.RefAttributes<HTMLSpanElement>>;
|
|
1042
1042
|
|
|
1043
|
-
|
|
1043
|
+
type ItemProps = React__default.ComponentProps<typeof Item$2> & StylingProps & {
|
|
1044
1044
|
key?: Key$1;
|
|
1045
1045
|
icon?: React__default.FC<IconProps>;
|
|
1046
1046
|
value?: string;
|
|
@@ -1048,7 +1048,7 @@ declare type ItemProps = React__default.ComponentProps<typeof Item$2> & StylingP
|
|
|
1048
1048
|
titleClassName?: string;
|
|
1049
1049
|
titleStyle?: React__default.CSSProperties;
|
|
1050
1050
|
};
|
|
1051
|
-
|
|
1051
|
+
type TabsProps = Omit<StylingProps & AriaTabListProps<ItemProps>, "orientation" | "children" | "items" | "selectedKey" | "defaultSelectedKey" | "disabledKeys"> & {
|
|
1052
1052
|
/**
|
|
1053
1053
|
* The `TabItem` components to render inside the `Tabs` component.
|
|
1054
1054
|
*
|
|
@@ -1085,7 +1085,7 @@ declare type TabsProps = Omit<StylingProps & AriaTabListProps<ItemProps>, "orien
|
|
|
1085
1085
|
/** The style to apply to the tab header container. */
|
|
1086
1086
|
tabHeaderStyle?: React__default.CSSProperties;
|
|
1087
1087
|
};
|
|
1088
|
-
|
|
1088
|
+
type TabItemProps = StylingProps & {
|
|
1089
1089
|
/** The title of the tab. This will be displayed in the tab button. */
|
|
1090
1090
|
title: string;
|
|
1091
1091
|
/** The icon to display in front of the title. */
|
|
@@ -1352,7 +1352,7 @@ declare const ColorInput: React__default.ForwardRefExoticComponent<ColorInputPro
|
|
|
1352
1352
|
|
|
1353
1353
|
declare const IconColorInputButton: React__default.ForwardRefExoticComponent<Omit<ColorInputButtonProps, "children" | "color" | "labelPosition"> & {
|
|
1354
1354
|
icon: React__default.FC<IconProps>;
|
|
1355
|
-
color?: string | null
|
|
1355
|
+
color?: string | null;
|
|
1356
1356
|
} & React__default.RefAttributes<HTMLButtonElement>>;
|
|
1357
1357
|
interface ColorInputButtonProps extends Omit<ActionButtonProps, "label" | "className" | "style">, StylingProps, Pick<ColorInputProps, "colorLabel"> {
|
|
1358
1358
|
isOpen: boolean;
|
|
@@ -1474,13 +1474,13 @@ interface FreehandCanvasProps extends StylingProps, AriaLabelingProps {
|
|
|
1474
1474
|
description?: string;
|
|
1475
1475
|
}
|
|
1476
1476
|
/** A line in the freehand canvas. */
|
|
1477
|
-
|
|
1477
|
+
type FreehandCanvasLine = FreehandCanvasPoint[];
|
|
1478
1478
|
/** A point in the freehand canvas. The pressure is optional. */
|
|
1479
|
-
|
|
1479
|
+
type FreehandCanvasPoint = [x: number, y: number, pressure?: number];
|
|
1480
1480
|
|
|
1481
1481
|
declare const FreehandCanvas: React__default.ForwardRefExoticComponent<FreehandCanvasProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
1482
1482
|
|
|
1483
|
-
|
|
1483
|
+
type TextProps<T extends keyof React__default.JSX.IntrinsicElements = "span"> = StylingProps & React__default.ComponentProps<T> & {
|
|
1484
1484
|
/**
|
|
1485
1485
|
* The type of text to render.
|
|
1486
1486
|
*
|
|
@@ -1503,7 +1503,7 @@ declare type TextProps<T extends keyof React__default.JSX.IntrinsicElements = "s
|
|
|
1503
1503
|
elementType?: React__default.ElementType;
|
|
1504
1504
|
};
|
|
1505
1505
|
|
|
1506
|
-
declare const Text: React__default.ForwardRefExoticComponent<Omit<TextProps
|
|
1506
|
+
declare const Text: React__default.ForwardRefExoticComponent<Omit<TextProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
|
1507
1507
|
|
|
1508
1508
|
interface TransformProps {
|
|
1509
1509
|
/** The `className` property assigned to the root element of the component. */
|
|
@@ -1871,7 +1871,7 @@ interface GroupProps extends StylingProps, AriaLabelingProps {
|
|
|
1871
1871
|
|
|
1872
1872
|
declare const Group: React__default.ForwardRefExoticComponent<GroupProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
1873
1873
|
|
|
1874
|
-
|
|
1874
|
+
type SprinkleProps = Parameters<Sprinkles>[0];
|
|
1875
1875
|
interface BoxProps extends Pick<StylingProps, "data-block-id">, Omit<React__default.ComponentPropsWithoutRef<"div">, "color">, SprinkleProps {
|
|
1876
1876
|
/**
|
|
1877
1877
|
* The HTML element to use for the box.
|
|
@@ -2122,15 +2122,6 @@ interface ScrollControlButtonProps extends StylingProps, Pick<ActionButtonProps,
|
|
|
2122
2122
|
|
|
2123
2123
|
declare const ScrollControlButton: React__default.ForwardRefExoticComponent<ScrollControlButtonProps & React__default.RefAttributes<HTMLButtonElement>>;
|
|
2124
2124
|
|
|
2125
|
-
interface TransitionProps extends StylingProps {
|
|
2126
|
-
isMounted: boolean;
|
|
2127
|
-
transitions: UseTransitionProps;
|
|
2128
|
-
elementType?: keyof React__default.ReactHTML;
|
|
2129
|
-
children: React__default.ReactNode;
|
|
2130
|
-
}
|
|
2131
|
-
|
|
2132
|
-
declare const Transition: React__default.ForwardRefExoticComponent<TransitionProps & React__default.RefAttributes<HTMLElement>>;
|
|
2133
|
-
|
|
2134
2125
|
interface AlertDialogProps extends StylingProps {
|
|
2135
2126
|
/**
|
|
2136
2127
|
* The title of the dialog. This is the main heading of the dialog and is
|
|
@@ -2233,9 +2224,9 @@ interface Item {
|
|
|
2233
2224
|
src?: string;
|
|
2234
2225
|
alt?: string;
|
|
2235
2226
|
}
|
|
2236
|
-
|
|
2237
|
-
|
|
2238
|
-
|
|
2227
|
+
type ClassNameFunc = (item: Item, state: UIState) => string | undefined;
|
|
2228
|
+
type ClassName = string | ClassNameFunc;
|
|
2229
|
+
type Dimension = {
|
|
2239
2230
|
width: number | "sm" | "md";
|
|
2240
2231
|
height: number;
|
|
2241
2232
|
} | {
|
|
@@ -2494,7 +2485,7 @@ interface ColorSwatchProps extends Omit<AriaColorSwatchProps, "colorName">, Styl
|
|
|
2494
2485
|
|
|
2495
2486
|
declare const ColorSwatch: React__default.ForwardRefExoticComponent<ColorSwatchProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
2496
2487
|
|
|
2497
|
-
|
|
2488
|
+
type GridListProps = Omit<StylingProps & ListProps<ListOption> & AriaGridListOptions<ListOption> & Partial<Pick<DragAndDropProps, "enableReorder" | "orientation" | "layout" | "onReorder">> & {
|
|
2498
2489
|
/**
|
|
2499
2490
|
* The items to render in the grid list. Items have the following shape:
|
|
2500
2491
|
*
|
|
@@ -2755,7 +2746,7 @@ interface TreeViewProps extends StylingProps, Omit<AriaLabelingProps, "aria-desc
|
|
|
2755
2746
|
renderItemTitle?: (item: ReactComplexTreeItem) => ReactNode;
|
|
2756
2747
|
}
|
|
2757
2748
|
|
|
2758
|
-
|
|
2749
|
+
type ReactComplexTreeItem = TreeItem<{
|
|
2759
2750
|
label: string;
|
|
2760
2751
|
description?: string;
|
|
2761
2752
|
icon?: React__default.ElementType;
|
|
@@ -2823,8 +2814,6 @@ interface PanelResizeHandleProps extends StylingProps {
|
|
|
2823
2814
|
*/
|
|
2824
2815
|
isDisabled?: PanelResizeHandleProps$1["disabled"];
|
|
2825
2816
|
}
|
|
2826
|
-
interface PanelResizeHandleProps extends StylingProps {
|
|
2827
|
-
}
|
|
2828
2817
|
interface ImperativePanelGroupHandle {
|
|
2829
2818
|
setLayout?: ImperativePanelGroupHandle$1["setLayout"];
|
|
2830
2819
|
}
|
|
@@ -2841,6 +2830,20 @@ declare const PanelResizeHandle: {
|
|
|
2841
2830
|
displayName: string;
|
|
2842
2831
|
};
|
|
2843
2832
|
|
|
2833
|
+
interface ToastProps extends StylingProps {
|
|
2834
|
+
}
|
|
2835
|
+
type ToastContent = Omit<InlineAlertProps, "onClose"> & {
|
|
2836
|
+
canClose?: boolean;
|
|
2837
|
+
};
|
|
2838
|
+
interface GlobalToastRegionProps extends StylingProps {
|
|
2839
|
+
/** The toast queue to render. */
|
|
2840
|
+
toastQueue: ToastQueue<ToastContent>;
|
|
2841
|
+
/** The container to render the toast into. */
|
|
2842
|
+
portalContainer?: HTMLElement;
|
|
2843
|
+
}
|
|
2844
|
+
|
|
2845
|
+
declare const GlobalToastRegion: React__default.ForwardRefExoticComponent<GlobalToastRegionProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
2846
|
+
|
|
2844
2847
|
/**
|
|
2845
2848
|
* A hook that creates an IntersectionObserver and observes a target element.
|
|
2846
2849
|
*
|
|
@@ -2979,8 +2982,8 @@ declare function useImage({ src, alt }: {
|
|
|
2979
2982
|
* other related properties.
|
|
2980
2983
|
*/
|
|
2981
2984
|
declare const useUndoRedo: <T>(initialState: T | undefined, { isDisabled, onAction, }: {
|
|
2982
|
-
isDisabled?: boolean
|
|
2983
|
-
onAction?: (
|
|
2985
|
+
isDisabled?: boolean;
|
|
2986
|
+
onAction?: (state: T, action: "UNDO" | "REDO") => void;
|
|
2984
2987
|
}) => {
|
|
2985
2988
|
state: T;
|
|
2986
2989
|
push: (newState: T) => void;
|
|
@@ -3049,7 +3052,7 @@ declare function useIsFirstRender(): boolean;
|
|
|
3049
3052
|
* and the current locale.
|
|
3050
3053
|
*/
|
|
3051
3054
|
declare function useI18n<T extends Record<string, string>>(messages?: Record<string, T>): I18nResult<T>;
|
|
3052
|
-
|
|
3055
|
+
type MessageFormatter<T> = (id: keyof T | MessageDescriptor, values?: Record<string, any>) => string;
|
|
3053
3056
|
interface I18nResult<T extends LocalizedStrings[keyof LocalizedStrings]> {
|
|
3054
3057
|
formatMessage: MessageFormatter<T>;
|
|
3055
3058
|
locale: Locale;
|
|
@@ -3090,7 +3093,7 @@ declare const defineMessages: <T extends Record<string, {
|
|
|
3090
3093
|
*/
|
|
3091
3094
|
declare function useMutationObserver(target: Element | null, options: MutationObserverInit, callback: MutationCallback): MutationObserver | null;
|
|
3092
3095
|
|
|
3093
|
-
|
|
3096
|
+
type SetValue<T> = Dispatch<SetStateAction<T>>;
|
|
3094
3097
|
/**
|
|
3095
3098
|
* A hook to persist a value to localStorage.
|
|
3096
3099
|
*
|
|
@@ -3157,8 +3160,8 @@ interface TextSelectionProps {
|
|
|
3157
3160
|
* @param element - The element to use to get the owner window. Defaults to
|
|
3158
3161
|
* `document.body`.
|
|
3159
3162
|
*/
|
|
3160
|
-
declare function useDevice(element?: Element | null
|
|
3161
|
-
|
|
3163
|
+
declare function useDevice(element?: Element | null): "mobile" | "tablet" | "desktop";
|
|
3164
|
+
type Device = ReturnType<typeof useDevice>;
|
|
3162
3165
|
|
|
3163
3166
|
/**
|
|
3164
3167
|
* Custom hook for accessing PortalContainerProviderContext. This hook allows
|
|
@@ -3172,4 +3175,4 @@ declare type Device = ReturnType<typeof useDevice>;
|
|
|
3172
3175
|
*/
|
|
3173
3176
|
declare function usePortalContainer(_portalContainer?: HTMLElement): HTMLElement | undefined;
|
|
3174
3177
|
|
|
3175
|
-
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, 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, 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, ToggleButton, type ToggleButtonProps, ToggleIconButton, type ToggleIconButtonProps, Toolbar, type ToolbarProps, Tooltip, type TooltipProps, Transform, type TransformProps,
|
|
3178
|
+
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, 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 };
|