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.
Files changed (288) hide show
  1. package/lib/cjs/index.css +18 -38
  2. package/lib/cjs/index.js +13 -13
  3. package/lib/cjs/types/components/Image.d.ts +12 -0
  4. package/lib/cjs/types/components/Logo.d.ts +6 -0
  5. package/lib/cjs/types/components/MotionLazyContainer.d.ts +6 -0
  6. package/lib/cjs/types/components/SearchNotFound.d.ts +6 -0
  7. package/lib/cjs/types/components/hook-form/RHFDatePicker.d.ts +2 -1
  8. package/lib/cjs/types/components/hook-form/RHFTagsField.d.ts +21 -0
  9. package/lib/cjs/types/components/hook-form/RHFUpload.d.ts +15 -2
  10. package/lib/cjs/types/components/hook-form/index.d.ts +2 -0
  11. package/lib/cjs/types/components/index.d.ts +2 -0
  12. package/lib/cjs/types/components/nav-section/horizontal/NavItem.d.ts +4 -0
  13. package/lib/cjs/types/components/nav-section/horizontal/NavList.d.ts +6 -0
  14. package/lib/cjs/types/components/nav-section/horizontal/index.d.ts +5 -1
  15. package/lib/cjs/types/components/nav-section/horizontal/style.d.ts +47 -0
  16. package/lib/cjs/types/components/nav-section/index.d.ts +4 -0
  17. package/lib/cjs/types/components/nav-section/type.d.ts +35 -0
  18. package/lib/cjs/types/components/nav-section/vertical/NavItem.d.ts +13 -0
  19. package/lib/cjs/types/components/nav-section/vertical/NavList.d.ts +7 -0
  20. package/lib/cjs/types/components/nav-section/vertical/index.d.ts +16 -1
  21. package/lib/cjs/types/components/nav-section/vertical/style.d.ts +36 -0
  22. package/lib/cjs/types/components/settings/SettingsContext.d.ts +8 -0
  23. package/lib/cjs/types/components/settings/ThemeColorPresets.d.ts +6 -0
  24. package/lib/cjs/types/components/settings/ThemeContrast.d.ts +6 -0
  25. package/lib/cjs/types/components/settings/ThemeLocalization.d.ts +6 -0
  26. package/lib/cjs/types/components/settings/ThemeRtlLayout.d.ts +6 -0
  27. package/lib/cjs/types/components/settings/config-setting.d.ts +2 -0
  28. package/lib/cjs/types/components/settings/drawer/BoxMask.d.ts +5 -0
  29. package/lib/cjs/types/components/settings/drawer/SettingColorPresets.d.ts +1 -0
  30. package/lib/cjs/types/components/settings/drawer/SettingContrast.d.ts +1 -0
  31. package/lib/cjs/types/components/settings/drawer/SettingDirection.d.ts +1 -0
  32. package/lib/cjs/types/components/settings/drawer/SettingFullscreen.d.ts +1 -0
  33. package/lib/cjs/types/components/settings/drawer/SettingLayout.d.ts +1 -0
  34. package/lib/cjs/types/components/settings/drawer/SettingMode.d.ts +1 -0
  35. package/lib/cjs/types/components/settings/drawer/SettingStretch.d.ts +1 -0
  36. package/lib/cjs/types/components/settings/drawer/ToggleButton.d.ts +7 -0
  37. package/lib/cjs/types/components/settings/drawer/index.d.ts +1 -0
  38. package/lib/cjs/types/components/settings/index.d.ts +6 -0
  39. package/lib/cjs/types/components/settings/presets.d.ts +1941 -0
  40. package/lib/cjs/types/components/settings/type.d.ts +56 -0
  41. package/lib/cjs/types/components/upload/UploadImage.d.ts +2 -0
  42. package/lib/cjs/types/components/upload/UploadSingleFile.d.ts +1 -1
  43. package/lib/cjs/types/components/upload/index.d.ts +1 -0
  44. package/lib/cjs/types/components/upload/type.d.ts +2 -0
  45. package/lib/cjs/types/context/AppConfigurationsContext.d.ts +11 -5
  46. package/lib/cjs/types/context/CollapseDrawerContext.d.ts +15 -0
  47. package/lib/cjs/types/context/SettingsContext.d.ts +8 -0
  48. package/lib/cjs/types/context/auth/AuthContext.d.ts +14 -0
  49. package/lib/cjs/types/context/auth/AuthReducer.d.ts +18 -0
  50. package/lib/cjs/types/context/auth/index.d.ts +2 -0
  51. package/lib/cjs/types/context/auth/types.d.ts +9 -0
  52. package/lib/cjs/types/context/index.d.ts +3 -0
  53. package/lib/cjs/types/helpers/StringUtils.d.ts +1 -0
  54. package/lib/cjs/types/hooks/RequetState.d.ts +8 -1
  55. package/lib/cjs/types/hooks/index.d.ts +2 -0
  56. package/lib/cjs/types/hooks/useApi.d.ts +2 -1
  57. package/lib/cjs/types/hooks/useAppConfigurations.d.ts +8 -3
  58. package/lib/cjs/types/hooks/useAuth.d.ts +6 -0
  59. package/lib/cjs/types/hooks/useCollapseDrawer.d.ts +2 -0
  60. package/lib/cjs/types/hooks/useLocalStorage.d.ts +1 -0
  61. package/lib/cjs/types/hooks/useLocales.d.ts +16 -0
  62. package/lib/cjs/types/hooks/useSettings.d.ts +2 -0
  63. package/lib/cjs/types/index.d.ts +5 -1
  64. package/lib/cjs/types/layout/dashboard/config-navigation.d.ts +4 -4
  65. package/lib/cjs/types/layouts/LogoOnlyLayout.d.ts +1 -0
  66. package/lib/cjs/types/layouts/config.d.ts +34 -0
  67. package/lib/cjs/types/layouts/dashboard/header/AccountPopover.d.ts +1 -0
  68. package/lib/cjs/types/layouts/dashboard/header/LanguagePopover.d.ts +1 -0
  69. package/lib/cjs/types/layouts/dashboard/header/NotificationsPopover.d.ts +13 -0
  70. package/lib/cjs/types/layouts/dashboard/header/Searchbar.d.ts +4 -0
  71. package/lib/cjs/types/layouts/dashboard/header/index.d.ts +7 -0
  72. package/lib/cjs/types/layouts/dashboard/index.d.ts +1 -0
  73. package/lib/cjs/types/layouts/dashboard/navbar/CollapseButton.d.ts +6 -0
  74. package/lib/cjs/types/layouts/dashboard/navbar/NavbarAccount.d.ts +5 -0
  75. package/lib/cjs/types/layouts/dashboard/navbar/NavbarVertical.d.ts +8 -0
  76. package/lib/cjs/types/layouts/dashboard/navbar/UserNavBar.d.ts +4 -0
  77. package/lib/cjs/types/pages/Page404.d.ts +1 -0
  78. package/lib/cjs/types/pages/auth/Login.d.ts +6 -0
  79. package/lib/cjs/types/pages/auth/LoginForm.d.ts +1 -0
  80. package/lib/cjs/types/pages/index.d.ts +2 -0
  81. package/lib/cjs/types/permissions/checker.d.ts +2 -0
  82. package/lib/cjs/types/permissions/index.d.ts +2 -0
  83. package/lib/cjs/types/permissions/keys.d.ts +6 -0
  84. package/lib/cjs/types/routes/AdminRouter.d.ts +10 -10
  85. package/lib/cjs/types/routes/DashBoardRouter.d.ts +11 -8
  86. package/lib/cjs/types/routes/paths.d.ts +5 -5
  87. package/lib/cjs/types/sections/dashboard/CreateNewDialog.d.ts +0 -1
  88. package/lib/cjs/types/theme/breakpoints.d.ts +10 -0
  89. package/lib/cjs/types/theme/index.d.ts +6 -14
  90. package/lib/cjs/types/theme/overrides/Accordion.d.ts +34 -0
  91. package/lib/cjs/types/theme/overrides/Alert.d.ts +97 -0
  92. package/lib/cjs/types/theme/overrides/Autocomplete.d.ts +18 -0
  93. package/lib/cjs/types/theme/overrides/Avatar.d.ts +24 -0
  94. package/lib/cjs/types/theme/overrides/Backdrop.d.ts +13 -0
  95. package/lib/cjs/types/theme/overrides/Badge.d.ts +12 -0
  96. package/lib/cjs/types/theme/overrides/Breadcrumbs.d.ts +11 -0
  97. package/lib/cjs/types/theme/overrides/Button.d.ts +51 -0
  98. package/lib/cjs/types/theme/overrides/ButtonGroup.d.ts +39 -0
  99. package/lib/cjs/types/theme/overrides/Card.d.ts +36 -0
  100. package/lib/cjs/types/theme/overrides/Checkbox.d.ts +32 -0
  101. package/lib/cjs/types/theme/overrides/Chip.d.ts +40 -0
  102. package/lib/cjs/types/theme/overrides/ControlLabel.d.ts +833 -0
  103. package/lib/cjs/types/theme/overrides/CssBaseline.d.ts +42 -0
  104. package/lib/cjs/types/theme/overrides/CustomIcons.d.ts +14 -0
  105. package/lib/cjs/types/theme/overrides/DataGrid.d.ts +1710 -0
  106. package/lib/cjs/types/theme/overrides/Dialog.d.ts +55 -0
  107. package/lib/cjs/types/theme/overrides/Drawer.d.ts +17 -0
  108. package/lib/cjs/types/theme/overrides/Fab.d.ts +34 -0
  109. package/lib/cjs/types/theme/overrides/Input.d.ts +64 -0
  110. package/lib/cjs/types/theme/overrides/Link.d.ts +8 -0
  111. package/lib/cjs/types/theme/overrides/List.d.ts +32 -0
  112. package/lib/cjs/types/theme/overrides/LoadingButton.d.ts +17 -0
  113. package/lib/cjs/types/theme/overrides/Menu.d.ts +15 -0
  114. package/lib/cjs/types/theme/overrides/Pagination.d.ts +30 -0
  115. package/lib/cjs/types/theme/overrides/Paper.d.ts +21 -0
  116. package/lib/cjs/types/theme/overrides/Popover.d.ts +11 -0
  117. package/lib/cjs/types/theme/overrides/Progress.d.ts +20 -0
  118. package/lib/cjs/types/theme/overrides/Radio.d.ts +16 -0
  119. package/lib/cjs/types/theme/overrides/Rating.d.ts +31 -0
  120. package/lib/cjs/types/theme/overrides/Select.d.ts +9 -0
  121. package/lib/cjs/types/theme/overrides/Skeleton.d.ts +13 -0
  122. package/lib/cjs/types/theme/overrides/Slider.d.ts +23 -0
  123. package/lib/cjs/types/theme/overrides/Stepper.d.ts +10 -0
  124. package/lib/cjs/types/theme/overrides/SvgIcon.d.ts +17 -0
  125. package/lib/cjs/types/theme/overrides/Switch.d.ts +28 -0
  126. package/lib/cjs/types/theme/overrides/Table.d.ts +70 -0
  127. package/lib/cjs/types/theme/overrides/Tabs.d.ts +53 -0
  128. package/lib/cjs/types/theme/overrides/Timeline.d.ts +17 -0
  129. package/lib/cjs/types/theme/overrides/ToggleButton.d.ts +43 -0
  130. package/lib/cjs/types/theme/overrides/Tooltip.d.ts +13 -0
  131. package/lib/cjs/types/theme/overrides/TreeView.d.ts +829 -0
  132. package/lib/cjs/types/theme/overrides/Typography.d.ts +13 -0
  133. package/lib/cjs/types/theme/overrides/index.d.ts +1 -1
  134. package/lib/cjs/types/theme/palette.d.ts +255 -79
  135. package/lib/cjs/types/theme/shadows.d.ts +67 -2
  136. package/lib/cjs/types/theme/typography.d.ts +8 -30
  137. package/lib/cjs/types/utils/AwsConfig.d.ts +1 -1
  138. package/lib/cjs/types/utils/StorageManager.d.ts +4 -0
  139. package/lib/cjs/types/utils/UUIDGenerator.d.ts +2 -0
  140. package/lib/cjs/types/utils/cssStyles.d.ts +78 -0
  141. package/lib/cjs/types/utils/getColorPresets.d.ts +73 -0
  142. package/lib/cjs/types/utils/getFontValue.d.ts +24 -0
  143. package/lib/cjs/types/utils/index.d.ts +1 -0
  144. package/lib/esm/index.css +18 -38
  145. package/lib/esm/index.js +13 -13
  146. package/lib/esm/types/components/Image.d.ts +12 -0
  147. package/lib/esm/types/components/Logo.d.ts +6 -0
  148. package/lib/esm/types/components/MotionLazyContainer.d.ts +6 -0
  149. package/lib/esm/types/components/SearchNotFound.d.ts +6 -0
  150. package/lib/esm/types/components/hook-form/RHFDatePicker.d.ts +2 -1
  151. package/lib/esm/types/components/hook-form/RHFTagsField.d.ts +21 -0
  152. package/lib/esm/types/components/hook-form/RHFUpload.d.ts +15 -2
  153. package/lib/esm/types/components/hook-form/index.d.ts +2 -0
  154. package/lib/esm/types/components/index.d.ts +2 -0
  155. package/lib/esm/types/components/nav-section/horizontal/NavItem.d.ts +4 -0
  156. package/lib/esm/types/components/nav-section/horizontal/NavList.d.ts +6 -0
  157. package/lib/esm/types/components/nav-section/horizontal/index.d.ts +5 -1
  158. package/lib/esm/types/components/nav-section/horizontal/style.d.ts +47 -0
  159. package/lib/esm/types/components/nav-section/index.d.ts +4 -0
  160. package/lib/esm/types/components/nav-section/type.d.ts +35 -0
  161. package/lib/esm/types/components/nav-section/vertical/NavItem.d.ts +13 -0
  162. package/lib/esm/types/components/nav-section/vertical/NavList.d.ts +7 -0
  163. package/lib/esm/types/components/nav-section/vertical/index.d.ts +16 -1
  164. package/lib/esm/types/components/nav-section/vertical/style.d.ts +36 -0
  165. package/lib/esm/types/components/settings/SettingsContext.d.ts +8 -0
  166. package/lib/esm/types/components/settings/ThemeColorPresets.d.ts +6 -0
  167. package/lib/esm/types/components/settings/ThemeContrast.d.ts +6 -0
  168. package/lib/esm/types/components/settings/ThemeLocalization.d.ts +6 -0
  169. package/lib/esm/types/components/settings/ThemeRtlLayout.d.ts +6 -0
  170. package/lib/esm/types/components/settings/config-setting.d.ts +2 -0
  171. package/lib/esm/types/components/settings/drawer/BoxMask.d.ts +5 -0
  172. package/lib/esm/types/components/settings/drawer/SettingColorPresets.d.ts +1 -0
  173. package/lib/esm/types/components/settings/drawer/SettingContrast.d.ts +1 -0
  174. package/lib/esm/types/components/settings/drawer/SettingDirection.d.ts +1 -0
  175. package/lib/esm/types/components/settings/drawer/SettingFullscreen.d.ts +1 -0
  176. package/lib/esm/types/components/settings/drawer/SettingLayout.d.ts +1 -0
  177. package/lib/esm/types/components/settings/drawer/SettingMode.d.ts +1 -0
  178. package/lib/esm/types/components/settings/drawer/SettingStretch.d.ts +1 -0
  179. package/lib/esm/types/components/settings/drawer/ToggleButton.d.ts +7 -0
  180. package/lib/esm/types/components/settings/drawer/index.d.ts +1 -0
  181. package/lib/esm/types/components/settings/index.d.ts +6 -0
  182. package/lib/esm/types/components/settings/presets.d.ts +1941 -0
  183. package/lib/esm/types/components/settings/type.d.ts +56 -0
  184. package/lib/esm/types/components/upload/UploadImage.d.ts +2 -0
  185. package/lib/esm/types/components/upload/UploadSingleFile.d.ts +1 -1
  186. package/lib/esm/types/components/upload/index.d.ts +1 -0
  187. package/lib/esm/types/components/upload/type.d.ts +2 -0
  188. package/lib/esm/types/context/AppConfigurationsContext.d.ts +11 -5
  189. package/lib/esm/types/context/CollapseDrawerContext.d.ts +15 -0
  190. package/lib/esm/types/context/SettingsContext.d.ts +8 -0
  191. package/lib/esm/types/context/auth/AuthContext.d.ts +14 -0
  192. package/lib/esm/types/context/auth/AuthReducer.d.ts +18 -0
  193. package/lib/esm/types/context/auth/index.d.ts +2 -0
  194. package/lib/esm/types/context/auth/types.d.ts +9 -0
  195. package/lib/esm/types/context/index.d.ts +3 -0
  196. package/lib/esm/types/helpers/StringUtils.d.ts +1 -0
  197. package/lib/esm/types/hooks/RequetState.d.ts +8 -1
  198. package/lib/esm/types/hooks/index.d.ts +2 -0
  199. package/lib/esm/types/hooks/useApi.d.ts +2 -1
  200. package/lib/esm/types/hooks/useAppConfigurations.d.ts +8 -3
  201. package/lib/esm/types/hooks/useAuth.d.ts +6 -0
  202. package/lib/esm/types/hooks/useCollapseDrawer.d.ts +2 -0
  203. package/lib/esm/types/hooks/useLocalStorage.d.ts +1 -0
  204. package/lib/esm/types/hooks/useLocales.d.ts +16 -0
  205. package/lib/esm/types/hooks/useSettings.d.ts +2 -0
  206. package/lib/esm/types/index.d.ts +5 -1
  207. package/lib/esm/types/layout/dashboard/config-navigation.d.ts +4 -4
  208. package/lib/esm/types/layouts/LogoOnlyLayout.d.ts +1 -0
  209. package/lib/esm/types/layouts/config.d.ts +34 -0
  210. package/lib/esm/types/layouts/dashboard/header/AccountPopover.d.ts +1 -0
  211. package/lib/esm/types/layouts/dashboard/header/LanguagePopover.d.ts +1 -0
  212. package/lib/esm/types/layouts/dashboard/header/NotificationsPopover.d.ts +13 -0
  213. package/lib/esm/types/layouts/dashboard/header/Searchbar.d.ts +4 -0
  214. package/lib/esm/types/layouts/dashboard/header/index.d.ts +7 -0
  215. package/lib/esm/types/layouts/dashboard/index.d.ts +1 -0
  216. package/lib/esm/types/layouts/dashboard/navbar/CollapseButton.d.ts +6 -0
  217. package/lib/esm/types/layouts/dashboard/navbar/NavbarAccount.d.ts +5 -0
  218. package/lib/esm/types/layouts/dashboard/navbar/NavbarVertical.d.ts +8 -0
  219. package/lib/esm/types/layouts/dashboard/navbar/UserNavBar.d.ts +4 -0
  220. package/lib/esm/types/pages/Page404.d.ts +1 -0
  221. package/lib/esm/types/pages/auth/Login.d.ts +6 -0
  222. package/lib/esm/types/pages/auth/LoginForm.d.ts +1 -0
  223. package/lib/esm/types/pages/index.d.ts +2 -0
  224. package/lib/esm/types/permissions/checker.d.ts +2 -0
  225. package/lib/esm/types/permissions/index.d.ts +2 -0
  226. package/lib/esm/types/permissions/keys.d.ts +6 -0
  227. package/lib/esm/types/routes/AdminRouter.d.ts +10 -10
  228. package/lib/esm/types/routes/DashBoardRouter.d.ts +11 -8
  229. package/lib/esm/types/routes/paths.d.ts +5 -5
  230. package/lib/esm/types/sections/dashboard/CreateNewDialog.d.ts +0 -1
  231. package/lib/esm/types/theme/breakpoints.d.ts +10 -0
  232. package/lib/esm/types/theme/index.d.ts +6 -14
  233. package/lib/esm/types/theme/overrides/Accordion.d.ts +34 -0
  234. package/lib/esm/types/theme/overrides/Alert.d.ts +97 -0
  235. package/lib/esm/types/theme/overrides/Autocomplete.d.ts +18 -0
  236. package/lib/esm/types/theme/overrides/Avatar.d.ts +24 -0
  237. package/lib/esm/types/theme/overrides/Backdrop.d.ts +13 -0
  238. package/lib/esm/types/theme/overrides/Badge.d.ts +12 -0
  239. package/lib/esm/types/theme/overrides/Breadcrumbs.d.ts +11 -0
  240. package/lib/esm/types/theme/overrides/Button.d.ts +51 -0
  241. package/lib/esm/types/theme/overrides/ButtonGroup.d.ts +39 -0
  242. package/lib/esm/types/theme/overrides/Card.d.ts +36 -0
  243. package/lib/esm/types/theme/overrides/Checkbox.d.ts +32 -0
  244. package/lib/esm/types/theme/overrides/Chip.d.ts +40 -0
  245. package/lib/esm/types/theme/overrides/ControlLabel.d.ts +833 -0
  246. package/lib/esm/types/theme/overrides/CssBaseline.d.ts +42 -0
  247. package/lib/esm/types/theme/overrides/CustomIcons.d.ts +14 -0
  248. package/lib/esm/types/theme/overrides/DataGrid.d.ts +1710 -0
  249. package/lib/esm/types/theme/overrides/Dialog.d.ts +55 -0
  250. package/lib/esm/types/theme/overrides/Drawer.d.ts +17 -0
  251. package/lib/esm/types/theme/overrides/Fab.d.ts +34 -0
  252. package/lib/esm/types/theme/overrides/Input.d.ts +64 -0
  253. package/lib/esm/types/theme/overrides/Link.d.ts +8 -0
  254. package/lib/esm/types/theme/overrides/List.d.ts +32 -0
  255. package/lib/esm/types/theme/overrides/LoadingButton.d.ts +17 -0
  256. package/lib/esm/types/theme/overrides/Menu.d.ts +15 -0
  257. package/lib/esm/types/theme/overrides/Pagination.d.ts +30 -0
  258. package/lib/esm/types/theme/overrides/Paper.d.ts +21 -0
  259. package/lib/esm/types/theme/overrides/Popover.d.ts +11 -0
  260. package/lib/esm/types/theme/overrides/Progress.d.ts +20 -0
  261. package/lib/esm/types/theme/overrides/Radio.d.ts +16 -0
  262. package/lib/esm/types/theme/overrides/Rating.d.ts +31 -0
  263. package/lib/esm/types/theme/overrides/Select.d.ts +9 -0
  264. package/lib/esm/types/theme/overrides/Skeleton.d.ts +13 -0
  265. package/lib/esm/types/theme/overrides/Slider.d.ts +23 -0
  266. package/lib/esm/types/theme/overrides/Stepper.d.ts +10 -0
  267. package/lib/esm/types/theme/overrides/SvgIcon.d.ts +17 -0
  268. package/lib/esm/types/theme/overrides/Switch.d.ts +28 -0
  269. package/lib/esm/types/theme/overrides/Table.d.ts +70 -0
  270. package/lib/esm/types/theme/overrides/Tabs.d.ts +53 -0
  271. package/lib/esm/types/theme/overrides/Timeline.d.ts +17 -0
  272. package/lib/esm/types/theme/overrides/ToggleButton.d.ts +43 -0
  273. package/lib/esm/types/theme/overrides/Tooltip.d.ts +13 -0
  274. package/lib/esm/types/theme/overrides/TreeView.d.ts +829 -0
  275. package/lib/esm/types/theme/overrides/Typography.d.ts +13 -0
  276. package/lib/esm/types/theme/overrides/index.d.ts +1 -1
  277. package/lib/esm/types/theme/palette.d.ts +255 -79
  278. package/lib/esm/types/theme/shadows.d.ts +67 -2
  279. package/lib/esm/types/theme/typography.d.ts +8 -30
  280. package/lib/esm/types/utils/AwsConfig.d.ts +1 -1
  281. package/lib/esm/types/utils/StorageManager.d.ts +4 -0
  282. package/lib/esm/types/utils/UUIDGenerator.d.ts +2 -0
  283. package/lib/esm/types/utils/cssStyles.d.ts +78 -0
  284. package/lib/esm/types/utils/getColorPresets.d.ts +73 -0
  285. package/lib/esm/types/utils/getFontValue.d.ts +24 -0
  286. package/lib/esm/types/utils/index.d.ts +1 -0
  287. package/lib/index.d.ts +600 -48
  288. 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,8 @@
