@unifiedsoftware/react-ui 2.0.1-beta.2 → 2.0.1-beta.3
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 +120 -129
- package/dist/index.js +3 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2055,6 +2055,7 @@ interface UploadFileProps {
|
|
|
2055
2055
|
}
|
|
2056
2056
|
declare const UploadFiles: ({ data, max, readOnly, disabled, accept, multiple, onChange }: UploadFileProps) => react_jsx_runtime.JSX.Element;
|
|
2057
2057
|
|
|
2058
|
+
type Optional<T, K extends keyof T> = Partial<Pick<T, K>> & Omit<T, K>;
|
|
2058
2059
|
type Rect = {
|
|
2059
2060
|
x: number;
|
|
2060
2061
|
y: number;
|
|
@@ -2065,17 +2066,43 @@ type Cursor = {
|
|
|
2065
2066
|
x: number;
|
|
2066
2067
|
y: number;
|
|
2067
2068
|
};
|
|
2068
|
-
type
|
|
2069
|
+
type LayoutMeta = {
|
|
2069
2070
|
id: string;
|
|
2070
2071
|
x: number;
|
|
2071
2072
|
y: number;
|
|
2072
2073
|
width: number;
|
|
2073
2074
|
height: number;
|
|
2074
2075
|
};
|
|
2075
|
-
type
|
|
2076
|
+
type LayoutPositon = {
|
|
2077
|
+
width: number;
|
|
2078
|
+
height: number;
|
|
2079
|
+
id: string;
|
|
2080
|
+
x: number;
|
|
2081
|
+
y: number;
|
|
2082
|
+
isEmpty: boolean;
|
|
2083
|
+
isVertical: boolean;
|
|
2084
|
+
windows: PanelMeta[];
|
|
2085
|
+
gridX: number;
|
|
2086
|
+
gridY: number;
|
|
2087
|
+
gridW: number;
|
|
2088
|
+
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
|
+
};
|
|
2102
|
+
type PanelMeta = {
|
|
2076
2103
|
id: string;
|
|
2077
2104
|
title: string;
|
|
2078
|
-
|
|
2105
|
+
render?: react__default.ReactNode;
|
|
2079
2106
|
x?: number;
|
|
2080
2107
|
y?: number;
|
|
2081
2108
|
width?: number;
|
|
@@ -2085,142 +2112,106 @@ type WindowMeta = {
|
|
|
2085
2112
|
snapped?: boolean;
|
|
2086
2113
|
closed?: boolean;
|
|
2087
2114
|
zIndex?: number;
|
|
2088
|
-
|
|
2089
|
-
|
|
2090
|
-
declare function useMove(props: {
|
|
2091
|
-
rect: Rect;
|
|
2092
|
-
minWidth?: number;
|
|
2093
|
-
minHeight?: number;
|
|
2094
|
-
maxWidth?: number;
|
|
2095
|
-
maxHeight?: number;
|
|
2096
|
-
initialWidth?: number;
|
|
2097
|
-
initialHeight?: number;
|
|
2098
|
-
initialX?: number;
|
|
2099
|
-
initialY?: number;
|
|
2100
|
-
x?: number;
|
|
2101
|
-
y?: number;
|
|
2102
|
-
width?: number;
|
|
2103
|
-
height?: number;
|
|
2104
|
-
onSize?: (rect: Rect & {
|
|
2105
|
-
maximized?: boolean;
|
|
2106
|
-
}) => void;
|
|
2107
|
-
onDrag?: (rect: Rect, cursor: Cursor) => void;
|
|
2108
|
-
onDragEnd?: (rect: Rect, cursor: Cursor) => void;
|
|
2109
|
-
visible?: boolean;
|
|
2110
|
-
parentRef: react__default.RefObject<HTMLDivElement | null>;
|
|
2111
|
-
useTransform?: boolean;
|
|
2112
|
-
prevBoundsRef: react__default.MutableRefObject<{
|
|
2113
|
-
x: number;
|
|
2114
|
-
y: number;
|
|
2115
|
-
width: number;
|
|
2116
|
-
height: number;
|
|
2117
|
-
} | null>;
|
|
2118
|
-
zIndex?: number;
|
|
2119
|
-
disabled?: boolean;
|
|
2120
|
-
}): {
|
|
2121
|
-
windowRef: react__default.MutableRefObject<HTMLDivElement | null>;
|
|
2122
|
-
rect: {
|
|
2123
|
-
x: number;
|
|
2124
|
-
y: number;
|
|
2125
|
-
width: number;
|
|
2126
|
-
height: number;
|
|
2127
|
-
};
|
|
2128
|
-
style: react__default.CSSProperties;
|
|
2129
|
-
visible: boolean;
|
|
2130
|
-
onPointerDown_drag: (e: react__default.PointerEvent) => void;
|
|
2131
|
-
positionStyles: react__default.CSSProperties;
|
|
2132
|
-
};
|
|
2133
|
-
declare function useResize({ parentRef, rect, disabled, minWidth, minHeight, maxWidth, maxHeight, onRect, }: {
|
|
2134
|
-
parentRef: react__default.RefObject<HTMLDivElement | null>;
|
|
2135
|
-
rect: Rect;
|
|
2136
|
-
minWidth?: number;
|
|
2137
|
-
maxWidth?: number;
|
|
2138
|
-
minHeight?: number;
|
|
2139
|
-
maxHeight?: number;
|
|
2140
|
-
disabled?: boolean;
|
|
2141
|
-
onRect: (rect: Rect) => void;
|
|
2142
|
-
}): {
|
|
2143
|
-
handles: string[];
|
|
2144
|
-
disabled: boolean | undefined;
|
|
2145
|
-
onResize: (e: react__default.PointerEvent, dir: string) => void;
|
|
2146
|
-
};
|
|
2147
|
-
declare function useSnapPreview({ parentRef, onDragEnd, }: {
|
|
2148
|
-
parentRef: react__default.RefObject<HTMLDivElement | null>;
|
|
2149
|
-
rect: Rect;
|
|
2150
|
-
onDragEnd: (rect: Rect, maximized: boolean, snapped: boolean) => void;
|
|
2151
|
-
}): {
|
|
2152
|
-
rect?: Rect | undefined;
|
|
2153
|
-
style?: {
|
|
2154
|
-
left: number;
|
|
2155
|
-
top: number;
|
|
2156
|
-
width: number;
|
|
2157
|
-
height: number;
|
|
2158
|
-
} | undefined;
|
|
2159
|
-
onDrag: (nx: number, ny: number, cursorX: number, cursorY: number) => void;
|
|
2160
|
-
onDragEnd: () => void;
|
|
2115
|
+
layoutId?: string;
|
|
2116
|
+
closable?: boolean;
|
|
2161
2117
|
};
|
|
2162
|
-
declare function
|
|
2163
|
-
|
|
2164
|
-
|
|
2165
|
-
|
|
2166
|
-
|
|
2167
|
-
|
|
2168
|
-
|
|
2169
|
-
} | null>;
|
|
2170
|
-
meta: WindowMeta;
|
|
2171
|
-
parentRect?: {
|
|
2172
|
-
width?: number;
|
|
2173
|
-
height?: number;
|
|
2174
|
-
};
|
|
2175
|
-
isMobile?: boolean;
|
|
2176
|
-
initialWidth?: number;
|
|
2177
|
-
initialHeight?: number;
|
|
2178
|
-
initialX?: number;
|
|
2179
|
-
initialY?: number;
|
|
2180
|
-
onUpdate: (patch: Partial<WindowMeta>) => void;
|
|
2118
|
+
declare function useLayoutPanelManager({ layouts, setLayouts, panels, setPanels, windowContainerRef, layoutContainerRef, }: {
|
|
2119
|
+
layouts: LayoutMeta[];
|
|
2120
|
+
setLayouts: react__default.Dispatch<react__default.SetStateAction<LayoutMeta[]>>;
|
|
2121
|
+
panels: PanelMeta[];
|
|
2122
|
+
setPanels: react__default.Dispatch<react__default.SetStateAction<PanelMeta[]>>;
|
|
2123
|
+
windowContainerRef: react__default.RefObject<HTMLDivElement>;
|
|
2124
|
+
layoutContainerRef: react__default.RefObject<HTMLDivElement>;
|
|
2181
2125
|
}): {
|
|
2182
|
-
|
|
2183
|
-
|
|
2184
|
-
|
|
2126
|
+
isMobile: boolean;
|
|
2127
|
+
layouts: LayoutMeta[];
|
|
2128
|
+
setLayouts: react__default.Dispatch<react__default.SetStateAction<LayoutMeta[]>>;
|
|
2129
|
+
panels: PanelMeta[];
|
|
2130
|
+
setPanels: react__default.Dispatch<react__default.SetStateAction<PanelMeta[]>>;
|
|
2131
|
+
layoutContainerRef: react__default.RefObject<HTMLDivElement>;
|
|
2132
|
+
windowContainerRef: react__default.RefObject<HTMLDivElement>;
|
|
2133
|
+
windowContainerRect: Rect;
|
|
2134
|
+
layoutContainerRect: Rect;
|
|
2135
|
+
activePanel: PanelMeta | undefined;
|
|
2136
|
+
layoutPanelIds: Record<string, string[]>;
|
|
2137
|
+
selectWindow: (id: string) => void;
|
|
2138
|
+
updateWindow: (id: string, patch: Partial<PanelMeta>) => void;
|
|
2139
|
+
closeWindow: (id: string) => void;
|
|
2140
|
+
minimizeWindow: (id: string) => void;
|
|
2141
|
+
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
|
+
};
|
|
2185
2155
|
width: number;
|
|
2186
2156
|
height: number;
|
|
2187
|
-
|
|
2188
|
-
setPos: react__default.Dispatch<react__default.SetStateAction<{
|
|
2157
|
+
id: string;
|
|
2189
2158
|
x: number;
|
|
2190
2159
|
y: number;
|
|
2191
|
-
|
|
2192
|
-
|
|
2193
|
-
|
|
2194
|
-
|
|
2195
|
-
|
|
2196
|
-
|
|
2160
|
+
isEmpty: boolean;
|
|
2161
|
+
isVertical: boolean;
|
|
2162
|
+
windows: PanelMeta[];
|
|
2163
|
+
gridX: number;
|
|
2164
|
+
gridY: number;
|
|
2165
|
+
gridW: number;
|
|
2166
|
+
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
|
+
}[];
|
|
2197
2180
|
};
|
|
2198
|
-
|
|
2199
|
-
windows: WindowMeta[];
|
|
2200
|
-
setWindows: react__default.Dispatch<react__default.SetStateAction<WindowMeta[]>>;
|
|
2181
|
+
interface LayoutManagerContextValue {
|
|
2201
2182
|
windowContainerRef: react__default.RefObject<HTMLDivElement>;
|
|
2202
|
-
|
|
2203
|
-
}): {
|
|
2204
|
-
isMobile: boolean;
|
|
2183
|
+
layoutContainerRef: react__default.RefObject<HTMLDivElement>;
|
|
2205
2184
|
windowContainerRect: Rect;
|
|
2206
|
-
|
|
2207
|
-
|
|
2208
|
-
|
|
2209
|
-
|
|
2185
|
+
layoutContainerRect: Rect;
|
|
2186
|
+
isMobile: boolean;
|
|
2187
|
+
panels: PanelMeta[];
|
|
2188
|
+
setPanels: react__default.Dispatch<react__default.SetStateAction<PanelMeta[]>>;
|
|
2189
|
+
activePanel?: PanelMeta;
|
|
2190
|
+
updateWindow: (id: string, patch: Partial<PanelMeta>) => void;
|
|
2191
|
+
selectWindow: (id: string) => void;
|
|
2210
2192
|
closeWindow: (id: string) => void;
|
|
2211
2193
|
minimizeWindow: (id: string) => void;
|
|
2212
|
-
|
|
2213
|
-
|
|
2214
|
-
|
|
2215
|
-
|
|
2216
|
-
|
|
2217
|
-
|
|
2218
|
-
|
|
2219
|
-
|
|
2220
|
-
|
|
2221
|
-
|
|
2222
|
-
|
|
2223
|
-
|
|
2194
|
+
createWindow: (win: Optional<Omit<PanelMeta, 'zIndex'>, 'id'>) => string;
|
|
2195
|
+
layouts: LayoutMeta[];
|
|
2196
|
+
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>>;
|
|
2200
|
+
newPositions: LayoutPositon[];
|
|
2201
|
+
}
|
|
2202
|
+
declare const useLayoutManager: () => LayoutManagerContextValue;
|
|
2203
|
+
declare function LayoutManger({ children, ...manager }: ReturnType<typeof useLayoutPanelManager> & {
|
|
2204
|
+
children: react__default.ReactNode;
|
|
2205
|
+
}): react_jsx_runtime.JSX.Element;
|
|
2206
|
+
interface LayoutManagerPanelContextValue {
|
|
2207
|
+
panel: PanelMeta;
|
|
2208
|
+
}
|
|
2209
|
+
declare const useLayoutManagerPanel: () => LayoutManagerPanelContextValue;
|
|
2210
|
+
declare function LayoutManagerLayouts(): react_jsx_runtime.JSX.Element;
|
|
2211
|
+
declare function LayoutManagerPanels(): react_jsx_runtime.JSX.Element;
|
|
2212
|
+
declare function LayoutManagerTaskbar(): react_jsx_runtime.JSX.Element;
|
|
2213
|
+
declare function LayoutManagerColissions({ layoutIds }: {
|
|
2214
|
+
layoutIds: string[];
|
|
2224
2215
|
}): react_jsx_runtime.JSX.Element;
|
|
2225
2216
|
|
|
2226
|
-
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, 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, 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,
|
|
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 };
|