@undefine-ui/design-system 3.0.3 → 3.2.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 +83 -5
- package/dist/index.cjs +1051 -427
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +23 -2
- package/dist/index.d.ts +23 -2
- package/dist/index.js +1224 -426
- package/dist/index.js.map +1 -1
- package/package.json +3 -2
package/dist/index.d.cts
CHANGED
|
@@ -25,6 +25,7 @@ import { RadioProps } from '@mui/material/Radio';
|
|
|
25
25
|
import { RadioGroupProps } from '@mui/material/RadioGroup';
|
|
26
26
|
import { TextFieldProps } from '@mui/material/TextField';
|
|
27
27
|
import { SwitchProps } from '@mui/material/Switch';
|
|
28
|
+
export * from 'sonner';
|
|
28
29
|
|
|
29
30
|
declare const isEqual: (a: any, b: any) => boolean;
|
|
30
31
|
declare const orderBy: <T>(array: T[], properties: (keyof T)[], orders?: ("asc" | "desc")[]) => T[];
|
|
@@ -1129,6 +1130,8 @@ declare const Search: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
|
1129
1130
|
|
|
1130
1131
|
declare const Circle: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1131
1132
|
|
|
1133
|
+
declare const StatUp: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1134
|
+
|
|
1132
1135
|
declare const SortDown: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1133
1136
|
|
|
1134
1137
|
declare const Calendar: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
@@ -1137,12 +1140,18 @@ declare const Settings: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
|
1137
1140
|
|
|
1138
1141
|
declare const Download: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1139
1142
|
|
|
1143
|
+
declare const StatDown: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1144
|
+
|
|
1140
1145
|
declare const Building: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1141
1146
|
|
|
1147
|
+
declare const InfoToast: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1148
|
+
|
|
1142
1149
|
declare const UserSolid: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1143
1150
|
|
|
1144
1151
|
declare const EyeClosed: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1145
1152
|
|
|
1153
|
+
declare const ErrorToast: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1154
|
+
|
|
1146
1155
|
declare const KeyCommand: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1147
1156
|
|
|
1148
1157
|
declare const XMarkSolid: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
@@ -1159,6 +1168,10 @@ declare const CloudUpload: (props: SvgIconProps) => react_jsx_runtime.JSX.Elemen
|
|
|
1159
1168
|
|
|
1160
1169
|
declare const RadioSelect: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1161
1170
|
|
|
1171
|
+
declare const SuccessToast: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1172
|
+
|
|
1173
|
+
declare const WarningToast: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1174
|
+
|
|
1162
1175
|
declare const RadioDefault: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1163
1176
|
|
|
1164
1177
|
declare const NavArrowDown: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
@@ -1200,11 +1213,13 @@ declare const Icons_Clock: typeof Clock;
|
|
|
1200
1213
|
declare const Icons_CloudUpload: typeof CloudUpload;
|
|
1201
1214
|
declare const Icons_Copy: typeof Copy;
|
|
1202
1215
|
declare const Icons_Download: typeof Download;
|
|
1216
|
+
declare const Icons_ErrorToast: typeof ErrorToast;
|
|
1203
1217
|
declare const Icons_Eye: typeof Eye;
|
|
1204
1218
|
declare const Icons_EyeClosed: typeof EyeClosed;
|
|
1205
1219
|
declare const Icons_HelpCircle: typeof HelpCircle;
|
|
1206
1220
|
declare const Icons_InfoCircle: typeof InfoCircle;
|
|
1207
1221
|
declare const Icons_InfoCircleSolid: typeof InfoCircleSolid;
|
|
1222
|
+
declare const Icons_InfoToast: typeof InfoToast;
|
|
1208
1223
|
declare const Icons_KeyCommand: typeof KeyCommand;
|
|
1209
1224
|
declare const Icons_Loader: typeof Loader;
|
|
1210
1225
|
declare const Icons_LongArrowUpLeftSolid: typeof LongArrowUpLeftSolid;
|
|
@@ -1220,13 +1235,17 @@ declare const Icons_Search: typeof Search;
|
|
|
1220
1235
|
declare const Icons_Settings: typeof Settings;
|
|
1221
1236
|
declare const Icons_SortDown: typeof SortDown;
|
|
1222
1237
|
declare const Icons_SortUp: typeof SortUp;
|
|
1238
|
+
declare const Icons_StatDown: typeof StatDown;
|
|
1239
|
+
declare const Icons_StatUp: typeof StatUp;
|
|
1240
|
+
declare const Icons_SuccessToast: typeof SuccessToast;
|
|
1223
1241
|
declare const Icons_Trash: typeof Trash;
|
|
1224
1242
|
declare const Icons_User: typeof User;
|
|
1225
1243
|
declare const Icons_UserSolid: typeof UserSolid;
|
|
1244
|
+
declare const Icons_WarningToast: typeof WarningToast;
|
|
1226
1245
|
declare const Icons_XMark: typeof XMark;
|
|
1227
1246
|
declare const Icons_XMarkSolid: typeof XMarkSolid;
|
|
1228
1247
|
declare namespace Icons {
|
|
1229
|
-
export { Icons_Attachment as Attachment, Icons_Bank as Bank, Icons_BellNotification as BellNotification, Icons_Building as Building, Icons_Calendar as Calendar, Icons_CheckCircleSolid as CheckCircleSolid, Icons_CheckboxDefault as CheckboxDefault, Icons_CheckboxIndeterminate as CheckboxIndeterminate, Icons_CheckboxSelect as CheckboxSelect, Icons_Circle as Circle, Icons_ClipboardCheck as ClipboardCheck, Icons_Clock as Clock, Icons_CloudUpload as CloudUpload, Icons_Copy as Copy, Icons_Download as Download, Icons_Eye as Eye, Icons_EyeClosed as EyeClosed, Icons_HelpCircle as HelpCircle, Icons_InfoCircle as InfoCircle, Icons_InfoCircleSolid as InfoCircleSolid, Icons_KeyCommand as KeyCommand, Icons_Loader as Loader, Icons_LongArrowUpLeftSolid as LongArrowUpLeftSolid, Icons_NavArrowDown as NavArrowDown, Icons_NavArrowDownSolid as NavArrowDownSolid, Icons_NavArrowLeft as NavArrowLeft, Icons_NavArrowRight as NavArrowRight, Icons_Plus as Plus, Icons_PlusSquare as PlusSquare, Icons_RadioDefault as RadioDefault, Icons_RadioSelect as RadioSelect, Icons_Search as Search, Icons_Settings as Settings, Icons_SortDown as SortDown, Icons_SortUp as SortUp, Icons_Trash as Trash, Icons_User as User, Icons_UserSolid as UserSolid, Icons_XMark as XMark, Icons_XMarkSolid as XMarkSolid };
|
|
1248
|
+
export { Icons_Attachment as Attachment, Icons_Bank as Bank, Icons_BellNotification as BellNotification, Icons_Building as Building, Icons_Calendar as Calendar, Icons_CheckCircleSolid as CheckCircleSolid, Icons_CheckboxDefault as CheckboxDefault, Icons_CheckboxIndeterminate as CheckboxIndeterminate, Icons_CheckboxSelect as CheckboxSelect, Icons_Circle as Circle, Icons_ClipboardCheck as ClipboardCheck, Icons_Clock as Clock, Icons_CloudUpload as CloudUpload, Icons_Copy as Copy, Icons_Download as Download, Icons_ErrorToast as ErrorToast, Icons_Eye as Eye, Icons_EyeClosed as EyeClosed, Icons_HelpCircle as HelpCircle, Icons_InfoCircle as InfoCircle, Icons_InfoCircleSolid as InfoCircleSolid, Icons_InfoToast as InfoToast, Icons_KeyCommand as KeyCommand, Icons_Loader as Loader, Icons_LongArrowUpLeftSolid as LongArrowUpLeftSolid, Icons_NavArrowDown as NavArrowDown, Icons_NavArrowDownSolid as NavArrowDownSolid, Icons_NavArrowLeft as NavArrowLeft, Icons_NavArrowRight as NavArrowRight, Icons_Plus as Plus, Icons_PlusSquare as PlusSquare, Icons_RadioDefault as RadioDefault, Icons_RadioSelect as RadioSelect, Icons_Search as Search, Icons_Settings as Settings, Icons_SortDown as SortDown, Icons_SortUp as SortUp, Icons_StatDown as StatDown, Icons_StatUp as StatUp, Icons_SuccessToast as SuccessToast, Icons_Trash as Trash, Icons_User as User, Icons_UserSolid as UserSolid, Icons_WarningToast as WarningToast, Icons_XMark as XMark, Icons_XMarkSolid as XMarkSolid };
|
|
1230
1249
|
}
|
|
1231
1250
|
|
|
1232
1251
|
type IconType = keyof typeof Icons;
|
|
@@ -1346,6 +1365,8 @@ interface ImageProps extends Omit<BoxProps, 'component' | 'children' | 'position
|
|
|
1346
1365
|
|
|
1347
1366
|
declare const Image: react.ForwardRefExoticComponent<Omit<ImageProps, "ref"> & react.RefAttributes<HTMLImageElement>>;
|
|
1348
1367
|
|
|
1368
|
+
declare const Toast: () => react_jsx_runtime.JSX.Element;
|
|
1369
|
+
|
|
1349
1370
|
interface UploadProps extends DropzoneOptions {
|
|
1350
1371
|
error?: boolean;
|
|
1351
1372
|
sx?: SxProps<Theme>;
|
|
@@ -2092,4 +2113,4 @@ type ThemeProviderProps = {
|
|
|
2092
2113
|
};
|
|
2093
2114
|
declare const ThemeProvider: ({ children }: ThemeProviderProps) => react_jsx_runtime.JSX.Element;
|
|
2094
2115
|
|
|
2095
|
-
export { AnimatedLogo, Attachment, Bank, BellNotification, Building, Calendar, CheckCircleSolid, CheckboxDefault, CheckboxIndeterminate, CheckboxSelect, Circle, ClipboardCheck, Clock, CloudUpload, type ColorSchema, Copy, CopyButton, type CustomShadowOptions, type CustomSpacingOptions, type DatePickerProps, type DateTimePickerProps, Download, EmptyContent, type EmptyContentProps, Eye, EyeClosed, Field, Form, HelpCircle, Icon, type IconProps, type IconType, Image, type ImageProps, type ImageStatus, InfoCircle, InfoCircleSolid, KeyCommand, Loader, LoadingScreen, LocalStorageAvailable, LocalStorageGetItem, Logo, LongArrowUpLeftSolid, NavArrowDown, NavArrowDownSolid, NavArrowLeft, NavArrowRight, OTPInput, type OTPInputProps, Plus, PlusSquare, RHFAutocomplete, type RHFAutocompleteProps, RHFCheckbox, type RHFCheckboxProps, RHFDatePicker, type RHFDatePickerProps, RHFDateTimePicker, type RHFDateTimePickerProps, RHFMultiCheckbox, type RHFMultiCheckboxOption, type RHFMultiCheckboxProps, RHFMultiSwitch, RHFOTPInput, type RHFOTPInputProps, RHFRadioGroup, type RHFRadioGroupProps, RHFSwitch, RHFTextField, RHFTimePicker, type RHFTimePickerProps, RHFUpload, type RHFUploadProps, RadioDefault, RadioSelect, type RadiusOptions, STORAGE_KEY, Search, Settings, SettingsConsumer, SettingsContext, type SettingsContextProps, SettingsProvider, type SettingsValueProps, SortDown, SortUp, SplashScreen, Table, TablePagination, ThemeProvider, type TimePickerProps, Trash, Upload, type UploadProps, type UseBooleanReturnType, type UseSetStateReturnType, User, UserSolid, 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, formatFullname, getCurrencySymbol, getInitials, 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, splitFullname, stylesMode, success, surface, tertiaryFont, text, textGradient, typography, updateComponentsWithSettings, updateCoreWithSettings, useBoolean, useCopyToClipboard, useCountdownDate, useCountdownSeconds, useEventListener, useLocalStorage, usePopover, useResponsive, useScrollOffSetTop, useSetState, useSettings, useWidth, varAlpha, warning };
|
|
2116
|
+
export { AnimatedLogo, Attachment, Bank, BellNotification, Building, Calendar, CheckCircleSolid, CheckboxDefault, CheckboxIndeterminate, CheckboxSelect, Circle, ClipboardCheck, Clock, CloudUpload, type ColorSchema, Copy, CopyButton, type CustomShadowOptions, type CustomSpacingOptions, type DatePickerProps, type DateTimePickerProps, Download, EmptyContent, type EmptyContentProps, ErrorToast, Eye, EyeClosed, Field, Form, HelpCircle, Icon, type IconProps, type IconType, Image, type ImageProps, type ImageStatus, InfoCircle, InfoCircleSolid, InfoToast, KeyCommand, Loader, LoadingScreen, LocalStorageAvailable, LocalStorageGetItem, Logo, LongArrowUpLeftSolid, NavArrowDown, NavArrowDownSolid, NavArrowLeft, NavArrowRight, OTPInput, type OTPInputProps, Plus, PlusSquare, RHFAutocomplete, type RHFAutocompleteProps, RHFCheckbox, type RHFCheckboxProps, RHFDatePicker, type RHFDatePickerProps, RHFDateTimePicker, type RHFDateTimePickerProps, RHFMultiCheckbox, type RHFMultiCheckboxOption, type RHFMultiCheckboxProps, RHFMultiSwitch, RHFOTPInput, type RHFOTPInputProps, RHFRadioGroup, type RHFRadioGroupProps, RHFSwitch, RHFTextField, RHFTimePicker, type RHFTimePickerProps, RHFUpload, type RHFUploadProps, RadioDefault, RadioSelect, type RadiusOptions, STORAGE_KEY, Search, Settings, SettingsConsumer, SettingsContext, type SettingsContextProps, SettingsProvider, type SettingsValueProps, SortDown, SortUp, SplashScreen, StatDown, StatUp, SuccessToast, Table, TablePagination, ThemeProvider, type TimePickerProps, Toast, Trash, Upload, type UploadProps, type UseBooleanReturnType, type UseSetStateReturnType, User, UserSolid, WarningToast, 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, formatFullname, getCurrencySymbol, getInitials, 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, splitFullname, stylesMode, success, surface, tertiaryFont, text, textGradient, typography, updateComponentsWithSettings, updateCoreWithSettings, useBoolean, useCopyToClipboard, useCountdownDate, useCountdownSeconds, useEventListener, useLocalStorage, usePopover, useResponsive, useScrollOffSetTop, useSetState, useSettings, useWidth, varAlpha, warning };
|
package/dist/index.d.ts
CHANGED
|
@@ -25,6 +25,7 @@ import { RadioProps } from '@mui/material/Radio';
|
|
|
25
25
|
import { RadioGroupProps } from '@mui/material/RadioGroup';
|
|
26
26
|
import { TextFieldProps } from '@mui/material/TextField';
|
|
27
27
|
import { SwitchProps } from '@mui/material/Switch';
|
|
28
|
+
export * from 'sonner';
|
|
28
29
|
|
|
29
30
|
declare const isEqual: (a: any, b: any) => boolean;
|
|
30
31
|
declare const orderBy: <T>(array: T[], properties: (keyof T)[], orders?: ("asc" | "desc")[]) => T[];
|
|
@@ -1129,6 +1130,8 @@ declare const Search: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
|
1129
1130
|
|
|
1130
1131
|
declare const Circle: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1131
1132
|
|
|
1133
|
+
declare const StatUp: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1134
|
+
|
|
1132
1135
|
declare const SortDown: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1133
1136
|
|
|
1134
1137
|
declare const Calendar: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
@@ -1137,12 +1140,18 @@ declare const Settings: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
|
1137
1140
|
|
|
1138
1141
|
declare const Download: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1139
1142
|
|
|
1143
|
+
declare const StatDown: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1144
|
+
|
|
1140
1145
|
declare const Building: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1141
1146
|
|
|
1147
|
+
declare const InfoToast: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1148
|
+
|
|
1142
1149
|
declare const UserSolid: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1143
1150
|
|
|
1144
1151
|
declare const EyeClosed: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1145
1152
|
|
|
1153
|
+
declare const ErrorToast: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1154
|
+
|
|
1146
1155
|
declare const KeyCommand: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1147
1156
|
|
|
1148
1157
|
declare const XMarkSolid: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
@@ -1159,6 +1168,10 @@ declare const CloudUpload: (props: SvgIconProps) => react_jsx_runtime.JSX.Elemen
|
|
|
1159
1168
|
|
|
1160
1169
|
declare const RadioSelect: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1161
1170
|
|
|
1171
|
+
declare const SuccessToast: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1172
|
+
|
|
1173
|
+
declare const WarningToast: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1174
|
+
|
|
1162
1175
|
declare const RadioDefault: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1163
1176
|
|
|
1164
1177
|
declare const NavArrowDown: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
@@ -1200,11 +1213,13 @@ declare const Icons_Clock: typeof Clock;
|
|
|
1200
1213
|
declare const Icons_CloudUpload: typeof CloudUpload;
|
|
1201
1214
|
declare const Icons_Copy: typeof Copy;
|
|
1202
1215
|
declare const Icons_Download: typeof Download;
|
|
1216
|
+
declare const Icons_ErrorToast: typeof ErrorToast;
|
|
1203
1217
|
declare const Icons_Eye: typeof Eye;
|
|
1204
1218
|
declare const Icons_EyeClosed: typeof EyeClosed;
|
|
1205
1219
|
declare const Icons_HelpCircle: typeof HelpCircle;
|
|
1206
1220
|
declare const Icons_InfoCircle: typeof InfoCircle;
|
|
1207
1221
|
declare const Icons_InfoCircleSolid: typeof InfoCircleSolid;
|
|
1222
|
+
declare const Icons_InfoToast: typeof InfoToast;
|
|
1208
1223
|
declare const Icons_KeyCommand: typeof KeyCommand;
|
|
1209
1224
|
declare const Icons_Loader: typeof Loader;
|
|
1210
1225
|
declare const Icons_LongArrowUpLeftSolid: typeof LongArrowUpLeftSolid;
|
|
@@ -1220,13 +1235,17 @@ declare const Icons_Search: typeof Search;
|
|
|
1220
1235
|
declare const Icons_Settings: typeof Settings;
|
|
1221
1236
|
declare const Icons_SortDown: typeof SortDown;
|
|
1222
1237
|
declare const Icons_SortUp: typeof SortUp;
|
|
1238
|
+
declare const Icons_StatDown: typeof StatDown;
|
|
1239
|
+
declare const Icons_StatUp: typeof StatUp;
|
|
1240
|
+
declare const Icons_SuccessToast: typeof SuccessToast;
|
|
1223
1241
|
declare const Icons_Trash: typeof Trash;
|
|
1224
1242
|
declare const Icons_User: typeof User;
|
|
1225
1243
|
declare const Icons_UserSolid: typeof UserSolid;
|
|
1244
|
+
declare const Icons_WarningToast: typeof WarningToast;
|
|
1226
1245
|
declare const Icons_XMark: typeof XMark;
|
|
1227
1246
|
declare const Icons_XMarkSolid: typeof XMarkSolid;
|
|
1228
1247
|
declare namespace Icons {
|
|
1229
|
-
export { Icons_Attachment as Attachment, Icons_Bank as Bank, Icons_BellNotification as BellNotification, Icons_Building as Building, Icons_Calendar as Calendar, Icons_CheckCircleSolid as CheckCircleSolid, Icons_CheckboxDefault as CheckboxDefault, Icons_CheckboxIndeterminate as CheckboxIndeterminate, Icons_CheckboxSelect as CheckboxSelect, Icons_Circle as Circle, Icons_ClipboardCheck as ClipboardCheck, Icons_Clock as Clock, Icons_CloudUpload as CloudUpload, Icons_Copy as Copy, Icons_Download as Download, Icons_Eye as Eye, Icons_EyeClosed as EyeClosed, Icons_HelpCircle as HelpCircle, Icons_InfoCircle as InfoCircle, Icons_InfoCircleSolid as InfoCircleSolid, Icons_KeyCommand as KeyCommand, Icons_Loader as Loader, Icons_LongArrowUpLeftSolid as LongArrowUpLeftSolid, Icons_NavArrowDown as NavArrowDown, Icons_NavArrowDownSolid as NavArrowDownSolid, Icons_NavArrowLeft as NavArrowLeft, Icons_NavArrowRight as NavArrowRight, Icons_Plus as Plus, Icons_PlusSquare as PlusSquare, Icons_RadioDefault as RadioDefault, Icons_RadioSelect as RadioSelect, Icons_Search as Search, Icons_Settings as Settings, Icons_SortDown as SortDown, Icons_SortUp as SortUp, Icons_Trash as Trash, Icons_User as User, Icons_UserSolid as UserSolid, Icons_XMark as XMark, Icons_XMarkSolid as XMarkSolid };
|
|
1248
|
+
export { Icons_Attachment as Attachment, Icons_Bank as Bank, Icons_BellNotification as BellNotification, Icons_Building as Building, Icons_Calendar as Calendar, Icons_CheckCircleSolid as CheckCircleSolid, Icons_CheckboxDefault as CheckboxDefault, Icons_CheckboxIndeterminate as CheckboxIndeterminate, Icons_CheckboxSelect as CheckboxSelect, Icons_Circle as Circle, Icons_ClipboardCheck as ClipboardCheck, Icons_Clock as Clock, Icons_CloudUpload as CloudUpload, Icons_Copy as Copy, Icons_Download as Download, Icons_ErrorToast as ErrorToast, Icons_Eye as Eye, Icons_EyeClosed as EyeClosed, Icons_HelpCircle as HelpCircle, Icons_InfoCircle as InfoCircle, Icons_InfoCircleSolid as InfoCircleSolid, Icons_InfoToast as InfoToast, Icons_KeyCommand as KeyCommand, Icons_Loader as Loader, Icons_LongArrowUpLeftSolid as LongArrowUpLeftSolid, Icons_NavArrowDown as NavArrowDown, Icons_NavArrowDownSolid as NavArrowDownSolid, Icons_NavArrowLeft as NavArrowLeft, Icons_NavArrowRight as NavArrowRight, Icons_Plus as Plus, Icons_PlusSquare as PlusSquare, Icons_RadioDefault as RadioDefault, Icons_RadioSelect as RadioSelect, Icons_Search as Search, Icons_Settings as Settings, Icons_SortDown as SortDown, Icons_SortUp as SortUp, Icons_StatDown as StatDown, Icons_StatUp as StatUp, Icons_SuccessToast as SuccessToast, Icons_Trash as Trash, Icons_User as User, Icons_UserSolid as UserSolid, Icons_WarningToast as WarningToast, Icons_XMark as XMark, Icons_XMarkSolid as XMarkSolid };
|
|
1230
1249
|
}
|
|
1231
1250
|
|
|
1232
1251
|
type IconType = keyof typeof Icons;
|
|
@@ -1346,6 +1365,8 @@ interface ImageProps extends Omit<BoxProps, 'component' | 'children' | 'position
|
|
|
1346
1365
|
|
|
1347
1366
|
declare const Image: react.ForwardRefExoticComponent<Omit<ImageProps, "ref"> & react.RefAttributes<HTMLImageElement>>;
|
|
1348
1367
|
|
|
1368
|
+
declare const Toast: () => react_jsx_runtime.JSX.Element;
|
|
1369
|
+
|
|
1349
1370
|
interface UploadProps extends DropzoneOptions {
|
|
1350
1371
|
error?: boolean;
|
|
1351
1372
|
sx?: SxProps<Theme>;
|
|
@@ -2092,4 +2113,4 @@ type ThemeProviderProps = {
|
|
|
2092
2113
|
};
|
|
2093
2114
|
declare const ThemeProvider: ({ children }: ThemeProviderProps) => react_jsx_runtime.JSX.Element;
|
|
2094
2115
|
|
|
2095
|
-
export { AnimatedLogo, Attachment, Bank, BellNotification, Building, Calendar, CheckCircleSolid, CheckboxDefault, CheckboxIndeterminate, CheckboxSelect, Circle, ClipboardCheck, Clock, CloudUpload, type ColorSchema, Copy, CopyButton, type CustomShadowOptions, type CustomSpacingOptions, type DatePickerProps, type DateTimePickerProps, Download, EmptyContent, type EmptyContentProps, Eye, EyeClosed, Field, Form, HelpCircle, Icon, type IconProps, type IconType, Image, type ImageProps, type ImageStatus, InfoCircle, InfoCircleSolid, KeyCommand, Loader, LoadingScreen, LocalStorageAvailable, LocalStorageGetItem, Logo, LongArrowUpLeftSolid, NavArrowDown, NavArrowDownSolid, NavArrowLeft, NavArrowRight, OTPInput, type OTPInputProps, Plus, PlusSquare, RHFAutocomplete, type RHFAutocompleteProps, RHFCheckbox, type RHFCheckboxProps, RHFDatePicker, type RHFDatePickerProps, RHFDateTimePicker, type RHFDateTimePickerProps, RHFMultiCheckbox, type RHFMultiCheckboxOption, type RHFMultiCheckboxProps, RHFMultiSwitch, RHFOTPInput, type RHFOTPInputProps, RHFRadioGroup, type RHFRadioGroupProps, RHFSwitch, RHFTextField, RHFTimePicker, type RHFTimePickerProps, RHFUpload, type RHFUploadProps, RadioDefault, RadioSelect, type RadiusOptions, STORAGE_KEY, Search, Settings, SettingsConsumer, SettingsContext, type SettingsContextProps, SettingsProvider, type SettingsValueProps, SortDown, SortUp, SplashScreen, Table, TablePagination, ThemeProvider, type TimePickerProps, Trash, Upload, type UploadProps, type UseBooleanReturnType, type UseSetStateReturnType, User, UserSolid, 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, formatFullname, getCurrencySymbol, getInitials, 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, splitFullname, stylesMode, success, surface, tertiaryFont, text, textGradient, typography, updateComponentsWithSettings, updateCoreWithSettings, useBoolean, useCopyToClipboard, useCountdownDate, useCountdownSeconds, useEventListener, useLocalStorage, usePopover, useResponsive, useScrollOffSetTop, useSetState, useSettings, useWidth, varAlpha, warning };
|
|
2116
|
+
export { AnimatedLogo, Attachment, Bank, BellNotification, Building, Calendar, CheckCircleSolid, CheckboxDefault, CheckboxIndeterminate, CheckboxSelect, Circle, ClipboardCheck, Clock, CloudUpload, type ColorSchema, Copy, CopyButton, type CustomShadowOptions, type CustomSpacingOptions, type DatePickerProps, type DateTimePickerProps, Download, EmptyContent, type EmptyContentProps, ErrorToast, Eye, EyeClosed, Field, Form, HelpCircle, Icon, type IconProps, type IconType, Image, type ImageProps, type ImageStatus, InfoCircle, InfoCircleSolid, InfoToast, KeyCommand, Loader, LoadingScreen, LocalStorageAvailable, LocalStorageGetItem, Logo, LongArrowUpLeftSolid, NavArrowDown, NavArrowDownSolid, NavArrowLeft, NavArrowRight, OTPInput, type OTPInputProps, Plus, PlusSquare, RHFAutocomplete, type RHFAutocompleteProps, RHFCheckbox, type RHFCheckboxProps, RHFDatePicker, type RHFDatePickerProps, RHFDateTimePicker, type RHFDateTimePickerProps, RHFMultiCheckbox, type RHFMultiCheckboxOption, type RHFMultiCheckboxProps, RHFMultiSwitch, RHFOTPInput, type RHFOTPInputProps, RHFRadioGroup, type RHFRadioGroupProps, RHFSwitch, RHFTextField, RHFTimePicker, type RHFTimePickerProps, RHFUpload, type RHFUploadProps, RadioDefault, RadioSelect, type RadiusOptions, STORAGE_KEY, Search, Settings, SettingsConsumer, SettingsContext, type SettingsContextProps, SettingsProvider, type SettingsValueProps, SortDown, SortUp, SplashScreen, StatDown, StatUp, SuccessToast, Table, TablePagination, ThemeProvider, type TimePickerProps, Toast, Trash, Upload, type UploadProps, type UseBooleanReturnType, type UseSetStateReturnType, User, UserSolid, WarningToast, 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, formatFullname, getCurrencySymbol, getInitials, 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, splitFullname, stylesMode, success, surface, tertiaryFont, text, textGradient, typography, updateComponentsWithSettings, updateCoreWithSettings, useBoolean, useCopyToClipboard, useCountdownDate, useCountdownSeconds, useEventListener, useLocalStorage, usePopover, useResponsive, useScrollOffSetTop, useSetState, useSettings, useWidth, varAlpha, warning };
|