1
+ import { Theme } from '@mui/material/styles';
2
+ export default function Link(theme: Theme): {
3
+ MuiLink: {
4
+ defaultProps: {
5
+ underline: string;
6
+ };
7
+ };
8
+ };
@@ -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,11 @@
1
+ import { Theme } from '@mui/material/styles';
2
+ export default function Popover(theme: Theme): {
3
+ MuiPopover: {
4
+ styleOverrides: {
5
+ paper: {
6
+ boxShadow: string;
7
+ borderRadius: number;
8
+ };
9
+ };
10
+ };
11
+ };
@@ -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,9 @@
1
+ import { Theme } from '@mui/material/styles';
2
+ import { InputSelectIcon } from './CustomIcons';
3
+ export default function Select(theme: Theme): {
4
+ MuiSelect: {
5
+ defaultProps: {
6
+ IconComponent: typeof InputSelectIcon;
7
+ };
8
+ };
9
+ };
@@ -0,0 +1,13 @@
1
+ import { Theme } from '@mui/material/styles';
2
+ export default function Skeleton(theme: Theme): {
3
+ MuiSkeleton: {
4
+ defaultProps: {
5
+ animation: string;
6
+ };
7
+ styleOverrides: {
8
+ root: {
9
+ backgroundColor: string;
10
+ };
11
+ };
12
+ };
13
+ };
@@ -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,10 @@
1
+ import { Theme } from '@mui/material/styles';
2
+ export default function Stepper(theme: Theme): {
3
+ MuiStepConnector: {
4
+ styleOverrides: {
5
+ line: {
6
+ borderColor: string;
7
+ };
8
+ };
9
+ };
10
+ };
@@ -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
+ };