identity-admin-ui 1.12.0 → 1.12.1
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/lib/cjs/index.css +18 -38
- package/lib/cjs/index.js +13 -13
- package/lib/cjs/types/components/Image.d.ts +12 -0
- package/lib/cjs/types/components/Logo.d.ts +6 -0
- package/lib/cjs/types/components/MotionLazyContainer.d.ts +6 -0
- package/lib/cjs/types/components/SearchNotFound.d.ts +6 -0
- package/lib/cjs/types/components/hook-form/RHFDatePicker.d.ts +2 -1
- package/lib/cjs/types/components/hook-form/RHFTagsField.d.ts +21 -0
- package/lib/cjs/types/components/hook-form/RHFUpload.d.ts +15 -2
- package/lib/cjs/types/components/hook-form/index.d.ts +2 -0
- package/lib/cjs/types/components/index.d.ts +2 -0
- package/lib/cjs/types/components/nav-section/horizontal/NavItem.d.ts +4 -0
- package/lib/cjs/types/components/nav-section/horizontal/NavList.d.ts +6 -0
- package/lib/cjs/types/components/nav-section/horizontal/index.d.ts +5 -1
- package/lib/cjs/types/components/nav-section/horizontal/style.d.ts +47 -0
- package/lib/cjs/types/components/nav-section/index.d.ts +4 -0
- package/lib/cjs/types/components/nav-section/type.d.ts +35 -0
- package/lib/cjs/types/components/nav-section/vertical/NavItem.d.ts +13 -0
- package/lib/cjs/types/components/nav-section/vertical/NavList.d.ts +7 -0
- package/lib/cjs/types/components/nav-section/vertical/index.d.ts +16 -1
- package/lib/cjs/types/components/nav-section/vertical/style.d.ts +36 -0
- package/lib/cjs/types/components/settings/SettingsContext.d.ts +8 -0
- package/lib/cjs/types/components/settings/ThemeColorPresets.d.ts +6 -0
- package/lib/cjs/types/components/settings/ThemeContrast.d.ts +6 -0
- package/lib/cjs/types/components/settings/ThemeLocalization.d.ts +6 -0
- package/lib/cjs/types/components/settings/ThemeRtlLayout.d.ts +6 -0
- package/lib/cjs/types/components/settings/config-setting.d.ts +2 -0
- package/lib/cjs/types/components/settings/drawer/BoxMask.d.ts +5 -0
- package/lib/cjs/types/components/settings/drawer/SettingColorPresets.d.ts +1 -0
- package/lib/cjs/types/components/settings/drawer/SettingContrast.d.ts +1 -0
- package/lib/cjs/types/components/settings/drawer/SettingDirection.d.ts +1 -0
- package/lib/cjs/types/components/settings/drawer/SettingFullscreen.d.ts +1 -0
- package/lib/cjs/types/components/settings/drawer/SettingLayout.d.ts +1 -0
- package/lib/cjs/types/components/settings/drawer/SettingMode.d.ts +1 -0
- package/lib/cjs/types/components/settings/drawer/SettingStretch.d.ts +1 -0
- package/lib/cjs/types/components/settings/drawer/ToggleButton.d.ts +7 -0
- package/lib/cjs/types/components/settings/drawer/index.d.ts +1 -0
- package/lib/cjs/types/components/settings/index.d.ts +6 -0
- package/lib/cjs/types/components/settings/presets.d.ts +1941 -0
- package/lib/cjs/types/components/settings/type.d.ts +56 -0
- package/lib/cjs/types/components/upload/UploadImage.d.ts +2 -0
- package/lib/cjs/types/components/upload/UploadSingleFile.d.ts +1 -1
- package/lib/cjs/types/components/upload/index.d.ts +1 -0
- package/lib/cjs/types/components/upload/type.d.ts +2 -0
- package/lib/cjs/types/context/AppConfigurationsContext.d.ts +8 -2
- package/lib/cjs/types/context/CollapseDrawerContext.d.ts +15 -0
- package/lib/cjs/types/context/SettingsContext.d.ts +8 -0
- package/lib/cjs/types/context/auth/AuthContext.d.ts +14 -0
- package/lib/cjs/types/context/auth/AuthReducer.d.ts +18 -0
- package/lib/cjs/types/context/auth/index.d.ts +2 -0
- package/lib/cjs/types/context/auth/types.d.ts +9 -0
- package/lib/cjs/types/context/index.d.ts +3 -0
- package/lib/cjs/types/hooks/RequetState.d.ts +8 -1
- package/lib/cjs/types/hooks/index.d.ts +2 -0
- package/lib/cjs/types/hooks/useApi.d.ts +2 -1
- package/lib/cjs/types/hooks/useAppConfigurations.d.ts +5 -0
- package/lib/cjs/types/hooks/useAuth.d.ts +6 -0
- package/lib/cjs/types/hooks/useCollapseDrawer.d.ts +2 -0
- package/lib/cjs/types/hooks/useLocalStorage.d.ts +1 -0
- package/lib/cjs/types/hooks/useLocales.d.ts +16 -0
- package/lib/cjs/types/hooks/useSettings.d.ts +2 -0
- package/lib/cjs/types/index.d.ts +5 -1
- package/lib/cjs/types/layout/dashboard/config-navigation.d.ts +4 -4
- package/lib/cjs/types/layouts/LogoOnlyLayout.d.ts +1 -0
- package/lib/cjs/types/layouts/config.d.ts +34 -0
- package/lib/cjs/types/layouts/dashboard/header/AccountPopover.d.ts +1 -0
- package/lib/cjs/types/layouts/dashboard/header/LanguagePopover.d.ts +1 -0
- package/lib/cjs/types/layouts/dashboard/header/NotificationsPopover.d.ts +13 -0
- package/lib/cjs/types/layouts/dashboard/header/Searchbar.d.ts +4 -0
- package/lib/cjs/types/layouts/dashboard/header/index.d.ts +7 -0
- package/lib/cjs/types/layouts/dashboard/index.d.ts +1 -0
- package/lib/cjs/types/layouts/dashboard/navbar/CollapseButton.d.ts +6 -0
- package/lib/cjs/types/layouts/dashboard/navbar/NavbarAccount.d.ts +5 -0
- package/lib/cjs/types/layouts/dashboard/navbar/NavbarVertical.d.ts +8 -0
- package/lib/cjs/types/layouts/dashboard/navbar/UserNavBar.d.ts +4 -0
- package/lib/cjs/types/pages/Page404.d.ts +1 -0
- package/lib/cjs/types/pages/auth/Login.d.ts +6 -0
- package/lib/cjs/types/pages/auth/LoginForm.d.ts +1 -0
- package/lib/cjs/types/pages/index.d.ts +2 -0
- package/lib/cjs/types/permissions/checker.d.ts +2 -0
- package/lib/cjs/types/permissions/index.d.ts +2 -0
- package/lib/cjs/types/permissions/keys.d.ts +6 -0
- package/lib/cjs/types/routes/AdminRouter.d.ts +10 -10
- package/lib/cjs/types/routes/DashBoardRouter.d.ts +11 -8
- package/lib/cjs/types/routes/paths.d.ts +5 -5
- package/lib/cjs/types/sections/dashboard/CreateNewDialog.d.ts +0 -1
- package/lib/cjs/types/theme/breakpoints.d.ts +10 -0
- package/lib/cjs/types/theme/index.d.ts +6 -14
- package/lib/cjs/types/theme/overrides/Accordion.d.ts +34 -0
- package/lib/cjs/types/theme/overrides/Alert.d.ts +97 -0
- package/lib/cjs/types/theme/overrides/Autocomplete.d.ts +18 -0
- package/lib/cjs/types/theme/overrides/Avatar.d.ts +24 -0
- package/lib/cjs/types/theme/overrides/Backdrop.d.ts +13 -0
- package/lib/cjs/types/theme/overrides/Badge.d.ts +12 -0
- package/lib/cjs/types/theme/overrides/Breadcrumbs.d.ts +11 -0
- package/lib/cjs/types/theme/overrides/Button.d.ts +51 -0
- package/lib/cjs/types/theme/overrides/ButtonGroup.d.ts +39 -0
- package/lib/cjs/types/theme/overrides/Card.d.ts +36 -0
- package/lib/cjs/types/theme/overrides/Checkbox.d.ts +32 -0
- package/lib/cjs/types/theme/overrides/Chip.d.ts +40 -0
- package/lib/cjs/types/theme/overrides/ControlLabel.d.ts +833 -0
- package/lib/cjs/types/theme/overrides/CssBaseline.d.ts +42 -0
- package/lib/cjs/types/theme/overrides/CustomIcons.d.ts +14 -0
- package/lib/cjs/types/theme/overrides/DataGrid.d.ts +1710 -0
- package/lib/cjs/types/theme/overrides/Dialog.d.ts +55 -0
- package/lib/cjs/types/theme/overrides/Drawer.d.ts +17 -0
- package/lib/cjs/types/theme/overrides/Fab.d.ts +34 -0
- package/lib/cjs/types/theme/overrides/Input.d.ts +64 -0
- package/lib/cjs/types/theme/overrides/Link.d.ts +8 -0
- package/lib/cjs/types/theme/overrides/List.d.ts +32 -0
- package/lib/cjs/types/theme/overrides/LoadingButton.d.ts +17 -0
- package/lib/cjs/types/theme/overrides/Menu.d.ts +15 -0
- package/lib/cjs/types/theme/overrides/Pagination.d.ts +30 -0
- package/lib/cjs/types/theme/overrides/Paper.d.ts +21 -0
- package/lib/cjs/types/theme/overrides/Popover.d.ts +11 -0
- package/lib/cjs/types/theme/overrides/Progress.d.ts +20 -0
- package/lib/cjs/types/theme/overrides/Radio.d.ts +16 -0
- package/lib/cjs/types/theme/overrides/Rating.d.ts +31 -0
- package/lib/cjs/types/theme/overrides/Select.d.ts +9 -0
- package/lib/cjs/types/theme/overrides/Skeleton.d.ts +13 -0
- package/lib/cjs/types/theme/overrides/Slider.d.ts +23 -0
- package/lib/cjs/types/theme/overrides/Stepper.d.ts +10 -0
- package/lib/cjs/types/theme/overrides/SvgIcon.d.ts +17 -0
- package/lib/cjs/types/theme/overrides/Switch.d.ts +28 -0
- package/lib/cjs/types/theme/overrides/Table.d.ts +70 -0
- package/lib/cjs/types/theme/overrides/Tabs.d.ts +53 -0
- package/lib/cjs/types/theme/overrides/Timeline.d.ts +17 -0
- package/lib/cjs/types/theme/overrides/ToggleButton.d.ts +43 -0
- package/lib/cjs/types/theme/overrides/Tooltip.d.ts +13 -0
- package/lib/cjs/types/theme/overrides/TreeView.d.ts +829 -0
- package/lib/cjs/types/theme/overrides/Typography.d.ts +13 -0
- package/lib/cjs/types/theme/overrides/index.d.ts +1 -1
- package/lib/cjs/types/theme/palette.d.ts +255 -79
- package/lib/cjs/types/theme/shadows.d.ts +67 -2
- package/lib/cjs/types/theme/typography.d.ts +8 -30
- package/lib/cjs/types/utils/AwsConfig.d.ts +1 -1
- package/lib/cjs/types/utils/StorageManager.d.ts +4 -0
- package/lib/cjs/types/utils/UUIDGenerator.d.ts +2 -0
- package/lib/cjs/types/utils/cssStyles.d.ts +78 -0
- package/lib/cjs/types/utils/getColorPresets.d.ts +73 -0
- package/lib/cjs/types/utils/getFontValue.d.ts +24 -0
- package/lib/cjs/types/utils/index.d.ts +1 -0
- package/lib/esm/index.css +18 -38
- package/lib/esm/index.js +13 -13
- package/lib/esm/types/components/Image.d.ts +12 -0
- package/lib/esm/types/components/Logo.d.ts +6 -0
- package/lib/esm/types/components/MotionLazyContainer.d.ts +6 -0
- package/lib/esm/types/components/SearchNotFound.d.ts +6 -0
- package/lib/esm/types/components/hook-form/RHFDatePicker.d.ts +2 -1
- package/lib/esm/types/components/hook-form/RHFTagsField.d.ts +21 -0
- package/lib/esm/types/components/hook-form/RHFUpload.d.ts +15 -2
- package/lib/esm/types/components/hook-form/index.d.ts +2 -0
- package/lib/esm/types/components/index.d.ts +2 -0
- package/lib/esm/types/components/nav-section/horizontal/NavItem.d.ts +4 -0
- package/lib/esm/types/components/nav-section/horizontal/NavList.d.ts +6 -0
- package/lib/esm/types/components/nav-section/horizontal/index.d.ts +5 -1
- package/lib/esm/types/components/nav-section/horizontal/style.d.ts +47 -0
- package/lib/esm/types/components/nav-section/index.d.ts +4 -0
- package/lib/esm/types/components/nav-section/type.d.ts +35 -0
- package/lib/esm/types/components/nav-section/vertical/NavItem.d.ts +13 -0
- package/lib/esm/types/components/nav-section/vertical/NavList.d.ts +7 -0
- package/lib/esm/types/components/nav-section/vertical/index.d.ts +16 -1
- package/lib/esm/types/components/nav-section/vertical/style.d.ts +36 -0
- package/lib/esm/types/components/settings/SettingsContext.d.ts +8 -0
- package/lib/esm/types/components/settings/ThemeColorPresets.d.ts +6 -0
- package/lib/esm/types/components/settings/ThemeContrast.d.ts +6 -0
- package/lib/esm/types/components/settings/ThemeLocalization.d.ts +6 -0
- package/lib/esm/types/components/settings/ThemeRtlLayout.d.ts +6 -0
- package/lib/esm/types/components/settings/config-setting.d.ts +2 -0
- package/lib/esm/types/components/settings/drawer/BoxMask.d.ts +5 -0
- package/lib/esm/types/components/settings/drawer/SettingColorPresets.d.ts +1 -0
- package/lib/esm/types/components/settings/drawer/SettingContrast.d.ts +1 -0
- package/lib/esm/types/components/settings/drawer/SettingDirection.d.ts +1 -0
- package/lib/esm/types/components/settings/drawer/SettingFullscreen.d.ts +1 -0
- package/lib/esm/types/components/settings/drawer/SettingLayout.d.ts +1 -0
- package/lib/esm/types/components/settings/drawer/SettingMode.d.ts +1 -0
- package/lib/esm/types/components/settings/drawer/SettingStretch.d.ts +1 -0
- package/lib/esm/types/components/settings/drawer/ToggleButton.d.ts +7 -0
- package/lib/esm/types/components/settings/drawer/index.d.ts +1 -0
- package/lib/esm/types/components/settings/index.d.ts +6 -0
- package/lib/esm/types/components/settings/presets.d.ts +1941 -0
- package/lib/esm/types/components/settings/type.d.ts +56 -0
- package/lib/esm/types/components/upload/UploadImage.d.ts +2 -0
- package/lib/esm/types/components/upload/UploadSingleFile.d.ts +1 -1
- package/lib/esm/types/components/upload/index.d.ts +1 -0
- package/lib/esm/types/components/upload/type.d.ts +2 -0
- package/lib/esm/types/context/AppConfigurationsContext.d.ts +8 -2
- package/lib/esm/types/context/CollapseDrawerContext.d.ts +15 -0
- package/lib/esm/types/context/SettingsContext.d.ts +8 -0
- package/lib/esm/types/context/auth/AuthContext.d.ts +14 -0
- package/lib/esm/types/context/auth/AuthReducer.d.ts +18 -0
- package/lib/esm/types/context/auth/index.d.ts +2 -0
- package/lib/esm/types/context/auth/types.d.ts +9 -0
- package/lib/esm/types/context/index.d.ts +3 -0
- package/lib/esm/types/hooks/RequetState.d.ts +8 -1
- package/lib/esm/types/hooks/index.d.ts +2 -0
- package/lib/esm/types/hooks/useApi.d.ts +2 -1
- package/lib/esm/types/hooks/useAppConfigurations.d.ts +5 -0
- package/lib/esm/types/hooks/useAuth.d.ts +6 -0
- package/lib/esm/types/hooks/useCollapseDrawer.d.ts +2 -0
- package/lib/esm/types/hooks/useLocalStorage.d.ts +1 -0
- package/lib/esm/types/hooks/useLocales.d.ts +16 -0
- package/lib/esm/types/hooks/useSettings.d.ts +2 -0
- package/lib/esm/types/index.d.ts +5 -1
- package/lib/esm/types/layout/dashboard/config-navigation.d.ts +4 -4
- package/lib/esm/types/layouts/LogoOnlyLayout.d.ts +1 -0
- package/lib/esm/types/layouts/config.d.ts +34 -0
- package/lib/esm/types/layouts/dashboard/header/AccountPopover.d.ts +1 -0
- package/lib/esm/types/layouts/dashboard/header/LanguagePopover.d.ts +1 -0
- package/lib/esm/types/layouts/dashboard/header/NotificationsPopover.d.ts +13 -0
- package/lib/esm/types/layouts/dashboard/header/Searchbar.d.ts +4 -0
- package/lib/esm/types/layouts/dashboard/header/index.d.ts +7 -0
- package/lib/esm/types/layouts/dashboard/index.d.ts +1 -0
- package/lib/esm/types/layouts/dashboard/navbar/CollapseButton.d.ts +6 -0
- package/lib/esm/types/layouts/dashboard/navbar/NavbarAccount.d.ts +5 -0
- package/lib/esm/types/layouts/dashboard/navbar/NavbarVertical.d.ts +8 -0
- package/lib/esm/types/layouts/dashboard/navbar/UserNavBar.d.ts +4 -0
- package/lib/esm/types/pages/Page404.d.ts +1 -0
- package/lib/esm/types/pages/auth/Login.d.ts +6 -0
- package/lib/esm/types/pages/auth/LoginForm.d.ts +1 -0
- package/lib/esm/types/pages/index.d.ts +2 -0
- package/lib/esm/types/permissions/checker.d.ts +2 -0
- package/lib/esm/types/permissions/index.d.ts +2 -0
- package/lib/esm/types/permissions/keys.d.ts +6 -0
- package/lib/esm/types/routes/AdminRouter.d.ts +10 -10
- package/lib/esm/types/routes/DashBoardRouter.d.ts +11 -8
- package/lib/esm/types/routes/paths.d.ts +5 -5
- package/lib/esm/types/sections/dashboard/CreateNewDialog.d.ts +0 -1
- package/lib/esm/types/theme/breakpoints.d.ts +10 -0
- package/lib/esm/types/theme/index.d.ts +6 -14
- package/lib/esm/types/theme/overrides/Accordion.d.ts +34 -0
- package/lib/esm/types/theme/overrides/Alert.d.ts +97 -0
- package/lib/esm/types/theme/overrides/Autocomplete.d.ts +18 -0
- package/lib/esm/types/theme/overrides/Avatar.d.ts +24 -0
- package/lib/esm/types/theme/overrides/Backdrop.d.ts +13 -0
- package/lib/esm/types/theme/overrides/Badge.d.ts +12 -0
- package/lib/esm/types/theme/overrides/Breadcrumbs.d.ts +11 -0
- package/lib/esm/types/theme/overrides/Button.d.ts +51 -0
- package/lib/esm/types/theme/overrides/ButtonGroup.d.ts +39 -0
- package/lib/esm/types/theme/overrides/Card.d.ts +36 -0
- package/lib/esm/types/theme/overrides/Checkbox.d.ts +32 -0
- package/lib/esm/types/theme/overrides/Chip.d.ts +40 -0
- package/lib/esm/types/theme/overrides/ControlLabel.d.ts +833 -0
- package/lib/esm/types/theme/overrides/CssBaseline.d.ts +42 -0
- package/lib/esm/types/theme/overrides/CustomIcons.d.ts +14 -0
- package/lib/esm/types/theme/overrides/DataGrid.d.ts +1710 -0
- package/lib/esm/types/theme/overrides/Dialog.d.ts +55 -0
- package/lib/esm/types/theme/overrides/Drawer.d.ts +17 -0
- package/lib/esm/types/theme/overrides/Fab.d.ts +34 -0
- package/lib/esm/types/theme/overrides/Input.d.ts +64 -0
- package/lib/esm/types/theme/overrides/Link.d.ts +8 -0
- package/lib/esm/types/theme/overrides/List.d.ts +32 -0
- package/lib/esm/types/theme/overrides/LoadingButton.d.ts +17 -0
- package/lib/esm/types/theme/overrides/Menu.d.ts +15 -0
- package/lib/esm/types/theme/overrides/Pagination.d.ts +30 -0
- package/lib/esm/types/theme/overrides/Paper.d.ts +21 -0
- package/lib/esm/types/theme/overrides/Popover.d.ts +11 -0
- package/lib/esm/types/theme/overrides/Progress.d.ts +20 -0
- package/lib/esm/types/theme/overrides/Radio.d.ts +16 -0
- package/lib/esm/types/theme/overrides/Rating.d.ts +31 -0
- package/lib/esm/types/theme/overrides/Select.d.ts +9 -0
- package/lib/esm/types/theme/overrides/Skeleton.d.ts +13 -0
- package/lib/esm/types/theme/overrides/Slider.d.ts +23 -0
- package/lib/esm/types/theme/overrides/Stepper.d.ts +10 -0
- package/lib/esm/types/theme/overrides/SvgIcon.d.ts +17 -0
- package/lib/esm/types/theme/overrides/Switch.d.ts +28 -0
- package/lib/esm/types/theme/overrides/Table.d.ts +70 -0
- package/lib/esm/types/theme/overrides/Tabs.d.ts +53 -0
- package/lib/esm/types/theme/overrides/Timeline.d.ts +17 -0
- package/lib/esm/types/theme/overrides/ToggleButton.d.ts +43 -0
- package/lib/esm/types/theme/overrides/Tooltip.d.ts +13 -0
- package/lib/esm/types/theme/overrides/TreeView.d.ts +829 -0
- package/lib/esm/types/theme/overrides/Typography.d.ts +13 -0
- package/lib/esm/types/theme/overrides/index.d.ts +1 -1
- package/lib/esm/types/theme/palette.d.ts +255 -79
- package/lib/esm/types/theme/shadows.d.ts +67 -2
- package/lib/esm/types/theme/typography.d.ts +8 -30
- package/lib/esm/types/utils/AwsConfig.d.ts +1 -1
- package/lib/esm/types/utils/StorageManager.d.ts +4 -0
- package/lib/esm/types/utils/UUIDGenerator.d.ts +2 -0
- package/lib/esm/types/utils/cssStyles.d.ts +78 -0
- package/lib/esm/types/utils/getColorPresets.d.ts +73 -0
- package/lib/esm/types/utils/getFontValue.d.ts +24 -0
- package/lib/esm/types/utils/index.d.ts +1 -0
- package/lib/index.d.ts +594 -42
- package/package.json +91 -89
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
import { Theme } from '@mui/material/styles';
|
|
2
|
+
export default function Alert(theme: Theme): {
|
|
3
|
+
MuiAlert: {
|
|
4
|
+
defaultProps: {
|
|
5
|
+
iconMapping: {
|
|
6
|
+
info: import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
success: import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
warning: import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
error: import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
styleOverrides: {
|
|
13
|
+
message: {
|
|
14
|
+
'& .MuiAlertTitle-root': {
|
|
15
|
+
marginBottom: string;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
action: {
|
|
19
|
+
'& button:not(:first-of-type)': {
|
|
20
|
+
marginLeft: string;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
standardInfo: {
|
|
24
|
+
color: string;
|
|
25
|
+
backgroundColor: string;
|
|
26
|
+
'& .MuiAlert-icon': {
|
|
27
|
+
color: string;
|
|
28
|
+
};
|
|
29
|
+
};
|
|
30
|
+
standardSuccess: {
|
|
31
|
+
color: string;
|
|
32
|
+
backgroundColor: string;
|
|
33
|
+
'& .MuiAlert-icon': {
|
|
34
|
+
color: string;
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
standardWarning: {
|
|
38
|
+
color: string;
|
|
39
|
+
backgroundColor: string;
|
|
40
|
+
'& .MuiAlert-icon': {
|
|
41
|
+
color: string;
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
standardError: {
|
|
45
|
+
color: string;
|
|
46
|
+
backgroundColor: string;
|
|
47
|
+
'& .MuiAlert-icon': {
|
|
48
|
+
color: string;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
filledInfo: {
|
|
52
|
+
color: string;
|
|
53
|
+
};
|
|
54
|
+
filledSuccess: {
|
|
55
|
+
color: string;
|
|
56
|
+
};
|
|
57
|
+
filledWarning: {
|
|
58
|
+
color: string;
|
|
59
|
+
};
|
|
60
|
+
filledError: {
|
|
61
|
+
color: string;
|
|
62
|
+
};
|
|
63
|
+
outlinedInfo: {
|
|
64
|
+
color: string;
|
|
65
|
+
border: string;
|
|
66
|
+
backgroundColor: string;
|
|
67
|
+
'& .MuiAlert-icon': {
|
|
68
|
+
color: string;
|
|
69
|
+
};
|
|
70
|
+
};
|
|
71
|
+
outlinedSuccess: {
|
|
72
|
+
color: string;
|
|
73
|
+
border: string;
|
|
74
|
+
backgroundColor: string;
|
|
75
|
+
'& .MuiAlert-icon': {
|
|
76
|
+
color: string;
|
|
77
|
+
};
|
|
78
|
+
};
|
|
79
|
+
outlinedWarning: {
|
|
80
|
+
color: string;
|
|
81
|
+
border: string;
|
|
82
|
+
backgroundColor: string;
|
|
83
|
+
'& .MuiAlert-icon': {
|
|
84
|
+
color: string;
|
|
85
|
+
};
|
|
86
|
+
};
|
|
87
|
+
outlinedError: {
|
|
88
|
+
color: string;
|
|
89
|
+
border: string;
|
|
90
|
+
backgroundColor: string;
|
|
91
|
+
'& .MuiAlert-icon': {
|
|
92
|
+
color: string;
|
|
93
|
+
};
|
|
94
|
+
};
|
|
95
|
+
};
|
|
96
|
+
};
|
|
97
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Theme } from '@mui/material/styles';
|
|
2
|
+
export default function Autocomplete(theme: Theme): {
|
|
3
|
+
MuiAutocomplete: {
|
|
4
|
+
styleOverrides: {
|
|
5
|
+
paper: {
|
|
6
|
+
boxShadow: string;
|
|
7
|
+
};
|
|
8
|
+
listbox: {
|
|
9
|
+
padding: string;
|
|
10
|
+
'& .MuiAutocomplete-option': {
|
|
11
|
+
padding: string;
|
|
12
|
+
margin: string;
|
|
13
|
+
borderRadius: number;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { Theme } from '@mui/material/styles';
|
|
2
|
+
export default function Avatar(theme: Theme): {
|
|
3
|
+
MuiAvatar: {
|
|
4
|
+
styleOverrides: {
|
|
5
|
+
colorDefault: {
|
|
6
|
+
color: string;
|
|
7
|
+
backgroundColor: string;
|
|
8
|
+
};
|
|
9
|
+
};
|
|
10
|
+
};
|
|
11
|
+
MuiAvatarGroup: {
|
|
12
|
+
styleOverrides: {
|
|
13
|
+
avatar: {
|
|
14
|
+
fontSize: number;
|
|
15
|
+
fontWeight: import("csstype").Property.FontWeight | undefined;
|
|
16
|
+
'&:first-of-type': {
|
|
17
|
+
fontSize: number;
|
|
18
|
+
color: string;
|
|
19
|
+
backgroundColor: string;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
};
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Theme } from '@mui/material/styles';
|
|
2
|
+
export default function Button(theme: Theme): {
|
|
3
|
+
MuiButton: {
|
|
4
|
+
styleOverrides: {
|
|
5
|
+
root: {
|
|
6
|
+
'&:hover': {
|
|
7
|
+
boxShadow: string;
|
|
8
|
+
};
|
|
9
|
+
};
|
|
10
|
+
sizeLarge: {
|
|
11
|
+
height: number;
|
|
12
|
+
};
|
|
13
|
+
containedInherit: {
|
|
14
|
+
color: string;
|
|
15
|
+
boxShadow: string;
|
|
16
|
+
'&:hover': {
|
|
17
|
+
backgroundColor: string;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
containedPrimary: {
|
|
21
|
+
boxShadow: string;
|
|
22
|
+
};
|
|
23
|
+
containedSecondary: {
|
|
24
|
+
boxShadow: string;
|
|
25
|
+
};
|
|
26
|
+
containedInfo: {
|
|
27
|
+
boxShadow: string;
|
|
28
|
+
};
|
|
29
|
+
containedSuccess: {
|
|
30
|
+
boxShadow: string;
|
|
31
|
+
};
|
|
32
|
+
containedWarning: {
|
|
33
|
+
boxShadow: string;
|
|
34
|
+
};
|
|
35
|
+
containedError: {
|
|
36
|
+
boxShadow: string;
|
|
37
|
+
};
|
|
38
|
+
outlinedInherit: {
|
|
39
|
+
border: string;
|
|
40
|
+
'&:hover': {
|
|
41
|
+
backgroundColor: string;
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
textInherit: {
|
|
45
|
+
'&:hover': {
|
|
46
|
+
backgroundColor: string;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
};
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { Theme } from '@mui/material/styles';
|
|
2
|
+
export default function ButtonGroup(theme: Theme): {
|
|
3
|
+
MuiButtonGroup: {
|
|
4
|
+
variants: ({
|
|
5
|
+
props: {
|
|
6
|
+
variant: string;
|
|
7
|
+
color: string;
|
|
8
|
+
disabled?: undefined;
|
|
9
|
+
};
|
|
10
|
+
style: {
|
|
11
|
+
boxShadow: string;
|
|
12
|
+
'& .MuiButtonGroup-grouped.Mui-disabled'?: undefined;
|
|
13
|
+
};
|
|
14
|
+
} | {
|
|
15
|
+
props: {
|
|
16
|
+
disabled: boolean;
|
|
17
|
+
variant?: undefined;
|
|
18
|
+
color?: undefined;
|
|
19
|
+
};
|
|
20
|
+
style: {
|
|
21
|
+
boxShadow: string;
|
|
22
|
+
'& .MuiButtonGroup-grouped.Mui-disabled': {
|
|
23
|
+
color: string;
|
|
24
|
+
borderColor: string;
|
|
25
|
+
'&.MuiButton-contained': {
|
|
26
|
+
backgroundColor: string;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
};
|
|
30
|
+
})[];
|
|
31
|
+
styleOverrides: {
|
|
32
|
+
root: {
|
|
33
|
+
'&:hover': {
|
|
34
|
+
boxShadow: string;
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
};
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { Theme } from '@mui/material/styles';
|
|
2
|
+
export default function Card(theme: Theme): {
|
|
3
|
+
MuiCard: {
|
|
4
|
+
styleOverrides: {
|
|
5
|
+
root: {
|
|
6
|
+
position: string;
|
|
7
|
+
boxShadow: string;
|
|
8
|
+
borderRadius: number;
|
|
9
|
+
zIndex: number;
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
};
|
|
13
|
+
MuiCardHeader: {
|
|
14
|
+
defaultProps: {
|
|
15
|
+
titleTypographyProps: {
|
|
16
|
+
variant: string;
|
|
17
|
+
};
|
|
18
|
+
subheaderTypographyProps: {
|
|
19
|
+
variant: string;
|
|
20
|
+
marginTop: string;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
styleOverrides: {
|
|
24
|
+
root: {
|
|
25
|
+
padding: string;
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
MuiCardContent: {
|
|
30
|
+
styleOverrides: {
|
|
31
|
+
root: {
|
|
32
|
+
padding: string;
|
|
33
|
+
};
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
};
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { Theme } from '@mui/material/styles';
|
|
2
|
+
export default function Checkbox(theme: Theme): {
|
|
3
|
+
MuiCheckbox: {
|
|
4
|
+
defaultProps: {
|
|
5
|
+
icon: import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
checkedIcon: import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
indeterminateIcon: import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
};
|
|
9
|
+
styleOverrides: {
|
|
10
|
+
root: {
|
|
11
|
+
padding: string;
|
|
12
|
+
'&.Mui-checked.Mui-disabled, &.Mui-disabled': {
|
|
13
|
+
color: string;
|
|
14
|
+
};
|
|
15
|
+
'& .MuiSvgIcon-fontSizeMedium': {
|
|
16
|
+
width: number;
|
|
17
|
+
height: number;
|
|
18
|
+
};
|
|
19
|
+
'& .MuiSvgIcon-fontSizeSmall': {
|
|
20
|
+
width: number;
|
|
21
|
+
height: number;
|
|
22
|
+
};
|
|
23
|
+
svg: {
|
|
24
|
+
fontSize: number;
|
|
25
|
+
'&[font-size=small]': {
|
|
26
|
+
fontSize: number;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
};
|
|
32
|
+
};
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { Theme } from '@mui/material/styles';
|
|
2
|
+
export default function Chip(theme: Theme): {
|
|
3
|
+
MuiChip: {
|
|
4
|
+
defaultProps: {
|
|
5
|
+
deleteIcon: import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
};
|
|
7
|
+
styleOverrides: {
|
|
8
|
+
colorDefault: {
|
|
9
|
+
'& .MuiChip-avatarMedium, .MuiChip-avatarSmall': {
|
|
10
|
+
color: string;
|
|
11
|
+
};
|
|
12
|
+
};
|
|
13
|
+
outlined: {
|
|
14
|
+
borderColor: string;
|
|
15
|
+
'&.MuiChip-colorPrimary': {
|
|
16
|
+
borderColor: string;
|
|
17
|
+
};
|
|
18
|
+
'&.MuiChip-colorSecondary': {
|
|
19
|
+
borderColor: string;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
avatarColorInfo: {
|
|
23
|
+
color: string;
|
|
24
|
+
backgroundColor: string;
|
|
25
|
+
};
|
|
26
|
+
avatarColorSuccess: {
|
|
27
|
+
color: string;
|
|
28
|
+
backgroundColor: string;
|
|
29
|
+
};
|
|
30
|
+
avatarColorWarning: {
|
|
31
|
+
color: string;
|
|
32
|
+
backgroundColor: string;
|
|
33
|
+
};
|
|
34
|
+
avatarColorError: {
|
|
35
|
+
color: string;
|
|
36
|
+
backgroundColor: string;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
};
|
|
40
|
+
};
|