@baseline-ui/core 0.48.5 → 0.49.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.mts +38 -4
- package/dist/index.d.ts +38 -4
- package/dist/index.js +9 -9
- package/dist/index.mjs +9 -9
- package/package.json +5 -5
- package/sbom.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -3202,6 +3202,13 @@ interface AriaPopoverProps extends Omit<AriaPositionProps, 'isOpen' | 'onClose'
|
|
|
3202
3202
|
* By default, onClose will always be called on interaction outside the popover ref.
|
|
3203
3203
|
*/
|
|
3204
3204
|
shouldCloseOnInteractOutside?: (element: Element) => boolean;
|
|
3205
|
+
/**
|
|
3206
|
+
* Whether the popover should close when scrolling occurs.
|
|
3207
|
+
* When false, close-on-scroll is disabled for non-modal popovers.
|
|
3208
|
+
*
|
|
3209
|
+
* @default true
|
|
3210
|
+
*/
|
|
3211
|
+
shouldCloseOnScroll?: boolean;
|
|
3205
3212
|
}
|
|
3206
3213
|
|
|
3207
3214
|
interface AriaModalOverlayProps extends Pick<AriaOverlayProps, 'shouldCloseOnInteractOutside'> {
|
|
@@ -3221,6 +3228,11 @@ interface AriaModalOverlayProps extends Pick<AriaOverlayProps, 'shouldCloseOnInt
|
|
|
3221
3228
|
* @default document.body
|
|
3222
3229
|
*/
|
|
3223
3230
|
root?: HTMLElement;
|
|
3231
|
+
/**
|
|
3232
|
+
* Whether to use the HTML inert attribute instead of aria-hidden.
|
|
3233
|
+
* @default false
|
|
3234
|
+
*/
|
|
3235
|
+
shouldUseInert?: boolean;
|
|
3224
3236
|
}
|
|
3225
3237
|
|
|
3226
3238
|
interface OverlayProps {
|
|
@@ -5343,7 +5355,7 @@ interface ModalProps extends OverlayTriggerProps$1 {
|
|
|
5343
5355
|
/** The contents of the modal. */
|
|
5344
5356
|
children: React__default.ReactNode;
|
|
5345
5357
|
}
|
|
5346
|
-
interface ModalContentProps extends Omit<AriaModalOverlayProps, "isDismissable" | "isKeyboardDismissDisabled" | "root">, StylingProps {
|
|
5358
|
+
interface ModalContentProps extends Omit<AriaModalOverlayProps, "isDismissable" | "isKeyboardDismissDisabled" | "root" | "shouldUseInert">, StylingProps {
|
|
5347
5359
|
/**
|
|
5348
5360
|
* The contents of the modal. Can be a React node or a function that returns a
|
|
5349
5361
|
* React node.
|
|
@@ -5419,6 +5431,14 @@ declare const ModalClose: React__default.FC<{
|
|
|
5419
5431
|
}>;
|
|
5420
5432
|
|
|
5421
5433
|
type OverlayTriggerProps_ = Parameters<typeof useOverlayTrigger>[0];
|
|
5434
|
+
interface PopoverContentHandle {
|
|
5435
|
+
/**
|
|
5436
|
+
* Recalculates the popover's position relative to the trigger element. Useful
|
|
5437
|
+
* when the trigger or surrounding layout has changed and the popover needs to
|
|
5438
|
+
* be repositioned.
|
|
5439
|
+
*/
|
|
5440
|
+
updatePosition: () => void;
|
|
5441
|
+
}
|
|
5422
5442
|
interface PopoverProps extends OverlayTriggerProps$1, OverlayTriggerProps_, BlockProps {
|
|
5423
5443
|
/** The children of the popover. */
|
|
5424
5444
|
children: React__default.ReactNode;
|
|
@@ -5429,7 +5449,7 @@ type ClassName$1 = string | ((state: {
|
|
|
5429
5449
|
type Style = React__default.CSSProperties | ((state: {
|
|
5430
5450
|
isOpen: boolean;
|
|
5431
5451
|
}) => React__default.CSSProperties | undefined);
|
|
5432
|
-
interface PopoverContentProps extends Omit<AriaPopoverProps, "popoverRef" | "triggerRef" | "arrowSize" | "arrowBoundaryOffset">, Pick<OverlayProps, "shouldContainFocus" | "disableFocusManagement">, Pick<ModalContentProps, "disableAnimation">, BlockProps {
|
|
5452
|
+
interface PopoverContentProps extends Omit<AriaPopoverProps, "popoverRef" | "triggerRef" | "arrowSize" | "arrowBoundaryOffset" | "shouldCloseOnScroll">, Pick<OverlayProps, "shouldContainFocus" | "disableFocusManagement">, Pick<ModalContentProps, "disableAnimation">, BlockProps {
|
|
5433
5453
|
/** The class name for the popover element. */
|
|
5434
5454
|
className?: ClassName$1;
|
|
5435
5455
|
/** The style for the popover element. */
|
|
@@ -5472,13 +5492,27 @@ interface PopoverContentProps extends Omit<AriaPopoverProps, "popoverRef" | "tri
|
|
|
5472
5492
|
arrowClassName?: ClassName$1;
|
|
5473
5493
|
/** The style for the arrow element. */
|
|
5474
5494
|
arrowStyle?: Style;
|
|
5495
|
+
/**
|
|
5496
|
+
* Whether the popover should reposition to stay attached to its trigger
|
|
5497
|
+
* during scroll. When true, the popover repositions instead of closing when
|
|
5498
|
+
* scrolling occurs. When false (default), the popover will close on scroll
|
|
5499
|
+
* (current behavior).
|
|
5500
|
+
*
|
|
5501
|
+
* @default false
|
|
5502
|
+
*/
|
|
5503
|
+
shouldRepositionOnScroll?: boolean;
|
|
5504
|
+
/**
|
|
5505
|
+
* Ref to access imperative methods like updatePosition. Use this to manually
|
|
5506
|
+
* trigger popover position recalculation.
|
|
5507
|
+
*/
|
|
5508
|
+
elementHandle?: React__default.Ref<PopoverContentHandle>;
|
|
5475
5509
|
}
|
|
5476
5510
|
interface PopoverTriggerProps {
|
|
5477
5511
|
/** The contents of the popover trigger. */
|
|
5478
5512
|
children?: React__default.JSX.Element | (({ isOpen, triggerProps, triggerRef, }: {
|
|
5479
5513
|
isOpen: boolean;
|
|
5480
5514
|
triggerProps: AriaButtonProps<"button">;
|
|
5481
|
-
triggerRef: React__default.RefObject<HTMLElement
|
|
5515
|
+
triggerRef: React__default.RefObject<HTMLElement> | undefined;
|
|
5482
5516
|
}) => React__default.JSX.Element);
|
|
5483
5517
|
/**
|
|
5484
5518
|
* Client rect to be used as anchor for the popover content when no child
|
|
@@ -8891,4 +8925,4 @@ declare namespace reactStately {
|
|
|
8891
8925
|
export { type reactStately_Color as Color, type reactStately_ListData as ListData, type reactStately_TreeData as TreeData, reactStately_useListData as useListData, reactStately_useTreeData as useTreeData };
|
|
8892
8926
|
}
|
|
8893
8927
|
|
|
8894
|
-
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, 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 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, type ReactComplexTreeItem, 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, 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 };
|
|
8928
|
+
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, 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, type ReactComplexTreeItem, 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, 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
|
@@ -3202,6 +3202,13 @@ interface AriaPopoverProps extends Omit<AriaPositionProps, 'isOpen' | 'onClose'
|
|
|
3202
3202
|
* By default, onClose will always be called on interaction outside the popover ref.
|
|
3203
3203
|
*/
|
|
3204
3204
|
shouldCloseOnInteractOutside?: (element: Element) => boolean;
|
|
3205
|
+
/**
|
|
3206
|
+
* Whether the popover should close when scrolling occurs.
|
|
3207
|
+
* When false, close-on-scroll is disabled for non-modal popovers.
|
|
3208
|
+
*
|
|
3209
|
+
* @default true
|
|
3210
|
+
*/
|
|
3211
|
+
shouldCloseOnScroll?: boolean;
|
|
3205
3212
|
}
|
|
3206
3213
|
|
|
3207
3214
|
interface AriaModalOverlayProps extends Pick<AriaOverlayProps, 'shouldCloseOnInteractOutside'> {
|
|
@@ -3221,6 +3228,11 @@ interface AriaModalOverlayProps extends Pick<AriaOverlayProps, 'shouldCloseOnInt
|
|
|
3221
3228
|
* @default document.body
|
|
3222
3229
|
*/
|
|
3223
3230
|
root?: HTMLElement;
|
|
3231
|
+
/**
|
|
3232
|
+
* Whether to use the HTML inert attribute instead of aria-hidden.
|
|
3233
|
+
* @default false
|
|
3234
|
+
*/
|
|
3235
|
+
shouldUseInert?: boolean;
|
|
3224
3236
|
}
|
|
3225
3237
|
|
|
3226
3238
|
interface OverlayProps {
|
|
@@ -5343,7 +5355,7 @@ interface ModalProps extends OverlayTriggerProps$1 {
|
|
|
5343
5355
|
/** The contents of the modal. */
|
|
5344
5356
|
children: React__default.ReactNode;
|
|
5345
5357
|
}
|
|
5346
|
-
interface ModalContentProps extends Omit<AriaModalOverlayProps, "isDismissable" | "isKeyboardDismissDisabled" | "root">, StylingProps {
|
|
5358
|
+
interface ModalContentProps extends Omit<AriaModalOverlayProps, "isDismissable" | "isKeyboardDismissDisabled" | "root" | "shouldUseInert">, StylingProps {
|
|
5347
5359
|
/**
|
|
5348
5360
|
* The contents of the modal. Can be a React node or a function that returns a
|
|
5349
5361
|
* React node.
|
|
@@ -5419,6 +5431,14 @@ declare const ModalClose: React__default.FC<{
|
|
|
5419
5431
|
}>;
|
|
5420
5432
|
|
|
5421
5433
|
type OverlayTriggerProps_ = Parameters<typeof useOverlayTrigger>[0];
|
|
5434
|
+
interface PopoverContentHandle {
|
|
5435
|
+
/**
|
|
5436
|
+
* Recalculates the popover's position relative to the trigger element. Useful
|
|
5437
|
+
* when the trigger or surrounding layout has changed and the popover needs to
|
|
5438
|
+
* be repositioned.
|
|
5439
|
+
*/
|
|
5440
|
+
updatePosition: () => void;
|
|
5441
|
+
}
|
|
5422
5442
|
interface PopoverProps extends OverlayTriggerProps$1, OverlayTriggerProps_, BlockProps {
|
|
5423
5443
|
/** The children of the popover. */
|
|
5424
5444
|
children: React__default.ReactNode;
|
|
@@ -5429,7 +5449,7 @@ type ClassName$1 = string | ((state: {
|
|
|
5429
5449
|
type Style = React__default.CSSProperties | ((state: {
|
|
5430
5450
|
isOpen: boolean;
|
|
5431
5451
|
}) => React__default.CSSProperties | undefined);
|
|
5432
|
-
interface PopoverContentProps extends Omit<AriaPopoverProps, "popoverRef" | "triggerRef" | "arrowSize" | "arrowBoundaryOffset">, Pick<OverlayProps, "shouldContainFocus" | "disableFocusManagement">, Pick<ModalContentProps, "disableAnimation">, BlockProps {
|
|
5452
|
+
interface PopoverContentProps extends Omit<AriaPopoverProps, "popoverRef" | "triggerRef" | "arrowSize" | "arrowBoundaryOffset" | "shouldCloseOnScroll">, Pick<OverlayProps, "shouldContainFocus" | "disableFocusManagement">, Pick<ModalContentProps, "disableAnimation">, BlockProps {
|
|
5433
5453
|
/** The class name for the popover element. */
|
|
5434
5454
|
className?: ClassName$1;
|
|
5435
5455
|
/** The style for the popover element. */
|
|
@@ -5472,13 +5492,27 @@ interface PopoverContentProps extends Omit<AriaPopoverProps, "popoverRef" | "tri
|
|
|
5472
5492
|
arrowClassName?: ClassName$1;
|
|
5473
5493
|
/** The style for the arrow element. */
|
|
5474
5494
|
arrowStyle?: Style;
|
|
5495
|
+
/**
|
|
5496
|
+
* Whether the popover should reposition to stay attached to its trigger
|
|
5497
|
+
* during scroll. When true, the popover repositions instead of closing when
|
|
5498
|
+
* scrolling occurs. When false (default), the popover will close on scroll
|
|
5499
|
+
* (current behavior).
|
|
5500
|
+
*
|
|
5501
|
+
* @default false
|
|
5502
|
+
*/
|
|
5503
|
+
shouldRepositionOnScroll?: boolean;
|
|
5504
|
+
/**
|
|
5505
|
+
* Ref to access imperative methods like updatePosition. Use this to manually
|
|
5506
|
+
* trigger popover position recalculation.
|
|
5507
|
+
*/
|
|
5508
|
+
elementHandle?: React__default.Ref<PopoverContentHandle>;
|
|
5475
5509
|
}
|
|
5476
5510
|
interface PopoverTriggerProps {
|
|
5477
5511
|
/** The contents of the popover trigger. */
|
|
5478
5512
|
children?: React__default.JSX.Element | (({ isOpen, triggerProps, triggerRef, }: {
|
|
5479
5513
|
isOpen: boolean;
|
|
5480
5514
|
triggerProps: AriaButtonProps<"button">;
|
|
5481
|
-
triggerRef: React__default.RefObject<HTMLElement
|
|
5515
|
+
triggerRef: React__default.RefObject<HTMLElement> | undefined;
|
|
5482
5516
|
}) => React__default.JSX.Element);
|
|
5483
5517
|
/**
|
|
5484
5518
|
* Client rect to be used as anchor for the popover content when no child
|
|
@@ -8891,4 +8925,4 @@ declare namespace reactStately {
|
|
|
8891
8925
|
export { type reactStately_Color as Color, type reactStately_ListData as ListData, type reactStately_TreeData as TreeData, reactStately_useListData as useListData, reactStately_useTreeData as useTreeData };
|
|
8892
8926
|
}
|
|
8893
8927
|
|
|
8894
|
-
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, 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 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, type ReactComplexTreeItem, 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, 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 };
|
|
8928
|
+
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, 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, type ReactComplexTreeItem, 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, 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 };
|