@undefine-ui/design-system 2.15.0 → 3.0.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 +63 -7
- package/dist/index.cjs +5225 -4263
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +93 -11
- package/dist/index.d.ts +93 -11
- package/dist/index.js +2760 -1809
- package/dist/index.js.map +1 -1
- package/package.json +3 -1
package/dist/index.d.cts
CHANGED
|
@@ -11,6 +11,9 @@ import { SvgIconProps } from '@mui/material/SvgIcon';
|
|
|
11
11
|
import { DataGridProps } from '@mui/x-data-grid';
|
|
12
12
|
import { DropzoneOptions } from 'react-dropzone';
|
|
13
13
|
import { FieldValues, UseFormReturn, SubmitHandler } from 'react-hook-form';
|
|
14
|
+
import { DatePickerProps as DatePickerProps$1 } from '@mui/x-date-pickers/DatePicker';
|
|
15
|
+
import { TimePickerProps as TimePickerProps$1 } from '@mui/x-date-pickers/TimePicker';
|
|
16
|
+
import { DateTimePickerProps as DateTimePickerProps$1 } from '@mui/x-date-pickers/DateTimePicker';
|
|
14
17
|
import { AutocompleteProps } from '@mui/material/Autocomplete';
|
|
15
18
|
import { CheckboxProps } from '@mui/material/Checkbox';
|
|
16
19
|
import { FormGroupProps } from '@mui/material/FormGroup';
|
|
@@ -1106,17 +1109,37 @@ declare const Eye: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
|
1106
1109
|
|
|
1107
1110
|
declare const Copy: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1108
1111
|
|
|
1112
|
+
declare const User: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1113
|
+
|
|
1114
|
+
declare const Bank: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1115
|
+
|
|
1116
|
+
declare const Plus: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1117
|
+
|
|
1109
1118
|
declare const Trash: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1110
1119
|
|
|
1111
1120
|
declare const XMark: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1112
1121
|
|
|
1122
|
+
declare const Clock: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1123
|
+
|
|
1113
1124
|
declare const Loader: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1114
1125
|
|
|
1126
|
+
declare const SortUp: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1127
|
+
|
|
1115
1128
|
declare const Search: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1116
1129
|
|
|
1130
|
+
declare const Circle: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1131
|
+
|
|
1132
|
+
declare const SortDown: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1133
|
+
|
|
1134
|
+
declare const Calendar: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1135
|
+
|
|
1117
1136
|
declare const Settings: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1118
1137
|
|
|
1119
|
-
declare const
|
|
1138
|
+
declare const Download: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1139
|
+
|
|
1140
|
+
declare const Building: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1141
|
+
|
|
1142
|
+
declare const UserSolid: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1120
1143
|
|
|
1121
1144
|
declare const EyeClosed: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1122
1145
|
|
|
@@ -1124,9 +1147,15 @@ declare const KeyCommand: (props: SvgIconProps) => react_jsx_runtime.JSX.Element
|
|
|
1124
1147
|
|
|
1125
1148
|
declare const XMarkSolid: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1126
1149
|
|
|
1127
|
-
declare const
|
|
1150
|
+
declare const Attachment: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1151
|
+
|
|
1152
|
+
declare const HelpCircle: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1153
|
+
|
|
1154
|
+
declare const PlusSquare: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1155
|
+
|
|
1156
|
+
declare const InfoCircle: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1128
1157
|
|
|
1129
|
-
declare const
|
|
1158
|
+
declare const CloudUpload: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1130
1159
|
|
|
1131
1160
|
declare const RadioSelect: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1132
1161
|
|
|
@@ -1142,46 +1171,62 @@ declare const ClipboardCheck: (props: SvgIconProps) => react_jsx_runtime.JSX.Ele
|
|
|
1142
1171
|
|
|
1143
1172
|
declare const CheckboxSelect: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1144
1173
|
|
|
1145
|
-
declare const
|
|
1174
|
+
declare const InfoCircleSolid: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1146
1175
|
|
|
1147
1176
|
declare const CheckboxDefault: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1148
1177
|
|
|
1178
|
+
declare const CheckCircleSolid: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1179
|
+
|
|
1149
1180
|
declare const BellNotification: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1150
1181
|
|
|
1151
|
-
declare const
|
|
1182
|
+
declare const NavArrowDownSolid: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1152
1183
|
|
|
1153
1184
|
declare const LongArrowUpLeftSolid: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1154
1185
|
|
|
1155
1186
|
declare const CheckboxIndeterminate: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1156
1187
|
|
|
1188
|
+
declare const Icons_Attachment: typeof Attachment;
|
|
1189
|
+
declare const Icons_Bank: typeof Bank;
|
|
1157
1190
|
declare const Icons_BellNotification: typeof BellNotification;
|
|
1191
|
+
declare const Icons_Building: typeof Building;
|
|
1192
|
+
declare const Icons_Calendar: typeof Calendar;
|
|
1193
|
+
declare const Icons_CheckCircleSolid: typeof CheckCircleSolid;
|
|
1158
1194
|
declare const Icons_CheckboxDefault: typeof CheckboxDefault;
|
|
1159
1195
|
declare const Icons_CheckboxIndeterminate: typeof CheckboxIndeterminate;
|
|
1160
1196
|
declare const Icons_CheckboxSelect: typeof CheckboxSelect;
|
|
1197
|
+
declare const Icons_Circle: typeof Circle;
|
|
1161
1198
|
declare const Icons_ClipboardCheck: typeof ClipboardCheck;
|
|
1199
|
+
declare const Icons_Clock: typeof Clock;
|
|
1162
1200
|
declare const Icons_CloudUpload: typeof CloudUpload;
|
|
1163
1201
|
declare const Icons_Copy: typeof Copy;
|
|
1202
|
+
declare const Icons_Download: typeof Download;
|
|
1164
1203
|
declare const Icons_Eye: typeof Eye;
|
|
1165
1204
|
declare const Icons_EyeClosed: typeof EyeClosed;
|
|
1166
|
-
declare const
|
|
1167
|
-
declare const
|
|
1205
|
+
declare const Icons_HelpCircle: typeof HelpCircle;
|
|
1206
|
+
declare const Icons_InfoCircle: typeof InfoCircle;
|
|
1207
|
+
declare const Icons_InfoCircleSolid: typeof InfoCircleSolid;
|
|
1168
1208
|
declare const Icons_KeyCommand: typeof KeyCommand;
|
|
1169
1209
|
declare const Icons_Loader: typeof Loader;
|
|
1170
1210
|
declare const Icons_LongArrowUpLeftSolid: typeof LongArrowUpLeftSolid;
|
|
1171
1211
|
declare const Icons_NavArrowDown: typeof NavArrowDown;
|
|
1212
|
+
declare const Icons_NavArrowDownSolid: typeof NavArrowDownSolid;
|
|
1172
1213
|
declare const Icons_NavArrowLeft: typeof NavArrowLeft;
|
|
1173
1214
|
declare const Icons_NavArrowRight: typeof NavArrowRight;
|
|
1215
|
+
declare const Icons_Plus: typeof Plus;
|
|
1216
|
+
declare const Icons_PlusSquare: typeof PlusSquare;
|
|
1174
1217
|
declare const Icons_RadioDefault: typeof RadioDefault;
|
|
1175
1218
|
declare const Icons_RadioSelect: typeof RadioSelect;
|
|
1176
1219
|
declare const Icons_Search: typeof Search;
|
|
1177
1220
|
declare const Icons_Settings: typeof Settings;
|
|
1221
|
+
declare const Icons_SortDown: typeof SortDown;
|
|
1222
|
+
declare const Icons_SortUp: typeof SortUp;
|
|
1178
1223
|
declare const Icons_Trash: typeof Trash;
|
|
1179
|
-
declare const
|
|
1180
|
-
declare const
|
|
1224
|
+
declare const Icons_User: typeof User;
|
|
1225
|
+
declare const Icons_UserSolid: typeof UserSolid;
|
|
1181
1226
|
declare const Icons_XMark: typeof XMark;
|
|
1182
1227
|
declare const Icons_XMarkSolid: typeof XMarkSolid;
|
|
1183
1228
|
declare namespace Icons {
|
|
1184
|
-
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,
|
|
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 };
|
|
1185
1230
|
}
|
|
1186
1231
|
|
|
1187
1232
|
type IconType = keyof typeof Icons;
|
|
@@ -1325,6 +1370,40 @@ interface FormProps<T extends FieldValues> extends Omit<BoxProps, 'onSubmit'> {
|
|
|
1325
1370
|
}
|
|
1326
1371
|
declare const Form: <T extends FieldValues>({ children, onSubmit, methods, ...rest }: FormProps<T>) => react_jsx_runtime.JSX.Element;
|
|
1327
1372
|
|
|
1373
|
+
/**
|
|
1374
|
+
* Type definitions for date picker components with clearable option.
|
|
1375
|
+
*/
|
|
1376
|
+
type DatePickerProps = DatePickerProps$1 & {
|
|
1377
|
+
clearable?: boolean;
|
|
1378
|
+
};
|
|
1379
|
+
type TimePickerProps = TimePickerProps$1 & {
|
|
1380
|
+
clearable?: boolean;
|
|
1381
|
+
};
|
|
1382
|
+
type DateTimePickerProps = DateTimePickerProps$1 & {
|
|
1383
|
+
clearable?: boolean;
|
|
1384
|
+
};
|
|
1385
|
+
interface RHFDatePickerProps extends Omit<DatePickerProps, 'value' | 'onChange'> {
|
|
1386
|
+
/** Form field name for react-hook-form */
|
|
1387
|
+
name: string;
|
|
1388
|
+
/** Optional helper text displayed below the input */
|
|
1389
|
+
helperText?: string;
|
|
1390
|
+
}
|
|
1391
|
+
declare const RHFDatePicker: react.MemoExoticComponent<({ name, slotProps, helperText, clearable, format, ...other }: RHFDatePickerProps) => react_jsx_runtime.JSX.Element>;
|
|
1392
|
+
interface RHFTimePickerProps extends Omit<TimePickerProps, 'value' | 'onChange'> {
|
|
1393
|
+
/** Form field name for react-hook-form */
|
|
1394
|
+
name: string;
|
|
1395
|
+
/** Optional helper text displayed below the input */
|
|
1396
|
+
helperText?: string;
|
|
1397
|
+
}
|
|
1398
|
+
declare const RHFTimePicker: react.MemoExoticComponent<({ name, slotProps, helperText, clearable, format, ...other }: RHFTimePickerProps) => react_jsx_runtime.JSX.Element>;
|
|
1399
|
+
interface RHFDateTimePickerProps extends Omit<DateTimePickerProps, 'value' | 'onChange'> {
|
|
1400
|
+
/** Form field name for react-hook-form */
|
|
1401
|
+
name: string;
|
|
1402
|
+
/** Optional helper text displayed below the input */
|
|
1403
|
+
helperText?: string;
|
|
1404
|
+
}
|
|
1405
|
+
declare const RHFDateTimePicker: react.MemoExoticComponent<({ name, slotProps, helperText, clearable, format, ...other }: RHFDateTimePickerProps) => react_jsx_runtime.JSX.Element>;
|
|
1406
|
+
|
|
1328
1407
|
interface RHFAutocompleteProps<T, Multiple extends boolean | undefined, DisableClearable extends boolean | undefined, FreeSolo extends boolean | undefined> extends AutocompleteProps<T, Multiple, DisableClearable, FreeSolo> {
|
|
1329
1408
|
name: string;
|
|
1330
1409
|
label?: string;
|
|
@@ -1424,6 +1503,9 @@ declare const Field: {
|
|
|
1424
1503
|
Checkbox: ({ name, description, helperText, label, sx, slotProps, ...other }: RHFCheckboxProps) => react_jsx_runtime.JSX.Element;
|
|
1425
1504
|
Autocomplete: <T, Multiple extends boolean | undefined, DisableClearable extends boolean | undefined, FreeSolo extends boolean | undefined>({ name, label, required, placeholder, helperText, handleChange, ...other }: Omit<RHFAutocompleteProps<T, Multiple, DisableClearable, FreeSolo>, "renderInput">) => react_jsx_runtime.JSX.Element;
|
|
1426
1505
|
MultiCheckbox: ({ name, label, options, slotProps, helperText, row, ...other }: RHFMultiCheckboxProps) => react_jsx_runtime.JSX.Element;
|
|
1506
|
+
Date: react.MemoExoticComponent<({ name, slotProps, helperText, clearable, format, ...other }: RHFDatePickerProps) => react_jsx_runtime.JSX.Element>;
|
|
1507
|
+
Time: react.MemoExoticComponent<({ name, slotProps, helperText, clearable, format, ...other }: RHFTimePickerProps) => react_jsx_runtime.JSX.Element>;
|
|
1508
|
+
DateTime: react.MemoExoticComponent<({ name, slotProps, helperText, clearable, format, ...other }: RHFDateTimePickerProps) => react_jsx_runtime.JSX.Element>;
|
|
1427
1509
|
};
|
|
1428
1510
|
|
|
1429
1511
|
type RHFSwitchProps = Omit<FormControlLabelProps, 'name' | 'control'> & {
|
|
@@ -2010,4 +2092,4 @@ type ThemeProviderProps = {
|
|
|
2010
2092
|
};
|
|
2011
2093
|
declare const ThemeProvider: ({ children }: ThemeProviderProps) => react_jsx_runtime.JSX.Element;
|
|
2012
2094
|
|
|
2013
|
-
export { AnimatedLogo, BellNotification, CheckboxDefault, CheckboxIndeterminate, CheckboxSelect, ClipboardCheck, CloudUpload, type ColorSchema, Copy, CopyButton, type CustomShadowOptions, type CustomSpacingOptions, EmptyContent, type EmptyContentProps, Eye, EyeClosed, Field, Form, Icon, type IconProps, type IconType, Image, type ImageProps, type ImageStatus,
|
|
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 };
|
package/dist/index.d.ts
CHANGED
|
@@ -11,6 +11,9 @@ import { SvgIconProps } from '@mui/material/SvgIcon';
|
|
|
11
11
|
import { DataGridProps } from '@mui/x-data-grid';
|
|
12
12
|
import { DropzoneOptions } from 'react-dropzone';
|
|
13
13
|
import { FieldValues, UseFormReturn, SubmitHandler } from 'react-hook-form';
|
|
14
|
+
import { DatePickerProps as DatePickerProps$1 } from '@mui/x-date-pickers/DatePicker';
|
|
15
|
+
import { TimePickerProps as TimePickerProps$1 } from '@mui/x-date-pickers/TimePicker';
|
|
16
|
+
import { DateTimePickerProps as DateTimePickerProps$1 } from '@mui/x-date-pickers/DateTimePicker';
|
|
14
17
|
import { AutocompleteProps } from '@mui/material/Autocomplete';
|
|
15
18
|
import { CheckboxProps } from '@mui/material/Checkbox';
|
|
16
19
|
import { FormGroupProps } from '@mui/material/FormGroup';
|
|
@@ -1106,17 +1109,37 @@ declare const Eye: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
|
1106
1109
|
|
|
1107
1110
|
declare const Copy: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1108
1111
|
|
|
1112
|
+
declare const User: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1113
|
+
|
|
1114
|
+
declare const Bank: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1115
|
+
|
|
1116
|
+
declare const Plus: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1117
|
+
|
|
1109
1118
|
declare const Trash: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1110
1119
|
|
|
1111
1120
|
declare const XMark: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1112
1121
|
|
|
1122
|
+
declare const Clock: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1123
|
+
|
|
1113
1124
|
declare const Loader: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1114
1125
|
|
|
1126
|
+
declare const SortUp: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1127
|
+
|
|
1115
1128
|
declare const Search: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1116
1129
|
|
|
1130
|
+
declare const Circle: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1131
|
+
|
|
1132
|
+
declare const SortDown: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1133
|
+
|
|
1134
|
+
declare const Calendar: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1135
|
+
|
|
1117
1136
|
declare const Settings: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1118
1137
|
|
|
1119
|
-
declare const
|
|
1138
|
+
declare const Download: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1139
|
+
|
|
1140
|
+
declare const Building: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1141
|
+
|
|
1142
|
+
declare const UserSolid: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1120
1143
|
|
|
1121
1144
|
declare const EyeClosed: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1122
1145
|
|
|
@@ -1124,9 +1147,15 @@ declare const KeyCommand: (props: SvgIconProps) => react_jsx_runtime.JSX.Element
|
|
|
1124
1147
|
|
|
1125
1148
|
declare const XMarkSolid: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1126
1149
|
|
|
1127
|
-
declare const
|
|
1150
|
+
declare const Attachment: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1151
|
+
|
|
1152
|
+
declare const HelpCircle: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1153
|
+
|
|
1154
|
+
declare const PlusSquare: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1155
|
+
|
|
1156
|
+
declare const InfoCircle: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1128
1157
|
|
|
1129
|
-
declare const
|
|
1158
|
+
declare const CloudUpload: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1130
1159
|
|
|
1131
1160
|
declare const RadioSelect: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1132
1161
|
|
|
@@ -1142,46 +1171,62 @@ declare const ClipboardCheck: (props: SvgIconProps) => react_jsx_runtime.JSX.Ele
|
|
|
1142
1171
|
|
|
1143
1172
|
declare const CheckboxSelect: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1144
1173
|
|
|
1145
|
-
declare const
|
|
1174
|
+
declare const InfoCircleSolid: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1146
1175
|
|
|
1147
1176
|
declare const CheckboxDefault: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1148
1177
|
|
|
1178
|
+
declare const CheckCircleSolid: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1179
|
+
|
|
1149
1180
|
declare const BellNotification: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1150
1181
|
|
|
1151
|
-
declare const
|
|
1182
|
+
declare const NavArrowDownSolid: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1152
1183
|
|
|
1153
1184
|
declare const LongArrowUpLeftSolid: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1154
1185
|
|
|
1155
1186
|
declare const CheckboxIndeterminate: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
1156
1187
|
|
|
1188
|
+
declare const Icons_Attachment: typeof Attachment;
|
|
1189
|
+
declare const Icons_Bank: typeof Bank;
|
|
1157
1190
|
declare const Icons_BellNotification: typeof BellNotification;
|
|
1191
|
+
declare const Icons_Building: typeof Building;
|
|
1192
|
+
declare const Icons_Calendar: typeof Calendar;
|
|
1193
|
+
declare const Icons_CheckCircleSolid: typeof CheckCircleSolid;
|
|
1158
1194
|
declare const Icons_CheckboxDefault: typeof CheckboxDefault;
|
|
1159
1195
|
declare const Icons_CheckboxIndeterminate: typeof CheckboxIndeterminate;
|
|
1160
1196
|
declare const Icons_CheckboxSelect: typeof CheckboxSelect;
|
|
1197
|
+
declare const Icons_Circle: typeof Circle;
|
|
1161
1198
|
declare const Icons_ClipboardCheck: typeof ClipboardCheck;
|
|
1199
|
+
declare const Icons_Clock: typeof Clock;
|
|
1162
1200
|
declare const Icons_CloudUpload: typeof CloudUpload;
|
|
1163
1201
|
declare const Icons_Copy: typeof Copy;
|
|
1202
|
+
declare const Icons_Download: typeof Download;
|
|
1164
1203
|
declare const Icons_Eye: typeof Eye;
|
|
1165
1204
|
declare const Icons_EyeClosed: typeof EyeClosed;
|
|
1166
|
-
declare const
|
|
1167
|
-
declare const
|
|
1205
|
+
declare const Icons_HelpCircle: typeof HelpCircle;
|
|
1206
|
+
declare const Icons_InfoCircle: typeof InfoCircle;
|
|
1207
|
+
declare const Icons_InfoCircleSolid: typeof InfoCircleSolid;
|
|
1168
1208
|
declare const Icons_KeyCommand: typeof KeyCommand;
|
|
1169
1209
|
declare const Icons_Loader: typeof Loader;
|
|
1170
1210
|
declare const Icons_LongArrowUpLeftSolid: typeof LongArrowUpLeftSolid;
|
|
1171
1211
|
declare const Icons_NavArrowDown: typeof NavArrowDown;
|
|
1212
|
+
declare const Icons_NavArrowDownSolid: typeof NavArrowDownSolid;
|
|
1172
1213
|
declare const Icons_NavArrowLeft: typeof NavArrowLeft;
|
|
1173
1214
|
declare const Icons_NavArrowRight: typeof NavArrowRight;
|
|
1215
|
+
declare const Icons_Plus: typeof Plus;
|
|
1216
|
+
declare const Icons_PlusSquare: typeof PlusSquare;
|
|
1174
1217
|
declare const Icons_RadioDefault: typeof RadioDefault;
|
|
1175
1218
|
declare const Icons_RadioSelect: typeof RadioSelect;
|
|
1176
1219
|
declare const Icons_Search: typeof Search;
|
|
1177
1220
|
declare const Icons_Settings: typeof Settings;
|
|
1221
|
+
declare const Icons_SortDown: typeof SortDown;
|
|
1222
|
+
declare const Icons_SortUp: typeof SortUp;
|
|
1178
1223
|
declare const Icons_Trash: typeof Trash;
|
|
1179
|
-
declare const
|
|
1180
|
-
declare const
|
|
1224
|
+
declare const Icons_User: typeof User;
|
|
1225
|
+
declare const Icons_UserSolid: typeof UserSolid;
|
|
1181
1226
|
declare const Icons_XMark: typeof XMark;
|
|
1182
1227
|
declare const Icons_XMarkSolid: typeof XMarkSolid;
|
|
1183
1228
|
declare namespace Icons {
|
|
1184
|
-
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,
|
|
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 };
|
|
1185
1230
|
}
|
|
1186
1231
|
|
|
1187
1232
|
type IconType = keyof typeof Icons;
|
|
@@ -1325,6 +1370,40 @@ interface FormProps<T extends FieldValues> extends Omit<BoxProps, 'onSubmit'> {
|
|
|
1325
1370
|
}
|
|
1326
1371
|
declare const Form: <T extends FieldValues>({ children, onSubmit, methods, ...rest }: FormProps<T>) => react_jsx_runtime.JSX.Element;
|
|
1327
1372
|
|
|
1373
|
+
/**
|
|
1374
|
+
* Type definitions for date picker components with clearable option.
|
|
1375
|
+
*/
|
|
1376
|
+
type DatePickerProps = DatePickerProps$1 & {
|
|
1377
|
+
clearable?: boolean;
|
|
1378
|
+
};
|
|
1379
|
+
type TimePickerProps = TimePickerProps$1 & {
|
|
1380
|
+
clearable?: boolean;
|
|
1381
|
+
};
|
|
1382
|
+
type DateTimePickerProps = DateTimePickerProps$1 & {
|
|
1383
|
+
clearable?: boolean;
|
|
1384
|
+
};
|
|
1385
|
+
interface RHFDatePickerProps extends Omit<DatePickerProps, 'value' | 'onChange'> {
|
|
1386
|
+
/** Form field name for react-hook-form */
|
|
1387
|
+
name: string;
|
|
1388
|
+
/** Optional helper text displayed below the input */
|
|
1389
|
+
helperText?: string;
|
|
1390
|
+
}
|
|
1391
|
+
declare const RHFDatePicker: react.MemoExoticComponent<({ name, slotProps, helperText, clearable, format, ...other }: RHFDatePickerProps) => react_jsx_runtime.JSX.Element>;
|
|
1392
|
+
interface RHFTimePickerProps extends Omit<TimePickerProps, 'value' | 'onChange'> {
|
|
1393
|
+
/** Form field name for react-hook-form */
|
|
1394
|
+
name: string;
|
|
1395
|
+
/** Optional helper text displayed below the input */
|
|
1396
|
+
helperText?: string;
|
|
1397
|
+
}
|
|
1398
|
+
declare const RHFTimePicker: react.MemoExoticComponent<({ name, slotProps, helperText, clearable, format, ...other }: RHFTimePickerProps) => react_jsx_runtime.JSX.Element>;
|
|
1399
|
+
interface RHFDateTimePickerProps extends Omit<DateTimePickerProps, 'value' | 'onChange'> {
|
|
1400
|
+
/** Form field name for react-hook-form */
|
|
1401
|
+
name: string;
|
|
1402
|
+
/** Optional helper text displayed below the input */
|
|
1403
|
+
helperText?: string;
|
|
1404
|
+
}
|
|
1405
|
+
declare const RHFDateTimePicker: react.MemoExoticComponent<({ name, slotProps, helperText, clearable, format, ...other }: RHFDateTimePickerProps) => react_jsx_runtime.JSX.Element>;
|
|
1406
|
+
|
|
1328
1407
|
interface RHFAutocompleteProps<T, Multiple extends boolean | undefined, DisableClearable extends boolean | undefined, FreeSolo extends boolean | undefined> extends AutocompleteProps<T, Multiple, DisableClearable, FreeSolo> {
|
|
1329
1408
|
name: string;
|
|
1330
1409
|
label?: string;
|
|
@@ -1424,6 +1503,9 @@ declare const Field: {
|
|
|
1424
1503
|
Checkbox: ({ name, description, helperText, label, sx, slotProps, ...other }: RHFCheckboxProps) => react_jsx_runtime.JSX.Element;
|
|
1425
1504
|
Autocomplete: <T, Multiple extends boolean | undefined, DisableClearable extends boolean | undefined, FreeSolo extends boolean | undefined>({ name, label, required, placeholder, helperText, handleChange, ...other }: Omit<RHFAutocompleteProps<T, Multiple, DisableClearable, FreeSolo>, "renderInput">) => react_jsx_runtime.JSX.Element;
|
|
1426
1505
|
MultiCheckbox: ({ name, label, options, slotProps, helperText, row, ...other }: RHFMultiCheckboxProps) => react_jsx_runtime.JSX.Element;
|
|
1506
|
+
Date: react.MemoExoticComponent<({ name, slotProps, helperText, clearable, format, ...other }: RHFDatePickerProps) => react_jsx_runtime.JSX.Element>;
|
|
1507
|
+
Time: react.MemoExoticComponent<({ name, slotProps, helperText, clearable, format, ...other }: RHFTimePickerProps) => react_jsx_runtime.JSX.Element>;
|
|
1508
|
+
DateTime: react.MemoExoticComponent<({ name, slotProps, helperText, clearable, format, ...other }: RHFDateTimePickerProps) => react_jsx_runtime.JSX.Element>;
|
|
1427
1509
|
};
|
|
1428
1510
|
|
|
1429
1511
|
type RHFSwitchProps = Omit<FormControlLabelProps, 'name' | 'control'> & {
|
|
@@ -2010,4 +2092,4 @@ type ThemeProviderProps = {
|
|
|
2010
2092
|
};
|
|
2011
2093
|
declare const ThemeProvider: ({ children }: ThemeProviderProps) => react_jsx_runtime.JSX.Element;
|
|
2012
2094
|
|
|
2013
|
-
export { AnimatedLogo, BellNotification, CheckboxDefault, CheckboxIndeterminate, CheckboxSelect, ClipboardCheck, CloudUpload, type ColorSchema, Copy, CopyButton, type CustomShadowOptions, type CustomSpacingOptions, EmptyContent, type EmptyContentProps, Eye, EyeClosed, Field, Form, Icon, type IconProps, type IconType, Image, type ImageProps, type ImageStatus,
|
|
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 };
|