@baseline-ui/core 0.50.0 → 0.51.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 +0 -27
- package/dist/index.d.mts +9 -21
- package/dist/index.d.ts +9 -21
- package/dist/index.js +11 -11
- package/dist/index.mjs +11 -11
- package/package.json +5 -6
- package/sbom.json +1 -1
package/Acknowledgements.md
CHANGED
|
@@ -11685,33 +11685,6 @@ USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
11685
11685
|
|
|
11686
11686
|
---
|
|
11687
11687
|
|
|
11688
|
-
The following software may be included in this product: react-complex-tree (2.6.0)
|
|
11689
|
-
This software contains the following license and notice below:
|
|
11690
|
-
|
|
11691
|
-
MIT License
|
|
11692
|
-
|
|
11693
|
-
Copyright (c) 2023 Lukas Bach
|
|
11694
|
-
|
|
11695
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
11696
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
11697
|
-
in the Software without restriction, including without limitation the rights
|
|
11698
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
11699
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
11700
|
-
furnished to do so, subject to the following conditions:
|
|
11701
|
-
|
|
11702
|
-
The above copyright notice and this permission notice shall be included in all
|
|
11703
|
-
copies or substantial portions of the Software.
|
|
11704
|
-
|
|
11705
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
11706
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
11707
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
11708
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
11709
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
11710
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
11711
|
-
SOFTWARE.
|
|
11712
|
-
|
|
11713
|
-
---
|
|
11714
|
-
|
|
11715
11688
|
The following software may be included in this product: react-docgen (8.0.2)
|
|
11716
11689
|
This software contains the following license and notice below:
|
|
11717
11690
|
|
package/dist/index.d.mts
CHANGED
|
@@ -4,7 +4,6 @@ import { Time, CalendarDateTime, ZonedDateTime, CalendarDate, CalendarIdentifier
|
|
|
4
4
|
import { NumberFormatOptions } from '@internationalized/number';
|
|
5
5
|
import { LocalizedStrings } from '@internationalized/message';
|
|
6
6
|
import { Theme, Sprinkles } from '@baseline-ui/tokens';
|
|
7
|
-
import { TreeItem } from 'react-complex-tree';
|
|
8
7
|
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';
|
|
9
8
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
10
9
|
export { MotionGlobalConfig } from 'motion/react';
|
|
@@ -8037,15 +8036,6 @@ interface TreeViewProps extends StylingProps, Omit<AriaLabelingProps, "aria-desc
|
|
|
8037
8036
|
* ```;
|
|
8038
8037
|
*/
|
|
8039
8038
|
items: TreeListItem;
|
|
8040
|
-
/**
|
|
8041
|
-
* The id of the root item. If not provided, the id of the first item will be
|
|
8042
|
-
* used.
|
|
8043
|
-
*/
|
|
8044
|
-
rootId?: string;
|
|
8045
|
-
/** The callback function that is called when the item is collapsed. */
|
|
8046
|
-
onCollapse?: (key: Key$1) => void;
|
|
8047
|
-
/** The callback function that is called when the item is expanded. */
|
|
8048
|
-
onExpand?: (key: Key$1) => void;
|
|
8049
8039
|
/**
|
|
8050
8040
|
* The callback function that is called when the primary action is triggered.
|
|
8051
8041
|
* If not provided, the primary action will not be shown.
|
|
@@ -8067,7 +8057,7 @@ interface TreeViewProps extends StylingProps, Omit<AriaLabelingProps, "aria-desc
|
|
|
8067
8057
|
/**
|
|
8068
8058
|
* The position of the actions.
|
|
8069
8059
|
*
|
|
8070
|
-
* @default "
|
|
8060
|
+
* @default "start"
|
|
8071
8061
|
*/
|
|
8072
8062
|
actionsPosition?: "start" | "end";
|
|
8073
8063
|
/**
|
|
@@ -8085,17 +8075,9 @@ interface TreeViewProps extends StylingProps, Omit<AriaLabelingProps, "aria-desc
|
|
|
8085
8075
|
*
|
|
8086
8076
|
* @default item => item.label
|
|
8087
8077
|
*/
|
|
8088
|
-
renderItemTitle?: (item:
|
|
8078
|
+
renderItemTitle?: (item: TreeListItem) => ReactNode;
|
|
8089
8079
|
}
|
|
8090
8080
|
|
|
8091
|
-
type ReactComplexTreeItem = TreeItem<{
|
|
8092
|
-
label: string;
|
|
8093
|
-
description?: string;
|
|
8094
|
-
icon?: React__default.ElementType;
|
|
8095
|
-
posInset: number;
|
|
8096
|
-
setSize: number;
|
|
8097
|
-
[key: string]: unknown;
|
|
8098
|
-
}>;
|
|
8099
8081
|
declare const TreeView: React__default.ForwardRefExoticComponent<TreeViewProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
8100
8082
|
|
|
8101
8083
|
interface PanelProps extends StylingProps {
|
|
@@ -8426,6 +8408,12 @@ declare const VIRTUALIZER_LAYOUT_DEFAULT_OPTIONS: {
|
|
|
8426
8408
|
rowHeight: number;
|
|
8427
8409
|
};
|
|
8428
8410
|
};
|
|
8411
|
+
TREE_VIEW: {
|
|
8412
|
+
layout: typeof ListLayout;
|
|
8413
|
+
layoutOptions: {
|
|
8414
|
+
rowHeight: number;
|
|
8415
|
+
};
|
|
8416
|
+
};
|
|
8429
8417
|
IMAGE_GALLERY: {
|
|
8430
8418
|
layout: typeof GridLayout;
|
|
8431
8419
|
layoutOptions: {
|
|
@@ -8958,4 +8946,4 @@ declare namespace reactStately {
|
|
|
8958
8946
|
export { type reactStately_Color as Color, type reactStately_ListData as ListData, type reactStately_TreeData as TreeData, reactStately_useListData as useListData, reactStately_useTreeData as useTreeData };
|
|
8959
8947
|
}
|
|
8960
8948
|
|
|
8961
|
-
export { Accordion, AccordionItem, type AccordionItemProps, type AccordionProps, ActionButton, type ActionButtonProps, ActionGroup, ActionGroupItem, type ActionGroupProps, ActionIconButton, type ActionIconButtonProps, Actionable, type ActionableProps, AlertDialog, type AlertDialogProps, AudioPlayer, type AudioPlayerProps, Autocomplete, type AutocompleteProps, Avatar, type AvatarProps, type BlockProps, Box, type BoxProps, ButtonSelect, type ButtonSelectProps, Checkbox, type CheckboxProps, Code, type CodeProps, ColorInput, type ColorInputProps, type ColorPreset, ColorSwatch, ColorSwatchPicker, type ColorSwatchPickerProps, type ColorSwatchProps, ComboBox, type ComboBoxProps, DateField, type DateFieldProps, DateFormat, type DateFormatProps, DefaultListOption, type Device, DeviceProvider, DeviceProviderContext, type DeviceProviderProps, Dialog, type DialogProps, DialogTitle, type DialogTitleProps, Disclosure, type DisclosureProps, DomNodeRenderer, type DomNodeRendererProps, Drawer, type DrawerProps, Editor, type EditorHandle, type EditorProps, FileUpload, type FileUploadProps, FocusScope, Focusable, type FocusableProps, FrameProvider, type FrameProviderProps, FreehandCanvas, type FreehandCanvasProps, GlobalToastRegion, GridLayout, GridList, type GridListProps, Group, type GroupProps, I18nProvider, type I18nProviderProps, type I18nResult, Icon, IconColorInput, IconColorInputButton, type IconColorInputProps, type IconComponentProps$1 as IconComponentProps, type IconProps, IconSelect, type IconSelectProps, IconSlider, type IconSliderProps, ImageDropZone, type ImageDropZoneProps, ImageGallery, type ImageGalleryProps, type ImperativePanelGroupHandle, type ImperativePanelHandle, InlineAlert, type InlineAlertProps, Kbd, type KbdProps, type Key, Link, type LinkProps, ListBox, type ListBoxProps, type ListHandle$1 as ListHandle, ListLayout, 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, PointPicker, PointPickerContent, type PointPickerContentProps, PointPickerDisplay, type PointPickerDisplayProps, type PointPickerProps, Popover, PopoverContent, type PopoverContentHandle, type PopoverContentProps, type PopoverProps, PopoverTrigger, type PopoverTriggerProps, Portal, PortalContainerProvider, type PortalProps, type PressEvent, Pressable, Preview, type PreviewProps, ProgressBar, type ProgressBarProps, ProgressSpinner, type ProgressSpinnerProps, RadioGroup, type RadioGroupProps,
|
|
8949
|
+
export { Accordion, AccordionItem, type AccordionItemProps, type AccordionProps, ActionButton, type ActionButtonProps, ActionGroup, ActionGroupItem, type ActionGroupProps, ActionIconButton, type ActionIconButtonProps, Actionable, type ActionableProps, AlertDialog, type AlertDialogProps, AudioPlayer, type AudioPlayerProps, Autocomplete, type AutocompleteProps, Avatar, type AvatarProps, type BlockProps, Box, type BoxProps, ButtonSelect, type ButtonSelectProps, Checkbox, type CheckboxProps, Code, type CodeProps, ColorInput, type ColorInputProps, type ColorPreset, ColorSwatch, ColorSwatchPicker, type ColorSwatchPickerProps, type ColorSwatchProps, ComboBox, type ComboBoxProps, DateField, type DateFieldProps, DateFormat, type DateFormatProps, DefaultListOption, type Device, DeviceProvider, DeviceProviderContext, type DeviceProviderProps, Dialog, type DialogProps, DialogTitle, type DialogTitleProps, Disclosure, type DisclosureProps, DomNodeRenderer, type DomNodeRendererProps, Drawer, type DrawerProps, Editor, type EditorHandle, type EditorProps, FileUpload, type FileUploadProps, FocusScope, Focusable, type FocusableProps, FrameProvider, type FrameProviderProps, FreehandCanvas, type FreehandCanvasProps, GlobalToastRegion, GridLayout, GridList, type GridListProps, Group, type GroupProps, I18nProvider, type I18nProviderProps, type I18nResult, Icon, IconColorInput, IconColorInputButton, type IconColorInputProps, type IconComponentProps$1 as IconComponentProps, type IconProps, IconSelect, type IconSelectProps, IconSlider, type IconSliderProps, ImageDropZone, type ImageDropZoneProps, ImageGallery, type ImageGalleryProps, type ImperativePanelGroupHandle, type ImperativePanelHandle, InlineAlert, type InlineAlertProps, Kbd, type KbdProps, type Key, Link, type LinkProps, ListBox, type ListBoxProps, type ListHandle$1 as ListHandle, ListLayout, 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, PointPicker, PointPickerContent, type PointPickerContentProps, PointPickerDisplay, type PointPickerDisplayProps, type PointPickerProps, Popover, PopoverContent, type PopoverContentHandle, type PopoverContentProps, type PopoverProps, PopoverTrigger, type PopoverTriggerProps, Portal, PortalContainerProvider, type PortalProps, type PressEvent, Pressable, Preview, type PreviewProps, ProgressBar, type ProgressBarProps, ProgressSpinner, type ProgressSpinnerProps, RadioGroup, type RadioGroupProps, Reaction, type ReactionProps, type Rect, type SVGRProps, ScrollControlButton, type ScrollControlButtonProps, SearchInput, type SearchInputProps, Select, type SelectProps, Separator, type SeparatorProps, Size, Slider, type SliderProps, StatusCard, type StatusCardProps, type StylingProps, Switch, type SwitchProps, TabItem, type TabItemProps, TableLayout, Tabs, type TabsProps, TagGroup, type TagGroupProps, TaggedPagination, type TaggedPaginationProps, Text, TextInput, type TextInputProps, type TextProps, ThemeProvider, type ThemeProviderProps, TimeField, type TimeFieldProps, type ToastProps, ToastQueue, ToggleButton, type ToggleButtonProps, ToggleIconButton, type ToggleIconButtonProps, Toolbar, type ToolbarProps, Tooltip, type TooltipProps, type TreeListItem, TreeView, type TreeViewProps, UNSAFE_ListBox, type UNSAFE_ListBoxProps, reactAria as UNSAFE_aria, reactStately as UNSAFE_stately, VIRTUALIZER_LAYOUT_DEFAULT_OPTIONS, Virtualizer, type VirtualizerProps, VisuallyHidden, WaterfallLayout, announce, booleanOrObjectToConfig, calculateFontSizeToFitWidth, classNames, cleanKeyFromGlobImport, clearAnnouncer, defineMessages, destroyAnnouncer, directionVar, disableAnimations, enableAnimations, filterDOMProps, filterTruthyValues, findFocusableElements, getAbsoluteBounds, getAbsolutePosition, getActiveElement, getHTMLElement, getOsSpecificKeyboardShortcutLabel, getOwnerDocument, getPlainText, getSvgPathFromStroke, getTextDimensions, iconMap, invariant, isFocusableElement, isInIframe, isInShadowDOM, isInputThatOpensKeyboard, isInsideOverlayContent, isRect, isUrl, lightenColor, mergeProps, mergeRefs, parseColor, useCollator, useDateFormatter, useDevice, useDragAndDrop, useFilter, useFocusRing, useFocusVisible, useFrameDimensions, useI18n, useId, useImage, useInteractionModality, useIntersectionObserver, useIsFirstRender, useKeyboard, useListData, useLiveInteractionModality, useLocalStorage, useLocale, useMutationObserver, useNumberFormatter, useObjectRef, usePointProximity, usePortalContainer, usePreventFocus, useResizeObserver, useTextSelection, useUndoRedo, useUserPreferences };
|
package/dist/index.d.ts
CHANGED
|
@@ -4,7 +4,6 @@ import { Time, CalendarDateTime, ZonedDateTime, CalendarDate, CalendarIdentifier
|
|
|
4
4
|
import { NumberFormatOptions } from '@internationalized/number';
|
|
5
5
|
import { LocalizedStrings } from '@internationalized/message';
|
|
6
6
|
import { Theme, Sprinkles } from '@baseline-ui/tokens';
|
|
7
|
-
import { TreeItem } from 'react-complex-tree';
|
|
8
7
|
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';
|
|
9
8
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
10
9
|
export { MotionGlobalConfig } from 'motion/react';
|
|
@@ -8037,15 +8036,6 @@ interface TreeViewProps extends StylingProps, Omit<AriaLabelingProps, "aria-desc
|
|
|
8037
8036
|
* ```;
|
|
8038
8037
|
*/
|
|
8039
8038
|
items: TreeListItem;
|
|
8040
|
-
/**
|
|
8041
|
-
* The id of the root item. If not provided, the id of the first item will be
|
|
8042
|
-
* used.
|
|
8043
|
-
*/
|
|
8044
|
-
rootId?: string;
|
|
8045
|
-
/** The callback function that is called when the item is collapsed. */
|
|
8046
|
-
onCollapse?: (key: Key$1) => void;
|
|
8047
|
-
/** The callback function that is called when the item is expanded. */
|
|
8048
|
-
onExpand?: (key: Key$1) => void;
|
|
8049
8039
|
/**
|
|
8050
8040
|
* The callback function that is called when the primary action is triggered.
|
|
8051
8041
|
* If not provided, the primary action will not be shown.
|
|
@@ -8067,7 +8057,7 @@ interface TreeViewProps extends StylingProps, Omit<AriaLabelingProps, "aria-desc
|
|
|
8067
8057
|
/**
|
|
8068
8058
|
* The position of the actions.
|
|
8069
8059
|
*
|
|
8070
|
-
* @default "
|
|
8060
|
+
* @default "start"
|
|
8071
8061
|
*/
|
|
8072
8062
|
actionsPosition?: "start" | "end";
|
|
8073
8063
|
/**
|
|
@@ -8085,17 +8075,9 @@ interface TreeViewProps extends StylingProps, Omit<AriaLabelingProps, "aria-desc
|
|
|
8085
8075
|
*
|
|
8086
8076
|
* @default item => item.label
|
|
8087
8077
|
*/
|
|
8088
|
-
renderItemTitle?: (item:
|
|
8078
|
+
renderItemTitle?: (item: TreeListItem) => ReactNode;
|
|
8089
8079
|
}
|
|
8090
8080
|
|
|
8091
|
-
type ReactComplexTreeItem = TreeItem<{
|
|
8092
|
-
label: string;
|
|
8093
|
-
description?: string;
|
|
8094
|
-
icon?: React__default.ElementType;
|
|
8095
|
-
posInset: number;
|
|
8096
|
-
setSize: number;
|
|
8097
|
-
[key: string]: unknown;
|
|
8098
|
-
}>;
|
|
8099
8081
|
declare const TreeView: React__default.ForwardRefExoticComponent<TreeViewProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
8100
8082
|
|
|
8101
8083
|
interface PanelProps extends StylingProps {
|
|
@@ -8426,6 +8408,12 @@ declare const VIRTUALIZER_LAYOUT_DEFAULT_OPTIONS: {
|
|
|
8426
8408
|
rowHeight: number;
|
|
8427
8409
|
};
|
|
8428
8410
|
};
|
|
8411
|
+
TREE_VIEW: {
|
|
8412
|
+
layout: typeof ListLayout;
|
|
8413
|
+
layoutOptions: {
|
|
8414
|
+
rowHeight: number;
|
|
8415
|
+
};
|
|
8416
|
+
};
|
|
8429
8417
|
IMAGE_GALLERY: {
|
|
8430
8418
|
layout: typeof GridLayout;
|
|
8431
8419
|
layoutOptions: {
|
|
@@ -8958,4 +8946,4 @@ declare namespace reactStately {
|
|
|
8958
8946
|
export { type reactStately_Color as Color, type reactStately_ListData as ListData, type reactStately_TreeData as TreeData, reactStately_useListData as useListData, reactStately_useTreeData as useTreeData };
|
|
8959
8947
|
}
|
|
8960
8948
|
|
|
8961
|
-
export { Accordion, AccordionItem, type AccordionItemProps, type AccordionProps, ActionButton, type ActionButtonProps, ActionGroup, ActionGroupItem, type ActionGroupProps, ActionIconButton, type ActionIconButtonProps, Actionable, type ActionableProps, AlertDialog, type AlertDialogProps, AudioPlayer, type AudioPlayerProps, Autocomplete, type AutocompleteProps, Avatar, type AvatarProps, type BlockProps, Box, type BoxProps, ButtonSelect, type ButtonSelectProps, Checkbox, type CheckboxProps, Code, type CodeProps, ColorInput, type ColorInputProps, type ColorPreset, ColorSwatch, ColorSwatchPicker, type ColorSwatchPickerProps, type ColorSwatchProps, ComboBox, type ComboBoxProps, DateField, type DateFieldProps, DateFormat, type DateFormatProps, DefaultListOption, type Device, DeviceProvider, DeviceProviderContext, type DeviceProviderProps, Dialog, type DialogProps, DialogTitle, type DialogTitleProps, Disclosure, type DisclosureProps, DomNodeRenderer, type DomNodeRendererProps, Drawer, type DrawerProps, Editor, type EditorHandle, type EditorProps, FileUpload, type FileUploadProps, FocusScope, Focusable, type FocusableProps, FrameProvider, type FrameProviderProps, FreehandCanvas, type FreehandCanvasProps, GlobalToastRegion, GridLayout, GridList, type GridListProps, Group, type GroupProps, I18nProvider, type I18nProviderProps, type I18nResult, Icon, IconColorInput, IconColorInputButton, type IconColorInputProps, type IconComponentProps$1 as IconComponentProps, type IconProps, IconSelect, type IconSelectProps, IconSlider, type IconSliderProps, ImageDropZone, type ImageDropZoneProps, ImageGallery, type ImageGalleryProps, type ImperativePanelGroupHandle, type ImperativePanelHandle, InlineAlert, type InlineAlertProps, Kbd, type KbdProps, type Key, Link, type LinkProps, ListBox, type ListBoxProps, type ListHandle$1 as ListHandle, ListLayout, 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, PointPicker, PointPickerContent, type PointPickerContentProps, PointPickerDisplay, type PointPickerDisplayProps, type PointPickerProps, Popover, PopoverContent, type PopoverContentHandle, type PopoverContentProps, type PopoverProps, PopoverTrigger, type PopoverTriggerProps, Portal, PortalContainerProvider, type PortalProps, type PressEvent, Pressable, Preview, type PreviewProps, ProgressBar, type ProgressBarProps, ProgressSpinner, type ProgressSpinnerProps, RadioGroup, type RadioGroupProps,
|
|
8949
|
+
export { Accordion, AccordionItem, type AccordionItemProps, type AccordionProps, ActionButton, type ActionButtonProps, ActionGroup, ActionGroupItem, type ActionGroupProps, ActionIconButton, type ActionIconButtonProps, Actionable, type ActionableProps, AlertDialog, type AlertDialogProps, AudioPlayer, type AudioPlayerProps, Autocomplete, type AutocompleteProps, Avatar, type AvatarProps, type BlockProps, Box, type BoxProps, ButtonSelect, type ButtonSelectProps, Checkbox, type CheckboxProps, Code, type CodeProps, ColorInput, type ColorInputProps, type ColorPreset, ColorSwatch, ColorSwatchPicker, type ColorSwatchPickerProps, type ColorSwatchProps, ComboBox, type ComboBoxProps, DateField, type DateFieldProps, DateFormat, type DateFormatProps, DefaultListOption, type Device, DeviceProvider, DeviceProviderContext, type DeviceProviderProps, Dialog, type DialogProps, DialogTitle, type DialogTitleProps, Disclosure, type DisclosureProps, DomNodeRenderer, type DomNodeRendererProps, Drawer, type DrawerProps, Editor, type EditorHandle, type EditorProps, FileUpload, type FileUploadProps, FocusScope, Focusable, type FocusableProps, FrameProvider, type FrameProviderProps, FreehandCanvas, type FreehandCanvasProps, GlobalToastRegion, GridLayout, GridList, type GridListProps, Group, type GroupProps, I18nProvider, type I18nProviderProps, type I18nResult, Icon, IconColorInput, IconColorInputButton, type IconColorInputProps, type IconComponentProps$1 as IconComponentProps, type IconProps, IconSelect, type IconSelectProps, IconSlider, type IconSliderProps, ImageDropZone, type ImageDropZoneProps, ImageGallery, type ImageGalleryProps, type ImperativePanelGroupHandle, type ImperativePanelHandle, InlineAlert, type InlineAlertProps, Kbd, type KbdProps, type Key, Link, type LinkProps, ListBox, type ListBoxProps, type ListHandle$1 as ListHandle, ListLayout, 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, PointPicker, PointPickerContent, type PointPickerContentProps, PointPickerDisplay, type PointPickerDisplayProps, type PointPickerProps, Popover, PopoverContent, type PopoverContentHandle, type PopoverContentProps, type PopoverProps, PopoverTrigger, type PopoverTriggerProps, Portal, PortalContainerProvider, type PortalProps, type PressEvent, Pressable, Preview, type PreviewProps, ProgressBar, type ProgressBarProps, ProgressSpinner, type ProgressSpinnerProps, RadioGroup, type RadioGroupProps, Reaction, type ReactionProps, type Rect, type SVGRProps, ScrollControlButton, type ScrollControlButtonProps, SearchInput, type SearchInputProps, Select, type SelectProps, Separator, type SeparatorProps, Size, Slider, type SliderProps, StatusCard, type StatusCardProps, type StylingProps, Switch, type SwitchProps, TabItem, type TabItemProps, TableLayout, Tabs, type TabsProps, TagGroup, type TagGroupProps, TaggedPagination, type TaggedPaginationProps, Text, TextInput, type TextInputProps, type TextProps, ThemeProvider, type ThemeProviderProps, TimeField, type TimeFieldProps, type ToastProps, ToastQueue, ToggleButton, type ToggleButtonProps, ToggleIconButton, type ToggleIconButtonProps, Toolbar, type ToolbarProps, Tooltip, type TooltipProps, type TreeListItem, TreeView, type TreeViewProps, UNSAFE_ListBox, type UNSAFE_ListBoxProps, reactAria as UNSAFE_aria, reactStately as UNSAFE_stately, VIRTUALIZER_LAYOUT_DEFAULT_OPTIONS, Virtualizer, type VirtualizerProps, VisuallyHidden, WaterfallLayout, announce, booleanOrObjectToConfig, calculateFontSizeToFitWidth, classNames, cleanKeyFromGlobImport, clearAnnouncer, defineMessages, destroyAnnouncer, directionVar, disableAnimations, enableAnimations, filterDOMProps, filterTruthyValues, findFocusableElements, getAbsoluteBounds, getAbsolutePosition, getActiveElement, getHTMLElement, getOsSpecificKeyboardShortcutLabel, getOwnerDocument, getPlainText, getSvgPathFromStroke, getTextDimensions, iconMap, invariant, isFocusableElement, isInIframe, isInShadowDOM, isInputThatOpensKeyboard, isInsideOverlayContent, isRect, isUrl, lightenColor, mergeProps, mergeRefs, parseColor, useCollator, useDateFormatter, useDevice, useDragAndDrop, useFilter, useFocusRing, useFocusVisible, useFrameDimensions, useI18n, useId, useImage, useInteractionModality, useIntersectionObserver, useIsFirstRender, useKeyboard, useListData, useLiveInteractionModality, useLocalStorage, useLocale, useMutationObserver, useNumberFormatter, useObjectRef, usePointProximity, usePortalContainer, usePreventFocus, useResizeObserver, useTextSelection, useUndoRedo, useUserPreferences };
|