@applica-software-guru/react-admin 1.0.32 → 1.0.34

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 (350) hide show
  1. package/.eslintrc.json +43 -0
  2. package/.husky/pre-commit +4 -0
  3. package/.nvmrc +1 -0
  4. package/.prettierrc +8 -0
  5. package/bitbucket-pipelines.yml +30 -0
  6. package/dist/Admin.d.ts +1 -1
  7. package/dist/ApplicaAdmin.d.ts +3 -3
  8. package/dist/ApplicaAdmin.d.ts.map +1 -1
  9. package/dist/components/@extended/AnimateButton.d.ts +5 -5
  10. package/dist/components/@extended/Avatar.d.ts +3 -3
  11. package/dist/components/@extended/Breadcrumbs.d.ts +5 -5
  12. package/dist/components/@extended/Dot.d.ts +1 -1
  13. package/dist/components/@extended/Tooltip.d.ts +1 -1
  14. package/dist/components/ActionsMenu.d.ts +1 -1
  15. package/dist/components/ActionsMenu.d.ts.map +1 -1
  16. package/dist/components/Layout/Drawer/DrawerContent/Navigation/NavGroup.d.ts +1 -1
  17. package/dist/components/Layout/Drawer/DrawerContent/Navigation/NavGroup.d.ts.map +1 -1
  18. package/dist/components/Layout/Drawer/DrawerHeader/DrawerHeaderStyled.d.ts +5 -5
  19. package/dist/components/Layout/Header/AppBarStyled.d.ts +13 -13
  20. package/dist/components/Layout/Header/HeaderContent/NotificationItem.d.ts +3 -3
  21. package/dist/components/Logo.d.ts +2 -2
  22. package/dist/components/MenuPopover/MenuPopover.d.ts +1 -1
  23. package/dist/components/Notification.d.ts +5 -1
  24. package/dist/components/Notification.d.ts.map +1 -1
  25. package/dist/components/ra-buttons/CreateInDialogButton.d.ts +16 -1
  26. package/dist/components/ra-buttons/CreateInDialogButton.d.ts.map +1 -1
  27. package/dist/components/ra-buttons/ImpersonateUserButton.d.ts +1 -1
  28. package/dist/components/ra-fields/ActionsField.d.ts +1 -1
  29. package/dist/components/ra-fields/ActionsField.d.ts.map +1 -1
  30. package/dist/components/ra-fields/AttachmentField.d.ts +19 -1
  31. package/dist/components/ra-fields/AttachmentField.d.ts.map +1 -1
  32. package/dist/components/ra-fields/BaseAttachmentField.d.ts +2 -2
  33. package/dist/components/ra-fields/CoverField.d.ts +19 -1
  34. package/dist/components/ra-fields/CoverField.d.ts.map +1 -1
  35. package/dist/components/ra-fields/EmailField.d.ts +12 -1
  36. package/dist/components/ra-fields/FileField.d.ts +19 -1
  37. package/dist/components/ra-fields/FileField.d.ts.map +1 -1
  38. package/dist/components/ra-fields/ImageField.d.ts +15 -1
  39. package/dist/components/ra-fields/ImageField.d.ts.map +1 -1
  40. package/dist/components/ra-fields/ReadonlyField.d.ts +1 -1
  41. package/dist/components/ra-fields/ReferenceManyField.d.ts +32 -2
  42. package/dist/components/ra-fields/ReferenceManyField.d.ts.map +1 -1
  43. package/dist/components/ra-forms/Edit.d.ts +24 -1
  44. package/dist/components/ra-forms/Edit.d.ts.map +1 -1
  45. package/dist/components/ra-forms/LongForm/LongFormHeader.d.ts +1 -1
  46. package/dist/components/ra-forms/LongForm/LongFormHeader.d.ts.map +1 -1
  47. package/dist/components/ra-forms/LongForm/LongFormTab.d.ts +4 -4
  48. package/dist/components/ra-forms/LongForm/LongFormTab.d.ts.map +1 -1
  49. package/dist/components/ra-forms/LongForm/LongFormTabs.d.ts +2 -2
  50. package/dist/components/ra-forms/SimpleForm.d.ts +13 -1
  51. package/dist/components/ra-forms/SimpleForm.d.ts.map +1 -1
  52. package/dist/components/ra-forms/TabbedForm.d.ts +9 -1
  53. package/dist/components/ra-forms/TabbedForm.d.ts.map +1 -1
  54. package/dist/components/ra-forms/Toolbar.d.ts +5 -1
  55. package/dist/components/ra-inputs/AttachmentInput.d.ts +20 -1
  56. package/dist/components/ra-inputs/AttachmentInput.d.ts.map +1 -1
  57. package/dist/components/ra-inputs/AutocompleteArrayInput.d.ts +1 -2
  58. package/dist/components/ra-inputs/AutocompleteArrayInput.d.ts.map +1 -1
  59. package/dist/components/ra-inputs/AutocompleteInput.d.ts +1 -2
  60. package/dist/components/ra-inputs/AutocompleteInput.d.ts.map +1 -1
  61. package/dist/components/ra-inputs/BooleanInput.d.ts +19 -2
  62. package/dist/components/ra-inputs/BooleanInput.d.ts.map +1 -1
  63. package/dist/components/ra-inputs/DateInput.d.ts +11 -1
  64. package/dist/components/ra-inputs/FileInput.d.ts +21 -1
  65. package/dist/components/ra-inputs/FileInput.d.ts.map +1 -1
  66. package/dist/components/ra-inputs/LabeledInput.d.ts +2 -2
  67. package/dist/components/ra-inputs/NumberInput.d.ts +19 -2
  68. package/dist/components/ra-inputs/RecordInput.d.ts +1 -1
  69. package/dist/components/ra-inputs/ReferenceArrayInput.d.ts +25 -2
  70. package/dist/components/ra-inputs/ReferenceArrayInput.d.ts.map +1 -1
  71. package/dist/components/ra-inputs/ReferenceInput.d.ts +26 -2
  72. package/dist/components/ra-inputs/ReferenceInput.d.ts.map +1 -1
  73. package/dist/components/ra-inputs/ReferenceManyInput.d.ts +34 -2
  74. package/dist/components/ra-inputs/ReferenceManyInput.d.ts.map +1 -1
  75. package/dist/components/ra-inputs/SelectArrayInput.d.ts +18 -1
  76. package/dist/components/ra-inputs/SelectInput.d.ts +21 -1
  77. package/dist/components/ra-inputs/SmartTextInput.d.ts +17 -1
  78. package/dist/components/ra-inputs/SmartTextInput.d.ts.map +1 -1
  79. package/dist/components/ra-inputs/TextInput.d.ts +16 -2
  80. package/dist/components/ra-inputs/TimeInput.d.ts +11 -1
  81. package/dist/components/ra-lists/Datagrid.d.ts +616 -2
  82. package/dist/components/ra-lists/List.d.ts +28 -2
  83. package/dist/contexts/AppConfigContext.d.ts +1 -1
  84. package/dist/contexts/MenuConfigContext.d.ts +4 -4
  85. package/dist/dev/useCliErrorCatcher.d.ts +5 -5
  86. package/dist/hooks/useAppConfig.d.ts +1 -1
  87. package/dist/hooks/useBreadcrumbs.d.ts +2 -2
  88. package/dist/hooks/useMenu.d.ts +2 -2
  89. package/dist/hooks/useMenu.d.ts.map +1 -1
  90. package/dist/hooks/useMenuConfig.d.ts +2 -2
  91. package/dist/i18n/createI18nProvider.d.ts +1 -1
  92. package/dist/i18n/useI18nCatcher.d.ts +4 -4
  93. package/dist/i18n/useI18nLanguages.d.ts +4 -4
  94. package/dist/i18n/useI18nProvider.d.ts +2 -2
  95. package/dist/index.d.ts +1 -1
  96. package/dist/react-admin.cjs.js +25 -25
  97. package/dist/react-admin.es.js +304 -315
  98. package/dist/react-admin.umd.js +25 -25
  99. package/dist/themes/overrides/PaginationItem.d.ts +72 -72
  100. package/jsconfig.json +31 -0
  101. package/jsconfig.node.json +10 -0
  102. package/package.json +6 -5
  103. package/playground/config-overrides.js +31 -0
  104. package/playground/jsconfig.json +9 -0
  105. package/playground/package-lock.json +17764 -0
  106. package/playground/package.json +69 -0
  107. package/playground/public/favicon-dark.png +0 -0
  108. package/playground/public/favicon-light.png +0 -0
  109. package/playground/public/index.html +46 -0
  110. package/playground/src/App.js +49 -0
  111. package/playground/src/build.json +1 -0
  112. package/playground/src/components/index.js +5 -0
  113. package/playground/src/components/pages/CustomPage.jsx +7 -0
  114. package/playground/src/components/pages/index.jsx +2 -0
  115. package/playground/src/components/ra-buttons/index.js +1 -0
  116. package/playground/src/components/ra-fields/UserPictureField.js +20 -0
  117. package/playground/src/components/ra-fields/index.js +2 -0
  118. package/playground/src/components/ra-forms/DeviceForm.js +36 -0
  119. package/playground/src/components/ra-forms/I18nMessageForm.js +24 -0
  120. package/playground/src/components/ra-forms/UserForm.js +51 -0
  121. package/playground/src/components/ra-forms/index.js +5 -0
  122. package/playground/src/components/ra-inputs/LangSelectInput.js +4 -0
  123. package/playground/src/components/ra-inputs/YesOrNoSelectInput.js +14 -0
  124. package/playground/src/components/ra-inputs/index.js +3 -0
  125. package/playground/src/components/ra-lists/DeviceList.js +33 -0
  126. package/playground/src/components/ra-lists/I18nMessageList.js +20 -0
  127. package/playground/src/components/ra-lists/UserList.js +96 -0
  128. package/playground/src/components/ra-lists/index.js +4 -0
  129. package/playground/src/config.js +19 -0
  130. package/playground/src/contexts/index.js +1 -0
  131. package/playground/src/hooks/index.js +1 -0
  132. package/playground/src/index.js +10 -0
  133. package/playground/src/menu.js +72 -0
  134. package/playground/src/react-app-env.d.js +1 -0
  135. package/playground/src/reportWebVitals.js +13 -0
  136. package/playground/src/resource/device.js +23 -0
  137. package/playground/src/resource/i18n-message.js +29 -0
  138. package/playground/src/resource/index.js +4 -0
  139. package/playground/src/resource/notification.js +18 -0
  140. package/playground/src/resource/user.js +28 -0
  141. package/playground/src/theme.js +3 -0
  142. package/src/Admin.jsx +67 -0
  143. package/src/AdminContext.jsx +26 -0
  144. package/src/ApplicaAdmin.jsx +210 -0
  145. package/src/assets/README.md +7 -0
  146. package/src/assets/logo-icon.png +0 -0
  147. package/src/assets/logo-main.png +0 -0
  148. package/src/components/@extended/AnimateButton.jsx +96 -0
  149. package/src/components/@extended/Avatar.jsx +125 -0
  150. package/src/components/@extended/Breadcrumbs.jsx +324 -0
  151. package/src/components/@extended/Dot.jsx +35 -0
  152. package/src/components/@extended/IconButton.jsx +166 -0
  153. package/src/components/@extended/LoadingButton.jsx +228 -0
  154. package/src/components/@extended/Tooltip.jsx +67 -0
  155. package/src/components/@extended/Transitions.jsx +125 -0
  156. package/src/components/@extended/index.jsx +11 -0
  157. package/src/components/@extended/progress/CircularWithLabel.jsx +34 -0
  158. package/src/components/@extended/progress/CircularWithPath.jsx +74 -0
  159. package/src/components/@extended/progress/LinearWithIcon.jsx +22 -0
  160. package/src/components/@extended/progress/LinearWithLabel.jsx +23 -0
  161. package/src/components/@extended/progress/index.jsx +6 -0
  162. package/src/components/ActionsMenu.jsx +77 -0
  163. package/src/components/Layout/Drawer/DrawerContent/Navigation/NavCollapse.jsx +440 -0
  164. package/src/components/Layout/Drawer/DrawerContent/Navigation/NavGroup.jsx +359 -0
  165. package/src/components/Layout/Drawer/DrawerContent/Navigation/NavItem.jsx +259 -0
  166. package/src/components/Layout/Drawer/DrawerContent/Navigation/index.jsx +73 -0
  167. package/src/components/Layout/Drawer/DrawerContent/index.jsx +19 -0
  168. package/src/components/Layout/Drawer/DrawerHeader/DrawerHeaderStyled.jsx +20 -0
  169. package/src/components/Layout/Drawer/DrawerHeader/index.jsx +44 -0
  170. package/src/components/Layout/Drawer/HorizontalBar.jsx +55 -0
  171. package/src/components/Layout/Drawer/MiniDrawerStyled.jsx +47 -0
  172. package/src/components/Layout/Drawer/index.jsx +63 -0
  173. package/src/components/Layout/Footer.jsx +23 -0
  174. package/src/components/Layout/Header/AppBarStyled.jsx +34 -0
  175. package/src/components/Layout/Header/HeaderContent/MobileSection.jsx +91 -0
  176. package/src/components/Layout/Header/HeaderContent/Notification.jsx +179 -0
  177. package/src/components/Layout/Header/HeaderContent/NotificationItem.jsx +109 -0
  178. package/src/components/Layout/Header/HeaderContent/Profile.jsx +181 -0
  179. package/src/components/Layout/Header/HeaderContent/index.jsx +38 -0
  180. package/src/components/Layout/Header/index.jsx +99 -0
  181. package/src/components/Layout/index.jsx +119 -0
  182. package/src/components/Loadable.jsx +11 -0
  183. package/src/components/Loader.jsx +21 -0
  184. package/src/components/Logo.jsx +29 -0
  185. package/src/components/MainCard.jsx +111 -0
  186. package/src/components/MainIcon.jsx +20 -0
  187. package/src/components/MenuPopover/MenuPopover.jsx +61 -0
  188. package/src/components/MenuPopover/getPosition.jsx +98 -0
  189. package/src/components/MenuPopover/index.jsx +3 -0
  190. package/src/components/MenuPopover/styles.jsx +87 -0
  191. package/src/components/Notification.jsx +13 -0
  192. package/src/components/ScrollTop.jsx +24 -0
  193. package/src/components/ScrollX.jsx +10 -0
  194. package/src/components/SmallIcon.jsx +14 -0
  195. package/src/components/index.jsx +36 -0
  196. package/src/components/ra-buttons/CreateInDialogButton.jsx +203 -0
  197. package/src/components/ra-buttons/EditInDialogButton.jsx +108 -0
  198. package/src/components/ra-buttons/ImpersonateUserButton.jsx +41 -0
  199. package/src/components/ra-buttons/index.jsx +4 -0
  200. package/src/components/ra-fields/ActionsField.jsx +33 -0
  201. package/src/components/ra-fields/AttachmentField.jsx +82 -0
  202. package/src/components/ra-fields/BaseAttachmentField.jsx +72 -0
  203. package/src/components/ra-fields/CoverField.jsx +83 -0
  204. package/src/components/ra-fields/DateAgoField.jsx +35 -0
  205. package/src/components/ra-fields/DateField.jsx +27 -0
  206. package/src/components/ra-fields/EmailField.jsx +27 -0
  207. package/src/components/ra-fields/FileField.jsx +40 -0
  208. package/src/components/ra-fields/FunctionField.jsx +9 -0
  209. package/src/components/ra-fields/ImageField.jsx +20 -0
  210. package/src/components/ra-fields/ReadonlyField.jsx +107 -0
  211. package/src/components/ra-fields/ReferenceManyField.jsx +63 -0
  212. package/src/components/ra-fields/SizeField.jsx +32 -0
  213. package/src/components/ra-fields/TextField.jsx +27 -0
  214. package/src/components/ra-fields/index.jsx +28 -0
  215. package/src/components/ra-forms/CardForm.jsx +113 -0
  216. package/src/components/ra-forms/Edit.jsx +13 -0
  217. package/src/components/ra-forms/FormHeader.jsx +42 -0
  218. package/src/components/ra-forms/LongForm/DispositionProps.jsx +10 -0
  219. package/src/components/ra-forms/LongForm/LongForm.jsx +38 -0
  220. package/src/components/ra-forms/LongForm/LongFormHeader.jsx +24 -0
  221. package/src/components/ra-forms/LongForm/LongFormTab.jsx +121 -0
  222. package/src/components/ra-forms/LongForm/LongFormTabs.jsx +63 -0
  223. package/src/components/ra-forms/LongForm/LongFormView.jsx +129 -0
  224. package/src/components/ra-forms/LongForm/index.jsx +2 -0
  225. package/src/components/ra-forms/LongForm/useFormRootPath.jsx +22 -0
  226. package/src/components/ra-forms/SimpleForm.jsx +69 -0
  227. package/src/components/ra-forms/TabbedForm.jsx +19 -0
  228. package/src/components/ra-forms/Toolbar.jsx +36 -0
  229. package/src/components/ra-forms/index.jsx +8 -0
  230. package/src/components/ra-inputs/ArrayInput.jsx +29 -0
  231. package/src/components/ra-inputs/AttachmentInput.jsx +57 -0
  232. package/src/components/ra-inputs/AutocompleteArrayInput.jsx +25 -0
  233. package/src/components/ra-inputs/AutocompleteInput.jsx +24 -0
  234. package/src/components/ra-inputs/BooleanInput.jsx +54 -0
  235. package/src/components/ra-inputs/DateInput.jsx +30 -0
  236. package/src/components/ra-inputs/FileInput.jsx +98 -0
  237. package/src/components/ra-inputs/ImageInput.jsx +44 -0
  238. package/src/components/ra-inputs/LabeledInput.jsx +80 -0
  239. package/src/components/ra-inputs/NumberInput.jsx +28 -0
  240. package/src/components/ra-inputs/RecordInput.jsx +102 -0
  241. package/src/components/ra-inputs/ReferenceArrayInput.jsx +23 -0
  242. package/src/components/ra-inputs/ReferenceInput.jsx +23 -0
  243. package/src/components/ra-inputs/ReferenceManyInput.jsx +44 -0
  244. package/src/components/ra-inputs/SearchInput.jsx +14 -0
  245. package/src/components/ra-inputs/SelectArrayInput.jsx +45 -0
  246. package/src/components/ra-inputs/SelectInput.jsx +24 -0
  247. package/src/components/ra-inputs/SmartTextInput.jsx +52 -0
  248. package/src/components/ra-inputs/TextInput.jsx +20 -0
  249. package/src/components/ra-inputs/TimeInput.jsx +46 -0
  250. package/src/components/ra-inputs/index.jsx +42 -0
  251. package/src/components/ra-lists/Datagrid.jsx +42 -0
  252. package/src/components/ra-lists/Empty.jsx +94 -0
  253. package/src/components/ra-lists/List.jsx +81 -0
  254. package/src/components/ra-lists/NotificationList/NotificationList.jsx +41 -0
  255. package/src/components/ra-lists/NotificationList/button/MarkAsReadedButton.jsx +57 -0
  256. package/src/components/ra-lists/NotificationList/button/MarkAsUnreadedButton.jsx +56 -0
  257. package/src/components/ra-lists/NotificationList/button/index.jsx +2 -0
  258. package/src/components/ra-lists/NotificationList/field/NotificationField.jsx +80 -0
  259. package/src/components/ra-lists/NotificationList/field/index.jsx +1 -0
  260. package/src/components/ra-lists/NotificationList/index.jsx +2 -0
  261. package/src/components/ra-lists/index.jsx +5 -0
  262. package/src/components/third-party/SimpleBar.jsx +61 -0
  263. package/src/components/third-party/index.jsx +3 -0
  264. package/src/contexts/AppConfigContext.jsx +54 -0
  265. package/src/contexts/MenuConfigContext.jsx +93 -0
  266. package/src/contexts/MenuPropTypes.jsx +19 -0
  267. package/src/contexts/ThemeConfigContext.jsx +138 -0
  268. package/src/contexts/index.jsx +5 -0
  269. package/src/dev/index.jsx +2 -0
  270. package/src/dev/useCliErrorCatcher.jsx +86 -0
  271. package/src/hooks/index.jsx +16 -0
  272. package/src/hooks/useAppConfig.jsx +6 -0
  273. package/src/hooks/useBreadcrumbs.jsx +68 -0
  274. package/src/hooks/useLocalStorage.jsx +31 -0
  275. package/src/hooks/useMenu.jsx +223 -0
  276. package/src/hooks/useMenuConfig.jsx +6 -0
  277. package/src/hooks/useResourceTitle.jsx +25 -0
  278. package/src/hooks/useThemeConfig.jsx +6 -0
  279. package/src/i18n/createI18nProvider.jsx +15 -0
  280. package/src/i18n/index.jsx +4 -0
  281. package/src/i18n/useI18nCatcher.jsx +71 -0
  282. package/src/i18n/useI18nLanguages.jsx +22 -0
  283. package/src/i18n/useI18nProvider.jsx +5 -0
  284. package/src/index.jsx +67 -0
  285. package/src/themes/getColors.jsx +18 -0
  286. package/src/themes/getShadow.jsx +37 -0
  287. package/src/themes/index.jsx +70 -0
  288. package/src/themes/overrides/Accordion.jsx +27 -0
  289. package/src/themes/overrides/AccordionDetails.jsx +14 -0
  290. package/src/themes/overrides/AccordionSummary.jsx +33 -0
  291. package/src/themes/overrides/Alert.jsx +72 -0
  292. package/src/themes/overrides/AlertTitle.jsx +15 -0
  293. package/src/themes/overrides/Autocomplete.jsx +23 -0
  294. package/src/themes/overrides/Badge.jsx +36 -0
  295. package/src/themes/overrides/Button.jsx +229 -0
  296. package/src/themes/overrides/ButtonBase.jsx +12 -0
  297. package/src/themes/overrides/ButtonGroup.jsx +11 -0
  298. package/src/themes/overrides/CardContent.jsx +16 -0
  299. package/src/themes/overrides/Checkbox.jsx +125 -0
  300. package/src/themes/overrides/Chip.jsx +75 -0
  301. package/src/themes/overrides/Dialog.jsx +18 -0
  302. package/src/themes/overrides/DialogContentText.jsx +14 -0
  303. package/src/themes/overrides/DialogTitle.jsx +14 -0
  304. package/src/themes/overrides/Fab.jsx +77 -0
  305. package/src/themes/overrides/IconButton.jsx +28 -0
  306. package/src/themes/overrides/InputBase.jsx +13 -0
  307. package/src/themes/overrides/InputLabel.jsx +25 -0
  308. package/src/themes/overrides/LinearProgress.jsx +17 -0
  309. package/src/themes/overrides/Link.jsx +11 -0
  310. package/src/themes/overrides/ListItemButton.jsx +18 -0
  311. package/src/themes/overrides/ListItemIcon.jsx +14 -0
  312. package/src/themes/overrides/LoadingButton.jsx +17 -0
  313. package/src/themes/overrides/OutlinedInput.jsx +54 -0
  314. package/src/themes/overrides/Pagination.jsx +11 -0
  315. package/src/themes/overrides/PaginationItem.jsx +211 -0
  316. package/src/themes/overrides/Popover.jsx +13 -0
  317. package/src/themes/overrides/Radio.jsx +121 -0
  318. package/src/themes/overrides/Slider.jsx +66 -0
  319. package/src/themes/overrides/Switch.jsx +88 -0
  320. package/src/themes/overrides/Tab.jsx +24 -0
  321. package/src/themes/overrides/TableBody.jsx +27 -0
  322. package/src/themes/overrides/TableCell.jsx +44 -0
  323. package/src/themes/overrides/TableFooter.jsx +15 -0
  324. package/src/themes/overrides/TableHead.jsx +15 -0
  325. package/src/themes/overrides/TablePagination.jsx +16 -0
  326. package/src/themes/overrides/TableRow.jsx +25 -0
  327. package/src/themes/overrides/Tabs.jsx +13 -0
  328. package/src/themes/overrides/ToggleButton.jsx +20 -0
  329. package/src/themes/overrides/Tooltip.jsx +13 -0
  330. package/src/themes/overrides/TreeItem.jsx +18 -0
  331. package/src/themes/overrides/Typography.jsx +13 -0
  332. package/src/themes/overrides/index.jsx +98 -0
  333. package/src/themes/palette.jsx +78 -0
  334. package/src/themes/shadows.jsx +27 -0
  335. package/src/themes/theme/default.jsx +98 -0
  336. package/src/themes/theme/index.jsx +44 -0
  337. package/src/themes/theme/theme1.jsx +128 -0
  338. package/src/themes/theme/theme2.jsx +128 -0
  339. package/src/themes/theme/theme3.jsx +128 -0
  340. package/src/themes/theme/theme4.jsx +128 -0
  341. package/src/themes/theme/theme5.jsx +128 -0
  342. package/src/themes/theme/theme6.jsx +128 -0
  343. package/src/themes/theme/theme7.jsx +128 -0
  344. package/src/themes/theme/theme8.jsx +128 -0
  345. package/src/themes/typography.jsx +71 -0
  346. package/src/utils/index.js +2 -0
  347. package/src/utils/lang.js +12 -0
  348. package/src/utils/time.js +13 -0
  349. package/tsconfig.json +28 -0
  350. package/vite.config.js +74 -0
@@ -1,6 +1,6 @@
1
1
  import { jsx as C, jsxs as oe, Fragment as dn } from "react/jsx-runtime";
2
2
  import { useResourceDefinitions as KP, useGetIdentity as HC, usePermissions as qP, useTranslate as Xn, useRecordContext as jt, useResourceContext as Pn, useLogout as _P, useDataProvider as Zu, useAuthProvider as VC, useNotify as Ti, useRedirect as $u, useUpdate as zC, useLocaleState as bl, useGetList as JP, LoadingIndicator as XP, Notification as ZP, Toolbar as eg, Form as tg, SaveButton as xl, Edit as $P, FormGroupContextProvider as eR, getTabbedFormTabFullPath as tR, SimpleForm as ng, DeleteWithConfirmButton as WC, TabbedForm as wl, CreateButtonClasses as UC, Button as $r, useCreateController as nR, CreateContextProvider as rR, useGetOne as oR, useEditController as iR, EditContextProvider as sR, EditButton as aR, CloneButton as lR, FileField as rg, ImageField as YC, DateField as ws, EmailField as Tl, FunctionField as cR, FieldTitle as GC, ReferenceManyField as og, TextField as Pl, useInput as AR, ArrayInput as KC, FileInput as Rl, AutocompleteArrayInput as qC, AutocompleteInput as _C, BooleanInput as ig, DateInput as sg, ImageInput as JC, NumberInput as ag, ReferenceArrayInput as lg, ReferenceInput as cg, ResourceContextProvider as uR, Pagination as gR, ListToolbar as dR, SearchInput as fR, SelectArrayInput as Ag, SelectInput as XC, TextInput as ug, maxLength as pR, TimeInput as gg, Datagrid as Sl, List as Ol, useRefresh as ZC, useUnselectAll as $C, useListContext as eI, useUpdateMany as tI, CoreAdminContext as dg, localStorageStore as hR, AdminUI as nI } from "react-admin";
