@unifiedsoftware/react-ui 2.0.1-beta.3 → 2.0.1-beta.5

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.ts CHANGED
@@ -345,12 +345,12 @@ interface UseElementSizeOptions<T> {
345
345
  }
346
346
  declare function useElementSize<T extends HTMLElement = any>(options: UseElementSizeOptions<T>): Resize;
347
347
 
348
- interface UseResizeObserverOptions<T> {
348
+ interface UseResizeObserverOptions$1<T> {
349
349
  ref?: React.RefObject<T | undefined>;
350
350
  onResize: () => void;
351
351
  }
352
352
  declare function hasResizeObserver(): boolean;
353
- declare function useResizeObserver<T extends Element>(options: UseResizeObserverOptions<T>): void;
353
+ declare function useResizeObserver<T extends Element>(options: UseResizeObserverOptions$1<T>): void;
354
354
 
355
355
  declare function useEffectEvent<T extends Function>(fn: T): T;
356
356
 
@@ -1409,6 +1409,8 @@ type TextInputProps = Props$m & NativeAttrs$o;
1409
1409
  declare const TextInput: react.ForwardRefExoticComponent<Props$m & NativeAttrs$o & react.RefAttributes<HTMLInputElement>>;
1410
1410
 
1411
1411
  type ToolbarSize = 'auto' | 'sm' | 'md' | 'lg';
1412
+ type ToolbarVariant = 'filled' | 'text';
1413
+ type ToolbarColor = 'secondary' | 'primary';
1412
1414
 
1413
1415
  interface Props$l {
1414
1416
  size?: ToolbarSize;
@@ -1416,14 +1418,9 @@ interface Props$l {
1416
1418
  subtitle?: React.ReactNode;
1417
1419
  startContent?: React.ReactNode;
1418
1420
  endContent?: React.ReactNode;
1419
- /**
1420
- * @deprecated Use `startContent` instead
1421
- */
1422
- startAction?: React.ReactNode;
1423
- /**
1424
- * @deprecated Use `endContent` instead
1425
- */
1426
- endAction?: React.ReactNode;
1421
+ bordered?: boolean;
1422
+ variant?: ToolbarVariant;
1423
+ color?: ToolbarColor;
1427
1424
  slotProps?: {
1428
1425
  startContent?: React.HTMLAttributes<HTMLDivElement>;
1429
1426
  content?: React.HTMLAttributes<HTMLDivElement>;
@@ -2074,34 +2071,24 @@ type LayoutMeta = {
2074
2071
  height: number;
2075
2072
  };
2076
2073
  type LayoutPositon = {
2077
- width: number;
2078
- height: number;
2079
2074
  id: string;
2080
- x: number;
2081
- y: number;
2082
- isEmpty: boolean;
2083
- isVertical: boolean;
2084
- windows: PanelMeta[];
2085
2075
  gridX: number;
2086
2076
  gridY: number;
2087
2077
  gridW: number;
2088
2078
  gridH: number;
2089
- fullDimensions: {
2090
- x: number;
2091
- y: number;
2092
- width: number;
2093
- height: number;
2094
- };
2095
- emptyDimensions: {
2096
- x: any;
2097
- y: any;
2098
- width: any;
2099
- height: any;
2100
- };
2101
- };
2079
+ windows: PanelMeta[];
2080
+ isEmpty: boolean;
2081
+ isVertical: boolean;
2082
+ fullDimensions: Rect;
2083
+ emptyDimensions: Rect;
2084
+ dimensions: Rect;
2085
+ baseFull: Rect;
2086
+ baseEmpty: Rect;
2087
+ } & Rect;
2102
2088
  type PanelMeta = {
2103
2089
  id: string;
2104
2090
  title: string;
2091
+ icon?: react__default.ReactNode;
2105
2092
  render?: react__default.ReactNode;
2106
2093
  x?: number;
2107
2094
  y?: number;
@@ -2114,7 +2101,19 @@ type PanelMeta = {
2114
2101
  zIndex?: number;
2115
2102
  layoutId?: string;
2116
2103
  closable?: boolean;
2104
+ minWidth?: number;
2105
+ maxWidth?: number;
2106
+ minHeight?: number;
2107
+ maxHeight?: number;
2117
2108
  };
2109
+ interface UseResizeObserverOptions {
2110
+ onResize: (size: {
2111
+ width: number;
2112
+ height: number;
2113
+ }) => void;
2114
+ debounce?: number;
2115
+ }
2116
+ declare function useResizeObserverExternalRef(ref: react__default.RefObject<HTMLElement | null>, { onResize, debounce }: UseResizeObserverOptions): void;
2118
2117
  declare function useLayoutPanelManager({ layouts, setLayouts, panels, setPanels, windowContainerRef, layoutContainerRef, }: {
2119
2118
  layouts: LayoutMeta[];
2120
2119
  setLayouts: react__default.Dispatch<react__default.SetStateAction<LayoutMeta[]>>;
@@ -2127,11 +2126,13 @@ declare function useLayoutPanelManager({ layouts, setLayouts, panels, setPanels,
2127
2126
  layouts: LayoutMeta[];
2128
2127
  setLayouts: react__default.Dispatch<react__default.SetStateAction<LayoutMeta[]>>;
2129
2128
  panels: PanelMeta[];
2129
+ panelsRef: react__default.MutableRefObject<Record<string, PanelMeta>>;
2130
2130
  setPanels: react__default.Dispatch<react__default.SetStateAction<PanelMeta[]>>;
2131
2131
  layoutContainerRef: react__default.RefObject<HTMLDivElement>;
2132
2132
  windowContainerRef: react__default.RefObject<HTMLDivElement>;
2133
2133
  windowContainerRect: Rect;
2134
2134
  layoutContainerRect: Rect;
2135
+ panelPrevRectsRef: react__default.MutableRefObject<Record<string, Rect>>;
2135
2136
  activePanel: PanelMeta | undefined;
2136
2137
  layoutPanelIds: Record<string, string[]>;
2137
2138
  selectWindow: (id: string) => void;
@@ -2139,44 +2140,39 @@ declare function useLayoutPanelManager({ layouts, setLayouts, panels, setPanels,
2139
2140
  closeWindow: (id: string) => void;
2140
2141
  minimizeWindow: (id: string) => void;
2141
2142
  createWindow: (win: Optional<Omit<PanelMeta, "zIndex">, "id">) => string;
2142
- newPositions: {
2143
- fullDimensions: {
2144
- x: number;
2145
- y: number;
2146
- width: number;
2147
- height: number;
2148
- };
2149
- emptyDimensions: {
2150
- x: any;
2151
- y: any;
2152
- width: any;
2153
- height: any;
2154
- };
2155
- width: number;
2156
- height: number;
2143
+ newPositions: ({
2157
2144
  id: string;
2158
- x: number;
2159
- y: number;
2145
+ gridX: number;
2146
+ gridY: number;
2147
+ gridW: number;
2148
+ gridH: number;
2149
+ windows: PanelMeta[];
2160
2150
  isEmpty: boolean;
2161
2151
  isVertical: boolean;
2162
- windows: PanelMeta[];
2152
+ fullDimensions: Rect;
2153
+ emptyDimensions: Rect;
2154
+ dimensions: Rect;
2155
+ baseFull: Rect;
2156
+ baseEmpty: Rect;
2157
+ } & Rect)[];
2158
+ simulateLayoutPositions: (panelId: string, layoutId: string) => ({
2159
+ id: string;
2163
2160
  gridX: number;
2164
2161
  gridY: number;
2165
2162
  gridW: number;
2166
2163
  gridH: number;
2167
- baseFull: {
2168
- x: number;
2169
- y: number;
2170
- width: number;
2171
- height: number;
2172
- };
2173
- baseEmpty: {
2174
- x: any;
2175
- y: any;
2176
- width: any;
2177
- height: any;
2178
- };
2179
- }[];
2164
+ windows: PanelMeta[];
2165
+ isEmpty: boolean;
2166
+ isVertical: boolean;
2167
+ fullDimensions: Rect;
2168
+ emptyDimensions: Rect;
2169
+ dimensions: Rect;
2170
+ baseFull: Rect;
2171
+ baseEmpty: Rect;
2172
+ } & Rect)[];
2173
+ hoveredLayoutIdRef: react__default.MutableRefObject<Record<string, string | null>>;
2174
+ hoveredLayoutId: Record<string, string | null>;
2175
+ setHoveredLayoutId: react__default.Dispatch<react__default.SetStateAction<Record<string, string | null>>>;
2180
2176
  };
2181
2177
  interface LayoutManagerContextValue {
2182
2178
  windowContainerRef: react__default.RefObject<HTMLDivElement>;
@@ -2185,7 +2181,9 @@ interface LayoutManagerContextValue {
2185
2181
  layoutContainerRect: Rect;
2186
2182
  isMobile: boolean;
2187
2183
  panels: PanelMeta[];
2184
+ panelsRef: react__default.MutableRefObject<Record<string, PanelMeta>>;
2188
2185
  setPanels: react__default.Dispatch<react__default.SetStateAction<PanelMeta[]>>;
2186
+ panelPrevRectsRef: react__default.MutableRefObject<Record<string, Rect>>;
2189
2187
  activePanel?: PanelMeta;
2190
2188
  updateWindow: (id: string, patch: Partial<PanelMeta>) => void;
2191
2189
  selectWindow: (id: string) => void;
@@ -2194,24 +2192,28 @@ interface LayoutManagerContextValue {
2194
2192
  createWindow: (win: Optional<Omit<PanelMeta, 'zIndex'>, 'id'>) => string;
2195
2193
  layouts: LayoutMeta[];
2196
2194
  layoutPanelIds: Record<string, string[]>;
2197
- hoveredLayoutIdRef: react__default.MutableRefObject<string | null>;
2198
- hoveredLayoutId: string | null;
2199
- setHoveredLayoutId: react__default.Dispatch<react__default.SetStateAction<string | null>>;
2195
+ hoveredLayoutIdRef: react__default.MutableRefObject<Record<string, string | null>>;
2196
+ hoveredLayoutId: Record<string, string | null>;
2197
+ setHoveredLayoutId: react__default.Dispatch<react__default.SetStateAction<Record<string, string | null>>>;
2200
2198
  newPositions: LayoutPositon[];
2199
+ simulateLayoutPositions: (panelId: string, layoutId: string) => LayoutPositon[];
2201
2200
  }
2202
2201
  declare const useLayoutManager: () => LayoutManagerContextValue;
2203
- declare function LayoutManger({ children, ...manager }: ReturnType<typeof useLayoutPanelManager> & {
2202
+ declare function LayoutManager({ children, ...manager }: ReturnType<typeof useLayoutPanelManager> & {
2204
2203
  children: react__default.ReactNode;
2205
2204
  }): react_jsx_runtime.JSX.Element;
2206
2205
  interface LayoutManagerPanelContextValue {
2207
2206
  panel: PanelMeta;
2208
2207
  }
2209
2208
  declare const useLayoutManagerPanel: () => LayoutManagerPanelContextValue;
2210
- declare function LayoutManagerLayouts(): react_jsx_runtime.JSX.Element;
2209
+ declare function LayoutManagerLayouts(): react_jsx_runtime.JSX.Element | undefined;
2211
2210
  declare function LayoutManagerPanels(): react_jsx_runtime.JSX.Element;
2212
2211
  declare function LayoutManagerTaskbar(): react_jsx_runtime.JSX.Element;
2212
+ declare function LayoutManagerColission({ layout }: {
2213
+ layout: LayoutPositon;
2214
+ }): react_jsx_runtime.JSX.Element;
2213
2215
  declare function LayoutManagerColissions({ layoutIds }: {
2214
2216
  layoutIds: string[];
2215
- }): react_jsx_runtime.JSX.Element;
2217
+ }): react_jsx_runtime.JSX.Element | undefined;
2216
2218
 
2217
- export { Accordion, type AccordionArrow, AccordionBody, type AccordionBodyProps, type AccordionColor, AccordionContent, type AccordionContentProps, AccordionContext, AccordionHeader, type AccordionHeaderProps, AccordionItem, type AccordionItemProps, type AccordionProps, type AccordionSize, AccordionTrigger, type AccordionTriggerProps, type AccordionVariant, Autocomplete, type AutocompleteClearable, AutocompleteContext, type AutocompleteContextValue, type AutocompleteMultiple, type AutocompleteProps, Backdrop, type BackdropPlacement, type BackdropProps, type BackdropVariant, Badge, type BadgeProps, Button, type ButtonColor, ButtonGroup, ButtonGroupContext, type ButtonGroupContextValue, type ButtonGroupDirection, type ButtonGroupProps, type ButtonProps, type ButtonSize, type ButtonVariant, Card, CardBody, type CardBodyProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, CardMedia, type CardMediaProps, type CardProps, CardSubtitle, type CardSubtitleProps, CardTitle, type CardTitleProps, Checkbox, type CheckboxColor, CheckboxGroup, type CheckboxGroupAlignment, CheckboxGroupContext, type CheckboxGroupContextValue, type CheckboxGroupDirection, type CheckboxGroupProps, type CheckboxLabelPlacement, type CheckboxProps, type CheckboxSize, type CheckboxValue, Chip, type ChipProps, Collapse, CollapseContent, type CollapseContentProps, CollapseContext, type CollapseContextValue, type CollapseProps, CollapseTrigger, type CollapseTriggerProps, type ColorScheme, type ContainerBreakpoints, ContainerMediaQuery, type Cursor, DataList, type DataListItem, type DataListKeyField, type DataListMultipleProps, type DataListProps, type DataListSingleProps, Description, DescriptionEmpty, type DescriptionEmptyProps, type DescriptionProps, DescriptionText, type DescriptionTextProps, Descriptions, type DescriptionsAlign, DescriptionsContext, type DescriptionsContextValue, type DescriptionsLayout, type DescriptionsMode, type DescriptionsProps, type DescriptionsSize, type Disclosure, Divider, type DividerProps, Draggable, DraggableContent, type DraggableContentProps, DraggableTrigger, Drawer, type DrawerBackdrop, DrawerBody, type DrawerBodyProps, type DrawerClose, DrawerContext, type DrawerContextValue, DrawerFooter, type DrawerFooterProps, DrawerHeader, type DrawerHeaderProps, type DrawerPlacement, type DrawerPosition, type DrawerProps, type DrawerSize, Dropdown, DropdownContent, type DropdownContentProps, DropdownContext, type DropdownContextValue, DropdownItem, type DropdownItemProps, type DropdownProps, DropdownTrigger, type DropdownTriggerProps, Field, type FieldProps, type FormatBooleanOptions, type FormatCurrencyOptions, type FormatDateOptions, type FormatFileSizeOptions, type FormatNumberOptions, type FormatOptions, type FormatPercentOptions, type FormatStringOptions, Grid, GridContext, type GridContextValue, GridItem, type GridItemProps, type GridMode, type GridProps, GridSub, type GridSubProps, Html, type HtmlProps, INDENT_SIZE, Icon, type IconColor, type IconProps, type IconSize, Iframe, type IframeProps, type InfiniteData, type InfiniteQueryFunction, type InfiniteQueryOptions, type InfiniteQueryRefetchOptions, type InputColor, InputGroup, type InputGroupProps, type InputSize, type InputVariant, LayoutManagerColissions, type LayoutManagerContextValue, LayoutManagerLayouts, type LayoutManagerPanelContextValue, LayoutManagerPanels, LayoutManagerTaskbar, LayoutManger, type LayoutMeta, type LayoutPositon, List, ListGroup, type ListGroupProps, ListItem, type ListItemProps, type ListProps, type ListSize, ListSubheader, type ListSubheaderProps, ListTree, ListTreeContext, type ListTreeContextValue, ListTreeItem, ListTreeItemIndentation, type ListTreeItemProps, type ListTreeProps, type MediaQuery, Menu, MenuContext, type MenuContextValue, MenuGroup, type MenuGroupItemType, type MenuGroupProps, MenuItem, type MenuItemProps, type MenuItemType, type MenuProps, MenuSubmenu, type MenuSubmenuProps, MenuValueContext, Modal, type ModalBackdrop, ModalBody, type ModalBodyProps, type ModalClose, ModalContent, type ModalContentProps, ModalFooter, type ModalFooterProps, ModalHeader, type ModalHeaderProps, type ModalPlacement, type ModalProps, type ModalScrollBehavior, type ModalSize, type MutationError, type MutationFunction, type MutationOK, type MutationResult, MutationStatus, NavRail, NavRailItem, type NavRailItemProps, type NavRailPlacement, type NavRailProps, type PanelMeta, Popover, PopoverContent, type PopoverContentProps, type PopoverProps, PopoverTrigger, type PopoverTriggerProps, Portal, type PortalProps, type QueryFunction, QueryStatus, Radio, type RadioColor, RadioGroup, type RadioGroupAlignment, RadioGroupContext, type RadioGroupContextValue, type RadioGroupDirection, type RadioGroupProps, type RadioLabelPlacement, type RadioProps, type RadioSize, type RadioValue, type ReactRef, type Rect, type Resize, type Responsive, Result, type ResultProps, type ResultStatus, STRING_RULES, type ScrollAlignment, ScrollArea, type ScrollAreaProps, type ScrollBehavior, type ScrollToOptions, Select, type SelectClearable, SelectContext, type SelectContextValue, type SelectMultiple, type SelectProps, type SelectionItem, type SelectionOnChange, type SelectionProps, type SelectionValue, Step, type StepColor, type StepProps, Steps, StepsContext, type StepsContextValue, type StepsProps, type StringRules, Swipe, SwipeItem, type SwipeItemProps, type SwipeProps, Switch, type SwitchColor, type SwitchLabelPlacement, type SwitchProps, type SwitchSize, Tab, type TabProps, Tabs, type TabsAlignment, type TabsProps, type TabsVariant, TextInput, type TextInputProps, type Timer, type TimerMode, Toolbar, type ToolbarProps, type ToolbarSize, Transition, type TransitionProps, Tree, TreeContext, type TreeContextValue, TreeItem, type TreeItemBase, type TreeItemData, type TreeItemProps, type TreeItemValue, type TreeProps$1 as TreeProps, type UploadFileData, type UploadFileProps, UploadFiles, type UseContainerMediaQueryOptions, type UseInfiniteQueryOptions, type UseInfiniteQueryResult, type UseMutationOptions, type UseMutationResult, type UseQueryOptions, type UseQueryResult, type UseResizeObserverOptions, type VirtualItem, type Virtualizer, type VirtualizerOptions, areArraysEqual, assignRef, breakpointsMap, clsx, containsPlainText, defaultBreakpoints, doesNotContainEmojis, flattenTree, format, formatCurrency, formatDate, formatDateTime, formatFileSize, formatPercent, formatShortDateTime, formatTime, generateId, getOpenValuesByPathname, hasResizeObserver, initializeTreeValues, isAlphanumeric, isEmpty, isEmptyString, isNumeric, mergeRefs, reactNodeToText, scrollToItem, toAlphaString, toAlphanumericString, toLocalDateString, toLocalDateTimeString, toNotEmojisString, toNumericString, toPlainTextString, toRulesString, updateTreeValues, useAccordion, useAccordionItem, useAutocomplete, useButtonGroup, useCheckboxGroup, useCollapse, useContainerMediaQuery, useDebounce, useDescriptionsContext, useDisclosure, useDrawer, useDropdownContext, useEffectEvent, useElementSize, useFormat, useGridContext, useInfiniteQuery, useLayoutManager, useLayoutManagerPanel, useLayoutPanelManager, useLocalStorage, useMediaQuery, useMenu, useMenuItemValue, useModal, useMutation, useOnClickOutside, usePopover, usePrevious, useQuery, useRadioGroup, useResizeObserver, useSelect, useStep, useStepsContext, useTimer, useTree, useValueEffect, useVirtualizer, validateRules, valueToValues, valuesToValue };
2219
+ export { Accordion, type AccordionArrow, AccordionBody, type AccordionBodyProps, type AccordionColor, AccordionContent, type AccordionContentProps, AccordionContext, AccordionHeader, type AccordionHeaderProps, AccordionItem, type AccordionItemProps, type AccordionProps, type AccordionSize, AccordionTrigger, type AccordionTriggerProps, type AccordionVariant, Autocomplete, type AutocompleteClearable, AutocompleteContext, type AutocompleteContextValue, type AutocompleteMultiple, type AutocompleteProps, Backdrop, type BackdropPlacement, type BackdropProps, type BackdropVariant, Badge, type BadgeProps, Button, type ButtonColor, ButtonGroup, ButtonGroupContext, type ButtonGroupContextValue, type ButtonGroupDirection, type ButtonGroupProps, type ButtonProps, type ButtonSize, type ButtonVariant, Card, CardBody, type CardBodyProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, CardMedia, type CardMediaProps, type CardProps, CardSubtitle, type CardSubtitleProps, CardTitle, type CardTitleProps, Checkbox, type CheckboxColor, CheckboxGroup, type CheckboxGroupAlignment, CheckboxGroupContext, type CheckboxGroupContextValue, type CheckboxGroupDirection, type CheckboxGroupProps, type CheckboxLabelPlacement, type CheckboxProps, type CheckboxSize, type CheckboxValue, Chip, type ChipProps, Collapse, CollapseContent, type CollapseContentProps, CollapseContext, type CollapseContextValue, type CollapseProps, CollapseTrigger, type CollapseTriggerProps, type ColorScheme, type ContainerBreakpoints, ContainerMediaQuery, type Cursor, DataList, type DataListItem, type DataListKeyField, type DataListMultipleProps, type DataListProps, type DataListSingleProps, Description, DescriptionEmpty, type DescriptionEmptyProps, type DescriptionProps, DescriptionText, type DescriptionTextProps, Descriptions, type DescriptionsAlign, DescriptionsContext, type DescriptionsContextValue, type DescriptionsLayout, type DescriptionsMode, type DescriptionsProps, type DescriptionsSize, type Disclosure, Divider, type DividerProps, Draggable, DraggableContent, type DraggableContentProps, DraggableTrigger, Drawer, type DrawerBackdrop, DrawerBody, type DrawerBodyProps, type DrawerClose, DrawerContext, type DrawerContextValue, DrawerFooter, type DrawerFooterProps, DrawerHeader, type DrawerHeaderProps, type DrawerPlacement, type DrawerPosition, type DrawerProps, type DrawerSize, Dropdown, DropdownContent, type DropdownContentProps, DropdownContext, type DropdownContextValue, DropdownItem, type DropdownItemProps, type DropdownProps, DropdownTrigger, type DropdownTriggerProps, Field, type FieldProps, type FormatBooleanOptions, type FormatCurrencyOptions, type FormatDateOptions, type FormatFileSizeOptions, type FormatNumberOptions, type FormatOptions, type FormatPercentOptions, type FormatStringOptions, Grid, GridContext, type GridContextValue, GridItem, type GridItemProps, type GridMode, type GridProps, GridSub, type GridSubProps, Html, type HtmlProps, INDENT_SIZE, Icon, type IconColor, type IconProps, type IconSize, Iframe, type IframeProps, type InfiniteData, type InfiniteQueryFunction, type InfiniteQueryOptions, type InfiniteQueryRefetchOptions, type InputColor, InputGroup, type InputGroupProps, type InputSize, type InputVariant, LayoutManager, LayoutManagerColission, LayoutManagerColissions, type LayoutManagerContextValue, LayoutManagerLayouts, type LayoutManagerPanelContextValue, LayoutManagerPanels, LayoutManagerTaskbar, type LayoutMeta, type LayoutPositon, List, ListGroup, type ListGroupProps, ListItem, type ListItemProps, type ListProps, type ListSize, ListSubheader, type ListSubheaderProps, ListTree, ListTreeContext, type ListTreeContextValue, ListTreeItem, ListTreeItemIndentation, type ListTreeItemProps, type ListTreeProps, type MediaQuery, Menu, MenuContext, type MenuContextValue, MenuGroup, type MenuGroupItemType, type MenuGroupProps, MenuItem, type MenuItemProps, type MenuItemType, type MenuProps, MenuSubmenu, type MenuSubmenuProps, MenuValueContext, Modal, type ModalBackdrop, ModalBody, type ModalBodyProps, type ModalClose, ModalContent, type ModalContentProps, ModalFooter, type ModalFooterProps, ModalHeader, type ModalHeaderProps, type ModalPlacement, type ModalProps, type ModalScrollBehavior, type ModalSize, type MutationError, type MutationFunction, type MutationOK, type MutationResult, MutationStatus, NavRail, NavRailItem, type NavRailItemProps, type NavRailPlacement, type NavRailProps, type PanelMeta, Popover, PopoverContent, type PopoverContentProps, type PopoverProps, PopoverTrigger, type PopoverTriggerProps, Portal, type PortalProps, type QueryFunction, QueryStatus, Radio, type RadioColor, RadioGroup, type RadioGroupAlignment, RadioGroupContext, type RadioGroupContextValue, type RadioGroupDirection, type RadioGroupProps, type RadioLabelPlacement, type RadioProps, type RadioSize, type RadioValue, type ReactRef, type Rect, type Resize, type Responsive, Result, type ResultProps, type ResultStatus, STRING_RULES, type ScrollAlignment, ScrollArea, type ScrollAreaProps, type ScrollBehavior, type ScrollToOptions, Select, type SelectClearable, SelectContext, type SelectContextValue, type SelectMultiple, type SelectProps, type SelectionItem, type SelectionOnChange, type SelectionProps, type SelectionValue, Step, type StepColor, type StepProps, Steps, StepsContext, type StepsContextValue, type StepsProps, type StringRules, Swipe, SwipeItem, type SwipeItemProps, type SwipeProps, Switch, type SwitchColor, type SwitchLabelPlacement, type SwitchProps, type SwitchSize, Tab, type TabProps, Tabs, type TabsAlignment, type TabsProps, type TabsVariant, TextInput, type TextInputProps, type Timer, type TimerMode, Toolbar, type ToolbarColor, type ToolbarProps, type ToolbarSize, type ToolbarVariant, Transition, type TransitionProps, Tree, TreeContext, type TreeContextValue, TreeItem, type TreeItemBase, type TreeItemData, type TreeItemProps, type TreeItemValue, type TreeProps$1 as TreeProps, type UploadFileData, type UploadFileProps, UploadFiles, type UseContainerMediaQueryOptions, type UseInfiniteQueryOptions, type UseInfiniteQueryResult, type UseMutationOptions, type UseMutationResult, type UseQueryOptions, type UseQueryResult, type UseResizeObserverOptions$1 as UseResizeObserverOptions, type VirtualItem, type Virtualizer, type VirtualizerOptions, areArraysEqual, assignRef, breakpointsMap, clsx, containsPlainText, defaultBreakpoints, doesNotContainEmojis, flattenTree, format, formatCurrency, formatDate, formatDateTime, formatFileSize, formatPercent, formatShortDateTime, formatTime, generateId, getOpenValuesByPathname, hasResizeObserver, initializeTreeValues, isAlphanumeric, isEmpty, isEmptyString, isNumeric, mergeRefs, reactNodeToText, scrollToItem, toAlphaString, toAlphanumericString, toLocalDateString, toLocalDateTimeString, toNotEmojisString, toNumericString, toPlainTextString, toRulesString, updateTreeValues, useAccordion, useAccordionItem, useAutocomplete, useButtonGroup, useCheckboxGroup, useCollapse, useContainerMediaQuery, useDebounce, useDescriptionsContext, useDisclosure, useDrawer, useDropdownContext, useEffectEvent, useElementSize, useFormat, useGridContext, useInfiniteQuery, useLayoutManager, useLayoutManagerPanel, useLayoutPanelManager, useLocalStorage, useMediaQuery, useMenu, useMenuItemValue, useModal, useMutation, useOnClickOutside, usePopover, usePrevious, useQuery, useRadioGroup, useResizeObserver, useResizeObserverExternalRef, useSelect, useStep, useStepsContext, useTimer, useTree, useValueEffect, useVirtualizer, validateRules, valueToValues, valuesToValue };