@undefine-ui/design-system 2.3.0 → 2.5.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 +4 -3
- package/dist/index.cjs +519 -304
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +61 -2
- package/dist/index.d.ts +61 -2
- package/dist/index.js +510 -300
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -154,6 +154,35 @@ declare const SettingsProvider: ({ children, settings }: SettingsProviderProps)
|
|
|
154
154
|
*/
|
|
155
155
|
declare const useSettings: () => SettingsContextProps;
|
|
156
156
|
|
|
157
|
+
type UseSetStateReturnType<T> = {
|
|
158
|
+
state: T;
|
|
159
|
+
setState: (updateState: SetStateAction<T>) => void;
|
|
160
|
+
setField: (name: keyof T, updateValue: T[keyof T]) => void;
|
|
161
|
+
onResetState: () => void;
|
|
162
|
+
canReset: boolean;
|
|
163
|
+
};
|
|
164
|
+
/**
|
|
165
|
+
* Custom hook for managing complex object state with field-level updates.
|
|
166
|
+
* Similar to useState but optimized for objects with helper functions.
|
|
167
|
+
*
|
|
168
|
+
* @template T - The type of the state object (must be a record)
|
|
169
|
+
* @param {T} initialState - The initial state object
|
|
170
|
+
* @returns {UseSetStateReturnType<T>} Object containing:
|
|
171
|
+
* - state: Current state object
|
|
172
|
+
* - setState: Function to update state (merges with previous state)
|
|
173
|
+
* - setField: Function to update a single field
|
|
174
|
+
* - onResetState: Function to reset to initial state
|
|
175
|
+
* - canReset: Boolean indicating if state differs from initial
|
|
176
|
+
*
|
|
177
|
+
* @example
|
|
178
|
+
* const { state, setField, onResetState } = useSetState({ name: '', age: 0 });
|
|
179
|
+
*
|
|
180
|
+
* setField('name', 'John');
|
|
181
|
+
* setField('age', 25);
|
|
182
|
+
* onResetState();
|
|
183
|
+
*/
|
|
184
|
+
declare const useSetState: <T extends Record<string, any>>(initialState: T) => UseSetStateReturnType<T>;
|
|
185
|
+
|
|
157
186
|
type ReturnType = boolean;
|
|
158
187
|
type Query = 'up' | 'down' | 'between' | 'only';
|
|
159
188
|
type Value = Breakpoint | number;
|
|
@@ -294,6 +323,27 @@ declare const useCopyToClipboard: () => {
|
|
|
294
323
|
isCopied: boolean;
|
|
295
324
|
};
|
|
296
325
|
|
|
326
|
+
/**
|
|
327
|
+
* Custom hook for tracking if an element or window has scrolled past a threshold.
|
|
328
|
+
*
|
|
329
|
+
* @param {number} [top=0] - The threshold in pixels
|
|
330
|
+
* @returns {Object} Object containing:
|
|
331
|
+
* - elementRef: Ref to attach to an element for element-specific tracking
|
|
332
|
+
* - offsetTop: Boolean indicating if scrolled past threshold
|
|
333
|
+
*
|
|
334
|
+
* @example
|
|
335
|
+
* // Track global scroll position
|
|
336
|
+
* const { offsetTop } = useScrollOffSetTop(80);
|
|
337
|
+
*
|
|
338
|
+
* // Track specific element position
|
|
339
|
+
* const { offsetTop, elementRef } = useScrollOffSetTop(80);
|
|
340
|
+
* <div ref={elementRef}>Content</div>
|
|
341
|
+
*/
|
|
342
|
+
declare const useScrollOffSetTop: (top?: number) => {
|
|
343
|
+
elementRef: React.RefObject<HTMLElement | null>;
|
|
344
|
+
offsetTop: boolean;
|
|
345
|
+
};
|
|
346
|
+
|
|
297
347
|
interface RadiusOptions {
|
|
298
348
|
'radius-0': string;
|
|
299
349
|
'radius-2xs': string;
|
|
@@ -1453,10 +1503,14 @@ declare const Loader: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
|
1453
1503
|
|
|
1454
1504
|
declare const Search: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1455
1505
|
|
|
1506
|
+
declare const Settings: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1507
|
+
|
|
1456
1508
|
declare const UserFill: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1457
1509
|
|
|
1458
1510
|
declare const EyeClosed: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1459
1511
|
|
|
1512
|
+
declare const KeyCommand: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1513
|
+
|
|
1460
1514
|
declare const XMarkSolid: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1461
1515
|
|
|
1462
1516
|
declare const CloudUpload: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
@@ -1481,12 +1535,15 @@ declare const InfoCircleFill: (props: SvgIconProps) => react_jsx_runtime.JSX.Ele
|
|
|
1481
1535
|
|
|
1482
1536
|
declare const CheckboxDefault: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1483
1537
|
|
|
1538
|
+
declare const BellNotification: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1539
|
+
|
|
1484
1540
|
declare const InfoCircleOutline: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1485
1541
|
|
|
1486
1542
|
declare const LongArrowUpLeftSolid: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1487
1543
|
|
|
1488
1544
|
declare const CheckboxIndeterminate: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1489
1545
|
|
|
1546
|
+
declare const Icons_BellNotification: typeof BellNotification;
|
|
1490
1547
|
declare const Icons_CheckboxDefault: typeof CheckboxDefault;
|
|
1491
1548
|
declare const Icons_CheckboxIndeterminate: typeof CheckboxIndeterminate;
|
|
1492
1549
|
declare const Icons_CheckboxSelect: typeof CheckboxSelect;
|
|
@@ -1497,6 +1554,7 @@ declare const Icons_Eye: typeof Eye;
|
|
|
1497
1554
|
declare const Icons_EyeClosed: typeof EyeClosed;
|
|
1498
1555
|
declare const Icons_InfoCircleFill: typeof InfoCircleFill;
|
|
1499
1556
|
declare const Icons_InfoCircleOutline: typeof InfoCircleOutline;
|
|
1557
|
+
declare const Icons_KeyCommand: typeof KeyCommand;
|
|
1500
1558
|
declare const Icons_Loader: typeof Loader;
|
|
1501
1559
|
declare const Icons_LongArrowUpLeftSolid: typeof LongArrowUpLeftSolid;
|
|
1502
1560
|
declare const Icons_NavArrowDown: typeof NavArrowDown;
|
|
@@ -1505,13 +1563,14 @@ declare const Icons_NavArrowRight: typeof NavArrowRight;
|
|
|
1505
1563
|
declare const Icons_RadioDefault: typeof RadioDefault;
|
|
1506
1564
|
declare const Icons_RadioSelect: typeof RadioSelect;
|
|
1507
1565
|
declare const Icons_Search: typeof Search;
|
|
1566
|
+
declare const Icons_Settings: typeof Settings;
|
|
1508
1567
|
declare const Icons_Trash: typeof Trash;
|
|
1509
1568
|
declare const Icons_UserFill: typeof UserFill;
|
|
1510
1569
|
declare const Icons_UserOutline: typeof UserOutline;
|
|
1511
1570
|
declare const Icons_XMark: typeof XMark;
|
|
1512
1571
|
declare const Icons_XMarkSolid: typeof XMarkSolid;
|
|
1513
1572
|
declare namespace Icons {
|
|
1514
|
-
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 };
|
|
1573
|
+
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 };
|
|
1515
1574
|
}
|
|
1516
1575
|
|
|
1517
1576
|
type IconType = keyof typeof Icons;
|
|
@@ -1693,4 +1752,4 @@ interface LoadingScreenProps extends BoxProps {
|
|
|
1693
1752
|
declare const LoadingScreen: ({ portal, sx, ...rest }: LoadingScreenProps) => react_jsx_runtime.JSX.Element;
|
|
1694
1753
|
declare const SplashScreen: ({ portal, sx, ...rest }: LoadingScreenProps) => react_jsx_runtime.JSX.Element;
|
|
1695
1754
|
|
|
1696
|
-
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, 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, useSettings, useWidth, varAlpha, warning };
|
|
1755
|
+
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, useResponsive, useScrollOffSetTop, useSetState, useSettings, useWidth, varAlpha, warning };
|
package/dist/index.d.ts
CHANGED
|
@@ -154,6 +154,35 @@ declare const SettingsProvider: ({ children, settings }: SettingsProviderProps)
|
|
|
154
154
|
*/
|
|
155
155
|
declare const useSettings: () => SettingsContextProps;
|
|
156
156
|
|
|
157
|
+
type UseSetStateReturnType<T> = {
|
|
158
|
+
state: T;
|
|
159
|
+
setState: (updateState: SetStateAction<T>) => void;
|
|
160
|
+
setField: (name: keyof T, updateValue: T[keyof T]) => void;
|
|
161
|
+
onResetState: () => void;
|
|
162
|
+
canReset: boolean;
|
|
163
|
+
};
|
|
164
|
+
/**
|
|
165
|
+
* Custom hook for managing complex object state with field-level updates.
|
|
166
|
+
* Similar to useState but optimized for objects with helper functions.
|
|
167
|
+
*
|
|
168
|
+
* @template T - The type of the state object (must be a record)
|
|
169
|
+
* @param {T} initialState - The initial state object
|
|
170
|
+
* @returns {UseSetStateReturnType<T>} Object containing:
|
|
171
|
+
* - state: Current state object
|
|
172
|
+
* - setState: Function to update state (merges with previous state)
|
|
173
|
+
* - setField: Function to update a single field
|
|
174
|
+
* - onResetState: Function to reset to initial state
|
|
175
|
+
* - canReset: Boolean indicating if state differs from initial
|
|
176
|
+
*
|
|
177
|
+
* @example
|
|
178
|
+
* const { state, setField, onResetState } = useSetState({ name: '', age: 0 });
|
|
179
|
+
*
|
|
180
|
+
* setField('name', 'John');
|
|
181
|
+
* setField('age', 25);
|
|
182
|
+
* onResetState();
|
|
183
|
+
*/
|
|
184
|
+
declare const useSetState: <T extends Record<string, any>>(initialState: T) => UseSetStateReturnType<T>;
|
|
185
|
+
|
|
157
186
|
type ReturnType = boolean;
|
|
158
187
|
type Query = 'up' | 'down' | 'between' | 'only';
|
|
159
188
|
type Value = Breakpoint | number;
|
|
@@ -294,6 +323,27 @@ declare const useCopyToClipboard: () => {
|
|
|
294
323
|
isCopied: boolean;
|
|
295
324
|
};
|
|
296
325
|
|
|
326
|
+
/**
|
|
327
|
+
* Custom hook for tracking if an element or window has scrolled past a threshold.
|
|
328
|
+
*
|
|
329
|
+
* @param {number} [top=0] - The threshold in pixels
|
|
330
|
+
* @returns {Object} Object containing:
|
|
331
|
+
* - elementRef: Ref to attach to an element for element-specific tracking
|
|
332
|
+
* - offsetTop: Boolean indicating if scrolled past threshold
|
|
333
|
+
*
|
|
334
|
+
* @example
|
|
335
|
+
* // Track global scroll position
|
|
336
|
+
* const { offsetTop } = useScrollOffSetTop(80);
|
|
337
|
+
*
|
|
338
|
+
* // Track specific element position
|
|
339
|
+
* const { offsetTop, elementRef } = useScrollOffSetTop(80);
|
|
340
|
+
* <div ref={elementRef}>Content</div>
|
|
341
|
+
*/
|
|
342
|
+
declare const useScrollOffSetTop: (top?: number) => {
|
|
343
|
+
elementRef: React.RefObject<HTMLElement | null>;
|
|
344
|
+
offsetTop: boolean;
|
|
345
|
+
};
|
|
346
|
+
|
|
297
347
|
interface RadiusOptions {
|
|
298
348
|
'radius-0': string;
|
|
299
349
|
'radius-2xs': string;
|
|
@@ -1453,10 +1503,14 @@ declare const Loader: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
|
1453
1503
|
|
|
1454
1504
|
declare const Search: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1455
1505
|
|
|
1506
|
+
declare const Settings: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1507
|
+
|
|
1456
1508
|
declare const UserFill: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1457
1509
|
|
|
1458
1510
|
declare const EyeClosed: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1459
1511
|
|
|
1512
|
+
declare const KeyCommand: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1513
|
+
|
|
1460
1514
|
declare const XMarkSolid: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1461
1515
|
|
|
1462
1516
|
declare const CloudUpload: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
@@ -1481,12 +1535,15 @@ declare const InfoCircleFill: (props: SvgIconProps) => react_jsx_runtime.JSX.Ele
|
|
|
1481
1535
|
|
|
1482
1536
|
declare const CheckboxDefault: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1483
1537
|
|
|
1538
|
+
declare const BellNotification: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1539
|
+
|
|
1484
1540
|
declare const InfoCircleOutline: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1485
1541
|
|
|
1486
1542
|
declare const LongArrowUpLeftSolid: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1487
1543
|
|
|
1488
1544
|
declare const CheckboxIndeterminate: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1489
1545
|
|
|
1546
|
+
declare const Icons_BellNotification: typeof BellNotification;
|
|
1490
1547
|
declare const Icons_CheckboxDefault: typeof CheckboxDefault;
|
|
1491
1548
|
declare const Icons_CheckboxIndeterminate: typeof CheckboxIndeterminate;
|
|
1492
1549
|
declare const Icons_CheckboxSelect: typeof CheckboxSelect;
|
|
@@ -1497,6 +1554,7 @@ declare const Icons_Eye: typeof Eye;
|
|
|
1497
1554
|
declare const Icons_EyeClosed: typeof EyeClosed;
|
|
1498
1555
|
declare const Icons_InfoCircleFill: typeof InfoCircleFill;
|
|
1499
1556
|
declare const Icons_InfoCircleOutline: typeof InfoCircleOutline;
|
|
1557
|
+
declare const Icons_KeyCommand: typeof KeyCommand;
|
|
1500
1558
|
declare const Icons_Loader: typeof Loader;
|
|
1501
1559
|
declare const Icons_LongArrowUpLeftSolid: typeof LongArrowUpLeftSolid;
|
|
1502
1560
|
declare const Icons_NavArrowDown: typeof NavArrowDown;
|
|
@@ -1505,13 +1563,14 @@ declare const Icons_NavArrowRight: typeof NavArrowRight;
|
|
|
1505
1563
|
declare const Icons_RadioDefault: typeof RadioDefault;
|
|
1506
1564
|
declare const Icons_RadioSelect: typeof RadioSelect;
|
|
1507
1565
|
declare const Icons_Search: typeof Search;
|
|
1566
|
+
declare const Icons_Settings: typeof Settings;
|
|
1508
1567
|
declare const Icons_Trash: typeof Trash;
|
|
1509
1568
|
declare const Icons_UserFill: typeof UserFill;
|
|
1510
1569
|
declare const Icons_UserOutline: typeof UserOutline;
|
|
1511
1570
|
declare const Icons_XMark: typeof XMark;
|
|
1512
1571
|
declare const Icons_XMarkSolid: typeof XMarkSolid;
|
|
1513
1572
|
declare namespace Icons {
|
|
1514
|
-
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 };
|
|
1573
|
+
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 };
|
|
1515
1574
|
}
|
|
1516
1575
|
|
|
1517
1576
|
type IconType = keyof typeof Icons;
|
|
@@ -1693,4 +1752,4 @@ interface LoadingScreenProps extends BoxProps {
|
|
|
1693
1752
|
declare const LoadingScreen: ({ portal, sx, ...rest }: LoadingScreenProps) => react_jsx_runtime.JSX.Element;
|
|
1694
1753
|
declare const SplashScreen: ({ portal, sx, ...rest }: LoadingScreenProps) => react_jsx_runtime.JSX.Element;
|
|
1695
1754
|
|
|
1696
|
-
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, 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, useSettings, useWidth, varAlpha, warning };
|
|
1755
|
+
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, useResponsive, useScrollOffSetTop, useSetState, useSettings, useWidth, varAlpha, warning };
|