3
- import { ArrayInput as F9, ArrayInputContext as N9, BooleanField as L9, BulkDeleteWithConfirmButton as j9, Button as H9, ChipField as V9, Confirm as z9, Create as W9, CreateButton as U9, CreateContextProvider as Y9, DeleteWithConfirmButton as G9, DeleteWithUndoButton as K9, EditButton as q9, Form as _9, HttpError as J9, ListToolbar as X9, Pagination as Z9, RecordContextProvider as $9, ReferenceArrayField as eU, ReferenceField as tU, Resource as nU, ResourceContextProvider as rU, SaveButton as oU, SimpleFormIterator as iU, SimpleFormIteratorContext as sU, SimpleList as aU, SingleFieldList as lU, TopToolbar as cU, choices as AU, email as uU, maxLength as gU, maxValue as dU, minLength as fU, minValue as pU, number as hU, regex as EU, required as CU, useArrayInput as IU, useAuthProvider as BU, useDataProvider as mU, useGetIdentity as QU, useGetList as yU, useGetMany as vU, useGetManyReference as bU, useGetOne as xU, useListContext as wU, useNotify as TU, usePermissions as PU, useRecordContext as RU, useResourceContext as SU, useResourceDefinition as OU, useResourceDefinitions as DU, useTranslate as MU, useUnselect as kU, useUnselectAll as FU, useUpdateMany as NU } from "react-admin";
3
+ import { ArrayInput as F9, ArrayInputContext as N9, BooleanField as L9, BulkDeleteWithConfirmButton as j9, Button as H9, ChipField as V9, Confirm as z9, Create as W9, CreateButton as U9, CreateContextProvider as Y9, CustomRoutes as G9, DeleteWithConfirmButton as K9, DeleteWithUndoButton as q9, EditButton as _9, Form as J9, HttpError as X9, ListToolbar as Z9, Pagination as $9, RecordContextProvider as eU, ReferenceArrayField as tU, ReferenceField as nU, Resource as rU, ResourceContextProvider as oU, SaveButton as iU, SimpleFormIterator as sU, SimpleFormIteratorContext as aU, SimpleList as lU, SingleFieldList as cU, TopToolbar as AU, choices as uU, email as gU, maxLength as dU, maxValue as fU, minLength as pU, minValue as hU, number as EU, regex as CU, required as IU, useArrayInput as BU, useAuthProvider as mU, useDataProvider as QU, useGetIdentity as yU, useGetList as vU, useGetMany as bU, useGetManyReference as xU, useGetOne as wU, useListContext as TU, useNotify as PU, usePermissions as RU, useRecordContext as SU, useResourceContext as OU, useResourceDefinition as DU, useResourceDefinitions as MU, useTranslate as kU, useUnselect as FU, useUnselectAll as NU, useUpdateMany as LU } from "react-admin";
4
4
  import * as z from "react";
5
5
  import Ne, { useState as At, Children as rI, createContext as wr, useContext as Wt, useMemo as it, useEffect as kt, forwardRef as ko, isValidElement as Ka, cloneElement as qa, useLayoutEffect as ER, useRef as Po, useInsertionEffect as CR, useCallback as xt, createElement as IR, useId as BR, Fragment as Pi, Suspense as mR } from "react";
6
6
  import { Popover as QR, styled as oI, IconButton as yR, MenuItem as vR, Card as bR, CardHeader as fu, Typography as Pe, Divider as Ii, CardContent as iI, Grid as bt, Box as Me, Tooltip as Dl, tooltipClasses as Oa, Grow as xR, Collapse as sI, Fade as wR, Slide as TR, Zoom as aI, CircularProgress as pu, circularProgressClasses as PR, LinearProgress as lI, useMediaQuery as wn, ListItemButton as Ro, ListItemIcon as Gr, ListItemText as So, Chip as $p, Avatar as nl, Popper as Ts, Paper as vi, ClickAwayListener as bi, List as Is, ButtonBase as cI, Drawer as RR, Stack as To, AppBar as fg, Toolbar as pg, ListItemAvatar as SR, ListItemSecondaryAction as AI, Badge as OR, Container as uI, useScrollTrigger as DR, Fab as MR, Dialog as gI, InputLabel as dI, FormHelperText as kR, TextField as FR, useTheme as NR, darken as LR, lighten as jR, StyledEngineProvider as HR, CssBaseline as VR } from "@mui/material";
@@ -9,9 +9,9 @@ import { ThemeContext as fI, keyframes as eo, css as Ps, useTheme as WR } from "
9
9
  import { MoreVert as UR, Add as eh, Edit as YR, VpnKey as GR, Inbox as KR, Email as qR, Drafts as _R } from "@mui/icons-material";
10
10
  import { useLocation as Ri, Link as Ir, useNavigate as JR, Outlet as XR, matchPath as th } from "react-router-dom";
11
11
  import { AntDesignOutlined as nh, HomeOutlined as SA, HomeFilled as OA, ApartmentOutlined as hu, UpOutlined as ZR, DownOutlined as rl, RightOutlined as hg, BorderOutlined as $R, LogoutOutlined as eS, MoreOutlined as tS, MessageOutlined as nS, BellOutlined as rS, CheckCircleOutlined as oS, MenuUnfoldOutlined as iS, MenuFoldOutlined as sS, CheckSquareFilled as aS, MinusSquareFilled as lS } from "@ant-design/icons";
12
- import { useLocation as Eg, matchPath as pI, useResolvedPath as cS, Routes as AS, Route as uS } from "react-router";
13
- import * as gS from "react-dom";
12
+ import * as cS from "react-dom";
14
13
  import Da from "react-dom";
14
+ import { useLocation as Eg, matchPath as pI, useResolvedPath as AS, Routes as uS, Route as gS } from "react-router";
15
15
  import { useQueryClient as dS, QueryClient as fS } from "react-query";
16
16
  import { useRecordContext as pS, useTranslate as hI, useResourceDefinition as hS, useResourceContext as ES, useGetResourceLabel as CS } from "ra-core";
17
17
  import { useWatch as EI, useController as IS } from "react-hook-form";
