@baseline-ui/core 0.55.0 → 0.56.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 CHANGED
@@ -1,8 +1,6 @@
1
1
  import * as React from 'react';
2
2
  import React__default, { AriaAttributes, DOMAttributes as DOMAttributes$1, AriaRole, CSSProperties, HTMLAttributeAnchorTarget, HTMLAttributeReferrerPolicy, ClipboardEventHandler, CompositionEventHandler, ReactEventHandler, FormEventHandler, MouseEventHandler, TouchEventHandler, PointerEventHandler, UIEventHandler, WheelEventHandler, AnimationEventHandler, TransitionEventHandler, ReactNode, ReactElement, MouseEvent, FocusEvent, SyntheticEvent, KeyboardEvent as KeyboardEvent$2, JSX, HTMLAttributes, RefObject as RefObject$1, LabelHTMLAttributes, ElementType, JSXElementConstructor, ButtonHTMLAttributes, AnchorHTMLAttributes, InputHTMLAttributes, Ref, MutableRefObject, SVGProps, Key as Key$1, Dispatch, SetStateAction } from 'react';
3
- import { CalendarDate, CalendarDateTime, ZonedDateTime, Time, CalendarIdentifier, Calendar, DateFormatter } from '@internationalized/date';
4
- import { NumberFormatOptions } from '@internationalized/number';
5
- import { LocalizedStrings } from '@internationalized/message';
3
+ import { CalendarDate, CalendarDateTime, ZonedDateTime, Time, CalendarIdentifier, Calendar as Calendar$1, DateFormatter, DateDuration } from '@internationalized/date';
6
4
  import { Theme, Sprinkles } from '@baseline-ui/tokens';
7
5
  import { PanelImperativeHandle, PanelProps as PanelProps$1, SeparatorProps as SeparatorProps$2 } from 'react-resizable-panels';
8
6
  import * as react_jsx_runtime from 'react/jsx-runtime';
@@ -401,6 +399,13 @@ interface TextInputBase {
401
399
  placeholder?: string
402
400
  }
403
401
 
