@undefine-ui/design-system 2.4.0 → 2.6.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/README.md +5 -4
- package/dist/index.cjs +507 -331
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +56 -3
- package/dist/index.d.ts +56 -3
- package/dist/index.js +483 -311
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
1
|
import * as react from 'react';
|
|
3
2
|
import { SetStateAction, ElementType } from 'react';
|
|
3
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
4
4
|
import { Breakpoint, Shadows, Components, Theme, SxProps as SxProps$1 } from '@mui/material/styles';
|
|
5
5
|
import * as _mui_material from '@mui/material';
|
|
6
6
|
import { SxProps, Theme as Theme$1 } from '@mui/material';
|
|
@@ -108,6 +108,50 @@ interface UseBooleanReturnType {
|
|
|
108
108
|
*/
|
|
109
109
|
declare const useBoolean: (defaultValue?: boolean) => UseBooleanReturnType;
|
|
110
110
|
|
|
111
|
+
/**
|
|
112
|
+
* A custom hook for managing popover state and interactions.
|
|
113
|
+
*
|
|
114
|
+
* Provides utilities to control the open/close state of a popover component,
|
|
115
|
+
* track the anchor element, and handle user interactions.
|
|
116
|
+
*
|
|
117
|
+
* @returns An object containing:
|
|
118
|
+
* - `open` (boolean): Whether the popover is currently open
|
|
119
|
+
* - `anchorEl` (HTMLElement | null): The element the popover is anchored to
|
|
120
|
+
* - `onOpen` (function): Handler to open the popover on a mouse event
|
|
121
|
+
* - `onClose` (function): Handler to close the popover
|
|
122
|
+
* - `setAnchorEl` (function): Direct setter for the anchor element
|
|
123
|
+
*
|
|
124
|
+
* @example
|
|
125
|
+
* ```tsx
|
|
126
|
+
* function MyComponent() {
|
|
127
|
+
* const popover = usePopover();
|
|
128
|
+
*
|
|
129
|
+
* return (
|
|
130
|
+
* <>
|
|
131
|
+
* <Button onClick={popover.onOpen}>
|
|
132
|
+
* Open Menu
|
|
133
|
+
* </Button>
|
|
134
|
+
* <Popover
|
|
135
|
+
* open={popover.open}
|
|
136
|
+
* anchorEl={popover.anchorEl}
|
|
137
|
+
* onClose={popover.onClose}
|
|
138
|
+
* >
|
|
139
|
+
* <MenuItem onClick={popover.onClose}>Option 1</MenuItem>
|
|
140
|
+
* <MenuItem onClick={popover.onClose}>Option 2</MenuItem>
|
|
141
|
+
* </Popover>
|
|
142
|
+
* </>
|
|
143
|
+
* );
|
|
144
|
+
* }
|
|
145
|
+
* ```
|
|
146
|
+
*/
|
|
147
|
+
declare const usePopover: () => {
|
|
148
|
+
open: boolean;
|
|
149
|
+
anchorEl: HTMLElement | null;
|
|
150
|
+
onOpen: (event: React.MouseEvent<HTMLElement>) => void;
|
|
151
|
+
onClose: () => void;
|
|
152
|
+
setAnchorEl: react.Dispatch<react.SetStateAction<HTMLElement | null>>;
|
|
153
|
+
};
|
|
154
|
+
|
|
111
155
|
declare const STORAGE_KEY = "app-settings";
|
|
112
156
|
type SettingsValueProps = {
|
|
113
157
|
colorScheme: 'light' | 'dark';
|
|
@@ -1503,10 +1547,14 @@ declare const Loader: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
|
1503
1547
|
|
|
1504
1548
|
declare const Search: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1505
1549
|
|
|
1550
|
+
declare const Settings: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1551
|
+
|
|
1506
1552
|
declare const UserFill: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1507
1553
|
|
|
1508
1554
|
declare const EyeClosed: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1509
1555
|
|
|
1556
|
+
declare const KeyCommand: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1557
|
+
|
|
1510
1558
|
declare const XMarkSolid: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1511
1559
|
|
|
1512
1560
|
declare const CloudUpload: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
@@ -1531,12 +1579,15 @@ declare const InfoCircleFill: (props: SvgIconProps) => react_jsx_runtime.JSX.Ele
|
|
|
1531
1579
|
|
|
1532
1580
|
declare const CheckboxDefault: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1533
1581
|
|
|
1582
|
+
declare const BellNotification: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1583
|
+
|
|
1534
1584
|
declare const InfoCircleOutline: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1535
1585
|
|
|
1536
1586
|
declare const LongArrowUpLeftSolid: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1537
1587
|
|
|
1538
1588
|
declare const CheckboxIndeterminate: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1539
1589
|
|
|
1590
|
+
declare const Icons_BellNotification: typeof BellNotification;
|
|
1540
1591
|
declare const Icons_CheckboxDefault: typeof CheckboxDefault;
|
|
1541
1592
|
declare const Icons_CheckboxIndeterminate: typeof CheckboxIndeterminate;
|
|
1542
1593
|
declare const Icons_CheckboxSelect: typeof CheckboxSelect;
|
|
@@ -1547,6 +1598,7 @@ declare const Icons_Eye: typeof Eye;
|
|
|
1547
1598
|
declare const Icons_EyeClosed: typeof EyeClosed;
|
|
1548
1599
|
declare const Icons_InfoCircleFill: typeof InfoCircleFill;
|
|
1549
1600
|
declare const Icons_InfoCircleOutline: typeof InfoCircleOutline;
|
|
1601
|
+
declare const Icons_KeyCommand: typeof KeyCommand;
|
|
1550
1602
|
declare const Icons_Loader: typeof Loader;
|
|
1551
1603
|
declare const Icons_LongArrowUpLeftSolid: typeof LongArrowUpLeftSolid;
|
|
1552
1604
|
declare const Icons_NavArrowDown: typeof NavArrowDown;
|
|
@@ -1555,13 +1607,14 @@ declare const Icons_NavArrowRight: typeof NavArrowRight;
|
|
|
1555
1607
|
declare const Icons_RadioDefault: typeof RadioDefault;
|
|
1556
1608
|
declare const Icons_RadioSelect: typeof RadioSelect;
|
|
1557
1609
|
declare const Icons_Search: typeof Search;
|
|
1610
|
+
declare const Icons_Settings: typeof Settings;
|
|
1558
1611
|
declare const Icons_Trash: typeof Trash;
|
|
1559
1612
|
declare const Icons_UserFill: typeof UserFill;
|
|
1560
1613
|
declare const Icons_UserOutline: typeof UserOutline;
|
|
1561
1614
|
declare const Icons_XMark: typeof XMark;
|
|
1562
1615
|
declare const Icons_XMarkSolid: typeof XMarkSolid;
|
|
1563
1616
|
declare namespace Icons {
|
|
1564
|
-
export { Icons_CheckboxDefault as CheckboxDefault, Icons_CheckboxIndeterminate as CheckboxIndeterminate, Icons_CheckboxSelect as CheckboxSelect, Icons_ClipboardCheck as ClipboardCheck, Icons_CloudUpload as CloudUpload, Icons_Copy as Copy, Icons_Eye as Eye, Icons_EyeClosed as EyeClosed, Icons_InfoCircleFill as InfoCircleFill, Icons_InfoCircleOutline as InfoCircleOutline, Icons_Loader as Loader, Icons_LongArrowUpLeftSolid as LongArrowUpLeftSolid, Icons_NavArrowDown as NavArrowDown, Icons_NavArrowLeft as NavArrowLeft, Icons_NavArrowRight as NavArrowRight, Icons_RadioDefault as RadioDefault, Icons_RadioSelect as RadioSelect, Icons_Search as Search, Icons_Trash as Trash, Icons_UserFill as UserFill, Icons_UserOutline as UserOutline, Icons_XMark as XMark, Icons_XMarkSolid as XMarkSolid };
|
|
1617
|
+
export { Icons_BellNotification as BellNotification, Icons_CheckboxDefault as CheckboxDefault, Icons_CheckboxIndeterminate as CheckboxIndeterminate, Icons_CheckboxSelect as CheckboxSelect, Icons_ClipboardCheck as ClipboardCheck, Icons_CloudUpload as CloudUpload, Icons_Copy as Copy, Icons_Eye as Eye, Icons_EyeClosed as EyeClosed, Icons_InfoCircleFill as InfoCircleFill, Icons_InfoCircleOutline as InfoCircleOutline, Icons_KeyCommand as KeyCommand, Icons_Loader as Loader, Icons_LongArrowUpLeftSolid as LongArrowUpLeftSolid, Icons_NavArrowDown as NavArrowDown, Icons_NavArrowLeft as NavArrowLeft, Icons_NavArrowRight as NavArrowRight, Icons_RadioDefault as RadioDefault, Icons_RadioSelect as RadioSelect, Icons_Search as Search, Icons_Settings as Settings, Icons_Trash as Trash, Icons_UserFill as UserFill, Icons_UserOutline as UserOutline, Icons_XMark as XMark, Icons_XMarkSolid as XMarkSolid };
|
|
1565
1618
|
}
|
|
1566
1619
|
|
|
1567
1620
|
type IconType = keyof typeof Icons;
|
|
@@ -1743,4 +1796,4 @@ interface LoadingScreenProps extends BoxProps {
|
|
|
1743
1796
|
declare const LoadingScreen: ({ portal, sx, ...rest }: LoadingScreenProps) => react_jsx_runtime.JSX.Element;
|
|
1744
1797
|
declare const SplashScreen: ({ portal, sx, ...rest }: LoadingScreenProps) => react_jsx_runtime.JSX.Element;
|
|
1745
1798
|
|
|
1746
|
-
export { AnimatedLogo, CheckboxDefault, CheckboxIndeterminate, CheckboxSelect, ClipboardCheck, CloudUpload, type ColorSchema, Copy, CopyButton, type CustomShadowOptions, type CustomSpacingOptions, Eye, EyeClosed, Field, Form, Icon, type IconProps, type IconType, InfoCircleFill, InfoCircleOutline, Loader, LoadingScreen, LocalStorageAvailable, LocalStorageGetItem, Logo, LongArrowUpLeftSolid, NavArrowDown, NavArrowLeft, NavArrowRight, RHFAutocomplete, type RHFAutocompleteProps, RHFCheckbox, type RHFCheckboxProps, RHFMultiCheckbox, type RHFMultiCheckboxOption, type RHFMultiCheckboxProps, RHFMultiSwitch, RHFRadioGroup, type RHFRadioGroupProps, RHFSwitch, RHFTextField, RHFUpload, type RHFUploadProps, RadioDefault, RadioSelect, type RadiusOptions, STORAGE_KEY, Search, SettingsConsumer, SettingsContext, type SettingsContextProps, SettingsProvider, type SettingsValueProps, SplashScreen, Table, type TableNoRowsProps, TablePagination, ThemeProvider, Trash, Upload, type UploadProps, type UseBooleanReturnType, type UseSetStateReturnType, UserFill, UserOutline, XMark, XMarkSolid, action, background, baseAction, basePalette, bgBlur, bgGradient, border, borderGradient, breakpoints, colorSchemes, common, components, createPaletteChannel, createShadowColor, createTheme, customShadows, customSpacing, darkPalette, defaultSettings, error, fCurrency, fData, fNumber, fPercent, fShortenNumber, getCurrencySymbol, getInitColorSchemeScript, getStorage, grey, hexToRgbChannel, hideScrollX, hideScrollY, icon, iconClasses, info, isEqual, lightPalette, maxLine, mediaQueries, menuItem, neutral, orderBy, paper, paramCase, primary, primaryFont, pxToRem, radius, remToPx, removeStorage, responsiveFontSizes, schemeConfig, secondary, secondaryFont, sentenceCase, setFont, setStorage, shadows, snakeCase, stylesMode, success, surface, tertiaryFont, text, textGradient, typography, updateComponentsWithSettings, updateCoreWithSettings, useBoolean, useCopyToClipboard, useEventListener, useLocalStorage, useResponsive, useScrollOffSetTop, useSetState, useSettings, useWidth, varAlpha, warning };
|
|
1799
|
+
export { AnimatedLogo, BellNotification, CheckboxDefault, CheckboxIndeterminate, CheckboxSelect, ClipboardCheck, CloudUpload, type ColorSchema, Copy, CopyButton, type CustomShadowOptions, type CustomSpacingOptions, Eye, EyeClosed, Field, Form, Icon, type IconProps, type IconType, InfoCircleFill, InfoCircleOutline, KeyCommand, Loader, LoadingScreen, LocalStorageAvailable, LocalStorageGetItem, Logo, LongArrowUpLeftSolid, NavArrowDown, NavArrowLeft, NavArrowRight, RHFAutocomplete, type RHFAutocompleteProps, RHFCheckbox, type RHFCheckboxProps, RHFMultiCheckbox, type RHFMultiCheckboxOption, type RHFMultiCheckboxProps, RHFMultiSwitch, RHFRadioGroup, type RHFRadioGroupProps, RHFSwitch, RHFTextField, RHFUpload, type RHFUploadProps, RadioDefault, RadioSelect, type RadiusOptions, STORAGE_KEY, Search, Settings, SettingsConsumer, SettingsContext, type SettingsContextProps, SettingsProvider, type SettingsValueProps, SplashScreen, Table, type TableNoRowsProps, TablePagination, ThemeProvider, Trash, Upload, type UploadProps, type UseBooleanReturnType, type UseSetStateReturnType, UserFill, UserOutline, XMark, XMarkSolid, action, background, baseAction, basePalette, bgBlur, bgGradient, border, borderGradient, breakpoints, colorSchemes, common, components, createPaletteChannel, createShadowColor, createTheme, customShadows, customSpacing, darkPalette, defaultSettings, error, fCurrency, fData, fNumber, fPercent, fShortenNumber, getCurrencySymbol, getInitColorSchemeScript, getStorage, grey, hexToRgbChannel, hideScrollX, hideScrollY, icon, iconClasses, info, isEqual, lightPalette, maxLine, mediaQueries, menuItem, neutral, orderBy, paper, paramCase, primary, primaryFont, pxToRem, radius, remToPx, removeStorage, responsiveFontSizes, schemeConfig, secondary, secondaryFont, sentenceCase, setFont, setStorage, shadows, snakeCase, stylesMode, success, surface, tertiaryFont, text, textGradient, typography, updateComponentsWithSettings, updateCoreWithSettings, useBoolean, useCopyToClipboard, useEventListener, useLocalStorage, usePopover, useResponsive, useScrollOffSetTop, useSetState, useSettings, useWidth, varAlpha, warning };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
1
|
import * as react from 'react';
|
|
3
2
|
import { SetStateAction, ElementType } from 'react';
|
|
3
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
4
4
|
import { Breakpoint, Shadows, Components, Theme, SxProps as SxProps$1 } from '@mui/material/styles';
|
|
5
5
|
import * as _mui_material from '@mui/material';
|
|
6
6
|
import { SxProps, Theme as Theme$1 } from '@mui/material';
|
|
@@ -108,6 +108,50 @@ interface UseBooleanReturnType {
|
|
|
108
108
|
*/
|
|
109
109
|
declare const useBoolean: (defaultValue?: boolean) => UseBooleanReturnType;
|
|
110
110
|
|
|
111
|
+
/**
|
|
112
|
+
* A custom hook for managing popover state and interactions.
|
|
113
|
+
*
|
|
114
|
+
* Provides utilities to control the open/close state of a popover component,
|
|
115
|
+
* track the anchor element, and handle user interactions.
|
|
116
|
+
*
|
|
117
|
+
* @returns An object containing:
|
|
118
|
+
* - `open` (boolean): Whether the popover is currently open
|
|
119
|
+
* - `anchorEl` (HTMLElement | null): The element the popover is anchored to
|
|
120
|
+
* - `onOpen` (function): Handler to open the popover on a mouse event
|
|
121
|
+
* - `onClose` (function): Handler to close the popover
|
|
122
|
+
* - `setAnchorEl` (function): Direct setter for the anchor element
|
|
123
|
+
*
|
|
124
|
+
* @example
|
|
125
|
+
* ```tsx
|
|
126
|
+
* function MyComponent() {
|
|
127
|
+
* const popover = usePopover();
|
|
128
|
+
*
|
|
129
|
+
* return (
|
|
130
|
+
* <>
|
|
131
|
+
* <Button onClick={popover.onOpen}>
|
|
132
|
+
* Open Menu
|
|
133
|
+
* </Button>
|
|
134
|
+
* <Popover
|
|
135
|
+
* open={popover.open}
|
|
136
|
+
* anchorEl={popover.anchorEl}
|
|
137
|
+
* onClose={popover.onClose}
|
|
138
|
+
* >
|
|
139
|
+
* <MenuItem onClick={popover.onClose}>Option 1</MenuItem>
|
|
140
|
+
* <MenuItem onClick={popover.onClose}>Option 2</MenuItem>
|
|
141
|
+
* </Popover>
|
|
142
|
+
* </>
|
|
143
|
+
* );
|
|
144
|
+
* }
|
|
145
|
+
* ```
|
|
146
|
+
*/
|
|
147
|
+
declare const usePopover: () => {
|
|
148
|
+
open: boolean;
|
|
149
|
+
anchorEl: HTMLElement | null;
|
|
150
|
+
onOpen: (event: React.MouseEvent<HTMLElement>) => void;
|
|
151
|
+
onClose: () => void;
|
|
152
|
+
setAnchorEl: react.Dispatch<react.SetStateAction<HTMLElement | null>>;
|
|
153
|
+
};
|
|
154
|
+
|
|
111
155
|
declare const STORAGE_KEY = "app-settings";
|
|
112
156
|
type SettingsValueProps = {
|
|
113
157
|
colorScheme: 'light' | 'dark';
|
|
@@ -1503,10 +1547,14 @@ declare const Loader: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
|
1503
1547
|
|
|
1504
1548
|
declare const Search: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1505
1549
|
|
|
1550
|
+
declare const Settings: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1551
|
+
|
|
1506
1552
|
declare const UserFill: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1507
1553
|
|
|
1508
1554
|
declare const EyeClosed: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1509
1555
|
|
|
1556
|
+
declare const KeyCommand: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1557
|
+
|
|
1510
1558
|
declare const XMarkSolid: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1511
1559
|
|
|
1512
1560
|
declare const CloudUpload: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
@@ -1531,12 +1579,15 @@ declare const InfoCircleFill: (props: SvgIconProps) => react_jsx_runtime.JSX.Ele
|
|
|
1531
1579
|
|
|
1532
1580
|
declare const CheckboxDefault: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1533
1581
|
|
|
1582
|
+
declare const BellNotification: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1583
|
+
|
|
1534
1584
|
declare const InfoCircleOutline: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1535
1585
|
|
|
1536
1586
|
declare const LongArrowUpLeftSolid: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1537
1587
|
|
|
1538
1588
|
declare const CheckboxIndeterminate: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1539
1589
|
|
|
1590
|
+
declare const Icons_BellNotification: typeof BellNotification;
|
|
1540
1591
|
declare const Icons_CheckboxDefault: typeof CheckboxDefault;
|
|
1541
1592
|
declare const Icons_CheckboxIndeterminate: typeof CheckboxIndeterminate;
|
|
1542
1593
|
declare const Icons_CheckboxSelect: typeof CheckboxSelect;
|
|
@@ -1547,6 +1598,7 @@ declare const Icons_Eye: typeof Eye;
|
|
|
1547
1598
|
declare const Icons_EyeClosed: typeof EyeClosed;
|
|
1548
1599
|
declare const Icons_InfoCircleFill: typeof InfoCircleFill;
|
|
1549
1600
|
declare const Icons_InfoCircleOutline: typeof InfoCircleOutline;
|
|
1601
|
+
declare const Icons_KeyCommand: typeof KeyCommand;
|
|
1550
1602
|
declare const Icons_Loader: typeof Loader;
|
|
1551
1603
|
declare const Icons_LongArrowUpLeftSolid: typeof LongArrowUpLeftSolid;
|
|
1552
1604
|
declare const Icons_NavArrowDown: typeof NavArrowDown;
|
|
@@ -1555,13 +1607,14 @@ declare const Icons_NavArrowRight: typeof NavArrowRight;
|
|
|
1555
1607
|
declare const Icons_RadioDefault: typeof RadioDefault;
|
|
1556
1608
|
declare const Icons_RadioSelect: typeof RadioSelect;
|
|
1557
1609
|
declare const Icons_Search: typeof Search;
|
|
1610
|
+
declare const Icons_Settings: typeof Settings;
|
|
1558
1611
|
declare const Icons_Trash: typeof Trash;
|
|
1559
1612
|
declare const Icons_UserFill: typeof UserFill;
|
|
1560
1613
|
declare const Icons_UserOutline: typeof UserOutline;
|
|
1561
1614
|
declare const Icons_XMark: typeof XMark;
|
|
1562
1615
|
declare const Icons_XMarkSolid: typeof XMarkSolid;
|
|
1563
1616
|
declare namespace Icons {
|
|
1564
|
-
export { Icons_CheckboxDefault as CheckboxDefault, Icons_CheckboxIndeterminate as CheckboxIndeterminate, Icons_CheckboxSelect as CheckboxSelect, Icons_ClipboardCheck as ClipboardCheck, Icons_CloudUpload as CloudUpload, Icons_Copy as Copy, Icons_Eye as Eye, Icons_EyeClosed as EyeClosed, Icons_InfoCircleFill as InfoCircleFill, Icons_InfoCircleOutline as InfoCircleOutline, Icons_Loader as Loader, Icons_LongArrowUpLeftSolid as LongArrowUpLeftSolid, Icons_NavArrowDown as NavArrowDown, Icons_NavArrowLeft as NavArrowLeft, Icons_NavArrowRight as NavArrowRight, Icons_RadioDefault as RadioDefault, Icons_RadioSelect as RadioSelect, Icons_Search as Search, Icons_Trash as Trash, Icons_UserFill as UserFill, Icons_UserOutline as UserOutline, Icons_XMark as XMark, Icons_XMarkSolid as XMarkSolid };
|
|
1617
|
+
export { Icons_BellNotification as BellNotification, Icons_CheckboxDefault as CheckboxDefault, Icons_CheckboxIndeterminate as CheckboxIndeterminate, Icons_CheckboxSelect as CheckboxSelect, Icons_ClipboardCheck as ClipboardCheck, Icons_CloudUpload as CloudUpload, Icons_Copy as Copy, Icons_Eye as Eye, Icons_EyeClosed as EyeClosed, Icons_InfoCircleFill as InfoCircleFill, Icons_InfoCircleOutline as InfoCircleOutline, Icons_KeyCommand as KeyCommand, Icons_Loader as Loader, Icons_LongArrowUpLeftSolid as LongArrowUpLeftSolid, Icons_NavArrowDown as NavArrowDown, Icons_NavArrowLeft as NavArrowLeft, Icons_NavArrowRight as NavArrowRight, Icons_RadioDefault as RadioDefault, Icons_RadioSelect as RadioSelect, Icons_Search as Search, Icons_Settings as Settings, Icons_Trash as Trash, Icons_UserFill as UserFill, Icons_UserOutline as UserOutline, Icons_XMark as XMark, Icons_XMarkSolid as XMarkSolid };
|
|
1565
1618
|
}
|
|
1566
1619
|
|
|
1567
1620
|
type IconType = keyof typeof Icons;
|
|
@@ -1743,4 +1796,4 @@ interface LoadingScreenProps extends BoxProps {
|
|
|
1743
1796
|
declare const LoadingScreen: ({ portal, sx, ...rest }: LoadingScreenProps) => react_jsx_runtime.JSX.Element;
|
|
1744
1797
|
declare const SplashScreen: ({ portal, sx, ...rest }: LoadingScreenProps) => react_jsx_runtime.JSX.Element;
|
|
1745
1798
|
|
|
1746
|
-
export { AnimatedLogo, CheckboxDefault, CheckboxIndeterminate, CheckboxSelect, ClipboardCheck, CloudUpload, type ColorSchema, Copy, CopyButton, type CustomShadowOptions, type CustomSpacingOptions, Eye, EyeClosed, Field, Form, Icon, type IconProps, type IconType, InfoCircleFill, InfoCircleOutline, Loader, LoadingScreen, LocalStorageAvailable, LocalStorageGetItem, Logo, LongArrowUpLeftSolid, NavArrowDown, NavArrowLeft, NavArrowRight, RHFAutocomplete, type RHFAutocompleteProps, RHFCheckbox, type RHFCheckboxProps, RHFMultiCheckbox, type RHFMultiCheckboxOption, type RHFMultiCheckboxProps, RHFMultiSwitch, RHFRadioGroup, type RHFRadioGroupProps, RHFSwitch, RHFTextField, RHFUpload, type RHFUploadProps, RadioDefault, RadioSelect, type RadiusOptions, STORAGE_KEY, Search, SettingsConsumer, SettingsContext, type SettingsContextProps, SettingsProvider, type SettingsValueProps, SplashScreen, Table, type TableNoRowsProps, TablePagination, ThemeProvider, Trash, Upload, type UploadProps, type UseBooleanReturnType, type UseSetStateReturnType, UserFill, UserOutline, XMark, XMarkSolid, action, background, baseAction, basePalette, bgBlur, bgGradient, border, borderGradient, breakpoints, colorSchemes, common, components, createPaletteChannel, createShadowColor, createTheme, customShadows, customSpacing, darkPalette, defaultSettings, error, fCurrency, fData, fNumber, fPercent, fShortenNumber, getCurrencySymbol, getInitColorSchemeScript, getStorage, grey, hexToRgbChannel, hideScrollX, hideScrollY, icon, iconClasses, info, isEqual, lightPalette, maxLine, mediaQueries, menuItem, neutral, orderBy, paper, paramCase, primary, primaryFont, pxToRem, radius, remToPx, removeStorage, responsiveFontSizes, schemeConfig, secondary, secondaryFont, sentenceCase, setFont, setStorage, shadows, snakeCase, stylesMode, success, surface, tertiaryFont, text, textGradient, typography, updateComponentsWithSettings, updateCoreWithSettings, useBoolean, useCopyToClipboard, useEventListener, useLocalStorage, useResponsive, useScrollOffSetTop, useSetState, useSettings, useWidth, varAlpha, warning };
|
|
1799
|
+
export { AnimatedLogo, BellNotification, CheckboxDefault, CheckboxIndeterminate, CheckboxSelect, ClipboardCheck, CloudUpload, type ColorSchema, Copy, CopyButton, type CustomShadowOptions, type CustomSpacingOptions, Eye, EyeClosed, Field, Form, Icon, type IconProps, type IconType, InfoCircleFill, InfoCircleOutline, KeyCommand, Loader, LoadingScreen, LocalStorageAvailable, LocalStorageGetItem, Logo, LongArrowUpLeftSolid, NavArrowDown, NavArrowLeft, NavArrowRight, RHFAutocomplete, type RHFAutocompleteProps, RHFCheckbox, type RHFCheckboxProps, RHFMultiCheckbox, type RHFMultiCheckboxOption, type RHFMultiCheckboxProps, RHFMultiSwitch, RHFRadioGroup, type RHFRadioGroupProps, RHFSwitch, RHFTextField, RHFUpload, type RHFUploadProps, RadioDefault, RadioSelect, type RadiusOptions, STORAGE_KEY, Search, Settings, SettingsConsumer, SettingsContext, type SettingsContextProps, SettingsProvider, type SettingsValueProps, SplashScreen, Table, type TableNoRowsProps, TablePagination, ThemeProvider, Trash, Upload, type UploadProps, type UseBooleanReturnType, type UseSetStateReturnType, UserFill, UserOutline, XMark, XMarkSolid, action, background, baseAction, basePalette, bgBlur, bgGradient, border, borderGradient, breakpoints, colorSchemes, common, components, createPaletteChannel, createShadowColor, createTheme, customShadows, customSpacing, darkPalette, defaultSettings, error, fCurrency, fData, fNumber, fPercent, fShortenNumber, getCurrencySymbol, getInitColorSchemeScript, getStorage, grey, hexToRgbChannel, hideScrollX, hideScrollY, icon, iconClasses, info, isEqual, lightPalette, maxLine, mediaQueries, menuItem, neutral, orderBy, paper, paramCase, primary, primaryFont, pxToRem, radius, remToPx, removeStorage, responsiveFontSizes, schemeConfig, secondary, secondaryFont, sentenceCase, setFont, setStorage, shadows, snakeCase, stylesMode, success, surface, tertiaryFont, text, textGradient, typography, updateComponentsWithSettings, updateCoreWithSettings, useBoolean, useCopyToClipboard, useEventListener, useLocalStorage, usePopover, useResponsive, useScrollOffSetTop, useSetState, useSettings, useWidth, varAlpha, warning };
|