identity-admin-ui 1.12.0 → 1.12.2
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 +11 -5
- 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/helpers/StringUtils.d.ts +1 -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 +8 -3
- 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 +11 -5
- 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/helpers/StringUtils.d.ts +1 -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 +8 -3
- 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 +600 -48
- package/package.json +92 -89
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { Theme } from '@mui/material/styles';
|
|
2
|
+
export default function Dialog(theme: Theme): {
|
|
3
|
+
MuiDialog: {
|
|
4
|
+
styleOverrides: {
|
|
5
|
+
paper: {
|
|
6
|
+
boxShadow: string;
|
|
7
|
+
'&.MuiPaper-rounded': {
|
|
8
|
+
borderRadius: number;
|
|
9
|
+
};
|
|
10
|
+
'&.MuiDialog-paperFullScreen': {
|
|
11
|
+
borderRadius: number;
|
|
12
|
+
};
|
|
13
|
+
'&.MuiDialog-paper .MuiDialogActions-root': {
|
|
14
|
+
padding: string;
|
|
15
|
+
};
|
|
16
|
+
'@media (max-width: 600px)': {
|
|
17
|
+
margin: string;
|
|
18
|
+
};
|
|
19
|
+
'@media (max-width: 663.95px)': {
|
|
20
|
+
'&.MuiDialog-paperWidthSm.MuiDialog-paperScrollBody': {
|
|
21
|
+
maxWidth: string;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
paperFullWidth: {
|
|
26
|
+
width: string;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
};
|
|
30
|
+
MuiDialogTitle: {
|
|
31
|
+
styleOverrides: {
|
|
32
|
+
root: {
|
|
33
|
+
padding: string;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
MuiDialogContent: {
|
|
38
|
+
styleOverrides: {
|
|
39
|
+
root: {
|
|
40
|
+
borderTop: number;
|
|
41
|
+
borderBottom: number;
|
|
42
|
+
padding: string;
|
|
43
|
+
};
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
MuiDialogActions: {
|
|
47
|
+
styleOverrides: {
|
|
48
|
+
root: {
|
|
49
|
+
'& > :not(:first-of-type)': {
|
|
50
|
+
marginLeft: string;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
};
|
|
54
|
+
};
|
|
55
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Theme } from '@mui/material';
|
|
2
|
+
export default function Drawer(theme: Theme): {
|
|
3
|
+
MuiDrawer: {
|
|
4
|
+
styleOverrides: {
|
|
5
|
+
modal: {
|
|
6
|
+
'&[role="presentation"]': {
|
|
7
|
+
'& .MuiDrawer-paperAnchorLeft': {
|
|
8
|
+
boxShadow: string;
|
|
9
|
+
};
|
|
10
|
+
'& .MuiDrawer-paperAnchorRight': {
|
|
11
|
+
boxShadow: string;
|
|
12
|
+
};
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
};
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { Theme } from '@mui/material/styles';
|
|
2
|
+
export default function Fab(theme: Theme): {
|
|
3
|
+
MuiFab: {
|
|
4
|
+
defaultProps: {
|
|
5
|
+
color: string;
|
|
6
|
+
};
|
|
7
|
+
styleOverrides: {
|
|
8
|
+
root: {
|
|
9
|
+
boxShadow: string;
|
|
10
|
+
'&:hover': {
|
|
11
|
+
boxShadow: string;
|
|
12
|
+
backgroundColor: string;
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
primary: {
|
|
16
|
+
boxShadow: string;
|
|
17
|
+
'&:hover': {
|
|
18
|
+
backgroundColor: string;
|
|
19
|
+
};
|
|
20
|
+
};
|
|
21
|
+
secondary: {
|
|
22
|
+
boxShadow: string;
|
|
23
|
+
'&:hover': {
|
|
24
|
+
backgroundColor: string;
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
extended: {
|
|
28
|
+
'& svg': {
|
|
29
|
+
marginRight: string;
|
|
30
|
+
};
|
|
31
|
+
};
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
};
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import { Theme } from '@mui/material/styles';
|
|
2
|
+
export default function Input(theme: Theme): {
|
|
3
|
+
MuiInputBase: {
|
|
4
|
+
styleOverrides: {
|
|
5
|
+
root: {
|
|
6
|
+
'&.Mui-disabled': {
|
|
7
|
+
'& svg': {
|
|
8
|
+
color: string;
|
|
9
|
+
};
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
input: {
|
|
13
|
+
'&::placeholder': {
|
|
14
|
+
opacity: number;
|
|
15
|
+
color: string;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
MuiInput: {
|
|
21
|
+
styleOverrides: {
|
|
22
|
+
underline: {
|
|
23
|
+
'&:before': {
|
|
24
|
+
borderBottomColor: string;
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
MuiFilledInput: {
|
|
30
|
+
styleOverrides: {
|
|
31
|
+
root: {
|
|
32
|
+
backgroundColor: string;
|
|
33
|
+
'&:hover': {
|
|
34
|
+
backgroundColor: string;
|
|
35
|
+
};
|
|
36
|
+
'&.Mui-focused': {
|
|
37
|
+
backgroundColor: string;
|
|
38
|
+
};
|
|
39
|
+
'&.Mui-disabled': {
|
|
40
|
+
backgroundColor: string;
|
|
41
|
+
};
|
|
42
|
+
};
|
|
43
|
+
underline: {
|
|
44
|
+
'&:before': {
|
|
45
|
+
borderBottomColor: string;
|
|
46
|
+
};
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
MuiOutlinedInput: {
|
|
51
|
+
styleOverrides: {
|
|
52
|
+
root: {
|
|
53
|
+
'& .MuiOutlinedInput-notchedOutline': {
|
|
54
|
+
borderColor: string;
|
|
55
|
+
};
|
|
56
|
+
'&.Mui-disabled': {
|
|
57
|
+
'& .MuiOutlinedInput-notchedOutline': {
|
|
58
|
+
borderColor: string;
|
|
59
|
+
};
|
|
60
|
+
};
|
|
61
|
+
};
|
|
62
|
+
};
|
|
63
|
+
};
|
|
64
|
+
};
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { Theme } from '@mui/material/styles';
|
|
2
|
+
export default function List(theme: Theme): {
|
|
3
|
+
MuiListItemIcon: {
|
|
4
|
+
styleOverrides: {
|
|
5
|
+
root: {
|
|
6
|
+
color: string;
|
|
7
|
+
minWidth: string;
|
|
8
|
+
marginRight: string;
|
|
9
|
+
};
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
MuiListItemAvatar: {
|
|
13
|
+
styleOverrides: {
|
|
14
|
+
root: {
|
|
15
|
+
minWidth: string;
|
|
16
|
+
marginRight: string;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
MuiListItemText: {
|
|
21
|
+
styleOverrides: {
|
|
22
|
+
root: {
|
|
23
|
+
marginTop: number;
|
|
24
|
+
marginBottom: number;
|
|
25
|
+
};
|
|
26
|
+
multiline: {
|
|
27
|
+
marginTop: number;
|
|
28
|
+
marginBottom: number;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
};
|
|
32
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Theme } from '@mui/material/styles';
|
|
2
|
+
export default function LoadingButton(theme: Theme): {
|
|
3
|
+
MuiLoadingButton: {
|
|
4
|
+
styleOverrides: {
|
|
5
|
+
root: {
|
|
6
|
+
'&.MuiButton-text': {
|
|
7
|
+
'& .MuiLoadingButton-startIconPendingStart': {
|
|
8
|
+
marginLeft: number;
|
|
9
|
+
};
|
|
10
|
+
'& .MuiLoadingButton-endIconPendingEnd': {
|
|
11
|
+
marginRight: number;
|
|
12
|
+
};
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Theme } from '@mui/material/styles';
|
|
2
|
+
export default function Menu(theme: Theme): {
|
|
3
|
+
MuiMenuItem: {
|
|
4
|
+
styleOverrides: {
|
|
5
|
+
root: {
|
|
6
|
+
'&.Mui-selected': {
|
|
7
|
+
backgroundColor: string;
|
|
8
|
+
'&:hover': {
|
|
9
|
+
backgroundColor: string;
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
};
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
};
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { Theme } from '@mui/material/styles';
|
|
2
|
+
export default function Pagination(theme: Theme): {
|
|
3
|
+
MuiPaginationItem: {
|
|
4
|
+
styleOverrides: {
|
|
5
|
+
root: {
|
|
6
|
+
'&.Mui-selected': {
|
|
7
|
+
fontWeight: import("csstype").Property.FontWeight | undefined;
|
|
8
|
+
};
|
|
9
|
+
};
|
|
10
|
+
textPrimary: {
|
|
11
|
+
'&.Mui-selected': {
|
|
12
|
+
color: string;
|
|
13
|
+
backgroundColor: string;
|
|
14
|
+
'&:hover, &.Mui-focusVisible': {
|
|
15
|
+
backgroundColor: string;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
outlined: {
|
|
20
|
+
border: string;
|
|
21
|
+
};
|
|
22
|
+
outlinedPrimary: {
|
|
23
|
+
'&.Mui-selected': {
|
|
24
|
+
backgroundColor: string;
|
|
25
|
+
border: string;
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
};
|
|
30
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { Theme } from '@mui/material/styles';
|
|
2
|
+
export default function Paper(theme: Theme): {
|
|
3
|
+
MuiPaper: {
|
|
4
|
+
defaultProps: {
|
|
5
|
+
elevation: number;
|
|
6
|
+
};
|
|
7
|
+
variants: {
|
|
8
|
+
props: {
|
|
9
|
+
variant: string;
|
|
10
|
+
};
|
|
11
|
+
style: {
|
|
12
|
+
borderColor: string;
|
|
13
|
+
};
|
|
14
|
+
}[];
|
|
15
|
+
styleOverrides: {
|
|
16
|
+
root: {
|
|
17
|
+
backgroundImage: string;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
};
|
|
21
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { Theme } from '@mui/material/styles';
|
|
2
|
+
export default function Progress(theme: Theme): {
|
|
3
|
+
MuiLinearProgress: {
|
|
4
|
+
styleOverrides: {
|
|
5
|
+
root: {
|
|
6
|
+
borderRadius: number;
|
|
7
|
+
overflow: string;
|
|
8
|
+
};
|
|
9
|
+
bar: {
|
|
10
|
+
borderRadius: number;
|
|
11
|
+
};
|
|
12
|
+
colorPrimary: {
|
|
13
|
+
backgroundColor: string;
|
|
14
|
+
};
|
|
15
|
+
buffer: {
|
|
16
|
+
backgroundColor: string;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Theme } from '@mui/material/styles';
|
|
2
|
+
export default function Radio(theme: Theme): {
|
|
3
|
+
MuiRadio: {
|
|
4
|
+
styleOverrides: {
|
|
5
|
+
root: {
|
|
6
|
+
padding: string;
|
|
7
|
+
svg: {
|
|
8
|
+
fontSize: number;
|
|
9
|
+
'&[font-size=small]': {
|
|
10
|
+
fontSize: number;
|
|
11
|
+
};
|
|
12
|
+
};
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
};
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { Theme } from '@mui/material/styles';
|
|
2
|
+
export default function Rating(theme: Theme): {
|
|
3
|
+
MuiRating: {
|
|
4
|
+
defaultProps: {
|
|
5
|
+
emptyIcon: import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
icon: import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
};
|
|
8
|
+
styleOverrides: {
|
|
9
|
+
root: {
|
|
10
|
+
'&.Mui-disabled': {
|
|
11
|
+
opacity: number;
|
|
12
|
+
};
|
|
13
|
+
};
|
|
14
|
+
iconEmpty: {
|
|
15
|
+
color: string;
|
|
16
|
+
};
|
|
17
|
+
sizeSmall: {
|
|
18
|
+
'& svg': {
|
|
19
|
+
width: number;
|
|
20
|
+
height: number;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
sizeLarge: {
|
|
24
|
+
'& svg': {
|
|
25
|
+
width: number;
|
|
26
|
+
height: number;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { Theme } from '@mui/material/styles';
|
|
2
|
+
export default function Slider(theme: Theme): {
|
|
3
|
+
MuiSlider: {
|
|
4
|
+
defaultProps: {
|
|
5
|
+
size: string;
|
|
6
|
+
};
|
|
7
|
+
styleOverrides: {
|
|
8
|
+
root: {
|
|
9
|
+
'&.Mui-disabled': {
|
|
10
|
+
color: string;
|
|
11
|
+
};
|
|
12
|
+
};
|
|
13
|
+
markLabel: {
|
|
14
|
+
fontSize: number;
|
|
15
|
+
color: string;
|
|
16
|
+
};
|
|
17
|
+
valueLabel: {
|
|
18
|
+
borderRadius: number;
|
|
19
|
+
backgroundColor: string;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Theme } from '@mui/material/styles';
|
|
2
|
+
export default function SvgIcon(theme: Theme): {
|
|
3
|
+
MuiSvgIcon: {
|
|
4
|
+
styleOverrides: {
|
|
5
|
+
fontSizeSmall: {
|
|
6
|
+
width: number;
|
|
7
|
+
height: number;
|
|
8
|
+
fontSize: string;
|
|
9
|
+
};
|
|
10
|
+
fontSizeLarge: {
|
|
11
|
+
width: number;
|
|
12
|
+
height: number;
|
|
13
|
+
fontSize: string;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
};
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { Theme } from '@mui/material/styles';
|
|
2
|
+
export default function Switch(theme: Theme): {
|
|
3
|
+
MuiSwitch: {
|
|
4
|
+
styleOverrides: {
|
|
5
|
+
thumb: {
|
|
6
|
+
boxShadow: string;
|
|
7
|
+
};
|
|
8
|
+
track: {
|
|
9
|
+
opacity: number;
|
|
10
|
+
backgroundColor: string;
|
|
11
|
+
};
|
|
12
|
+
switchBase: {
|
|
13
|
+
left: number;
|
|
14
|
+
right: string;
|
|
15
|
+
'&:not(:.Mui-checked)': {
|
|
16
|
+
color: string;
|
|
17
|
+
};
|
|
18
|
+
'&.Mui-checked.Mui-disabled, &.Mui-disabled': {
|
|
19
|
+
color: string;
|
|
20
|
+
};
|
|
21
|
+
'&.Mui-disabled+.MuiSwitch-track': {
|
|
22
|
+
opacity: number;
|
|
23
|
+
backgroundColor: string;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
};
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
import { Theme } from '@mui/material/styles';
|
|
2
|
+
export default function Table(theme: Theme): {
|
|
3
|
+
MuiTableRow: {
|
|
4
|
+
styleOverrides: {
|
|
5
|
+
root: {
|
|
6
|
+
'&.Mui-selected': {
|
|
7
|
+
backgroundColor: string;
|
|
8
|
+
'&:hover': {
|
|
9
|
+
backgroundColor: string;
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
};
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
MuiTableCell: {
|
|
16
|
+
styleOverrides: {
|
|
17
|
+
root: {
|
|
18
|
+
borderBottom: string;
|
|
19
|
+
};
|
|
20
|
+
head: {
|
|
21
|
+
color: string;
|
|
22
|
+
backgroundColor: string;
|
|
23
|
+
'&:first-of-type': {
|
|
24
|
+
paddingLeft: string;
|
|
25
|
+
borderTopLeftRadius: number;
|
|
26
|
+
borderBottomLeftRadius: number;
|
|
27
|
+
boxShadow: string;
|
|
28
|
+
};
|
|
29
|
+
'&:last-of-type': {
|
|
30
|
+
paddingRight: string;
|
|
31
|
+
borderTopRightRadius: number;
|
|
32
|
+
borderBottomRightRadius: number;
|
|
33
|
+
boxShadow: string;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
stickyHeader: {
|
|
37
|
+
backgroundColor: string;
|
|
38
|
+
backgroundImage: string;
|
|
39
|
+
};
|
|
40
|
+
body: {
|
|
41
|
+
'&:first-of-type': {
|
|
42
|
+
paddingLeft: string;
|
|
43
|
+
};
|
|
44
|
+
'&:last-of-type': {
|
|
45
|
+
paddingRight: string;
|
|
46
|
+
};
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
MuiTablePagination: {
|
|
51
|
+
styleOverrides: {
|
|
52
|
+
root: {
|
|
53
|
+
borderTop: string;
|
|
54
|
+
};
|
|
55
|
+
toolbar: {
|
|
56
|
+
height: number;
|
|
57
|
+
};
|
|
58
|
+
select: {
|
|
59
|
+
'&:focus': {
|
|
60
|
+
borderRadius: number;
|
|
61
|
+
};
|
|
62
|
+
};
|
|
63
|
+
selectIcon: {
|
|
64
|
+
width: number;
|
|
65
|
+
height: number;
|
|
66
|
+
marginTop: number;
|
|
67
|
+
};
|
|
68
|
+
};
|
|
69
|
+
};
|
|
70
|
+
};
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { Theme } from '@mui/material/styles';
|
|
2
|
+
export default function Tabs(theme: Theme): {
|
|
3
|
+
MuiTab: {
|
|
4
|
+
styleOverrides: {
|
|
5
|
+
root: {
|
|
6
|
+
padding: number;
|
|
7
|
+
fontWeight: import("csstype").Property.FontWeight | undefined;
|
|
8
|
+
borderTopLeftRadius: number;
|
|
9
|
+
borderTopRightRadius: number;
|
|
10
|
+
'&.Mui-selected': {
|
|
11
|
+
color: string;
|
|
12
|
+
};
|
|
13
|
+
'&:not(:last-of-type)': {
|
|
14
|
+
marginRight: string;
|
|
15
|
+
};
|
|
16
|
+
'@media (min-width: 600px)': {
|
|
17
|
+
minWidth: number;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
labelIcon: {
|
|
21
|
+
minHeight: number;
|
|
22
|
+
flexDirection: string;
|
|
23
|
+
'& > *:first-of-type': {
|
|
24
|
+
marginBottom: number;
|
|
25
|
+
marginRight: string;
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
wrapper: {
|
|
29
|
+
flexDirection: string;
|
|
30
|
+
whiteSpace: string;
|
|
31
|
+
};
|
|
32
|
+
textColorInherit: {
|
|
33
|
+
opacity: number;
|
|
34
|
+
color: string;
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
MuiTabPanel: {
|
|
39
|
+
styleOverrides: {
|
|
40
|
+
root: {
|
|
41
|
+
padding: number;
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
};
|
|
45
|
+
MuiTabScrollButton: {
|
|
46
|
+
styleOverrides: {
|
|
47
|
+
root: {
|
|
48
|
+
width: number;
|
|
49
|
+
borderRadius: string;
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Theme } from '@mui/material/styles';
|
|
2
|
+
export default function Timeline(theme: Theme): {
|
|
3
|
+
MuiTimelineDot: {
|
|
4
|
+
styleOverrides: {
|
|
5
|
+
root: {
|
|
6
|
+
boxShadow: string;
|
|
7
|
+
};
|
|
8
|
+
};
|
|
9
|
+
};
|
|
10
|
+
MuiTimelineConnector: {
|
|
11
|
+
styleOverrides: {
|
|
12
|
+
root: {
|
|
13
|
+
backgroundColor: string;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
};
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { Theme } from '@mui/material/styles';
|
|
2
|
+
import { ColorSchema } from '../palette';
|
|
3
|
+
export default function ToggleButton(theme: Theme): {
|
|
4
|
+
MuiToggleButton: {
|
|
5
|
+
variants: ({
|
|
6
|
+
props: {
|
|
7
|
+
color: ColorSchema;
|
|
8
|
+
};
|
|
9
|
+
style: {
|
|
10
|
+
'&:hover': {
|
|
11
|
+
borderColor: string;
|
|
12
|
+
backgroundColor: string;
|
|
13
|
+
};
|
|
14
|
+
'&.Mui-selected': {
|
|
15
|
+
borderColor: string;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
} | {
|
|
19
|
+
props: {
|
|
20
|
+
color: string;
|
|
21
|
+
};
|
|
22
|
+
style: {
|
|
23
|
+
'&.Mui-selected': {
|
|
24
|
+
backgroundColor: string;
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
})[];
|
|
28
|
+
};
|
|
29
|
+
MuiToggleButtonGroup: {
|
|
30
|
+
styleOverrides: {
|
|
31
|
+
root: {
|
|
32
|
+
borderRadius: number;
|
|
33
|
+
backgroundColor: string;
|
|
34
|
+
border: string;
|
|
35
|
+
'& .MuiToggleButton-root': {
|
|
36
|
+
margin: number;
|
|
37
|
+
borderColor: string;
|
|
38
|
+
borderRadius: string;
|
|
39
|
+
};
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
};
|
|
43
|
+
};
|