402
+ interface RangeValue<T> {
403
+ /** The start value of the range. */
404
+ start: T,
405
+ /** The end value of the range. */
406
+ end: T
407
+ }
408
+
404
409
  interface RangeInputBase<T> {
405
410
  /** The smallest value allowed for the input. */
406
411
  minValue?: T,
@@ -1477,8 +1482,189 @@ interface AriaCheckboxProps extends CheckboxProps$2, InputDOMProps, AriaTogglePr
1477
1482
 
1478
1483
 
1479
1484
 
1485
+ type DateValue$1 = CalendarDate | CalendarDateTime | ZonedDateTime;
1486
+ type MappedDateValue$1<T> =
1487
+ T extends ZonedDateTime ? ZonedDateTime :
1488
+ T extends CalendarDateTime ? CalendarDateTime :
1489
+ T extends CalendarDate ? CalendarDate :
1490
+ never;
1491
+
1492
+ interface CalendarPropsBase {
1493
+ /** The minimum allowed date that a user may select. */
1494
+ minValue?: DateValue$1 | null,
1495
+ /** The maximum allowed date that a user may select. */
1496
+ maxValue?: DateValue$1 | null,
1497
+ /** Callback that is called for each date of the calendar. If it returns true, then the date is unavailable. */
1498
+ isDateUnavailable?: (date: DateValue$1) => boolean,
1499
+ /**
1500
+ * Whether the calendar is disabled.
1501
+ * @default false
1502
+ */
1503
+ isDisabled?: boolean,
1504
+ /**
1505
+ * Whether the calendar value is immutable.
1506
+ * @default false
1507
+ */
1508
+ isReadOnly?: boolean,
1509
+ /**
1510
+ * Whether to automatically focus the calendar when it mounts.
1511
+ * @default false
1512
+ */
1513
+ autoFocus?: boolean,
1514
+ /** Controls the currently focused date within the calendar. */
1515
+ focusedValue?: DateValue$1 | null,
1516
+ /** The date that is focused when the calendar first mounts (uncontrolled). */
1517
+ defaultFocusedValue?: DateValue$1 | null,
1518
+ /** Handler that is called when the focused date changes. */
1519
+ onFocusChange?: (date: CalendarDate) => void,
1520
+ /**
1521
+ * Whether the current selection is valid or invalid according to application logic.
1522
+ * @deprecated Use `isInvalid` instead.
1523
+ */
1524
+ validationState?: ValidationState,
1525
+ /** Whether the current selection is invalid according to application logic. */
1526
+ isInvalid?: boolean,
1527
+ /** An error message to display when the selected value is invalid. */
1528
+ errorMessage?: ReactNode,
1529
+ /**
1530
+ * Controls the behavior of paging. Pagination either works by advancing the visible page by visibleDuration (default) or one unit of visibleDuration.
1531
+ * @default visible
1532
+ */
1533
+ pageBehavior?: PageBehavior,
1534
+ /**
1535
+ * The day that starts the week.
1536
+ */
1537
+ firstDayOfWeek?: 'sun' | 'mon' | 'tue' | 'wed' | 'thu' | 'fri' | 'sat',
1538
+ /**
1539
+ * Determines the alignment of the visible months on initial render based on the current selection or current date if there is no selection.
1540
+ * @default 'center'
1541
+ */
1542
+ selectionAlignment?: 'start' | 'center' | 'end'
1543
+ }
1544
+ interface CalendarProps$2<T extends DateValue$1> extends CalendarPropsBase, ValueBase<T | null, MappedDateValue$1<T>> {}
1545
+ interface RangeCalendarProps$2<T extends DateValue$1> extends CalendarPropsBase, ValueBase<RangeValue<T> | null, RangeValue<MappedDateValue$1<T>>> {
1546
+ /**
1547
+ * When combined with `isDateUnavailable`, determines whether non-contiguous ranges,
1548
+ * i.e. ranges containing unavailable dates, may be selected.
1549
+ */
1550
+ allowsNonContiguousRanges?: boolean
1551
+ }
1552
+
1553
+ interface AriaCalendarProps<T extends DateValue$1> extends CalendarProps$2<T>, DOMProps, AriaLabelingProps {}
1554
+
1555
+ interface AriaRangeCalendarProps<T extends DateValue$1> extends RangeCalendarProps$2<T>, DOMProps, AriaLabelingProps {}
1556
+
1480
1557
  type PageBehavior = 'single' | 'visible';
1481
1558
 
1559
+ interface CalendarStateBase {
1560
+ /** Whether the calendar is disabled. */
1561
+ readonly isDisabled: boolean;
1562
+ /** Whether the calendar is in a read only state. */
1563
+ readonly isReadOnly: boolean;
1564
+ /** The date range that is currently visible in the calendar. */
1565
+ readonly visibleRange: RangeValue<CalendarDate>;
1566
+ /** The minimum allowed date that a user may select. */
1567
+ readonly minValue?: DateValue$1 | null;
1568
+ /** The maximum allowed date that a user may select. */
1569
+ readonly maxValue?: DateValue$1 | null;
1570
+ /** The time zone of the dates currently being displayed. */
1571
+ readonly timeZone: string;
1572
+ /**
1573
+ * The current validation state of the selected value.
1574
+ * @deprecated Use `isValueInvalid` instead.
1575
+ */
1576
+ readonly validationState: ValidationState | null;
1577
+ /** Whether the calendar is invalid. */
1578
+ readonly isValueInvalid: boolean;
1579
+ /** The currently focused date. */
1580
+ readonly focusedDate: CalendarDate;
1581
+ /** Sets the focused date. */
1582
+ setFocusedDate(value: CalendarDate): void;
1583
+ /** Moves focus to the next calendar date. */
1584
+ focusNextDay(): void;
1585
+ /** Moves focus to the previous calendar date. */
1586
+ focusPreviousDay(): void;
1587
+ /** Moves focus to the next row of dates, e.g. the next week. */
1588
+ focusNextRow(): void;
1589
+ /** Moves focus to the previous row of dates, e.g. the previous work. */
1590
+ focusPreviousRow(): void;
1591
+ /** Moves focus to the next page of dates, e.g. the next month if one month is visible. */
1592
+ focusNextPage(): void;
1593
+ /** Moves focus to the previous page of dates, e.g. the previous month if one month is visible. */
1594
+ focusPreviousPage(): void;
1595
+ /** Moves focus to the start of the current section of dates, e.g. the start of the current month. */
1596
+ focusSectionStart(): void;
1597
+ /** Moves focus to the end of the current section of dates, e.g. the end of the current month month. */
1598
+ focusSectionEnd(): void;
1599
+ /**
1600
+ * Moves focus to the next section of dates based on what is currently displayed.
1601
+ * By default, focus is moved by one of the currently displayed unit. For example, if
1602
+ * one or more months are displayed, then focus is moved forward by one month.
1603
+ * If the `larger` option is `true`, the focus is moved by the next larger unit than
1604
+ * the one displayed. For example, if months are displayed, then focus moves to the next year.
1605
+ */
1606
+ focusNextSection(larger?: boolean): void;
1607
+ /**
1608
+ * Moves focus to the previous section of dates based on what is currently displayed.
1609
+ * By default, focus is moved by one of the currently displayed unit. For example, if
1610
+ * one or more months are displayed, then focus is moved backward by one month.
1611
+ * If the `larger` option is `true`, the focus is moved by the next larger unit than
1612
+ * the one displayed. For example, if months are displayed, then focus moves to the previous year.
1613
+ */
1614
+ focusPreviousSection(larger?: boolean): void;
1615
+ /** Selects the currently focused date. */
1616
+ selectFocusedDate(): void;
1617
+ /** Selects the given date. */
1618
+ selectDate(date: CalendarDate): void;
1619
+ /** Whether focus is currently within the calendar. */
1620
+ readonly isFocused: boolean;
1621
+ /** Sets whether focus is currently within the calendar. */
1622
+ setFocused(value: boolean): void;
1623
+ /** Returns whether the given date is invalid according to the `minValue` and `maxValue` props. */
1624
+ isInvalid(date: CalendarDate): boolean;
1625
+ /** Returns whether the given date is currently selected. */
1626
+ isSelected(date: CalendarDate): boolean;
1627
+ /** Returns whether the given date is currently focused. */
1628
+ isCellFocused(date: CalendarDate): boolean;
1629
+ /** Returns whether the given date is disabled according to the `minValue, `maxValue`, and `isDisabled` props. */
1630
+ isCellDisabled(date: CalendarDate): boolean;
1631
+ /** Returns whether the given date is unavailable according to the `isDateUnavailable` prop. */
1632
+ isCellUnavailable(date: CalendarDate): boolean;
1633
+ /** Returns whether the previous visible date range is allowed to be selected according to the `minValue` prop. */
1634
+ isPreviousVisibleRangeInvalid(): boolean;
1635
+ /** Returns whether the next visible date range is allowed to be selected according to the `maxValue` prop. */
1636
+ isNextVisibleRangeInvalid(): boolean;
1637
+ /**
1638
+ * Returns an array of dates in the week index counted from the provided start date, or the first visible date if not given.
1639
+ * The returned array always has 7 elements, but may include null if the date does not exist according to the calendar system.
1640
+ */
1641
+ getDatesInWeek(weekIndex: number, startDate?: CalendarDate): Array<CalendarDate | null>;
1642
+ }
1643
+ interface CalendarState extends CalendarStateBase {
1644
+ /** The currently selected date. */
1645
+ readonly value: CalendarDate | null;
1646
+ /** Sets the currently selected date. */
1647
+ setValue(value: CalendarDate | null): void;
1648
+ }
1649
+ interface RangeCalendarState<T extends DateValue$1 = DateValue$1> extends CalendarStateBase {
1650
+ /** The currently selected date range. */
1651
+ readonly value: RangeValue<T> | null;
1652
+ /** Sets the currently selected date range. */
1653
+ setValue(value: RangeValue<T> | null): void;
1654
+ /** Highlights the given date during selection, e.g. by hovering or dragging. */
1655
+ highlightDate(date: CalendarDate): void;
1656
+ /** The current anchor date that the user clicked on to begin range selection. */
1657
+ readonly anchorDate: CalendarDate | null;
1658
+ /** Sets the anchor date that the user clicked on to begin range selection. */
1659
+ setAnchorDate(date: CalendarDate | null): void;
1660
+ /** The currently highlighted date range. */
1661
+ readonly highlightedRange: RangeValue<CalendarDate> | null;
1662
+ /** Whether the user is currently dragging over the calendar. */
1663
+ readonly isDragging: boolean;
1664
+ /** Sets whether the user is dragging over the calendar. */
1665
+ setDragging(isDragging: boolean): void;
1666
+ }
1667
+
1482
1668
  interface SliderProps$1<T = number | number[]> extends RangeInputBase<number>, ValueBase<T>, LabelableProps {
1483
1669
  /**
1484
1670
  * The orientation of the Slider.
@@ -2351,7 +2537,7 @@ interface DateFieldStateOptions<T extends DateValue = DateValue> extends DatePic
2351
2537
  * `@internationalized/date` package, or manually implemented to include support for
2352
2538
  * only certain calendars.
2353
2539
  */
2354
- createCalendar: (name: CalendarIdentifier) => Calendar;
2540
+ createCalendar: (name: CalendarIdentifier) => Calendar$1;
2355
2541
  }
2356
2542
 
2357
2543
  interface TimeFieldStateOptions<T extends TimeValue = TimeValue> extends TimePickerProps<T> {
@@ -2874,6 +3060,12 @@ interface I18nProviderProps$1 {
2874
3060
  */
2875
3061
  declare function useLocale(): Locale;
2876
3062
 
3063
+ type LocalizedStrings = {
3064
+ [lang: string]: {
3065
+ [key: string]: string;
3066
+ };
3067
+ };
3068
+
2877
3069
  interface DateFormatterOptions extends Intl.DateTimeFormatOptions {
2878
3070
  calendar?: string;
2879
3071
  }
@@ -2884,6 +3076,11 @@ interface DateFormatterOptions extends Intl.DateTimeFormatOptions {
2884
3076
  */
2885
3077
  declare function useDateFormatter(options?: DateFormatterOptions): DateFormatter;
2886
3078
 
3079
+ interface NumberFormatOptions extends Intl.NumberFormatOptions {
3080
+ /** Overrides default numbering system for the current locale. */
3081
+ numberingSystem?: string;
3082
+ }
3083
+
2887
3084
  /**
2888
3085
  * Provides localized number formatting for the current locale. Automatically updates when the locale changes,
2889
3086
  * and handles caching of the number formatter for performance.
@@ -4228,6 +4425,65 @@ interface ItemRenderProps {
4228
4425
  allowsSelection?: boolean;
4229
4426
  }
4230
4427
 
4428
+ interface CalendarRenderProps {
4429
+ /**
4430
+ * Whether the calendar is disabled.
4431
+ * @selector [data-disabled]
4432
+ */
4433
+ isDisabled: boolean;
4434
+ /**
4435
+ * State of the calendar.
4436
+ */
4437
+ state: CalendarState;
4438
+ /**
4439
+ * Whether the calendar is invalid.
4440
+ * @selector [data-invalid]
4441
+ */
4442
+ isInvalid: boolean;
4443
+ }
4444
+ interface RangeCalendarRenderProps extends Omit<CalendarRenderProps, 'state'> {
4445
+ /**
4446
+ * State of the range calendar.
4447
+ */
4448
+ state: RangeCalendarState;
4449
+ }
4450
+ interface CalendarProps$1<T extends DateValue> extends Omit<AriaCalendarProps<T>, 'errorMessage' | 'validationState'>, RenderProps<CalendarRenderProps, 'div'>, SlotProps, GlobalDOMAttributes<HTMLDivElement> {
4451
+ /**
4452
+ * The CSS [className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className) for the element. A function may be provided to compute the class based on component state.
4453
+ * @default 'react-aria-Calendar'
4454
+ */
4455
+ className?: ClassNameOrFunction<CalendarRenderProps>;
4456
+ /**
4457
+ * The amount of days that will be displayed at once. This affects how pagination works.
4458
+ * @default {months: 1}
4459
+ */
4460
+ visibleDuration?: DateDuration;
4461
+ /**
4462
+ * A function to create a new [Calendar](https://react-spectrum.adobe.com/internationalized/date/Calendar.html)
4463
+ * object for a given calendar identifier. If not provided, the `createCalendar` function
4464
+ * from `@internationalized/date` will be used.
4465
+ */
4466
+ createCalendar?: (identifier: CalendarIdentifier) => Calendar$1;
4467
+ }
4468
+ interface RangeCalendarProps$1<T extends DateValue> extends Omit<AriaRangeCalendarProps<T>, 'errorMessage' | 'validationState'>, RenderProps<RangeCalendarRenderProps, 'div'>, SlotProps, GlobalDOMAttributes<HTMLDivElement> {
4469
+ /**
4470
+ * The CSS [className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className) for the element. A function may be provided to compute the class based on component state.
4471
+ * @default 'react-aria-RangeCalendar'
4472
+ */
4473
+ className?: ClassNameOrFunction<RangeCalendarRenderProps>;
4474
+ /**
4475
+ * The amount of days that will be displayed at once. This affects how pagination works.
4476
+ * @default {months: 1}
4477
+ */
4478
+ visibleDuration?: DateDuration;
4479
+ /**
4480
+ * A function to create a new [Calendar](https://react-spectrum.adobe.com/internationalized/date/Calendar.html)
4481
+ * object for a given calendar identifier. If not provided, the `createCalendar` function
4482
+ * from `@internationalized/date` will be used.
4483
+ */
4484
+ createCalendar?: (identifier: CalendarIdentifier) => Calendar$1;
4485
+ }
4486
+
4231
4487
  interface DraggableCollectionStateOpts<T = object> extends Omit<DraggableCollectionStateOptions<T>, 'getItems'> {
4232
4488
  }
4233
4489
  interface DragHooks<T = object> {
@@ -6548,6 +6804,29 @@ interface ToggleButtonProps extends Omit<StylingProps, "style" | "className">, O
6548
6804
 
6549
6805
  declare const ToggleButton: React__default.ForwardRefExoticComponent<ToggleButtonProps & React__default.RefAttributes<HTMLButtonElement>>;
6550
6806
 
6807
+ type CalendarSize = "xs" | "sm";
6808
+ type CalendarHeaderVariant = "title" | "selectMonth" | "selectMonthAndYear";
6809
+ interface CalendarBaseProps {
6810
+ /** The size of the calendar. */
6811
+ size?: CalendarSize;
6812
+ /** Optional title displayed above the calendar (e.g. "Date"). Shows a calendar icon and separator. */
6813
+ title?: string;
6814
+ /**
6815
+ * Controls how the calendar header is displayed.
6816
+ * - `"title"`: Month and year as plain text between navigation arrows (default).
6817
+ * - `"selectMonth"`: Month and year as a dropdown selector with grouped navigation arrows.
6818
+ * - `"selectMonthAndYear"`: Separate month and year sections, each with their own navigation arrows.
6819
+ * @default "title"
6820
+ */
6821
+ headerVariant?: CalendarHeaderVariant;
6822
+ }
6823
+ type CalendarProps<T extends DateValue = DateValue> = StylingProps & Omit<CalendarProps$1<T>, "visibleDuration"> & CalendarBaseProps;
6824
+ type RangeCalendarProps<T extends DateValue = DateValue> = StylingProps & Omit<RangeCalendarProps$1<T>, "visibleDuration"> & CalendarBaseProps;
6825
+
6826
+ declare const Calendar: <T extends DateValue>(props: CalendarProps<T> & React__default.RefAttributes<HTMLDivElement>) => React__default.ReactElement;
6827
+
6828
+ declare const RangeCalendar: <T extends DateValue>(props: RangeCalendarProps<T> & React__default.RefAttributes<HTMLDivElement>) => React__default.ReactElement;
6829
+
6551
6830
  interface CheckboxProps extends Omit<CheckboxProps$1, "children" | "className" | "style">, StylingProps {
6552
6831
  /** The checkbox's label. */
6553
6832
  label?: string;
@@ -6841,7 +7120,7 @@ interface UNSAFE_ListBoxProps extends StylingProps, Omit<AriaListBoxProps<ListIt
6841
7120
  }
6842
7121
 
6843
7122
  type SelectionMode = "single" | "multiple";
6844
- interface SelectProps<M extends SelectionMode = SelectionMode> extends Omit<AriaSelectOptions<ListItem, M> & SelectStateOptions<ListItem, M> & PopoverContentProps, "validationState" | "items" | "children" | "isRequired" | "className" | "style" | "triggerRef" | "validate" | "validationBehavior" | "keyboardDelegate" | "state" | "overlayProps">, Pick<UNSAFE_ListBoxProps, "items" | "optionStyle" | "optionClassName">, Pick<ColorInputProps, "onTriggerPress">, StylingProps {
7123
+ interface SelectProps<M extends SelectionMode = SelectionMode> extends Omit<AriaSelectOptions<ListItem, M> & SelectStateOptions<ListItem, M> & PopoverContentProps, "validationState" | "items" | "children" | "isRequired" | "className" | "style" | "triggerRef" | "validate" | "validationBehavior" | "keyboardDelegate" | "state" | "overlayProps">, Pick<UNSAFE_ListBoxProps, "items" | "optionStyle" | "optionClassName" | "showSectionHeader">, Pick<ColorInputProps, "onTriggerPress">, StylingProps {
6845
7124
  /**
6846
7125
  * The position of the label.
6847
7126
  *
@@ -9302,4 +9581,4 @@ declare namespace reactStately {
9302
9581
  export { type reactStately_Color as Color, type reactStately_ListData as ListData, type reactStately_TreeData as TreeData, reactStately_useListData as useListData, reactStately_useTreeData as useTreeData };
9303
9582
  }
9304
9583
 
9305
- 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, type BoundaryAxis, 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, type HorizontalBoundaryBehavior, 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, LocaleAwareGridLayout, 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, Skeleton, type SkeletonProps, Slider, type SliderProps, StatusCard, type StatusCardProps, type StylingProps, Switch, type SwitchProps, TabItem, type TabItemProps, TableLayout, Tabs, type TabsProps, Tag, TagGroup, type TagGroupProps, type TagProps, type TagVariant, 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 };
9584
+ 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, type BoundaryAxis, Box, type BoxProps, ButtonSelect, type ButtonSelectProps, Calendar, type CalendarHeaderVariant, type CalendarProps, type CalendarSize, 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, type HorizontalBoundaryBehavior, 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, LocaleAwareGridLayout, 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, RangeCalendar, type RangeCalendarProps, Reaction, type ReactionProps, type Rect, type SVGRProps, ScrollControlButton, type ScrollControlButtonProps, SearchInput, type SearchInputProps, Select, type SelectProps, Separator, type SeparatorProps, Size, Skeleton, type SkeletonProps, Slider, type SliderProps, StatusCard, type StatusCardProps, type StylingProps, Switch, type SwitchProps, TabItem, type TabItemProps, TableLayout, Tabs, type TabsProps, Tag, TagGroup, type TagGroupProps, type TagProps, type TagVariant, 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 };