@@ -34,7 +34,7 @@ function mS() {
34
34
  if (rh)
35
35
  return $e;
36
36
  rh = 1;
37
- var e = typeof Symbol == "function" && Symbol.for, t = e ? Symbol.for("react.element") : 60103, n = e ? Symbol.for("react.portal") : 60106, r = e ? Symbol.for("react.fragment") : 60107, s = e ? Symbol.for("react.strict_mode") : 60108, a = e ? Symbol.for("react.profiler") : 60114, l = e ? Symbol.for("react.provider") : 60109, u = e ? Symbol.for("react.context") : 60110, g = e ? Symbol.for("react.async_mode") : 60111, d = e ? Symbol.for("react.concurrent_mode") : 60111, p = e ? Symbol.for("react.forward_ref") : 60112, E = e ? Symbol.for("react.suspense") : 60113, h = e ? Symbol.for("react.suspense_list") : 60120, I = e ? Symbol.for("react.memo") : 60115, B = e ? Symbol.for("react.lazy") : 60116, Q = e ? Symbol.for("react.block") : 60121, y = e ? Symbol.for("react.fundamental") : 60117, R = e ? Symbol.for("react.responder") : 60118, O = e ? Symbol.for("react.scope") : 60119;
37
+ var e = typeof Symbol == "function" && Symbol.for, t = e ? Symbol.for("react.element") : 60103, n = e ? Symbol.for("react.portal") : 60106, r = e ? Symbol.for("react.fragment") : 60107, s = e ? Symbol.for("react.strict_mode") : 60108, a = e ? Symbol.for("react.profiler") : 60114, l = e ? Symbol.for("react.provider") : 60109, u = e ? Symbol.for("react.context") : 60110, g = e ? Symbol.for("react.async_mode") : 60111, d = e ? Symbol.for("react.concurrent_mode") : 60111, p = e ? Symbol.for("react.forward_ref") : 60112, E = e ? Symbol.for("react.suspense") : 60113, h = e ? Symbol.for("react.suspense_list") : 60120, I = e ? Symbol.for("react.memo") : 60115, B = e ? Symbol.for("react.lazy") : 60116, Q = e ? Symbol.for("react.block") : 60121, v = e ? Symbol.for("react.fundamental") : 60117, R = e ? Symbol.for("react.responder") : 60118, O = e ? Symbol.for("react.scope") : 60119;
38
38
  function w(P) {
39
39
  if (typeof P == "object" && P !== null) {
40
40
  var N = P.$$typeof;
@@ -93,7 +93,7 @@ function mS() {
93
93
  }, $e.isSuspense = function(P) {
94
94
  return w(P) === E;
95
95
  }, $e.isValidElementType = function(P) {
96
- return typeof P == "string" || typeof P == "function" || P === r || P === d || P === a || P === s || P === E || P === h || typeof P == "object" && P !== null && (P.$$typeof === B || P.$$typeof === I || P.$$typeof === l || P.$$typeof === u || P.$$typeof === p || P.$$typeof === y || P.$$typeof === R || P.$$typeof === O || P.$$typeof === Q);
96
+ return typeof P == "string" || typeof P == "function" || P === r || P === d || P === a || P === s || P === E || P === h || typeof P == "object" && P !== null && (P.$$typeof === B || P.$$typeof === I || P.$$typeof === l || P.$$typeof === u || P.$$typeof === p || P.$$typeof === v || P.$$typeof === R || P.$$typeof === O || P.$$typeof === Q);
97
97
  }, $e.typeOf = w, $e;
98
98
  }
99
99
  var et = {};
@@ -108,10 +108,10 @@ var et = {};
108
108
  var oh;
109
109
  function QS() {
110
110
  return oh || (oh = 1, process.env.NODE_ENV !== "production" && function() {
111
- var e = typeof Symbol == "function" && Symbol.for, t = e ? Symbol.for("react.element") : 60103, n = e ? Symbol.for("react.portal") : 60106, r = e ? Symbol.for("react.fragment") : 60107, s = e ? Symbol.for("react.strict_mode") : 60108, a = e ? Symbol.for("react.profiler") : 60114, l = e ? Symbol.for("react.provider") : 60109, u = e ? Symbol.for("react.context") : 60110, g = e ? Symbol.for("react.async_mode") : 60111, d = e ? Symbol.for("react.concurrent_mode") : 60111, p = e ? Symbol.for("react.forward_ref") : 60112, E = e ? Symbol.for("react.suspense") : 60113, h = e ? Symbol.for("react.suspense_list") : 60120, I = e ? Symbol.for("react.memo") : 60115, B = e ? Symbol.for("react.lazy") : 60116, Q = e ? Symbol.for("react.block") : 60121, y = e ? Symbol.for("react.fundamental") : 60117, R = e ? Symbol.for("react.responder") : 60118, O = e ? Symbol.for("react.scope") : 60119;
111
+ var e = typeof Symbol == "function" && Symbol.for, t = e ? Symbol.for("react.element") : 60103, n = e ? Symbol.for("react.portal") : 60106, r = e ? Symbol.for("react.fragment") : 60107, s = e ? Symbol.for("react.strict_mode") : 60108, a = e ? Symbol.for("react.profiler") : 60114, l = e ? Symbol.for("react.provider") : 60109, u = e ? Symbol.for("react.context") : 60110, g = e ? Symbol.for("react.async_mode") : 60111, d = e ? Symbol.for("react.concurrent_mode") : 60111, p = e ? Symbol.for("react.forward_ref") : 60112, E = e ? Symbol.for("react.suspense") : 60113, h = e ? Symbol.for("react.suspense_list") : 60120, I = e ? Symbol.for("react.memo") : 60115, B = e ? Symbol.for("react.lazy") : 60116, Q = e ? Symbol.for("react.block") : 60121, v = e ? Symbol.for("react.fundamental") : 60117, R = e ? Symbol.for("react.responder") : 60118, O = e ? Symbol.for("react.scope") : 60119;
112
112
  function w(re) {
113
113
  return typeof re == "string" || typeof re == "function" || // Note: its typeof might be other than 'symbol' or 'number' if it's a polyfill.
114
- re === r || re === d || re === a || re === s || re === E || re === h || typeof re == "object" && re !== null && (re.$$typeof === B || re.$$typeof === I || re.$$typeof === l || re.$$typeof === u || re.$$typeof === p || re.$$typeof === y || re.$$typeof === R || re.$$typeof === O || re.$$typeof === Q);
114
+ re === r || re === d || re === a || re === s || re === E || re === h || typeof re == "object" && re !== null && (re.$$typeof === B || re.$$typeof === I || re.$$typeof === l || re.$$typeof === u || re.$$typeof === p || re.$$typeof === v || re.$$typeof === R || re.$$typeof === O || re.$$typeof === Q);
115
115
  }
116
116
  function x(re) {
117
117
  if (typeof re == "object" && re !== null) {
@@ -359,7 +359,7 @@ function bS() {
359
359
  this.message = F, this.data = k && typeof k == "object" ? k : {}, this.stack = "";
360
360
  }
361
361
  Q.prototype = Error.prototype;
362
- function y(F) {
362
+ function v(F) {
363
363
  if (process.env.NODE_ENV !== "production")
364
364
  var k = {}, ne = 0;
365
365
  function ae(ge, Ae, Ie, Ce, de, Be, ke) {
@@ -394,10 +394,10 @@ function bS() {
394
394
  }
395
395
  return null;
396
396
  }
397
- return y(k);
397
+ return v(k);
398
398
  }
399
399
  function O() {
400
- return y(l);
400
+ return v(l);
401
401
  }
402
402
  function w(F) {
403
403
  function k(ne, ae, le, ge, Ae) {
@@ -415,7 +415,7 @@ function bS() {
415
415
  }
416
416
  return null;
417
417
  }
418
- return y(k);
418
+ return v(k);
419
419
  }
420
420
  function x() {
421
421
  function F(k, ne, ae, le, ge) {
@@ -426,7 +426,7 @@ function bS() {
426
426
  }
427
427
  return null;
428
428
  }
429
- return y(F);
429
+ return v(F);
430
430
  }
431
431
  function P() {
432
432
  function F(k, ne, ae, le, ge) {
@@ -437,7 +437,7 @@ function bS() {
437
437
  }
438
438
  return null;
439
439
  }
440
- return y(F);
440
+ return v(F);
441
441
  }
442
442
  function N(F) {
443
443
  function k(ne, ae, le, ge, Ae) {
@@ -447,7 +447,7 @@ function bS() {
447
447
  }
448
448
  return null;
449
449
  }
450
- return y(k);
450
+ return v(k);
451
451
  }
452
452
  function U(F) {
453
453
  if (!Array.isArray(F))
@@ -464,7 +464,7 @@ function bS() {
464
464
  });
465
465
  return new Q("Invalid " + ge + " `" + Ae + "` of value `" + String(Ie) + "` " + ("supplied to `" + le + "`, expected one of " + de + "."));
466
466
  }
467
- return y(k);
467
+ return v(k);
468
468
  }
469
469
  function Z(F) {
470
470
  function k(ne, ae, le, ge, Ae) {
@@ -481,7 +481,7 @@ function bS() {
481
481
  }
482
482
  return null;
483
483
  }
484
- return y(k);
484
+ return v(k);
485
485
  }
486
486
  function $(F) {
487
487
  if (!Array.isArray(F))
@@ -503,13 +503,13 @@ function bS() {
503
503
  var lt = de.length > 0 ? ", expected one of type [" + de.join(", ") + "]" : "";
504
504
  return new Q("Invalid " + Ie + " `" + Ce + "` supplied to " + ("`" + Ae + "`" + lt + "."));
505
505
  }
506
- return y(ae);
506
+ return v(ae);
507
507
  }
508
508
  function G() {
509
509
  function F(k, ne, ae, le, ge) {
510
510
  return j(k[ne]) ? null : new Q("Invalid " + le + " `" + ge + "` supplied to " + ("`" + ae + "`, expected a ReactNode."));
511
511
  }
512
- return y(F);
512
+ return v(F);
513
513
  }
514
514
  function ue(F, k, ne, ae, le) {
515
515
  return new Q(
@@ -531,7 +531,7 @@ function bS() {
531
531
  }
532
532
  return null;
533
533
  }
534
- return y(k);
534
+ return v(k);
535
535
  }
536
536
  function te(F) {
537
537
  function k(ne, ae, le, ge, Ae) {
@@ -554,7 +554,7 @@ Valid keys: ` + JSON.stringify(Object.keys(F), null, " ")
554
554
  }
555
555
  return null;
556
556
  }
557
- return y(k);
557
+ return v(k);
558
558
  }
559
559
  function j(F) {
560
560
  switch (typeof F) {
@@ -788,27 +788,27 @@ function kS() {
788
788
  gh = 1;
789
789
  var e = Symbol.for("react.element"), t = Symbol.for("react.portal"), n = Symbol.for("react.fragment"), r = Symbol.for("react.strict_mode"), s = Symbol.for("react.profiler"), a = Symbol.for("react.provider"), l = Symbol.for("react.context"), u = Symbol.for("react.server_context"), g = Symbol.for("react.forward_ref"), d = Symbol.for("react.suspense"), p = Symbol.for("react.suspense_list"), E = Symbol.for("react.memo"), h = Symbol.for("react.lazy"), I = Symbol.for("react.offscreen"), B;
790
790
  B = Symbol.for("react.module.reference");
791
- function Q(y) {
792
- if (typeof y == "object" && y !== null) {
793
- var R = y.$$typeof;
791
+ function Q(v) {
792
+ if (typeof v == "object" && v !== null) {
793
+ var R = v.$$typeof;
794
794
  switch (R) {
795
795
  case e:
796
- switch (y = y.type, y) {
796
+ switch (v = v.type, v) {
797
797
  case n:
798
798
  case s:
799
799
  case r:
800
800
  case d:
801
801
  case p:
802
- return y;
802
+ return v;
803
803
  default:
804
- switch (y = y && y.$$typeof, y) {
804
+ switch (v = v && v.$$typeof, v) {
805
805
  case u:
806
806
  case l:
807
807
  case g:
808
808
  case h:
809
809
  case E:
810
810
  case a:
811
- return y;
811
+ return v;
812
812
  default:
813
813
  return R;
814
814
  }
@@ -822,32 +822,32 @@ function kS() {
822
822
  return !1;
823
823
  }, tt.isConcurrentMode = function() {
824
824
  return !1;
825
- }, tt.isContextConsumer = function(y) {
826
- return Q(y) === l;
827
- }, tt.isContextProvider = function(y) {
828
- return Q(y) === a;
829
- }, tt.isElement = function(y) {
830
- return typeof y == "object" && y !== null && y.$$typeof === e;
831
- }, tt.isForwardRef = function(y) {
832
- return Q(y) === g;
833
- }, tt.isFragment = function(y) {
834
- return Q(y) === n;
835
- }, tt.isLazy = function(y) {
836
- return Q(y) === h;
837
- }, tt.isMemo = function(y) {
838
- return Q(y) === E;
839
- }, tt.isPortal = function(y) {
840
- return Q(y) === t;
841
- }, tt.isProfiler = function(y) {
842
- return Q(y) === s;
843
- }, tt.isStrictMode = function(y) {
844
- return Q(y) === r;
845
- }, tt.isSuspense = function(y) {
846
- return Q(y) === d;
847
- }, tt.isSuspenseList = function(y) {
848
- return Q(y) === p;
849
- }, tt.isValidElementType = function(y) {
850
- return typeof y == "string" || typeof y == "function" || y === n || y === s || y === r || y === d || y === p || y === I || typeof y == "object" && y !== null && (y.$$typeof === h || y.$$typeof === E || y.$$typeof === a || y.$$typeof === l || y.$$typeof === g || y.$$typeof === B || y.getModuleId !== void 0);
825
+ }, tt.isContextConsumer = function(v) {
826
+ return Q(v) === l;
827
+ }, tt.isContextProvider = function(v) {
828
+ return Q(v) === a;
829
+ }, tt.isElement = function(v) {
830
+ return typeof v == "object" && v !== null && v.$$typeof === e;
831
+ }, tt.isForwardRef = function(v) {
832
+ return Q(v) === g;
833
+ }, tt.isFragment = function(v) {
834
+ return Q(v) === n;
835
+ }, tt.isLazy = function(v) {
836
+ return Q(v) === h;
837
+ }, tt.isMemo = function(v) {
838
+ return Q(v) === E;
839
+ }, tt.isPortal = function(v) {
840
+ return Q(v) === t;
841
+ }, tt.isProfiler = function(v) {
842
+ return Q(v) === s;
843
+ }, tt.isStrictMode = function(v) {
844
+ return Q(v) === r;
845
+ }, tt.isSuspense = function(v) {
846
+ return Q(v) === d;
847
+ }, tt.isSuspenseList = function(v) {
848
+ return Q(v) === p;
849
+ }, tt.isValidElementType = function(v) {
850
+ return typeof v == "string" || typeof v == "function" || v === n || v === s || v === r || v === d || v === p || v === I || typeof v == "object" && v !== null && (v.$$typeof === h || v.$$typeof === E || v.$$typeof === a || v.$$typeof === l || v.$$typeof === g || v.$$typeof === B || v.getModuleId !== void 0);
851
851
  }, tt.typeOf = Q, tt;
852
852
  }
853
853
  var nt = {};
@@ -863,10 +863,10 @@ var nt = {};
863
863
  var dh;
864
864
  function FS() {
865
865
  return dh || (dh = 1, process.env.NODE_ENV !== "production" && function() {
866
- var e = Symbol.for("react.element"), t = Symbol.for("react.portal"), n = Symbol.for("react.fragment"), r = Symbol.for("react.strict_mode"), s = Symbol.for("react.profiler"), a = Symbol.for("react.provider"), l = Symbol.for("react.context"), u = Symbol.for("react.server_context"), g = Symbol.for("react.forward_ref"), d = Symbol.for("react.suspense"), p = Symbol.for("react.suspense_list"), E = Symbol.for("react.memo"), h = Symbol.for("react.lazy"), I = Symbol.for("react.offscreen"), B = !1, Q = !1, y = !1, R = !1, O = !1, w;
866
+ var e = Symbol.for("react.element"), t = Symbol.for("react.portal"), n = Symbol.for("react.fragment"), r = Symbol.for("react.strict_mode"), s = Symbol.for("react.profiler"), a = Symbol.for("react.provider"), l = Symbol.for("react.context"), u = Symbol.for("react.server_context"), g = Symbol.for("react.forward_ref"), d = Symbol.for("react.suspense"), p = Symbol.for("react.suspense_list"), E = Symbol.for("react.memo"), h = Symbol.for("react.lazy"), I = Symbol.for("react.offscreen"), B = !1, Q = !1, v = !1, R = !1, O = !1, w;
867
867
  w = Symbol.for("react.module.reference");
868
868
  function x(se) {
869
- return !!(typeof se == "string" || typeof se == "function" || se === n || se === s || O || se === r || se === d || se === p || R || se === I || B || Q || y || typeof se == "object" && se !== null && (se.$$typeof === h || se.$$typeof === E || se.$$typeof === a || se.$$typeof === l || se.$$typeof === g || // This needs to include all possible module reference object
869
+ return !!(typeof se == "string" || typeof se == "function" || se === n || se === s || O || se === r || se === d || se === p || R || se === I || B || Q || v || typeof se == "object" && se !== null && (se.$$typeof === h || se.$$typeof === E || se.$$typeof === a || se.$$typeof === l || se.$$typeof === g || // This needs to include all possible module reference object
870
870
  // types supported by any Flight configuration anywhere since
871
871
  // we don't know which Flight build this will end up being used
872
872
  // with.
@@ -2001,8 +2001,8 @@ function nD() {
2001
2001
  else {
2002
2002
  const Q = vr({
2003
2003
  theme: a
2004
- }, B, (y) => ({
2005
- [I]: y
2004
+ }, B, (v) => ({
2005
+ [I]: v
2006
2006
  }));
2007
2007
  eD(Q, B) ? h[I] = t({
2008
2008
  sx: B,
@@ -2174,13 +2174,13 @@ function DI(e = {}) {
2174
2174
  skipSx: E,
2175
2175
  overridesResolver: h
2176
2176
  } = u, I = Ke(u, AD), B = p !== void 0 ? p : d && d !== "Root" || !1, Q = E || !1;
2177
- let y;
2178
- process.env.NODE_ENV !== "production" && g && (y = `${g}-${ED(d || "Root")}`);
2177
+ let v;
2178
+ process.env.NODE_ENV !== "production" && g && (v = `${g}-${ED(d || "Root")}`);
2179
2179
  let R = _a;
2180
2180
  d === "Root" ? R = r : d ? R = s : gD(l) && (R = void 0);
2181
2181
  const O = aO(l, H({
2182
2182
  shouldForwardProp: R,
2183
- label: y
2183
+ label: v
2184
2184
  }, I)), w = (x, ...P) => {
2185
2185
  const N = P ? P.map((G) => typeof G == "function" && G.__emotion_real !== G ? (ue) => G(H({}, ue, {
2186
2186
  theme: es(H({}, ue, {
@@ -2701,26 +2701,26 @@ function WD(e) {
2701
2701
  tonalOffset: r = 0.2
2702
2702
  } = e, s = Ke(e, FD), a = e.primary || ND(t), l = e.secondary || LD(t), u = e.error || jD(t), g = e.info || HD(t), d = e.success || VD(t), p = e.warning || zD(t);
2703
2703
  function E(Q) {
2704
- const y = yh(Q, HA.text.primary) >= n ? HA.text.primary : wh.text.primary;
2704
+ const v = yh(Q, HA.text.primary) >= n ? HA.text.primary : wh.text.primary;
2705
2705
  if (process.env.NODE_ENV !== "production") {
2706
- const R = yh(Q, y);
2707
- R < 3 && console.error([`MUI: The contrast ratio of ${R}:1 for ${y} on ${Q}`, "falls below the WCAG recommended absolute minimum contrast ratio of 3:1.", "https://www.w3.org/TR/2008/REC-WCAG20-20081211/#visual-audio-contrast-contrast"].join(`
2706
+ const R = yh(Q, v);
2707
+ R < 3 && console.error([`MUI: The contrast ratio of ${R}:1 for ${v} on ${Q}`, "falls below the WCAG recommended absolute minimum contrast ratio of 3:1.", "https://www.w3.org/TR/2008/REC-WCAG20-20081211/#visual-audio-contrast-contrast"].join(`
2708
2708
  `));
2709
2709
  }
2710
- return y;
2710
+ return v;
2711
2711
  }
2712
2712
  const h = ({
2713
2713
  color: Q,
2714
- name: y,
2714
+ name: v,
2715
2715
  mainShade: R = 500,
2716
2716
  lightShade: O = 300,
2717
2717
  darkShade: w = 700
2718
2718
  }) => {
2719
2719
  if (Q = H({}, Q), !Q.main && Q[R] && (Q.main = Q[R]), !Q.hasOwnProperty("main"))
2720
- throw new Error(process.env.NODE_ENV !== "production" ? `MUI: The color${y ? ` (${y})` : ""} provided to augmentColor(color) is invalid.
2721
- The color object needs to have a \`main\` property or a \`${R}\` property.` : xi(11, y ? ` (${y})` : "", R));
2720
+ throw new Error(process.env.NODE_ENV !== "production" ? `MUI: The color${v ? ` (${v})` : ""} provided to augmentColor(color) is invalid.
2721
+ The color object needs to have a \`main\` property or a \`${R}\` property.` : xi(11, v ? ` (${v})` : "", R));
2722
2722
  if (typeof Q.main != "string")
2723
- throw new Error(process.env.NODE_ENV !== "production" ? `MUI: The color${y ? ` (${y})` : ""} provided to augmentColor(color) is invalid.
2723
+ throw new Error(process.env.NODE_ENV !== "production" ? `MUI: The color${v ? ` (${v})` : ""} provided to augmentColor(color) is invalid.
2724
2724
  \`color.main\` should be a string, but \`${JSON.stringify(Q.main)}\` was provided instead.
2725
2725
 
2726
2726
  Did you intend to use one of the following approaches?
@@ -2733,7 +2733,7 @@ const theme1 = createTheme({ palette: {
2733
2733
 
2734
2734
  const theme2 = createTheme({ palette: {
2735
2735
  primary: { main: green[500] },
2736
- } });` : xi(12, y ? ` (${y})` : "", JSON.stringify(Q.main)));
2736
+ } });` : xi(12, v ? ` (${v})` : "", JSON.stringify(Q.main)));
2737
2737
  return Th(Q, "light", O, r), Th(Q, "dark", w, r), Q.contrastText || (Q.contrastText = E(Q.main)), Q;
2738
2738
  }, I = {
2739
2739
  dark: HA,
@@ -2826,7 +2826,7 @@ function GD(e, t) {
2826
2826
  lineHeight: w
2827
2827
  }, r === Rh ? {
2828
2828
  letterSpacing: `${YD(x / O)}em`
2829
- } : {}, P, p), y = {
2829
+ } : {}, P, p), v = {
2830
2830
  h1: Q(a, 96, 1.167, -1.5),
2831
2831
  h2: Q(a, 60, 1.2, -0.5),
2832
2832
  h3: Q(l, 48, 1.167, 0),
@@ -2857,7 +2857,7 @@ function GD(e, t) {
2857
2857
  fontWeightRegular: l,
2858
2858
  fontWeightMedium: u,
2859
2859
  fontWeightBold: g
2860
- }, y), h, {
2860
+ }, v), h, {
2861
2861
  clone: !1
2862
2862
  // No need to clone deep
2863
2863
  });
@@ -2955,10 +2955,10 @@ function wg(e = {}, ...t) {
2955
2955
  const Q = h[B];
2956
2956
  if (p.indexOf(B) !== -1 && Object.keys(Q).length > 0) {
2957
2957
  if (process.env.NODE_ENV !== "production") {
2958
- const y = Ut("", B);
2959
- console.error([`MUI: The \`${I}\` component increases the CSS specificity of the \`${B}\` internal state.`, "You can not override it like this: ", JSON.stringify(h, null, 2), "", `Instead, you need to use the '&.${y}' syntax:`, JSON.stringify({
2958
+ const v = Ut("", B);
2959
+ console.error([`MUI: The \`${I}\` component increases the CSS specificity of the \`${B}\` internal state.`, "You can not override it like this: ", JSON.stringify(h, null, 2), "", `Instead, you need to use the '&.${v}' syntax:`, JSON.stringify({
2960
2960
  root: {
2961
- [`&.${y}`]: Q
2961
+ [`&.${v}`]: Q
2962
2962
  }
2963
2963
  }, null, 2), "", "https://mui.com/r/state-classes-guide"].join(`
2964
2964
  `));
@@ -3334,9 +3334,9 @@ var al = { exports: {} };
3334
3334
  al.exports;
3335
3335
  (function(e, t) {
3336
3336
  (function() {
3337
- var n, r = "4.17.21", s = 200, a = "Unsupported core-js use. Try https://npms.io/search?q=ponyfill.", l = "Expected a function", u = "Invalid `variable` option passed into `_.template`", g = "__lodash_hash_undefined__", d = 500, p = "__lodash_placeholder__", E = 1, h = 2, I = 4, B = 1, Q = 2, y = 1, R = 2, O = 4, w = 8, x = 16, P = 32, N = 64, U = 128, Z = 256, $ = 512, G = 30, ue = "...", Ee = 800, te = 16, j = 1, L = 2, K = 3, W = 1 / 0, q = 9007199254740991, X = 17976931348623157e292, F = 0 / 0, k = 4294967295, ne = k - 1, ae = k >>> 1, le = [
3337
+ var n, r = "4.17.21", s = 200, a = "Unsupported core-js use. Try https://npms.io/search?q=ponyfill.", l = "Expected a function", u = "Invalid `variable` option passed into `_.template`", g = "__lodash_hash_undefined__", d = 500, p = "__lodash_placeholder__", E = 1, h = 2, I = 4, B = 1, Q = 2, v = 1, R = 2, O = 4, w = 8, x = 16, P = 32, N = 64, U = 128, Z = 256, $ = 512, G = 30, ue = "...", Ee = 800, te = 16, j = 1, L = 2, K = 3, W = 1 / 0, q = 9007199254740991, X = 17976931348623157e292, F = 0 / 0, k = 4294967295, ne = k - 1, ae = k >>> 1, le = [
3338
3338
  ["ary", U],
3339
- ["bind", y],
3339
+ ["bind", v],
3340
3340
  ["bindKey", R],
3341
3341
  ["curry", w],
3342
3342
  ["curryRight", x],
@@ -3890,7 +3890,7 @@ al.exports;
3890
3890
  } catch {
3891
3891
  }
3892
3892
  }(), Gv = Y.clearTimeout !== Vt.clearTimeout && Y.clearTimeout, Kv = fe && fe.now !== Vt.Date.now && fe.now, qv = Y.setTimeout !== Vt.setTimeout && Y.setTimeout, ia = Ot.ceil, sa = Ot.floor, Lc = st.getOwnPropertySymbols, _v = ea ? ea.isBuffer : n, pf = Y.isFinite, Jv = Js.join, Xv = lf(st.keys, st), Dt = Ot.max, Yt = Ot.min, Zv = fe.now, $v = Y.parseInt, hf = Ot.random, eb = Js.reverse, jc = fo(Y, "DataView"), Vi = fo(Y, "Map"), Hc = fo(Y, "Promise"), Go = fo(Y, "Set"), zi = fo(Y, "WeakMap"), Wi = fo(st, "create"), aa = zi && new zi(), Ko = {}, tb = po(jc), nb = po(Vi), rb = po(Hc), ob = po(Go), ib = po(zi), la = Dr ? Dr.prototype : n, Ui = la ? la.valueOf : n, Ef = la ? la.toString : n;
3893
- function v(o) {
3893
+ function y(o) {
3894
3894
  if (Qt(o) && !De(o) && !(o instanceof We)) {
3895
3895
  if (o instanceof kn)
3896
3896
  return o;
@@ -3917,7 +3917,7 @@ al.exports;
3917
3917
  function kn(o, i) {
3918
3918
  this.__wrapped__ = o, this.__actions__ = [], this.__chain__ = !!i, this.__index__ = 0, this.__values__ = n;
3919
3919
  }
3920
- v.templateSettings = {
3920
+ y.templateSettings = {
3921
3921
  /**
3922
3922
  * Used to detect `data` property values to be HTML-escaped.
3923
3923
  *
@@ -3959,9 +3959,9 @@ al.exports;
3959
3959
  * @memberOf _.templateSettings.imports
3960
3960
  * @type {Function}
3961
3961
  */
3962
- _: v
3962
+ _: y
3963
3963
  }
3964
- }, v.prototype = ca.prototype, v.prototype.constructor = v, kn.prototype = qo(ca.prototype), kn.prototype.constructor = kn;
3964
+ }, y.prototype = ca.prototype, y.prototype.constructor = y, kn.prototype = qo(ca.prototype), kn.prototype.constructor = kn;
3965
3965
  function We(o) {
3966
3966
  this.__wrapped__ = o, this.__actions__ = [], this.__dir__ = 1, this.__filtered__ = !1, this.__iteratees__ = [], this.__takeCount__ = k, this.__views__ = [];
3967
3967
  }
@@ -4882,7 +4882,7 @@ al.exports;
4882
4882
  };
4883
4883
  }
4884
4884
  function gx(o, i, A) {
4885
- var f = i & y, m = Ji(o);
4885
+ var f = i & v, m = Ji(o);
4886
4886
  function b() {
4887
4887
  var T = this && this !== Vt && this instanceof b ? m : o;
4888
4888
  return T.apply(f ? A : this, arguments);
@@ -4989,7 +4989,7 @@ al.exports;
4989
4989
  });
4990
4990
  }
4991
4991
  function Ea(o, i, A, f, m, b, T, S, M, _) {
4992
- var J = i & U, ee = i & y, ce = i & R, he = i & (w | x), xe = i & $, Le = ce ? n : Ji(o);
4992
+ var J = i & U, ee = i & v, ce = i & R, he = i & (w | x), xe = i & $, Le = ce ? n : Ji(o);
4993
4993
  function we() {
4994
4994
  for (var Ve = arguments.length, Ge = V(Ve), mn = Ve; mn--; )
4995
4995
  Ge[mn] = arguments[mn];
@@ -5052,7 +5052,7 @@ al.exports;
5052
5052
  return zo(i) ? Nr(Gn(f), 0, o).join("") : f.slice(0, o);
5053
5053
  }
5054
5054
  function fx(o, i, A, f) {
5055
- var m = i & y, b = Ji(o);
5055
+ var m = i & v, b = Ji(o);
5056
5056
  function T() {
5057
5057
  for (var S = -1, M = arguments.length, _ = -1, J = f.length, ee = V(J + M), ce = this && this !== Vt && this instanceof T ? b : o; ++_ < J; )
5058
5058
  ee[_] = f[_];
@@ -5074,7 +5074,7 @@ al.exports;
5074
5074
  }
5075
5075
  function np(o, i, A, f, m, b, T, S, M, _) {
5076
5076
  var J = i & w, ee = J ? T : n, ce = J ? n : T, he = J ? b : n, xe = J ? n : b;
5077
- i |= J ? P : N, i &= ~(J ? N : P), i & O || (i &= ~(y | R));
5077
+ i |= J ? P : N, i &= ~(J ? N : P), i & O || (i &= ~(v | R));
5078
5078
  var Le = [
5079
5079
  o,
5080
5080
  i,
@@ -5129,10 +5129,10 @@ al.exports;
5129
5129
  T,
5130
5130
  S
5131
5131
  ];
5132
- if (ce && Rx(he, ce), o = he[0], i = he[1], A = he[2], f = he[3], m = he[4], S = he[9] = he[9] === n ? M ? 0 : o.length : Dt(he[9] - _, 0), !S && i & (w | x) && (i &= ~(w | x)), !i || i == y)
5132
+ if (ce && Rx(he, ce), o = he[0], i = he[1], A = he[2], f = he[3], m = he[4], S = he[9] = he[9] === n ? M ? 0 : o.length : Dt(he[9] - _, 0), !S && i & (w | x) && (i &= ~(w | x)), !i || i == v)
5133
5133
  var xe = gx(o, i, A);
5134
5134
  else
5135
- i == w || i == x ? xe = dx(o, i, S) : (i == P || i == (y | P)) && !m.length ? xe = fx(o, i, A, f) : xe = Ea.apply(n, he);
5135
+ i == w || i == x ? xe = dx(o, i, S) : (i == P || i == (v | P)) && !m.length ? xe = fx(o, i, A, f) : xe = Ea.apply(n, he);
5136
5136
  var Le = ce ? Nf : fp;
5137
5137
  return pp(Le(xe, he), o, i);
5138
5138
  }
@@ -5265,11 +5265,11 @@ al.exports;
5265
5265
  return i;
5266
5266
  }
5267
5267
  function Xo(o) {
5268
- var i = ot.call(v, "placeholder") ? v : o;
5268
+ var i = ot.call(y, "placeholder") ? y : o;
5269
5269
  return i.placeholder;
5270
5270
  }
5271
5271
  function be() {
5272
- var o = v.iteratee || xA;
5272
+ var o = y.iteratee || xA;
5273
5273
  return o = o === xA ? Pf : o, arguments.length ? o(arguments[0], arguments[1]) : o;
5274
5274
  }
5275
5275
  function Qa(o, i) {
@@ -5430,7 +5430,7 @@ al.exports;
5430
5430
  return i == "string" || i == "number" || i == "symbol" || i == "boolean" ? o !== "__proto__" : o === null;
5431
5431
  }
5432
5432
  function dA(o) {
5433
- var i = ma(o), A = v[i];
5433
+ var i = ma(o), A = y[i];
5434
5434
  if (typeof A != "function" || !(i in We.prototype))
5435
5435
  return !1;
5436
5436
  if (o === A)
@@ -5461,10 +5461,10 @@ al.exports;
5461
5461
  return i;
5462
5462
  }
5463
5463
  function Rx(o, i) {
5464
- var A = o[1], f = i[1], m = A | f, b = m < (y | R | U), T = f == U && A == w || f == U && A == Z && o[7].length <= i[8] || f == (U | Z) && i[7].length <= i[8] && A == w;
5464
+ var A = o[1], f = i[1], m = A | f, b = m < (v | R | U), T = f == U && A == w || f == U && A == Z && o[7].length <= i[8] || f == (U | Z) && i[7].length <= i[8] && A == w;
5465
5465
  if (!(b || T))
5466
5466
  return o;
5467
- f & y && (o[2] = i[2], m |= A & y ? 0 : O);
5467
+ f & v && (o[2] = i[2], m |= A & v ? 0 : O);
5468
5468
  var S = i[3];
5469
5469
  if (S) {
5470
5470
  var M = o[3];
@@ -5841,7 +5841,7 @@ al.exports;
5841
5841
  return A = typeof A == "function" ? (o.pop(), A) : n, vp(o, A);
5842
5842
  });
5843
5843
  function bp(o) {
5844
- var i = v(o);
5844
+ var i = y(o);
5845
5845
  return i.__chain__ = !0, i;
5846
5846
  }
5847
5847
  function F1(o, i) {
@@ -6022,14 +6022,14 @@ al.exports;
6022
6022
  };
6023
6023
  }
6024
6024
  var CA = je(function(o, i, A) {
6025
- var f = y;
6025
+ var f = v;
6026
6026
  if (A.length) {
6027
6027
  var m = Or(A, Xo(CA));
6028
6028
  f |= P;
6029
6029
  }
6030
6030
  return ur(o, f, i, A, m);
6031
6031
  }), Rp = je(function(o, i, A) {
6032
- var f = y | R;
6032
+ var f = v | R;
6033
6033
  if (A.length) {
6034
6034
  var m = Or(A, Xo(Rp));
6035
6035
  f |= P;
@@ -6628,7 +6628,7 @@ al.exports;
6628
6628
  return o = Ze(o), A = A == null ? 0 : uo(Fe(A), 0, o.length), i = In(i), o.slice(A, A + i.length) == i;
6629
6629
  }
6630
6630
  function $T(o, i, A) {
6631
- var f = v.templateSettings;
6631
+ var f = y.templateSettings;
6632
6632
  A && nn(o, i, A) && (i = n), o = Ze(o), i = Sa({}, i, f, op);
6633
6633
  var m = Sa({}, i.imports, f.imports, op), b = Nt(m), T = kc(m, b), S, M, _ = 0, J = i.interpolate || Us, ee = "__p += '", ce = Nc(
6634
6634
  (i.escape || Us).source + "|" + J.source + "|" + (J === bd ? Oy : Us).source + "|" + (i.evaluate || Us).source + "|$",
@@ -6898,13 +6898,13 @@ function print() { __p += __j.call(arguments, '') }
6898
6898
  function GP(o, i) {
6899
6899
  return o && o.length ? Dc(o, be(i, 2)) : 0;
6900
6900
  }
6901
- return v.after = fw, v.ary = Tp, v.assign = tT, v.assignIn = zp, v.assignInWith = Sa, v.assignWith = nT, v.at = rT, v.before = Pp, v.bind = CA, v.bindAll = lP, v.bindKey = Rp, v.castArray = xw, v.chain = bp, v.chunk = kx, v.compact = Fx, v.concat = Nx, v.cond = cP, v.conforms = AP, v.constant = bA, v.countBy = Y1, v.create = oT, v.curry = Sp, v.curryRight = Op, v.debounce = Dp, v.defaults = iT, v.defaultsDeep = sT, v.defer = pw, v.delay = hw, v.difference = Lx, v.differenceBy = jx, v.differenceWith = Hx, v.drop = Vx, v.dropRight = zx, v.dropRightWhile = Wx, v.dropWhile = Ux, v.fill = Yx, v.filter = K1, v.flatMap = J1, v.flatMapDeep = X1, v.flatMapDepth = Z1, v.flatten = mp, v.flattenDeep = Gx, v.flattenDepth = Kx, v.flip = Ew, v.flow = gP, v.flowRight = dP, v.fromPairs = qx, v.functions = dT, v.functionsIn = fT, v.groupBy = $1, v.initial = Jx, v.intersection = Xx, v.intersectionBy = Zx, v.intersectionWith = $x, v.invert = hT, v.invertBy = ET, v.invokeMap = tw, v.iteratee = xA, v.keyBy = nw, v.keys = Nt, v.keysIn = An, v.map = ba, v.mapKeys = IT, v.mapValues = BT, v.matches = fP, v.matchesProperty = pP, v.memoize = wa, v.merge = mT, v.mergeWith = Wp, v.method = hP, v.methodOf = EP, v.mixin = wA, v.negate = Ta, v.nthArg = IP, v.omit = QT, v.omitBy = yT, v.once = Cw, v.orderBy = rw, v.over = BP, v.overArgs = Iw, v.overEvery = mP, v.overSome = QP, v.partial = IA, v.partialRight = Mp, v.partition = ow, v.pick = vT, v.pickBy = Up, v.property = Xp, v.propertyOf = yP, v.pull = r1, v.pullAll = yp, v.pullAllBy = o1, v.pullAllWith = i1, v.pullAt = s1, v.range = vP, v.rangeRight = bP, v.rearg = Bw, v.reject = aw, v.remove = a1, v.rest = mw, v.reverse = hA, v.sampleSize = cw, v.set = xT, v.setWith = wT, v.shuffle = Aw, v.slice = l1, v.sortBy = dw, v.sortedUniq = p1, v.sortedUniqBy = h1, v.split = JT, v.spread = Qw, v.tail = E1, v.take = C1, v.takeRight = I1, v.takeRightWhile = B1, v.takeWhile = m1, v.tap = F1, v.throttle = yw, v.thru = va, v.toArray = jp, v.toPairs = Yp, v.toPairsIn = Gp, v.toPath = RP, v.toPlainObject = Vp, v.transform = TT, v.unary = vw, v.union = Q1, v.unionBy = y1, v.unionWith = v1, v.uniq = b1, v.uniqBy = x1, v.uniqWith = w1, v.unset = PT, v.unzip = EA, v.unzipWith = vp, v.update = RT, v.updateWith = ST, v.values = $o, v.valuesIn = OT, v.without = T1, v.words = _p, v.wrap = bw, v.xor = P1, v.xorBy = R1, v.xorWith = S1, v.zip = O1, v.zipObject = D1, v.zipObjectDeep = M1, v.zipWith = k1, v.entries = Yp, v.entriesIn = Gp, v.extend = zp, v.extendWith = Sa, wA(v, v), v.add = OP, v.attempt = Jp, v.camelCase = FT, v.capitalize = Kp, v.ceil = DP, v.clamp = DT, v.clone = ww, v.cloneDeep = Pw, v.cloneDeepWith = Rw, v.cloneWith = Tw, v.conformsTo = Sw, v.deburr = qp, v.defaultTo = uP, v.divide = MP, v.endsWith = NT, v.eq = qn, v.escape = LT, v.escapeRegExp = jT, v.every = G1, v.find = q1, v.findIndex = Ip, v.findKey = aT, v.findLast = _1, v.findLastIndex = Bp, v.findLastKey = lT, v.floor = kP, v.forEach = xp, v.forEachRight = wp, v.forIn = cT, v.forInRight = AT, v.forOwn = uT, v.forOwnRight = gT, v.get = QA, v.gt = Ow, v.gte = Dw, v.has = pT, v.hasIn = yA, v.head = Qp, v.identity = un, v.includes = ew, v.indexOf = _x, v.inRange = MT, v.invoke = CT, v.isArguments = ho, v.isArray = De, v.isArrayBuffer = Mw, v.isArrayLike = cn, v.isArrayLikeObject = wt, v.isBoolean = kw, v.isBuffer = Lr, v.isDate = Fw, v.isElement = Nw, v.isEmpty = Lw, v.isEqual = jw, v.isEqualWith = Hw, v.isError = BA, v.isFinite = Vw, v.isFunction = fr, v.isInteger = kp, v.isLength = Pa, v.isMap = Fp, v.isMatch = zw, v.isMatchWith = Ww, v.isNaN = Uw, v.isNative = Yw, v.isNil = Kw, v.isNull = Gw, v.isNumber = Np, v.isObject = Ct, v.isObjectLike = Qt, v.isPlainObject = $i, v.isRegExp = mA, v.isSafeInteger = qw, v.isSet = Lp, v.isString = Ra, v.isSymbol = Bn, v.isTypedArray = Zo, v.isUndefined = _w, v.isWeakMap = Jw, v.isWeakSet = Xw, v.join = e1, v.kebabCase = HT, v.last = Ln, v.lastIndexOf = t1, v.lowerCase = VT, v.lowerFirst = zT, v.lt = Zw, v.lte = $w, v.max = FP, v.maxBy = NP, v.mean = LP, v.meanBy = jP, v.min = HP, v.minBy = VP, v.stubArray = PA, v.stubFalse = RA, v.stubObject = xP, v.stubString = wP, v.stubTrue = TP, v.multiply = zP, v.nth = n1, v.noConflict = CP, v.noop = TA, v.now = xa, v.pad = WT, v.padEnd = UT, v.padStart = YT, v.parseInt = GT, v.random = kT, v.reduce = iw, v.reduceRight = sw, v.repeat = KT, v.replace = qT, v.result = bT, v.round = WP, v.runInContext = D, v.sample = lw, v.size = uw, v.snakeCase = _T, v.some = gw, v.sortedIndex = c1, v.sortedIndexBy = A1, v.sortedIndexOf = u1, v.sortedLastIndex = g1, v.sortedLastIndexBy = d1, v.sortedLastIndexOf = f1, v.startCase = XT, v.startsWith = ZT, v.subtract = UP, v.sum = YP, v.sumBy = GP, v.template = $T, v.times = PP, v.toFinite = pr, v.toInteger = Fe, v.toLength = Hp, v.toLower = eP, v.toNumber = jn, v.toSafeInteger = eT, v.toString = Ze, v.toUpper = tP, v.trim = nP, v.trimEnd = rP, v.trimStart = oP, v.truncate = iP, v.unescape = sP, v.uniqueId = SP, v.upperCase = aP, v.upperFirst = vA, v.each = xp, v.eachRight = wp, v.first = Qp, wA(v, function() {
6901
+ return y.after = fw, y.ary = Tp, y.assign = tT, y.assignIn = zp, y.assignInWith = Sa, y.assignWith = nT, y.at = rT, y.before = Pp, y.bind = CA, y.bindAll = lP, y.bindKey = Rp, y.castArray = xw, y.chain = bp, y.chunk = kx, y.compact = Fx, y.concat = Nx, y.cond = cP, y.conforms = AP, y.constant = bA, y.countBy = Y1, y.create = oT, y.curry = Sp, y.curryRight = Op, y.debounce = Dp, y.defaults = iT, y.defaultsDeep = sT, y.defer = pw, y.delay = hw, y.difference = Lx, y.differenceBy = jx, y.differenceWith = Hx, y.drop = Vx, y.dropRight = zx, y.dropRightWhile = Wx, y.dropWhile = Ux, y.fill = Yx, y.filter = K1, y.flatMap = J1, y.flatMapDeep = X1, y.flatMapDepth = Z1, y.flatten = mp, y.flattenDeep = Gx, y.flattenDepth = Kx, y.flip = Ew, y.flow = gP, y.flowRight = dP, y.fromPairs = qx, y.functions = dT, y.functionsIn = fT, y.groupBy = $1, y.initial = Jx, y.intersection = Xx, y.intersectionBy = Zx, y.intersectionWith = $x, y.invert = hT, y.invertBy = ET, y.invokeMap = tw, y.iteratee = xA, y.keyBy = nw, y.keys = Nt, y.keysIn = An, y.map = ba, y.mapKeys = IT, y.mapValues = BT, y.matches = fP, y.matchesProperty = pP, y.memoize = wa, y.merge = mT, y.mergeWith = Wp, y.method = hP, y.methodOf = EP, y.mixin = wA, y.negate = Ta, y.nthArg = IP, y.omit = QT, y.omitBy = yT, y.once = Cw, y.orderBy = rw, y.over = BP, y.overArgs = Iw, y.overEvery = mP, y.overSome = QP, y.partial = IA, y.partialRight = Mp, y.partition = ow, y.pick = vT, y.pickBy = Up, y.property = Xp, y.propertyOf = yP, y.pull = r1, y.pullAll = yp, y.pullAllBy = o1, y.pullAllWith = i1, y.pullAt = s1, y.range = vP, y.rangeRight = bP, y.rearg = Bw, y.reject = aw, y.remove = a1, y.rest = mw, y.reverse = hA, y.sampleSize = cw, y.set = xT, y.setWith = wT, y.shuffle = Aw, y.slice = l1, y.sortBy = dw, y.sortedUniq = p1, y.sortedUniqBy = h1, y.split = JT, y.spread = Qw, y.tail = E1, y.take = C1, y.takeRight = I1, y.takeRightWhile = B1, y.takeWhile = m1, y.tap = F1, y.throttle = yw, y.thru = va, y.toArray = jp, y.toPairs = Yp, y.toPairsIn = Gp, y.toPath = RP, y.toPlainObject = Vp, y.transform = TT, y.unary = vw, y.union = Q1, y.unionBy = y1, y.unionWith = v1, y.uniq = b1, y.uniqBy = x1, y.uniqWith = w1, y.unset = PT, y.unzip = EA, y.unzipWith = vp, y.update = RT, y.updateWith = ST, y.values = $o, y.valuesIn = OT, y.without = T1, y.words = _p, y.wrap = bw, y.xor = P1, y.xorBy = R1, y.xorWith = S1, y.zip = O1, y.zipObject = D1, y.zipObjectDeep = M1, y.zipWith = k1, y.entries = Yp, y.entriesIn = Gp, y.extend = zp, y.extendWith = Sa, wA(y, y), y.add = OP, y.attempt = Jp, y.camelCase = FT, y.capitalize = Kp, y.ceil = DP, y.clamp = DT, y.clone = ww, y.cloneDeep = Pw, y.cloneDeepWith = Rw, y.cloneWith = Tw, y.conformsTo = Sw, y.deburr = qp, y.defaultTo = uP, y.divide = MP, y.endsWith = NT, y.eq = qn, y.escape = LT, y.escapeRegExp = jT, y.every = G1, y.find = q1, y.findIndex = Ip, y.findKey = aT, y.findLast = _1, y.findLastIndex = Bp, y.findLastKey = lT, y.floor = kP, y.forEach = xp, y.forEachRight = wp, y.forIn = cT, y.forInRight = AT, y.forOwn = uT, y.forOwnRight = gT, y.get = QA, y.gt = Ow, y.gte = Dw, y.has = pT, y.hasIn = yA, y.head = Qp, y.identity = un, y.includes = ew, y.indexOf = _x, y.inRange = MT, y.invoke = CT, y.isArguments = ho, y.isArray = De, y.isArrayBuffer = Mw, y.isArrayLike = cn, y.isArrayLikeObject = wt, y.isBoolean = kw, y.isBuffer = Lr, y.isDate = Fw, y.isElement = Nw, y.isEmpty = Lw, y.isEqual = jw, y.isEqualWith = Hw, y.isError = BA, y.isFinite = Vw, y.isFunction = fr, y.isInteger = kp, y.isLength = Pa, y.isMap = Fp, y.isMatch = zw, y.isMatchWith = Ww, y.isNaN = Uw, y.isNative = Yw, y.isNil = Kw, y.isNull = Gw, y.isNumber = Np, y.isObject = Ct, y.isObjectLike = Qt, y.isPlainObject = $i, y.isRegExp = mA, y.isSafeInteger = qw, y.isSet = Lp, y.isString = Ra, y.isSymbol = Bn, y.isTypedArray = Zo, y.isUndefined = _w, y.isWeakMap = Jw, y.isWeakSet = Xw, y.join = e1, y.kebabCase = HT, y.last = Ln, y.lastIndexOf = t1, y.lowerCase = VT, y.lowerFirst = zT, y.lt = Zw, y.lte = $w, y.max = FP, y.maxBy = NP, y.mean = LP, y.meanBy = jP, y.min = HP, y.minBy = VP, y.stubArray = PA, y.stubFalse = RA, y.stubObject = xP, y.stubString = wP, y.stubTrue = TP, y.multiply = zP, y.nth = n1, y.noConflict = CP, y.noop = TA, y.now = xa, y.pad = WT, y.padEnd = UT, y.padStart = YT, y.parseInt = GT, y.random = kT, y.reduce = iw, y.reduceRight = sw, y.repeat = KT, y.replace = qT, y.result = bT, y.round = WP, y.runInContext = D, y.sample = lw, y.size = uw, y.snakeCase = _T, y.some = gw, y.sortedIndex = c1, y.sortedIndexBy = A1, y.sortedIndexOf = u1, y.sortedLastIndex = g1, y.sortedLastIndexBy = d1, y.sortedLastIndexOf = f1, y.startCase = XT, y.startsWith = ZT, y.subtract = UP, y.sum = YP, y.sumBy = GP, y.template = $T, y.times = PP, y.toFinite = pr, y.toInteger = Fe, y.toLength = Hp, y.toLower = eP, y.toNumber = jn, y.toSafeInteger = eT, y.toString = Ze, y.toUpper = tP, y.trim = nP, y.trimEnd = rP, y.trimStart = oP, y.truncate = iP, y.unescape = sP, y.uniqueId = SP, y.upperCase = aP, y.upperFirst = vA, y.each = xp, y.eachRight = wp, y.first = Qp, wA(y, function() {
6902
6902
  var o = {};
6903
- return Zn(v, function(i, A) {
6904
- ot.call(v.prototype, A) || (o[A] = i);
6903
+ return Zn(y, function(i, A) {
6904
+ ot.call(y.prototype, A) || (o[A] = i);
6905
6905
  }), o;
6906
- }(), { chain: !1 }), v.VERSION = r, Dn(["bind", "bindKey", "curry", "curryRight", "partial", "partialRight"], function(o) {
6907
- v[o].placeholder = v;
6906
+ }(), { chain: !1 }), y.VERSION = r, Dn(["bind", "bindKey", "curry", "curryRight", "partial", "partialRight"], function(o) {
6907
+ y[o].placeholder = y;
6908
6908
  }), Dn(["drop", "take"], function(o, i) {
6909
6909
  We.prototype[o] = function(A) {
6910
6910
  A = A === n ? 1 : Dt(Fe(A), 0);
@@ -6956,10 +6956,10 @@ function print() { __p += __j.call(arguments, '') }
6956
6956
  }, We.prototype.toArray = function() {
6957
6957
  return this.take(k);
6958
6958
  }, Zn(We.prototype, function(o, i) {
6959
- var A = /^(?:filter|find|map|reject)|While$/.test(i), f = /^(?:head|last)$/.test(i), m = v[f ? "take" + (i == "last" ? "Right" : "") : i], b = f || /^find/.test(i);
6960
- m && (v.prototype[i] = function() {
6959
+ var A = /^(?:filter|find|map|reject)|While$/.test(i), f = /^(?:head|last)$/.test(i), m = y[f ? "take" + (i == "last" ? "Right" : "") : i], b = f || /^find/.test(i);
6960
+ m && (y.prototype[i] = function() {
6961
6961
  var T = this.__wrapped__, S = f ? [1] : arguments, M = T instanceof We, _ = S[0], J = M || De(T), ee = function(Ve) {
6962
- var Ge = m.apply(v, Sr([Ve], S));
6962
+ var Ge = m.apply(y, Sr([Ve], S));
6963
6963
  return f && ce ? Ge[0] : Ge;
6964
6964
  };
6965
6965
  J && A && typeof _ == "function" && _.length != 1 && (M = J = !1);
@@ -6973,7 +6973,7 @@ function print() { __p += __j.call(arguments, '') }
6973
6973
  });
6974
6974
  }), Dn(["pop", "push", "shift", "sort", "splice", "unshift"], function(o) {
6975
6975
  var i = Js[o], A = /^(?:push|sort|unshift)$/.test(o) ? "tap" : "thru", f = /^(?:pop|shift)$/.test(o);
6976
- v.prototype[o] = function() {
6976
+ y.prototype[o] = function() {
6977
6977
  var m = arguments;
6978
6978
  if (f && !this.__chain__) {
6979
6979
  var b = this.value();
@@ -6984,7 +6984,7 @@ function print() { __p += __j.call(arguments, '') }
6984
6984
  });
6985
6985
  };
6986
6986
  }), Zn(We.prototype, function(o, i) {
6987
- var A = v[i];
6987
+ var A = y[i];
6988
6988
  if (A) {
6989
6989
  var f = A.name + "";
6990
6990
  ot.call(Ko, f) || (Ko[f] = []), Ko[f].push({ name: i, func: A });
@@ -6992,7 +6992,7 @@ function print() { __p += __j.call(arguments, '') }
6992
6992
  }), Ko[Ea(n, R).name] = [{
6993
6993
  name: "wrapper",
6994
6994
  func: n
6995
- }], We.prototype.clone = sb, We.prototype.reverse = ab, We.prototype.value = lb, v.prototype.at = N1, v.prototype.chain = L1, v.prototype.commit = j1, v.prototype.next = H1, v.prototype.plant = z1, v.prototype.reverse = W1, v.prototype.toJSON = v.prototype.valueOf = v.prototype.value = U1, v.prototype.first = v.prototype.head, Hi && (v.prototype[Hi] = V1), v;
6995
+ }], We.prototype.clone = sb, We.prototype.reverse = ab, We.prototype.value = lb, y.prototype.at = N1, y.prototype.chain = L1, y.prototype.commit = j1, y.prototype.next = H1, y.prototype.plant = z1, y.prototype.reverse = W1, y.prototype.toJSON = y.prototype.valueOf = y.prototype.value = U1, y.prototype.first = y.prototype.head, Hi && (y.prototype[Hi] = V1), y;
6996
6996
  }, Uo = jv();
6997
6997
  ao ? ((ao.exports = Uo)._ = Uo, xc._ = Uo) : Vt._ = Uo;
6998
6998
  }).call(zn);
@@ -7222,7 +7222,7 @@ const sr = () => Wt(YI), hM = ["e-", "entities/"], EM = (e) => {
7222
7222
  }, _I = (e) => e ? e.type === "item" ? !0 : (e.children && (e.children = e.children.filter(_I)), e.children && e.children.length > 0) : !1, JI = (e) => (e.children && e.children.forEach((t) => {
7223
7223
  t.parent = e, JI(t);
7224
7224
  }), e), BM = ({ userGroups: e, resources: t, permissions: n, translate: r }) => {
7225
- const s = (p) => (p.title = r(p.title, { _: p.title }), p.children && p.children.forEach((E) => s(E)), p), a = Object.keys(t), l = (p, E) => (p.children && (p.children = p.children.filter((h) => h.type === "item" ? E.includes(h.id) : (l(h, E), h.children && h.children.length > 0))), p), u = ft.cloneDeep(e).map((p) => ({
7225
+ const s = (p) => (p.title = r(p.title, { _: p.title }), p.children && p.children.forEach((E) => s(E)), p), a = Object.keys(t), l = (p, E) => (p.children && (p.children = p.children.filter((h) => h.resource === !1 ? !0 : h.type === "item" ? E.includes(h.id) : (l(h, E), h.children && h.children.length > 0))), p), u = ft.cloneDeep(e).map((p) => ({
7226
7226
  type: "group",
7227
7227
  icon: nh,
7228
7228
  children: [],
@@ -7238,27 +7238,15 @@ const sr = () => Wt(YI), hM = ["e-", "entities/"], EM = (e) => {
7238
7238
  children: []
7239
7239
  })), d = [...u, ...g];
7240
7240
  return Object.values(t).forEach((p) => {
7241
- var I, B, Q, y, R;
7241
+ var I, B;
7242
7242
  if (!p.hasList)
7243
7243
  return;
7244
- const E = KI(d, p), h = (I = E == null ? void 0 : E.children) == null ? void 0 : I.some((O) => O.id === p.name);
7244
+ const E = KI(d, p), h = (I = E == null ? void 0 : E.children) == null ? void 0 : I.some((Q) => Q.id === p.name);
7245
7245
  if (!IM(p, n)) {
7246
- h && ((B = E == null ? void 0 : E.children) == null ? void 0 : B.length) > 0 && (E.children = E.children.filter((O) => O.id !== p.name));
7246
+ h && ((B = E == null ? void 0 : E.children) == null ? void 0 : B.length) > 0 && (E.children = E.children.filter((Q) => Q.id !== p.name));
7247
7247
  return;
7248
7248
  }
7249
- if (E) {
7250
- if (E.children || (E.children = []), h)
7251
- return;
7252
- E.children.push({
7253
- id: p.name,
7254
- type: "item",
7255
- title: r(((Q = p.options) == null ? void 0 : Q.label) || `ra.menu.item.${p.name}`, {
7256
- _: ((y = p.options) == null ? void 0 : y.label) || p.name
7257
- }),
7258
- url: `/${p.name}`,
7259
- icon: (R = p.options) == null ? void 0 : R.icon
7260
- });
7261
- }
7249
+ E && (E.children || (E.children = []));
7262
7250
  }), d.filter(_I).map(JI);
7263
7251
  }, XI = () => {
7264
7252
  const e = KP(), { isLoading: t, data: n } = HC(), { permissions: r } = qP(), { groups: s } = sr(), a = Xn(), l = it(() => t || !n || n === null || (n == null ? void 0 : n.id) <= 0 ? null : BM({
@@ -7362,8 +7350,8 @@ const QM = (e) => {
7362
7350
  modal: I = !1,
7363
7351
  ...B
7364
7352
  }, Q) => {
7365
- const y = gt();
7366
- return t = y.palette.mode === "dark" ? t || !0 : t, /* @__PURE__ */ oe(
7353
+ const v = gt();
7354
+ return t = v.palette.mode === "dark" ? t || !0 : t, /* @__PURE__ */ oe(
7367
7355
  bR,
7368
7356
  {
7369
7357
  elevation: g || 0,
@@ -7373,10 +7361,10 @@ const QM = (e) => {
7373
7361
  position: "relative",
7374
7362
  border: e ? "1px solid" : "none",
7375
7363
  borderRadius: 1,
7376
- borderColor: y.palette.mode === "dark" ? y.palette.divider : y.palette.grey.A800,
7377
- boxShadow: t && (!e || y.palette.mode === "dark") ? p || y.customShadows.z1 : "inherit",
7364
+ borderColor: v.palette.mode === "dark" ? v.palette.divider : v.palette.grey.A800,
7365
+ boxShadow: t && (!e || v.palette.mode === "dark") ? p || v.customShadows.z1 : "inherit",
7378
7366
  ":hover": {
7379
- boxShadow: t ? p || y.customShadows.z1 : "inherit"
7367
+ boxShadow: t ? p || v.customShadows.z1 : "inherit"
7380
7368
  },
7381
7369
  ...I && {
7382
7370
  position: "absolute",
@@ -7549,7 +7537,7 @@ function ll(e) {
7549
7537
  getTabbable: a = MM,
7550
7538
  isEnabled: l = kM,
7551
7539
  open: u
7552
- } = e, g = z.useRef(!1), d = z.useRef(null), p = z.useRef(null), E = z.useRef(null), h = z.useRef(null), I = z.useRef(!1), B = z.useRef(null), Q = Jr(t.ref, B), y = z.useRef(null);
7540
+ } = e, g = z.useRef(!1), d = z.useRef(null), p = z.useRef(null), E = z.useRef(null), h = z.useRef(null), I = z.useRef(!1), B = z.useRef(null), Q = Jr(t.ref, B), v = z.useRef(null);
7553
7541
  z.useEffect(() => {
7554
7542
  !u || !B.current || (I.current = !n);
7555
7543
  }, [n, u]), z.useEffect(() => {
@@ -7582,14 +7570,14 @@ function ll(e) {
7582
7570
  let ue = [];
7583
7571
  if ((w.activeElement === d.current || w.activeElement === p.current) && (ue = a(B.current)), ue.length > 0) {
7584
7572
  var $, G;
7585
- const Ee = !!(($ = y.current) != null && $.shiftKey && ((G = y.current) == null ? void 0 : G.key) === "Tab"), te = ue[0], j = ue[ue.length - 1];
7573
+ const Ee = !!(($ = v.current) != null && $.shiftKey && ((G = v.current) == null ? void 0 : G.key) === "Tab"), te = ue[0], j = ue[ue.length - 1];
7586
7574
  typeof te != "string" && typeof j != "string" && (Ee ? j.focus() : te.focus());
7587
7575
  } else
7588
7576
  Z.focus();
7589
7577
  }
7590
7578
  }
7591
7579
  }, P = (U) => {
7592
- y.current = U, !(r || !l() || U.key !== "Tab") && w.activeElement === B.current && U.shiftKey && (g.current = !0, p.current && p.current.focus());
7580
+ v.current = U, !(r || !l() || U.key !== "Tab") && w.activeElement === B.current && U.shiftKey && (g.current = !0, p.current && p.current.focus());
7593
7581
  };
7594
7582
  w.addEventListener("focusin", x), w.addEventListener("keydown", P, !0);
7595
7583
  const N = setInterval(() => {
@@ -7706,7 +7694,7 @@ const cl = /* @__PURE__ */ z.forwardRef(function(t, n) {
7706
7694
  });
7707
7695
  }
7708
7696
  return /* @__PURE__ */ C(z.Fragment, {
7709
- children: l && /* @__PURE__ */ gS.createPortal(r, l)
7697
+ children: l && /* @__PURE__ */ cS.createPortal(r, l)
7710
7698
  });
7711
7699
  });
7712
7700
  process.env.NODE_ENV !== "production" && (cl.propTypes = {
@@ -7890,7 +7878,7 @@ const qM = new zM(), eB = /* @__PURE__ */ z.forwardRef(function(t, n) {
7890
7878
  hideBackdrop: B = !1,
7891
7879
  keepMounted: Q = !1,
7892
7880
  // private
7893
- manager: y = qM,
7881
+ manager: v = qM,
7894
7882
  onBackdropClick: R,
7895
7883
  onClose: O,
7896
7884
  onKeyDown: w,
@@ -7899,7 +7887,7 @@ const qM = new zM(), eB = /* @__PURE__ */ z.forwardRef(function(t, n) {
7899
7887
  onTransitionExited: N,
7900
7888
  slotProps: U = {},
7901
7889
  slots: Z = {}
7902
- } = t, $ = Ke(t, UM), G = y, [ue, Ee] = z.useState(!x), te = z.useRef({}), j = z.useRef(null), L = z.useRef(null), K = Jr(L, n), W = KM(a), q = (r = t["aria-hidden"]) != null ? r : !0, X = () => Kr(j.current), F = () => (te.current.modalRef = L.current, te.current.mountNode = j.current, te.current), k = () => {
7890
+ } = t, $ = Ke(t, UM), G = v, [ue, Ee] = z.useState(!x), te = z.useRef({}), j = z.useRef(null), L = z.useRef(null), K = Jr(L, n), W = KM(a), q = (r = t["aria-hidden"]) != null ? r : !0, X = () => Kr(j.current), F = () => (te.current.modalRef = L.current, te.current.mountNode = j.current, te.current), k = () => {
7903
7891
  G.mount(F(), {
7904
7892
  disableScrollLock: I
7905
7893
  }), L.current && (L.current.scrollTop = 0);
@@ -8178,9 +8166,9 @@ const XM = ["align", "className", "component", "gutterBottom", "noWrap", "paragr
8178
8166
  paragraph: E,
8179
8167
  variant: h,
8180
8168
  variantMapping: I
8181
- }), y = g || (E ? "p" : I[h] || Lh[h]) || "span", R = ZM(Q);
8169
+ }), v = g || (E ? "p" : I[h] || Lh[h]) || "span", R = ZM(Q);
8182
8170
  return /* @__PURE__ */ C($M, H({
8183
- as: y,
8171
+ as: v,
8184
8172
  ref: n,
8185
8173
  ownerState: Q,
8186
8174
  className: Xe(R.root, u)
@@ -8288,7 +8276,7 @@ const r2 = ["children", "className", "color", "component", "fontSize", "htmlColo
8288
8276
  theme: e,
8289
8277
  ownerState: t
8290
8278
  }) => {
8291
- var n, r, s, a, l, u, g, d, p, E, h, I, B, Q, y, R, O;
8279
+ var n, r, s, a, l, u, g, d, p, E, h, I, B, Q, v, R, O;
8292
8280
  return {
8293
8281
  userSelect: "none",
8294
8282
  width: "1em",
@@ -8309,7 +8297,7 @@ const r2 = ["children", "className", "color", "component", "fontSize", "htmlColo
8309
8297
  }[t.fontSize],
8310
8298
  // TODO v5 deprecate, v6 remove for sx
8311
8299
  color: (h = (I = (e.vars || e).palette) == null || (B = I[t.color]) == null ? void 0 : B.main) != null ? h : {
8312
- action: (Q = (e.vars || e).palette) == null || (y = Q.action) == null ? void 0 : y.active,
8300
+ action: (Q = (e.vars || e).palette) == null || (v = Q.action) == null ? void 0 : v.active,
8313
8301
  disabled: (R = (e.vars || e).palette) == null || (O = R.action) == null ? void 0 : O.disabled,
8314
8302
  inherit: void 0
8315
8303
  }[t.color]
@@ -8336,8 +8324,8 @@ const r2 = ["children", "className", "color", "component", "fontSize", "htmlColo
8336
8324
  inheritViewBox: p,
8337
8325
  viewBox: h,
8338
8326
  hasSvgAsChild: B
8339
- }), y = {};
8340
- p || (y.viewBox = h);
8327
+ }), v = {};
8328
+ p || (v.viewBox = h);
8341
8329
  const R = o2(Q);
8342
8330
  return /* @__PURE__ */ oe(i2, H({
8343
8331
  as: u,
@@ -8347,7 +8335,7 @@ const r2 = ["children", "className", "color", "component", "fontSize", "htmlColo
8347
8335
  "aria-hidden": E ? void 0 : !0,
8348
8336
  role: E ? "img" : void 0,
8349
8337
  ref: n
8350
- }, y, I, B && s.props, {
8338
+ }, v, I, B && s.props, {
8351
8339
  ownerState: Q,
8352
8340
  children: [B ? s.props.children : s, E ? /* @__PURE__ */ C("title", {
8353
8341
  children: E
@@ -9159,7 +9147,7 @@ const Ru = 550, C2 = 80, I2 = eo(Vh || (Vh = _l`
9159
9147
  z.useEffect(() => () => {
9160
9148
  I.current && clearTimeout(I.current);
9161
9149
  }, []);
9162
- const y = z.useCallback((x) => {
9150
+ const v = z.useCallback((x) => {
9163
9151
  const {
9164
9152
  pulsate: P,
9165
9153
  rippleX: N,
@@ -9218,7 +9206,7 @@ const Ru = 550, C2 = 80, I2 = eo(Vh || (Vh = _l`
9218
9206
  j = Math.sqrt(L ** 2 + K ** 2);
9219
9207
  }
9220
9208
  x != null && x.touches ? B.current === null && (B.current = () => {
9221
- y({
9209
+ v({
9222
9210
  pulsate: U,
9223
9211
  rippleX: Ee,
9224
9212
  rippleY: te,
@@ -9227,14 +9215,14 @@ const Ru = 550, C2 = 80, I2 = eo(Vh || (Vh = _l`
9227
9215
  });
9228
9216
  }, I.current = setTimeout(() => {
9229
9217
  B.current && (B.current(), B.current = null);
9230
- }, C2)) : y({
9218
+ }, C2)) : v({
9231
9219
  pulsate: U,
9232
9220
  rippleX: Ee,
9233
9221
  rippleY: te,
9234
9222
  rippleSize: j,
9235
9223
  cb: N
9236
9224
  });
9237
- }, [s, y]), O = z.useCallback(() => {
9225
+ }, [s, v]), O = z.useCallback(() => {
9238
9226
  R({}, {
9239
9227
  pulsate: !0
9240
9228
  });
@@ -9352,7 +9340,7 @@ const x2 = _t("MuiButtonBase", ["root", "disabled", "focusVisible"]), w2 = x2, T
9352
9340
  LinkComponent: I = "a",
9353
9341
  onBlur: B,
9354
9342
  onClick: Q,
9355
- onContextMenu: y,
9343
+ onContextMenu: v,
9356
9344
  onDragLeave: R,
9357
9345
  onFocus: O,
9358
9346
  onFocusVisible: w,
@@ -9390,7 +9378,7 @@ const x2 = _t("MuiButtonBase", ["root", "disabled", "focusVisible"]), w2 = x2, T
9390
9378
  function de(me, Ht, ze = E) {
9391
9379
  return di((Qe) => (Ht && Ht(Qe), !ze && q.current && q.current[me](Qe), !0));
9392
9380
  }
9393
- const Be = de("start", N), ke = de("stop", y), re = de("stop", R), lt = de("stop", Z), se = de("stop", (me) => {
9381
+ const Be = de("start", N), ke = de("stop", v), re = de("stop", R), lt = de("stop", Z), se = de("stop", (me) => {
9394
9382
  le && me.preventDefault(), U && U(me);
9395
9383
  }), Pt = de("start", ue), an = de("stop", $), Ue = de("stop", G), Pr = de("stop", (me) => {
9396
9384
  ne(me), F.current === !1 && ge(!1), B && B(me);
@@ -9746,7 +9734,7 @@ const AB = /* @__PURE__ */ z.forwardRef(function(t, n) {
9746
9734
  itemsBeforeCollapse: E = 1,
9747
9735
  maxItems: h = 8,
9748
9736
  separator: I = "/"
9749
- } = r, B = Ke(r, N2), [Q, y] = z.useState(!1), R = H({}, r, {
9737
+ } = r, B = Ke(r, N2), [Q, v] = z.useState(!1), R = H({}, r, {
9750
9738
  component: l,
9751
9739
  expanded: Q,
9752
9740
  expandText: d,
@@ -9760,7 +9748,7 @@ const AB = /* @__PURE__ */ z.forwardRef(function(t, n) {
9760
9748
  ownerState: R
9761
9749
  }), x = z.useRef(null), P = (U) => {
9762
9750
  const Z = () => {
9763
- y(!0);
9751
+ v(!0);
9764
9752
  const $ = x.current.querySelector("a[href],button,[tabindex]");
9765
9753
  $ && $.focus();
9766
9754
  };
@@ -9899,8 +9887,8 @@ const zA = AB, W2 = ({ id: e, title: t, icon: n, url: r, last: s }) => /* @__PUR
9899
9887
  mode: I,
9900
9888
  ...B
9901
9889
  }) => {
9902
- const Q = gt(), y = Ri(), [R, O] = At(), [w, x] = At();
9903
- let P = y.pathname;
9890
+ const Q = gt(), v = Ri(), [R, O] = At(), [w, x] = At();
9891
+ let P = v.pathname;
9904
9892
  const N = {
9905
9893
  marginRight: Q.spacing(0.75),
9906
9894
  marginTop: `-${Q.spacing(0.25)}`,
@@ -10724,7 +10712,7 @@ function bk(e, t, n, r) {
10724
10712
  const B = Gg(e, I);
10725
10713
  if (!B)
10726
10714
  return;
10727
- const { transitionEnd: Q, transition: y, ...R } = B;
10715
+ const { transitionEnd: Q, transition: v, ...R } = B;
10728
10716
  for (const O in R) {
10729
10717
  let w = R[O];
10730
10718
  if (Array.isArray(w)) {
@@ -11459,22 +11447,22 @@ function OF(e) {
11459
11447
  return t;
11460
11448
  }
11461
11449
  function am({ keyframes: e, restDelta: t, restSpeed: n, ...r }) {
11462
- const s = e[0], a = e[e.length - 1], l = { done: !1, value: s }, { stiffness: u, damping: g, mass: d, velocity: p, duration: E, isResolvedFromDuration: h } = OF(r), I = p ? -yr(p) : 0, B = g / (2 * Math.sqrt(u * d)), Q = a - s, y = yr(Math.sqrt(u / d)), R = Math.abs(Q) < 5;
11450
+ const s = e[0], a = e[e.length - 1], l = { done: !1, value: s }, { stiffness: u, damping: g, mass: d, velocity: p, duration: E, isResolvedFromDuration: h } = OF(r), I = p ? -yr(p) : 0, B = g / (2 * Math.sqrt(u * d)), Q = a - s, v = yr(Math.sqrt(u / d)), R = Math.abs(Q) < 5;
11463
11451
  n || (n = R ? 0.01 : 2), t || (t = R ? 5e-3 : 0.5);
11464
11452
  let O;
11465
11453
  if (B < 1) {
11466
- const w = ku(y, B);
11454
+ const w = ku(v, B);
11467
11455
  O = (x) => {
11468
- const P = Math.exp(-B * y * x);
11469
- return a - P * ((I + B * y * Q) / w * Math.sin(w * x) + Q * Math.cos(w * x));
11456
+ const P = Math.exp(-B * v * x);
11457
+ return a - P * ((I + B * v * Q) / w * Math.sin(w * x) + Q * Math.cos(w * x));
11470
11458
  };
11471
11459
  } else if (B === 1)
11472
- O = (w) => a - Math.exp(-y * w) * (Q + (I + y * Q) * w);
11460
+ O = (w) => a - Math.exp(-v * w) * (Q + (I + v * Q) * w);
11473
11461
  else {
11474
- const w = y * Math.sqrt(B * B - 1);
11462
+ const w = v * Math.sqrt(B * B - 1);
11475
11463
  O = (x) => {
11476
- const P = Math.exp(-B * y * x), N = Math.min(w * x, 300);
11477
- return a - P * ((I + B * y * Q) * Math.sinh(N) + w * Q * Math.cosh(N)) / w;
11464
+ const P = Math.exp(-B * v * x), N = Math.min(w * x, 300);
11465
+ return a - P * ((I + B * v * Q) * Math.sinh(N) + w * Q * Math.cosh(N)) / w;
11478
11466
  };
11479
11467
  }
11480
11468
  return {
@@ -11499,8 +11487,8 @@ function aE({ keyframes: e, velocity: t = 0, power: n = 0.8, timeConstant: r = 3
11499
11487
  value: E
11500
11488
  }, I = (Z) => u !== void 0 && Z < u || g !== void 0 && Z > g, B = (Z) => u === void 0 ? g : g === void 0 || Math.abs(u - Z) < Math.abs(g - Z) ? u : g;
11501
11489
  let Q = n * t;
11502
- const y = E + Q, R = l === void 0 ? y : l(y);
11503
- R !== y && (Q = R - E);
11490
+ const v = E + Q, R = l === void 0 ? v : l(v);
11491
+ R !== v && (Q = R - E);
11504
11492
  const O = (Z) => -Q * Math.exp(-Z / r), w = (Z) => R + O(Z), x = (Z) => {
11505
11493
  const $ = O(Z), G = w(Z);
11506
11494
  h.done = Math.abs($) <= d, h.value = h.done ? R : G;
@@ -11552,9 +11540,9 @@ const MF = {
11552
11540
  spring: am
11553
11541
  };
11554
11542
  function hl({ autoplay: e = !0, delay: t = 0, driver: n = DF, keyframes: r, type: s = "keyframes", repeat: a = 0, repeatDelay: l = 0, repeatType: u = "loop", onPlay: g, onStop: d, onComplete: p, onUpdate: E, ...h }) {
11555
- let I = 1, B = !1, Q, y;
11543
+ let I = 1, B = !1, Q, v;
11556
11544
  const R = () => {
11557
- Q && Q(), y = new Promise((k) => {
11545
+ Q && Q(), v = new Promise((k) => {
11558
11546
  Q = k;
11559
11547
  });
11560
11548
  };
@@ -11616,7 +11604,7 @@ function hl({ autoplay: e = !0, delay: t = 0, driver: n = DF, keyframes: r, type
11616
11604
  e && X();
11617
11605
  const F = {
11618
11606
  then(k, ne) {
11619
- return y.then(k, ne);
11607
+ return v.then(k, ne);
11620
11608
  },
11621
11609
  get time() {
11622
11610
  return yr(j);
@@ -11698,11 +11686,11 @@ function LF(e, t, { onUpdate: n, onComplete: r, ...s }) {
11698
11686
  */
11699
11687
  ease: h,
11700
11688
  times: I
11701
- }), Q = () => B.cancel(), y = () => {
11689
+ }), Q = () => B.cancel(), v = () => {
11702
11690
  mt.update(Q), u(), d();
11703
11691
  };
11704
11692
  return B.onfinish = () => {
11705
- e.set(Zk(p, s)), r && r(), y();
11693
+ e.set(Zk(p, s)), r && r(), v();
11706
11694
  }, {
11707
11695
  then(R, O) {
11708
11696
  return g.then(R, O);
@@ -11737,10 +11725,10 @@ function LF(e, t, { onUpdate: n, onComplete: r, ...s }) {
11737
11725
  });
11738
11726
  e.setWithVelocity(O.sample(R - Fa).value, O.sample(R).value, Fa);
11739
11727
  }
11740
- y();
11728
+ v();
11741
11729
  },
11742
11730
  complete: () => B.finish(),
11743
- cancel: y
11731
+ cancel: v
11744
11732
  };
11745
11733
  }
11746
11734
  function jF({ keyframes: e, delay: t, onUpdate: n, onComplete: r }) {
@@ -12171,8 +12159,8 @@ function dm(e, t, { delay: n = 0, transitionOverride: r, type: s } = {}) {
12171
12159
  continue;
12172
12160
  const B = { delay: n, elapsed: 0, ...a };
12173
12161
  if (window.HandoffAppearAnimations && !h.hasAnimated) {
12174
- const y = e.getProps()[_k];
12175
- y && (B.elapsed = window.HandoffAppearAnimations(y, E, h, mt));
12162
+ const v = e.getProps()[_k];
12163
+ v && (B.elapsed = window.HandoffAppearAnimations(v, E, h, mt));
12176
12164
  }
12177
12165
  h.start(Xg(E, h, I, e.shouldReduceMotion && Fo.has(E) ? { type: !1 } : B));
12178
12166
  const Q = h.animation;
@@ -12282,8 +12270,8 @@ function h4(e) {
12282
12270
  w !== void 0 && (R[O] = w);
12283
12271
  }), h.push({ animation: R });
12284
12272
  }
12285
- let y = !!h.length;
12286
- return r && p.initial === !1 && !e.manuallyAnimateOnMount && (y = !1), r = !1, y ? t(h) : Promise.resolve();
12273
+ let v = !!h.length;
12274
+ return r && p.initial === !1 && !e.manuallyAnimateOnMount && (v = !1), r = !1, v ? t(h) : Promise.resolve();
12287
12275
  }
12288
12276
  function u(g, d, p) {
12289
12277
  var E;
@@ -12650,9 +12638,9 @@ class H4 {
12650
12638
  this.isDragging = !0, this.currentDirection = null, this.resolveConstraints(), this.visualElement.projection && (this.visualElement.projection.isAnimationBlocked = !0, this.visualElement.projection.target = void 0), tr((B) => {
12651
12639
  let Q = this.getAxisMotionValue(B).get() || 0;
12652
12640
  if (ir.test(Q)) {
12653
- const { projection: y } = this.visualElement;
12654
- if (y && y.layout) {
12655
- const R = y.layout.layoutBox[B];
12641
+ const { projection: v } = this.visualElement;
12642
+ if (v && v.layout) {
12643
+ const R = v.layout.layoutBox[B];
12656
12644
  R && (Q = Tn(R) * (parseFloat(Q) / 100));
12657
12645
  }
12658
12646
  }
@@ -13196,12 +13184,12 @@ function vm({ attachResizeListener: e, defaultParent: t, measureScroll: n, check
13196
13184
  this.target = void 0, this.relativeTarget = void 0;
13197
13185
  return;
13198
13186
  }
13199
- const Q = this.options.transition || p.getDefaultTransition() || QN, { onLayoutAnimationStart: y, onLayoutAnimationComplete: R } = p.getProps(), O = !this.targetLayout || !Wu(this.targetLayout, B) || I, w = !h && I;
13187
+ const Q = this.options.transition || p.getDefaultTransition() || QN, { onLayoutAnimationStart: v, onLayoutAnimationComplete: R } = p.getProps(), O = !this.targetLayout || !Wu(this.targetLayout, B) || I, w = !h && I;
13200
13188
  if (this.options.layoutRoot || this.resumeFrom && this.resumeFrom.instance || w || h && (O || !this.currentAnimation)) {
13201
13189
  this.resumeFrom && (this.resumingFrom = this.resumeFrom, this.resumingFrom.resumingFrom = void 0), this.setAnimationOrigin(E, w);
13202
13190
  const x = {
13203
13191
  ...Am(Q, "layout"),
13204
- onPlay: y,
13192
+ onPlay: v,
13205
13193
  onComplete: R
13206
13194
  };
13207
13195
  (p.shouldReduceMotion || this.options.layoutRoot) && (x.delay = 0, x.type = !1), this.startAnimation(x);
@@ -13451,7 +13439,7 @@ function vm({ attachResizeListener: e, defaultParent: t, measureScroll: n, check
13451
13439
  setAnimationOrigin(l, u = !1) {
13452
13440
  const g = this.snapshot, d = g ? g.latestValues : {}, p = { ...this.latestValues }, E = hi();
13453
13441
  (!this.relativeParent || !this.relativeParent.options.layoutRoot) && (this.relativeTarget = this.relativeTargetOrigin = void 0), this.attemptToResolveRelativeTarget = !u;
13454
- const h = Rt(), I = g ? g.source : void 0, B = this.layout ? this.layout.source : void 0, Q = I !== B, y = this.getStack(), R = !y || y.members.length <= 1, O = !!(Q && !R && this.options.crossfade === !0 && !this.path.some(mN));
13442
+ const h = Rt(), I = g ? g.source : void 0, B = this.layout ? this.layout.source : void 0, Q = I !== B, v = this.getStack(), R = !v || v.members.length <= 1, O = !!(Q && !R && this.options.crossfade === !0 && !this.path.some(mN));
13455
13443
  this.animationProgress = 0;
13456
13444
  let w;
13457
13445
  this.mixTargetDelta = (x) => {
@@ -13571,7 +13559,7 @@ function vm({ attachResizeListener: e, defaultParent: t, measureScroll: n, check
13571
13559
  for (const Q in ul) {
13572
13560
  if (h[Q] === void 0)
13573
13561
  continue;
13574
- const { correct: y, applyTo: R } = ul[Q], O = d.transform === "none" ? h[Q] : y(h[Q], E);
13562
+ const { correct: v, applyTo: R } = ul[Q], O = d.transform === "none" ? h[Q] : v(h[Q], E);
13575
13563
  if (R) {
13576
13564
  const w = R.length;
13577
13565
  for (let x = 0; x < w; x++)
@@ -13835,8 +13823,8 @@ const KE = {
13835
13823
  if (dl(h)) {
13836
13824
  const B = h.length, Q = h[0] === null ? 1 : 0;
13837
13825
  p = h[Q], E = ns(p);
13838
- for (let y = Q; y < B && h[y] !== null; y++)
13839
- I ? ar(ns(h[y]) === I, "All keyframes must be of the same type") : (I = ns(h[y]), ar(I === E || La(E) && La(I), "Keyframes must be of the same dimension as the current value"));
13826
+ for (let v = Q; v < B && h[v] !== null; v++)
13827
+ I ? ar(ns(h[v]) === I, "All keyframes must be of the same type") : (I = ns(h[v]), ar(I === E || La(E) && La(I), "Keyframes must be of the same dimension as the current value"));
13840
13828
  } else
13841
13829
  I = ns(h);
13842
13830
  if (E !== I)
@@ -14428,7 +14416,7 @@ const Sm = /* @__PURE__ */ z.forwardRef(function(t, n) {
14428
14416
  const Q = iL(H({}, g, {
14429
14417
  src: p,
14430
14418
  srcSet: E
14431
- })), y = p || E, R = y && Q !== "error", O = H({}, r, {
14419
+ })), v = p || E, R = v && Q !== "error", O = H({}, r, {
14432
14420
  colorDefault: !R,
14433
14421
  component: u,
14434
14422
  variant: h
@@ -14440,7 +14428,7 @@ const Sm = /* @__PURE__ */ z.forwardRef(function(t, n) {
14440
14428
  sizes: d,
14441
14429
  ownerState: O,
14442
14430
  className: w.img
14443
- }, g)) : a != null ? B = a : y && s ? B = s[0] : B = /* @__PURE__ */ C(oL, {
14431
+ }, g)) : a != null ? B = a : v && s ? B = s[0] : B = /* @__PURE__ */ C(oL, {
14444
14432
  ownerState: O,
14445
14433
  className: w.fallback
14446
14434
  }), /* @__PURE__ */ C(nL, H({
@@ -15204,7 +15192,7 @@ const mL = Dm, QL = ["children", "color", "component", "className", "disabled",
15204
15192
  endIcon: I,
15205
15193
  focusVisibleClassName: B,
15206
15194
  fullWidth: Q = !1,
15207
- size: y = "medium",
15195
+ size: v = "medium",
15208
15196
  startIcon: R,
15209
15197
  type: O,
15210
15198
  variant: w = "text"
@@ -15215,7 +15203,7 @@ const mL = Dm, QL = ["children", "color", "component", "className", "disabled",
15215
15203
  disableElevation: E,
15216
15204
  disableFocusRipple: h,
15217
15205
  fullWidth: Q,
15218
- size: y,
15206
+ size: v,
15219
15207
  type: O,
15220
15208
  variant: w
15221
15209
  }), N = yL(P), U = R && /* @__PURE__ */ C(bL, {
@@ -15451,17 +15439,17 @@ const jr = 44, RL = eo(XE || (XE = oc`
15451
15439
  thickness: d,
15452
15440
  value: p,
15453
15441
  variant: E
15454
- }), B = OL(I), Q = {}, y = {}, R = {};
15442
+ }), B = OL(I), Q = {}, v = {}, R = {};
15455
15443
  if (E === "determinate") {
15456
15444
  const O = 2 * Math.PI * ((jr - d) / 2);
15457
- Q.strokeDasharray = O.toFixed(3), R["aria-valuenow"] = Math.round(p), Q.strokeDashoffset = `${((100 - p) / 100 * O).toFixed(3)}px`, y.transform = "rotate(-90deg)";
15445
+ Q.strokeDasharray = O.toFixed(3), R["aria-valuenow"] = Math.round(p), Q.strokeDashoffset = `${((100 - p) / 100 * O).toFixed(3)}px`, v.transform = "rotate(-90deg)";
15458
15446
  }
15459
15447
  return /* @__PURE__ */ C(DL, H({
15460
15448
  className: Xe(B.root, s),
15461
15449
  style: H({
15462
15450
  width: u,
15463
15451
  height: u
15464
- }, y, g),
15452
+ }, v, g),
15465
15453
  ownerState: I,
15466
15454
  ref: n,
15467
15455
  role: "progressbar"
@@ -15656,7 +15644,7 @@ const LL = _t("MuiLoadingButton", ["root", "loading", "loadingIndicator", "loadi
15656
15644
  loadingIndicator: I,
15657
15645
  loadingPosition: d,
15658
15646
  variant: p
15659
- }), Q = HL(B), y = u ? /* @__PURE__ */ C(WL, {
15647
+ }), Q = HL(B), v = u ? /* @__PURE__ */ C(WL, {
15660
15648
  className: Q.loadingIndicator,
15661
15649
  ownerState: B,
15662
15650
  children: I
@@ -15669,7 +15657,7 @@ const LL = _t("MuiLoadingButton", ["root", "loading", "loadingIndicator", "loadi
15669
15657
  variant: p,
15670
15658
  classes: Q,
15671
15659
  ownerState: B,
15672
- children: [B.loadingPosition === "end" ? s : y, B.loadingPosition === "end" ? y : s]
15660
+ children: [B.loadingPosition === "end" ? s : v, B.loadingPosition === "end" ? v : s]
15673
15661
  }));
15674
15662
  });
15675
15663
  process.env.NODE_ENV !== "production" && (Nm.propTypes = {
@@ -16173,7 +16161,7 @@ const hs = ({ item: e, level: t }) => {
16173
16161
  kt(() => {
16174
16162
  Q.includes(e.url) && u([e.id]);
16175
16163
  }, [Q]);
16176
- const y = n.palette.mode === "dark" ? "grey.400" : "text.primary", R = n.palette.mode === "dark" && a ? "text.primary" : "primary.main";
16164
+ const v = n.palette.mode === "dark" ? "grey.400" : "text.primary", R = n.palette.mode === "dark" && a ? "text.primary" : "primary.main";
16177
16165
  return /* @__PURE__ */ C(dn, { children: s(r) || d ? /* @__PURE__ */ oe(
16178
16166
  Ro,
16179
16167
  {
@@ -16219,7 +16207,7 @@ const hs = ({ item: e, level: t }) => {
16219
16207
  {
16220
16208
  sx: {
16221
16209
  minWidth: 28,
16222
- color: B ? R : y,
16210
+ color: B ? R : v,
16223
16211
  ...!a && {
16224
16212
  borderRadius: 1.5,
16225
16213
  width: 36,
@@ -16243,7 +16231,7 @@ const hs = ({ item: e, level: t }) => {
16243
16231
  (a || !a && t !== 1) && /* @__PURE__ */ C(
16244
16232
  So,
16245
16233
  {
16246
- primary: /* @__PURE__ */ C(Pe, { variant: "h6", sx: { color: B ? R : y }, children: e.title })
16234
+ primary: /* @__PURE__ */ C(Pe, { variant: "h6", sx: { color: B ? R : v }, children: e.title })
16247
16235
  }
16248
16236
  ),
16249
16237
  (a || !a && t !== 1) && e.chip && /* @__PURE__ */ C(
@@ -16392,8 +16380,8 @@ const tC = ie(Ts)(({ theme: e }) => ({
16392
16380
  selectedLevel: l
16393
16381
  }) => {
16394
16382
  var F;
16395
- const u = gt(), { activeItem: g } = sr(), d = wn(u.breakpoints.down("lg")), { drawerOpen: p } = sr(), { menuOrientation: E, isVerticalLayout: h } = Xt(), I = JR(), [B, Q] = At(!1), [y, R] = At(null), [O, w] = At(null), x = (k) => {
16396
- w(null), a(t), p ? (Q(!B), R(y ? null : e.id), r(y ? "" : e.id), e.url && I(`${e.url}`)) : w(k == null ? void 0 : k.currentTarget);
16383
+ const u = gt(), { activeItem: g } = sr(), d = wn(u.breakpoints.down("lg")), { drawerOpen: p } = sr(), { menuOrientation: E, isVerticalLayout: h } = Xt(), I = JR(), [B, Q] = At(!1), [v, R] = At(null), [O, w] = At(null), x = (k) => {
16384
+ w(null), a(t), p ? (Q(!B), R(v ? null : e.id), r(v ? "" : e.id), e.url && I(`${e.url}`)) : w(k == null ? void 0 : k.currentTarget);
16397
16385
  }, P = () => {
16398
16386
  p || e.url && I(`${e.url}`);
16399
16387
  }, N = (k) => {
@@ -16402,8 +16390,8 @@ const tC = ie(Ts)(({ theme: e }) => ({
16402
16390
  Q(!1), R(null), w(null);
16403
16391
  };
16404
16392
  it(() => {
16405
- y === s ? t === 1 && Q(!0) : t === l && (Q(!1), R(null));
16406
- }, [s, t, y, l]);
16393
+ v === s ? t === 1 && Q(!0) : t === l && (Q(!1), R(null));
16394
+ }, [s, t, v, l]);
16407
16395
  const { pathname: Z } = Ri(), $ = !!O, G = (k, ne) => {
16408
16396
  k.forEach((ae) => {
16409
16397
  ae.url === Z && (Q(!0), R(ne));
@@ -16415,8 +16403,8 @@ const tC = ie(Ts)(({ theme: e }) => ({
16415
16403
  (ne = k.children) != null && ne.length && G(k.children, e.id), k.url === Z && (R(e.id), Q(!0)), Z.includes(k.url) && (R(e.id), Q(!0));
16416
16404
  });
16417
16405
  }, [Z, e.children]), kt(() => {
16418
- e.url === Z && y !== e.id && (g([e.id]), R(e.id), w(null), Q(!0));
16419
- }, [Z, e, y, g]);
16406
+ e.url === Z && v !== e.id && (g([e.id]), R(e.id), w(null), Q(!0));
16407
+ }, [Z, e, v, g]);
16420
16408
  const ue = (F = e.children) == null ? void 0 : F.map((k) => {
16421
16409
  switch (k.type) {
16422
16410
  case "collapse":
@@ -16438,7 +16426,7 @@ const tC = ie(Ts)(({ theme: e }) => ({
16438
16426
  default:
16439
16427
  return /* @__PURE__ */ C(Pe, { variant: "h6", color: "error", align: "center", children: "Fix - Collapse or Item" }, k.id);
16440
16428
  }
16441
- }), Ee = y === e.id, te = t === 1 ? /* @__PURE__ */ C($R, { style: { fontSize: "1rem" } }) : !1, j = e.icon, L = e.icon ? /* @__PURE__ */ C(j, { style: { fontSize: p ? "1rem" : "1.25rem" } }) : te, K = u.palette.mode === "dark" ? "grey.400" : "text.primary", W = u.palette.mode === "dark" && p ? u.palette.text.primary : u.palette.primary.main, q = $ ? `collapse-pop-${e.id}` : void 0, X = {
16429
+ }), Ee = v === e.id, te = t === 1 ? /* @__PURE__ */ C($R, { style: { fontSize: "1rem" } }) : !1, j = e.icon, L = e.icon ? /* @__PURE__ */ C(j, { style: { fontSize: p ? "1rem" : "1.25rem" } }) : te, K = u.palette.mode === "dark" ? "grey.400" : "text.primary", W = u.palette.mode === "dark" && p ? u.palette.text.primary : u.palette.primary.main, q = $ ? `collapse-pop-${e.id}` : void 0, X = {
16442
16430
  display: "flex",
16443
16431
  justifyContent: "space-between",
16444
16432
  alignItems: "center",
@@ -16449,7 +16437,7 @@ const tC = ie(Ts)(({ theme: e }) => ({
16449
16437
  Ro,
16450
16438
  {
16451
16439
  disableRipple: !0,
16452
- selected: y === e.id,
16440
+ selected: v === e.id,
16453
16441
  ...!p && { onMouseEnter: x, onMouseLeave: U },
16454
16442
  onClick: x,
16455
16443
  sx: {
@@ -16487,7 +16475,7 @@ const tC = ie(Ts)(({ theme: e }) => ({
16487
16475
  onClick: P,
16488
16476
  sx: {
16489
16477
  minWidth: 28,
16490
- color: y === e.id ? "primary.main" : K,
16478
+ color: v === e.id ? "primary.main" : K,
16491
16479
  ...!p && {
16492
16480
  borderRadius: 1.5,
16493
16481
  width: 36,
@@ -16498,7 +16486,7 @@ const tC = ie(Ts)(({ theme: e }) => ({
16498
16486
  bgcolor: u.palette.mode === "dark" ? "secondary.light" : "secondary.lighter"
16499
16487
  }
16500
16488
  },
16501
- ...!p && y === e.id && {
16489
+ ...!p && v === e.id && {
16502
16490
  bgcolor: u.palette.mode === "dark" ? "primary.900" : "primary.lighter",
16503
16491
  "&:hover": {
16504
16492
  bgcolor: u.palette.mode === "dark" ? "primary.darker" : "primary.lighter"
@@ -16511,7 +16499,7 @@ const tC = ie(Ts)(({ theme: e }) => ({
16511
16499
  (p || !p && t !== 1) && /* @__PURE__ */ C(
16512
16500
  So,
16513
16501
  {
16514
- primary: /* @__PURE__ */ C(Pe, { variant: "h6", color: y === e.id ? "primary" : K, children: e.title }),
16502
+ primary: /* @__PURE__ */ C(Pe, { variant: "h6", color: v === e.id ? "primary" : K, children: e.title }),
16515
16503
  secondary: e.caption && /* @__PURE__ */ C(Pe, { variant: "caption", color: "secondary", children: e.caption })
16516
16504
  }
16517
16505
  ),
@@ -16682,7 +16670,7 @@ const $L = ie(Ts)(({ theme: e }) => ({
16682
16670
  selectedLevel: u
16683
16671
  }) => {
16684
16672
  var W, q;
16685
- const g = gt(), d = Xn(), { pathname: p } = { pathname: "" }, { menuOrientation: E, isVerticalLayout: h } = Xt(), I = sr(), { drawerOpen: B, selectedID: Q } = I, { activeID: y } = sr(), R = wn(g.breakpoints.down("lg")), [O, w] = At(null), [x, P] = At(e), N = !!O;
16673
+ const g = gt(), d = Xn(), { pathname: p } = { pathname: "" }, { menuOrientation: E, isVerticalLayout: h } = Xt(), I = sr(), { drawerOpen: B, selectedID: Q } = I, { activeID: v } = sr(), R = wn(g.breakpoints.down("lg")), [O, w] = At(null), [x, P] = At(e), N = !!O;
16686
16674
  kt(() => {
16687
16675
  if (t)
16688
16676
  if (e.id === r) {
@@ -16694,12 +16682,12 @@ const $L = ie(Ts)(({ theme: e }) => ({
16694
16682
  const U = (X, F) => {
16695
16683
  X.forEach((k) => {
16696
16684
  var ne;
16697
- (ne = k.children) != null && ne.length && U(k.children, x.id), k.url === p && y(F);
16685
+ (ne = k.children) != null && ne.length && U(k.children, x.id), k.url === p && v(F);
16698
16686
  });
16699
16687
  }, Z = (X) => {
16700
16688
  (X.children ? X.children : []).forEach((k) => {
16701
16689
  var ne;
16702
- (ne = k.children) != null && ne.length && U(k.children, x.id), k.url === p && y(x.id);
16690
+ (ne = k.children) != null && ne.length && U(k.children, x.id), k.url === p && v(x.id);
16703
16691
  });
16704
16692
  };
16705
16693
  kt(() => {
@@ -16902,8 +16890,8 @@ jm.propTypes = {
16902
16890
  };
16903
16891
  const Hm = () => {
16904
16892
  const e = gt(), { menu: t, isLoading: n } = XI(), r = wn(e.breakpoints.down("lg")), { menuOrientation: s, horizontalMaxItems: a, isHorizontalLayout: l } = Xt(), { drawerOpen: u } = sr(), [g, d] = At(""), [p, E] = At(0), h = l(s) && !r, I = h ? a : null;
16905
- let B = n ? 0 : t.length - 1, Q = [], y;
16906
- !n && I && I < t.length && (y = t[I - 1].id, B = I - 1, Q = t.slice(I - 1, t.length).map((O) => ({
16893
+ let B = n ? 0 : t.length - 1, Q = [], v;
16894
+ !n && I && I < t.length && (v = t[I - 1].id, B = I - 1, Q = t.slice(I - 1, t.length).map((O) => ({
16907
16895
  title: O.title,
16908
16896
  elements: O.children,
16909
16897
  icon: O.icon
@@ -16920,7 +16908,7 @@ const Hm = () => {
16920
16908
  selectedItems: g,
16921
16909
  lastItem: I,
16922
16910
  remItems: Q,
16923
- lastItemId: y,
16911
+ lastItemId: v,
16924
16912
  item: O
16925
16913
  },
16926
16914
  O.id
@@ -16944,7 +16932,7 @@ const Hm = () => {
16944
16932
  var pe = {}, Ku = { exports: {} };
16945
16933
  (function(e, t) {
16946
16934
  (function(n, r) {
16947
- var s = "1.0.35", a = "", l = "?", u = "function", g = "undefined", d = "object", p = "string", E = "major", h = "model", I = "name", B = "type", Q = "vendor", y = "version", R = "architecture", O = "console", w = "mobile", x = "tablet", P = "smarttv", N = "wearable", U = "embedded", Z = 350, $ = "Amazon", G = "Apple", ue = "ASUS", Ee = "BlackBerry", te = "Browser", j = "Chrome", L = "Edge", K = "Firefox", W = "Google", q = "Huawei", X = "LG", F = "Microsoft", k = "Motorola", ne = "Opera", ae = "Samsung", le = "Sharp", ge = "Sony", Ae = "Xiaomi", Ie = "Zebra", Ce = "Facebook", de = "Chromium OS", Be = "Mac OS", ke = function(Re, qe) {
16935
+ var s = "1.0.35", a = "", l = "?", u = "function", g = "undefined", d = "object", p = "string", E = "major", h = "model", I = "name", B = "type", Q = "vendor", v = "version", R = "architecture", O = "console", w = "mobile", x = "tablet", P = "smarttv", N = "wearable", U = "embedded", Z = 350, $ = "Amazon", G = "Apple", ue = "ASUS", Ee = "BlackBerry", te = "Browser", j = "Chrome", L = "Edge", K = "Firefox", W = "Google", q = "Huawei", X = "LG", F = "Microsoft", k = "Motorola", ne = "Opera", ae = "Samsung", le = "Sharp", ge = "Sony", Ae = "Xiaomi", Ie = "Zebra", Ce = "Facebook", de = "Chromium OS", Be = "Mac OS", ke = function(Re, qe) {
16948
16936
  var ve = {};
16949
16937
  for (var Ye in Re)
16950
16938
  qe[Ye] && qe[Ye].length % 2 === 0 ? ve[Ye] = qe[Ye].concat(Re[Ye]) : ve[Ye] = Re[Ye];
@@ -16980,13 +16968,13 @@ var pe = {}, Ku = { exports: {} };
16980
16968
  } else if (lt(qe[ve], Re))
16981
16969
  return ve === l ? r : ve;
16982
16970
  return Re;
16983
- }, Li = { "1.0": "/8", 1.2: "/1", 1.3: "/3", "2.0": "/412", "2.0.2": "/416", "2.0.3": "/417", "2.0.4": "/419", "?": "/" }, Sn = { ME: "4.90", "NT 3.11": "NT3.51", "NT 4.0": "NT4.0", 2e3: "NT 5.0", XP: ["NT 5.1", "NT 5.2"], Vista: "NT 6.0", 7: "NT 6.1", 8: "NT 6.2", 8.1: "NT 6.3", 10: ["NT 6.4", "NT 10.0"], RT: "ARM" }, Ft = { browser: [[/\b(?:crmo|crios)\/([\w\.]+)/i], [y, [I, "Chrome"]], [/edg(?:e|ios|a)?\/([\w\.]+)/i], [y, [I, "Edge"]], [/(opera mini)\/([-\w\.]+)/i, /(opera [mobiletab]{3,6})\b.+version\/([-\w\.]+)/i, /(opera)(?:.+version\/|[\/ ]+)([\w\.]+)/i], [I, y], [/opios[\/ ]+([\w\.]+)/i], [y, [I, ne + " Mini"]], [/\bopr\/([\w\.]+)/i], [y, [I, ne]], [/(kindle)\/([\w\.]+)/i, /(lunascape|maxthon|netfront|jasmine|blazer)[\/ ]?([\w\.]*)/i, /(avant |iemobile|slim)(?:browser)?[\/ ]?([\w\.]*)/i, /(ba?idubrowser)[\/ ]?([\w\.]+)/i, /(?:ms|\()(ie) ([\w\.]+)/i, /(flock|rockmelt|midori|epiphany|silk|skyfire|bolt|iron|vivaldi|iridium|phantomjs|bowser|quark|qupzilla|falkon|rekonq|puffin|brave|whale(?!.+naver)|qqbrowserlite|qq|duckduckgo)\/([-\w\.]+)/i, /(heytap|ovi)browser\/([\d\.]+)/i, /(weibo)__([\d\.]+)/i], [I, y], [/(?:\buc? ?browser|(?:juc.+)ucweb)[\/ ]?([\w\.]+)/i], [y, [I, "UC" + te]], [/microm.+\bqbcore\/([\w\.]+)/i, /\bqbcore\/([\w\.]+).+microm/i], [y, [I, "WeChat(Win) Desktop"]], [/micromessenger\/([\w\.]+)/i], [y, [I, "WeChat"]], [/konqueror\/([\w\.]+)/i], [y, [I, "Konqueror"]], [/trident.+rv[: ]([\w\.]{1,9})\b.+like gecko/i], [y, [I, "IE"]], [/ya(?:search)?browser\/([\w\.]+)/i], [y, [I, "Yandex"]], [/(avast|avg)\/([\w\.]+)/i], [[I, /(.+)/, "$1 Secure " + te], y], [/\bfocus\/([\w\.]+)/i], [y, [I, K + " Focus"]], [/\bopt\/([\w\.]+)/i], [y, [I, ne + " Touch"]], [/coc_coc\w+\/([\w\.]+)/i], [y, [I, "Coc Coc"]], [/dolfin\/([\w\.]+)/i], [y, [I, "Dolphin"]], [/coast\/([\w\.]+)/i], [y, [I, ne + " Coast"]], [/miuibrowser\/([\w\.]+)/i], [y, [I, "MIUI " + te]], [/fxios\/([-\w\.]+)/i], [y, [I, K]], [/\bqihu|(qi?ho?o?|360)browser/i], [[I, "360 " + te]], [/(oculus|samsung|sailfish|huawei)browser\/([\w\.]+)/i], [[I, /(.+)/, "$1 " + te], y], [/(comodo_dragon)\/([\w\.]+)/i], [[I, /_/g, " "], y], [/(electron)\/([\w\.]+) safari/i, /(tesla)(?: qtcarbrowser|\/(20\d\d\.[-\w\.]+))/i, /m?(qqbrowser|baiduboxapp|2345Explorer)[\/ ]?([\w\.]+)/i], [I, y], [/(metasr)[\/ ]?([\w\.]+)/i, /(lbbrowser)/i, /\[(linkedin)app\]/i], [I], [/((?:fban\/fbios|fb_iab\/fb4a)(?!.+fbav)|;fbav\/([\w\.]+);)/i], [[I, Ce], y], [/(kakao(?:talk|story))[\/ ]([\w\.]+)/i, /(naver)\(.*?(\d+\.[\w\.]+).*\)/i, /safari (line)\/([\w\.]+)/i, /\b(line)\/([\w\.]+)\/iab/i, /(chromium|instagram)[\/ ]([-\w\.]+)/i], [I, y], [/\bgsa\/([\w\.]+) .*safari\//i], [y, [I, "GSA"]], [/musical_ly(?:.+app_?version\/|_)([\w\.]+)/i], [y, [I, "TikTok"]], [/headlesschrome(?:\/([\w\.]+)| )/i], [y, [I, j + " Headless"]], [/ wv\).+(chrome)\/([\w\.]+)/i], [[I, j + " WebView"], y], [/droid.+ version\/([\w\.]+)\b.+(?:mobile safari|safari)/i], [y, [I, "Android " + te]], [/(chrome|omniweb|arora|[tizenoka]{5} ?browser)\/v?([\w\.]+)/i], [I, y], [/version\/([\w\.\,]+) .*mobile\/\w+ (safari)/i], [y, [I, "Mobile Safari"]], [/version\/([\w(\.|\,)]+) .*(mobile ?safari|safari)/i], [y, I], [/webkit.+?(mobile ?safari|safari)(\/[\w\.]+)/i], [I, [y, Pr, Li]], [/(webkit|khtml)\/([\w\.]+)/i], [I, y], [/(navigator|netscape\d?)\/([-\w\.]+)/i], [[I, "Netscape"], y], [/mobile vr; rv:([\w\.]+)\).+firefox/i], [y, [I, K + " Reality"]], [/ekiohf.+(flow)\/([\w\.]+)/i, /(swiftfox)/i, /(icedragon|iceweasel|camino|chimera|fennec|maemo browser|minimo|conkeror|klar)[\/ ]?([\w\.\+]+)/i, /(seamonkey|k-meleon|icecat|iceape|firebird|phoenix|palemoon|basilisk|waterfox)\/([-\w\.]+)$/i, /(firefox)\/([\w\.]+)/i, /(mozilla)\/([\w\.]+) .+rv\:.+gecko\/\d+/i, /(polaris|lynx|dillo|icab|doris|amaya|w3m|netsurf|sleipnir|obigo|mosaic|(?:go|ice|up)[\. ]?browser)[-\/ ]?v?([\w\.]+)/i, /(links) \(([\w\.]+)/i, /panasonic;(viera)/i], [I, y], [/(cobalt)\/([\w\.]+)/i], [I, [y, /master.|lts./, ""]]], cpu: [[/(?:(amd|x(?:(?:86|64)[-_])?|wow|win)64)[;\)]/i], [[R, "amd64"]], [/(ia32(?=;))/i], [[R, se]], [/((?:i[346]|x)86)[;\)]/i], [[R, "ia32"]], [/\b(aarch64|arm(v?8e?l?|_?64))\b/i], [[R, "arm64"]], [/\b(arm(?:v[67])?ht?n?[fl]p?)\b/i], [[R, "armhf"]], [/windows (ce|mobile); ppc;/i], [[R, "arm"]], [/((?:ppc|powerpc)(?:64)?)(?: mac|;|\))/i], [[R, /ower/, a, se]], [/(sun4\w)[;\)]/i], [[R, "sparc"]], [/((?:avr32|ia64(?=;))|68k(?=\))|\barm(?=v(?:[1-7]|[5-7]1)l?|;|eabi)|(?=atmel )avr|(?:irix|mips|sparc)(?:64)?\b|pa-risc)/i], [[R, se]]], device: [[/\b(sch-i[89]0\d|shw-m380s|sm-[ptx]\w{2,4}|gt-[pn]\d{2,4}|sgh-t8[56]9|nexus 10)/i], [h, [Q, ae], [B, x]], [/\b((?:s[cgp]h|gt|sm)-\w+|sc[g-]?[\d]+a?|galaxy nexus)/i, /samsung[- ]([-\w]+)/i, /sec-(sgh\w+)/i], [h, [Q, ae], [B, w]], [/(?:\/|\()(ip(?:hone|od)[\w, ]*)(?:\/|;)/i], [h, [Q, G], [B, w]], [/\((ipad);[-\w\),; ]+apple/i, /applecoremedia\/[\w\.]+ \((ipad)/i, /\b(ipad)\d\d?,\d\d?[;\]].+ios/i], [h, [Q, G], [B, x]], [/(macintosh);/i], [h, [Q, G]], [/\b(sh-?[altvz]?\d\d[a-ekm]?)/i], [h, [Q, le], [B, w]], [/\b((?:ag[rs][23]?|bah2?|sht?|btv)-a?[lw]\d{2})\b(?!.+d\/s)/i], [h, [Q, q], [B, x]], [/(?:huawei|honor)([-\w ]+)[;\)]/i, /\b(nexus 6p|\w{2,4}e?-[atu]?[ln][\dx][012359c][adn]?)\b(?!.+d\/s)/i], [h, [Q, q], [B, w]], [/\b(poco[\w ]+)(?: bui|\))/i, /\b; (\w+) build\/hm\1/i, /\b(hm[-_ ]?note?[_ ]?(?:\d\w)?) bui/i, /\b(redmi[\-_ ]?(?:note|k)?[\w_ ]+)(?: bui|\))/i, /\b(mi[-_ ]?(?:a\d|one|one[_ ]plus|note lte|max|cc)?[_ ]?(?:\d?\w?)[_ ]?(?:plus|se|lite)?)(?: bui|\))/i], [[h, /_/g, " "], [Q, Ae], [B, w]], [/\b(mi[-_ ]?(?:pad)(?:[\w_ ]+))(?: bui|\))/i], [[h, /_/g, " "], [Q, Ae], [B, x]], [/; (\w+) bui.+ oppo/i, /\b(cph[12]\d{3}|p(?:af|c[al]|d\w|e[ar])[mt]\d0|x9007|a101op)\b/i], [h, [Q, "OPPO"], [B, w]], [/vivo (\w+)(?: bui|\))/i, /\b(v[12]\d{3}\w?[at])(?: bui|;)/i], [h, [Q, "Vivo"], [B, w]], [/\b(rmx[12]\d{3})(?: bui|;|\))/i], [h, [Q, "Realme"], [B, w]], [/\b(milestone|droid(?:[2-4x]| (?:bionic|x2|pro|razr))?:?( 4g)?)\b[\w ]+build\//i, /\bmot(?:orola)?[- ](\w*)/i, /((?:moto[\w\(\) ]+|xt\d{3,4}|nexus 6)(?= bui|\)))/i], [h, [Q, k], [B, w]], [/\b(mz60\d|xoom[2 ]{0,2}) build\//i], [h, [Q, k], [B, x]], [/((?=lg)?[vl]k\-?\d{3}) bui| 3\.[-\w; ]{10}lg?-([06cv9]{3,4})/i], [h, [Q, X], [B, x]], [/(lm(?:-?f100[nv]?|-[\w\.]+)(?= bui|\))|nexus [45])/i, /\blg[-e;\/ ]+((?!browser|netcast|android tv)\w+)/i, /\blg-?([\d\w]+) bui/i], [h, [Q, X], [B, w]], [/(ideatab[-\w ]+)/i, /lenovo ?(s[56]000[-\w]+|tab(?:[\w ]+)|yt[-\d\w]{6}|tb[-\d\w]{6})/i], [h, [Q, "Lenovo"], [B, x]], [/(?:maemo|nokia).*(n900|lumia \d+)/i, /nokia[-_ ]?([-\w\.]*)/i], [[h, /_/g, " "], [Q, "Nokia"], [B, w]], [/(pixel c)\b/i], [h, [Q, W], [B, x]], [/droid.+; (pixel[\daxl ]{0,6})(?: bui|\))/i], [h, [Q, W], [B, w]], [/droid.+ (a?\d[0-2]{2}so|[c-g]\d{4}|so[-gl]\w+|xq-a\w[4-7][12])(?= bui|\).+chrome\/(?![1-6]{0,1}\d\.))/i], [h, [Q, ge], [B, w]], [/sony tablet [ps]/i, /\b(?:sony)?sgp\w+(?: bui|\))/i], [[h, "Xperia Tablet"], [Q, ge], [B, x]], [/ (kb2005|in20[12]5|be20[12][59])\b/i, /(?:one)?(?:plus)? (a\d0\d\d)(?: b|\))/i], [h, [Q, "OnePlus"], [B, w]], [/(alexa)webm/i, /(kf[a-z]{2}wi|aeo[c-r]{2})( bui|\))/i, /(kf[a-z]+)( bui|\)).+silk\//i], [h, [Q, $], [B, x]], [/((?:sd|kf)[0349hijorstuw]+)( bui|\)).+silk\//i], [[h, /(.+)/g, "Fire Phone $1"], [Q, $], [B, w]], [/(playbook);[-\w\),; ]+(rim)/i], [h, Q, [B, x]], [/\b((?:bb[a-f]|st[hv])100-\d)/i, /\(bb10; (\w+)/i], [h, [Q, Ee], [B, w]], [/(?:\b|asus_)(transfo[prime ]{4,10} \w+|eeepc|slider \w+|nexus 7|padfone|p00[cj])/i], [h, [Q, ue], [B, x]], [/ (z[bes]6[027][012][km][ls]|zenfone \d\w?)\b/i], [h, [Q, ue], [B, w]], [/(nexus 9)/i], [h, [Q, "HTC"], [B, x]], [/(htc)[-;_ ]{1,2}([\w ]+(?=\)| bui)|\w+)/i, /(zte)[- ]([\w ]+?)(?: bui|\/|\))/i, /(alcatel|geeksphone|nexian|panasonic(?!(?:;|\.))|sony(?!-bra))[-_ ]?([-\w]*)/i], [Q, [h, /_/g, " "], [B, w]], [/droid.+; ([ab][1-7]-?[0178a]\d\d?)/i], [h, [Q, "Acer"], [B, x]], [/droid.+; (m[1-5] note) bui/i, /\bmz-([-\w]{2,})/i], [h, [Q, "Meizu"], [B, w]], [/(blackberry|benq|palm(?=\-)|sonyericsson|acer|asus|dell|meizu|motorola|polytron)[-_ ]?([-\w]*)/i, /(hp) ([\w ]+\w)/i, /(asus)-?(\w+)/i, /(microsoft); (lumia[\w ]+)/i, /(lenovo)[-_ ]?([-\w]+)/i, /(jolla)/i, /(oppo) ?([\w ]+) bui/i], [Q, h, [B, w]], [/(kobo)\s(ereader|touch)/i, /(archos) (gamepad2?)/i, /(hp).+(touchpad(?!.+tablet)|tablet)/i, /(kindle)\/([\w\.]+)/i, /(nook)[\w ]+build\/(\w+)/i, /(dell) (strea[kpr\d ]*[\dko])/i, /(le[- ]+pan)[- ]+(\w{1,9}) bui/i, /(trinity)[- ]*(t\d{3}) bui/i, /(gigaset)[- ]+(q\w{1,9}) bui/i, /(vodafone) ([\w ]+)(?:\)| bui)/i], [Q, h, [B, x]], [/(surface duo)/i], [h, [Q, F], [B, x]], [/droid [\d\.]+; (fp\du?)(?: b|\))/i], [h, [Q, "Fairphone"], [B, w]], [/(u304aa)/i], [h, [Q, "AT&T"], [B, w]], [/\bsie-(\w*)/i], [h, [Q, "Siemens"], [B, w]], [/\b(rct\w+) b/i], [h, [Q, "RCA"], [B, x]], [/\b(venue[\d ]{2,7}) b/i], [h, [Q, "Dell"], [B, x]], [/\b(q(?:mv|ta)\w+) b/i], [h, [Q, "Verizon"], [B, x]], [/\b(?:barnes[& ]+noble |bn[rt])([\w\+ ]*) b/i], [h, [Q, "Barnes & Noble"], [B, x]], [/\b(tm\d{3}\w+) b/i], [h, [Q, "NuVision"], [B, x]], [/\b(k88) b/i], [h, [Q, "ZTE"], [B, x]], [/\b(nx\d{3}j) b/i], [h, [Q, "ZTE"], [B, w]], [/\b(gen\d{3}) b.+49h/i], [h, [Q, "Swiss"], [B, w]], [/\b(zur\d{3}) b/i], [h, [Q, "Swiss"], [B, x]], [/\b((zeki)?tb.*\b) b/i], [h, [Q, "Zeki"], [B, x]], [/\b([yr]\d{2}) b/i, /\b(dragon[- ]+touch |dt)(\w{5}) b/i], [[Q, "Dragon Touch"], h, [B, x]], [/\b(ns-?\w{0,9}) b/i], [h, [Q, "Insignia"], [B, x]], [/\b((nxa|next)-?\w{0,9}) b/i], [h, [Q, "NextBook"], [B, x]], [/\b(xtreme\_)?(v(1[045]|2[015]|[3469]0|7[05])) b/i], [[Q, "Voice"], h, [B, w]], [/\b(lvtel\-)?(v1[12]) b/i], [[Q, "LvTel"], h, [B, w]], [/\b(ph-1) /i], [h, [Q, "Essential"], [B, w]], [/\b(v(100md|700na|7011|917g).*\b) b/i], [h, [Q, "Envizen"], [B, x]], [/\b(trio[-\w\. ]+) b/i], [h, [Q, "MachSpeed"], [B, x]], [/\btu_(1491) b/i], [h, [Q, "Rotor"], [B, x]], [/(shield[\w ]+) b/i], [h, [Q, "Nvidia"], [B, x]], [/(sprint) (\w+)/i], [Q, h, [B, w]], [/(kin\.[onetw]{3})/i], [[h, /\./g, " "], [Q, F], [B, w]], [/droid.+; (cc6666?|et5[16]|mc[239][23]x?|vc8[03]x?)\)/i], [h, [Q, Ie], [B, x]], [/droid.+; (ec30|ps20|tc[2-8]\d[kx])\)/i], [h, [Q, Ie], [B, w]], [/smart-tv.+(samsung)/i], [Q, [B, P]], [/hbbtv.+maple;(\d+)/i], [[h, /^/, "SmartTV"], [Q, ae], [B, P]], [/(nux; netcast.+smarttv|lg (netcast\.tv-201\d|android tv))/i], [[Q, X], [B, P]], [/(apple) ?tv/i], [Q, [h, G + " TV"], [B, P]], [/crkey/i], [[h, j + "cast"], [Q, W], [B, P]], [/droid.+aft(\w)( bui|\))/i], [h, [Q, $], [B, P]], [/\(dtv[\);].+(aquos)/i, /(aquos-tv[\w ]+)\)/i], [h, [Q, le], [B, P]], [/(bravia[\w ]+)( bui|\))/i], [h, [Q, ge], [B, P]], [/(mitv-\w{5}) bui/i], [h, [Q, Ae], [B, P]], [/Hbbtv.*(technisat) (.*);/i], [Q, h, [B, P]], [/\b(roku)[\dx]*[\)\/]((?:dvp-)?[\d\.]*)/i, /hbbtv\/\d+\.\d+\.\d+ +\([\w\+ ]*; *([\w\d][^;]*);([^;]*)/i], [[Q, an], [h, an], [B, P]], [/\b(android tv|smart[- ]?tv|opera tv|tv; rv:)\b/i], [[B, P]], [/(ouya)/i, /(nintendo) ([wids3utch]+)/i], [Q, h, [B, O]], [/droid.+; (shield) bui/i], [h, [Q, "Nvidia"], [B, O]], [/(playstation [345portablevi]+)/i], [h, [Q, ge], [B, O]], [/\b(xbox(?: one)?(?!; xbox))[\); ]/i], [h, [Q, F], [B, O]], [/((pebble))app/i], [Q, h, [B, N]], [/(watch)(?: ?os[,\/]|\d,\d\/)[\d\.]+/i], [h, [Q, G], [B, N]], [/droid.+; (glass) \d/i], [h, [Q, W], [B, N]], [/droid.+; (wt63?0{2,3})\)/i], [h, [Q, Ie], [B, N]], [/(quest( 2| pro)?)/i], [h, [Q, Ce], [B, N]], [/(tesla)(?: qtcarbrowser|\/[-\w\.]+)/i], [Q, [B, U]], [/(aeobc)\b/i], [h, [Q, $], [B, U]], [/droid .+?; ([^;]+?)(?: bui|\) applew).+? mobile safari/i], [h, [B, w]], [/droid .+?; ([^;]+?)(?: bui|\) applew).+?(?! mobile) safari/i], [h, [B, x]], [/\b((tablet|tab)[;\/]|focus\/\d(?!.+mobile))/i], [[B, x]], [/(phone|mobile(?:[;\/]| [ \w\/\.]*safari)|pda(?=.+windows ce))/i], [[B, w]], [/(android[-\w\. ]{0,9});.+buil/i], [h, [Q, "Generic"]]], engine: [[/windows.+ edge\/([\w\.]+)/i], [y, [I, L + "HTML"]], [/webkit\/537\.36.+chrome\/(?!27)([\w\.]+)/i], [y, [I, "Blink"]], [/(presto)\/([\w\.]+)/i, /(webkit|trident|netfront|netsurf|amaya|lynx|w3m|goanna)\/([\w\.]+)/i, /ekioh(flow)\/([\w\.]+)/i, /(khtml|tasman|links)[\/ ]\(?([\w\.]+)/i, /(icab)[\/ ]([23]\.[\d\.]+)/i, /\b(libweb)/i], [I, y], [/rv\:([\w\.]{1,9})\b.+(gecko)/i], [y, I]], os: [[/microsoft (windows) (vista|xp)/i], [I, y], [/(windows) nt 6\.2; (arm)/i, /(windows (?:phone(?: os)?|mobile))[\/ ]?([\d\.\w ]*)/i, /(windows)[\/ ]?([ntce\d\. ]+\w)(?!.+xbox)/i], [I, [y, Pr, Sn]], [/(win(?=3|9|n)|win 9x )([nt\d\.]+)/i], [[I, "Windows"], [y, Pr, Sn]], [/ip[honead]{2,4}\b(?:.*os ([\w]+) like mac|; opera)/i, /ios;fbsv\/([\d\.]+)/i, /cfnetwork\/.+darwin/i], [[y, /_/g, "."], [I, "iOS"]], [/(mac os x) ?([\w\. ]*)/i, /(macintosh|mac_powerpc\b)(?!.+haiku)/i], [[I, Be], [y, /_/g, "."]], [/droid ([\w\.]+)\b.+(android[- ]x86|harmonyos)/i], [y, I], [/(android|webos|qnx|bada|rim tablet os|maemo|meego|sailfish)[-\/ ]?([\w\.]*)/i, /(blackberry)\w*\/([\w\.]*)/i, /(tizen|kaios)[\/ ]([\w\.]+)/i, /\((series40);/i], [I, y], [/\(bb(10);/i], [y, [I, Ee]], [/(?:symbian ?os|symbos|s60(?=;)|series60)[-\/ ]?([\w\.]*)/i], [y, [I, "Symbian"]], [/mozilla\/[\d\.]+ \((?:mobile|tablet|tv|mobile; [\w ]+); rv:.+ gecko\/([\w\.]+)/i], [y, [I, K + " OS"]], [/web0s;.+rt(tv)/i, /\b(?:hp)?wos(?:browser)?\/([\w\.]+)/i], [y, [I, "webOS"]], [/watch(?: ?os[,\/]|\d,\d\/)([\d\.]+)/i], [y, [I, "watchOS"]], [/crkey\/([\d\.]+)/i], [y, [I, j + "cast"]], [/(cros) [\w]+(?:\)| ([\w\.]+)\b)/i], [[I, de], y], [/panasonic;(viera)/i, /(netrange)mmh/i, /(nettv)\/(\d+\.[\w\.]+)/i, /(nintendo|playstation) ([wids345portablevuch]+)/i, /(xbox); +xbox ([^\);]+)/i, /\b(joli|palm)\b ?(?:os)?\/?([\w\.]*)/i, /(mint)[\/\(\) ]?(\w*)/i, /(mageia|vectorlinux)[; ]/i, /([kxln]?ubuntu|debian|suse|opensuse|gentoo|arch(?= linux)|slackware|fedora|mandriva|centos|pclinuxos|red ?hat|zenwalk|linpus|raspbian|plan 9|minix|risc os|contiki|deepin|manjaro|elementary os|sabayon|linspire)(?: gnu\/linux)?(?: enterprise)?(?:[- ]linux)?(?:-gnu)?[-\/ ]?(?!chrom|package)([-\w\.]*)/i, /(hurd|linux) ?([\w\.]*)/i, /(gnu) ?([\w\.]*)/i, /\b([-frentopcghs]{0,5}bsd|dragonfly)[\/ ]?(?!amd|[ix346]{1,2}86)([\w\.]*)/i, /(haiku) (\w+)/i], [I, y], [/(sunos) ?([\w\.\d]*)/i], [[I, "Solaris"], y], [/((?:open)?solaris)[-\/ ]?([\w\.]*)/i, /(aix) ((\d)(?=\.|\)| )[\w\.])*/i, /\b(beos|os\/2|amigaos|morphos|openvms|fuchsia|hp-ux|serenityos)/i, /(unix) ?([\w\.]*)/i], [I, y]] }, St = function(Re, qe) {
16971
+ }, Li = { "1.0": "/8", 1.2: "/1", 1.3: "/3", "2.0": "/412", "2.0.2": "/416", "2.0.3": "/417", "2.0.4": "/419", "?": "/" }, Sn = { ME: "4.90", "NT 3.11": "NT3.51", "NT 4.0": "NT4.0", 2e3: "NT 5.0", XP: ["NT 5.1", "NT 5.2"], Vista: "NT 6.0", 7: "NT 6.1", 8: "NT 6.2", 8.1: "NT 6.3", 10: ["NT 6.4", "NT 10.0"], RT: "ARM" }, Ft = { browser: [[/\b(?:crmo|crios)\/([\w\.]+)/i], [v, [I, "Chrome"]], [/edg(?:e|ios|a)?\/([\w\.]+)/i], [v, [I, "Edge"]], [/(opera mini)\/([-\w\.]+)/i, /(opera [mobiletab]{3,6})\b.+version\/([-\w\.]+)/i, /(opera)(?:.+version\/|[\/ ]+)([\w\.]+)/i], [I, v], [/opios[\/ ]+([\w\.]+)/i], [v, [I, ne + " Mini"]], [/\bopr\/([\w\.]+)/i], [v, [I, ne]], [/(kindle)\/([\w\.]+)/i, /(lunascape|maxthon|netfront|jasmine|blazer)[\/ ]?([\w\.]*)/i, /(avant |iemobile|slim)(?:browser)?[\/ ]?([\w\.]*)/i, /(ba?idubrowser)[\/ ]?([\w\.]+)/i, /(?:ms|\()(ie) ([\w\.]+)/i, /(flock|rockmelt|midori|epiphany|silk|skyfire|bolt|iron|vivaldi|iridium|phantomjs|bowser|quark|qupzilla|falkon|rekonq|puffin|brave|whale(?!.+naver)|qqbrowserlite|qq|duckduckgo)\/([-\w\.]+)/i, /(heytap|ovi)browser\/([\d\.]+)/i, /(weibo)__([\d\.]+)/i], [I, v], [/(?:\buc? ?browser|(?:juc.+)ucweb)[\/ ]?([\w\.]+)/i], [v, [I, "UC" + te]], [/microm.+\bqbcore\/([\w\.]+)/i, /\bqbcore\/([\w\.]+).+microm/i], [v, [I, "WeChat(Win) Desktop"]], [/micromessenger\/([\w\.]+)/i], [v, [I, "WeChat"]], [/konqueror\/([\w\.]+)/i], [v, [I, "Konqueror"]], [/trident.+rv[: ]([\w\.]{1,9})\b.+like gecko/i], [v, [I, "IE"]], [/ya(?:search)?browser\/([\w\.]+)/i], [v, [I, "Yandex"]], [/(avast|avg)\/([\w\.]+)/i], [[I, /(.+)/, "$1 Secure " + te], v], [/\bfocus\/([\w\.]+)/i], [v, [I, K + " Focus"]], [/\bopt\/([\w\.]+)/i], [v, [I, ne + " Touch"]], [/coc_coc\w+\/([\w\.]+)/i], [v, [I, "Coc Coc"]], [/dolfin\/([\w\.]+)/i], [v, [I, "Dolphin"]], [/coast\/([\w\.]+)/i], [v, [I, ne + " Coast"]], [/miuibrowser\/([\w\.]+)/i], [v, [I, "MIUI " + te]], [/fxios\/([-\w\.]+)/i], [v, [I, K]], [/\bqihu|(qi?ho?o?|360)browser/i], [[I, "360 " + te]], [/(oculus|samsung|sailfish|huawei)browser\/([\w\.]+)/i], [[I, /(.+)/, "$1 " + te], v], [/(comodo_dragon)\/([\w\.]+)/i], [[I, /_/g, " "], v], [/(electron)\/([\w\.]+) safari/i, /(tesla)(?: qtcarbrowser|\/(20\d\d\.[-\w\.]+))/i, /m?(qqbrowser|baiduboxapp|2345Explorer)[\/ ]?([\w\.]+)/i], [I, v], [/(metasr)[\/ ]?([\w\.]+)/i, /(lbbrowser)/i, /\[(linkedin)app\]/i], [I], [/((?:fban\/fbios|fb_iab\/fb4a)(?!.+fbav)|;fbav\/([\w\.]+);)/i], [[I, Ce], v], [/(kakao(?:talk|story))[\/ ]([\w\.]+)/i, /(naver)\(.*?(\d+\.[\w\.]+).*\)/i, /safari (line)\/([\w\.]+)/i, /\b(line)\/([\w\.]+)\/iab/i, /(chromium|instagram)[\/ ]([-\w\.]+)/i], [I, v], [/\bgsa\/([\w\.]+) .*safari\//i], [v, [I, "GSA"]], [/musical_ly(?:.+app_?version\/|_)([\w\.]+)/i], [v, [I, "TikTok"]], [/headlesschrome(?:\/([\w\.]+)| )/i], [v, [I, j + " Headless"]], [/ wv\).+(chrome)\/([\w\.]+)/i], [[I, j + " WebView"], v], [/droid.+ version\/([\w\.]+)\b.+(?:mobile safari|safari)/i], [v, [I, "Android " + te]], [/(chrome|omniweb|arora|[tizenoka]{5} ?browser)\/v?([\w\.]+)/i], [I, v], [/version\/([\w\.\,]+) .*mobile\/\w+ (safari)/i], [v, [I, "Mobile Safari"]], [/version\/([\w(\.|\,)]+) .*(mobile ?safari|safari)/i], [v, I], [/webkit.+?(mobile ?safari|safari)(\/[\w\.]+)/i], [I, [v, Pr, Li]], [/(webkit|khtml)\/([\w\.]+)/i], [I, v], [/(navigator|netscape\d?)\/([-\w\.]+)/i], [[I, "Netscape"], v], [/mobile vr; rv:([\w\.]+)\).+firefox/i], [v, [I, K + " Reality"]], [/ekiohf.+(flow)\/([\w\.]+)/i, /(swiftfox)/i, /(icedragon|iceweasel|camino|chimera|fennec|maemo browser|minimo|conkeror|klar)[\/ ]?([\w\.\+]+)/i, /(seamonkey|k-meleon|icecat|iceape|firebird|phoenix|palemoon|basilisk|waterfox)\/([-\w\.]+)$/i, /(firefox)\/([\w\.]+)/i, /(mozilla)\/([\w\.]+) .+rv\:.+gecko\/\d+/i, /(polaris|lynx|dillo|icab|doris|amaya|w3m|netsurf|sleipnir|obigo|mosaic|(?:go|ice|up)[\. ]?browser)[-\/ ]?v?([\w\.]+)/i, /(links) \(([\w\.]+)/i, /panasonic;(viera)/i], [I, v], [/(cobalt)\/([\w\.]+)/i], [I, [v, /master.|lts./, ""]]], cpu: [[/(?:(amd|x(?:(?:86|64)[-_])?|wow|win)64)[;\)]/i], [[R, "amd64"]], [/(ia32(?=;))/i], [[R, se]], [/((?:i[346]|x)86)[;\)]/i], [[R, "ia32"]], [/\b(aarch64|arm(v?8e?l?|_?64))\b/i], [[R, "arm64"]], [/\b(arm(?:v[67])?ht?n?[fl]p?)\b/i], [[R, "armhf"]], [/windows (ce|mobile); ppc;/i], [[R, "arm"]], [/((?:ppc|powerpc)(?:64)?)(?: mac|;|\))/i], [[R, /ower/, a, se]], [/(sun4\w)[;\)]/i], [[R, "sparc"]], [/((?:avr32|ia64(?=;))|68k(?=\))|\barm(?=v(?:[1-7]|[5-7]1)l?|;|eabi)|(?=atmel )avr|(?:irix|mips|sparc)(?:64)?\b|pa-risc)/i], [[R, se]]], device: [[/\b(sch-i[89]0\d|shw-m380s|sm-[ptx]\w{2,4}|gt-[pn]\d{2,4}|sgh-t8[56]9|nexus 10)/i], [h, [Q, ae], [B, x]], [/\b((?:s[cgp]h|gt|sm)-\w+|sc[g-]?[\d]+a?|galaxy nexus)/i, /samsung[- ]([-\w]+)/i, /sec-(sgh\w+)/i], [h, [Q, ae], [B, w]], [/(?:\/|\()(ip(?:hone|od)[\w, ]*)(?:\/|;)/i], [h, [Q, G], [B, w]], [/\((ipad);[-\w\),; ]+apple/i, /applecoremedia\/[\w\.]+ \((ipad)/i, /\b(ipad)\d\d?,\d\d?[;\]].+ios/i], [h, [Q, G], [B, x]], [/(macintosh);/i], [h, [Q, G]], [/\b(sh-?[altvz]?\d\d[a-ekm]?)/i], [h, [Q, le], [B, w]], [/\b((?:ag[rs][23]?|bah2?|sht?|btv)-a?[lw]\d{2})\b(?!.+d\/s)/i], [h, [Q, q], [B, x]], [/(?:huawei|honor)([-\w ]+)[;\)]/i, /\b(nexus 6p|\w{2,4}e?-[atu]?[ln][\dx][012359c][adn]?)\b(?!.+d\/s)/i], [h, [Q, q], [B, w]], [/\b(poco[\w ]+)(?: bui|\))/i, /\b; (\w+) build\/hm\1/i, /\b(hm[-_ ]?note?[_ ]?(?:\d\w)?) bui/i, /\b(redmi[\-_ ]?(?:note|k)?[\w_ ]+)(?: bui|\))/i, /\b(mi[-_ ]?(?:a\d|one|one[_ ]plus|note lte|max|cc)?[_ ]?(?:\d?\w?)[_ ]?(?:plus|se|lite)?)(?: bui|\))/i], [[h, /_/g, " "], [Q, Ae], [B, w]], [/\b(mi[-_ ]?(?:pad)(?:[\w_ ]+))(?: bui|\))/i], [[h, /_/g, " "], [Q, Ae], [B, x]], [/; (\w+) bui.+ oppo/i, /\b(cph[12]\d{3}|p(?:af|c[al]|d\w|e[ar])[mt]\d0|x9007|a101op)\b/i], [h, [Q, "OPPO"], [B, w]], [/vivo (\w+)(?: bui|\))/i, /\b(v[12]\d{3}\w?[at])(?: bui|;)/i], [h, [Q, "Vivo"], [B, w]], [/\b(rmx[12]\d{3})(?: bui|;|\))/i], [h, [Q, "Realme"], [B, w]], [/\b(milestone|droid(?:[2-4x]| (?:bionic|x2|pro|razr))?:?( 4g)?)\b[\w ]+build\//i, /\bmot(?:orola)?[- ](\w*)/i, /((?:moto[\w\(\) ]+|xt\d{3,4}|nexus 6)(?= bui|\)))/i], [h, [Q, k], [B, w]], [/\b(mz60\d|xoom[2 ]{0,2}) build\//i], [h, [Q, k], [B, x]], [/((?=lg)?[vl]k\-?\d{3}) bui| 3\.[-\w; ]{10}lg?-([06cv9]{3,4})/i], [h, [Q, X], [B, x]], [/(lm(?:-?f100[nv]?|-[\w\.]+)(?= bui|\))|nexus [45])/i, /\blg[-e;\/ ]+((?!browser|netcast|android tv)\w+)/i, /\blg-?([\d\w]+) bui/i], [h, [Q, X], [B, w]], [/(ideatab[-\w ]+)/i, /lenovo ?(s[56]000[-\w]+|tab(?:[\w ]+)|yt[-\d\w]{6}|tb[-\d\w]{6})/i], [h, [Q, "Lenovo"], [B, x]], [/(?:maemo|nokia).*(n900|lumia \d+)/i, /nokia[-_ ]?([-\w\.]*)/i], [[h, /_/g, " "], [Q, "Nokia"], [B, w]], [/(pixel c)\b/i], [h, [Q, W], [B, x]], [/droid.+; (pixel[\daxl ]{0,6})(?: bui|\))/i], [h, [Q, W], [B, w]], [/droid.+ (a?\d[0-2]{2}so|[c-g]\d{4}|so[-gl]\w+|xq-a\w[4-7][12])(?= bui|\).+chrome\/(?![1-6]{0,1}\d\.))/i], [h, [Q, ge], [B, w]], [/sony tablet [ps]/i, /\b(?:sony)?sgp\w+(?: bui|\))/i], [[h, "Xperia Tablet"], [Q, ge], [B, x]], [/ (kb2005|in20[12]5|be20[12][59])\b/i, /(?:one)?(?:plus)? (a\d0\d\d)(?: b|\))/i], [h, [Q, "OnePlus"], [B, w]], [/(alexa)webm/i, /(kf[a-z]{2}wi|aeo[c-r]{2})( bui|\))/i, /(kf[a-z]+)( bui|\)).+silk\//i], [h, [Q, $], [B, x]], [/((?:sd|kf)[0349hijorstuw]+)( bui|\)).+silk\//i], [[h, /(.+)/g, "Fire Phone $1"], [Q, $], [B, w]], [/(playbook);[-\w\),; ]+(rim)/i], [h, Q, [B, x]], [/\b((?:bb[a-f]|st[hv])100-\d)/i, /\(bb10; (\w+)/i], [h, [Q, Ee], [B, w]], [/(?:\b|asus_)(transfo[prime ]{4,10} \w+|eeepc|slider \w+|nexus 7|padfone|p00[cj])/i], [h, [Q, ue], [B, x]], [/ (z[bes]6[027][012][km][ls]|zenfone \d\w?)\b/i], [h, [Q, ue], [B, w]], [/(nexus 9)/i], [h, [Q, "HTC"], [B, x]], [/(htc)[-;_ ]{1,2}([\w ]+(?=\)| bui)|\w+)/i, /(zte)[- ]([\w ]+?)(?: bui|\/|\))/i, /(alcatel|geeksphone|nexian|panasonic(?!(?:;|\.))|sony(?!-bra))[-_ ]?([-\w]*)/i], [Q, [h, /_/g, " "], [B, w]], [/droid.+; ([ab][1-7]-?[0178a]\d\d?)/i], [h, [Q, "Acer"], [B, x]], [/droid.+; (m[1-5] note) bui/i, /\bmz-([-\w]{2,})/i], [h, [Q, "Meizu"], [B, w]], [/(blackberry|benq|palm(?=\-)|sonyericsson|acer|asus|dell|meizu|motorola|polytron)[-_ ]?([-\w]*)/i, /(hp) ([\w ]+\w)/i, /(asus)-?(\w+)/i, /(microsoft); (lumia[\w ]+)/i, /(lenovo)[-_ ]?([-\w]+)/i, /(jolla)/i, /(oppo) ?([\w ]+) bui/i], [Q, h, [B, w]], [/(kobo)\s(ereader|touch)/i, /(archos) (gamepad2?)/i, /(hp).+(touchpad(?!.+tablet)|tablet)/i, /(kindle)\/([\w\.]+)/i, /(nook)[\w ]+build\/(\w+)/i, /(dell) (strea[kpr\d ]*[\dko])/i, /(le[- ]+pan)[- ]+(\w{1,9}) bui/i, /(trinity)[- ]*(t\d{3}) bui/i, /(gigaset)[- ]+(q\w{1,9}) bui/i, /(vodafone) ([\w ]+)(?:\)| bui)/i], [Q, h, [B, x]], [/(surface duo)/i], [h, [Q, F], [B, x]], [/droid [\d\.]+; (fp\du?)(?: b|\))/i], [h, [Q, "Fairphone"], [B, w]], [/(u304aa)/i], [h, [Q, "AT&T"], [B, w]], [/\bsie-(\w*)/i], [h, [Q, "Siemens"], [B, w]], [/\b(rct\w+) b/i], [h, [Q, "RCA"], [B, x]], [/\b(venue[\d ]{2,7}) b/i], [h, [Q, "Dell"], [B, x]], [/\b(q(?:mv|ta)\w+) b/i], [h, [Q, "Verizon"], [B, x]], [/\b(?:barnes[& ]+noble |bn[rt])([\w\+ ]*) b/i], [h, [Q, "Barnes & Noble"], [B, x]], [/\b(tm\d{3}\w+) b/i], [h, [Q, "NuVision"], [B, x]], [/\b(k88) b/i], [h, [Q, "ZTE"], [B, x]], [/\b(nx\d{3}j) b/i], [h, [Q, "ZTE"], [B, w]], [/\b(gen\d{3}) b.+49h/i], [h, [Q, "Swiss"], [B, w]], [/\b(zur\d{3}) b/i], [h, [Q, "Swiss"], [B, x]], [/\b((zeki)?tb.*\b) b/i], [h, [Q, "Zeki"], [B, x]], [/\b([yr]\d{2}) b/i, /\b(dragon[- ]+touch |dt)(\w{5}) b/i], [[Q, "Dragon Touch"], h, [B, x]], [/\b(ns-?\w{0,9}) b/i], [h, [Q, "Insignia"], [B, x]], [/\b((nxa|next)-?\w{0,9}) b/i], [h, [Q, "NextBook"], [B, x]], [/\b(xtreme\_)?(v(1[045]|2[015]|[3469]0|7[05])) b/i], [[Q, "Voice"], h, [B, w]], [/\b(lvtel\-)?(v1[12]) b/i], [[Q, "LvTel"], h, [B, w]], [/\b(ph-1) /i], [h, [Q, "Essential"], [B, w]], [/\b(v(100md|700na|7011|917g).*\b) b/i], [h, [Q, "Envizen"], [B, x]], [/\b(trio[-\w\. ]+) b/i], [h, [Q, "MachSpeed"], [B, x]], [/\btu_(1491) b/i], [h, [Q, "Rotor"], [B, x]], [/(shield[\w ]+) b/i], [h, [Q, "Nvidia"], [B, x]], [/(sprint) (\w+)/i], [Q, h, [B, w]], [/(kin\.[onetw]{3})/i], [[h, /\./g, " "], [Q, F], [B, w]], [/droid.+; (cc6666?|et5[16]|mc[239][23]x?|vc8[03]x?)\)/i], [h, [Q, Ie], [B, x]], [/droid.+; (ec30|ps20|tc[2-8]\d[kx])\)/i], [h, [Q, Ie], [B, w]], [/smart-tv.+(samsung)/i], [Q, [B, P]], [/hbbtv.+maple;(\d+)/i], [[h, /^/, "SmartTV"], [Q, ae], [B, P]], [/(nux; netcast.+smarttv|lg (netcast\.tv-201\d|android tv))/i], [[Q, X], [B, P]], [/(apple) ?tv/i], [Q, [h, G + " TV"], [B, P]], [/crkey/i], [[h, j + "cast"], [Q, W], [B, P]], [/droid.+aft(\w)( bui|\))/i], [h, [Q, $], [B, P]], [/\(dtv[\);].+(aquos)/i, /(aquos-tv[\w ]+)\)/i], [h, [Q, le], [B, P]], [/(bravia[\w ]+)( bui|\))/i], [h, [Q, ge], [B, P]], [/(mitv-\w{5}) bui/i], [h, [Q, Ae], [B, P]], [/Hbbtv.*(technisat) (.*);/i], [Q, h, [B, P]], [/\b(roku)[\dx]*[\)\/]((?:dvp-)?[\d\.]*)/i, /hbbtv\/\d+\.\d+\.\d+ +\([\w\+ ]*; *([\w\d][^;]*);([^;]*)/i], [[Q, an], [h, an], [B, P]], [/\b(android tv|smart[- ]?tv|opera tv|tv; rv:)\b/i], [[B, P]], [/(ouya)/i, /(nintendo) ([wids3utch]+)/i], [Q, h, [B, O]], [/droid.+; (shield) bui/i], [h, [Q, "Nvidia"], [B, O]], [/(playstation [345portablevi]+)/i], [h, [Q, ge], [B, O]], [/\b(xbox(?: one)?(?!; xbox))[\); ]/i], [h, [Q, F], [B, O]], [/((pebble))app/i], [Q, h, [B, N]], [/(watch)(?: ?os[,\/]|\d,\d\/)[\d\.]+/i], [h, [Q, G], [B, N]], [/droid.+; (glass) \d/i], [h, [Q, W], [B, N]], [/droid.+; (wt63?0{2,3})\)/i], [h, [Q, Ie], [B, N]], [/(quest( 2| pro)?)/i], [h, [Q, Ce], [B, N]], [/(tesla)(?: qtcarbrowser|\/[-\w\.]+)/i], [Q, [B, U]], [/(aeobc)\b/i], [h, [Q, $], [B, U]], [/droid .+?; ([^;]+?)(?: bui|\) applew).+? mobile safari/i], [h, [B, w]], [/droid .+?; ([^;]+?)(?: bui|\) applew).+?(?! mobile) safari/i], [h, [B, x]], [/\b((tablet|tab)[;\/]|focus\/\d(?!.+mobile))/i], [[B, x]], [/(phone|mobile(?:[;\/]| [ \w\/\.]*safari)|pda(?=.+windows ce))/i], [[B, w]], [/(android[-\w\. ]{0,9});.+buil/i], [h, [Q, "Generic"]]], engine: [[/windows.+ edge\/([\w\.]+)/i], [v, [I, L + "HTML"]], [/webkit\/537\.36.+chrome\/(?!27)([\w\.]+)/i], [v, [I, "Blink"]], [/(presto)\/([\w\.]+)/i, /(webkit|trident|netfront|netsurf|amaya|lynx|w3m|goanna)\/([\w\.]+)/i, /ekioh(flow)\/([\w\.]+)/i, /(khtml|tasman|links)[\/ ]\(?([\w\.]+)/i, /(icab)[\/ ]([23]\.[\d\.]+)/i, /\b(libweb)/i], [I, v], [/rv\:([\w\.]{1,9})\b.+(gecko)/i], [v, I]], os: [[/microsoft (windows) (vista|xp)/i], [I, v], [/(windows) nt 6\.2; (arm)/i, /(windows (?:phone(?: os)?|mobile))[\/ ]?([\d\.\w ]*)/i, /(windows)[\/ ]?([ntce\d\. ]+\w)(?!.+xbox)/i], [I, [v, Pr, Sn]], [/(win(?=3|9|n)|win 9x )([nt\d\.]+)/i], [[I, "Windows"], [v, Pr, Sn]], [/ip[honead]{2,4}\b(?:.*os ([\w]+) like mac|; opera)/i, /ios;fbsv\/([\d\.]+)/i, /cfnetwork\/.+darwin/i], [[v, /_/g, "."], [I, "iOS"]], [/(mac os x) ?([\w\. ]*)/i, /(macintosh|mac_powerpc\b)(?!.+haiku)/i], [[I, Be], [v, /_/g, "."]], [/droid ([\w\.]+)\b.+(android[- ]x86|harmonyos)/i], [v, I], [/(android|webos|qnx|bada|rim tablet os|maemo|meego|sailfish)[-\/ ]?([\w\.]*)/i, /(blackberry)\w*\/([\w\.]*)/i, /(tizen|kaios)[\/ ]([\w\.]+)/i, /\((series40);/i], [I, v], [/\(bb(10);/i], [v, [I, Ee]], [/(?:symbian ?os|symbos|s60(?=;)|series60)[-\/ ]?([\w\.]*)/i], [v, [I, "Symbian"]], [/mozilla\/[\d\.]+ \((?:mobile|tablet|tv|mobile; [\w ]+); rv:.+ gecko\/([\w\.]+)/i], [v, [I, K + " OS"]], [/web0s;.+rt(tv)/i, /\b(?:hp)?wos(?:browser)?\/([\w\.]+)/i], [v, [I, "webOS"]], [/watch(?: ?os[,\/]|\d,\d\/)([\d\.]+)/i], [v, [I, "watchOS"]], [/crkey\/([\d\.]+)/i], [v, [I, j + "cast"]], [/(cros) [\w]+(?:\)| ([\w\.]+)\b)/i], [[I, de], v], [/panasonic;(viera)/i, /(netrange)mmh/i, /(nettv)\/(\d+\.[\w\.]+)/i, /(nintendo|playstation) ([wids345portablevuch]+)/i, /(xbox); +xbox ([^\);]+)/i, /\b(joli|palm)\b ?(?:os)?\/?([\w\.]*)/i, /(mint)[\/\(\) ]?(\w*)/i, /(mageia|vectorlinux)[; ]/i, /([kxln]?ubuntu|debian|suse|opensuse|gentoo|arch(?= linux)|slackware|fedora|mandriva|centos|pclinuxos|red ?hat|zenwalk|linpus|raspbian|plan 9|minix|risc os|contiki|deepin|manjaro|elementary os|sabayon|linspire)(?: gnu\/linux)?(?: enterprise)?(?:[- ]linux)?(?:-gnu)?[-\/ ]?(?!chrom|package)([-\w\.]*)/i, /(hurd|linux) ?([\w\.]*)/i, /(gnu) ?([\w\.]*)/i, /\b([-frentopcghs]{0,5}bsd|dragonfly)[\/ ]?(?!amd|[ix346]{1,2}86)([\w\.]*)/i, /(haiku) (\w+)/i], [I, v], [/(sunos) ?([\w\.\d]*)/i], [[I, "Solaris"], v], [/((?:open)?solaris)[-\/ ]?([\w\.]*)/i, /(aix) ((\d)(?=\.|\)| )[\w\.])*/i, /\b(beos|os\/2|amigaos|morphos|openvms|fuchsia|hp-ux|serenityos)/i, /(unix) ?([\w\.]*)/i], [I, v]] }, St = function(Re, qe) {
16984
16972
  if (typeof Re === d && (qe = Re, Re = r), !(this instanceof St))
16985
16973
  return new St(Re, qe).getResult();
16986
16974
  var ve = typeof n !== g && n.navigator ? n.navigator : r, Ye = Re || (ve && ve.userAgent ? ve.userAgent : a), me = ve && ve.userAgentData ? ve.userAgentData : r, Ht = qe ? ke(Ft, qe) : Ft, ze = ve && ve.userAgent == Ye;
16987
16975
  return this.getBrowser = function() {
16988
16976
  var Qe = {};
16989
- return Qe[I] = r, Qe[y] = r, Ue.call(Qe, Ye, Ht.browser), Qe[E] = Pt(Qe[y]), ze && ve && ve.brave && typeof ve.brave.isBrave == u && (Qe[I] = "Brave"), Qe;
16977
+ return Qe[I] = r, Qe[v] = r, Ue.call(Qe, Ye, Ht.browser), Qe[E] = Pt(Qe[v]), ze && ve && ve.brave && typeof ve.brave.isBrave == u && (Qe[I] = "Brave"), Qe;
16990
16978
  }, this.getCPU = function() {
16991
16979
  var Qe = {};
16992
16980
  return Qe[R] = r, Ue.call(Qe, Ye, Ht.cpu), Qe;
@@ -16995,10 +16983,10 @@ var pe = {}, Ku = { exports: {} };
16995
16983
  return Qe[Q] = r, Qe[h] = r, Qe[B] = r, Ue.call(Qe, Ye, Ht.device), ze && !Qe[B] && me && me.mobile && (Qe[B] = w), ze && Qe[h] == "Macintosh" && ve && typeof ve.standalone !== g && ve.maxTouchPoints && ve.maxTouchPoints > 2 && (Qe[h] = "iPad", Qe[B] = x), Qe;
16996
16984
  }, this.getEngine = function() {
16997
16985
  var Qe = {};
16998
- return Qe[I] = r, Qe[y] = r, Ue.call(Qe, Ye, Ht.engine), Qe;
16986
+ return Qe[I] = r, Qe[v] = r, Ue.call(Qe, Ye, Ht.engine), Qe;
16999
16987
  }, this.getOS = function() {
17000
16988
  var Qe = {};
17001
- return Qe[I] = r, Qe[y] = r, Ue.call(Qe, Ye, Ht.os), ze && !Qe[I] && me && me.platform != "Unknown" && (Qe[I] = me.platform.replace(/chrome os/i, de).replace(/macos/i, Be)), Qe;
16989
+ return Qe[I] = r, Qe[v] = r, Ue.call(Qe, Ye, Ht.os), ze && !Qe[I] && me && me.platform != "Unknown" && (Qe[I] = me.platform.replace(/chrome os/i, de).replace(/macos/i, Be)), Qe;
17002
16990
  }, this.getResult = function() {
17003
16991
  return { ua: this.getUA(), browser: this.getBrowser(), engine: this.getEngine(), os: this.getOS(), device: this.getDevice(), cpu: this.getCPU() };
17004
16992
  }, this.getUA = function() {
@@ -17007,7 +16995,7 @@ var pe = {}, Ku = { exports: {} };
17007
16995
  return Ye = typeof Qe === p && Qe.length > Z ? an(Qe, Z) : Qe, this;
17008
16996
  }, this.setUA(Ye), this;
17009
16997
  };
17010
- St.VERSION = s, St.BROWSER = re([I, y, E]), St.CPU = re([R]), St.DEVICE = re([h, Q, B, O, w, P, x, N, U]), St.ENGINE = St.OS = re([I, y]), e.exports && (t = e.exports = St), t.UAParser = St;
16998
+ St.VERSION = s, St.BROWSER = re([I, v, E]), St.CPU = re([R]), St.DEVICE = re([h, Q, B, O, w, P, x, N, U]), St.ENGINE = St.OS = re([I, v]), e.exports && (t = e.exports = St), t.UAParser = St;
17011
16999
  var hn = typeof n !== g && (n.jQuery || n.Zepto);
17012
17000
  if (hn && !hn.ua) {
17013
17001
  var Yn = new St();
@@ -17820,13 +17808,13 @@ function $a(e, t, n) {
17820
17808
  var U = N - g, Z = N - d, $ = t - U;
17821
17809
  return E ? q5($, a - Z) : $;
17822
17810
  }
17823
- function y(N) {
17811
+ function v(N) {
17824
17812
  var U = N - g, Z = N - d;
17825
17813
  return g === void 0 || U >= t || U < 0 || E && Z >= a;
17826
17814
  }
17827
17815
  function R() {
17828
17816
  var N = nu();
17829
- if (y(N))
17817
+ if (v(N))
17830
17818
  return O(N);
17831
17819
  u = setTimeout(R, Q(N));
17832
17820
  }
@@ -17840,7 +17828,7 @@ function $a(e, t, n) {
17840
17828
  return u === void 0 ? l : O(nu());
17841
17829
  }
17842
17830
  function P() {
17843
- var N = nu(), U = y(N);
17831
+ var N = nu(), U = v(N);
17844
17832
  if (r = arguments, s = this, g = N, U) {
17845
17833
  if (u === void 0)
17846
17834
  return B(g);
@@ -17976,9 +17964,9 @@ var $5 = /* @__PURE__ */ Object.freeze({
17976
17964
  }, this.drag = function(s) {
17977
17965
  var a, l, u, g, d, p, E, h, I, B, Q;
17978
17966
  if (!(!r.draggedAxis || !r.contentWrapperEl)) {
17979
- var y, R = r.axis[r.draggedAxis].track, O = (l = (a = R.rect) === null || a === void 0 ? void 0 : a[r.axis[r.draggedAxis].sizeAttr]) !== null && l !== void 0 ? l : 0, w = r.axis[r.draggedAxis].scrollbar, x = (g = (u = r.contentWrapperEl) === null || u === void 0 ? void 0 : u[r.axis[r.draggedAxis].scrollSizeAttr]) !== null && g !== void 0 ? g : 0, P = parseInt((p = (d = r.elStyles) === null || d === void 0 ? void 0 : d[r.axis[r.draggedAxis].sizeAttr]) !== null && p !== void 0 ? p : "0px", 10);
17980
- s.preventDefault(), s.stopPropagation(), r.draggedAxis === "y" ? y = s.pageY : y = s.pageX;
17981
- var N = y - ((h = (E = R.rect) === null || E === void 0 ? void 0 : E[r.axis[r.draggedAxis].offsetAttr]) !== null && h !== void 0 ? h : 0) - r.axis[r.draggedAxis].dragOffset;
17967
+ var v, R = r.axis[r.draggedAxis].track, O = (l = (a = R.rect) === null || a === void 0 ? void 0 : a[r.axis[r.draggedAxis].sizeAttr]) !== null && l !== void 0 ? l : 0, w = r.axis[r.draggedAxis].scrollbar, x = (g = (u = r.contentWrapperEl) === null || u === void 0 ? void 0 : u[r.axis[r.draggedAxis].scrollSizeAttr]) !== null && g !== void 0 ? g : 0, P = parseInt((p = (d = r.elStyles) === null || d === void 0 ? void 0 : d[r.axis[r.draggedAxis].sizeAttr]) !== null && p !== void 0 ? p : "0px", 10);
17968
+ s.preventDefault(), s.stopPropagation(), r.draggedAxis === "y" ? v = s.pageY : v = s.pageX;
17969
+ var N = v - ((h = (E = R.rect) === null || E === void 0 ? void 0 : E[r.axis[r.draggedAxis].offsetAttr]) !== null && h !== void 0 ? h : 0) - r.axis[r.draggedAxis].dragOffset;
17982
17970
  N = r.draggedAxis === "x" && r.isRtl ? ((B = (I = R.rect) === null || I === void 0 ? void 0 : I[r.axis[r.draggedAxis].sizeAttr]) !== null && B !== void 0 ? B : 0) - w.size - N : N;
17983
17971
  var U = N / (O - w.size), Z = U * (x - P);
17984
17972
  r.draggedAxis === "x" && r.isRtl && (Z = !((Q = e.getRtlHelpers()) === null || Q === void 0) && Q.isScrollingToNegative ? -Z : Z), r.contentWrapperEl[r.axis[r.draggedAxis].scrollOffsetAttr] = Z;
@@ -18137,8 +18125,8 @@ var $5 = /* @__PURE__ */ Object.freeze({
18137
18125
  t.preventDefault();
18138
18126
  var d = Hr(this.el);
18139
18127
  this.axis[n].scrollbar.rect = g.scrollbar.el.getBoundingClientRect();
18140
- var p = this.axis[n].scrollbar, E = (a = (s = p.rect) === null || s === void 0 ? void 0 : s[this.axis[n].offsetAttr]) !== null && a !== void 0 ? a : 0, h = parseInt((u = (l = this.elStyles) === null || l === void 0 ? void 0 : l[this.axis[n].sizeAttr]) !== null && u !== void 0 ? u : "0px", 10), I = this.contentWrapperEl[this.axis[n].scrollOffsetAttr], B = n === "y" ? this.mouseY - E : this.mouseX - E, Q = B < 0 ? -1 : 1, y = Q === -1 ? I - h : I + h, R = 40, O = function() {
18141
- r.contentWrapperEl && (Q === -1 ? I > y && (I -= R, r.contentWrapperEl[r.axis[n].scrollOffsetAttr] = I, d.requestAnimationFrame(O)) : I < y && (I += R, r.contentWrapperEl[r.axis[n].scrollOffsetAttr] = I, d.requestAnimationFrame(O)));
18128
+ var p = this.axis[n].scrollbar, E = (a = (s = p.rect) === null || s === void 0 ? void 0 : s[this.axis[n].offsetAttr]) !== null && a !== void 0 ? a : 0, h = parseInt((u = (l = this.elStyles) === null || l === void 0 ? void 0 : l[this.axis[n].sizeAttr]) !== null && u !== void 0 ? u : "0px", 10), I = this.contentWrapperEl[this.axis[n].scrollOffsetAttr], B = n === "y" ? this.mouseY - E : this.mouseX - E, Q = B < 0 ? -1 : 1, v = Q === -1 ? I - h : I + h, R = 40, O = function() {
18129
+ r.contentWrapperEl && (Q === -1 ? I > v && (I -= R, r.contentWrapperEl[r.axis[n].scrollOffsetAttr] = I, d.requestAnimationFrame(O)) : I < v && (I += R, r.contentWrapperEl[r.axis[n].scrollOffsetAttr] = I, d.requestAnimationFrame(O)));
18142
18130
  };
18143
18131
  O();
18144
18132
  }
@@ -18404,7 +18392,7 @@ const c8 = ["addEndListener", "appear", "children", "easing", "in", "onEnter", "
18404
18392
  onExit: I,
18405
18393
  onExited: B,
18406
18394
  onExiting: Q,
18407
- style: y,
18395
+ style: v,
18408
18396
  timeout: R = s,
18409
18397
  // eslint-disable-next-line react/prop-types
18410
18398
  TransitionComponent: O = iB
@@ -18416,7 +18404,7 @@ const c8 = ["addEndListener", "appear", "children", "easing", "in", "onEnter", "
18416
18404
  }, U = N(h), Z = N((j, L) => {
18417
18405
  Z0(j);
18418
18406
  const K = yl({
18419
- style: y,
18407
+ style: v,
18420
18408
  timeout: R,
18421
18409
  easing: g
18422
18410
  }, {
@@ -18425,7 +18413,7 @@ const c8 = ["addEndListener", "appear", "children", "easing", "in", "onEnter", "
18425
18413
  j.style.webkitTransition = r.transitions.create("opacity", K), j.style.transition = r.transitions.create("opacity", K), p && p(j, L);
18426
18414
  }), $ = N(E), G = N(Q), ue = N((j) => {
18427
18415
  const L = yl({
18428
- style: y,
18416
+ style: v,
18429
18417
  timeout: R,
18430
18418
  easing: g
18431
18419
  }, {
@@ -18452,7 +18440,7 @@ const c8 = ["addEndListener", "appear", "children", "easing", "in", "onEnter", "
18452
18440
  style: H({
18453
18441
  opacity: 0,
18454
18442
  visibility: j === "exited" && !d ? "hidden" : void 0
18455
- }, A8[j], y, u.props.style),
18443
+ }, A8[j], v, u.props.style),
18456
18444
  ref: P
18457
18445
  }, L))
18458
18446
  }));
@@ -18584,13 +18572,13 @@ const d8 = ["children", "className", "component", "components", "componentsProps
18584
18572
  open: I,
18585
18573
  slotProps: B = {},
18586
18574
  slots: Q = {},
18587
- TransitionComponent: y = u8,
18575
+ TransitionComponent: v = u8,
18588
18576
  transitionDuration: R
18589
18577
  } = l, O = Ke(l, d8), w = H({}, l, {
18590
18578
  component: d,
18591
18579
  invisible: h
18592
18580
  }), x = f8(w), P = (r = B.root) != null ? r : E.root;
18593
- return /* @__PURE__ */ C(y, H({
18581
+ return /* @__PURE__ */ C(v, H({
18594
18582
  in: I,
18595
18583
  timeout: R
18596
18584
  }, O, {
@@ -18741,7 +18729,7 @@ const h8 = eQ, E8 = ["BackdropComponent", "BackdropProps", "classes", "className
18741
18729
  className: I,
18742
18730
  closeAfterTransition: B = !1,
18743
18731
  children: Q,
18744
- container: y,
18732
+ container: v,
18745
18733
  component: R,
18746
18734
  components: O = {},
18747
18735
  componentsProps: w = {},
@@ -18761,7 +18749,7 @@ const h8 = eQ, E8 = ["BackdropComponent", "BackdropProps", "classes", "className
18761
18749
  // eslint-disable-next-line react/prop-types
18762
18750
  theme: W
18763
18751
  } = d, q = Ke(d, E8), [X, F] = z.useState(!0), k = {
18764
- container: y,
18752
+ container: v,
18765
18753
  closeAfterTransition: B,
18766
18754
  disableAutoFocus: x,
18767
18755
  disableEnforceFocus: P,
@@ -19020,7 +19008,7 @@ const rQ = /* @__PURE__ */ z.forwardRef(function(t, n) {
19020
19008
  onEnter: I,
19021
19009
  onEntered: B,
19022
19010
  onEntering: Q,
19023
- onExit: y,
19011
+ onExit: v,
19024
19012
  onExited: R,
19025
19013
  onExiting: O,
19026
19014
  style: w,
@@ -19048,7 +19036,7 @@ const rQ = /* @__PURE__ */ z.forwardRef(function(t, n) {
19048
19036
  }, {
19049
19037
  mode: "exit"
19050
19038
  });
19051
- q.style.webkitTransition = r.transitions.create("-webkit-transform", X), q.style.transition = r.transitions.create("transform", X), za(p, q, d), y && y(q);
19039
+ q.style.webkitTransition = r.transitions.create("-webkit-transform", X), q.style.transition = r.transitions.create("transform", X), za(p, q, d), v && v(q);
19052
19040
  }), L = $((q) => {
19053
19041
  q.style.webkitTransition = "", q.style.transition = "", R && R(q);
19054
19042
  }), K = (q) => {
@@ -19430,7 +19418,7 @@ const lQ = /* @__PURE__ */ z.forwardRef(function(t, n) {
19430
19418
  onClose: I,
19431
19419
  open: B = !1,
19432
19420
  PaperProps: Q = {},
19433
- SlideProps: y,
19421
+ SlideProps: v,
19434
19422
  // eslint-disable-next-line react/prop-types
19435
19423
  TransitionComponent: R = y8,
19436
19424
  transitionDuration: O = a,
@@ -19465,7 +19453,7 @@ const lQ = /* @__PURE__ */ z.forwardRef(function(t, n) {
19465
19453
  direction: aQ[U],
19466
19454
  timeout: O,
19467
19455
  appear: N.current
19468
- }, y, {
19456
+ }, v, {
19469
19457
  children: ue
19470
19458
  }));
19471
19459
  return w === "persistent" ? /* @__PURE__ */ C(uC, H({
@@ -19852,18 +19840,18 @@ c.node, c.any.isRequired, c.any.isRequired;
19852
19840
  const dQ = () => {
19853
19841
  var Q;
19854
19842
  const e = gt(), { identity: t } = HC(), n = Po(null), [r, s] = At(!1), a = () => {
19855
- s((y) => !y);
19856
- }, l = (y) => {
19857
- n.current && n.current.contains(y.target) || s(!1);
19843
+ s((v) => !v);
19844
+ }, l = (v) => {
19845
+ n.current && n.current.contains(v.target) || s(!1);
19858
19846
  }, u = e.palette.mode === "dark" ? "grey.200" : "grey.300", g = !1, d = _P(), p = Zu(), E = VC(), h = xt(() => {
19859
19847
  d();
19860
19848
  }, [E, g, d]), [I, B] = At(null);
19861
19849
  return kt(() => {
19862
- async function y() {
19850
+ async function v() {
19863
19851
  var R = await p.getFile("/profile/me/image");
19864
19852
  B(R);
19865
19853
  }
19866
- y();
19854
+ v();
19867
19855
  }, [p]), /* @__PURE__ */ oe(Me, { sx: { flexShrink: 0, ml: 0.75 }, children: [
19868
19856
  /* @__PURE__ */ C(
19869
19857
  cI,
@@ -19910,9 +19898,9 @@ const dQ = () => {
19910
19898
  }
19911
19899
  ]
19912
19900
  },
19913
- children: ({ TransitionProps: y }) => {
19901
+ children: ({ TransitionProps: v }) => {
19914
19902
  var R;
19915
- return /* @__PURE__ */ C(Mo, { type: "grow", position: "top-right", in: r, ...y, children: /* @__PURE__ */ C(
19903
+ return /* @__PURE__ */ C(Mo, { type: "grow", position: "top-right", in: r, ...v, children: /* @__PURE__ */ C(
19916
19904
  vi,
19917
19905
  {
19918
19906
  sx: {
@@ -20010,7 +19998,7 @@ var fQ = { exports: {} };
20010
19998
  (function(n, r) {
20011
19999
  e.exports = r();
20012
20000
  })(zn, function() {
20013
- var n = 1e3, r = 6e4, s = 36e5, a = "millisecond", l = "second", u = "minute", g = "hour", d = "day", p = "week", E = "month", h = "quarter", I = "year", B = "date", Q = "Invalid Date", y = /^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/, R = /\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g, O = { name: "en", weekdays: "Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"), months: "January_February_March_April_May_June_July_August_September_October_November_December".split("_"), ordinal: function(te) {
20001
+ var n = 1e3, r = 6e4, s = 36e5, a = "millisecond", l = "second", u = "minute", g = "hour", d = "day", p = "week", E = "month", h = "quarter", I = "year", B = "date", Q = "Invalid Date", v = /^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/, R = /\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g, O = { name: "en", weekdays: "Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"), months: "January_February_March_April_May_June_July_August_September_October_November_December".split("_"), ordinal: function(te) {
20014
20002
  var j = ["th", "st", "nd", "rd"], L = te % 100;
20015
20003
  return "[" + te + (j[(L - 20) % 10] || j[L] || j[0]) + "]";
20016
20004
  } }, w = function(te, j, L) {
@@ -20073,7 +20061,7 @@ var fQ = { exports: {} };
20073
20061
  if (W instanceof Date)
20074
20062
  return new Date(W);
20075
20063
  if (typeof W == "string" && !/Z$/i.test(W)) {
20076
- var X = W.match(y);
20064
+ var X = W.match(v);
20077
20065
  if (X) {
20078
20066
  var F = X[2] - 1 || 0, k = (X[7] || "0").substring(0, 3);
20079
20067
  return q ? new Date(Date.UTC(X[1], F, X[3] || 1, X[4] || 0, X[5] || 0, X[6] || 0, k)) : new Date(X[1], F, X[3] || 1, X[4] || 0, X[5] || 0, X[6] || 0, k);
@@ -20463,15 +20451,15 @@ const Y8 = {
20463
20451
  "& .MuiListItemSecondaryAction-root": { ...G8, position: "relative" }
20464
20452
  }
20465
20453
  },
20466
- children: h.map((y) => /* @__PURE__ */ C(
20454
+ children: h.map((v) => /* @__PURE__ */ C(
20467
20455
  sc,
20468
20456
  {
20469
20457
  resource: e,
20470
20458
  selected: B > 0,
20471
- notification: y,
20459
+ notification: v,
20472
20460
  onClick: u
20473
20461
  },
20474
- y.id
20462
+ v.id
20475
20463
  ))
20476
20464
  }
20477
20465
  )
@@ -20605,7 +20593,7 @@ const q8 = () => {
20605
20593
  notification: a,
20606
20594
  disableNotification: l
20607
20595
  }) => {
20608
- const u = gt(), { openDrawer: g } = sr(), { isLoading: d, navigation: p, breadcrumbs: E } = mM(), h = wn(u.breakpoints.down("xl")), I = wn(u.breakpoints.down("lg")), { container: B, miniDrawer: Q, menuOrientation: y, isHorizontalLayout: R } = Xt(), { drawerOpen: O } = sr(), w = R(y) && !I, [x, P] = At(!Q || O), N = () => {
20596
+ const u = gt(), { openDrawer: g } = sr(), { isLoading: d, navigation: p, breadcrumbs: E } = mM(), h = wn(u.breakpoints.down("xl")), I = wn(u.breakpoints.down("lg")), { container: B, miniDrawer: Q, menuOrientation: v, isHorizontalLayout: R } = Xt(), { drawerOpen: O } = sr(), w = R(v) && !I, [x, P] = At(!Q || O), N = () => {
20609
20597
  P(!x), g(!x);
20610
20598
  };
20611
20599
  return kt(() => {
@@ -21171,7 +21159,7 @@ const vl = c.shape({
21171
21159
  const I = Xn(), B = Eg(), Q = {
21172
21160
  component: Ir,
21173
21161
  to: { ...B, pathname: a }
21174
- }, y = Ne.isValidElement(r) ? r : I(r, { _: r }), R = xt(() => g(a), [g, a]);
21162
+ }, v = Ne.isValidElement(r) ? r : I(r, { _: r }), R = xt(() => g(a), [g, a]);
21175
21163
  return e === "header" ? (() => /* @__PURE__ */ oe(
21176
21164
  Ro,
21177
21165
  {
@@ -21180,7 +21168,7 @@ const vl = c.shape({
21180
21168
  onClick: R,
21181
21169
  children: [
21182
21170
  s && /* @__PURE__ */ C(Gr, { children: s }),
21183
- /* @__PURE__ */ C(So, { primary: y }),
21171
+ /* @__PURE__ */ C(So, { primary: v }),
21184
21172
  E && /* @__PURE__ */ C(AI, { children: /* @__PURE__ */ C(
21185
21173
  nl,
21186
21174
  {
@@ -21314,7 +21302,7 @@ const E6 = ie(bt, {
21314
21302
  contentDisposition: l,
21315
21303
  ...u
21316
21304
  }) => {
21317
- const [g, d] = At(0), p = cS(""), E = Pn(u), h = Eg(), I = it(
21305
+ const [g, d] = At(0), p = AS(""), E = Pn(u), h = Eg(), I = it(
21318
21306
  () => Ne.Children.toArray(e).find((O) => BC(O, "top")),
21319
21307
  [e]
21320
21308
  ), B = it(
@@ -21323,12 +21311,12 @@ const E6 = ie(bt, {
21323
21311
  ), Q = it(
21324
21312
  () => Ne.Children.toArray(e).filter((O) => C6(O)),
21325
21313
  [e]
21326
- ), y = (O) => {
21314
+ ), v = (O) => {
21327
21315
  n || d(O);
21328
21316
  }, R = () => Ne.cloneElement(
21329
21317
  s,
21330
21318
  {
21331
- onChange: y,
21319
+ onChange: v,
21332
21320
  syncWithLocation: n,
21333
21321
  url: t,
21334
21322
  value: g,
@@ -21339,7 +21327,7 @@ const E6 = ie(bt, {
21339
21327
  return /* @__PURE__ */ oe(E6, { container: !0, spacing: r * 2, children: [
21340
21328
  /* @__PURE__ */ oe(bt, { item: !0, ...a, children: [
21341
21329
  I,
21342
- n ? /* @__PURE__ */ C(AS, { children: /* @__PURE__ */ C(uS, { path: "/*", element: R() }) }) : R(),
21330
+ n ? /* @__PURE__ */ C(uS, { children: /* @__PURE__ */ C(gS, { path: "/*", element: R() }) }) : R(),
21343
21331
  B
21344
21332
  ] }),
21345
21333
  /* @__PURE__ */ C(bt, { item: !0, ...l, children: Ne.Children.map(Q, (O, w) => {
@@ -21523,7 +21511,7 @@ const v6 = {
21523
21511
  const [d, p] = At(!1), E = Xn(), h = Pn(), { openDialog: I, closeDialog: B } = ql(), Q = xt(
21524
21512
  () => I(h, () => p(!0)),
21525
21513
  [I, h]
21526
- ), y = xt(
21514
+ ), v = xt(
21527
21515
  () => B(h, () => p(!1)),
21528
21516
  [B, h]
21529
21517
  ), R = wn((O) => O.breakpoints.down("md"));
@@ -21540,13 +21528,13 @@ const v6 = {
21540
21528
  children: /* @__PURE__ */ C(eh, {})
21541
21529
  }
21542
21530
  ) : /* @__PURE__ */ C($r, { ...g, sx: u, label: n, onClick: Q, children: /* @__PURE__ */ C(eh, {}) }),
21543
- /* @__PURE__ */ C(gI, { open: d, onClose: y, fullWidth: e, maxWidth: t, children: /* @__PURE__ */ C(
21531
+ /* @__PURE__ */ C(gI, { open: d, onClose: v, fullWidth: e, maxWidth: t, children: /* @__PURE__ */ C(
21544
21532
  dd,
21545
21533
  {
21546
21534
  ...g,
21547
21535
  redirect: s,
21548
21536
  record: r,
21549
- onClose: y
21537
+ onClose: v
21550
21538
  }
21551
21539
  ) })
21552
21540
  ] });
@@ -22114,20 +22102,20 @@ var NQ = { exports: {} };
22114
22102
  return a.fromToBase(d, p, E, h);
22115
22103
  }
22116
22104
  s.en.relativeTime = l, a.fromToBase = function(d, p, E, h, I) {
22117
- for (var B, Q, y, R = E.$locale().relativeTime || l, O = n.thresholds || [{ l: "s", r: 44, d: "second" }, { l: "m", r: 89 }, { l: "mm", r: 44, d: "minute" }, { l: "h", r: 89 }, { l: "hh", r: 21, d: "hour" }, { l: "d", r: 35 }, { l: "dd", r: 25, d: "day" }, { l: "M", r: 45 }, { l: "MM", r: 10, d: "month" }, { l: "y", r: 17 }, { l: "yy", d: "year" }], w = O.length, x = 0; x < w; x += 1) {
22105
+ for (var B, Q, v, R = E.$locale().relativeTime || l, O = n.thresholds || [{ l: "s", r: 44, d: "second" }, { l: "m", r: 89 }, { l: "mm", r: 44, d: "minute" }, { l: "h", r: 89 }, { l: "hh", r: 21, d: "hour" }, { l: "d", r: 35 }, { l: "dd", r: 25, d: "day" }, { l: "M", r: 45 }, { l: "MM", r: 10, d: "month" }, { l: "y", r: 17 }, { l: "yy", d: "year" }], w = O.length, x = 0; x < w; x += 1) {
22118
22106
  var P = O[x];
22119
22107
  P.d && (B = h ? s(d).diff(E, P.d, !0) : E.diff(d, P.d, !0));
22120
22108
  var N = (n.rounding || Math.round)(Math.abs(B));
22121
- if (y = B > 0, N <= P.r || !P.r) {
22109
+ if (v = B > 0, N <= P.r || !P.r) {
22122
22110
  N <= 1 && x > 0 && (P = O[x - 1]);
22123
22111
  var U = R[P.l];
22124
- I && (N = I("" + N)), Q = typeof U == "string" ? U.replace("%d", N) : U(N, p, P.l, y);
22112
+ I && (N = I("" + N)), Q = typeof U == "string" ? U.replace("%d", N) : U(N, p, P.l, v);
22125
22113
  break;
22126
22114
  }
22127
22115
  }
22128
22116
  if (p)
22129
22117
  return Q;
22130
- var Z = y ? R.future : R.past;
22118
+ var Z = v ? R.future : R.past;
22131
22119
  return typeof Z == "function" ? Z(Q) : Z.replace("%s", Q);
22132
22120
  }, a.to = function(d, p) {
22133
22121
  return u(d, p, this, !0);
@@ -22466,7 +22454,7 @@ const gz = ie(qC, {
22466
22454
  "& legend": {
22467
22455
  width: e === !1 ? 0 : "auto"
22468
22456
  }
22469
- })), dz = ({ perPage: e, ...t }) => /* @__PURE__ */ C(at, { ...t, children: /* @__PURE__ */ C(gz, {}) });
22457
+ })), dz = ({ ...e }) => /* @__PURE__ */ C(at, { ...e, children: /* @__PURE__ */ C(gz, {}) });
22470
22458
  dz.propTypes = {
22471
22459
  ...qC.propTypes,
22472
22460
  ...at.propTypes
@@ -22478,7 +22466,7 @@ const fz = ie(_C, {
22478
22466
  "& legend": {
22479
22467
  width: e === !1 ? 0 : "auto"
22480
22468
  }
22481
- })), pz = ({ perPage: e, ...t }) => /* @__PURE__ */ C(at, { ...t, children: /* @__PURE__ */ C(fz, {}) });
22469
+ })), pz = ({ ...e }) => /* @__PURE__ */ C(at, { ...e, children: /* @__PURE__ */ C(fz, {}) });
22482
22470
  pz.propTypes = {
22483
22471
  ..._C.propTypes,
22484
22472
  ...at.propTypes
@@ -26335,7 +26323,7 @@ const Ws = (e) => {
26335
26323
  // deprecated, use a custom layout instead
26336
26324
  notification: B,
26337
26325
  queryClient: Q,
26338
- requireAuth: y,
26326
+ requireAuth: v,
26339
26327
  store: R,
26340
26328
  ready: O,
26341
26329
  theme: w,
@@ -26364,7 +26352,7 @@ const Ws = (e) => {
26364
26352
  loginPage: E,
26365
26353
  authCallbackPage: h,
26366
26354
  notification: B,
26367
- requireAuth: y,
26355
+ requireAuth: v,
26368
26356
  ready: O,
26369
26357
  children: r
26370
26358
  }
@@ -26567,7 +26555,7 @@ const l9 = ({
26567
26555
  );
26568
26556
  if (B != null && B.loading)
26569
26557
  return null;
26570
- const y = i9({
26558
+ const v = i9({
26571
26559
  languages: B,
26572
26560
  defaultLocale: n,
26573
26561
  allowMissing: r
@@ -26581,7 +26569,7 @@ const l9 = ({
26581
26569
  queryClient: u9,
26582
26570
  dataProvider: d,
26583
26571
  authProvider: p,
26584
- i18nProvider: y,
26572
+ i18nProvider: v,
26585
26573
  ...I
26586
26574
  }
26587
26575
  ) }) }) });
@@ -26681,24 +26669,25 @@ export {
26681
26669
  U9 as CreateButton,
26682
26670
  Y9 as CreateContextProvider,
26683
26671
  bQ as CreateInDialogButton,
26672
+ G9 as CustomRoutes,
26684
26673
  iy as Datagrid,
26685
26674
  Bd as DateAgoField,
26686
26675
  jQ as DateField,
26687
26676
  _Q as DateInput,
26688
- G9 as DeleteWithConfirmButton,
26689
- K9 as DeleteWithUndoButton,
26677
+ K9 as DeleteWithConfirmButton,
26678
+ q9 as DeleteWithUndoButton,
26690
26679
  nd as Dot,
26691
26680
  R9 as Edit,
26692
- q9 as EditButton,
26681
+ _9 as EditButton,
26693
26682
  wQ as EditInDialogButton,
26694
26683
  VQ as EmailField,
26695
26684
  Rz as Empty,
26696
26685
  zQ as FileField,
26697
26686
  JQ as FileInput,
26698
- _9 as Form,
26687
+ J9 as Form,
26699
26688
  QQ as FormHeader,
26700
26689
  az as FunctionField,
26701
- J9 as HttpError,
26690
+ X9 as HttpError,
26702
26691
  Do as IconButton,
26703
26692
  fc as ImageField,
26704
26693
  XQ as ImageInput,
@@ -26708,7 +26697,7 @@ export {
26708
26697
  XL as LinearWithIcon,
26709
26698
  ZL as LinearWithLabel,
26710
26699
  sy as List,
26711
- X9 as ListToolbar,
26700
+ Z9 as ListToolbar,
26712
26701
  T9 as Loadable,
26713
26702
  a6 as Loader,
26714
26703
  Lm as LoadingButton,
@@ -26723,19 +26712,19 @@ export {
26723
26712
  l6 as Notification,
26724
26713
  D9 as NotificationList,
26725
26714
  ZQ as NumberInput,
26726
- Z9 as Pagination,
26715
+ $9 as Pagination,
26727
26716
  UQ as ReadonlyField,
26728
- $9 as RecordContextProvider,
26717
+ eU as RecordContextProvider,
26729
26718
  Bz as RecordInput,
26730
- eU as ReferenceArrayField,
26719
+ tU as ReferenceArrayField,
26731
26720
  $Q as ReferenceArrayInput,
26732
- tU as ReferenceField,
26721
+ nU as ReferenceField,
26733
26722
  ey as ReferenceInput,
26734
26723
  zs as ReferenceManyField,
26735
26724
  ty as ReferenceManyInput,
26736
- nU as Resource,
26737
- rU as ResourceContextProvider,
26738
- oU as SaveButton,
26725
+ rU as Resource,
26726
+ oU as ResourceContextProvider,
26727
+ iU as SaveButton,
26739
26728
  BQ as ScrollTop,
26740
26729
  P9 as ScrollX,
26741
26730
  S9 as SearchInput,
@@ -26743,10 +26732,10 @@ export {
26743
26732
  yz as SelectInput,
26744
26733
  _0 as SimpleBar,
26745
26734
  vQ as SimpleForm,
26746
- iU as SimpleFormIterator,
26747
- sU as SimpleFormIteratorContext,
26748
- aU as SimpleList,
26749
- lU as SingleFieldList,
26735
+ sU as SimpleFormIterator,
26736
+ aU as SimpleFormIteratorContext,
26737
+ lU as SimpleList,
26738
+ cU as SingleFieldList,
26750
26739
  Az as SizeField,
26751
26740
  mQ as SmallIcon,
26752
26741
  Qd as SmartTextInput,
@@ -26758,43 +26747,43 @@ export {
26758
26747
  oy as TimeInput,
26759
26748
  Lo as Toolbar,
26760
26749
  qL as Tooltip,
26761
- cU as TopToolbar,
26750
+ AU as TopToolbar,
26762
26751
  Mo as Transitions,
26763
- AU as choices,
26764
- uU as email,
26765
- gU as maxLength,
26766
- dU as maxValue,
26767
- fU as minLength,
26768
- pU as minValue,
26769
- hU as number,
26752
+ uU as choices,
26753
+ gU as email,
26754
+ dU as maxLength,
26755
+ fU as maxValue,
26756
+ pU as minLength,
26757
+ hU as minValue,
26758
+ EU as number,
26770
26759
  vz as parseTime,
26771
- EU as regex,
26772
- CU as required,
26760
+ CU as regex,
26761
+ IU as required,
26773
26762
  ql as useAppConfig,
26774
- IU as useArrayInput,
26775
- BU as useAuthProvider,
26763
+ BU as useArrayInput,
26764
+ mU as useAuthProvider,
26776
26765
  mM as useBreadcrumbs,
26777
- mU as useDataProvider,
26778
- QU as useGetIdentity,
26779
- yU as useGetList,
26780
- vU as useGetMany,
26781
- bU as useGetManyReference,
26782
- xU as useGetOne,
26783
- wU as useListContext,
26766
+ QU as useDataProvider,
26767
+ yU as useGetIdentity,
26768
+ vU as useGetList,
26769
+ bU as useGetMany,
26770
+ xU as useGetManyReference,
26771
+ wU as useGetOne,
26772
+ TU as useListContext,
26784
26773
  ZI as useLocalStorage,
26785
26774
  XI as useMenu,
26786
26775
  sr as useMenuConfig,
26787
- TU as useNotify,
26788
- PU as usePermissions,
26789
- RU as useRecordContext,
26790
- SU as useResourceContext,
26791
- OU as useResourceDefinition,
26792
- DU as useResourceDefinitions,
26776
+ PU as useNotify,
26777
+ RU as usePermissions,
26778
+ SU as useRecordContext,
26779
+ OU as useResourceContext,
26780
+ DU as useResourceDefinition,
26781
+ MU as useResourceDefinitions,
26793
26782
  QM as useResourceTitle,
26794
26783
  Xt as useThemeConfig,
26795
- MU as useTranslate,
26796
- kU as useUnselect,
26797
- FU as useUnselectAll,
26798
- NU as useUpdateMany,
26784
+ kU as useTranslate,
26785
+ FU as useUnselect,
26786
+ NU as useUnselectAll,
26787
+ LU as useUpdateMany,
26799
26788
  O9 as uuid
26800
26789
  };