@firecms/core 3.0.0-alpha.16 → 3.0.0-alpha.18

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 (2423) hide show
  1. package/dist/components/Chip.d.ts +1 -0
  2. package/dist/core/Scaffold.d.ts +1 -1
  3. package/dist/core/components/CircularProgressCenter.d.ts +4 -1
  4. package/dist/core/components/EntityCollectionTable/EntityCollectionTableProps.d.ts +1 -1
  5. package/dist/core/components/EntityCollectionTable/index.d.ts +1 -1
  6. package/dist/core/components/EntityCollectionTable/internal/popup_field/PopupFormField.d.ts +3 -3
  7. package/dist/core/components/EntityCollectionTable/types.d.ts +1 -9
  8. package/dist/core/components/EntityCollectionTable/useEntityCollectionTableController.d.ts +21 -0
  9. package/dist/core/components/FieldConfigBadge.d.ts +2 -2
  10. package/dist/core/components/HomePage/{FireCMSHomePage.d.ts → DefaultHomePage.d.ts} +1 -1
  11. package/dist/core/components/HomePage/index.d.ts +1 -1
  12. package/dist/core/form_field_configs.d.ts +6 -4
  13. package/dist/core/util/collections.d.ts +1 -13
  14. package/dist/core/util/navigation_from_path.d.ts +1 -1
  15. package/dist/core/util/property_utils.d.ts +2 -2
  16. package/dist/core/util/resolutions.d.ts +2 -1
  17. package/dist/index.es.js +11639 -11544
  18. package/dist/index.es.js.map +1 -1
  19. package/dist/index.umd.js +14 -14
  20. package/dist/index.umd.js.map +1 -1
  21. package/dist/types/collections.d.ts +5 -18
  22. package/dist/types/field_config.d.ts +16 -18
  23. package/dist/types/firecms.d.ts +9 -1
  24. package/dist/types/firecms_context.d.ts +9 -0
  25. package/dist/types/plugins.d.ts +2 -2
  26. package/dist/types/properties.d.ts +6 -0
  27. package/package.json +5 -9
  28. package/src/components/Alert.tsx +53 -0
  29. package/src/components/Autocomplete.tsx +87 -0
  30. package/src/components/Avatar.tsx +37 -0
  31. package/src/components/Badge.tsx +40 -0
  32. package/src/components/BooleanSwitch.tsx +78 -0
  33. package/src/components/BooleanSwitchWithLabel.tsx +100 -0
  34. package/src/components/Button.tsx +74 -0
  35. package/src/components/Card.tsx +35 -0
  36. package/src/components/CenteredView.tsx +24 -0
  37. package/src/components/Checkbox.tsx +74 -0
  38. package/src/components/Chip.tsx +57 -0
  39. package/src/components/CircularProgress.tsx +48 -0
  40. package/src/components/Collapse.tsx +63 -0
  41. package/src/components/Container.tsx +50 -0
  42. package/src/components/DateTimeField.tsx +980 -0
  43. package/src/components/DebouncedTextField.tsx +31 -0
  44. package/src/components/Dialog.tsx +105 -0
  45. package/src/components/DialogActions.tsx +27 -0
  46. package/src/components/DialogContent.tsx +23 -0
  47. package/src/components/ExpandablePanel.tsx +108 -0
  48. package/src/components/FileUpload.tsx +100 -0
  49. package/src/components/IconButton.tsx +69 -0
  50. package/src/components/InfoLabel.tsx +23 -0
  51. package/src/components/InputLabel.tsx +37 -0
  52. package/src/components/LoadingButton.tsx +32 -0
  53. package/src/components/Markdown.tsx +29 -0
  54. package/src/components/Menu.tsx +58 -0
  55. package/src/components/MultiSelect.tsx +226 -0
  56. package/src/components/Paper.tsx +21 -0
  57. package/src/components/Popover.tsx +134 -0
  58. package/src/components/SearchBar.tsx +85 -0
  59. package/src/components/Select.tsx +276 -0
  60. package/src/components/Sheet.tsx +79 -0
  61. package/src/components/Skeleton.tsx +24 -0
  62. package/src/components/Spinner.tsx +16 -0
  63. package/src/components/Table.tsx +143 -0
  64. package/src/components/Tabs.tsx +60 -0
  65. package/src/components/TextField.tsx +167 -0
  66. package/src/components/TextareaAutosize.tsx +364 -0
  67. package/src/components/Tooltip.tsx +124 -0
  68. package/src/components/Typography.tsx +104 -0
  69. package/src/components/common/SelectInputLabel.tsx +8 -0
  70. package/src/components/index.tsx +38 -0
  71. package/src/components/util/cn.ts +6 -0
  72. package/src/components/util/useInjectStyles.tsx +21 -0
  73. package/src/components/util/useOutsideAlerter.tsx +44 -0
  74. package/src/core/Drawer.tsx +161 -0
  75. package/src/core/EntitySidePanel.tsx +85 -0
  76. package/src/core/FireCMS.tsx +174 -0
  77. package/src/core/NavigationRoutes.tsx +177 -0
  78. package/src/core/Scaffold.tsx +283 -0
  79. package/src/core/SideDialogs.tsx +156 -0
  80. package/src/core/builders.ts +140 -0
  81. package/src/core/components/ArrayContainer.tsx +362 -0
  82. package/src/core/components/BreadcrumbUpdater.tsx +35 -0
  83. package/src/core/components/CircularProgressCenter.tsx +26 -0
  84. package/src/core/components/DeleteConfirmationDialog.tsx +47 -0
  85. package/src/core/components/EntityCollectionTable/EntityCollectionTable.tsx +497 -0
  86. package/src/core/components/EntityCollectionTable/EntityCollectionTableProps.tsx +131 -0
  87. package/src/core/components/EntityCollectionTable/fields/TableReferenceField.tsx +146 -0
  88. package/src/core/components/EntityCollectionTable/fields/TableStorageUpload.tsx +314 -0
  89. package/src/core/components/EntityCollectionTable/filters/BooleanFilterField.tsx +49 -0
  90. package/src/core/components/EntityCollectionTable/filters/DateTimeFilterField.tsx +107 -0
  91. package/src/core/components/EntityCollectionTable/filters/ReferenceFilterField.tsx +187 -0
  92. package/src/core/components/EntityCollectionTable/filters/StringNumberFilterField.tsx +160 -0
  93. package/src/core/components/EntityCollectionTable/index.tsx +16 -0
  94. package/src/core/components/EntityCollectionTable/internal/CollectionTableToolbar.tsx +91 -0
  95. package/src/core/components/EntityCollectionTable/internal/DeleteEntityDialog.tsx +206 -0
  96. package/src/core/components/EntityCollectionTable/internal/EntityCollectionRowActions.tsx +159 -0
  97. package/src/core/components/EntityCollectionTable/internal/EntityTableCell.tsx +265 -0
  98. package/src/core/components/EntityCollectionTable/internal/EntityTableCellActions.tsx +71 -0
  99. package/src/core/components/EntityCollectionTable/internal/PropertyTableCell.tsx +457 -0
  100. package/src/core/components/EntityCollectionTable/internal/common.tsx +70 -0
  101. package/src/core/components/EntityCollectionTable/internal/popup_field/ElementResizeListener.tsx +59 -0
  102. package/src/core/components/EntityCollectionTable/internal/popup_field/PopupFormField.tsx +399 -0
  103. package/src/core/components/EntityCollectionTable/internal/popup_field/useDraggable.tsx +97 -0
  104. package/src/core/components/EntityCollectionTable/internal/popup_field/useWindowSize.tsx +20 -0
  105. package/src/core/components/EntityCollectionTable/types.tsx +99 -0
  106. package/src/core/components/EntityCollectionTable/useDebouncedData.ts +49 -0
  107. package/src/core/components/EntityCollectionTable/useEntityCollectionTableController.tsx +143 -0
  108. package/src/core/components/EntityCollectionView/EntityCollectionView.tsx +636 -0
  109. package/src/core/components/EntityCollectionView/EntityCollectionViewActions.tsx +129 -0
  110. package/src/core/components/EntityCollectionView/useColumnsIds.tsx +100 -0
  111. package/src/core/components/EntityPreview.tsx +86 -0
  112. package/src/core/components/ErrorBoundary.tsx +41 -0
  113. package/src/core/components/ErrorTooltip.tsx +11 -0
  114. package/src/core/components/ErrorView.tsx +52 -0
  115. package/src/core/components/FieldConfigBadge.tsx +14 -0
  116. package/src/core/components/FireCMSAppBar.tsx +149 -0
  117. package/src/core/components/FireCMSLogo.tsx +73 -0
  118. package/src/core/components/HomePage/DefaultHomePage.tsx +186 -0
  119. package/src/core/components/HomePage/FavouritesView.tsx +65 -0
  120. package/src/core/components/HomePage/NavigationCollectionCard.tsx +147 -0
  121. package/src/core/components/HomePage/NavigationGroup.tsx +40 -0
  122. package/src/core/components/HomePage/index.tsx +3 -0
  123. package/src/core/components/NotFoundPage.tsx +25 -0
  124. package/src/core/components/ReferenceSelectionInner.tsx +364 -0
  125. package/src/core/components/VirtualTable/VirtualTable.tsx +393 -0
  126. package/src/core/components/VirtualTable/VirtualTableCell.tsx +36 -0
  127. package/src/core/components/VirtualTable/VirtualTableHeader.tsx +250 -0
  128. package/src/core/components/VirtualTable/VirtualTableHeaderRow.tsx +127 -0
  129. package/src/core/components/VirtualTable/VirtualTableProps.tsx +256 -0
  130. package/src/core/components/VirtualTable/VirtualTableRow.tsx +52 -0
  131. package/src/core/components/VirtualTable/common.tsx +18 -0
  132. package/src/core/components/VirtualTable/fields/VirtualTableDateField.tsx +34 -0
  133. package/src/core/components/VirtualTable/fields/VirtualTableInput.tsx +91 -0
  134. package/src/core/components/VirtualTable/fields/VirtualTableNumberInput.tsx +82 -0
  135. package/src/core/components/VirtualTable/fields/VirtualTableSelect.tsx +131 -0
  136. package/src/core/components/VirtualTable/fields/VirtualTableSwitch.tsx +32 -0
  137. package/src/core/components/VirtualTable/index.tsx +2 -0
  138. package/src/core/components/VirtualTable/types.tsx +42 -0
  139. package/src/core/components/index.tsx +30 -0
  140. package/src/core/contexts/AuthControllerContext.tsx +4 -0
  141. package/src/core/contexts/BreacrumbsContext.tsx +38 -0
  142. package/src/core/contexts/DataSourceContext.tsx +4 -0
  143. package/src/core/contexts/ModeController.tsx +13 -0
  144. package/src/core/contexts/NavigationContext.tsx +4 -0
  145. package/src/core/contexts/SideDialogsControllerContext.tsx +4 -0
  146. package/src/core/contexts/SideEntityControllerContext.tsx +4 -0
  147. package/src/core/contexts/SnackbarContext.tsx +12 -0
  148. package/src/core/contexts/StorageSourceContext.tsx +4 -0
  149. package/src/core/contexts/UserConfigurationPersistenceContext.tsx +4 -0
  150. package/src/core/form_field_configs.tsx +392 -0
  151. package/src/core/index.tsx +26 -0
  152. package/src/core/internal/EntityView.tsx +585 -0
  153. package/src/core/internal/common.tsx +5 -0
  154. package/src/core/internal/useBuildNavigationContext.tsx +327 -0
  155. package/src/core/internal/useBuildSideDialogsController.tsx +125 -0
  156. package/src/core/internal/useBuildSideEntityController.tsx +152 -0
  157. package/src/core/internal/useLocaleConfig.tsx +18 -0
  158. package/src/core/internal/useRestoreScroll.tsx +48 -0
  159. package/src/core/internal/useUnsavedChangesDialog.tsx +106 -0
  160. package/src/core/useBuildLocalConfigurationPersistence.tsx +67 -0
  161. package/src/core/useBuildModeController.tsx +60 -0
  162. package/src/core/util/arrays.ts +3 -0
  163. package/src/core/util/chip_utils.ts +59 -0
  164. package/src/core/util/collections.ts +50 -0
  165. package/src/core/util/common.tsx +2 -0
  166. package/src/core/util/dates.ts +1 -0
  167. package/src/core/util/debounce.ts +24 -0
  168. package/src/core/util/entities.ts +196 -0
  169. package/src/core/util/enums.ts +56 -0
  170. package/src/core/util/flatten_object.ts +45 -0
  171. package/src/core/util/hash.ts +11 -0
  172. package/src/core/util/icons.tsx +46 -0
  173. package/src/core/util/index.ts +19 -0
  174. package/src/core/util/navigation_from_path.ts +107 -0
  175. package/src/core/util/navigation_utils.ts +126 -0
  176. package/src/core/util/objects.ts +145 -0
  177. package/src/core/util/os.ts +13 -0
  178. package/src/core/util/parent_references_from_path.ts +56 -0
  179. package/src/core/util/paths.ts +27 -0
  180. package/src/core/util/permissions.ts +80 -0
  181. package/src/core/util/plurals.ts +190 -0
  182. package/src/core/util/property_utils.tsx +125 -0
  183. package/src/core/util/references.ts +20 -0
  184. package/src/core/util/regexp.ts +32 -0
  185. package/src/core/util/resolutions.ts +385 -0
  186. package/src/core/util/storage.ts +92 -0
  187. package/src/core/util/strings.ts +51 -0
  188. package/src/core/util/useDebounce.ts +25 -0
  189. package/src/core/util/useDebounceValue.ts +18 -0
  190. package/src/core/util/useStorageUploadController.tsx +243 -0
  191. package/src/core/util/useTraceUpdate.tsx +23 -0
  192. package/src/form/EntityForm.tsx +595 -0
  193. package/src/form/PropertyFieldBinding.tsx +318 -0
  194. package/src/form/components/CustomIdField.tsx +125 -0
  195. package/src/form/components/ErrorFocus.tsx +51 -0
  196. package/src/form/components/FieldHelperText.tsx +60 -0
  197. package/src/form/components/FormikArrayContainer.tsx +44 -0
  198. package/src/form/components/LabelWithIcon.tsx +35 -0
  199. package/src/form/components/ReferenceWidget.tsx +246 -0
  200. package/src/form/components/StorageItemPreview.tsx +70 -0
  201. package/src/form/components/StorageUploadProgress.tsx +106 -0
  202. package/src/form/components/SubmitListener.tsx +32 -0
  203. package/src/form/components/SwitchControl.tsx +39 -0
  204. package/src/form/components/index.tsx +5 -0
  205. package/src/form/field_bindings/ArrayCustomShapedFieldBinding.tsx +87 -0
  206. package/src/form/field_bindings/ArrayOfReferencesFieldBinding.tsx +150 -0
  207. package/src/form/field_bindings/BlockFieldBinding.tsx +245 -0
  208. package/src/form/field_bindings/DateTimeFieldBinding.tsx +63 -0
  209. package/src/form/field_bindings/KeyValueFieldBinding.tsx +549 -0
  210. package/src/form/field_bindings/MapFieldBinding.tsx +142 -0
  211. package/src/form/field_bindings/MarkdownFieldBinding.tsx +691 -0
  212. package/src/form/field_bindings/MultiSelectBinding.tsx +115 -0
  213. package/src/form/field_bindings/ReadOnlyFieldBinding.tsx +71 -0
  214. package/src/form/field_bindings/ReferenceFieldBinding.tsx +120 -0
  215. package/src/form/field_bindings/RepeatFieldBinding.tsx +102 -0
  216. package/src/form/field_bindings/SelectFieldBinding.tsx +101 -0
  217. package/src/form/field_bindings/StorageUploadFieldBinding.tsx +436 -0
  218. package/src/form/field_bindings/SwitchFieldBinding.tsx +61 -0
  219. package/src/form/field_bindings/TextFieldBinding.tsx +109 -0
  220. package/src/form/index.tsx +42 -0
  221. package/src/form/useClearRestoreValue.tsx +35 -0
  222. package/src/form/validation.ts +409 -0
  223. package/src/hooks/data/delete.ts +101 -0
  224. package/src/hooks/data/save.ts +155 -0
  225. package/src/hooks/data/useCollectionFetch.tsx +162 -0
  226. package/src/hooks/data/useDataOrder.ts +26 -0
  227. package/src/hooks/data/useDataSource.tsx +9 -0
  228. package/src/hooks/data/useEntityFetch.tsx +130 -0
  229. package/src/hooks/index.tsx +24 -0
  230. package/src/hooks/useAuthController.tsx +14 -0
  231. package/src/hooks/useBreadcrumbsContext.tsx +31 -0
  232. package/src/hooks/useBrowserTitleAndIcon.tsx +25 -0
  233. package/src/hooks/useClipboard.tsx +158 -0
  234. package/src/hooks/useFireCMSContext.tsx +56 -0
  235. package/src/hooks/useLargeLayout.tsx +34 -0
  236. package/src/hooks/useModeController.tsx +24 -0
  237. package/src/hooks/useNavigationContext.tsx +12 -0
  238. package/src/hooks/useReferenceDialog.tsx +56 -0
  239. package/src/hooks/useResolvedNavigationFrom.tsx +160 -0
  240. package/src/hooks/useSideDialogsController.tsx +21 -0
  241. package/src/hooks/useSideEntityController.tsx +15 -0
  242. package/src/hooks/useSnackbarController.tsx +76 -0
  243. package/src/hooks/useStorageSource.tsx +9 -0
  244. package/src/hooks/useUserConfigurationPersistence.tsx +11 -0
  245. package/src/icons/GitHubIcon.tsx +13 -0
  246. package/src/icons/Icon.tsx +63 -0
  247. package/src/icons/components/AbcIcon.tsx +5 -0
  248. package/src/icons/components/AcUnitIcon.tsx +5 -0
  249. package/src/icons/components/AccessAlarmIcon.tsx +5 -0
  250. package/src/icons/components/AccessAlarmsIcon.tsx +5 -0
  251. package/src/icons/components/AccessTimeFilledIcon.tsx +5 -0
  252. package/src/icons/components/AccessTimeIcon.tsx +5 -0
  253. package/src/icons/components/AccessibilityIcon.tsx +5 -0
  254. package/src/icons/components/AccessibilityNewIcon.tsx +5 -0
  255. package/src/icons/components/AccessibleForwardIcon.tsx +5 -0
  256. package/src/icons/components/AccessibleIcon.tsx +5 -0
  257. package/src/icons/components/AccountBalanceIcon.tsx +5 -0
  258. package/src/icons/components/AccountBalanceWalletIcon.tsx +5 -0
  259. package/src/icons/components/AccountBoxIcon.tsx +5 -0
  260. package/src/icons/components/AccountCircleIcon.tsx +5 -0
  261. package/src/icons/components/AccountTreeIcon.tsx +5 -0
  262. package/src/icons/components/AdUnitsIcon.tsx +5 -0
  263. package/src/icons/components/AdbIcon.tsx +5 -0
  264. package/src/icons/components/AddAPhotoIcon.tsx +5 -0
  265. package/src/icons/components/AddAlarmIcon.tsx +5 -0
  266. package/src/icons/components/AddAlertIcon.tsx +5 -0
  267. package/src/icons/components/AddBoxIcon.tsx +5 -0
  268. package/src/icons/components/AddBusinessIcon.tsx +5 -0
  269. package/src/icons/components/AddCardIcon.tsx +5 -0
  270. package/src/icons/components/AddChartIcon.tsx +5 -0
  271. package/src/icons/components/AddCircleIcon.tsx +5 -0
  272. package/src/icons/components/AddCircleOutlineIcon.tsx +5 -0
  273. package/src/icons/components/AddCommentIcon.tsx +5 -0
  274. package/src/icons/components/AddHomeIcon.tsx +5 -0
  275. package/src/icons/components/AddHomeWorkIcon.tsx +5 -0
  276. package/src/icons/components/AddIcCallIcon.tsx +5 -0
  277. package/src/icons/components/AddIcon.tsx +5 -0
  278. package/src/icons/components/AddLinkIcon.tsx +5 -0
  279. package/src/icons/components/AddLocationAltIcon.tsx +5 -0
  280. package/src/icons/components/AddLocationIcon.tsx +5 -0
  281. package/src/icons/components/AddModeratorIcon.tsx +5 -0
  282. package/src/icons/components/AddPhotoAlternateIcon.tsx +5 -0
  283. package/src/icons/components/AddReactionIcon.tsx +5 -0
  284. package/src/icons/components/AddRoadIcon.tsx +5 -0
  285. package/src/icons/components/AddShoppingCartIcon.tsx +5 -0
  286. package/src/icons/components/AddTaskIcon.tsx +5 -0
  287. package/src/icons/components/AddToDriveIcon.tsx +5 -0
  288. package/src/icons/components/AddToHomeScreenIcon.tsx +5 -0
  289. package/src/icons/components/AddToPhotosIcon.tsx +5 -0
  290. package/src/icons/components/AddToQueueIcon.tsx +5 -0
  291. package/src/icons/components/AdfScannerIcon.tsx +5 -0
  292. package/src/icons/components/AdjustIcon.tsx +5 -0
  293. package/src/icons/components/AdminPanelSettingsIcon.tsx +5 -0
  294. package/src/icons/components/AdsClickIcon.tsx +5 -0
  295. package/src/icons/components/AgricultureIcon.tsx +5 -0
  296. package/src/icons/components/AirIcon.tsx +5 -0
  297. package/src/icons/components/AirlineSeatFlatAngledIcon.tsx +5 -0
  298. package/src/icons/components/AirlineSeatFlatIcon.tsx +5 -0
  299. package/src/icons/components/AirlineSeatIndividualSuiteIcon.tsx +5 -0
  300. package/src/icons/components/AirlineSeatLegroomExtraIcon.tsx +5 -0
  301. package/src/icons/components/AirlineSeatLegroomNormalIcon.tsx +5 -0
  302. package/src/icons/components/AirlineSeatLegroomReducedIcon.tsx +5 -0
  303. package/src/icons/components/AirlineSeatReclineExtraIcon.tsx +5 -0
  304. package/src/icons/components/AirlineSeatReclineNormalIcon.tsx +5 -0
  305. package/src/icons/components/AirlineStopsIcon.tsx +5 -0
  306. package/src/icons/components/AirlinesIcon.tsx +5 -0
  307. package/src/icons/components/AirplaneTicketIcon.tsx +5 -0
  308. package/src/icons/components/AirplanemodeActiveIcon.tsx +5 -0
  309. package/src/icons/components/AirplanemodeInactiveIcon.tsx +5 -0
  310. package/src/icons/components/AirplayIcon.tsx +5 -0
  311. package/src/icons/components/AirportShuttleIcon.tsx +5 -0
  312. package/src/icons/components/AlarmAddIcon.tsx +5 -0
  313. package/src/icons/components/AlarmIcon.tsx +5 -0
  314. package/src/icons/components/AlarmOffIcon.tsx +5 -0
  315. package/src/icons/components/AlarmOnIcon.tsx +5 -0
  316. package/src/icons/components/AlbumIcon.tsx +5 -0
  317. package/src/icons/components/AlignHorizontalCenterIcon.tsx +5 -0
  318. package/src/icons/components/AlignHorizontalLeftIcon.tsx +5 -0
  319. package/src/icons/components/AlignHorizontalRightIcon.tsx +5 -0
  320. package/src/icons/components/AlignVerticalBottomIcon.tsx +5 -0
  321. package/src/icons/components/AlignVerticalCenterIcon.tsx +5 -0
  322. package/src/icons/components/AlignVerticalTopIcon.tsx +5 -0
  323. package/src/icons/components/AllInboxIcon.tsx +5 -0
  324. package/src/icons/components/AllInclusiveIcon.tsx +5 -0
  325. package/src/icons/components/AllOutIcon.tsx +5 -0
  326. package/src/icons/components/AltRouteIcon.tsx +5 -0
  327. package/src/icons/components/AlternateEmailIcon.tsx +5 -0
  328. package/src/icons/components/AnalyticsIcon.tsx +5 -0
  329. package/src/icons/components/AnchorIcon.tsx +5 -0
  330. package/src/icons/components/AndroidIcon.tsx +5 -0
  331. package/src/icons/components/AnimationIcon.tsx +5 -0
  332. package/src/icons/components/AnnouncementIcon.tsx +5 -0
  333. package/src/icons/components/AodIcon.tsx +5 -0
  334. package/src/icons/components/ApartmentIcon.tsx +5 -0
  335. package/src/icons/components/ApiIcon.tsx +5 -0
  336. package/src/icons/components/AppBlockingIcon.tsx +5 -0
  337. package/src/icons/components/AppRegistrationIcon.tsx +5 -0
  338. package/src/icons/components/AppSettingsAltIcon.tsx +5 -0
  339. package/src/icons/components/AppShortcutIcon.tsx +5 -0
  340. package/src/icons/components/ApprovalIcon.tsx +5 -0
  341. package/src/icons/components/AppsIcon.tsx +5 -0
  342. package/src/icons/components/AppsOutageIcon.tsx +5 -0
  343. package/src/icons/components/ArchitectureIcon.tsx +5 -0
  344. package/src/icons/components/ArchiveIcon.tsx +5 -0
  345. package/src/icons/components/AreaChartIcon.tsx +5 -0
  346. package/src/icons/components/ArrowBackIcon.tsx +5 -0
  347. package/src/icons/components/ArrowBackIosIcon.tsx +5 -0
  348. package/src/icons/components/ArrowBackIosNewIcon.tsx +5 -0
  349. package/src/icons/components/ArrowCircleDownIcon.tsx +5 -0
  350. package/src/icons/components/ArrowCircleLeftIcon.tsx +5 -0
  351. package/src/icons/components/ArrowCircleRightIcon.tsx +5 -0
  352. package/src/icons/components/ArrowCircleUpIcon.tsx +5 -0
  353. package/src/icons/components/ArrowDownwardIcon.tsx +5 -0
  354. package/src/icons/components/ArrowDropDownCircleIcon.tsx +5 -0
  355. package/src/icons/components/ArrowDropDownIcon.tsx +5 -0
  356. package/src/icons/components/ArrowDropUpIcon.tsx +5 -0
  357. package/src/icons/components/ArrowForwardIcon.tsx +5 -0
  358. package/src/icons/components/ArrowForwardIosIcon.tsx +5 -0
  359. package/src/icons/components/ArrowLeftIcon.tsx +5 -0
  360. package/src/icons/components/ArrowOutwardIcon.tsx +5 -0
  361. package/src/icons/components/ArrowRightAltIcon.tsx +5 -0
  362. package/src/icons/components/ArrowRightIcon.tsx +5 -0
  363. package/src/icons/components/ArrowUpwardIcon.tsx +5 -0
  364. package/src/icons/components/ArtTrackIcon.tsx +5 -0
  365. package/src/icons/components/ArticleIcon.tsx +5 -0
  366. package/src/icons/components/AspectRatioIcon.tsx +5 -0
  367. package/src/icons/components/AssessmentIcon.tsx +5 -0
  368. package/src/icons/components/AssignmentIcon.tsx +5 -0
  369. package/src/icons/components/AssignmentIndIcon.tsx +5 -0
  370. package/src/icons/components/AssignmentLateIcon.tsx +5 -0
  371. package/src/icons/components/AssignmentReturnIcon.tsx +5 -0
  372. package/src/icons/components/AssignmentReturnedIcon.tsx +5 -0
  373. package/src/icons/components/AssignmentTurnedInIcon.tsx +5 -0
  374. package/src/icons/components/AssistWalkerIcon.tsx +5 -0
  375. package/src/icons/components/AssistantDirectionIcon.tsx +5 -0
  376. package/src/icons/components/AssistantIcon.tsx +5 -0
  377. package/src/icons/components/AssistantPhotoIcon.tsx +5 -0
  378. package/src/icons/components/AssuredWorkloadIcon.tsx +5 -0
  379. package/src/icons/components/AtmIcon.tsx +5 -0
  380. package/src/icons/components/AttachEmailIcon.tsx +5 -0
  381. package/src/icons/components/AttachFileIcon.tsx +5 -0
  382. package/src/icons/components/AttachMoneyIcon.tsx +5 -0
  383. package/src/icons/components/AttachmentIcon.tsx +5 -0
  384. package/src/icons/components/AttractionsIcon.tsx +5 -0
  385. package/src/icons/components/AttributionIcon.tsx +5 -0
  386. package/src/icons/components/AudioFileIcon.tsx +5 -0
  387. package/src/icons/components/AudiotrackIcon.tsx +5 -0
  388. package/src/icons/components/AutoAwesomeIcon.tsx +5 -0
  389. package/src/icons/components/AutoAwesomeMosaicIcon.tsx +5 -0
  390. package/src/icons/components/AutoAwesomeMotionIcon.tsx +5 -0
  391. package/src/icons/components/AutoDeleteIcon.tsx +5 -0
  392. package/src/icons/components/AutoFixHighIcon.tsx +5 -0
  393. package/src/icons/components/AutoFixNormalIcon.tsx +5 -0
  394. package/src/icons/components/AutoFixOffIcon.tsx +5 -0
  395. package/src/icons/components/AutoGraphIcon.tsx +5 -0
  396. package/src/icons/components/AutoModeIcon.tsx +5 -0
  397. package/src/icons/components/AutoStoriesIcon.tsx +5 -0
  398. package/src/icons/components/AutofpsSelectIcon.tsx +5 -0
  399. package/src/icons/components/AutorenewIcon.tsx +5 -0
  400. package/src/icons/components/AvTimerIcon.tsx +5 -0
  401. package/src/icons/components/BabyChangingStationIcon.tsx +5 -0
  402. package/src/icons/components/BackHandIcon.tsx +5 -0
  403. package/src/icons/components/BackpackIcon.tsx +5 -0
  404. package/src/icons/components/BackspaceIcon.tsx +5 -0
  405. package/src/icons/components/BackupIcon.tsx +5 -0
  406. package/src/icons/components/BackupTableIcon.tsx +5 -0
  407. package/src/icons/components/BadgeIcon.tsx +5 -0
  408. package/src/icons/components/BakeryDiningIcon.tsx +5 -0
  409. package/src/icons/components/BalanceIcon.tsx +5 -0
  410. package/src/icons/components/BalconyIcon.tsx +5 -0
  411. package/src/icons/components/BallotIcon.tsx +5 -0
  412. package/src/icons/components/BarChartIcon.tsx +5 -0
  413. package/src/icons/components/BatchPredictionIcon.tsx +5 -0
  414. package/src/icons/components/BathroomIcon.tsx +5 -0
  415. package/src/icons/components/BathtubIcon.tsx +5 -0
  416. package/src/icons/components/Battery0BarIcon.tsx +5 -0
  417. package/src/icons/components/Battery1BarIcon.tsx +5 -0
  418. package/src/icons/components/Battery2BarIcon.tsx +5 -0
  419. package/src/icons/components/Battery3BarIcon.tsx +5 -0
  420. package/src/icons/components/Battery4BarIcon.tsx +5 -0
  421. package/src/icons/components/Battery5BarIcon.tsx +5 -0
  422. package/src/icons/components/Battery6BarIcon.tsx +5 -0
  423. package/src/icons/components/BatteryAlertIcon.tsx +5 -0
  424. package/src/icons/components/BatteryChargingFullIcon.tsx +5 -0
  425. package/src/icons/components/BatteryFullIcon.tsx +5 -0
  426. package/src/icons/components/BatterySaverIcon.tsx +5 -0
  427. package/src/icons/components/BatteryStdIcon.tsx +5 -0
  428. package/src/icons/components/BatteryUnknownIcon.tsx +5 -0
  429. package/src/icons/components/BeachAccessIcon.tsx +5 -0
  430. package/src/icons/components/BedIcon.tsx +5 -0
  431. package/src/icons/components/BedroomBabyIcon.tsx +5 -0
  432. package/src/icons/components/BedroomChildIcon.tsx +5 -0
  433. package/src/icons/components/BedroomParentIcon.tsx +5 -0
  434. package/src/icons/components/BedtimeIcon.tsx +5 -0
  435. package/src/icons/components/BedtimeOffIcon.tsx +5 -0
  436. package/src/icons/components/BeenhereIcon.tsx +5 -0
  437. package/src/icons/components/BentoIcon.tsx +5 -0
  438. package/src/icons/components/BikeScooterIcon.tsx +5 -0
  439. package/src/icons/components/BiotechIcon.tsx +5 -0
  440. package/src/icons/components/BlenderIcon.tsx +5 -0
  441. package/src/icons/components/BlindIcon.tsx +5 -0
  442. package/src/icons/components/BlindsClosedIcon.tsx +5 -0
  443. package/src/icons/components/BlindsIcon.tsx +5 -0
  444. package/src/icons/components/BlockIcon.tsx +5 -0
  445. package/src/icons/components/BloodtypeIcon.tsx +5 -0
  446. package/src/icons/components/BluetoothAudioIcon.tsx +5 -0
  447. package/src/icons/components/BluetoothConnectedIcon.tsx +5 -0
  448. package/src/icons/components/BluetoothDisabledIcon.tsx +5 -0
  449. package/src/icons/components/BluetoothDriveIcon.tsx +5 -0
  450. package/src/icons/components/BluetoothIcon.tsx +5 -0
  451. package/src/icons/components/BluetoothSearchingIcon.tsx +5 -0
  452. package/src/icons/components/BlurCircularIcon.tsx +5 -0
  453. package/src/icons/components/BlurLinearIcon.tsx +5 -0
  454. package/src/icons/components/BlurOffIcon.tsx +5 -0
  455. package/src/icons/components/BlurOnIcon.tsx +5 -0
  456. package/src/icons/components/BoltIcon.tsx +5 -0
  457. package/src/icons/components/BookIcon.tsx +5 -0
  458. package/src/icons/components/BookOnlineIcon.tsx +5 -0
  459. package/src/icons/components/BookmarkAddIcon.tsx +5 -0
  460. package/src/icons/components/BookmarkAddedIcon.tsx +5 -0
  461. package/src/icons/components/BookmarkBorderIcon.tsx +5 -0
  462. package/src/icons/components/BookmarkIcon.tsx +5 -0
  463. package/src/icons/components/BookmarkRemoveIcon.tsx +5 -0
  464. package/src/icons/components/BookmarksIcon.tsx +5 -0
  465. package/src/icons/components/BorderAllIcon.tsx +5 -0
  466. package/src/icons/components/BorderBottomIcon.tsx +5 -0
  467. package/src/icons/components/BorderClearIcon.tsx +5 -0
  468. package/src/icons/components/BorderColorIcon.tsx +5 -0
  469. package/src/icons/components/BorderHorizontalIcon.tsx +5 -0
  470. package/src/icons/components/BorderInnerIcon.tsx +5 -0
  471. package/src/icons/components/BorderLeftIcon.tsx +5 -0
  472. package/src/icons/components/BorderOuterIcon.tsx +5 -0
  473. package/src/icons/components/BorderRightIcon.tsx +5 -0
  474. package/src/icons/components/BorderStyleIcon.tsx +5 -0
  475. package/src/icons/components/BorderTopIcon.tsx +5 -0
  476. package/src/icons/components/BorderVerticalIcon.tsx +5 -0
  477. package/src/icons/components/BoyIcon.tsx +5 -0
  478. package/src/icons/components/BrandingWatermarkIcon.tsx +5 -0
  479. package/src/icons/components/BreakfastDiningIcon.tsx +5 -0
  480. package/src/icons/components/Brightness1Icon.tsx +5 -0
  481. package/src/icons/components/Brightness2Icon.tsx +5 -0
  482. package/src/icons/components/Brightness3Icon.tsx +5 -0
  483. package/src/icons/components/Brightness4Icon.tsx +5 -0
  484. package/src/icons/components/Brightness5Icon.tsx +5 -0
  485. package/src/icons/components/Brightness6Icon.tsx +5 -0
  486. package/src/icons/components/Brightness7Icon.tsx +5 -0
  487. package/src/icons/components/BrightnessAutoIcon.tsx +5 -0
  488. package/src/icons/components/BrightnessHighIcon.tsx +5 -0
  489. package/src/icons/components/BrightnessLowIcon.tsx +5 -0
  490. package/src/icons/components/BrightnessMediumIcon.tsx +5 -0
  491. package/src/icons/components/BroadcastOnHomeIcon.tsx +5 -0
  492. package/src/icons/components/BroadcastOnPersonalIcon.tsx +5 -0
  493. package/src/icons/components/BrokenImageIcon.tsx +5 -0
  494. package/src/icons/components/BrowseGalleryIcon.tsx +5 -0
  495. package/src/icons/components/BrowserNotSupportedIcon.tsx +5 -0
  496. package/src/icons/components/BrowserUpdatedIcon.tsx +5 -0
  497. package/src/icons/components/BrunchDiningIcon.tsx +5 -0
  498. package/src/icons/components/BrushIcon.tsx +5 -0
  499. package/src/icons/components/BubbleChartIcon.tsx +5 -0
  500. package/src/icons/components/BugReportIcon.tsx +5 -0
  501. package/src/icons/components/BuildCircleIcon.tsx +5 -0
  502. package/src/icons/components/BuildIcon.tsx +5 -0
  503. package/src/icons/components/BungalowIcon.tsx +5 -0
  504. package/src/icons/components/BurstModeIcon.tsx +5 -0
  505. package/src/icons/components/BusAlertIcon.tsx +5 -0
  506. package/src/icons/components/BusinessCenterIcon.tsx +5 -0
  507. package/src/icons/components/BusinessIcon.tsx +5 -0
  508. package/src/icons/components/CabinIcon.tsx +5 -0
  509. package/src/icons/components/CableIcon.tsx +5 -0
  510. package/src/icons/components/CachedIcon.tsx +5 -0
  511. package/src/icons/components/CakeIcon.tsx +5 -0
  512. package/src/icons/components/CalculateIcon.tsx +5 -0
  513. package/src/icons/components/CalendarMonthIcon.tsx +5 -0
  514. package/src/icons/components/CalendarTodayIcon.tsx +5 -0
  515. package/src/icons/components/CalendarViewDayIcon.tsx +5 -0
  516. package/src/icons/components/CalendarViewMonthIcon.tsx +5 -0
  517. package/src/icons/components/CalendarViewWeekIcon.tsx +5 -0
  518. package/src/icons/components/CallEndIcon.tsx +5 -0
  519. package/src/icons/components/CallIcon.tsx +5 -0
  520. package/src/icons/components/CallMadeIcon.tsx +5 -0
  521. package/src/icons/components/CallMergeIcon.tsx +5 -0
  522. package/src/icons/components/CallMissedIcon.tsx +5 -0
  523. package/src/icons/components/CallMissedOutgoingIcon.tsx +5 -0
  524. package/src/icons/components/CallReceivedIcon.tsx +5 -0
  525. package/src/icons/components/CallSplitIcon.tsx +5 -0
  526. package/src/icons/components/CallToActionIcon.tsx +5 -0
  527. package/src/icons/components/CameraAltIcon.tsx +5 -0
  528. package/src/icons/components/CameraEnhanceIcon.tsx +5 -0
  529. package/src/icons/components/CameraFrontIcon.tsx +5 -0
  530. package/src/icons/components/CameraIcon.tsx +5 -0
  531. package/src/icons/components/CameraIndoorIcon.tsx +5 -0
  532. package/src/icons/components/CameraOutdoorIcon.tsx +5 -0
  533. package/src/icons/components/CameraRearIcon.tsx +5 -0
  534. package/src/icons/components/CameraRollIcon.tsx +5 -0
  535. package/src/icons/components/CameraswitchIcon.tsx +5 -0
  536. package/src/icons/components/CampaignIcon.tsx +5 -0
  537. package/src/icons/components/CancelIcon.tsx +5 -0
  538. package/src/icons/components/CancelPresentationIcon.tsx +5 -0
  539. package/src/icons/components/CancelScheduleSendIcon.tsx +5 -0
  540. package/src/icons/components/CandlestickChartIcon.tsx +5 -0
  541. package/src/icons/components/CarCrashIcon.tsx +5 -0
  542. package/src/icons/components/CarRentalIcon.tsx +5 -0
  543. package/src/icons/components/CarRepairIcon.tsx +5 -0
  544. package/src/icons/components/CardGiftcardIcon.tsx +5 -0
  545. package/src/icons/components/CardMembershipIcon.tsx +5 -0
  546. package/src/icons/components/CardTravelIcon.tsx +5 -0
  547. package/src/icons/components/CarpenterIcon.tsx +5 -0
  548. package/src/icons/components/CasesIcon.tsx +5 -0
  549. package/src/icons/components/CasinoIcon.tsx +5 -0
  550. package/src/icons/components/CastConnectedIcon.tsx +5 -0
  551. package/src/icons/components/CastForEducationIcon.tsx +5 -0
  552. package/src/icons/components/CastIcon.tsx +5 -0
  553. package/src/icons/components/CastleIcon.tsx +5 -0
  554. package/src/icons/components/CatchingPokemonIcon.tsx +5 -0
  555. package/src/icons/components/CategoryIcon.tsx +5 -0
  556. package/src/icons/components/CelebrationIcon.tsx +5 -0
  557. package/src/icons/components/CellTowerIcon.tsx +5 -0
  558. package/src/icons/components/CellWifiIcon.tsx +5 -0
  559. package/src/icons/components/CenterFocusStrongIcon.tsx +5 -0
  560. package/src/icons/components/CenterFocusWeakIcon.tsx +5 -0
  561. package/src/icons/components/ChairAltIcon.tsx +5 -0
  562. package/src/icons/components/ChairIcon.tsx +5 -0
  563. package/src/icons/components/ChaletIcon.tsx +5 -0
  564. package/src/icons/components/ChangeCircleIcon.tsx +5 -0
  565. package/src/icons/components/ChangeHistoryIcon.tsx +5 -0
  566. package/src/icons/components/ChargingStationIcon.tsx +5 -0
  567. package/src/icons/components/ChatBubbleIcon.tsx +5 -0
  568. package/src/icons/components/ChatBubbleOutlineIcon.tsx +5 -0
  569. package/src/icons/components/ChatIcon.tsx +5 -0
  570. package/src/icons/components/CheckBoxIcon.tsx +5 -0
  571. package/src/icons/components/CheckBoxOutlineBlankIcon.tsx +5 -0
  572. package/src/icons/components/CheckCircleIcon.tsx +5 -0
  573. package/src/icons/components/CheckCircleOutlineIcon.tsx +5 -0
  574. package/src/icons/components/CheckIcon.tsx +5 -0
  575. package/src/icons/components/ChecklistIcon.tsx +5 -0
  576. package/src/icons/components/ChecklistRtlIcon.tsx +5 -0
  577. package/src/icons/components/CheckroomIcon.tsx +5 -0
  578. package/src/icons/components/ChevronLeftIcon.tsx +5 -0
  579. package/src/icons/components/ChevronRightIcon.tsx +5 -0
  580. package/src/icons/components/ChildCareIcon.tsx +5 -0
  581. package/src/icons/components/ChildFriendlyIcon.tsx +5 -0
  582. package/src/icons/components/ChromeReaderModeIcon.tsx +5 -0
  583. package/src/icons/components/ChurchIcon.tsx +5 -0
  584. package/src/icons/components/CircleIcon.tsx +5 -0
  585. package/src/icons/components/CircleNotificationsIcon.tsx +5 -0
  586. package/src/icons/components/ClassIcon.tsx +5 -0
  587. package/src/icons/components/CleanHandsIcon.tsx +5 -0
  588. package/src/icons/components/CleaningServicesIcon.tsx +5 -0
  589. package/src/icons/components/ClearAllIcon.tsx +5 -0
  590. package/src/icons/components/ClearIcon.tsx +5 -0
  591. package/src/icons/components/CloseFullscreenIcon.tsx +5 -0
  592. package/src/icons/components/CloseIcon.tsx +5 -0
  593. package/src/icons/components/ClosedCaptionDisabledIcon.tsx +5 -0
  594. package/src/icons/components/ClosedCaptionIcon.tsx +5 -0
  595. package/src/icons/components/ClosedCaptionOffIcon.tsx +5 -0
  596. package/src/icons/components/CloudCircleIcon.tsx +5 -0
  597. package/src/icons/components/CloudDoneIcon.tsx +5 -0
  598. package/src/icons/components/CloudDownloadIcon.tsx +5 -0
  599. package/src/icons/components/CloudIcon.tsx +5 -0
  600. package/src/icons/components/CloudOffIcon.tsx +5 -0
  601. package/src/icons/components/CloudQueueIcon.tsx +5 -0
  602. package/src/icons/components/CloudSyncIcon.tsx +5 -0
  603. package/src/icons/components/CloudUploadIcon.tsx +5 -0
  604. package/src/icons/components/Co2Icon.tsx +5 -0
  605. package/src/icons/components/CoPresentIcon.tsx +5 -0
  606. package/src/icons/components/CodeIcon.tsx +5 -0
  607. package/src/icons/components/CodeOffIcon.tsx +5 -0
  608. package/src/icons/components/CoffeeIcon.tsx +5 -0
  609. package/src/icons/components/CoffeeMakerIcon.tsx +5 -0
  610. package/src/icons/components/CollectionsBookmarkIcon.tsx +5 -0
  611. package/src/icons/components/CollectionsIcon.tsx +5 -0
  612. package/src/icons/components/ColorLensIcon.tsx +5 -0
  613. package/src/icons/components/ColorizeIcon.tsx +5 -0
  614. package/src/icons/components/CommentBankIcon.tsx +5 -0
  615. package/src/icons/components/CommentIcon.tsx +5 -0
  616. package/src/icons/components/CommentsDisabledIcon.tsx +5 -0
  617. package/src/icons/components/CommitIcon.tsx +5 -0
  618. package/src/icons/components/CommuteIcon.tsx +5 -0
  619. package/src/icons/components/CompareArrowsIcon.tsx +5 -0
  620. package/src/icons/components/CompareIcon.tsx +5 -0
  621. package/src/icons/components/CompassCalibrationIcon.tsx +5 -0
  622. package/src/icons/components/CompostIcon.tsx +5 -0
  623. package/src/icons/components/CompressIcon.tsx +5 -0
  624. package/src/icons/components/ComputerIcon.tsx +5 -0
  625. package/src/icons/components/ConfirmationNumberIcon.tsx +5 -0
  626. package/src/icons/components/ConnectWithoutContactIcon.tsx +5 -0
  627. package/src/icons/components/ConnectedTvIcon.tsx +5 -0
  628. package/src/icons/components/ConnectingAirportsIcon.tsx +5 -0
  629. package/src/icons/components/ConstructionIcon.tsx +5 -0
  630. package/src/icons/components/ContactEmergencyIcon.tsx +5 -0
  631. package/src/icons/components/ContactMailIcon.tsx +5 -0
  632. package/src/icons/components/ContactPageIcon.tsx +5 -0
  633. package/src/icons/components/ContactPhoneIcon.tsx +5 -0
  634. package/src/icons/components/ContactSupportIcon.tsx +5 -0
  635. package/src/icons/components/ContactlessIcon.tsx +5 -0
  636. package/src/icons/components/ContactsIcon.tsx +5 -0
  637. package/src/icons/components/ContentCopyIcon.tsx +5 -0
  638. package/src/icons/components/ContentCutIcon.tsx +5 -0
  639. package/src/icons/components/ContentPasteGoIcon.tsx +5 -0
  640. package/src/icons/components/ContentPasteIcon.tsx +5 -0
  641. package/src/icons/components/ContentPasteOffIcon.tsx +5 -0
  642. package/src/icons/components/ContentPasteSearchIcon.tsx +5 -0
  643. package/src/icons/components/ContrastIcon.tsx +5 -0
  644. package/src/icons/components/ControlCameraIcon.tsx +5 -0
  645. package/src/icons/components/ControlPointDuplicateIcon.tsx +5 -0
  646. package/src/icons/components/ControlPointIcon.tsx +5 -0
  647. package/src/icons/components/CookieIcon.tsx +5 -0
  648. package/src/icons/components/CopyAllIcon.tsx +5 -0
  649. package/src/icons/components/CopyrightIcon.tsx +5 -0
  650. package/src/icons/components/CoronavirusIcon.tsx +5 -0
  651. package/src/icons/components/CorporateFareIcon.tsx +5 -0
  652. package/src/icons/components/CottageIcon.tsx +5 -0
  653. package/src/icons/components/CountertopsIcon.tsx +5 -0
  654. package/src/icons/components/CreateIcon.tsx +5 -0
  655. package/src/icons/components/CreateNewFolderIcon.tsx +5 -0
  656. package/src/icons/components/CreditCardIcon.tsx +5 -0
  657. package/src/icons/components/CreditCardOffIcon.tsx +5 -0
  658. package/src/icons/components/CreditScoreIcon.tsx +5 -0
  659. package/src/icons/components/CribIcon.tsx +5 -0
  660. package/src/icons/components/CrisisAlertIcon.tsx +5 -0
  661. package/src/icons/components/Crop169Icon.tsx +5 -0
  662. package/src/icons/components/Crop32Icon.tsx +5 -0
  663. package/src/icons/components/Crop54Icon.tsx +5 -0
  664. package/src/icons/components/Crop75Icon.tsx +5 -0
  665. package/src/icons/components/CropDinIcon.tsx +5 -0
  666. package/src/icons/components/CropFreeIcon.tsx +5 -0
  667. package/src/icons/components/CropIcon.tsx +5 -0
  668. package/src/icons/components/CropLandscapeIcon.tsx +5 -0
  669. package/src/icons/components/CropOriginalIcon.tsx +5 -0
  670. package/src/icons/components/CropPortraitIcon.tsx +5 -0
  671. package/src/icons/components/CropRotateIcon.tsx +5 -0
  672. package/src/icons/components/CropSquareIcon.tsx +5 -0
  673. package/src/icons/components/CrueltyFreeIcon.tsx +5 -0
  674. package/src/icons/components/CssIcon.tsx +5 -0
  675. package/src/icons/components/CurrencyBitcoinIcon.tsx +5 -0
  676. package/src/icons/components/CurrencyExchangeIcon.tsx +5 -0
  677. package/src/icons/components/CurrencyFrancIcon.tsx +5 -0
  678. package/src/icons/components/CurrencyLiraIcon.tsx +5 -0
  679. package/src/icons/components/CurrencyPoundIcon.tsx +5 -0
  680. package/src/icons/components/CurrencyRubleIcon.tsx +5 -0
  681. package/src/icons/components/CurrencyRupeeIcon.tsx +5 -0
  682. package/src/icons/components/CurrencyYenIcon.tsx +5 -0
  683. package/src/icons/components/CurrencyYuanIcon.tsx +5 -0
  684. package/src/icons/components/CurtainsClosedIcon.tsx +5 -0
  685. package/src/icons/components/CurtainsIcon.tsx +5 -0
  686. package/src/icons/components/CycloneIcon.tsx +5 -0
  687. package/src/icons/components/DangerousIcon.tsx +5 -0
  688. package/src/icons/components/DarkModeIcon.tsx +5 -0
  689. package/src/icons/components/DashboardCustomizeIcon.tsx +5 -0
  690. package/src/icons/components/DashboardIcon.tsx +5 -0
  691. package/src/icons/components/DataArrayIcon.tsx +5 -0
  692. package/src/icons/components/DataExplorationIcon.tsx +5 -0
  693. package/src/icons/components/DataObjectIcon.tsx +5 -0
  694. package/src/icons/components/DataSaverOffIcon.tsx +5 -0
  695. package/src/icons/components/DataSaverOnIcon.tsx +5 -0
  696. package/src/icons/components/DataThresholdingIcon.tsx +5 -0
  697. package/src/icons/components/DataUsageIcon.tsx +5 -0
  698. package/src/icons/components/DatasetIcon.tsx +5 -0
  699. package/src/icons/components/DatasetLinkedIcon.tsx +5 -0
  700. package/src/icons/components/DateRangeIcon.tsx +5 -0
  701. package/src/icons/components/DeblurIcon.tsx +5 -0
  702. package/src/icons/components/DeckIcon.tsx +5 -0
  703. package/src/icons/components/DehazeIcon.tsx +5 -0
  704. package/src/icons/components/DeleteForeverIcon.tsx +5 -0
  705. package/src/icons/components/DeleteIcon.tsx +5 -0
  706. package/src/icons/components/DeleteOutlineIcon.tsx +5 -0
  707. package/src/icons/components/DeleteSweepIcon.tsx +5 -0
  708. package/src/icons/components/DeliveryDiningIcon.tsx +5 -0
  709. package/src/icons/components/DensityLargeIcon.tsx +5 -0
  710. package/src/icons/components/DensityMediumIcon.tsx +5 -0
  711. package/src/icons/components/DensitySmallIcon.tsx +5 -0
  712. package/src/icons/components/DepartureBoardIcon.tsx +5 -0
  713. package/src/icons/components/DescriptionIcon.tsx +5 -0
  714. package/src/icons/components/DeselectIcon.tsx +5 -0
  715. package/src/icons/components/DesignServicesIcon.tsx +5 -0
  716. package/src/icons/components/DeskIcon.tsx +5 -0
  717. package/src/icons/components/DesktopAccessDisabledIcon.tsx +5 -0
  718. package/src/icons/components/DesktopMacIcon.tsx +5 -0
  719. package/src/icons/components/DesktopWindowsIcon.tsx +5 -0
  720. package/src/icons/components/DetailsIcon.tsx +5 -0
  721. package/src/icons/components/DeveloperBoardIcon.tsx +5 -0
  722. package/src/icons/components/DeveloperBoardOffIcon.tsx +5 -0
  723. package/src/icons/components/DeveloperModeIcon.tsx +5 -0
  724. package/src/icons/components/DeviceHubIcon.tsx +5 -0
  725. package/src/icons/components/DeviceThermostatIcon.tsx +5 -0
  726. package/src/icons/components/DeviceUnknownIcon.tsx +5 -0
  727. package/src/icons/components/DevicesFoldIcon.tsx +5 -0
  728. package/src/icons/components/DevicesIcon.tsx +5 -0
  729. package/src/icons/components/DevicesOtherIcon.tsx +5 -0
  730. package/src/icons/components/DialerSipIcon.tsx +5 -0
  731. package/src/icons/components/DialpadIcon.tsx +5 -0
  732. package/src/icons/components/DiamondIcon.tsx +5 -0
  733. package/src/icons/components/DifferenceIcon.tsx +5 -0
  734. package/src/icons/components/DiningIcon.tsx +5 -0
  735. package/src/icons/components/DinnerDiningIcon.tsx +5 -0
  736. package/src/icons/components/DirectionsBikeIcon.tsx +5 -0
  737. package/src/icons/components/DirectionsBoatFilledIcon.tsx +5 -0
  738. package/src/icons/components/DirectionsBoatIcon.tsx +5 -0
  739. package/src/icons/components/DirectionsBusFilledIcon.tsx +5 -0
  740. package/src/icons/components/DirectionsBusIcon.tsx +5 -0
  741. package/src/icons/components/DirectionsCarFilledIcon.tsx +5 -0
  742. package/src/icons/components/DirectionsCarIcon.tsx +5 -0
  743. package/src/icons/components/DirectionsIcon.tsx +5 -0
  744. package/src/icons/components/DirectionsOffIcon.tsx +5 -0
  745. package/src/icons/components/DirectionsRailwayFilledIcon.tsx +5 -0
  746. package/src/icons/components/DirectionsRailwayIcon.tsx +5 -0
  747. package/src/icons/components/DirectionsRunIcon.tsx +5 -0
  748. package/src/icons/components/DirectionsSubwayFilledIcon.tsx +5 -0
  749. package/src/icons/components/DirectionsSubwayIcon.tsx +5 -0
  750. package/src/icons/components/DirectionsTransitFilledIcon.tsx +5 -0
  751. package/src/icons/components/DirectionsTransitIcon.tsx +5 -0
  752. package/src/icons/components/DirectionsWalkIcon.tsx +5 -0
  753. package/src/icons/components/DirtyLensIcon.tsx +5 -0
  754. package/src/icons/components/DisabledByDefaultIcon.tsx +5 -0
  755. package/src/icons/components/DisabledVisibleIcon.tsx +5 -0
  756. package/src/icons/components/DiscFullIcon.tsx +5 -0
  757. package/src/icons/components/DiscountIcon.tsx +5 -0
  758. package/src/icons/components/DisplaySettingsIcon.tsx +5 -0
  759. package/src/icons/components/Diversity1Icon.tsx +5 -0
  760. package/src/icons/components/Diversity2Icon.tsx +5 -0
  761. package/src/icons/components/Diversity3Icon.tsx +5 -0
  762. package/src/icons/components/DnsIcon.tsx +5 -0
  763. package/src/icons/components/DoDisturbAltIcon.tsx +5 -0
  764. package/src/icons/components/DoDisturbIcon.tsx +5 -0
  765. package/src/icons/components/DoDisturbOffIcon.tsx +5 -0
  766. package/src/icons/components/DoDisturbOnIcon.tsx +5 -0
  767. package/src/icons/components/DoNotDisturbAltIcon.tsx +5 -0
  768. package/src/icons/components/DoNotDisturbIcon.tsx +5 -0
  769. package/src/icons/components/DoNotDisturbOffIcon.tsx +5 -0
  770. package/src/icons/components/DoNotDisturbOnIcon.tsx +5 -0
  771. package/src/icons/components/DoNotDisturbOnTotalSilenceIcon.tsx +5 -0
  772. package/src/icons/components/DoNotStepIcon.tsx +5 -0
  773. package/src/icons/components/DoNotTouchIcon.tsx +5 -0
  774. package/src/icons/components/DockIcon.tsx +5 -0
  775. package/src/icons/components/DocumentScannerIcon.tsx +5 -0
  776. package/src/icons/components/DomainAddIcon.tsx +5 -0
  777. package/src/icons/components/DomainDisabledIcon.tsx +5 -0
  778. package/src/icons/components/DomainIcon.tsx +5 -0
  779. package/src/icons/components/DomainVerificationIcon.tsx +5 -0
  780. package/src/icons/components/DoneAllIcon.tsx +5 -0
  781. package/src/icons/components/DoneIcon.tsx +5 -0
  782. package/src/icons/components/DoneOutlineIcon.tsx +5 -0
  783. package/src/icons/components/DonutLargeIcon.tsx +5 -0
  784. package/src/icons/components/DonutSmallIcon.tsx +5 -0
  785. package/src/icons/components/DoorBackIcon.tsx +5 -0
  786. package/src/icons/components/DoorFrontIcon.tsx +5 -0
  787. package/src/icons/components/DoorSlidingIcon.tsx +5 -0
  788. package/src/icons/components/DoorbellIcon.tsx +5 -0
  789. package/src/icons/components/DoubleArrowIcon.tsx +5 -0
  790. package/src/icons/components/DownhillSkiingIcon.tsx +5 -0
  791. package/src/icons/components/DownloadDoneIcon.tsx +5 -0
  792. package/src/icons/components/DownloadForOfflineIcon.tsx +5 -0
  793. package/src/icons/components/DownloadIcon.tsx +5 -0
  794. package/src/icons/components/DownloadingIcon.tsx +5 -0
  795. package/src/icons/components/DraftsIcon.tsx +5 -0
  796. package/src/icons/components/DragHandleIcon.tsx +5 -0
  797. package/src/icons/components/DragIndicatorIcon.tsx +5 -0
  798. package/src/icons/components/DrawIcon.tsx +5 -0
  799. package/src/icons/components/DriveEtaIcon.tsx +5 -0
  800. package/src/icons/components/DriveFileMoveIcon.tsx +5 -0
  801. package/src/icons/components/DriveFileMoveRtlIcon.tsx +5 -0
  802. package/src/icons/components/DriveFileRenameOutlineIcon.tsx +5 -0
  803. package/src/icons/components/DriveFolderUploadIcon.tsx +5 -0
  804. package/src/icons/components/DryCleaningIcon.tsx +5 -0
  805. package/src/icons/components/DryIcon.tsx +5 -0
  806. package/src/icons/components/DuoIcon.tsx +5 -0
  807. package/src/icons/components/DvrIcon.tsx +5 -0
  808. package/src/icons/components/DynamicFeedIcon.tsx +5 -0
  809. package/src/icons/components/DynamicFormIcon.tsx +5 -0
  810. package/src/icons/components/EMobiledataIcon.tsx +5 -0
  811. package/src/icons/components/EarbudsBatteryIcon.tsx +5 -0
  812. package/src/icons/components/EarbudsIcon.tsx +5 -0
  813. package/src/icons/components/EastIcon.tsx +5 -0
  814. package/src/icons/components/EdgesensorHighIcon.tsx +5 -0
  815. package/src/icons/components/EdgesensorLowIcon.tsx +5 -0
  816. package/src/icons/components/EditAttributesIcon.tsx +5 -0
  817. package/src/icons/components/EditCalendarIcon.tsx +5 -0
  818. package/src/icons/components/EditIcon.tsx +5 -0
  819. package/src/icons/components/EditLocationAltIcon.tsx +5 -0
  820. package/src/icons/components/EditLocationIcon.tsx +5 -0
  821. package/src/icons/components/EditNoteIcon.tsx +5 -0
  822. package/src/icons/components/EditNotificationsIcon.tsx +5 -0
  823. package/src/icons/components/EditOffIcon.tsx +5 -0
  824. package/src/icons/components/EditRoadIcon.tsx +5 -0
  825. package/src/icons/components/EggAltIcon.tsx +5 -0
  826. package/src/icons/components/EggIcon.tsx +5 -0
  827. package/src/icons/components/EjectIcon.tsx +5 -0
  828. package/src/icons/components/ElderlyIcon.tsx +5 -0
  829. package/src/icons/components/ElderlyWomanIcon.tsx +5 -0
  830. package/src/icons/components/ElectricBikeIcon.tsx +5 -0
  831. package/src/icons/components/ElectricBoltIcon.tsx +5 -0
  832. package/src/icons/components/ElectricCarIcon.tsx +5 -0
  833. package/src/icons/components/ElectricMeterIcon.tsx +5 -0
  834. package/src/icons/components/ElectricMopedIcon.tsx +5 -0
  835. package/src/icons/components/ElectricRickshawIcon.tsx +5 -0
  836. package/src/icons/components/ElectricScooterIcon.tsx +5 -0
  837. package/src/icons/components/ElectricalServicesIcon.tsx +5 -0
  838. package/src/icons/components/ElevatorIcon.tsx +5 -0
  839. package/src/icons/components/EmailIcon.tsx +5 -0
  840. package/src/icons/components/EmergencyIcon.tsx +5 -0
  841. package/src/icons/components/EmergencyRecordingIcon.tsx +5 -0
  842. package/src/icons/components/EmergencyShareIcon.tsx +5 -0
  843. package/src/icons/components/EmojiEmotionsIcon.tsx +5 -0
  844. package/src/icons/components/EmojiEventsIcon.tsx +5 -0
  845. package/src/icons/components/EmojiFoodBeverageIcon.tsx +5 -0
  846. package/src/icons/components/EmojiNatureIcon.tsx +5 -0
  847. package/src/icons/components/EmojiObjectsIcon.tsx +5 -0
  848. package/src/icons/components/EmojiPeopleIcon.tsx +5 -0
  849. package/src/icons/components/EmojiSymbolsIcon.tsx +5 -0
  850. package/src/icons/components/EmojiTransportationIcon.tsx +5 -0
  851. package/src/icons/components/EnergySavingsLeafIcon.tsx +5 -0
  852. package/src/icons/components/EngineeringIcon.tsx +5 -0
  853. package/src/icons/components/EnhancedEncryptionIcon.tsx +5 -0
  854. package/src/icons/components/EqualizerIcon.tsx +5 -0
  855. package/src/icons/components/ErrorIcon.tsx +5 -0
  856. package/src/icons/components/ErrorOutlineIcon.tsx +5 -0
  857. package/src/icons/components/EscalatorIcon.tsx +5 -0
  858. package/src/icons/components/EscalatorWarningIcon.tsx +5 -0
  859. package/src/icons/components/EuroIcon.tsx +5 -0
  860. package/src/icons/components/EuroSymbolIcon.tsx +5 -0
  861. package/src/icons/components/EvStationIcon.tsx +5 -0
  862. package/src/icons/components/EventAvailableIcon.tsx +5 -0
  863. package/src/icons/components/EventBusyIcon.tsx +5 -0
  864. package/src/icons/components/EventIcon.tsx +5 -0
  865. package/src/icons/components/EventNoteIcon.tsx +5 -0
  866. package/src/icons/components/EventRepeatIcon.tsx +5 -0
  867. package/src/icons/components/EventSeatIcon.tsx +5 -0
  868. package/src/icons/components/ExitToAppIcon.tsx +5 -0
  869. package/src/icons/components/ExpandCircleDownIcon.tsx +5 -0
  870. package/src/icons/components/ExpandIcon.tsx +5 -0
  871. package/src/icons/components/ExpandLessIcon.tsx +5 -0
  872. package/src/icons/components/ExpandMoreIcon.tsx +5 -0
  873. package/src/icons/components/ExplicitIcon.tsx +5 -0
  874. package/src/icons/components/ExploreIcon.tsx +5 -0
  875. package/src/icons/components/ExploreOffIcon.tsx +5 -0
  876. package/src/icons/components/ExposureIcon.tsx +5 -0
  877. package/src/icons/components/ExposureNeg1Icon.tsx +5 -0
  878. package/src/icons/components/ExposureNeg2Icon.tsx +5 -0
  879. package/src/icons/components/ExposurePlus1Icon.tsx +5 -0
  880. package/src/icons/components/ExposurePlus2Icon.tsx +5 -0
  881. package/src/icons/components/ExposureZeroIcon.tsx +5 -0
  882. package/src/icons/components/ExtensionIcon.tsx +5 -0
  883. package/src/icons/components/ExtensionOffIcon.tsx +5 -0
  884. package/src/icons/components/Face2Icon.tsx +5 -0
  885. package/src/icons/components/Face3Icon.tsx +5 -0
  886. package/src/icons/components/Face4Icon.tsx +5 -0
  887. package/src/icons/components/Face5Icon.tsx +5 -0
  888. package/src/icons/components/Face6Icon.tsx +5 -0
  889. package/src/icons/components/FaceIcon.tsx +5 -0
  890. package/src/icons/components/FaceRetouchingNaturalIcon.tsx +5 -0
  891. package/src/icons/components/FaceRetouchingOffIcon.tsx +5 -0
  892. package/src/icons/components/FactCheckIcon.tsx +5 -0
  893. package/src/icons/components/FactoryIcon.tsx +5 -0
  894. package/src/icons/components/FamilyRestroomIcon.tsx +5 -0
  895. package/src/icons/components/FastForwardIcon.tsx +5 -0
  896. package/src/icons/components/FastRewindIcon.tsx +5 -0
  897. package/src/icons/components/FastfoodIcon.tsx +5 -0
  898. package/src/icons/components/FavoriteBorderIcon.tsx +5 -0
  899. package/src/icons/components/FavoriteIcon.tsx +5 -0
  900. package/src/icons/components/FaxIcon.tsx +5 -0
  901. package/src/icons/components/FeaturedPlayListIcon.tsx +5 -0
  902. package/src/icons/components/FeaturedVideoIcon.tsx +5 -0
  903. package/src/icons/components/FeedIcon.tsx +5 -0
  904. package/src/icons/components/FeedbackIcon.tsx +5 -0
  905. package/src/icons/components/FemaleIcon.tsx +5 -0
  906. package/src/icons/components/FenceIcon.tsx +5 -0
  907. package/src/icons/components/FestivalIcon.tsx +5 -0
  908. package/src/icons/components/FiberDvrIcon.tsx +5 -0
  909. package/src/icons/components/FiberManualRecordIcon.tsx +5 -0
  910. package/src/icons/components/FiberNewIcon.tsx +5 -0
  911. package/src/icons/components/FiberPinIcon.tsx +5 -0
  912. package/src/icons/components/FiberSmartRecordIcon.tsx +5 -0
  913. package/src/icons/components/FileCopyIcon.tsx +5 -0
  914. package/src/icons/components/FileDownloadDoneIcon.tsx +5 -0
  915. package/src/icons/components/FileDownloadIcon.tsx +5 -0
  916. package/src/icons/components/FileDownloadOffIcon.tsx +5 -0
  917. package/src/icons/components/FileOpenIcon.tsx +5 -0
  918. package/src/icons/components/FilePresentIcon.tsx +5 -0
  919. package/src/icons/components/FileUploadIcon.tsx +5 -0
  920. package/src/icons/components/Filter1Icon.tsx +5 -0
  921. package/src/icons/components/Filter2Icon.tsx +5 -0
  922. package/src/icons/components/Filter3Icon.tsx +5 -0
  923. package/src/icons/components/Filter4Icon.tsx +5 -0
  924. package/src/icons/components/Filter5Icon.tsx +5 -0
  925. package/src/icons/components/Filter6Icon.tsx +5 -0
  926. package/src/icons/components/Filter7Icon.tsx +5 -0
  927. package/src/icons/components/Filter8Icon.tsx +5 -0
  928. package/src/icons/components/Filter9Icon.tsx +5 -0
  929. package/src/icons/components/Filter9PlusIcon.tsx +5 -0
  930. package/src/icons/components/FilterAltIcon.tsx +5 -0
  931. package/src/icons/components/FilterAltOffIcon.tsx +5 -0
  932. package/src/icons/components/FilterBAndWIcon.tsx +5 -0
  933. package/src/icons/components/FilterCenterFocusIcon.tsx +5 -0
  934. package/src/icons/components/FilterDramaIcon.tsx +5 -0
  935. package/src/icons/components/FilterFramesIcon.tsx +5 -0
  936. package/src/icons/components/FilterHdrIcon.tsx +5 -0
  937. package/src/icons/components/FilterIcon.tsx +5 -0
  938. package/src/icons/components/FilterListIcon.tsx +5 -0
  939. package/src/icons/components/FilterListOffIcon.tsx +5 -0
  940. package/src/icons/components/FilterNoneIcon.tsx +5 -0
  941. package/src/icons/components/FilterTiltShiftIcon.tsx +5 -0
  942. package/src/icons/components/FilterVintageIcon.tsx +5 -0
  943. package/src/icons/components/FindInPageIcon.tsx +5 -0
  944. package/src/icons/components/FindReplaceIcon.tsx +5 -0
  945. package/src/icons/components/FingerprintIcon.tsx +5 -0
  946. package/src/icons/components/FireExtinguisherIcon.tsx +5 -0
  947. package/src/icons/components/FireHydrantAltIcon.tsx +5 -0
  948. package/src/icons/components/FireTruckIcon.tsx +5 -0
  949. package/src/icons/components/FireplaceIcon.tsx +5 -0
  950. package/src/icons/components/FirstPageIcon.tsx +5 -0
  951. package/src/icons/components/FitScreenIcon.tsx +5 -0
  952. package/src/icons/components/FitbitIcon.tsx +5 -0
  953. package/src/icons/components/FitnessCenterIcon.tsx +5 -0
  954. package/src/icons/components/FlagCircleIcon.tsx +5 -0
  955. package/src/icons/components/FlagIcon.tsx +5 -0
  956. package/src/icons/components/FlakyIcon.tsx +5 -0
  957. package/src/icons/components/FlareIcon.tsx +5 -0
  958. package/src/icons/components/FlashAutoIcon.tsx +5 -0
  959. package/src/icons/components/FlashOffIcon.tsx +5 -0
  960. package/src/icons/components/FlashOnIcon.tsx +5 -0
  961. package/src/icons/components/FlashlightOffIcon.tsx +5 -0
  962. package/src/icons/components/FlashlightOnIcon.tsx +5 -0
  963. package/src/icons/components/FlatwareIcon.tsx +5 -0
  964. package/src/icons/components/FlightClassIcon.tsx +5 -0
  965. package/src/icons/components/FlightIcon.tsx +5 -0
  966. package/src/icons/components/FlightLandIcon.tsx +5 -0
  967. package/src/icons/components/FlightTakeoffIcon.tsx +5 -0
  968. package/src/icons/components/FlipCameraAndroidIcon.tsx +5 -0
  969. package/src/icons/components/FlipCameraIosIcon.tsx +5 -0
  970. package/src/icons/components/FlipIcon.tsx +5 -0
  971. package/src/icons/components/FlipToBackIcon.tsx +5 -0
  972. package/src/icons/components/FlipToFrontIcon.tsx +5 -0
  973. package/src/icons/components/FloodIcon.tsx +5 -0
  974. package/src/icons/components/FluorescentIcon.tsx +5 -0
  975. package/src/icons/components/FlutterDashIcon.tsx +5 -0
  976. package/src/icons/components/FmdBadIcon.tsx +5 -0
  977. package/src/icons/components/FmdGoodIcon.tsx +5 -0
  978. package/src/icons/components/FolderCopyIcon.tsx +5 -0
  979. package/src/icons/components/FolderDeleteIcon.tsx +5 -0
  980. package/src/icons/components/FolderIcon.tsx +5 -0
  981. package/src/icons/components/FolderOffIcon.tsx +5 -0
  982. package/src/icons/components/FolderOpenIcon.tsx +5 -0
  983. package/src/icons/components/FolderSharedIcon.tsx +5 -0
  984. package/src/icons/components/FolderSpecialIcon.tsx +5 -0
  985. package/src/icons/components/FolderZipIcon.tsx +5 -0
  986. package/src/icons/components/FollowTheSignsIcon.tsx +5 -0
  987. package/src/icons/components/FontDownloadIcon.tsx +5 -0
  988. package/src/icons/components/FontDownloadOffIcon.tsx +5 -0
  989. package/src/icons/components/FoodBankIcon.tsx +5 -0
  990. package/src/icons/components/ForestIcon.tsx +5 -0
  991. package/src/icons/components/ForkLeftIcon.tsx +5 -0
  992. package/src/icons/components/ForkRightIcon.tsx +5 -0
  993. package/src/icons/components/FormatAlignCenterIcon.tsx +5 -0
  994. package/src/icons/components/FormatAlignJustifyIcon.tsx +5 -0
  995. package/src/icons/components/FormatAlignLeftIcon.tsx +5 -0
  996. package/src/icons/components/FormatAlignRightIcon.tsx +5 -0
  997. package/src/icons/components/FormatBoldIcon.tsx +5 -0
  998. package/src/icons/components/FormatClearIcon.tsx +5 -0
  999. package/src/icons/components/FormatColorFillIcon.tsx +5 -0
  1000. package/src/icons/components/FormatColorResetIcon.tsx +5 -0
  1001. package/src/icons/components/FormatColorTextIcon.tsx +5 -0
  1002. package/src/icons/components/FormatIndentDecreaseIcon.tsx +5 -0
  1003. package/src/icons/components/FormatIndentIncreaseIcon.tsx +5 -0
  1004. package/src/icons/components/FormatItalicIcon.tsx +5 -0
  1005. package/src/icons/components/FormatLineSpacingIcon.tsx +5 -0
  1006. package/src/icons/components/FormatListBulletedIcon.tsx +5 -0
  1007. package/src/icons/components/FormatListNumberedIcon.tsx +5 -0
  1008. package/src/icons/components/FormatListNumberedRtlIcon.tsx +5 -0
  1009. package/src/icons/components/FormatOverlineIcon.tsx +5 -0
  1010. package/src/icons/components/FormatPaintIcon.tsx +5 -0
  1011. package/src/icons/components/FormatQuoteIcon.tsx +5 -0
  1012. package/src/icons/components/FormatShapesIcon.tsx +5 -0
  1013. package/src/icons/components/FormatSizeIcon.tsx +5 -0
  1014. package/src/icons/components/FormatStrikethroughIcon.tsx +5 -0
  1015. package/src/icons/components/FormatTextdirectionLToRIcon.tsx +5 -0
  1016. package/src/icons/components/FormatTextdirectionRToLIcon.tsx +5 -0
  1017. package/src/icons/components/FormatUnderlinedIcon.tsx +5 -0
  1018. package/src/icons/components/FortIcon.tsx +5 -0
  1019. package/src/icons/components/ForumIcon.tsx +5 -0
  1020. package/src/icons/components/Forward10Icon.tsx +5 -0
  1021. package/src/icons/components/Forward30Icon.tsx +5 -0
  1022. package/src/icons/components/Forward5Icon.tsx +5 -0
  1023. package/src/icons/components/ForwardIcon.tsx +5 -0
  1024. package/src/icons/components/ForwardToInboxIcon.tsx +5 -0
  1025. package/src/icons/components/FoundationIcon.tsx +5 -0
  1026. package/src/icons/components/FreeBreakfastIcon.tsx +5 -0
  1027. package/src/icons/components/FreeCancellationIcon.tsx +5 -0
  1028. package/src/icons/components/FrontHandIcon.tsx +5 -0
  1029. package/src/icons/components/FullscreenExitIcon.tsx +5 -0
  1030. package/src/icons/components/FullscreenIcon.tsx +5 -0
  1031. package/src/icons/components/FunctionsIcon.tsx +5 -0
  1032. package/src/icons/components/GMobiledataIcon.tsx +5 -0
  1033. package/src/icons/components/GTranslateIcon.tsx +5 -0
  1034. package/src/icons/components/GamepadIcon.tsx +5 -0
  1035. package/src/icons/components/GamesIcon.tsx +5 -0
  1036. package/src/icons/components/GarageIcon.tsx +5 -0
  1037. package/src/icons/components/GasMeterIcon.tsx +5 -0
  1038. package/src/icons/components/GavelIcon.tsx +5 -0
  1039. package/src/icons/components/GeneratingTokensIcon.tsx +5 -0
  1040. package/src/icons/components/GestureIcon.tsx +5 -0
  1041. package/src/icons/components/GetAppIcon.tsx +5 -0
  1042. package/src/icons/components/GifBoxIcon.tsx +5 -0
  1043. package/src/icons/components/GifIcon.tsx +5 -0
  1044. package/src/icons/components/GirlIcon.tsx +5 -0
  1045. package/src/icons/components/GiteIcon.tsx +5 -0
  1046. package/src/icons/components/GolfCourseIcon.tsx +5 -0
  1047. package/src/icons/components/GppBadIcon.tsx +5 -0
  1048. package/src/icons/components/GppGoodIcon.tsx +5 -0
  1049. package/src/icons/components/GppMaybeIcon.tsx +5 -0
  1050. package/src/icons/components/GpsFixedIcon.tsx +5 -0
  1051. package/src/icons/components/GpsNotFixedIcon.tsx +5 -0
  1052. package/src/icons/components/GpsOffIcon.tsx +5 -0
  1053. package/src/icons/components/GradeIcon.tsx +5 -0
  1054. package/src/icons/components/GradientIcon.tsx +5 -0
  1055. package/src/icons/components/GradingIcon.tsx +5 -0
  1056. package/src/icons/components/GrainIcon.tsx +5 -0
  1057. package/src/icons/components/GraphicEqIcon.tsx +5 -0
  1058. package/src/icons/components/GrassIcon.tsx +5 -0
  1059. package/src/icons/components/Grid3x3Icon.tsx +5 -0
  1060. package/src/icons/components/Grid4x4Icon.tsx +5 -0
  1061. package/src/icons/components/GridGoldenratioIcon.tsx +5 -0
  1062. package/src/icons/components/GridOffIcon.tsx +5 -0
  1063. package/src/icons/components/GridOnIcon.tsx +5 -0
  1064. package/src/icons/components/GridViewIcon.tsx +5 -0
  1065. package/src/icons/components/GroupAddIcon.tsx +5 -0
  1066. package/src/icons/components/GroupIcon.tsx +5 -0
  1067. package/src/icons/components/GroupOffIcon.tsx +5 -0
  1068. package/src/icons/components/GroupRemoveIcon.tsx +5 -0
  1069. package/src/icons/components/GroupWorkIcon.tsx +5 -0
  1070. package/src/icons/components/Groups2Icon.tsx +5 -0
  1071. package/src/icons/components/Groups3Icon.tsx +5 -0
  1072. package/src/icons/components/GroupsIcon.tsx +5 -0
  1073. package/src/icons/components/HMobiledataIcon.tsx +5 -0
  1074. package/src/icons/components/HPlusMobiledataIcon.tsx +5 -0
  1075. package/src/icons/components/HailIcon.tsx +5 -0
  1076. package/src/icons/components/HandshakeIcon.tsx +5 -0
  1077. package/src/icons/components/HandymanIcon.tsx +5 -0
  1078. package/src/icons/components/HardwareIcon.tsx +5 -0
  1079. package/src/icons/components/HdIcon.tsx +5 -0
  1080. package/src/icons/components/HdrAutoIcon.tsx +5 -0
  1081. package/src/icons/components/HdrAutoSelectIcon.tsx +5 -0
  1082. package/src/icons/components/HdrEnhancedSelectIcon.tsx +5 -0
  1083. package/src/icons/components/HdrOffIcon.tsx +5 -0
  1084. package/src/icons/components/HdrOffSelectIcon.tsx +5 -0
  1085. package/src/icons/components/HdrOnIcon.tsx +5 -0
  1086. package/src/icons/components/HdrOnSelectIcon.tsx +5 -0
  1087. package/src/icons/components/HdrPlusIcon.tsx +5 -0
  1088. package/src/icons/components/HdrStrongIcon.tsx +5 -0
  1089. package/src/icons/components/HdrWeakIcon.tsx +5 -0
  1090. package/src/icons/components/HeadphonesBatteryIcon.tsx +5 -0
  1091. package/src/icons/components/HeadphonesIcon.tsx +5 -0
  1092. package/src/icons/components/HeadsetIcon.tsx +5 -0
  1093. package/src/icons/components/HeadsetMicIcon.tsx +5 -0
  1094. package/src/icons/components/HeadsetOffIcon.tsx +5 -0
  1095. package/src/icons/components/HealingIcon.tsx +5 -0
  1096. package/src/icons/components/HealthAndSafetyIcon.tsx +5 -0
  1097. package/src/icons/components/HearingDisabledIcon.tsx +5 -0
  1098. package/src/icons/components/HearingIcon.tsx +5 -0
  1099. package/src/icons/components/HeartBrokenIcon.tsx +5 -0
  1100. package/src/icons/components/HeatPumpIcon.tsx +5 -0
  1101. package/src/icons/components/HeightIcon.tsx +5 -0
  1102. package/src/icons/components/HelpCenterIcon.tsx +5 -0
  1103. package/src/icons/components/HelpIcon.tsx +5 -0
  1104. package/src/icons/components/HelpOutlineIcon.tsx +5 -0
  1105. package/src/icons/components/HevcIcon.tsx +5 -0
  1106. package/src/icons/components/HexagonIcon.tsx +5 -0
  1107. package/src/icons/components/HideImageIcon.tsx +5 -0
  1108. package/src/icons/components/HideSourceIcon.tsx +5 -0
  1109. package/src/icons/components/HighQualityIcon.tsx +5 -0
  1110. package/src/icons/components/HighlightAltIcon.tsx +5 -0
  1111. package/src/icons/components/HighlightIcon.tsx +5 -0
  1112. package/src/icons/components/HighlightOffIcon.tsx +5 -0
  1113. package/src/icons/components/HikingIcon.tsx +5 -0
  1114. package/src/icons/components/HistoryEduIcon.tsx +5 -0
  1115. package/src/icons/components/HistoryIcon.tsx +5 -0
  1116. package/src/icons/components/HistoryToggleOffIcon.tsx +5 -0
  1117. package/src/icons/components/HiveIcon.tsx +5 -0
  1118. package/src/icons/components/HlsIcon.tsx +5 -0
  1119. package/src/icons/components/HlsOffIcon.tsx +5 -0
  1120. package/src/icons/components/HolidayVillageIcon.tsx +5 -0
  1121. package/src/icons/components/HomeIcon.tsx +5 -0
  1122. package/src/icons/components/HomeMaxIcon.tsx +5 -0
  1123. package/src/icons/components/HomeMiniIcon.tsx +5 -0
  1124. package/src/icons/components/HomeRepairServiceIcon.tsx +5 -0
  1125. package/src/icons/components/HomeWorkIcon.tsx +5 -0
  1126. package/src/icons/components/HorizontalDistributeIcon.tsx +5 -0
  1127. package/src/icons/components/HorizontalRuleIcon.tsx +5 -0
  1128. package/src/icons/components/HorizontalSplitIcon.tsx +5 -0
  1129. package/src/icons/components/HotTubIcon.tsx +5 -0
  1130. package/src/icons/components/HotelClassIcon.tsx +5 -0
  1131. package/src/icons/components/HotelIcon.tsx +5 -0
  1132. package/src/icons/components/HourglassBottomIcon.tsx +5 -0
  1133. package/src/icons/components/HourglassDisabledIcon.tsx +5 -0
  1134. package/src/icons/components/HourglassEmptyIcon.tsx +5 -0
  1135. package/src/icons/components/HourglassFullIcon.tsx +5 -0
  1136. package/src/icons/components/HourglassTopIcon.tsx +5 -0
  1137. package/src/icons/components/HouseIcon.tsx +5 -0
  1138. package/src/icons/components/HouseSidingIcon.tsx +5 -0
  1139. package/src/icons/components/HouseboatIcon.tsx +5 -0
  1140. package/src/icons/components/HowToRegIcon.tsx +5 -0
  1141. package/src/icons/components/HowToVoteIcon.tsx +5 -0
  1142. package/src/icons/components/HtmlIcon.tsx +5 -0
  1143. package/src/icons/components/HttpIcon.tsx +5 -0
  1144. package/src/icons/components/HttpsIcon.tsx +5 -0
  1145. package/src/icons/components/HubIcon.tsx +5 -0
  1146. package/src/icons/components/HvacIcon.tsx +5 -0
  1147. package/src/icons/components/IceSkatingIcon.tsx +5 -0
  1148. package/src/icons/components/IcecreamIcon.tsx +5 -0
  1149. package/src/icons/components/ImageAspectRatioIcon.tsx +5 -0
  1150. package/src/icons/components/ImageIcon.tsx +5 -0
  1151. package/src/icons/components/ImageNotSupportedIcon.tsx +5 -0
  1152. package/src/icons/components/ImageSearchIcon.tsx +5 -0
  1153. package/src/icons/components/ImagesearchRollerIcon.tsx +5 -0
  1154. package/src/icons/components/ImportContactsIcon.tsx +5 -0
  1155. package/src/icons/components/ImportExportIcon.tsx +5 -0
  1156. package/src/icons/components/ImportantDevicesIcon.tsx +5 -0
  1157. package/src/icons/components/InboxIcon.tsx +5 -0
  1158. package/src/icons/components/IncompleteCircleIcon.tsx +5 -0
  1159. package/src/icons/components/IndeterminateCheckBoxIcon.tsx +5 -0
  1160. package/src/icons/components/InfoIcon.tsx +5 -0
  1161. package/src/icons/components/InputIcon.tsx +5 -0
  1162. package/src/icons/components/InsertChartIcon.tsx +5 -0
  1163. package/src/icons/components/InsertChartOutlinedIcon.tsx +5 -0
  1164. package/src/icons/components/InsertCommentIcon.tsx +5 -0
  1165. package/src/icons/components/InsertDriveFileIcon.tsx +5 -0
  1166. package/src/icons/components/InsertEmoticonIcon.tsx +5 -0
  1167. package/src/icons/components/InsertInvitationIcon.tsx +5 -0
  1168. package/src/icons/components/InsertLinkIcon.tsx +5 -0
  1169. package/src/icons/components/InsertPageBreakIcon.tsx +5 -0
  1170. package/src/icons/components/InsertPhotoIcon.tsx +5 -0
  1171. package/src/icons/components/InsightsIcon.tsx +5 -0
  1172. package/src/icons/components/InstallDesktopIcon.tsx +5 -0
  1173. package/src/icons/components/InstallMobileIcon.tsx +5 -0
  1174. package/src/icons/components/IntegrationInstructionsIcon.tsx +5 -0
  1175. package/src/icons/components/InterestsIcon.tsx +5 -0
  1176. package/src/icons/components/InterpreterModeIcon.tsx +5 -0
  1177. package/src/icons/components/Inventory2Icon.tsx +5 -0
  1178. package/src/icons/components/InventoryIcon.tsx +5 -0
  1179. package/src/icons/components/InvertColorsIcon.tsx +5 -0
  1180. package/src/icons/components/InvertColorsOffIcon.tsx +5 -0
  1181. package/src/icons/components/IosShareIcon.tsx +5 -0
  1182. package/src/icons/components/IronIcon.tsx +5 -0
  1183. package/src/icons/components/IsoIcon.tsx +5 -0
  1184. package/src/icons/components/JavascriptIcon.tsx +5 -0
  1185. package/src/icons/components/JoinFullIcon.tsx +5 -0
  1186. package/src/icons/components/JoinInnerIcon.tsx +5 -0
  1187. package/src/icons/components/JoinLeftIcon.tsx +5 -0
  1188. package/src/icons/components/JoinRightIcon.tsx +5 -0
  1189. package/src/icons/components/KayakingIcon.tsx +5 -0
  1190. package/src/icons/components/KebabDiningIcon.tsx +5 -0
  1191. package/src/icons/components/KeyIcon.tsx +5 -0
  1192. package/src/icons/components/KeyOffIcon.tsx +5 -0
  1193. package/src/icons/components/KeyboardAltIcon.tsx +5 -0
  1194. package/src/icons/components/KeyboardArrowDownIcon.tsx +5 -0
  1195. package/src/icons/components/KeyboardArrowLeftIcon.tsx +5 -0
  1196. package/src/icons/components/KeyboardArrowRightIcon.tsx +5 -0
  1197. package/src/icons/components/KeyboardArrowUpIcon.tsx +5 -0
  1198. package/src/icons/components/KeyboardBackspaceIcon.tsx +5 -0
  1199. package/src/icons/components/KeyboardCapslockIcon.tsx +5 -0
  1200. package/src/icons/components/KeyboardCommandKeyIcon.tsx +5 -0
  1201. package/src/icons/components/KeyboardControlKeyIcon.tsx +5 -0
  1202. package/src/icons/components/KeyboardDoubleArrowDownIcon.tsx +5 -0
  1203. package/src/icons/components/KeyboardDoubleArrowLeftIcon.tsx +5 -0
  1204. package/src/icons/components/KeyboardDoubleArrowRightIcon.tsx +5 -0
  1205. package/src/icons/components/KeyboardDoubleArrowUpIcon.tsx +5 -0
  1206. package/src/icons/components/KeyboardHideIcon.tsx +5 -0
  1207. package/src/icons/components/KeyboardIcon.tsx +5 -0
  1208. package/src/icons/components/KeyboardOptionKeyIcon.tsx +5 -0
  1209. package/src/icons/components/KeyboardReturnIcon.tsx +5 -0
  1210. package/src/icons/components/KeyboardTabIcon.tsx +5 -0
  1211. package/src/icons/components/KeyboardVoiceIcon.tsx +5 -0
  1212. package/src/icons/components/KingBedIcon.tsx +5 -0
  1213. package/src/icons/components/KitchenIcon.tsx +5 -0
  1214. package/src/icons/components/KitesurfingIcon.tsx +5 -0
  1215. package/src/icons/components/LabelIcon.tsx +5 -0
  1216. package/src/icons/components/LabelImportantIcon.tsx +5 -0
  1217. package/src/icons/components/LabelOffIcon.tsx +5 -0
  1218. package/src/icons/components/LanIcon.tsx +5 -0
  1219. package/src/icons/components/LandscapeIcon.tsx +5 -0
  1220. package/src/icons/components/LandslideIcon.tsx +5 -0
  1221. package/src/icons/components/LanguageIcon.tsx +5 -0
  1222. package/src/icons/components/LaptopChromebookIcon.tsx +5 -0
  1223. package/src/icons/components/LaptopIcon.tsx +5 -0
  1224. package/src/icons/components/LaptopMacIcon.tsx +5 -0
  1225. package/src/icons/components/LaptopWindowsIcon.tsx +5 -0
  1226. package/src/icons/components/LastPageIcon.tsx +5 -0
  1227. package/src/icons/components/LaunchIcon.tsx +5 -0
  1228. package/src/icons/components/LayersClearIcon.tsx +5 -0
  1229. package/src/icons/components/LayersIcon.tsx +5 -0
  1230. package/src/icons/components/LeaderboardIcon.tsx +5 -0
  1231. package/src/icons/components/LeakAddIcon.tsx +5 -0
  1232. package/src/icons/components/LeakRemoveIcon.tsx +5 -0
  1233. package/src/icons/components/LegendToggleIcon.tsx +5 -0
  1234. package/src/icons/components/LensBlurIcon.tsx +5 -0
  1235. package/src/icons/components/LensIcon.tsx +5 -0
  1236. package/src/icons/components/LibraryAddCheckIcon.tsx +5 -0
  1237. package/src/icons/components/LibraryAddIcon.tsx +5 -0
  1238. package/src/icons/components/LibraryBooksIcon.tsx +5 -0
  1239. package/src/icons/components/LibraryMusicIcon.tsx +5 -0
  1240. package/src/icons/components/LightIcon.tsx +5 -0
  1241. package/src/icons/components/LightModeIcon.tsx +5 -0
  1242. package/src/icons/components/LightbulbCircleIcon.tsx +5 -0
  1243. package/src/icons/components/LightbulbIcon.tsx +5 -0
  1244. package/src/icons/components/LineAxisIcon.tsx +5 -0
  1245. package/src/icons/components/LineStyleIcon.tsx +5 -0
  1246. package/src/icons/components/LineWeightIcon.tsx +5 -0
  1247. package/src/icons/components/LinearScaleIcon.tsx +5 -0
  1248. package/src/icons/components/LinkIcon.tsx +5 -0
  1249. package/src/icons/components/LinkOffIcon.tsx +5 -0
  1250. package/src/icons/components/LinkedCameraIcon.tsx +5 -0
  1251. package/src/icons/components/LiquorIcon.tsx +5 -0
  1252. package/src/icons/components/ListAltIcon.tsx +5 -0
  1253. package/src/icons/components/ListIcon.tsx +5 -0
  1254. package/src/icons/components/LiveHelpIcon.tsx +5 -0
  1255. package/src/icons/components/LiveTvIcon.tsx +5 -0
  1256. package/src/icons/components/LivingIcon.tsx +5 -0
  1257. package/src/icons/components/LocalActivityIcon.tsx +5 -0
  1258. package/src/icons/components/LocalAirportIcon.tsx +5 -0
  1259. package/src/icons/components/LocalAtmIcon.tsx +5 -0
  1260. package/src/icons/components/LocalBarIcon.tsx +5 -0
  1261. package/src/icons/components/LocalCafeIcon.tsx +5 -0
  1262. package/src/icons/components/LocalCarWashIcon.tsx +5 -0
  1263. package/src/icons/components/LocalConvenienceStoreIcon.tsx +5 -0
  1264. package/src/icons/components/LocalDiningIcon.tsx +5 -0
  1265. package/src/icons/components/LocalDrinkIcon.tsx +5 -0
  1266. package/src/icons/components/LocalFireDepartmentIcon.tsx +5 -0
  1267. package/src/icons/components/LocalFloristIcon.tsx +5 -0
  1268. package/src/icons/components/LocalGasStationIcon.tsx +5 -0
  1269. package/src/icons/components/LocalGroceryStoreIcon.tsx +5 -0
  1270. package/src/icons/components/LocalHospitalIcon.tsx +5 -0
  1271. package/src/icons/components/LocalHotelIcon.tsx +5 -0
  1272. package/src/icons/components/LocalLaundryServiceIcon.tsx +5 -0
  1273. package/src/icons/components/LocalLibraryIcon.tsx +5 -0
  1274. package/src/icons/components/LocalMallIcon.tsx +5 -0
  1275. package/src/icons/components/LocalMoviesIcon.tsx +5 -0
  1276. package/src/icons/components/LocalOfferIcon.tsx +5 -0
  1277. package/src/icons/components/LocalParkingIcon.tsx +5 -0
  1278. package/src/icons/components/LocalPharmacyIcon.tsx +5 -0
  1279. package/src/icons/components/LocalPhoneIcon.tsx +5 -0
  1280. package/src/icons/components/LocalPizzaIcon.tsx +5 -0
  1281. package/src/icons/components/LocalPlayIcon.tsx +5 -0
  1282. package/src/icons/components/LocalPoliceIcon.tsx +5 -0
  1283. package/src/icons/components/LocalPostOfficeIcon.tsx +5 -0
  1284. package/src/icons/components/LocalPrintshopIcon.tsx +5 -0
  1285. package/src/icons/components/LocalSeeIcon.tsx +5 -0
  1286. package/src/icons/components/LocalShippingIcon.tsx +5 -0
  1287. package/src/icons/components/LocalTaxiIcon.tsx +5 -0
  1288. package/src/icons/components/LocationCityIcon.tsx +5 -0
  1289. package/src/icons/components/LocationDisabledIcon.tsx +5 -0
  1290. package/src/icons/components/LocationOffIcon.tsx +5 -0
  1291. package/src/icons/components/LocationOnIcon.tsx +5 -0
  1292. package/src/icons/components/LocationSearchingIcon.tsx +5 -0
  1293. package/src/icons/components/LockClockIcon.tsx +5 -0
  1294. package/src/icons/components/LockIcon.tsx +5 -0
  1295. package/src/icons/components/LockOpenIcon.tsx +5 -0
  1296. package/src/icons/components/LockPersonIcon.tsx +5 -0
  1297. package/src/icons/components/LockResetIcon.tsx +5 -0
  1298. package/src/icons/components/LoginIcon.tsx +5 -0
  1299. package/src/icons/components/LogoDevIcon.tsx +5 -0
  1300. package/src/icons/components/LogoutIcon.tsx +5 -0
  1301. package/src/icons/components/Looks3Icon.tsx +5 -0
  1302. package/src/icons/components/Looks4Icon.tsx +5 -0
  1303. package/src/icons/components/Looks5Icon.tsx +5 -0
  1304. package/src/icons/components/Looks6Icon.tsx +5 -0
  1305. package/src/icons/components/LooksIcon.tsx +5 -0
  1306. package/src/icons/components/LooksOneIcon.tsx +5 -0
  1307. package/src/icons/components/LooksTwoIcon.tsx +5 -0
  1308. package/src/icons/components/LoopIcon.tsx +5 -0
  1309. package/src/icons/components/LoupeIcon.tsx +5 -0
  1310. package/src/icons/components/LowPriorityIcon.tsx +5 -0
  1311. package/src/icons/components/LoyaltyIcon.tsx +5 -0
  1312. package/src/icons/components/LteMobiledataIcon.tsx +5 -0
  1313. package/src/icons/components/LtePlusMobiledataIcon.tsx +5 -0
  1314. package/src/icons/components/LuggageIcon.tsx +5 -0
  1315. package/src/icons/components/LunchDiningIcon.tsx +5 -0
  1316. package/src/icons/components/LyricsIcon.tsx +5 -0
  1317. package/src/icons/components/MacroOffIcon.tsx +5 -0
  1318. package/src/icons/components/MailIcon.tsx +5 -0
  1319. package/src/icons/components/MailLockIcon.tsx +5 -0
  1320. package/src/icons/components/MailOutlineIcon.tsx +5 -0
  1321. package/src/icons/components/MaleIcon.tsx +5 -0
  1322. package/src/icons/components/Man2Icon.tsx +5 -0
  1323. package/src/icons/components/Man3Icon.tsx +5 -0
  1324. package/src/icons/components/Man4Icon.tsx +5 -0
  1325. package/src/icons/components/ManIcon.tsx +5 -0
  1326. package/src/icons/components/ManageAccountsIcon.tsx +5 -0
  1327. package/src/icons/components/ManageHistoryIcon.tsx +5 -0
  1328. package/src/icons/components/ManageSearchIcon.tsx +5 -0
  1329. package/src/icons/components/MapIcon.tsx +5 -0
  1330. package/src/icons/components/MapsHomeWorkIcon.tsx +5 -0
  1331. package/src/icons/components/MapsUgcIcon.tsx +5 -0
  1332. package/src/icons/components/MarginIcon.tsx +5 -0
  1333. package/src/icons/components/MarkAsUnreadIcon.tsx +5 -0
  1334. package/src/icons/components/MarkChatReadIcon.tsx +5 -0
  1335. package/src/icons/components/MarkChatUnreadIcon.tsx +5 -0
  1336. package/src/icons/components/MarkEmailReadIcon.tsx +5 -0
  1337. package/src/icons/components/MarkEmailUnreadIcon.tsx +5 -0
  1338. package/src/icons/components/MarkUnreadChatAltIcon.tsx +5 -0
  1339. package/src/icons/components/MarkunreadIcon.tsx +5 -0
  1340. package/src/icons/components/MarkunreadMailboxIcon.tsx +5 -0
  1341. package/src/icons/components/MasksIcon.tsx +5 -0
  1342. package/src/icons/components/MaximizeIcon.tsx +5 -0
  1343. package/src/icons/components/MediaBluetoothOffIcon.tsx +5 -0
  1344. package/src/icons/components/MediaBluetoothOnIcon.tsx +5 -0
  1345. package/src/icons/components/MediationIcon.tsx +5 -0
  1346. package/src/icons/components/MedicalInformationIcon.tsx +5 -0
  1347. package/src/icons/components/MedicalServicesIcon.tsx +5 -0
  1348. package/src/icons/components/MedicationIcon.tsx +5 -0
  1349. package/src/icons/components/MedicationLiquidIcon.tsx +5 -0
  1350. package/src/icons/components/MeetingRoomIcon.tsx +5 -0
  1351. package/src/icons/components/MemoryIcon.tsx +5 -0
  1352. package/src/icons/components/MenuBookIcon.tsx +5 -0
  1353. package/src/icons/components/MenuIcon.tsx +5 -0
  1354. package/src/icons/components/MenuOpenIcon.tsx +5 -0
  1355. package/src/icons/components/MergeIcon.tsx +5 -0
  1356. package/src/icons/components/MergeTypeIcon.tsx +5 -0
  1357. package/src/icons/components/MessageIcon.tsx +5 -0
  1358. package/src/icons/components/MicExternalOffIcon.tsx +5 -0
  1359. package/src/icons/components/MicExternalOnIcon.tsx +5 -0
  1360. package/src/icons/components/MicIcon.tsx +5 -0
  1361. package/src/icons/components/MicNoneIcon.tsx +5 -0
  1362. package/src/icons/components/MicOffIcon.tsx +5 -0
  1363. package/src/icons/components/MicrowaveIcon.tsx +5 -0
  1364. package/src/icons/components/MilitaryTechIcon.tsx +5 -0
  1365. package/src/icons/components/MinimizeIcon.tsx +5 -0
  1366. package/src/icons/components/MinorCrashIcon.tsx +5 -0
  1367. package/src/icons/components/MiscellaneousServicesIcon.tsx +5 -0
  1368. package/src/icons/components/MissedVideoCallIcon.tsx +5 -0
  1369. package/src/icons/components/MmsIcon.tsx +5 -0
  1370. package/src/icons/components/MobileFriendlyIcon.tsx +5 -0
  1371. package/src/icons/components/MobileOffIcon.tsx +5 -0
  1372. package/src/icons/components/MobileScreenShareIcon.tsx +5 -0
  1373. package/src/icons/components/MobiledataOffIcon.tsx +5 -0
  1374. package/src/icons/components/ModeCommentIcon.tsx +5 -0
  1375. package/src/icons/components/ModeEditIcon.tsx +5 -0
  1376. package/src/icons/components/ModeEditOutlineIcon.tsx +5 -0
  1377. package/src/icons/components/ModeFanOffIcon.tsx +5 -0
  1378. package/src/icons/components/ModeIcon.tsx +5 -0
  1379. package/src/icons/components/ModeNightIcon.tsx +5 -0
  1380. package/src/icons/components/ModeOfTravelIcon.tsx +5 -0
  1381. package/src/icons/components/ModeStandbyIcon.tsx +5 -0
  1382. package/src/icons/components/ModelTrainingIcon.tsx +5 -0
  1383. package/src/icons/components/MonetizationOnIcon.tsx +5 -0
  1384. package/src/icons/components/MoneyIcon.tsx +5 -0
  1385. package/src/icons/components/MoneyOffCsredIcon.tsx +5 -0
  1386. package/src/icons/components/MoneyOffIcon.tsx +5 -0
  1387. package/src/icons/components/MonitorHeartIcon.tsx +5 -0
  1388. package/src/icons/components/MonitorIcon.tsx +5 -0
  1389. package/src/icons/components/MonitorWeightIcon.tsx +5 -0
  1390. package/src/icons/components/MonochromePhotosIcon.tsx +5 -0
  1391. package/src/icons/components/MoodBadIcon.tsx +5 -0
  1392. package/src/icons/components/MoodIcon.tsx +5 -0
  1393. package/src/icons/components/MopedIcon.tsx +5 -0
  1394. package/src/icons/components/MoreHorizIcon.tsx +5 -0
  1395. package/src/icons/components/MoreIcon.tsx +5 -0
  1396. package/src/icons/components/MoreTimeIcon.tsx +5 -0
  1397. package/src/icons/components/MoreVertIcon.tsx +5 -0
  1398. package/src/icons/components/MosqueIcon.tsx +5 -0
  1399. package/src/icons/components/MotionPhotosAutoIcon.tsx +5 -0
  1400. package/src/icons/components/MotionPhotosOffIcon.tsx +5 -0
  1401. package/src/icons/components/MotionPhotosOnIcon.tsx +5 -0
  1402. package/src/icons/components/MotionPhotosPauseIcon.tsx +5 -0
  1403. package/src/icons/components/MotionPhotosPausedIcon.tsx +5 -0
  1404. package/src/icons/components/MouseIcon.tsx +5 -0
  1405. package/src/icons/components/MoveDownIcon.tsx +5 -0
  1406. package/src/icons/components/MoveToInboxIcon.tsx +5 -0
  1407. package/src/icons/components/MoveUpIcon.tsx +5 -0
  1408. package/src/icons/components/MovieCreationIcon.tsx +5 -0
  1409. package/src/icons/components/MovieFilterIcon.tsx +5 -0
  1410. package/src/icons/components/MovieIcon.tsx +5 -0
  1411. package/src/icons/components/MovingIcon.tsx +5 -0
  1412. package/src/icons/components/MpIcon.tsx +5 -0
  1413. package/src/icons/components/MultilineChartIcon.tsx +5 -0
  1414. package/src/icons/components/MultipleStopIcon.tsx +5 -0
  1415. package/src/icons/components/MuseumIcon.tsx +5 -0
  1416. package/src/icons/components/MusicNoteIcon.tsx +5 -0
  1417. package/src/icons/components/MusicOffIcon.tsx +5 -0
  1418. package/src/icons/components/MusicVideoIcon.tsx +5 -0
  1419. package/src/icons/components/MyLocationIcon.tsx +5 -0
  1420. package/src/icons/components/NatIcon.tsx +5 -0
  1421. package/src/icons/components/NatureIcon.tsx +5 -0
  1422. package/src/icons/components/NaturePeopleIcon.tsx +5 -0
  1423. package/src/icons/components/NavigateBeforeIcon.tsx +5 -0
  1424. package/src/icons/components/NavigateNextIcon.tsx +5 -0
  1425. package/src/icons/components/NavigationIcon.tsx +5 -0
  1426. package/src/icons/components/NearMeDisabledIcon.tsx +5 -0
  1427. package/src/icons/components/NearMeIcon.tsx +5 -0
  1428. package/src/icons/components/NearbyErrorIcon.tsx +5 -0
  1429. package/src/icons/components/NearbyOffIcon.tsx +5 -0
  1430. package/src/icons/components/NestCamWiredStandIcon.tsx +5 -0
  1431. package/src/icons/components/NetworkCellIcon.tsx +5 -0
  1432. package/src/icons/components/NetworkCheckIcon.tsx +5 -0
  1433. package/src/icons/components/NetworkLockedIcon.tsx +5 -0
  1434. package/src/icons/components/NetworkPingIcon.tsx +5 -0
  1435. package/src/icons/components/NetworkWifi1BarIcon.tsx +5 -0
  1436. package/src/icons/components/NetworkWifi2BarIcon.tsx +5 -0
  1437. package/src/icons/components/NetworkWifi3BarIcon.tsx +5 -0
  1438. package/src/icons/components/NetworkWifiIcon.tsx +5 -0
  1439. package/src/icons/components/NewLabelIcon.tsx +5 -0
  1440. package/src/icons/components/NewReleasesIcon.tsx +5 -0
  1441. package/src/icons/components/NewspaperIcon.tsx +5 -0
  1442. package/src/icons/components/NextPlanIcon.tsx +5 -0
  1443. package/src/icons/components/NextWeekIcon.tsx +5 -0
  1444. package/src/icons/components/NfcIcon.tsx +5 -0
  1445. package/src/icons/components/NightShelterIcon.tsx +5 -0
  1446. package/src/icons/components/NightlifeIcon.tsx +5 -0
  1447. package/src/icons/components/NightlightIcon.tsx +5 -0
  1448. package/src/icons/components/NightlightRoundIcon.tsx +5 -0
  1449. package/src/icons/components/NightsStayIcon.tsx +5 -0
  1450. package/src/icons/components/NoAccountsIcon.tsx +5 -0
  1451. package/src/icons/components/NoAdultContentIcon.tsx +5 -0
  1452. package/src/icons/components/NoBackpackIcon.tsx +5 -0
  1453. package/src/icons/components/NoCellIcon.tsx +5 -0
  1454. package/src/icons/components/NoCrashIcon.tsx +5 -0
  1455. package/src/icons/components/NoDrinksIcon.tsx +5 -0
  1456. package/src/icons/components/NoEncryptionGmailerrorredIcon.tsx +5 -0
  1457. package/src/icons/components/NoEncryptionIcon.tsx +5 -0
  1458. package/src/icons/components/NoFlashIcon.tsx +5 -0
  1459. package/src/icons/components/NoFoodIcon.tsx +5 -0
  1460. package/src/icons/components/NoLuggageIcon.tsx +5 -0
  1461. package/src/icons/components/NoMealsIcon.tsx +5 -0
  1462. package/src/icons/components/NoMeetingRoomIcon.tsx +5 -0
  1463. package/src/icons/components/NoPhotographyIcon.tsx +5 -0
  1464. package/src/icons/components/NoSimIcon.tsx +5 -0
  1465. package/src/icons/components/NoStrollerIcon.tsx +5 -0
  1466. package/src/icons/components/NoTransferIcon.tsx +5 -0
  1467. package/src/icons/components/NoiseAwareIcon.tsx +5 -0
  1468. package/src/icons/components/NoiseControlOffIcon.tsx +5 -0
  1469. package/src/icons/components/NordicWalkingIcon.tsx +5 -0
  1470. package/src/icons/components/NorthEastIcon.tsx +5 -0
  1471. package/src/icons/components/NorthIcon.tsx +5 -0
  1472. package/src/icons/components/NorthWestIcon.tsx +5 -0
  1473. package/src/icons/components/NotAccessibleIcon.tsx +5 -0
  1474. package/src/icons/components/NotInterestedIcon.tsx +5 -0
  1475. package/src/icons/components/NotListedLocationIcon.tsx +5 -0
  1476. package/src/icons/components/NotStartedIcon.tsx +5 -0
  1477. package/src/icons/components/NoteAddIcon.tsx +5 -0
  1478. package/src/icons/components/NoteAltIcon.tsx +5 -0
  1479. package/src/icons/components/NoteIcon.tsx +5 -0
  1480. package/src/icons/components/NotesIcon.tsx +5 -0
  1481. package/src/icons/components/NotificationAddIcon.tsx +5 -0
  1482. package/src/icons/components/NotificationImportantIcon.tsx +5 -0
  1483. package/src/icons/components/NotificationsActiveIcon.tsx +5 -0
  1484. package/src/icons/components/NotificationsIcon.tsx +5 -0
  1485. package/src/icons/components/NotificationsNoneIcon.tsx +5 -0
  1486. package/src/icons/components/NotificationsOffIcon.tsx +5 -0
  1487. package/src/icons/components/NotificationsPausedIcon.tsx +5 -0
  1488. package/src/icons/components/NumbersIcon.tsx +5 -0
  1489. package/src/icons/components/OfflineBoltIcon.tsx +5 -0
  1490. package/src/icons/components/OfflinePinIcon.tsx +5 -0
  1491. package/src/icons/components/OfflineShareIcon.tsx +5 -0
  1492. package/src/icons/components/OilBarrelIcon.tsx +5 -0
  1493. package/src/icons/components/OnDeviceTrainingIcon.tsx +5 -0
  1494. package/src/icons/components/OndemandVideoIcon.tsx +5 -0
  1495. package/src/icons/components/OnlinePredictionIcon.tsx +5 -0
  1496. package/src/icons/components/OpacityIcon.tsx +5 -0
  1497. package/src/icons/components/OpenInBrowserIcon.tsx +5 -0
  1498. package/src/icons/components/OpenInFullIcon.tsx +5 -0
  1499. package/src/icons/components/OpenInNewIcon.tsx +5 -0
  1500. package/src/icons/components/OpenInNewOffIcon.tsx +5 -0
  1501. package/src/icons/components/OpenWithIcon.tsx +5 -0
  1502. package/src/icons/components/OtherHousesIcon.tsx +5 -0
  1503. package/src/icons/components/OutboundIcon.tsx +5 -0
  1504. package/src/icons/components/OutboxIcon.tsx +5 -0
  1505. package/src/icons/components/OutdoorGrillIcon.tsx +5 -0
  1506. package/src/icons/components/OutletIcon.tsx +5 -0
  1507. package/src/icons/components/OutlinedFlagIcon.tsx +5 -0
  1508. package/src/icons/components/OutputIcon.tsx +5 -0
  1509. package/src/icons/components/PaddingIcon.tsx +5 -0
  1510. package/src/icons/components/PagesIcon.tsx +5 -0
  1511. package/src/icons/components/PageviewIcon.tsx +5 -0
  1512. package/src/icons/components/PaidIcon.tsx +5 -0
  1513. package/src/icons/components/PaletteIcon.tsx +5 -0
  1514. package/src/icons/components/PanToolAltIcon.tsx +5 -0
  1515. package/src/icons/components/PanToolIcon.tsx +5 -0
  1516. package/src/icons/components/PanoramaFishEyeIcon.tsx +5 -0
  1517. package/src/icons/components/PanoramaHorizontalIcon.tsx +5 -0
  1518. package/src/icons/components/PanoramaHorizontalSelectIcon.tsx +5 -0
  1519. package/src/icons/components/PanoramaIcon.tsx +5 -0
  1520. package/src/icons/components/PanoramaPhotosphereIcon.tsx +5 -0
  1521. package/src/icons/components/PanoramaPhotosphereSelectIcon.tsx +5 -0
  1522. package/src/icons/components/PanoramaVerticalIcon.tsx +5 -0
  1523. package/src/icons/components/PanoramaVerticalSelectIcon.tsx +5 -0
  1524. package/src/icons/components/PanoramaWideAngleIcon.tsx +5 -0
  1525. package/src/icons/components/PanoramaWideAngleSelectIcon.tsx +5 -0
  1526. package/src/icons/components/ParaglidingIcon.tsx +5 -0
  1527. package/src/icons/components/ParkIcon.tsx +5 -0
  1528. package/src/icons/components/PartyModeIcon.tsx +5 -0
  1529. package/src/icons/components/PasswordIcon.tsx +5 -0
  1530. package/src/icons/components/PatternIcon.tsx +5 -0
  1531. package/src/icons/components/PauseCircleFilledIcon.tsx +5 -0
  1532. package/src/icons/components/PauseCircleIcon.tsx +5 -0
  1533. package/src/icons/components/PauseCircleOutlineIcon.tsx +5 -0
  1534. package/src/icons/components/PauseIcon.tsx +5 -0
  1535. package/src/icons/components/PausePresentationIcon.tsx +5 -0
  1536. package/src/icons/components/PaymentIcon.tsx +5 -0
  1537. package/src/icons/components/PaymentsIcon.tsx +5 -0
  1538. package/src/icons/components/PedalBikeIcon.tsx +5 -0
  1539. package/src/icons/components/PendingActionsIcon.tsx +5 -0
  1540. package/src/icons/components/PendingIcon.tsx +5 -0
  1541. package/src/icons/components/PentagonIcon.tsx +5 -0
  1542. package/src/icons/components/PeopleAltIcon.tsx +5 -0
  1543. package/src/icons/components/PeopleIcon.tsx +5 -0
  1544. package/src/icons/components/PeopleOutlineIcon.tsx +5 -0
  1545. package/src/icons/components/PercentIcon.tsx +5 -0
  1546. package/src/icons/components/PermCameraMicIcon.tsx +5 -0
  1547. package/src/icons/components/PermContactCalendarIcon.tsx +5 -0
  1548. package/src/icons/components/PermDataSettingIcon.tsx +5 -0
  1549. package/src/icons/components/PermDeviceInformationIcon.tsx +5 -0
  1550. package/src/icons/components/PermIdentityIcon.tsx +5 -0
  1551. package/src/icons/components/PermMediaIcon.tsx +5 -0
  1552. package/src/icons/components/PermPhoneMsgIcon.tsx +5 -0
  1553. package/src/icons/components/PermScanWifiIcon.tsx +5 -0
  1554. package/src/icons/components/Person2Icon.tsx +5 -0
  1555. package/src/icons/components/Person3Icon.tsx +5 -0
  1556. package/src/icons/components/Person4Icon.tsx +5 -0
  1557. package/src/icons/components/PersonAddAlt1Icon.tsx +5 -0
  1558. package/src/icons/components/PersonAddAltIcon.tsx +5 -0
  1559. package/src/icons/components/PersonAddDisabledIcon.tsx +5 -0
  1560. package/src/icons/components/PersonAddIcon.tsx +5 -0
  1561. package/src/icons/components/PersonIcon.tsx +5 -0
  1562. package/src/icons/components/PersonOffIcon.tsx +5 -0
  1563. package/src/icons/components/PersonOutlineIcon.tsx +5 -0
  1564. package/src/icons/components/PersonPinCircleIcon.tsx +5 -0
  1565. package/src/icons/components/PersonPinIcon.tsx +5 -0
  1566. package/src/icons/components/PersonRemoveAlt1Icon.tsx +5 -0
  1567. package/src/icons/components/PersonRemoveIcon.tsx +5 -0
  1568. package/src/icons/components/PersonSearchIcon.tsx +5 -0
  1569. package/src/icons/components/PersonalInjuryIcon.tsx +5 -0
  1570. package/src/icons/components/PersonalVideoIcon.tsx +5 -0
  1571. package/src/icons/components/PestControlIcon.tsx +5 -0
  1572. package/src/icons/components/PestControlRodentIcon.tsx +5 -0
  1573. package/src/icons/components/PetsIcon.tsx +5 -0
  1574. package/src/icons/components/PhishingIcon.tsx +5 -0
  1575. package/src/icons/components/PhoneAndroidIcon.tsx +5 -0
  1576. package/src/icons/components/PhoneBluetoothSpeakerIcon.tsx +5 -0
  1577. package/src/icons/components/PhoneCallbackIcon.tsx +5 -0
  1578. package/src/icons/components/PhoneDisabledIcon.tsx +5 -0
  1579. package/src/icons/components/PhoneEnabledIcon.tsx +5 -0
  1580. package/src/icons/components/PhoneForwardedIcon.tsx +5 -0
  1581. package/src/icons/components/PhoneIcon.tsx +5 -0
  1582. package/src/icons/components/PhoneIphoneIcon.tsx +5 -0
  1583. package/src/icons/components/PhoneLockedIcon.tsx +5 -0
  1584. package/src/icons/components/PhoneMissedIcon.tsx +5 -0
  1585. package/src/icons/components/PhonePausedIcon.tsx +5 -0
  1586. package/src/icons/components/PhonelinkEraseIcon.tsx +5 -0
  1587. package/src/icons/components/PhonelinkIcon.tsx +5 -0
  1588. package/src/icons/components/PhonelinkLockIcon.tsx +5 -0
  1589. package/src/icons/components/PhonelinkOffIcon.tsx +5 -0
  1590. package/src/icons/components/PhonelinkRingIcon.tsx +5 -0
  1591. package/src/icons/components/PhonelinkSetupIcon.tsx +5 -0
  1592. package/src/icons/components/PhotoAlbumIcon.tsx +5 -0
  1593. package/src/icons/components/PhotoCameraBackIcon.tsx +5 -0
  1594. package/src/icons/components/PhotoCameraFrontIcon.tsx +5 -0
  1595. package/src/icons/components/PhotoCameraIcon.tsx +5 -0
  1596. package/src/icons/components/PhotoFilterIcon.tsx +5 -0
  1597. package/src/icons/components/PhotoIcon.tsx +5 -0
  1598. package/src/icons/components/PhotoLibraryIcon.tsx +5 -0
  1599. package/src/icons/components/PhotoSizeSelectActualIcon.tsx +5 -0
  1600. package/src/icons/components/PhotoSizeSelectLargeIcon.tsx +5 -0
  1601. package/src/icons/components/PhotoSizeSelectSmallIcon.tsx +5 -0
  1602. package/src/icons/components/PhpIcon.tsx +5 -0
  1603. package/src/icons/components/PianoIcon.tsx +5 -0
  1604. package/src/icons/components/PianoOffIcon.tsx +5 -0
  1605. package/src/icons/components/PictureAsPdfIcon.tsx +5 -0
  1606. package/src/icons/components/PictureInPictureAltIcon.tsx +5 -0
  1607. package/src/icons/components/PictureInPictureIcon.tsx +5 -0
  1608. package/src/icons/components/PieChartIcon.tsx +5 -0
  1609. package/src/icons/components/PieChartOutlineIcon.tsx +5 -0
  1610. package/src/icons/components/PinDropIcon.tsx +5 -0
  1611. package/src/icons/components/PinEndIcon.tsx +5 -0
  1612. package/src/icons/components/PinIcon.tsx +5 -0
  1613. package/src/icons/components/PinInvokeIcon.tsx +5 -0
  1614. package/src/icons/components/PinchIcon.tsx +5 -0
  1615. package/src/icons/components/PivotTableChartIcon.tsx +5 -0
  1616. package/src/icons/components/PixIcon.tsx +5 -0
  1617. package/src/icons/components/PlaceIcon.tsx +5 -0
  1618. package/src/icons/components/PlagiarismIcon.tsx +5 -0
  1619. package/src/icons/components/PlayArrowIcon.tsx +5 -0
  1620. package/src/icons/components/PlayCircleFilledIcon.tsx +5 -0
  1621. package/src/icons/components/PlayCircleIcon.tsx +5 -0
  1622. package/src/icons/components/PlayCircleOutlineIcon.tsx +5 -0
  1623. package/src/icons/components/PlayDisabledIcon.tsx +5 -0
  1624. package/src/icons/components/PlayForWorkIcon.tsx +5 -0
  1625. package/src/icons/components/PlayLessonIcon.tsx +5 -0
  1626. package/src/icons/components/PlaylistAddCheckCircleIcon.tsx +5 -0
  1627. package/src/icons/components/PlaylistAddCheckIcon.tsx +5 -0
  1628. package/src/icons/components/PlaylistAddCircleIcon.tsx +5 -0
  1629. package/src/icons/components/PlaylistAddIcon.tsx +5 -0
  1630. package/src/icons/components/PlaylistPlayIcon.tsx +5 -0
  1631. package/src/icons/components/PlaylistRemoveIcon.tsx +5 -0
  1632. package/src/icons/components/PlumbingIcon.tsx +5 -0
  1633. package/src/icons/components/PlusOneIcon.tsx +5 -0
  1634. package/src/icons/components/PodcastsIcon.tsx +5 -0
  1635. package/src/icons/components/PointOfSaleIcon.tsx +5 -0
  1636. package/src/icons/components/PolicyIcon.tsx +5 -0
  1637. package/src/icons/components/PollIcon.tsx +5 -0
  1638. package/src/icons/components/PolylineIcon.tsx +5 -0
  1639. package/src/icons/components/PolymerIcon.tsx +5 -0
  1640. package/src/icons/components/PoolIcon.tsx +5 -0
  1641. package/src/icons/components/PortableWifiOffIcon.tsx +5 -0
  1642. package/src/icons/components/PortraitIcon.tsx +5 -0
  1643. package/src/icons/components/PostAddIcon.tsx +5 -0
  1644. package/src/icons/components/PowerIcon.tsx +5 -0
  1645. package/src/icons/components/PowerInputIcon.tsx +5 -0
  1646. package/src/icons/components/PowerOffIcon.tsx +5 -0
  1647. package/src/icons/components/PowerSettingsNewIcon.tsx +5 -0
  1648. package/src/icons/components/PrecisionManufacturingIcon.tsx +5 -0
  1649. package/src/icons/components/PregnantWomanIcon.tsx +5 -0
  1650. package/src/icons/components/PresentToAllIcon.tsx +5 -0
  1651. package/src/icons/components/PreviewIcon.tsx +5 -0
  1652. package/src/icons/components/PriceChangeIcon.tsx +5 -0
  1653. package/src/icons/components/PriceCheckIcon.tsx +5 -0
  1654. package/src/icons/components/PrintDisabledIcon.tsx +5 -0
  1655. package/src/icons/components/PrintIcon.tsx +5 -0
  1656. package/src/icons/components/PriorityHighIcon.tsx +5 -0
  1657. package/src/icons/components/PrivacyTipIcon.tsx +5 -0
  1658. package/src/icons/components/PrivateConnectivityIcon.tsx +5 -0
  1659. package/src/icons/components/ProductionQuantityLimitsIcon.tsx +5 -0
  1660. package/src/icons/components/PropaneIcon.tsx +5 -0
  1661. package/src/icons/components/PropaneTankIcon.tsx +5 -0
  1662. package/src/icons/components/PsychologyAltIcon.tsx +5 -0
  1663. package/src/icons/components/PsychologyIcon.tsx +5 -0
  1664. package/src/icons/components/PublicIcon.tsx +5 -0
  1665. package/src/icons/components/PublicOffIcon.tsx +5 -0
  1666. package/src/icons/components/PublishIcon.tsx +5 -0
  1667. package/src/icons/components/PublishedWithChangesIcon.tsx +5 -0
  1668. package/src/icons/components/PunchClockIcon.tsx +5 -0
  1669. package/src/icons/components/PushPinIcon.tsx +5 -0
  1670. package/src/icons/components/QrCode2Icon.tsx +5 -0
  1671. package/src/icons/components/QrCodeIcon.tsx +5 -0
  1672. package/src/icons/components/QrCodeScannerIcon.tsx +5 -0
  1673. package/src/icons/components/QueryBuilderIcon.tsx +5 -0
  1674. package/src/icons/components/QueryStatsIcon.tsx +5 -0
  1675. package/src/icons/components/QuestionAnswerIcon.tsx +5 -0
  1676. package/src/icons/components/QuestionMarkIcon.tsx +5 -0
  1677. package/src/icons/components/QueueIcon.tsx +5 -0
  1678. package/src/icons/components/QueueMusicIcon.tsx +5 -0
  1679. package/src/icons/components/QueuePlayNextIcon.tsx +5 -0
  1680. package/src/icons/components/QuickreplyIcon.tsx +5 -0
  1681. package/src/icons/components/QuizIcon.tsx +5 -0
  1682. package/src/icons/components/RMobiledataIcon.tsx +5 -0
  1683. package/src/icons/components/RadarIcon.tsx +5 -0
  1684. package/src/icons/components/RadioButtonCheckedIcon.tsx +5 -0
  1685. package/src/icons/components/RadioButtonUncheckedIcon.tsx +5 -0
  1686. package/src/icons/components/RadioIcon.tsx +5 -0
  1687. package/src/icons/components/RailwayAlertIcon.tsx +5 -0
  1688. package/src/icons/components/RamenDiningIcon.tsx +5 -0
  1689. package/src/icons/components/RampLeftIcon.tsx +5 -0
  1690. package/src/icons/components/RampRightIcon.tsx +5 -0
  1691. package/src/icons/components/RateReviewIcon.tsx +5 -0
  1692. package/src/icons/components/RawOffIcon.tsx +5 -0
  1693. package/src/icons/components/RawOnIcon.tsx +5 -0
  1694. package/src/icons/components/ReadMoreIcon.tsx +5 -0
  1695. package/src/icons/components/RealEstateAgentIcon.tsx +5 -0
  1696. package/src/icons/components/ReceiptIcon.tsx +5 -0
  1697. package/src/icons/components/ReceiptLongIcon.tsx +5 -0
  1698. package/src/icons/components/RecentActorsIcon.tsx +5 -0
  1699. package/src/icons/components/RecommendIcon.tsx +5 -0
  1700. package/src/icons/components/RecordVoiceOverIcon.tsx +5 -0
  1701. package/src/icons/components/RectangleIcon.tsx +5 -0
  1702. package/src/icons/components/RecyclingIcon.tsx +5 -0
  1703. package/src/icons/components/RedeemIcon.tsx +5 -0
  1704. package/src/icons/components/RedoIcon.tsx +5 -0
  1705. package/src/icons/components/ReduceCapacityIcon.tsx +5 -0
  1706. package/src/icons/components/RefreshIcon.tsx +5 -0
  1707. package/src/icons/components/RememberMeIcon.tsx +5 -0
  1708. package/src/icons/components/RemoveCircleIcon.tsx +5 -0
  1709. package/src/icons/components/RemoveCircleOutlineIcon.tsx +5 -0
  1710. package/src/icons/components/RemoveDoneIcon.tsx +5 -0
  1711. package/src/icons/components/RemoveFromQueueIcon.tsx +5 -0
  1712. package/src/icons/components/RemoveIcon.tsx +5 -0
  1713. package/src/icons/components/RemoveModeratorIcon.tsx +5 -0
  1714. package/src/icons/components/RemoveRedEyeIcon.tsx +5 -0
  1715. package/src/icons/components/RemoveRoadIcon.tsx +5 -0
  1716. package/src/icons/components/RemoveShoppingCartIcon.tsx +5 -0
  1717. package/src/icons/components/ReorderIcon.tsx +5 -0
  1718. package/src/icons/components/RepartitionIcon.tsx +5 -0
  1719. package/src/icons/components/RepeatIcon.tsx +5 -0
  1720. package/src/icons/components/RepeatOnIcon.tsx +5 -0
  1721. package/src/icons/components/RepeatOneIcon.tsx +5 -0
  1722. package/src/icons/components/RepeatOneOnIcon.tsx +5 -0
  1723. package/src/icons/components/Replay10Icon.tsx +5 -0
  1724. package/src/icons/components/Replay30Icon.tsx +5 -0
  1725. package/src/icons/components/Replay5Icon.tsx +5 -0
  1726. package/src/icons/components/ReplayCircleFilledIcon.tsx +5 -0
  1727. package/src/icons/components/ReplayIcon.tsx +5 -0
  1728. package/src/icons/components/ReplyAllIcon.tsx +5 -0
  1729. package/src/icons/components/ReplyIcon.tsx +5 -0
  1730. package/src/icons/components/ReportGmailerrorredIcon.tsx +5 -0
  1731. package/src/icons/components/ReportIcon.tsx +5 -0
  1732. package/src/icons/components/ReportOffIcon.tsx +5 -0
  1733. package/src/icons/components/ReportProblemIcon.tsx +5 -0
  1734. package/src/icons/components/RequestPageIcon.tsx +5 -0
  1735. package/src/icons/components/RequestQuoteIcon.tsx +5 -0
  1736. package/src/icons/components/ResetTvIcon.tsx +5 -0
  1737. package/src/icons/components/RestartAltIcon.tsx +5 -0
  1738. package/src/icons/components/RestaurantIcon.tsx +5 -0
  1739. package/src/icons/components/RestaurantMenuIcon.tsx +5 -0
  1740. package/src/icons/components/RestoreFromTrashIcon.tsx +5 -0
  1741. package/src/icons/components/RestoreIcon.tsx +5 -0
  1742. package/src/icons/components/RestorePageIcon.tsx +5 -0
  1743. package/src/icons/components/ReviewsIcon.tsx +5 -0
  1744. package/src/icons/components/RiceBowlIcon.tsx +5 -0
  1745. package/src/icons/components/RingVolumeIcon.tsx +5 -0
  1746. package/src/icons/components/RocketIcon.tsx +5 -0
  1747. package/src/icons/components/RocketLaunchIcon.tsx +5 -0
  1748. package/src/icons/components/RollerShadesClosedIcon.tsx +5 -0
  1749. package/src/icons/components/RollerShadesIcon.tsx +5 -0
  1750. package/src/icons/components/RollerSkatingIcon.tsx +5 -0
  1751. package/src/icons/components/RoofingIcon.tsx +5 -0
  1752. package/src/icons/components/RoomIcon.tsx +5 -0
  1753. package/src/icons/components/RoomPreferencesIcon.tsx +5 -0
  1754. package/src/icons/components/RoomServiceIcon.tsx +5 -0
  1755. package/src/icons/components/Rotate90DegreesCcwIcon.tsx +5 -0
  1756. package/src/icons/components/Rotate90DegreesCwIcon.tsx +5 -0
  1757. package/src/icons/components/RotateLeftIcon.tsx +5 -0
  1758. package/src/icons/components/RotateRightIcon.tsx +5 -0
  1759. package/src/icons/components/RoundaboutLeftIcon.tsx +5 -0
  1760. package/src/icons/components/RoundaboutRightIcon.tsx +5 -0
  1761. package/src/icons/components/RoundedCornerIcon.tsx +5 -0
  1762. package/src/icons/components/RouteIcon.tsx +5 -0
  1763. package/src/icons/components/RouterIcon.tsx +5 -0
  1764. package/src/icons/components/RowingIcon.tsx +5 -0
  1765. package/src/icons/components/RssFeedIcon.tsx +5 -0
  1766. package/src/icons/components/RsvpIcon.tsx +5 -0
  1767. package/src/icons/components/RttIcon.tsx +5 -0
  1768. package/src/icons/components/RuleFolderIcon.tsx +5 -0
  1769. package/src/icons/components/RuleIcon.tsx +5 -0
  1770. package/src/icons/components/RunCircleIcon.tsx +5 -0
  1771. package/src/icons/components/RunningWithErrorsIcon.tsx +5 -0
  1772. package/src/icons/components/RvHookupIcon.tsx +5 -0
  1773. package/src/icons/components/SafetyCheckIcon.tsx +5 -0
  1774. package/src/icons/components/SafetyDividerIcon.tsx +5 -0
  1775. package/src/icons/components/SailingIcon.tsx +5 -0
  1776. package/src/icons/components/SanitizerIcon.tsx +5 -0
  1777. package/src/icons/components/SatelliteAltIcon.tsx +5 -0
  1778. package/src/icons/components/SatelliteIcon.tsx +5 -0
  1779. package/src/icons/components/SaveAltIcon.tsx +5 -0
  1780. package/src/icons/components/SaveAsIcon.tsx +5 -0
  1781. package/src/icons/components/SaveIcon.tsx +5 -0
  1782. package/src/icons/components/SavedSearchIcon.tsx +5 -0
  1783. package/src/icons/components/SavingsIcon.tsx +5 -0
  1784. package/src/icons/components/ScaleIcon.tsx +5 -0
  1785. package/src/icons/components/ScannerIcon.tsx +5 -0
  1786. package/src/icons/components/ScatterPlotIcon.tsx +5 -0
  1787. package/src/icons/components/ScheduleIcon.tsx +5 -0
  1788. package/src/icons/components/ScheduleSendIcon.tsx +5 -0
  1789. package/src/icons/components/SchemaIcon.tsx +5 -0
  1790. package/src/icons/components/SchoolIcon.tsx +5 -0
  1791. package/src/icons/components/ScienceIcon.tsx +5 -0
  1792. package/src/icons/components/ScoreIcon.tsx +5 -0
  1793. package/src/icons/components/ScoreboardIcon.tsx +5 -0
  1794. package/src/icons/components/ScreenLockLandscapeIcon.tsx +5 -0
  1795. package/src/icons/components/ScreenLockPortraitIcon.tsx +5 -0
  1796. package/src/icons/components/ScreenLockRotationIcon.tsx +5 -0
  1797. package/src/icons/components/ScreenRotationAltIcon.tsx +5 -0
  1798. package/src/icons/components/ScreenRotationIcon.tsx +5 -0
  1799. package/src/icons/components/ScreenSearchDesktopIcon.tsx +5 -0
  1800. package/src/icons/components/ScreenShareIcon.tsx +5 -0
  1801. package/src/icons/components/ScreenshotIcon.tsx +5 -0
  1802. package/src/icons/components/ScreenshotMonitorIcon.tsx +5 -0
  1803. package/src/icons/components/ScubaDivingIcon.tsx +5 -0
  1804. package/src/icons/components/SdCardAlertIcon.tsx +5 -0
  1805. package/src/icons/components/SdCardIcon.tsx +5 -0
  1806. package/src/icons/components/SdIcon.tsx +5 -0
  1807. package/src/icons/components/SdStorageIcon.tsx +5 -0
  1808. package/src/icons/components/SearchIcon.tsx +5 -0
  1809. package/src/icons/components/SearchOffIcon.tsx +5 -0
  1810. package/src/icons/components/SecurityIcon.tsx +5 -0
  1811. package/src/icons/components/SecurityUpdateGoodIcon.tsx +5 -0
  1812. package/src/icons/components/SecurityUpdateIcon.tsx +5 -0
  1813. package/src/icons/components/SecurityUpdateWarningIcon.tsx +5 -0
  1814. package/src/icons/components/SegmentIcon.tsx +5 -0
  1815. package/src/icons/components/SelectAllIcon.tsx +5 -0
  1816. package/src/icons/components/SelfImprovementIcon.tsx +5 -0
  1817. package/src/icons/components/SellIcon.tsx +5 -0
  1818. package/src/icons/components/SendAndArchiveIcon.tsx +5 -0
  1819. package/src/icons/components/SendIcon.tsx +5 -0
  1820. package/src/icons/components/SendTimeExtensionIcon.tsx +5 -0
  1821. package/src/icons/components/SendToMobileIcon.tsx +5 -0
  1822. package/src/icons/components/SensorDoorIcon.tsx +5 -0
  1823. package/src/icons/components/SensorOccupiedIcon.tsx +5 -0
  1824. package/src/icons/components/SensorWindowIcon.tsx +5 -0
  1825. package/src/icons/components/SensorsIcon.tsx +5 -0
  1826. package/src/icons/components/SensorsOffIcon.tsx +5 -0
  1827. package/src/icons/components/SentimentDissatisfiedIcon.tsx +5 -0
  1828. package/src/icons/components/SentimentNeutralIcon.tsx +5 -0
  1829. package/src/icons/components/SentimentSatisfiedAltIcon.tsx +5 -0
  1830. package/src/icons/components/SentimentSatisfiedIcon.tsx +5 -0
  1831. package/src/icons/components/SentimentVeryDissatisfiedIcon.tsx +5 -0
  1832. package/src/icons/components/SentimentVerySatisfiedIcon.tsx +5 -0
  1833. package/src/icons/components/SetMealIcon.tsx +5 -0
  1834. package/src/icons/components/SettingsAccessibilityIcon.tsx +5 -0
  1835. package/src/icons/components/SettingsApplicationsIcon.tsx +5 -0
  1836. package/src/icons/components/SettingsBackupRestoreIcon.tsx +5 -0
  1837. package/src/icons/components/SettingsBluetoothIcon.tsx +5 -0
  1838. package/src/icons/components/SettingsBrightnessIcon.tsx +5 -0
  1839. package/src/icons/components/SettingsCellIcon.tsx +5 -0
  1840. package/src/icons/components/SettingsEthernetIcon.tsx +5 -0
  1841. package/src/icons/components/SettingsIcon.tsx +5 -0
  1842. package/src/icons/components/SettingsInputAntennaIcon.tsx +5 -0
  1843. package/src/icons/components/SettingsInputComponentIcon.tsx +5 -0
  1844. package/src/icons/components/SettingsInputCompositeIcon.tsx +5 -0
  1845. package/src/icons/components/SettingsInputHdmiIcon.tsx +5 -0
  1846. package/src/icons/components/SettingsInputSvideoIcon.tsx +5 -0
  1847. package/src/icons/components/SettingsOverscanIcon.tsx +5 -0
  1848. package/src/icons/components/SettingsPhoneIcon.tsx +5 -0
  1849. package/src/icons/components/SettingsPowerIcon.tsx +5 -0
  1850. package/src/icons/components/SettingsRemoteIcon.tsx +5 -0
  1851. package/src/icons/components/SettingsSuggestIcon.tsx +5 -0
  1852. package/src/icons/components/SettingsSystemDaydreamIcon.tsx +5 -0
  1853. package/src/icons/components/SettingsVoiceIcon.tsx +5 -0
  1854. package/src/icons/components/SevereColdIcon.tsx +5 -0
  1855. package/src/icons/components/ShapeLineIcon.tsx +5 -0
  1856. package/src/icons/components/ShareIcon.tsx +5 -0
  1857. package/src/icons/components/ShareLocationIcon.tsx +5 -0
  1858. package/src/icons/components/ShieldIcon.tsx +5 -0
  1859. package/src/icons/components/ShieldMoonIcon.tsx +5 -0
  1860. package/src/icons/components/Shop2Icon.tsx +5 -0
  1861. package/src/icons/components/ShopIcon.tsx +5 -0
  1862. package/src/icons/components/ShopTwoIcon.tsx +5 -0
  1863. package/src/icons/components/ShoppingBagIcon.tsx +5 -0
  1864. package/src/icons/components/ShoppingBasketIcon.tsx +5 -0
  1865. package/src/icons/components/ShoppingCartCheckoutIcon.tsx +5 -0
  1866. package/src/icons/components/ShoppingCartIcon.tsx +5 -0
  1867. package/src/icons/components/ShortTextIcon.tsx +5 -0
  1868. package/src/icons/components/ShortcutIcon.tsx +5 -0
  1869. package/src/icons/components/ShowChartIcon.tsx +5 -0
  1870. package/src/icons/components/ShowerIcon.tsx +5 -0
  1871. package/src/icons/components/ShuffleIcon.tsx +5 -0
  1872. package/src/icons/components/ShuffleOnIcon.tsx +5 -0
  1873. package/src/icons/components/ShutterSpeedIcon.tsx +5 -0
  1874. package/src/icons/components/SickIcon.tsx +5 -0
  1875. package/src/icons/components/SignLanguageIcon.tsx +5 -0
  1876. package/src/icons/components/SignalCellular0BarIcon.tsx +5 -0
  1877. package/src/icons/components/SignalCellular4BarIcon.tsx +5 -0
  1878. package/src/icons/components/SignalCellularAlt1BarIcon.tsx +5 -0
  1879. package/src/icons/components/SignalCellularAlt2BarIcon.tsx +5 -0
  1880. package/src/icons/components/SignalCellularAltIcon.tsx +5 -0
  1881. package/src/icons/components/SignalCellularConnectedNoInternet0BarIcon.tsx +5 -0
  1882. package/src/icons/components/SignalCellularConnectedNoInternet4BarIcon.tsx +5 -0
  1883. package/src/icons/components/SignalCellularNoSimIcon.tsx +5 -0
  1884. package/src/icons/components/SignalCellularNodataIcon.tsx +5 -0
  1885. package/src/icons/components/SignalCellularNullIcon.tsx +5 -0
  1886. package/src/icons/components/SignalCellularOffIcon.tsx +5 -0
  1887. package/src/icons/components/SignalWifi0BarIcon.tsx +5 -0
  1888. package/src/icons/components/SignalWifi4BarIcon.tsx +5 -0
  1889. package/src/icons/components/SignalWifi4BarLockIcon.tsx +5 -0
  1890. package/src/icons/components/SignalWifiBadIcon.tsx +5 -0
  1891. package/src/icons/components/SignalWifiConnectedNoInternet4Icon.tsx +5 -0
  1892. package/src/icons/components/SignalWifiOffIcon.tsx +5 -0
  1893. package/src/icons/components/SignalWifiStatusbar4BarIcon.tsx +5 -0
  1894. package/src/icons/components/SignalWifiStatusbarConnectedNoInternet4Icon.tsx +5 -0
  1895. package/src/icons/components/SignalWifiStatusbarNullIcon.tsx +5 -0
  1896. package/src/icons/components/SignpostIcon.tsx +5 -0
  1897. package/src/icons/components/SimCardAlertIcon.tsx +5 -0
  1898. package/src/icons/components/SimCardDownloadIcon.tsx +5 -0
  1899. package/src/icons/components/SimCardIcon.tsx +5 -0
  1900. package/src/icons/components/SingleBedIcon.tsx +5 -0
  1901. package/src/icons/components/SipIcon.tsx +5 -0
  1902. package/src/icons/components/SkateboardingIcon.tsx +5 -0
  1903. package/src/icons/components/SkipNextIcon.tsx +5 -0
  1904. package/src/icons/components/SkipPreviousIcon.tsx +5 -0
  1905. package/src/icons/components/SleddingIcon.tsx +5 -0
  1906. package/src/icons/components/SlideshowIcon.tsx +5 -0
  1907. package/src/icons/components/SlowMotionVideoIcon.tsx +5 -0
  1908. package/src/icons/components/SmartButtonIcon.tsx +5 -0
  1909. package/src/icons/components/SmartDisplayIcon.tsx +5 -0
  1910. package/src/icons/components/SmartScreenIcon.tsx +5 -0
  1911. package/src/icons/components/SmartToyIcon.tsx +5 -0
  1912. package/src/icons/components/SmartphoneIcon.tsx +5 -0
  1913. package/src/icons/components/SmokeFreeIcon.tsx +5 -0
  1914. package/src/icons/components/SmokingRoomsIcon.tsx +5 -0
  1915. package/src/icons/components/SmsFailedIcon.tsx +5 -0
  1916. package/src/icons/components/SmsIcon.tsx +5 -0
  1917. package/src/icons/components/SnippetFolderIcon.tsx +5 -0
  1918. package/src/icons/components/SnoozeIcon.tsx +5 -0
  1919. package/src/icons/components/SnowboardingIcon.tsx +5 -0
  1920. package/src/icons/components/SnowmobileIcon.tsx +5 -0
  1921. package/src/icons/components/SnowshoeingIcon.tsx +5 -0
  1922. package/src/icons/components/SoapIcon.tsx +5 -0
  1923. package/src/icons/components/SocialDistanceIcon.tsx +5 -0
  1924. package/src/icons/components/SolarPowerIcon.tsx +5 -0
  1925. package/src/icons/components/SortByAlphaIcon.tsx +5 -0
  1926. package/src/icons/components/SortIcon.tsx +5 -0
  1927. package/src/icons/components/SosIcon.tsx +5 -0
  1928. package/src/icons/components/SoupKitchenIcon.tsx +5 -0
  1929. package/src/icons/components/SourceIcon.tsx +5 -0
  1930. package/src/icons/components/SouthAmericaIcon.tsx +5 -0
  1931. package/src/icons/components/SouthEastIcon.tsx +5 -0
  1932. package/src/icons/components/SouthIcon.tsx +5 -0
  1933. package/src/icons/components/SouthWestIcon.tsx +5 -0
  1934. package/src/icons/components/SpaIcon.tsx +5 -0
  1935. package/src/icons/components/SpaceBarIcon.tsx +5 -0
  1936. package/src/icons/components/SpaceDashboardIcon.tsx +5 -0
  1937. package/src/icons/components/SpatialAudioIcon.tsx +5 -0
  1938. package/src/icons/components/SpatialAudioOffIcon.tsx +5 -0
  1939. package/src/icons/components/SpatialTrackingIcon.tsx +5 -0
  1940. package/src/icons/components/SpeakerGroupIcon.tsx +5 -0
  1941. package/src/icons/components/SpeakerIcon.tsx +5 -0
  1942. package/src/icons/components/SpeakerNotesIcon.tsx +5 -0
  1943. package/src/icons/components/SpeakerNotesOffIcon.tsx +5 -0
  1944. package/src/icons/components/SpeakerPhoneIcon.tsx +5 -0
  1945. package/src/icons/components/SpeedIcon.tsx +5 -0
  1946. package/src/icons/components/SpellcheckIcon.tsx +5 -0
  1947. package/src/icons/components/SplitscreenIcon.tsx +5 -0
  1948. package/src/icons/components/SpokeIcon.tsx +5 -0
  1949. package/src/icons/components/SportsBarIcon.tsx +5 -0
  1950. package/src/icons/components/SportsBaseballIcon.tsx +5 -0
  1951. package/src/icons/components/SportsBasketballIcon.tsx +5 -0
  1952. package/src/icons/components/SportsCricketIcon.tsx +5 -0
  1953. package/src/icons/components/SportsEsportsIcon.tsx +5 -0
  1954. package/src/icons/components/SportsFootballIcon.tsx +5 -0
  1955. package/src/icons/components/SportsGolfIcon.tsx +5 -0
  1956. package/src/icons/components/SportsGymnasticsIcon.tsx +5 -0
  1957. package/src/icons/components/SportsHandballIcon.tsx +5 -0
  1958. package/src/icons/components/SportsHockeyIcon.tsx +5 -0
  1959. package/src/icons/components/SportsIcon.tsx +5 -0
  1960. package/src/icons/components/SportsKabaddiIcon.tsx +5 -0
  1961. package/src/icons/components/SportsMartialArtsIcon.tsx +5 -0
  1962. package/src/icons/components/SportsMmaIcon.tsx +5 -0
  1963. package/src/icons/components/SportsMotorsportsIcon.tsx +5 -0
  1964. package/src/icons/components/SportsRugbyIcon.tsx +5 -0
  1965. package/src/icons/components/SportsScoreIcon.tsx +5 -0
  1966. package/src/icons/components/SportsSoccerIcon.tsx +5 -0
  1967. package/src/icons/components/SportsTennisIcon.tsx +5 -0
  1968. package/src/icons/components/SportsVolleyballIcon.tsx +5 -0
  1969. package/src/icons/components/SquareFootIcon.tsx +5 -0
  1970. package/src/icons/components/SquareIcon.tsx +5 -0
  1971. package/src/icons/components/SsidChartIcon.tsx +5 -0
  1972. package/src/icons/components/StackedBarChartIcon.tsx +5 -0
  1973. package/src/icons/components/StackedLineChartIcon.tsx +5 -0
  1974. package/src/icons/components/StadiumIcon.tsx +5 -0
  1975. package/src/icons/components/StairsIcon.tsx +5 -0
  1976. package/src/icons/components/StarBorderIcon.tsx +5 -0
  1977. package/src/icons/components/StarBorderPurple500Icon.tsx +5 -0
  1978. package/src/icons/components/StarHalfIcon.tsx +5 -0
  1979. package/src/icons/components/StarIcon.tsx +5 -0
  1980. package/src/icons/components/StarOutlineIcon.tsx +5 -0
  1981. package/src/icons/components/StarPurple500Icon.tsx +5 -0
  1982. package/src/icons/components/StarRateIcon.tsx +5 -0
  1983. package/src/icons/components/StarsIcon.tsx +5 -0
  1984. package/src/icons/components/StartIcon.tsx +5 -0
  1985. package/src/icons/components/StayCurrentLandscapeIcon.tsx +5 -0
  1986. package/src/icons/components/StayCurrentPortraitIcon.tsx +5 -0
  1987. package/src/icons/components/StayPrimaryLandscapeIcon.tsx +5 -0
  1988. package/src/icons/components/StayPrimaryPortraitIcon.tsx +5 -0
  1989. package/src/icons/components/StickyNote2Icon.tsx +5 -0
  1990. package/src/icons/components/StopCircleIcon.tsx +5 -0
  1991. package/src/icons/components/StopIcon.tsx +5 -0
  1992. package/src/icons/components/StopScreenShareIcon.tsx +5 -0
  1993. package/src/icons/components/StorageIcon.tsx +5 -0
  1994. package/src/icons/components/StoreIcon.tsx +5 -0
  1995. package/src/icons/components/StoreMallDirectoryIcon.tsx +5 -0
  1996. package/src/icons/components/StorefrontIcon.tsx +5 -0
  1997. package/src/icons/components/StormIcon.tsx +5 -0
  1998. package/src/icons/components/StraightIcon.tsx +5 -0
  1999. package/src/icons/components/StraightenIcon.tsx +5 -0
  2000. package/src/icons/components/StreamIcon.tsx +5 -0
  2001. package/src/icons/components/StreetviewIcon.tsx +5 -0
  2002. package/src/icons/components/StrikethroughSIcon.tsx +5 -0
  2003. package/src/icons/components/StrollerIcon.tsx +5 -0
  2004. package/src/icons/components/StyleIcon.tsx +5 -0
  2005. package/src/icons/components/SubdirectoryArrowLeftIcon.tsx +5 -0
  2006. package/src/icons/components/SubdirectoryArrowRightIcon.tsx +5 -0
  2007. package/src/icons/components/SubjectIcon.tsx +5 -0
  2008. package/src/icons/components/SubscriptIcon.tsx +5 -0
  2009. package/src/icons/components/SubscriptionsIcon.tsx +5 -0
  2010. package/src/icons/components/SubtitlesIcon.tsx +5 -0
  2011. package/src/icons/components/SubtitlesOffIcon.tsx +5 -0
  2012. package/src/icons/components/SubwayIcon.tsx +5 -0
  2013. package/src/icons/components/SummarizeIcon.tsx +5 -0
  2014. package/src/icons/components/SuperscriptIcon.tsx +5 -0
  2015. package/src/icons/components/SupervisedUserCircleIcon.tsx +5 -0
  2016. package/src/icons/components/SupervisorAccountIcon.tsx +5 -0
  2017. package/src/icons/components/SupportAgentIcon.tsx +5 -0
  2018. package/src/icons/components/SupportIcon.tsx +5 -0
  2019. package/src/icons/components/SurfingIcon.tsx +5 -0
  2020. package/src/icons/components/SurroundSoundIcon.tsx +5 -0
  2021. package/src/icons/components/SwapCallsIcon.tsx +5 -0
  2022. package/src/icons/components/SwapHorizIcon.tsx +5 -0
  2023. package/src/icons/components/SwapHorizontalCircleIcon.tsx +5 -0
  2024. package/src/icons/components/SwapVertIcon.tsx +5 -0
  2025. package/src/icons/components/SwapVerticalCircleIcon.tsx +5 -0
  2026. package/src/icons/components/SwipeDownAltIcon.tsx +5 -0
  2027. package/src/icons/components/SwipeDownIcon.tsx +5 -0
  2028. package/src/icons/components/SwipeIcon.tsx +5 -0
  2029. package/src/icons/components/SwipeLeftAltIcon.tsx +5 -0
  2030. package/src/icons/components/SwipeLeftIcon.tsx +5 -0
  2031. package/src/icons/components/SwipeRightAltIcon.tsx +5 -0
  2032. package/src/icons/components/SwipeRightIcon.tsx +5 -0
  2033. package/src/icons/components/SwipeUpAltIcon.tsx +5 -0
  2034. package/src/icons/components/SwipeUpIcon.tsx +5 -0
  2035. package/src/icons/components/SwipeVerticalIcon.tsx +5 -0
  2036. package/src/icons/components/SwitchAccessShortcutAddIcon.tsx +5 -0
  2037. package/src/icons/components/SwitchAccessShortcutIcon.tsx +5 -0
  2038. package/src/icons/components/SwitchAccountIcon.tsx +5 -0
  2039. package/src/icons/components/SwitchCameraIcon.tsx +5 -0
  2040. package/src/icons/components/SwitchLeftIcon.tsx +5 -0
  2041. package/src/icons/components/SwitchRightIcon.tsx +5 -0
  2042. package/src/icons/components/SwitchVideoIcon.tsx +5 -0
  2043. package/src/icons/components/SynagogueIcon.tsx +5 -0
  2044. package/src/icons/components/SyncAltIcon.tsx +5 -0
  2045. package/src/icons/components/SyncDisabledIcon.tsx +5 -0
  2046. package/src/icons/components/SyncIcon.tsx +5 -0
  2047. package/src/icons/components/SyncLockIcon.tsx +5 -0
  2048. package/src/icons/components/SyncProblemIcon.tsx +5 -0
  2049. package/src/icons/components/SystemSecurityUpdateGoodIcon.tsx +5 -0
  2050. package/src/icons/components/SystemSecurityUpdateIcon.tsx +5 -0
  2051. package/src/icons/components/SystemSecurityUpdateWarningIcon.tsx +5 -0
  2052. package/src/icons/components/SystemUpdateAltIcon.tsx +5 -0
  2053. package/src/icons/components/SystemUpdateIcon.tsx +5 -0
  2054. package/src/icons/components/TabIcon.tsx +5 -0
  2055. package/src/icons/components/TabUnselectedIcon.tsx +5 -0
  2056. package/src/icons/components/TableBarIcon.tsx +5 -0
  2057. package/src/icons/components/TableChartIcon.tsx +5 -0
  2058. package/src/icons/components/TableRestaurantIcon.tsx +5 -0
  2059. package/src/icons/components/TableRowsIcon.tsx +5 -0
  2060. package/src/icons/components/TableViewIcon.tsx +5 -0
  2061. package/src/icons/components/TabletAndroidIcon.tsx +5 -0
  2062. package/src/icons/components/TabletIcon.tsx +5 -0
  2063. package/src/icons/components/TabletMacIcon.tsx +5 -0
  2064. package/src/icons/components/TagFacesIcon.tsx +5 -0
  2065. package/src/icons/components/TagIcon.tsx +5 -0
  2066. package/src/icons/components/TakeoutDiningIcon.tsx +5 -0
  2067. package/src/icons/components/TapAndPlayIcon.tsx +5 -0
  2068. package/src/icons/components/TapasIcon.tsx +5 -0
  2069. package/src/icons/components/TaskAltIcon.tsx +5 -0
  2070. package/src/icons/components/TaskIcon.tsx +5 -0
  2071. package/src/icons/components/TaxiAlertIcon.tsx +5 -0
  2072. package/src/icons/components/TempleBuddhistIcon.tsx +5 -0
  2073. package/src/icons/components/TempleHinduIcon.tsx +5 -0
  2074. package/src/icons/components/TerminalIcon.tsx +5 -0
  2075. package/src/icons/components/TerrainIcon.tsx +5 -0
  2076. package/src/icons/components/TextDecreaseIcon.tsx +5 -0
  2077. package/src/icons/components/TextFieldsIcon.tsx +5 -0
  2078. package/src/icons/components/TextFormatIcon.tsx +5 -0
  2079. package/src/icons/components/TextIncreaseIcon.tsx +5 -0
  2080. package/src/icons/components/TextRotateUpIcon.tsx +5 -0
  2081. package/src/icons/components/TextRotateVerticalIcon.tsx +5 -0
  2082. package/src/icons/components/TextRotationAngledownIcon.tsx +5 -0
  2083. package/src/icons/components/TextRotationAngleupIcon.tsx +5 -0
  2084. package/src/icons/components/TextRotationDownIcon.tsx +5 -0
  2085. package/src/icons/components/TextRotationNoneIcon.tsx +5 -0
  2086. package/src/icons/components/TextSnippetIcon.tsx +5 -0
  2087. package/src/icons/components/TextsmsIcon.tsx +5 -0
  2088. package/src/icons/components/TextureIcon.tsx +5 -0
  2089. package/src/icons/components/TheaterComedyIcon.tsx +5 -0
  2090. package/src/icons/components/TheatersIcon.tsx +5 -0
  2091. package/src/icons/components/ThermostatAutoIcon.tsx +5 -0
  2092. package/src/icons/components/ThermostatIcon.tsx +5 -0
  2093. package/src/icons/components/ThumbDownAltIcon.tsx +5 -0
  2094. package/src/icons/components/ThumbDownIcon.tsx +5 -0
  2095. package/src/icons/components/ThumbDownOffAltIcon.tsx +5 -0
  2096. package/src/icons/components/ThumbUpAltIcon.tsx +5 -0
  2097. package/src/icons/components/ThumbUpIcon.tsx +5 -0
  2098. package/src/icons/components/ThumbUpOffAltIcon.tsx +5 -0
  2099. package/src/icons/components/ThumbsUpDownIcon.tsx +5 -0
  2100. package/src/icons/components/ThunderstormIcon.tsx +5 -0
  2101. package/src/icons/components/TimeToLeaveIcon.tsx +5 -0
  2102. package/src/icons/components/TimelapseIcon.tsx +5 -0
  2103. package/src/icons/components/TimelineIcon.tsx +5 -0
  2104. package/src/icons/components/Timer10Icon.tsx +5 -0
  2105. package/src/icons/components/Timer10SelectIcon.tsx +5 -0
  2106. package/src/icons/components/Timer3Icon.tsx +5 -0
  2107. package/src/icons/components/Timer3SelectIcon.tsx +5 -0
  2108. package/src/icons/components/TimerIcon.tsx +5 -0
  2109. package/src/icons/components/TimerOffIcon.tsx +5 -0
  2110. package/src/icons/components/TipsAndUpdatesIcon.tsx +5 -0
  2111. package/src/icons/components/TireRepairIcon.tsx +5 -0
  2112. package/src/icons/components/TitleIcon.tsx +5 -0
  2113. package/src/icons/components/TocIcon.tsx +5 -0
  2114. package/src/icons/components/TodayIcon.tsx +5 -0
  2115. package/src/icons/components/ToggleOffIcon.tsx +5 -0
  2116. package/src/icons/components/ToggleOnIcon.tsx +5 -0
  2117. package/src/icons/components/TokenIcon.tsx +5 -0
  2118. package/src/icons/components/TollIcon.tsx +5 -0
  2119. package/src/icons/components/TonalityIcon.tsx +5 -0
  2120. package/src/icons/components/TopicIcon.tsx +5 -0
  2121. package/src/icons/components/TornadoIcon.tsx +5 -0
  2122. package/src/icons/components/TouchAppIcon.tsx +5 -0
  2123. package/src/icons/components/TourIcon.tsx +5 -0
  2124. package/src/icons/components/ToysIcon.tsx +5 -0
  2125. package/src/icons/components/TrackChangesIcon.tsx +5 -0
  2126. package/src/icons/components/TrafficIcon.tsx +5 -0
  2127. package/src/icons/components/TrainIcon.tsx +5 -0
  2128. package/src/icons/components/TramIcon.tsx +5 -0
  2129. package/src/icons/components/TranscribeIcon.tsx +5 -0
  2130. package/src/icons/components/TransferWithinAStationIcon.tsx +5 -0
  2131. package/src/icons/components/TransformIcon.tsx +5 -0
  2132. package/src/icons/components/TransgenderIcon.tsx +5 -0
  2133. package/src/icons/components/TransitEnterexitIcon.tsx +5 -0
  2134. package/src/icons/components/TranslateIcon.tsx +5 -0
  2135. package/src/icons/components/TravelExploreIcon.tsx +5 -0
  2136. package/src/icons/components/TrendingDownIcon.tsx +5 -0
  2137. package/src/icons/components/TrendingFlatIcon.tsx +5 -0
  2138. package/src/icons/components/TrendingUpIcon.tsx +5 -0
  2139. package/src/icons/components/TripOriginIcon.tsx +5 -0
  2140. package/src/icons/components/TroubleshootIcon.tsx +5 -0
  2141. package/src/icons/components/TryIcon.tsx +5 -0
  2142. package/src/icons/components/TsunamiIcon.tsx +5 -0
  2143. package/src/icons/components/TtyIcon.tsx +5 -0
  2144. package/src/icons/components/TuneIcon.tsx +5 -0
  2145. package/src/icons/components/TungstenIcon.tsx +5 -0
  2146. package/src/icons/components/TurnLeftIcon.tsx +5 -0
  2147. package/src/icons/components/TurnRightIcon.tsx +5 -0
  2148. package/src/icons/components/TurnSharpLeftIcon.tsx +5 -0
  2149. package/src/icons/components/TurnSharpRightIcon.tsx +5 -0
  2150. package/src/icons/components/TurnSlightLeftIcon.tsx +5 -0
  2151. package/src/icons/components/TurnSlightRightIcon.tsx +5 -0
  2152. package/src/icons/components/TurnedInIcon.tsx +5 -0
  2153. package/src/icons/components/TurnedInNotIcon.tsx +5 -0
  2154. package/src/icons/components/TvIcon.tsx +5 -0
  2155. package/src/icons/components/TvOffIcon.tsx +5 -0
  2156. package/src/icons/components/TwoWheelerIcon.tsx +5 -0
  2157. package/src/icons/components/TypeSpecimenIcon.tsx +5 -0
  2158. package/src/icons/components/UTurnLeftIcon.tsx +5 -0
  2159. package/src/icons/components/UTurnRightIcon.tsx +5 -0
  2160. package/src/icons/components/UmbrellaIcon.tsx +5 -0
  2161. package/src/icons/components/UnarchiveIcon.tsx +5 -0
  2162. package/src/icons/components/UndoIcon.tsx +5 -0
  2163. package/src/icons/components/UnfoldLessDoubleIcon.tsx +5 -0
  2164. package/src/icons/components/UnfoldLessIcon.tsx +5 -0
  2165. package/src/icons/components/UnfoldMoreDoubleIcon.tsx +5 -0
  2166. package/src/icons/components/UnfoldMoreIcon.tsx +5 -0
  2167. package/src/icons/components/UnpublishedIcon.tsx +5 -0
  2168. package/src/icons/components/UnsubscribeIcon.tsx +5 -0
  2169. package/src/icons/components/UpcomingIcon.tsx +5 -0
  2170. package/src/icons/components/UpdateDisabledIcon.tsx +5 -0
  2171. package/src/icons/components/UpdateIcon.tsx +5 -0
  2172. package/src/icons/components/UpgradeIcon.tsx +5 -0
  2173. package/src/icons/components/UploadFileIcon.tsx +5 -0
  2174. package/src/icons/components/UploadIcon.tsx +5 -0
  2175. package/src/icons/components/UsbIcon.tsx +5 -0
  2176. package/src/icons/components/UsbOffIcon.tsx +5 -0
  2177. package/src/icons/components/VaccinesIcon.tsx +5 -0
  2178. package/src/icons/components/VapeFreeIcon.tsx +5 -0
  2179. package/src/icons/components/VapingRoomsIcon.tsx +5 -0
  2180. package/src/icons/components/VerifiedIcon.tsx +5 -0
  2181. package/src/icons/components/VerifiedUserIcon.tsx +5 -0
  2182. package/src/icons/components/VerticalAlignBottomIcon.tsx +5 -0
  2183. package/src/icons/components/VerticalAlignCenterIcon.tsx +5 -0
  2184. package/src/icons/components/VerticalAlignTopIcon.tsx +5 -0
  2185. package/src/icons/components/VerticalDistributeIcon.tsx +5 -0
  2186. package/src/icons/components/VerticalShadesClosedIcon.tsx +5 -0
  2187. package/src/icons/components/VerticalShadesIcon.tsx +5 -0
  2188. package/src/icons/components/VerticalSplitIcon.tsx +5 -0
  2189. package/src/icons/components/VibrationIcon.tsx +5 -0
  2190. package/src/icons/components/VideoCallIcon.tsx +5 -0
  2191. package/src/icons/components/VideoCameraBackIcon.tsx +5 -0
  2192. package/src/icons/components/VideoCameraFrontIcon.tsx +5 -0
  2193. package/src/icons/components/VideoChatIcon.tsx +5 -0
  2194. package/src/icons/components/VideoFileIcon.tsx +5 -0
  2195. package/src/icons/components/VideoLabelIcon.tsx +5 -0
  2196. package/src/icons/components/VideoLibraryIcon.tsx +5 -0
  2197. package/src/icons/components/VideoSettingsIcon.tsx +5 -0
  2198. package/src/icons/components/VideoStableIcon.tsx +5 -0
  2199. package/src/icons/components/VideocamIcon.tsx +5 -0
  2200. package/src/icons/components/VideocamOffIcon.tsx +5 -0
  2201. package/src/icons/components/VideogameAssetIcon.tsx +5 -0
  2202. package/src/icons/components/VideogameAssetOffIcon.tsx +5 -0
  2203. package/src/icons/components/ViewAgendaIcon.tsx +5 -0
  2204. package/src/icons/components/ViewArrayIcon.tsx +5 -0
  2205. package/src/icons/components/ViewCarouselIcon.tsx +5 -0
  2206. package/src/icons/components/ViewColumnIcon.tsx +5 -0
  2207. package/src/icons/components/ViewComfyAltIcon.tsx +5 -0
  2208. package/src/icons/components/ViewComfyIcon.tsx +5 -0
  2209. package/src/icons/components/ViewCompactAltIcon.tsx +5 -0
  2210. package/src/icons/components/ViewCompactIcon.tsx +5 -0
  2211. package/src/icons/components/ViewCozyIcon.tsx +5 -0
  2212. package/src/icons/components/ViewDayIcon.tsx +5 -0
  2213. package/src/icons/components/ViewHeadlineIcon.tsx +5 -0
  2214. package/src/icons/components/ViewInArIcon.tsx +5 -0
  2215. package/src/icons/components/ViewKanbanIcon.tsx +5 -0
  2216. package/src/icons/components/ViewListIcon.tsx +5 -0
  2217. package/src/icons/components/ViewModuleIcon.tsx +5 -0
  2218. package/src/icons/components/ViewQuiltIcon.tsx +5 -0
  2219. package/src/icons/components/ViewSidebarIcon.tsx +5 -0
  2220. package/src/icons/components/ViewStreamIcon.tsx +5 -0
  2221. package/src/icons/components/ViewTimelineIcon.tsx +5 -0
  2222. package/src/icons/components/ViewWeekIcon.tsx +5 -0
  2223. package/src/icons/components/VignetteIcon.tsx +5 -0
  2224. package/src/icons/components/VillaIcon.tsx +5 -0
  2225. package/src/icons/components/VisibilityIcon.tsx +5 -0
  2226. package/src/icons/components/VisibilityOffIcon.tsx +5 -0
  2227. package/src/icons/components/VoiceChatIcon.tsx +5 -0
  2228. package/src/icons/components/VoiceOverOffIcon.tsx +5 -0
  2229. package/src/icons/components/VoicemailIcon.tsx +5 -0
  2230. package/src/icons/components/VolcanoIcon.tsx +5 -0
  2231. package/src/icons/components/VolumeDownIcon.tsx +5 -0
  2232. package/src/icons/components/VolumeMuteIcon.tsx +5 -0
  2233. package/src/icons/components/VolumeOffIcon.tsx +5 -0
  2234. package/src/icons/components/VolumeUpIcon.tsx +5 -0
  2235. package/src/icons/components/VolunteerActivismIcon.tsx +5 -0
  2236. package/src/icons/components/VpnKeyIcon.tsx +5 -0
  2237. package/src/icons/components/VpnKeyOffIcon.tsx +5 -0
  2238. package/src/icons/components/VpnLockIcon.tsx +5 -0
  2239. package/src/icons/components/VrpanoIcon.tsx +5 -0
  2240. package/src/icons/components/WalletIcon.tsx +5 -0
  2241. package/src/icons/components/WallpaperIcon.tsx +5 -0
  2242. package/src/icons/components/WarehouseIcon.tsx +5 -0
  2243. package/src/icons/components/WarningAmberIcon.tsx +5 -0
  2244. package/src/icons/components/WarningIcon.tsx +5 -0
  2245. package/src/icons/components/WashIcon.tsx +5 -0
  2246. package/src/icons/components/WatchIcon.tsx +5 -0
  2247. package/src/icons/components/WatchLaterIcon.tsx +5 -0
  2248. package/src/icons/components/WatchOffIcon.tsx +5 -0
  2249. package/src/icons/components/WaterDamageIcon.tsx +5 -0
  2250. package/src/icons/components/WaterDropIcon.tsx +5 -0
  2251. package/src/icons/components/WaterIcon.tsx +5 -0
  2252. package/src/icons/components/WaterfallChartIcon.tsx +5 -0
  2253. package/src/icons/components/WavesIcon.tsx +5 -0
  2254. package/src/icons/components/WavingHandIcon.tsx +5 -0
  2255. package/src/icons/components/WbAutoIcon.tsx +5 -0
  2256. package/src/icons/components/WbCloudyIcon.tsx +5 -0
  2257. package/src/icons/components/WbIncandescentIcon.tsx +5 -0
  2258. package/src/icons/components/WbIridescentIcon.tsx +5 -0
  2259. package/src/icons/components/WbShadeIcon.tsx +5 -0
  2260. package/src/icons/components/WbSunnyIcon.tsx +5 -0
  2261. package/src/icons/components/WbTwilightIcon.tsx +5 -0
  2262. package/src/icons/components/WcIcon.tsx +5 -0
  2263. package/src/icons/components/WebAssetIcon.tsx +5 -0
  2264. package/src/icons/components/WebAssetOffIcon.tsx +5 -0
  2265. package/src/icons/components/WebIcon.tsx +5 -0
  2266. package/src/icons/components/WebStoriesIcon.tsx +5 -0
  2267. package/src/icons/components/WebhookIcon.tsx +5 -0
  2268. package/src/icons/components/WeekendIcon.tsx +5 -0
  2269. package/src/icons/components/WestIcon.tsx +5 -0
  2270. package/src/icons/components/WhatshotIcon.tsx +5 -0
  2271. package/src/icons/components/WheelchairPickupIcon.tsx +5 -0
  2272. package/src/icons/components/WhereToVoteIcon.tsx +5 -0
  2273. package/src/icons/components/WidgetsIcon.tsx +5 -0
  2274. package/src/icons/components/WidthFullIcon.tsx +5 -0
  2275. package/src/icons/components/WidthNormalIcon.tsx +5 -0
  2276. package/src/icons/components/WidthWideIcon.tsx +5 -0
  2277. package/src/icons/components/Wifi1BarIcon.tsx +5 -0
  2278. package/src/icons/components/Wifi2BarIcon.tsx +5 -0
  2279. package/src/icons/components/WifiCalling3Icon.tsx +5 -0
  2280. package/src/icons/components/WifiCallingIcon.tsx +5 -0
  2281. package/src/icons/components/WifiChannelIcon.tsx +5 -0
  2282. package/src/icons/components/WifiFindIcon.tsx +5 -0
  2283. package/src/icons/components/WifiIcon.tsx +5 -0
  2284. package/src/icons/components/WifiLockIcon.tsx +5 -0
  2285. package/src/icons/components/WifiOffIcon.tsx +5 -0
  2286. package/src/icons/components/WifiPasswordIcon.tsx +5 -0
  2287. package/src/icons/components/WifiProtectedSetupIcon.tsx +5 -0
  2288. package/src/icons/components/WifiTetheringErrorIcon.tsx +5 -0
  2289. package/src/icons/components/WifiTetheringIcon.tsx +5 -0
  2290. package/src/icons/components/WifiTetheringOffIcon.tsx +5 -0
  2291. package/src/icons/components/WindPowerIcon.tsx +5 -0
  2292. package/src/icons/components/WindowIcon.tsx +5 -0
  2293. package/src/icons/components/WineBarIcon.tsx +5 -0
  2294. package/src/icons/components/Woman2Icon.tsx +5 -0
  2295. package/src/icons/components/WomanIcon.tsx +5 -0
  2296. package/src/icons/components/WorkHistoryIcon.tsx +5 -0
  2297. package/src/icons/components/WorkIcon.tsx +5 -0
  2298. package/src/icons/components/WorkOffIcon.tsx +5 -0
  2299. package/src/icons/components/WorkOutlineIcon.tsx +5 -0
  2300. package/src/icons/components/WorkspacePremiumIcon.tsx +5 -0
  2301. package/src/icons/components/WorkspacesIcon.tsx +5 -0
  2302. package/src/icons/components/WrapTextIcon.tsx +5 -0
  2303. package/src/icons/components/WrongLocationIcon.tsx +5 -0
  2304. package/src/icons/components/WysiwygIcon.tsx +5 -0
  2305. package/src/icons/components/YardIcon.tsx +5 -0
  2306. package/src/icons/components/YoutubeSearchedForIcon.tsx +5 -0
  2307. package/src/icons/components/ZoomInIcon.tsx +5 -0
  2308. package/src/icons/components/ZoomInMapIcon.tsx +5 -0
  2309. package/src/icons/components/ZoomOutIcon.tsx +5 -0
  2310. package/src/icons/components/ZoomOutMapIcon.tsx +5 -0
  2311. package/src/icons/components/_10kIcon.tsx +5 -0
  2312. package/src/icons/components/_10mpIcon.tsx +5 -0
  2313. package/src/icons/components/_11mpIcon.tsx +5 -0
  2314. package/src/icons/components/_123Icon.tsx +5 -0
  2315. package/src/icons/components/_12mpIcon.tsx +5 -0
  2316. package/src/icons/components/_13mpIcon.tsx +5 -0
  2317. package/src/icons/components/_14mpIcon.tsx +5 -0
  2318. package/src/icons/components/_15mpIcon.tsx +5 -0
  2319. package/src/icons/components/_16mpIcon.tsx +5 -0
  2320. package/src/icons/components/_17mpIcon.tsx +5 -0
  2321. package/src/icons/components/_18UpRatingIcon.tsx +5 -0
  2322. package/src/icons/components/_18mpIcon.tsx +5 -0
  2323. package/src/icons/components/_19mpIcon.tsx +5 -0
  2324. package/src/icons/components/_1kIcon.tsx +5 -0
  2325. package/src/icons/components/_1kPlusIcon.tsx +5 -0
  2326. package/src/icons/components/_1xMobiledataIcon.tsx +5 -0
  2327. package/src/icons/components/_20mpIcon.tsx +5 -0
  2328. package/src/icons/components/_21mpIcon.tsx +5 -0
  2329. package/src/icons/components/_22mpIcon.tsx +5 -0
  2330. package/src/icons/components/_23mpIcon.tsx +5 -0
  2331. package/src/icons/components/_24mpIcon.tsx +5 -0
  2332. package/src/icons/components/_2kIcon.tsx +5 -0
  2333. package/src/icons/components/_2kPlusIcon.tsx +5 -0
  2334. package/src/icons/components/_2mpIcon.tsx +5 -0
  2335. package/src/icons/components/_30fpsIcon.tsx +5 -0
  2336. package/src/icons/components/_30fpsSelectIcon.tsx +5 -0
  2337. package/src/icons/components/_360Icon.tsx +5 -0
  2338. package/src/icons/components/_3dRotationIcon.tsx +5 -0
  2339. package/src/icons/components/_3gMobiledataIcon.tsx +5 -0
  2340. package/src/icons/components/_3kIcon.tsx +5 -0
  2341. package/src/icons/components/_3kPlusIcon.tsx +5 -0
  2342. package/src/icons/components/_3mpIcon.tsx +5 -0
  2343. package/src/icons/components/_3pIcon.tsx +5 -0
  2344. package/src/icons/components/_4gMobiledataIcon.tsx +5 -0
  2345. package/src/icons/components/_4gPlusMobiledataIcon.tsx +5 -0
  2346. package/src/icons/components/_4kIcon.tsx +5 -0
  2347. package/src/icons/components/_4kPlusIcon.tsx +5 -0
  2348. package/src/icons/components/_4mpIcon.tsx +5 -0
  2349. package/src/icons/components/_5gIcon.tsx +5 -0
  2350. package/src/icons/components/_5kIcon.tsx +5 -0
  2351. package/src/icons/components/_5kPlusIcon.tsx +5 -0
  2352. package/src/icons/components/_5mpIcon.tsx +5 -0
  2353. package/src/icons/components/_60fpsIcon.tsx +5 -0
  2354. package/src/icons/components/_60fpsSelectIcon.tsx +5 -0
  2355. package/src/icons/components/_6FtApartIcon.tsx +5 -0
  2356. package/src/icons/components/_6kIcon.tsx +5 -0
  2357. package/src/icons/components/_6kPlusIcon.tsx +5 -0
  2358. package/src/icons/components/_6mpIcon.tsx +5 -0
  2359. package/src/icons/components/_7kIcon.tsx +5 -0
  2360. package/src/icons/components/_7kPlusIcon.tsx +5 -0
  2361. package/src/icons/components/_7mpIcon.tsx +5 -0
  2362. package/src/icons/components/_8kIcon.tsx +5 -0
  2363. package/src/icons/components/_8kPlusIcon.tsx +5 -0
  2364. package/src/icons/components/_8mpIcon.tsx +5 -0
  2365. package/src/icons/components/_9kIcon.tsx +5 -0
  2366. package/src/icons/components/_9kPlusIcon.tsx +5 -0
  2367. package/src/icons/components/_9mpIcon.tsx +5 -0
  2368. package/src/icons/generateIcons.ts +39 -0
  2369. package/src/icons/icon_keys.ts +2139 -0
  2370. package/src/icons/index.ts +2125 -0
  2371. package/src/index.ts +8 -0
  2372. package/src/preview/PropertyPreview.tsx +218 -0
  2373. package/src/preview/PropertyPreviewProps.tsx +59 -0
  2374. package/src/preview/components/ArrayEnumPreview.tsx +39 -0
  2375. package/src/preview/components/AsyncPreviewComponent.tsx +47 -0
  2376. package/src/preview/components/BooleanPreview.tsx +11 -0
  2377. package/src/preview/components/DatePreview.tsx +27 -0
  2378. package/src/preview/components/EmptyValue.tsx +10 -0
  2379. package/src/preview/components/EnumValuesChip.tsx +38 -0
  2380. package/src/preview/components/ImagePreview.tsx +108 -0
  2381. package/src/preview/components/ReferencePreview.tsx +231 -0
  2382. package/src/preview/components/StorageThumbnail.tsx +84 -0
  2383. package/src/preview/components/UrlComponentPreview.tsx +80 -0
  2384. package/src/preview/index.ts +28 -0
  2385. package/src/preview/property_previews/ArrayOfMapsPreview.tsx +81 -0
  2386. package/src/preview/property_previews/ArrayOfReferencesPreview.tsx +52 -0
  2387. package/src/preview/property_previews/ArrayOfStorageComponentsPreview.tsx +53 -0
  2388. package/src/preview/property_previews/ArrayOfStringsPreview.tsx +55 -0
  2389. package/src/preview/property_previews/ArrayOneOfPreview.tsx +67 -0
  2390. package/src/preview/property_previews/ArrayPropertyEnumPreview.tsx +28 -0
  2391. package/src/preview/property_previews/ArrayPropertyPreview.tsx +68 -0
  2392. package/src/preview/property_previews/MapPropertyPreview.tsx +149 -0
  2393. package/src/preview/property_previews/NumberPropertyPreview.tsx +28 -0
  2394. package/src/preview/property_previews/SkeletonPropertyComponent.tsx +283 -0
  2395. package/src/preview/property_previews/StringPropertyPreview.tsx +57 -0
  2396. package/src/preview/util.ts +31 -0
  2397. package/src/styles.ts +12 -0
  2398. package/src/types/analytics.ts +34 -0
  2399. package/src/types/appcheck.ts +29 -0
  2400. package/src/types/auth.tsx +50 -0
  2401. package/src/types/collections.ts +488 -0
  2402. package/src/types/colors.ts +55 -0
  2403. package/src/types/datasource.ts +225 -0
  2404. package/src/types/entities.ts +76 -0
  2405. package/src/types/entity_callbacks.ts +209 -0
  2406. package/src/types/entity_link_builder.ts +8 -0
  2407. package/src/types/field_config.tsx +73 -0
  2408. package/src/types/fields.tsx +220 -0
  2409. package/src/types/firecms.tsx +163 -0
  2410. package/src/types/firecms_context.tsx +111 -0
  2411. package/src/types/index.ts +24 -0
  2412. package/src/types/local_config_persistence.tsx +23 -0
  2413. package/src/types/locales.ts +81 -0
  2414. package/src/types/navigation.ts +197 -0
  2415. package/src/types/permissions.ts +76 -0
  2416. package/src/types/plugins.tsx +164 -0
  2417. package/src/types/properties.ts +851 -0
  2418. package/src/types/resolved_entities.ts +148 -0
  2419. package/src/types/side_dialogs_controller.tsx +68 -0
  2420. package/src/types/side_entity_controller.tsx +96 -0
  2421. package/src/types/storage.ts +96 -0
  2422. package/src/types/user.ts +37 -0
  2423. package/dist/core/components/EntityCollectionTable/useCollectionTableController.d.ts +0 -13
package/dist/index.umd.js CHANGED
@@ -1,5 +1,5 @@
1
- (function(o,$n){typeof exports=="object"&&typeof module<"u"?$n(exports,require("clsx"),require("tailwind-merge"),require("react/jsx-runtime"),require("react"),require("react-router-dom"),require("notistack"),require("@radix-ui/react-tooltip"),require("@material-design-icons/font/filled.css"),require("@radix-ui/react-collapsible"),require("@radix-ui/react-checkbox"),require("react-datepicker"),require("@radix-ui/react-dialog"),require("react-dropzone"),require("react-fast-compare"),require("markdown-it"),require("@radix-ui/react-dropdown-menu"),require("cmdk"),require("@radix-ui/react-select"),require("react-dom"),require("@radix-ui/react-tabs"),require("date-fns/format"),require("date-fns/locale"),require("object-hash"),require("@hello-pangea/dnd"),require("react-image-file-resizer"),require("formik"),require("react-markdown-editor-lite"),require("yup"),require("react-window"),require("react-use-measure"),require("@radix-ui/react-popover"),require("js-search"),require("@radix-ui/react-portal")):typeof define=="function"&&define.amd?define(["exports","clsx","tailwind-merge","react/jsx-runtime","react","react-router-dom","notistack","@radix-ui/react-tooltip","@material-design-icons/font/filled.css","@radix-ui/react-collapsible","@radix-ui/react-checkbox","react-datepicker","@radix-ui/react-dialog","react-dropzone","react-fast-compare","markdown-it","@radix-ui/react-dropdown-menu","cmdk","@radix-ui/react-select","react-dom","@radix-ui/react-tabs","date-fns/format","date-fns/locale","object-hash","@hello-pangea/dnd","react-image-file-resizer","formik","react-markdown-editor-lite","yup","react-window","react-use-measure","@radix-ui/react-popover","js-search","@radix-ui/react-portal"],$n):(o=typeof globalThis<"u"?globalThis:o||self,$n(o["FireCMS core"]={},o.clsx,o.tailwindMerge,o.jsxRuntime,o.React,o.reactRouterDom,o.notistack,o.TooltipPrimitive,null,o.Collapsible,o.CheckboxPrimitive,o.DatePicker,o.DialogPrimitive,o.reactDropzone,o.equal,o.MarkdownIt,o.DropdownMenu,o.cmdk,o.SelectPrimitive,o.ReactDOM,o.TabsPrimitive,o.format,o.locales,o.hash,o.dnd,o.Resizer,o.formik,o.MdEditor,o.yup,o.reactWindow,o.useMeasure,o.PopoverPrimitive,o.JsSearch,o.Portal))})(this,function(o,$n,Ia,n,f,Ie,Wt,ba,oU,pa,wa,Ro,ka,er,de,Gt,ma,go,va,Ka,Ca,Sa,Ba,zt,Kn,Ea,Fe,_n,Fa,Pa,nr,Da,Na,Ma){"use strict";function Pe(e){const t=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(e){for(const c in e)if(c!=="default"){const i=Object.getOwnPropertyDescriptor(e,c);Object.defineProperty(t,c,i.get?i:{enumerable:!0,get:()=>e[c]})}}return t.default=e,Object.freeze(t)}const ce=Pe(f),jn=Pe(ba),qn=Pe(pa),Ht=Pe(wa),$e=Pe(ka),Jn=Pe(ma),je=Pe(va),Ta=Pe(Ka),or=Pe(Ca),Ut=Pe(Ba),De=Pe(Fa),Zn=Pe(Da),Oa=Pe(Na),La=Pe(Ma);function E(...e){return Ia.twMerge($n.clsx(e))}const Qa={breadcrumbs:[],set:e=>{}},Yt=f.createContext(Qa),Va=({children:e})=>{const[t,c]=f.useState([]),i=l=>{c(l.breadcrumbs)};return n.jsx(Yt.Provider,{value:{breadcrumbs:t,set:i},children:e})},Wa={mode:"light",setMode:e=>{},toggleMode:()=>{}},rr=f.createContext(Wa),Ga=rr.Provider;function za(e){return e.includes("-")||e.includes("_")||!e.includes(" ")?e.replace(/[-_]/g," ").replace(/\w\S*/g,function(c){return c.charAt(0).toUpperCase()+c.substr(1)}):e}function be(e){return $t(jt(e))}function $t(e){return e.startsWith("/")?e.slice(1):e}function jt(e){return e.endsWith("/")?e.slice(0,-1):e}function Ha(e){return e.startsWith("/")?e:`/${e}`}function Ua(e){const t=be(e);if(t.includes("/")){const c=t.split("/");return c[c.length-1]}return t}function tr(e,t){const c=be(e),i=c.split("/");if(i.length%2===0)throw Error(`Collection paths must have an odd number of segments: ${e}`);const l=t.find(s=>s.alias===i[0]);let a;if(l&&(a=l.path),i.length>1){const s=Io(a??i[0],t);if(!s?.subcollections)return c;const d=c.split("/").slice(2).join("/");return(a??i[0])+"/"+i[1]+"/"+tr(d,s.subcollections)}else return a??c}function Io(e,t){const c=be(e).split("/");if(c.length%2===0)throw Error(`Collection paths must have an odd number of segments: ${e}`);const i=bo(c);let l;for(let a=0;a<i.length;a++){const s=i[a],d=t&&t.sort((u,A)=>(u.alias??"").localeCompare(A.alias??"")).find(u=>u.alias===s||u.path===s);if(d){if(s===e)l=d;else if(d.subcollections){const u=e.replace(s,"").split("/").slice(2).join("/");u.length>0&&(l=Io(u,d.subcollections))}}if(l)break}return l}function bo(e){const t=e.length>0&&e.length%2===0?e.splice(0,e.length-1):e,c=t.length,i=[];for(let l=c;l>0;l=l-2)i.push(t.slice(0,l).join("/"));return i}function cr(e){const{path:t,collections:c=[],currentFullPath:i}=e,l=be(t).split("/"),a=bo(l),s=[];for(let d=0;d<a.length;d++){const u=a[d],A=c&&c.find(_=>_.alias===u||_.path===u);if(A){const _=A.alias??A.path,g=i&&i.length>0?i+"/"+_:_;s.push({type:"collection",path:g,collection:A});const y=be(be(t).replace(u,"")),h=y.length>0?y.split("/"):[];if(h.length>0){const I=h[0],b=g+"/"+I;if(s.push({type:"entity",entityId:I,path:g,parentCollection:A}),h.length>1){const p=h.slice(1).join("/");if(!A)throw Error("collection not found resolving path: "+A);const w=A.views,k=w&&w.find(K=>K.key===p);if(k){const K=i&&i.length>0?i+"/"+k.key:k.key;s.push({type:"custom_view",path:K,view:k})}else A.subcollections&&s.push(...cr({path:p,customViews:w,collections:A.subcollections,currentFullPath:b}))}}break}}return s}const qt=f.createContext({}),Qe=()=>f.useContext(qt),Jt=f.createContext({}),Ae=()=>f.useContext(Jt),ir=f.createContext({}),yn=()=>f.useContext(ir),Zt=f.createContext({}),Xn=()=>f.useContext(Zt),Xt=f.createContext({}),Cn=()=>f.useContext(Xt),xt=f.createContext({}),Sn=()=>f.useContext(xt),cn=()=>{const{enqueueSnackbar:e,closeSnackbar:t}=Wt.useSnackbar(),c=f.useCallback(l=>{const{type:a,message:s,autoHideDuration:d}=l;e({message:s,variant:a,autoHideDuration:d})},[]),i=f.useCallback(()=>{t()},[]);return f.useMemo(()=>({open:c,close:i}),[c,i])},Rt=f.createContext(void 0),Bn=()=>f.useContext(Rt),ar=f.createContext({sideDialogsController:{},sideEntityController:{},navigation:{},dataSource:{},storageSource:{},authController:{},snackbarController:{},fields:{}}),re=()=>{const e=f.useContext(ar),t=yn(),c=Xn(),i=Cn(),l=Ae(),a=Qe(),s=Sn(),d=cn(),u=Bn();return{...e,authController:t,sideDialogsController:c,sideEntityController:i,navigation:l,dataSource:a,storageSource:s,snackbarController:d,userConfigPersistence:u}};function ec({path:e,collection:t,filterValues:c,sortBy:i,itemCount:l,searchString:a}){const s=Qe(),u=Ae().resolveAliasesFrom(e),A=i?i[0]:void 0,_=i?i[1]:void 0,g=re(),[y,h]=f.useState([]),[I,b]=f.useState(!1),[p,w]=f.useState(),[k,K]=f.useState(!1);return f.useEffect(()=>{b(!0);const m=async S=>{if(t.callbacks?.onFetch)try{S=await Promise.all(S.map(B=>t.callbacks.onFetch({collection:t,path:u,entity:B,context:g})))}catch(B){console.error(B)}b(!1),w(void 0),h(S.map(B=>({...B}))),K(!l||S.length<l)},v=S=>{console.error("ERROR",S),b(!1),h([]),w(S)};return s.listenCollection?s.listenCollection({path:u,collection:t,onUpdate:m,onError:v,searchString:a,filter:c,limit:l,startAfter:void 0,orderBy:A,order:_}):(s.fetchCollection({path:u,collection:t,searchString:a,filter:c,limit:l,startAfter:void 0,orderBy:A,order:_}).then(m).catch(v),()=>{})},[u,l,_,A,c,a]),{data:y,dataLoading:I,dataLoadingError:p,noMoreToLoad:k}}const lr={};function sr({path:e,entityId:t,collection:c,useCache:i=!1}){const l=Qe(),s=Ae().resolveAliasesFrom(e),d=re(),[u,A]=f.useState(),[_,g]=f.useState(!0),[y,h]=f.useState();return f.useEffect(()=>{g(!0);const I=async p=>{if(c.callbacks?.onFetch&&p)try{p=await c.callbacks.onFetch({collection:c,path:s,entity:p,context:d})}catch(w){console.error(w)}lr[`${s}/${t}`]=p,A(p),g(!1),h(void 0)},b=p=>{console.error("ERROR fetching entity",p),g(!1),A(void 0),h(p)};return t&&i&&lr[`${s}/${t}`]?(A(lr[`${s}/${t}`]),g(!1),h(void 0),()=>{}):t&&s&&c?l.listenEntity?l.listenEntity({path:s,entityId:t,collection:c,onUpdate:I,onError:b}):(l.fetchEntity({path:s,entityId:t,collection:c}).then(I).catch(b),()=>{}):(I(void 0),()=>{})},[t,s]),{entity:u,dataLoading:_,dataLoadingError:y}}async function dr({collection:e,path:t,entityId:c,values:i,previousValues:l,status:a,dataSource:s,context:d,onSaveSuccess:u,onSaveFailure:A,onPreSaveHookError:_,onSaveSuccessHookError:g}){let y;const h=d.navigation.resolveAliasesFrom(t),I=e.callbacks;if(I?.onPreSave)try{const b=Me({collection:e,path:t,values:l,entityId:c,fields:d.fields});y=await I.onPreSave({collection:b,path:t,resolvedPath:h,entityId:c,values:i,previousValues:l,status:a,context:d})}catch(b){console.error(b),_&&_(b);return}else y=i;return s.saveEntity({collection:e,path:h,entityId:c,values:y,previousValues:l,status:a}).then(b=>{try{if(I?.onSaveSuccess){const p=Me({collection:e,path:t,values:y,entityId:c,fields:d.fields});I.onSaveSuccess({collection:p,path:t,resolvedPath:h,entityId:b.id,values:y,previousValues:l,status:a,context:d})}}catch(p){g&&g(p)}u&&u(b)}).catch(b=>{if(I?.onSaveFailure){const p=Me({collection:e,path:t,values:y,entityId:c,fields:d.fields});I.onSaveFailure({collection:p,path:t,resolvedPath:h,entityId:c,values:y,previousValues:l,status:a,context:d})}A&&A(b)})}async function nc({dataSource:e,entity:t,collection:c,callbacks:i,onDeleteSuccess:l,onDeleteFailure:a,onPreDeleteHookError:s,onDeleteSuccessHookError:d,context:u}){console.debug("Deleting entity",t.path,t.id);const A={entity:t,collection:c,entityId:t.id,path:t.path,context:u};if(i?.onPreDelete)try{await i.onPreDelete(A)}catch(_){return console.error(_),s&&s(t,_),!1}return e.deleteEntity({entity:t}).then(()=>{l&&l(t);try{return i?.onDelete&&i.onDelete(A),!0}catch(_){return d&&d(t,_),!1}}).catch(_=>(a&&a(t,_),!1))}function Ne({property:e,value:t,setValue:c}){const i=f.useRef(null);f.useEffect(()=>{typeof e.disabled=="object"&&!!e.disabled.clearOnDisabled?t!=null&&(i.current=t,c(null)):i.current&&(c(i.current),i.current=null)},[e])}function oc({path:e,context:t}){const c=t.dataSource,i=t.navigation;if(!i)throw Error("Calling getNavigationFrom, but main navigation has not yet been initialised");const a=cr({path:e,collections:i.collections??[]}).map(s=>{if(s.type==="collection")return Promise.resolve(s);if(s.type==="entity"){const d=i.getCollection(s.path,s.entityId);if(!d)throw Error(`No collection defined in the navigation for the entity with path ${s.path}`);return c.fetchEntity({path:s.path,entityId:s.entityId,collection:d}).then(u=>{if(u)return{...s,entity:u}})}else{if(s.type==="custom_view")return Promise.resolve(s);throw Error("Unmapped element in useEntitiesFromPath")}}).filter(s=>!!s);return Promise.all(a)}function Ya({path:e}){const t=re(),[c,i]=f.useState(),[l,a]=f.useState(!1),[s,d]=f.useState();return f.useEffect(()=>{t.navigation&&(a(!0),d(void 0),oc({path:e,context:t}).then(A=>{i(A)}).catch(A=>d(A)).finally(()=>a(!1)))},[e,t]),t.navigation?{data:c,dataLoading:l,dataLoadingError:s}:{dataLoading:!0}}const ur=()=>f.useContext(rr),rc=e=>{const{onSuccess:t,onError:c,disableClipboardAPI:i=!1,copiedDuration:l}=e||{},a=f.useRef(null),[s,d]=f.useState(!1),[u,A]=f.useState("");f.useEffect(()=>{l&&setTimeout(()=>d(!1),l)},[s]);const _=()=>navigator.clipboard!==void 0,g=f.useCallback(k=>{if(c)c(k);else throw new Error(k)},[c]),y=f.useCallback(k=>{t&&t(k),d(!0),A(k)},[t]),h=f.useCallback(k=>{navigator.clipboard.writeText(k).then(()=>y(k)).catch(K=>{g(K),d(!1)})},[g,y]),I=()=>{_()&&navigator.clipboard.writeText("")},b=k=>w("copy",typeof k=="object"?void 0:k),p=()=>w("cut"),w=f.useCallback((k="copy",K)=>{const m=a.current,v=m&&(m.tagName==="INPUT"||m.tagName==="TEXTAREA"),S=a.current;_()&&!i&&(K?h(K):m?v?(h(S.value),k==="cut"&&(S.value="")):h(m.innerText):g("Both the ref & text were undefined"))},[i,h,g]);return{ref:a,isCoppied:s,clipboard:u,clearClipboard:I,isSupported:_,copy:b,cut:p}},fr=()=>f.useContext(Yt),$a={xs:0,sm:640,md:768,lg:1024,xl:1280,"2xl":1536,"3xl":1920},Ge=(e="lg")=>{const[t,c]=f.useState(!1);return f.useEffect(()=>{const i=()=>{const l=window.matchMedia(`(min-width: ${$a[e]+1}px)`).matches;c(l)};return i(),window.addEventListener("resize",i),()=>{window.removeEventListener("resize",i)}},[]),t};function xn(e){const t=Ae(),c=Xn(),i=f.useCallback(()=>{if(e.path){let a=e.collection;if(a||(a=t.getCollection(e.path)),!a)throw Error("Not able to resolve the collection in useReferenceDialog");c.open({key:`reference_${e.path}`,component:n.jsx(ra,{collection:a,...e}),width:"90vw",onClose:()=>{e.onClose?.()}})}else throw Error("useReferenceDialog: You are trying to open a reference dialog, but have not declared the `path`")},[t,e,c]),l=f.useCallback(()=>{c.close()},[c]);return{open:i,close:l}}const ja=`data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAAASAAAAEgARslrPgAAB9pJREFUWMONl12obVUVx39jzLk+9j7nHq9y1QT1qpcbSIaXQFGs24PQl3HroSQyqHwJFJF6qaceCsqQoJdELHoIC6EeJCSKsi/TFLGozGsKXksljRLxnrP3WmvOOUYPa+19zsmPWpux5pxrzTX///Exx5hb+B/X1y+/nuIlVKF5m0v1YbQ55tIcKTQXFerNQkumOZ1oTiXCqUH8saR+74L8ZIWWux7+7JuuL2/04s5jJyhWQlXV71KtbhCtr1WtD6s0KlrjNBRaEi3JGzpv6bymQ0sn9mwv9otB7Ls7kn9Xo+U7D9z8/xG4+bz3cs35SjE/HEK8NWr8RBOrs+tQUUlEtAYaijRkbxmY0fuMzucsfcbSWnZQtiWxJL3Uid09iH0jIM8/1f+d3/zuS29M4PvHrmG+cZA8dMdjiLfNYrx6owrMVKlVUQkgkeI1iYbBJ3A2WPpKNtnx+UQisy29L0gPDGKfrwkPn2bJPfd/Zo0ZVp0fvOOdnLGxheX+A/Mq3nGwqS8/q645o4psxkgbhFqdSgqVJKIkghgqjuDoWh+dlm1AI0gUC3o4C9d04idbmZ06euQDPPHMj3YJ3HnkrZx98Fys2PFZ1dxxsJkdPbOecaBqmcWGqBVBIkEiKkoQJ5IJJBTbY8aRgBMwjxgVJoJJwDScnYUrOy2PBamfv/CS4zz9zE+IAIfPuQQzPzyrmq9u1e3RM+qWeaipNCCiE4DjbjgF94xZQj2htpjeK84ImqlIUpO9JllgEKgJDFpfOoh8paN8chbOeQ4g/OTq97PdLXSz3fjiVjO7/sx6g804ow41QWuCrjQPBB3bkZQgAkpBJOMojmIEjIgRKV6RpaYIZHGKQlK5OIv0L8bul8eOfsxjDJGD8613z6rmhq1qxkY1o9YKFUFEEED2xqoE1MNoWgPBwQZMl2SrSbQM9NQyUMlA5S3Rlcqd6E50RdRvPMvn9yE8qP9+9WWtQvXxzdic8xrwPaJrUYJGoq4sVBM1Ukuiln4UBipJVJrGoHUhrARB0XMQ/cizbSd61uaZlzUhXjuvWmqt9oOyAmUPEabnkSDV2j0Rp2YgksZdQpoCtRBwAiN4cKYdw4m3pNnbY9Tw4SZUh9tQEda+ld1WpmThgoivU8fYDbgEggRcleiZ6BOoFNRXLQQX1Eelggsgh8GPx6DhWB2iRgkj2OTuVX8dBzJtMx93BAKK4hIwUUSEID4BGspecWTfDwSCw+UxqByJoqPf9+xmYWQg7H3u+5Poyk3o5BZDxRBxxH29fdkF3YcBXKHgF+m+hLxn4OvbnnbPzMkjsm/+f5cXec2ye6ZfpO6+OX7pE8TqPj1zcN/7Zu8CDm44Bu6skrKjuOs0FlxWCJNMYxMOqLlR3DAvsAKaZo6t7+u7r6nhjN/5RKIQKESKhykhjeIINgJi+0m4Fiuns2WKZQybtJ2AfAWzGu/ayt0wz5gXimeKQyKSPI4kiCMhDxSgyLiOiY9kxnW2NVs+1ZeBbAmzhLmtgd0d8z1k1mIUTxQbKD5gnkmuDN6QvCF5TaIie0UmkIU1id3WcfwZHUo61eWB3gayDdOiZR+JXUuMWmcbyGWcny2RzOi8obeWwRsGrxm8JlGPBHCyOJmpJkwkHHs09pnfL1L60KLqtBKZtprhU+lVmSq9+xRsBfOMW6L4QLFM7zWdz+l8Ru8tA+10YKlJIiSxkcC6dQqlmJc/xaHIvTuZT7UpHalFUHEqL6iGsfKtM8FEzMdy7J4oXui9mk5CczpGErtEKgacQUZJE3gSwzw/i+dfx2G7e6IcOPALCXIkakGkYx4iwceyq+uENPp+RSI7DN7Q+5ylb7JgJLH0+XRGbOlRerWJwNgmnOwJ83Tvq/7KX2KZb1nJfnfp5YRoda7hFC/MQyGI7Mteow2E4pHkDT2zyfS758HV4bSjolOjF2PYS4KBbN2L5vmHZ7DpsWQnDsvfLj1+Lwufy9LSO2y5M1Mnik8OEJxAoSJRk7xhoKX3+URiztI3WPgGS2/p1OnE6CcSvRQGH+htQfH07dPSP7Lp9ajcNy+9DnG/oMT67qqZHz/QtGxVyjworQqVCIjiPiaaTD1ttZZ+fTIeCXQ+Y6HCQm0tO5LYpmfHlyy9/1nCPi3ICw/99JbxUHrdvxr6Q4depdhTfeGapVeH+imKxwhv6ZnR+5zeN0aNGU2+ZIPON0cX0LBQYSnGQgsLSSzoWdiCHVvQ2fLP2fMtwf2vDz50K6TpVPxj/sn7Ni5iu9l6Tof+yd78yoWFQ0uvWYvVLK1h6e34B8RnY9DZnIW3LAijxpLYkZ6Fd+z4km3bYcd2WNry8ezppsZ5ZMd2+MfTv3xtjbr9/PfwyoFDzPvtq7I2t+Vq/m6pt4hxThVaojao1CANRkORmkwkiTCI00thKYWOzJJR+6V1JE8/z2JfqGgfW9jLPPLg7a9Xe8frHs7j5MVXESxfmLS5KYXmxhQ3z/a4icQNRFtEGlwjJkoRIamTmIKNTE+it57kw0sF+1ah3CkSXkiPf42Htl+3WL/2+vIFJ6ishJ3QXD1o9dEhVCcGbS7ModUcakwrigaKChkoYmQK2XMp5L8V/F7DfuDePYrEcv8f7npdnDcksEvkg9RewquhuayTcHzQeCyJXpFVD2fRzSxCFtkuwqks8mjB/ujYr9y6k0gs9528503X/w/F3eUgyIBI4wAAACV0RVh0ZGF0ZTpjcmVhdGUAMjAyMS0wNS0xMFQxOToyODozMyswMDowMEzeSx4AAAAldEVYdGRhdGU6bW9kaWZ5ADIwMjEtMDUtMTBUMTk6Mjg6MzMrMDA6MDA9g/OiAAAARnRFWHRzb2Z0d2FyZQBJbWFnZU1hZ2ljayA2LjcuOC05IDIwMTQtMDUtMTIgUTE2IGh0dHA6Ly93d3cuaW1hZ2VtYWdpY2sub3Jn3IbtAAAAABh0RVh0VGh1bWI6OkRvY3VtZW50OjpQYWdlcwAxp/+7LwAAABh0RVh0VGh1bWI6OkltYWdlOjpoZWlnaHQAMTkyDwByhQAAABd0RVh0VGh1bWI6OkltYWdlOjpXaWR0aAAxOTLTrCEIAAAAGXRFWHRUaHVtYjo6TWltZXR5cGUAaW1hZ2UvcG5nP7JWTgAAABd0RVh0VGh1bWI6Ok1UaW1lADE2MjA2NzQ5MTMk8oswAAAAD3RFWHRUaHVtYjo6U2l6ZQAwQkKUoj7sAAAAVnRFWHRUaHVtYjo6VVJJAGZpbGU6Ly8vbW50bG9nL2Zhdmljb25zLzIwMjEtMDUtMTAvOGIxNDNhYjgwODhkMjBlZThkYmUzOTFhN2NkNmQ3NmQuaWNvLnBuZ9msgG0AAAAASUVORK5CYII=
2
- `;function qa(e,t){f.useEffect(()=>{if(document){document.title=`${e} - FireCMS`;let c=document.querySelector("link[rel~='icon']");c||(c=document.createElement("link"),c.rel="icon",document.getElementsByTagName("head")[0].appendChild(c)),c.href=t??ja}},[e,t])}function En(e,t){f.useEffect(()=>{if(!document.getElementById(e)){const i=document.createElement("style");i.id=e,i.innerHTML=t,document.head.appendChild(i)}},[e,t])}const ye=({open:e,side:t="bottom",sideOffset:c,onOpenChange:i,title:l,className:a,style:s,tooltipClassName:d,children:u})=>(En("Tooltip",Ja),l?n.jsx(jn.Provider,{delayDuration:250,children:n.jsxs(jn.Root,{open:e,onOpenChange:i,children:[n.jsx(jn.Trigger,{asChild:!0,children:n.jsx("div",{className:a,style:s,children:u})}),n.jsx(jn.Portal,{children:n.jsx(jn.Content,{className:E("TooltipContent","max-w-lg leading-relaxed","z-50 rounded px-3 py-2 text-xs leading-none bg-gray-700 dark:bg-gray-800 bg-opacity-90 font-medium text-gray-50 shadow-2xl select-none duration-400 ease-in transform opacity-100",d),sideOffset:c===void 0?4:c,side:t,children:l})})]})}):n.jsx(n.Fragment,{children:u})),Ja=`
1
+ (function(o,jn){typeof exports=="object"&&typeof module<"u"?jn(exports,require("clsx"),require("tailwind-merge"),require("react/jsx-runtime"),require("react"),require("object-hash"),require("formik"),require("@radix-ui/react-collapsible"),require("@radix-ui/react-checkbox"),require("@material-design-icons/font/filled.css"),require("react-datepicker"),require("notistack"),require("@radix-ui/react-dialog"),require("react-dropzone"),require("react-fast-compare"),require("markdown-it"),require("@radix-ui/react-dropdown-menu"),require("cmdk"),require("@radix-ui/react-select"),require("react-dom"),require("@radix-ui/react-tooltip"),require("@radix-ui/react-tabs"),require("date-fns/format"),require("date-fns/locale"),require("@hello-pangea/dnd"),require("react-image-file-resizer"),require("react-router-dom"),require("react-markdown-editor-lite"),require("yup"),require("react-window"),require("react-use-measure"),require("@radix-ui/react-popover"),require("js-search"),require("@radix-ui/react-portal")):typeof define=="function"&&define.amd?define(["exports","clsx","tailwind-merge","react/jsx-runtime","react","object-hash","formik","@radix-ui/react-collapsible","@radix-ui/react-checkbox","@material-design-icons/font/filled.css","react-datepicker","notistack","@radix-ui/react-dialog","react-dropzone","react-fast-compare","markdown-it","@radix-ui/react-dropdown-menu","cmdk","@radix-ui/react-select","react-dom","@radix-ui/react-tooltip","@radix-ui/react-tabs","date-fns/format","date-fns/locale","@hello-pangea/dnd","react-image-file-resizer","react-router-dom","react-markdown-editor-lite","yup","react-window","react-use-measure","@radix-ui/react-popover","js-search","@radix-ui/react-portal"],jn):(o=typeof globalThis<"u"?globalThis:o||self,jn(o["FireCMS core"]={},o.clsx,o.tailwindMerge,o.jsxRuntime,o.React,o.hash,o.formik,o.Collapsible,o.CheckboxPrimitive,null,o.DatePicker,o.notistack,o.DialogPrimitive,o.reactDropzone,o.equal,o.MarkdownIt,o.DropdownMenu,o.cmdk,o.SelectPrimitive,o.ReactDOM,o.TooltipPrimitive,o.TabsPrimitive,o.format,o.locales,o.dnd,o.Resizer,o.reactRouterDom,o.MdEditor,o.yup,o.reactWindow,o.useMeasure,o.PopoverPrimitive,o.JsSearch,o.Portal))})(this,function(o,jn,pa,n,f,Wt,Fe,wa,ka,rU,xo,Gt,ma,Ro,de,zt,va,go,Ka,Ca,Sa,Ba,Ea,Fa,Kn,Pa,be,yn,Da,Na,er,Ta,Ma,Oa){"use strict";function Pe(e){const t=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(e){for(const c in e)if(c!=="default"){const i=Object.getOwnPropertyDescriptor(e,c);Object.defineProperty(t,c,i.get?i:{enumerable:!0,get:()=>e[c]})}}return t.default=e,Object.freeze(t)}const ce=Pe(f),qn=Pe(wa),Ht=Pe(ka),Ye=Pe(ma),Jn=Pe(va),$e=Pe(Ka),La=Pe(Ca),Zn=Pe(Sa),nr=Pe(Ba),Ut=Pe(Fa),De=Pe(Da),Xn=Pe(Ta),Qa=Pe(Ma),Va=Pe(Oa);function E(...e){return pa.twMerge(jn.clsx(e))}const Wa={breadcrumbs:[],set:e=>{}},Yt=f.createContext(Wa),Ga=({children:e})=>{const[t,c]=f.useState([]),i=a=>{c(a.breadcrumbs)};return n.jsx(Yt.Provider,{value:{breadcrumbs:t,set:i},children:e})},za={mode:"light",setMode:e=>{},toggleMode:()=>{}},or=f.createContext(za),Ha=or.Provider;function Ua(e){return e.includes("-")||e.includes("_")||!e.includes(" ")?e.replace(/[-_]/g," ").replace(/\w\S*/g,function(c){return c.charAt(0).toUpperCase()+c.substr(1)}):e}function pe(e){return $t(jt(e))}function $t(e){return e.startsWith("/")?e.slice(1):e}function jt(e){return e.endsWith("/")?e.slice(0,-1):e}function Ya(e){return e.startsWith("/")?e:`/${e}`}function $a(e){const t=pe(e);if(t.includes("/")){const c=t.split("/");return c[c.length-1]}return t}function rr(e,t){const c=pe(e),i=c.split("/");if(i.length%2===0)throw Error(`Collection paths must have an odd number of segments: ${e}`);const a=t.find(s=>s.alias===i[0]);let l;if(a&&(l=a.path),i.length>1){const s=Io(l??i[0],t);if(!s?.subcollections)return c;const d=c.split("/").slice(2).join("/");return(l??i[0])+"/"+i[1]+"/"+rr(d,s.subcollections)}else return l??c}function Io(e,t){const c=pe(e).split("/");if(c.length%2===0)throw Error(`Collection paths must have an odd number of segments: ${e}`);const i=bo(c);let a;for(let l=0;l<i.length;l++){const s=i[l],d=t&&t.sort((u,A)=>(u.alias??"").localeCompare(A.alias??"")).find(u=>u.alias===s||u.path===s);if(d){if(s===e)a=d;else if(d.subcollections){const u=e.replace(s,"").split("/").slice(2).join("/");u.length>0&&(a=Io(u,d.subcollections))}}if(a)break}return a}function bo(e){const t=e.length>0&&e.length%2===0?e.splice(0,e.length-1):e,c=t.length,i=[];for(let a=c;a>0;a=a-2)i.push(t.slice(0,a).join("/"));return i}class je{id;path;constructor(t,c){this.id=t,this.path=c}get pathWithId(){return`${this.path}/${this.id}`}}class tr{latitude;longitude;constructor(t,c){this.latitude=t,this.longitude=c}}const qt=(e,...t)=>({...t.reduce((c,i)=>({...c,[i]:e[i]}),{})});function po(e){return e&&typeof e=="object"&&!Array.isArray(e)}function qe(e,t){const c=po(e),i=c?{...e}:e;return c&&po(t)&&Object.keys(t).forEach(a=>{po(t[a])?a in e?i[a]=qe(e[a],t[a]):Object.assign(i,{[a]:t[a]}):Object.assign(i,{[a]:t[a]})}),i}function rn(e,t){if(e&&typeof e=="object"){if(t in e)return e[t];if(t.includes(".")||t.includes("[")){let c=t.split(/[.[]/);t.includes("[")&&(c=c.map(d=>d.replace("]","")));const i=c[0],a=Array.isArray(e[i])&&!isNaN(parseInt(c[1])),l=a?e[i][parseInt(c[1])]:e[i],s=c.slice(a?2:1).join(".");return s===""?l:rn(l,s)}}}function ja(e,t){let c={...e};const i=t.split("."),a=i.pop();for(const l of i)c=c[l];return a&&delete c[a],c}function cr(e){if(e!==void 0)return e===null?null:typeof e=="object"?Object.entries(e).filter(([t,c])=>typeof c!="function").map(([t,c])=>Array.isArray(c)?{[t]:c.map(i=>cr(i))}:typeof c=="object"?{[t]:cr(c)}:{[t]:c}).reduce((t,c)=>({...t,...c}),{}):e}function ir(e){if(!e)return null;if(typeof e=="object"){if("id"in e)return e.id;if(e instanceof Date)return e.toLocaleString();if(e instanceof tr)return Wt(e)}return Wt(e,{ignoreUnknown:!0})}function ar(e,t){if(typeof e=="function")return e;if(Array.isArray(e))return e.map(c=>ar(c,t));if(typeof e=="object"){const c={};return e===null?e:(Object.keys(e).forEach(i=>{if(!lr(e)){const a=ar(e[i],t),l=typeof a=="string",s=!t||t&&!l||t&&l&&a!=="";a!==void 0&&!lr(a)&&s&&(c[i]=a)}}),c)}return e}function lr(e){return e&&Object.getPrototypeOf(e)===Object.prototype&&Object.keys(e).length===0}const xn="type",wo="value";function Cn(e){return e.readOnly||e.dataType==="date"&&e.autoValue?!0:e.dataType==="reference"?!e.path:!1}function Rn(e){return typeof e.disabled=="object"&&!!e.disabled.hidden}function Le(e){return typeof e=="function"}function eo(e){return e?Object.entries(e).map(([t,c])=>{const i=ko(c);return i===void 0?{}:{[t]:i}}).reduce((t,c)=>({...t,...c}),{}):{}}function ko(e){if(!Le(e))if(e.dataType==="map"&&e.properties){const t=eo(e.properties);return Object.keys(t).length===0?void 0:t}else return e.defaultValue?e.defaultValue:sr(e.dataType)}function sr(e){return e==="string"||e==="number"?null:e==="boolean"?!1:e==="date"?null:e==="array"?[]:e==="map"?{}:null}function qa({inputValues:e,properties:t,status:c,timestampNowValue:i,setDateToMidnight:a}){return dr(e,t,(l,s)=>{if(s.dataType==="date"){let d;return c==="existing"&&s.autoValue==="on_update"||(c==="new"||c==="copy")&&(s.autoValue==="on_update"||s.autoValue==="on_create")?d=i:d=l,s.mode==="date"&&(d=a(d)),d}else return l})??{}}function Ja(e,t){const c=e;return Object.entries(t).forEach(([i,a])=>{e&&e[i]!==void 0?c[i]=e[i]:a.validation?.required&&(c[i]=null)}),c}function hn(e){return new je(e.id,e.path)}function dr(e,t,c){const i=Object.entries(t).map(([l,s])=>{const d=e&&e[l],u=mo(d,s,c);if(u!==void 0)return{[l]:u}}).reduce((l,s)=>({...l,...s}),{}),a={...e,...i};if(Object.keys(a).length!==0)return a}function mo(e,t,c){let i;if(t.dataType==="map"&&t.properties)i=dr(e,t.properties,c);else if(t.dataType==="array")if(t.of&&Array.isArray(e))i=e.map(a=>mo(a,t.of,c));else if(t.oneOf&&Array.isArray(e)){const a=t.oneOf?.typeField??xn,l=t.oneOf?.valueField??wo;i=e.map(s=>{if(s===null)return null;if(typeof s!="object")return s;const d=s[a],u=t.oneOf?.properties[d];return!d||!u?s:{[a]:d,[l]:mo(s[l],u,c)}})}else i=e;else i=c(e,t);return i}function Jt(e){let t=0,c,i;for(c=0;c<e.length;c++)i=e.charCodeAt(c),t=(t<<5)-t+i,t|=0;return Math.abs(t)}const vo={blueLighter:{color:"#cfdfff",text:"#102046"},cyanLighter:{color:"#d0f0fd",text:"#04283f"},tealLighter:{color:"#c2f5e9",text:"#012524"},greenLighter:{color:"#d1f7c4",text:"#0b1d05"},yellowLighter:{color:"#ffeab6",text:"#3b2501"},orangeLighter:{color:"#fee2d5",text:"#6b2613"},redLighter:{color:"#ffdce5",text:"#4c0c1c"},pinkLighter:{color:"#ffdaf6",text:"#400832"},purpleLighter:{color:"#ede2fe",text:"#280b42"},grayLighter:{color:"#eee",text:"#040404"},blueLight:{color:"#9cc7ff",text:"#102046"},cyanLight:{color:"#77d1f3",text:"#04283f"},tealLight:{color:"#72ddc3",text:"#012524"},greenLight:{color:"#93e088",text:"#0b1d05"},yellowLight:{color:"#ffd66e",text:"#3b2501"},orangeLight:{color:"#ffa981",text:"#6b2613"},redLight:{color:"#ff9eb7",text:"#4c0c1c"},pinkLight:{color:"#f99de2",text:"#400832"},purpleLight:{color:"#cdb0ff",text:"#280b42"},grayLight:{color:"#ccc",text:"#040404"},blueDark:{color:"#2d7ff9",text:"#fff"},cyanDark:{color:"#18bfff",text:"#fff"},tealDark:{color:"#20d9d2",text:"#fff"},greenDark:{color:"#20c933",text:"#fff"},yellowDark:{color:"#fcb400",text:"#fff"},orangeDark:{color:"#ff6f2c",text:"#fff"},redDark:{color:"#f82b60",text:"#fff"},pinkDark:{color:"#ff08c2",text:"#fff"},purpleDark:{color:"#8b46ff",text:"#fff"},grayDark:{color:"#666",text:"#fff"},blueDarker:{color:"#2750ae",text:"#cfdfff"},cyanDarker:{color:"#0b76b7",text:"#d0f0fd"},tealDarker:{color:"#06a09b",text:"#daf3e9"},greenDarker:{color:"#338a17",text:"#d1f7c4"},yellowDarker:{color:"#b87503",text:"#ffeab6"},orangeDarker:{color:"#d74d26",text:"#fee2d5"},redDarker:{color:"#ba1e45",text:"#ffdce5"},pinkDarker:{color:"#b2158b",text:"#ffdaf6"},purpleDarker:{color:"#6b1cb0",text:"#ede2fe"},grayDarker:{color:"#444",text:"#eee"}};function Zt(e){const t=Jt(e),c=Object.keys(vo),i=t%c.length;return vo[c[i]]}function Za(e){return vo[e]}function tn(e){return Array.isArray(e)?e:Object.entries(e).map(([t,c])=>typeof c=="string"?{id:t,label:c}:{...c,id:t})}function Ko(e,t){if(t)return e.find(c=>String(c.id)===String(t))}function Xt(e,t){const c=Ko(e,t);if(!c?.color)return Zt(t.toString());if(typeof c=="object"&&"color"in c){if(typeof c.color=="string")return vo[c.color];if(typeof c.color=="object")return c.color}}function Xa(e){return typeof e=="object"&&e.disabled}function xt(e){if(e!==void 0)return typeof e=="object"?e.label:e}function Co({name:e,addLabel:t,value:c,disabled:i=!1,buildEntry:a,small:l,onInternalIdAdded:s,includeAddButton:d,newDefaultEntry:u=null,setFieldValue:A}){return n.jsx(Pt,{droppableId:e,addLabel:t,value:c,disabled:i,buildEntry:a,size:l?"small":"medium",onInternalIdAdded:s,includeAddButton:d,newDefaultEntry:u,onValueChange:y=>A(e,y)})}const he="focus:outline-none focus-visible:ring-2 focus-visible:ring-primary focus-visible:ring-opacity-75 focus-visible:ring-offset-2 focus-visible:ring-offset-transparent",ur="focus:bg-opacity-70 focus:bg-gray-100 focus:dark:bg-gray-800 focus:dark:bg-opacity-60",fr="z-30 outline-none ring-2 ring-primary ring-opacity-75 ring-offset-2 ring-offset-transparent ",Je="bg-opacity-70 bg-gray-100 dark:bg-gray-800 dark:bg-opacity-60 transition duration-150 ease-in-out",Ar="bg-opacity-0 bg-gray-100 dark:bg-gray-800 dark:bg-opacity-0 transition duration-150 ease-in-out",Re="bg-opacity-100 dark:bg-opacity-90",We="hover:bg-opacity-90 dark:hover:bg-opacity-90",ue="border-gray-100 dark:border-gray-800 dark:border-opacity-80",Ge="bg-white rounded-md dark:bg-gray-950 border dark:border-gray-800 dark:border-opacity-90 border-gray-100",Rt="bg-white rounded-md dark:bg-gray-950 dark:border-gray-800 dark:border-opacity-50 transition duration-200 ease-in-out m-1 -p-1 border border-transparent",ec="hover:bg-blue-100 dark:hover:bg-blue-900 hover:bg-opacity-20 dark:hover:bg-opacity-20 hover:ring-2 cursor-pointer",xa="bg-blue-100 dark:bg-blue-900 bg-opacity-30 dark:bg-opacity-10 ring-1 ring-primary ring-opacity-75",nc={h1:"h1",h2:"h2",h3:"h3",h4:"h4",h5:"h5",h6:"h6",subtitle1:"h6",subtitle2:"h6",label:"label",body1:"p",body2:"p",inherit:"p",caption:"p",button:"span"},Ra={inherit:"text-inherit",initial:"text-current",primary:"text-text-primary dark:text-text-primary-dark",secondary:"text-text-secondary dark:text-text-secondary-dark",disabled:"text-text-disabled dark:text-text-disabled-dark",error:"text-red-600 dark:text-red-500"},el={h1:"text-6xl font-headers font-light",h2:"text-5xl font-headers font-light",h3:"text-4xl font-headers font-normal",h4:"text-3xl font-headers font-normal",h5:"text-2xl font-headers font-normal",h6:"text-xl font-headers font-medium",subtitle1:"text-lg font-headers font-medium",subtitle2:"text-base font-headers font-medium",body1:"text-base",body2:"text-sm",label:"text-sm font-medium text-gray-500",inherit:"text-inherit",caption:"text-xs",button:"text-sm font-medium"};function j({align:e="inherit",color:t="primary",children:c,className:i,component:a,gutterBottom:l=!1,noWrap:s=!1,paragraph:d=!1,variant:u="body1",variantMapping:A=nc,style:y,onClick:h,...I}){const _=a||(d?"p":A[u]||nc[u])||"span",g=E(he,el[u],t?Ra[t]:"",e!=="inherit"&&`text-${e}`,l&&"mb-[0.35em]",s&&"truncate",d&&"mb-4",i);return n.jsx(_,{className:g,onClick:h,style:y,...I,children:c})}function Ce({icon:e,title:t,small:c,className:i,required:a}){return n.jsxs("span",{className:`inline-flex items-center my-0.5 ${c?"gap-1":"gap-2"} ${i??""}`,children:[e,n.jsx(j,{component:"span",className:`font-medium text-${c?"base":"sm"} origin-top-left transform ${c?"translate-x-2 scale-75":""}`,children:(t??"")+(a?" *":"")})]})}function nl(e){const t=f.useRef(),[c,i]=f.useState(e.value),a=f.useDeferredValue(c);f.useEffect(()=>{i(e.value)},[e.value]),f.useEffect(()=>{!e.value&&!a||a!==e.value&&t.current&&e.onChange&&e.onChange(t.current)},[a,e.value,e.onChange]);const l=f.useCallback(s=>{t.current=s,i(s.target.value)},[]);return n.jsx(un,{...e,onChange:l,value:c})}function ol({field:e,form:t,label:c,tooltip:i,disabled:a,size:l="small",allowIndeterminate:s}){const d=n.jsx(On,{label:c,size:l,position:"start",value:e.value,disabled:a,allowIndeterminate:s,onValueChange:u=>t.setFieldValue(e.name,u)});return i?n.jsx(_e,{title:i,children:d}):d}const _r=["table_rows","video_label","airlines","bento","border_all","border_clear","ac_unit","adjust","align_horizontal_center","album","all_inclusive","all_out","animation","assistant","audiotrack","account_balance_wallet","auto_awesome_mosaic","bolt","brightness_1","breakfast_dining","broken_image","brightness_5","cable","calendar_view_month","catching_pokemon","casino","category","cloud","color_lens","credit_card","earbuds","egg_alt","fiber_smart_record","flag","healing","heat_pump","hive","hub","local_library","local_pizza","memory","outlet","pages","panorama_photosphere","signal_cellular_0_bar","sports_baseball","storm","stairs"],oc=["search","123","360","10k","10mp","11mp","12mp","13mp","14mp","15mp","16mp","17mp","18_up_rating","18mp","19mp","1k","1k_plus","1x_mobiledata","20mp","21mp","22mp","23mp","24mp","2k","2k_plus","2mp","30fps","30fps_select","3d_rotation","3g_mobiledata","3k","3k_plus","3mp","3p","4g_mobiledata","4g_plus_mobiledata","4k","4k_plus","4mp","5g","5k","5k_plus","5mp","60fps","60fps_select","6_ft_apart","6k","6k_plus","6mp","7k","7k_plus","7mp","8k","8k_plus","8mp","9k","9k_plus","9mp","abc","ac_unit","access_alarm","access_alarms","access_time","access_time_filled","accessibility","accessibility_new","accessible","accessible_forward","account_balance","account_balance_wallet","account_box","account_circle","account_tree","ad_units","adb","add","add_a_photo","add_alarm","add_alert","add_box","add_business","add_card","add_chart","add_circle","add_circle_outline","add_comment","add_home","add_home_work","add_ic_call","add_link","add_location","add_location_alt","add_moderator","add_photo_alternate","add_reaction","add_road","add_shopping_cart","add_task","add_to_drive","add_to_home_screen","add_to_photos","add_to_queue","adf_scanner","adjust","admin_panel_settings","ads_click","agriculture","air","airline_seat_flat","airline_seat_flat_angled","airline_seat_individual_suite","airline_seat_legroom_extra","airline_seat_legroom_normal","airline_seat_legroom_reduced","airline_seat_recline_extra","airline_seat_recline_normal","airline_stops","airlines","airplane_ticket","airplanemode_active","airplanemode_inactive","airplay","airport_shuttle","alarm","alarm_add","alarm_off","alarm_on","album","align_horizontal_center","align_horizontal_left","align_horizontal_right","align_vertical_bottom","align_vertical_center","align_vertical_top","all_inbox","all_inclusive","all_out","alt_route","alternate_email","analytics","anchor","android","animation","announcement","aod","apartment","api","app_blocking","app_registration","app_settings_alt","app_shortcut","approval","apps","apps_outage","architecture","archive","area_chart","arrow_back","arrow_back_ios","arrow_back_ios_new","arrow_circle_down","arrow_circle_left","arrow_circle_right","arrow_circle_up","arrow_downward","arrow_drop_down","arrow_drop_down_circle","arrow_drop_up","arrow_forward","arrow_forward_ios","arrow_left","arrow_outward","arrow_right","arrow_right_alt","arrow_upward","art_track","article","aspect_ratio","assessment","assignment","assignment_ind","assignment_late","assignment_return","assignment_returned","assignment_turned_in","assist_walker","assistant","assistant_direction","assistant_photo","assured_workload","atm","attach_email","attach_file","attach_money","attachment","attractions","attribution","audio_file","audiotrack","auto_awesome","auto_awesome_mosaic","auto_awesome_motion","auto_delete","auto_fix_high","auto_fix_normal","auto_fix_off","auto_graph","auto_mode","auto_stories","autofps_select","autorenew","av_timer","baby_changing_station","back_hand","backpack","backspace","backup","backup_table","badge","bakery_dining","balance","balcony","ballot","bar_chart","batch_prediction","bathroom","bathtub","battery_0_bar","battery_1_bar","battery_2_bar","battery_3_bar","battery_4_bar","battery_5_bar","battery_6_bar","battery_alert","battery_charging_full","battery_full","battery_saver","battery_std","battery_unknown","beach_access","bed","bedroom_baby","bedroom_child","bedroom_parent","bedtime","bedtime_off","beenhere","bento","bike_scooter","biotech","blender","blind","blinds","blinds_closed","block","bloodtype","bluetooth","bluetooth_audio","bluetooth_connected","bluetooth_disabled","bluetooth_drive","bluetooth_searching","blur_circular","blur_linear","blur_off","blur_on","bolt","book","book_online","bookmark","bookmark_add","bookmark_added","bookmark_border","bookmark_remove","bookmarks","border_all","border_bottom","border_clear","border_color","border_horizontal","border_inner","border_left","border_outer","border_right","border_style","border_top","border_vertical","boy","branding_watermark","breakfast_dining","brightness_1","brightness_2","brightness_3","brightness_4","brightness_5","brightness_6","brightness_7","brightness_auto","brightness_high","brightness_low","brightness_medium","broadcast_on_home","broadcast_on_personal","broken_image","browse_gallery","browser_not_supported","browser_updated","brunch_dining","brush","bubble_chart","bug_report","build","build_circle","bungalow","burst_mode","bus_alert","business","business_center","cabin","cable","cached","cake","calculate","calendar_month","calendar_today","calendar_view_day","calendar_view_month","calendar_view_week","call","call_end","call_made","call_merge","call_missed","call_missed_outgoing","call_received","call_split","call_to_action","camera","camera_alt","camera_enhance","camera_front","camera_indoor","camera_outdoor","camera_rear","camera_roll","cameraswitch","campaign","cancel","cancel_presentation","cancel_schedule_send","candlestick_chart","car_crash","car_rental","car_repair","card_giftcard","card_membership","card_travel","carpenter","cases","casino","cast","cast_connected","cast_for_education","castle","catching_pokemon","category","celebration","cell_tower","cell_wifi","center_focus_strong","center_focus_weak","chair","chair_alt","chalet","change_circle","change_history","charging_station","chat","chat_bubble","chat_bubble_outline","check","check_box","check_box_outline_blank","check_circle","check_circle_outline","checklist","checklist_rtl","checkroom","chevron_left","chevron_right","child_care","child_friendly","chrome_reader_mode","church","circle","circle_notifications","class","clean_hands","cleaning_services","clear","clear_all","close","close_fullscreen","closed_caption","closed_caption_disabled","closed_caption_off","cloud","cloud_circle","cloud_done","cloud_download","cloud_off","cloud_queue","cloud_sync","cloud_upload","co2","co_present","code","code_off","coffee","coffee_maker","collections","collections_bookmark","color_lens","colorize","comment","comment_bank","comments_disabled","commit","commute","compare","compare_arrows","compass_calibration","compost","compress","computer","confirmation_number","connect_without_contact","connected_tv","connecting_airports","construction","contact_emergency","contact_mail","contact_page","contact_phone","contact_support","contactless","contacts","content_copy","content_cut","content_paste","content_paste_go","content_paste_off","content_paste_search","contrast","control_camera","control_point","control_point_duplicate","cookie","copy_all","copyright","coronavirus","corporate_fare","cottage","countertops","create","create_new_folder","credit_card","credit_card_off","credit_score","crib","crisis_alert","crop","crop_16_9","crop_3_2","crop_5_4","crop_7_5","crop_din","crop_free","crop_landscape","crop_original","crop_portrait","crop_rotate","crop_square","cruelty_free","css","currency_bitcoin","currency_exchange","currency_franc","currency_lira","currency_pound","currency_ruble","currency_rupee","currency_yen","currency_yuan","curtains","curtains_closed","cyclone","dangerous","dark_mode","dashboard","dashboard_customize","data_array","data_exploration","data_object","data_saver_off","data_saver_on","data_thresholding","data_usage","dataset","dataset_linked","date_range","deblur","deck","dehaze","delete","delete_forever","delete_outline","delete_sweep","delivery_dining","density_large","density_medium","density_small","departure_board","description","deselect","design_services","desk","desktop_access_disabled","desktop_mac","desktop_windows","details","developer_board","developer_board_off","developer_mode","device_hub","device_thermostat","device_unknown","devices","devices_fold","devices_other","dialer_sip","dialpad","diamond","difference","dining","dinner_dining","directions","directions_bike","directions_boat","directions_boat_filled","directions_bus","directions_bus_filled","directions_car","directions_car_filled","directions_off","directions_railway","directions_railway_filled","directions_run","directions_subway","directions_subway_filled","directions_transit","directions_transit_filled","directions_walk","dirty_lens","disabled_by_default","disabled_visible","disc_full","discount","display_settings","diversity_1","diversity_2","diversity_3","dns","do_disturb","do_disturb_alt","do_disturb_off","do_disturb_on","do_not_disturb","do_not_disturb_alt","do_not_disturb_off","do_not_disturb_on","do_not_disturb_on_total_silence","do_not_step","do_not_touch","dock","document_scanner","domain","domain_add","domain_disabled","domain_verification","done","done_all","done_outline","donut_large","donut_small","door_back","door_front","door_sliding","doorbell","double_arrow","downhill_skiing","download","download_done","download_for_offline","downloading","drafts","drag_handle","drag_indicator","draw","drive_eta","drive_file_move","drive_file_move_rtl","drive_file_rename_outline","drive_folder_upload","dry","dry_cleaning","duo","dvr","dynamic_feed","dynamic_form","e_mobiledata","earbuds","earbuds_battery","east","edgesensor_high","edgesensor_low","edit","edit_attributes","edit_calendar","edit_location","edit_location_alt","edit_note","edit_notifications","edit_off","edit_road","egg","egg_alt","eject","elderly","elderly_woman","electric_bike","electric_bolt","electric_car","electric_meter","electric_moped","electric_rickshaw","electric_scooter","electrical_services","elevator","email","emergency","emergency_recording","emergency_share","emoji_emotions","emoji_events","emoji_food_beverage","emoji_nature","emoji_objects","emoji_people","emoji_symbols","emoji_transportation","energy_savings_leaf","engineering","enhanced_encryption","equalizer","error","error_outline","escalator","escalator_warning","euro","euro_symbol","ev_station","event","event_available","event_busy","event_note","event_repeat","event_seat","exit_to_app","expand","expand_circle_down","expand_less","expand_more","explicit","explore","explore_off","exposure","exposure_neg_1","exposure_neg_2","exposure_plus_1","exposure_plus_2","exposure_zero","extension","extension_off","face","face_2","face_3","face_4","face_5","face_6","face_retouching_natural","face_retouching_off","fact_check","factory","family_restroom","fast_forward","fast_rewind","fastfood","favorite","favorite_border","fax","featured_play_list","featured_video","feed","feedback","female","fence","festival","fiber_dvr","fiber_manual_record","fiber_new","fiber_pin","fiber_smart_record","file_copy","file_download","file_download_done","file_download_off","file_open","file_present","file_upload","filter","filter_1","filter_2","filter_3","filter_4","filter_5","filter_6","filter_7","filter_8","filter_9","filter_9_plus","filter_alt","filter_alt_off","filter_b_and_w","filter_center_focus","filter_drama","filter_frames","filter_hdr","filter_list","filter_list_off","filter_none","filter_tilt_shift","filter_vintage","find_in_page","find_replace","fingerprint","fire_extinguisher","fire_hydrant_alt","fire_truck","fireplace","first_page","fit_screen","fitbit","fitness_center","flag","flag_circle","flaky","flare","flash_auto","flash_off","flash_on","flashlight_off","flashlight_on","flatware","flight","flight_class","flight_land","flight_takeoff","flip","flip_camera_android","flip_camera_ios","flip_to_back","flip_to_front","flood","fluorescent","flutter_dash","fmd_bad","fmd_good","folder","folder_copy","folder_delete","folder_off","folder_open","folder_shared","folder_special","folder_zip","follow_the_signs","font_download","font_download_off","food_bank","forest","fork_left","fork_right","format_align_center","format_align_justify","format_align_left","format_align_right","format_bold","format_clear","format_color_fill","format_color_reset","format_color_text","format_indent_decrease","format_indent_increase","format_italic","format_line_spacing","format_list_bulleted","format_list_numbered","format_list_numbered_rtl","format_overline","format_paint","format_quote","format_shapes","format_size","format_strikethrough","format_textdirection_l_to_r","format_textdirection_r_to_l","format_underlined","fort","forum","forward","forward_10","forward_30","forward_5","forward_to_inbox","foundation","free_breakfast","free_cancellation","front_hand","fullscreen","fullscreen_exit","functions","g_mobiledata","g_translate","gamepad","games","garage","gas_meter","gavel","generating_tokens","gesture","get_app","gif","gif_box","girl","gite","golf_course","gpp_bad","gpp_good","gpp_maybe","gps_fixed","gps_not_fixed","gps_off","grade","gradient","grading","grain","graphic_eq","grass","grid_3x3","grid_4x4","grid_goldenratio","grid_off","grid_on","grid_view","group","group_add","group_off","group_remove","group_work","groups","groups_2","groups_3","h_mobiledata","h_plus_mobiledata","hail","handshake","handyman","hardware","hd","hdr_auto","hdr_auto_select","hdr_enhanced_select","hdr_off","hdr_off_select","hdr_on","hdr_on_select","hdr_plus","hdr_strong","hdr_weak","headphones","headphones_battery","headset","headset_mic","headset_off","healing","health_and_safety","hearing","hearing_disabled","heart_broken","heat_pump","height","help","help_center","help_outline","hevc","hexagon","hide_image","hide_source","high_quality","highlight","highlight_alt","highlight_off","hiking","history","history_edu","history_toggle_off","hive","hls","hls_off","holiday_village","home","home_max","home_mini","home_repair_service","home_work","horizontal_distribute","horizontal_rule","horizontal_split","hot_tub","hotel","hotel_class","hourglass_bottom","hourglass_disabled","hourglass_empty","hourglass_full","hourglass_top","house","house_siding","houseboat","how_to_reg","how_to_vote","html","http","https","hub","hvac","ice_skating","icecream","image","image_aspect_ratio","image_not_supported","image_search","imagesearch_roller","import_contacts","import_export","important_devices","inbox","incomplete_circle","indeterminate_check_box","info","input","insert_chart","insert_chart_outlined","insert_comment","insert_drive_file","insert_emoticon","insert_invitation","insert_link","insert_page_break","insert_photo","insights","install_desktop","install_mobile","integration_instructions","interests","interpreter_mode","inventory","inventory_2","invert_colors","invert_colors_off","ios_share","iron","iso","javascript","join_full","join_inner","join_left","join_right","kayaking","kebab_dining","key","key_off","keyboard","keyboard_alt","keyboard_arrow_down","keyboard_arrow_left","keyboard_arrow_right","keyboard_arrow_up","keyboard_backspace","keyboard_capslock","keyboard_command_key","keyboard_control_key","keyboard_double_arrow_down","keyboard_double_arrow_left","keyboard_double_arrow_right","keyboard_double_arrow_up","keyboard_hide","keyboard_option_key","keyboard_return","keyboard_tab","keyboard_voice","king_bed","kitchen","kitesurfing","label","label_important","label_off","lan","landscape","landslide","language","laptop","laptop_chromebook","laptop_mac","laptop_windows","last_page","launch","layers","layers_clear","leaderboard","leak_add","leak_remove","legend_toggle","lens","lens_blur","library_add","library_add_check","library_books","library_music","light","light_mode","lightbulb","lightbulb_circle","line_axis","line_style","line_weight","linear_scale","link","link_off","linked_camera","liquor","list","list_alt","live_help","live_tv","living","local_activity","local_airport","local_atm","local_bar","local_cafe","local_car_wash","local_convenience_store","local_dining","local_drink","local_fire_department","local_florist","local_gas_station","local_grocery_store","local_hospital","local_hotel","local_laundry_service","local_library","local_mall","local_movies","local_offer","local_parking","local_pharmacy","local_phone","local_pizza","local_play","local_police","local_post_office","local_printshop","local_see","local_shipping","local_taxi","location_city","location_disabled","location_off","location_on","location_searching","lock","lock_clock","lock_open","lock_person","lock_reset","login","logo_dev","logout","looks","looks_3","looks_4","looks_5","looks_6","looks_one","looks_two","loop","loupe","low_priority","loyalty","lte_mobiledata","lte_plus_mobiledata","luggage","lunch_dining","lyrics","macro_off","mail","mail_lock","mail_outline","male","man","man_2","man_3","man_4","manage_accounts","manage_history","manage_search","map","maps_home_work","maps_ugc","margin","mark_as_unread","mark_chat_read","mark_chat_unread","mark_email_read","mark_email_unread","mark_unread_chat_alt","markunread","markunread_mailbox","masks","maximize","media_bluetooth_off","media_bluetooth_on","mediation","medical_information","medical_services","medication","medication_liquid","meeting_room","memory","menu","menu_book","menu_open","merge","merge_type","message","mic","mic_external_off","mic_external_on","mic_none","mic_off","microwave","military_tech","minimize","minor_crash","miscellaneous_services","missed_video_call","mms","mobile_friendly","mobile_off","mobile_screen_share","mobiledata_off","mode","mode_comment","mode_edit","mode_edit_outline","mode_fan_off","mode_night","mode_of_travel","mode_standby","model_training","monetization_on","money","money_off","money_off_csred","monitor","monitor_heart","monitor_weight","monochrome_photos","mood","mood_bad","moped","more","more_horiz","more_time","more_vert","mosque","motion_photos_auto","motion_photos_off","motion_photos_on","motion_photos_pause","motion_photos_paused","mouse","move_down","move_to_inbox","move_up","movie","movie_creation","movie_filter","moving","mp","multiline_chart","multiple_stop","museum","music_note","music_off","music_video","my_location","nat","nature","nature_people","navigate_before","navigate_next","navigation","near_me","near_me_disabled","nearby_error","nearby_off","nest_cam_wired_stand","network_cell","network_check","network_locked","network_ping","network_wifi","network_wifi_1_bar","network_wifi_2_bar","network_wifi_3_bar","new_label","new_releases","newspaper","next_plan","next_week","nfc","night_shelter","nightlife","nightlight","nightlight_round","nights_stay","no_accounts","no_adult_content","no_backpack","no_cell","no_crash","no_drinks","no_encryption","no_encryption_gmailerrorred","no_flash","no_food","no_luggage","no_meals","no_meeting_room","no_photography","no_sim","no_stroller","no_transfer","noise_aware","noise_control_off","nordic_walking","north","north_east","north_west","not_accessible","not_interested","not_listed_location","not_started","note","note_add","note_alt","notes","notification_add","notification_important","notifications","notifications_active","notifications_none","notifications_off","notifications_paused","numbers","offline_bolt","offline_pin","offline_share","oil_barrel","on_device_training","ondemand_video","online_prediction","opacity","open_in_browser","open_in_full","open_in_new","open_in_new_off","open_with","other_houses","outbound","outbox","outdoor_grill","outlet","outlined_flag","output","padding","pages","pageview","paid","palette","pan_tool","pan_tool_alt","panorama","panorama_fish_eye","panorama_horizontal","panorama_horizontal_select","panorama_photosphere","panorama_photosphere_select","panorama_vertical","panorama_vertical_select","panorama_wide_angle","panorama_wide_angle_select","paragliding","park","party_mode","password","pattern","pause","pause_circle","pause_circle_filled","pause_circle_outline","pause_presentation","payment","payments","pedal_bike","pending","pending_actions","pentagon","people","people_alt","people_outline","percent","perm_camera_mic","perm_contact_calendar","perm_data_setting","perm_device_information","perm_identity","perm_media","perm_phone_msg","perm_scan_wifi","person","person_2","person_3","person_4","person_add","person_add_alt","person_add_alt_1","person_add_disabled","person_off","person_outline","person_pin","person_pin_circle","person_remove","person_remove_alt_1","person_search","personal_injury","personal_video","pest_control","pest_control_rodent","pets","phishing","phone","phone_android","phone_bluetooth_speaker","phone_callback","phone_disabled","phone_enabled","phone_forwarded","phone_iphone","phone_locked","phone_missed","phone_paused","phonelink","phonelink_erase","phonelink_lock","phonelink_off","phonelink_ring","phonelink_setup","photo","photo_album","photo_camera","photo_camera_back","photo_camera_front","photo_filter","photo_library","photo_size_select_actual","photo_size_select_large","photo_size_select_small","php","piano","piano_off","picture_as_pdf","picture_in_picture","picture_in_picture_alt","pie_chart","pie_chart_outline","pin","pin_drop","pin_end","pin_invoke","pinch","pivot_table_chart","pix","place","plagiarism","play_arrow","play_circle","play_circle_filled","play_circle_outline","play_disabled","play_for_work","play_lesson","playlist_add","playlist_add_check","playlist_add_check_circle","playlist_add_circle","playlist_play","playlist_remove","plumbing","plus_one","podcasts","point_of_sale","policy","poll","polyline","polymer","pool","portable_wifi_off","portrait","post_add","power","power_input","power_off","power_settings_new","precision_manufacturing","pregnant_woman","present_to_all","preview","price_change","price_check","print","print_disabled","priority_high","privacy_tip","private_connectivity","production_quantity_limits","propane","propane_tank","psychology","psychology_alt","public","public_off","publish","published_with_changes","punch_clock","push_pin","qr_code","qr_code_2","qr_code_scanner","query_builder","query_stats","question_answer","question_mark","queue","queue_music","queue_play_next","quickreply","quiz","r_mobiledata","radar","radio","radio_button_checked","radio_button_unchecked","railway_alert","ramen_dining","ramp_left","ramp_right","rate_review","raw_off","raw_on","read_more","real_estate_agent","receipt","receipt_long","recent_actors","recommend","record_voice_over","rectangle","recycling","redeem","redo","reduce_capacity","refresh","remember_me","remove","remove_circle","remove_circle_outline","remove_done","remove_from_queue","remove_moderator","remove_red_eye","remove_road","remove_shopping_cart","reorder","repartition","repeat","repeat_on","repeat_one","repeat_one_on","replay","replay_10","replay_30","replay_5","replay_circle_filled","reply","reply_all","report","report_gmailerrorred","report_off","report_problem","request_page","request_quote","reset_tv","restart_alt","restaurant","restaurant_menu","restore","restore_from_trash","restore_page","reviews","rice_bowl","ring_volume","rocket","rocket_launch","roller_shades","roller_shades_closed","roller_skating","roofing","room","room_preferences","room_service","rotate_90_degrees_ccw","rotate_90_degrees_cw","rotate_left","rotate_right","roundabout_left","roundabout_right","rounded_corner","route","router","rowing","rss_feed","rsvp","rtt","rule","rule_folder","run_circle","running_with_errors","rv_hookup","safety_check","safety_divider","sailing","sanitizer","satellite","satellite_alt","save","save_alt","save_as","saved_search","savings","scale","scanner","scatter_plot","schedule","schedule_send","schema","school","science","score","scoreboard","screen_lock_landscape","screen_lock_portrait","screen_lock_rotation","screen_rotation","screen_rotation_alt","screen_search_desktop","screen_share","screenshot","screenshot_monitor","scuba_diving","sd","sd_card","sd_card_alert","sd_storage","search","search_off","security","security_update","security_update_good","security_update_warning","segment","select_all","self_improvement","sell","send","send_and_archive","send_time_extension","send_to_mobile","sensor_door","sensor_occupied","sensor_window","sensors","sensors_off","sentiment_dissatisfied","sentiment_neutral","sentiment_satisfied","sentiment_satisfied_alt","sentiment_very_dissatisfied","sentiment_very_satisfied","set_meal","settings","settings_accessibility","settings_applications","settings_backup_restore","settings_bluetooth","settings_brightness","settings_cell","settings_ethernet","settings_input_antenna","settings_input_component","settings_input_composite","settings_input_hdmi","settings_input_svideo","settings_overscan","settings_phone","settings_power","settings_remote","settings_suggest","settings_system_daydream","settings_voice","severe_cold","shape_line","share","share_location","shield","shield_moon","shop","shop_2","shop_two","shopping_bag","shopping_basket","shopping_cart","shopping_cart_checkout","short_text","shortcut","show_chart","shower","shuffle","shuffle_on","shutter_speed","sick","sign_language","signal_cellular_0_bar","signal_cellular_4_bar","signal_cellular_alt","signal_cellular_alt_1_bar","signal_cellular_alt_2_bar","signal_cellular_connected_no_internet_0_bar","signal_cellular_connected_no_internet_4_bar","signal_cellular_no_sim","signal_cellular_nodata","signal_cellular_null","signal_cellular_off","signal_wifi_0_bar","signal_wifi_4_bar","signal_wifi_4_bar_lock","signal_wifi_bad","signal_wifi_connected_no_internet_4","signal_wifi_off","signal_wifi_statusbar_4_bar","signal_wifi_statusbar_connected_no_internet_4","signal_wifi_statusbar_null","signpost","sim_card","sim_card_alert","sim_card_download","single_bed","sip","skateboarding","skip_next","skip_previous","sledding","slideshow","slow_motion_video","smart_button","smart_display","smart_screen","smart_toy","smartphone","smoke_free","smoking_rooms","sms","sms_failed","snippet_folder","snooze","snowboarding","snowmobile","snowshoeing","soap","social_distance","solar_power","sort","sort_by_alpha","sos","soup_kitchen","source","south","south_america","south_east","south_west","spa","space_bar","space_dashboard","spatial_audio","spatial_audio_off","spatial_tracking","speaker","speaker_group","speaker_notes","speaker_notes_off","speaker_phone","speed","spellcheck","splitscreen","spoke","sports","sports_bar","sports_baseball","sports_basketball","sports_cricket","sports_esports","sports_football","sports_golf","sports_gymnastics","sports_handball","sports_hockey","sports_kabaddi","sports_martial_arts","sports_mma","sports_motorsports","sports_rugby","sports_score","sports_soccer","sports_tennis","sports_volleyball","square","square_foot","ssid_chart","stacked_bar_chart","stacked_line_chart","stadium","stairs","star","star_border","star_border_purple500","star_half","star_outline","star_purple500","star_rate","stars","start","stay_current_landscape","stay_current_portrait","stay_primary_landscape","stay_primary_portrait","sticky_note_2","stop","stop_circle","stop_screen_share","storage","store","store_mall_directory","storefront","storm","straight","straighten","stream","streetview","strikethrough_s","stroller","style","subdirectory_arrow_left","subdirectory_arrow_right","subject","subscript","subscriptions","subtitles","subtitles_off","subway","summarize","superscript","supervised_user_circle","supervisor_account","support","support_agent","surfing","surround_sound","swap_calls","swap_horiz","swap_horizontal_circle","swap_vert","swap_vertical_circle","swipe","swipe_down","swipe_down_alt","swipe_left","swipe_left_alt","swipe_right","swipe_right_alt","swipe_up","swipe_up_alt","swipe_vertical","switch_access_shortcut","switch_access_shortcut_add","switch_account","switch_camera","switch_left","switch_right","switch_video","synagogue","sync","sync_alt","sync_disabled","sync_lock","sync_problem","system_security_update","system_security_update_good","system_security_update_warning","system_update","system_update_alt","tab","tab_unselected","table_bar","table_chart","table_restaurant","table_rows","table_view","tablet","tablet_android","tablet_mac","tag","tag_faces","takeout_dining","tap_and_play","tapas","task","task_alt","taxi_alert","temple_buddhist","temple_hindu","terminal","terrain","text_decrease","text_fields","text_format","text_increase","text_rotate_up","text_rotate_vertical","text_rotation_angledown","text_rotation_angleup","text_rotation_down","text_rotation_none","text_snippet","textsms","texture","theater_comedy","theaters","thermostat","thermostat_auto","thumb_down","thumb_down_alt","thumb_down_off_alt","thumb_up","thumb_up_alt","thumb_up_off_alt","thumbs_up_down","thunderstorm","time_to_leave","timelapse","timeline","timer","timer_10","timer_10_select","timer_3","timer_3_select","timer_off","tips_and_updates","tire_repair","title","toc","today","toggle_off","toggle_on","token","toll","tonality","topic","tornado","touch_app","tour","toys","track_changes","traffic","train","tram","transcribe","transfer_within_a_station","transform","transgender","transit_enterexit","translate","travel_explore","trending_down","trending_flat","trending_up","trip_origin","troubleshoot","try","tsunami","tty","tune","tungsten","turn_left","turn_right","turn_sharp_left","turn_sharp_right","turn_slight_left","turn_slight_right","turned_in","turned_in_not","tv","tv_off","two_wheeler","type_specimen","u_turn_left","u_turn_right","umbrella","unarchive","undo","unfold_less","unfold_less_double","unfold_more","unfold_more_double","unpublished","unsubscribe","upcoming","update","update_disabled","upgrade","upload","upload_file","usb","usb_off","vaccines","vape_free","vaping_rooms","verified","verified_user","vertical_align_bottom","vertical_align_center","vertical_align_top","vertical_distribute","vertical_shades","vertical_shades_closed","vertical_split","vibration","video_call","video_camera_back","video_camera_front","video_chat","video_file","video_label","video_library","video_settings","video_stable","videocam","videocam_off","videogame_asset","videogame_asset_off","view_agenda","view_array","view_carousel","view_column","view_comfy","view_comfy_alt","view_compact","view_compact_alt","view_cozy","view_day","view_headline","view_in_ar","view_kanban","view_list","view_module","view_quilt","view_sidebar","view_stream","view_timeline","view_week","vignette","villa","visibility","visibility_off","voice_chat","voice_over_off","voicemail","volcano","volume_down","volume_mute","volume_off","volume_up","volunteer_activism","vpn_key","vpn_key_off","vpn_lock","vrpano","wallet","wallpaper","warehouse","warning","warning_amber","wash","watch","watch_later","watch_off","water","water_damage","water_drop","waterfall_chart","waves","waving_hand","wb_auto","wb_cloudy","wb_incandescent","wb_iridescent","wb_shade","wb_sunny","wb_twilight","wc","web","web_asset","web_asset_off","web_stories","webhook","weekend","west","whatshot","wheelchair_pickup","where_to_vote","widgets","width_full","width_normal","width_wide","wifi","wifi_1_bar","wifi_2_bar","wifi_calling","wifi_calling_3","wifi_channel","wifi_find","wifi_lock","wifi_off","wifi_password","wifi_protected_setup","wifi_tethering","wifi_tethering_error","wifi_tethering_off","wind_power","window","wine_bar","woman","woman_2","work","work_history","work_off","work_outline","workspace_premium","workspaces","wrap_text","wrong_location","wysiwyg","yard","youtube_searched_for","zoom_in","zoom_in_map","zoom_out","zoom_out_map"],rl={inherit:"",primary:"text-primary",success:"text-green-500",warning:"text-yellow-500",secondary:"text-secondary",disabled:"text-disabled dark:text-disabled-dark",error:"text-red-500"};function r({iconKey:e,size:t="medium",color:c,className:i,onClick:a,style:l}){let s;switch(t){case"smallest":s=16;break;case"small":s=20;break;case"medium":s=24;break;case"large":s=28;break;default:s=t}return s||(s=24),n.jsx("span",{style:{fontSize:`${s}px`,display:"block",...l},className:E("material-icons",c?rl[c]:"","select-none",i),onClick:a,children:e})}function tl(e){return n.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",className:e.className,fill:"currentColor",width:e.size??24,height:e.size??24,viewBox:"0 0 24 24",children:n.jsx("path",{d:"M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"})})}function rc(e){return n.jsx(r,{...e,iconKey:"search"})}function cl(e){return n.jsx(r,{...e,iconKey:"123"})}function il(e){return n.jsx(r,{...e,iconKey:"360"})}function al(e){return n.jsx(r,{...e,iconKey:"10k"})}function ll(e){return n.jsx(r,{...e,iconKey:"10mp"})}function sl(e){return n.jsx(r,{...e,iconKey:"11mp"})}function dl(e){return n.jsx(r,{...e,iconKey:"12mp"})}function ul(e){return n.jsx(r,{...e,iconKey:"13mp"})}function fl(e){return n.jsx(r,{...e,iconKey:"14mp"})}function Al(e){return n.jsx(r,{...e,iconKey:"15mp"})}function _l(e){return n.jsx(r,{...e,iconKey:"16mp"})}function yl(e){return n.jsx(r,{...e,iconKey:"17mp"})}function hl(e){return n.jsx(r,{...e,iconKey:"18_up_rating"})}function gl(e){return n.jsx(r,{...e,iconKey:"18mp"})}function Il(e){return n.jsx(r,{...e,iconKey:"19mp"})}function bl(e){return n.jsx(r,{...e,iconKey:"1k"})}function pl(e){return n.jsx(r,{...e,iconKey:"1k_plus"})}function wl(e){return n.jsx(r,{...e,iconKey:"1x_mobiledata"})}function kl(e){return n.jsx(r,{...e,iconKey:"20mp"})}function ml(e){return n.jsx(r,{...e,iconKey:"21mp"})}function vl(e){return n.jsx(r,{...e,iconKey:"22mp"})}function Kl(e){return n.jsx(r,{...e,iconKey:"23mp"})}function Cl(e){return n.jsx(r,{...e,iconKey:"24mp"})}function Sl(e){return n.jsx(r,{...e,iconKey:"2k"})}function Bl(e){return n.jsx(r,{...e,iconKey:"2k_plus"})}function El(e){return n.jsx(r,{...e,iconKey:"2mp"})}function Fl(e){return n.jsx(r,{...e,iconKey:"30fps"})}function Pl(e){return n.jsx(r,{...e,iconKey:"30fps_select"})}function Dl(e){return n.jsx(r,{...e,iconKey:"3d_rotation"})}function Nl(e){return n.jsx(r,{...e,iconKey:"3g_mobiledata"})}function Tl(e){return n.jsx(r,{...e,iconKey:"3k"})}function Ml(e){return n.jsx(r,{...e,iconKey:"3k_plus"})}function Ol(e){return n.jsx(r,{...e,iconKey:"3mp"})}function Ll(e){return n.jsx(r,{...e,iconKey:"3p"})}function Ql(e){return n.jsx(r,{...e,iconKey:"4g_mobiledata"})}function Vl(e){return n.jsx(r,{...e,iconKey:"4g_plus_mobiledata"})}function Wl(e){return n.jsx(r,{...e,iconKey:"4k"})}function Gl(e){return n.jsx(r,{...e,iconKey:"4k_plus"})}function zl(e){return n.jsx(r,{...e,iconKey:"4mp"})}function Hl(e){return n.jsx(r,{...e,iconKey:"5g"})}function Ul(e){return n.jsx(r,{...e,iconKey:"5k"})}function Yl(e){return n.jsx(r,{...e,iconKey:"5k_plus"})}function $l(e){return n.jsx(r,{...e,iconKey:"5mp"})}function jl(e){return n.jsx(r,{...e,iconKey:"60fps"})}function ql(e){return n.jsx(r,{...e,iconKey:"60fps_select"})}function Jl(e){return n.jsx(r,{...e,iconKey:"6_ft_apart"})}function Zl(e){return n.jsx(r,{...e,iconKey:"6k"})}function Xl(e){return n.jsx(r,{...e,iconKey:"6k_plus"})}function xl(e){return n.jsx(r,{...e,iconKey:"6mp"})}function Rl(e){return n.jsx(r,{...e,iconKey:"7k"})}function es(e){return n.jsx(r,{...e,iconKey:"7k_plus"})}function ns(e){return n.jsx(r,{...e,iconKey:"7mp"})}function os(e){return n.jsx(r,{...e,iconKey:"8k"})}function rs(e){return n.jsx(r,{...e,iconKey:"8k_plus"})}function ts(e){return n.jsx(r,{...e,iconKey:"8mp"})}function cs(e){return n.jsx(r,{...e,iconKey:"9k"})}function is(e){return n.jsx(r,{...e,iconKey:"9k_plus"})}function as(e){return n.jsx(r,{...e,iconKey:"9mp"})}function ls(e){return n.jsx(r,{...e,iconKey:"abc"})}function ss(e){return n.jsx(r,{...e,iconKey:"ac_unit"})}function ds(e){return n.jsx(r,{...e,iconKey:"access_alarm"})}function us(e){return n.jsx(r,{...e,iconKey:"access_alarms"})}function fs(e){return n.jsx(r,{...e,iconKey:"access_time"})}function As(e){return n.jsx(r,{...e,iconKey:"access_time_filled"})}function _s(e){return n.jsx(r,{...e,iconKey:"accessibility"})}function ys(e){return n.jsx(r,{...e,iconKey:"accessibility_new"})}function hs(e){return n.jsx(r,{...e,iconKey:"accessible"})}function gs(e){return n.jsx(r,{...e,iconKey:"accessible_forward"})}function Is(e){return n.jsx(r,{...e,iconKey:"account_balance"})}function bs(e){return n.jsx(r,{...e,iconKey:"account_balance_wallet"})}function ps(e){return n.jsx(r,{...e,iconKey:"account_box"})}function ws(e){return n.jsx(r,{...e,iconKey:"account_circle"})}function ks(e){return n.jsx(r,{...e,iconKey:"account_tree"})}function ms(e){return n.jsx(r,{...e,iconKey:"ad_units"})}function vs(e){return n.jsx(r,{...e,iconKey:"adb"})}function gn(e){return n.jsx(r,{...e,iconKey:"add"})}function Ks(e){return n.jsx(r,{...e,iconKey:"add_a_photo"})}function Cs(e){return n.jsx(r,{...e,iconKey:"add_alarm"})}function Ss(e){return n.jsx(r,{...e,iconKey:"add_alert"})}function Bs(e){return n.jsx(r,{...e,iconKey:"add_box"})}function Es(e){return n.jsx(r,{...e,iconKey:"add_business"})}function Fs(e){return n.jsx(r,{...e,iconKey:"add_card"})}function Ps(e){return n.jsx(r,{...e,iconKey:"add_chart"})}function Ds(e){return n.jsx(r,{...e,iconKey:"add_circle"})}function Ns(e){return n.jsx(r,{...e,iconKey:"add_circle_outline"})}function Ts(e){return n.jsx(r,{...e,iconKey:"add_comment"})}function Ms(e){return n.jsx(r,{...e,iconKey:"add_home"})}function Os(e){return n.jsx(r,{...e,iconKey:"add_home_work"})}function Ls(e){return n.jsx(r,{...e,iconKey:"add_ic_call"})}function tc(e){return n.jsx(r,{...e,iconKey:"add_link"})}function Qs(e){return n.jsx(r,{...e,iconKey:"add_location"})}function Vs(e){return n.jsx(r,{...e,iconKey:"add_location_alt"})}function Ws(e){return n.jsx(r,{...e,iconKey:"add_moderator"})}function Gs(e){return n.jsx(r,{...e,iconKey:"add_photo_alternate"})}function zs(e){return n.jsx(r,{...e,iconKey:"add_reaction"})}function Hs(e){return n.jsx(r,{...e,iconKey:"add_road"})}function Us(e){return n.jsx(r,{...e,iconKey:"add_shopping_cart"})}function Ys(e){return n.jsx(r,{...e,iconKey:"add_task"})}function $s(e){return n.jsx(r,{...e,iconKey:"add_to_drive"})}function js(e){return n.jsx(r,{...e,iconKey:"add_to_home_screen"})}function qs(e){return n.jsx(r,{...e,iconKey:"add_to_photos"})}function Js(e){return n.jsx(r,{...e,iconKey:"add_to_queue"})}function Zs(e){return n.jsx(r,{...e,iconKey:"adf_scanner"})}function Xs(e){return n.jsx(r,{...e,iconKey:"adjust"})}function xs(e){return n.jsx(r,{...e,iconKey:"admin_panel_settings"})}function Rs(e){return n.jsx(r,{...e,iconKey:"ads_click"})}function ed(e){return n.jsx(r,{...e,iconKey:"agriculture"})}function nd(e){return n.jsx(r,{...e,iconKey:"air"})}function od(e){return n.jsx(r,{...e,iconKey:"airline_seat_flat"})}function rd(e){return n.jsx(r,{...e,iconKey:"airline_seat_flat_angled"})}function td(e){return n.jsx(r,{...e,iconKey:"airline_seat_individual_suite"})}function cd(e){return n.jsx(r,{...e,iconKey:"airline_seat_legroom_extra"})}function id(e){return n.jsx(r,{...e,iconKey:"airline_seat_legroom_normal"})}function ad(e){return n.jsx(r,{...e,iconKey:"airline_seat_legroom_reduced"})}function ld(e){return n.jsx(r,{...e,iconKey:"airline_seat_recline_extra"})}function sd(e){return n.jsx(r,{...e,iconKey:"airline_seat_recline_normal"})}function dd(e){return n.jsx(r,{...e,iconKey:"airline_stops"})}function ud(e){return n.jsx(r,{...e,iconKey:"airlines"})}function fd(e){return n.jsx(r,{...e,iconKey:"airplane_ticket"})}function Ad(e){return n.jsx(r,{...e,iconKey:"airplanemode_active"})}function _d(e){return n.jsx(r,{...e,iconKey:"airplanemode_inactive"})}function yd(e){return n.jsx(r,{...e,iconKey:"airplay"})}function hd(e){return n.jsx(r,{...e,iconKey:"airport_shuttle"})}function gd(e){return n.jsx(r,{...e,iconKey:"alarm"})}function Id(e){return n.jsx(r,{...e,iconKey:"alarm_add"})}function bd(e){return n.jsx(r,{...e,iconKey:"alarm_off"})}function pd(e){return n.jsx(r,{...e,iconKey:"alarm_on"})}function wd(e){return n.jsx(r,{...e,iconKey:"album"})}function kd(e){return n.jsx(r,{...e,iconKey:"align_horizontal_center"})}function md(e){return n.jsx(r,{...e,iconKey:"align_horizontal_left"})}function vd(e){return n.jsx(r,{...e,iconKey:"align_horizontal_right"})}function Kd(e){return n.jsx(r,{...e,iconKey:"align_vertical_bottom"})}function Cd(e){return n.jsx(r,{...e,iconKey:"align_vertical_center"})}function Sd(e){return n.jsx(r,{...e,iconKey:"align_vertical_top"})}function Bd(e){return n.jsx(r,{...e,iconKey:"all_inbox"})}function Ed(e){return n.jsx(r,{...e,iconKey:"all_inclusive"})}function Fd(e){return n.jsx(r,{...e,iconKey:"all_out"})}function Pd(e){return n.jsx(r,{...e,iconKey:"alt_route"})}function Dd(e){return n.jsx(r,{...e,iconKey:"alternate_email"})}function Nd(e){return n.jsx(r,{...e,iconKey:"analytics"})}function Td(e){return n.jsx(r,{...e,iconKey:"anchor"})}function Md(e){return n.jsx(r,{...e,iconKey:"android"})}function Od(e){return n.jsx(r,{...e,iconKey:"animation"})}function Ld(e){return n.jsx(r,{...e,iconKey:"announcement"})}function Qd(e){return n.jsx(r,{...e,iconKey:"aod"})}function Vd(e){return n.jsx(r,{...e,iconKey:"apartment"})}function Wd(e){return n.jsx(r,{...e,iconKey:"api"})}function Gd(e){return n.jsx(r,{...e,iconKey:"app_blocking"})}function zd(e){return n.jsx(r,{...e,iconKey:"app_registration"})}function Hd(e){return n.jsx(r,{...e,iconKey:"app_settings_alt"})}function Ud(e){return n.jsx(r,{...e,iconKey:"app_shortcut"})}function Yd(e){return n.jsx(r,{...e,iconKey:"approval"})}function $d(e){return n.jsx(r,{...e,iconKey:"apps"})}function jd(e){return n.jsx(r,{...e,iconKey:"apps_outage"})}function qd(e){return n.jsx(r,{...e,iconKey:"architecture"})}function Jd(e){return n.jsx(r,{...e,iconKey:"archive"})}function Zd(e){return n.jsx(r,{...e,iconKey:"area_chart"})}function Xd(e){return n.jsx(r,{...e,iconKey:"arrow_back"})}function xd(e){return n.jsx(r,{...e,iconKey:"arrow_back_ios"})}function Rd(e){return n.jsx(r,{...e,iconKey:"arrow_back_ios_new"})}function eu(e){return n.jsx(r,{...e,iconKey:"arrow_circle_down"})}function nu(e){return n.jsx(r,{...e,iconKey:"arrow_circle_left"})}function ou(e){return n.jsx(r,{...e,iconKey:"arrow_circle_right"})}function ru(e){return n.jsx(r,{...e,iconKey:"arrow_circle_up"})}function tu(e){return n.jsx(r,{...e,iconKey:"arrow_downward"})}function yr(e){return n.jsx(r,{...e,iconKey:"arrow_drop_down"})}function cu(e){return n.jsx(r,{...e,iconKey:"arrow_drop_down_circle"})}function iu(e){return n.jsx(r,{...e,iconKey:"arrow_drop_up"})}function cc(e){return n.jsx(r,{...e,iconKey:"arrow_forward"})}function au(e){return n.jsx(r,{...e,iconKey:"arrow_forward_ios"})}function lu(e){return n.jsx(r,{...e,iconKey:"arrow_left"})}function su(e){return n.jsx(r,{...e,iconKey:"arrow_outward"})}function du(e){return n.jsx(r,{...e,iconKey:"arrow_right"})}function uu(e){return n.jsx(r,{...e,iconKey:"arrow_right_alt"})}function So(e){return n.jsx(r,{...e,iconKey:"arrow_upward"})}function fu(e){return n.jsx(r,{...e,iconKey:"art_track"})}function Au(e){return n.jsx(r,{...e,iconKey:"article"})}function _u(e){return n.jsx(r,{...e,iconKey:"aspect_ratio"})}function yu(e){return n.jsx(r,{...e,iconKey:"assessment"})}function ic(e){return n.jsx(r,{...e,iconKey:"assignment"})}function hu(e){return n.jsx(r,{...e,iconKey:"assignment_ind"})}function gu(e){return n.jsx(r,{...e,iconKey:"assignment_late"})}function Iu(e){return n.jsx(r,{...e,iconKey:"assignment_return"})}function bu(e){return n.jsx(r,{...e,iconKey:"assignment_returned"})}function pu(e){return n.jsx(r,{...e,iconKey:"assignment_turned_in"})}function wu(e){return n.jsx(r,{...e,iconKey:"assist_walker"})}function ku(e){return n.jsx(r,{...e,iconKey:"assistant"})}function mu(e){return n.jsx(r,{...e,iconKey:"assistant_direction"})}function vu(e){return n.jsx(r,{...e,iconKey:"assistant_photo"})}function Ku(e){return n.jsx(r,{...e,iconKey:"assured_workload"})}function Cu(e){return n.jsx(r,{...e,iconKey:"atm"})}function Su(e){return n.jsx(r,{...e,iconKey:"attach_email"})}function Bu(e){return n.jsx(r,{...e,iconKey:"attach_file"})}function Eu(e){return n.jsx(r,{...e,iconKey:"attach_money"})}function Fu(e){return n.jsx(r,{...e,iconKey:"attachment"})}function Pu(e){return n.jsx(r,{...e,iconKey:"attractions"})}function Du(e){return n.jsx(r,{...e,iconKey:"attribution"})}function Nu(e){return n.jsx(r,{...e,iconKey:"audio_file"})}function Tu(e){return n.jsx(r,{...e,iconKey:"audiotrack"})}function Mu(e){return n.jsx(r,{...e,iconKey:"auto_awesome"})}function Ou(e){return n.jsx(r,{...e,iconKey:"auto_awesome_mosaic"})}function Lu(e){return n.jsx(r,{...e,iconKey:"auto_awesome_motion"})}function Qu(e){return n.jsx(r,{...e,iconKey:"auto_delete"})}function Vu(e){return n.jsx(r,{...e,iconKey:"auto_fix_high"})}function Wu(e){return n.jsx(r,{...e,iconKey:"auto_fix_normal"})}function Gu(e){return n.jsx(r,{...e,iconKey:"auto_fix_off"})}function zu(e){return n.jsx(r,{...e,iconKey:"auto_graph"})}function Hu(e){return n.jsx(r,{...e,iconKey:"auto_mode"})}function Uu(e){return n.jsx(r,{...e,iconKey:"auto_stories"})}function Yu(e){return n.jsx(r,{...e,iconKey:"autofps_select"})}function $u(e){return n.jsx(r,{...e,iconKey:"autorenew"})}function ju(e){return n.jsx(r,{...e,iconKey:"av_timer"})}function qu(e){return n.jsx(r,{...e,iconKey:"baby_changing_station"})}function Ju(e){return n.jsx(r,{...e,iconKey:"back_hand"})}function Zu(e){return n.jsx(r,{...e,iconKey:"backpack"})}function Xu(e){return n.jsx(r,{...e,iconKey:"backspace"})}function xu(e){return n.jsx(r,{...e,iconKey:"backup"})}function Ru(e){return n.jsx(r,{...e,iconKey:"backup_table"})}function ef(e){return n.jsx(r,{...e,iconKey:"badge"})}function nf(e){return n.jsx(r,{...e,iconKey:"bakery_dining"})}function of(e){return n.jsx(r,{...e,iconKey:"balance"})}function rf(e){return n.jsx(r,{...e,iconKey:"balcony"})}function hr(e){return n.jsx(r,{...e,iconKey:"ballot"})}function tf(e){return n.jsx(r,{...e,iconKey:"bar_chart"})}function cf(e){return n.jsx(r,{...e,iconKey:"batch_prediction"})}function af(e){return n.jsx(r,{...e,iconKey:"bathroom"})}function lf(e){return n.jsx(r,{...e,iconKey:"bathtub"})}function sf(e){return n.jsx(r,{...e,iconKey:"battery_0_bar"})}function df(e){return n.jsx(r,{...e,iconKey:"battery_1_bar"})}function uf(e){return n.jsx(r,{...e,iconKey:"battery_2_bar"})}function ff(e){return n.jsx(r,{...e,iconKey:"battery_3_bar"})}function Af(e){return n.jsx(r,{...e,iconKey:"battery_4_bar"})}function _f(e){return n.jsx(r,{...e,iconKey:"battery_5_bar"})}function yf(e){return n.jsx(r,{...e,iconKey:"battery_6_bar"})}function hf(e){return n.jsx(r,{...e,iconKey:"battery_alert"})}function gf(e){return n.jsx(r,{...e,iconKey:"battery_charging_full"})}function If(e){return n.jsx(r,{...e,iconKey:"battery_full"})}function bf(e){return n.jsx(r,{...e,iconKey:"battery_saver"})}function pf(e){return n.jsx(r,{...e,iconKey:"battery_std"})}function wf(e){return n.jsx(r,{...e,iconKey:"battery_unknown"})}function kf(e){return n.jsx(r,{...e,iconKey:"beach_access"})}function mf(e){return n.jsx(r,{...e,iconKey:"bed"})}function vf(e){return n.jsx(r,{...e,iconKey:"bedroom_baby"})}function Kf(e){return n.jsx(r,{...e,iconKey:"bedroom_child"})}function Cf(e){return n.jsx(r,{...e,iconKey:"bedroom_parent"})}function Sf(e){return n.jsx(r,{...e,iconKey:"bedtime"})}function Bf(e){return n.jsx(r,{...e,iconKey:"bedtime_off"})}function Ef(e){return n.jsx(r,{...e,iconKey:"beenhere"})}function Ff(e){return n.jsx(r,{...e,iconKey:"bento"})}function Pf(e){return n.jsx(r,{...e,iconKey:"bike_scooter"})}function Df(e){return n.jsx(r,{...e,iconKey:"biotech"})}function Nf(e){return n.jsx(r,{...e,iconKey:"blender"})}function Tf(e){return n.jsx(r,{...e,iconKey:"blind"})}function Mf(e){return n.jsx(r,{...e,iconKey:"blinds"})}function Of(e){return n.jsx(r,{...e,iconKey:"blinds_closed"})}function Lf(e){return n.jsx(r,{...e,iconKey:"block"})}function Qf(e){return n.jsx(r,{...e,iconKey:"bloodtype"})}function Vf(e){return n.jsx(r,{...e,iconKey:"bluetooth"})}function Wf(e){return n.jsx(r,{...e,iconKey:"bluetooth_audio"})}function Gf(e){return n.jsx(r,{...e,iconKey:"bluetooth_connected"})}function zf(e){return n.jsx(r,{...e,iconKey:"bluetooth_disabled"})}function Hf(e){return n.jsx(r,{...e,iconKey:"bluetooth_drive"})}function Uf(e){return n.jsx(r,{...e,iconKey:"bluetooth_searching"})}function Yf(e){return n.jsx(r,{...e,iconKey:"blur_circular"})}function $f(e){return n.jsx(r,{...e,iconKey:"blur_linear"})}function jf(e){return n.jsx(r,{...e,iconKey:"blur_off"})}function qf(e){return n.jsx(r,{...e,iconKey:"blur_on"})}function Jf(e){return n.jsx(r,{...e,iconKey:"bolt"})}function Zf(e){return n.jsx(r,{...e,iconKey:"book"})}function Xf(e){return n.jsx(r,{...e,iconKey:"book_online"})}function xf(e){return n.jsx(r,{...e,iconKey:"bookmark"})}function Rf(e){return n.jsx(r,{...e,iconKey:"bookmark_add"})}function eA(e){return n.jsx(r,{...e,iconKey:"bookmark_added"})}function nA(e){return n.jsx(r,{...e,iconKey:"bookmark_border"})}function oA(e){return n.jsx(r,{...e,iconKey:"bookmark_remove"})}function rA(e){return n.jsx(r,{...e,iconKey:"bookmarks"})}function tA(e){return n.jsx(r,{...e,iconKey:"border_all"})}function cA(e){return n.jsx(r,{...e,iconKey:"border_bottom"})}function iA(e){return n.jsx(r,{...e,iconKey:"border_clear"})}function aA(e){return n.jsx(r,{...e,iconKey:"border_color"})}function lA(e){return n.jsx(r,{...e,iconKey:"border_horizontal"})}function sA(e){return n.jsx(r,{...e,iconKey:"border_inner"})}function dA(e){return n.jsx(r,{...e,iconKey:"border_left"})}function uA(e){return n.jsx(r,{...e,iconKey:"border_outer"})}function fA(e){return n.jsx(r,{...e,iconKey:"border_right"})}function AA(e){return n.jsx(r,{...e,iconKey:"border_style"})}function _A(e){return n.jsx(r,{...e,iconKey:"border_top"})}function yA(e){return n.jsx(r,{...e,iconKey:"border_vertical"})}function hA(e){return n.jsx(r,{...e,iconKey:"boy"})}function gA(e){return n.jsx(r,{...e,iconKey:"branding_watermark"})}function IA(e){return n.jsx(r,{...e,iconKey:"breakfast_dining"})}function bA(e){return n.jsx(r,{...e,iconKey:"brightness_1"})}function pA(e){return n.jsx(r,{...e,iconKey:"brightness_2"})}function wA(e){return n.jsx(r,{...e,iconKey:"brightness_3"})}function kA(e){return n.jsx(r,{...e,iconKey:"brightness_4"})}function mA(e){return n.jsx(r,{...e,iconKey:"brightness_5"})}function vA(e){return n.jsx(r,{...e,iconKey:"brightness_6"})}function KA(e){return n.jsx(r,{...e,iconKey:"brightness_7"})}function CA(e){return n.jsx(r,{...e,iconKey:"brightness_auto"})}function SA(e){return n.jsx(r,{...e,iconKey:"brightness_high"})}function BA(e){return n.jsx(r,{...e,iconKey:"brightness_low"})}function EA(e){return n.jsx(r,{...e,iconKey:"brightness_medium"})}function FA(e){return n.jsx(r,{...e,iconKey:"broadcast_on_home"})}function PA(e){return n.jsx(r,{...e,iconKey:"broadcast_on_personal"})}function DA(e){return n.jsx(r,{...e,iconKey:"broken_image"})}function NA(e){return n.jsx(r,{...e,iconKey:"browse_gallery"})}function TA(e){return n.jsx(r,{...e,iconKey:"browser_not_supported"})}function MA(e){return n.jsx(r,{...e,iconKey:"browser_updated"})}function OA(e){return n.jsx(r,{...e,iconKey:"brunch_dining"})}function LA(e){return n.jsx(r,{...e,iconKey:"brush"})}function QA(e){return n.jsx(r,{...e,iconKey:"bubble_chart"})}function VA(e){return n.jsx(r,{...e,iconKey:"bug_report"})}function WA(e){return n.jsx(r,{...e,iconKey:"build"})}function GA(e){return n.jsx(r,{...e,iconKey:"build_circle"})}function zA(e){return n.jsx(r,{...e,iconKey:"bungalow"})}function HA(e){return n.jsx(r,{...e,iconKey:"burst_mode"})}function UA(e){return n.jsx(r,{...e,iconKey:"bus_alert"})}function YA(e){return n.jsx(r,{...e,iconKey:"business"})}function $A(e){return n.jsx(r,{...e,iconKey:"business_center"})}function jA(e){return n.jsx(r,{...e,iconKey:"cabin"})}function qA(e){return n.jsx(r,{...e,iconKey:"cable"})}function JA(e){return n.jsx(r,{...e,iconKey:"cached"})}function ZA(e){return n.jsx(r,{...e,iconKey:"cake"})}function XA(e){return n.jsx(r,{...e,iconKey:"calculate"})}function ac(e){return n.jsx(r,{...e,iconKey:"calendar_month"})}function xA(e){return n.jsx(r,{...e,iconKey:"calendar_today"})}function RA(e){return n.jsx(r,{...e,iconKey:"calendar_view_day"})}function e_(e){return n.jsx(r,{...e,iconKey:"calendar_view_month"})}function n_(e){return n.jsx(r,{...e,iconKey:"calendar_view_week"})}function o_(e){return n.jsx(r,{...e,iconKey:"call"})}function r_(e){return n.jsx(r,{...e,iconKey:"call_end"})}function t_(e){return n.jsx(r,{...e,iconKey:"call_made"})}function c_(e){return n.jsx(r,{...e,iconKey:"call_merge"})}function i_(e){return n.jsx(r,{...e,iconKey:"call_missed"})}function a_(e){return n.jsx(r,{...e,iconKey:"call_missed_outgoing"})}function l_(e){return n.jsx(r,{...e,iconKey:"call_received"})}function s_(e){return n.jsx(r,{...e,iconKey:"call_split"})}function d_(e){return n.jsx(r,{...e,iconKey:"call_to_action"})}function u_(e){return n.jsx(r,{...e,iconKey:"camera"})}function f_(e){return n.jsx(r,{...e,iconKey:"camera_alt"})}function A_(e){return n.jsx(r,{...e,iconKey:"camera_enhance"})}function __(e){return n.jsx(r,{...e,iconKey:"camera_front"})}function y_(e){return n.jsx(r,{...e,iconKey:"camera_indoor"})}function h_(e){return n.jsx(r,{...e,iconKey:"camera_outdoor"})}function g_(e){return n.jsx(r,{...e,iconKey:"camera_rear"})}function I_(e){return n.jsx(r,{...e,iconKey:"camera_roll"})}function b_(e){return n.jsx(r,{...e,iconKey:"cameraswitch"})}function p_(e){return n.jsx(r,{...e,iconKey:"campaign"})}function w_(e){return n.jsx(r,{...e,iconKey:"cancel"})}function k_(e){return n.jsx(r,{...e,iconKey:"cancel_presentation"})}function m_(e){return n.jsx(r,{...e,iconKey:"cancel_schedule_send"})}function v_(e){return n.jsx(r,{...e,iconKey:"candlestick_chart"})}function K_(e){return n.jsx(r,{...e,iconKey:"car_crash"})}function C_(e){return n.jsx(r,{...e,iconKey:"car_rental"})}function S_(e){return n.jsx(r,{...e,iconKey:"car_repair"})}function B_(e){return n.jsx(r,{...e,iconKey:"card_giftcard"})}function E_(e){return n.jsx(r,{...e,iconKey:"card_membership"})}function F_(e){return n.jsx(r,{...e,iconKey:"card_travel"})}function P_(e){return n.jsx(r,{...e,iconKey:"carpenter"})}function D_(e){return n.jsx(r,{...e,iconKey:"cases"})}function N_(e){return n.jsx(r,{...e,iconKey:"casino"})}function T_(e){return n.jsx(r,{...e,iconKey:"cast"})}function M_(e){return n.jsx(r,{...e,iconKey:"cast_connected"})}function O_(e){return n.jsx(r,{...e,iconKey:"cast_for_education"})}function L_(e){return n.jsx(r,{...e,iconKey:"castle"})}function Q_(e){return n.jsx(r,{...e,iconKey:"catching_pokemon"})}function V_(e){return n.jsx(r,{...e,iconKey:"category"})}function W_(e){return n.jsx(r,{...e,iconKey:"celebration"})}function G_(e){return n.jsx(r,{...e,iconKey:"cell_tower"})}function z_(e){return n.jsx(r,{...e,iconKey:"cell_wifi"})}function H_(e){return n.jsx(r,{...e,iconKey:"center_focus_strong"})}function U_(e){return n.jsx(r,{...e,iconKey:"center_focus_weak"})}function Y_(e){return n.jsx(r,{...e,iconKey:"chair"})}function $_(e){return n.jsx(r,{...e,iconKey:"chair_alt"})}function j_(e){return n.jsx(r,{...e,iconKey:"chalet"})}function q_(e){return n.jsx(r,{...e,iconKey:"change_circle"})}function J_(e){return n.jsx(r,{...e,iconKey:"change_history"})}function Z_(e){return n.jsx(r,{...e,iconKey:"charging_station"})}function X_(e){return n.jsx(r,{...e,iconKey:"chat"})}function x_(e){return n.jsx(r,{...e,iconKey:"chat_bubble"})}function R_(e){return n.jsx(r,{...e,iconKey:"chat_bubble_outline"})}function lc(e){return n.jsx(r,{...e,iconKey:"check"})}function ey(e){return n.jsx(r,{...e,iconKey:"check_box"})}function ny(e){return n.jsx(r,{...e,iconKey:"check_box_outline_blank"})}function oy(e){return n.jsx(r,{...e,iconKey:"check_circle"})}function ry(e){return n.jsx(r,{...e,iconKey:"check_circle_outline"})}function ty(e){return n.jsx(r,{...e,iconKey:"checklist"})}function cy(e){return n.jsx(r,{...e,iconKey:"checklist_rtl"})}function iy(e){return n.jsx(r,{...e,iconKey:"checkroom"})}function sc(e){return n.jsx(r,{...e,iconKey:"chevron_left"})}function ay(e){return n.jsx(r,{...e,iconKey:"chevron_right"})}function ly(e){return n.jsx(r,{...e,iconKey:"child_care"})}function sy(e){return n.jsx(r,{...e,iconKey:"child_friendly"})}function dy(e){return n.jsx(r,{...e,iconKey:"chrome_reader_mode"})}function uy(e){return n.jsx(r,{...e,iconKey:"church"})}function gr(e){return n.jsx(r,{...e,iconKey:"circle"})}function fy(e){return n.jsx(r,{...e,iconKey:"circle_notifications"})}function Ay(e){return n.jsx(r,{...e,iconKey:"class"})}function _y(e){return n.jsx(r,{...e,iconKey:"clean_hands"})}function yy(e){return n.jsx(r,{...e,iconKey:"cleaning_services"})}function cn(e){return n.jsx(r,{...e,iconKey:"clear"})}function hy(e){return n.jsx(r,{...e,iconKey:"clear_all"})}function Ir(e){return n.jsx(r,{...e,iconKey:"close"})}function gy(e){return n.jsx(r,{...e,iconKey:"close_fullscreen"})}function Iy(e){return n.jsx(r,{...e,iconKey:"closed_caption"})}function by(e){return n.jsx(r,{...e,iconKey:"closed_caption_disabled"})}function py(e){return n.jsx(r,{...e,iconKey:"closed_caption_off"})}function wy(e){return n.jsx(r,{...e,iconKey:"cloud"})}function ky(e){return n.jsx(r,{...e,iconKey:"cloud_circle"})}function my(e){return n.jsx(r,{...e,iconKey:"cloud_done"})}function vy(e){return n.jsx(r,{...e,iconKey:"cloud_download"})}function Ky(e){return n.jsx(r,{...e,iconKey:"cloud_off"})}function Cy(e){return n.jsx(r,{...e,iconKey:"cloud_queue"})}function Sy(e){return n.jsx(r,{...e,iconKey:"cloud_sync"})}function By(e){return n.jsx(r,{...e,iconKey:"cloud_upload"})}function Ey(e){return n.jsx(r,{...e,iconKey:"co2"})}function Fy(e){return n.jsx(r,{...e,iconKey:"co_present"})}function Py(e){return n.jsx(r,{...e,iconKey:"code"})}function Dy(e){return n.jsx(r,{...e,iconKey:"code_off"})}function Ny(e){return n.jsx(r,{...e,iconKey:"coffee"})}function Ty(e){return n.jsx(r,{...e,iconKey:"coffee_maker"})}function My(e){return n.jsx(r,{...e,iconKey:"collections"})}function Oy(e){return n.jsx(r,{...e,iconKey:"collections_bookmark"})}function Ly(e){return n.jsx(r,{...e,iconKey:"color_lens"})}function Qy(e){return n.jsx(r,{...e,iconKey:"colorize"})}function Vy(e){return n.jsx(r,{...e,iconKey:"comment"})}function Wy(e){return n.jsx(r,{...e,iconKey:"comment_bank"})}function Gy(e){return n.jsx(r,{...e,iconKey:"comments_disabled"})}function zy(e){return n.jsx(r,{...e,iconKey:"commit"})}function Hy(e){return n.jsx(r,{...e,iconKey:"commute"})}function Uy(e){return n.jsx(r,{...e,iconKey:"compare"})}function Yy(e){return n.jsx(r,{...e,iconKey:"compare_arrows"})}function $y(e){return n.jsx(r,{...e,iconKey:"compass_calibration"})}function jy(e){return n.jsx(r,{...e,iconKey:"compost"})}function qy(e){return n.jsx(r,{...e,iconKey:"compress"})}function Jy(e){return n.jsx(r,{...e,iconKey:"computer"})}function Zy(e){return n.jsx(r,{...e,iconKey:"confirmation_number"})}function Xy(e){return n.jsx(r,{...e,iconKey:"connect_without_contact"})}function xy(e){return n.jsx(r,{...e,iconKey:"connected_tv"})}function Ry(e){return n.jsx(r,{...e,iconKey:"connecting_airports"})}function eh(e){return n.jsx(r,{...e,iconKey:"construction"})}function nh(e){return n.jsx(r,{...e,iconKey:"contact_emergency"})}function oh(e){return n.jsx(r,{...e,iconKey:"contact_mail"})}function rh(e){return n.jsx(r,{...e,iconKey:"contact_page"})}function th(e){return n.jsx(r,{...e,iconKey:"contact_phone"})}function ch(e){return n.jsx(r,{...e,iconKey:"contact_support"})}function ih(e){return n.jsx(r,{...e,iconKey:"contactless"})}function ah(e){return n.jsx(r,{...e,iconKey:"contacts"})}function no(e){return n.jsx(r,{...e,iconKey:"content_copy"})}function lh(e){return n.jsx(r,{...e,iconKey:"content_cut"})}function sh(e){return n.jsx(r,{...e,iconKey:"content_paste"})}function dh(e){return n.jsx(r,{...e,iconKey:"content_paste_go"})}function uh(e){return n.jsx(r,{...e,iconKey:"content_paste_off"})}function fh(e){return n.jsx(r,{...e,iconKey:"content_paste_search"})}function Ah(e){return n.jsx(r,{...e,iconKey:"contrast"})}function _h(e){return n.jsx(r,{...e,iconKey:"control_camera"})}function yh(e){return n.jsx(r,{...e,iconKey:"control_point"})}function hh(e){return n.jsx(r,{...e,iconKey:"control_point_duplicate"})}function gh(e){return n.jsx(r,{...e,iconKey:"cookie"})}function Ih(e){return n.jsx(r,{...e,iconKey:"copy_all"})}function bh(e){return n.jsx(r,{...e,iconKey:"copyright"})}function ph(e){return n.jsx(r,{...e,iconKey:"coronavirus"})}function wh(e){return n.jsx(r,{...e,iconKey:"corporate_fare"})}function kh(e){return n.jsx(r,{...e,iconKey:"cottage"})}function mh(e){return n.jsx(r,{...e,iconKey:"countertops"})}function vh(e){return n.jsx(r,{...e,iconKey:"create"})}function Kh(e){return n.jsx(r,{...e,iconKey:"create_new_folder"})}function Ch(e){return n.jsx(r,{...e,iconKey:"credit_card"})}function Sh(e){return n.jsx(r,{...e,iconKey:"credit_card_off"})}function Bh(e){return n.jsx(r,{...e,iconKey:"credit_score"})}function Eh(e){return n.jsx(r,{...e,iconKey:"crib"})}function Fh(e){return n.jsx(r,{...e,iconKey:"crisis_alert"})}function Ph(e){return n.jsx(r,{...e,iconKey:"crop"})}function Dh(e){return n.jsx(r,{...e,iconKey:"crop_16_9"})}function Nh(e){return n.jsx(r,{...e,iconKey:"crop_3_2"})}function Th(e){return n.jsx(r,{...e,iconKey:"crop_5_4"})}function Mh(e){return n.jsx(r,{...e,iconKey:"crop_7_5"})}function Oh(e){return n.jsx(r,{...e,iconKey:"crop_din"})}function Lh(e){return n.jsx(r,{...e,iconKey:"crop_free"})}function Qh(e){return n.jsx(r,{...e,iconKey:"crop_landscape"})}function Vh(e){return n.jsx(r,{...e,iconKey:"crop_original"})}function Wh(e){return n.jsx(r,{...e,iconKey:"crop_portrait"})}function Gh(e){return n.jsx(r,{...e,iconKey:"crop_rotate"})}function zh(e){return n.jsx(r,{...e,iconKey:"crop_square"})}function Hh(e){return n.jsx(r,{...e,iconKey:"cruelty_free"})}function Uh(e){return n.jsx(r,{...e,iconKey:"css"})}function Yh(e){return n.jsx(r,{...e,iconKey:"currency_bitcoin"})}function $h(e){return n.jsx(r,{...e,iconKey:"currency_exchange"})}function jh(e){return n.jsx(r,{...e,iconKey:"currency_franc"})}function qh(e){return n.jsx(r,{...e,iconKey:"currency_lira"})}function Jh(e){return n.jsx(r,{...e,iconKey:"currency_pound"})}function Zh(e){return n.jsx(r,{...e,iconKey:"currency_ruble"})}function Xh(e){return n.jsx(r,{...e,iconKey:"currency_rupee"})}function xh(e){return n.jsx(r,{...e,iconKey:"currency_yen"})}function Rh(e){return n.jsx(r,{...e,iconKey:"currency_yuan"})}function eg(e){return n.jsx(r,{...e,iconKey:"curtains"})}function ng(e){return n.jsx(r,{...e,iconKey:"curtains_closed"})}function og(e){return n.jsx(r,{...e,iconKey:"cyclone"})}function rg(e){return n.jsx(r,{...e,iconKey:"dangerous"})}function dc(e){return n.jsx(r,{...e,iconKey:"dark_mode"})}function tg(e){return n.jsx(r,{...e,iconKey:"dashboard"})}function cg(e){return n.jsx(r,{...e,iconKey:"dashboard_customize"})}function ig(e){return n.jsx(r,{...e,iconKey:"data_array"})}function ag(e){return n.jsx(r,{...e,iconKey:"data_exploration"})}function lg(e){return n.jsx(r,{...e,iconKey:"data_object"})}function sg(e){return n.jsx(r,{...e,iconKey:"data_saver_off"})}function dg(e){return n.jsx(r,{...e,iconKey:"data_saver_on"})}function ug(e){return n.jsx(r,{...e,iconKey:"data_thresholding"})}function fg(e){return n.jsx(r,{...e,iconKey:"data_usage"})}function Ag(e){return n.jsx(r,{...e,iconKey:"dataset"})}function _g(e){return n.jsx(r,{...e,iconKey:"dataset_linked"})}function yg(e){return n.jsx(r,{...e,iconKey:"date_range"})}function hg(e){return n.jsx(r,{...e,iconKey:"deblur"})}function gg(e){return n.jsx(r,{...e,iconKey:"deck"})}function Ig(e){return n.jsx(r,{...e,iconKey:"dehaze"})}function Bo(e){return n.jsx(r,{...e,iconKey:"delete"})}function bg(e){return n.jsx(r,{...e,iconKey:"delete_forever"})}function pg(e){return n.jsx(r,{...e,iconKey:"delete_outline"})}function wg(e){return n.jsx(r,{...e,iconKey:"delete_sweep"})}function kg(e){return n.jsx(r,{...e,iconKey:"delivery_dining"})}function mg(e){return n.jsx(r,{...e,iconKey:"density_large"})}function vg(e){return n.jsx(r,{...e,iconKey:"density_medium"})}function Kg(e){return n.jsx(r,{...e,iconKey:"density_small"})}function Cg(e){return n.jsx(r,{...e,iconKey:"departure_board"})}function uc(e){return n.jsx(r,{...e,iconKey:"description"})}function Sg(e){return n.jsx(r,{...e,iconKey:"deselect"})}function Bg(e){return n.jsx(r,{...e,iconKey:"design_services"})}function Eg(e){return n.jsx(r,{...e,iconKey:"desk"})}function Fg(e){return n.jsx(r,{...e,iconKey:"desktop_access_disabled"})}function Pg(e){return n.jsx(r,{...e,iconKey:"desktop_mac"})}function Dg(e){return n.jsx(r,{...e,iconKey:"desktop_windows"})}function Ng(e){return n.jsx(r,{...e,iconKey:"details"})}function Tg(e){return n.jsx(r,{...e,iconKey:"developer_board"})}function Mg(e){return n.jsx(r,{...e,iconKey:"developer_board_off"})}function Og(e){return n.jsx(r,{...e,iconKey:"developer_mode"})}function Lg(e){return n.jsx(r,{...e,iconKey:"device_hub"})}function Qg(e){return n.jsx(r,{...e,iconKey:"device_thermostat"})}function Vg(e){return n.jsx(r,{...e,iconKey:"device_unknown"})}function Wg(e){return n.jsx(r,{...e,iconKey:"devices"})}function Gg(e){return n.jsx(r,{...e,iconKey:"devices_fold"})}function zg(e){return n.jsx(r,{...e,iconKey:"devices_other"})}function Hg(e){return n.jsx(r,{...e,iconKey:"dialer_sip"})}function Ug(e){return n.jsx(r,{...e,iconKey:"dialpad"})}function Yg(e){return n.jsx(r,{...e,iconKey:"diamond"})}function $g(e){return n.jsx(r,{...e,iconKey:"difference"})}function jg(e){return n.jsx(r,{...e,iconKey:"dining"})}function qg(e){return n.jsx(r,{...e,iconKey:"dinner_dining"})}function Jg(e){return n.jsx(r,{...e,iconKey:"directions"})}function Zg(e){return n.jsx(r,{...e,iconKey:"directions_bike"})}function Xg(e){return n.jsx(r,{...e,iconKey:"directions_boat"})}function xg(e){return n.jsx(r,{...e,iconKey:"directions_boat_filled"})}function Rg(e){return n.jsx(r,{...e,iconKey:"directions_bus"})}function eI(e){return n.jsx(r,{...e,iconKey:"directions_bus_filled"})}function nI(e){return n.jsx(r,{...e,iconKey:"directions_car"})}function oI(e){return n.jsx(r,{...e,iconKey:"directions_car_filled"})}function rI(e){return n.jsx(r,{...e,iconKey:"directions_off"})}function tI(e){return n.jsx(r,{...e,iconKey:"directions_railway"})}function cI(e){return n.jsx(r,{...e,iconKey:"directions_railway_filled"})}function iI(e){return n.jsx(r,{...e,iconKey:"directions_run"})}function aI(e){return n.jsx(r,{...e,iconKey:"directions_subway"})}function lI(e){return n.jsx(r,{...e,iconKey:"directions_subway_filled"})}function sI(e){return n.jsx(r,{...e,iconKey:"directions_transit"})}function dI(e){return n.jsx(r,{...e,iconKey:"directions_transit_filled"})}function uI(e){return n.jsx(r,{...e,iconKey:"directions_walk"})}function fI(e){return n.jsx(r,{...e,iconKey:"dirty_lens"})}function AI(e){return n.jsx(r,{...e,iconKey:"disabled_by_default"})}function _I(e){return n.jsx(r,{...e,iconKey:"disabled_visible"})}function yI(e){return n.jsx(r,{...e,iconKey:"disc_full"})}function hI(e){return n.jsx(r,{...e,iconKey:"discount"})}function gI(e){return n.jsx(r,{...e,iconKey:"display_settings"})}function II(e){return n.jsx(r,{...e,iconKey:"diversity_1"})}function bI(e){return n.jsx(r,{...e,iconKey:"diversity_2"})}function pI(e){return n.jsx(r,{...e,iconKey:"diversity_3"})}function wI(e){return n.jsx(r,{...e,iconKey:"dns"})}function kI(e){return n.jsx(r,{...e,iconKey:"do_disturb"})}function mI(e){return n.jsx(r,{...e,iconKey:"do_disturb_alt"})}function vI(e){return n.jsx(r,{...e,iconKey:"do_disturb_off"})}function KI(e){return n.jsx(r,{...e,iconKey:"do_disturb_on"})}function CI(e){return n.jsx(r,{...e,iconKey:"do_not_disturb"})}function SI(e){return n.jsx(r,{...e,iconKey:"do_not_disturb_alt"})}function BI(e){return n.jsx(r,{...e,iconKey:"do_not_disturb_off"})}function EI(e){return n.jsx(r,{...e,iconKey:"do_not_disturb_on"})}function FI(e){return n.jsx(r,{...e,iconKey:"do_not_disturb_on_total_silence"})}function PI(e){return n.jsx(r,{...e,iconKey:"do_not_step"})}function DI(e){return n.jsx(r,{...e,iconKey:"do_not_touch"})}function NI(e){return n.jsx(r,{...e,iconKey:"dock"})}function TI(e){return n.jsx(r,{...e,iconKey:"document_scanner"})}function MI(e){return n.jsx(r,{...e,iconKey:"domain"})}function OI(e){return n.jsx(r,{...e,iconKey:"domain_add"})}function LI(e){return n.jsx(r,{...e,iconKey:"domain_disabled"})}function QI(e){return n.jsx(r,{...e,iconKey:"domain_verification"})}function VI(e){return n.jsx(r,{...e,iconKey:"done"})}function WI(e){return n.jsx(r,{...e,iconKey:"done_all"})}function GI(e){return n.jsx(r,{...e,iconKey:"done_outline"})}function zI(e){return n.jsx(r,{...e,iconKey:"donut_large"})}function HI(e){return n.jsx(r,{...e,iconKey:"donut_small"})}function UI(e){return n.jsx(r,{...e,iconKey:"door_back"})}function YI(e){return n.jsx(r,{...e,iconKey:"door_front"})}function $I(e){return n.jsx(r,{...e,iconKey:"door_sliding"})}function jI(e){return n.jsx(r,{...e,iconKey:"doorbell"})}function qI(e){return n.jsx(r,{...e,iconKey:"double_arrow"})}function JI(e){return n.jsx(r,{...e,iconKey:"downhill_skiing"})}function ZI(e){return n.jsx(r,{...e,iconKey:"download"})}function XI(e){return n.jsx(r,{...e,iconKey:"download_done"})}function xI(e){return n.jsx(r,{...e,iconKey:"download_for_offline"})}function RI(e){return n.jsx(r,{...e,iconKey:"downloading"})}function eb(e){return n.jsx(r,{...e,iconKey:"drafts"})}function nb(e){return n.jsx(r,{...e,iconKey:"drag_handle"})}function ob(e){return n.jsx(r,{...e,iconKey:"drag_indicator"})}function rb(e){return n.jsx(r,{...e,iconKey:"draw"})}function tb(e){return n.jsx(r,{...e,iconKey:"drive_eta"})}function cb(e){return n.jsx(r,{...e,iconKey:"drive_file_move"})}function ib(e){return n.jsx(r,{...e,iconKey:"drive_file_move_rtl"})}function ab(e){return n.jsx(r,{...e,iconKey:"drive_file_rename_outline"})}function fc(e){return n.jsx(r,{...e,iconKey:"drive_folder_upload"})}function lb(e){return n.jsx(r,{...e,iconKey:"dry"})}function sb(e){return n.jsx(r,{...e,iconKey:"dry_cleaning"})}function db(e){return n.jsx(r,{...e,iconKey:"duo"})}function ub(e){return n.jsx(r,{...e,iconKey:"dvr"})}function fb(e){return n.jsx(r,{...e,iconKey:"dynamic_feed"})}function Ab(e){return n.jsx(r,{...e,iconKey:"dynamic_form"})}function _b(e){return n.jsx(r,{...e,iconKey:"e_mobiledata"})}function yb(e){return n.jsx(r,{...e,iconKey:"earbuds"})}function hb(e){return n.jsx(r,{...e,iconKey:"earbuds_battery"})}function gb(e){return n.jsx(r,{...e,iconKey:"east"})}function Ib(e){return n.jsx(r,{...e,iconKey:"edgesensor_high"})}function bb(e){return n.jsx(r,{...e,iconKey:"edgesensor_low"})}function Ac(e){return n.jsx(r,{...e,iconKey:"edit"})}function pb(e){return n.jsx(r,{...e,iconKey:"edit_attributes"})}function wb(e){return n.jsx(r,{...e,iconKey:"edit_calendar"})}function kb(e){return n.jsx(r,{...e,iconKey:"edit_location"})}function mb(e){return n.jsx(r,{...e,iconKey:"edit_location_alt"})}function vb(e){return n.jsx(r,{...e,iconKey:"edit_note"})}function Kb(e){return n.jsx(r,{...e,iconKey:"edit_notifications"})}function Cb(e){return n.jsx(r,{...e,iconKey:"edit_off"})}function Sb(e){return n.jsx(r,{...e,iconKey:"edit_road"})}function Bb(e){return n.jsx(r,{...e,iconKey:"egg"})}function Eb(e){return n.jsx(r,{...e,iconKey:"egg_alt"})}function Fb(e){return n.jsx(r,{...e,iconKey:"eject"})}function Pb(e){return n.jsx(r,{...e,iconKey:"elderly"})}function Db(e){return n.jsx(r,{...e,iconKey:"elderly_woman"})}function Nb(e){return n.jsx(r,{...e,iconKey:"electric_bike"})}function Tb(e){return n.jsx(r,{...e,iconKey:"electric_bolt"})}function Mb(e){return n.jsx(r,{...e,iconKey:"electric_car"})}function Ob(e){return n.jsx(r,{...e,iconKey:"electric_meter"})}function Lb(e){return n.jsx(r,{...e,iconKey:"electric_moped"})}function Qb(e){return n.jsx(r,{...e,iconKey:"electric_rickshaw"})}function Vb(e){return n.jsx(r,{...e,iconKey:"electric_scooter"})}function Wb(e){return n.jsx(r,{...e,iconKey:"electrical_services"})}function Gb(e){return n.jsx(r,{...e,iconKey:"elevator"})}function _c(e){return n.jsx(r,{...e,iconKey:"email"})}function zb(e){return n.jsx(r,{...e,iconKey:"emergency"})}function Hb(e){return n.jsx(r,{...e,iconKey:"emergency_recording"})}function Ub(e){return n.jsx(r,{...e,iconKey:"emergency_share"})}function Yb(e){return n.jsx(r,{...e,iconKey:"emoji_emotions"})}function $b(e){return n.jsx(r,{...e,iconKey:"emoji_events"})}function jb(e){return n.jsx(r,{...e,iconKey:"emoji_food_beverage"})}function qb(e){return n.jsx(r,{...e,iconKey:"emoji_nature"})}function Jb(e){return n.jsx(r,{...e,iconKey:"emoji_objects"})}function Zb(e){return n.jsx(r,{...e,iconKey:"emoji_people"})}function Xb(e){return n.jsx(r,{...e,iconKey:"emoji_symbols"})}function xb(e){return n.jsx(r,{...e,iconKey:"emoji_transportation"})}function Rb(e){return n.jsx(r,{...e,iconKey:"energy_savings_leaf"})}function ep(e){return n.jsx(r,{...e,iconKey:"engineering"})}function np(e){return n.jsx(r,{...e,iconKey:"enhanced_encryption"})}function op(e){return n.jsx(r,{...e,iconKey:"equalizer"})}function br(e){return n.jsx(r,{...e,iconKey:"error"})}function yc(e){return n.jsx(r,{...e,iconKey:"error_outline"})}function rp(e){return n.jsx(r,{...e,iconKey:"escalator"})}function tp(e){return n.jsx(r,{...e,iconKey:"escalator_warning"})}function cp(e){return n.jsx(r,{...e,iconKey:"euro"})}function ip(e){return n.jsx(r,{...e,iconKey:"euro_symbol"})}function ap(e){return n.jsx(r,{...e,iconKey:"ev_station"})}function lp(e){return n.jsx(r,{...e,iconKey:"event"})}function sp(e){return n.jsx(r,{...e,iconKey:"event_available"})}function dp(e){return n.jsx(r,{...e,iconKey:"event_busy"})}function up(e){return n.jsx(r,{...e,iconKey:"event_note"})}function fp(e){return n.jsx(r,{...e,iconKey:"event_repeat"})}function Ap(e){return n.jsx(r,{...e,iconKey:"event_seat"})}function _p(e){return n.jsx(r,{...e,iconKey:"exit_to_app"})}function yp(e){return n.jsx(r,{...e,iconKey:"expand"})}function hp(e){return n.jsx(r,{...e,iconKey:"expand_circle_down"})}function gp(e){return n.jsx(r,{...e,iconKey:"expand_less"})}function oo(e){return n.jsx(r,{...e,iconKey:"expand_more"})}function Ip(e){return n.jsx(r,{...e,iconKey:"explicit"})}function bp(e){return n.jsx(r,{...e,iconKey:"explore"})}function pp(e){return n.jsx(r,{...e,iconKey:"explore_off"})}function wp(e){return n.jsx(r,{...e,iconKey:"exposure"})}function kp(e){return n.jsx(r,{...e,iconKey:"exposure_neg_1"})}function mp(e){return n.jsx(r,{...e,iconKey:"exposure_neg_2"})}function vp(e){return n.jsx(r,{...e,iconKey:"exposure_plus_1"})}function Kp(e){return n.jsx(r,{...e,iconKey:"exposure_plus_2"})}function Cp(e){return n.jsx(r,{...e,iconKey:"exposure_zero"})}function Sp(e){return n.jsx(r,{...e,iconKey:"extension"})}function Bp(e){return n.jsx(r,{...e,iconKey:"extension_off"})}function Ep(e){return n.jsx(r,{...e,iconKey:"face"})}function Fp(e){return n.jsx(r,{...e,iconKey:"face_2"})}function Pp(e){return n.jsx(r,{...e,iconKey:"face_3"})}function Dp(e){return n.jsx(r,{...e,iconKey:"face_4"})}function Np(e){return n.jsx(r,{...e,iconKey:"face_5"})}function Tp(e){return n.jsx(r,{...e,iconKey:"face_6"})}function Mp(e){return n.jsx(r,{...e,iconKey:"face_retouching_natural"})}function Op(e){return n.jsx(r,{...e,iconKey:"face_retouching_off"})}function Lp(e){return n.jsx(r,{...e,iconKey:"fact_check"})}function Qp(e){return n.jsx(r,{...e,iconKey:"factory"})}function Vp(e){return n.jsx(r,{...e,iconKey:"family_restroom"})}function Wp(e){return n.jsx(r,{...e,iconKey:"fast_forward"})}function Gp(e){return n.jsx(r,{...e,iconKey:"fast_rewind"})}function zp(e){return n.jsx(r,{...e,iconKey:"fastfood"})}function Hp(e){return n.jsx(r,{...e,iconKey:"favorite"})}function Up(e){return n.jsx(r,{...e,iconKey:"favorite_border"})}function Yp(e){return n.jsx(r,{...e,iconKey:"fax"})}function $p(e){return n.jsx(r,{...e,iconKey:"featured_play_list"})}function jp(e){return n.jsx(r,{...e,iconKey:"featured_video"})}function qp(e){return n.jsx(r,{...e,iconKey:"feed"})}function Jp(e){return n.jsx(r,{...e,iconKey:"feedback"})}function Zp(e){return n.jsx(r,{...e,iconKey:"female"})}function Xp(e){return n.jsx(r,{...e,iconKey:"fence"})}function xp(e){return n.jsx(r,{...e,iconKey:"festival"})}function Rp(e){return n.jsx(r,{...e,iconKey:"fiber_dvr"})}function ew(e){return n.jsx(r,{...e,iconKey:"fiber_manual_record"})}function nw(e){return n.jsx(r,{...e,iconKey:"fiber_new"})}function ow(e){return n.jsx(r,{...e,iconKey:"fiber_pin"})}function rw(e){return n.jsx(r,{...e,iconKey:"fiber_smart_record"})}function hc(e){return n.jsx(r,{...e,iconKey:"file_copy"})}function tw(e){return n.jsx(r,{...e,iconKey:"file_download"})}function cw(e){return n.jsx(r,{...e,iconKey:"file_download_done"})}function iw(e){return n.jsx(r,{...e,iconKey:"file_download_off"})}function aw(e){return n.jsx(r,{...e,iconKey:"file_open"})}function lw(e){return n.jsx(r,{...e,iconKey:"file_present"})}function sw(e){return n.jsx(r,{...e,iconKey:"file_upload"})}function dw(e){return n.jsx(r,{...e,iconKey:"filter"})}function uw(e){return n.jsx(r,{...e,iconKey:"filter_1"})}function fw(e){return n.jsx(r,{...e,iconKey:"filter_2"})}function Aw(e){return n.jsx(r,{...e,iconKey:"filter_3"})}function _w(e){return n.jsx(r,{...e,iconKey:"filter_4"})}function yw(e){return n.jsx(r,{...e,iconKey:"filter_5"})}function hw(e){return n.jsx(r,{...e,iconKey:"filter_6"})}function gw(e){return n.jsx(r,{...e,iconKey:"filter_7"})}function Iw(e){return n.jsx(r,{...e,iconKey:"filter_8"})}function bw(e){return n.jsx(r,{...e,iconKey:"filter_9"})}function pw(e){return n.jsx(r,{...e,iconKey:"filter_9_plus"})}function ww(e){return n.jsx(r,{...e,iconKey:"filter_alt"})}function kw(e){return n.jsx(r,{...e,iconKey:"filter_alt_off"})}function mw(e){return n.jsx(r,{...e,iconKey:"filter_b_and_w"})}function vw(e){return n.jsx(r,{...e,iconKey:"filter_center_focus"})}function Kw(e){return n.jsx(r,{...e,iconKey:"filter_drama"})}function Cw(e){return n.jsx(r,{...e,iconKey:"filter_frames"})}function Sw(e){return n.jsx(r,{...e,iconKey:"filter_hdr"})}function Bw(e){return n.jsx(r,{...e,iconKey:"filter_list"})}function gc(e){return n.jsx(r,{...e,iconKey:"filter_list_off"})}function Ew(e){return n.jsx(r,{...e,iconKey:"filter_none"})}function Fw(e){return n.jsx(r,{...e,iconKey:"filter_tilt_shift"})}function Pw(e){return n.jsx(r,{...e,iconKey:"filter_vintage"})}function Dw(e){return n.jsx(r,{...e,iconKey:"find_in_page"})}function Nw(e){return n.jsx(r,{...e,iconKey:"find_replace"})}function Tw(e){return n.jsx(r,{...e,iconKey:"fingerprint"})}function Mw(e){return n.jsx(r,{...e,iconKey:"fire_extinguisher"})}function Ow(e){return n.jsx(r,{...e,iconKey:"fire_hydrant_alt"})}function Lw(e){return n.jsx(r,{...e,iconKey:"fire_truck"})}function Qw(e){return n.jsx(r,{...e,iconKey:"fireplace"})}function Vw(e){return n.jsx(r,{...e,iconKey:"first_page"})}function Ww(e){return n.jsx(r,{...e,iconKey:"fit_screen"})}function Gw(e){return n.jsx(r,{...e,iconKey:"fitbit"})}function zw(e){return n.jsx(r,{...e,iconKey:"fitness_center"})}function Ic(e){return n.jsx(r,{...e,iconKey:"flag"})}function Hw(e){return n.jsx(r,{...e,iconKey:"flag_circle"})}function Uw(e){return n.jsx(r,{...e,iconKey:"flaky"})}function Yw(e){return n.jsx(r,{...e,iconKey:"flare"})}function $w(e){return n.jsx(r,{...e,iconKey:"flash_auto"})}function jw(e){return n.jsx(r,{...e,iconKey:"flash_off"})}function qw(e){return n.jsx(r,{...e,iconKey:"flash_on"})}function Jw(e){return n.jsx(r,{...e,iconKey:"flashlight_off"})}function Zw(e){return n.jsx(r,{...e,iconKey:"flashlight_on"})}function Xw(e){return n.jsx(r,{...e,iconKey:"flatware"})}function xw(e){return n.jsx(r,{...e,iconKey:"flight"})}function Rw(e){return n.jsx(r,{...e,iconKey:"flight_class"})}function ek(e){return n.jsx(r,{...e,iconKey:"flight_land"})}function nk(e){return n.jsx(r,{...e,iconKey:"flight_takeoff"})}function ok(e){return n.jsx(r,{...e,iconKey:"flip"})}function rk(e){return n.jsx(r,{...e,iconKey:"flip_camera_android"})}function tk(e){return n.jsx(r,{...e,iconKey:"flip_camera_ios"})}function ck(e){return n.jsx(r,{...e,iconKey:"flip_to_back"})}function ik(e){return n.jsx(r,{...e,iconKey:"flip_to_front"})}function ak(e){return n.jsx(r,{...e,iconKey:"flood"})}function lk(e){return n.jsx(r,{...e,iconKey:"fluorescent"})}function sk(e){return n.jsx(r,{...e,iconKey:"flutter_dash"})}function dk(e){return n.jsx(r,{...e,iconKey:"fmd_bad"})}function uk(e){return n.jsx(r,{...e,iconKey:"fmd_good"})}function fk(e){return n.jsx(r,{...e,iconKey:"folder"})}function Ak(e){return n.jsx(r,{...e,iconKey:"folder_copy"})}function _k(e){return n.jsx(r,{...e,iconKey:"folder_delete"})}function yk(e){return n.jsx(r,{...e,iconKey:"folder_off"})}function hk(e){return n.jsx(r,{...e,iconKey:"folder_open"})}function gk(e){return n.jsx(r,{...e,iconKey:"folder_shared"})}function Ik(e){return n.jsx(r,{...e,iconKey:"folder_special"})}function bk(e){return n.jsx(r,{...e,iconKey:"folder_zip"})}function pk(e){return n.jsx(r,{...e,iconKey:"follow_the_signs"})}function wk(e){return n.jsx(r,{...e,iconKey:"font_download"})}function kk(e){return n.jsx(r,{...e,iconKey:"font_download_off"})}function mk(e){return n.jsx(r,{...e,iconKey:"food_bank"})}function vk(e){return n.jsx(r,{...e,iconKey:"forest"})}function Kk(e){return n.jsx(r,{...e,iconKey:"fork_left"})}function Ck(e){return n.jsx(r,{...e,iconKey:"fork_right"})}function Sk(e){return n.jsx(r,{...e,iconKey:"format_align_center"})}function Bk(e){return n.jsx(r,{...e,iconKey:"format_align_justify"})}function Ek(e){return n.jsx(r,{...e,iconKey:"format_align_left"})}function Fk(e){return n.jsx(r,{...e,iconKey:"format_align_right"})}function Pk(e){return n.jsx(r,{...e,iconKey:"format_bold"})}function Dk(e){return n.jsx(r,{...e,iconKey:"format_clear"})}function Nk(e){return n.jsx(r,{...e,iconKey:"format_color_fill"})}function Tk(e){return n.jsx(r,{...e,iconKey:"format_color_reset"})}function Mk(e){return n.jsx(r,{...e,iconKey:"format_color_text"})}function Ok(e){return n.jsx(r,{...e,iconKey:"format_indent_decrease"})}function Lk(e){return n.jsx(r,{...e,iconKey:"format_indent_increase"})}function Qk(e){return n.jsx(r,{...e,iconKey:"format_italic"})}function Vk(e){return n.jsx(r,{...e,iconKey:"format_line_spacing"})}function Wk(e){return n.jsx(r,{...e,iconKey:"format_list_bulleted"})}function pr(e){return n.jsx(r,{...e,iconKey:"format_list_numbered"})}function Gk(e){return n.jsx(r,{...e,iconKey:"format_list_numbered_rtl"})}function zk(e){return n.jsx(r,{...e,iconKey:"format_overline"})}function Hk(e){return n.jsx(r,{...e,iconKey:"format_paint"})}function bc(e){return n.jsx(r,{...e,iconKey:"format_quote"})}function Uk(e){return n.jsx(r,{...e,iconKey:"format_shapes"})}function Yk(e){return n.jsx(r,{...e,iconKey:"format_size"})}function $k(e){return n.jsx(r,{...e,iconKey:"format_strikethrough"})}function jk(e){return n.jsx(r,{...e,iconKey:"format_textdirection_l_to_r"})}function qk(e){return n.jsx(r,{...e,iconKey:"format_textdirection_r_to_l"})}function Jk(e){return n.jsx(r,{...e,iconKey:"format_underlined"})}function Zk(e){return n.jsx(r,{...e,iconKey:"fort"})}function Xk(e){return n.jsx(r,{...e,iconKey:"forum"})}function xk(e){return n.jsx(r,{...e,iconKey:"forward"})}function Rk(e){return n.jsx(r,{...e,iconKey:"forward_10"})}function em(e){return n.jsx(r,{...e,iconKey:"forward_30"})}function nm(e){return n.jsx(r,{...e,iconKey:"forward_5"})}function om(e){return n.jsx(r,{...e,iconKey:"forward_to_inbox"})}function rm(e){return n.jsx(r,{...e,iconKey:"foundation"})}function tm(e){return n.jsx(r,{...e,iconKey:"free_breakfast"})}function cm(e){return n.jsx(r,{...e,iconKey:"free_cancellation"})}function im(e){return n.jsx(r,{...e,iconKey:"front_hand"})}function am(e){return n.jsx(r,{...e,iconKey:"fullscreen"})}function lm(e){return n.jsx(r,{...e,iconKey:"fullscreen_exit"})}function pc(e){return n.jsx(r,{...e,iconKey:"functions"})}function sm(e){return n.jsx(r,{...e,iconKey:"g_mobiledata"})}function dm(e){return n.jsx(r,{...e,iconKey:"g_translate"})}function um(e){return n.jsx(r,{...e,iconKey:"gamepad"})}function fm(e){return n.jsx(r,{...e,iconKey:"games"})}function Am(e){return n.jsx(r,{...e,iconKey:"garage"})}function _m(e){return n.jsx(r,{...e,iconKey:"gas_meter"})}function ym(e){return n.jsx(r,{...e,iconKey:"gavel"})}function hm(e){return n.jsx(r,{...e,iconKey:"generating_tokens"})}function gm(e){return n.jsx(r,{...e,iconKey:"gesture"})}function Im(e){return n.jsx(r,{...e,iconKey:"get_app"})}function bm(e){return n.jsx(r,{...e,iconKey:"gif"})}function pm(e){return n.jsx(r,{...e,iconKey:"gif_box"})}function wm(e){return n.jsx(r,{...e,iconKey:"girl"})}function km(e){return n.jsx(r,{...e,iconKey:"gite"})}function mm(e){return n.jsx(r,{...e,iconKey:"golf_course"})}function vm(e){return n.jsx(r,{...e,iconKey:"gpp_bad"})}function Km(e){return n.jsx(r,{...e,iconKey:"gpp_good"})}function Cm(e){return n.jsx(r,{...e,iconKey:"gpp_maybe"})}function Sm(e){return n.jsx(r,{...e,iconKey:"gps_fixed"})}function Bm(e){return n.jsx(r,{...e,iconKey:"gps_not_fixed"})}function Em(e){return n.jsx(r,{...e,iconKey:"gps_off"})}function Fm(e){return n.jsx(r,{...e,iconKey:"grade"})}function Pm(e){return n.jsx(r,{...e,iconKey:"gradient"})}function Dm(e){return n.jsx(r,{...e,iconKey:"grading"})}function Nm(e){return n.jsx(r,{...e,iconKey:"grain"})}function Tm(e){return n.jsx(r,{...e,iconKey:"graphic_eq"})}function Mm(e){return n.jsx(r,{...e,iconKey:"grass"})}function Om(e){return n.jsx(r,{...e,iconKey:"grid_3x3"})}function Lm(e){return n.jsx(r,{...e,iconKey:"grid_4x4"})}function Qm(e){return n.jsx(r,{...e,iconKey:"grid_goldenratio"})}function Vm(e){return n.jsx(r,{...e,iconKey:"grid_off"})}function Wm(e){return n.jsx(r,{...e,iconKey:"grid_on"})}function Gm(e){return n.jsx(r,{...e,iconKey:"grid_view"})}function zm(e){return n.jsx(r,{...e,iconKey:"group"})}function Hm(e){return n.jsx(r,{...e,iconKey:"group_add"})}function Um(e){return n.jsx(r,{...e,iconKey:"group_off"})}function Ym(e){return n.jsx(r,{...e,iconKey:"group_remove"})}function $m(e){return n.jsx(r,{...e,iconKey:"group_work"})}function jm(e){return n.jsx(r,{...e,iconKey:"groups"})}function qm(e){return n.jsx(r,{...e,iconKey:"groups_2"})}function Jm(e){return n.jsx(r,{...e,iconKey:"groups_3"})}function Zm(e){return n.jsx(r,{...e,iconKey:"h_mobiledata"})}function Xm(e){return n.jsx(r,{...e,iconKey:"h_plus_mobiledata"})}function xm(e){return n.jsx(r,{...e,iconKey:"hail"})}function Rm(e){return n.jsx(r,{...e,iconKey:"handshake"})}function ev(e){return n.jsx(r,{...e,iconKey:"handyman"})}function nv(e){return n.jsx(r,{...e,iconKey:"hardware"})}function ov(e){return n.jsx(r,{...e,iconKey:"hd"})}function rv(e){return n.jsx(r,{...e,iconKey:"hdr_auto"})}function tv(e){return n.jsx(r,{...e,iconKey:"hdr_auto_select"})}function cv(e){return n.jsx(r,{...e,iconKey:"hdr_enhanced_select"})}function iv(e){return n.jsx(r,{...e,iconKey:"hdr_off"})}function av(e){return n.jsx(r,{...e,iconKey:"hdr_off_select"})}function lv(e){return n.jsx(r,{...e,iconKey:"hdr_on"})}function sv(e){return n.jsx(r,{...e,iconKey:"hdr_on_select"})}function dv(e){return n.jsx(r,{...e,iconKey:"hdr_plus"})}function uv(e){return n.jsx(r,{...e,iconKey:"hdr_strong"})}function fv(e){return n.jsx(r,{...e,iconKey:"hdr_weak"})}function Av(e){return n.jsx(r,{...e,iconKey:"headphones"})}function _v(e){return n.jsx(r,{...e,iconKey:"headphones_battery"})}function yv(e){return n.jsx(r,{...e,iconKey:"headset"})}function hv(e){return n.jsx(r,{...e,iconKey:"headset_mic"})}function gv(e){return n.jsx(r,{...e,iconKey:"headset_off"})}function Iv(e){return n.jsx(r,{...e,iconKey:"healing"})}function bv(e){return n.jsx(r,{...e,iconKey:"health_and_safety"})}function pv(e){return n.jsx(r,{...e,iconKey:"hearing"})}function wv(e){return n.jsx(r,{...e,iconKey:"hearing_disabled"})}function kv(e){return n.jsx(r,{...e,iconKey:"heart_broken"})}function mv(e){return n.jsx(r,{...e,iconKey:"heat_pump"})}function vv(e){return n.jsx(r,{...e,iconKey:"height"})}function Kv(e){return n.jsx(r,{...e,iconKey:"help"})}function Cv(e){return n.jsx(r,{...e,iconKey:"help_center"})}function Sv(e){return n.jsx(r,{...e,iconKey:"help_outline"})}function Bv(e){return n.jsx(r,{...e,iconKey:"hevc"})}function Ev(e){return n.jsx(r,{...e,iconKey:"hexagon"})}function Fv(e){return n.jsx(r,{...e,iconKey:"hide_image"})}function Pv(e){return n.jsx(r,{...e,iconKey:"hide_source"})}function Dv(e){return n.jsx(r,{...e,iconKey:"high_quality"})}function Nv(e){return n.jsx(r,{...e,iconKey:"highlight"})}function Tv(e){return n.jsx(r,{...e,iconKey:"highlight_alt"})}function Mv(e){return n.jsx(r,{...e,iconKey:"highlight_off"})}function Ov(e){return n.jsx(r,{...e,iconKey:"hiking"})}function Lv(e){return n.jsx(r,{...e,iconKey:"history"})}function Qv(e){return n.jsx(r,{...e,iconKey:"history_edu"})}function Vv(e){return n.jsx(r,{...e,iconKey:"history_toggle_off"})}function Wv(e){return n.jsx(r,{...e,iconKey:"hive"})}function Gv(e){return n.jsx(r,{...e,iconKey:"hls"})}function zv(e){return n.jsx(r,{...e,iconKey:"hls_off"})}function Hv(e){return n.jsx(r,{...e,iconKey:"holiday_village"})}function Uv(e){return n.jsx(r,{...e,iconKey:"home"})}function Yv(e){return n.jsx(r,{...e,iconKey:"home_max"})}function $v(e){return n.jsx(r,{...e,iconKey:"home_mini"})}function jv(e){return n.jsx(r,{...e,iconKey:"home_repair_service"})}function qv(e){return n.jsx(r,{...e,iconKey:"home_work"})}function Jv(e){return n.jsx(r,{...e,iconKey:"horizontal_distribute"})}function Zv(e){return n.jsx(r,{...e,iconKey:"horizontal_rule"})}function Xv(e){return n.jsx(r,{...e,iconKey:"horizontal_split"})}function xv(e){return n.jsx(r,{...e,iconKey:"hot_tub"})}function Rv(e){return n.jsx(r,{...e,iconKey:"hotel"})}function e0(e){return n.jsx(r,{...e,iconKey:"hotel_class"})}function n0(e){return n.jsx(r,{...e,iconKey:"hourglass_bottom"})}function o0(e){return n.jsx(r,{...e,iconKey:"hourglass_disabled"})}function r0(e){return n.jsx(r,{...e,iconKey:"hourglass_empty"})}function t0(e){return n.jsx(r,{...e,iconKey:"hourglass_full"})}function c0(e){return n.jsx(r,{...e,iconKey:"hourglass_top"})}function i0(e){return n.jsx(r,{...e,iconKey:"house"})}function a0(e){return n.jsx(r,{...e,iconKey:"house_siding"})}function l0(e){return n.jsx(r,{...e,iconKey:"houseboat"})}function s0(e){return n.jsx(r,{...e,iconKey:"how_to_reg"})}function d0(e){return n.jsx(r,{...e,iconKey:"how_to_vote"})}function u0(e){return n.jsx(r,{...e,iconKey:"html"})}function wc(e){return n.jsx(r,{...e,iconKey:"http"})}function f0(e){return n.jsx(r,{...e,iconKey:"https"})}function A0(e){return n.jsx(r,{...e,iconKey:"hub"})}function _0(e){return n.jsx(r,{...e,iconKey:"hvac"})}function y0(e){return n.jsx(r,{...e,iconKey:"ice_skating"})}function h0(e){return n.jsx(r,{...e,iconKey:"icecream"})}function g0(e){return n.jsx(r,{...e,iconKey:"image"})}function I0(e){return n.jsx(r,{...e,iconKey:"image_aspect_ratio"})}function b0(e){return n.jsx(r,{...e,iconKey:"image_not_supported"})}function p0(e){return n.jsx(r,{...e,iconKey:"image_search"})}function w0(e){return n.jsx(r,{...e,iconKey:"imagesearch_roller"})}function k0(e){return n.jsx(r,{...e,iconKey:"import_contacts"})}function m0(e){return n.jsx(r,{...e,iconKey:"import_export"})}function v0(e){return n.jsx(r,{...e,iconKey:"important_devices"})}function K0(e){return n.jsx(r,{...e,iconKey:"inbox"})}function C0(e){return n.jsx(r,{...e,iconKey:"incomplete_circle"})}function S0(e){return n.jsx(r,{...e,iconKey:"indeterminate_check_box"})}function kc(e){return n.jsx(r,{...e,iconKey:"info"})}function B0(e){return n.jsx(r,{...e,iconKey:"input"})}function E0(e){return n.jsx(r,{...e,iconKey:"insert_chart"})}function F0(e){return n.jsx(r,{...e,iconKey:"insert_chart_outlined"})}function P0(e){return n.jsx(r,{...e,iconKey:"insert_comment"})}function D0(e){return n.jsx(r,{...e,iconKey:"insert_drive_file"})}function N0(e){return n.jsx(r,{...e,iconKey:"insert_emoticon"})}function T0(e){return n.jsx(r,{...e,iconKey:"insert_invitation"})}function M0(e){return n.jsx(r,{...e,iconKey:"insert_link"})}function O0(e){return n.jsx(r,{...e,iconKey:"insert_page_break"})}function L0(e){return n.jsx(r,{...e,iconKey:"insert_photo"})}function Q0(e){return n.jsx(r,{...e,iconKey:"insights"})}function V0(e){return n.jsx(r,{...e,iconKey:"install_desktop"})}function W0(e){return n.jsx(r,{...e,iconKey:"install_mobile"})}function G0(e){return n.jsx(r,{...e,iconKey:"integration_instructions"})}function z0(e){return n.jsx(r,{...e,iconKey:"interests"})}function H0(e){return n.jsx(r,{...e,iconKey:"interpreter_mode"})}function U0(e){return n.jsx(r,{...e,iconKey:"inventory"})}function Y0(e){return n.jsx(r,{...e,iconKey:"inventory_2"})}function $0(e){return n.jsx(r,{...e,iconKey:"invert_colors"})}function j0(e){return n.jsx(r,{...e,iconKey:"invert_colors_off"})}function q0(e){return n.jsx(r,{...e,iconKey:"ios_share"})}function J0(e){return n.jsx(r,{...e,iconKey:"iron"})}function Z0(e){return n.jsx(r,{...e,iconKey:"iso"})}function X0(e){return n.jsx(r,{...e,iconKey:"javascript"})}function x0(e){return n.jsx(r,{...e,iconKey:"join_full"})}function R0(e){return n.jsx(r,{...e,iconKey:"join_inner"})}function eK(e){return n.jsx(r,{...e,iconKey:"join_left"})}function nK(e){return n.jsx(r,{...e,iconKey:"join_right"})}function oK(e){return n.jsx(r,{...e,iconKey:"kayaking"})}function rK(e){return n.jsx(r,{...e,iconKey:"kebab_dining"})}function tK(e){return n.jsx(r,{...e,iconKey:"key"})}function cK(e){return n.jsx(r,{...e,iconKey:"key_off"})}function iK(e){return n.jsx(r,{...e,iconKey:"keyboard"})}function aK(e){return n.jsx(r,{...e,iconKey:"keyboard_alt"})}function lK(e){return n.jsx(r,{...e,iconKey:"keyboard_arrow_down"})}function sK(e){return n.jsx(r,{...e,iconKey:"keyboard_arrow_left"})}function dK(e){return n.jsx(r,{...e,iconKey:"keyboard_arrow_right"})}function uK(e){return n.jsx(r,{...e,iconKey:"keyboard_arrow_up"})}function fK(e){return n.jsx(r,{...e,iconKey:"keyboard_backspace"})}function AK(e){return n.jsx(r,{...e,iconKey:"keyboard_capslock"})}function _K(e){return n.jsx(r,{...e,iconKey:"keyboard_command_key"})}function yK(e){return n.jsx(r,{...e,iconKey:"keyboard_control_key"})}function hK(e){return n.jsx(r,{...e,iconKey:"keyboard_double_arrow_down"})}function gK(e){return n.jsx(r,{...e,iconKey:"keyboard_double_arrow_left"})}function IK(e){return n.jsx(r,{...e,iconKey:"keyboard_double_arrow_right"})}function bK(e){return n.jsx(r,{...e,iconKey:"keyboard_double_arrow_up"})}function pK(e){return n.jsx(r,{...e,iconKey:"keyboard_hide"})}function wK(e){return n.jsx(r,{...e,iconKey:"keyboard_option_key"})}function kK(e){return n.jsx(r,{...e,iconKey:"keyboard_return"})}function Eo(e){return n.jsx(r,{...e,iconKey:"keyboard_tab"})}function mK(e){return n.jsx(r,{...e,iconKey:"keyboard_voice"})}function vK(e){return n.jsx(r,{...e,iconKey:"king_bed"})}function KK(e){return n.jsx(r,{...e,iconKey:"kitchen"})}function CK(e){return n.jsx(r,{...e,iconKey:"kitesurfing"})}function SK(e){return n.jsx(r,{...e,iconKey:"label"})}function BK(e){return n.jsx(r,{...e,iconKey:"label_important"})}function EK(e){return n.jsx(r,{...e,iconKey:"label_off"})}function FK(e){return n.jsx(r,{...e,iconKey:"lan"})}function PK(e){return n.jsx(r,{...e,iconKey:"landscape"})}function DK(e){return n.jsx(r,{...e,iconKey:"landslide"})}function NK(e){return n.jsx(r,{...e,iconKey:"language"})}function TK(e){return n.jsx(r,{...e,iconKey:"laptop"})}function MK(e){return n.jsx(r,{...e,iconKey:"laptop_chromebook"})}function OK(e){return n.jsx(r,{...e,iconKey:"laptop_mac"})}function LK(e){return n.jsx(r,{...e,iconKey:"laptop_windows"})}function QK(e){return n.jsx(r,{...e,iconKey:"last_page"})}function VK(e){return n.jsx(r,{...e,iconKey:"launch"})}function WK(e){return n.jsx(r,{...e,iconKey:"layers"})}function GK(e){return n.jsx(r,{...e,iconKey:"layers_clear"})}function zK(e){return n.jsx(r,{...e,iconKey:"leaderboard"})}function HK(e){return n.jsx(r,{...e,iconKey:"leak_add"})}function UK(e){return n.jsx(r,{...e,iconKey:"leak_remove"})}function YK(e){return n.jsx(r,{...e,iconKey:"legend_toggle"})}function $K(e){return n.jsx(r,{...e,iconKey:"lens"})}function jK(e){return n.jsx(r,{...e,iconKey:"lens_blur"})}function qK(e){return n.jsx(r,{...e,iconKey:"library_add"})}function JK(e){return n.jsx(r,{...e,iconKey:"library_add_check"})}function ZK(e){return n.jsx(r,{...e,iconKey:"library_books"})}function XK(e){return n.jsx(r,{...e,iconKey:"library_music"})}function xK(e){return n.jsx(r,{...e,iconKey:"light"})}function mc(e){return n.jsx(r,{...e,iconKey:"light_mode"})}function RK(e){return n.jsx(r,{...e,iconKey:"lightbulb"})}function eC(e){return n.jsx(r,{...e,iconKey:"lightbulb_circle"})}function nC(e){return n.jsx(r,{...e,iconKey:"line_axis"})}function oC(e){return n.jsx(r,{...e,iconKey:"line_style"})}function rC(e){return n.jsx(r,{...e,iconKey:"line_weight"})}function tC(e){return n.jsx(r,{...e,iconKey:"linear_scale"})}function vc(e){return n.jsx(r,{...e,iconKey:"link"})}function cC(e){return n.jsx(r,{...e,iconKey:"link_off"})}function iC(e){return n.jsx(r,{...e,iconKey:"linked_camera"})}function aC(e){return n.jsx(r,{...e,iconKey:"liquor"})}function Kc(e){return n.jsx(r,{...e,iconKey:"list"})}function Cc(e){return n.jsx(r,{...e,iconKey:"list_alt"})}function lC(e){return n.jsx(r,{...e,iconKey:"live_help"})}function sC(e){return n.jsx(r,{...e,iconKey:"live_tv"})}function dC(e){return n.jsx(r,{...e,iconKey:"living"})}function uC(e){return n.jsx(r,{...e,iconKey:"local_activity"})}function fC(e){return n.jsx(r,{...e,iconKey:"local_airport"})}function AC(e){return n.jsx(r,{...e,iconKey:"local_atm"})}function _C(e){return n.jsx(r,{...e,iconKey:"local_bar"})}function yC(e){return n.jsx(r,{...e,iconKey:"local_cafe"})}function hC(e){return n.jsx(r,{...e,iconKey:"local_car_wash"})}function gC(e){return n.jsx(r,{...e,iconKey:"local_convenience_store"})}function IC(e){return n.jsx(r,{...e,iconKey:"local_dining"})}function bC(e){return n.jsx(r,{...e,iconKey:"local_drink"})}function pC(e){return n.jsx(r,{...e,iconKey:"local_fire_department"})}function wC(e){return n.jsx(r,{...e,iconKey:"local_florist"})}function kC(e){return n.jsx(r,{...e,iconKey:"local_gas_station"})}function mC(e){return n.jsx(r,{...e,iconKey:"local_grocery_store"})}function vC(e){return n.jsx(r,{...e,iconKey:"local_hospital"})}function KC(e){return n.jsx(r,{...e,iconKey:"local_hotel"})}function CC(e){return n.jsx(r,{...e,iconKey:"local_laundry_service"})}function SC(e){return n.jsx(r,{...e,iconKey:"local_library"})}function BC(e){return n.jsx(r,{...e,iconKey:"local_mall"})}function EC(e){return n.jsx(r,{...e,iconKey:"local_movies"})}function FC(e){return n.jsx(r,{...e,iconKey:"local_offer"})}function PC(e){return n.jsx(r,{...e,iconKey:"local_parking"})}function DC(e){return n.jsx(r,{...e,iconKey:"local_pharmacy"})}function NC(e){return n.jsx(r,{...e,iconKey:"local_phone"})}function TC(e){return n.jsx(r,{...e,iconKey:"local_pizza"})}function MC(e){return n.jsx(r,{...e,iconKey:"local_play"})}function OC(e){return n.jsx(r,{...e,iconKey:"local_police"})}function LC(e){return n.jsx(r,{...e,iconKey:"local_post_office"})}function QC(e){return n.jsx(r,{...e,iconKey:"local_printshop"})}function VC(e){return n.jsx(r,{...e,iconKey:"local_see"})}function WC(e){return n.jsx(r,{...e,iconKey:"local_shipping"})}function GC(e){return n.jsx(r,{...e,iconKey:"local_taxi"})}function zC(e){return n.jsx(r,{...e,iconKey:"location_city"})}function HC(e){return n.jsx(r,{...e,iconKey:"location_disabled"})}function UC(e){return n.jsx(r,{...e,iconKey:"location_off"})}function YC(e){return n.jsx(r,{...e,iconKey:"location_on"})}function $C(e){return n.jsx(r,{...e,iconKey:"location_searching"})}function jC(e){return n.jsx(r,{...e,iconKey:"lock"})}function qC(e){return n.jsx(r,{...e,iconKey:"lock_clock"})}function JC(e){return n.jsx(r,{...e,iconKey:"lock_open"})}function ZC(e){return n.jsx(r,{...e,iconKey:"lock_person"})}function XC(e){return n.jsx(r,{...e,iconKey:"lock_reset"})}function xC(e){return n.jsx(r,{...e,iconKey:"login"})}function RC(e){return n.jsx(r,{...e,iconKey:"logo_dev"})}function Sc(e){return n.jsx(r,{...e,iconKey:"logout"})}function eS(e){return n.jsx(r,{...e,iconKey:"looks"})}function nS(e){return n.jsx(r,{...e,iconKey:"looks_3"})}function oS(e){return n.jsx(r,{...e,iconKey:"looks_4"})}function rS(e){return n.jsx(r,{...e,iconKey:"looks_5"})}function tS(e){return n.jsx(r,{...e,iconKey:"looks_6"})}function cS(e){return n.jsx(r,{...e,iconKey:"looks_one"})}function iS(e){return n.jsx(r,{...e,iconKey:"looks_two"})}function aS(e){return n.jsx(r,{...e,iconKey:"loop"})}function lS(e){return n.jsx(r,{...e,iconKey:"loupe"})}function sS(e){return n.jsx(r,{...e,iconKey:"low_priority"})}function dS(e){return n.jsx(r,{...e,iconKey:"loyalty"})}function uS(e){return n.jsx(r,{...e,iconKey:"lte_mobiledata"})}function fS(e){return n.jsx(r,{...e,iconKey:"lte_plus_mobiledata"})}function AS(e){return n.jsx(r,{...e,iconKey:"luggage"})}function _S(e){return n.jsx(r,{...e,iconKey:"lunch_dining"})}function yS(e){return n.jsx(r,{...e,iconKey:"lyrics"})}function hS(e){return n.jsx(r,{...e,iconKey:"macro_off"})}function gS(e){return n.jsx(r,{...e,iconKey:"mail"})}function IS(e){return n.jsx(r,{...e,iconKey:"mail_lock"})}function bS(e){return n.jsx(r,{...e,iconKey:"mail_outline"})}function pS(e){return n.jsx(r,{...e,iconKey:"male"})}function wS(e){return n.jsx(r,{...e,iconKey:"man"})}function kS(e){return n.jsx(r,{...e,iconKey:"man_2"})}function mS(e){return n.jsx(r,{...e,iconKey:"man_3"})}function vS(e){return n.jsx(r,{...e,iconKey:"man_4"})}function KS(e){return n.jsx(r,{...e,iconKey:"manage_accounts"})}function CS(e){return n.jsx(r,{...e,iconKey:"manage_history"})}function SS(e){return n.jsx(r,{...e,iconKey:"manage_search"})}function BS(e){return n.jsx(r,{...e,iconKey:"map"})}function ES(e){return n.jsx(r,{...e,iconKey:"maps_home_work"})}function FS(e){return n.jsx(r,{...e,iconKey:"maps_ugc"})}function PS(e){return n.jsx(r,{...e,iconKey:"margin"})}function DS(e){return n.jsx(r,{...e,iconKey:"mark_as_unread"})}function NS(e){return n.jsx(r,{...e,iconKey:"mark_chat_read"})}function TS(e){return n.jsx(r,{...e,iconKey:"mark_chat_unread"})}function MS(e){return n.jsx(r,{...e,iconKey:"mark_email_read"})}function OS(e){return n.jsx(r,{...e,iconKey:"mark_email_unread"})}function LS(e){return n.jsx(r,{...e,iconKey:"mark_unread_chat_alt"})}function QS(e){return n.jsx(r,{...e,iconKey:"markunread"})}function VS(e){return n.jsx(r,{...e,iconKey:"markunread_mailbox"})}function WS(e){return n.jsx(r,{...e,iconKey:"masks"})}function GS(e){return n.jsx(r,{...e,iconKey:"maximize"})}function zS(e){return n.jsx(r,{...e,iconKey:"media_bluetooth_off"})}function HS(e){return n.jsx(r,{...e,iconKey:"media_bluetooth_on"})}function US(e){return n.jsx(r,{...e,iconKey:"mediation"})}function YS(e){return n.jsx(r,{...e,iconKey:"medical_information"})}function $S(e){return n.jsx(r,{...e,iconKey:"medical_services"})}function jS(e){return n.jsx(r,{...e,iconKey:"medication"})}function qS(e){return n.jsx(r,{...e,iconKey:"medication_liquid"})}function JS(e){return n.jsx(r,{...e,iconKey:"meeting_room"})}function ZS(e){return n.jsx(r,{...e,iconKey:"memory"})}function wr(e){return n.jsx(r,{...e,iconKey:"menu"})}function XS(e){return n.jsx(r,{...e,iconKey:"menu_book"})}function xS(e){return n.jsx(r,{...e,iconKey:"menu_open"})}function RS(e){return n.jsx(r,{...e,iconKey:"merge"})}function eB(e){return n.jsx(r,{...e,iconKey:"merge_type"})}function nB(e){return n.jsx(r,{...e,iconKey:"message"})}function oB(e){return n.jsx(r,{...e,iconKey:"mic"})}function rB(e){return n.jsx(r,{...e,iconKey:"mic_external_off"})}function tB(e){return n.jsx(r,{...e,iconKey:"mic_external_on"})}function cB(e){return n.jsx(r,{...e,iconKey:"mic_none"})}function iB(e){return n.jsx(r,{...e,iconKey:"mic_off"})}function aB(e){return n.jsx(r,{...e,iconKey:"microwave"})}function lB(e){return n.jsx(r,{...e,iconKey:"military_tech"})}function sB(e){return n.jsx(r,{...e,iconKey:"minimize"})}function dB(e){return n.jsx(r,{...e,iconKey:"minor_crash"})}function uB(e){return n.jsx(r,{...e,iconKey:"miscellaneous_services"})}function fB(e){return n.jsx(r,{...e,iconKey:"missed_video_call"})}function AB(e){return n.jsx(r,{...e,iconKey:"mms"})}function _B(e){return n.jsx(r,{...e,iconKey:"mobile_friendly"})}function yB(e){return n.jsx(r,{...e,iconKey:"mobile_off"})}function hB(e){return n.jsx(r,{...e,iconKey:"mobile_screen_share"})}function gB(e){return n.jsx(r,{...e,iconKey:"mobiledata_off"})}function IB(e){return n.jsx(r,{...e,iconKey:"mode"})}function bB(e){return n.jsx(r,{...e,iconKey:"mode_comment"})}function pB(e){return n.jsx(r,{...e,iconKey:"mode_edit"})}function wB(e){return n.jsx(r,{...e,iconKey:"mode_edit_outline"})}function kB(e){return n.jsx(r,{...e,iconKey:"mode_fan_off"})}function mB(e){return n.jsx(r,{...e,iconKey:"mode_night"})}function vB(e){return n.jsx(r,{...e,iconKey:"mode_of_travel"})}function KB(e){return n.jsx(r,{...e,iconKey:"mode_standby"})}function CB(e){return n.jsx(r,{...e,iconKey:"model_training"})}function SB(e){return n.jsx(r,{...e,iconKey:"monetization_on"})}function BB(e){return n.jsx(r,{...e,iconKey:"money"})}function EB(e){return n.jsx(r,{...e,iconKey:"money_off"})}function FB(e){return n.jsx(r,{...e,iconKey:"money_off_csred"})}function PB(e){return n.jsx(r,{...e,iconKey:"monitor"})}function DB(e){return n.jsx(r,{...e,iconKey:"monitor_heart"})}function NB(e){return n.jsx(r,{...e,iconKey:"monitor_weight"})}function TB(e){return n.jsx(r,{...e,iconKey:"monochrome_photos"})}function MB(e){return n.jsx(r,{...e,iconKey:"mood"})}function OB(e){return n.jsx(r,{...e,iconKey:"mood_bad"})}function LB(e){return n.jsx(r,{...e,iconKey:"moped"})}function QB(e){return n.jsx(r,{...e,iconKey:"more"})}function VB(e){return n.jsx(r,{...e,iconKey:"more_horiz"})}function WB(e){return n.jsx(r,{...e,iconKey:"more_time"})}function kr(e){return n.jsx(r,{...e,iconKey:"more_vert"})}function GB(e){return n.jsx(r,{...e,iconKey:"mosque"})}function zB(e){return n.jsx(r,{...e,iconKey:"motion_photos_auto"})}function HB(e){return n.jsx(r,{...e,iconKey:"motion_photos_off"})}function UB(e){return n.jsx(r,{...e,iconKey:"motion_photos_on"})}function YB(e){return n.jsx(r,{...e,iconKey:"motion_photos_pause"})}function $B(e){return n.jsx(r,{...e,iconKey:"motion_photos_paused"})}function jB(e){return n.jsx(r,{...e,iconKey:"mouse"})}function qB(e){return n.jsx(r,{...e,iconKey:"move_down"})}function JB(e){return n.jsx(r,{...e,iconKey:"move_to_inbox"})}function ZB(e){return n.jsx(r,{...e,iconKey:"move_up"})}function XB(e){return n.jsx(r,{...e,iconKey:"movie"})}function xB(e){return n.jsx(r,{...e,iconKey:"movie_creation"})}function RB(e){return n.jsx(r,{...e,iconKey:"movie_filter"})}function eE(e){return n.jsx(r,{...e,iconKey:"moving"})}function nE(e){return n.jsx(r,{...e,iconKey:"mp"})}function oE(e){return n.jsx(r,{...e,iconKey:"multiline_chart"})}function rE(e){return n.jsx(r,{...e,iconKey:"multiple_stop"})}function tE(e){return n.jsx(r,{...e,iconKey:"museum"})}function cE(e){return n.jsx(r,{...e,iconKey:"music_note"})}function iE(e){return n.jsx(r,{...e,iconKey:"music_off"})}function aE(e){return n.jsx(r,{...e,iconKey:"music_video"})}function lE(e){return n.jsx(r,{...e,iconKey:"my_location"})}function sE(e){return n.jsx(r,{...e,iconKey:"nat"})}function dE(e){return n.jsx(r,{...e,iconKey:"nature"})}function uE(e){return n.jsx(r,{...e,iconKey:"nature_people"})}function fE(e){return n.jsx(r,{...e,iconKey:"navigate_before"})}function AE(e){return n.jsx(r,{...e,iconKey:"navigate_next"})}function _E(e){return n.jsx(r,{...e,iconKey:"navigation"})}function yE(e){return n.jsx(r,{...e,iconKey:"near_me"})}function hE(e){return n.jsx(r,{...e,iconKey:"near_me_disabled"})}function gE(e){return n.jsx(r,{...e,iconKey:"nearby_error"})}function IE(e){return n.jsx(r,{...e,iconKey:"nearby_off"})}function bE(e){return n.jsx(r,{...e,iconKey:"nest_cam_wired_stand"})}function pE(e){return n.jsx(r,{...e,iconKey:"network_cell"})}function wE(e){return n.jsx(r,{...e,iconKey:"network_check"})}function kE(e){return n.jsx(r,{...e,iconKey:"network_locked"})}function mE(e){return n.jsx(r,{...e,iconKey:"network_ping"})}function vE(e){return n.jsx(r,{...e,iconKey:"network_wifi"})}function KE(e){return n.jsx(r,{...e,iconKey:"network_wifi_1_bar"})}function CE(e){return n.jsx(r,{...e,iconKey:"network_wifi_2_bar"})}function SE(e){return n.jsx(r,{...e,iconKey:"network_wifi_3_bar"})}function BE(e){return n.jsx(r,{...e,iconKey:"new_label"})}function EE(e){return n.jsx(r,{...e,iconKey:"new_releases"})}function FE(e){return n.jsx(r,{...e,iconKey:"newspaper"})}function PE(e){return n.jsx(r,{...e,iconKey:"next_plan"})}function DE(e){return n.jsx(r,{...e,iconKey:"next_week"})}function NE(e){return n.jsx(r,{...e,iconKey:"nfc"})}function TE(e){return n.jsx(r,{...e,iconKey:"night_shelter"})}function ME(e){return n.jsx(r,{...e,iconKey:"nightlife"})}function OE(e){return n.jsx(r,{...e,iconKey:"nightlight"})}function LE(e){return n.jsx(r,{...e,iconKey:"nightlight_round"})}function QE(e){return n.jsx(r,{...e,iconKey:"nights_stay"})}function VE(e){return n.jsx(r,{...e,iconKey:"no_accounts"})}function WE(e){return n.jsx(r,{...e,iconKey:"no_adult_content"})}function GE(e){return n.jsx(r,{...e,iconKey:"no_backpack"})}function zE(e){return n.jsx(r,{...e,iconKey:"no_cell"})}function HE(e){return n.jsx(r,{...e,iconKey:"no_crash"})}function UE(e){return n.jsx(r,{...e,iconKey:"no_drinks"})}function YE(e){return n.jsx(r,{...e,iconKey:"no_encryption"})}function $E(e){return n.jsx(r,{...e,iconKey:"no_encryption_gmailerrorred"})}function jE(e){return n.jsx(r,{...e,iconKey:"no_flash"})}function qE(e){return n.jsx(r,{...e,iconKey:"no_food"})}function JE(e){return n.jsx(r,{...e,iconKey:"no_luggage"})}function ZE(e){return n.jsx(r,{...e,iconKey:"no_meals"})}function XE(e){return n.jsx(r,{...e,iconKey:"no_meeting_room"})}function xE(e){return n.jsx(r,{...e,iconKey:"no_photography"})}function RE(e){return n.jsx(r,{...e,iconKey:"no_sim"})}function eF(e){return n.jsx(r,{...e,iconKey:"no_stroller"})}function nF(e){return n.jsx(r,{...e,iconKey:"no_transfer"})}function oF(e){return n.jsx(r,{...e,iconKey:"noise_aware"})}function rF(e){return n.jsx(r,{...e,iconKey:"noise_control_off"})}function tF(e){return n.jsx(r,{...e,iconKey:"nordic_walking"})}function cF(e){return n.jsx(r,{...e,iconKey:"north"})}function iF(e){return n.jsx(r,{...e,iconKey:"north_east"})}function aF(e){return n.jsx(r,{...e,iconKey:"north_west"})}function lF(e){return n.jsx(r,{...e,iconKey:"not_accessible"})}function sF(e){return n.jsx(r,{...e,iconKey:"not_interested"})}function dF(e){return n.jsx(r,{...e,iconKey:"not_listed_location"})}function uF(e){return n.jsx(r,{...e,iconKey:"not_started"})}function fF(e){return n.jsx(r,{...e,iconKey:"note"})}function AF(e){return n.jsx(r,{...e,iconKey:"note_add"})}function _F(e){return n.jsx(r,{...e,iconKey:"note_alt"})}function yF(e){return n.jsx(r,{...e,iconKey:"notes"})}function hF(e){return n.jsx(r,{...e,iconKey:"notification_add"})}function gF(e){return n.jsx(r,{...e,iconKey:"notification_important"})}function IF(e){return n.jsx(r,{...e,iconKey:"notifications"})}function bF(e){return n.jsx(r,{...e,iconKey:"notifications_active"})}function pF(e){return n.jsx(r,{...e,iconKey:"notifications_none"})}function wF(e){return n.jsx(r,{...e,iconKey:"notifications_off"})}function kF(e){return n.jsx(r,{...e,iconKey:"notifications_paused"})}function Bc(e){return n.jsx(r,{...e,iconKey:"numbers"})}function mF(e){return n.jsx(r,{...e,iconKey:"offline_bolt"})}function vF(e){return n.jsx(r,{...e,iconKey:"offline_pin"})}function KF(e){return n.jsx(r,{...e,iconKey:"offline_share"})}function CF(e){return n.jsx(r,{...e,iconKey:"oil_barrel"})}function SF(e){return n.jsx(r,{...e,iconKey:"on_device_training"})}function BF(e){return n.jsx(r,{...e,iconKey:"ondemand_video"})}function EF(e){return n.jsx(r,{...e,iconKey:"online_prediction"})}function FF(e){return n.jsx(r,{...e,iconKey:"opacity"})}function PF(e){return n.jsx(r,{...e,iconKey:"open_in_browser"})}function DF(e){return n.jsx(r,{...e,iconKey:"open_in_full"})}function ro(e){return n.jsx(r,{...e,iconKey:"open_in_new"})}function NF(e){return n.jsx(r,{...e,iconKey:"open_in_new_off"})}function TF(e){return n.jsx(r,{...e,iconKey:"open_with"})}function MF(e){return n.jsx(r,{...e,iconKey:"other_houses"})}function OF(e){return n.jsx(r,{...e,iconKey:"outbound"})}function LF(e){return n.jsx(r,{...e,iconKey:"outbox"})}function QF(e){return n.jsx(r,{...e,iconKey:"outdoor_grill"})}function VF(e){return n.jsx(r,{...e,iconKey:"outlet"})}function WF(e){return n.jsx(r,{...e,iconKey:"outlined_flag"})}function GF(e){return n.jsx(r,{...e,iconKey:"output"})}function zF(e){return n.jsx(r,{...e,iconKey:"padding"})}function HF(e){return n.jsx(r,{...e,iconKey:"pages"})}function UF(e){return n.jsx(r,{...e,iconKey:"pageview"})}function YF(e){return n.jsx(r,{...e,iconKey:"paid"})}function $F(e){return n.jsx(r,{...e,iconKey:"palette"})}function jF(e){return n.jsx(r,{...e,iconKey:"pan_tool"})}function qF(e){return n.jsx(r,{...e,iconKey:"pan_tool_alt"})}function JF(e){return n.jsx(r,{...e,iconKey:"panorama"})}function ZF(e){return n.jsx(r,{...e,iconKey:"panorama_fish_eye"})}function XF(e){return n.jsx(r,{...e,iconKey:"panorama_horizontal"})}function xF(e){return n.jsx(r,{...e,iconKey:"panorama_horizontal_select"})}function RF(e){return n.jsx(r,{...e,iconKey:"panorama_photosphere"})}function eP(e){return n.jsx(r,{...e,iconKey:"panorama_photosphere_select"})}function nP(e){return n.jsx(r,{...e,iconKey:"panorama_vertical"})}function oP(e){return n.jsx(r,{...e,iconKey:"panorama_vertical_select"})}function rP(e){return n.jsx(r,{...e,iconKey:"panorama_wide_angle"})}function tP(e){return n.jsx(r,{...e,iconKey:"panorama_wide_angle_select"})}function cP(e){return n.jsx(r,{...e,iconKey:"paragliding"})}function iP(e){return n.jsx(r,{...e,iconKey:"park"})}function aP(e){return n.jsx(r,{...e,iconKey:"party_mode"})}function lP(e){return n.jsx(r,{...e,iconKey:"password"})}function sP(e){return n.jsx(r,{...e,iconKey:"pattern"})}function dP(e){return n.jsx(r,{...e,iconKey:"pause"})}function uP(e){return n.jsx(r,{...e,iconKey:"pause_circle"})}function fP(e){return n.jsx(r,{...e,iconKey:"pause_circle_filled"})}function AP(e){return n.jsx(r,{...e,iconKey:"pause_circle_outline"})}function _P(e){return n.jsx(r,{...e,iconKey:"pause_presentation"})}function yP(e){return n.jsx(r,{...e,iconKey:"payment"})}function hP(e){return n.jsx(r,{...e,iconKey:"payments"})}function gP(e){return n.jsx(r,{...e,iconKey:"pedal_bike"})}function IP(e){return n.jsx(r,{...e,iconKey:"pending"})}function bP(e){return n.jsx(r,{...e,iconKey:"pending_actions"})}function pP(e){return n.jsx(r,{...e,iconKey:"pentagon"})}function wP(e){return n.jsx(r,{...e,iconKey:"people"})}function kP(e){return n.jsx(r,{...e,iconKey:"people_alt"})}function mP(e){return n.jsx(r,{...e,iconKey:"people_outline"})}function vP(e){return n.jsx(r,{...e,iconKey:"percent"})}function KP(e){return n.jsx(r,{...e,iconKey:"perm_camera_mic"})}function CP(e){return n.jsx(r,{...e,iconKey:"perm_contact_calendar"})}function SP(e){return n.jsx(r,{...e,iconKey:"perm_data_setting"})}function BP(e){return n.jsx(r,{...e,iconKey:"perm_device_information"})}function EP(e){return n.jsx(r,{...e,iconKey:"perm_identity"})}function FP(e){return n.jsx(r,{...e,iconKey:"perm_media"})}function PP(e){return n.jsx(r,{...e,iconKey:"perm_phone_msg"})}function DP(e){return n.jsx(r,{...e,iconKey:"perm_scan_wifi"})}function NP(e){return n.jsx(r,{...e,iconKey:"person"})}function TP(e){return n.jsx(r,{...e,iconKey:"person_2"})}function MP(e){return n.jsx(r,{...e,iconKey:"person_3"})}function OP(e){return n.jsx(r,{...e,iconKey:"person_4"})}function LP(e){return n.jsx(r,{...e,iconKey:"person_add"})}function QP(e){return n.jsx(r,{...e,iconKey:"person_add_alt"})}function VP(e){return n.jsx(r,{...e,iconKey:"person_add_alt_1"})}function WP(e){return n.jsx(r,{...e,iconKey:"person_add_disabled"})}function GP(e){return n.jsx(r,{...e,iconKey:"person_off"})}function zP(e){return n.jsx(r,{...e,iconKey:"person_outline"})}function HP(e){return n.jsx(r,{...e,iconKey:"person_pin"})}function UP(e){return n.jsx(r,{...e,iconKey:"person_pin_circle"})}function YP(e){return n.jsx(r,{...e,iconKey:"person_remove"})}function $P(e){return n.jsx(r,{...e,iconKey:"person_remove_alt_1"})}function jP(e){return n.jsx(r,{...e,iconKey:"person_search"})}function qP(e){return n.jsx(r,{...e,iconKey:"personal_injury"})}function JP(e){return n.jsx(r,{...e,iconKey:"personal_video"})}function ZP(e){return n.jsx(r,{...e,iconKey:"pest_control"})}function XP(e){return n.jsx(r,{...e,iconKey:"pest_control_rodent"})}function xP(e){return n.jsx(r,{...e,iconKey:"pets"})}function RP(e){return n.jsx(r,{...e,iconKey:"phishing"})}function e1(e){return n.jsx(r,{...e,iconKey:"phone"})}function n1(e){return n.jsx(r,{...e,iconKey:"phone_android"})}function o1(e){return n.jsx(r,{...e,iconKey:"phone_bluetooth_speaker"})}function r1(e){return n.jsx(r,{...e,iconKey:"phone_callback"})}function t1(e){return n.jsx(r,{...e,iconKey:"phone_disabled"})}function c1(e){return n.jsx(r,{...e,iconKey:"phone_enabled"})}function i1(e){return n.jsx(r,{...e,iconKey:"phone_forwarded"})}function a1(e){return n.jsx(r,{...e,iconKey:"phone_iphone"})}function l1(e){return n.jsx(r,{...e,iconKey:"phone_locked"})}function s1(e){return n.jsx(r,{...e,iconKey:"phone_missed"})}function d1(e){return n.jsx(r,{...e,iconKey:"phone_paused"})}function u1(e){return n.jsx(r,{...e,iconKey:"phonelink"})}function f1(e){return n.jsx(r,{...e,iconKey:"phonelink_erase"})}function A1(e){return n.jsx(r,{...e,iconKey:"phonelink_lock"})}function _1(e){return n.jsx(r,{...e,iconKey:"phonelink_off"})}function y1(e){return n.jsx(r,{...e,iconKey:"phonelink_ring"})}function h1(e){return n.jsx(r,{...e,iconKey:"phonelink_setup"})}function g1(e){return n.jsx(r,{...e,iconKey:"photo"})}function I1(e){return n.jsx(r,{...e,iconKey:"photo_album"})}function b1(e){return n.jsx(r,{...e,iconKey:"photo_camera"})}function p1(e){return n.jsx(r,{...e,iconKey:"photo_camera_back"})}function w1(e){return n.jsx(r,{...e,iconKey:"photo_camera_front"})}function k1(e){return n.jsx(r,{...e,iconKey:"photo_filter"})}function m1(e){return n.jsx(r,{...e,iconKey:"photo_library"})}function v1(e){return n.jsx(r,{...e,iconKey:"photo_size_select_actual"})}function K1(e){return n.jsx(r,{...e,iconKey:"photo_size_select_large"})}function C1(e){return n.jsx(r,{...e,iconKey:"photo_size_select_small"})}function S1(e){return n.jsx(r,{...e,iconKey:"php"})}function B1(e){return n.jsx(r,{...e,iconKey:"piano"})}function E1(e){return n.jsx(r,{...e,iconKey:"piano_off"})}function F1(e){return n.jsx(r,{...e,iconKey:"picture_as_pdf"})}function P1(e){return n.jsx(r,{...e,iconKey:"picture_in_picture"})}function D1(e){return n.jsx(r,{...e,iconKey:"picture_in_picture_alt"})}function N1(e){return n.jsx(r,{...e,iconKey:"pie_chart"})}function T1(e){return n.jsx(r,{...e,iconKey:"pie_chart_outline"})}function M1(e){return n.jsx(r,{...e,iconKey:"pin"})}function O1(e){return n.jsx(r,{...e,iconKey:"pin_drop"})}function L1(e){return n.jsx(r,{...e,iconKey:"pin_end"})}function Q1(e){return n.jsx(r,{...e,iconKey:"pin_invoke"})}function V1(e){return n.jsx(r,{...e,iconKey:"pinch"})}function W1(e){return n.jsx(r,{...e,iconKey:"pivot_table_chart"})}function G1(e){return n.jsx(r,{...e,iconKey:"pix"})}function z1(e){return n.jsx(r,{...e,iconKey:"place"})}function H1(e){return n.jsx(r,{...e,iconKey:"plagiarism"})}function U1(e){return n.jsx(r,{...e,iconKey:"play_arrow"})}function Y1(e){return n.jsx(r,{...e,iconKey:"play_circle"})}function $1(e){return n.jsx(r,{...e,iconKey:"play_circle_filled"})}function j1(e){return n.jsx(r,{...e,iconKey:"play_circle_outline"})}function q1(e){return n.jsx(r,{...e,iconKey:"play_disabled"})}function J1(e){return n.jsx(r,{...e,iconKey:"play_for_work"})}function Z1(e){return n.jsx(r,{...e,iconKey:"play_lesson"})}function X1(e){return n.jsx(r,{...e,iconKey:"playlist_add"})}function x1(e){return n.jsx(r,{...e,iconKey:"playlist_add_check"})}function R1(e){return n.jsx(r,{...e,iconKey:"playlist_add_check_circle"})}function eD(e){return n.jsx(r,{...e,iconKey:"playlist_add_circle"})}function nD(e){return n.jsx(r,{...e,iconKey:"playlist_play"})}function oD(e){return n.jsx(r,{...e,iconKey:"playlist_remove"})}function rD(e){return n.jsx(r,{...e,iconKey:"plumbing"})}function tD(e){return n.jsx(r,{...e,iconKey:"plus_one"})}function cD(e){return n.jsx(r,{...e,iconKey:"podcasts"})}function iD(e){return n.jsx(r,{...e,iconKey:"point_of_sale"})}function aD(e){return n.jsx(r,{...e,iconKey:"policy"})}function lD(e){return n.jsx(r,{...e,iconKey:"poll"})}function sD(e){return n.jsx(r,{...e,iconKey:"polyline"})}function dD(e){return n.jsx(r,{...e,iconKey:"polymer"})}function uD(e){return n.jsx(r,{...e,iconKey:"pool"})}function fD(e){return n.jsx(r,{...e,iconKey:"portable_wifi_off"})}function AD(e){return n.jsx(r,{...e,iconKey:"portrait"})}function _D(e){return n.jsx(r,{...e,iconKey:"post_add"})}function yD(e){return n.jsx(r,{...e,iconKey:"power"})}function hD(e){return n.jsx(r,{...e,iconKey:"power_input"})}function gD(e){return n.jsx(r,{...e,iconKey:"power_off"})}function ID(e){return n.jsx(r,{...e,iconKey:"power_settings_new"})}function bD(e){return n.jsx(r,{...e,iconKey:"precision_manufacturing"})}function pD(e){return n.jsx(r,{...e,iconKey:"pregnant_woman"})}function wD(e){return n.jsx(r,{...e,iconKey:"present_to_all"})}function kD(e){return n.jsx(r,{...e,iconKey:"preview"})}function mD(e){return n.jsx(r,{...e,iconKey:"price_change"})}function vD(e){return n.jsx(r,{...e,iconKey:"price_check"})}function KD(e){return n.jsx(r,{...e,iconKey:"print"})}function CD(e){return n.jsx(r,{...e,iconKey:"print_disabled"})}function SD(e){return n.jsx(r,{...e,iconKey:"priority_high"})}function BD(e){return n.jsx(r,{...e,iconKey:"privacy_tip"})}function ED(e){return n.jsx(r,{...e,iconKey:"private_connectivity"})}function FD(e){return n.jsx(r,{...e,iconKey:"production_quantity_limits"})}function PD(e){return n.jsx(r,{...e,iconKey:"propane"})}function DD(e){return n.jsx(r,{...e,iconKey:"propane_tank"})}function ND(e){return n.jsx(r,{...e,iconKey:"psychology"})}function TD(e){return n.jsx(r,{...e,iconKey:"psychology_alt"})}function MD(e){return n.jsx(r,{...e,iconKey:"public"})}function OD(e){return n.jsx(r,{...e,iconKey:"public_off"})}function LD(e){return n.jsx(r,{...e,iconKey:"publish"})}function QD(e){return n.jsx(r,{...e,iconKey:"published_with_changes"})}function VD(e){return n.jsx(r,{...e,iconKey:"punch_clock"})}function WD(e){return n.jsx(r,{...e,iconKey:"push_pin"})}function GD(e){return n.jsx(r,{...e,iconKey:"qr_code"})}function zD(e){return n.jsx(r,{...e,iconKey:"qr_code_2"})}function HD(e){return n.jsx(r,{...e,iconKey:"qr_code_scanner"})}function UD(e){return n.jsx(r,{...e,iconKey:"query_builder"})}function YD(e){return n.jsx(r,{...e,iconKey:"query_stats"})}function $D(e){return n.jsx(r,{...e,iconKey:"question_answer"})}function jD(e){return n.jsx(r,{...e,iconKey:"question_mark"})}function qD(e){return n.jsx(r,{...e,iconKey:"queue"})}function JD(e){return n.jsx(r,{...e,iconKey:"queue_music"})}function ZD(e){return n.jsx(r,{...e,iconKey:"queue_play_next"})}function XD(e){return n.jsx(r,{...e,iconKey:"quickreply"})}function xD(e){return n.jsx(r,{...e,iconKey:"quiz"})}function RD(e){return n.jsx(r,{...e,iconKey:"r_mobiledata"})}function eN(e){return n.jsx(r,{...e,iconKey:"radar"})}function nN(e){return n.jsx(r,{...e,iconKey:"radio"})}function oN(e){return n.jsx(r,{...e,iconKey:"radio_button_checked"})}function rN(e){return n.jsx(r,{...e,iconKey:"radio_button_unchecked"})}function tN(e){return n.jsx(r,{...e,iconKey:"railway_alert"})}function cN(e){return n.jsx(r,{...e,iconKey:"ramen_dining"})}function iN(e){return n.jsx(r,{...e,iconKey:"ramp_left"})}function aN(e){return n.jsx(r,{...e,iconKey:"ramp_right"})}function lN(e){return n.jsx(r,{...e,iconKey:"rate_review"})}function sN(e){return n.jsx(r,{...e,iconKey:"raw_off"})}function dN(e){return n.jsx(r,{...e,iconKey:"raw_on"})}function uN(e){return n.jsx(r,{...e,iconKey:"read_more"})}function fN(e){return n.jsx(r,{...e,iconKey:"real_estate_agent"})}function AN(e){return n.jsx(r,{...e,iconKey:"receipt"})}function _N(e){return n.jsx(r,{...e,iconKey:"receipt_long"})}function yN(e){return n.jsx(r,{...e,iconKey:"recent_actors"})}function hN(e){return n.jsx(r,{...e,iconKey:"recommend"})}function gN(e){return n.jsx(r,{...e,iconKey:"record_voice_over"})}function IN(e){return n.jsx(r,{...e,iconKey:"rectangle"})}function bN(e){return n.jsx(r,{...e,iconKey:"recycling"})}function pN(e){return n.jsx(r,{...e,iconKey:"redeem"})}function wN(e){return n.jsx(r,{...e,iconKey:"redo"})}function kN(e){return n.jsx(r,{...e,iconKey:"reduce_capacity"})}function mN(e){return n.jsx(r,{...e,iconKey:"refresh"})}function vN(e){return n.jsx(r,{...e,iconKey:"remember_me"})}function to(e){return n.jsx(r,{...e,iconKey:"remove"})}function Ec(e){return n.jsx(r,{...e,iconKey:"remove_circle"})}function KN(e){return n.jsx(r,{...e,iconKey:"remove_circle_outline"})}function CN(e){return n.jsx(r,{...e,iconKey:"remove_done"})}function SN(e){return n.jsx(r,{...e,iconKey:"remove_from_queue"})}function BN(e){return n.jsx(r,{...e,iconKey:"remove_moderator"})}function EN(e){return n.jsx(r,{...e,iconKey:"remove_red_eye"})}function FN(e){return n.jsx(r,{...e,iconKey:"remove_road"})}function PN(e){return n.jsx(r,{...e,iconKey:"remove_shopping_cart"})}function DN(e){return n.jsx(r,{...e,iconKey:"reorder"})}function NN(e){return n.jsx(r,{...e,iconKey:"repartition"})}function mr(e){return n.jsx(r,{...e,iconKey:"repeat"})}function TN(e){return n.jsx(r,{...e,iconKey:"repeat_on"})}function MN(e){return n.jsx(r,{...e,iconKey:"repeat_one"})}function ON(e){return n.jsx(r,{...e,iconKey:"repeat_one_on"})}function LN(e){return n.jsx(r,{...e,iconKey:"replay"})}function QN(e){return n.jsx(r,{...e,iconKey:"replay_10"})}function VN(e){return n.jsx(r,{...e,iconKey:"replay_30"})}function WN(e){return n.jsx(r,{...e,iconKey:"replay_5"})}function GN(e){return n.jsx(r,{...e,iconKey:"replay_circle_filled"})}function zN(e){return n.jsx(r,{...e,iconKey:"reply"})}function HN(e){return n.jsx(r,{...e,iconKey:"reply_all"})}function UN(e){return n.jsx(r,{...e,iconKey:"report"})}function YN(e){return n.jsx(r,{...e,iconKey:"report_gmailerrorred"})}function $N(e){return n.jsx(r,{...e,iconKey:"report_off"})}function jN(e){return n.jsx(r,{...e,iconKey:"report_problem"})}function qN(e){return n.jsx(r,{...e,iconKey:"request_page"})}function JN(e){return n.jsx(r,{...e,iconKey:"request_quote"})}function ZN(e){return n.jsx(r,{...e,iconKey:"reset_tv"})}function XN(e){return n.jsx(r,{...e,iconKey:"restart_alt"})}function xN(e){return n.jsx(r,{...e,iconKey:"restaurant"})}function RN(e){return n.jsx(r,{...e,iconKey:"restaurant_menu"})}function eT(e){return n.jsx(r,{...e,iconKey:"restore"})}function nT(e){return n.jsx(r,{...e,iconKey:"restore_from_trash"})}function oT(e){return n.jsx(r,{...e,iconKey:"restore_page"})}function rT(e){return n.jsx(r,{...e,iconKey:"reviews"})}function tT(e){return n.jsx(r,{...e,iconKey:"rice_bowl"})}function cT(e){return n.jsx(r,{...e,iconKey:"ring_volume"})}function iT(e){return n.jsx(r,{...e,iconKey:"rocket"})}function aT(e){return n.jsx(r,{...e,iconKey:"rocket_launch"})}function lT(e){return n.jsx(r,{...e,iconKey:"roller_shades"})}function sT(e){return n.jsx(r,{...e,iconKey:"roller_shades_closed"})}function dT(e){return n.jsx(r,{...e,iconKey:"roller_skating"})}function uT(e){return n.jsx(r,{...e,iconKey:"roofing"})}function fT(e){return n.jsx(r,{...e,iconKey:"room"})}function AT(e){return n.jsx(r,{...e,iconKey:"room_preferences"})}function _T(e){return n.jsx(r,{...e,iconKey:"room_service"})}function yT(e){return n.jsx(r,{...e,iconKey:"rotate_90_degrees_ccw"})}function hT(e){return n.jsx(r,{...e,iconKey:"rotate_90_degrees_cw"})}function gT(e){return n.jsx(r,{...e,iconKey:"rotate_left"})}function IT(e){return n.jsx(r,{...e,iconKey:"rotate_right"})}function bT(e){return n.jsx(r,{...e,iconKey:"roundabout_left"})}function pT(e){return n.jsx(r,{...e,iconKey:"roundabout_right"})}function wT(e){return n.jsx(r,{...e,iconKey:"rounded_corner"})}function kT(e){return n.jsx(r,{...e,iconKey:"route"})}function mT(e){return n.jsx(r,{...e,iconKey:"router"})}function vT(e){return n.jsx(r,{...e,iconKey:"rowing"})}function KT(e){return n.jsx(r,{...e,iconKey:"rss_feed"})}function CT(e){return n.jsx(r,{...e,iconKey:"rsvp"})}function ST(e){return n.jsx(r,{...e,iconKey:"rtt"})}function BT(e){return n.jsx(r,{...e,iconKey:"rule"})}function ET(e){return n.jsx(r,{...e,iconKey:"rule_folder"})}function FT(e){return n.jsx(r,{...e,iconKey:"run_circle"})}function PT(e){return n.jsx(r,{...e,iconKey:"running_with_errors"})}function DT(e){return n.jsx(r,{...e,iconKey:"rv_hookup"})}function NT(e){return n.jsx(r,{...e,iconKey:"safety_check"})}function TT(e){return n.jsx(r,{...e,iconKey:"safety_divider"})}function MT(e){return n.jsx(r,{...e,iconKey:"sailing"})}function OT(e){return n.jsx(r,{...e,iconKey:"sanitizer"})}function LT(e){return n.jsx(r,{...e,iconKey:"satellite"})}function QT(e){return n.jsx(r,{...e,iconKey:"satellite_alt"})}function VT(e){return n.jsx(r,{...e,iconKey:"save"})}function WT(e){return n.jsx(r,{...e,iconKey:"save_alt"})}function GT(e){return n.jsx(r,{...e,iconKey:"save_as"})}function zT(e){return n.jsx(r,{...e,iconKey:"saved_search"})}function HT(e){return n.jsx(r,{...e,iconKey:"savings"})}function UT(e){return n.jsx(r,{...e,iconKey:"scale"})}function YT(e){return n.jsx(r,{...e,iconKey:"scanner"})}function $T(e){return n.jsx(r,{...e,iconKey:"scatter_plot"})}function Fc(e){return n.jsx(r,{...e,iconKey:"schedule"})}function jT(e){return n.jsx(r,{...e,iconKey:"schedule_send"})}function qT(e){return n.jsx(r,{...e,iconKey:"schema"})}function JT(e){return n.jsx(r,{...e,iconKey:"school"})}function ZT(e){return n.jsx(r,{...e,iconKey:"science"})}function XT(e){return n.jsx(r,{...e,iconKey:"score"})}function xT(e){return n.jsx(r,{...e,iconKey:"scoreboard"})}function RT(e){return n.jsx(r,{...e,iconKey:"screen_lock_landscape"})}function eM(e){return n.jsx(r,{...e,iconKey:"screen_lock_portrait"})}function nM(e){return n.jsx(r,{...e,iconKey:"screen_lock_rotation"})}function oM(e){return n.jsx(r,{...e,iconKey:"screen_rotation"})}function rM(e){return n.jsx(r,{...e,iconKey:"screen_rotation_alt"})}function tM(e){return n.jsx(r,{...e,iconKey:"screen_search_desktop"})}function cM(e){return n.jsx(r,{...e,iconKey:"screen_share"})}function iM(e){return n.jsx(r,{...e,iconKey:"screenshot"})}function aM(e){return n.jsx(r,{...e,iconKey:"screenshot_monitor"})}function lM(e){return n.jsx(r,{...e,iconKey:"scuba_diving"})}function sM(e){return n.jsx(r,{...e,iconKey:"sd"})}function dM(e){return n.jsx(r,{...e,iconKey:"sd_card"})}function uM(e){return n.jsx(r,{...e,iconKey:"sd_card_alert"})}function fM(e){return n.jsx(r,{...e,iconKey:"sd_storage"})}function AM(e){return n.jsx(r,{...e,iconKey:"search_off"})}function _M(e){return n.jsx(r,{...e,iconKey:"security"})}function yM(e){return n.jsx(r,{...e,iconKey:"security_update"})}function hM(e){return n.jsx(r,{...e,iconKey:"security_update_good"})}function gM(e){return n.jsx(r,{...e,iconKey:"security_update_warning"})}function IM(e){return n.jsx(r,{...e,iconKey:"segment"})}function bM(e){return n.jsx(r,{...e,iconKey:"select_all"})}function pM(e){return n.jsx(r,{...e,iconKey:"self_improvement"})}function wM(e){return n.jsx(r,{...e,iconKey:"sell"})}function kM(e){return n.jsx(r,{...e,iconKey:"send"})}function mM(e){return n.jsx(r,{...e,iconKey:"send_and_archive"})}function vM(e){return n.jsx(r,{...e,iconKey:"send_time_extension"})}function KM(e){return n.jsx(r,{...e,iconKey:"send_to_mobile"})}function CM(e){return n.jsx(r,{...e,iconKey:"sensor_door"})}function SM(e){return n.jsx(r,{...e,iconKey:"sensor_occupied"})}function BM(e){return n.jsx(r,{...e,iconKey:"sensor_window"})}function EM(e){return n.jsx(r,{...e,iconKey:"sensors"})}function FM(e){return n.jsx(r,{...e,iconKey:"sensors_off"})}function PM(e){return n.jsx(r,{...e,iconKey:"sentiment_dissatisfied"})}function DM(e){return n.jsx(r,{...e,iconKey:"sentiment_neutral"})}function NM(e){return n.jsx(r,{...e,iconKey:"sentiment_satisfied"})}function TM(e){return n.jsx(r,{...e,iconKey:"sentiment_satisfied_alt"})}function MM(e){return n.jsx(r,{...e,iconKey:"sentiment_very_dissatisfied"})}function OM(e){return n.jsx(r,{...e,iconKey:"sentiment_very_satisfied"})}function LM(e){return n.jsx(r,{...e,iconKey:"set_meal"})}function QM(e){return n.jsx(r,{...e,iconKey:"settings"})}function VM(e){return n.jsx(r,{...e,iconKey:"settings_accessibility"})}function WM(e){return n.jsx(r,{...e,iconKey:"settings_applications"})}function GM(e){return n.jsx(r,{...e,iconKey:"settings_backup_restore"})}function zM(e){return n.jsx(r,{...e,iconKey:"settings_bluetooth"})}function HM(e){return n.jsx(r,{...e,iconKey:"settings_brightness"})}function UM(e){return n.jsx(r,{...e,iconKey:"settings_cell"})}function YM(e){return n.jsx(r,{...e,iconKey:"settings_ethernet"})}function $M(e){return n.jsx(r,{...e,iconKey:"settings_input_antenna"})}function jM(e){return n.jsx(r,{...e,iconKey:"settings_input_component"})}function qM(e){return n.jsx(r,{...e,iconKey:"settings_input_composite"})}function JM(e){return n.jsx(r,{...e,iconKey:"settings_input_hdmi"})}function ZM(e){return n.jsx(r,{...e,iconKey:"settings_input_svideo"})}function XM(e){return n.jsx(r,{...e,iconKey:"settings_overscan"})}function xM(e){return n.jsx(r,{...e,iconKey:"settings_phone"})}function RM(e){return n.jsx(r,{...e,iconKey:"settings_power"})}function e2(e){return n.jsx(r,{...e,iconKey:"settings_remote"})}function n2(e){return n.jsx(r,{...e,iconKey:"settings_suggest"})}function o2(e){return n.jsx(r,{...e,iconKey:"settings_system_daydream"})}function r2(e){return n.jsx(r,{...e,iconKey:"settings_voice"})}function t2(e){return n.jsx(r,{...e,iconKey:"severe_cold"})}function c2(e){return n.jsx(r,{...e,iconKey:"shape_line"})}function i2(e){return n.jsx(r,{...e,iconKey:"share"})}function a2(e){return n.jsx(r,{...e,iconKey:"share_location"})}function l2(e){return n.jsx(r,{...e,iconKey:"shield"})}function s2(e){return n.jsx(r,{...e,iconKey:"shield_moon"})}function d2(e){return n.jsx(r,{...e,iconKey:"shop"})}function u2(e){return n.jsx(r,{...e,iconKey:"shop_2"})}function f2(e){return n.jsx(r,{...e,iconKey:"shop_two"})}function A2(e){return n.jsx(r,{...e,iconKey:"shopping_bag"})}function _2(e){return n.jsx(r,{...e,iconKey:"shopping_basket"})}function y2(e){return n.jsx(r,{...e,iconKey:"shopping_cart"})}function h2(e){return n.jsx(r,{...e,iconKey:"shopping_cart_checkout"})}function Pc(e){return n.jsx(r,{...e,iconKey:"short_text"})}function g2(e){return n.jsx(r,{...e,iconKey:"shortcut"})}function I2(e){return n.jsx(r,{...e,iconKey:"show_chart"})}function b2(e){return n.jsx(r,{...e,iconKey:"shower"})}function p2(e){return n.jsx(r,{...e,iconKey:"shuffle"})}function w2(e){return n.jsx(r,{...e,iconKey:"shuffle_on"})}function k2(e){return n.jsx(r,{...e,iconKey:"shutter_speed"})}function m2(e){return n.jsx(r,{...e,iconKey:"sick"})}function v2(e){return n.jsx(r,{...e,iconKey:"sign_language"})}function K2(e){return n.jsx(r,{...e,iconKey:"signal_cellular_0_bar"})}function C2(e){return n.jsx(r,{...e,iconKey:"signal_cellular_4_bar"})}function S2(e){return n.jsx(r,{...e,iconKey:"signal_cellular_alt"})}function B2(e){return n.jsx(r,{...e,iconKey:"signal_cellular_alt_1_bar"})}function E2(e){return n.jsx(r,{...e,iconKey:"signal_cellular_alt_2_bar"})}function F2(e){return n.jsx(r,{...e,iconKey:"signal_cellular_connected_no_internet_0_bar"})}function P2(e){return n.jsx(r,{...e,iconKey:"signal_cellular_connected_no_internet_4_bar"})}function D2(e){return n.jsx(r,{...e,iconKey:"signal_cellular_no_sim"})}function N2(e){return n.jsx(r,{...e,iconKey:"signal_cellular_nodata"})}function T2(e){return n.jsx(r,{...e,iconKey:"signal_cellular_null"})}function M2(e){return n.jsx(r,{...e,iconKey:"signal_cellular_off"})}function O2(e){return n.jsx(r,{...e,iconKey:"signal_wifi_0_bar"})}function L2(e){return n.jsx(r,{...e,iconKey:"signal_wifi_4_bar"})}function Q2(e){return n.jsx(r,{...e,iconKey:"signal_wifi_4_bar_lock"})}function V2(e){return n.jsx(r,{...e,iconKey:"signal_wifi_bad"})}function W2(e){return n.jsx(r,{...e,iconKey:"signal_wifi_connected_no_internet_4"})}function G2(e){return n.jsx(r,{...e,iconKey:"signal_wifi_off"})}function z2(e){return n.jsx(r,{...e,iconKey:"signal_wifi_statusbar_4_bar"})}function H2(e){return n.jsx(r,{...e,iconKey:"signal_wifi_statusbar_connected_no_internet_4"})}function U2(e){return n.jsx(r,{...e,iconKey:"signal_wifi_statusbar_null"})}function Y2(e){return n.jsx(r,{...e,iconKey:"signpost"})}function $2(e){return n.jsx(r,{...e,iconKey:"sim_card"})}function j2(e){return n.jsx(r,{...e,iconKey:"sim_card_alert"})}function q2(e){return n.jsx(r,{...e,iconKey:"sim_card_download"})}function J2(e){return n.jsx(r,{...e,iconKey:"single_bed"})}function Z2(e){return n.jsx(r,{...e,iconKey:"sip"})}function X2(e){return n.jsx(r,{...e,iconKey:"skateboarding"})}function x2(e){return n.jsx(r,{...e,iconKey:"skip_next"})}function R2(e){return n.jsx(r,{...e,iconKey:"skip_previous"})}function eO(e){return n.jsx(r,{...e,iconKey:"sledding"})}function nO(e){return n.jsx(r,{...e,iconKey:"slideshow"})}function oO(e){return n.jsx(r,{...e,iconKey:"slow_motion_video"})}function rO(e){return n.jsx(r,{...e,iconKey:"smart_button"})}function tO(e){return n.jsx(r,{...e,iconKey:"smart_display"})}function cO(e){return n.jsx(r,{...e,iconKey:"smart_screen"})}function iO(e){return n.jsx(r,{...e,iconKey:"smart_toy"})}function aO(e){return n.jsx(r,{...e,iconKey:"smartphone"})}function lO(e){return n.jsx(r,{...e,iconKey:"smoke_free"})}function sO(e){return n.jsx(r,{...e,iconKey:"smoking_rooms"})}function dO(e){return n.jsx(r,{...e,iconKey:"sms"})}function uO(e){return n.jsx(r,{...e,iconKey:"sms_failed"})}function fO(e){return n.jsx(r,{...e,iconKey:"snippet_folder"})}function AO(e){return n.jsx(r,{...e,iconKey:"snooze"})}function _O(e){return n.jsx(r,{...e,iconKey:"snowboarding"})}function yO(e){return n.jsx(r,{...e,iconKey:"snowmobile"})}function hO(e){return n.jsx(r,{...e,iconKey:"snowshoeing"})}function gO(e){return n.jsx(r,{...e,iconKey:"soap"})}function IO(e){return n.jsx(r,{...e,iconKey:"social_distance"})}function bO(e){return n.jsx(r,{...e,iconKey:"solar_power"})}function pO(e){return n.jsx(r,{...e,iconKey:"sort"})}function wO(e){return n.jsx(r,{...e,iconKey:"sort_by_alpha"})}function kO(e){return n.jsx(r,{...e,iconKey:"sos"})}function mO(e){return n.jsx(r,{...e,iconKey:"soup_kitchen"})}function vO(e){return n.jsx(r,{...e,iconKey:"source"})}function KO(e){return n.jsx(r,{...e,iconKey:"south"})}function CO(e){return n.jsx(r,{...e,iconKey:"south_america"})}function SO(e){return n.jsx(r,{...e,iconKey:"south_east"})}function BO(e){return n.jsx(r,{...e,iconKey:"south_west"})}function EO(e){return n.jsx(r,{...e,iconKey:"spa"})}function FO(e){return n.jsx(r,{...e,iconKey:"space_bar"})}function PO(e){return n.jsx(r,{...e,iconKey:"space_dashboard"})}function DO(e){return n.jsx(r,{...e,iconKey:"spatial_audio"})}function NO(e){return n.jsx(r,{...e,iconKey:"spatial_audio_off"})}function TO(e){return n.jsx(r,{...e,iconKey:"spatial_tracking"})}function MO(e){return n.jsx(r,{...e,iconKey:"speaker"})}function OO(e){return n.jsx(r,{...e,iconKey:"speaker_group"})}function LO(e){return n.jsx(r,{...e,iconKey:"speaker_notes"})}function QO(e){return n.jsx(r,{...e,iconKey:"speaker_notes_off"})}function VO(e){return n.jsx(r,{...e,iconKey:"speaker_phone"})}function WO(e){return n.jsx(r,{...e,iconKey:"speed"})}function GO(e){return n.jsx(r,{...e,iconKey:"spellcheck"})}function zO(e){return n.jsx(r,{...e,iconKey:"splitscreen"})}function HO(e){return n.jsx(r,{...e,iconKey:"spoke"})}function UO(e){return n.jsx(r,{...e,iconKey:"sports"})}function YO(e){return n.jsx(r,{...e,iconKey:"sports_bar"})}function $O(e){return n.jsx(r,{...e,iconKey:"sports_baseball"})}function jO(e){return n.jsx(r,{...e,iconKey:"sports_basketball"})}function qO(e){return n.jsx(r,{...e,iconKey:"sports_cricket"})}function JO(e){return n.jsx(r,{...e,iconKey:"sports_esports"})}function ZO(e){return n.jsx(r,{...e,iconKey:"sports_football"})}function XO(e){return n.jsx(r,{...e,iconKey:"sports_golf"})}function xO(e){return n.jsx(r,{...e,iconKey:"sports_gymnastics"})}function RO(e){return n.jsx(r,{...e,iconKey:"sports_handball"})}function eL(e){return n.jsx(r,{...e,iconKey:"sports_hockey"})}function nL(e){return n.jsx(r,{...e,iconKey:"sports_kabaddi"})}function oL(e){return n.jsx(r,{...e,iconKey:"sports_martial_arts"})}function rL(e){return n.jsx(r,{...e,iconKey:"sports_mma"})}function tL(e){return n.jsx(r,{...e,iconKey:"sports_motorsports"})}function cL(e){return n.jsx(r,{...e,iconKey:"sports_rugby"})}function iL(e){return n.jsx(r,{...e,iconKey:"sports_score"})}function aL(e){return n.jsx(r,{...e,iconKey:"sports_soccer"})}function lL(e){return n.jsx(r,{...e,iconKey:"sports_tennis"})}function sL(e){return n.jsx(r,{...e,iconKey:"sports_volleyball"})}function dL(e){return n.jsx(r,{...e,iconKey:"square"})}function uL(e){return n.jsx(r,{...e,iconKey:"square_foot"})}function fL(e){return n.jsx(r,{...e,iconKey:"ssid_chart"})}function AL(e){return n.jsx(r,{...e,iconKey:"stacked_bar_chart"})}function _L(e){return n.jsx(r,{...e,iconKey:"stacked_line_chart"})}function yL(e){return n.jsx(r,{...e,iconKey:"stadium"})}function hL(e){return n.jsx(r,{...e,iconKey:"stairs"})}function vr(e){return n.jsx(r,{...e,iconKey:"star"})}function Kr(e){return n.jsx(r,{...e,iconKey:"star_border"})}function gL(e){return n.jsx(r,{...e,iconKey:"star_border_purple500"})}function IL(e){return n.jsx(r,{...e,iconKey:"star_half"})}function bL(e){return n.jsx(r,{...e,iconKey:"star_outline"})}function pL(e){return n.jsx(r,{...e,iconKey:"star_purple500"})}function wL(e){return n.jsx(r,{...e,iconKey:"star_rate"})}function kL(e){return n.jsx(r,{...e,iconKey:"stars"})}function mL(e){return n.jsx(r,{...e,iconKey:"start"})}function vL(e){return n.jsx(r,{...e,iconKey:"stay_current_landscape"})}function KL(e){return n.jsx(r,{...e,iconKey:"stay_current_portrait"})}function CL(e){return n.jsx(r,{...e,iconKey:"stay_primary_landscape"})}function SL(e){return n.jsx(r,{...e,iconKey:"stay_primary_portrait"})}function BL(e){return n.jsx(r,{...e,iconKey:"sticky_note_2"})}function EL(e){return n.jsx(r,{...e,iconKey:"stop"})}function FL(e){return n.jsx(r,{...e,iconKey:"stop_circle"})}function PL(e){return n.jsx(r,{...e,iconKey:"stop_screen_share"})}function DL(e){return n.jsx(r,{...e,iconKey:"storage"})}function NL(e){return n.jsx(r,{...e,iconKey:"store"})}function TL(e){return n.jsx(r,{...e,iconKey:"store_mall_directory"})}function ML(e){return n.jsx(r,{...e,iconKey:"storefront"})}function OL(e){return n.jsx(r,{...e,iconKey:"storm"})}function LL(e){return n.jsx(r,{...e,iconKey:"straight"})}function QL(e){return n.jsx(r,{...e,iconKey:"straighten"})}function VL(e){return n.jsx(r,{...e,iconKey:"stream"})}function WL(e){return n.jsx(r,{...e,iconKey:"streetview"})}function GL(e){return n.jsx(r,{...e,iconKey:"strikethrough_s"})}function zL(e){return n.jsx(r,{...e,iconKey:"stroller"})}function HL(e){return n.jsx(r,{...e,iconKey:"style"})}function UL(e){return n.jsx(r,{...e,iconKey:"subdirectory_arrow_left"})}function YL(e){return n.jsx(r,{...e,iconKey:"subdirectory_arrow_right"})}function Dc(e){return n.jsx(r,{...e,iconKey:"subject"})}function $L(e){return n.jsx(r,{...e,iconKey:"subscript"})}function jL(e){return n.jsx(r,{...e,iconKey:"subscriptions"})}function qL(e){return n.jsx(r,{...e,iconKey:"subtitles"})}function JL(e){return n.jsx(r,{...e,iconKey:"subtitles_off"})}function ZL(e){return n.jsx(r,{...e,iconKey:"subway"})}function XL(e){return n.jsx(r,{...e,iconKey:"summarize"})}function xL(e){return n.jsx(r,{...e,iconKey:"superscript"})}function RL(e){return n.jsx(r,{...e,iconKey:"supervised_user_circle"})}function e4(e){return n.jsx(r,{...e,iconKey:"supervisor_account"})}function n4(e){return n.jsx(r,{...e,iconKey:"support"})}function o4(e){return n.jsx(r,{...e,iconKey:"support_agent"})}function r4(e){return n.jsx(r,{...e,iconKey:"surfing"})}function t4(e){return n.jsx(r,{...e,iconKey:"surround_sound"})}function c4(e){return n.jsx(r,{...e,iconKey:"swap_calls"})}function i4(e){return n.jsx(r,{...e,iconKey:"swap_horiz"})}function a4(e){return n.jsx(r,{...e,iconKey:"swap_horizontal_circle"})}function l4(e){return n.jsx(r,{...e,iconKey:"swap_vert"})}function s4(e){return n.jsx(r,{...e,iconKey:"swap_vertical_circle"})}function d4(e){return n.jsx(r,{...e,iconKey:"swipe"})}function u4(e){return n.jsx(r,{...e,iconKey:"swipe_down"})}function f4(e){return n.jsx(r,{...e,iconKey:"swipe_down_alt"})}function A4(e){return n.jsx(r,{...e,iconKey:"swipe_left"})}function _4(e){return n.jsx(r,{...e,iconKey:"swipe_left_alt"})}function y4(e){return n.jsx(r,{...e,iconKey:"swipe_right"})}function h4(e){return n.jsx(r,{...e,iconKey:"swipe_right_alt"})}function g4(e){return n.jsx(r,{...e,iconKey:"swipe_up"})}function I4(e){return n.jsx(r,{...e,iconKey:"swipe_up_alt"})}function b4(e){return n.jsx(r,{...e,iconKey:"swipe_vertical"})}function p4(e){return n.jsx(r,{...e,iconKey:"switch_access_shortcut"})}function w4(e){return n.jsx(r,{...e,iconKey:"switch_access_shortcut_add"})}function k4(e){return n.jsx(r,{...e,iconKey:"switch_account"})}function m4(e){return n.jsx(r,{...e,iconKey:"switch_camera"})}function v4(e){return n.jsx(r,{...e,iconKey:"switch_left"})}function K4(e){return n.jsx(r,{...e,iconKey:"switch_right"})}function C4(e){return n.jsx(r,{...e,iconKey:"switch_video"})}function S4(e){return n.jsx(r,{...e,iconKey:"synagogue"})}function B4(e){return n.jsx(r,{...e,iconKey:"sync"})}function E4(e){return n.jsx(r,{...e,iconKey:"sync_alt"})}function F4(e){return n.jsx(r,{...e,iconKey:"sync_disabled"})}function P4(e){return n.jsx(r,{...e,iconKey:"sync_lock"})}function D4(e){return n.jsx(r,{...e,iconKey:"sync_problem"})}function N4(e){return n.jsx(r,{...e,iconKey:"system_security_update"})}function T4(e){return n.jsx(r,{...e,iconKey:"system_security_update_good"})}function M4(e){return n.jsx(r,{...e,iconKey:"system_security_update_warning"})}function O4(e){return n.jsx(r,{...e,iconKey:"system_update"})}function L4(e){return n.jsx(r,{...e,iconKey:"system_update_alt"})}function Q4(e){return n.jsx(r,{...e,iconKey:"tab"})}function V4(e){return n.jsx(r,{...e,iconKey:"tab_unselected"})}function W4(e){return n.jsx(r,{...e,iconKey:"table_bar"})}function G4(e){return n.jsx(r,{...e,iconKey:"table_chart"})}function z4(e){return n.jsx(r,{...e,iconKey:"table_restaurant"})}function H4(e){return n.jsx(r,{...e,iconKey:"table_rows"})}function U4(e){return n.jsx(r,{...e,iconKey:"table_view"})}function Y4(e){return n.jsx(r,{...e,iconKey:"tablet"})}function $4(e){return n.jsx(r,{...e,iconKey:"tablet_android"})}function j4(e){return n.jsx(r,{...e,iconKey:"tablet_mac"})}function q4(e){return n.jsx(r,{...e,iconKey:"tag"})}function J4(e){return n.jsx(r,{...e,iconKey:"tag_faces"})}function Z4(e){return n.jsx(r,{...e,iconKey:"takeout_dining"})}function X4(e){return n.jsx(r,{...e,iconKey:"tap_and_play"})}function x4(e){return n.jsx(r,{...e,iconKey:"tapas"})}function R4(e){return n.jsx(r,{...e,iconKey:"task"})}function eQ(e){return n.jsx(r,{...e,iconKey:"task_alt"})}function nQ(e){return n.jsx(r,{...e,iconKey:"taxi_alert"})}function oQ(e){return n.jsx(r,{...e,iconKey:"temple_buddhist"})}function rQ(e){return n.jsx(r,{...e,iconKey:"temple_hindu"})}function tQ(e){return n.jsx(r,{...e,iconKey:"terminal"})}function cQ(e){return n.jsx(r,{...e,iconKey:"terrain"})}function iQ(e){return n.jsx(r,{...e,iconKey:"text_decrease"})}function aQ(e){return n.jsx(r,{...e,iconKey:"text_fields"})}function lQ(e){return n.jsx(r,{...e,iconKey:"text_format"})}function sQ(e){return n.jsx(r,{...e,iconKey:"text_increase"})}function dQ(e){return n.jsx(r,{...e,iconKey:"text_rotate_up"})}function uQ(e){return n.jsx(r,{...e,iconKey:"text_rotate_vertical"})}function fQ(e){return n.jsx(r,{...e,iconKey:"text_rotation_angledown"})}function AQ(e){return n.jsx(r,{...e,iconKey:"text_rotation_angleup"})}function _Q(e){return n.jsx(r,{...e,iconKey:"text_rotation_down"})}function yQ(e){return n.jsx(r,{...e,iconKey:"text_rotation_none"})}function hQ(e){return n.jsx(r,{...e,iconKey:"text_snippet"})}function gQ(e){return n.jsx(r,{...e,iconKey:"textsms"})}function IQ(e){return n.jsx(r,{...e,iconKey:"texture"})}function bQ(e){return n.jsx(r,{...e,iconKey:"theater_comedy"})}function pQ(e){return n.jsx(r,{...e,iconKey:"theaters"})}function wQ(e){return n.jsx(r,{...e,iconKey:"thermostat"})}function kQ(e){return n.jsx(r,{...e,iconKey:"thermostat_auto"})}function mQ(e){return n.jsx(r,{...e,iconKey:"thumb_down"})}function vQ(e){return n.jsx(r,{...e,iconKey:"thumb_down_alt"})}function KQ(e){return n.jsx(r,{...e,iconKey:"thumb_down_off_alt"})}function CQ(e){return n.jsx(r,{...e,iconKey:"thumb_up"})}function SQ(e){return n.jsx(r,{...e,iconKey:"thumb_up_alt"})}function BQ(e){return n.jsx(r,{...e,iconKey:"thumb_up_off_alt"})}function EQ(e){return n.jsx(r,{...e,iconKey:"thumbs_up_down"})}function FQ(e){return n.jsx(r,{...e,iconKey:"thunderstorm"})}function PQ(e){return n.jsx(r,{...e,iconKey:"time_to_leave"})}function DQ(e){return n.jsx(r,{...e,iconKey:"timelapse"})}function NQ(e){return n.jsx(r,{...e,iconKey:"timeline"})}function TQ(e){return n.jsx(r,{...e,iconKey:"timer"})}function MQ(e){return n.jsx(r,{...e,iconKey:"timer_10"})}function OQ(e){return n.jsx(r,{...e,iconKey:"timer_10_select"})}function LQ(e){return n.jsx(r,{...e,iconKey:"timer_3"})}function QQ(e){return n.jsx(r,{...e,iconKey:"timer_3_select"})}function VQ(e){return n.jsx(r,{...e,iconKey:"timer_off"})}function WQ(e){return n.jsx(r,{...e,iconKey:"tips_and_updates"})}function GQ(e){return n.jsx(r,{...e,iconKey:"tire_repair"})}function zQ(e){return n.jsx(r,{...e,iconKey:"title"})}function HQ(e){return n.jsx(r,{...e,iconKey:"toc"})}function UQ(e){return n.jsx(r,{...e,iconKey:"today"})}function YQ(e){return n.jsx(r,{...e,iconKey:"toggle_off"})}function $Q(e){return n.jsx(r,{...e,iconKey:"toggle_on"})}function jQ(e){return n.jsx(r,{...e,iconKey:"token"})}function qQ(e){return n.jsx(r,{...e,iconKey:"toll"})}function JQ(e){return n.jsx(r,{...e,iconKey:"tonality"})}function ZQ(e){return n.jsx(r,{...e,iconKey:"topic"})}function XQ(e){return n.jsx(r,{...e,iconKey:"tornado"})}function xQ(e){return n.jsx(r,{...e,iconKey:"touch_app"})}function RQ(e){return n.jsx(r,{...e,iconKey:"tour"})}function eV(e){return n.jsx(r,{...e,iconKey:"toys"})}function nV(e){return n.jsx(r,{...e,iconKey:"track_changes"})}function oV(e){return n.jsx(r,{...e,iconKey:"traffic"})}function rV(e){return n.jsx(r,{...e,iconKey:"train"})}function tV(e){return n.jsx(r,{...e,iconKey:"tram"})}function cV(e){return n.jsx(r,{...e,iconKey:"transcribe"})}function iV(e){return n.jsx(r,{...e,iconKey:"transfer_within_a_station"})}function aV(e){return n.jsx(r,{...e,iconKey:"transform"})}function lV(e){return n.jsx(r,{...e,iconKey:"transgender"})}function sV(e){return n.jsx(r,{...e,iconKey:"transit_enterexit"})}function dV(e){return n.jsx(r,{...e,iconKey:"translate"})}function uV(e){return n.jsx(r,{...e,iconKey:"travel_explore"})}function fV(e){return n.jsx(r,{...e,iconKey:"trending_down"})}function AV(e){return n.jsx(r,{...e,iconKey:"trending_flat"})}function _V(e){return n.jsx(r,{...e,iconKey:"trending_up"})}function yV(e){return n.jsx(r,{...e,iconKey:"trip_origin"})}function hV(e){return n.jsx(r,{...e,iconKey:"troubleshoot"})}function gV(e){return n.jsx(r,{...e,iconKey:"try"})}function IV(e){return n.jsx(r,{...e,iconKey:"tsunami"})}function bV(e){return n.jsx(r,{...e,iconKey:"tty"})}function pV(e){return n.jsx(r,{...e,iconKey:"tune"})}function wV(e){return n.jsx(r,{...e,iconKey:"tungsten"})}function kV(e){return n.jsx(r,{...e,iconKey:"turn_left"})}function mV(e){return n.jsx(r,{...e,iconKey:"turn_right"})}function vV(e){return n.jsx(r,{...e,iconKey:"turn_sharp_left"})}function KV(e){return n.jsx(r,{...e,iconKey:"turn_sharp_right"})}function CV(e){return n.jsx(r,{...e,iconKey:"turn_slight_left"})}function SV(e){return n.jsx(r,{...e,iconKey:"turn_slight_right"})}function BV(e){return n.jsx(r,{...e,iconKey:"turned_in"})}function EV(e){return n.jsx(r,{...e,iconKey:"turned_in_not"})}function FV(e){return n.jsx(r,{...e,iconKey:"tv"})}function PV(e){return n.jsx(r,{...e,iconKey:"tv_off"})}function DV(e){return n.jsx(r,{...e,iconKey:"two_wheeler"})}function NV(e){return n.jsx(r,{...e,iconKey:"type_specimen"})}function TV(e){return n.jsx(r,{...e,iconKey:"u_turn_left"})}function MV(e){return n.jsx(r,{...e,iconKey:"u_turn_right"})}function OV(e){return n.jsx(r,{...e,iconKey:"umbrella"})}function LV(e){return n.jsx(r,{...e,iconKey:"unarchive"})}function QV(e){return n.jsx(r,{...e,iconKey:"undo"})}function VV(e){return n.jsx(r,{...e,iconKey:"unfold_less"})}function WV(e){return n.jsx(r,{...e,iconKey:"unfold_less_double"})}function GV(e){return n.jsx(r,{...e,iconKey:"unfold_more"})}function zV(e){return n.jsx(r,{...e,iconKey:"unfold_more_double"})}function HV(e){return n.jsx(r,{...e,iconKey:"unpublished"})}function UV(e){return n.jsx(r,{...e,iconKey:"unsubscribe"})}function YV(e){return n.jsx(r,{...e,iconKey:"upcoming"})}function $V(e){return n.jsx(r,{...e,iconKey:"update"})}function jV(e){return n.jsx(r,{...e,iconKey:"update_disabled"})}function qV(e){return n.jsx(r,{...e,iconKey:"upgrade"})}function JV(e){return n.jsx(r,{...e,iconKey:"upload"})}function Nc(e){return n.jsx(r,{...e,iconKey:"upload_file"})}function ZV(e){return n.jsx(r,{...e,iconKey:"usb"})}function XV(e){return n.jsx(r,{...e,iconKey:"usb_off"})}function xV(e){return n.jsx(r,{...e,iconKey:"vaccines"})}function RV(e){return n.jsx(r,{...e,iconKey:"vape_free"})}function e5(e){return n.jsx(r,{...e,iconKey:"vaping_rooms"})}function n5(e){return n.jsx(r,{...e,iconKey:"verified"})}function o5(e){return n.jsx(r,{...e,iconKey:"verified_user"})}function r5(e){return n.jsx(r,{...e,iconKey:"vertical_align_bottom"})}function t5(e){return n.jsx(r,{...e,iconKey:"vertical_align_center"})}function c5(e){return n.jsx(r,{...e,iconKey:"vertical_align_top"})}function i5(e){return n.jsx(r,{...e,iconKey:"vertical_distribute"})}function a5(e){return n.jsx(r,{...e,iconKey:"vertical_shades"})}function l5(e){return n.jsx(r,{...e,iconKey:"vertical_shades_closed"})}function s5(e){return n.jsx(r,{...e,iconKey:"vertical_split"})}function d5(e){return n.jsx(r,{...e,iconKey:"vibration"})}function u5(e){return n.jsx(r,{...e,iconKey:"video_call"})}function f5(e){return n.jsx(r,{...e,iconKey:"video_camera_back"})}function A5(e){return n.jsx(r,{...e,iconKey:"video_camera_front"})}function _5(e){return n.jsx(r,{...e,iconKey:"video_chat"})}function y5(e){return n.jsx(r,{...e,iconKey:"video_file"})}function h5(e){return n.jsx(r,{...e,iconKey:"video_label"})}function g5(e){return n.jsx(r,{...e,iconKey:"video_library"})}function I5(e){return n.jsx(r,{...e,iconKey:"video_settings"})}function b5(e){return n.jsx(r,{...e,iconKey:"video_stable"})}function p5(e){return n.jsx(r,{...e,iconKey:"videocam"})}function w5(e){return n.jsx(r,{...e,iconKey:"videocam_off"})}function k5(e){return n.jsx(r,{...e,iconKey:"videogame_asset"})}function m5(e){return n.jsx(r,{...e,iconKey:"videogame_asset_off"})}function v5(e){return n.jsx(r,{...e,iconKey:"view_agenda"})}function K5(e){return n.jsx(r,{...e,iconKey:"view_array"})}function C5(e){return n.jsx(r,{...e,iconKey:"view_carousel"})}function S5(e){return n.jsx(r,{...e,iconKey:"view_column"})}function B5(e){return n.jsx(r,{...e,iconKey:"view_comfy"})}function E5(e){return n.jsx(r,{...e,iconKey:"view_comfy_alt"})}function F5(e){return n.jsx(r,{...e,iconKey:"view_compact"})}function P5(e){return n.jsx(r,{...e,iconKey:"view_compact_alt"})}function D5(e){return n.jsx(r,{...e,iconKey:"view_cozy"})}function N5(e){return n.jsx(r,{...e,iconKey:"view_day"})}function T5(e){return n.jsx(r,{...e,iconKey:"view_headline"})}function M5(e){return n.jsx(r,{...e,iconKey:"view_in_ar"})}function O5(e){return n.jsx(r,{...e,iconKey:"view_kanban"})}function L5(e){return n.jsx(r,{...e,iconKey:"view_list"})}function Q5(e){return n.jsx(r,{...e,iconKey:"view_module"})}function V5(e){return n.jsx(r,{...e,iconKey:"view_quilt"})}function W5(e){return n.jsx(r,{...e,iconKey:"view_sidebar"})}function Tc(e){return n.jsx(r,{...e,iconKey:"view_stream"})}function G5(e){return n.jsx(r,{...e,iconKey:"view_timeline"})}function z5(e){return n.jsx(r,{...e,iconKey:"view_week"})}function H5(e){return n.jsx(r,{...e,iconKey:"vignette"})}function U5(e){return n.jsx(r,{...e,iconKey:"villa"})}function Y5(e){return n.jsx(r,{...e,iconKey:"visibility"})}function $5(e){return n.jsx(r,{...e,iconKey:"visibility_off"})}function j5(e){return n.jsx(r,{...e,iconKey:"voice_chat"})}function q5(e){return n.jsx(r,{...e,iconKey:"voice_over_off"})}function J5(e){return n.jsx(r,{...e,iconKey:"voicemail"})}function Z5(e){return n.jsx(r,{...e,iconKey:"volcano"})}function X5(e){return n.jsx(r,{...e,iconKey:"volume_down"})}function x5(e){return n.jsx(r,{...e,iconKey:"volume_mute"})}function R5(e){return n.jsx(r,{...e,iconKey:"volume_off"})}function eW(e){return n.jsx(r,{...e,iconKey:"volume_up"})}function nW(e){return n.jsx(r,{...e,iconKey:"volunteer_activism"})}function oW(e){return n.jsx(r,{...e,iconKey:"vpn_key"})}function rW(e){return n.jsx(r,{...e,iconKey:"vpn_key_off"})}function tW(e){return n.jsx(r,{...e,iconKey:"vpn_lock"})}function cW(e){return n.jsx(r,{...e,iconKey:"vrpano"})}function iW(e){return n.jsx(r,{...e,iconKey:"wallet"})}function aW(e){return n.jsx(r,{...e,iconKey:"wallpaper"})}function lW(e){return n.jsx(r,{...e,iconKey:"warehouse"})}function sW(e){return n.jsx(r,{...e,iconKey:"warning"})}function dW(e){return n.jsx(r,{...e,iconKey:"warning_amber"})}function uW(e){return n.jsx(r,{...e,iconKey:"wash"})}function fW(e){return n.jsx(r,{...e,iconKey:"watch"})}function AW(e){return n.jsx(r,{...e,iconKey:"watch_later"})}function _W(e){return n.jsx(r,{...e,iconKey:"watch_off"})}function yW(e){return n.jsx(r,{...e,iconKey:"water"})}function hW(e){return n.jsx(r,{...e,iconKey:"water_damage"})}function gW(e){return n.jsx(r,{...e,iconKey:"water_drop"})}function IW(e){return n.jsx(r,{...e,iconKey:"waterfall_chart"})}function bW(e){return n.jsx(r,{...e,iconKey:"waves"})}function pW(e){return n.jsx(r,{...e,iconKey:"waving_hand"})}function wW(e){return n.jsx(r,{...e,iconKey:"wb_auto"})}function kW(e){return n.jsx(r,{...e,iconKey:"wb_cloudy"})}function mW(e){return n.jsx(r,{...e,iconKey:"wb_incandescent"})}function vW(e){return n.jsx(r,{...e,iconKey:"wb_iridescent"})}function KW(e){return n.jsx(r,{...e,iconKey:"wb_shade"})}function CW(e){return n.jsx(r,{...e,iconKey:"wb_sunny"})}function SW(e){return n.jsx(r,{...e,iconKey:"wb_twilight"})}function BW(e){return n.jsx(r,{...e,iconKey:"wc"})}function EW(e){return n.jsx(r,{...e,iconKey:"web"})}function FW(e){return n.jsx(r,{...e,iconKey:"web_asset"})}function PW(e){return n.jsx(r,{...e,iconKey:"web_asset_off"})}function DW(e){return n.jsx(r,{...e,iconKey:"web_stories"})}function NW(e){return n.jsx(r,{...e,iconKey:"webhook"})}function TW(e){return n.jsx(r,{...e,iconKey:"weekend"})}function MW(e){return n.jsx(r,{...e,iconKey:"west"})}function OW(e){return n.jsx(r,{...e,iconKey:"whatshot"})}function LW(e){return n.jsx(r,{...e,iconKey:"wheelchair_pickup"})}function QW(e){return n.jsx(r,{...e,iconKey:"where_to_vote"})}function VW(e){return n.jsx(r,{...e,iconKey:"widgets"})}function WW(e){return n.jsx(r,{...e,iconKey:"width_full"})}function GW(e){return n.jsx(r,{...e,iconKey:"width_normal"})}function zW(e){return n.jsx(r,{...e,iconKey:"width_wide"})}function HW(e){return n.jsx(r,{...e,iconKey:"wifi"})}function UW(e){return n.jsx(r,{...e,iconKey:"wifi_1_bar"})}function YW(e){return n.jsx(r,{...e,iconKey:"wifi_2_bar"})}function $W(e){return n.jsx(r,{...e,iconKey:"wifi_calling"})}function jW(e){return n.jsx(r,{...e,iconKey:"wifi_calling_3"})}function qW(e){return n.jsx(r,{...e,iconKey:"wifi_channel"})}function JW(e){return n.jsx(r,{...e,iconKey:"wifi_find"})}function ZW(e){return n.jsx(r,{...e,iconKey:"wifi_lock"})}function XW(e){return n.jsx(r,{...e,iconKey:"wifi_off"})}function xW(e){return n.jsx(r,{...e,iconKey:"wifi_password"})}function RW(e){return n.jsx(r,{...e,iconKey:"wifi_protected_setup"})}function eG(e){return n.jsx(r,{...e,iconKey:"wifi_tethering"})}function nG(e){return n.jsx(r,{...e,iconKey:"wifi_tethering_error"})}function oG(e){return n.jsx(r,{...e,iconKey:"wifi_tethering_off"})}function rG(e){return n.jsx(r,{...e,iconKey:"wind_power"})}function tG(e){return n.jsx(r,{...e,iconKey:"window"})}function cG(e){return n.jsx(r,{...e,iconKey:"wine_bar"})}function iG(e){return n.jsx(r,{...e,iconKey:"woman"})}function aG(e){return n.jsx(r,{...e,iconKey:"woman_2"})}function lG(e){return n.jsx(r,{...e,iconKey:"work"})}function sG(e){return n.jsx(r,{...e,iconKey:"work_history"})}function dG(e){return n.jsx(r,{...e,iconKey:"work_off"})}function uG(e){return n.jsx(r,{...e,iconKey:"work_outline"})}function fG(e){return n.jsx(r,{...e,iconKey:"workspace_premium"})}function AG(e){return n.jsx(r,{...e,iconKey:"workspaces"})}function _G(e){return n.jsx(r,{...e,iconKey:"wrap_text"})}function yG(e){return n.jsx(r,{...e,iconKey:"wrong_location"})}function hG(e){return n.jsx(r,{...e,iconKey:"wysiwyg"})}function gG(e){return n.jsx(r,{...e,iconKey:"yard"})}function IG(e){return n.jsx(r,{...e,iconKey:"youtube_searched_for"})}function bG(e){return n.jsx(r,{...e,iconKey:"zoom_in"})}function pG(e){return n.jsx(r,{...e,iconKey:"zoom_in_map"})}function wG(e){return n.jsx(r,{...e,iconKey:"zoom_out"})}function kG(e){return n.jsx(r,{...e,iconKey:"zoom_out_map"})}function Se({error:e,showError:t,property:c,includeDescription:i=!0,disabled:a}){const l=c.description||c.longDescription;if(!(t&&e)&&(!i||!l))return null;if(t&&e)return n.jsx(j,{variant:"caption",className:"ml-3.5 text-red-500",children:e});const s=typeof c.disabled=="object"?c.disabled.disabledMessage:void 0;return n.jsxs("div",{className:"flex ml-3.5 mt-1",children:[n.jsx(j,{variant:"caption",color:a?"disabled":"secondary",className:"flex-grow",children:s||c.description}),c.longDescription&&n.jsx(_e,{title:c.longDescription,side:"bottom",children:n.jsx(R,{size:"small",className:"self-start",children:n.jsx(kc,{color:"disabled",size:"small"})})})]})}const Mc=f.createContext({}),Qe=()=>f.useContext(Mc),Oc=f.createContext({}),fe=()=>f.useContext(Oc),Cr=f.createContext({}),In=()=>f.useContext(Cr),Lc=f.createContext({}),co=()=>f.useContext(Lc),Qc=f.createContext({}),Sn=()=>f.useContext(Qc),Vc=f.createContext({}),Bn=()=>f.useContext(Vc),an=()=>{const{enqueueSnackbar:e,closeSnackbar:t}=Gt.useSnackbar(),c=f.useCallback(a=>{const{type:l,message:s,autoHideDuration:d}=a;e({message:s,variant:l,autoHideDuration:d})},[]),i=f.useCallback(()=>{t()},[]);return f.useMemo(()=>({open:c,close:i}),[c,i])},Wc=f.createContext(void 0),En=()=>f.useContext(Wc),Sr=f.createContext({sideDialogsController:{},sideEntityController:{},navigation:{},dataSource:{},storageSource:{},authController:{},snackbarController:{},fields:{}}),ne=()=>{const e=f.useContext(Sr),t=In(),c=co(),i=Sn(),a=fe(),l=Qe(),s=Bn(),d=an(),u=En();return{...e,authController:t,sideDialogsController:c,sideEntityController:i,navigation:a,dataSource:l,storageSource:s,snackbarController:d,userConfigPersistence:u}};function Gc({path:e,collection:t,filterValues:c,sortBy:i,itemCount:a,searchString:l}){const s=Qe(),u=fe().resolveAliasesFrom(e),A=i?i[0]:void 0,y=i?i[1]:void 0,h=ne(),[I,_]=f.useState([]),[g,b]=f.useState(!1),[p,w]=f.useState(),[k,v]=f.useState(!1);return f.useEffect(()=>{b(!0);const K=async C=>{if(t.callbacks?.onFetch)try{C=await Promise.all(C.map(B=>t.callbacks.onFetch({collection:t,path:u,entity:B,context:h})))}catch(B){console.error(B)}b(!1),w(void 0),_(C.map(B=>({...B}))),v(!a||C.length<a)},m=C=>{console.error("ERROR",C),b(!1),_([]),w(C)};return s.listenCollection?s.listenCollection({path:u,collection:t,onUpdate:K,onError:m,searchString:l,filter:c,limit:a,startAfter:void 0,orderBy:A,order:y}):(s.fetchCollection({path:u,collection:t,searchString:l,filter:c,limit:a,startAfter:void 0,orderBy:A,order:y}).then(K).catch(m),()=>{})},[u,a,y,A,c,l]),{data:I,dataLoading:g,dataLoadingError:p,noMoreToLoad:k}}const Br={};function Er({path:e,entityId:t,collection:c,useCache:i=!1}){const a=Qe(),s=fe().resolveAliasesFrom(e),d=ne(),[u,A]=f.useState(),[y,h]=f.useState(!0),[I,_]=f.useState();return f.useEffect(()=>{h(!0);const g=async p=>{if(c.callbacks?.onFetch&&p)try{p=await c.callbacks.onFetch({collection:c,path:s,entity:p,context:d})}catch(w){console.error(w)}Br[`${s}/${t}`]=p,A(p),h(!1),_(void 0)},b=p=>{console.error("ERROR fetching entity",p),h(!1),A(void 0),_(p)};return t&&i&&Br[`${s}/${t}`]?(A(Br[`${s}/${t}`]),h(!1),_(void 0),()=>{}):t&&s&&c?a.listenEntity?a.listenEntity({path:s,entityId:t,collection:c,onUpdate:g,onError:b}):(a.fetchEntity({path:s,entityId:t,collection:c}).then(g).catch(b),()=>{}):(g(void 0),()=>{})},[t,s]),{entity:u,dataLoading:y,dataLoadingError:I}}async function Fr({collection:e,path:t,entityId:c,values:i,previousValues:a,status:l,dataSource:s,context:d,onSaveSuccess:u,onSaveFailure:A,onPreSaveHookError:y,onSaveSuccessHookError:h}){let I;const _=d.navigation.resolveAliasesFrom(t),g=e.callbacks;if(g?.onPreSave)try{const b=Me({collection:e,path:t,values:a,entityId:c,fields:d.fields});I=await g.onPreSave({collection:b,path:t,resolvedPath:_,entityId:c,values:i,previousValues:a,status:l,context:d})}catch(b){console.error(b),y&&y(b);return}else I=i;return s.saveEntity({collection:e,path:_,entityId:c,values:I,previousValues:a,status:l}).then(b=>{try{if(g?.onSaveSuccess){const p=Me({collection:e,path:t,values:I,entityId:c,fields:d.fields});g.onSaveSuccess({collection:p,path:t,resolvedPath:_,entityId:b.id,values:I,previousValues:a,status:l,context:d})}}catch(p){h&&h(p)}u&&u(b)}).catch(b=>{if(g?.onSaveFailure){const p=Me({collection:e,path:t,values:I,entityId:c,fields:d.fields});g.onSaveFailure({collection:p,path:t,resolvedPath:_,entityId:c,values:I,previousValues:a,status:l,context:d})}A&&A(b)})}async function zc({dataSource:e,entity:t,collection:c,callbacks:i,onDeleteSuccess:a,onDeleteFailure:l,onPreDeleteHookError:s,onDeleteSuccessHookError:d,context:u}){console.debug("Deleting entity",t.path,t.id);const A={entity:t,collection:c,entityId:t.id,path:t.path,context:u};if(i?.onPreDelete)try{await i.onPreDelete(A)}catch(y){return console.error(y),s&&s(t,y),!1}return e.deleteEntity({entity:t}).then(()=>{a&&a(t);try{return i?.onDelete&&i.onDelete(A),!0}catch(y){return d&&d(t,y),!1}}).catch(y=>(l&&l(t,y),!1))}function Te({property:e,value:t,setValue:c}){const i=f.useRef(null);f.useEffect(()=>{typeof e.disabled=="object"&&!!e.disabled.clearOnDisabled?t!=null&&(i.current=t,c(null)):i.current&&(c(i.current),i.current=null)},[e])}function Hc({path:e,context:t}){const c=t.dataSource,i=t.navigation;if(!i)throw Error("Calling getNavigationFrom, but main navigation has not yet been initialised");const l=_t({path:e,collections:i.collections??[]}).map(s=>{if(s.type==="collection")return Promise.resolve(s);if(s.type==="entity"){const d=i.getCollection(s.path,s.entityId);if(!d)throw Error(`No collection defined in the navigation for the entity with path ${s.path}`);return c.fetchEntity({path:s.path,entityId:s.entityId,collection:d}).then(u=>{if(u)return{...s,entity:u}})}else{if(s.type==="custom_view")return Promise.resolve(s);throw Error("Unmapped element in useEntitiesFromPath")}}).filter(s=>!!s);return Promise.all(l)}function mG({path:e}){const t=ne(),[c,i]=f.useState(),[a,l]=f.useState(!1),[s,d]=f.useState();return f.useEffect(()=>{t.navigation&&(l(!0),d(void 0),Hc({path:e,context:t}).then(A=>{i(A)}).catch(A=>d(A)).finally(()=>l(!1)))},[e,t]),t.navigation?{data:c,dataLoading:a,dataLoadingError:s}:{dataLoading:!0}}const Pr=()=>f.useContext(or),Uc=e=>{const{onSuccess:t,onError:c,disableClipboardAPI:i=!1,copiedDuration:a}=e||{},l=f.useRef(null),[s,d]=f.useState(!1),[u,A]=f.useState("");f.useEffect(()=>{a&&setTimeout(()=>d(!1),a)},[s]);const y=()=>navigator.clipboard!==void 0,h=f.useCallback(k=>{if(c)c(k);else throw new Error(k)},[c]),I=f.useCallback(k=>{t&&t(k),d(!0),A(k)},[t]),_=f.useCallback(k=>{navigator.clipboard.writeText(k).then(()=>I(k)).catch(v=>{h(v),d(!1)})},[h,I]),g=()=>{y()&&navigator.clipboard.writeText("")},b=k=>w("copy",typeof k=="object"?void 0:k),p=()=>w("cut"),w=f.useCallback((k="copy",v)=>{const K=l.current,m=K&&(K.tagName==="INPUT"||K.tagName==="TEXTAREA"),C=l.current;y()&&!i&&(v?_(v):K?m?(_(C.value),k==="cut"&&(C.value="")):_(K.innerText):h("Both the ref & text were undefined"))},[i,_,h]);return{ref:l,isCoppied:s,clipboard:u,clearClipboard:g,isSupported:y,copy:b,cut:p}},Dr=()=>f.useContext(Yt),vG={xs:0,sm:640,md:768,lg:1024,xl:1280,"2xl":1536,"3xl":1920},ze=(e="lg")=>{const[t,c]=f.useState(!1);return f.useEffect(()=>{const i=()=>{const a=window.matchMedia(`(min-width: ${vG[e]+1}px)`).matches;c(a)};return i(),window.addEventListener("resize",i),()=>{window.removeEventListener("resize",i)}},[]),t};function io(e){const t=fe(),c=co(),i=f.useCallback(()=>{if(e.path){let l=e.collection;if(l||(l=t.getCollection(e.path)),!l)throw Error("Not able to resolve the collection in useReferenceDialog");c.open({key:`reference_${e.path}`,component:n.jsx(ta,{collection:l,...e}),width:"90vw",onClose:()=>{e.onClose?.()}})}else throw Error("useReferenceDialog: You are trying to open a reference dialog, but have not declared the `path`")},[t,e,c]),a=f.useCallback(()=>{c.close()},[c]);return{open:i,close:a}}const KG=`data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAAASAAAAEgARslrPgAAB9pJREFUWMONl12obVUVx39jzLk+9j7nHq9y1QT1qpcbSIaXQFGs24PQl3HroSQyqHwJFJF6qaceCsqQoJdELHoIC6EeJCSKsi/TFLGozGsKXksljRLxnrP3WmvOOUYPa+19zsmPWpux5pxrzTX///Exx5hb+B/X1y+/nuIlVKF5m0v1YbQ55tIcKTQXFerNQkumOZ1oTiXCqUH8saR+74L8ZIWWux7+7JuuL2/04s5jJyhWQlXV71KtbhCtr1WtD6s0KlrjNBRaEi3JGzpv6bymQ0sn9mwv9otB7Ls7kn9Xo+U7D9z8/xG4+bz3cs35SjE/HEK8NWr8RBOrs+tQUUlEtAYaijRkbxmY0fuMzucsfcbSWnZQtiWxJL3Uid09iH0jIM8/1f+d3/zuS29M4PvHrmG+cZA8dMdjiLfNYrx6owrMVKlVUQkgkeI1iYbBJ3A2WPpKNtnx+UQisy29L0gPDGKfrwkPn2bJPfd/Zo0ZVp0fvOOdnLGxheX+A/Mq3nGwqS8/q645o4psxkgbhFqdSgqVJKIkghgqjuDoWh+dlm1AI0gUC3o4C9d04idbmZ06euQDPPHMj3YJ3HnkrZx98Fys2PFZ1dxxsJkdPbOecaBqmcWGqBVBIkEiKkoQJ5IJJBTbY8aRgBMwjxgVJoJJwDScnYUrOy2PBamfv/CS4zz9zE+IAIfPuQQzPzyrmq9u1e3RM+qWeaipNCCiE4DjbjgF94xZQj2htpjeK84ImqlIUpO9JllgEKgJDFpfOoh8paN8chbOeQ4g/OTq97PdLXSz3fjiVjO7/sx6g804ow41QWuCrjQPBB3bkZQgAkpBJOMojmIEjIgRKV6RpaYIZHGKQlK5OIv0L8bul8eOfsxjDJGD8613z6rmhq1qxkY1o9YKFUFEEED2xqoE1MNoWgPBwQZMl2SrSbQM9NQyUMlA5S3Rlcqd6E50RdRvPMvn9yE8qP9+9WWtQvXxzdic8xrwPaJrUYJGoq4sVBM1Ukuiln4UBipJVJrGoHUhrARB0XMQ/cizbSd61uaZlzUhXjuvWmqt9oOyAmUPEabnkSDV2j0Rp2YgksZdQpoCtRBwAiN4cKYdw4m3pNnbY9Tw4SZUh9tQEda+ld1WpmThgoivU8fYDbgEggRcleiZ6BOoFNRXLQQX1Eelggsgh8GPx6DhWB2iRgkj2OTuVX8dBzJtMx93BAKK4hIwUUSEID4BGspecWTfDwSCw+UxqByJoqPf9+xmYWQg7H3u+5Poyk3o5BZDxRBxxH29fdkF3YcBXKHgF+m+hLxn4OvbnnbPzMkjsm/+f5cXec2ye6ZfpO6+OX7pE8TqPj1zcN/7Zu8CDm44Bu6skrKjuOs0FlxWCJNMYxMOqLlR3DAvsAKaZo6t7+u7r6nhjN/5RKIQKESKhykhjeIINgJi+0m4Fiuns2WKZQybtJ2AfAWzGu/ayt0wz5gXimeKQyKSPI4kiCMhDxSgyLiOiY9kxnW2NVs+1ZeBbAmzhLmtgd0d8z1k1mIUTxQbKD5gnkmuDN6QvCF5TaIie0UmkIU1id3WcfwZHUo61eWB3gayDdOiZR+JXUuMWmcbyGWcny2RzOi8obeWwRsGrxm8JlGPBHCyOJmpJkwkHHs09pnfL1L60KLqtBKZtprhU+lVmSq9+xRsBfOMW6L4QLFM7zWdz+l8Ru8tA+10YKlJIiSxkcC6dQqlmJc/xaHIvTuZT7UpHalFUHEqL6iGsfKtM8FEzMdy7J4oXui9mk5CczpGErtEKgacQUZJE3gSwzw/i+dfx2G7e6IcOPALCXIkakGkYx4iwceyq+uENPp+RSI7DN7Q+5ylb7JgJLH0+XRGbOlRerWJwNgmnOwJ83Tvq/7KX2KZb1nJfnfp5YRoda7hFC/MQyGI7Mteow2E4pHkDT2zyfS758HV4bSjolOjF2PYS4KBbN2L5vmHZ7DpsWQnDsvfLj1+Lwufy9LSO2y5M1Mnik8OEJxAoSJRk7xhoKX3+URiztI3WPgGS2/p1OnE6CcSvRQGH+htQfH07dPSP7Lp9ajcNy+9DnG/oMT67qqZHz/QtGxVyjworQqVCIjiPiaaTD1ttZZ+fTIeCXQ+Y6HCQm0tO5LYpmfHlyy9/1nCPi3ICw/99JbxUHrdvxr6Q4depdhTfeGapVeH+imKxwhv6ZnR+5zeN0aNGU2+ZIPON0cX0LBQYSnGQgsLSSzoWdiCHVvQ2fLP2fMtwf2vDz50K6TpVPxj/sn7Ni5iu9l6Tof+yd78yoWFQ0uvWYvVLK1h6e34B8RnY9DZnIW3LAijxpLYkZ6Fd+z4km3bYcd2WNry8ezppsZ5ZMd2+MfTv3xtjbr9/PfwyoFDzPvtq7I2t+Vq/m6pt4hxThVaojao1CANRkORmkwkiTCI00thKYWOzJJR+6V1JE8/z2JfqGgfW9jLPPLg7a9Xe8frHs7j5MVXESxfmLS5KYXmxhQ3z/a4icQNRFtEGlwjJkoRIamTmIKNTE+it57kw0sF+1ah3CkSXkiPf42Htl+3WL/2+vIFJ6ishJ3QXD1o9dEhVCcGbS7ModUcakwrigaKChkoYmQK2XMp5L8V/F7DfuDePYrEcv8f7npdnDcksEvkg9RewquhuayTcHzQeCyJXpFVD2fRzSxCFtkuwqks8mjB/ujYr9y6k0gs9528503X/w/F3eUgyIBI4wAAACV0RVh0ZGF0ZTpjcmVhdGUAMjAyMS0wNS0xMFQxOToyODozMyswMDowMEzeSx4AAAAldEVYdGRhdGU6bW9kaWZ5ADIwMjEtMDUtMTBUMTk6Mjg6MzMrMDA6MDA9g/OiAAAARnRFWHRzb2Z0d2FyZQBJbWFnZU1hZ2ljayA2LjcuOC05IDIwMTQtMDUtMTIgUTE2IGh0dHA6Ly93d3cuaW1hZ2VtYWdpY2sub3Jn3IbtAAAAABh0RVh0VGh1bWI6OkRvY3VtZW50OjpQYWdlcwAxp/+7LwAAABh0RVh0VGh1bWI6OkltYWdlOjpoZWlnaHQAMTkyDwByhQAAABd0RVh0VGh1bWI6OkltYWdlOjpXaWR0aAAxOTLTrCEIAAAAGXRFWHRUaHVtYjo6TWltZXR5cGUAaW1hZ2UvcG5nP7JWTgAAABd0RVh0VGh1bWI6Ok1UaW1lADE2MjA2NzQ5MTMk8oswAAAAD3RFWHRUaHVtYjo6U2l6ZQAwQkKUoj7sAAAAVnRFWHRUaHVtYjo6VVJJAGZpbGU6Ly8vbW50bG9nL2Zhdmljb25zLzIwMjEtMDUtMTAvOGIxNDNhYjgwODhkMjBlZThkYmUzOTFhN2NkNmQ3NmQuaWNvLnBuZ9msgG0AAAAASUVORK5CYII=
2
+ `;function CG(e,t){f.useEffect(()=>{if(document){document.title=`${e} - FireCMS`;let c=document.querySelector("link[rel~='icon']");c||(c=document.createElement("link"),c.rel="icon",document.getElementsByTagName("head")[0].appendChild(c)),c.href=t??KG}},[e,t])}function Fn(){return n.jsx("div",{className:"rounded-full bg-gray-200 bg-opacity-30 dark:bg-opacity-20 w-5 h-2 inline-block"})}const SG=40,BG=100,EG=200;function Pn(e){if(e==="tiny")return SG;if(e==="small")return BG;if(e==="medium")return EG;throw Error("Thumbnail size not mapped")}function ln(e){switch(e){case"xs":case"s":return"tiny";case"m":return"small";case"l":case"xl":return"medium";default:throw Error("Missing mapping value in getPreviewSizeFrom: "+e)}}function Dn(e,t){f.useEffect(()=>{if(!document.getElementById(e)){const i=document.createElement("style");i.id=e,i.innerHTML=t,document.head.appendChild(i)}},[e,t])}const _e=({open:e,side:t="bottom",sideOffset:c,onOpenChange:i,title:a,className:l,style:s,tooltipClassName:d,children:u})=>(Dn("Tooltip",FG),a?n.jsx(Zn.Provider,{delayDuration:250,children:n.jsxs(Zn.Root,{open:e,onOpenChange:i,children:[n.jsx(Zn.Trigger,{asChild:!0,children:n.jsx("div",{className:l,style:s,children:u})}),n.jsx(Zn.Portal,{children:n.jsx(Zn.Content,{className:E("TooltipContent","max-w-lg leading-relaxed","z-50 rounded px-3 py-2 text-xs leading-none bg-gray-700 dark:bg-gray-800 bg-opacity-90 font-medium text-gray-50 shadow-2xl select-none duration-400 ease-in transform opacity-100",d),sideOffset:c===void 0?4:c,side:t,children:a})})]})}):n.jsx(n.Fragment,{children:u})),FG=`
3
3
 
4
4
  .TooltipContent {
5
5
  animation-duration: 220ms;
@@ -63,9 +63,9 @@
63
63
  opacity: 1;
64
64
  transform: translateX(0);
65
65
  }
66
- }`;function tc(e){return n.jsx(ye,{...e,tooltipClassName:"!text-red-500 bg-red-50",children:e.children})}const ge="focus:outline-none focus-visible:ring-2 focus-visible:ring-primary focus-visible:ring-opacity-75 focus-visible:ring-offset-2 focus-visible:ring-offset-transparent",Ar="focus:bg-opacity-70 focus:bg-gray-100 focus:dark:bg-gray-800 focus:dark:bg-opacity-60",_r="z-30 outline-none ring-2 ring-primary ring-opacity-75 ring-offset-2 ring-offset-transparent ",qe="bg-opacity-70 bg-gray-100 dark:bg-gray-800 dark:bg-opacity-60 transition duration-150 ease-in-out",yr="bg-opacity-0 bg-gray-100 dark:bg-gray-800 dark:bg-opacity-0 transition duration-150 ease-in-out",en="bg-opacity-100 dark:bg-opacity-90",ze="hover:bg-opacity-90 dark:hover:bg-opacity-90",ue="border-gray-100 dark:border-gray-800 dark:border-opacity-80",He="bg-white rounded-md dark:bg-gray-950 border dark:border-gray-800 dark:border-opacity-90 border-gray-100",cc="bg-white rounded-md dark:bg-gray-950 dark:border-gray-800 dark:border-opacity-50 transition duration-200 ease-in-out m-1 -p-1 border border-transparent",ic="hover:bg-blue-100 dark:hover:bg-blue-900 hover:bg-opacity-20 dark:hover:bg-opacity-20 hover:ring-2 cursor-pointer",Za="bg-blue-100 dark:bg-blue-900 bg-opacity-30 dark:bg-opacity-10 ring-1 ring-primary ring-opacity-75",ac={h1:"h1",h2:"h2",h3:"h3",h4:"h4",h5:"h5",h6:"h6",subtitle1:"h6",subtitle2:"h6",label:"label",body1:"p",body2:"p",inherit:"p",caption:"p",button:"span"},Xa={inherit:"text-inherit",initial:"text-current",primary:"text-text-primary dark:text-text-primary-dark",secondary:"text-text-secondary dark:text-text-secondary-dark",disabled:"text-text-disabled dark:text-text-disabled-dark",error:"text-red-600 dark:text-red-500"},xa={h1:"text-6xl font-headers font-light",h2:"text-5xl font-headers font-light",h3:"text-4xl font-headers font-normal",h4:"text-3xl font-headers font-normal",h5:"text-2xl font-headers font-normal",h6:"text-xl font-headers font-medium",subtitle1:"text-lg font-headers font-medium",subtitle2:"text-base font-headers font-medium",body1:"text-base",body2:"text-sm",label:"text-sm font-medium text-gray-500",inherit:"text-inherit",caption:"text-xs",button:"text-sm font-medium"};function j({align:e="inherit",color:t="primary",children:c,className:i,component:l,gutterBottom:a=!1,noWrap:s=!1,paragraph:d=!1,variant:u="body1",variantMapping:A=ac,style:_,onClick:g,...y}){const h=l||(d?"p":A[u]||ac[u])||"span",I=E(ge,xa[u],t?Xa[t]:"",e!=="inherit"&&`text-${e}`,a&&"mb-[0.35em]",s&&"truncate",d&&"mb-4",i);return n.jsx(h,{className:I,onClick:g,style:_,...y,children:c})}const hr=["table_rows","video_label","airlines","bento","border_all","border_clear","ac_unit","adjust","align_horizontal_center","album","all_inclusive","all_out","animation","assistant","audiotrack","account_balance_wallet","auto_awesome_mosaic","bolt","brightness_1","breakfast_dining","broken_image","brightness_5","cable","calendar_view_month","catching_pokemon","casino","category","cloud","color_lens","credit_card","earbuds","egg_alt","fiber_smart_record","flag","healing","heat_pump","hive","hub","local_library","local_pizza","memory","outlet","pages","panorama_photosphere","signal_cellular_0_bar","sports_baseball","storm","stairs"],lc=["search","123","360","10k","10mp","11mp","12mp","13mp","14mp","15mp","16mp","17mp","18_up_rating","18mp","19mp","1k","1k_plus","1x_mobiledata","20mp","21mp","22mp","23mp","24mp","2k","2k_plus","2mp","30fps","30fps_select","3d_rotation","3g_mobiledata","3k","3k_plus","3mp","3p","4g_mobiledata","4g_plus_mobiledata","4k","4k_plus","4mp","5g","5k","5k_plus","5mp","60fps","60fps_select","6_ft_apart","6k","6k_plus","6mp","7k","7k_plus","7mp","8k","8k_plus","8mp","9k","9k_plus","9mp","abc","ac_unit","access_alarm","access_alarms","access_time","access_time_filled","accessibility","accessibility_new","accessible","accessible_forward","account_balance","account_balance_wallet","account_box","account_circle","account_tree","ad_units","adb","add","add_a_photo","add_alarm","add_alert","add_box","add_business","add_card","add_chart","add_circle","add_circle_outline","add_comment","add_home","add_home_work","add_ic_call","add_link","add_location","add_location_alt","add_moderator","add_photo_alternate","add_reaction","add_road","add_shopping_cart","add_task","add_to_drive","add_to_home_screen","add_to_photos","add_to_queue","adf_scanner","adjust","admin_panel_settings","ads_click","agriculture","air","airline_seat_flat","airline_seat_flat_angled","airline_seat_individual_suite","airline_seat_legroom_extra","airline_seat_legroom_normal","airline_seat_legroom_reduced","airline_seat_recline_extra","airline_seat_recline_normal","airline_stops","airlines","airplane_ticket","airplanemode_active","airplanemode_inactive","airplay","airport_shuttle","alarm","alarm_add","alarm_off","alarm_on","album","align_horizontal_center","align_horizontal_left","align_horizontal_right","align_vertical_bottom","align_vertical_center","align_vertical_top","all_inbox","all_inclusive","all_out","alt_route","alternate_email","analytics","anchor","android","animation","announcement","aod","apartment","api","app_blocking","app_registration","app_settings_alt","app_shortcut","approval","apps","apps_outage","architecture","archive","area_chart","arrow_back","arrow_back_ios","arrow_back_ios_new","arrow_circle_down","arrow_circle_left","arrow_circle_right","arrow_circle_up","arrow_downward","arrow_drop_down","arrow_drop_down_circle","arrow_drop_up","arrow_forward","arrow_forward_ios","arrow_left","arrow_outward","arrow_right","arrow_right_alt","arrow_upward","art_track","article","aspect_ratio","assessment","assignment","assignment_ind","assignment_late","assignment_return","assignment_returned","assignment_turned_in","assist_walker","assistant","assistant_direction","assistant_photo","assured_workload","atm","attach_email","attach_file","attach_money","attachment","attractions","attribution","audio_file","audiotrack","auto_awesome","auto_awesome_mosaic","auto_awesome_motion","auto_delete","auto_fix_high","auto_fix_normal","auto_fix_off","auto_graph","auto_mode","auto_stories","autofps_select","autorenew","av_timer","baby_changing_station","back_hand","backpack","backspace","backup","backup_table","badge","bakery_dining","balance","balcony","ballot","bar_chart","batch_prediction","bathroom","bathtub","battery_0_bar","battery_1_bar","battery_2_bar","battery_3_bar","battery_4_bar","battery_5_bar","battery_6_bar","battery_alert","battery_charging_full","battery_full","battery_saver","battery_std","battery_unknown","beach_access","bed","bedroom_baby","bedroom_child","bedroom_parent","bedtime","bedtime_off","beenhere","bento","bike_scooter","biotech","blender","blind","blinds","blinds_closed","block","bloodtype","bluetooth","bluetooth_audio","bluetooth_connected","bluetooth_disabled","bluetooth_drive","bluetooth_searching","blur_circular","blur_linear","blur_off","blur_on","bolt","book","book_online","bookmark","bookmark_add","bookmark_added","bookmark_border","bookmark_remove","bookmarks","border_all","border_bottom","border_clear","border_color","border_horizontal","border_inner","border_left","border_outer","border_right","border_style","border_top","border_vertical","boy","branding_watermark","breakfast_dining","brightness_1","brightness_2","brightness_3","brightness_4","brightness_5","brightness_6","brightness_7","brightness_auto","brightness_high","brightness_low","brightness_medium","broadcast_on_home","broadcast_on_personal","broken_image","browse_gallery","browser_not_supported","browser_updated","brunch_dining","brush","bubble_chart","bug_report","build","build_circle","bungalow","burst_mode","bus_alert","business","business_center","cabin","cable","cached","cake","calculate","calendar_month","calendar_today","calendar_view_day","calendar_view_month","calendar_view_week","call","call_end","call_made","call_merge","call_missed","call_missed_outgoing","call_received","call_split","call_to_action","camera","camera_alt","camera_enhance","camera_front","camera_indoor","camera_outdoor","camera_rear","camera_roll","cameraswitch","campaign","cancel","cancel_presentation","cancel_schedule_send","candlestick_chart","car_crash","car_rental","car_repair","card_giftcard","card_membership","card_travel","carpenter","cases","casino","cast","cast_connected","cast_for_education","castle","catching_pokemon","category","celebration","cell_tower","cell_wifi","center_focus_strong","center_focus_weak","chair","chair_alt","chalet","change_circle","change_history","charging_station","chat","chat_bubble","chat_bubble_outline","check","check_box","check_box_outline_blank","check_circle","check_circle_outline","checklist","checklist_rtl","checkroom","chevron_left","chevron_right","child_care","child_friendly","chrome_reader_mode","church","circle","circle_notifications","class","clean_hands","cleaning_services","clear","clear_all","close","close_fullscreen","closed_caption","closed_caption_disabled","closed_caption_off","cloud","cloud_circle","cloud_done","cloud_download","cloud_off","cloud_queue","cloud_sync","cloud_upload","co2","co_present","code","code_off","coffee","coffee_maker","collections","collections_bookmark","color_lens","colorize","comment","comment_bank","comments_disabled","commit","commute","compare","compare_arrows","compass_calibration","compost","compress","computer","confirmation_number","connect_without_contact","connected_tv","connecting_airports","construction","contact_emergency","contact_mail","contact_page","contact_phone","contact_support","contactless","contacts","content_copy","content_cut","content_paste","content_paste_go","content_paste_off","content_paste_search","contrast","control_camera","control_point","control_point_duplicate","cookie","copy_all","copyright","coronavirus","corporate_fare","cottage","countertops","create","create_new_folder","credit_card","credit_card_off","credit_score","crib","crisis_alert","crop","crop_16_9","crop_3_2","crop_5_4","crop_7_5","crop_din","crop_free","crop_landscape","crop_original","crop_portrait","crop_rotate","crop_square","cruelty_free","css","currency_bitcoin","currency_exchange","currency_franc","currency_lira","currency_pound","currency_ruble","currency_rupee","currency_yen","currency_yuan","curtains","curtains_closed","cyclone","dangerous","dark_mode","dashboard","dashboard_customize","data_array","data_exploration","data_object","data_saver_off","data_saver_on","data_thresholding","data_usage","dataset","dataset_linked","date_range","deblur","deck","dehaze","delete","delete_forever","delete_outline","delete_sweep","delivery_dining","density_large","density_medium","density_small","departure_board","description","deselect","design_services","desk","desktop_access_disabled","desktop_mac","desktop_windows","details","developer_board","developer_board_off","developer_mode","device_hub","device_thermostat","device_unknown","devices","devices_fold","devices_other","dialer_sip","dialpad","diamond","difference","dining","dinner_dining","directions","directions_bike","directions_boat","directions_boat_filled","directions_bus","directions_bus_filled","directions_car","directions_car_filled","directions_off","directions_railway","directions_railway_filled","directions_run","directions_subway","directions_subway_filled","directions_transit","directions_transit_filled","directions_walk","dirty_lens","disabled_by_default","disabled_visible","disc_full","discount","display_settings","diversity_1","diversity_2","diversity_3","dns","do_disturb","do_disturb_alt","do_disturb_off","do_disturb_on","do_not_disturb","do_not_disturb_alt","do_not_disturb_off","do_not_disturb_on","do_not_disturb_on_total_silence","do_not_step","do_not_touch","dock","document_scanner","domain","domain_add","domain_disabled","domain_verification","done","done_all","done_outline","donut_large","donut_small","door_back","door_front","door_sliding","doorbell","double_arrow","downhill_skiing","download","download_done","download_for_offline","downloading","drafts","drag_handle","drag_indicator","draw","drive_eta","drive_file_move","drive_file_move_rtl","drive_file_rename_outline","drive_folder_upload","dry","dry_cleaning","duo","dvr","dynamic_feed","dynamic_form","e_mobiledata","earbuds","earbuds_battery","east","edgesensor_high","edgesensor_low","edit","edit_attributes","edit_calendar","edit_location","edit_location_alt","edit_note","edit_notifications","edit_off","edit_road","egg","egg_alt","eject","elderly","elderly_woman","electric_bike","electric_bolt","electric_car","electric_meter","electric_moped","electric_rickshaw","electric_scooter","electrical_services","elevator","email","emergency","emergency_recording","emergency_share","emoji_emotions","emoji_events","emoji_food_beverage","emoji_nature","emoji_objects","emoji_people","emoji_symbols","emoji_transportation","energy_savings_leaf","engineering","enhanced_encryption","equalizer","error","error_outline","escalator","escalator_warning","euro","euro_symbol","ev_station","event","event_available","event_busy","event_note","event_repeat","event_seat","exit_to_app","expand","expand_circle_down","expand_less","expand_more","explicit","explore","explore_off","exposure","exposure_neg_1","exposure_neg_2","exposure_plus_1","exposure_plus_2","exposure_zero","extension","extension_off","face","face_2","face_3","face_4","face_5","face_6","face_retouching_natural","face_retouching_off","fact_check","factory","family_restroom","fast_forward","fast_rewind","fastfood","favorite","favorite_border","fax","featured_play_list","featured_video","feed","feedback","female","fence","festival","fiber_dvr","fiber_manual_record","fiber_new","fiber_pin","fiber_smart_record","file_copy","file_download","file_download_done","file_download_off","file_open","file_present","file_upload","filter","filter_1","filter_2","filter_3","filter_4","filter_5","filter_6","filter_7","filter_8","filter_9","filter_9_plus","filter_alt","filter_alt_off","filter_b_and_w","filter_center_focus","filter_drama","filter_frames","filter_hdr","filter_list","filter_list_off","filter_none","filter_tilt_shift","filter_vintage","find_in_page","find_replace","fingerprint","fire_extinguisher","fire_hydrant_alt","fire_truck","fireplace","first_page","fit_screen","fitbit","fitness_center","flag","flag_circle","flaky","flare","flash_auto","flash_off","flash_on","flashlight_off","flashlight_on","flatware","flight","flight_class","flight_land","flight_takeoff","flip","flip_camera_android","flip_camera_ios","flip_to_back","flip_to_front","flood","fluorescent","flutter_dash","fmd_bad","fmd_good","folder","folder_copy","folder_delete","folder_off","folder_open","folder_shared","folder_special","folder_zip","follow_the_signs","font_download","font_download_off","food_bank","forest","fork_left","fork_right","format_align_center","format_align_justify","format_align_left","format_align_right","format_bold","format_clear","format_color_fill","format_color_reset","format_color_text","format_indent_decrease","format_indent_increase","format_italic","format_line_spacing","format_list_bulleted","format_list_numbered","format_list_numbered_rtl","format_overline","format_paint","format_quote","format_shapes","format_size","format_strikethrough","format_textdirection_l_to_r","format_textdirection_r_to_l","format_underlined","fort","forum","forward","forward_10","forward_30","forward_5","forward_to_inbox","foundation","free_breakfast","free_cancellation","front_hand","fullscreen","fullscreen_exit","functions","g_mobiledata","g_translate","gamepad","games","garage","gas_meter","gavel","generating_tokens","gesture","get_app","gif","gif_box","girl","gite","golf_course","gpp_bad","gpp_good","gpp_maybe","gps_fixed","gps_not_fixed","gps_off","grade","gradient","grading","grain","graphic_eq","grass","grid_3x3","grid_4x4","grid_goldenratio","grid_off","grid_on","grid_view","group","group_add","group_off","group_remove","group_work","groups","groups_2","groups_3","h_mobiledata","h_plus_mobiledata","hail","handshake","handyman","hardware","hd","hdr_auto","hdr_auto_select","hdr_enhanced_select","hdr_off","hdr_off_select","hdr_on","hdr_on_select","hdr_plus","hdr_strong","hdr_weak","headphones","headphones_battery","headset","headset_mic","headset_off","healing","health_and_safety","hearing","hearing_disabled","heart_broken","heat_pump","height","help","help_center","help_outline","hevc","hexagon","hide_image","hide_source","high_quality","highlight","highlight_alt","highlight_off","hiking","history","history_edu","history_toggle_off","hive","hls","hls_off","holiday_village","home","home_max","home_mini","home_repair_service","home_work","horizontal_distribute","horizontal_rule","horizontal_split","hot_tub","hotel","hotel_class","hourglass_bottom","hourglass_disabled","hourglass_empty","hourglass_full","hourglass_top","house","house_siding","houseboat","how_to_reg","how_to_vote","html","http","https","hub","hvac","ice_skating","icecream","image","image_aspect_ratio","image_not_supported","image_search","imagesearch_roller","import_contacts","import_export","important_devices","inbox","incomplete_circle","indeterminate_check_box","info","input","insert_chart","insert_chart_outlined","insert_comment","insert_drive_file","insert_emoticon","insert_invitation","insert_link","insert_page_break","insert_photo","insights","install_desktop","install_mobile","integration_instructions","interests","interpreter_mode","inventory","inventory_2","invert_colors","invert_colors_off","ios_share","iron","iso","javascript","join_full","join_inner","join_left","join_right","kayaking","kebab_dining","key","key_off","keyboard","keyboard_alt","keyboard_arrow_down","keyboard_arrow_left","keyboard_arrow_right","keyboard_arrow_up","keyboard_backspace","keyboard_capslock","keyboard_command_key","keyboard_control_key","keyboard_double_arrow_down","keyboard_double_arrow_left","keyboard_double_arrow_right","keyboard_double_arrow_up","keyboard_hide","keyboard_option_key","keyboard_return","keyboard_tab","keyboard_voice","king_bed","kitchen","kitesurfing","label","label_important","label_off","lan","landscape","landslide","language","laptop","laptop_chromebook","laptop_mac","laptop_windows","last_page","launch","layers","layers_clear","leaderboard","leak_add","leak_remove","legend_toggle","lens","lens_blur","library_add","library_add_check","library_books","library_music","light","light_mode","lightbulb","lightbulb_circle","line_axis","line_style","line_weight","linear_scale","link","link_off","linked_camera","liquor","list","list_alt","live_help","live_tv","living","local_activity","local_airport","local_atm","local_bar","local_cafe","local_car_wash","local_convenience_store","local_dining","local_drink","local_fire_department","local_florist","local_gas_station","local_grocery_store","local_hospital","local_hotel","local_laundry_service","local_library","local_mall","local_movies","local_offer","local_parking","local_pharmacy","local_phone","local_pizza","local_play","local_police","local_post_office","local_printshop","local_see","local_shipping","local_taxi","location_city","location_disabled","location_off","location_on","location_searching","lock","lock_clock","lock_open","lock_person","lock_reset","login","logo_dev","logout","looks","looks_3","looks_4","looks_5","looks_6","looks_one","looks_two","loop","loupe","low_priority","loyalty","lte_mobiledata","lte_plus_mobiledata","luggage","lunch_dining","lyrics","macro_off","mail","mail_lock","mail_outline","male","man","man_2","man_3","man_4","manage_accounts","manage_history","manage_search","map","maps_home_work","maps_ugc","margin","mark_as_unread","mark_chat_read","mark_chat_unread","mark_email_read","mark_email_unread","mark_unread_chat_alt","markunread","markunread_mailbox","masks","maximize","media_bluetooth_off","media_bluetooth_on","mediation","medical_information","medical_services","medication","medication_liquid","meeting_room","memory","menu","menu_book","menu_open","merge","merge_type","message","mic","mic_external_off","mic_external_on","mic_none","mic_off","microwave","military_tech","minimize","minor_crash","miscellaneous_services","missed_video_call","mms","mobile_friendly","mobile_off","mobile_screen_share","mobiledata_off","mode","mode_comment","mode_edit","mode_edit_outline","mode_fan_off","mode_night","mode_of_travel","mode_standby","model_training","monetization_on","money","money_off","money_off_csred","monitor","monitor_heart","monitor_weight","monochrome_photos","mood","mood_bad","moped","more","more_horiz","more_time","more_vert","mosque","motion_photos_auto","motion_photos_off","motion_photos_on","motion_photos_pause","motion_photos_paused","mouse","move_down","move_to_inbox","move_up","movie","movie_creation","movie_filter","moving","mp","multiline_chart","multiple_stop","museum","music_note","music_off","music_video","my_location","nat","nature","nature_people","navigate_before","navigate_next","navigation","near_me","near_me_disabled","nearby_error","nearby_off","nest_cam_wired_stand","network_cell","network_check","network_locked","network_ping","network_wifi","network_wifi_1_bar","network_wifi_2_bar","network_wifi_3_bar","new_label","new_releases","newspaper","next_plan","next_week","nfc","night_shelter","nightlife","nightlight","nightlight_round","nights_stay","no_accounts","no_adult_content","no_backpack","no_cell","no_crash","no_drinks","no_encryption","no_encryption_gmailerrorred","no_flash","no_food","no_luggage","no_meals","no_meeting_room","no_photography","no_sim","no_stroller","no_transfer","noise_aware","noise_control_off","nordic_walking","north","north_east","north_west","not_accessible","not_interested","not_listed_location","not_started","note","note_add","note_alt","notes","notification_add","notification_important","notifications","notifications_active","notifications_none","notifications_off","notifications_paused","numbers","offline_bolt","offline_pin","offline_share","oil_barrel","on_device_training","ondemand_video","online_prediction","opacity","open_in_browser","open_in_full","open_in_new","open_in_new_off","open_with","other_houses","outbound","outbox","outdoor_grill","outlet","outlined_flag","output","padding","pages","pageview","paid","palette","pan_tool","pan_tool_alt","panorama","panorama_fish_eye","panorama_horizontal","panorama_horizontal_select","panorama_photosphere","panorama_photosphere_select","panorama_vertical","panorama_vertical_select","panorama_wide_angle","panorama_wide_angle_select","paragliding","park","party_mode","password","pattern","pause","pause_circle","pause_circle_filled","pause_circle_outline","pause_presentation","payment","payments","pedal_bike","pending","pending_actions","pentagon","people","people_alt","people_outline","percent","perm_camera_mic","perm_contact_calendar","perm_data_setting","perm_device_information","perm_identity","perm_media","perm_phone_msg","perm_scan_wifi","person","person_2","person_3","person_4","person_add","person_add_alt","person_add_alt_1","person_add_disabled","person_off","person_outline","person_pin","person_pin_circle","person_remove","person_remove_alt_1","person_search","personal_injury","personal_video","pest_control","pest_control_rodent","pets","phishing","phone","phone_android","phone_bluetooth_speaker","phone_callback","phone_disabled","phone_enabled","phone_forwarded","phone_iphone","phone_locked","phone_missed","phone_paused","phonelink","phonelink_erase","phonelink_lock","phonelink_off","phonelink_ring","phonelink_setup","photo","photo_album","photo_camera","photo_camera_back","photo_camera_front","photo_filter","photo_library","photo_size_select_actual","photo_size_select_large","photo_size_select_small","php","piano","piano_off","picture_as_pdf","picture_in_picture","picture_in_picture_alt","pie_chart","pie_chart_outline","pin","pin_drop","pin_end","pin_invoke","pinch","pivot_table_chart","pix","place","plagiarism","play_arrow","play_circle","play_circle_filled","play_circle_outline","play_disabled","play_for_work","play_lesson","playlist_add","playlist_add_check","playlist_add_check_circle","playlist_add_circle","playlist_play","playlist_remove","plumbing","plus_one","podcasts","point_of_sale","policy","poll","polyline","polymer","pool","portable_wifi_off","portrait","post_add","power","power_input","power_off","power_settings_new","precision_manufacturing","pregnant_woman","present_to_all","preview","price_change","price_check","print","print_disabled","priority_high","privacy_tip","private_connectivity","production_quantity_limits","propane","propane_tank","psychology","psychology_alt","public","public_off","publish","published_with_changes","punch_clock","push_pin","qr_code","qr_code_2","qr_code_scanner","query_builder","query_stats","question_answer","question_mark","queue","queue_music","queue_play_next","quickreply","quiz","r_mobiledata","radar","radio","radio_button_checked","radio_button_unchecked","railway_alert","ramen_dining","ramp_left","ramp_right","rate_review","raw_off","raw_on","read_more","real_estate_agent","receipt","receipt_long","recent_actors","recommend","record_voice_over","rectangle","recycling","redeem","redo","reduce_capacity","refresh","remember_me","remove","remove_circle","remove_circle_outline","remove_done","remove_from_queue","remove_moderator","remove_red_eye","remove_road","remove_shopping_cart","reorder","repartition","repeat","repeat_on","repeat_one","repeat_one_on","replay","replay_10","replay_30","replay_5","replay_circle_filled","reply","reply_all","report","report_gmailerrorred","report_off","report_problem","request_page","request_quote","reset_tv","restart_alt","restaurant","restaurant_menu","restore","restore_from_trash","restore_page","reviews","rice_bowl","ring_volume","rocket","rocket_launch","roller_shades","roller_shades_closed","roller_skating","roofing","room","room_preferences","room_service","rotate_90_degrees_ccw","rotate_90_degrees_cw","rotate_left","rotate_right","roundabout_left","roundabout_right","rounded_corner","route","router","rowing","rss_feed","rsvp","rtt","rule","rule_folder","run_circle","running_with_errors","rv_hookup","safety_check","safety_divider","sailing","sanitizer","satellite","satellite_alt","save","save_alt","save_as","saved_search","savings","scale","scanner","scatter_plot","schedule","schedule_send","schema","school","science","score","scoreboard","screen_lock_landscape","screen_lock_portrait","screen_lock_rotation","screen_rotation","screen_rotation_alt","screen_search_desktop","screen_share","screenshot","screenshot_monitor","scuba_diving","sd","sd_card","sd_card_alert","sd_storage","search","search_off","security","security_update","security_update_good","security_update_warning","segment","select_all","self_improvement","sell","send","send_and_archive","send_time_extension","send_to_mobile","sensor_door","sensor_occupied","sensor_window","sensors","sensors_off","sentiment_dissatisfied","sentiment_neutral","sentiment_satisfied","sentiment_satisfied_alt","sentiment_very_dissatisfied","sentiment_very_satisfied","set_meal","settings","settings_accessibility","settings_applications","settings_backup_restore","settings_bluetooth","settings_brightness","settings_cell","settings_ethernet","settings_input_antenna","settings_input_component","settings_input_composite","settings_input_hdmi","settings_input_svideo","settings_overscan","settings_phone","settings_power","settings_remote","settings_suggest","settings_system_daydream","settings_voice","severe_cold","shape_line","share","share_location","shield","shield_moon","shop","shop_2","shop_two","shopping_bag","shopping_basket","shopping_cart","shopping_cart_checkout","short_text","shortcut","show_chart","shower","shuffle","shuffle_on","shutter_speed","sick","sign_language","signal_cellular_0_bar","signal_cellular_4_bar","signal_cellular_alt","signal_cellular_alt_1_bar","signal_cellular_alt_2_bar","signal_cellular_connected_no_internet_0_bar","signal_cellular_connected_no_internet_4_bar","signal_cellular_no_sim","signal_cellular_nodata","signal_cellular_null","signal_cellular_off","signal_wifi_0_bar","signal_wifi_4_bar","signal_wifi_4_bar_lock","signal_wifi_bad","signal_wifi_connected_no_internet_4","signal_wifi_off","signal_wifi_statusbar_4_bar","signal_wifi_statusbar_connected_no_internet_4","signal_wifi_statusbar_null","signpost","sim_card","sim_card_alert","sim_card_download","single_bed","sip","skateboarding","skip_next","skip_previous","sledding","slideshow","slow_motion_video","smart_button","smart_display","smart_screen","smart_toy","smartphone","smoke_free","smoking_rooms","sms","sms_failed","snippet_folder","snooze","snowboarding","snowmobile","snowshoeing","soap","social_distance","solar_power","sort","sort_by_alpha","sos","soup_kitchen","source","south","south_america","south_east","south_west","spa","space_bar","space_dashboard","spatial_audio","spatial_audio_off","spatial_tracking","speaker","speaker_group","speaker_notes","speaker_notes_off","speaker_phone","speed","spellcheck","splitscreen","spoke","sports","sports_bar","sports_baseball","sports_basketball","sports_cricket","sports_esports","sports_football","sports_golf","sports_gymnastics","sports_handball","sports_hockey","sports_kabaddi","sports_martial_arts","sports_mma","sports_motorsports","sports_rugby","sports_score","sports_soccer","sports_tennis","sports_volleyball","square","square_foot","ssid_chart","stacked_bar_chart","stacked_line_chart","stadium","stairs","star","star_border","star_border_purple500","star_half","star_outline","star_purple500","star_rate","stars","start","stay_current_landscape","stay_current_portrait","stay_primary_landscape","stay_primary_portrait","sticky_note_2","stop","stop_circle","stop_screen_share","storage","store","store_mall_directory","storefront","storm","straight","straighten","stream","streetview","strikethrough_s","stroller","style","subdirectory_arrow_left","subdirectory_arrow_right","subject","subscript","subscriptions","subtitles","subtitles_off","subway","summarize","superscript","supervised_user_circle","supervisor_account","support","support_agent","surfing","surround_sound","swap_calls","swap_horiz","swap_horizontal_circle","swap_vert","swap_vertical_circle","swipe","swipe_down","swipe_down_alt","swipe_left","swipe_left_alt","swipe_right","swipe_right_alt","swipe_up","swipe_up_alt","swipe_vertical","switch_access_shortcut","switch_access_shortcut_add","switch_account","switch_camera","switch_left","switch_right","switch_video","synagogue","sync","sync_alt","sync_disabled","sync_lock","sync_problem","system_security_update","system_security_update_good","system_security_update_warning","system_update","system_update_alt","tab","tab_unselected","table_bar","table_chart","table_restaurant","table_rows","table_view","tablet","tablet_android","tablet_mac","tag","tag_faces","takeout_dining","tap_and_play","tapas","task","task_alt","taxi_alert","temple_buddhist","temple_hindu","terminal","terrain","text_decrease","text_fields","text_format","text_increase","text_rotate_up","text_rotate_vertical","text_rotation_angledown","text_rotation_angleup","text_rotation_down","text_rotation_none","text_snippet","textsms","texture","theater_comedy","theaters","thermostat","thermostat_auto","thumb_down","thumb_down_alt","thumb_down_off_alt","thumb_up","thumb_up_alt","thumb_up_off_alt","thumbs_up_down","thunderstorm","time_to_leave","timelapse","timeline","timer","timer_10","timer_10_select","timer_3","timer_3_select","timer_off","tips_and_updates","tire_repair","title","toc","today","toggle_off","toggle_on","token","toll","tonality","topic","tornado","touch_app","tour","toys","track_changes","traffic","train","tram","transcribe","transfer_within_a_station","transform","transgender","transit_enterexit","translate","travel_explore","trending_down","trending_flat","trending_up","trip_origin","troubleshoot","try","tsunami","tty","tune","tungsten","turn_left","turn_right","turn_sharp_left","turn_sharp_right","turn_slight_left","turn_slight_right","turned_in","turned_in_not","tv","tv_off","two_wheeler","type_specimen","u_turn_left","u_turn_right","umbrella","unarchive","undo","unfold_less","unfold_less_double","unfold_more","unfold_more_double","unpublished","unsubscribe","upcoming","update","update_disabled","upgrade","upload","upload_file","usb","usb_off","vaccines","vape_free","vaping_rooms","verified","verified_user","vertical_align_bottom","vertical_align_center","vertical_align_top","vertical_distribute","vertical_shades","vertical_shades_closed","vertical_split","vibration","video_call","video_camera_back","video_camera_front","video_chat","video_file","video_label","video_library","video_settings","video_stable","videocam","videocam_off","videogame_asset","videogame_asset_off","view_agenda","view_array","view_carousel","view_column","view_comfy","view_comfy_alt","view_compact","view_compact_alt","view_cozy","view_day","view_headline","view_in_ar","view_kanban","view_list","view_module","view_quilt","view_sidebar","view_stream","view_timeline","view_week","vignette","villa","visibility","visibility_off","voice_chat","voice_over_off","voicemail","volcano","volume_down","volume_mute","volume_off","volume_up","volunteer_activism","vpn_key","vpn_key_off","vpn_lock","vrpano","wallet","wallpaper","warehouse","warning","warning_amber","wash","watch","watch_later","watch_off","water","water_damage","water_drop","waterfall_chart","waves","waving_hand","wb_auto","wb_cloudy","wb_incandescent","wb_iridescent","wb_shade","wb_sunny","wb_twilight","wc","web","web_asset","web_asset_off","web_stories","webhook","weekend","west","whatshot","wheelchair_pickup","where_to_vote","widgets","width_full","width_normal","width_wide","wifi","wifi_1_bar","wifi_2_bar","wifi_calling","wifi_calling_3","wifi_channel","wifi_find","wifi_lock","wifi_off","wifi_password","wifi_protected_setup","wifi_tethering","wifi_tethering_error","wifi_tethering_off","wind_power","window","wine_bar","woman","woman_2","work","work_history","work_off","work_outline","workspace_premium","workspaces","wrap_text","wrong_location","wysiwyg","yard","youtube_searched_for","zoom_in","zoom_in_map","zoom_out","zoom_out_map"],Ra={inherit:"",primary:"text-primary",success:"text-green-500",warning:"text-yellow-500",secondary:"text-secondary",disabled:"text-disabled dark:text-disabled-dark",error:"text-red-500"};function r({iconKey:e,size:t="medium",color:c,className:i,onClick:l,style:a}){let s;switch(t){case"smallest":s=16;break;case"small":s=20;break;case"medium":s=24;break;case"large":s=28;break;default:s=t}return s||(s=24),n.jsx("span",{style:{fontSize:`${s}px`,display:"block",...a},className:E("material-icons",c?Ra[c]:"","select-none",i),onClick:l,children:e})}function el(e){return n.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",className:e.className,fill:"currentColor",width:e.size??24,height:e.size??24,viewBox:"0 0 24 24",children:n.jsx("path",{d:"M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"})})}function sc(e){return n.jsx(r,{...e,iconKey:"search"})}function nl(e){return n.jsx(r,{...e,iconKey:"123"})}function ol(e){return n.jsx(r,{...e,iconKey:"360"})}function rl(e){return n.jsx(r,{...e,iconKey:"10k"})}function tl(e){return n.jsx(r,{...e,iconKey:"10mp"})}function cl(e){return n.jsx(r,{...e,iconKey:"11mp"})}function il(e){return n.jsx(r,{...e,iconKey:"12mp"})}function al(e){return n.jsx(r,{...e,iconKey:"13mp"})}function ll(e){return n.jsx(r,{...e,iconKey:"14mp"})}function sl(e){return n.jsx(r,{...e,iconKey:"15mp"})}function dl(e){return n.jsx(r,{...e,iconKey:"16mp"})}function ul(e){return n.jsx(r,{...e,iconKey:"17mp"})}function fl(e){return n.jsx(r,{...e,iconKey:"18_up_rating"})}function Al(e){return n.jsx(r,{...e,iconKey:"18mp"})}function _l(e){return n.jsx(r,{...e,iconKey:"19mp"})}function yl(e){return n.jsx(r,{...e,iconKey:"1k"})}function hl(e){return n.jsx(r,{...e,iconKey:"1k_plus"})}function gl(e){return n.jsx(r,{...e,iconKey:"1x_mobiledata"})}function Il(e){return n.jsx(r,{...e,iconKey:"20mp"})}function bl(e){return n.jsx(r,{...e,iconKey:"21mp"})}function pl(e){return n.jsx(r,{...e,iconKey:"22mp"})}function wl(e){return n.jsx(r,{...e,iconKey:"23mp"})}function kl(e){return n.jsx(r,{...e,iconKey:"24mp"})}function ml(e){return n.jsx(r,{...e,iconKey:"2k"})}function vl(e){return n.jsx(r,{...e,iconKey:"2k_plus"})}function Kl(e){return n.jsx(r,{...e,iconKey:"2mp"})}function Cl(e){return n.jsx(r,{...e,iconKey:"30fps"})}function Sl(e){return n.jsx(r,{...e,iconKey:"30fps_select"})}function Bl(e){return n.jsx(r,{...e,iconKey:"3d_rotation"})}function El(e){return n.jsx(r,{...e,iconKey:"3g_mobiledata"})}function Fl(e){return n.jsx(r,{...e,iconKey:"3k"})}function Pl(e){return n.jsx(r,{...e,iconKey:"3k_plus"})}function Dl(e){return n.jsx(r,{...e,iconKey:"3mp"})}function Nl(e){return n.jsx(r,{...e,iconKey:"3p"})}function Ml(e){return n.jsx(r,{...e,iconKey:"4g_mobiledata"})}function Tl(e){return n.jsx(r,{...e,iconKey:"4g_plus_mobiledata"})}function Ol(e){return n.jsx(r,{...e,iconKey:"4k"})}function Ll(e){return n.jsx(r,{...e,iconKey:"4k_plus"})}function Ql(e){return n.jsx(r,{...e,iconKey:"4mp"})}function Vl(e){return n.jsx(r,{...e,iconKey:"5g"})}function Wl(e){return n.jsx(r,{...e,iconKey:"5k"})}function Gl(e){return n.jsx(r,{...e,iconKey:"5k_plus"})}function zl(e){return n.jsx(r,{...e,iconKey:"5mp"})}function Hl(e){return n.jsx(r,{...e,iconKey:"60fps"})}function Ul(e){return n.jsx(r,{...e,iconKey:"60fps_select"})}function Yl(e){return n.jsx(r,{...e,iconKey:"6_ft_apart"})}function $l(e){return n.jsx(r,{...e,iconKey:"6k"})}function jl(e){return n.jsx(r,{...e,iconKey:"6k_plus"})}function ql(e){return n.jsx(r,{...e,iconKey:"6mp"})}function Jl(e){return n.jsx(r,{...e,iconKey:"7k"})}function Zl(e){return n.jsx(r,{...e,iconKey:"7k_plus"})}function Xl(e){return n.jsx(r,{...e,iconKey:"7mp"})}function xl(e){return n.jsx(r,{...e,iconKey:"8k"})}function Rl(e){return n.jsx(r,{...e,iconKey:"8k_plus"})}function es(e){return n.jsx(r,{...e,iconKey:"8mp"})}function ns(e){return n.jsx(r,{...e,iconKey:"9k"})}function os(e){return n.jsx(r,{...e,iconKey:"9k_plus"})}function rs(e){return n.jsx(r,{...e,iconKey:"9mp"})}function ts(e){return n.jsx(r,{...e,iconKey:"abc"})}function cs(e){return n.jsx(r,{...e,iconKey:"ac_unit"})}function is(e){return n.jsx(r,{...e,iconKey:"access_alarm"})}function as(e){return n.jsx(r,{...e,iconKey:"access_alarms"})}function ls(e){return n.jsx(r,{...e,iconKey:"access_time"})}function ss(e){return n.jsx(r,{...e,iconKey:"access_time_filled"})}function ds(e){return n.jsx(r,{...e,iconKey:"accessibility"})}function us(e){return n.jsx(r,{...e,iconKey:"accessibility_new"})}function fs(e){return n.jsx(r,{...e,iconKey:"accessible"})}function As(e){return n.jsx(r,{...e,iconKey:"accessible_forward"})}function _s(e){return n.jsx(r,{...e,iconKey:"account_balance"})}function ys(e){return n.jsx(r,{...e,iconKey:"account_balance_wallet"})}function hs(e){return n.jsx(r,{...e,iconKey:"account_box"})}function gs(e){return n.jsx(r,{...e,iconKey:"account_circle"})}function Is(e){return n.jsx(r,{...e,iconKey:"account_tree"})}function bs(e){return n.jsx(r,{...e,iconKey:"ad_units"})}function ps(e){return n.jsx(r,{...e,iconKey:"adb"})}function hn(e){return n.jsx(r,{...e,iconKey:"add"})}function ws(e){return n.jsx(r,{...e,iconKey:"add_a_photo"})}function ks(e){return n.jsx(r,{...e,iconKey:"add_alarm"})}function ms(e){return n.jsx(r,{...e,iconKey:"add_alert"})}function vs(e){return n.jsx(r,{...e,iconKey:"add_box"})}function Ks(e){return n.jsx(r,{...e,iconKey:"add_business"})}function Cs(e){return n.jsx(r,{...e,iconKey:"add_card"})}function Ss(e){return n.jsx(r,{...e,iconKey:"add_chart"})}function Bs(e){return n.jsx(r,{...e,iconKey:"add_circle"})}function Es(e){return n.jsx(r,{...e,iconKey:"add_circle_outline"})}function Fs(e){return n.jsx(r,{...e,iconKey:"add_comment"})}function Ps(e){return n.jsx(r,{...e,iconKey:"add_home"})}function Ds(e){return n.jsx(r,{...e,iconKey:"add_home_work"})}function Ns(e){return n.jsx(r,{...e,iconKey:"add_ic_call"})}function dc(e){return n.jsx(r,{...e,iconKey:"add_link"})}function Ms(e){return n.jsx(r,{...e,iconKey:"add_location"})}function Ts(e){return n.jsx(r,{...e,iconKey:"add_location_alt"})}function Os(e){return n.jsx(r,{...e,iconKey:"add_moderator"})}function Ls(e){return n.jsx(r,{...e,iconKey:"add_photo_alternate"})}function Qs(e){return n.jsx(r,{...e,iconKey:"add_reaction"})}function Vs(e){return n.jsx(r,{...e,iconKey:"add_road"})}function Ws(e){return n.jsx(r,{...e,iconKey:"add_shopping_cart"})}function Gs(e){return n.jsx(r,{...e,iconKey:"add_task"})}function zs(e){return n.jsx(r,{...e,iconKey:"add_to_drive"})}function Hs(e){return n.jsx(r,{...e,iconKey:"add_to_home_screen"})}function Us(e){return n.jsx(r,{...e,iconKey:"add_to_photos"})}function Ys(e){return n.jsx(r,{...e,iconKey:"add_to_queue"})}function $s(e){return n.jsx(r,{...e,iconKey:"adf_scanner"})}function js(e){return n.jsx(r,{...e,iconKey:"adjust"})}function qs(e){return n.jsx(r,{...e,iconKey:"admin_panel_settings"})}function Js(e){return n.jsx(r,{...e,iconKey:"ads_click"})}function Zs(e){return n.jsx(r,{...e,iconKey:"agriculture"})}function Xs(e){return n.jsx(r,{...e,iconKey:"air"})}function xs(e){return n.jsx(r,{...e,iconKey:"airline_seat_flat"})}function Rs(e){return n.jsx(r,{...e,iconKey:"airline_seat_flat_angled"})}function ed(e){return n.jsx(r,{...e,iconKey:"airline_seat_individual_suite"})}function nd(e){return n.jsx(r,{...e,iconKey:"airline_seat_legroom_extra"})}function od(e){return n.jsx(r,{...e,iconKey:"airline_seat_legroom_normal"})}function rd(e){return n.jsx(r,{...e,iconKey:"airline_seat_legroom_reduced"})}function td(e){return n.jsx(r,{...e,iconKey:"airline_seat_recline_extra"})}function cd(e){return n.jsx(r,{...e,iconKey:"airline_seat_recline_normal"})}function id(e){return n.jsx(r,{...e,iconKey:"airline_stops"})}function ad(e){return n.jsx(r,{...e,iconKey:"airlines"})}function ld(e){return n.jsx(r,{...e,iconKey:"airplane_ticket"})}function sd(e){return n.jsx(r,{...e,iconKey:"airplanemode_active"})}function dd(e){return n.jsx(r,{...e,iconKey:"airplanemode_inactive"})}function ud(e){return n.jsx(r,{...e,iconKey:"airplay"})}function fd(e){return n.jsx(r,{...e,iconKey:"airport_shuttle"})}function Ad(e){return n.jsx(r,{...e,iconKey:"alarm"})}function _d(e){return n.jsx(r,{...e,iconKey:"alarm_add"})}function yd(e){return n.jsx(r,{...e,iconKey:"alarm_off"})}function hd(e){return n.jsx(r,{...e,iconKey:"alarm_on"})}function gd(e){return n.jsx(r,{...e,iconKey:"album"})}function Id(e){return n.jsx(r,{...e,iconKey:"align_horizontal_center"})}function bd(e){return n.jsx(r,{...e,iconKey:"align_horizontal_left"})}function pd(e){return n.jsx(r,{...e,iconKey:"align_horizontal_right"})}function wd(e){return n.jsx(r,{...e,iconKey:"align_vertical_bottom"})}function kd(e){return n.jsx(r,{...e,iconKey:"align_vertical_center"})}function md(e){return n.jsx(r,{...e,iconKey:"align_vertical_top"})}function vd(e){return n.jsx(r,{...e,iconKey:"all_inbox"})}function Kd(e){return n.jsx(r,{...e,iconKey:"all_inclusive"})}function Cd(e){return n.jsx(r,{...e,iconKey:"all_out"})}function Sd(e){return n.jsx(r,{...e,iconKey:"alt_route"})}function Bd(e){return n.jsx(r,{...e,iconKey:"alternate_email"})}function Ed(e){return n.jsx(r,{...e,iconKey:"analytics"})}function Fd(e){return n.jsx(r,{...e,iconKey:"anchor"})}function Pd(e){return n.jsx(r,{...e,iconKey:"android"})}function Dd(e){return n.jsx(r,{...e,iconKey:"animation"})}function Nd(e){return n.jsx(r,{...e,iconKey:"announcement"})}function Md(e){return n.jsx(r,{...e,iconKey:"aod"})}function Td(e){return n.jsx(r,{...e,iconKey:"apartment"})}function Od(e){return n.jsx(r,{...e,iconKey:"api"})}function Ld(e){return n.jsx(r,{...e,iconKey:"app_blocking"})}function Qd(e){return n.jsx(r,{...e,iconKey:"app_registration"})}function Vd(e){return n.jsx(r,{...e,iconKey:"app_settings_alt"})}function Wd(e){return n.jsx(r,{...e,iconKey:"app_shortcut"})}function Gd(e){return n.jsx(r,{...e,iconKey:"approval"})}function zd(e){return n.jsx(r,{...e,iconKey:"apps"})}function Hd(e){return n.jsx(r,{...e,iconKey:"apps_outage"})}function Ud(e){return n.jsx(r,{...e,iconKey:"architecture"})}function Yd(e){return n.jsx(r,{...e,iconKey:"archive"})}function $d(e){return n.jsx(r,{...e,iconKey:"area_chart"})}function jd(e){return n.jsx(r,{...e,iconKey:"arrow_back"})}function qd(e){return n.jsx(r,{...e,iconKey:"arrow_back_ios"})}function Jd(e){return n.jsx(r,{...e,iconKey:"arrow_back_ios_new"})}function Zd(e){return n.jsx(r,{...e,iconKey:"arrow_circle_down"})}function Xd(e){return n.jsx(r,{...e,iconKey:"arrow_circle_left"})}function xd(e){return n.jsx(r,{...e,iconKey:"arrow_circle_right"})}function Rd(e){return n.jsx(r,{...e,iconKey:"arrow_circle_up"})}function eu(e){return n.jsx(r,{...e,iconKey:"arrow_downward"})}function gr(e){return n.jsx(r,{...e,iconKey:"arrow_drop_down"})}function nu(e){return n.jsx(r,{...e,iconKey:"arrow_drop_down_circle"})}function ou(e){return n.jsx(r,{...e,iconKey:"arrow_drop_up"})}function uc(e){return n.jsx(r,{...e,iconKey:"arrow_forward"})}function ru(e){return n.jsx(r,{...e,iconKey:"arrow_forward_ios"})}function tu(e){return n.jsx(r,{...e,iconKey:"arrow_left"})}function cu(e){return n.jsx(r,{...e,iconKey:"arrow_outward"})}function iu(e){return n.jsx(r,{...e,iconKey:"arrow_right"})}function au(e){return n.jsx(r,{...e,iconKey:"arrow_right_alt"})}function po(e){return n.jsx(r,{...e,iconKey:"arrow_upward"})}function lu(e){return n.jsx(r,{...e,iconKey:"art_track"})}function su(e){return n.jsx(r,{...e,iconKey:"article"})}function du(e){return n.jsx(r,{...e,iconKey:"aspect_ratio"})}function uu(e){return n.jsx(r,{...e,iconKey:"assessment"})}function fc(e){return n.jsx(r,{...e,iconKey:"assignment"})}function fu(e){return n.jsx(r,{...e,iconKey:"assignment_ind"})}function Au(e){return n.jsx(r,{...e,iconKey:"assignment_late"})}function _u(e){return n.jsx(r,{...e,iconKey:"assignment_return"})}function yu(e){return n.jsx(r,{...e,iconKey:"assignment_returned"})}function hu(e){return n.jsx(r,{...e,iconKey:"assignment_turned_in"})}function gu(e){return n.jsx(r,{...e,iconKey:"assist_walker"})}function Iu(e){return n.jsx(r,{...e,iconKey:"assistant"})}function bu(e){return n.jsx(r,{...e,iconKey:"assistant_direction"})}function pu(e){return n.jsx(r,{...e,iconKey:"assistant_photo"})}function wu(e){return n.jsx(r,{...e,iconKey:"assured_workload"})}function ku(e){return n.jsx(r,{...e,iconKey:"atm"})}function mu(e){return n.jsx(r,{...e,iconKey:"attach_email"})}function vu(e){return n.jsx(r,{...e,iconKey:"attach_file"})}function Ku(e){return n.jsx(r,{...e,iconKey:"attach_money"})}function Cu(e){return n.jsx(r,{...e,iconKey:"attachment"})}function Su(e){return n.jsx(r,{...e,iconKey:"attractions"})}function Bu(e){return n.jsx(r,{...e,iconKey:"attribution"})}function Eu(e){return n.jsx(r,{...e,iconKey:"audio_file"})}function Fu(e){return n.jsx(r,{...e,iconKey:"audiotrack"})}function Pu(e){return n.jsx(r,{...e,iconKey:"auto_awesome"})}function Du(e){return n.jsx(r,{...e,iconKey:"auto_awesome_mosaic"})}function Nu(e){return n.jsx(r,{...e,iconKey:"auto_awesome_motion"})}function Mu(e){return n.jsx(r,{...e,iconKey:"auto_delete"})}function Tu(e){return n.jsx(r,{...e,iconKey:"auto_fix_high"})}function Ou(e){return n.jsx(r,{...e,iconKey:"auto_fix_normal"})}function Lu(e){return n.jsx(r,{...e,iconKey:"auto_fix_off"})}function Qu(e){return n.jsx(r,{...e,iconKey:"auto_graph"})}function Vu(e){return n.jsx(r,{...e,iconKey:"auto_mode"})}function Wu(e){return n.jsx(r,{...e,iconKey:"auto_stories"})}function Gu(e){return n.jsx(r,{...e,iconKey:"autofps_select"})}function zu(e){return n.jsx(r,{...e,iconKey:"autorenew"})}function Hu(e){return n.jsx(r,{...e,iconKey:"av_timer"})}function Uu(e){return n.jsx(r,{...e,iconKey:"baby_changing_station"})}function Yu(e){return n.jsx(r,{...e,iconKey:"back_hand"})}function $u(e){return n.jsx(r,{...e,iconKey:"backpack"})}function ju(e){return n.jsx(r,{...e,iconKey:"backspace"})}function qu(e){return n.jsx(r,{...e,iconKey:"backup"})}function Ju(e){return n.jsx(r,{...e,iconKey:"backup_table"})}function Zu(e){return n.jsx(r,{...e,iconKey:"badge"})}function Xu(e){return n.jsx(r,{...e,iconKey:"bakery_dining"})}function xu(e){return n.jsx(r,{...e,iconKey:"balance"})}function Ru(e){return n.jsx(r,{...e,iconKey:"balcony"})}function Ir(e){return n.jsx(r,{...e,iconKey:"ballot"})}function ef(e){return n.jsx(r,{...e,iconKey:"bar_chart"})}function nf(e){return n.jsx(r,{...e,iconKey:"batch_prediction"})}function of(e){return n.jsx(r,{...e,iconKey:"bathroom"})}function rf(e){return n.jsx(r,{...e,iconKey:"bathtub"})}function tf(e){return n.jsx(r,{...e,iconKey:"battery_0_bar"})}function cf(e){return n.jsx(r,{...e,iconKey:"battery_1_bar"})}function af(e){return n.jsx(r,{...e,iconKey:"battery_2_bar"})}function lf(e){return n.jsx(r,{...e,iconKey:"battery_3_bar"})}function sf(e){return n.jsx(r,{...e,iconKey:"battery_4_bar"})}function df(e){return n.jsx(r,{...e,iconKey:"battery_5_bar"})}function uf(e){return n.jsx(r,{...e,iconKey:"battery_6_bar"})}function ff(e){return n.jsx(r,{...e,iconKey:"battery_alert"})}function Af(e){return n.jsx(r,{...e,iconKey:"battery_charging_full"})}function _f(e){return n.jsx(r,{...e,iconKey:"battery_full"})}function yf(e){return n.jsx(r,{...e,iconKey:"battery_saver"})}function hf(e){return n.jsx(r,{...e,iconKey:"battery_std"})}function gf(e){return n.jsx(r,{...e,iconKey:"battery_unknown"})}function If(e){return n.jsx(r,{...e,iconKey:"beach_access"})}function bf(e){return n.jsx(r,{...e,iconKey:"bed"})}function pf(e){return n.jsx(r,{...e,iconKey:"bedroom_baby"})}function wf(e){return n.jsx(r,{...e,iconKey:"bedroom_child"})}function kf(e){return n.jsx(r,{...e,iconKey:"bedroom_parent"})}function mf(e){return n.jsx(r,{...e,iconKey:"bedtime"})}function vf(e){return n.jsx(r,{...e,iconKey:"bedtime_off"})}function Kf(e){return n.jsx(r,{...e,iconKey:"beenhere"})}function Cf(e){return n.jsx(r,{...e,iconKey:"bento"})}function Sf(e){return n.jsx(r,{...e,iconKey:"bike_scooter"})}function Bf(e){return n.jsx(r,{...e,iconKey:"biotech"})}function Ef(e){return n.jsx(r,{...e,iconKey:"blender"})}function Ff(e){return n.jsx(r,{...e,iconKey:"blind"})}function Pf(e){return n.jsx(r,{...e,iconKey:"blinds"})}function Df(e){return n.jsx(r,{...e,iconKey:"blinds_closed"})}function Nf(e){return n.jsx(r,{...e,iconKey:"block"})}function Mf(e){return n.jsx(r,{...e,iconKey:"bloodtype"})}function Tf(e){return n.jsx(r,{...e,iconKey:"bluetooth"})}function Of(e){return n.jsx(r,{...e,iconKey:"bluetooth_audio"})}function Lf(e){return n.jsx(r,{...e,iconKey:"bluetooth_connected"})}function Qf(e){return n.jsx(r,{...e,iconKey:"bluetooth_disabled"})}function Vf(e){return n.jsx(r,{...e,iconKey:"bluetooth_drive"})}function Wf(e){return n.jsx(r,{...e,iconKey:"bluetooth_searching"})}function Gf(e){return n.jsx(r,{...e,iconKey:"blur_circular"})}function zf(e){return n.jsx(r,{...e,iconKey:"blur_linear"})}function Hf(e){return n.jsx(r,{...e,iconKey:"blur_off"})}function Uf(e){return n.jsx(r,{...e,iconKey:"blur_on"})}function Yf(e){return n.jsx(r,{...e,iconKey:"bolt"})}function $f(e){return n.jsx(r,{...e,iconKey:"book"})}function jf(e){return n.jsx(r,{...e,iconKey:"book_online"})}function qf(e){return n.jsx(r,{...e,iconKey:"bookmark"})}function Jf(e){return n.jsx(r,{...e,iconKey:"bookmark_add"})}function Zf(e){return n.jsx(r,{...e,iconKey:"bookmark_added"})}function Xf(e){return n.jsx(r,{...e,iconKey:"bookmark_border"})}function xf(e){return n.jsx(r,{...e,iconKey:"bookmark_remove"})}function Rf(e){return n.jsx(r,{...e,iconKey:"bookmarks"})}function eA(e){return n.jsx(r,{...e,iconKey:"border_all"})}function nA(e){return n.jsx(r,{...e,iconKey:"border_bottom"})}function oA(e){return n.jsx(r,{...e,iconKey:"border_clear"})}function rA(e){return n.jsx(r,{...e,iconKey:"border_color"})}function tA(e){return n.jsx(r,{...e,iconKey:"border_horizontal"})}function cA(e){return n.jsx(r,{...e,iconKey:"border_inner"})}function iA(e){return n.jsx(r,{...e,iconKey:"border_left"})}function aA(e){return n.jsx(r,{...e,iconKey:"border_outer"})}function lA(e){return n.jsx(r,{...e,iconKey:"border_right"})}function sA(e){return n.jsx(r,{...e,iconKey:"border_style"})}function dA(e){return n.jsx(r,{...e,iconKey:"border_top"})}function uA(e){return n.jsx(r,{...e,iconKey:"border_vertical"})}function fA(e){return n.jsx(r,{...e,iconKey:"boy"})}function AA(e){return n.jsx(r,{...e,iconKey:"branding_watermark"})}function _A(e){return n.jsx(r,{...e,iconKey:"breakfast_dining"})}function yA(e){return n.jsx(r,{...e,iconKey:"brightness_1"})}function hA(e){return n.jsx(r,{...e,iconKey:"brightness_2"})}function gA(e){return n.jsx(r,{...e,iconKey:"brightness_3"})}function IA(e){return n.jsx(r,{...e,iconKey:"brightness_4"})}function bA(e){return n.jsx(r,{...e,iconKey:"brightness_5"})}function pA(e){return n.jsx(r,{...e,iconKey:"brightness_6"})}function wA(e){return n.jsx(r,{...e,iconKey:"brightness_7"})}function kA(e){return n.jsx(r,{...e,iconKey:"brightness_auto"})}function mA(e){return n.jsx(r,{...e,iconKey:"brightness_high"})}function vA(e){return n.jsx(r,{...e,iconKey:"brightness_low"})}function KA(e){return n.jsx(r,{...e,iconKey:"brightness_medium"})}function CA(e){return n.jsx(r,{...e,iconKey:"broadcast_on_home"})}function SA(e){return n.jsx(r,{...e,iconKey:"broadcast_on_personal"})}function BA(e){return n.jsx(r,{...e,iconKey:"broken_image"})}function EA(e){return n.jsx(r,{...e,iconKey:"browse_gallery"})}function FA(e){return n.jsx(r,{...e,iconKey:"browser_not_supported"})}function PA(e){return n.jsx(r,{...e,iconKey:"browser_updated"})}function DA(e){return n.jsx(r,{...e,iconKey:"brunch_dining"})}function NA(e){return n.jsx(r,{...e,iconKey:"brush"})}function MA(e){return n.jsx(r,{...e,iconKey:"bubble_chart"})}function TA(e){return n.jsx(r,{...e,iconKey:"bug_report"})}function OA(e){return n.jsx(r,{...e,iconKey:"build"})}function LA(e){return n.jsx(r,{...e,iconKey:"build_circle"})}function QA(e){return n.jsx(r,{...e,iconKey:"bungalow"})}function VA(e){return n.jsx(r,{...e,iconKey:"burst_mode"})}function WA(e){return n.jsx(r,{...e,iconKey:"bus_alert"})}function GA(e){return n.jsx(r,{...e,iconKey:"business"})}function zA(e){return n.jsx(r,{...e,iconKey:"business_center"})}function HA(e){return n.jsx(r,{...e,iconKey:"cabin"})}function UA(e){return n.jsx(r,{...e,iconKey:"cable"})}function YA(e){return n.jsx(r,{...e,iconKey:"cached"})}function $A(e){return n.jsx(r,{...e,iconKey:"cake"})}function jA(e){return n.jsx(r,{...e,iconKey:"calculate"})}function Ac(e){return n.jsx(r,{...e,iconKey:"calendar_month"})}function qA(e){return n.jsx(r,{...e,iconKey:"calendar_today"})}function JA(e){return n.jsx(r,{...e,iconKey:"calendar_view_day"})}function ZA(e){return n.jsx(r,{...e,iconKey:"calendar_view_month"})}function XA(e){return n.jsx(r,{...e,iconKey:"calendar_view_week"})}function xA(e){return n.jsx(r,{...e,iconKey:"call"})}function RA(e){return n.jsx(r,{...e,iconKey:"call_end"})}function e_(e){return n.jsx(r,{...e,iconKey:"call_made"})}function n_(e){return n.jsx(r,{...e,iconKey:"call_merge"})}function o_(e){return n.jsx(r,{...e,iconKey:"call_missed"})}function r_(e){return n.jsx(r,{...e,iconKey:"call_missed_outgoing"})}function t_(e){return n.jsx(r,{...e,iconKey:"call_received"})}function c_(e){return n.jsx(r,{...e,iconKey:"call_split"})}function i_(e){return n.jsx(r,{...e,iconKey:"call_to_action"})}function a_(e){return n.jsx(r,{...e,iconKey:"camera"})}function l_(e){return n.jsx(r,{...e,iconKey:"camera_alt"})}function s_(e){return n.jsx(r,{...e,iconKey:"camera_enhance"})}function d_(e){return n.jsx(r,{...e,iconKey:"camera_front"})}function u_(e){return n.jsx(r,{...e,iconKey:"camera_indoor"})}function f_(e){return n.jsx(r,{...e,iconKey:"camera_outdoor"})}function A_(e){return n.jsx(r,{...e,iconKey:"camera_rear"})}function __(e){return n.jsx(r,{...e,iconKey:"camera_roll"})}function y_(e){return n.jsx(r,{...e,iconKey:"cameraswitch"})}function h_(e){return n.jsx(r,{...e,iconKey:"campaign"})}function g_(e){return n.jsx(r,{...e,iconKey:"cancel"})}function I_(e){return n.jsx(r,{...e,iconKey:"cancel_presentation"})}function b_(e){return n.jsx(r,{...e,iconKey:"cancel_schedule_send"})}function p_(e){return n.jsx(r,{...e,iconKey:"candlestick_chart"})}function w_(e){return n.jsx(r,{...e,iconKey:"car_crash"})}function k_(e){return n.jsx(r,{...e,iconKey:"car_rental"})}function m_(e){return n.jsx(r,{...e,iconKey:"car_repair"})}function v_(e){return n.jsx(r,{...e,iconKey:"card_giftcard"})}function K_(e){return n.jsx(r,{...e,iconKey:"card_membership"})}function C_(e){return n.jsx(r,{...e,iconKey:"card_travel"})}function S_(e){return n.jsx(r,{...e,iconKey:"carpenter"})}function B_(e){return n.jsx(r,{...e,iconKey:"cases"})}function E_(e){return n.jsx(r,{...e,iconKey:"casino"})}function F_(e){return n.jsx(r,{...e,iconKey:"cast"})}function P_(e){return n.jsx(r,{...e,iconKey:"cast_connected"})}function D_(e){return n.jsx(r,{...e,iconKey:"cast_for_education"})}function N_(e){return n.jsx(r,{...e,iconKey:"castle"})}function M_(e){return n.jsx(r,{...e,iconKey:"catching_pokemon"})}function T_(e){return n.jsx(r,{...e,iconKey:"category"})}function O_(e){return n.jsx(r,{...e,iconKey:"celebration"})}function L_(e){return n.jsx(r,{...e,iconKey:"cell_tower"})}function Q_(e){return n.jsx(r,{...e,iconKey:"cell_wifi"})}function V_(e){return n.jsx(r,{...e,iconKey:"center_focus_strong"})}function W_(e){return n.jsx(r,{...e,iconKey:"center_focus_weak"})}function G_(e){return n.jsx(r,{...e,iconKey:"chair"})}function z_(e){return n.jsx(r,{...e,iconKey:"chair_alt"})}function H_(e){return n.jsx(r,{...e,iconKey:"chalet"})}function U_(e){return n.jsx(r,{...e,iconKey:"change_circle"})}function Y_(e){return n.jsx(r,{...e,iconKey:"change_history"})}function $_(e){return n.jsx(r,{...e,iconKey:"charging_station"})}function j_(e){return n.jsx(r,{...e,iconKey:"chat"})}function q_(e){return n.jsx(r,{...e,iconKey:"chat_bubble"})}function J_(e){return n.jsx(r,{...e,iconKey:"chat_bubble_outline"})}function _c(e){return n.jsx(r,{...e,iconKey:"check"})}function Z_(e){return n.jsx(r,{...e,iconKey:"check_box"})}function X_(e){return n.jsx(r,{...e,iconKey:"check_box_outline_blank"})}function x_(e){return n.jsx(r,{...e,iconKey:"check_circle"})}function R_(e){return n.jsx(r,{...e,iconKey:"check_circle_outline"})}function ey(e){return n.jsx(r,{...e,iconKey:"checklist"})}function ny(e){return n.jsx(r,{...e,iconKey:"checklist_rtl"})}function oy(e){return n.jsx(r,{...e,iconKey:"checkroom"})}function yc(e){return n.jsx(r,{...e,iconKey:"chevron_left"})}function ry(e){return n.jsx(r,{...e,iconKey:"chevron_right"})}function ty(e){return n.jsx(r,{...e,iconKey:"child_care"})}function cy(e){return n.jsx(r,{...e,iconKey:"child_friendly"})}function iy(e){return n.jsx(r,{...e,iconKey:"chrome_reader_mode"})}function ay(e){return n.jsx(r,{...e,iconKey:"church"})}function br(e){return n.jsx(r,{...e,iconKey:"circle"})}function ly(e){return n.jsx(r,{...e,iconKey:"circle_notifications"})}function sy(e){return n.jsx(r,{...e,iconKey:"class"})}function dy(e){return n.jsx(r,{...e,iconKey:"clean_hands"})}function uy(e){return n.jsx(r,{...e,iconKey:"cleaning_services"})}function an(e){return n.jsx(r,{...e,iconKey:"clear"})}function fy(e){return n.jsx(r,{...e,iconKey:"clear_all"})}function pr(e){return n.jsx(r,{...e,iconKey:"close"})}function Ay(e){return n.jsx(r,{...e,iconKey:"close_fullscreen"})}function _y(e){return n.jsx(r,{...e,iconKey:"closed_caption"})}function yy(e){return n.jsx(r,{...e,iconKey:"closed_caption_disabled"})}function hy(e){return n.jsx(r,{...e,iconKey:"closed_caption_off"})}function gy(e){return n.jsx(r,{...e,iconKey:"cloud"})}function Iy(e){return n.jsx(r,{...e,iconKey:"cloud_circle"})}function by(e){return n.jsx(r,{...e,iconKey:"cloud_done"})}function py(e){return n.jsx(r,{...e,iconKey:"cloud_download"})}function wy(e){return n.jsx(r,{...e,iconKey:"cloud_off"})}function ky(e){return n.jsx(r,{...e,iconKey:"cloud_queue"})}function my(e){return n.jsx(r,{...e,iconKey:"cloud_sync"})}function vy(e){return n.jsx(r,{...e,iconKey:"cloud_upload"})}function Ky(e){return n.jsx(r,{...e,iconKey:"co2"})}function Cy(e){return n.jsx(r,{...e,iconKey:"co_present"})}function Sy(e){return n.jsx(r,{...e,iconKey:"code"})}function By(e){return n.jsx(r,{...e,iconKey:"code_off"})}function Ey(e){return n.jsx(r,{...e,iconKey:"coffee"})}function Fy(e){return n.jsx(r,{...e,iconKey:"coffee_maker"})}function Py(e){return n.jsx(r,{...e,iconKey:"collections"})}function Dy(e){return n.jsx(r,{...e,iconKey:"collections_bookmark"})}function Ny(e){return n.jsx(r,{...e,iconKey:"color_lens"})}function My(e){return n.jsx(r,{...e,iconKey:"colorize"})}function Ty(e){return n.jsx(r,{...e,iconKey:"comment"})}function Oy(e){return n.jsx(r,{...e,iconKey:"comment_bank"})}function Ly(e){return n.jsx(r,{...e,iconKey:"comments_disabled"})}function Qy(e){return n.jsx(r,{...e,iconKey:"commit"})}function Vy(e){return n.jsx(r,{...e,iconKey:"commute"})}function Wy(e){return n.jsx(r,{...e,iconKey:"compare"})}function Gy(e){return n.jsx(r,{...e,iconKey:"compare_arrows"})}function zy(e){return n.jsx(r,{...e,iconKey:"compass_calibration"})}function Hy(e){return n.jsx(r,{...e,iconKey:"compost"})}function Uy(e){return n.jsx(r,{...e,iconKey:"compress"})}function Yy(e){return n.jsx(r,{...e,iconKey:"computer"})}function $y(e){return n.jsx(r,{...e,iconKey:"confirmation_number"})}function jy(e){return n.jsx(r,{...e,iconKey:"connect_without_contact"})}function qy(e){return n.jsx(r,{...e,iconKey:"connected_tv"})}function Jy(e){return n.jsx(r,{...e,iconKey:"connecting_airports"})}function Zy(e){return n.jsx(r,{...e,iconKey:"construction"})}function Xy(e){return n.jsx(r,{...e,iconKey:"contact_emergency"})}function xy(e){return n.jsx(r,{...e,iconKey:"contact_mail"})}function Ry(e){return n.jsx(r,{...e,iconKey:"contact_page"})}function eh(e){return n.jsx(r,{...e,iconKey:"contact_phone"})}function nh(e){return n.jsx(r,{...e,iconKey:"contact_support"})}function oh(e){return n.jsx(r,{...e,iconKey:"contactless"})}function rh(e){return n.jsx(r,{...e,iconKey:"contacts"})}function Rn(e){return n.jsx(r,{...e,iconKey:"content_copy"})}function th(e){return n.jsx(r,{...e,iconKey:"content_cut"})}function ch(e){return n.jsx(r,{...e,iconKey:"content_paste"})}function ih(e){return n.jsx(r,{...e,iconKey:"content_paste_go"})}function ah(e){return n.jsx(r,{...e,iconKey:"content_paste_off"})}function lh(e){return n.jsx(r,{...e,iconKey:"content_paste_search"})}function sh(e){return n.jsx(r,{...e,iconKey:"contrast"})}function dh(e){return n.jsx(r,{...e,iconKey:"control_camera"})}function uh(e){return n.jsx(r,{...e,iconKey:"control_point"})}function fh(e){return n.jsx(r,{...e,iconKey:"control_point_duplicate"})}function Ah(e){return n.jsx(r,{...e,iconKey:"cookie"})}function _h(e){return n.jsx(r,{...e,iconKey:"copy_all"})}function yh(e){return n.jsx(r,{...e,iconKey:"copyright"})}function hh(e){return n.jsx(r,{...e,iconKey:"coronavirus"})}function gh(e){return n.jsx(r,{...e,iconKey:"corporate_fare"})}function Ih(e){return n.jsx(r,{...e,iconKey:"cottage"})}function bh(e){return n.jsx(r,{...e,iconKey:"countertops"})}function ph(e){return n.jsx(r,{...e,iconKey:"create"})}function wh(e){return n.jsx(r,{...e,iconKey:"create_new_folder"})}function kh(e){return n.jsx(r,{...e,iconKey:"credit_card"})}function mh(e){return n.jsx(r,{...e,iconKey:"credit_card_off"})}function vh(e){return n.jsx(r,{...e,iconKey:"credit_score"})}function Kh(e){return n.jsx(r,{...e,iconKey:"crib"})}function Ch(e){return n.jsx(r,{...e,iconKey:"crisis_alert"})}function Sh(e){return n.jsx(r,{...e,iconKey:"crop"})}function Bh(e){return n.jsx(r,{...e,iconKey:"crop_16_9"})}function Eh(e){return n.jsx(r,{...e,iconKey:"crop_3_2"})}function Fh(e){return n.jsx(r,{...e,iconKey:"crop_5_4"})}function Ph(e){return n.jsx(r,{...e,iconKey:"crop_7_5"})}function Dh(e){return n.jsx(r,{...e,iconKey:"crop_din"})}function Nh(e){return n.jsx(r,{...e,iconKey:"crop_free"})}function Mh(e){return n.jsx(r,{...e,iconKey:"crop_landscape"})}function Th(e){return n.jsx(r,{...e,iconKey:"crop_original"})}function Oh(e){return n.jsx(r,{...e,iconKey:"crop_portrait"})}function Lh(e){return n.jsx(r,{...e,iconKey:"crop_rotate"})}function Qh(e){return n.jsx(r,{...e,iconKey:"crop_square"})}function Vh(e){return n.jsx(r,{...e,iconKey:"cruelty_free"})}function Wh(e){return n.jsx(r,{...e,iconKey:"css"})}function Gh(e){return n.jsx(r,{...e,iconKey:"currency_bitcoin"})}function zh(e){return n.jsx(r,{...e,iconKey:"currency_exchange"})}function Hh(e){return n.jsx(r,{...e,iconKey:"currency_franc"})}function Uh(e){return n.jsx(r,{...e,iconKey:"currency_lira"})}function Yh(e){return n.jsx(r,{...e,iconKey:"currency_pound"})}function $h(e){return n.jsx(r,{...e,iconKey:"currency_ruble"})}function jh(e){return n.jsx(r,{...e,iconKey:"currency_rupee"})}function qh(e){return n.jsx(r,{...e,iconKey:"currency_yen"})}function Jh(e){return n.jsx(r,{...e,iconKey:"currency_yuan"})}function Zh(e){return n.jsx(r,{...e,iconKey:"curtains"})}function Xh(e){return n.jsx(r,{...e,iconKey:"curtains_closed"})}function xh(e){return n.jsx(r,{...e,iconKey:"cyclone"})}function Rh(e){return n.jsx(r,{...e,iconKey:"dangerous"})}function hc(e){return n.jsx(r,{...e,iconKey:"dark_mode"})}function eg(e){return n.jsx(r,{...e,iconKey:"dashboard"})}function ng(e){return n.jsx(r,{...e,iconKey:"dashboard_customize"})}function og(e){return n.jsx(r,{...e,iconKey:"data_array"})}function rg(e){return n.jsx(r,{...e,iconKey:"data_exploration"})}function tg(e){return n.jsx(r,{...e,iconKey:"data_object"})}function cg(e){return n.jsx(r,{...e,iconKey:"data_saver_off"})}function ig(e){return n.jsx(r,{...e,iconKey:"data_saver_on"})}function ag(e){return n.jsx(r,{...e,iconKey:"data_thresholding"})}function lg(e){return n.jsx(r,{...e,iconKey:"data_usage"})}function sg(e){return n.jsx(r,{...e,iconKey:"dataset"})}function dg(e){return n.jsx(r,{...e,iconKey:"dataset_linked"})}function ug(e){return n.jsx(r,{...e,iconKey:"date_range"})}function fg(e){return n.jsx(r,{...e,iconKey:"deblur"})}function Ag(e){return n.jsx(r,{...e,iconKey:"deck"})}function _g(e){return n.jsx(r,{...e,iconKey:"dehaze"})}function wo(e){return n.jsx(r,{...e,iconKey:"delete"})}function yg(e){return n.jsx(r,{...e,iconKey:"delete_forever"})}function hg(e){return n.jsx(r,{...e,iconKey:"delete_outline"})}function gg(e){return n.jsx(r,{...e,iconKey:"delete_sweep"})}function Ig(e){return n.jsx(r,{...e,iconKey:"delivery_dining"})}function bg(e){return n.jsx(r,{...e,iconKey:"density_large"})}function pg(e){return n.jsx(r,{...e,iconKey:"density_medium"})}function wg(e){return n.jsx(r,{...e,iconKey:"density_small"})}function kg(e){return n.jsx(r,{...e,iconKey:"departure_board"})}function gc(e){return n.jsx(r,{...e,iconKey:"description"})}function mg(e){return n.jsx(r,{...e,iconKey:"deselect"})}function vg(e){return n.jsx(r,{...e,iconKey:"design_services"})}function Kg(e){return n.jsx(r,{...e,iconKey:"desk"})}function Cg(e){return n.jsx(r,{...e,iconKey:"desktop_access_disabled"})}function Sg(e){return n.jsx(r,{...e,iconKey:"desktop_mac"})}function Bg(e){return n.jsx(r,{...e,iconKey:"desktop_windows"})}function Eg(e){return n.jsx(r,{...e,iconKey:"details"})}function Fg(e){return n.jsx(r,{...e,iconKey:"developer_board"})}function Pg(e){return n.jsx(r,{...e,iconKey:"developer_board_off"})}function Dg(e){return n.jsx(r,{...e,iconKey:"developer_mode"})}function Ng(e){return n.jsx(r,{...e,iconKey:"device_hub"})}function Mg(e){return n.jsx(r,{...e,iconKey:"device_thermostat"})}function Tg(e){return n.jsx(r,{...e,iconKey:"device_unknown"})}function Og(e){return n.jsx(r,{...e,iconKey:"devices"})}function Lg(e){return n.jsx(r,{...e,iconKey:"devices_fold"})}function Qg(e){return n.jsx(r,{...e,iconKey:"devices_other"})}function Vg(e){return n.jsx(r,{...e,iconKey:"dialer_sip"})}function Wg(e){return n.jsx(r,{...e,iconKey:"dialpad"})}function Gg(e){return n.jsx(r,{...e,iconKey:"diamond"})}function zg(e){return n.jsx(r,{...e,iconKey:"difference"})}function Hg(e){return n.jsx(r,{...e,iconKey:"dining"})}function Ug(e){return n.jsx(r,{...e,iconKey:"dinner_dining"})}function Yg(e){return n.jsx(r,{...e,iconKey:"directions"})}function $g(e){return n.jsx(r,{...e,iconKey:"directions_bike"})}function jg(e){return n.jsx(r,{...e,iconKey:"directions_boat"})}function qg(e){return n.jsx(r,{...e,iconKey:"directions_boat_filled"})}function Jg(e){return n.jsx(r,{...e,iconKey:"directions_bus"})}function Zg(e){return n.jsx(r,{...e,iconKey:"directions_bus_filled"})}function Xg(e){return n.jsx(r,{...e,iconKey:"directions_car"})}function xg(e){return n.jsx(r,{...e,iconKey:"directions_car_filled"})}function Rg(e){return n.jsx(r,{...e,iconKey:"directions_off"})}function eI(e){return n.jsx(r,{...e,iconKey:"directions_railway"})}function nI(e){return n.jsx(r,{...e,iconKey:"directions_railway_filled"})}function oI(e){return n.jsx(r,{...e,iconKey:"directions_run"})}function rI(e){return n.jsx(r,{...e,iconKey:"directions_subway"})}function tI(e){return n.jsx(r,{...e,iconKey:"directions_subway_filled"})}function cI(e){return n.jsx(r,{...e,iconKey:"directions_transit"})}function iI(e){return n.jsx(r,{...e,iconKey:"directions_transit_filled"})}function aI(e){return n.jsx(r,{...e,iconKey:"directions_walk"})}function lI(e){return n.jsx(r,{...e,iconKey:"dirty_lens"})}function sI(e){return n.jsx(r,{...e,iconKey:"disabled_by_default"})}function dI(e){return n.jsx(r,{...e,iconKey:"disabled_visible"})}function uI(e){return n.jsx(r,{...e,iconKey:"disc_full"})}function fI(e){return n.jsx(r,{...e,iconKey:"discount"})}function AI(e){return n.jsx(r,{...e,iconKey:"display_settings"})}function _I(e){return n.jsx(r,{...e,iconKey:"diversity_1"})}function yI(e){return n.jsx(r,{...e,iconKey:"diversity_2"})}function hI(e){return n.jsx(r,{...e,iconKey:"diversity_3"})}function gI(e){return n.jsx(r,{...e,iconKey:"dns"})}function II(e){return n.jsx(r,{...e,iconKey:"do_disturb"})}function bI(e){return n.jsx(r,{...e,iconKey:"do_disturb_alt"})}function pI(e){return n.jsx(r,{...e,iconKey:"do_disturb_off"})}function wI(e){return n.jsx(r,{...e,iconKey:"do_disturb_on"})}function kI(e){return n.jsx(r,{...e,iconKey:"do_not_disturb"})}function mI(e){return n.jsx(r,{...e,iconKey:"do_not_disturb_alt"})}function vI(e){return n.jsx(r,{...e,iconKey:"do_not_disturb_off"})}function KI(e){return n.jsx(r,{...e,iconKey:"do_not_disturb_on"})}function CI(e){return n.jsx(r,{...e,iconKey:"do_not_disturb_on_total_silence"})}function SI(e){return n.jsx(r,{...e,iconKey:"do_not_step"})}function BI(e){return n.jsx(r,{...e,iconKey:"do_not_touch"})}function EI(e){return n.jsx(r,{...e,iconKey:"dock"})}function FI(e){return n.jsx(r,{...e,iconKey:"document_scanner"})}function PI(e){return n.jsx(r,{...e,iconKey:"domain"})}function DI(e){return n.jsx(r,{...e,iconKey:"domain_add"})}function NI(e){return n.jsx(r,{...e,iconKey:"domain_disabled"})}function MI(e){return n.jsx(r,{...e,iconKey:"domain_verification"})}function TI(e){return n.jsx(r,{...e,iconKey:"done"})}function OI(e){return n.jsx(r,{...e,iconKey:"done_all"})}function LI(e){return n.jsx(r,{...e,iconKey:"done_outline"})}function QI(e){return n.jsx(r,{...e,iconKey:"donut_large"})}function VI(e){return n.jsx(r,{...e,iconKey:"donut_small"})}function WI(e){return n.jsx(r,{...e,iconKey:"door_back"})}function GI(e){return n.jsx(r,{...e,iconKey:"door_front"})}function zI(e){return n.jsx(r,{...e,iconKey:"door_sliding"})}function HI(e){return n.jsx(r,{...e,iconKey:"doorbell"})}function UI(e){return n.jsx(r,{...e,iconKey:"double_arrow"})}function YI(e){return n.jsx(r,{...e,iconKey:"downhill_skiing"})}function $I(e){return n.jsx(r,{...e,iconKey:"download"})}function jI(e){return n.jsx(r,{...e,iconKey:"download_done"})}function qI(e){return n.jsx(r,{...e,iconKey:"download_for_offline"})}function JI(e){return n.jsx(r,{...e,iconKey:"downloading"})}function ZI(e){return n.jsx(r,{...e,iconKey:"drafts"})}function XI(e){return n.jsx(r,{...e,iconKey:"drag_handle"})}function xI(e){return n.jsx(r,{...e,iconKey:"drag_indicator"})}function RI(e){return n.jsx(r,{...e,iconKey:"draw"})}function eb(e){return n.jsx(r,{...e,iconKey:"drive_eta"})}function nb(e){return n.jsx(r,{...e,iconKey:"drive_file_move"})}function ob(e){return n.jsx(r,{...e,iconKey:"drive_file_move_rtl"})}function rb(e){return n.jsx(r,{...e,iconKey:"drive_file_rename_outline"})}function Ic(e){return n.jsx(r,{...e,iconKey:"drive_folder_upload"})}function tb(e){return n.jsx(r,{...e,iconKey:"dry"})}function cb(e){return n.jsx(r,{...e,iconKey:"dry_cleaning"})}function ib(e){return n.jsx(r,{...e,iconKey:"duo"})}function ab(e){return n.jsx(r,{...e,iconKey:"dvr"})}function lb(e){return n.jsx(r,{...e,iconKey:"dynamic_feed"})}function sb(e){return n.jsx(r,{...e,iconKey:"dynamic_form"})}function db(e){return n.jsx(r,{...e,iconKey:"e_mobiledata"})}function ub(e){return n.jsx(r,{...e,iconKey:"earbuds"})}function fb(e){return n.jsx(r,{...e,iconKey:"earbuds_battery"})}function Ab(e){return n.jsx(r,{...e,iconKey:"east"})}function _b(e){return n.jsx(r,{...e,iconKey:"edgesensor_high"})}function yb(e){return n.jsx(r,{...e,iconKey:"edgesensor_low"})}function bc(e){return n.jsx(r,{...e,iconKey:"edit"})}function hb(e){return n.jsx(r,{...e,iconKey:"edit_attributes"})}function gb(e){return n.jsx(r,{...e,iconKey:"edit_calendar"})}function Ib(e){return n.jsx(r,{...e,iconKey:"edit_location"})}function bb(e){return n.jsx(r,{...e,iconKey:"edit_location_alt"})}function pb(e){return n.jsx(r,{...e,iconKey:"edit_note"})}function wb(e){return n.jsx(r,{...e,iconKey:"edit_notifications"})}function kb(e){return n.jsx(r,{...e,iconKey:"edit_off"})}function mb(e){return n.jsx(r,{...e,iconKey:"edit_road"})}function vb(e){return n.jsx(r,{...e,iconKey:"egg"})}function Kb(e){return n.jsx(r,{...e,iconKey:"egg_alt"})}function Cb(e){return n.jsx(r,{...e,iconKey:"eject"})}function Sb(e){return n.jsx(r,{...e,iconKey:"elderly"})}function Bb(e){return n.jsx(r,{...e,iconKey:"elderly_woman"})}function Eb(e){return n.jsx(r,{...e,iconKey:"electric_bike"})}function Fb(e){return n.jsx(r,{...e,iconKey:"electric_bolt"})}function Pb(e){return n.jsx(r,{...e,iconKey:"electric_car"})}function Db(e){return n.jsx(r,{...e,iconKey:"electric_meter"})}function Nb(e){return n.jsx(r,{...e,iconKey:"electric_moped"})}function Mb(e){return n.jsx(r,{...e,iconKey:"electric_rickshaw"})}function Tb(e){return n.jsx(r,{...e,iconKey:"electric_scooter"})}function Ob(e){return n.jsx(r,{...e,iconKey:"electrical_services"})}function Lb(e){return n.jsx(r,{...e,iconKey:"elevator"})}function pc(e){return n.jsx(r,{...e,iconKey:"email"})}function Qb(e){return n.jsx(r,{...e,iconKey:"emergency"})}function Vb(e){return n.jsx(r,{...e,iconKey:"emergency_recording"})}function Wb(e){return n.jsx(r,{...e,iconKey:"emergency_share"})}function Gb(e){return n.jsx(r,{...e,iconKey:"emoji_emotions"})}function zb(e){return n.jsx(r,{...e,iconKey:"emoji_events"})}function Hb(e){return n.jsx(r,{...e,iconKey:"emoji_food_beverage"})}function Ub(e){return n.jsx(r,{...e,iconKey:"emoji_nature"})}function Yb(e){return n.jsx(r,{...e,iconKey:"emoji_objects"})}function $b(e){return n.jsx(r,{...e,iconKey:"emoji_people"})}function jb(e){return n.jsx(r,{...e,iconKey:"emoji_symbols"})}function qb(e){return n.jsx(r,{...e,iconKey:"emoji_transportation"})}function Jb(e){return n.jsx(r,{...e,iconKey:"energy_savings_leaf"})}function Zb(e){return n.jsx(r,{...e,iconKey:"engineering"})}function Xb(e){return n.jsx(r,{...e,iconKey:"enhanced_encryption"})}function xb(e){return n.jsx(r,{...e,iconKey:"equalizer"})}function wr(e){return n.jsx(r,{...e,iconKey:"error"})}function wc(e){return n.jsx(r,{...e,iconKey:"error_outline"})}function Rb(e){return n.jsx(r,{...e,iconKey:"escalator"})}function ep(e){return n.jsx(r,{...e,iconKey:"escalator_warning"})}function np(e){return n.jsx(r,{...e,iconKey:"euro"})}function op(e){return n.jsx(r,{...e,iconKey:"euro_symbol"})}function rp(e){return n.jsx(r,{...e,iconKey:"ev_station"})}function tp(e){return n.jsx(r,{...e,iconKey:"event"})}function cp(e){return n.jsx(r,{...e,iconKey:"event_available"})}function ip(e){return n.jsx(r,{...e,iconKey:"event_busy"})}function ap(e){return n.jsx(r,{...e,iconKey:"event_note"})}function lp(e){return n.jsx(r,{...e,iconKey:"event_repeat"})}function sp(e){return n.jsx(r,{...e,iconKey:"event_seat"})}function dp(e){return n.jsx(r,{...e,iconKey:"exit_to_app"})}function up(e){return n.jsx(r,{...e,iconKey:"expand"})}function fp(e){return n.jsx(r,{...e,iconKey:"expand_circle_down"})}function Ap(e){return n.jsx(r,{...e,iconKey:"expand_less"})}function eo(e){return n.jsx(r,{...e,iconKey:"expand_more"})}function _p(e){return n.jsx(r,{...e,iconKey:"explicit"})}function yp(e){return n.jsx(r,{...e,iconKey:"explore"})}function hp(e){return n.jsx(r,{...e,iconKey:"explore_off"})}function gp(e){return n.jsx(r,{...e,iconKey:"exposure"})}function Ip(e){return n.jsx(r,{...e,iconKey:"exposure_neg_1"})}function bp(e){return n.jsx(r,{...e,iconKey:"exposure_neg_2"})}function pp(e){return n.jsx(r,{...e,iconKey:"exposure_plus_1"})}function wp(e){return n.jsx(r,{...e,iconKey:"exposure_plus_2"})}function kp(e){return n.jsx(r,{...e,iconKey:"exposure_zero"})}function mp(e){return n.jsx(r,{...e,iconKey:"extension"})}function vp(e){return n.jsx(r,{...e,iconKey:"extension_off"})}function Kp(e){return n.jsx(r,{...e,iconKey:"face"})}function Cp(e){return n.jsx(r,{...e,iconKey:"face_2"})}function Sp(e){return n.jsx(r,{...e,iconKey:"face_3"})}function Bp(e){return n.jsx(r,{...e,iconKey:"face_4"})}function Ep(e){return n.jsx(r,{...e,iconKey:"face_5"})}function Fp(e){return n.jsx(r,{...e,iconKey:"face_6"})}function Pp(e){return n.jsx(r,{...e,iconKey:"face_retouching_natural"})}function Dp(e){return n.jsx(r,{...e,iconKey:"face_retouching_off"})}function Np(e){return n.jsx(r,{...e,iconKey:"fact_check"})}function Mp(e){return n.jsx(r,{...e,iconKey:"factory"})}function Tp(e){return n.jsx(r,{...e,iconKey:"family_restroom"})}function Op(e){return n.jsx(r,{...e,iconKey:"fast_forward"})}function Lp(e){return n.jsx(r,{...e,iconKey:"fast_rewind"})}function Qp(e){return n.jsx(r,{...e,iconKey:"fastfood"})}function Vp(e){return n.jsx(r,{...e,iconKey:"favorite"})}function Wp(e){return n.jsx(r,{...e,iconKey:"favorite_border"})}function Gp(e){return n.jsx(r,{...e,iconKey:"fax"})}function zp(e){return n.jsx(r,{...e,iconKey:"featured_play_list"})}function Hp(e){return n.jsx(r,{...e,iconKey:"featured_video"})}function Up(e){return n.jsx(r,{...e,iconKey:"feed"})}function Yp(e){return n.jsx(r,{...e,iconKey:"feedback"})}function $p(e){return n.jsx(r,{...e,iconKey:"female"})}function jp(e){return n.jsx(r,{...e,iconKey:"fence"})}function qp(e){return n.jsx(r,{...e,iconKey:"festival"})}function Jp(e){return n.jsx(r,{...e,iconKey:"fiber_dvr"})}function Zp(e){return n.jsx(r,{...e,iconKey:"fiber_manual_record"})}function Xp(e){return n.jsx(r,{...e,iconKey:"fiber_new"})}function xp(e){return n.jsx(r,{...e,iconKey:"fiber_pin"})}function Rp(e){return n.jsx(r,{...e,iconKey:"fiber_smart_record"})}function kc(e){return n.jsx(r,{...e,iconKey:"file_copy"})}function ew(e){return n.jsx(r,{...e,iconKey:"file_download"})}function nw(e){return n.jsx(r,{...e,iconKey:"file_download_done"})}function ow(e){return n.jsx(r,{...e,iconKey:"file_download_off"})}function rw(e){return n.jsx(r,{...e,iconKey:"file_open"})}function tw(e){return n.jsx(r,{...e,iconKey:"file_present"})}function cw(e){return n.jsx(r,{...e,iconKey:"file_upload"})}function iw(e){return n.jsx(r,{...e,iconKey:"filter"})}function aw(e){return n.jsx(r,{...e,iconKey:"filter_1"})}function lw(e){return n.jsx(r,{...e,iconKey:"filter_2"})}function sw(e){return n.jsx(r,{...e,iconKey:"filter_3"})}function dw(e){return n.jsx(r,{...e,iconKey:"filter_4"})}function uw(e){return n.jsx(r,{...e,iconKey:"filter_5"})}function fw(e){return n.jsx(r,{...e,iconKey:"filter_6"})}function Aw(e){return n.jsx(r,{...e,iconKey:"filter_7"})}function _w(e){return n.jsx(r,{...e,iconKey:"filter_8"})}function yw(e){return n.jsx(r,{...e,iconKey:"filter_9"})}function hw(e){return n.jsx(r,{...e,iconKey:"filter_9_plus"})}function gw(e){return n.jsx(r,{...e,iconKey:"filter_alt"})}function Iw(e){return n.jsx(r,{...e,iconKey:"filter_alt_off"})}function bw(e){return n.jsx(r,{...e,iconKey:"filter_b_and_w"})}function pw(e){return n.jsx(r,{...e,iconKey:"filter_center_focus"})}function ww(e){return n.jsx(r,{...e,iconKey:"filter_drama"})}function kw(e){return n.jsx(r,{...e,iconKey:"filter_frames"})}function mw(e){return n.jsx(r,{...e,iconKey:"filter_hdr"})}function vw(e){return n.jsx(r,{...e,iconKey:"filter_list"})}function mc(e){return n.jsx(r,{...e,iconKey:"filter_list_off"})}function Kw(e){return n.jsx(r,{...e,iconKey:"filter_none"})}function Cw(e){return n.jsx(r,{...e,iconKey:"filter_tilt_shift"})}function Sw(e){return n.jsx(r,{...e,iconKey:"filter_vintage"})}function Bw(e){return n.jsx(r,{...e,iconKey:"find_in_page"})}function Ew(e){return n.jsx(r,{...e,iconKey:"find_replace"})}function Fw(e){return n.jsx(r,{...e,iconKey:"fingerprint"})}function Pw(e){return n.jsx(r,{...e,iconKey:"fire_extinguisher"})}function Dw(e){return n.jsx(r,{...e,iconKey:"fire_hydrant_alt"})}function Nw(e){return n.jsx(r,{...e,iconKey:"fire_truck"})}function Mw(e){return n.jsx(r,{...e,iconKey:"fireplace"})}function Tw(e){return n.jsx(r,{...e,iconKey:"first_page"})}function Ow(e){return n.jsx(r,{...e,iconKey:"fit_screen"})}function Lw(e){return n.jsx(r,{...e,iconKey:"fitbit"})}function Qw(e){return n.jsx(r,{...e,iconKey:"fitness_center"})}function vc(e){return n.jsx(r,{...e,iconKey:"flag"})}function Vw(e){return n.jsx(r,{...e,iconKey:"flag_circle"})}function Ww(e){return n.jsx(r,{...e,iconKey:"flaky"})}function Gw(e){return n.jsx(r,{...e,iconKey:"flare"})}function zw(e){return n.jsx(r,{...e,iconKey:"flash_auto"})}function Hw(e){return n.jsx(r,{...e,iconKey:"flash_off"})}function Uw(e){return n.jsx(r,{...e,iconKey:"flash_on"})}function Yw(e){return n.jsx(r,{...e,iconKey:"flashlight_off"})}function $w(e){return n.jsx(r,{...e,iconKey:"flashlight_on"})}function jw(e){return n.jsx(r,{...e,iconKey:"flatware"})}function qw(e){return n.jsx(r,{...e,iconKey:"flight"})}function Jw(e){return n.jsx(r,{...e,iconKey:"flight_class"})}function Zw(e){return n.jsx(r,{...e,iconKey:"flight_land"})}function Xw(e){return n.jsx(r,{...e,iconKey:"flight_takeoff"})}function xw(e){return n.jsx(r,{...e,iconKey:"flip"})}function Rw(e){return n.jsx(r,{...e,iconKey:"flip_camera_android"})}function ek(e){return n.jsx(r,{...e,iconKey:"flip_camera_ios"})}function nk(e){return n.jsx(r,{...e,iconKey:"flip_to_back"})}function ok(e){return n.jsx(r,{...e,iconKey:"flip_to_front"})}function rk(e){return n.jsx(r,{...e,iconKey:"flood"})}function tk(e){return n.jsx(r,{...e,iconKey:"fluorescent"})}function ck(e){return n.jsx(r,{...e,iconKey:"flutter_dash"})}function ik(e){return n.jsx(r,{...e,iconKey:"fmd_bad"})}function ak(e){return n.jsx(r,{...e,iconKey:"fmd_good"})}function lk(e){return n.jsx(r,{...e,iconKey:"folder"})}function sk(e){return n.jsx(r,{...e,iconKey:"folder_copy"})}function dk(e){return n.jsx(r,{...e,iconKey:"folder_delete"})}function uk(e){return n.jsx(r,{...e,iconKey:"folder_off"})}function fk(e){return n.jsx(r,{...e,iconKey:"folder_open"})}function Ak(e){return n.jsx(r,{...e,iconKey:"folder_shared"})}function _k(e){return n.jsx(r,{...e,iconKey:"folder_special"})}function yk(e){return n.jsx(r,{...e,iconKey:"folder_zip"})}function hk(e){return n.jsx(r,{...e,iconKey:"follow_the_signs"})}function gk(e){return n.jsx(r,{...e,iconKey:"font_download"})}function Ik(e){return n.jsx(r,{...e,iconKey:"font_download_off"})}function bk(e){return n.jsx(r,{...e,iconKey:"food_bank"})}function pk(e){return n.jsx(r,{...e,iconKey:"forest"})}function wk(e){return n.jsx(r,{...e,iconKey:"fork_left"})}function kk(e){return n.jsx(r,{...e,iconKey:"fork_right"})}function mk(e){return n.jsx(r,{...e,iconKey:"format_align_center"})}function vk(e){return n.jsx(r,{...e,iconKey:"format_align_justify"})}function Kk(e){return n.jsx(r,{...e,iconKey:"format_align_left"})}function Ck(e){return n.jsx(r,{...e,iconKey:"format_align_right"})}function Sk(e){return n.jsx(r,{...e,iconKey:"format_bold"})}function Bk(e){return n.jsx(r,{...e,iconKey:"format_clear"})}function Ek(e){return n.jsx(r,{...e,iconKey:"format_color_fill"})}function Fk(e){return n.jsx(r,{...e,iconKey:"format_color_reset"})}function Pk(e){return n.jsx(r,{...e,iconKey:"format_color_text"})}function Dk(e){return n.jsx(r,{...e,iconKey:"format_indent_decrease"})}function Nk(e){return n.jsx(r,{...e,iconKey:"format_indent_increase"})}function Mk(e){return n.jsx(r,{...e,iconKey:"format_italic"})}function Tk(e){return n.jsx(r,{...e,iconKey:"format_line_spacing"})}function Ok(e){return n.jsx(r,{...e,iconKey:"format_list_bulleted"})}function kr(e){return n.jsx(r,{...e,iconKey:"format_list_numbered"})}function Lk(e){return n.jsx(r,{...e,iconKey:"format_list_numbered_rtl"})}function Qk(e){return n.jsx(r,{...e,iconKey:"format_overline"})}function Vk(e){return n.jsx(r,{...e,iconKey:"format_paint"})}function Kc(e){return n.jsx(r,{...e,iconKey:"format_quote"})}function Wk(e){return n.jsx(r,{...e,iconKey:"format_shapes"})}function Gk(e){return n.jsx(r,{...e,iconKey:"format_size"})}function zk(e){return n.jsx(r,{...e,iconKey:"format_strikethrough"})}function Hk(e){return n.jsx(r,{...e,iconKey:"format_textdirection_l_to_r"})}function Uk(e){return n.jsx(r,{...e,iconKey:"format_textdirection_r_to_l"})}function Yk(e){return n.jsx(r,{...e,iconKey:"format_underlined"})}function $k(e){return n.jsx(r,{...e,iconKey:"fort"})}function jk(e){return n.jsx(r,{...e,iconKey:"forum"})}function qk(e){return n.jsx(r,{...e,iconKey:"forward"})}function Jk(e){return n.jsx(r,{...e,iconKey:"forward_10"})}function Zk(e){return n.jsx(r,{...e,iconKey:"forward_30"})}function Xk(e){return n.jsx(r,{...e,iconKey:"forward_5"})}function xk(e){return n.jsx(r,{...e,iconKey:"forward_to_inbox"})}function Rk(e){return n.jsx(r,{...e,iconKey:"foundation"})}function em(e){return n.jsx(r,{...e,iconKey:"free_breakfast"})}function nm(e){return n.jsx(r,{...e,iconKey:"free_cancellation"})}function om(e){return n.jsx(r,{...e,iconKey:"front_hand"})}function rm(e){return n.jsx(r,{...e,iconKey:"fullscreen"})}function tm(e){return n.jsx(r,{...e,iconKey:"fullscreen_exit"})}function Cc(e){return n.jsx(r,{...e,iconKey:"functions"})}function cm(e){return n.jsx(r,{...e,iconKey:"g_mobiledata"})}function im(e){return n.jsx(r,{...e,iconKey:"g_translate"})}function am(e){return n.jsx(r,{...e,iconKey:"gamepad"})}function lm(e){return n.jsx(r,{...e,iconKey:"games"})}function sm(e){return n.jsx(r,{...e,iconKey:"garage"})}function dm(e){return n.jsx(r,{...e,iconKey:"gas_meter"})}function um(e){return n.jsx(r,{...e,iconKey:"gavel"})}function fm(e){return n.jsx(r,{...e,iconKey:"generating_tokens"})}function Am(e){return n.jsx(r,{...e,iconKey:"gesture"})}function _m(e){return n.jsx(r,{...e,iconKey:"get_app"})}function ym(e){return n.jsx(r,{...e,iconKey:"gif"})}function hm(e){return n.jsx(r,{...e,iconKey:"gif_box"})}function gm(e){return n.jsx(r,{...e,iconKey:"girl"})}function Im(e){return n.jsx(r,{...e,iconKey:"gite"})}function bm(e){return n.jsx(r,{...e,iconKey:"golf_course"})}function pm(e){return n.jsx(r,{...e,iconKey:"gpp_bad"})}function wm(e){return n.jsx(r,{...e,iconKey:"gpp_good"})}function km(e){return n.jsx(r,{...e,iconKey:"gpp_maybe"})}function mm(e){return n.jsx(r,{...e,iconKey:"gps_fixed"})}function vm(e){return n.jsx(r,{...e,iconKey:"gps_not_fixed"})}function Km(e){return n.jsx(r,{...e,iconKey:"gps_off"})}function Cm(e){return n.jsx(r,{...e,iconKey:"grade"})}function Sm(e){return n.jsx(r,{...e,iconKey:"gradient"})}function Bm(e){return n.jsx(r,{...e,iconKey:"grading"})}function Em(e){return n.jsx(r,{...e,iconKey:"grain"})}function Fm(e){return n.jsx(r,{...e,iconKey:"graphic_eq"})}function Pm(e){return n.jsx(r,{...e,iconKey:"grass"})}function Dm(e){return n.jsx(r,{...e,iconKey:"grid_3x3"})}function Nm(e){return n.jsx(r,{...e,iconKey:"grid_4x4"})}function Mm(e){return n.jsx(r,{...e,iconKey:"grid_goldenratio"})}function Tm(e){return n.jsx(r,{...e,iconKey:"grid_off"})}function Om(e){return n.jsx(r,{...e,iconKey:"grid_on"})}function Lm(e){return n.jsx(r,{...e,iconKey:"grid_view"})}function Qm(e){return n.jsx(r,{...e,iconKey:"group"})}function Vm(e){return n.jsx(r,{...e,iconKey:"group_add"})}function Wm(e){return n.jsx(r,{...e,iconKey:"group_off"})}function Gm(e){return n.jsx(r,{...e,iconKey:"group_remove"})}function zm(e){return n.jsx(r,{...e,iconKey:"group_work"})}function Hm(e){return n.jsx(r,{...e,iconKey:"groups"})}function Um(e){return n.jsx(r,{...e,iconKey:"groups_2"})}function Ym(e){return n.jsx(r,{...e,iconKey:"groups_3"})}function $m(e){return n.jsx(r,{...e,iconKey:"h_mobiledata"})}function jm(e){return n.jsx(r,{...e,iconKey:"h_plus_mobiledata"})}function qm(e){return n.jsx(r,{...e,iconKey:"hail"})}function Jm(e){return n.jsx(r,{...e,iconKey:"handshake"})}function Zm(e){return n.jsx(r,{...e,iconKey:"handyman"})}function Xm(e){return n.jsx(r,{...e,iconKey:"hardware"})}function xm(e){return n.jsx(r,{...e,iconKey:"hd"})}function Rm(e){return n.jsx(r,{...e,iconKey:"hdr_auto"})}function ev(e){return n.jsx(r,{...e,iconKey:"hdr_auto_select"})}function nv(e){return n.jsx(r,{...e,iconKey:"hdr_enhanced_select"})}function ov(e){return n.jsx(r,{...e,iconKey:"hdr_off"})}function rv(e){return n.jsx(r,{...e,iconKey:"hdr_off_select"})}function tv(e){return n.jsx(r,{...e,iconKey:"hdr_on"})}function cv(e){return n.jsx(r,{...e,iconKey:"hdr_on_select"})}function iv(e){return n.jsx(r,{...e,iconKey:"hdr_plus"})}function av(e){return n.jsx(r,{...e,iconKey:"hdr_strong"})}function lv(e){return n.jsx(r,{...e,iconKey:"hdr_weak"})}function sv(e){return n.jsx(r,{...e,iconKey:"headphones"})}function dv(e){return n.jsx(r,{...e,iconKey:"headphones_battery"})}function uv(e){return n.jsx(r,{...e,iconKey:"headset"})}function fv(e){return n.jsx(r,{...e,iconKey:"headset_mic"})}function Av(e){return n.jsx(r,{...e,iconKey:"headset_off"})}function _v(e){return n.jsx(r,{...e,iconKey:"healing"})}function yv(e){return n.jsx(r,{...e,iconKey:"health_and_safety"})}function hv(e){return n.jsx(r,{...e,iconKey:"hearing"})}function gv(e){return n.jsx(r,{...e,iconKey:"hearing_disabled"})}function Iv(e){return n.jsx(r,{...e,iconKey:"heart_broken"})}function bv(e){return n.jsx(r,{...e,iconKey:"heat_pump"})}function pv(e){return n.jsx(r,{...e,iconKey:"height"})}function wv(e){return n.jsx(r,{...e,iconKey:"help"})}function kv(e){return n.jsx(r,{...e,iconKey:"help_center"})}function mv(e){return n.jsx(r,{...e,iconKey:"help_outline"})}function vv(e){return n.jsx(r,{...e,iconKey:"hevc"})}function Kv(e){return n.jsx(r,{...e,iconKey:"hexagon"})}function Cv(e){return n.jsx(r,{...e,iconKey:"hide_image"})}function Sv(e){return n.jsx(r,{...e,iconKey:"hide_source"})}function Bv(e){return n.jsx(r,{...e,iconKey:"high_quality"})}function Ev(e){return n.jsx(r,{...e,iconKey:"highlight"})}function Fv(e){return n.jsx(r,{...e,iconKey:"highlight_alt"})}function Pv(e){return n.jsx(r,{...e,iconKey:"highlight_off"})}function Dv(e){return n.jsx(r,{...e,iconKey:"hiking"})}function Nv(e){return n.jsx(r,{...e,iconKey:"history"})}function Mv(e){return n.jsx(r,{...e,iconKey:"history_edu"})}function Tv(e){return n.jsx(r,{...e,iconKey:"history_toggle_off"})}function Ov(e){return n.jsx(r,{...e,iconKey:"hive"})}function Lv(e){return n.jsx(r,{...e,iconKey:"hls"})}function Qv(e){return n.jsx(r,{...e,iconKey:"hls_off"})}function Vv(e){return n.jsx(r,{...e,iconKey:"holiday_village"})}function Wv(e){return n.jsx(r,{...e,iconKey:"home"})}function Gv(e){return n.jsx(r,{...e,iconKey:"home_max"})}function zv(e){return n.jsx(r,{...e,iconKey:"home_mini"})}function Hv(e){return n.jsx(r,{...e,iconKey:"home_repair_service"})}function Uv(e){return n.jsx(r,{...e,iconKey:"home_work"})}function Yv(e){return n.jsx(r,{...e,iconKey:"horizontal_distribute"})}function $v(e){return n.jsx(r,{...e,iconKey:"horizontal_rule"})}function jv(e){return n.jsx(r,{...e,iconKey:"horizontal_split"})}function qv(e){return n.jsx(r,{...e,iconKey:"hot_tub"})}function Jv(e){return n.jsx(r,{...e,iconKey:"hotel"})}function Zv(e){return n.jsx(r,{...e,iconKey:"hotel_class"})}function Xv(e){return n.jsx(r,{...e,iconKey:"hourglass_bottom"})}function xv(e){return n.jsx(r,{...e,iconKey:"hourglass_disabled"})}function Rv(e){return n.jsx(r,{...e,iconKey:"hourglass_empty"})}function e0(e){return n.jsx(r,{...e,iconKey:"hourglass_full"})}function n0(e){return n.jsx(r,{...e,iconKey:"hourglass_top"})}function o0(e){return n.jsx(r,{...e,iconKey:"house"})}function r0(e){return n.jsx(r,{...e,iconKey:"house_siding"})}function t0(e){return n.jsx(r,{...e,iconKey:"houseboat"})}function c0(e){return n.jsx(r,{...e,iconKey:"how_to_reg"})}function i0(e){return n.jsx(r,{...e,iconKey:"how_to_vote"})}function a0(e){return n.jsx(r,{...e,iconKey:"html"})}function Sc(e){return n.jsx(r,{...e,iconKey:"http"})}function l0(e){return n.jsx(r,{...e,iconKey:"https"})}function s0(e){return n.jsx(r,{...e,iconKey:"hub"})}function d0(e){return n.jsx(r,{...e,iconKey:"hvac"})}function u0(e){return n.jsx(r,{...e,iconKey:"ice_skating"})}function f0(e){return n.jsx(r,{...e,iconKey:"icecream"})}function A0(e){return n.jsx(r,{...e,iconKey:"image"})}function _0(e){return n.jsx(r,{...e,iconKey:"image_aspect_ratio"})}function y0(e){return n.jsx(r,{...e,iconKey:"image_not_supported"})}function h0(e){return n.jsx(r,{...e,iconKey:"image_search"})}function g0(e){return n.jsx(r,{...e,iconKey:"imagesearch_roller"})}function I0(e){return n.jsx(r,{...e,iconKey:"import_contacts"})}function b0(e){return n.jsx(r,{...e,iconKey:"import_export"})}function p0(e){return n.jsx(r,{...e,iconKey:"important_devices"})}function w0(e){return n.jsx(r,{...e,iconKey:"inbox"})}function k0(e){return n.jsx(r,{...e,iconKey:"incomplete_circle"})}function m0(e){return n.jsx(r,{...e,iconKey:"indeterminate_check_box"})}function Bc(e){return n.jsx(r,{...e,iconKey:"info"})}function v0(e){return n.jsx(r,{...e,iconKey:"input"})}function K0(e){return n.jsx(r,{...e,iconKey:"insert_chart"})}function C0(e){return n.jsx(r,{...e,iconKey:"insert_chart_outlined"})}function S0(e){return n.jsx(r,{...e,iconKey:"insert_comment"})}function B0(e){return n.jsx(r,{...e,iconKey:"insert_drive_file"})}function E0(e){return n.jsx(r,{...e,iconKey:"insert_emoticon"})}function F0(e){return n.jsx(r,{...e,iconKey:"insert_invitation"})}function P0(e){return n.jsx(r,{...e,iconKey:"insert_link"})}function D0(e){return n.jsx(r,{...e,iconKey:"insert_page_break"})}function N0(e){return n.jsx(r,{...e,iconKey:"insert_photo"})}function M0(e){return n.jsx(r,{...e,iconKey:"insights"})}function T0(e){return n.jsx(r,{...e,iconKey:"install_desktop"})}function O0(e){return n.jsx(r,{...e,iconKey:"install_mobile"})}function L0(e){return n.jsx(r,{...e,iconKey:"integration_instructions"})}function Q0(e){return n.jsx(r,{...e,iconKey:"interests"})}function V0(e){return n.jsx(r,{...e,iconKey:"interpreter_mode"})}function W0(e){return n.jsx(r,{...e,iconKey:"inventory"})}function G0(e){return n.jsx(r,{...e,iconKey:"inventory_2"})}function z0(e){return n.jsx(r,{...e,iconKey:"invert_colors"})}function H0(e){return n.jsx(r,{...e,iconKey:"invert_colors_off"})}function U0(e){return n.jsx(r,{...e,iconKey:"ios_share"})}function Y0(e){return n.jsx(r,{...e,iconKey:"iron"})}function $0(e){return n.jsx(r,{...e,iconKey:"iso"})}function j0(e){return n.jsx(r,{...e,iconKey:"javascript"})}function q0(e){return n.jsx(r,{...e,iconKey:"join_full"})}function J0(e){return n.jsx(r,{...e,iconKey:"join_inner"})}function Z0(e){return n.jsx(r,{...e,iconKey:"join_left"})}function X0(e){return n.jsx(r,{...e,iconKey:"join_right"})}function x0(e){return n.jsx(r,{...e,iconKey:"kayaking"})}function R0(e){return n.jsx(r,{...e,iconKey:"kebab_dining"})}function eK(e){return n.jsx(r,{...e,iconKey:"key"})}function nK(e){return n.jsx(r,{...e,iconKey:"key_off"})}function oK(e){return n.jsx(r,{...e,iconKey:"keyboard"})}function rK(e){return n.jsx(r,{...e,iconKey:"keyboard_alt"})}function tK(e){return n.jsx(r,{...e,iconKey:"keyboard_arrow_down"})}function cK(e){return n.jsx(r,{...e,iconKey:"keyboard_arrow_left"})}function iK(e){return n.jsx(r,{...e,iconKey:"keyboard_arrow_right"})}function aK(e){return n.jsx(r,{...e,iconKey:"keyboard_arrow_up"})}function lK(e){return n.jsx(r,{...e,iconKey:"keyboard_backspace"})}function sK(e){return n.jsx(r,{...e,iconKey:"keyboard_capslock"})}function dK(e){return n.jsx(r,{...e,iconKey:"keyboard_command_key"})}function uK(e){return n.jsx(r,{...e,iconKey:"keyboard_control_key"})}function fK(e){return n.jsx(r,{...e,iconKey:"keyboard_double_arrow_down"})}function AK(e){return n.jsx(r,{...e,iconKey:"keyboard_double_arrow_left"})}function _K(e){return n.jsx(r,{...e,iconKey:"keyboard_double_arrow_right"})}function yK(e){return n.jsx(r,{...e,iconKey:"keyboard_double_arrow_up"})}function hK(e){return n.jsx(r,{...e,iconKey:"keyboard_hide"})}function gK(e){return n.jsx(r,{...e,iconKey:"keyboard_option_key"})}function IK(e){return n.jsx(r,{...e,iconKey:"keyboard_return"})}function ko(e){return n.jsx(r,{...e,iconKey:"keyboard_tab"})}function bK(e){return n.jsx(r,{...e,iconKey:"keyboard_voice"})}function pK(e){return n.jsx(r,{...e,iconKey:"king_bed"})}function wK(e){return n.jsx(r,{...e,iconKey:"kitchen"})}function kK(e){return n.jsx(r,{...e,iconKey:"kitesurfing"})}function mK(e){return n.jsx(r,{...e,iconKey:"label"})}function vK(e){return n.jsx(r,{...e,iconKey:"label_important"})}function KK(e){return n.jsx(r,{...e,iconKey:"label_off"})}function CK(e){return n.jsx(r,{...e,iconKey:"lan"})}function SK(e){return n.jsx(r,{...e,iconKey:"landscape"})}function BK(e){return n.jsx(r,{...e,iconKey:"landslide"})}function EK(e){return n.jsx(r,{...e,iconKey:"language"})}function FK(e){return n.jsx(r,{...e,iconKey:"laptop"})}function PK(e){return n.jsx(r,{...e,iconKey:"laptop_chromebook"})}function DK(e){return n.jsx(r,{...e,iconKey:"laptop_mac"})}function NK(e){return n.jsx(r,{...e,iconKey:"laptop_windows"})}function MK(e){return n.jsx(r,{...e,iconKey:"last_page"})}function TK(e){return n.jsx(r,{...e,iconKey:"launch"})}function OK(e){return n.jsx(r,{...e,iconKey:"layers"})}function LK(e){return n.jsx(r,{...e,iconKey:"layers_clear"})}function QK(e){return n.jsx(r,{...e,iconKey:"leaderboard"})}function VK(e){return n.jsx(r,{...e,iconKey:"leak_add"})}function WK(e){return n.jsx(r,{...e,iconKey:"leak_remove"})}function GK(e){return n.jsx(r,{...e,iconKey:"legend_toggle"})}function zK(e){return n.jsx(r,{...e,iconKey:"lens"})}function HK(e){return n.jsx(r,{...e,iconKey:"lens_blur"})}function UK(e){return n.jsx(r,{...e,iconKey:"library_add"})}function YK(e){return n.jsx(r,{...e,iconKey:"library_add_check"})}function $K(e){return n.jsx(r,{...e,iconKey:"library_books"})}function jK(e){return n.jsx(r,{...e,iconKey:"library_music"})}function qK(e){return n.jsx(r,{...e,iconKey:"light"})}function Ec(e){return n.jsx(r,{...e,iconKey:"light_mode"})}function JK(e){return n.jsx(r,{...e,iconKey:"lightbulb"})}function ZK(e){return n.jsx(r,{...e,iconKey:"lightbulb_circle"})}function XK(e){return n.jsx(r,{...e,iconKey:"line_axis"})}function xK(e){return n.jsx(r,{...e,iconKey:"line_style"})}function RK(e){return n.jsx(r,{...e,iconKey:"line_weight"})}function eC(e){return n.jsx(r,{...e,iconKey:"linear_scale"})}function Fc(e){return n.jsx(r,{...e,iconKey:"link"})}function nC(e){return n.jsx(r,{...e,iconKey:"link_off"})}function oC(e){return n.jsx(r,{...e,iconKey:"linked_camera"})}function rC(e){return n.jsx(r,{...e,iconKey:"liquor"})}function Pc(e){return n.jsx(r,{...e,iconKey:"list"})}function Dc(e){return n.jsx(r,{...e,iconKey:"list_alt"})}function tC(e){return n.jsx(r,{...e,iconKey:"live_help"})}function cC(e){return n.jsx(r,{...e,iconKey:"live_tv"})}function iC(e){return n.jsx(r,{...e,iconKey:"living"})}function aC(e){return n.jsx(r,{...e,iconKey:"local_activity"})}function lC(e){return n.jsx(r,{...e,iconKey:"local_airport"})}function sC(e){return n.jsx(r,{...e,iconKey:"local_atm"})}function dC(e){return n.jsx(r,{...e,iconKey:"local_bar"})}function uC(e){return n.jsx(r,{...e,iconKey:"local_cafe"})}function fC(e){return n.jsx(r,{...e,iconKey:"local_car_wash"})}function AC(e){return n.jsx(r,{...e,iconKey:"local_convenience_store"})}function _C(e){return n.jsx(r,{...e,iconKey:"local_dining"})}function yC(e){return n.jsx(r,{...e,iconKey:"local_drink"})}function hC(e){return n.jsx(r,{...e,iconKey:"local_fire_department"})}function gC(e){return n.jsx(r,{...e,iconKey:"local_florist"})}function IC(e){return n.jsx(r,{...e,iconKey:"local_gas_station"})}function bC(e){return n.jsx(r,{...e,iconKey:"local_grocery_store"})}function pC(e){return n.jsx(r,{...e,iconKey:"local_hospital"})}function wC(e){return n.jsx(r,{...e,iconKey:"local_hotel"})}function kC(e){return n.jsx(r,{...e,iconKey:"local_laundry_service"})}function mC(e){return n.jsx(r,{...e,iconKey:"local_library"})}function vC(e){return n.jsx(r,{...e,iconKey:"local_mall"})}function KC(e){return n.jsx(r,{...e,iconKey:"local_movies"})}function CC(e){return n.jsx(r,{...e,iconKey:"local_offer"})}function SC(e){return n.jsx(r,{...e,iconKey:"local_parking"})}function BC(e){return n.jsx(r,{...e,iconKey:"local_pharmacy"})}function EC(e){return n.jsx(r,{...e,iconKey:"local_phone"})}function FC(e){return n.jsx(r,{...e,iconKey:"local_pizza"})}function PC(e){return n.jsx(r,{...e,iconKey:"local_play"})}function DC(e){return n.jsx(r,{...e,iconKey:"local_police"})}function NC(e){return n.jsx(r,{...e,iconKey:"local_post_office"})}function MC(e){return n.jsx(r,{...e,iconKey:"local_printshop"})}function TC(e){return n.jsx(r,{...e,iconKey:"local_see"})}function OC(e){return n.jsx(r,{...e,iconKey:"local_shipping"})}function LC(e){return n.jsx(r,{...e,iconKey:"local_taxi"})}function QC(e){return n.jsx(r,{...e,iconKey:"location_city"})}function VC(e){return n.jsx(r,{...e,iconKey:"location_disabled"})}function WC(e){return n.jsx(r,{...e,iconKey:"location_off"})}function GC(e){return n.jsx(r,{...e,iconKey:"location_on"})}function zC(e){return n.jsx(r,{...e,iconKey:"location_searching"})}function HC(e){return n.jsx(r,{...e,iconKey:"lock"})}function UC(e){return n.jsx(r,{...e,iconKey:"lock_clock"})}function YC(e){return n.jsx(r,{...e,iconKey:"lock_open"})}function $C(e){return n.jsx(r,{...e,iconKey:"lock_person"})}function jC(e){return n.jsx(r,{...e,iconKey:"lock_reset"})}function qC(e){return n.jsx(r,{...e,iconKey:"login"})}function JC(e){return n.jsx(r,{...e,iconKey:"logo_dev"})}function Nc(e){return n.jsx(r,{...e,iconKey:"logout"})}function ZC(e){return n.jsx(r,{...e,iconKey:"looks"})}function XC(e){return n.jsx(r,{...e,iconKey:"looks_3"})}function xC(e){return n.jsx(r,{...e,iconKey:"looks_4"})}function RC(e){return n.jsx(r,{...e,iconKey:"looks_5"})}function eS(e){return n.jsx(r,{...e,iconKey:"looks_6"})}function nS(e){return n.jsx(r,{...e,iconKey:"looks_one"})}function oS(e){return n.jsx(r,{...e,iconKey:"looks_two"})}function rS(e){return n.jsx(r,{...e,iconKey:"loop"})}function tS(e){return n.jsx(r,{...e,iconKey:"loupe"})}function cS(e){return n.jsx(r,{...e,iconKey:"low_priority"})}function iS(e){return n.jsx(r,{...e,iconKey:"loyalty"})}function aS(e){return n.jsx(r,{...e,iconKey:"lte_mobiledata"})}function lS(e){return n.jsx(r,{...e,iconKey:"lte_plus_mobiledata"})}function sS(e){return n.jsx(r,{...e,iconKey:"luggage"})}function dS(e){return n.jsx(r,{...e,iconKey:"lunch_dining"})}function uS(e){return n.jsx(r,{...e,iconKey:"lyrics"})}function fS(e){return n.jsx(r,{...e,iconKey:"macro_off"})}function AS(e){return n.jsx(r,{...e,iconKey:"mail"})}function _S(e){return n.jsx(r,{...e,iconKey:"mail_lock"})}function yS(e){return n.jsx(r,{...e,iconKey:"mail_outline"})}function hS(e){return n.jsx(r,{...e,iconKey:"male"})}function gS(e){return n.jsx(r,{...e,iconKey:"man"})}function IS(e){return n.jsx(r,{...e,iconKey:"man_2"})}function bS(e){return n.jsx(r,{...e,iconKey:"man_3"})}function pS(e){return n.jsx(r,{...e,iconKey:"man_4"})}function wS(e){return n.jsx(r,{...e,iconKey:"manage_accounts"})}function kS(e){return n.jsx(r,{...e,iconKey:"manage_history"})}function mS(e){return n.jsx(r,{...e,iconKey:"manage_search"})}function vS(e){return n.jsx(r,{...e,iconKey:"map"})}function KS(e){return n.jsx(r,{...e,iconKey:"maps_home_work"})}function CS(e){return n.jsx(r,{...e,iconKey:"maps_ugc"})}function SS(e){return n.jsx(r,{...e,iconKey:"margin"})}function BS(e){return n.jsx(r,{...e,iconKey:"mark_as_unread"})}function ES(e){return n.jsx(r,{...e,iconKey:"mark_chat_read"})}function FS(e){return n.jsx(r,{...e,iconKey:"mark_chat_unread"})}function PS(e){return n.jsx(r,{...e,iconKey:"mark_email_read"})}function DS(e){return n.jsx(r,{...e,iconKey:"mark_email_unread"})}function NS(e){return n.jsx(r,{...e,iconKey:"mark_unread_chat_alt"})}function MS(e){return n.jsx(r,{...e,iconKey:"markunread"})}function TS(e){return n.jsx(r,{...e,iconKey:"markunread_mailbox"})}function OS(e){return n.jsx(r,{...e,iconKey:"masks"})}function LS(e){return n.jsx(r,{...e,iconKey:"maximize"})}function QS(e){return n.jsx(r,{...e,iconKey:"media_bluetooth_off"})}function VS(e){return n.jsx(r,{...e,iconKey:"media_bluetooth_on"})}function WS(e){return n.jsx(r,{...e,iconKey:"mediation"})}function GS(e){return n.jsx(r,{...e,iconKey:"medical_information"})}function zS(e){return n.jsx(r,{...e,iconKey:"medical_services"})}function HS(e){return n.jsx(r,{...e,iconKey:"medication"})}function US(e){return n.jsx(r,{...e,iconKey:"medication_liquid"})}function YS(e){return n.jsx(r,{...e,iconKey:"meeting_room"})}function $S(e){return n.jsx(r,{...e,iconKey:"memory"})}function mr(e){return n.jsx(r,{...e,iconKey:"menu"})}function jS(e){return n.jsx(r,{...e,iconKey:"menu_book"})}function qS(e){return n.jsx(r,{...e,iconKey:"menu_open"})}function JS(e){return n.jsx(r,{...e,iconKey:"merge"})}function ZS(e){return n.jsx(r,{...e,iconKey:"merge_type"})}function XS(e){return n.jsx(r,{...e,iconKey:"message"})}function xS(e){return n.jsx(r,{...e,iconKey:"mic"})}function RS(e){return n.jsx(r,{...e,iconKey:"mic_external_off"})}function eB(e){return n.jsx(r,{...e,iconKey:"mic_external_on"})}function nB(e){return n.jsx(r,{...e,iconKey:"mic_none"})}function oB(e){return n.jsx(r,{...e,iconKey:"mic_off"})}function rB(e){return n.jsx(r,{...e,iconKey:"microwave"})}function tB(e){return n.jsx(r,{...e,iconKey:"military_tech"})}function cB(e){return n.jsx(r,{...e,iconKey:"minimize"})}function iB(e){return n.jsx(r,{...e,iconKey:"minor_crash"})}function aB(e){return n.jsx(r,{...e,iconKey:"miscellaneous_services"})}function lB(e){return n.jsx(r,{...e,iconKey:"missed_video_call"})}function sB(e){return n.jsx(r,{...e,iconKey:"mms"})}function dB(e){return n.jsx(r,{...e,iconKey:"mobile_friendly"})}function uB(e){return n.jsx(r,{...e,iconKey:"mobile_off"})}function fB(e){return n.jsx(r,{...e,iconKey:"mobile_screen_share"})}function AB(e){return n.jsx(r,{...e,iconKey:"mobiledata_off"})}function _B(e){return n.jsx(r,{...e,iconKey:"mode"})}function yB(e){return n.jsx(r,{...e,iconKey:"mode_comment"})}function hB(e){return n.jsx(r,{...e,iconKey:"mode_edit"})}function gB(e){return n.jsx(r,{...e,iconKey:"mode_edit_outline"})}function IB(e){return n.jsx(r,{...e,iconKey:"mode_fan_off"})}function bB(e){return n.jsx(r,{...e,iconKey:"mode_night"})}function pB(e){return n.jsx(r,{...e,iconKey:"mode_of_travel"})}function wB(e){return n.jsx(r,{...e,iconKey:"mode_standby"})}function kB(e){return n.jsx(r,{...e,iconKey:"model_training"})}function mB(e){return n.jsx(r,{...e,iconKey:"monetization_on"})}function vB(e){return n.jsx(r,{...e,iconKey:"money"})}function KB(e){return n.jsx(r,{...e,iconKey:"money_off"})}function CB(e){return n.jsx(r,{...e,iconKey:"money_off_csred"})}function SB(e){return n.jsx(r,{...e,iconKey:"monitor"})}function BB(e){return n.jsx(r,{...e,iconKey:"monitor_heart"})}function EB(e){return n.jsx(r,{...e,iconKey:"monitor_weight"})}function FB(e){return n.jsx(r,{...e,iconKey:"monochrome_photos"})}function PB(e){return n.jsx(r,{...e,iconKey:"mood"})}function DB(e){return n.jsx(r,{...e,iconKey:"mood_bad"})}function NB(e){return n.jsx(r,{...e,iconKey:"moped"})}function MB(e){return n.jsx(r,{...e,iconKey:"more"})}function TB(e){return n.jsx(r,{...e,iconKey:"more_horiz"})}function OB(e){return n.jsx(r,{...e,iconKey:"more_time"})}function vr(e){return n.jsx(r,{...e,iconKey:"more_vert"})}function LB(e){return n.jsx(r,{...e,iconKey:"mosque"})}function QB(e){return n.jsx(r,{...e,iconKey:"motion_photos_auto"})}function VB(e){return n.jsx(r,{...e,iconKey:"motion_photos_off"})}function WB(e){return n.jsx(r,{...e,iconKey:"motion_photos_on"})}function GB(e){return n.jsx(r,{...e,iconKey:"motion_photos_pause"})}function zB(e){return n.jsx(r,{...e,iconKey:"motion_photos_paused"})}function HB(e){return n.jsx(r,{...e,iconKey:"mouse"})}function UB(e){return n.jsx(r,{...e,iconKey:"move_down"})}function YB(e){return n.jsx(r,{...e,iconKey:"move_to_inbox"})}function $B(e){return n.jsx(r,{...e,iconKey:"move_up"})}function jB(e){return n.jsx(r,{...e,iconKey:"movie"})}function qB(e){return n.jsx(r,{...e,iconKey:"movie_creation"})}function JB(e){return n.jsx(r,{...e,iconKey:"movie_filter"})}function ZB(e){return n.jsx(r,{...e,iconKey:"moving"})}function XB(e){return n.jsx(r,{...e,iconKey:"mp"})}function xB(e){return n.jsx(r,{...e,iconKey:"multiline_chart"})}function RB(e){return n.jsx(r,{...e,iconKey:"multiple_stop"})}function eE(e){return n.jsx(r,{...e,iconKey:"museum"})}function nE(e){return n.jsx(r,{...e,iconKey:"music_note"})}function oE(e){return n.jsx(r,{...e,iconKey:"music_off"})}function rE(e){return n.jsx(r,{...e,iconKey:"music_video"})}function tE(e){return n.jsx(r,{...e,iconKey:"my_location"})}function cE(e){return n.jsx(r,{...e,iconKey:"nat"})}function iE(e){return n.jsx(r,{...e,iconKey:"nature"})}function aE(e){return n.jsx(r,{...e,iconKey:"nature_people"})}function lE(e){return n.jsx(r,{...e,iconKey:"navigate_before"})}function sE(e){return n.jsx(r,{...e,iconKey:"navigate_next"})}function dE(e){return n.jsx(r,{...e,iconKey:"navigation"})}function uE(e){return n.jsx(r,{...e,iconKey:"near_me"})}function fE(e){return n.jsx(r,{...e,iconKey:"near_me_disabled"})}function AE(e){return n.jsx(r,{...e,iconKey:"nearby_error"})}function _E(e){return n.jsx(r,{...e,iconKey:"nearby_off"})}function yE(e){return n.jsx(r,{...e,iconKey:"nest_cam_wired_stand"})}function hE(e){return n.jsx(r,{...e,iconKey:"network_cell"})}function gE(e){return n.jsx(r,{...e,iconKey:"network_check"})}function IE(e){return n.jsx(r,{...e,iconKey:"network_locked"})}function bE(e){return n.jsx(r,{...e,iconKey:"network_ping"})}function pE(e){return n.jsx(r,{...e,iconKey:"network_wifi"})}function wE(e){return n.jsx(r,{...e,iconKey:"network_wifi_1_bar"})}function kE(e){return n.jsx(r,{...e,iconKey:"network_wifi_2_bar"})}function mE(e){return n.jsx(r,{...e,iconKey:"network_wifi_3_bar"})}function vE(e){return n.jsx(r,{...e,iconKey:"new_label"})}function KE(e){return n.jsx(r,{...e,iconKey:"new_releases"})}function CE(e){return n.jsx(r,{...e,iconKey:"newspaper"})}function SE(e){return n.jsx(r,{...e,iconKey:"next_plan"})}function BE(e){return n.jsx(r,{...e,iconKey:"next_week"})}function EE(e){return n.jsx(r,{...e,iconKey:"nfc"})}function FE(e){return n.jsx(r,{...e,iconKey:"night_shelter"})}function PE(e){return n.jsx(r,{...e,iconKey:"nightlife"})}function DE(e){return n.jsx(r,{...e,iconKey:"nightlight"})}function NE(e){return n.jsx(r,{...e,iconKey:"nightlight_round"})}function ME(e){return n.jsx(r,{...e,iconKey:"nights_stay"})}function TE(e){return n.jsx(r,{...e,iconKey:"no_accounts"})}function OE(e){return n.jsx(r,{...e,iconKey:"no_adult_content"})}function LE(e){return n.jsx(r,{...e,iconKey:"no_backpack"})}function QE(e){return n.jsx(r,{...e,iconKey:"no_cell"})}function VE(e){return n.jsx(r,{...e,iconKey:"no_crash"})}function WE(e){return n.jsx(r,{...e,iconKey:"no_drinks"})}function GE(e){return n.jsx(r,{...e,iconKey:"no_encryption"})}function zE(e){return n.jsx(r,{...e,iconKey:"no_encryption_gmailerrorred"})}function HE(e){return n.jsx(r,{...e,iconKey:"no_flash"})}function UE(e){return n.jsx(r,{...e,iconKey:"no_food"})}function YE(e){return n.jsx(r,{...e,iconKey:"no_luggage"})}function $E(e){return n.jsx(r,{...e,iconKey:"no_meals"})}function jE(e){return n.jsx(r,{...e,iconKey:"no_meeting_room"})}function qE(e){return n.jsx(r,{...e,iconKey:"no_photography"})}function JE(e){return n.jsx(r,{...e,iconKey:"no_sim"})}function ZE(e){return n.jsx(r,{...e,iconKey:"no_stroller"})}function XE(e){return n.jsx(r,{...e,iconKey:"no_transfer"})}function xE(e){return n.jsx(r,{...e,iconKey:"noise_aware"})}function RE(e){return n.jsx(r,{...e,iconKey:"noise_control_off"})}function eF(e){return n.jsx(r,{...e,iconKey:"nordic_walking"})}function nF(e){return n.jsx(r,{...e,iconKey:"north"})}function oF(e){return n.jsx(r,{...e,iconKey:"north_east"})}function rF(e){return n.jsx(r,{...e,iconKey:"north_west"})}function tF(e){return n.jsx(r,{...e,iconKey:"not_accessible"})}function cF(e){return n.jsx(r,{...e,iconKey:"not_interested"})}function iF(e){return n.jsx(r,{...e,iconKey:"not_listed_location"})}function aF(e){return n.jsx(r,{...e,iconKey:"not_started"})}function lF(e){return n.jsx(r,{...e,iconKey:"note"})}function sF(e){return n.jsx(r,{...e,iconKey:"note_add"})}function dF(e){return n.jsx(r,{...e,iconKey:"note_alt"})}function uF(e){return n.jsx(r,{...e,iconKey:"notes"})}function fF(e){return n.jsx(r,{...e,iconKey:"notification_add"})}function AF(e){return n.jsx(r,{...e,iconKey:"notification_important"})}function _F(e){return n.jsx(r,{...e,iconKey:"notifications"})}function yF(e){return n.jsx(r,{...e,iconKey:"notifications_active"})}function hF(e){return n.jsx(r,{...e,iconKey:"notifications_none"})}function gF(e){return n.jsx(r,{...e,iconKey:"notifications_off"})}function IF(e){return n.jsx(r,{...e,iconKey:"notifications_paused"})}function Mc(e){return n.jsx(r,{...e,iconKey:"numbers"})}function bF(e){return n.jsx(r,{...e,iconKey:"offline_bolt"})}function pF(e){return n.jsx(r,{...e,iconKey:"offline_pin"})}function wF(e){return n.jsx(r,{...e,iconKey:"offline_share"})}function kF(e){return n.jsx(r,{...e,iconKey:"oil_barrel"})}function mF(e){return n.jsx(r,{...e,iconKey:"on_device_training"})}function vF(e){return n.jsx(r,{...e,iconKey:"ondemand_video"})}function KF(e){return n.jsx(r,{...e,iconKey:"online_prediction"})}function CF(e){return n.jsx(r,{...e,iconKey:"opacity"})}function SF(e){return n.jsx(r,{...e,iconKey:"open_in_browser"})}function BF(e){return n.jsx(r,{...e,iconKey:"open_in_full"})}function no(e){return n.jsx(r,{...e,iconKey:"open_in_new"})}function EF(e){return n.jsx(r,{...e,iconKey:"open_in_new_off"})}function FF(e){return n.jsx(r,{...e,iconKey:"open_with"})}function PF(e){return n.jsx(r,{...e,iconKey:"other_houses"})}function DF(e){return n.jsx(r,{...e,iconKey:"outbound"})}function NF(e){return n.jsx(r,{...e,iconKey:"outbox"})}function MF(e){return n.jsx(r,{...e,iconKey:"outdoor_grill"})}function TF(e){return n.jsx(r,{...e,iconKey:"outlet"})}function OF(e){return n.jsx(r,{...e,iconKey:"outlined_flag"})}function LF(e){return n.jsx(r,{...e,iconKey:"output"})}function QF(e){return n.jsx(r,{...e,iconKey:"padding"})}function VF(e){return n.jsx(r,{...e,iconKey:"pages"})}function WF(e){return n.jsx(r,{...e,iconKey:"pageview"})}function GF(e){return n.jsx(r,{...e,iconKey:"paid"})}function zF(e){return n.jsx(r,{...e,iconKey:"palette"})}function HF(e){return n.jsx(r,{...e,iconKey:"pan_tool"})}function UF(e){return n.jsx(r,{...e,iconKey:"pan_tool_alt"})}function YF(e){return n.jsx(r,{...e,iconKey:"panorama"})}function $F(e){return n.jsx(r,{...e,iconKey:"panorama_fish_eye"})}function jF(e){return n.jsx(r,{...e,iconKey:"panorama_horizontal"})}function qF(e){return n.jsx(r,{...e,iconKey:"panorama_horizontal_select"})}function JF(e){return n.jsx(r,{...e,iconKey:"panorama_photosphere"})}function ZF(e){return n.jsx(r,{...e,iconKey:"panorama_photosphere_select"})}function XF(e){return n.jsx(r,{...e,iconKey:"panorama_vertical"})}function xF(e){return n.jsx(r,{...e,iconKey:"panorama_vertical_select"})}function RF(e){return n.jsx(r,{...e,iconKey:"panorama_wide_angle"})}function eP(e){return n.jsx(r,{...e,iconKey:"panorama_wide_angle_select"})}function nP(e){return n.jsx(r,{...e,iconKey:"paragliding"})}function oP(e){return n.jsx(r,{...e,iconKey:"park"})}function rP(e){return n.jsx(r,{...e,iconKey:"party_mode"})}function tP(e){return n.jsx(r,{...e,iconKey:"password"})}function cP(e){return n.jsx(r,{...e,iconKey:"pattern"})}function iP(e){return n.jsx(r,{...e,iconKey:"pause"})}function aP(e){return n.jsx(r,{...e,iconKey:"pause_circle"})}function lP(e){return n.jsx(r,{...e,iconKey:"pause_circle_filled"})}function sP(e){return n.jsx(r,{...e,iconKey:"pause_circle_outline"})}function dP(e){return n.jsx(r,{...e,iconKey:"pause_presentation"})}function uP(e){return n.jsx(r,{...e,iconKey:"payment"})}function fP(e){return n.jsx(r,{...e,iconKey:"payments"})}function AP(e){return n.jsx(r,{...e,iconKey:"pedal_bike"})}function _P(e){return n.jsx(r,{...e,iconKey:"pending"})}function yP(e){return n.jsx(r,{...e,iconKey:"pending_actions"})}function hP(e){return n.jsx(r,{...e,iconKey:"pentagon"})}function gP(e){return n.jsx(r,{...e,iconKey:"people"})}function IP(e){return n.jsx(r,{...e,iconKey:"people_alt"})}function bP(e){return n.jsx(r,{...e,iconKey:"people_outline"})}function pP(e){return n.jsx(r,{...e,iconKey:"percent"})}function wP(e){return n.jsx(r,{...e,iconKey:"perm_camera_mic"})}function kP(e){return n.jsx(r,{...e,iconKey:"perm_contact_calendar"})}function mP(e){return n.jsx(r,{...e,iconKey:"perm_data_setting"})}function vP(e){return n.jsx(r,{...e,iconKey:"perm_device_information"})}function KP(e){return n.jsx(r,{...e,iconKey:"perm_identity"})}function CP(e){return n.jsx(r,{...e,iconKey:"perm_media"})}function SP(e){return n.jsx(r,{...e,iconKey:"perm_phone_msg"})}function BP(e){return n.jsx(r,{...e,iconKey:"perm_scan_wifi"})}function EP(e){return n.jsx(r,{...e,iconKey:"person"})}function FP(e){return n.jsx(r,{...e,iconKey:"person_2"})}function PP(e){return n.jsx(r,{...e,iconKey:"person_3"})}function DP(e){return n.jsx(r,{...e,iconKey:"person_4"})}function NP(e){return n.jsx(r,{...e,iconKey:"person_add"})}function MP(e){return n.jsx(r,{...e,iconKey:"person_add_alt"})}function TP(e){return n.jsx(r,{...e,iconKey:"person_add_alt_1"})}function OP(e){return n.jsx(r,{...e,iconKey:"person_add_disabled"})}function LP(e){return n.jsx(r,{...e,iconKey:"person_off"})}function QP(e){return n.jsx(r,{...e,iconKey:"person_outline"})}function VP(e){return n.jsx(r,{...e,iconKey:"person_pin"})}function WP(e){return n.jsx(r,{...e,iconKey:"person_pin_circle"})}function GP(e){return n.jsx(r,{...e,iconKey:"person_remove"})}function zP(e){return n.jsx(r,{...e,iconKey:"person_remove_alt_1"})}function HP(e){return n.jsx(r,{...e,iconKey:"person_search"})}function UP(e){return n.jsx(r,{...e,iconKey:"personal_injury"})}function YP(e){return n.jsx(r,{...e,iconKey:"personal_video"})}function $P(e){return n.jsx(r,{...e,iconKey:"pest_control"})}function jP(e){return n.jsx(r,{...e,iconKey:"pest_control_rodent"})}function qP(e){return n.jsx(r,{...e,iconKey:"pets"})}function JP(e){return n.jsx(r,{...e,iconKey:"phishing"})}function ZP(e){return n.jsx(r,{...e,iconKey:"phone"})}function XP(e){return n.jsx(r,{...e,iconKey:"phone_android"})}function xP(e){return n.jsx(r,{...e,iconKey:"phone_bluetooth_speaker"})}function RP(e){return n.jsx(r,{...e,iconKey:"phone_callback"})}function e1(e){return n.jsx(r,{...e,iconKey:"phone_disabled"})}function n1(e){return n.jsx(r,{...e,iconKey:"phone_enabled"})}function o1(e){return n.jsx(r,{...e,iconKey:"phone_forwarded"})}function r1(e){return n.jsx(r,{...e,iconKey:"phone_iphone"})}function t1(e){return n.jsx(r,{...e,iconKey:"phone_locked"})}function c1(e){return n.jsx(r,{...e,iconKey:"phone_missed"})}function i1(e){return n.jsx(r,{...e,iconKey:"phone_paused"})}function a1(e){return n.jsx(r,{...e,iconKey:"phonelink"})}function l1(e){return n.jsx(r,{...e,iconKey:"phonelink_erase"})}function s1(e){return n.jsx(r,{...e,iconKey:"phonelink_lock"})}function d1(e){return n.jsx(r,{...e,iconKey:"phonelink_off"})}function u1(e){return n.jsx(r,{...e,iconKey:"phonelink_ring"})}function f1(e){return n.jsx(r,{...e,iconKey:"phonelink_setup"})}function A1(e){return n.jsx(r,{...e,iconKey:"photo"})}function _1(e){return n.jsx(r,{...e,iconKey:"photo_album"})}function y1(e){return n.jsx(r,{...e,iconKey:"photo_camera"})}function h1(e){return n.jsx(r,{...e,iconKey:"photo_camera_back"})}function g1(e){return n.jsx(r,{...e,iconKey:"photo_camera_front"})}function I1(e){return n.jsx(r,{...e,iconKey:"photo_filter"})}function b1(e){return n.jsx(r,{...e,iconKey:"photo_library"})}function p1(e){return n.jsx(r,{...e,iconKey:"photo_size_select_actual"})}function w1(e){return n.jsx(r,{...e,iconKey:"photo_size_select_large"})}function k1(e){return n.jsx(r,{...e,iconKey:"photo_size_select_small"})}function m1(e){return n.jsx(r,{...e,iconKey:"php"})}function v1(e){return n.jsx(r,{...e,iconKey:"piano"})}function K1(e){return n.jsx(r,{...e,iconKey:"piano_off"})}function C1(e){return n.jsx(r,{...e,iconKey:"picture_as_pdf"})}function S1(e){return n.jsx(r,{...e,iconKey:"picture_in_picture"})}function B1(e){return n.jsx(r,{...e,iconKey:"picture_in_picture_alt"})}function E1(e){return n.jsx(r,{...e,iconKey:"pie_chart"})}function F1(e){return n.jsx(r,{...e,iconKey:"pie_chart_outline"})}function P1(e){return n.jsx(r,{...e,iconKey:"pin"})}function D1(e){return n.jsx(r,{...e,iconKey:"pin_drop"})}function N1(e){return n.jsx(r,{...e,iconKey:"pin_end"})}function M1(e){return n.jsx(r,{...e,iconKey:"pin_invoke"})}function T1(e){return n.jsx(r,{...e,iconKey:"pinch"})}function O1(e){return n.jsx(r,{...e,iconKey:"pivot_table_chart"})}function L1(e){return n.jsx(r,{...e,iconKey:"pix"})}function Q1(e){return n.jsx(r,{...e,iconKey:"place"})}function V1(e){return n.jsx(r,{...e,iconKey:"plagiarism"})}function W1(e){return n.jsx(r,{...e,iconKey:"play_arrow"})}function G1(e){return n.jsx(r,{...e,iconKey:"play_circle"})}function z1(e){return n.jsx(r,{...e,iconKey:"play_circle_filled"})}function H1(e){return n.jsx(r,{...e,iconKey:"play_circle_outline"})}function U1(e){return n.jsx(r,{...e,iconKey:"play_disabled"})}function Y1(e){return n.jsx(r,{...e,iconKey:"play_for_work"})}function $1(e){return n.jsx(r,{...e,iconKey:"play_lesson"})}function j1(e){return n.jsx(r,{...e,iconKey:"playlist_add"})}function q1(e){return n.jsx(r,{...e,iconKey:"playlist_add_check"})}function J1(e){return n.jsx(r,{...e,iconKey:"playlist_add_check_circle"})}function Z1(e){return n.jsx(r,{...e,iconKey:"playlist_add_circle"})}function X1(e){return n.jsx(r,{...e,iconKey:"playlist_play"})}function x1(e){return n.jsx(r,{...e,iconKey:"playlist_remove"})}function R1(e){return n.jsx(r,{...e,iconKey:"plumbing"})}function eD(e){return n.jsx(r,{...e,iconKey:"plus_one"})}function nD(e){return n.jsx(r,{...e,iconKey:"podcasts"})}function oD(e){return n.jsx(r,{...e,iconKey:"point_of_sale"})}function rD(e){return n.jsx(r,{...e,iconKey:"policy"})}function tD(e){return n.jsx(r,{...e,iconKey:"poll"})}function cD(e){return n.jsx(r,{...e,iconKey:"polyline"})}function iD(e){return n.jsx(r,{...e,iconKey:"polymer"})}function aD(e){return n.jsx(r,{...e,iconKey:"pool"})}function lD(e){return n.jsx(r,{...e,iconKey:"portable_wifi_off"})}function sD(e){return n.jsx(r,{...e,iconKey:"portrait"})}function dD(e){return n.jsx(r,{...e,iconKey:"post_add"})}function uD(e){return n.jsx(r,{...e,iconKey:"power"})}function fD(e){return n.jsx(r,{...e,iconKey:"power_input"})}function AD(e){return n.jsx(r,{...e,iconKey:"power_off"})}function _D(e){return n.jsx(r,{...e,iconKey:"power_settings_new"})}function yD(e){return n.jsx(r,{...e,iconKey:"precision_manufacturing"})}function hD(e){return n.jsx(r,{...e,iconKey:"pregnant_woman"})}function gD(e){return n.jsx(r,{...e,iconKey:"present_to_all"})}function ID(e){return n.jsx(r,{...e,iconKey:"preview"})}function bD(e){return n.jsx(r,{...e,iconKey:"price_change"})}function pD(e){return n.jsx(r,{...e,iconKey:"price_check"})}function wD(e){return n.jsx(r,{...e,iconKey:"print"})}function kD(e){return n.jsx(r,{...e,iconKey:"print_disabled"})}function mD(e){return n.jsx(r,{...e,iconKey:"priority_high"})}function vD(e){return n.jsx(r,{...e,iconKey:"privacy_tip"})}function KD(e){return n.jsx(r,{...e,iconKey:"private_connectivity"})}function CD(e){return n.jsx(r,{...e,iconKey:"production_quantity_limits"})}function SD(e){return n.jsx(r,{...e,iconKey:"propane"})}function BD(e){return n.jsx(r,{...e,iconKey:"propane_tank"})}function ED(e){return n.jsx(r,{...e,iconKey:"psychology"})}function FD(e){return n.jsx(r,{...e,iconKey:"psychology_alt"})}function PD(e){return n.jsx(r,{...e,iconKey:"public"})}function DD(e){return n.jsx(r,{...e,iconKey:"public_off"})}function ND(e){return n.jsx(r,{...e,iconKey:"publish"})}function MD(e){return n.jsx(r,{...e,iconKey:"published_with_changes"})}function TD(e){return n.jsx(r,{...e,iconKey:"punch_clock"})}function OD(e){return n.jsx(r,{...e,iconKey:"push_pin"})}function LD(e){return n.jsx(r,{...e,iconKey:"qr_code"})}function QD(e){return n.jsx(r,{...e,iconKey:"qr_code_2"})}function VD(e){return n.jsx(r,{...e,iconKey:"qr_code_scanner"})}function WD(e){return n.jsx(r,{...e,iconKey:"query_builder"})}function GD(e){return n.jsx(r,{...e,iconKey:"query_stats"})}function zD(e){return n.jsx(r,{...e,iconKey:"question_answer"})}function HD(e){return n.jsx(r,{...e,iconKey:"question_mark"})}function UD(e){return n.jsx(r,{...e,iconKey:"queue"})}function YD(e){return n.jsx(r,{...e,iconKey:"queue_music"})}function $D(e){return n.jsx(r,{...e,iconKey:"queue_play_next"})}function jD(e){return n.jsx(r,{...e,iconKey:"quickreply"})}function qD(e){return n.jsx(r,{...e,iconKey:"quiz"})}function JD(e){return n.jsx(r,{...e,iconKey:"r_mobiledata"})}function ZD(e){return n.jsx(r,{...e,iconKey:"radar"})}function XD(e){return n.jsx(r,{...e,iconKey:"radio"})}function xD(e){return n.jsx(r,{...e,iconKey:"radio_button_checked"})}function RD(e){return n.jsx(r,{...e,iconKey:"radio_button_unchecked"})}function eN(e){return n.jsx(r,{...e,iconKey:"railway_alert"})}function nN(e){return n.jsx(r,{...e,iconKey:"ramen_dining"})}function oN(e){return n.jsx(r,{...e,iconKey:"ramp_left"})}function rN(e){return n.jsx(r,{...e,iconKey:"ramp_right"})}function tN(e){return n.jsx(r,{...e,iconKey:"rate_review"})}function cN(e){return n.jsx(r,{...e,iconKey:"raw_off"})}function iN(e){return n.jsx(r,{...e,iconKey:"raw_on"})}function aN(e){return n.jsx(r,{...e,iconKey:"read_more"})}function lN(e){return n.jsx(r,{...e,iconKey:"real_estate_agent"})}function sN(e){return n.jsx(r,{...e,iconKey:"receipt"})}function dN(e){return n.jsx(r,{...e,iconKey:"receipt_long"})}function uN(e){return n.jsx(r,{...e,iconKey:"recent_actors"})}function fN(e){return n.jsx(r,{...e,iconKey:"recommend"})}function AN(e){return n.jsx(r,{...e,iconKey:"record_voice_over"})}function _N(e){return n.jsx(r,{...e,iconKey:"rectangle"})}function yN(e){return n.jsx(r,{...e,iconKey:"recycling"})}function hN(e){return n.jsx(r,{...e,iconKey:"redeem"})}function gN(e){return n.jsx(r,{...e,iconKey:"redo"})}function IN(e){return n.jsx(r,{...e,iconKey:"reduce_capacity"})}function bN(e){return n.jsx(r,{...e,iconKey:"refresh"})}function pN(e){return n.jsx(r,{...e,iconKey:"remember_me"})}function oo(e){return n.jsx(r,{...e,iconKey:"remove"})}function Tc(e){return n.jsx(r,{...e,iconKey:"remove_circle"})}function wN(e){return n.jsx(r,{...e,iconKey:"remove_circle_outline"})}function kN(e){return n.jsx(r,{...e,iconKey:"remove_done"})}function mN(e){return n.jsx(r,{...e,iconKey:"remove_from_queue"})}function vN(e){return n.jsx(r,{...e,iconKey:"remove_moderator"})}function KN(e){return n.jsx(r,{...e,iconKey:"remove_red_eye"})}function CN(e){return n.jsx(r,{...e,iconKey:"remove_road"})}function SN(e){return n.jsx(r,{...e,iconKey:"remove_shopping_cart"})}function BN(e){return n.jsx(r,{...e,iconKey:"reorder"})}function EN(e){return n.jsx(r,{...e,iconKey:"repartition"})}function Kr(e){return n.jsx(r,{...e,iconKey:"repeat"})}function FN(e){return n.jsx(r,{...e,iconKey:"repeat_on"})}function PN(e){return n.jsx(r,{...e,iconKey:"repeat_one"})}function DN(e){return n.jsx(r,{...e,iconKey:"repeat_one_on"})}function NN(e){return n.jsx(r,{...e,iconKey:"replay"})}function MN(e){return n.jsx(r,{...e,iconKey:"replay_10"})}function TN(e){return n.jsx(r,{...e,iconKey:"replay_30"})}function ON(e){return n.jsx(r,{...e,iconKey:"replay_5"})}function LN(e){return n.jsx(r,{...e,iconKey:"replay_circle_filled"})}function QN(e){return n.jsx(r,{...e,iconKey:"reply"})}function VN(e){return n.jsx(r,{...e,iconKey:"reply_all"})}function WN(e){return n.jsx(r,{...e,iconKey:"report"})}function GN(e){return n.jsx(r,{...e,iconKey:"report_gmailerrorred"})}function zN(e){return n.jsx(r,{...e,iconKey:"report_off"})}function HN(e){return n.jsx(r,{...e,iconKey:"report_problem"})}function UN(e){return n.jsx(r,{...e,iconKey:"request_page"})}function YN(e){return n.jsx(r,{...e,iconKey:"request_quote"})}function $N(e){return n.jsx(r,{...e,iconKey:"reset_tv"})}function jN(e){return n.jsx(r,{...e,iconKey:"restart_alt"})}function qN(e){return n.jsx(r,{...e,iconKey:"restaurant"})}function JN(e){return n.jsx(r,{...e,iconKey:"restaurant_menu"})}function ZN(e){return n.jsx(r,{...e,iconKey:"restore"})}function XN(e){return n.jsx(r,{...e,iconKey:"restore_from_trash"})}function xN(e){return n.jsx(r,{...e,iconKey:"restore_page"})}function RN(e){return n.jsx(r,{...e,iconKey:"reviews"})}function eM(e){return n.jsx(r,{...e,iconKey:"rice_bowl"})}function nM(e){return n.jsx(r,{...e,iconKey:"ring_volume"})}function oM(e){return n.jsx(r,{...e,iconKey:"rocket"})}function rM(e){return n.jsx(r,{...e,iconKey:"rocket_launch"})}function tM(e){return n.jsx(r,{...e,iconKey:"roller_shades"})}function cM(e){return n.jsx(r,{...e,iconKey:"roller_shades_closed"})}function iM(e){return n.jsx(r,{...e,iconKey:"roller_skating"})}function aM(e){return n.jsx(r,{...e,iconKey:"roofing"})}function lM(e){return n.jsx(r,{...e,iconKey:"room"})}function sM(e){return n.jsx(r,{...e,iconKey:"room_preferences"})}function dM(e){return n.jsx(r,{...e,iconKey:"room_service"})}function uM(e){return n.jsx(r,{...e,iconKey:"rotate_90_degrees_ccw"})}function fM(e){return n.jsx(r,{...e,iconKey:"rotate_90_degrees_cw"})}function AM(e){return n.jsx(r,{...e,iconKey:"rotate_left"})}function _M(e){return n.jsx(r,{...e,iconKey:"rotate_right"})}function yM(e){return n.jsx(r,{...e,iconKey:"roundabout_left"})}function hM(e){return n.jsx(r,{...e,iconKey:"roundabout_right"})}function gM(e){return n.jsx(r,{...e,iconKey:"rounded_corner"})}function IM(e){return n.jsx(r,{...e,iconKey:"route"})}function bM(e){return n.jsx(r,{...e,iconKey:"router"})}function pM(e){return n.jsx(r,{...e,iconKey:"rowing"})}function wM(e){return n.jsx(r,{...e,iconKey:"rss_feed"})}function kM(e){return n.jsx(r,{...e,iconKey:"rsvp"})}function mM(e){return n.jsx(r,{...e,iconKey:"rtt"})}function vM(e){return n.jsx(r,{...e,iconKey:"rule"})}function KM(e){return n.jsx(r,{...e,iconKey:"rule_folder"})}function CM(e){return n.jsx(r,{...e,iconKey:"run_circle"})}function SM(e){return n.jsx(r,{...e,iconKey:"running_with_errors"})}function BM(e){return n.jsx(r,{...e,iconKey:"rv_hookup"})}function EM(e){return n.jsx(r,{...e,iconKey:"safety_check"})}function FM(e){return n.jsx(r,{...e,iconKey:"safety_divider"})}function PM(e){return n.jsx(r,{...e,iconKey:"sailing"})}function DM(e){return n.jsx(r,{...e,iconKey:"sanitizer"})}function NM(e){return n.jsx(r,{...e,iconKey:"satellite"})}function MM(e){return n.jsx(r,{...e,iconKey:"satellite_alt"})}function TM(e){return n.jsx(r,{...e,iconKey:"save"})}function OM(e){return n.jsx(r,{...e,iconKey:"save_alt"})}function LM(e){return n.jsx(r,{...e,iconKey:"save_as"})}function QM(e){return n.jsx(r,{...e,iconKey:"saved_search"})}function VM(e){return n.jsx(r,{...e,iconKey:"savings"})}function WM(e){return n.jsx(r,{...e,iconKey:"scale"})}function GM(e){return n.jsx(r,{...e,iconKey:"scanner"})}function zM(e){return n.jsx(r,{...e,iconKey:"scatter_plot"})}function Oc(e){return n.jsx(r,{...e,iconKey:"schedule"})}function HM(e){return n.jsx(r,{...e,iconKey:"schedule_send"})}function UM(e){return n.jsx(r,{...e,iconKey:"schema"})}function YM(e){return n.jsx(r,{...e,iconKey:"school"})}function $M(e){return n.jsx(r,{...e,iconKey:"science"})}function jM(e){return n.jsx(r,{...e,iconKey:"score"})}function qM(e){return n.jsx(r,{...e,iconKey:"scoreboard"})}function JM(e){return n.jsx(r,{...e,iconKey:"screen_lock_landscape"})}function ZM(e){return n.jsx(r,{...e,iconKey:"screen_lock_portrait"})}function XM(e){return n.jsx(r,{...e,iconKey:"screen_lock_rotation"})}function xM(e){return n.jsx(r,{...e,iconKey:"screen_rotation"})}function RM(e){return n.jsx(r,{...e,iconKey:"screen_rotation_alt"})}function eT(e){return n.jsx(r,{...e,iconKey:"screen_search_desktop"})}function nT(e){return n.jsx(r,{...e,iconKey:"screen_share"})}function oT(e){return n.jsx(r,{...e,iconKey:"screenshot"})}function rT(e){return n.jsx(r,{...e,iconKey:"screenshot_monitor"})}function tT(e){return n.jsx(r,{...e,iconKey:"scuba_diving"})}function cT(e){return n.jsx(r,{...e,iconKey:"sd"})}function iT(e){return n.jsx(r,{...e,iconKey:"sd_card"})}function aT(e){return n.jsx(r,{...e,iconKey:"sd_card_alert"})}function lT(e){return n.jsx(r,{...e,iconKey:"sd_storage"})}function sT(e){return n.jsx(r,{...e,iconKey:"search_off"})}function dT(e){return n.jsx(r,{...e,iconKey:"security"})}function uT(e){return n.jsx(r,{...e,iconKey:"security_update"})}function fT(e){return n.jsx(r,{...e,iconKey:"security_update_good"})}function AT(e){return n.jsx(r,{...e,iconKey:"security_update_warning"})}function _T(e){return n.jsx(r,{...e,iconKey:"segment"})}function yT(e){return n.jsx(r,{...e,iconKey:"select_all"})}function hT(e){return n.jsx(r,{...e,iconKey:"self_improvement"})}function gT(e){return n.jsx(r,{...e,iconKey:"sell"})}function IT(e){return n.jsx(r,{...e,iconKey:"send"})}function bT(e){return n.jsx(r,{...e,iconKey:"send_and_archive"})}function pT(e){return n.jsx(r,{...e,iconKey:"send_time_extension"})}function wT(e){return n.jsx(r,{...e,iconKey:"send_to_mobile"})}function kT(e){return n.jsx(r,{...e,iconKey:"sensor_door"})}function mT(e){return n.jsx(r,{...e,iconKey:"sensor_occupied"})}function vT(e){return n.jsx(r,{...e,iconKey:"sensor_window"})}function KT(e){return n.jsx(r,{...e,iconKey:"sensors"})}function CT(e){return n.jsx(r,{...e,iconKey:"sensors_off"})}function ST(e){return n.jsx(r,{...e,iconKey:"sentiment_dissatisfied"})}function BT(e){return n.jsx(r,{...e,iconKey:"sentiment_neutral"})}function ET(e){return n.jsx(r,{...e,iconKey:"sentiment_satisfied"})}function FT(e){return n.jsx(r,{...e,iconKey:"sentiment_satisfied_alt"})}function PT(e){return n.jsx(r,{...e,iconKey:"sentiment_very_dissatisfied"})}function DT(e){return n.jsx(r,{...e,iconKey:"sentiment_very_satisfied"})}function NT(e){return n.jsx(r,{...e,iconKey:"set_meal"})}function MT(e){return n.jsx(r,{...e,iconKey:"settings"})}function TT(e){return n.jsx(r,{...e,iconKey:"settings_accessibility"})}function OT(e){return n.jsx(r,{...e,iconKey:"settings_applications"})}function LT(e){return n.jsx(r,{...e,iconKey:"settings_backup_restore"})}function QT(e){return n.jsx(r,{...e,iconKey:"settings_bluetooth"})}function VT(e){return n.jsx(r,{...e,iconKey:"settings_brightness"})}function WT(e){return n.jsx(r,{...e,iconKey:"settings_cell"})}function GT(e){return n.jsx(r,{...e,iconKey:"settings_ethernet"})}function zT(e){return n.jsx(r,{...e,iconKey:"settings_input_antenna"})}function HT(e){return n.jsx(r,{...e,iconKey:"settings_input_component"})}function UT(e){return n.jsx(r,{...e,iconKey:"settings_input_composite"})}function YT(e){return n.jsx(r,{...e,iconKey:"settings_input_hdmi"})}function $T(e){return n.jsx(r,{...e,iconKey:"settings_input_svideo"})}function jT(e){return n.jsx(r,{...e,iconKey:"settings_overscan"})}function qT(e){return n.jsx(r,{...e,iconKey:"settings_phone"})}function JT(e){return n.jsx(r,{...e,iconKey:"settings_power"})}function ZT(e){return n.jsx(r,{...e,iconKey:"settings_remote"})}function XT(e){return n.jsx(r,{...e,iconKey:"settings_suggest"})}function xT(e){return n.jsx(r,{...e,iconKey:"settings_system_daydream"})}function RT(e){return n.jsx(r,{...e,iconKey:"settings_voice"})}function e2(e){return n.jsx(r,{...e,iconKey:"severe_cold"})}function n2(e){return n.jsx(r,{...e,iconKey:"shape_line"})}function o2(e){return n.jsx(r,{...e,iconKey:"share"})}function r2(e){return n.jsx(r,{...e,iconKey:"share_location"})}function t2(e){return n.jsx(r,{...e,iconKey:"shield"})}function c2(e){return n.jsx(r,{...e,iconKey:"shield_moon"})}function i2(e){return n.jsx(r,{...e,iconKey:"shop"})}function a2(e){return n.jsx(r,{...e,iconKey:"shop_2"})}function l2(e){return n.jsx(r,{...e,iconKey:"shop_two"})}function s2(e){return n.jsx(r,{...e,iconKey:"shopping_bag"})}function d2(e){return n.jsx(r,{...e,iconKey:"shopping_basket"})}function u2(e){return n.jsx(r,{...e,iconKey:"shopping_cart"})}function f2(e){return n.jsx(r,{...e,iconKey:"shopping_cart_checkout"})}function Lc(e){return n.jsx(r,{...e,iconKey:"short_text"})}function A2(e){return n.jsx(r,{...e,iconKey:"shortcut"})}function _2(e){return n.jsx(r,{...e,iconKey:"show_chart"})}function y2(e){return n.jsx(r,{...e,iconKey:"shower"})}function h2(e){return n.jsx(r,{...e,iconKey:"shuffle"})}function g2(e){return n.jsx(r,{...e,iconKey:"shuffle_on"})}function I2(e){return n.jsx(r,{...e,iconKey:"shutter_speed"})}function b2(e){return n.jsx(r,{...e,iconKey:"sick"})}function p2(e){return n.jsx(r,{...e,iconKey:"sign_language"})}function w2(e){return n.jsx(r,{...e,iconKey:"signal_cellular_0_bar"})}function k2(e){return n.jsx(r,{...e,iconKey:"signal_cellular_4_bar"})}function m2(e){return n.jsx(r,{...e,iconKey:"signal_cellular_alt"})}function v2(e){return n.jsx(r,{...e,iconKey:"signal_cellular_alt_1_bar"})}function K2(e){return n.jsx(r,{...e,iconKey:"signal_cellular_alt_2_bar"})}function C2(e){return n.jsx(r,{...e,iconKey:"signal_cellular_connected_no_internet_0_bar"})}function S2(e){return n.jsx(r,{...e,iconKey:"signal_cellular_connected_no_internet_4_bar"})}function B2(e){return n.jsx(r,{...e,iconKey:"signal_cellular_no_sim"})}function E2(e){return n.jsx(r,{...e,iconKey:"signal_cellular_nodata"})}function F2(e){return n.jsx(r,{...e,iconKey:"signal_cellular_null"})}function P2(e){return n.jsx(r,{...e,iconKey:"signal_cellular_off"})}function D2(e){return n.jsx(r,{...e,iconKey:"signal_wifi_0_bar"})}function N2(e){return n.jsx(r,{...e,iconKey:"signal_wifi_4_bar"})}function M2(e){return n.jsx(r,{...e,iconKey:"signal_wifi_4_bar_lock"})}function T2(e){return n.jsx(r,{...e,iconKey:"signal_wifi_bad"})}function O2(e){return n.jsx(r,{...e,iconKey:"signal_wifi_connected_no_internet_4"})}function L2(e){return n.jsx(r,{...e,iconKey:"signal_wifi_off"})}function Q2(e){return n.jsx(r,{...e,iconKey:"signal_wifi_statusbar_4_bar"})}function V2(e){return n.jsx(r,{...e,iconKey:"signal_wifi_statusbar_connected_no_internet_4"})}function W2(e){return n.jsx(r,{...e,iconKey:"signal_wifi_statusbar_null"})}function G2(e){return n.jsx(r,{...e,iconKey:"signpost"})}function z2(e){return n.jsx(r,{...e,iconKey:"sim_card"})}function H2(e){return n.jsx(r,{...e,iconKey:"sim_card_alert"})}function U2(e){return n.jsx(r,{...e,iconKey:"sim_card_download"})}function Y2(e){return n.jsx(r,{...e,iconKey:"single_bed"})}function $2(e){return n.jsx(r,{...e,iconKey:"sip"})}function j2(e){return n.jsx(r,{...e,iconKey:"skateboarding"})}function q2(e){return n.jsx(r,{...e,iconKey:"skip_next"})}function J2(e){return n.jsx(r,{...e,iconKey:"skip_previous"})}function Z2(e){return n.jsx(r,{...e,iconKey:"sledding"})}function X2(e){return n.jsx(r,{...e,iconKey:"slideshow"})}function x2(e){return n.jsx(r,{...e,iconKey:"slow_motion_video"})}function R2(e){return n.jsx(r,{...e,iconKey:"smart_button"})}function eO(e){return n.jsx(r,{...e,iconKey:"smart_display"})}function nO(e){return n.jsx(r,{...e,iconKey:"smart_screen"})}function oO(e){return n.jsx(r,{...e,iconKey:"smart_toy"})}function rO(e){return n.jsx(r,{...e,iconKey:"smartphone"})}function tO(e){return n.jsx(r,{...e,iconKey:"smoke_free"})}function cO(e){return n.jsx(r,{...e,iconKey:"smoking_rooms"})}function iO(e){return n.jsx(r,{...e,iconKey:"sms"})}function aO(e){return n.jsx(r,{...e,iconKey:"sms_failed"})}function lO(e){return n.jsx(r,{...e,iconKey:"snippet_folder"})}function sO(e){return n.jsx(r,{...e,iconKey:"snooze"})}function dO(e){return n.jsx(r,{...e,iconKey:"snowboarding"})}function uO(e){return n.jsx(r,{...e,iconKey:"snowmobile"})}function fO(e){return n.jsx(r,{...e,iconKey:"snowshoeing"})}function AO(e){return n.jsx(r,{...e,iconKey:"soap"})}function _O(e){return n.jsx(r,{...e,iconKey:"social_distance"})}function yO(e){return n.jsx(r,{...e,iconKey:"solar_power"})}function hO(e){return n.jsx(r,{...e,iconKey:"sort"})}function gO(e){return n.jsx(r,{...e,iconKey:"sort_by_alpha"})}function IO(e){return n.jsx(r,{...e,iconKey:"sos"})}function bO(e){return n.jsx(r,{...e,iconKey:"soup_kitchen"})}function pO(e){return n.jsx(r,{...e,iconKey:"source"})}function wO(e){return n.jsx(r,{...e,iconKey:"south"})}function kO(e){return n.jsx(r,{...e,iconKey:"south_america"})}function mO(e){return n.jsx(r,{...e,iconKey:"south_east"})}function vO(e){return n.jsx(r,{...e,iconKey:"south_west"})}function KO(e){return n.jsx(r,{...e,iconKey:"spa"})}function CO(e){return n.jsx(r,{...e,iconKey:"space_bar"})}function SO(e){return n.jsx(r,{...e,iconKey:"space_dashboard"})}function BO(e){return n.jsx(r,{...e,iconKey:"spatial_audio"})}function EO(e){return n.jsx(r,{...e,iconKey:"spatial_audio_off"})}function FO(e){return n.jsx(r,{...e,iconKey:"spatial_tracking"})}function PO(e){return n.jsx(r,{...e,iconKey:"speaker"})}function DO(e){return n.jsx(r,{...e,iconKey:"speaker_group"})}function NO(e){return n.jsx(r,{...e,iconKey:"speaker_notes"})}function MO(e){return n.jsx(r,{...e,iconKey:"speaker_notes_off"})}function TO(e){return n.jsx(r,{...e,iconKey:"speaker_phone"})}function OO(e){return n.jsx(r,{...e,iconKey:"speed"})}function LO(e){return n.jsx(r,{...e,iconKey:"spellcheck"})}function QO(e){return n.jsx(r,{...e,iconKey:"splitscreen"})}function VO(e){return n.jsx(r,{...e,iconKey:"spoke"})}function WO(e){return n.jsx(r,{...e,iconKey:"sports"})}function GO(e){return n.jsx(r,{...e,iconKey:"sports_bar"})}function zO(e){return n.jsx(r,{...e,iconKey:"sports_baseball"})}function HO(e){return n.jsx(r,{...e,iconKey:"sports_basketball"})}function UO(e){return n.jsx(r,{...e,iconKey:"sports_cricket"})}function YO(e){return n.jsx(r,{...e,iconKey:"sports_esports"})}function $O(e){return n.jsx(r,{...e,iconKey:"sports_football"})}function jO(e){return n.jsx(r,{...e,iconKey:"sports_golf"})}function qO(e){return n.jsx(r,{...e,iconKey:"sports_gymnastics"})}function JO(e){return n.jsx(r,{...e,iconKey:"sports_handball"})}function ZO(e){return n.jsx(r,{...e,iconKey:"sports_hockey"})}function XO(e){return n.jsx(r,{...e,iconKey:"sports_kabaddi"})}function xO(e){return n.jsx(r,{...e,iconKey:"sports_martial_arts"})}function RO(e){return n.jsx(r,{...e,iconKey:"sports_mma"})}function eL(e){return n.jsx(r,{...e,iconKey:"sports_motorsports"})}function nL(e){return n.jsx(r,{...e,iconKey:"sports_rugby"})}function oL(e){return n.jsx(r,{...e,iconKey:"sports_score"})}function rL(e){return n.jsx(r,{...e,iconKey:"sports_soccer"})}function tL(e){return n.jsx(r,{...e,iconKey:"sports_tennis"})}function cL(e){return n.jsx(r,{...e,iconKey:"sports_volleyball"})}function iL(e){return n.jsx(r,{...e,iconKey:"square"})}function aL(e){return n.jsx(r,{...e,iconKey:"square_foot"})}function lL(e){return n.jsx(r,{...e,iconKey:"ssid_chart"})}function sL(e){return n.jsx(r,{...e,iconKey:"stacked_bar_chart"})}function dL(e){return n.jsx(r,{...e,iconKey:"stacked_line_chart"})}function uL(e){return n.jsx(r,{...e,iconKey:"stadium"})}function fL(e){return n.jsx(r,{...e,iconKey:"stairs"})}function Cr(e){return n.jsx(r,{...e,iconKey:"star"})}function Sr(e){return n.jsx(r,{...e,iconKey:"star_border"})}function AL(e){return n.jsx(r,{...e,iconKey:"star_border_purple500"})}function _L(e){return n.jsx(r,{...e,iconKey:"star_half"})}function yL(e){return n.jsx(r,{...e,iconKey:"star_outline"})}function hL(e){return n.jsx(r,{...e,iconKey:"star_purple500"})}function gL(e){return n.jsx(r,{...e,iconKey:"star_rate"})}function IL(e){return n.jsx(r,{...e,iconKey:"stars"})}function bL(e){return n.jsx(r,{...e,iconKey:"start"})}function pL(e){return n.jsx(r,{...e,iconKey:"stay_current_landscape"})}function wL(e){return n.jsx(r,{...e,iconKey:"stay_current_portrait"})}function kL(e){return n.jsx(r,{...e,iconKey:"stay_primary_landscape"})}function mL(e){return n.jsx(r,{...e,iconKey:"stay_primary_portrait"})}function vL(e){return n.jsx(r,{...e,iconKey:"sticky_note_2"})}function KL(e){return n.jsx(r,{...e,iconKey:"stop"})}function CL(e){return n.jsx(r,{...e,iconKey:"stop_circle"})}function SL(e){return n.jsx(r,{...e,iconKey:"stop_screen_share"})}function BL(e){return n.jsx(r,{...e,iconKey:"storage"})}function EL(e){return n.jsx(r,{...e,iconKey:"store"})}function FL(e){return n.jsx(r,{...e,iconKey:"store_mall_directory"})}function PL(e){return n.jsx(r,{...e,iconKey:"storefront"})}function DL(e){return n.jsx(r,{...e,iconKey:"storm"})}function NL(e){return n.jsx(r,{...e,iconKey:"straight"})}function ML(e){return n.jsx(r,{...e,iconKey:"straighten"})}function TL(e){return n.jsx(r,{...e,iconKey:"stream"})}function OL(e){return n.jsx(r,{...e,iconKey:"streetview"})}function LL(e){return n.jsx(r,{...e,iconKey:"strikethrough_s"})}function QL(e){return n.jsx(r,{...e,iconKey:"stroller"})}function VL(e){return n.jsx(r,{...e,iconKey:"style"})}function WL(e){return n.jsx(r,{...e,iconKey:"subdirectory_arrow_left"})}function GL(e){return n.jsx(r,{...e,iconKey:"subdirectory_arrow_right"})}function Qc(e){return n.jsx(r,{...e,iconKey:"subject"})}function zL(e){return n.jsx(r,{...e,iconKey:"subscript"})}function HL(e){return n.jsx(r,{...e,iconKey:"subscriptions"})}function UL(e){return n.jsx(r,{...e,iconKey:"subtitles"})}function YL(e){return n.jsx(r,{...e,iconKey:"subtitles_off"})}function $L(e){return n.jsx(r,{...e,iconKey:"subway"})}function jL(e){return n.jsx(r,{...e,iconKey:"summarize"})}function qL(e){return n.jsx(r,{...e,iconKey:"superscript"})}function JL(e){return n.jsx(r,{...e,iconKey:"supervised_user_circle"})}function ZL(e){return n.jsx(r,{...e,iconKey:"supervisor_account"})}function XL(e){return n.jsx(r,{...e,iconKey:"support"})}function xL(e){return n.jsx(r,{...e,iconKey:"support_agent"})}function RL(e){return n.jsx(r,{...e,iconKey:"surfing"})}function e4(e){return n.jsx(r,{...e,iconKey:"surround_sound"})}function n4(e){return n.jsx(r,{...e,iconKey:"swap_calls"})}function o4(e){return n.jsx(r,{...e,iconKey:"swap_horiz"})}function r4(e){return n.jsx(r,{...e,iconKey:"swap_horizontal_circle"})}function t4(e){return n.jsx(r,{...e,iconKey:"swap_vert"})}function c4(e){return n.jsx(r,{...e,iconKey:"swap_vertical_circle"})}function i4(e){return n.jsx(r,{...e,iconKey:"swipe"})}function a4(e){return n.jsx(r,{...e,iconKey:"swipe_down"})}function l4(e){return n.jsx(r,{...e,iconKey:"swipe_down_alt"})}function s4(e){return n.jsx(r,{...e,iconKey:"swipe_left"})}function d4(e){return n.jsx(r,{...e,iconKey:"swipe_left_alt"})}function u4(e){return n.jsx(r,{...e,iconKey:"swipe_right"})}function f4(e){return n.jsx(r,{...e,iconKey:"swipe_right_alt"})}function A4(e){return n.jsx(r,{...e,iconKey:"swipe_up"})}function _4(e){return n.jsx(r,{...e,iconKey:"swipe_up_alt"})}function y4(e){return n.jsx(r,{...e,iconKey:"swipe_vertical"})}function h4(e){return n.jsx(r,{...e,iconKey:"switch_access_shortcut"})}function g4(e){return n.jsx(r,{...e,iconKey:"switch_access_shortcut_add"})}function I4(e){return n.jsx(r,{...e,iconKey:"switch_account"})}function b4(e){return n.jsx(r,{...e,iconKey:"switch_camera"})}function p4(e){return n.jsx(r,{...e,iconKey:"switch_left"})}function w4(e){return n.jsx(r,{...e,iconKey:"switch_right"})}function k4(e){return n.jsx(r,{...e,iconKey:"switch_video"})}function m4(e){return n.jsx(r,{...e,iconKey:"synagogue"})}function v4(e){return n.jsx(r,{...e,iconKey:"sync"})}function K4(e){return n.jsx(r,{...e,iconKey:"sync_alt"})}function C4(e){return n.jsx(r,{...e,iconKey:"sync_disabled"})}function S4(e){return n.jsx(r,{...e,iconKey:"sync_lock"})}function B4(e){return n.jsx(r,{...e,iconKey:"sync_problem"})}function E4(e){return n.jsx(r,{...e,iconKey:"system_security_update"})}function F4(e){return n.jsx(r,{...e,iconKey:"system_security_update_good"})}function P4(e){return n.jsx(r,{...e,iconKey:"system_security_update_warning"})}function D4(e){return n.jsx(r,{...e,iconKey:"system_update"})}function N4(e){return n.jsx(r,{...e,iconKey:"system_update_alt"})}function M4(e){return n.jsx(r,{...e,iconKey:"tab"})}function T4(e){return n.jsx(r,{...e,iconKey:"tab_unselected"})}function O4(e){return n.jsx(r,{...e,iconKey:"table_bar"})}function L4(e){return n.jsx(r,{...e,iconKey:"table_chart"})}function Q4(e){return n.jsx(r,{...e,iconKey:"table_restaurant"})}function V4(e){return n.jsx(r,{...e,iconKey:"table_rows"})}function W4(e){return n.jsx(r,{...e,iconKey:"table_view"})}function G4(e){return n.jsx(r,{...e,iconKey:"tablet"})}function z4(e){return n.jsx(r,{...e,iconKey:"tablet_android"})}function H4(e){return n.jsx(r,{...e,iconKey:"tablet_mac"})}function U4(e){return n.jsx(r,{...e,iconKey:"tag"})}function Y4(e){return n.jsx(r,{...e,iconKey:"tag_faces"})}function $4(e){return n.jsx(r,{...e,iconKey:"takeout_dining"})}function j4(e){return n.jsx(r,{...e,iconKey:"tap_and_play"})}function q4(e){return n.jsx(r,{...e,iconKey:"tapas"})}function J4(e){return n.jsx(r,{...e,iconKey:"task"})}function Z4(e){return n.jsx(r,{...e,iconKey:"task_alt"})}function X4(e){return n.jsx(r,{...e,iconKey:"taxi_alert"})}function x4(e){return n.jsx(r,{...e,iconKey:"temple_buddhist"})}function R4(e){return n.jsx(r,{...e,iconKey:"temple_hindu"})}function eQ(e){return n.jsx(r,{...e,iconKey:"terminal"})}function nQ(e){return n.jsx(r,{...e,iconKey:"terrain"})}function oQ(e){return n.jsx(r,{...e,iconKey:"text_decrease"})}function rQ(e){return n.jsx(r,{...e,iconKey:"text_fields"})}function tQ(e){return n.jsx(r,{...e,iconKey:"text_format"})}function cQ(e){return n.jsx(r,{...e,iconKey:"text_increase"})}function iQ(e){return n.jsx(r,{...e,iconKey:"text_rotate_up"})}function aQ(e){return n.jsx(r,{...e,iconKey:"text_rotate_vertical"})}function lQ(e){return n.jsx(r,{...e,iconKey:"text_rotation_angledown"})}function sQ(e){return n.jsx(r,{...e,iconKey:"text_rotation_angleup"})}function dQ(e){return n.jsx(r,{...e,iconKey:"text_rotation_down"})}function uQ(e){return n.jsx(r,{...e,iconKey:"text_rotation_none"})}function fQ(e){return n.jsx(r,{...e,iconKey:"text_snippet"})}function AQ(e){return n.jsx(r,{...e,iconKey:"textsms"})}function _Q(e){return n.jsx(r,{...e,iconKey:"texture"})}function yQ(e){return n.jsx(r,{...e,iconKey:"theater_comedy"})}function hQ(e){return n.jsx(r,{...e,iconKey:"theaters"})}function gQ(e){return n.jsx(r,{...e,iconKey:"thermostat"})}function IQ(e){return n.jsx(r,{...e,iconKey:"thermostat_auto"})}function bQ(e){return n.jsx(r,{...e,iconKey:"thumb_down"})}function pQ(e){return n.jsx(r,{...e,iconKey:"thumb_down_alt"})}function wQ(e){return n.jsx(r,{...e,iconKey:"thumb_down_off_alt"})}function kQ(e){return n.jsx(r,{...e,iconKey:"thumb_up"})}function mQ(e){return n.jsx(r,{...e,iconKey:"thumb_up_alt"})}function vQ(e){return n.jsx(r,{...e,iconKey:"thumb_up_off_alt"})}function KQ(e){return n.jsx(r,{...e,iconKey:"thumbs_up_down"})}function CQ(e){return n.jsx(r,{...e,iconKey:"thunderstorm"})}function SQ(e){return n.jsx(r,{...e,iconKey:"time_to_leave"})}function BQ(e){return n.jsx(r,{...e,iconKey:"timelapse"})}function EQ(e){return n.jsx(r,{...e,iconKey:"timeline"})}function FQ(e){return n.jsx(r,{...e,iconKey:"timer"})}function PQ(e){return n.jsx(r,{...e,iconKey:"timer_10"})}function DQ(e){return n.jsx(r,{...e,iconKey:"timer_10_select"})}function NQ(e){return n.jsx(r,{...e,iconKey:"timer_3"})}function MQ(e){return n.jsx(r,{...e,iconKey:"timer_3_select"})}function TQ(e){return n.jsx(r,{...e,iconKey:"timer_off"})}function OQ(e){return n.jsx(r,{...e,iconKey:"tips_and_updates"})}function LQ(e){return n.jsx(r,{...e,iconKey:"tire_repair"})}function QQ(e){return n.jsx(r,{...e,iconKey:"title"})}function VQ(e){return n.jsx(r,{...e,iconKey:"toc"})}function WQ(e){return n.jsx(r,{...e,iconKey:"today"})}function GQ(e){return n.jsx(r,{...e,iconKey:"toggle_off"})}function zQ(e){return n.jsx(r,{...e,iconKey:"toggle_on"})}function HQ(e){return n.jsx(r,{...e,iconKey:"token"})}function UQ(e){return n.jsx(r,{...e,iconKey:"toll"})}function YQ(e){return n.jsx(r,{...e,iconKey:"tonality"})}function $Q(e){return n.jsx(r,{...e,iconKey:"topic"})}function jQ(e){return n.jsx(r,{...e,iconKey:"tornado"})}function qQ(e){return n.jsx(r,{...e,iconKey:"touch_app"})}function JQ(e){return n.jsx(r,{...e,iconKey:"tour"})}function ZQ(e){return n.jsx(r,{...e,iconKey:"toys"})}function XQ(e){return n.jsx(r,{...e,iconKey:"track_changes"})}function xQ(e){return n.jsx(r,{...e,iconKey:"traffic"})}function RQ(e){return n.jsx(r,{...e,iconKey:"train"})}function eV(e){return n.jsx(r,{...e,iconKey:"tram"})}function nV(e){return n.jsx(r,{...e,iconKey:"transcribe"})}function oV(e){return n.jsx(r,{...e,iconKey:"transfer_within_a_station"})}function rV(e){return n.jsx(r,{...e,iconKey:"transform"})}function tV(e){return n.jsx(r,{...e,iconKey:"transgender"})}function cV(e){return n.jsx(r,{...e,iconKey:"transit_enterexit"})}function iV(e){return n.jsx(r,{...e,iconKey:"translate"})}function aV(e){return n.jsx(r,{...e,iconKey:"travel_explore"})}function lV(e){return n.jsx(r,{...e,iconKey:"trending_down"})}function sV(e){return n.jsx(r,{...e,iconKey:"trending_flat"})}function dV(e){return n.jsx(r,{...e,iconKey:"trending_up"})}function uV(e){return n.jsx(r,{...e,iconKey:"trip_origin"})}function fV(e){return n.jsx(r,{...e,iconKey:"troubleshoot"})}function AV(e){return n.jsx(r,{...e,iconKey:"try"})}function _V(e){return n.jsx(r,{...e,iconKey:"tsunami"})}function yV(e){return n.jsx(r,{...e,iconKey:"tty"})}function hV(e){return n.jsx(r,{...e,iconKey:"tune"})}function gV(e){return n.jsx(r,{...e,iconKey:"tungsten"})}function IV(e){return n.jsx(r,{...e,iconKey:"turn_left"})}function bV(e){return n.jsx(r,{...e,iconKey:"turn_right"})}function pV(e){return n.jsx(r,{...e,iconKey:"turn_sharp_left"})}function wV(e){return n.jsx(r,{...e,iconKey:"turn_sharp_right"})}function kV(e){return n.jsx(r,{...e,iconKey:"turn_slight_left"})}function mV(e){return n.jsx(r,{...e,iconKey:"turn_slight_right"})}function vV(e){return n.jsx(r,{...e,iconKey:"turned_in"})}function KV(e){return n.jsx(r,{...e,iconKey:"turned_in_not"})}function CV(e){return n.jsx(r,{...e,iconKey:"tv"})}function SV(e){return n.jsx(r,{...e,iconKey:"tv_off"})}function BV(e){return n.jsx(r,{...e,iconKey:"two_wheeler"})}function EV(e){return n.jsx(r,{...e,iconKey:"type_specimen"})}function FV(e){return n.jsx(r,{...e,iconKey:"u_turn_left"})}function PV(e){return n.jsx(r,{...e,iconKey:"u_turn_right"})}function DV(e){return n.jsx(r,{...e,iconKey:"umbrella"})}function NV(e){return n.jsx(r,{...e,iconKey:"unarchive"})}function MV(e){return n.jsx(r,{...e,iconKey:"undo"})}function TV(e){return n.jsx(r,{...e,iconKey:"unfold_less"})}function OV(e){return n.jsx(r,{...e,iconKey:"unfold_less_double"})}function LV(e){return n.jsx(r,{...e,iconKey:"unfold_more"})}function QV(e){return n.jsx(r,{...e,iconKey:"unfold_more_double"})}function VV(e){return n.jsx(r,{...e,iconKey:"unpublished"})}function WV(e){return n.jsx(r,{...e,iconKey:"unsubscribe"})}function GV(e){return n.jsx(r,{...e,iconKey:"upcoming"})}function zV(e){return n.jsx(r,{...e,iconKey:"update"})}function HV(e){return n.jsx(r,{...e,iconKey:"update_disabled"})}function UV(e){return n.jsx(r,{...e,iconKey:"upgrade"})}function YV(e){return n.jsx(r,{...e,iconKey:"upload"})}function Vc(e){return n.jsx(r,{...e,iconKey:"upload_file"})}function $V(e){return n.jsx(r,{...e,iconKey:"usb"})}function jV(e){return n.jsx(r,{...e,iconKey:"usb_off"})}function qV(e){return n.jsx(r,{...e,iconKey:"vaccines"})}function JV(e){return n.jsx(r,{...e,iconKey:"vape_free"})}function ZV(e){return n.jsx(r,{...e,iconKey:"vaping_rooms"})}function XV(e){return n.jsx(r,{...e,iconKey:"verified"})}function xV(e){return n.jsx(r,{...e,iconKey:"verified_user"})}function RV(e){return n.jsx(r,{...e,iconKey:"vertical_align_bottom"})}function e5(e){return n.jsx(r,{...e,iconKey:"vertical_align_center"})}function n5(e){return n.jsx(r,{...e,iconKey:"vertical_align_top"})}function o5(e){return n.jsx(r,{...e,iconKey:"vertical_distribute"})}function r5(e){return n.jsx(r,{...e,iconKey:"vertical_shades"})}function t5(e){return n.jsx(r,{...e,iconKey:"vertical_shades_closed"})}function c5(e){return n.jsx(r,{...e,iconKey:"vertical_split"})}function i5(e){return n.jsx(r,{...e,iconKey:"vibration"})}function a5(e){return n.jsx(r,{...e,iconKey:"video_call"})}function l5(e){return n.jsx(r,{...e,iconKey:"video_camera_back"})}function s5(e){return n.jsx(r,{...e,iconKey:"video_camera_front"})}function d5(e){return n.jsx(r,{...e,iconKey:"video_chat"})}function u5(e){return n.jsx(r,{...e,iconKey:"video_file"})}function f5(e){return n.jsx(r,{...e,iconKey:"video_label"})}function A5(e){return n.jsx(r,{...e,iconKey:"video_library"})}function _5(e){return n.jsx(r,{...e,iconKey:"video_settings"})}function y5(e){return n.jsx(r,{...e,iconKey:"video_stable"})}function h5(e){return n.jsx(r,{...e,iconKey:"videocam"})}function g5(e){return n.jsx(r,{...e,iconKey:"videocam_off"})}function I5(e){return n.jsx(r,{...e,iconKey:"videogame_asset"})}function b5(e){return n.jsx(r,{...e,iconKey:"videogame_asset_off"})}function p5(e){return n.jsx(r,{...e,iconKey:"view_agenda"})}function w5(e){return n.jsx(r,{...e,iconKey:"view_array"})}function k5(e){return n.jsx(r,{...e,iconKey:"view_carousel"})}function m5(e){return n.jsx(r,{...e,iconKey:"view_column"})}function v5(e){return n.jsx(r,{...e,iconKey:"view_comfy"})}function K5(e){return n.jsx(r,{...e,iconKey:"view_comfy_alt"})}function C5(e){return n.jsx(r,{...e,iconKey:"view_compact"})}function S5(e){return n.jsx(r,{...e,iconKey:"view_compact_alt"})}function B5(e){return n.jsx(r,{...e,iconKey:"view_cozy"})}function E5(e){return n.jsx(r,{...e,iconKey:"view_day"})}function F5(e){return n.jsx(r,{...e,iconKey:"view_headline"})}function P5(e){return n.jsx(r,{...e,iconKey:"view_in_ar"})}function D5(e){return n.jsx(r,{...e,iconKey:"view_kanban"})}function N5(e){return n.jsx(r,{...e,iconKey:"view_list"})}function M5(e){return n.jsx(r,{...e,iconKey:"view_module"})}function T5(e){return n.jsx(r,{...e,iconKey:"view_quilt"})}function O5(e){return n.jsx(r,{...e,iconKey:"view_sidebar"})}function Wc(e){return n.jsx(r,{...e,iconKey:"view_stream"})}function L5(e){return n.jsx(r,{...e,iconKey:"view_timeline"})}function Q5(e){return n.jsx(r,{...e,iconKey:"view_week"})}function V5(e){return n.jsx(r,{...e,iconKey:"vignette"})}function W5(e){return n.jsx(r,{...e,iconKey:"villa"})}function G5(e){return n.jsx(r,{...e,iconKey:"visibility"})}function z5(e){return n.jsx(r,{...e,iconKey:"visibility_off"})}function H5(e){return n.jsx(r,{...e,iconKey:"voice_chat"})}function U5(e){return n.jsx(r,{...e,iconKey:"voice_over_off"})}function Y5(e){return n.jsx(r,{...e,iconKey:"voicemail"})}function $5(e){return n.jsx(r,{...e,iconKey:"volcano"})}function j5(e){return n.jsx(r,{...e,iconKey:"volume_down"})}function q5(e){return n.jsx(r,{...e,iconKey:"volume_mute"})}function J5(e){return n.jsx(r,{...e,iconKey:"volume_off"})}function Z5(e){return n.jsx(r,{...e,iconKey:"volume_up"})}function X5(e){return n.jsx(r,{...e,iconKey:"volunteer_activism"})}function x5(e){return n.jsx(r,{...e,iconKey:"vpn_key"})}function R5(e){return n.jsx(r,{...e,iconKey:"vpn_key_off"})}function eW(e){return n.jsx(r,{...e,iconKey:"vpn_lock"})}function nW(e){return n.jsx(r,{...e,iconKey:"vrpano"})}function oW(e){return n.jsx(r,{...e,iconKey:"wallet"})}function rW(e){return n.jsx(r,{...e,iconKey:"wallpaper"})}function tW(e){return n.jsx(r,{...e,iconKey:"warehouse"})}function cW(e){return n.jsx(r,{...e,iconKey:"warning"})}function iW(e){return n.jsx(r,{...e,iconKey:"warning_amber"})}function aW(e){return n.jsx(r,{...e,iconKey:"wash"})}function lW(e){return n.jsx(r,{...e,iconKey:"watch"})}function sW(e){return n.jsx(r,{...e,iconKey:"watch_later"})}function dW(e){return n.jsx(r,{...e,iconKey:"watch_off"})}function uW(e){return n.jsx(r,{...e,iconKey:"water"})}function fW(e){return n.jsx(r,{...e,iconKey:"water_damage"})}function AW(e){return n.jsx(r,{...e,iconKey:"water_drop"})}function _W(e){return n.jsx(r,{...e,iconKey:"waterfall_chart"})}function yW(e){return n.jsx(r,{...e,iconKey:"waves"})}function hW(e){return n.jsx(r,{...e,iconKey:"waving_hand"})}function gW(e){return n.jsx(r,{...e,iconKey:"wb_auto"})}function IW(e){return n.jsx(r,{...e,iconKey:"wb_cloudy"})}function bW(e){return n.jsx(r,{...e,iconKey:"wb_incandescent"})}function pW(e){return n.jsx(r,{...e,iconKey:"wb_iridescent"})}function wW(e){return n.jsx(r,{...e,iconKey:"wb_shade"})}function kW(e){return n.jsx(r,{...e,iconKey:"wb_sunny"})}function mW(e){return n.jsx(r,{...e,iconKey:"wb_twilight"})}function vW(e){return n.jsx(r,{...e,iconKey:"wc"})}function KW(e){return n.jsx(r,{...e,iconKey:"web"})}function CW(e){return n.jsx(r,{...e,iconKey:"web_asset"})}function SW(e){return n.jsx(r,{...e,iconKey:"web_asset_off"})}function BW(e){return n.jsx(r,{...e,iconKey:"web_stories"})}function EW(e){return n.jsx(r,{...e,iconKey:"webhook"})}function FW(e){return n.jsx(r,{...e,iconKey:"weekend"})}function PW(e){return n.jsx(r,{...e,iconKey:"west"})}function DW(e){return n.jsx(r,{...e,iconKey:"whatshot"})}function NW(e){return n.jsx(r,{...e,iconKey:"wheelchair_pickup"})}function MW(e){return n.jsx(r,{...e,iconKey:"where_to_vote"})}function TW(e){return n.jsx(r,{...e,iconKey:"widgets"})}function OW(e){return n.jsx(r,{...e,iconKey:"width_full"})}function LW(e){return n.jsx(r,{...e,iconKey:"width_normal"})}function QW(e){return n.jsx(r,{...e,iconKey:"width_wide"})}function VW(e){return n.jsx(r,{...e,iconKey:"wifi"})}function WW(e){return n.jsx(r,{...e,iconKey:"wifi_1_bar"})}function GW(e){return n.jsx(r,{...e,iconKey:"wifi_2_bar"})}function zW(e){return n.jsx(r,{...e,iconKey:"wifi_calling"})}function HW(e){return n.jsx(r,{...e,iconKey:"wifi_calling_3"})}function UW(e){return n.jsx(r,{...e,iconKey:"wifi_channel"})}function YW(e){return n.jsx(r,{...e,iconKey:"wifi_find"})}function $W(e){return n.jsx(r,{...e,iconKey:"wifi_lock"})}function jW(e){return n.jsx(r,{...e,iconKey:"wifi_off"})}function qW(e){return n.jsx(r,{...e,iconKey:"wifi_password"})}function JW(e){return n.jsx(r,{...e,iconKey:"wifi_protected_setup"})}function ZW(e){return n.jsx(r,{...e,iconKey:"wifi_tethering"})}function XW(e){return n.jsx(r,{...e,iconKey:"wifi_tethering_error"})}function xW(e){return n.jsx(r,{...e,iconKey:"wifi_tethering_off"})}function RW(e){return n.jsx(r,{...e,iconKey:"wind_power"})}function eG(e){return n.jsx(r,{...e,iconKey:"window"})}function nG(e){return n.jsx(r,{...e,iconKey:"wine_bar"})}function oG(e){return n.jsx(r,{...e,iconKey:"woman"})}function rG(e){return n.jsx(r,{...e,iconKey:"woman_2"})}function tG(e){return n.jsx(r,{...e,iconKey:"work"})}function cG(e){return n.jsx(r,{...e,iconKey:"work_history"})}function iG(e){return n.jsx(r,{...e,iconKey:"work_off"})}function aG(e){return n.jsx(r,{...e,iconKey:"work_outline"})}function lG(e){return n.jsx(r,{...e,iconKey:"workspace_premium"})}function sG(e){return n.jsx(r,{...e,iconKey:"workspaces"})}function dG(e){return n.jsx(r,{...e,iconKey:"wrap_text"})}function uG(e){return n.jsx(r,{...e,iconKey:"wrong_location"})}function fG(e){return n.jsx(r,{...e,iconKey:"wysiwyg"})}function AG(e){return n.jsx(r,{...e,iconKey:"yard"})}function _G(e){return n.jsx(r,{...e,iconKey:"youtube_searched_for"})}function yG(e){return n.jsx(r,{...e,iconKey:"zoom_in"})}function hG(e){return n.jsx(r,{...e,iconKey:"zoom_in_map"})}function gG(e){return n.jsx(r,{...e,iconKey:"zoom_out"})}function IG(e){return n.jsx(r,{...e,iconKey:"zoom_out_map"})}function pe({title:e,error:t,tooltip:c}){const i=t instanceof Error?t.message:t,l=n.jsxs("div",{className:"flex items-center m-2",children:[n.jsx(wr,{size:"small",color:"error"}),n.jsxs("div",{className:"pl-2",children:[e&&n.jsx(j,{variant:"body2",className:"font-medium",children:e}),n.jsx(j,{variant:"body2",children:i})]})]});return c?n.jsx(tc,{title:c,children:l}):l}class Je{id;path;constructor(t,c){this.id=t,this.path=c}get pathWithId(){return`${this.path}/${this.id}`}}class Br{latitude;longitude;constructor(t,c){this.latitude=t,this.longitude=c}}function Fn(){return n.jsx("div",{className:"rounded-full bg-gray-200 bg-opacity-30 dark:bg-opacity-20 w-5 h-2 inline-block"})}const bG=40,pG=100,wG=200;function Pn(e){if(e==="tiny")return bG;if(e==="small")return pG;if(e==="medium")return wG;throw Error("Thumbnail size not mapped")}function ln(e){switch(e){case"xs":case"s":return"tiny";case"m":return"small";case"l":case"xl":return"medium";default:throw Error("Missing mapping value in getPreviewSizeFrom: "+e)}}function Gc({size:e,url:t}){const[c,i]=f.useState(!1),l=f.useMemo(()=>Pn(e),[e]);if(e==="tiny")return n.jsx("img",{src:t,className:"rounded-md",style:{position:"relative",objectFit:"cover",width:l,height:l,maxHeight:"100%"}},"tiny_image_preview_"+t);const a={maxWidth:"100%",maxHeight:"100%"};return n.jsxs("div",{className:"relative flex items-center justify-center max-w-full max-h-full",style:{width:l,height:l},onMouseEnter:()=>i(!0),onMouseMove:()=>i(!0),onMouseLeave:()=>i(!1),children:[n.jsx("img",{src:t,className:"rounded-md",style:a}),c&&n.jsxs(n.Fragment,{children:[navigator&&n.jsx(ye,{title:"Copy url to clipboard",children:n.jsx("div",{className:"rounded-full absolute bottom-[-4px] right-8",children:n.jsx(ee,{variant:"filled",size:"small",onClick:s=>(s.stopPropagation(),s.preventDefault(),navigator.clipboard.writeText(t)),children:n.jsx(Rn,{className:"text-gray-500",size:"small"})})})}),n.jsx(ye,{title:"Open image in new tab",children:n.jsx(ee,{variant:"filled",component:"a",style:{position:"absolute",bottom:-4,right:-4},href:t,rel:"noopener noreferrer",target:"_blank",size:"small",onClick:s=>s.stopPropagation(),children:n.jsx(no,{className:"text-gray-500",size:"small"})})})]})]},"image_preview_"+t)}function ro({url:e,previewType:t,size:c,hint:i}){return t?t==="image"?n.jsx(Gc,{url:e,size:c}):t==="audio"?n.jsxs("audio",{controls:!0,src:e,children:["Your browser does not support the",n.jsx("code",{children:"audio"})," element."]}):t==="video"?n.jsx("video",{className:`max-w-${c==="small"?"sm":"md"}`,controls:!0,children:n.jsx("source",{src:e})}):n.jsxs("a",{href:e,rel:"noopener noreferrer",target:"_blank",onClick:l=>l.stopPropagation(),className:"flex flex-col items-center justify-center",style:{width:Pn(c),height:Pn(c)},children:[n.jsx(gc,{className:"flex-grow"}),i&&n.jsx(ye,{title:i,children:n.jsx(j,{className:"max-w-full truncate rtl text-left",variant:"caption",children:i})})]}):!e||!e.trim()?n.jsx(Fn,{}):n.jsxs("a",{className:"flex gap-4 break-words items-center font-medium text-primary visited:text-primary dark:visited:text-primary dark:text-primary",href:e,rel:"noopener noreferrer",onMouseDown:l=>{l.preventDefault()},target:"_blank",children:[n.jsx(no,{size:"small"}),e]})}function Ve({width:e,height:t,className:c}){return n.jsx("span",{className:E("block","bg-gray-200 dark:bg-gray-800 rounded","animate-pulse",e?`w-[${e}px]`:"w-full",t?`h-[${t}px]`:"h-3","max-w-full max-h-full",c)})}function Dn({property:e,size:t}){e||console.error("No property assigned for skeleton component",e,t);let c;if(e.dataType==="string"){const i=e;i.url?c=SG(i,t):i.storage?c=Fr(t):c=nn()}else if(e.dataType==="array"){const i=e;i.of&&(Array.isArray(i.of)?c=n.jsxs(n.Fragment,{children:[i.of.map((l,a)=>Er(l,a))," "]}):i.of.dataType==="map"&&i.of.properties?c=mG(i.of.properties,t,i.of.previewProperties):i.of.dataType==="string"?i.of.enumValues?c=KG():i.of.storage?c=Er(i.of):c=vG():c=Er(i.of))}else e.dataType==="map"?c=kG(e,t):e.dataType==="date"?c=nn():e.dataType==="reference"?c=CG():(e.dataType,c=nn());return c||null}function kG(e,t){if(!e.properties)return n.jsx(n.Fragment,{});let c;return t==="medium"?c=Object.keys(e.properties):(c=e.previewProperties||Object.keys(e.properties),t==="small"?c=c.slice(0,3):t==="tiny"&&(c=c.slice(0,1))),t!=="medium"?n.jsx("div",{className:"w-full flex flex-col space-y-4",children:c.map((i,l)=>n.jsx("div",{children:e.properties&&e.properties[i]&&n.jsx(Dn,{property:e.properties[i],size:"small"})},`map_${i}`))}):n.jsx("table",{className:"table-auto",children:n.jsx("tbody",{children:c&&c.map((i,l)=>n.jsxs("tr",{className:"border-b last:border-b-0",children:[n.jsx("th",{className:"align-top",style:{width:"30%"},children:n.jsx("p",{className:"text-xs text-secondary",children:e.properties[i].name})},`table-cell-title--${i}`),n.jsx("th",{style:{width:"70%"},children:e.properties&&e.properties[i]&&n.jsx(Dn,{property:e.properties[i],size:"small"})},`table-cell-${i}`)]},`map_preview_table__${l}`))})})}function mG(e,t,c){let i=c;return(!i||!i.length)&&(i=Object.keys(e),t&&(i=i.slice(0,3))),n.jsx("table",{className:"table-auto",children:n.jsx("tbody",{children:[0,1,2].map((l,a)=>n.jsx("tr",{children:i&&i.map(s=>n.jsx("th",{children:n.jsx(Dn,{property:e[s],size:"small"})},`table-cell-${s}`))},`table_${l}_${a}`))})})}function vG(){return n.jsx("div",{className:"flex flex-col gap-2",children:[0,1].map((e,t)=>nn(t))})}function KG(){return n.jsx("div",{className:"flex flex-col gap-2",children:[0,1].map((e,t)=>n.jsx(n.Fragment,{children:nn(t)}))})}function Er(e,t=0){return n.jsx("div",{className:"flex flex-col gap-2",children:[0,1].map((c,i)=>n.jsx(n.Fragment,{children:n.jsx(Dn,{property:e,size:"small"},`i_${i}`)}))},"array_index_"+t)}function Fr(e){const t=e==="tiny"?40:e==="small"?100:200;return n.jsx(Ve,{width:t,height:t})}function CG(){return n.jsx(Ve,{width:200,height:100})}function SG(e,t="medium"){return typeof e.url=="boolean"?n.jsxs("div",{style:{display:"flex"},children:[Pr(),nn()]}):BG(t)}function BG(e){return n.jsx("div",{className:`w-${Pn(e)} h-${Pn(e)}`,children:Pr()})}function nn(e,t=120){return n.jsx(Ve,{width:t},`skeleton_${e}`)}function EG(e){return n.jsx(Ve,{height:20})}function Pr(){return n.jsx(Ve,{width:24,height:24})}const zc=f.memo(Uc,FG);function FG(e,t){return e.size===t.size&&e.storagePathOrDownloadUrl===t.storagePathOrDownloadUrl&&e.storeUrl===t.storeUrl}const Hc={};function Uc({storeUrl:e,storagePathOrDownloadUrl:t,size:c}){const[i,l]=f.useState(void 0),a=Sn(),[s,d]=f.useState(Hc[t]);if(f.useEffect(()=>{if(!t)return;let _=!1;return a.getDownloadURL(t).then(function(g){_||(d(g),Hc[t]=g)}).catch(l),()=>{_=!0}},[t]),!t)return null;const u=s?.metadata?PG(s?.metadata.contentType):void 0,A=u?.startsWith("image")?"image":u?.startsWith("video")?"video":u?.startsWith("audio")?"audio":"file";return s?.fileNotFound?n.jsx(pe,{error:"File not found"}):s?.url?n.jsx(ro,{previewType:A,url:s.url,size:c,hint:t}):Fr(c)}function PG(e){return e.startsWith("image")?"image/*":e.startsWith("video")?"video/*":e.startsWith("audio")?"audio/*":e.startsWith("application")?"application/*":e.startsWith("text")?"text/*":e.startsWith("font")?"font/*":e}function Yc(e){let t=0,c,i;for(c=0;c<e.length;c++)i=e.charCodeAt(c),t=(t<<5)-t+i,t|=0;return Math.abs(t)}const mo={blueLighter:{color:"#cfdfff",text:"#102046"},cyanLighter:{color:"#d0f0fd",text:"#04283f"},tealLighter:{color:"#c2f5e9",text:"#012524"},greenLighter:{color:"#d1f7c4",text:"#0b1d05"},yellowLighter:{color:"#ffeab6",text:"#3b2501"},orangeLighter:{color:"#fee2d5",text:"#6b2613"},redLighter:{color:"#ffdce5",text:"#4c0c1c"},pinkLighter:{color:"#ffdaf6",text:"#400832"},purpleLighter:{color:"#ede2fe",text:"#280b42"},grayLighter:{color:"#eee",text:"#040404"},blueLight:{color:"#9cc7ff",text:"#102046"},cyanLight:{color:"#77d1f3",text:"#04283f"},tealLight:{color:"#72ddc3",text:"#012524"},greenLight:{color:"#93e088",text:"#0b1d05"},yellowLight:{color:"#ffd66e",text:"#3b2501"},orangeLight:{color:"#ffa981",text:"#6b2613"},redLight:{color:"#ff9eb7",text:"#4c0c1c"},pinkLight:{color:"#f99de2",text:"#400832"},purpleLight:{color:"#cdb0ff",text:"#280b42"},grayLight:{color:"#ccc",text:"#040404"},blueDark:{color:"#2d7ff9",text:"#fff"},cyanDark:{color:"#18bfff",text:"#fff"},tealDark:{color:"#20d9d2",text:"#fff"},greenDark:{color:"#20c933",text:"#fff"},yellowDark:{color:"#fcb400",text:"#fff"},orangeDark:{color:"#ff6f2c",text:"#fff"},redDark:{color:"#f82b60",text:"#fff"},pinkDark:{color:"#ff08c2",text:"#fff"},purpleDark:{color:"#8b46ff",text:"#fff"},grayDark:{color:"#666",text:"#fff"},blueDarker:{color:"#2750ae",text:"#cfdfff"},cyanDarker:{color:"#0b76b7",text:"#d0f0fd"},tealDarker:{color:"#06a09b",text:"#daf3e9"},greenDarker:{color:"#338a17",text:"#d1f7c4"},yellowDarker:{color:"#b87503",text:"#ffeab6"},orangeDarker:{color:"#d74d26",text:"#fee2d5"},redDarker:{color:"#ba1e45",text:"#ffdce5"},pinkDarker:{color:"#b2158b",text:"#ffdaf6"},purpleDarker:{color:"#6b1cb0",text:"#ede2fe"},grayDarker:{color:"#444",text:"#eee"}};function $c(e){const t=Yc(e),c=Object.keys(mo),i=t%c.length;return mo[c[i]]}function DG(e){return mo[e]}function sn(e){return Array.isArray(e)?e:Object.entries(e).map(([t,c])=>typeof c=="string"?{id:t,label:c}:{...c,id:t})}function vo(e,t){if(t)return e.find(c=>String(c.id)===String(t))}function jc(e,t){const c=vo(e,t);if(!c?.color)return $c(t.toString());if(typeof c=="object"&&"color"in c){if(typeof c.color=="string")return mo[c.color];if(typeof c.color=="object")return c.color}}function NG(e){return typeof e=="object"&&e.disabled}function qc(e){if(e!==void 0)return typeof e=="object"?e.label:e}const MG={smaller:"px-2 py-0.5 text-sm",small:"px-3 py-1 text-sm",medium:"px-4 py-1.5 text-sm"};function Ko({children:e,colorScheme:t,error:c,outlined:i,onClick:l,icon:a,size:s="medium",className:d}){const u=typeof t=="string"?DG(t):t;return n.jsxs("div",{className:E("rounded-lg w-fit h-fit font-regular inline-flex items-center gap-1","truncate",l?"cursor-pointer hover:bg-gray-300 hover:dark:bg-gray-700":"",MG[s],c||!u?"bg-gray-100 dark:bg-gray-800 text-gray-800 dark:text-gray-200":"",c?"text-red-500 dark:text-red-400":"",d),onClick:l,style:{backgroundColor:c||!u?void 0:u.color,color:c||!u?void 0:u.text},children:[e,a]})}function Ee({enumValues:e,enumKey:t,size:c,className:i,children:l}){if(!e)return null;const a=sn(e),s=t!==void 0?vo(a,t):void 0,d=qc(s),u=jc(a,t);return n.jsxs(Ko,{className:i,colorScheme:u,error:!d,outlined:!1,size:c,children:[l,!l&&(d!==void 0?d:String(t))]})}function Dr({propertyKey:e,value:t,property:c,size:i}){if(c.enumValues){const l=t,a=st(c);return n.jsx(Ee,{enumKey:l,enumValues:a.enumValues,size:i!=="medium"?"small":"medium"})}else if(c.previewAsTag){const l=$c(e??"");return n.jsx(se,{children:n.jsx(Ko,{colorScheme:l,size:i!=="medium"?"small":"medium",children:t})})}else{if(c.url)return n.jsx(ro,{size:i,url:t,previewType:typeof c.url=="string"?c.url:void 0});{if(!t)return n.jsx(n.Fragment,{});const l=t.split(`
66
+ }`;function Yc({size:e,url:t}){const[c,i]=f.useState(!1),a=f.useMemo(()=>Pn(e),[e]);if(e==="tiny")return n.jsx("img",{src:t,className:"rounded-md",style:{position:"relative",objectFit:"cover",width:a,height:a,maxHeight:"100%"}},"tiny_image_preview_"+t);const l={maxWidth:"100%",maxHeight:"100%"};return n.jsxs("div",{className:"relative flex items-center justify-center max-w-full max-h-full",style:{width:a,height:a},onMouseEnter:()=>i(!0),onMouseMove:()=>i(!0),onMouseLeave:()=>i(!1),children:[n.jsx("img",{src:t,className:"rounded-md",style:l}),c&&n.jsxs(n.Fragment,{children:[navigator&&n.jsx(_e,{title:"Copy url to clipboard",children:n.jsx("div",{className:"rounded-full absolute bottom-[-4px] right-8",children:n.jsx(R,{variant:"filled",size:"small",onClick:s=>(s.stopPropagation(),s.preventDefault(),navigator.clipboard.writeText(t)),children:n.jsx(no,{className:"text-gray-500",size:"small"})})})}),n.jsx(_e,{title:"Open image in new tab",children:n.jsx(R,{variant:"filled",component:"a",style:{position:"absolute",bottom:-4,right:-4},href:t,rel:"noopener noreferrer",target:"_blank",size:"small",onClick:s=>s.stopPropagation(),children:n.jsx(ro,{className:"text-gray-500",size:"small"})})})]})]},"image_preview_"+t)}function ao({url:e,previewType:t,size:c,hint:i}){return t?t==="image"?n.jsx(Yc,{url:e,size:c}):t==="audio"?n.jsxs("audio",{controls:!0,src:e,children:["Your browser does not support the",n.jsx("code",{children:"audio"})," element."]}):t==="video"?n.jsx("video",{className:`max-w-${c==="small"?"sm":"md"}`,controls:!0,children:n.jsx("source",{src:e})}):n.jsxs("a",{href:e,rel:"noopener noreferrer",target:"_blank",onClick:a=>a.stopPropagation(),className:"flex flex-col items-center justify-center",style:{width:Pn(c),height:Pn(c)},children:[n.jsx(uc,{className:"flex-grow"}),i&&n.jsx(_e,{title:i,children:n.jsx(j,{className:"max-w-full truncate rtl text-left",variant:"caption",children:i})})]}):!e||!e.trim()?n.jsx(Fn,{}):n.jsxs("a",{className:"flex gap-4 break-words items-center font-medium text-primary visited:text-primary dark:visited:text-primary dark:text-primary",href:e,rel:"noopener noreferrer",onMouseDown:a=>{a.preventDefault()},target:"_blank",children:[n.jsx(ro,{size:"small"}),e]})}function Ve({width:e,height:t,className:c}){return n.jsx("span",{className:E("block","bg-gray-200 dark:bg-gray-800 rounded","animate-pulse",e?`w-[${e}px]`:"w-full",t?`h-[${t}px]`:"h-3","max-w-full max-h-full",c)})}function Nn({property:e,size:t}){e||console.error("No property assigned for skeleton component",e,t);let c;if(e.dataType==="string"){const i=e;i.url?c=OG(i,t):i.storage?c=Tr(t):c=en()}else if(e.dataType==="array"){const i=e;i.of&&(Array.isArray(i.of)?c=n.jsxs(n.Fragment,{children:[i.of.map((a,l)=>Nr(a,l))," "]}):i.of.dataType==="map"&&i.of.properties?c=DG(i.of.properties,t,i.of.previewProperties):i.of.dataType==="string"?i.of.enumValues?c=TG():i.of.storage?c=Nr(i.of):c=NG():c=Nr(i.of))}else e.dataType==="map"?c=PG(e,t):e.dataType==="date"?c=en():e.dataType==="reference"?c=MG():(e.dataType,c=en());return c||null}function PG(e,t){if(!e.properties)return n.jsx(n.Fragment,{});let c;return t==="medium"?c=Object.keys(e.properties):(c=e.previewProperties||Object.keys(e.properties),t==="small"?c=c.slice(0,3):t==="tiny"&&(c=c.slice(0,1))),t!=="medium"?n.jsx("div",{className:"w-full flex flex-col space-y-4",children:c.map((i,a)=>n.jsx("div",{children:e.properties&&e.properties[i]&&n.jsx(Nn,{property:e.properties[i],size:"small"})},`map_${i}`))}):n.jsx("table",{className:"table-auto",children:n.jsx("tbody",{children:c&&c.map((i,a)=>n.jsxs("tr",{className:"border-b last:border-b-0",children:[n.jsx("th",{className:"align-top",style:{width:"30%"},children:n.jsx("p",{className:"text-xs text-secondary",children:e.properties[i].name})},`table-cell-title--${i}`),n.jsx("th",{style:{width:"70%"},children:e.properties&&e.properties[i]&&n.jsx(Nn,{property:e.properties[i],size:"small"})},`table-cell-${i}`)]},`map_preview_table__${a}`))})})}function DG(e,t,c){let i=c;return(!i||!i.length)&&(i=Object.keys(e),t&&(i=i.slice(0,3))),n.jsx("table",{className:"table-auto",children:n.jsx("tbody",{children:[0,1,2].map((a,l)=>n.jsx("tr",{children:i&&i.map(s=>n.jsx("th",{children:n.jsx(Nn,{property:e[s],size:"small"})},`table-cell-${s}`))},`table_${a}_${l}`))})})}function NG(){return n.jsx("div",{className:"flex flex-col gap-2",children:[0,1].map((e,t)=>en(t))})}function TG(){return n.jsx("div",{className:"flex flex-col gap-2",children:[0,1].map((e,t)=>n.jsx(n.Fragment,{children:en(t)}))})}function Nr(e,t=0){return n.jsx("div",{className:"flex flex-col gap-2",children:[0,1].map((c,i)=>n.jsx(n.Fragment,{children:n.jsx(Nn,{property:e,size:"small"},`i_${i}`)}))},"array_index_"+t)}function Tr(e){const t=e==="tiny"?40:e==="small"?100:200;return n.jsx(Ve,{width:t,height:t})}function MG(){return n.jsx(Ve,{width:200,height:100})}function OG(e,t="medium"){return typeof e.url=="boolean"?n.jsxs("div",{style:{display:"flex"},children:[Mr(),en()]}):LG(t)}function LG(e){return n.jsx("div",{className:`w-${Pn(e)} h-${Pn(e)}`,children:Mr()})}function en(e,t=120){return n.jsx(Ve,{width:t},`skeleton_${e}`)}function QG(e){return n.jsx(Ve,{height:20})}function Mr(){return n.jsx(Ve,{width:24,height:24})}const $c=f.memo(qc,VG);function VG(e,t){return e.size===t.size&&e.storagePathOrDownloadUrl===t.storagePathOrDownloadUrl&&e.storeUrl===t.storeUrl}const jc={};function qc({storeUrl:e,storagePathOrDownloadUrl:t,size:c}){const[i,a]=f.useState(void 0),l=Bn(),[s,d]=f.useState(jc[t]);if(f.useEffect(()=>{if(!t)return;let y=!1;return l.getDownloadURL(t).then(function(h){y||(d(h),jc[t]=h)}).catch(a),()=>{y=!0}},[t]),!t)return null;const u=s?.metadata?WG(s?.metadata.contentType):void 0,A=u?.startsWith("image")?"image":u?.startsWith("video")?"video":u?.startsWith("audio")?"audio":"file";return s?.fileNotFound?n.jsx(we,{error:"File not found"}):s?.url?n.jsx(ao,{previewType:A,url:s.url,size:c,hint:t}):Tr(c)}function WG(e){return e.startsWith("image")?"image/*":e.startsWith("video")?"video/*":e.startsWith("audio")?"audio/*":e.startsWith("application")?"application/*":e.startsWith("text")?"text/*":e.startsWith("font")?"font/*":e}const GG={smaller:"px-2 py-0.5 text-sm",small:"px-3 py-1 text-sm",medium:"px-4 py-1.5 text-sm"};function Fo({children:e,colorScheme:t,error:c,outlined:i,onClick:a,icon:l,size:s="medium",className:d}){const u=typeof t=="string"?Za(t):t;return n.jsxs("div",{className:E("rounded-lg w-fit h-fit font-regular inline-flex items-center gap-1","truncate",a?"cursor-pointer hover:bg-gray-300 hover:dark:bg-gray-700":"",GG[s],c||!u?"bg-gray-100 dark:bg-gray-800 text-gray-800 dark:text-gray-200":"",c?"text-red-500 dark:text-red-400":"",d),onClick:a,style:{backgroundColor:c||!u?void 0:u.color,color:c||!u?void 0:u.text},children:[e,l]})}function Ee({enumValues:e,enumKey:t,size:c,className:i,children:a}){if(!e)return null;const l=tn(e),s=t!==void 0?Ko(l,t):void 0,d=xt(s),u=Xt(l,t);return n.jsxs(Fo,{className:i,colorScheme:u,error:!d,outlined:!1,size:c,children:[a,!a&&(d!==void 0?d:String(t))]})}function Or({propertyKey:e,value:t,property:c,size:i}){if(c.enumValues){const a=t,l=ft(c);return n.jsx(Ee,{enumKey:a,enumValues:l.enumValues,size:i!=="medium"?"small":"medium"})}else if(c.previewAsTag){const a=Zt(e??"");return n.jsx(ie,{children:n.jsx(Fo,{colorScheme:a,size:i!=="medium"?"small":"medium",children:t})})}else{if(c.url)return n.jsx(ao,{size:i,url:t,previewType:typeof c.url=="string"?c.url:void 0});{if(!t)return n.jsx(n.Fragment,{});const a=t.split(`
67
67
  `);return t&&t.includes(`
68
- `)?n.jsx("div",{children:l.map((a,s)=>n.jsxs(f.Fragment,{children:[n.jsx("span",{children:a}),s!==l.length-1&&n.jsx("br",{})]},`string_preview_${s}`))}):n.jsx(n.Fragment,{children:t})}}}function Jc({propertyKey:e,value:t,property:c,size:i,entity:l}){const a=re(),s=un({propertyKey:e,property:c,propertyValue:t,fields:a.fields});if(Array.isArray(s?.of))throw Error("Using array properties instead of single one in `of` in ArrayProperty");if(s?.dataType!=="array"||!s.of||s.of.dataType!=="map")throw Error("Picked wrong preview component ArrayOfMapsPreview");const d=s.of,u=d.properties;if(!u)throw Error(`You need to specify a 'properties' prop (or specify a custom field) in your map property ${e}`);const A=t,_=d.previewProperties;if(!A)return null;let g=_;return(!g||!g.length)&&(g=Object.keys(u),i&&(g=g.slice(0,3))),n.jsx("div",{className:"table-auto text-xs",children:n.jsx("div",{children:A&&A.map((y,h)=>n.jsx("div",{className:"border-b last:border-b-0",children:g&&g.map(I=>n.jsx("div",{className:"table-cell",children:n.jsx(se,{children:n.jsx(Ke,{propertyKey:I,value:y[I],property:u[I],entity:l,size:"small"})})},`table-cell-${I}`))},`table_${y}_${h}`))})})}function Nr({propertyKey:e,value:t,property:c,entity:i,size:l}){const a=re(),s=un({propertyKey:e,property:c,propertyValue:t,fields:a.fields});if(!s.of)throw Error(`You need to specify an 'of' prop (or specify a custom field) in your array property ${e}`);if(s.dataType!=="array")throw Error("Picked wrong preview component ArrayPreview");const d=t;if(!d)return null;const u=l==="medium"?"small":"tiny";return n.jsx("div",{className:"flex flex-col",children:d&&d.map((A,_)=>{const g=s.resolvedProperties[_]??s.resolvedProperties[_]??(Array.isArray(s.of)?s.of[_]:s.of);return g?n.jsx(f.Fragment,{children:n.jsx("div",{className:E(ue,"m-1 border-b last:border-b-0"),children:n.jsx(se,{children:n.jsx(Ke,{propertyKey:e,entity:i,value:A,property:g,size:u})})})},"preview_array_"+_):null})})}const on=ce.memo(function(t){const c=t.reference;return c instanceof Je?n.jsx(OG,{...t}):(console.warn("Reference preview received value of type",typeof c),n.jsx(Co,{onClick:t.onClick,size:t.size,children:n.jsx(pe,{error:"Unexpected value. Click to edit",tooltip:JSON.stringify(c)})}))},TG);function TG(e,t){return e.disabled===t.disabled&&e.size===t.size&&e.onHover===t.onHover&&e.reference?.id===t.reference?.id&&e.reference?.path===t.reference?.path&&e.allowEntityNavigation===t.allowEntityNavigation}function OG({disabled:e,reference:t,previewProperties:c,size:i,onHover:l,onClick:a,allowEntityNavigation:s=!0}){const d=re(),u=Ae(),A=Cn(),_=u.getCollection(t.path);if(!_)throw Error(`Couldn't find the corresponding collection view for the path: ${t.path}`);const{entity:g,dataLoading:y,dataLoadingError:h}=sr({path:t.path,entityId:t.id,collection:_,useCache:!0});g&&Zc.set(t.pathWithId,g);const I=g??Zc.get(t.pathWithId),b=f.useMemo(()=>Me({collection:_,path:t.path,values:I?.values,fields:d.fields}),[_]),p=f.useMemo(()=>Oi(b,d.fields,c,i==="small"||i==="medium"?3:1),[c,b,i]);let w;return b?(t?I&&!I.values?w=n.jsx(pe,{error:"Reference does not exist",tooltip:t.path}):w=n.jsxs(n.Fragment,{children:[n.jsxs("div",{className:"flex flex-col flex-grow w-full max-w-[calc(100%-52px)] m-1",children:[i!=="tiny"&&(t?n.jsx("div",{className:`${i!=="medium"?"block whitespace-nowrap overflow-hidden truncate":""}`,children:n.jsx(j,{variant:"caption",className:"font-mono",children:t.id})}):n.jsx(Ve,{})),p&&p.map(k=>{const K=b.properties[k];return K?n.jsx("div",{className:p.length>1?"my-0.5":"my-0",children:I?n.jsx(Ke,{propertyKey:k,value:dn(I.values,k),property:K,entity:I,size:"tiny"}):n.jsx(Dn,{property:K,size:"tiny"})},"ref_prev_"+k):null})]}),n.jsx("div",{className:`my-${i==="tiny"?2:4}`,children:!e&&I&&s&&n.jsx(ye,{title:`See details for ${I.id}`,children:n.jsx(ee,{color:"inherit",size:"small",onClick:k=>{k.stopPropagation(),d.onAnalyticsEvent?.("entity_click_from_reference",{path:I.path,entityId:I.id}),A.open({entityId:I.id,path:I.path,collection:b,updateUrl:!0})},children:n.jsx(ko,{size:"small"})})})})]}):w=n.jsx(pe,{error:"Reference not set"}),n.jsx(Co,{onClick:e?void 0:a,onHover:e?void 0:l,size:i,children:w})):n.jsx(pe,{error:"Could not find collection with id "+b})}function Co({children:e,onHover:t,size:c,onClick:i}){return n.jsx(j,{variant:"label",className:E("bg-opacity-70 bg-gray-100 dark:bg-gray-800 dark:bg-opacity-60","w-full","flex","rounded-md","overflow-hidden",t?"hover:bg-opacity-90 dark:hover:bg-opacity-90":"",c==="medium"?"p-2":"p-1",c==="tiny"?"items-center":"","transition-colors duration-300 ease-in-out ",i?"cursor-pointer":""),style:{tabindex:0},onClick:l=>{i&&(l.preventDefault(),i(l))},children:e})}const Zc=new Map;function Xc({propertyKey:e,value:t,property:c,size:i}){const l=re(),a=un({propertyKey:e,property:c,propertyValue:t,fields:l.fields});if(Array.isArray(a?.of))throw Error("Using array properties instead of single one in `of` in ArrayProperty");if(a?.dataType!=="array"||!a.of||a.of.dataType!=="reference")throw Error("Picked wrong preview component ArrayOfReferencesPreview");const s=i==="medium"?"small":"tiny";return n.jsx("div",{className:"flex flex-col w-full",children:t&&t.map((d,u)=>{const A=a.of;return n.jsx("div",{className:"mt-1 mb-1 w-full",children:n.jsx(on,{disabled:!A.path,previewProperties:A.previewProperties,size:s,reference:d})},`preview_array_ref_${e}_${u}`)})})}function xc({propertyKey:e,entity:t,value:c,property:i,size:l}){const a=re(),s=un({propertyKey:e,property:i,propertyValue:c,fields:a.fields});if(Array.isArray(s.of))throw Error("Using array properties instead of single one in `of` in ArrayProperty");if(s.dataType!=="array"||!s.of||s.of.dataType!=="string")throw Error("Picked wrong preview component ArrayOfStorageComponentsPreview");const d=l==="medium"?"small":"tiny";return n.jsx("div",{className:"flex flex-wrap gap-2",children:c&&c.map((u,A)=>n.jsx(se,{children:n.jsx(Ke,{propertyKey:e,value:u,entity:t,property:s.of,size:d})},`preview_array_storage_${e}_${A}`))})}function Mr({name:e,value:t,enumValues:c,size:i}){return n.jsx("div",{className:"flex flex-wrap gap-1.5",children:t&&t.map((l,a)=>n.jsx(se,{children:n.jsx(Ee,{enumKey:l,enumValues:c,size:i!=="medium"?"small":"medium"})},`preview_array_ref_${e}_${a}`))})}function Tr({propertyKey:e,value:t,property:c,size:i}){if(c.dataType!=="array")throw Error("Picked wrong preview component ArrayEnumPreview");const l=c.of;if(!l.enumValues)throw Error("Picked wrong preview component ArrayEnumPreview");return t?n.jsx(Mr,{name:e,value:t,enumValues:l.enumValues,size:i}):null}function Rc({propertyKey:e,value:t,property:c,entity:i,size:l}){const a=re(),s=un({propertyKey:e,property:c,propertyValue:t,fields:a.fields});if(Array.isArray(s.of))throw Error("Using array properties instead of single one in `of` in ArrayProperty");if(!s.of||s.dataType!=="array"||s.of.dataType!=="string")throw Error("Picked wrong preview component ArrayOfStringsPreview");if(t&&!Array.isArray(t))return n.jsx("div",{children:`Unexpected value: ${t}`});const d=s.of;return n.jsx("div",{className:"flex flex-col gap-2",children:t&&t.map((u,A)=>n.jsx("div",{children:n.jsx(se,{children:n.jsx(Dr,{propertyKey:e,property:d,value:u,entity:i,size:l})})},`preview_array_strings_${e}_${A}`))})}const to="type",So="value";function ei({propertyKey:e,value:t,property:c,size:i,entity:l}){const a=re(),s=un({propertyKey:e,property:c,propertyValue:t,fields:a.fields});if(s?.dataType!=="array")throw Error("Picked wrong preview component ArrayPreview");if(!s?.oneOf)throw Error(`You need to specify an 'of' or 'oneOf' prop (or specify a custom field) in your array property ${e}`);const d=t;if(!d)return null;const u=i==="medium"?"small":"tiny",A=s.oneOf.typeField??to,_=s.oneOf.valueField??So,g=s.oneOf.properties;return n.jsx("div",{className:"flex flex-col",children:d&&d.map((y,h)=>n.jsx(f.Fragment,{children:n.jsx("div",{className:E(ue,"m-1 border-b last:border-b-0"),children:n.jsx(se,{children:y&&n.jsx(Ke,{propertyKey:e,value:y[_],entity:l,property:s.resolvedProperties[h]??g[y[A]],size:u})})})},"preview_array_"+y+"_"+h))})}function ni({propertyKey:e,value:t,property:c,entity:i,size:l}){if(c.dataType!=="map")throw Error("Picked wrong preview component MapPropertyPreview");const a=c;if(e==="result.suggestions"&&console.log({propertyKey:e,property:c,value:t}),!a.properties||Object.keys(a.properties??{}).length===0)return n.jsx(Or,{value:t});if(!t)return null;const s=Object.keys(a.properties);return l!=="medium"?n.jsx("div",{className:"w-full flex flex-col space-y-1 md:space-y-2",children:s.map((d,u)=>n.jsx("div",{children:n.jsx(se,{children:n.jsx(Ke,{propertyKey:d,value:t[d],property:a.properties[d],entity:i,size:l})},"map_preview_"+a.name+d+u)},`map_${d}`))}):n.jsx("div",{className:"flex flex-col gap-1 w-full",children:s&&s.map((d,u)=>{const A=a.properties[d];return n.jsxs("div",{className:E(ue,"last:border-b-0 border-b"),children:[n.jsxs("div",{className:"flex flex-row pt-0.5 pb-0.5 gap-2",children:[n.jsx("div",{className:"min-w-[140px] w-[25%] py-1",children:n.jsx(j,{variant:"caption",className:"font-mono break-words",color:"secondary",children:A.name})}),n.jsx("div",{className:"flex-grow max-w-[75%]",children:n.jsx(se,{children:!(A.dataType==="map"||A==="array")&&n.jsx(Ke,{propertyKey:d,value:t[d],property:A,entity:i,size:l})})})]}),(A.dataType==="map"||A==="array")&&n.jsx("div",{className:E(ue,"border-l pl-4 ml-2 my-2"),children:n.jsx(Ke,{propertyKey:d,value:t[d],property:A,entity:i,size:l})})]},`map_preview_table_${d}}`)})})}function Or({value:e}){return typeof e!="object"?null:n.jsx("div",{className:"flex flex-col gap-1 w-full",children:Object.entries(e).map(([t,c])=>n.jsxs("div",{className:E(ue,"last:border-b-0 border-b"),children:[n.jsxs("div",{className:"flex flex-row pt-0.5 pb-0.5 gap-2",children:[n.jsx("div",{className:"min-w-[140px] w-[25%] py-1",children:n.jsx(j,{variant:"caption",className:"font-mono break-words",color:"secondary",children:t})},`table-cell-title-${t}-${t}`),n.jsx("div",{className:"flex-grow max-w-[75%]",children:typeof c!="object"&&n.jsx(j,{children:n.jsx(se,{children:c&&c.toString()})})})]}),typeof c=="object"&&n.jsx("div",{className:E(ue,"border-l pl-4"),children:n.jsx(Or,{value:c})})]},`map_preview_table_${t}}`))})}const oi="MMMM dd, yyyy, HH:mm:ss";function ri({date:e}){const t=re(),c=t?.locale?Ut[t?.locale]:void 0,i=t?.dateTimeFormat??oi,l=e?Sa(e,i,{locale:c}):"";return n.jsx(n.Fragment,{children:l})}const LG={large:"w-6 h-6 rounded flex items-center justify-center",medium:"w-5 h-5 rounded flex items-center justify-center",small:"w-4 h-4 rounded flex items-center justify-center"},QG={medium:"w-10 h-10",small:"w-8 h-8",large:"w-12 h-12"},Lr=({checked:e,indeterminate:t=!1,disabled:c,size:i="medium",onCheckedChange:l})=>{const a=t?!1:e;return n.jsx("div",{className:E(QG[i],"inline-flex items-center justify-center p-2 text-sm font-medium focus:outline-none transition-colors ease-in-out duration-150",l?"rounded-full hover:bg-gray-200 hover:bg-opacity-75 dark:hover:bg-gray-700 dark:hover:bg-opacity-75":"",l?"cursor-pointer":"cursor-default"),children:n.jsx(Ht.Root,{asChild:!0,checked:a,disabled:c,onCheckedChange:c?void 0:l,children:n.jsx("div",{className:E("border-2 relative transition-colors ease-in-out duration-150",LG[i],c?"bg-gray-400 dark:bg-gray-600":a?"bg-primary":"bg-white dark:bg-gray-900",a?"text-gray-100 dark:text-gray-900":"",c||a?"border-transparent":"border-gray-800 dark:border-gray-200"),children:n.jsx(Ht.Indicator,{asChild:!0,children:t?n.jsx("div",{className:"w-full h-[1px] bg-currentColor"}):n.jsx(r,{iconKey:"check",size:20,className:"absolute"})})})})})};function ti({value:e}){return n.jsx(Lr,{checked:e})}function ci({value:e,property:t,size:c}){if(t.enumValues){const i=e,l=sn(t.enumValues);return l?n.jsx(Ee,{enumKey:i,enumValues:l,size:c!=="medium"?"small":"medium"}):n.jsx(n.Fragment,{children:e})}else return n.jsx(n.Fragment,{children:e})}function Ke(e){const t=re();let c;const{property:i,propertyKey:l,value:a,size:s,height:d,width:u,entity:A}=e,_=Te({propertyKey:l,propertyOrBuilder:i,propertyValue:a,fields:t.fields});if(a===void 0||_===null)c=n.jsx(Fn,{});else if(_.Preview)c=f.createElement(_.Preview,{propertyKey:l,value:a,property:_,size:s,height:d,width:u,entity:A,customProps:_.customProps});else if(a===null)c=n.jsx(Fn,{});else if(_.dataType==="string"){const g=_;typeof a=="string"?g.url?typeof g.url=="boolean"?c=n.jsx(ro,{size:e.size,url:a}):typeof g.url=="string"&&(c=n.jsx(ro,{size:e.size,url:a,previewType:g.url})):g.storage?c=n.jsx(zc,{storeUrl:_.storage?.storeUrl??!1,size:e.size,storagePathOrDownloadUrl:a}):g.markdown?c=n.jsx(co,{source:a}):c=n.jsx(Dr,{...e,property:g,value:a}):c=gn(l,_.dataType,a)}else if(_.dataType==="array")if(a instanceof Array){const g=_;if(!g.of&&!g.oneOf)throw Error(`You need to specify an 'of' or 'oneOf' prop (or specify a custom field) in your array property ${l}`);g.of?Array.isArray(g.of)?c=n.jsx(Nr,{...e,value:a,property:_}):g.of.dataType==="map"?c=n.jsx(Jc,{propertyKey:l,property:_,value:a,entity:A,size:s}):g.of.dataType==="reference"?c=n.jsx(Xc,{...e,value:a,property:_}):g.of.dataType==="string"?g.of.enumValues?c=n.jsx(Tr,{...e,value:a,property:_}):g.of.storage?c=n.jsx(xc,{...e,value:a,property:_}):c=n.jsx(Rc,{...e,value:a,property:_}):g.of.dataType==="number"&&g.of.enumValues?c=n.jsx(Tr,{...e,value:a,property:_}):c=n.jsx(Nr,{...e,value:a,property:_}):g.oneOf&&(c=n.jsx(ei,{...e,value:a,property:_}))}else c=gn(l,_.dataType,a);else _.dataType==="map"?typeof a=="object"?c=n.jsx(ni,{...e,property:_}):c=gn(l,_.dataType,a):_.dataType==="date"?a instanceof Date?c=n.jsx(ri,{date:a}):c=gn(l,_.dataType,a):_.dataType==="reference"?typeof _.path=="string"?a instanceof Je?c=n.jsx(on,{disabled:!_.path,previewProperties:_.previewProperties,size:e.size,onClick:e.onClick,reference:a}):c=gn(l,_.dataType,a):c=n.jsx(Fn,{}):_.dataType==="boolean"?typeof a=="boolean"?c=n.jsx(ti,{value:a}):c=gn(l,_.dataType,a):_.dataType==="number"?typeof a=="number"?c=n.jsx(ci,{...e,value:a,property:_}):c=gn(l,_.dataType,a):c=JSON.stringify(a);return c??n.jsx(Fn,{})}function gn(e,t,c){return console.warn(`Unexpected value for property ${e}, of type ${t}`,c),n.jsx(pe,{title:"Unexpected value",error:`${JSON.stringify(c)}`})}const VG=ce.memo(function({builder:t}){const[c,i]=f.useState(!0),[l,a]=f.useState(null);return f.useEffect(()=>{let s=!1;return t.then(d=>{s||(i(!1),a(d))}).catch(d=>{i(!1),console.error(d)}),()=>{s=!0}},[t]),c?n.jsx(Ve,{}):n.jsx(ce.Fragment,{children:l})}),WG=new Gt({html:!0}),co=f.memo(function({source:t,className:c}){const i=f.useMemo(()=>WG.render(typeof t=="string"?t:""),[t]);return n.jsx("div",{className:c,dangerouslySetInnerHTML:{__html:i}})},de),ii=(e,...t)=>({...t.reduce((c,i)=>({...c,[i]:e[i]}),{})});function Bo(e){return e&&typeof e=="object"&&!Array.isArray(e)}function Ze(e,t){const c=Bo(e),i=c?{...e}:e;return c&&Bo(t)&&Object.keys(t).forEach(l=>{Bo(t[l])?l in e?i[l]=Ze(e[l],t[l]):Object.assign(i,{[l]:t[l]}):Object.assign(i,{[l]:t[l]})}),i}function dn(e,t){if(e&&typeof e=="object"){if(t in e)return e[t];if(t.includes(".")||t.includes("[")){let c=t.split(/[.[]/);t.includes("[")&&(c=c.map(d=>d.replace("]","")));const i=c[0],l=Array.isArray(e[i])&&!isNaN(parseInt(c[1])),a=l?e[i][parseInt(c[1])]:e[i],s=c.slice(l?2:1).join(".");return s===""?a:dn(a,s)}}}function GG(e,t){let c={...e};const i=t.split("."),l=i.pop();for(const a of i)c=c[a];return l&&delete c[l],c}function Qr(e){if(e!==void 0)return e===null?null:typeof e=="object"?Object.entries(e).filter(([t,c])=>typeof c!="function").map(([t,c])=>Array.isArray(c)?{[t]:c.map(i=>Qr(i))}:typeof c=="object"?{[t]:Qr(c)}:{[t]:c}).reduce((t,c)=>({...t,...c}),{}):e}function Vr(e){if(!e)return null;if(typeof e=="object"){if("id"in e)return e.id;if(e instanceof Date)return e.toLocaleString();if(e instanceof Br)return zt(e)}return zt(e,{ignoreUnknown:!0})}function Wr(e,t){if(typeof e=="function")return e;if(Array.isArray(e))return e.map(c=>Wr(c,t));if(typeof e=="object"){const c={};return e===null?e:(Object.keys(e).forEach(i=>{if(!Gr(e)){const l=Wr(e[i],t),a=typeof l=="string",s=!t||t&&!a||t&&a&&l!=="";l!==void 0&&!Gr(l)&&s&&(c[i]=l)}}),c)}return e}function Gr(e){return e&&Object.getPrototypeOf(e)===Object.prototype&&Object.keys(e).length===0}function Nn(e){return e.readOnly||e.dataType==="date"&&e.autoValue?!0:e.dataType==="reference"?!e.path:!1}function io(e){return typeof e.disabled=="object"&&!!e.disabled.hidden}function We(e){return typeof e=="function"}function ao(e){return e?Object.entries(e).map(([t,c])=>{const i=Eo(c);return i===void 0?{}:{[t]:i}}).reduce((t,c)=>({...t,...c}),{}):{}}function Eo(e){if(!We(e))if(e.dataType==="map"&&e.properties){const t=ao(e.properties);return Object.keys(t).length===0?void 0:t}else return e.defaultValue?e.defaultValue:zr(e.dataType)}function zr(e){return e==="string"||e==="number"?null:e==="boolean"?!1:e==="date"?null:e==="array"?[]:e==="map"?{}:null}function zG({inputValues:e,properties:t,status:c,timestampNowValue:i,setDateToMidnight:l}){return Hr(e,t,(a,s)=>{if(s.dataType==="date"){let d;return c==="existing"&&s.autoValue==="on_update"||(c==="new"||c==="copy")&&(s.autoValue==="on_update"||s.autoValue==="on_create")?d=i:d=a,s.mode==="date"&&(d=l(d)),d}else return a})??{}}function HG(e,t){const c=e;return Object.entries(t).forEach(([i,l])=>{e&&e[i]!==void 0?c[i]=e[i]:l.validation?.required&&(c[i]=null)}),c}function In(e){return new Je(e.id,e.path)}function Hr(e,t,c){const i=Object.entries(t).map(([a,s])=>{const d=e&&e[a],u=Fo(d,s,c);if(u!==void 0)return{[a]:u}}).reduce((a,s)=>({...a,...s}),{}),l={...e,...i};if(Object.keys(l).length!==0)return l}function Fo(e,t,c){let i;if(t.dataType==="map"&&t.properties)i=Hr(e,t.properties,c);else if(t.dataType==="array")if(t.of&&Array.isArray(e))i=e.map(l=>Fo(l,t.of,c));else if(t.oneOf&&Array.isArray(e)){const l=t.oneOf?.typeField??to,a=t.oneOf?.valueField??So;i=e.map(s=>{if(s===null)return null;if(typeof s!="object")return s;const d=s[l],u=t.oneOf?.properties[d];return!d||!u?s:{[l]:d,[a]:Fo(s[a],u,c)}})}else i=e;else i=c(e,t);return i}function Ur(e,t){const c=e.subcollections?.map(d=>{const u=t.subcollections?.find(A=>A.path===d.path)??t.subcollections?.find(A=>A.alias===d.alias);return u?Ur(d,u):d}),i=Ze(e,t),l=e.propertiesOrder??Object.keys(e.properties),a=t.propertiesOrder??Object.keys(t.properties),s=[...new Set([...l,...a])];return{...i,subcollections:c,properties:Yr(i.properties,s)}}function UG(e,t){const c=e.map(a=>({...a,editable:!0,deletable:!0})),i=(t??[]).map(a=>{const s=c?.find(d=>d.path===a.path||d.alias&&a.alias&&d.alias===a.alias);return s?{...Ur(a,s),deletable:!1}:{...a,deletable:!1}}),l=c.filter(a=>!i.map(s=>s.path).includes(a.path)||!i.map(s=>s.alias).includes(a.alias));return[...i,...l]}function Yr(e,t){try{const c=Object.keys(e);return(t??c).map(l=>{if(e[l]){const a=e[l];return!We(a)&&a?.dataType==="map"&&a.properties?{[l]:{...a,properties:Yr(a.properties,a.propertiesOrder)}}:{[l]:a}}else return}).filter(l=>l!==void 0).reduce((l,a)=>({...l,...a}),{})}catch(c){return console.error("Error sorting properties",c),e}}function $r(e,t){if(e)return typeof e=="string"?e:e(t)}const YG=/[A-Z]{2,}(?=[A-Z][a-z]+[0-9]*|\b)|[A-Z]?[a-z]+[0-9]*|[A-Z]|[0-9]+/g,$G=e=>{const t=e.match(YG);return t?t.map(c=>c.toLowerCase()).join("-"):""},jG=/[A-Z]{2,}(?=[A-Z][a-z]+[0-9]*|\b)|[A-Z]?[a-z]+[0-9]*|[A-Z]|[0-9]+/g,qG=e=>{const t=e.match(jG);return t?t.map(c=>c.toLowerCase()).join("_"):""};function Mn(e=5){return Math.random().toString(36).slice(2,2+e)}function JG(){return Math.floor(Math.random()*16777215).toString(16)}function Po(e,t="_",c=!0){if(!e)return"";const i="ãàáäâẽèéëêìíïîõòóöôùúüûñç·/_,:;-",l=`aaaaaeeeeeiiiiooooouuuunc${t}${t}${t}${t}${t}${t}${t}`;for(let a=0,s=i.length;a<s;a++)e=e.replace(new RegExp(i.charAt(a),"g"),l.charAt(a));return e=e.toString().replace(/\s+/g,t).replace(/&/g,t).replace(/[^\w\\-]+/g,"").replace(new RegExp("\\"+t+"\\"+t+"+","g"),t).trim().replace(/^\s+|\s+$/g,""),c?e.toLowerCase():e}const ai="::";function jr(e){return li(Xe(e))}function li(e){return e.length===1?e[0]:e.reduce((t,c)=>`${t}${ai}${c}`)}function Xe(e){return e.split("/").filter((t,c)=>c%2===0)}function ZG(e){return e?e.toString():""}function si(e){if(!e)return;const t=e.match(/\/(.*?)\/([a-z]*)?$/i);return t?new RegExp(t[1],t[2]||""):new RegExp(e,"")}function XG(e){return e.match(/\/((?![*+?])(?:[^\r\n[/\\]|\\.|\[(?:[^\r\n\]\\]|\\.)*])+)\/((?:g(?:im?|mi?)?|i(?:gm?|mg?)?|m(?:gi?|ig?)?)?)/)?!0:!!e.match(/((?![*+?])(?:[^\r\n[/\\]|\\.|\[(?:[^\r\n\]\\]|\\.)*])+)/)}function Do(e,t,c,i=300){const l=f.useRef(!1),a=()=>{t(),l.current=!1},s=f.useRef(void 0);f.useEffect(()=>(l.current=!0,clearTimeout(s.current),s.current=setTimeout(a,i),()=>{c&&a()}),[c,e])}function xG(e,t=300){const[c,i]=f.useState(e);return f.useEffect(()=>{const l=setTimeout(()=>{i(e)},t);return()=>{clearTimeout(l)}},[e,t]),c}function No({name:e,addLabel:t,value:c,disabled:i=!1,buildEntry:l,small:a,onInternalIdAdded:s,includeAddButton:d,newDefaultEntry:u=null,setFieldValue:A}){return n.jsx(Pt,{droppableId:e,addLabel:t,value:c,disabled:i,buildEntry:l,size:a?"small":"medium",onInternalIdAdded:s,includeAddButton:d,newDefaultEntry:u,onValueChange:_=>A(e,_)})}function Ce({icon:e,title:t,small:c,className:i,required:l}){return n.jsxs("span",{className:`inline-flex items-center my-0.5 ${c?"gap-1":"gap-2"} ${i??""}`,children:[e,n.jsx(j,{component:"span",className:`font-medium text-${c?"base":"sm"} origin-top-left transform ${c?"translate-x-2 scale-75":""}`,children:(t??"")+(l?" *":"")})]})}function RG(e){const t=f.useRef(),[c,i]=f.useState(e.value),l=f.useDeferredValue(c);f.useEffect(()=>{i(e.value)},[e.value]),f.useEffect(()=>{!e.value&&!l||l!==e.value&&t.current&&e.onChange&&e.onChange(t.current)},[l,e.value,e.onChange]);const a=f.useCallback(s=>{t.current=s,i(s.target.value)},[]);return n.jsx(An,{...e,onChange:a,value:c})}function ez({field:e,form:t,label:c,tooltip:i,disabled:l,size:a="small",allowIndeterminate:s}){const d=n.jsx(On,{label:c,size:a,position:"start",value:e.value,disabled:l,allowIndeterminate:s,onValueChange:u=>t.setFieldValue(e.name,u)});return i?n.jsx(ye,{title:i,children:d}):d}function Se({error:e,showError:t,property:c,includeDescription:i=!0,disabled:l}){const a=c.description||c.longDescription;if(!(t&&e)&&(!i||!a))return null;if(t&&e)return n.jsx(j,{variant:"caption",className:"ml-3.5 text-red-500",children:e});const s=typeof c.disabled=="object"?c.disabled.disabledMessage:void 0;return n.jsxs("div",{className:"flex ml-3.5 mt-1",children:[n.jsx(j,{variant:"caption",color:l?"disabled":"secondary",className:"flex-grow",children:s||c.description}),c.longDescription&&n.jsx(ye,{title:c.longDescription,side:"bottom",children:n.jsx(ee,{size:"small",className:"self-start",children:n.jsx(Bc,{color:"disabled",size:"small"})})})]})}function qr({propertyKey:e,value:t,setValue:c,error:i,showError:l,disabled:a,autoFocus:s,touched:d,property:u,includeDescription:A}){const _=u.enumValues;Ne({property:u,value:t,setValue:c});const g=f.useCallback(y=>{y.stopPropagation(),y.preventDefault(),c(null)},[c]);return n.jsxs(n.Fragment,{children:[n.jsx(xe,{value:t?t.toString():"",disabled:a,position:"item-aligned",inputClassName:E("w-full"),label:n.jsx(Ce,{icon:we(u),required:u.validation?.required,title:u.name,className:"text-text-secondary dark:text-text-secondary-dark ml-3.5"}),endAdornment:u.clearable&&n.jsx(ee,{onClick:g,children:n.jsx(an,{})}),onValueChange:y=>{const h=y?u.dataType==="number"?parseFloat(y):y:null;return c(h)},renderValue:y=>n.jsx(Ee,{enumKey:y,enumValues:_,size:"medium"}),children:_&&_.map(y=>n.jsx(Re,{value:String(y.id),children:n.jsx(Ee,{enumKey:String(y.id),enumValues:_,size:"medium"})},y.id))}),n.jsx(Se,{includeDescription:A,showError:l,error:i,disabled:a,property:u})]})}function di({children:e,error:t}){return n.jsx("div",{className:E("text-sm font-medium ml-3.5 mb-1",t?"text-red-500 dark:text-red-600":"text-gray-500 dark:text-gray-300"),children:e})}function Mo(e,t,c=!0){f.useEffect(()=>{if(!c)return;function i(l){ui(l.target)||e.current&&!e.current.contains(l.target)&&t()}return document.addEventListener("mousedown",i),()=>{document.removeEventListener("mousedown",i)}},[e,c,t])}function ui(e){return e instanceof HTMLElement?e.getAttribute("role")==="presentation"?!0:ui(e.parentNode):!1}const Jr=ce.createContext({});function Zr({value:e,open:t,onMultiValueChange:c,size:i="medium",label:l,disabled:a,renderValue:s,renderValues:d,includeFocusOutline:u=!0,containerClassName:A,className:_,children:g,error:y}){const h=ce.useRef(null),I=ce.useRef(null),b=ce.useRef(null);Mo(b,()=>w(!1));const[p,w]=ce.useState(!1);f.useEffect(()=>{w(t??!1)},[t]);const k=ce.useCallback(C=>{Array.isArray(e)&&e.includes(C)?c?.(e.filter(N=>N!==C)):c?.([...e??[],C])},[e,c]),[K,m]=ce.useState(""),[v,S]=ce.useState(null),B=ce.useCallback(C=>{const N=I.current;if(N){if((C.key==="Delete"||C.key==="Backspace")&&N.value===""){const M=[...e??[]];M.pop(),c?.(M)}C.key==="Escape"&&(N.blur(),w(!1),C.stopPropagation())}},[c,e]),P=ce.useCallback(()=>{S(h.current?.getBoundingClientRect()??null),w(!0)},[]),F=v??h.current?.getBoundingClientRect(),D=window.innerHeight-(F?.top??0)-(F?.height??0)-16;return n.jsxs(n.Fragment,{children:[typeof l=="string"?n.jsx(di,{error:y,children:l}):l,n.jsxs(go.Command,{onKeyDown:B,onClick:()=>{I.current?.focus(),P()},className:E("relative overflow-visible bg-transparent",A),children:[n.jsxs("div",{ref:h,className:E("flex flex-row",i==="small"?"min-h-[42px]":"min-h-[64px]","select-none rounded-md text-sm",qe,a?en:ze,"relative flex items-center","p-4",y?"text-red-500 dark:text-red-600":"focus:text-text-primary dark:focus:text-text-primary-dark",y?"border border-red-500 dark:border-red-600":"",u?ge:"",_),children:[n.jsxs("div",{className:E("flex-grow flex gap-1.5 flex-wrap items-center"),children:[s&&(e??[]).map((C,N)=>s(C,N)),d&&d(e??[]),n.jsx(go.Command.Input,{ref:I,value:K,onValueChange:m,onFocus:P,className:"ml-2 bg-transparent outline-none flex-1 h-full w-full "})]}),n.jsx("div",{className:"px-2 h-full flex items-center",children:n.jsx(eo,{size:"small",className:E("transition ",p?"rotate-180":"")})})]}),n.jsx($e.Root,{open:p,onOpenChange:w,children:n.jsx($e.Portal,{children:n.jsx(Jr.Provider,{value:{fieldValue:e,setInputValue:m,onValueChangeInternal:k},children:n.jsx("div",{ref:b,className:"z-50 absolute overflow-auto outline-none",style:{pointerEvents:p?"auto":"none",top:(F?.top??0)+(F?.height??0),left:F?.left,width:F?.width,maxHeight:D},children:n.jsx(go.Command.Group,{className:"mt-2 text-gray-900 dark:text-white animate-in z-50 border border-gray-200 dark:border-gray-800 bg-white dark:bg-gray-800 p-2 rounded-lg shadow-lg flex flex-col outline-none w-full",children:g})})})})})]})]})}function Xr({children:e,value:t,className:c}){const i=ce.useContext(Jr);if(!i)throw new Error("MultiSelectItem must be used inside a MultiSelect");const{fieldValue:l,setInputValue:a,onValueChangeInternal:s}=i;return n.jsx(go.Command.Item,{onMouseDown:d=>{d.preventDefault(),d.stopPropagation()},onSelect:d=>{a(""),s(t)},className:E((l??[]).includes(t)?"bg-gray-200 dark:bg-gray-950":"","cursor-pointer","m-1","ring-offset-transparent","p-2 rounded aria-[selected=true]:outline-none aria-[selected=true]:ring-2 aria-[selected=true]:ring-primary aria-[selected=true]:ring-opacity-75 aria-[selected=true]:ring-offset-2","aria-[selected=true]:bg-gray-100 aria-[selected=true]:dark:bg-gray-900","cursor-pointer p-2 rounded aria-[selected=true]:bg-gray-100 aria-[selected=true]:dark:bg-gray-900",c),children:e})}function xr({propertyKey:e,value:t,setValue:c,error:i,showError:l,disabled:a,property:s,includeDescription:d,autoFocus:u}){const A=s.of;if(!A)throw Error("Using wrong component ArrayEnumSelect");if(Array.isArray(A))throw Error("Using array properties instead of single one in `of` in ArrayProperty");if(A.dataType!=="string"&&A.dataType!=="number")throw Error("Field misconfiguration: array field of type string or number");const _=sn(A.enumValues);if(!_)throw console.error(s),Error("Field misconfiguration: array field of type string or number needs to have enumValues");Ne({property:s,value:t,setValue:c});const g=!!t&&Array.isArray(t),y=f.useCallback((h,I)=>{const b=h!==void 0?vo(_,h):void 0;return n.jsxs(Ee,{enumKey:h,enumValues:_,size:"medium",children:[b?.label??h,!I&&n.jsx("button",{className:"ml-1 ring-offset-background rounded-full outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2",onMouseDown:p=>{p.preventDefault(),p.stopPropagation()},onClick:p=>{p.preventDefault(),p.stopPropagation(),c(t.filter(w=>w!==h))},children:n.jsx(pr,{size:"smallest"})})]},h)},[_,c,t]);return n.jsxs("div",{className:"mt-0.5 ml-0.5 mt-2",children:[n.jsx(Zr,{value:g?t.map(h=>h.toString()):[],disabled:a,label:n.jsx(Ce,{icon:we(s),required:s.validation?.required,title:s.name,className:"text-text-secondary dark:text-text-secondary-dark ml-3.5"}),renderValue:f.useCallback(h=>y(h,!1),[y]),onMultiValueChange:h=>{let I;return A&&A?.dataType==="number"?I=h?h.map(b=>parseFloat(b)):[]:I=h,c(I)},children:_.map(h=>String(h.id)).map(h=>n.jsx(Xr,{value:h,children:y(h,!0)},h))}),n.jsx(Se,{includeDescription:d,showError:l,error:i,disabled:a,property:s})]})}function fi({propertyKey:e,value:t,error:c,showError:i,disabled:l,isSubmitting:a,tableMode:s,property:d,includeDescription:u,setValue:A,setFieldValue:_}){const g=d.of;if(g.dataType!=="reference")throw Error("ArrayOfReferencesField expected a property containing references");const y=d.expanded===void 0?!0:d.expanded,[h,I]=f.useState(!1),b=t&&Array.isArray(t)?t.map(P=>P.id):[];Ne({property:d,value:t,setValue:A});const p=Ae(),w=f.useMemo(()=>g.path?p.getCollection(g.path):void 0,[g.path]);if(!w)throw Error(`Couldn't find the corresponding collection for the path: ${g.path}`);const k=f.useCallback(P=>{A(P.map(F=>In(F)))},[A]),K=xn({multiselect:!0,path:g.path,collection:w,onMultipleEntitiesSelected:k,selectedEntityIds:b,forceFilter:g.forceFilter}),m=f.useCallback(P=>{P.preventDefault(),K.open()},[K]),v=f.useCallback((P,F)=>{const D=t&&t.length>P?t[P]:void 0;return D?n.jsx("div",{onMouseEnter:()=>I(!0),onMouseMove:()=>I(!0),onMouseLeave:()=>I(!1),children:n.jsx(on,{disabled:!g.path,previewProperties:g.previewProperties,size:"medium",onClick:m,reference:D,onHover:h})}):n.jsx("div",{children:"Internal ERROR"})},[g.path,g.previewProperties,h,t]),S=n.jsx(Ce,{icon:we(d),required:d.validation?.required,title:d.name,className:"text-text-secondary dark:text-text-secondary-dark"}),B=n.jsxs(n.Fragment,{children:[!w&&n.jsx(pe,{error:"The specified collection does not exist. Check console"}),w&&n.jsxs(n.Fragment,{children:[n.jsx(No,{value:t,addLabel:d.name?"Add reference to "+d.name:"Add reference",name:e,buildEntry:v,disabled:a,setFieldValue:_,newDefaultEntry:d.of.defaultValue}),n.jsxs(te,{className:"my-4 justify-center text-left",variant:"outlined",color:"primary",disabled:a,onClick:m,children:["Edit ",d.name]})]})]});return n.jsxs(n.Fragment,{children:[!s&&n.jsx(fn,{className:"px-2 md:px-4 pb-2 md:pb-4 pt-1 md:pt-2",initiallyExpanded:y,title:S,children:B}),s&&B,n.jsx(Se,{includeDescription:u,showError:i,error:c,disabled:l,property:d})]})}async function nz(e,t,c,i,l,a,s,d){let u;return typeof e=="function"?(u=await e({path:l,entityId:i,values:c,property:a,file:s,storage:t,propertyKey:d}),u||console.warn("Storage callback returned empty result. Using default name value")):u=Ai(s,e,i,d,l),u||(u=Mn()+"_"+s.name),u}function oz(e,t,c,i,l,a,s,d){let u;return typeof e=="function"?(u=e({path:l,entityId:i,values:c,property:a,file:s,storage:t,propertyKey:d}),u||console.warn("Storage callback returned empty result. Using default name value")):u=Ai(s,e,i,d,l),u||(u=Mn()+"_"+s.name),u}function Ai(e,t,c,i,l){const a=e.name.split(".").pop();let s=t.replace("{entityId}",c).replace("{propertyKey}",i).replace("{rand}",Mn()).replace("{file}",e.name).replace("{file.type}",e.type).replace("{path}",l);if(a){s=s.replace("{file.ext}",a);const d=e.name.replace(`.${a}`,"");s=s.replace("{file.name}",d)}return s||(s=Mn()+"_"+e.name),s}function _i({entityId:e,entityValues:t,path:c,value:i,property:l,propertyKey:a,storageSource:s,disabled:d,onChange:u}){const A=l.dataType==="string"?l.storage:l.dataType==="array"&&l.of.dataType==="string"?l.of.storage:void 0,_=l.dataType==="array";if(!A)throw Error("Storage meta must be specified");const g=A?.metadata,y=_?"small":"medium",h=A?.imageCompression,I=(_?i??[]:i?[i]:[]).map(B=>({id:Rr(),storagePathOrDownloadUrl:B,metadata:g,size:y})),[b,p]=f.useState(i),[w,k]=f.useState(I);f.useEffect(()=>{de(b,i)||(p(i),k(I))},[I,i,b]);const K=f.useCallback(async B=>{if(A.fileName){const P=await nz(A.fileName,A,t,e,c,l,B,a);if(!P||P.length===0)throw Error("You need to return a valid filename");return P}return Mn()+"_"+B.name},[e,t,c,l,a,A]),m=f.useCallback(B=>oz(A.storagePath,A,t,e,c,l,B,a)??"/",[e,t,c,l,a,A]),v=f.useCallback(async(B,P,F)=>{console.debug("onFileUploadComplete",B,P);let D=B;if(A.storeUrl&&(D=(await s.getDownloadURL(B)).url),A.postProcess&&D&&(D=await A.postProcess(D)),!D){console.warn("uploadPathOrDownloadUrl is null");return}let C;P.storagePathOrDownloadUrl=D,P.metadata=F,C=[...w],C=yi(C),k(C);const N=C.filter(M=>!!M.storagePathOrDownloadUrl).map(M=>M.storagePathOrDownloadUrl);u(_?N:N?N[0]:null)},[w,_,u,A,s]),S=f.useCallback(async B=>{if(!B.length||d)return;let P;if(_)P=[...w,...await Promise.all(B.map(async F=>(h&&et(F)&&(F=await gi(F,h)),{id:Rr(),file:F,fileName:await K(F),metadata:g,size:y})))];else{let F=B[0];h&&et(F)&&(F=await gi(F,h)),P=[{id:Rr(),file:F,fileName:await K(F),metadata:g,size:y}]}P=yi(P),k(P)},[d,K,w,g,_,y]);return{internalValue:w,setInternalValue:k,storage:A,fileNameBuilder:K,storagePathBuilder:m,onFileUploadComplete:v,onFilesAdded:S,multipleFilesSupported:_}}function yi(e){return e.filter((t,c)=>(e.map(i=>i.storagePathOrDownloadUrl).indexOf(t.storagePathOrDownloadUrl)===c||!t.storagePathOrDownloadUrl)&&(e.map(i=>i.file).indexOf(t.file)===c||!t.file))}function Rr(){return Math.floor(Math.random()*Math.floor(Number.MAX_SAFE_INTEGER))}const hi={"image/jpeg":"JPEG","image/png":"PNG","image/webp":"WEBP"},et=e=>hi[e.type]?hi[e.type]:null,rz=100,gi=(e,t)=>new Promise(c=>{const i=t.quality===void 0?rz:t.quality,l=i>=0&&i<=100?i:100,a=et(e);if(!a)throw Error("resizeAndCompressImage: Unsupported image format");Ea.imageFileResizer(e,t.maxWidth||Number.MAX_VALUE,t.maxHeight||Number.MAX_VALUE,a,l,0,s=>c(s),"file")});function Ii({storagePath:e,entry:t,metadata:c,onFileUploadComplete:i,imageSize:l,simple:a}){const s=Sn(),d=cn(),[u,A]=f.useState(),[_,g]=f.useState(!1),y=f.useRef(!1),h=f.useRef(!1),I=f.useCallback((b,p)=>{h.current||(h.current=!0,A(void 0),g(!0),s.uploadFile({file:b,fileName:p,path:e,metadata:c}).then(async({path:w})=>{console.debug("Upload successful"),await i(w,t,c),y.current&&g(!1)}).catch(w=>{console.warn("Upload error",w),y.current&&(A(w),g(!1),d.open({type:"error",message:"Error uploading file: "+w.message}))}).finally(()=>{h.current=!1}))},[t,c,i,s,e]);return f.useEffect(()=>(y.current=!0,t.file&&I(t.file,t.fileName),()=>{y.current=!1}),[t.file,t.fileName,I]),a?n.jsx("div",{className:`m-4 w-${l} h-${l}`,children:_&&n.jsx(Ve,{className:`w-${l} h-${l}`})}):n.jsxs("div",{className:E(He,"relative m-4 border-box flex items-center justify-center",`min-w-[${l}px] min-h-[${l}px]`),children:[_&&n.jsx(Ve,{className:"w-full h-full"}),u&&n.jsx(pe,{title:"Error uploading file",error:u})]})}function bi({name:e,property:t,value:c,entity:i,onRemove:l,disabled:a,size:s}){return n.jsxs("div",{className:E(He,"relative m-4 border-box flex items-center justify-center",s==="medium"?"min-w-[220px] min-h-[220px] max-w-[220px]":"min-w-[118px] min-h-[118px] max-w-[118px]"),children:[!a&&n.jsx("div",{className:"absolute rounded-full -top-2 -right-2 z-10 bg-white dark:bg-gray-900",children:n.jsx(ye,{title:"Remove",children:n.jsx(ee,{size:"small",onClick:d=>{d.stopPropagation(),l(c)},children:n.jsx(oo,{size:"small"})})})}),c&&n.jsx(se,{children:n.jsx(Ke,{propertyKey:e,value:c,property:t,entity:i,size:s})})]})}const tz="box-border relative pt-[2px] items-center border border-transparent min-h-[254px] outline-none rounded-md duration-200 ease-[cubic-bezier(0.4,0,0.2,1)] focus:border-primary-solid",cz="border-dotted-gray",iz="hover:bg-field-hover dark:hover:bg-field-hover-dark",az="pt-0 border-2 border-solid",lz="transition-colors duration-200 ease-[cubic-bezier(0,0,0.2,1)] border-2 border-solid border-green-500",sz="transition-colors duration-200 ease-[cubic-bezier(0,0,0.2,1)] border-2 border-solid border-red-500";function nt({propertyKey:e,value:t,setValue:c,error:i,showError:l,autoFocus:a,tableMode:s,property:d,includeDescription:u,context:A,isSubmitting:_}){if(!A.entityId)throw new Error("StorageUploadFieldBinding: Entity id is null");const g=Sn(),y=Nn(d)||!!d.disabled||_,{internalValue:h,setInternalValue:I,onFilesAdded:b,storage:p,onFileUploadComplete:w,storagePathBuilder:k,multipleFilesSupported:K}=_i({entityValues:A.values,entityId:A.entityId,path:A.path,property:d,propertyKey:e,value:t,storageSource:g,disabled:y,onChange:c});Ne({property:d,value:t,setValue:c});const m={id:A.entityId,values:A.values,path:A.path};return n.jsxs(n.Fragment,{children:[!s&&n.jsx(Ce,{icon:we(d),required:d.validation?.required,title:d.name,className:"text-text-secondary dark:text-text-secondary-dark ml-3.5"}),n.jsx(uz,{value:h,name:e,disabled:y,autoFocus:a,property:d,onChange:c,setInternalValue:I,onFilesAdded:b,entity:m,onFileUploadComplete:w,storagePathBuilder:k,storage:p,multipleFilesSupported:K}),n.jsx(Se,{includeDescription:u,showError:l,error:i,disabled:y,property:d})]})}function dz({storage:e,disabled:t,isDraggingOver:c,onFilesAdded:i,multipleFilesSupported:l,droppableProvided:a,autoFocus:s,internalValue:d,property:u,entity:A,onClear:_,metadata:g,storagePathBuilder:y,onFileUploadComplete:h,size:I,name:b,helpText:p}){const w=cn(),{getRootProps:k,getInputProps:K,isDragActive:m,isDragAccept:v,isDragReject:S}=er.useDropzone({accept:e.acceptedFiles?e.acceptedFiles.map(B=>({[B]:[]})).reduce((B,P)=>({...B,...P}),{}):void 0,disabled:t||c,noDragEventsBubbling:!0,maxSize:e.maxSize,onDrop:i,onDropRejected:(B,P)=>{for(const F of B)for(const D of F.errors)w.open({type:"error",message:`Error uploading file: File is larger than ${e.maxSize} bytes`})}});return n.jsxs("div",{...k(),className:E(qe,t?en:ze,tz,l&&d.length?"":"flex",ge,{[iz]:!m,[az]:m,[sz]:S,[lz]:v,[cz]:t}),children:[n.jsxs("div",{...a.droppableProps,ref:a.innerRef,className:E("flex items-center p-1 no-scrollbar",l&&d.length?"overflow-auto":"",l&&d.length?"min-h-[180px]":"min-h-[250px]"),children:[n.jsx("input",{autoFocus:s,...K()}),d.map((B,P)=>{let F;return B.storagePathOrDownloadUrl?F=n.jsx(bi,{name:`storage_preview_${B.storagePathOrDownloadUrl}`,property:u,disabled:t,entity:A,value:B.storagePathOrDownloadUrl,onRemove:_,size:B.size}):B.file&&(F=n.jsx(Ii,{entry:B,metadata:g,storagePath:y(B.file),onFileUploadComplete:h,imageSize:I==="medium"?220:118,simple:!1})),n.jsx(Kn.Draggable,{draggableId:`array_field_${b}_${B.id}`,index:P,children:(D,C)=>n.jsx("div",{tabIndex:-1,ref:D.innerRef,...D.draggableProps,...D.dragHandleProps,className:E(ge,"rounded-md"),style:{...D.draggableProps.style},children:F})},`array_field_${b}_${B.id}`)}),a.placeholder]}),n.jsx("div",{className:"flex-grow min-h-[38px] box-border m-2 text-center",children:n.jsx(j,{align:"center",variant:"label",children:p})})]})}function uz({property:e,name:t,value:c,setInternalValue:i,onChange:l,multipleFilesSupported:a,onFileUploadComplete:s,disabled:d,onFilesAdded:u,autoFocus:A,storage:_,entity:g,storagePathBuilder:y}){if(a){const m=e;if(m.of){if(Array.isArray(m.of)||m.of.dataType!=="string")throw Error("Storage field using array must be of data type string")}else throw Error("Storage field using array must be of data type string")}const h=_?.metadata,I=a?"small":"medium",b=f.useCallback((m,v)=>{if(!a)return;const S=[...c],B=S[m];S.splice(m,1),S.splice(v,0,B),i(S);const P=S.filter(F=>!!F.storagePathOrDownloadUrl).map(F=>F.storagePathOrDownloadUrl);l(P)},[a,l,i,c]),p=f.useCallback(m=>{m.destination&&b(m.source.index,m.destination.index)},[b]),w=f.useCallback(m=>{if(a){const v=c.filter(S=>S.storagePathOrDownloadUrl!==m);l(v.filter(S=>!!S.storagePathOrDownloadUrl).map(S=>S.storagePathOrDownloadUrl)),i(v)}else l(null),i([])},[c,a,l]),k=a?"Drag 'n' drop some files here, or click to select files":"Drag 'n' drop a file here, or click to select one",K=a?e.of:e;return n.jsx(Kn.DragDropContext,{onDragEnd:p,children:n.jsx(Kn.Droppable,{droppableId:`droppable_${t}`,direction:"horizontal",renderClone:(m,v,S)=>{const B=c[S.source.index];return n.jsx("div",{ref:m.innerRef,...m.draggableProps,...m.dragHandleProps,style:m.draggableProps.style,className:"rounded",children:n.jsx(bi,{name:`storage_preview_${B.storagePathOrDownloadUrl}`,property:K,disabled:!0,entity:g,value:B.storagePathOrDownloadUrl,onRemove:w,size:B.size})})},children:(m,v)=>n.jsx(dz,{storage:_,disabled:d,isDraggingOver:v.isDraggingOver,droppableProvided:m,onFilesAdded:u,multipleFilesSupported:a,autoFocus:A,internalValue:c,property:K,entity:g,onClear:w,metadata:h,storagePathBuilder:y,onFileUploadComplete:s,size:I,name:t,helpText:k})})})}function To({children:e,className:t,in:c=!1,duration:i=220}){return En(`Collapse-${i}`,`
68
+ `)?n.jsx("div",{children:a.map((l,s)=>n.jsxs(f.Fragment,{children:[n.jsx("span",{children:l}),s!==a.length-1&&n.jsx("br",{})]},`string_preview_${s}`))}):n.jsx(n.Fragment,{children:t})}}}function Jc({propertyKey:e,value:t,property:c,size:i,entity:a}){const l=ne(),s=sn({propertyKey:e,property:c,propertyValue:t,fields:l.fields});if(Array.isArray(s?.of))throw Error("Using array properties instead of single one in `of` in ArrayProperty");if(s?.dataType!=="array"||!s.of||s.of.dataType!=="map")throw Error("Picked wrong preview component ArrayOfMapsPreview");const d=s.of,u=d.properties;if(!u)throw Error(`You need to specify a 'properties' prop (or specify a custom field) in your map property ${e}`);const A=t,y=d.previewProperties;if(!A)return null;let h=y;return(!h||!h.length)&&(h=Object.keys(u),i&&(h=h.slice(0,3))),n.jsx("div",{className:"table-auto text-xs",children:n.jsx("div",{children:A&&A.map((I,_)=>n.jsx("div",{className:"border-b last:border-b-0",children:h&&h.map(g=>n.jsx("div",{className:"table-cell",children:n.jsx(ie,{children:n.jsx(Be,{propertyKey:g,value:I[g],property:u[g],entity:a,size:"small"})})},`table-cell-${g}`))},`table_${I}_${_}`))})})}function Lr({propertyKey:e,value:t,property:c,entity:i,size:a}){const l=ne(),s=sn({propertyKey:e,property:c,propertyValue:t,fields:l.fields});if(!s.of)throw Error(`You need to specify an 'of' prop (or specify a custom field) in your array property ${e}`);if(s.dataType!=="array")throw Error("Picked wrong preview component ArrayPreview");const d=t;if(!d)return null;const u=a==="medium"?"small":"tiny";return n.jsx("div",{className:"flex flex-col",children:d&&d.map((A,y)=>{const h=s.resolvedProperties[y]??s.resolvedProperties[y]??(Array.isArray(s.of)?s.of[y]:s.of);return h?n.jsx(f.Fragment,{children:n.jsx("div",{className:E(ue,"m-1 border-b last:border-b-0"),children:n.jsx(ie,{children:n.jsx(Be,{propertyKey:e,entity:i,value:A,property:h,size:u})})})},"preview_array_"+y):null})})}const nn=ce.memo(function(t){const c=t.reference;return c instanceof je?n.jsx(HG,{...t}):(console.warn("Reference preview received value of type",typeof c),n.jsx(Po,{onClick:t.onClick,size:t.size,children:n.jsx(we,{error:"Unexpected value. Click to edit",tooltip:JSON.stringify(c)})}))},zG);function zG(e,t){return e.disabled===t.disabled&&e.size===t.size&&e.onHover===t.onHover&&e.reference?.id===t.reference?.id&&e.reference?.path===t.reference?.path&&e.allowEntityNavigation===t.allowEntityNavigation}function HG({disabled:e,reference:t,previewProperties:c,size:i,onHover:a,onClick:l,allowEntityNavigation:s=!0}){const d=ne(),u=fe(),A=Sn(),y=u.getCollection(t.path);if(!y)throw Error(`Couldn't find the corresponding collection view for the path: ${t.path}`);const{entity:h,dataLoading:I,dataLoadingError:_}=Er({path:t.path,entityId:t.id,collection:y,useCache:!0});h&&Zc.set(t.pathWithId,h);const g=h??Zc.get(t.pathWithId),b=f.useMemo(()=>Me({collection:y,path:t.path,values:g?.values,fields:d.fields}),[y]),p=f.useMemo(()=>Mi(b,d.fields,c,i==="small"||i==="medium"?3:1),[c,b,i]);let w;return b?(t?g&&!g.values?w=n.jsx(we,{error:"Reference does not exist",tooltip:t.path}):w=n.jsxs(n.Fragment,{children:[n.jsxs("div",{className:"flex flex-col flex-grow w-full max-w-[calc(100%-52px)] m-1",children:[i!=="tiny"&&(t?n.jsx("div",{className:`${i!=="medium"?"block whitespace-nowrap overflow-hidden truncate":""}`,children:n.jsx(j,{variant:"caption",className:"font-mono",children:t.id})}):n.jsx(Ve,{})),p&&p.map(k=>{const v=b.properties[k];return v?n.jsx("div",{className:p.length>1?"my-0.5":"my-0",children:g?n.jsx(Be,{propertyKey:k,value:rn(g.values,k),property:v,entity:g,size:"tiny"}):n.jsx(Nn,{property:v,size:"tiny"})},"ref_prev_"+k):null})]}),n.jsx("div",{className:`my-${i==="tiny"?2:4}`,children:!e&&g&&s&&n.jsx(_e,{title:`See details for ${g.id}`,children:n.jsx(R,{color:"inherit",size:"small",onClick:k=>{k.stopPropagation(),d.onAnalyticsEvent?.("entity_click_from_reference",{path:g.path,entityId:g.id}),A.open({entityId:g.id,path:g.path,collection:b,updateUrl:!0})},children:n.jsx(Eo,{size:"small"})})})})]}):w=n.jsx(we,{error:"Reference not set"}),n.jsx(Po,{onClick:e?void 0:l,onHover:e?void 0:a,size:i,children:w})):n.jsx(we,{error:"Could not find collection with id "+b})}function Po({children:e,onHover:t,size:c,onClick:i}){return n.jsx(j,{variant:"label",className:E("bg-opacity-70 bg-gray-100 dark:bg-gray-800 dark:bg-opacity-60","w-full","flex","rounded-md","overflow-hidden",t?"hover:bg-opacity-90 dark:hover:bg-opacity-90":"",c==="medium"?"p-2":"p-1",c==="tiny"?"items-center":"","transition-colors duration-300 ease-in-out ",i?"cursor-pointer":""),style:{tabindex:0},onClick:a=>{i&&(a.preventDefault(),i(a))},children:e})}const Zc=new Map;function Xc({propertyKey:e,value:t,property:c,size:i}){const a=ne(),l=sn({propertyKey:e,property:c,propertyValue:t,fields:a.fields});if(Array.isArray(l?.of))throw Error("Using array properties instead of single one in `of` in ArrayProperty");if(l?.dataType!=="array"||!l.of||l.of.dataType!=="reference")throw Error("Picked wrong preview component ArrayOfReferencesPreview");const s=i==="medium"?"small":"tiny";return n.jsx("div",{className:"flex flex-col w-full",children:t&&t.map((d,u)=>{const A=l.of;return n.jsx("div",{className:"mt-1 mb-1 w-full",children:n.jsx(nn,{disabled:!A.path,previewProperties:A.previewProperties,size:s,reference:d})},`preview_array_ref_${e}_${u}`)})})}function xc({propertyKey:e,entity:t,value:c,property:i,size:a}){const l=ne(),s=sn({propertyKey:e,property:i,propertyValue:c,fields:l.fields});if(Array.isArray(s.of))throw Error("Using array properties instead of single one in `of` in ArrayProperty");if(s.dataType!=="array"||!s.of||s.of.dataType!=="string")throw Error("Picked wrong preview component ArrayOfStorageComponentsPreview");const d=a==="medium"?"small":"tiny";return n.jsx("div",{className:"flex flex-wrap gap-2",children:c&&c.map((u,A)=>n.jsx(ie,{children:n.jsx(Be,{propertyKey:e,value:u,entity:t,property:s.of,size:d})},`preview_array_storage_${e}_${A}`))})}function Qr({name:e,value:t,enumValues:c,size:i}){return n.jsx("div",{className:"flex flex-wrap gap-1.5",children:t&&t.map((a,l)=>n.jsx(ie,{children:n.jsx(Ee,{enumKey:a,enumValues:c,size:i!=="medium"?"small":"medium"})},`preview_array_ref_${e}_${l}`))})}function Vr({propertyKey:e,value:t,property:c,size:i}){if(c.dataType!=="array")throw Error("Picked wrong preview component ArrayEnumPreview");const a=c.of;if(!a.enumValues)throw Error("Picked wrong preview component ArrayEnumPreview");return t?n.jsx(Qr,{name:e,value:t,enumValues:a.enumValues,size:i}):null}function Rc({propertyKey:e,value:t,property:c,entity:i,size:a}){const l=ne(),s=sn({propertyKey:e,property:c,propertyValue:t,fields:l.fields});if(Array.isArray(s.of))throw Error("Using array properties instead of single one in `of` in ArrayProperty");if(!s.of||s.dataType!=="array"||s.of.dataType!=="string")throw Error("Picked wrong preview component ArrayOfStringsPreview");if(t&&!Array.isArray(t))return n.jsx("div",{children:`Unexpected value: ${t}`});const d=s.of;return n.jsx("div",{className:"flex flex-col gap-2",children:t&&t.map((u,A)=>n.jsx("div",{children:n.jsx(ie,{children:n.jsx(Or,{propertyKey:e,property:d,value:u,entity:i,size:a})})},`preview_array_strings_${e}_${A}`))})}function ei({propertyKey:e,value:t,property:c,size:i,entity:a}){const l=ne(),s=sn({propertyKey:e,property:c,propertyValue:t,fields:l.fields});if(s?.dataType!=="array")throw Error("Picked wrong preview component ArrayPreview");if(!s?.oneOf)throw Error(`You need to specify an 'of' or 'oneOf' prop (or specify a custom field) in your array property ${e}`);const d=t;if(!d)return null;const u=i==="medium"?"small":"tiny",A=s.oneOf.typeField??xn,y=s.oneOf.valueField??wo,h=s.oneOf.properties;return n.jsx("div",{className:"flex flex-col",children:d&&d.map((I,_)=>n.jsx(f.Fragment,{children:n.jsx("div",{className:E(ue,"m-1 border-b last:border-b-0"),children:n.jsx(ie,{children:I&&n.jsx(Be,{propertyKey:e,value:I[y],entity:a,property:s.resolvedProperties[_]??h[I[A]],size:u})})})},"preview_array_"+I+"_"+_))})}function ni({propertyKey:e,value:t,property:c,entity:i,size:a}){if(c.dataType!=="map")throw Error("Picked wrong preview component MapPropertyPreview");const l=c;if(e==="result.suggestions"&&console.log({propertyKey:e,property:c,value:t}),!l.properties||Object.keys(l.properties??{}).length===0)return n.jsx(Wr,{value:t});if(!t)return null;const s=Object.keys(l.properties);return a!=="medium"?n.jsx("div",{className:"w-full flex flex-col space-y-1 md:space-y-2",children:s.map((d,u)=>n.jsx("div",{children:n.jsx(ie,{children:n.jsx(Be,{propertyKey:d,value:t[d],property:l.properties[d],entity:i,size:a})},"map_preview_"+l.name+d+u)},`map_${d}`))}):n.jsx("div",{className:"flex flex-col gap-1 w-full",children:s&&s.map((d,u)=>{const A=l.properties[d];return n.jsxs("div",{className:E(ue,"last:border-b-0 border-b"),children:[n.jsxs("div",{className:"flex flex-row pt-0.5 pb-0.5 gap-2",children:[n.jsx("div",{className:"min-w-[140px] w-[25%] py-1",children:n.jsx(j,{variant:"caption",className:"font-mono break-words",color:"secondary",children:A.name})}),n.jsx("div",{className:"flex-grow max-w-[75%]",children:n.jsx(ie,{children:!(A.dataType==="map"||A==="array")&&n.jsx(Be,{propertyKey:d,value:t[d],property:A,entity:i,size:a})})})]}),(A.dataType==="map"||A==="array")&&n.jsx("div",{className:E(ue,"border-l pl-4 ml-2 my-2"),children:n.jsx(Be,{propertyKey:d,value:t[d],property:A,entity:i,size:a})})]},`map_preview_table_${d}}`)})})}function Wr({value:e}){return typeof e!="object"?null:n.jsx("div",{className:"flex flex-col gap-1 w-full",children:Object.entries(e).map(([t,c])=>n.jsxs("div",{className:E(ue,"last:border-b-0 border-b"),children:[n.jsxs("div",{className:"flex flex-row pt-0.5 pb-0.5 gap-2",children:[n.jsx("div",{className:"min-w-[140px] w-[25%] py-1",children:n.jsx(j,{variant:"caption",className:"font-mono break-words",color:"secondary",children:t})},`table-cell-title-${t}-${t}`),n.jsx("div",{className:"flex-grow max-w-[75%]",children:typeof c!="object"&&n.jsx(j,{children:n.jsx(ie,{children:c&&c.toString()})})})]}),typeof c=="object"&&n.jsx("div",{className:E(ue,"border-l pl-4"),children:n.jsx(Wr,{value:c})})]},`map_preview_table_${t}}`))})}const oi="MMMM dd, yyyy, HH:mm:ss";function ri({date:e}){const t=ne(),c=t?.locale?Ut[t?.locale]:void 0,i=t?.dateTimeFormat??oi,a=e?Ea(e,i,{locale:c}):"";return n.jsx(n.Fragment,{children:a})}const UG={large:"w-6 h-6 rounded flex items-center justify-center",medium:"w-5 h-5 rounded flex items-center justify-center",small:"w-4 h-4 rounded flex items-center justify-center"},YG={medium:"w-10 h-10",small:"w-8 h-8",large:"w-12 h-12"},Gr=({checked:e,indeterminate:t=!1,disabled:c,size:i="medium",onCheckedChange:a})=>{const l=t?!1:e;return n.jsx("div",{className:E(YG[i],"inline-flex items-center justify-center p-2 text-sm font-medium focus:outline-none transition-colors ease-in-out duration-150",a?"rounded-full hover:bg-gray-200 hover:bg-opacity-75 dark:hover:bg-gray-700 dark:hover:bg-opacity-75":"",a?"cursor-pointer":"cursor-default"),children:n.jsx(Ht.Root,{asChild:!0,checked:l,disabled:c,onCheckedChange:c?void 0:a,children:n.jsx("div",{className:E("border-2 relative transition-colors ease-in-out duration-150",UG[i],c?"bg-gray-400 dark:bg-gray-600":l?"bg-primary":"bg-white dark:bg-gray-900",l?"text-gray-100 dark:text-gray-900":"",c||l?"border-transparent":"border-gray-800 dark:border-gray-200"),children:n.jsx(Ht.Indicator,{asChild:!0,children:t?n.jsx("div",{className:"w-full h-[1px] bg-currentColor"}):n.jsx(r,{iconKey:"check",size:20,className:"absolute"})})})})})};function ti({value:e}){return n.jsx(Gr,{checked:e})}function ci({value:e,property:t,size:c}){if(t.enumValues){const i=e,a=tn(t.enumValues);return a?n.jsx(Ee,{enumKey:i,enumValues:a,size:c!=="medium"?"small":"medium"}):n.jsx(n.Fragment,{children:e})}else return n.jsx(n.Fragment,{children:e})}function Be(e){const t=ne();let c;const{property:i,propertyKey:a,value:l,size:s,height:d,width:u,entity:A}=e,y=Ne({propertyKey:a,propertyOrBuilder:i,propertyValue:l,fields:t.fields});if(l===void 0||y===null)c=n.jsx(Fn,{});else if(y.Preview)c=f.createElement(y.Preview,{propertyKey:a,value:l,property:y,size:s,height:d,width:u,entity:A,customProps:y.customProps});else if(l===null)c=n.jsx(Fn,{});else if(y.dataType==="string"){const h=y;typeof l=="string"?h.url?typeof h.url=="boolean"?c=n.jsx(ao,{size:e.size,url:l}):typeof h.url=="string"&&(c=n.jsx(ao,{size:e.size,url:l,previewType:h.url})):h.storage?c=n.jsx($c,{storeUrl:y.storage?.storeUrl??!1,size:e.size,storagePathOrDownloadUrl:l}):h.markdown?c=n.jsx(lo,{source:l}):c=n.jsx(Or,{...e,property:h,value:l}):c=bn(a,y.dataType,l)}else if(y.dataType==="array")if(l instanceof Array){const h=y;if(!h.of&&!h.oneOf)throw Error(`You need to specify an 'of' or 'oneOf' prop (or specify a custom field) in your array property ${a}`);h.of?Array.isArray(h.of)?c=n.jsx(Lr,{...e,value:l,property:y}):h.of.dataType==="map"?c=n.jsx(Jc,{propertyKey:a,property:y,value:l,entity:A,size:s}):h.of.dataType==="reference"?c=n.jsx(Xc,{...e,value:l,property:y}):h.of.dataType==="string"?h.of.enumValues?c=n.jsx(Vr,{...e,value:l,property:y}):h.of.storage?c=n.jsx(xc,{...e,value:l,property:y}):c=n.jsx(Rc,{...e,value:l,property:y}):h.of.dataType==="number"&&h.of.enumValues?c=n.jsx(Vr,{...e,value:l,property:y}):c=n.jsx(Lr,{...e,value:l,property:y}):h.oneOf&&(c=n.jsx(ei,{...e,value:l,property:y}))}else c=bn(a,y.dataType,l);else y.dataType==="map"?typeof l=="object"?c=n.jsx(ni,{...e,property:y}):c=bn(a,y.dataType,l):y.dataType==="date"?l instanceof Date?c=n.jsx(ri,{date:l}):c=bn(a,y.dataType,l):y.dataType==="reference"?typeof y.path=="string"?l instanceof je?c=n.jsx(nn,{disabled:!y.path,previewProperties:y.previewProperties,size:e.size,onClick:e.onClick,reference:l}):c=bn(a,y.dataType,l):c=n.jsx(Fn,{}):y.dataType==="boolean"?typeof l=="boolean"?c=n.jsx(ti,{value:l}):c=bn(a,y.dataType,l):y.dataType==="number"?typeof l=="number"?c=n.jsx(ci,{...e,value:l,property:y}):c=bn(a,y.dataType,l):c=JSON.stringify(l);return c??n.jsx(Fn,{})}function bn(e,t,c){return console.warn(`Unexpected value for property ${e}, of type ${t}`,c),n.jsx(we,{title:"Unexpected value",error:`${JSON.stringify(c)}`})}const $G=ce.memo(function({builder:t}){const[c,i]=f.useState(!0),[a,l]=f.useState(null);return f.useEffect(()=>{let s=!1;return t.then(d=>{s||(i(!1),l(d))}).catch(d=>{i(!1),console.error(d)}),()=>{s=!0}},[t]),c?n.jsx(Ve,{}):n.jsx(ce.Fragment,{children:a})}),jG=new zt({html:!0}),lo=f.memo(function({source:t,className:c}){const i=f.useMemo(()=>jG.render(typeof t=="string"?t:""),[t]);return n.jsx("div",{className:c,dangerouslySetInnerHTML:{__html:i}})},de);function zr({propertyKey:e,value:t,setValue:c,error:i,showError:a,disabled:l,autoFocus:s,touched:d,property:u,includeDescription:A}){const y=u.enumValues;Te({property:u,value:t,setValue:c});const h=f.useCallback(I=>{I.stopPropagation(),I.preventDefault(),c(null)},[c]);return n.jsxs(n.Fragment,{children:[n.jsx(Xe,{value:t?t.toString():"",disabled:l,position:"item-aligned",inputClassName:E("w-full"),label:n.jsx(Ce,{icon:ke(u,"small"),required:u.validation?.required,title:u.name,className:"text-text-secondary dark:text-text-secondary-dark ml-3.5"}),endAdornment:u.clearable&&n.jsx(R,{onClick:h,children:n.jsx(cn,{})}),onValueChange:I=>{const _=I?u.dataType==="number"?parseFloat(I):I:null;return c(_)},renderValue:I=>n.jsx(Ee,{enumKey:I,enumValues:y,size:"medium"}),children:y&&y.map(I=>n.jsx(xe,{value:String(I.id),children:n.jsx(Ee,{enumKey:String(I.id),enumValues:y,size:"medium"})},I.id))}),n.jsx(Se,{includeDescription:A,showError:a,error:i,disabled:l,property:u})]})}function ii({children:e,error:t}){return n.jsx("div",{className:E("text-sm font-medium ml-3.5 mb-1",t?"text-red-500 dark:text-red-600":"text-gray-500 dark:text-gray-300"),children:e})}function Do(e,t,c=!0){f.useEffect(()=>{if(!c)return;function i(a){ai(a.target)||e.current&&!e.current.contains(a.target)&&t()}return document.addEventListener("mousedown",i),()=>{document.removeEventListener("mousedown",i)}},[e,c,t])}function ai(e){return e instanceof HTMLElement?e.getAttribute("role")==="presentation"?!0:ai(e.parentNode):!1}const Hr=ce.createContext({});function Ur({value:e,open:t,onMultiValueChange:c,size:i="medium",label:a,disabled:l,renderValue:s,renderValues:d,includeFocusOutline:u=!0,containerClassName:A,className:y,children:h,error:I}){const _=ce.useRef(null),g=ce.useRef(null),b=ce.useRef(null);Do(b,()=>w(!1));const[p,w]=ce.useState(!1);f.useEffect(()=>{w(t??!1)},[t]);const k=ce.useCallback(S=>{Array.isArray(e)&&e.includes(S)?c?.(e.filter(T=>T!==S)):c?.([...e??[],S])},[e,c]),[v,K]=ce.useState(""),[m,C]=ce.useState(null),B=ce.useCallback(S=>{const T=g.current;if(T){if((S.key==="Delete"||S.key==="Backspace")&&T.value===""){const N=[...e??[]];N.pop(),c?.(N)}S.key==="Escape"&&(T.blur(),w(!1),S.stopPropagation())}},[c,e]),P=ce.useCallback(()=>{C(_.current?.getBoundingClientRect()??null),w(!0)},[]),F=m??_.current?.getBoundingClientRect(),D=window.innerHeight-(F?.top??0)-(F?.height??0)-16;return n.jsxs(n.Fragment,{children:[typeof a=="string"?n.jsx(ii,{error:I,children:a}):a,n.jsxs(go.Command,{onKeyDown:B,onClick:()=>{g.current?.focus(),P()},className:E("relative overflow-visible bg-transparent",A),children:[n.jsxs("div",{ref:_,className:E("flex flex-row",i==="small"?"min-h-[42px]":"min-h-[64px]","select-none rounded-md text-sm",Je,l?Re:We,"relative flex items-center","p-4",I?"text-red-500 dark:text-red-600":"focus:text-text-primary dark:focus:text-text-primary-dark",I?"border border-red-500 dark:border-red-600":"",u?he:"",y),children:[n.jsxs("div",{className:E("flex-grow flex gap-1.5 flex-wrap items-center"),children:[s&&(e??[]).map((S,T)=>s(S,T)),d&&d(e??[]),n.jsx(go.Command.Input,{ref:g,value:v,onValueChange:K,onFocus:P,className:"ml-2 bg-transparent outline-none flex-1 h-full w-full "})]}),n.jsx("div",{className:"px-2 h-full flex items-center",children:n.jsx(oo,{size:"small",className:E("transition ",p?"rotate-180":"")})})]}),n.jsx(Ye.Root,{open:p,onOpenChange:w,children:n.jsx(Ye.Portal,{children:n.jsx(Hr.Provider,{value:{fieldValue:e,setInputValue:K,onValueChangeInternal:k},children:n.jsx("div",{ref:b,className:"z-50 absolute overflow-auto outline-none",style:{pointerEvents:p?"auto":"none",top:(F?.top??0)+(F?.height??0),left:F?.left,width:F?.width,maxHeight:D},children:n.jsx(go.Command.Group,{className:"mt-2 text-gray-900 dark:text-white animate-in z-50 border border-gray-200 dark:border-gray-800 bg-white dark:bg-gray-800 p-2 rounded-lg shadow-lg flex flex-col outline-none w-full",children:h})})})})})]})]})}function Yr({children:e,value:t,className:c}){const i=ce.useContext(Hr);if(!i)throw new Error("MultiSelectItem must be used inside a MultiSelect");const{fieldValue:a,setInputValue:l,onValueChangeInternal:s}=i;return n.jsx(go.Command.Item,{onMouseDown:d=>{d.preventDefault(),d.stopPropagation()},onSelect:d=>{l(""),s(t)},className:E((a??[]).includes(t)?"bg-gray-200 dark:bg-gray-950":"","cursor-pointer","m-1","ring-offset-transparent","p-2 rounded aria-[selected=true]:outline-none aria-[selected=true]:ring-2 aria-[selected=true]:ring-primary aria-[selected=true]:ring-opacity-75 aria-[selected=true]:ring-offset-2","aria-[selected=true]:bg-gray-100 aria-[selected=true]:dark:bg-gray-900","cursor-pointer p-2 rounded aria-[selected=true]:bg-gray-100 aria-[selected=true]:dark:bg-gray-900",c),children:e})}function $r({propertyKey:e,value:t,setValue:c,error:i,showError:a,disabled:l,property:s,includeDescription:d,autoFocus:u}){const A=s.of;if(!A)throw Error("Using wrong component ArrayEnumSelect");if(Array.isArray(A))throw Error("Using array properties instead of single one in `of` in ArrayProperty");if(A.dataType!=="string"&&A.dataType!=="number")throw Error("Field misconfiguration: array field of type string or number");const y=tn(A.enumValues);if(!y)throw console.error(s),Error("Field misconfiguration: array field of type string or number needs to have enumValues");Te({property:s,value:t,setValue:c});const h=!!t&&Array.isArray(t),I=f.useCallback((_,g)=>{const b=_!==void 0?Ko(y,_):void 0;return n.jsxs(Ee,{enumKey:_,enumValues:y,size:"medium",children:[b?.label??_,!g&&n.jsx("button",{className:"ml-1 ring-offset-background rounded-full outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2",onMouseDown:p=>{p.preventDefault(),p.stopPropagation()},onClick:p=>{p.preventDefault(),p.stopPropagation(),c(t.filter(w=>w!==_))},children:n.jsx(Ir,{size:"smallest"})})]},_)},[y,c,t]);return n.jsxs("div",{className:"mt-0.5 ml-0.5 mt-2",children:[n.jsx(Ur,{value:h?t.map(_=>_.toString()):[],disabled:l,label:n.jsx(Ce,{icon:ke(s,"small"),required:s.validation?.required,title:s.name,className:"text-text-secondary dark:text-text-secondary-dark ml-3.5"}),renderValue:f.useCallback(_=>I(_,!1),[I]),onMultiValueChange:_=>{let g;return A&&A?.dataType==="number"?g=_?_.map(b=>parseFloat(b)):[]:g=_,c(g)},children:y.map(_=>String(_.id)).map(_=>n.jsx(Yr,{value:_,children:I(_,!0)},_))}),n.jsx(Se,{includeDescription:d,showError:a,error:i,disabled:l,property:s})]})}function li({propertyKey:e,value:t,error:c,showError:i,disabled:a,isSubmitting:l,tableMode:s,property:d,includeDescription:u,setValue:A,setFieldValue:y}){const h=d.of;if(h.dataType!=="reference")throw Error("ArrayOfReferencesField expected a property containing references");const I=d.expanded===void 0?!0:d.expanded,[_,g]=f.useState(!1),b=t&&Array.isArray(t)?t.map(P=>P.id):[];Te({property:d,value:t,setValue:A});const p=fe(),w=f.useMemo(()=>h.path?p.getCollection(h.path):void 0,[h.path]);if(!w)throw Error(`Couldn't find the corresponding collection for the path: ${h.path}`);const k=f.useCallback(P=>{A(P.map(F=>hn(F)))},[A]),v=io({multiselect:!0,path:h.path,collection:w,onMultipleEntitiesSelected:k,selectedEntityIds:b,forceFilter:h.forceFilter}),K=f.useCallback(P=>{P.preventDefault(),v.open()},[v]),m=f.useCallback((P,F)=>{const D=t&&t.length>P?t[P]:void 0;return D?n.jsx("div",{onMouseEnter:()=>g(!0),onMouseMove:()=>g(!0),onMouseLeave:()=>g(!1),children:n.jsx(nn,{disabled:!h.path,previewProperties:h.previewProperties,size:"medium",onClick:K,reference:D,onHover:_})}):n.jsx("div",{children:"Internal ERROR"})},[h.path,h.previewProperties,_,t]),C=n.jsx(Ce,{icon:ke(d,"small"),required:d.validation?.required,title:d.name,className:"text-text-secondary dark:text-text-secondary-dark"}),B=n.jsxs(n.Fragment,{children:[!w&&n.jsx(we,{error:"The specified collection does not exist. Check console"}),w&&n.jsxs(n.Fragment,{children:[n.jsx(Co,{value:t,addLabel:d.name?"Add reference to "+d.name:"Add reference",name:e,buildEntry:m,disabled:l,setFieldValue:y,newDefaultEntry:d.of.defaultValue}),n.jsxs(te,{className:"my-4 justify-center text-left",variant:"outlined",color:"primary",disabled:l,onClick:K,children:["Edit ",d.name]})]})]});return n.jsxs(n.Fragment,{children:[!s&&n.jsx(dn,{className:"px-2 md:px-4 pb-2 md:pb-4 pt-1 md:pt-2",initiallyExpanded:I,title:C,children:B}),s&&B,n.jsx(Se,{includeDescription:u,showError:i,error:c,disabled:a,property:d})]})}const qG=/[A-Z]{2,}(?=[A-Z][a-z]+[0-9]*|\b)|[A-Z]?[a-z]+[0-9]*|[A-Z]|[0-9]+/g,JG=e=>{const t=e.match(qG);return t?t.map(c=>c.toLowerCase()).join("-"):""},ZG=/[A-Z]{2,}(?=[A-Z][a-z]+[0-9]*|\b)|[A-Z]?[a-z]+[0-9]*|[A-Z]|[0-9]+/g,XG=e=>{const t=e.match(ZG);return t?t.map(c=>c.toLowerCase()).join("_"):""};function Tn(e=5){return Math.random().toString(36).slice(2,2+e)}function xG(){return Math.floor(Math.random()*16777215).toString(16)}function No(e,t="_",c=!0){if(!e)return"";const i="ãàáäâẽèéëêìíïîõòóöôùúüûñç·/_,:;-",a=`aaaaaeeeeeiiiiooooouuuunc${t}${t}${t}${t}${t}${t}${t}`;for(let l=0,s=i.length;l<s;l++)e=e.replace(new RegExp(i.charAt(l),"g"),a.charAt(l));return e=e.toString().replace(/\s+/g,t).replace(/&/g,t).replace(/[^\w\\-]+/g,"").replace(new RegExp("\\"+t+"\\"+t+"+","g"),t).trim().replace(/^\s+|\s+$/g,""),c?e.toLowerCase():e}async function RG(e,t,c,i,a,l,s,d){let u;return typeof e=="function"?(u=await e({path:a,entityId:i,values:c,property:l,file:s,storage:t,propertyKey:d}),u||console.warn("Storage callback returned empty result. Using default name value")):u=si(s,e,i,d,a),u||(u=Tn()+"_"+s.name),u}function ez(e,t,c,i,a,l,s,d){let u;return typeof e=="function"?(u=e({path:a,entityId:i,values:c,property:l,file:s,storage:t,propertyKey:d}),u||console.warn("Storage callback returned empty result. Using default name value")):u=si(s,e,i,d,a),u||(u=Tn()+"_"+s.name),u}function si(e,t,c,i,a){const l=e.name.split(".").pop();let s=t.replace("{entityId}",c).replace("{propertyKey}",i).replace("{rand}",Tn()).replace("{file}",e.name).replace("{file.type}",e.type).replace("{path}",a);if(l){s=s.replace("{file.ext}",l);const d=e.name.replace(`.${l}`,"");s=s.replace("{file.name}",d)}return s||(s=Tn()+"_"+e.name),s}function di({entityId:e,entityValues:t,path:c,value:i,property:a,propertyKey:l,storageSource:s,disabled:d,onChange:u}){const A=a.dataType==="string"?a.storage:a.dataType==="array"&&a.of.dataType==="string"?a.of.storage:void 0,y=a.dataType==="array";if(!A)throw Error("Storage meta must be specified");const h=A?.metadata,I=y?"small":"medium",_=A?.imageCompression,g=(y?i??[]:i?[i]:[]).map(B=>({id:jr(),storagePathOrDownloadUrl:B,metadata:h,size:I})),[b,p]=f.useState(i),[w,k]=f.useState(g);f.useEffect(()=>{de(b,i)||(p(i),k(g))},[g,i,b]);const v=f.useCallback(async B=>{if(A.fileName){const P=await RG(A.fileName,A,t,e,c,a,B,l);if(!P||P.length===0)throw Error("You need to return a valid filename");return P}return Tn()+"_"+B.name},[e,t,c,a,l,A]),K=f.useCallback(B=>ez(A.storagePath,A,t,e,c,a,B,l)??"/",[e,t,c,a,l,A]),m=f.useCallback(async(B,P,F)=>{console.debug("onFileUploadComplete",B,P);let D=B;if(A.storeUrl&&(D=(await s.getDownloadURL(B)).url),A.postProcess&&D&&(D=await A.postProcess(D)),!D){console.warn("uploadPathOrDownloadUrl is null");return}let S;P.storagePathOrDownloadUrl=D,P.metadata=F,S=[...w],S=ui(S),k(S);const T=S.filter(N=>!!N.storagePathOrDownloadUrl).map(N=>N.storagePathOrDownloadUrl);u(y?T:T?T[0]:null)},[w,y,u,A,s]),C=f.useCallback(async B=>{if(!B.length||d)return;let P;if(y)P=[...w,...await Promise.all(B.map(async F=>(_&&qr(F)&&(F=await Ai(F,_)),{id:jr(),file:F,fileName:await v(F),metadata:h,size:I})))];else{let F=B[0];_&&qr(F)&&(F=await Ai(F,_)),P=[{id:jr(),file:F,fileName:await v(F),metadata:h,size:I}]}P=ui(P),k(P)},[d,v,w,h,y,I]);return{internalValue:w,setInternalValue:k,storage:A,fileNameBuilder:v,storagePathBuilder:K,onFileUploadComplete:m,onFilesAdded:C,multipleFilesSupported:y}}function ui(e){return e.filter((t,c)=>(e.map(i=>i.storagePathOrDownloadUrl).indexOf(t.storagePathOrDownloadUrl)===c||!t.storagePathOrDownloadUrl)&&(e.map(i=>i.file).indexOf(t.file)===c||!t.file))}function jr(){return Math.floor(Math.random()*Math.floor(Number.MAX_SAFE_INTEGER))}const fi={"image/jpeg":"JPEG","image/png":"PNG","image/webp":"WEBP"},qr=e=>fi[e.type]?fi[e.type]:null,nz=100,Ai=(e,t)=>new Promise(c=>{const i=t.quality===void 0?nz:t.quality,a=i>=0&&i<=100?i:100,l=qr(e);if(!l)throw Error("resizeAndCompressImage: Unsupported image format");Pa.imageFileResizer(e,t.maxWidth||Number.MAX_VALUE,t.maxHeight||Number.MAX_VALUE,l,a,0,s=>c(s),"file")});function _i({storagePath:e,entry:t,metadata:c,onFileUploadComplete:i,imageSize:a,simple:l}){const s=Bn(),d=an(),[u,A]=f.useState(),[y,h]=f.useState(!1),I=f.useRef(!1),_=f.useRef(!1),g=f.useCallback((b,p)=>{_.current||(_.current=!0,A(void 0),h(!0),s.uploadFile({file:b,fileName:p,path:e,metadata:c}).then(async({path:w})=>{console.debug("Upload successful"),await i(w,t,c),I.current&&h(!1)}).catch(w=>{console.warn("Upload error",w),I.current&&(A(w),h(!1),d.open({type:"error",message:"Error uploading file: "+w.message}))}).finally(()=>{_.current=!1}))},[t,c,i,s,e]);return f.useEffect(()=>(I.current=!0,t.file&&g(t.file,t.fileName),()=>{I.current=!1}),[t.file,t.fileName,g]),l?n.jsx("div",{className:`m-4 w-${a} h-${a}`,children:y&&n.jsx(Ve,{className:`w-${a} h-${a}`})}):n.jsxs("div",{className:E(Ge,"relative m-4 border-box flex items-center justify-center",`min-w-[${a}px] min-h-[${a}px]`),children:[y&&n.jsx(Ve,{className:"w-full h-full"}),u&&n.jsx(we,{title:"Error uploading file",error:u})]})}function yi({name:e,property:t,value:c,entity:i,onRemove:a,disabled:l,size:s}){return n.jsxs("div",{className:E(Ge,"relative m-4 border-box flex items-center justify-center",s==="medium"?"min-w-[220px] min-h-[220px] max-w-[220px]":"min-w-[118px] min-h-[118px] max-w-[118px]"),children:[!l&&n.jsx("div",{className:"absolute rounded-full -top-2 -right-2 z-10 bg-white dark:bg-gray-900",children:n.jsx(_e,{title:"Remove",children:n.jsx(R,{size:"small",onClick:d=>{d.stopPropagation(),a(c)},children:n.jsx(to,{size:"small"})})})}),c&&n.jsx(ie,{children:n.jsx(Be,{propertyKey:e,value:c,property:t,entity:i,size:s})})]})}const oz="box-border relative pt-[2px] items-center border border-transparent min-h-[254px] outline-none rounded-md duration-200 ease-[cubic-bezier(0.4,0,0.2,1)] focus:border-primary-solid",rz="border-dotted-gray",tz="hover:bg-field-hover dark:hover:bg-field-hover-dark",cz="pt-0 border-2 border-solid",iz="transition-colors duration-200 ease-[cubic-bezier(0,0,0.2,1)] border-2 border-solid border-green-500",az="transition-colors duration-200 ease-[cubic-bezier(0,0,0.2,1)] border-2 border-solid border-red-500";function Jr({propertyKey:e,value:t,setValue:c,error:i,showError:a,autoFocus:l,tableMode:s,property:d,includeDescription:u,context:A,isSubmitting:y}){if(!A.entityId)throw new Error("StorageUploadFieldBinding: Entity id is null");const h=Bn(),I=Cn(d)||!!d.disabled||y,{internalValue:_,setInternalValue:g,onFilesAdded:b,storage:p,onFileUploadComplete:w,storagePathBuilder:k,multipleFilesSupported:v}=di({entityValues:A.values,entityId:A.entityId,path:A.path,property:d,propertyKey:e,value:t,storageSource:h,disabled:I,onChange:c});Te({property:d,value:t,setValue:c});const K={id:A.entityId,values:A.values,path:A.path};return n.jsxs(n.Fragment,{children:[!s&&n.jsx(Ce,{icon:ke(d,"small"),required:d.validation?.required,title:d.name,className:"text-text-secondary dark:text-text-secondary-dark ml-3.5"}),n.jsx(sz,{value:_,name:e,disabled:I,autoFocus:l,property:d,onChange:c,setInternalValue:g,onFilesAdded:b,entity:K,onFileUploadComplete:w,storagePathBuilder:k,storage:p,multipleFilesSupported:v}),n.jsx(Se,{includeDescription:u,showError:a,error:i,disabled:I,property:d})]})}function lz({storage:e,disabled:t,isDraggingOver:c,onFilesAdded:i,multipleFilesSupported:a,droppableProvided:l,autoFocus:s,internalValue:d,property:u,entity:A,onClear:y,metadata:h,storagePathBuilder:I,onFileUploadComplete:_,size:g,name:b,helpText:p}){const w=an(),{getRootProps:k,getInputProps:v,isDragActive:K,isDragAccept:m,isDragReject:C}=Ro.useDropzone({accept:e.acceptedFiles?e.acceptedFiles.map(B=>({[B]:[]})).reduce((B,P)=>({...B,...P}),{}):void 0,disabled:t||c,noDragEventsBubbling:!0,maxSize:e.maxSize,onDrop:i,onDropRejected:(B,P)=>{for(const F of B)for(const D of F.errors)w.open({type:"error",message:`Error uploading file: File is larger than ${e.maxSize} bytes`})}});return n.jsxs("div",{...k(),className:E(Je,t?Re:We,oz,a&&d.length?"":"flex",he,{[tz]:!K,[cz]:K,[az]:C,[iz]:m,[rz]:t}),children:[n.jsxs("div",{...l.droppableProps,ref:l.innerRef,className:E("flex items-center p-1 no-scrollbar",a&&d.length?"overflow-auto":"",a&&d.length?"min-h-[180px]":"min-h-[250px]"),children:[n.jsx("input",{autoFocus:s,...v()}),d.map((B,P)=>{let F;return B.storagePathOrDownloadUrl?F=n.jsx(yi,{name:`storage_preview_${B.storagePathOrDownloadUrl}`,property:u,disabled:t,entity:A,value:B.storagePathOrDownloadUrl,onRemove:y,size:B.size}):B.file&&(F=n.jsx(_i,{entry:B,metadata:h,storagePath:I(B.file),onFileUploadComplete:_,imageSize:g==="medium"?220:118,simple:!1})),n.jsx(Kn.Draggable,{draggableId:`array_field_${b}_${B.id}`,index:P,children:(D,S)=>n.jsx("div",{tabIndex:-1,ref:D.innerRef,...D.draggableProps,...D.dragHandleProps,className:E(he,"rounded-md"),style:{...D.draggableProps.style},children:F})},`array_field_${b}_${B.id}`)}),l.placeholder]}),n.jsx("div",{className:"flex-grow min-h-[38px] box-border m-2 text-center",children:n.jsx(j,{align:"center",variant:"label",children:p})})]})}function sz({property:e,name:t,value:c,setInternalValue:i,onChange:a,multipleFilesSupported:l,onFileUploadComplete:s,disabled:d,onFilesAdded:u,autoFocus:A,storage:y,entity:h,storagePathBuilder:I}){if(l){const K=e;if(K.of){if(Array.isArray(K.of)||K.of.dataType!=="string")throw Error("Storage field using array must be of data type string")}else throw Error("Storage field using array must be of data type string")}const _=y?.metadata,g=l?"small":"medium",b=f.useCallback((K,m)=>{if(!l)return;const C=[...c],B=C[K];C.splice(K,1),C.splice(m,0,B),i(C);const P=C.filter(F=>!!F.storagePathOrDownloadUrl).map(F=>F.storagePathOrDownloadUrl);a(P)},[l,a,i,c]),p=f.useCallback(K=>{K.destination&&b(K.source.index,K.destination.index)},[b]),w=f.useCallback(K=>{if(l){const m=c.filter(C=>C.storagePathOrDownloadUrl!==K);a(m.filter(C=>!!C.storagePathOrDownloadUrl).map(C=>C.storagePathOrDownloadUrl)),i(m)}else a(null),i([])},[c,l,a]),k=l?"Drag 'n' drop some files here, or click to select files":"Drag 'n' drop a file here, or click to select one",v=l?e.of:e;return n.jsx(Kn.DragDropContext,{onDragEnd:p,children:n.jsx(Kn.Droppable,{droppableId:`droppable_${t}`,direction:"horizontal",renderClone:(K,m,C)=>{const B=c[C.source.index];return n.jsx("div",{ref:K.innerRef,...K.draggableProps,...K.dragHandleProps,style:K.draggableProps.style,className:"rounded",children:n.jsx(yi,{name:`storage_preview_${B.storagePathOrDownloadUrl}`,property:v,disabled:!0,entity:h,value:B.storagePathOrDownloadUrl,onRemove:w,size:B.size})})},children:(K,m)=>n.jsx(lz,{storage:y,disabled:d,isDraggingOver:m.isDraggingOver,droppableProvided:K,onFilesAdded:u,multipleFilesSupported:l,autoFocus:A,internalValue:c,property:v,entity:h,onClear:w,metadata:_,storagePathBuilder:I,onFileUploadComplete:s,size:g,name:t,helpText:k})})})}function To({children:e,className:t,in:c=!1,duration:i=220}){return Dn(`Collapse-${i}`,`
69
69
  .CollapseContent-${i} {
70
70
  overflow: hidden;
71
71
  }
@@ -93,7 +93,7 @@
93
93
  height: 0;
94
94
  }
95
95
  }
96
- `),n.jsx(qn.Root,{open:c,className:t,children:n.jsx(qn.Content,{className:E(`CollapseContent-${i}`),children:e})})}function Tn({propertyKey:e,value:t,setValue:c,error:i,showError:l,disabled:a,autoFocus:s,property:d,includeDescription:u}){let A,_;d.dataType==="string"&&(A=d.multiline,_=d.url),Ne({property:d,value:t,setValue:c});const g=f.useCallback(b=>{b.stopPropagation(),b.preventDefault(),c(null)},[c]),y=b=>{if(I==="number"){const p=b.target.value?parseFloat(b.target.value):void 0;p&&isNaN(p)?c(null):p!=null?c(p):c(null)}else c(b.target.value)},h=!!A,I=d.dataType==="number"?"number":void 0;return n.jsxs(n.Fragment,{children:[n.jsx(An,{value:t,onChange:y,autoFocus:s,label:n.jsx(Ce,{icon:we(d),required:d.validation?.required,title:d.name}),type:I,multiline:h,disabled:a,endAdornment:d.clearable&&n.jsx(ee,{onClick:g,children:n.jsx(an,{})}),error:l?i:void 0,inputClassName:i?"text-red-500 dark:text-red-600":""}),n.jsx(Se,{includeDescription:u,showError:l,error:i,disabled:a,property:d}),_&&n.jsx(To,{className:"mt-1 ml-1",in:!!t,children:n.jsx(Ke,{value:t,property:d,size:"medium"})})]})}const ot=f.forwardRef(function({value:t,allowIndeterminate:c,className:i,onValueChange:l,disabled:a=!1,size:s="medium",...d},u){return n.jsxs("button",{ref:u,tabIndex:a?-1:void 0,onClick:a?void 0:A=>{A.preventDefault(),c?t==null?l?.(!0):l?.(t?!1:null):l?.(!t)},className:E(s==="small"?"w-[38px] h-[22px] min-w-[38px] min-h-[22px]":"w-[42px] h-[26px] min-w-[42px] min-h-[26px]","outline-none rounded-full relative shadow-sm",t?a?"bg-white bg-opacity-54 dark:bg-gray-950":"ring-secondary ring-1 bg-secondary dark:bg-secondary":"bg-white bg-opacity-54 dark:bg-gray-900 ring-1 ring-gray-100 dark:ring-gray-700",i),...d,children:[c&&t==null&&n.jsx("div",{className:E("block rounded-full transition-transform duration-100 transform will-change-auto",a?"bg-gray-400 dark:bg-gray-600":"bg-gray-600 dark:bg-gray-400",{"w-[21px] h-[10px]":s==="medium","w-[19px] h-[8px]":s==="small","translate-x-[10px]":s==="medium","translate-x-[9px]":s==="small"})}),!(c&&t==null)&&n.jsx("div",{className:E("block rounded-full transition-transform duration-100 transform will-change-auto",a?"bg-gray-300 dark:bg-gray-700":t?"bg-white":"bg-gray-600 dark:bg-gray-400",{"w-[21px] h-[21px]":s==="medium","w-[19px] h-[19px]":s==="small",[t?"translate-x-[19px]":"translate-x-[3px]"]:s==="medium",[t?"translate-x-[17px]":"translate-x-[2px]"]:s==="small"})})]})}),On=function({value:t,position:c="end",invisible:i,onValueChange:l,error:a,label:s,autoFocus:d,disabled:u,size:A,..._}){const g=f.useRef(null),y=f.useRef(null),[h,I]=f.useState(d),b=()=>I(!0),p=()=>I(!1);f.useEffect(()=>{},[]);const w=document.activeElement===y?.current||document.activeElement===g?.current;return n.jsxs("div",{ref:g,onFocus:b,onBlur:p,tabIndex:-1,className:E(!i&&qe,!i&&(u?en:ze),u?"cursor-default":"cursor-pointer","rounded-md relative max-w-full justify-between w-full box-border relative inline-flex items-center",!i&&w&&!u?_r:"",a?"text-red-500 dark:text-red-600":w?"text-primary":u?"text-text-secondary dark:text-text-secondary-dark":"text-text-primary dark:text-text-primary-dark",A==="small"?"min-h-[40px]":"min-h-[64px]",A==="small"?"pl-2":"pl-4",A==="small"?"pr-4":"pr-6",c==="end"?"flex-row-reverse":"flex-row"),onClick:u?void 0:k=>{_.allowIndeterminate?t==null?l?.(!0):l?.(t?!1:null):l?.(!t)},children:[n.jsx(ot,{value:t,ref:y,size:A,className:i&&w?_r:"",disabled:u,..._}),n.jsx("div",{className:E("flex-grow",c==="end"?"mr-4":"ml-4",A==="small"?"text-sm":"text-base"),children:s})]})},pi=f.forwardRef(function({propertyKey:t,value:c,setValue:i,error:l,showError:a,autoFocus:s,disabled:d,touched:u,property:A,includeDescription:_},g){return Ne({property:A,value:c,setValue:i}),n.jsxs(n.Fragment,{children:[n.jsx(On,{value:c,onValueChange:y=>i(y),error:a,label:n.jsx(Ce,{icon:we(A),required:A.validation?.required,title:A.name}),disabled:d,autoFocus:s,size:"medium"}),n.jsx(Se,{includeDescription:_,showError:a,error:l,disabled:d,property:A})]})});function wi({propertyKey:e,value:t,setValue:c,autoFocus:i,error:l,showError:a,disabled:s,touched:d,property:u,includeDescription:A}){const _=t||null;return Ne({property:u,value:t,setValue:c}),n.jsxs(n.Fragment,{children:[n.jsx(Vn,{value:_,onChange:g=>c(g),size:"medium",mode:u.mode,clearable:u.clearable,label:n.jsx(Ce,{icon:we(u),required:u.validation?.required,className:"text-text-secondary dark:text-text-secondary-dark",title:u.name})}),n.jsx(Se,{includeDescription:A,showError:a,error:l,disabled:s,property:u})]})}class se extends f.Component{constructor(t){super(t),this.state={error:null}}static getDerivedStateFromError(t){return{error:t}}componentDidCatch(t,c){console.error(t)}render(){return this.state.error?n.jsxs("div",{className:"flex flex-col m-2",children:[n.jsxs("div",{className:"flex items-center m-2",children:[n.jsx(wr,{color:"error",size:"small"}),n.jsx("div",{className:"ml-4",children:"Error"})]}),n.jsx(j,{variant:"caption",children:this.state.error?.message??"See the error in the console"})]}):this.props.children}}function rt({propertyKey:e,value:t,error:c,showError:i,tableMode:l,property:a,includeDescription:s,context:d}){if(!d.entityId)throw new Error("ReadOnlyFieldBinding: Entity id is null");const u={id:d.entityId,values:d.values,path:d.path};return n.jsxs(n.Fragment,{children:[!l&&n.jsx(Ce,{icon:we(a),required:a.validation?.required,title:a.name,className:"text-text-secondary dark:text-text-secondary-dark ml-3.5"}),n.jsx("div",{className:E(He,"min-h-14 p-4 md:p-6"),children:n.jsx(se,{children:n.jsx(Ke,{propertyKey:e,value:t,property:a,entity:u,size:"medium"})})}),n.jsx(Se,{includeDescription:s,showError:i,error:c,property:a})]})}function ki(e){return typeof e.property.path!="string"?n.jsx(rt,{...e}):n.jsx(fz,{...e})}function fz({value:e,setValue:t,error:c,showError:i,isSubmitting:l,disabled:a,touched:s,autoFocus:d,property:u,includeDescription:A,context:_}){if(!u.path)throw new Error("Property path is required for ReferenceFieldBinding");Ne({property:u,value:e,setValue:t});const g=e&&e instanceof Je,y=Ae(),h=f.useMemo(()=>u.path?y.getCollection(u.path):void 0,[u.path]);if(!h)throw Error(`Couldn't find the corresponding collection for the path: ${u.path}`);const I=f.useCallback(w=>{t(In(w))},[t]),b=xn({multiselect:!1,path:u.path,collection:h,onSingleEntitySelected:I,selectedEntityIds:g?[e.id]:void 0,forceFilter:u.forceFilter}),p=f.useCallback(w=>{w.preventDefault(),b.open()},[b]);return n.jsxs(n.Fragment,{children:[n.jsx(Ce,{icon:we(u),required:u.validation?.required,title:u.name,className:"text-text-secondary dark:text-text-secondary-dark ml-3.5"}),!h&&n.jsx(pe,{error:"The specified collection does not exist. Check console"}),h&&n.jsxs(n.Fragment,{children:[e&&n.jsx(on,{disabled:!u.path,previewProperties:u.previewProperties,size:"medium",onClick:a||l?void 0:p,reference:e}),!e&&n.jsx("div",{className:"justify-center text-left",children:n.jsxs(te,{variant:"outlined",color:"primary",disabled:a||l,onClick:p,children:["Edit ",u.name]})})]}),n.jsx(Se,{includeDescription:A,showError:i,error:c,disabled:a,property:u})]})}const bn=f.memo(Az,(e,t)=>{if(e.propertyKey!==t.propertyKey)return!1;const c=We(e.property)||e.property.fromBuilder,i=We(t.property)||t.property.fromBuilder;return!((c===i||de(e.property,t.property))&&e.disabled===t.disabled)||Oo(t.property),!1});function Az({propertyKey:e,property:t,context:c,includeDescription:i,underlyingValueHasChanged:l,disabled:a,tableMode:s,partOfArray:d,partOfBlock:u,autoFocus:A}){const _=re(),y=Oo(t,_.plugins)?Fe.Field:Fe.FastField;return n.jsx(y,{name:e,children:h=>{let I;const b=Te({propertyKey:e,propertyValue:h.field.value,propertyOrBuilder:t,values:h.form.values,path:c.path,entityId:c.entityId,fields:_.fields});if(b===null||io(b))return n.jsx(n.Fragment,{});if(Nn(b))I=rt;else if(b.Field)typeof b.Field=="function"&&(I=b.Field);else{const w=Lo(b);if(!w)throw new Error(`INTERNAL: Could not find field config for property ${e}`);I=w.Field}if(!I)return console.warn(`No field component found for property ${e}`),console.warn("Property:",t),n.jsx("div",{children:`Currently the field ${b.dataType} is not supported`});const p={propertyKey:e,property:b,includeDescription:i,underlyingValueHasChanged:l,context:c,disabled:a,tableMode:s,partOfArray:d,partOfBlock:u,autoFocus:A};return n.jsx(_z,{Component:I,componentProps:p,fieldProps:h})}})}function _z({Component:e,componentProps:{propertyKey:t,property:c,includeDescription:i,underlyingValueHasChanged:l,tableMode:a,partOfArray:s,partOfBlock:d,autoFocus:u,context:A,disabled:_},fieldProps:g}){const{plugins:y}=re(),h=c.customProps,I=g.field.value,b=g.meta.initialValue,p=Fe.getIn(g.form.errors,t),w=Fe.getIn(g.form.touched,t),k=p&&(g.form.submitCount>0||c.validation?.unique)&&(!Array.isArray(p)||!!p.filter(F=>!!F).length),m=yz(A.path,A.collection,t,c,e,y)??e,v=g.form.isSubmitting,S=f.useCallback((F,D)=>{g.form.setFieldTouched(t,!0,!1),g.form.setFieldValue(t,F,D)},[]),B=f.useCallback((F,D,C)=>{g.form.setFieldTouched(t,!0,!1),g.form.setFieldValue(F,D,C)},[]),P={propertyKey:t,value:I,initialValue:b,setValue:S,setFieldValue:B,error:p,touched:w,showError:k,isSubmitting:v,includeDescription:i??!0,property:c,disabled:_??!1,underlyingValueHasChanged:l??!1,tableMode:a??!1,partOfArray:s??!1,partOfBlock:d??!1,autoFocus:u??!1,customProps:h,context:A};return n.jsxs(se,{children:[n.jsx(m,{...P}),l&&!v&&n.jsx(j,{variant:"caption",className:"ml-3.5",children:"This value has been updated elsewhere"})]})}const Oo=(e,t)=>{if(t?.some(l=>l.form?.fieldBuilder)||We(e))return!0;const c=e,i=!!c.Field||"fromBuilder"in c&&c.fromBuilder;return c.dataType==="map"&&c.properties?i||Object.values(c.properties).some(l=>Oo(l,t)):c.dataType==="array"&&"resolvedProperties"in c?i||c.resolvedProperties?.some(l=>l&&Oo(l,t)):i};function yz(e,t,c,i,l,a){return f.useRef((()=>{let d=null;return a&&a.forEach(u=>{const A=at(i);if(A&&u.form?.fieldBuilder){const _={fieldConfigId:A,propertyKey:c,property:i,Field:l,plugin:u,path:e,collection:t},g=u.form?.fieldBuilderEnabled?.(_);(g===void 0||g)&&(d=u.form.fieldBuilder(_)||d)}A||console.warn("INTERNAL: Field id not found for property",i)}),d})()).current}function mi({propertyKey:e,value:t,showError:c,error:i,disabled:l,property:a,setValue:s,partOfBlock:d,tableMode:u,includeDescription:A,underlyingValueHasChanged:_,autoFocus:g,context:y}){const h=a.pickOnlySomeKeys||!1,I=(a.expanded===void 0?!0:a.expanded)||g;if(!a.properties)throw Error(`You need to specify a 'properties' prop (or specify a custom field) in your map property ${e}`);let b;h?t?b=ii(a.properties,...Object.keys(t).filter(k=>k in a.properties)):b={}:b=a.properties;const p=n.jsx(n.Fragment,{children:n.jsx("div",{className:"py-1 flex flex-col space-y-2",children:Object.entries(b).filter(([k,K])=>!io(K)).map(([k,K],m)=>{const v={propertyKey:`${e}.${k}`,disabled:l,property:K,includeDescription:A,underlyingValueHasChanged:_,context:y,tableMode:!1,partOfArray:!1,partOfBlock:!1,autoFocus:g&&m===0};return n.jsx("div",{children:n.jsx(bn,{...v})},`map-${e}-${m}`)})})}),w=n.jsx(Ce,{icon:we(a),required:a.validation?.required,title:a.name,className:"text-text-secondary dark:text-text-secondary-dark"});return n.jsxs(n.Fragment,{children:[!u&&!d&&n.jsx(fn,{initiallyExpanded:I,className:"px-2 md:px-4 pb-2 md:pb-4 pt-1 md:pt-2",title:w,children:p}),(u||d)&&p,n.jsx(Se,{includeDescription:A,showError:c,error:i,disabled:l,property:a})]})}function vi({propertyKey:e,value:t,showError:c,error:i,disabled:l,property:a,setValue:s,tableMode:d,includeDescription:u,underlyingValueHasChanged:A,autoFocus:_,context:g}){const y=(a.expanded===void 0?!0:a.expanded)||_;if(!a.keyValue)throw Error(`Your property ${e} needs to have the 'keyValue' prop in order to use this field binding`);const h=n.jsx(tt,{value:t,setValue:s,disabled:l,fieldName:a.name??e}),I=n.jsx(Ce,{icon:we(a),required:a.validation?.required,title:a.name,className:"text-text-secondary dark:text-text-secondary-dark"});return n.jsxs(n.Fragment,{children:[!d&&n.jsx(fn,{initiallyExpanded:y,title:I,className:"px-2 md:px-4 pb-2 md:pb-4 pt-1 md:pt-2",children:h}),d&&h,n.jsx(Se,{includeDescription:u,showError:c,error:i,disabled:l,property:a})]})}function tt({value:e,setValue:t,fieldName:c,disabled:i}){const[l,a]=f.useState(Object.keys(e??{}).map(u=>[ct(),{key:u,dataType:it(e?.[u])??"string"}]));f.useEffect(()=>{const u=l.map(([h,{key:I}])=>I),A=Object.entries(e??{}).filter(([h,I])=>I!==void 0).map(([h])=>h),_=A.filter(h=>!u.includes(h)),g=u.filter(h=>!A.includes(h)),y=[...l];_.forEach(h=>{y.push([ct(),{key:h,dataType:it(e?.[h])??"string"}])}),g.forEach(h=>{const I=y.findIndex(([b,{key:p}])=>p===h);y.splice(I,1)}),a(y)},[e]);const s=f.useRef(e??{}),d=(u,A)=>{if(!u){console.warn("No key selected for data type update");return}a(l.map(_=>_[0]===u?[_[0],{key:_[1].key,dataType:A}]:_)),t({...e??{},[l.find(_=>_[0]===u)?.[1].key??""]:zr(A)})};return n.jsxs("div",{className:"py-1 flex flex-col gap-1",children:[l.map(([u,{key:A,dataType:_}],g)=>{const y=A?e?.[A]:"",h=I=>{if(a(l.map(p=>p[0]===u?[u,{key:I??"",dataType:p[1].dataType}]:p)),typeof e=="object"&&I in e)return;const b={...e??{}};s.current&&A in s.current?b[A]=void 0:delete b[A],t({...b,[I??""]:y})};return n.jsx(hz,{rowId:u,fieldKey:A,value:e??{},onDeleteClick:()=>{const I={...e??{}};s.current&&A in s.current?I[A]=void 0:delete I[A],a(l.filter(b=>b[0]!==u)),t({...I})},onFieldKeyChange:h,setValue:t,entryValue:y,dataType:_,disabled:i,updateDataType:d},u)}),n.jsx(te,{variant:"text",size:"small",color:"primary",className:"w-full",disabled:i,startIcon:n.jsx(hn,{}),onClick:u=>{u.preventDefault(),t({...e??{},"":null}),a([...l,[ct(),{key:"",dataType:"string"}]])},children:c?`Add to ${c}`:"Add"})]})}function hz({rowId:e,fieldKey:t,value:c,onFieldKeyChange:i,onDeleteClick:l,setValue:a,entryValue:s,dataType:d,updateDataType:u,disabled:A}){function _(y,h,I){return I==="string"||I==="number"?n.jsx(An,{placeholder:"value",value:y,type:I==="number"?"number":"text",size:"small",disabled:A||!h,onChange:b=>{if(I==="number"){const p=b.target.value?parseFloat(b.target.value):void 0;p&&isNaN(p)?a({...c,[h]:null}):p!=null?a({...c,[h]:p}):a({...c,[h]:null})}else a({...c,[h]:b.target.value})}},I):I==="date"?n.jsx(Vn,{value:y,size:"small",disabled:A||!h,onChange:b=>{a({...c,[h]:b})}}):I==="boolean"?n.jsx(On,{value:y,size:"small",position:"start",disabled:A||!h,onValueChange:b=>{a({...c,[h]:b})}}):I==="array"?n.jsx("div",{className:E(ue,"ml-2 pl-2 border-l border-solid"),children:n.jsx(Pt,{value:y,newDefaultEntry:"",droppableId:e.toString(),addLabel:h?`Add to ${h}`:"Add",size:"small",disabled:A||!h,includeAddButton:!0,onValueChange:b=>{a({...c,[h]:b})},buildEntry:(b,p)=>n.jsx(gz,{index:b,id:p,value:y[b],disabled:A||!h,setValue:w=>{const k=[...y];k[b]=w,a({...c,[h]:k})}})})}):I==="map"?n.jsx("div",{className:E(ue,"ml-2 pl-2 border-l border-solid"),children:n.jsx(tt,{value:y,fieldName:h,setValue:b=>{a({...c,[h]:b})}})}):n.jsx(j,{variant:"caption",children:`Data type ${I} not supported yet`})}function g(y){u(e,y)}return n.jsxs(n.Fragment,{children:[n.jsxs(j,{component:"div",className:"font-mono flex flex-row gap-1",children:[n.jsx("div",{className:"w-[200px] max-w-[25%]",children:n.jsx(An,{value:t,placeholder:"key",disabled:A||s!=null&&s!=="",size:"small",onChange:y=>{i(y.target.value)}})}),n.jsx("div",{className:"flex-grow",children:d!=="map"&&d!=="array"&&_(s,t,d)}),n.jsxs(Qn,{trigger:n.jsx(ee,{size:"small",className:"h-7 w-7",children:n.jsx(gr,{})}),children:[n.jsx(ke,{dense:!0,onClick:()=>g("string"),children:"string"}),n.jsx(ke,{dense:!0,onClick:()=>g("number"),children:"number"}),n.jsx(ke,{dense:!0,onClick:()=>g("boolean"),children:"boolean"}),n.jsx(ke,{dense:!0,onClick:()=>g("date"),children:"date"}),n.jsx(ke,{dense:!0,onClick:()=>g("map"),children:"map"}),n.jsx(ke,{dense:!0,onClick:()=>g("array"),children:"array"})]}),n.jsx(ee,{"aria-label":"delete",size:"small",onClick:l,className:"h-7 w-7",children:n.jsx(oo,{size:"small"})})]},e.toString()),(d==="map"||d==="array")&&_(s,t,d)]})}function gz({id:e,index:t,value:c,setValue:i}){const[l,a]=f.useState(it(c)??"string");function s(u){a(u)}function d(u,A){return A==="string"||A==="number"?n.jsx(An,{value:u,type:A==="number"?"number":"text",size:"small",onChange:_=>{if(A==="number"){const g=_.target.value?parseFloat(_.target.value):void 0;g&&isNaN(g)?i(null):g!=null?i(g):i(null)}else i(_.target.value)}}):A==="date"?n.jsx(Vn,{value:u,size:"small",onChange:_=>{i(_)}}):A==="boolean"?n.jsx(On,{value:u,size:"small",position:"start",onValueChange:_=>{i(_)}}):A==="array"?n.jsx(j,{variant:"caption",children:"Arrays of arrays are not supported."}):A==="map"?n.jsx("div",{className:E(ue,"ml-2 pl-2 border-l border-solid"),children:n.jsx(tt,{value:u,setValue:_=>{i(_)}})}):n.jsx(j,{variant:"caption",children:`Data type ${A} not supported yet`})}return n.jsxs(n.Fragment,{children:[n.jsxs(j,{component:"div",className:"font-mono flex min-h-12 flex-row gap-1 items-center",children:[n.jsx("div",{className:"flex-grow",children:l!=="map"&&d(c,l)}),n.jsxs(Qn,{trigger:n.jsx(ee,{size:"small",className:"h-7 w-7",children:n.jsx(gr,{})}),children:[n.jsx(ke,{dense:!0,onClick:()=>s("string"),children:"string"}),n.jsx(ke,{dense:!0,onClick:()=>s("number"),children:"number"}),n.jsx(ke,{dense:!0,onClick:()=>s("boolean"),children:"boolean"}),n.jsx(ke,{dense:!0,onClick:()=>s("map"),children:"map"}),n.jsx(ke,{dense:!0,onClick:()=>s("date"),children:"date"})]})]},e.toString()),l==="map"&&d(c,l)]})}function ct(){return Math.floor(Math.random()*Math.floor(Number.MAX_SAFE_INTEGER))}function it(e){if(typeof e=="string"||e===null)return"string";if(typeof e=="number")return"number";if(typeof e=="boolean")return"boolean";if(Array.isArray(e))return"array";if(e instanceof Date)return"date";if(e instanceof Je)return"reference";if(e instanceof Br)return"geopoint";if(typeof e=="object")return"map"}function Ki({propertyKey:e,value:t,error:c,showError:i,isSubmitting:l,setValue:a,setFieldValue:s,tableMode:d,property:u,includeDescription:A,underlyingValueHasChanged:_,context:g,disabled:y}){if(!u.of)throw Error("RepeatFieldBinding misconfiguration. Property `of` not set");if(!u.resolvedProperties||!Array.isArray(u.resolvedProperties))throw Error("RepeatFieldBinding - Internal error: Expected array in 'property.resolvedProperties'");const h=u.expanded===void 0?!0:u.expanded,I=u.of,[b,p]=f.useState();Ne({property:u,value:t,setValue:a});const w=(m,v)=>{const S=u.resolvedProperties[m]??I,B={propertyKey:`${e}.${m}`,disabled:y,property:S,includeDescription:A,underlyingValueHasChanged:_,context:g,tableMode:!1,partOfArray:!0,partOfBlock:!1,autoFocus:v===b};return n.jsx(bn,{...B})},k=n.jsx(No,{value:t,addLabel:u.name?"Add entry to "+u.name:"Add entry",name:e,setFieldValue:s,buildEntry:w,onInternalIdAdded:p,disabled:l||!!u.disabled,includeAddButton:!u.disabled,newDefaultEntry:u.of.defaultValue}),K=n.jsx(Ce,{icon:we(u),required:u.validation?.required,title:u.name,className:"text-text-secondary dark:text-text-secondary-dark"});return n.jsxs(n.Fragment,{children:[!d&&n.jsx(fn,{initiallyExpanded:h,className:"px-2 md:px-4 pb-2 md:pb-4 pt-1 md:pt-2",title:K,children:k}),d&&k,n.jsx(Se,{includeDescription:A,showError:i,error:c,disabled:y,property:u})]})}function Ci({propertyKey:e,value:t,error:c,showError:i,isSubmitting:l,setValue:a,setFieldValue:s,tableMode:d,property:u,includeDescription:A,underlyingValueHasChanged:_,context:g,disabled:y}){if(!u.oneOf)throw Error("ArrayOneOfField misconfiguration. Property `oneOf` not set");const h=u.expanded===void 0?!0:u.expanded;Ne({property:u,value:t,setValue:a});const[I,b]=f.useState(),p=f.useCallback((m,v)=>n.jsx(Iz,{name:`${e}.${m}`,index:m,value:t[m],typeField:u.oneOf.typeField??to,valueField:u.oneOf.valueField??So,properties:u.oneOf.properties,autoFocus:v===I,context:g},`array_one_of_${m}`),[g,I,u.oneOf,e,t]),w=n.jsx(Ce,{icon:we(u),required:u.validation?.required,title:u.name,className:"text-text-secondary dark:text-text-secondary-dark"}),k=Object.keys(u.oneOf.properties)[0],K=n.jsx(No,{value:t,name:e,addLabel:u.name?"Add entry to "+u.name:"Add entry",buildEntry:p,onInternalIdAdded:b,disabled:l||!!u.disabled,includeAddButton:!u.disabled,setFieldValue:s,newDefaultEntry:{[u.oneOf.typeField??to]:k,[u.oneOf.valueField??So]:Eo(u.oneOf.properties[k])}});return n.jsxs(n.Fragment,{children:[!d&&n.jsx(fn,{className:"px-2 md:px-4 pb-2 md:pb-4 pt-1 md:pt-2",initiallyExpanded:h,title:w,children:K}),d&&K,n.jsx(Se,{includeDescription:A,showError:i,error:c,disabled:y,property:u})]})}function Iz({name:e,index:t,value:c,typeField:i,valueField:l,properties:a,autoFocus:s,context:d}){const u=c&&c[i],[A,_]=f.useState(u??void 0),g=Fe.useFormikContext();f.useEffect(()=>{u||w(Object.keys(a)[0])},[]),f.useEffect(()=>{u!==A&&_(u)},[u]);const y=A?a[A]:void 0,h=Object.entries(a).map(([k,K])=>({id:k,label:K.name??k})),I=`${e}.${i}`,b=`${e}.${l}`,p=y?{propertyKey:b,property:y,context:d,autoFocus:s,partOfArray:!1,partOfBlock:!0,tableMode:!1}:void 0,w=k=>{const K=k?a[k]:void 0;_(k),g.setFieldTouched(I),g.setFieldValue(I,k),g.setFieldValue(b,K?Eo(K):null)};return n.jsxs("div",{className:E(He,"bg-transparent p-4 my-4 py-8"),children:[n.jsx(Fe.FastField,{required:!0,name:I,children:k=>n.jsx(n.Fragment,{children:n.jsx(xe,{className:"mb-2",placeholder:n.jsx(j,{variant:"caption",className:"px-4 py-2 font-medium",children:"Type"}),size:"small",position:"item-aligned",value:k.field.value!==void 0&&k.field.value!==null?k.field.value:"",renderValue:K=>n.jsx(Ee,{enumKey:K,enumValues:h,size:"small"}),onValueChange:K=>{w(K)},children:h.map(K=>n.jsx(Re,{value:String(K.id),children:n.jsx(Ee,{enumKey:K.id,enumValues:h,size:"small"})},K.id))})})}),p&&n.jsx(bn,{...p},`form_control_${e}_${A}`)]})}const bz=new Gt;try{_n.use(_n.Plugins.AutoResize,{min:100}),_n.unuse(_n.Plugins.FontUnderline),_n.unuse(_n.Plugins.Clear)}catch{}function Si({propertyKey:e,value:t,setValue:c,error:i,showError:l,disabled:a,autoFocus:s,touched:d,property:u,tableMode:A,includeDescription:_,context:g}){const[y,h]=f.useState(t),I=f.useRef(t);En("MarkdownFieldBinding",pz);const b=f.useDeferredValue({internalValue:y,value:t});return f.useEffect(()=>{I.current=t,h(t)},[t]),f.useEffect(()=>{b.internalValue!==I.current&&c(b.internalValue)},[b]),n.jsxs(n.Fragment,{children:[!A&&n.jsx(j,{variant:"caption",className:"flex-grow",children:n.jsx(Ce,{icon:we(u),required:u.validation?.required,title:u.name,className:"text-text-secondary dark:text-text-secondary-dark ml-3.5"})}),n.jsx(_n,{value:y??"",className:E(qe,a?en:ze,"text-base"),readOnly:a,renderHTML:p=>bz.render(p),view:{menu:!0,md:!0,html:!1},onChange:({html:p,text:w})=>{h(w??null)}}),n.jsx(Se,{includeDescription:_,showError:l,error:i,disabled:a,property:u})]})}const pz=`
96
+ `),n.jsx(qn.Root,{open:c,className:t,children:n.jsx(qn.Content,{className:E(`CollapseContent-${i}`),children:e})})}function Mn({propertyKey:e,value:t,setValue:c,error:i,showError:a,disabled:l,autoFocus:s,property:d,includeDescription:u}){let A,y;d.dataType==="string"&&(A=d.multiline,y=d.url),Te({property:d,value:t,setValue:c});const h=f.useCallback(b=>{b.stopPropagation(),b.preventDefault(),c(null)},[c]),I=b=>{if(g==="number"){const p=b.target.value?parseFloat(b.target.value):void 0;p&&isNaN(p)?c(null):p!=null?c(p):c(null)}else c(b.target.value)},_=!!A,g=d.dataType==="number"?"number":void 0;return n.jsxs(n.Fragment,{children:[n.jsx(un,{value:t,onChange:I,autoFocus:s,label:n.jsx(Ce,{icon:ke(d,"small"),required:d.validation?.required,title:d.name}),type:g,multiline:_,disabled:l,endAdornment:d.clearable&&n.jsx(R,{onClick:h,children:n.jsx(cn,{})}),error:a?i:void 0,inputClassName:i?"text-red-500 dark:text-red-600":""}),n.jsx(Se,{includeDescription:u,showError:a,error:i,disabled:l,property:d}),y&&n.jsx(To,{className:"mt-1 ml-1",in:!!t,children:n.jsx(Be,{value:t,property:d,size:"medium"})})]})}const Zr=f.forwardRef(function({value:t,allowIndeterminate:c,className:i,onValueChange:a,disabled:l=!1,size:s="medium",...d},u){return n.jsxs("button",{ref:u,tabIndex:l?-1:void 0,onClick:l?void 0:A=>{A.preventDefault(),c?t==null?a?.(!0):a?.(t?!1:null):a?.(!t)},className:E(s==="small"?"w-[38px] h-[22px] min-w-[38px] min-h-[22px]":"w-[42px] h-[26px] min-w-[42px] min-h-[26px]","outline-none rounded-full relative shadow-sm",t?l?"bg-white bg-opacity-54 dark:bg-gray-950":"ring-secondary ring-1 bg-secondary dark:bg-secondary":"bg-white bg-opacity-54 dark:bg-gray-900 ring-1 ring-gray-100 dark:ring-gray-700",i),...d,children:[c&&t==null&&n.jsx("div",{className:E("block rounded-full transition-transform duration-100 transform will-change-auto",l?"bg-gray-400 dark:bg-gray-600":"bg-gray-600 dark:bg-gray-400",{"w-[21px] h-[10px]":s==="medium","w-[19px] h-[8px]":s==="small","translate-x-[10px]":s==="medium","translate-x-[9px]":s==="small"})}),!(c&&t==null)&&n.jsx("div",{className:E("block rounded-full transition-transform duration-100 transform will-change-auto",l?"bg-gray-300 dark:bg-gray-700":t?"bg-white":"bg-gray-600 dark:bg-gray-400",{"w-[21px] h-[21px]":s==="medium","w-[19px] h-[19px]":s==="small",[t?"translate-x-[19px]":"translate-x-[3px]"]:s==="medium",[t?"translate-x-[17px]":"translate-x-[2px]"]:s==="small"})})]})}),On=function({value:t,position:c="end",invisible:i,onValueChange:a,error:l,label:s,autoFocus:d,disabled:u,size:A,...y}){const h=f.useRef(null),I=f.useRef(null),[_,g]=f.useState(d),b=()=>g(!0),p=()=>g(!1);f.useEffect(()=>{},[]);const w=document.activeElement===I?.current||document.activeElement===h?.current;return n.jsxs("div",{ref:h,onFocus:b,onBlur:p,tabIndex:-1,className:E(!i&&Je,!i&&(u?Re:We),u?"cursor-default":"cursor-pointer","rounded-md relative max-w-full justify-between w-full box-border relative inline-flex items-center",!i&&w&&!u?fr:"",l?"text-red-500 dark:text-red-600":w?"text-primary":u?"text-text-secondary dark:text-text-secondary-dark":"text-text-primary dark:text-text-primary-dark",A==="small"?"min-h-[40px]":"min-h-[64px]",A==="small"?"pl-2":"pl-4",A==="small"?"pr-4":"pr-6",c==="end"?"flex-row-reverse":"flex-row"),onClick:u?void 0:k=>{y.allowIndeterminate?t==null?a?.(!0):a?.(t?!1:null):a?.(!t)},children:[n.jsx(Zr,{value:t,ref:I,size:A,className:i&&w?fr:"",disabled:u,...y}),n.jsx("div",{className:E("flex-grow",c==="end"?"mr-4":"ml-4",A==="small"?"text-sm":"text-base"),children:s})]})},hi=f.forwardRef(function({propertyKey:t,value:c,setValue:i,error:a,showError:l,autoFocus:s,disabled:d,touched:u,property:A,includeDescription:y},h){return Te({property:A,value:c,setValue:i}),n.jsxs(n.Fragment,{children:[n.jsx(On,{value:c,onValueChange:I=>i(I),error:l,label:n.jsx(Ce,{icon:ke(A,"small"),required:A.validation?.required,title:A.name}),disabled:d,autoFocus:s,size:"medium"}),n.jsx(Se,{includeDescription:y,showError:l,error:a,disabled:d,property:A})]})});function gi({propertyKey:e,value:t,setValue:c,autoFocus:i,error:a,showError:l,disabled:s,touched:d,property:u,includeDescription:A}){const y=t||null;return Te({property:u,value:t,setValue:c}),n.jsxs(n.Fragment,{children:[n.jsx(Vn,{value:y,onChange:h=>c(h),size:"medium",mode:u.mode,clearable:u.clearable,label:n.jsx(Ce,{icon:ke(u,"small"),required:u.validation?.required,className:"text-text-secondary dark:text-text-secondary-dark",title:u.name})}),n.jsx(Se,{includeDescription:A,showError:l,error:a,disabled:s,property:u})]})}class ie extends f.Component{constructor(t){super(t),this.state={error:null}}static getDerivedStateFromError(t){return{error:t}}componentDidCatch(t,c){console.error(t)}render(){return this.state.error?n.jsxs("div",{className:"flex flex-col m-2",children:[n.jsxs("div",{className:"flex items-center m-2",children:[n.jsx(br,{color:"error",size:"small"}),n.jsx("div",{className:"ml-4",children:"Error"})]}),n.jsx(j,{variant:"caption",children:this.state.error?.message??"See the error in the console"})]}):this.props.children}}function Xr({propertyKey:e,value:t,error:c,showError:i,tableMode:a,property:l,includeDescription:s,context:d}){if(!d.entityId)throw new Error("ReadOnlyFieldBinding: Entity id is null");const u={id:d.entityId,values:d.values,path:d.path};return n.jsxs(n.Fragment,{children:[!a&&n.jsx(Ce,{icon:ke(l,"small"),required:l.validation?.required,title:l.name,className:"text-text-secondary dark:text-text-secondary-dark ml-3.5"}),n.jsx("div",{className:E(Ge,"min-h-14 p-4 md:p-6"),children:n.jsx(ie,{children:n.jsx(Be,{propertyKey:e,value:t,property:l,entity:u,size:"medium"})})}),n.jsx(Se,{includeDescription:s,showError:i,error:c,property:l})]})}function Ii(e){return typeof e.property.path!="string"?n.jsx(Xr,{...e}):n.jsx(dz,{...e})}function dz({value:e,setValue:t,error:c,showError:i,isSubmitting:a,disabled:l,touched:s,autoFocus:d,property:u,includeDescription:A,context:y}){if(!u.path)throw new Error("Property path is required for ReferenceFieldBinding");Te({property:u,value:e,setValue:t});const h=e&&e instanceof je,I=fe(),_=f.useMemo(()=>u.path?I.getCollection(u.path):void 0,[u.path]);if(!_)throw Error(`Couldn't find the corresponding collection for the path: ${u.path}`);const g=f.useCallback(w=>{t(hn(w))},[t]),b=io({multiselect:!1,path:u.path,collection:_,onSingleEntitySelected:g,selectedEntityIds:h?[e.id]:void 0,forceFilter:u.forceFilter}),p=f.useCallback(w=>{w.preventDefault(),b.open()},[b]);return n.jsxs(n.Fragment,{children:[n.jsx(Ce,{icon:ke(u,"small"),required:u.validation?.required,title:u.name,className:"text-text-secondary dark:text-text-secondary-dark ml-3.5"}),!_&&n.jsx(we,{error:"The specified collection does not exist. Check console"}),_&&n.jsxs(n.Fragment,{children:[e&&n.jsx(nn,{disabled:!u.path,previewProperties:u.previewProperties,size:"medium",onClick:l||a?void 0:p,reference:e}),!e&&n.jsx("div",{className:"justify-center text-left",children:n.jsxs(te,{variant:"outlined",color:"primary",disabled:l||a,onClick:p,children:["Edit ",u.name]})})]}),n.jsx(Se,{includeDescription:A,showError:i,error:c,disabled:l,property:u})]})}const pn=f.memo(uz,(e,t)=>{if(e.propertyKey!==t.propertyKey)return!1;const c=Le(e.property)||e.property.fromBuilder,i=Le(t.property)||t.property.fromBuilder;return!((c===i||de(e.property,t.property))&&e.disabled===t.disabled)||Mo(t.property),!1});function uz({propertyKey:e,property:t,context:c,includeDescription:i,underlyingValueHasChanged:a,disabled:l,tableMode:s,partOfArray:d,partOfBlock:u,autoFocus:A}){const y=ne(),I=Mo(t,y.plugins)?Fe.Field:Fe.FastField;return n.jsx(I,{name:e,children:_=>{let g;const b=Ne({propertyKey:e,propertyValue:_.field.value,propertyOrBuilder:t,values:_.form.values,path:c.path,entityId:c.entityId,fields:y.fields});if(b===null||Rn(b))return n.jsx(n.Fragment,{});if(Cn(b))g=Xr;else if(b.Field)typeof b.Field=="function"&&(g=b.Field);else{const w=Go(b,y.fields);if(!w)throw console.log("INTERNAL: Could not find field config for property",{propertyKey:e,resolvedProperty:b,fields:y.fields,fieldConfig:w}),new Error(`INTERNAL: Could not find field config for property ${e}`);g=Ne({propertyOrBuilder:w.property,propertyValue:_.field.value,values:_.form.values,path:c.path,entityId:c.entityId,fields:y.fields}).Field}if(!g)return console.warn(`No field component found for property ${e}`),console.warn("Property:",t),n.jsx("div",{children:`Currently the field ${b.dataType} is not supported`});const p={propertyKey:e,property:b,includeDescription:i,underlyingValueHasChanged:a,context:c,disabled:l,tableMode:s,partOfArray:d,partOfBlock:u,autoFocus:A};return n.jsx(fz,{Component:g,componentProps:p,fieldProps:_})}})}function fz({Component:e,componentProps:{propertyKey:t,property:c,includeDescription:i,underlyingValueHasChanged:a,tableMode:l,partOfArray:s,partOfBlock:d,autoFocus:u,context:A,disabled:y},fieldProps:h}){const{plugins:I}=ne(),_=c.customProps,g=h.field.value,b=h.meta.initialValue,p=Fe.getIn(h.form.errors,t),w=Fe.getIn(h.form.touched,t),k=p&&(h.form.submitCount>0||c.validation?.unique)&&(!Array.isArray(p)||!!p.filter(F=>!!F).length),K=Az(A.path,A.collection,t,c,e,I)??e,m=h.form.isSubmitting,C=f.useCallback((F,D)=>{h.form.setFieldTouched(t,!0,!1),h.form.setFieldValue(t,F,D)},[]),B=f.useCallback((F,D,S)=>{h.form.setFieldTouched(t,!0,!1),h.form.setFieldValue(F,D,S)},[]),P={propertyKey:t,value:g,initialValue:b,setValue:C,setFieldValue:B,error:p,touched:w,showError:k,isSubmitting:m,includeDescription:i??!0,property:c,disabled:y??!1,underlyingValueHasChanged:a??!1,tableMode:l??!1,partOfArray:s??!1,partOfBlock:d??!1,autoFocus:u??!1,customProps:_,context:A};return n.jsxs(ie,{children:[n.jsx(K,{...P}),a&&!m&&n.jsx(j,{variant:"caption",className:"ml-3.5",children:"This value has been updated elsewhere"})]})}const Mo=(e,t)=>{if(t?.some(a=>a.form?.fieldBuilder)||Le(e))return!0;const c=e,i=!!c.Field||"fromBuilder"in c&&c.fromBuilder;return c.dataType==="map"&&c.properties?i||Object.values(c.properties).some(a=>Mo(a,t)):c.dataType==="array"&&"resolvedProperties"in c?i||c.resolvedProperties?.some(a=>a&&Mo(a,t)):i};function Az(e,t,c,i,a,l){return f.useRef((()=>{let d=null;return l&&l.forEach(u=>{const A=dt(i);if(A&&u.form?.fieldBuilder){const y={fieldConfigId:A,propertyKey:c,property:i,Field:a,plugin:u,path:e,collection:t},h=u.form?.fieldBuilderEnabled?.(y);(h===void 0||h)&&(d=u.form.fieldBuilder(y)||d)}A||console.warn("INTERNAL: Field id not found for property",i)}),d})()).current}function bi({propertyKey:e,value:t,showError:c,error:i,disabled:a,property:l,setValue:s,partOfBlock:d,tableMode:u,includeDescription:A,underlyingValueHasChanged:y,autoFocus:h,context:I}){const _=l.pickOnlySomeKeys||!1,g=(l.expanded===void 0?!0:l.expanded)||h;if(!l.properties)throw Error(`You need to specify a 'properties' prop (or specify a custom field) in your map property ${e}`);let b;_?t?b=qt(l.properties,...Object.keys(t).filter(k=>k in l.properties)):b={}:b=l.properties;const p=n.jsx(n.Fragment,{children:n.jsx("div",{className:"py-1 flex flex-col space-y-2",children:Object.entries(b).filter(([k,v])=>!Rn(v)).map(([k,v],K)=>{const m={propertyKey:`${e}.${k}`,disabled:a,property:v,includeDescription:A,underlyingValueHasChanged:y,context:I,tableMode:!1,partOfArray:!1,partOfBlock:!1,autoFocus:h&&K===0};return n.jsx("div",{children:n.jsx(pn,{...m})},`map-${e}-${K}`)})})}),w=n.jsx(Ce,{icon:ke(l,"small"),required:l.validation?.required,title:l.name,className:"text-text-secondary dark:text-text-secondary-dark"});return n.jsxs(n.Fragment,{children:[!u&&!d&&n.jsx(dn,{initiallyExpanded:g,className:"px-2 md:px-4 pb-2 md:pb-4 pt-1 md:pt-2",title:w,children:p}),(u||d)&&p,n.jsx(Se,{includeDescription:A,showError:c,error:i,disabled:a,property:l})]})}function pi({propertyKey:e,value:t,showError:c,error:i,disabled:a,property:l,setValue:s,tableMode:d,includeDescription:u,underlyingValueHasChanged:A,autoFocus:y,context:h}){const I=(l.expanded===void 0?!0:l.expanded)||y;if(!l.keyValue)throw Error(`Your property ${e} needs to have the 'keyValue' prop in order to use this field binding`);const _=n.jsx(xr,{value:t,setValue:s,disabled:a,fieldName:l.name??e}),g=n.jsx(Ce,{icon:ke(l,"small"),required:l.validation?.required,title:l.name,className:"text-text-secondary dark:text-text-secondary-dark"});return n.jsxs(n.Fragment,{children:[!d&&n.jsx(dn,{initiallyExpanded:I,title:g,className:"px-2 md:px-4 pb-2 md:pb-4 pt-1 md:pt-2",children:_}),d&&_,n.jsx(Se,{includeDescription:u,showError:c,error:i,disabled:a,property:l})]})}function xr({value:e,setValue:t,fieldName:c,disabled:i}){const[a,l]=f.useState(Object.keys(e??{}).map(u=>[Rr(),{key:u,dataType:et(e?.[u])??"string"}]));f.useEffect(()=>{const u=a.map(([_,{key:g}])=>g),A=Object.entries(e??{}).filter(([_,g])=>g!==void 0).map(([_])=>_),y=A.filter(_=>!u.includes(_)),h=u.filter(_=>!A.includes(_)),I=[...a];y.forEach(_=>{I.push([Rr(),{key:_,dataType:et(e?.[_])??"string"}])}),h.forEach(_=>{const g=I.findIndex(([b,{key:p}])=>p===_);I.splice(g,1)}),l(I)},[e]);const s=f.useRef(e??{}),d=(u,A)=>{if(!u){console.warn("No key selected for data type update");return}l(a.map(y=>y[0]===u?[y[0],{key:y[1].key,dataType:A}]:y)),t({...e??{},[a.find(y=>y[0]===u)?.[1].key??""]:sr(A)})};return n.jsxs("div",{className:"py-1 flex flex-col gap-1",children:[a.map(([u,{key:A,dataType:y}],h)=>{const I=A?e?.[A]:"",_=g=>{if(l(a.map(p=>p[0]===u?[u,{key:g??"",dataType:p[1].dataType}]:p)),typeof e=="object"&&g in e)return;const b={...e??{}};s.current&&A in s.current?b[A]=void 0:delete b[A],t({...b,[g??""]:I})};return n.jsx(_z,{rowId:u,fieldKey:A,value:e??{},onDeleteClick:()=>{const g={...e??{}};s.current&&A in s.current?g[A]=void 0:delete g[A],l(a.filter(b=>b[0]!==u)),t({...g})},onFieldKeyChange:_,setValue:t,entryValue:I,dataType:y,disabled:i,updateDataType:d},u)}),n.jsx(te,{variant:"text",size:"small",color:"primary",className:"w-full",disabled:i,startIcon:n.jsx(gn,{}),onClick:u=>{u.preventDefault(),t({...e??{},"":null}),l([...a,[Rr(),{key:"",dataType:"string"}]])},children:c?`Add to ${c}`:"Add"})]})}function _z({rowId:e,fieldKey:t,value:c,onFieldKeyChange:i,onDeleteClick:a,setValue:l,entryValue:s,dataType:d,updateDataType:u,disabled:A}){function y(I,_,g){return g==="string"||g==="number"?n.jsx(un,{placeholder:"value",value:I,type:g==="number"?"number":"text",size:"small",disabled:A||!_,onChange:b=>{if(g==="number"){const p=b.target.value?parseFloat(b.target.value):void 0;p&&isNaN(p)?l({...c,[_]:null}):p!=null?l({...c,[_]:p}):l({...c,[_]:null})}else l({...c,[_]:b.target.value})}},g):g==="date"?n.jsx(Vn,{value:I,size:"small",disabled:A||!_,onChange:b=>{l({...c,[_]:b})}}):g==="boolean"?n.jsx(On,{value:I,size:"small",position:"start",disabled:A||!_,onValueChange:b=>{l({...c,[_]:b})}}):g==="array"?n.jsx("div",{className:E(ue,"ml-2 pl-2 border-l border-solid"),children:n.jsx(Pt,{value:I,newDefaultEntry:"",droppableId:e.toString(),addLabel:_?`Add to ${_}`:"Add",size:"small",disabled:A||!_,includeAddButton:!0,onValueChange:b=>{l({...c,[_]:b})},buildEntry:(b,p)=>n.jsx(yz,{index:b,id:p,value:I[b],disabled:A||!_,setValue:w=>{const k=[...I];k[b]=w,l({...c,[_]:k})}})})}):g==="map"?n.jsx("div",{className:E(ue,"ml-2 pl-2 border-l border-solid"),children:n.jsx(xr,{value:I,fieldName:_,setValue:b=>{l({...c,[_]:b})}})}):n.jsx(j,{variant:"caption",children:`Data type ${g} not supported yet`})}function h(I){u(e,I)}return n.jsxs(n.Fragment,{children:[n.jsxs(j,{component:"div",className:"font-mono flex flex-row gap-1",children:[n.jsx("div",{className:"w-[200px] max-w-[25%]",children:n.jsx(un,{value:t,placeholder:"key",disabled:A||s!=null&&s!=="",size:"small",onChange:I=>{i(I.target.value)}})}),n.jsx("div",{className:"flex-grow",children:d!=="map"&&d!=="array"&&y(s,t,d)}),n.jsxs(Qn,{trigger:n.jsx(R,{size:"small",className:"h-7 w-7",children:n.jsx(yr,{})}),children:[n.jsx(me,{dense:!0,onClick:()=>h("string"),children:"string"}),n.jsx(me,{dense:!0,onClick:()=>h("number"),children:"number"}),n.jsx(me,{dense:!0,onClick:()=>h("boolean"),children:"boolean"}),n.jsx(me,{dense:!0,onClick:()=>h("date"),children:"date"}),n.jsx(me,{dense:!0,onClick:()=>h("map"),children:"map"}),n.jsx(me,{dense:!0,onClick:()=>h("array"),children:"array"})]}),n.jsx(R,{"aria-label":"delete",size:"small",onClick:a,className:"h-7 w-7",children:n.jsx(to,{size:"small"})})]},e.toString()),(d==="map"||d==="array")&&y(s,t,d)]})}function yz({id:e,index:t,value:c,setValue:i}){const[a,l]=f.useState(et(c)??"string");function s(u){l(u)}function d(u,A){return A==="string"||A==="number"?n.jsx(un,{value:u,type:A==="number"?"number":"text",size:"small",onChange:y=>{if(A==="number"){const h=y.target.value?parseFloat(y.target.value):void 0;h&&isNaN(h)?i(null):h!=null?i(h):i(null)}else i(y.target.value)}}):A==="date"?n.jsx(Vn,{value:u,size:"small",onChange:y=>{i(y)}}):A==="boolean"?n.jsx(On,{value:u,size:"small",position:"start",onValueChange:y=>{i(y)}}):A==="array"?n.jsx(j,{variant:"caption",children:"Arrays of arrays are not supported."}):A==="map"?n.jsx("div",{className:E(ue,"ml-2 pl-2 border-l border-solid"),children:n.jsx(xr,{value:u,setValue:y=>{i(y)}})}):n.jsx(j,{variant:"caption",children:`Data type ${A} not supported yet`})}return n.jsxs(n.Fragment,{children:[n.jsxs(j,{component:"div",className:"font-mono flex min-h-12 flex-row gap-1 items-center",children:[n.jsx("div",{className:"flex-grow",children:a!=="map"&&d(c,a)}),n.jsxs(Qn,{trigger:n.jsx(R,{size:"small",className:"h-7 w-7",children:n.jsx(yr,{})}),children:[n.jsx(me,{dense:!0,onClick:()=>s("string"),children:"string"}),n.jsx(me,{dense:!0,onClick:()=>s("number"),children:"number"}),n.jsx(me,{dense:!0,onClick:()=>s("boolean"),children:"boolean"}),n.jsx(me,{dense:!0,onClick:()=>s("map"),children:"map"}),n.jsx(me,{dense:!0,onClick:()=>s("date"),children:"date"})]})]},e.toString()),a==="map"&&d(c,a)]})}function Rr(){return Math.floor(Math.random()*Math.floor(Number.MAX_SAFE_INTEGER))}function et(e){if(typeof e=="string"||e===null)return"string";if(typeof e=="number")return"number";if(typeof e=="boolean")return"boolean";if(Array.isArray(e))return"array";if(e instanceof Date)return"date";if(e instanceof je)return"reference";if(e instanceof tr)return"geopoint";if(typeof e=="object")return"map"}function wi({propertyKey:e,value:t,error:c,showError:i,isSubmitting:a,setValue:l,setFieldValue:s,tableMode:d,property:u,includeDescription:A,underlyingValueHasChanged:y,context:h,disabled:I}){if(!u.of)throw Error("RepeatFieldBinding misconfiguration. Property `of` not set");if(!u.resolvedProperties||!Array.isArray(u.resolvedProperties))throw Error("RepeatFieldBinding - Internal error: Expected array in 'property.resolvedProperties'");const _=u.expanded===void 0?!0:u.expanded,g=u.of,[b,p]=f.useState();Te({property:u,value:t,setValue:l});const w=(K,m)=>{const C=u.resolvedProperties[K]??g,B={propertyKey:`${e}.${K}`,disabled:I,property:C,includeDescription:A,underlyingValueHasChanged:y,context:h,tableMode:!1,partOfArray:!0,partOfBlock:!1,autoFocus:m===b};return n.jsx(pn,{...B})},k=n.jsx(Co,{value:t,addLabel:u.name?"Add entry to "+u.name:"Add entry",name:e,setFieldValue:s,buildEntry:w,onInternalIdAdded:p,disabled:a||!!u.disabled,includeAddButton:!u.disabled,newDefaultEntry:u.of.defaultValue}),v=n.jsx(Ce,{icon:ke(u,"small"),required:u.validation?.required,title:u.name,className:"text-text-secondary dark:text-text-secondary-dark"});return n.jsxs(n.Fragment,{children:[!d&&n.jsx(dn,{initiallyExpanded:_,className:"px-2 md:px-4 pb-2 md:pb-4 pt-1 md:pt-2",title:v,children:k}),d&&k,n.jsx(Se,{includeDescription:A,showError:i,error:c,disabled:I,property:u})]})}function ki({propertyKey:e,value:t,error:c,showError:i,isSubmitting:a,setValue:l,setFieldValue:s,tableMode:d,property:u,includeDescription:A,underlyingValueHasChanged:y,context:h,disabled:I}){if(!u.oneOf)throw Error("ArrayOneOfField misconfiguration. Property `oneOf` not set");const _=u.expanded===void 0?!0:u.expanded;Te({property:u,value:t,setValue:l});const[g,b]=f.useState(),p=f.useCallback((K,m)=>n.jsx(hz,{name:`${e}.${K}`,index:K,value:t[K],typeField:u.oneOf.typeField??xn,valueField:u.oneOf.valueField??wo,properties:u.oneOf.properties,autoFocus:m===g,context:h},`array_one_of_${K}`),[h,g,u.oneOf,e,t]),w=n.jsx(Ce,{icon:ke(u,"small"),required:u.validation?.required,title:u.name,className:"text-text-secondary dark:text-text-secondary-dark"}),k=Object.keys(u.oneOf.properties)[0],v=n.jsx(Co,{value:t,name:e,addLabel:u.name?"Add entry to "+u.name:"Add entry",buildEntry:p,onInternalIdAdded:b,disabled:a||!!u.disabled,includeAddButton:!u.disabled,setFieldValue:s,newDefaultEntry:{[u.oneOf.typeField??xn]:k,[u.oneOf.valueField??wo]:ko(u.oneOf.properties[k])}});return n.jsxs(n.Fragment,{children:[!d&&n.jsx(dn,{className:"px-2 md:px-4 pb-2 md:pb-4 pt-1 md:pt-2",initiallyExpanded:_,title:w,children:v}),d&&v,n.jsx(Se,{includeDescription:A,showError:i,error:c,disabled:I,property:u})]})}function hz({name:e,index:t,value:c,typeField:i,valueField:a,properties:l,autoFocus:s,context:d}){const u=c&&c[i],[A,y]=f.useState(u??void 0),h=Fe.useFormikContext();f.useEffect(()=>{u||w(Object.keys(l)[0])},[]),f.useEffect(()=>{u!==A&&y(u)},[u]);const I=A?l[A]:void 0,_=Object.entries(l).map(([k,v])=>({id:k,label:v.name??k})),g=`${e}.${i}`,b=`${e}.${a}`,p=I?{propertyKey:b,property:I,context:d,autoFocus:s,partOfArray:!1,partOfBlock:!0,tableMode:!1}:void 0,w=k=>{const v=k?l[k]:void 0;y(k),h.setFieldTouched(g),h.setFieldValue(g,k),h.setFieldValue(b,v?ko(v):null)};return n.jsxs("div",{className:E(Ge,"bg-transparent p-4 my-4 py-8"),children:[n.jsx(Fe.FastField,{required:!0,name:g,children:k=>n.jsx(n.Fragment,{children:n.jsx(Xe,{className:"mb-2",placeholder:n.jsx(j,{variant:"caption",className:"px-4 py-2 font-medium",children:"Type"}),size:"small",position:"item-aligned",value:k.field.value!==void 0&&k.field.value!==null?k.field.value:"",renderValue:v=>n.jsx(Ee,{enumKey:v,enumValues:_,size:"small"}),onValueChange:v=>{w(v)},children:_.map(v=>n.jsx(xe,{value:String(v.id),children:n.jsx(Ee,{enumKey:v.id,enumValues:_,size:"small"})},v.id))})})}),p&&n.jsx(pn,{...p},`form_control_${e}_${A}`)]})}const gz=new zt;try{yn.use(yn.Plugins.AutoResize,{min:100}),yn.unuse(yn.Plugins.FontUnderline),yn.unuse(yn.Plugins.Clear)}catch{}function mi({propertyKey:e,value:t,setValue:c,error:i,showError:a,disabled:l,autoFocus:s,touched:d,property:u,tableMode:A,includeDescription:y,context:h}){const[I,_]=f.useState(t),g=f.useRef(t);Dn("MarkdownFieldBinding",Iz);const b=f.useDeferredValue({internalValue:I,value:t});return f.useEffect(()=>{g.current=t,_(t)},[t]),f.useEffect(()=>{b.internalValue!==g.current&&c(b.internalValue)},[b]),n.jsxs(n.Fragment,{children:[!A&&n.jsx(j,{variant:"caption",className:"flex-grow",children:n.jsx(Ce,{icon:ke(u,"small"),required:u.validation?.required,title:u.name,className:"text-text-secondary dark:text-text-secondary-dark ml-3.5"})}),n.jsx(yn,{value:I??"",className:E(Je,l?Re:We,"text-base"),readOnly:l,renderHTML:p=>gz.render(p),view:{menu:!0,md:!0,html:!1},onChange:({html:p,text:w})=>{_(w??null)}}),n.jsx(Se,{includeDescription:y,showError:a,error:i,disabled:l,property:u})]})}const Iz=`
97
97
  @font-face {
98
98
  font-family: rmel-iconfont;
99
99
  src: url(data:application/vnd.ms-fontobject;base64,fBkAAMAYAAABAAIAAAAAAAIABQMAAAAAAAABAJABAAAAAExQAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAB9vj4gAAAAAAAAAAAAAAAAAAAAAAABoAcgBtAGUAbAAtAGkAYwBvAG4AZgBvAG4AdAAAAA4AUgBlAGcAdQBsAGEAcgAAABYAVgBlAHIAcwBpAG8AbgAgADEALgAwAAAAGgByAG0AZQBsAC0AaQBjAG8AbgBmAG8AbgB0AAAAAAAAAQAAAAsAgAADADBHU1VCsP6z7QAAATgAAABCT1MvMj3jT5QAAAF8AAAAVmNtYXBA5I9dAAACPAAAAwhnbHlmMImhbQAABXwAAA9gaGVhZBtQ+k8AAADgAAAANmhoZWEH3gObAAAAvAAAACRobXR4aAAAAAAAAdQAAABobG9jYTX6MgAAAAVEAAAANm1heHABMAB7AAABGAAAACBuYW1lc9ztwgAAFNwAAAKpcG9zdCcpv64AABeIAAABNQABAAADgP+AAFwEAAAAAAAEAAABAAAAAAAAAAAAAAAAAAAAGgABAAAAAQAA4uPbB18PPPUACwQAAAAAANwY2ykAAAAA3BjbKQAA//8EAAMBAAAACAACAAAAAAAAAAEAAAAaAG8ADAAAAAAAAgAAAAoACgAAAP8AAAAAAAAAAQAAAAoAHgAsAAFERkxUAAgABAAAAAAAAAABAAAAAWxpZ2EACAAAAAEAAAABAAQABAAAAAEACAABAAYAAAABAAAAAAABBAABkAAFAAgCiQLMAAAAjwKJAswAAAHrADIBCAAAAgAFAwAAAAAAAAAAAAAAAAAAAAAAAAAAAABQZkVkAEDnbe2iA4D/gABcA4AAgAAAAAEAAAAAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAAAAAUAAAADAAAALAAAAAQAAAHMAAEAAAAAAMYAAwABAAAALAADAAoAAAHMAAQAmgAAABYAEAADAAbnbelB7TztRe1h7XXteO2A7Y3tov//AADnbelB7TvtRO1f7W/td+2A7Yztn///AAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAWABYAFgAYABoAHgAqACwALAAuAAAAAQAEAAUAAwAGAAcACAAJAAoACwAMAA0ADgAPABAAEQASABMAAgAUABUAFgAXABgAGQAAAQYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAABPAAAAAAAAAAZAADnbQAA520AAAABAADpQQAA6UEAAAAEAADtOwAA7TsAAAAFAADtPAAA7TwAAAADAADtRAAA7UQAAAAGAADtRQAA7UUAAAAHAADtXwAA7V8AAAAIAADtYAAA7WAAAAAJAADtYQAA7WEAAAAKAADtbwAA7W8AAAALAADtcAAA7XAAAAAMAADtcQAA7XEAAAANAADtcgAA7XIAAAAOAADtcwAA7XMAAAAPAADtdAAA7XQAAAAQAADtdQAA7XUAAAARAADtdwAA7XcAAAASAADteAAA7XgAAAATAADtgAAA7YAAAAACAADtjAAA7YwAAAAUAADtjQAA7Y0AAAAVAADtnwAA7Z8AAAAWAADtoAAA7aAAAAAXAADtoQAA7aEAAAAYAADtogAA7aIAAAAZAAAAAABmAMwBHgGEAbwB/gJmAsgC/gM0A3IDogRABKgE7gUuBXAFygYKBmoGpAbEBugHRgewAAAABQAAAAADVgLWAAsAGAAlADQAQAAAEyEyFhQGByEuATQ2Fz4BNyEeARQGIyEiJgM0NjchHgEUBiMhIiY3PgEzITIeARQOASMhIiYnFhQPAQYmNRE0NhfWAlQSGRkS/awSGRnaARgTAWASGRkS/qASGfQZEgJUEhkZEv2sEhnzARgTAWAMFAsLFAz+oBIZOQgIkgseHgsC1RklGAEBGCUZ8hMYAQEYJRkZ/oUTGAEBGCUZGdkSGQsVFxQMGoYGFgaVDAwRASoRDAwAAAAADAAAAAADqwKrAA8AEwAXABsAHwAjACcAMwA3ADsAPwBDAAABIQ4BBwMeARchPgE3ES4BBTMVIxUzFSMnMxUjFTMVKwI1MzUjNTMBISImNDYzITIWFAY3IzUzNSM1MxcjNTM1IzUzA1X9ViQwAQEBMSQCqiQxAQEx/lxWVlZWgFZWVlYqVlZWVgFV/wASGBgSAQASGBgZVlZWVoBWVlZWAqsBMST+ViQxAQExJAGqJDF/VipW1lYqVlYqVv6AGCQZGSQYqlYqVtZWKlYAAwAAAAADKwMAAA8AHwAzAAAlHgEXIT4BNxEuASchDgEHMyEyFhcRDgEHIS4BJxE+ASUnJisBIg8BIyIGFBYzITI2NCYjAQABMCQBViQwAQEwJP6qJDABgAEAExcBARcT/wATFwEBFwEoHgsStBILHmsTFxcTAgARGRkRVSQwAQEwJAGrJDABATAkFxT+qxEZAQEZEQFVFBfVHg0NHhcnFxcnFwADAAAAAAOrAtkAFgAtAD4AAAEVBg8BBiIvASY0PwEnJjQ/ATYyHwEWBTc2NC8BJiIPAQYHFRYfARYyPwE2NCcBJyYGBwMGFh8BFjY3EzYmJwOrAQmwBxEHHgYGk5MGBh4HEQewCf0PkwYGHwYSBrAJAQEJsAcRBx4GBgFCKQkPBOMCBwgoCQ8E4gMHCQGIEA0KsAYGHgcRBpOTBhIGHgYGsAoVkwYRBx4GBrAKDRANCrAGBh4GEgYB2Q8DBwj9jAgQAw4DBwgCcwgPBAACAAAAAAOaAm8AEAAhAAAlJzc2NCYiDwEGFB8BFjI2NCU3JyY0NjIfARYUDwEGIiY0AXOmpg0ZJAzEDQ3EDiEaAQ2mpg0aIQ7EDQ3EDiEa2qamDiEaDcQNIg3EDRohDqamDCQZDcQNIg3EDRkkAAAAAwAAAAADuAKsAAsAFwAjAAABDgEHHgEXPgE3LgEDLgEnPgE3HgEXDgEDDgEHHgEXPgE3LgECAJjrNTXrmJjrNTXrmFZwAgJwVlZwAgJwVjRDAQFDNDRDAQFDAqwCpIaGpAICpIaGpP4OAnBWVnACAnBWVnABPgFDNDRDAQFDNDRDAAAABQAAAAADgAKrAAsAFwAjADAAQAAAEyEyNjQmIyEiBhQWFyE+ATQmJyEOARQWEyEyNjQmIyEiBhQWJx4BFyE+ATQmJyEOASUhHgEXEQ4BByEuATURNDarAQATFxcT/wARGRkRAQATFxcT/wARGRkRAQATFxcT/wARGRkaARkRAQATFxcT/wARGQHUAQARGQEBGRH/ABMXFwEAFycXFycXqwEZIhkBARkiGQFVFycXFycX1RMXAQEXJhcBARcYARcT/gARGQEBGRECABMXAAAAAAMAAAAAA6sCVgAZACYAQAAAASMiBhQWOwEeARcOAQcjIgYUFjsBPgE3LgEFHgEXIT4BNCYnIQ4BFyMuASc+ATczMjY0JisBDgEHHgEXMzI2NCYC1YASGBgSgDdIAQFIN4ASGBgSgFt4AwN4/iUBGBIBABIYGBL/ABIYVYA3SAEBSDeAEhgYEoBbeAMDeFuAEhgYAlUYJBkBSTY2SQEZJBgCeFtbeNMSGAEBGCQYAQEYkgFJNjZJARkkGAJ4W1t4AhgkGQABAAAAAAOsAisAHgAAAS4BJw4BBwYWFxY2Nz4BNzIWFwcGFhczPgE3NS4BBwMSO5ZVh9Q4ChMXFCMJK6FnP28sURMTHu4SGAECMRYBvDQ6AQKJchcqCAYPElZpASslUhYxAgEYEu8dFBMAAAABAAAAAAOyAisAHgAAAQ4BBycmBgcVHgEXMz4BLwE+ATMeARceATc+AScuAQIUVZY7URYxAgEYEu4eFBNSLW8+Z6ErCSQTFxMKOdMCKwE6NFAUFB3vEhgBAjEWUiUrAWlWEg8GCCoXcokAAAADAAAAAAL1Ar8AFAAcACQAAAE+ATcuAScjDgEHER4BFyE+ATc0JiUzHgEUBgcjEyM1Mx4BFAYCkyEpAQJmTu8UGQEBGRQBB0lpAjT+1IgdJycdiJ+fnx0nJwGKF0QkTmYCARoT/d4TGgECYUk1UtkBJjsmAf7viQEmOyYAAQAAAAADEgK/ABwAAAEeARczAyMOARQWFzM+ATQmJyMTMz4BNCYnIw4BAaUBJh0hnDsdJiYd5B0mJh0hnDsdJiYd5B0mAnodJgH+lAEmOicBASc6JgEBbAEmOicBAScABgAAAAADlgLWAAsAFwAjAEEAUgBuAAABIT4BNCYnIQ4BFBYBIQ4BFBYXIT4BNCYDIQ4BFBYXIT4BNCYFIyIGFBY7ARUjIgYUFjsBFSMiBhQWOwEyNjc1LgEDMxUeATI2PQE0JisBIgYUFhcjIgYUFjsBBwYdARQWOwEyNjQmKwE3Nj0BLgEBawIAEhgYEv4AEhkZAhL+ABIZGRICABIYGBL+ABIZGRICABIYGP1YVQkMDAlAFQoLCwoVQAkMDAlVCgsBAQtfFQELEwwMCSsJDAxeVQkMDAk3RwUMCVUKCwsKN0gFAQsCVQEYJBgBARgkGP5VARgkGAEBGCQYAQEBGCQYAQEYJBjVDBIMFgwSDBYMEgwMCYAJDAHWawkMDAmACQwMEgzWDBIMVAYICQkMDBIMVAYICQkMAAAAAAYAAAAAA4sCwAAIABEAGgAmADIAPwAAEw4BFBYyNjQmAw4BFBYyNjQmAw4BFBYyNjQmFyE+ATQmJyEOARQWNyE+ATQmJyEOARQWAx4BFyE+ATQmJyEOAbUbJCQ3JCQcGyQkNyQkHBskJDYlJI8CABIYGBL+ABIYGBICABIYGBL+ABIYGBkBGBICABIYGBL+ABIYAcABJDYkJDYkAQEBJDYkJDYk/gEBJDYkJDYkagEYJBgBARgkGP8BGCQYAQEYJBgBKhIYAQEYJBgBARgAAAACAAAAAANWAlYAFgAtAAAlMjY/ATY9AS4BKwEiBh0BFBYXMwcGFgUyNj8BNj0BNCYrASIGBxUeARczBwYWATIRGwc9CQEYEqsSGBgSViwOIAHMEBsIPAkYEqsSGAEBGBJVLA0gqxEOeRIUwhIYGBKrEhgBWB4zAREOeRIUwhIYGBKrEhgBWB4zAAAAAAMAAAAAA4ACwAAIABkAJQAAJT4BNzUjFR4BAR4BFzMVMzUzPgE0JichDgEDIT4BNCYnIQ4BFBYCACQwAaoBMP75ASQblqqWGyQkG/4qGyQrAqoSGRkS/VYSGRlAATAkKyskMAI/GyQBgIABJDYkAQEk/noBGCQYAQEYJBgAAAAAAgAA//8DKwMBABsAKAAAJT4BNxEuASIGBxEUBgcGLgI1ES4BIgYHER4BBx4BMyEyNjQmIyEiBgIiYnoCAR4tHgFBNSFBNR0BHi0eAQOm1AEYEgIAEhgYEv4AEhitD5NlARcWHh4W/uQ3UwwHDys8IwEgFh4eFv7gdpR2EhkZJBgYAAAAAwAAAAADcALHAAsALQA5AAATIT4BNCYjISIGFBYFISIGFBYXITIWFxYGByM1LgEPAQYUHwEWNjc1Mz4BJy4BBSMiBhQWFzM+ATQmwAJVEhkZEv2rEhgYAgv+BxIYGBICBiAzBgUxKGABGQtMBgZMDBgBVU1iBQhk/m2rEhgYEqsSGBgCcQEYJBgYJBisGCQYAScgKTkCIg8KCkwHEQdMCgoPIgJrTkRV/xgkGAEBGCQYAAAAAgAAAAADlgLAABQAKAAAARQWFzMRHgEyNjcRMz4BNCYnIQ4BAzMVFBYyNjc1MzI2NCYnIQ4BFBYBayQclQEkNiQBlRwkJBz+VhwkwEAkNyQBQBskJBv/ABwkJAKAGyQB/kAbJCQbAcABJDYkAQEk/tDrGyQkG+skNyQBASQ3JAAKAAAAAAN4AvgADwAWABoAIQAlACkALQA0ADgAPwAAASEOAQcRHgEXIT4BNxEuAQEjIiY9ATM1IzUzNSM1NDY7ARMjNTM1IzUzNSM1MxMjNTMVFAY3IzUzNSM1MzIWFQMs/aggKgEBKiACWCAqAQEq/h5xDxaWlpaWFg9x4ZaWlpaWlrxxlhYWlpaWcQ8WAvcBKiD9qCAqAQEqIAJYICr9XhYPcUuWS3EPFv2olkuWS5b9qJZxDxbhlkuWFg8AAAACAAD//wOAAwAADwAgAAAlES4BJyEOAQcRHgEXIT4BJRc3NjIfARYGIyEiJj8BPgEDgAEwJP2qJDABATAkAlYkMP39WYUHFAeVCAwN/gEOCwhqBxRVAlYkMAEBMCT9qiQwAQEw+2yqCAnHCxcXC4kIAQAAAAEAAAAAAzUCNgAQAAABBwYUFjI/ARcWMjY0LwEmIgHZ/hAhLBHX1xEsIRD+EC4CJv4RLCEQ19cQISwR/hAAAAABAAAAAAM1AjYAEgAAAQcnJiciDgEWHwEWMj8BNjQuAQLW1tcQFxEbDQYM/hEsEf4QIS0CJtfXDwESICAM/hAQ/hAtIAEAAAAEAAAAAANrAusAEAAhADMARAAANzMVFBYyNj0BNCYrASIGFBYTIyIGFBY7ATI2PQE0JiIGFQEyNj0BMzI2NCYrASIGHQEUFhM1NCYiBh0BFBY7ATI2NCYjyWgeLB0dFpwWHR1+aBYdHRacFh0dLB4BahYeaBYdHRacFh0dSh4sHR0WnBYdHRaxaBYdHRacFh0dLB4Bnh4sHR0WnBYdHRb9Xx0WaB4sHR0WnBYdAjloFh0dFpwWHR0sHgAAAAQAAAAAA1QC1AARACMANABGAAATDgEHFR4BFzM+ATQmKwE1NCYnPgE9ATMyNjQmJyMOAQcVHgEBIyIGFBYXMz4BNzUuASIGFQMeATsBFRQWMjY3NS4BJyMOAd0VGwEBGxWRFRsbFWEcFBQcYRUbGxWRFRsBARsCK2EVGxsVkRUbAQEbKRySARsVYRwpGwEBGxWRFRsBHwEbFZEVGwEBGykcYRUbwwEbFWEcKRsBARsVkRUb/qscKRsBARsVkRUbGxUBtRQcYRUbGxWRFRsBARsAAAAAAAASAN4AAQAAAAAAAAAVAAAAAQAAAAAAAQANABUAAQAAAAAAAgAHACIAAQAAAAAAAwANACkAAQAAAAAABAANADYAAQAAAAAABQALAEMAAQAAAAAABgANAE4AAQAAAAAACgArAFsAAQAAAAAACwATAIYAAwABBAkAAAAqAJkAAwABBAkAAQAaAMMAAwABBAkAAgAOAN0AAwABBAkAAwAaAOsAAwABBAkABAAaAQUAAwABBAkABQAWAR8AAwABBAkABgAaATUAAwABBAkACgBWAU8AAwABBAkACwAmAaUKQ3JlYXRlZCBieSBpY29uZm9udApybWVsLWljb25mb250UmVndWxhcnJtZWwtaWNvbmZvbnRybWVsLWljb25mb250VmVyc2lvbiAxLjBybWVsLWljb25mb250R2VuZXJhdGVkIGJ5IHN2ZzJ0dGYgZnJvbSBGb250ZWxsbyBwcm9qZWN0Lmh0dHA6Ly9mb250ZWxsby5jb20ACgBDAHIAZQBhAHQAZQBkACAAYgB5ACAAaQBjAG8AbgBmAG8AbgB0AAoAcgBtAGUAbAAtAGkAYwBvAG4AZgBvAG4AdABSAGUAZwB1AGwAYQByAHIAbQBlAGwALQBpAGMAbwBuAGYAbwBuAHQAcgBtAGUAbAAtAGkAYwBvAG4AZgBvAG4AdABWAGUAcgBzAGkAbwBuACAAMQAuADAAcgBtAGUAbAAtAGkAYwBvAG4AZgBvAG4AdABHAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAHMAdgBnADIAdAB0AGYAIABmAHIAbwBtACAARgBvAG4AdABlAGwAbABvACAAcAByAG8AagBlAGMAdAAuAGgAdAB0AHAAOgAvAC8AZgBvAG4AdABlAGwAbABvAC4AYwBvAG0AAAAAAgAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAQIBAwEEAQUBBgEHAQgBCQEKAQsBDAENAQ4BDwEQAREBEgETARQBFQEWARcBGAEZARoBGwADdGFiCGtleWJvYXJkBmRlbGV0ZQpjb2RlLWJsb2NrBGNvZGUKdmlzaWJpbGl0eQp2aWV3LXNwbGl0BGxpbmsEcmVkbwR1bmRvBGJvbGQGaXRhbGljDGxpc3Qtb3JkZXJlZA5saXN0LXVub3JkZXJlZAVxdW90ZQ1zdHJpa2V0aHJvdWdoCXVuZGVybGluZQR3cmFwCWZvbnQtc2l6ZQRncmlkBWltYWdlC2V4cGFuZC1sZXNzC2V4cGFuZC1tb3JlD2Z1bGxzY3JlZW4tZXhpdApmdWxsc2NyZWVuAAAAAAA=);
@@ -676,10 +676,10 @@
676
676
  .rc-md-editor .header-list .list-item:hover {
677
677
  }
678
678
 
679
- `;function Bi({propertyKey:e,value:t,error:c,showError:i,isSubmitting:l,setValue:a,tableMode:s,property:d,includeDescription:u,underlyingValueHasChanged:A,context:_,disabled:g}){if(!Array.isArray(d.resolvedProperties))throw Error("ArrayCustomShapedFieldBinding misconfiguration. Property `of` not set");const y=d.expanded===void 0?!0:d.expanded;Ne({property:d,value:t,setValue:a});const h=n.jsx(Ce,{icon:we(d),required:d.validation?.required,className:"text-text-secondary dark:text-text-secondary-dark",title:d.name}),I=d.resolvedProperties.map((b,p)=>{const w={propertyKey:`${e}[${p}]`,disabled:g,property:b,includeDescription:u,underlyingValueHasChanged:A,context:_,tableMode:!1,partOfArray:!0,partOfBlock:!1,autoFocus:!1};return n.jsx("div",{className:"pb-4",children:n.jsx(bn,{...w})},`custom_shaped_array_${p}`)});return n.jsxs(n.Fragment,{children:[!s&&n.jsx(fn,{initiallyExpanded:y,title:h,className:"px-2 md:px-4 pb-2 md:pb-4 pt-1 md:pt-2",children:I}),s&&I,n.jsx(Se,{includeDescription:u,showError:i,error:c,disabled:g,property:d})]})}De.addMethod(De.array,"uniqueInArray",function(e=c=>c,t){return this.test("uniqueInArray",t,c=>!c||c.length===new Set(c.map(e)).size)});function Ei(e,t,c){const i={};return Object.entries(t).forEach(([l,a])=>{i[l]=lo({property:a,customFieldValidator:c,name:l,entityId:e})}),De.object().shape(i)}function lo(e){const t=e.property;if(We(t))throw console.error("Error in property",e),Error("Trying to create a yup mapping from a property builder. Please use resolved properties only");if(t.dataType==="string")return kz(e);if(t.dataType==="number")return mz(e);if(t.dataType==="boolean")return Sz(e);if(t.dataType==="map")return wz(e);if(t.dataType==="array")return Ez(e);if(t.dataType==="date")return Kz(e);if(t.dataType==="geopoint")return vz(e);if(t.dataType==="reference")return Cz(e);throw console.error("Unsupported data type in yup mapping",t),Error("Unsupported data type in yup mapping")}function wz({property:e,entityId:t,customFieldValidator:c,name:i}){const l={};return e.validation,e.properties&&Object.entries(e.properties).forEach(([a,s])=>{l[a]=lo({property:s,parentProperty:e,customFieldValidator:c,name:`${i}[${a}]`,entityId:t})}),De.object().shape(l)}function kz({property:e,parentProperty:t,customFieldValidator:c,name:i,entityId:l}){let a=De.string();const s=e.validation;if(e.enumValues){s?.required&&(a=a.required(s?.requiredMessage?s.requiredMessage:"Required"));const d=sn(e.enumValues);a=a.oneOf((s?.required?d:[...d,null]).map(u=>u?.id??null)).nullable(!0)}if(s){if(a=s.required?a.required(s?.requiredMessage?s.requiredMessage:"Required").nullable(!0):a.notRequired().nullable(!0),s.unique&&c&&i&&(a=a.test("unique","This value already exists and should be unique",(d,u)=>c({name:i,property:e,parentProperty:t,value:d,entityId:l}))),(s.min||s.min===0)&&(a=a.min(s.min,`${e.name} must be min ${s.min} characters long`)),(s.max||s.max===0)&&(a=a.max(s.max,`${e.name} must be max ${s.max} characters long`)),s.matches){const d=typeof s.matches=="string"?si(s.matches):s.matches;d&&(a=a.matches(d,s.matchesMessage?{message:s.matchesMessage}:void 0))}s.trim&&(a=a.trim()),s.lowercase&&(a=a.lowercase()),s.uppercase&&(a=a.uppercase()),e.email&&(a=a.email(`${e.name} must be an email`)),e.url&&(a=a.url(`${e.name} must be a url`))}else a=a.notRequired().nullable(!0);return a}function mz({property:e,parentProperty:t,customFieldValidator:c,name:i,entityId:l}){const a=e.validation;let s=De.number().typeError("Must be a number");return a?(s=a.required?s.required(a.requiredMessage?a.requiredMessage:"Required").nullable(!0):s.notRequired().nullable(!0),a.unique&&c&&i&&(s=s.test("unique","This value already exists and should be unique",d=>c({name:i,property:e,parentProperty:t,value:d,entityId:l}))),(a.min||a.min===0)&&(s=s.min(a.min,`${e.name} must be higher or equal to ${a.min}`)),(a.max||a.max===0)&&(s=s.max(a.max,`${e.name} must be lower or equal to ${a.max}`)),(a.lessThan||a.lessThan===0)&&(s=s.lessThan(a.lessThan,`${e.name} must be higher than ${a.lessThan}`)),(a.moreThan||a.moreThan===0)&&(s=s.moreThan(a.moreThan,`${e.name} must be lower than ${a.moreThan}`)),a.positive&&(s=s.positive(`${e.name} must be positive`)),a.negative&&(s=s.negative(`${e.name} must be negative`)),a.integer&&(s=s.integer(`${e.name} must be an integer`))):s=s.notRequired().nullable(!0),s}function vz({property:e,parentProperty:t,customFieldValidator:c,name:i,entityId:l}){let a=De.object();const s=e.validation;return s?.unique&&c&&i&&(a=a.test("unique","This value already exists and should be unique",d=>c({name:i,property:e,parentProperty:t,value:d,entityId:l}))),s?.required?a=a.required(s.requiredMessage).nullable(!0):a=a.notRequired().nullable(!0),a}function Kz({property:e,parentProperty:t,customFieldValidator:c,name:i,entityId:l}){if(e.autoValue)return De.object().nullable();let a=De.date();const s=e.validation;return s?(a=s.required?a.required(s?.requiredMessage?s.requiredMessage:"Required"):a.notRequired(),s.unique&&c&&i&&(a=a.test("unique","This value already exists and should be unique",d=>c({name:i,property:e,parentProperty:t,value:d,entityId:l}))),s.min&&(a=a.min(s.min,`${e.name} must be after ${s.min}`)),s.max&&(a=a.max(s.max,`${e.name} must be before ${s.min}`))):a=a.notRequired(),a.transform(d=>d instanceof Date?d:null).nullable()}function Cz({property:e,parentProperty:t,customFieldValidator:c,name:i,entityId:l}){let a=De.object();const s=e.validation;return s?(a=s.required?a.required(s?.requiredMessage?s.requiredMessage:"Required").nullable(!0):a.notRequired().nullable(!0),s.unique&&c&&i&&(a=a.test("unique","This value already exists and should be unique",d=>c({name:i,property:e,parentProperty:t,value:d,entityId:l})))):a=a.notRequired().nullable(!0),a}function Sz({property:e,parentProperty:t,customFieldValidator:c,name:i,entityId:l}){let a=De.boolean();const s=e.validation;return s?(a=s.required?a.required(s?.requiredMessage?s.requiredMessage:"Required").nullable(!0):a.notRequired().nullable(!0),s.unique&&c&&i&&(a=a.test("unique","This value already exists and should be unique",d=>c({name:i,property:e,parentProperty:t,value:d,entityId:l})))):a=a.notRequired().nullable(!0),a}function Bz(e){return e.validation?.uniqueInArray?!0:e.dataType==="map"&&e.properties?Object.entries(e.properties).filter(([t,c])=>c.validation?.uniqueInArray):!1}function Ez({property:e,parentProperty:t,customFieldValidator:c,name:i,entityId:l}){let a=De.array();if(e.of)if(Array.isArray(e.of)){const d=e.of.map((u,A)=>({[`${i}[${A}]`]:lo({property:u,parentProperty:e,entityId:l})})).reduce((u,A)=>({...u,...A}),{});return De.array().of(De.mixed().test("Dynamic object validation","Dynamic object validation error",(u,A)=>dn(d,A.path).validate(u)))}else{a=a.of(lo({property:e.of,parentProperty:e,entityId:l}));const d=Bz(e.of);d&&(typeof d=="boolean"?a=a.uniqueInArray(u=>u,`${e.name} should have unique values within the array`):Array.isArray(d)&&d.forEach(([u,A])=>{a=a.uniqueInArray(_=>_&&_[u],`${e.name} → ${A.name??u}: should have unique values within the array`)}))}const s=e.validation;return s?(a=s.required?a.required(s?.requiredMessage?s.requiredMessage:"Required").nullable(!0):a.notRequired().nullable(!0),(s.min||s.min===0)&&(a=a.min(s.min,`${e.name} should be min ${s.min} entries long`)),s.max&&(a=a.max(s.max,`${e.name} should be max ${s.max} entries long`))):a=a.notRequired().nullable(!0),a}const Fz=({containerRef:e})=>{const{isSubmitting:t,isValidating:c,errors:i}=Fe.useFormikContext();return f.useEffect(()=>{const l=Object.keys(i);if(l.length>0&&t&&!c){const a=e?.current?.querySelector(`#form_field_${l[0]}`);if(a&&e?.current){const s=Fi(e.current);if(s){const u=a.getBoundingClientRect().top;s.scrollTo({top:s.scrollTop+u-64,behavior:"smooth"})}const d=a.querySelector("input");d&&d.focus()}}},[t,c,i,e]),null},Pz=e=>{const t=e&&e.scrollHeight>e.clientHeight,c=e?window.getComputedStyle(e).overflowY:null,i=c&&c.indexOf("hidden")!==-1;return t&&!i},Fi=e=>!e||e===document.body?document.body:Pz(e)?e:Fi(e.parentNode);function Dz({customId:e,entityId:t,status:c,onChange:i,error:l,entity:a}){const s=c==="existing"||!e,d=c!=="existing"&&!e,u=f.useMemo(()=>{if(!(!e||typeof e=="boolean"||e==="optional"))return sn(e)},[e]),A=cn(),{copy:_}=rc({onSuccess:h=>A.open({type:"success",message:`Copied ${h}`})}),g=re(),y={label:d?"ID is set automatically":"ID",disabled:s,name:"id",value:(a&&c==="existing"?a.id:t)??"",endAdornment:a?n.jsxs(n.Fragment,{children:[n.jsx(ye,{title:"Copy",children:n.jsx(ee,{onClick:h=>_(a.id),"aria-label":"copy-id",children:n.jsx(Rn,{size:"small"})})}),g?.entityLinkBuilder&&n.jsx(ye,{title:"Open in the console",children:n.jsx(ee,{component:"a",href:g.entityLinkBuilder({entity:a}),rel:"noopener noreferrer",target:"_blank",onClick:h=>h.stopPropagation(),"aria-label":"go-to-datasource",children:n.jsx(no,{size:"small"})})})]}):void 0};return n.jsxs(n.Fragment,{children:[u&&n.jsx(xe,{error:l,onValueChange:h=>i(h),...y,renderValue:h=>{const I=u.find(b=>b.id===h);return I?`${I.id} - ${I.label}`:h},children:u.map(h=>n.jsx(Re,{value:String(h.id),children:n.jsx(Ee,{enumKey:h.id,enumValues:u,size:"medium"})},h.id))}),!u&&n.jsx(An,{...y,error:l,placeholder:e==="optional"?"Autogenerated ID, it can be manually changed":c==="new"||c==="copy"?"ID of the new document":"ID of the document",onChange:h=>{let I=h.target.value;return I&&(I=I.trim()),i(I.length?I:void 0)}}),n.jsx(Fe.ErrorMessage,{name:"id",component:"div",children:h=>"You need to specify an ID"})]})}function te({children:e,className:t,variant:c="filled",disabled:i=!1,size:l="medium",startIcon:a=null,fullWidth:s=!1,component:d,...u}){const A="rounded-md border uppercase inline-flex items-center justify-center p-2 px-4 text-sm font-medium focus:outline-none transition ease-in-out duration-150 gap-2",_=E({"w-full":s,"w-fit":!s,"border-transparent bg-primary hover:bg-blue-600 focus:ring-blue-400 !text-white shadow hover:ring-1 hover:ring-primary":c==="filled"&&!i,"border-primary !text-primary hover:bg-primary hover:bg-opacity-10 hover:border-blue-600 !hover:text-blue-600 focus:ring-blue-400 hover:ring-1 hover:ring-primary":c==="outlined"&&!i,"border-transparent !text-primary !hover:text-blue-600 hover:bg-primary hover:bg-opacity-10":c==="text"&&!i,"border-blue-600 border-opacity-50 dark:border-blue-500 dark:border-opacity-50 opacity-50 !text-blue-600 !dark:text-blue-500 text-opacity-50 dark:text-opacity-50":c==="outlined"&&i,"border-transparent outline-none opacity-50 !text-gray-600 !dark:text-gray-500":(c==="filled"||c==="text")&&i}),g=E({"py-1 px-2":l==="small","py-2 px-4":l==="medium","py-2 px-5":l==="large"});return d?n.jsxs(d,{onClick:u.onClick,className:E(ge,a?"pl-3":"",A,_,g,t),...u,children:[a,e]}):n.jsxs("button",{type:u.type??"button",onClick:u.onClick,className:E(ge,a?"pl-3":"",A,_,g,t),disabled:i,...u,children:[a,e]})}const Pi=f.memo(Nz,(e,t)=>e.status===t.status&&e.path===t.path&&de(e.entity?.values,t.entity?.values));function Nz({status:e,path:t,collection:c,entity:i,onEntitySaveRequested:l,onDiscard:a,onModified:s,onValuesChanged:d,onIdChange:u,onFormContextChange:A,hideId:_,autoSave:g,onIdUpdateError:y}){const h=re(),I=Qe(),b=h.plugins,p=f.useMemo(()=>Me({collection:c,path:t,values:i?.values,fields:h.fields}),[i?.values,t]),w=(e==="new"||e==="copy")&&!!p.customId&&p.customId!=="optional",k=f.useMemo(()=>e==="new"||e==="copy"?w?void 0:I.generateEntityId(t):i?.id,[]),K=f.useRef(!1),m=f.useMemo(()=>{const Q=p.properties;if((e==="existing"||e==="copy")&&i)return i.values??ao(Q);if(e==="new")return ao(Q);throw console.error({status:e,entity:i}),new Error("Form has not been initialised with the correct parameters")},[e,p,i]),[v,S]=f.useState(k),[B,P]=f.useState(!1),[F,D]=f.useState(),C=f.useRef(i?.values??m),N=C.current,[M,H]=f.useState(N),Z=Q=>{H(Q),d&&d(Q),g&&Q&&!de(Q,N)&&L(Q)};f.useEffect(()=>{v&&u&&u(v)},[v,u]);const O=Me({collection:c,path:t,entityId:v,values:M,previousValues:N,fields:h.fields}),oe=O.callbacks?.onIdUpdate;f.useEffect(()=>{if(oe&&M&&(e==="new"||e==="copy"))try{const Q=oe({collection:O,path:t,entityId:v,values:M,context:h});S(Q)}catch(Q){y&&y(Q),console.error(Q)}},[v,M,e]);const U=f.useMemo(()=>N&&e==="existing"?Object.entries(O.properties).map(([Q,q])=>{if(io(q))return{};const R=N[Q],$=m[Q];return de(R,$)?{}:{[Q]:$}}).reduce((Q,q)=>({...Q,...q}),{}):{},[m,O.properties,N,e]),L=Q=>l({collection:O,path:t,entityId:v,values:Q,previousValues:i?.values,closeAfterSave:K.current,autoSave:g??!1}).then(q=>{const R=e==="new"?"new_entity_saved":e==="copy"?"entity_copied":e==="existing"?"entity_edited":"unmapped_event";h.onAnalyticsEvent?.(R,{path:t}),C.current=Q}).catch(q=>{console.error(q),D(q)}).finally(()=>{K.current=!1}),X=(Q,q)=>{if(w&&!v){console.error("Missing custom Id"),P(!0),q.setSubmitting(!1);return}if(D(void 0),P(!1),e==="existing"){if(!i?.id)throw Error("Form misconfiguration when saving, no id for existing entity")}else if(e==="new"||e==="copy"){if(O.customId&&O.customId!=="optional"&&!v)throw Error("Form misconfiguration when saving, entityId should be set")}else throw Error("New FormType added, check EntityForm");L(Q)?.then(R=>{q.resetForm({values:Q,submitCount:0,touched:{}})}).finally(()=>{q.setSubmitting(!1)})},W=f.useCallback(({name:Q,value:q,property:R})=>I.checkUniqueField(t,Q,q,R,v),[I,t,v]),V=f.useMemo(()=>v?Ei(v,O.properties,W):void 0,[v,O.properties,W]);return n.jsx(Fe.Formik,{initialValues:m,onSubmit:X,validationSchema:V,validate:Q=>console.debug("Validating",Q),onReset:()=>a&&a(),children:Q=>{const q=[],R={setFieldValue:Q.setFieldValue,values:Q.values,collection:Me({collection:O,path:t,fields:h.fields}),entityId:v,path:t,save:L};if(f.useEffect(()=>{A&&A(R)},[A,R]),b&&O){const $={entityId:v,path:t,status:e,collection:c,context:h,currentEntityId:v,formContext:R};q.push(...b.map((ne,J)=>ne.form?.Actions?n.jsx(ne.form.Actions,{...$},`actions_${ne.name}`):null).filter(Boolean))}return n.jsxs("div",{className:"h-full overflow-auto",children:[q.length>0&&n.jsx("div",{className:E("w-full flex justify-end items-center sticky top-0 right-0 left-0 z-10 bg-opacity-60 bg-slate-200 dark:bg-opacity-60 dark:bg-slate-800 backdrop-blur-md"),children:q}),n.jsxs("div",{className:"pl-4 pr-4 pt-12 pb-16 md:pl-8",children:[n.jsx("div",{className:`w-full py-2 flex items-center mt-${4+(q?8:0)} lg:mt-${8+(q?8:0)} mb-8`,children:n.jsx(j,{className:"mt-4 flex-grow "+O.hideIdFromForm?"mb-2":"mb-0",variant:"h4",children:O.singularName??O.name})}),!_&&n.jsx(Dz,{customId:O.customId,entityId:v,status:e,onChange:S,error:B,entity:i}),v&&n.jsx(Mz,{...Q,initialValues:N,onModified:s,onValuesChanged:Z,underlyingChanges:U,entity:i,resolvedCollection:O,formContext:R,status:e,savingError:F,closeAfterSaveRef:K,autoSave:g})]})]})}})}function Mz(e){const{values:t,onModified:c,onValuesChanged:i,underlyingChanges:l,formContext:a,entity:s,touched:d,setFieldValue:u,resolvedCollection:A,isSubmitting:_,status:g,handleSubmit:y,savingError:h,dirty:I,closeAfterSaveRef:b,autoSave:p}=e,w=I;f.useEffect(()=>{c&&c(w),i&&i(t)},[w,t]),f.useEffect(()=>{!p&&l&&s&&Object.entries(l).forEach(([v,S])=>{const B=t[v];!de(S,B)&&!d[v]&&(console.debug("Updated value from the datasource:",v,S),u(v,S!==void 0?S:null))})},[p,l,s,t,d,u]);const k=n.jsx("div",{className:"flex flex-col gap-8",children:(A.propertiesOrder??Object.keys(A.properties)).map(v=>{const S=A.properties[v];if(!S)return console.warn(`Property ${v} not found in collection ${A.name}`),null;const B=!!l&&Object.keys(l).includes(v)&&!!d[v],P=!p&&_||Nn(S)||!!S.disabled;if(io(S))return null;const D={propertyKey:v,disabled:P,property:S,includeDescription:S.description||S.longDescription,underlyingValueHasChanged:B&&!p,context:a,tableMode:!1,partOfArray:!1,partOfBlock:!1,autoFocus:!1};return n.jsx("div",{id:`form_field_${v}`,children:n.jsx(bn,{...D})},`field_${A.name}_${v}`)}).filter(Boolean)}),K=_||!w&&g==="existing",m=f.useRef(null);return n.jsxs(Fe.Form,{onSubmit:y,noValidate:!0,children:[n.jsxs("div",{className:"mt-12",ref:m,children:[k,n.jsx(Fz,{containerRef:m})]}),n.jsx("div",{className:"h-14"}),!p&&n.jsxs(wn,{position:"absolute",children:[h&&n.jsx("div",{className:"text-right",children:n.jsx(j,{color:"error",children:h.message})}),n.jsx(te,{variant:"text",disabled:K,type:"reset",children:g==="existing"?"Discard":"Clear"}),n.jsxs(te,{variant:"text",color:"primary",type:"submit",disabled:K,onClick:()=>{b.current=!1},children:[g==="existing"&&"Save",g==="copy"&&"Create copy",g==="new"&&"Create"]}),n.jsxs(te,{variant:"filled",color:"primary",type:"submit",disabled:K,onClick:()=>{b.current=!0},children:[g==="existing"&&"Save and close",g==="copy"&&"Create copy and close",g==="new"&&"Create and close"]})]})]})}const Di={text_field:{name:"Text field",description:"Simple short text",dataType:"string",Icon:Lc,color:"#2d7ff9",Field:Tn},multiline:{name:"Multiline",description:"Text with multiple lines",dataType:"string",Icon:Qc,color:"#2d7ff9",Field:Tn},markdown:{name:"Markdown",description:"Text with advanced markdown syntax",dataType:"string",Icon:Kc,color:"#2d7ff9",Field:Si},url:{name:"Url",description:"Text with URL validation",dataType:"string",Icon:Sc,color:"#154fb3",Field:Tn},email:{name:"Email",description:"Text with email validation",dataType:"string",Icon:pc,color:"#154fb3",Field:Tn},select:{name:"Select/enum",description:"Select one text value from within an enumeration",dataType:"string",Icon:Pc,color:"#4223c9",Field:qr},multi_select:{name:"Multi select",description:"Select multiple text values from within an enumeration",dataType:"array",Icon:Dc,color:"#4223c9",Field:xr},number_input:{name:"Number input",description:"Simple number field with validation",dataType:"number",Icon:Mc,color:"#bec920",Field:Tn},number_select:{name:"Number select",description:"Select a number value from within an enumeration",dataType:"number",Icon:kr,color:"#bec920",Field:qr},multi_number_select:{name:"Multiple number select",description:"Select multiple number values from within an enumeration",dataType:"array",Icon:kr,color:"#bec920",Field:xr},file_upload:{name:"File upload",description:"Input for uploading single files",dataType:"string",Icon:Vc,color:"#f92d9a",Field:nt},multi_file_upload:{name:"Multiple file upload",description:"Input for uploading multiple files",dataType:"array",Icon:Ic,color:"#f92d9a",Field:nt},reference:{name:"Reference",description:"The value refers to a different collection",dataType:"reference",Icon:Fc,color:"#ff0042",Field:ki},multi_references:{name:"Multiple references",description:"Multiple values that refer to a different collection",dataType:"array",Icon:dc,color:"#ff0042",Field:fi},switch:{name:"Switch",description:"Boolean true or false field (or yes or no, 0 or 1...)",dataType:"boolean",Icon:vc,color:"#20d9d2",Field:pi},date_time:{name:"Date/time",description:"A date time select field",dataType:"date",Icon:Oc,color:"#8b46ff",Field:wi},group:{name:"Group",description:"Group of multiple fields",dataType:"map",Icon:Ir,color:"#ff9408",Field:mi},key_value:{name:"Key-value",description:"Flexible field that allows the user to add multiple key-value pairs",dataType:"map",Icon:Ir,color:"#ff9408",Field:vi},repeat:{name:"Repeat/list",description:"A field that gets repeated multiple times (e.g. multiple text fields)",dataType:"array",Icon:Kr,color:"#ff9408",Field:Ki},custom_array:{name:"Custom array",description:"A field that saved its value as an array of custom objects",dataType:"array",Icon:Kr,color:"#ff9408",Field:Bi},block:{name:"Block",description:"A complex field that allows the user to compose different fields together, with a key->value format",dataType:"array",Icon:Wc,color:"#ff9408",Field:Ci}};function Lo(e){const t=at(e);return t?Di[t]:void 0}function at(e){if(e.dataType==="string")return e.multiline?"multiline":e.markdown?"markdown":e.storage?"file_upload":e.url?"url":e.email?"email":e.enumValues?"select":"text_field";if(e.dataType==="number")return e.enumValues?"number_select":"number_input";if(e.dataType==="map"){if(e.keyValue)return"key_value";if(e.properties)return"group"}else if(e.dataType==="array"){const t=e.of;return e.oneOf?"block":Array.isArray(t)?"custom_array":We(t)?"repeat":t?.dataType==="string"&&t.enumValues?"multi_select":t?.dataType==="number"&&t.enumValues?"multi_number_select":t?.dataType==="string"&&t.storage?"multi_file_upload":t?.dataType==="reference"?"multi_references":"repeat"}else{if(e.dataType==="boolean")return"switch";if(e.dataType==="date")return"date_time";if(e.dataType==="reference")return"reference"}console.error("Unsupported field config mapping",e)}const Me=({collection:e,path:t,entityId:c,values:i,previousValues:l,userConfigPersistence:a,fields:s})=>{const d=a?.getCollectionConfig(t),u=dn(d,"properties"),A=ao(e.properties),_=i??A,g=l??i??A,y=Object.entries(e.properties).map(([b,p])=>{const w=_?Fe.getIn(_,b):void 0;return{[b]:Te({propertyKey:b,propertyOrBuilder:p,values:_,previousValues:g,path:t,propertyValue:w,entityId:c,fields:s})}}).filter(b=>b!==null).reduce((b,p)=>({...b,...p}),{}),h=Ze(y,u),I=Object.entries(h).filter(([b,p])=>!!p?.dataType).map(([b,p])=>({[b]:p})).reduce((b,p)=>({...b,...p}),{});return{...e,properties:I,originalCollection:e}};function Te({propertyOrBuilder:e,propertyValue:t,fromBuilder:c=!1,...i}){if(typeof e=="object"&&"resolved"in e)return e;let l=null;if(e)if(We(e)){const a=i.path;if(!a)throw Error("Trying to resolve a property builder without specifying the entity path");const s=e({...i,path:a,propertyValue:t,values:i.values??{},previousValues:i.previousValues??i.values??{}});if(!s)return console.debug("Property builder not returning `Property` so it is not rendered",a,i.entityId,e),null;l=Te({...i,propertyValue:t,propertyOrBuilder:s,fromBuilder:!0})}else{const a=e;if(a.dataType==="map"&&a.properties){const s=lt({...i,properties:a.properties,propertyValue:t});l={...a,resolved:!0,fromBuilder:c,properties:s}}else a.dataType==="array"?l=un({property:a,propertyValue:t,fromBuilder:c,...i}):(a.dataType==="string"||a.dataType==="number")&&a.enumValues&&(l=st(a,c))}else return null;if(l||(l={...e,resolved:!0,fromBuilder:c}),l.fieldConfig){const a=i.fields;if(!a)throw Error(`Trying to resolve a property with key ${l.fieldConfig} that inherits from a custom field but no custom fields were provided. Use the property 'fields' in your top level component to provide them`);const s=a[l.fieldConfig];if(!s)throw Error(`Trying to resolve a property that inherits from a custom field but no custom field with id ${l.fieldConfig} was found. Check the \`fields\` in your top level component`);if(s.defaultProperty){const d=Te({propertyOrBuilder:s.defaultProperty,propertyValue:t,...i});d&&(l=Ze(d,l))}s.Field&&(l.Field=s.Field)}return l?{...l,resolved:!0}:null}function un({propertyKey:e,property:t,propertyValue:c,...i}){if(t.of){if(Array.isArray(t.of))return{...t,resolved:!0,fromBuilder:i.fromBuilder,resolvedProperties:t.of.map((l,a)=>Te({propertyKey:`${e}.${a}`,propertyOrBuilder:l,propertyValue:Array.isArray(c)?c[a]:void 0,...i,index:a}))};{const l=t.of,a=Array.isArray(c)?c.map((d,u)=>Te({propertyKey:`${e}.${u}`,propertyOrBuilder:l,propertyValue:d,...i,index:u})).filter(d=>!!d):[],s=Te({propertyKey:`${e}`,propertyOrBuilder:l,propertyValue:void 0,...i});if(!s)throw Error("When using a property builder as the 'of' prop of an ArrayProperty, you must return a valid child property");return{...t,resolved:!0,fromBuilder:i.fromBuilder,of:s,resolvedProperties:a}}}else if(t.oneOf){const l=t.oneOf?.typeField??to,a=Array.isArray(c)?c.map((d,u)=>{const A=d&&d[l],_=t.oneOf?.properties[A];return!A||!_?null:Te({propertyKey:`${e}.${u}`,propertyOrBuilder:_,propertyValue:c,...i})}).filter(d=>!!d):[],s=lt({properties:t.oneOf.properties,propertyValue:void 0,...i});return{...t,resolved:!0,oneOf:{...t.oneOf,properties:s},fromBuilder:i.fromBuilder,resolvedProperties:a}}else{if(t.Field)return{...t,resolved:!0,fromBuilder:i.fromBuilder};throw Error("The array property needs to declare an 'of' or a 'oneOf' property, or provide a custom `Field`")}}function lt({properties:e,propertyValue:t,...c}){return Object.entries(e).map(([i,l])=>({[i]:Te({propertyKey:i,propertyOrBuilder:l,propertyValue:t&&typeof t=="object"?dn(t,i):void 0,...c})})).filter(i=>i!==null).reduce((i,l)=>({...i,...l}),{})}function st(e,t){return typeof e.enumValues=="object"?{...e,resolved:!0,enumValues:sn(e.enumValues)?.filter(c=>c&&c.id&&c.label)??[],fromBuilder:t??!1}:e}function Tz(e){return typeof e=="object"?Object.entries(e).map(([t,c])=>typeof c=="string"?{id:t,label:c}:c):Array.isArray(e)?e:void 0}function Ni(e,t){const c=Te({propertyKey:"ignore",propertyOrBuilder:e,fields:t});return c?c.dataType==="reference"?!0:c.dataType==="array"?Array.isArray(c.of)?!1:c.of?.dataType==="reference":!1:null}function Oz(e){return n.jsx(br,{size:e})}function dt(e,t){const c=e?.Icon??br;return n.jsx(c,{size:t})}function we(e,t="small"){if(We(e))return n.jsx(Cc,{size:t});{const c=Lo(e);return dt(c,t)}}function Lz(e){return We(e)?"#888":Lo(e)?.color??"#666"}function pn(e,t){if(typeof e=="object"){if(t in e)return e[t];if(t.includes(".")){const c=t.split("."),i=e[c[0]];if(typeof i=="object"&&i.dataType==="map"&&i.properties)return pn(i.properties,c.slice(1).join("."))}}}function ut(e,t){if(typeof e=="object"){if(t in e)return e[t];if(t.includes(".")){const c=t.split("."),i=e[c[0]];if(i.dataType==="map"&&i.properties)return ut(i.properties,c.slice(1).join("."))}}}function Qz(e){return e.replace(/\.([^.]*)/g,"[$1]")}function Mi(e,t){if(!t)return e;const c={};return t.forEach(i=>{const l=pn(e,i);typeof l=="object"&&l.dataType==="map"&&l.properties&&(c[i]={...l,properties:Mi(l.properties,l.propertiesOrder??[])}),l&&(c[i]=l)}),c}const Qo={read:!0,edit:!0,create:!0,delete:!0};function so(e,t,c,i){const l=e.permissions;if(l===void 0)return Qo;if(typeof l=="object")return l;if(typeof l=="function")return l({entity:i,user:t.user,authController:t,collection:e,pathSegments:c});throw console.error("Permissions:",l),Error("New type of permission added and not mapped")}function ft(e,t,c,i){return so(e,t,c,i).edit??Qo.edit}function Vo(e,t,c,i){return so(e,t,c,i).create??Qo.create}function At(e,t,c,i){return so(e,t,c,i).delete??Qo.delete}function Ti(e,t){if(e&&(e=Po(e),e in Go))return e in Go?n.jsx(r,{iconKey:e,size:"medium",className:t}):void 0}function Wo(e,t){const c=Ti(e.icon,t);if(e?.icon&&c)return c;let i=Po(("singularName"in e?e.singularName:void 0)??e.name),l;i in Go&&(l=i),l||(i=Po(e.path),i in Go&&(l=i));const a=hr.length;return l||(l=hr[Yc(e.path)%a]),n.jsx(r,{iconKey:l,size:"medium",className:t})}const Go=lc.reduce((e,t)=>(e[t]=t,e),{});function Vz(e,t){if(t!==void 0&&t===1)return e;const c={"(quiz)$":"$1zes","^(ox)$":"$1en","([m|l])ouse$":"$1ice","(matr|vert|ind)ix|ex$":"$1ices","(x|ch|ss|sh)$":"$1es","([^aeiouy]|qu)y$":"$1ies","(hive)$":"$1s","(?:([^f])fe|([lr])f)$":"$1$2ves","(shea|lea|loa|thie)f$":"$1ves",sis$:"ses","([ti])um$":"$1a","(tomat|potat|ech|her|vet)o$":"$1oes","(bu)s$":"$1ses","(alias)$":"$1es","(octop)us$":"$1i","(ax|test)is$":"$1es","(us)$":"$1es","([^s]+)$":"$1s"},i={move:"moves",foot:"feet",goose:"geese",sex:"sexes",child:"children",man:"men",tooth:"teeth",person:"people"};if(["sheep","fish","deer","moose","series","species","money","rice","information","equipment","bison","cod","offspring","pike","salmon","shrimp","swine","trout","aircraft","hovercraft","spacecraft","sugar","tuna","you","wood"].indexOf(e.toLowerCase())>=0)return e;for(const a in i){const s=new RegExp(`${a}$`,"i"),d=i[a];if(s.test(e))return e.replace(s,d)}for(const a in c){const s=new RegExp(a,"i");if(s.test(e))return e.replace(s,c[a])}return e}function Wz(e,t){if(t!==void 0&&t!==1)return e;const c={"(quiz)zes$":"$1","(matr)ices$":"$1ix","(vert|ind)ices$":"$1ex","^(ox)en$":"$1","(alias)es$":"$1","(octop|vir)i$":"$1us","(cris|ax|test)es$":"$1is","(shoe)s$":"$1","(o)es$":"$1","(bus)es$":"$1","([m|l])ice$":"$1ouse","(x|ch|ss|sh)es$":"$1","(m)ovies$":"$1ovie","(s)eries$":"$1eries","([^aeiouy]|qu)ies$":"$1y","([lr])ves$":"$1f","(tive)s$":"$1","(hive)s$":"$1","(li|wi|kni)ves$":"$1fe","(shea|loa|lea|thie)ves$":"$1f","(^analy)ses$":"$1sis","((a)naly|(b)a|(d)iagno|(p)arenthe|(p)rogno|(s)ynop|(t)he)ses$":"$1$2sis","([ti])a$":"$1um","(n)ews$":"$1ews","(h|bl)ouses$":"$1ouse","(corpse)s$":"$1","(us)es$":"$1",s$:""},i={move:"moves",foot:"feet",goose:"geese",sex:"sexes",child:"children",man:"men",tooth:"teeth",person:"people"};if(["sheep","fish","deer","moose","series","species","money","rice","information","equipment","bison","cod","offspring","pike","salmon","shrimp","swine","trout","aircraft","hovercraft","spacecraft","sugar","tuna","you","wood"].indexOf(e.toLowerCase())>=0)return e;for(const a in i){const s=new RegExp(`${i[a]}$`,"i");if(s.test(e))return e.replace(s,a)}for(const a in c){const s=new RegExp(a,"i");if(s.test(e))return e.replace(s,c[a])}return e}function Oi(e,t,c,i=3){const l=Object.keys(e.properties);let a=c?.filter(s=>l.includes(s));return a&&a.length>0?a:(a=l,a.filter(s=>{const d=e.properties[s];return d&&!We(d)&&!Ni(d,t)}).slice(0,i))}function Li(e,t=166){let c;function i(...l){const a=()=>{e.apply(this,l)};clearTimeout(c),c=setTimeout(a,t)}return i.clear=()=>{clearTimeout(c)},i}function _t(e,t=""){return e&&Object.keys(e).reduce((c,i)=>{const l=t?`${t}.${i}`:i;return typeof e[i]=="object"&&e[i]!==null?Array.isArray(e[i])?e[i].forEach((a,s)=>{Object.assign(c,_t(a,`${l}[${s}]`))}):Object.assign(c,_t(e[i],l)):c[l]=e[i],c},{})}function Qi(e){return e.reduce((t,c)=>(Object.entries(c).forEach(([i,l])=>{if(Array.isArray(l)&&(t[i]=Math.max(t[i]||0,l.length)),typeof l=="object"&&l!==null){const a=Qi([l]);Object.entries(a).forEach(([s,d])=>{const u=`${i}.${s}`;t[u]=Math.max(t[u]||0,d)})}}),t),{})}function yt({entity:e,collection:t,path:c,className:i}){const l=re(),a=f.useMemo(()=>Me({collection:t,path:c,entityId:e.id,values:e.values,fields:l.fields}),[t,c,e]),s=re(),d=a.properties;return n.jsx("div",{className:"w-full "+i,children:n.jsxs("div",{className:"w-full mb-4",children:[n.jsxs("div",{className:E(ue,"flex justify-between py-2 border-b last:border-b-0"),children:[n.jsx("div",{className:"flex items-center w-1/4",children:n.jsx("span",{className:"pl-2 text-sm text-gray-600",children:"Id"})}),n.jsxs("div",{className:"flex-grow p-2 ml-2 w-3/4 text-gray-900 dark:text-white min-h-[56px] flex items-center",children:[n.jsx("span",{className:"flex-grow mr-2",children:e.id}),s?.entityLinkBuilder&&n.jsx("a",{href:s.entityLinkBuilder({entity:e}),rel:"noopener noreferrer",target:"_blank",children:n.jsx(ee,{children:n.jsx(no,{size:"small"})})})]})]}),Object.entries(d).map(([u,A])=>{const _=e.values[u];return n.jsxs("div",{className:E(ue,"flex justify-between py-2 border-b last:border-b-0"),children:[n.jsx("div",{className:"flex items-center w-1/4",children:n.jsx("span",{className:"pl-2 text-sm text-gray-600",children:A.name})}),n.jsx("div",{className:"flex-grow p-2 ml-2 w-3/4 text-gray-900 dark:text-white min-h-[56px] flex items-center",children:n.jsx(Ke,{propertyKey:u,value:_,entity:e,property:A,size:"medium"})})]},`reference_previews_${u}`)})]})})}function Gz(e){return e.dataType==="boolean"?"center":e.dataType==="number"?e.enumValues?"left":"right":e.dataType==="date"?"right":"left"}function Vi(e){if(e.columnWidth)return e.columnWidth;if(e.dataType==="string")return e.url?280:e.storage?160:e.enumValues?200:e.multiline||e.markdown?300:(e.email,200);if(e.dataType==="array"){const t=e;return t.of?Array.isArray(e.of)?300:Vi(t.of):300}else return e.dataType==="number"?e.enumValues?200:140:e.dataType==="map"?360:e.dataType==="date"?200:e.dataType==="reference"?220:e.dataType==="boolean"?140:200}function ht(e){return`subcollection:${e.alias??e.path}`}function zo(e){return parseInt(e,10)||0}const zz={shadow:{visibility:"hidden",position:"absolute",overflow:"hidden",height:0,top:0,left:0,transform:"translateZ(0)"}};function Wi(e){return e==null||Object.keys(e).length===0||e.outerHeightStyle===0&&!e.overflow}const gt=ce.forwardRef(function(t,c){const{onChange:i,onScroll:l,onResize:a,maxRows:s,minRows:d=1,style:u,value:A,onFocus:_,onBlur:g,sizeRef:y,...h}=t,{current:I}=ce.useRef(A!=null),b=ce.useRef(null),p=Hz(c,b),w=ce.useRef(null),k=ce.useRef(0),[K,m]=ce.useState({outerHeightStyle:0}),v=ce.useCallback(()=>{const D=b.current;if(typeof window>"u")return{outerHeightStyle:0};const N=window.getComputedStyle(D);if(N.width==="0px")return{outerHeightStyle:0};const M=y?.current??w.current,H=w.current;M.style.width=N.width,H.value=D.value||t.placeholder||"x",H.value.slice(-1)===`
680
- `&&(H.value+=" ");const Z=N.boxSizing,O=zo(N.paddingBottom)+zo(N.paddingTop),oe=zo(N.borderBottomWidth)+zo(N.borderTopWidth),U=M.scrollHeight;H.value="x";const L=M.scrollHeight;let X=U;d&&(X=Math.max(Number(d)*L,X)),s&&(X=Math.min(Number(s)*L,X)),X=Math.max(X,L);const W=X+(Z==="border-box"?O+oe:0),V=Math.abs(X-U)<=1;return{outerHeightStyle:W,overflow:V}},[s,d,t.placeholder]),S=(D,C)=>{const{outerHeightStyle:N,overflow:M}=C;return k.current<20&&(N>0&&Math.abs((D.outerHeightStyle||0)-N)>1||D.overflow!==M)?(k.current+=1,{overflow:M,outerHeightStyle:N}):(process.env.NODE_ENV!=="production"&&k.current===20&&console.error(["MUI: Too many re-renders. The layout is unstable.","TextareaAutosize limits the number of renders to prevent an infinite loop."].join(`
681
- `)),D)},B=ce.useCallback(()=>{const D=v();Wi(D)||(a&&a(D),m(C=>S(C,D)))},[v,a]),P=()=>{const D=v();Wi(D)||Ta.flushSync(()=>{m(C=>S(C,D))})};ce.useEffect(()=>{const D=Li(()=>{k.current=0,b.current&&P()});let C;const N=b.current,M=window;if(!(typeof window>"u"))return M.addEventListener("resize",D),typeof ResizeObserver<"u"&&(C=new ResizeObserver(D),C.observe(N)),()=>{D.clear(),M.removeEventListener("resize",D),C&&C.disconnect()}}),f.useLayoutEffect(()=>{B()}),ce.useEffect(()=>{k.current=0},[A]);const F=D=>{k.current=0,I||B(),i&&i(D)};return n.jsxs(ce.Fragment,{children:[n.jsx("textarea",{value:A,onChange:F,className:t.className,ref:p,onFocus:_,onBlur:g,rows:d,style:{height:K.outerHeightStyle,overflow:K.overflow?"hidden":void 0,...u},onScroll:l,...h}),n.jsx("textarea",{"aria-hidden":!0,className:t.shadowClassName,readOnly:!0,ref:w,tabIndex:-1,style:{...zz.shadow,...u,padding:0}})]})});function Hz(...e){return ce.useMemo(()=>e.every(t=>t==null)?null:t=>{e.forEach(c=>{Uz(c,t)})},e)}function Uz(e,t){typeof e=="function"?e(t):e&&(e.current=t)}function Yz(e){const t=f.useRef(null),{disabled:c,value:i,multiline:l,updateValue:a,focused:s}=e,d=f.useRef(i),[u,A]=f.useState(i),_=f.useRef(!1);f.useEffect(()=>{d.current!==i&&i!==u&&A(i),d.current=i},[i]);const g=f.useCallback(()=>{!i&&!u||u!==i&&(d.current=u,a(u))},[u,a,i]);return Do(u,g,!s,2e3),f.useEffect(()=>{t.current&&s&&!_.current?(_.current=!0,t.current.focus({preventScroll:!0}),t.current.selectionStart=t.current.value.length,t.current.selectionEnd=t.current.value.length):_.current=s},[s,t]),n.jsx(gt,{ref:t,style:{padding:0,margin:0,width:"100%",color:"unset",fontWeight:"unset",lineHeight:"unset",fontSize:"unset",fontFamily:"unset",background:"unset",border:"unset",resize:"none",outline:"none"},value:u??"",onChange:y=>{const h=y.target.value;(l||!h.endsWith(`
682
- `))&&A(h)},onFocus:()=>{_.current=!0},onBlur:()=>{_.current=!1,g()}})}function It(e){const{name:t,enumValues:c,error:i,internalValue:l,disabled:a,small:s,focused:d,updateValue:u,multiple:A,valueType:_}=e,g=Array.isArray(l)&&A||!Array.isArray(l)&&!A,y=f.useRef(null);f.useEffect(()=>{y.current&&d&&y.current?.focus({preventScroll:!0})},[d,y]);const h=f.useCallback(b=>{if(_==="number")if(A){const p=b.map(w=>parseFloat(w));u(p)}else u(parseFloat(b));else if(_==="string")u(b||null);else throw Error("Missing mapping in TableSelect")},[A,u,_]),I=(b,p)=>A&&Array.isArray(b)?n.jsx(Mr,{value:b,name:t,enumValues:c,size:s?"small":"medium"},`${b}-${p}`):n.jsx(Ee,{enumKey:b,enumValues:c,size:s?"small":"medium"},`${b}-${p}`);return A?n.jsx(Zr,{inputRef:y,containerClassName:"w-full h-full",className:"w-full h-full p-0 bg-transparent",position:"item-aligned",disabled:a,padding:!1,includeFocusOutline:!1,value:g?l.map(b=>b.toString()):[],onMultiValueChange:h,renderValue:I,children:c?.map(b=>n.jsx(Xr,{value:String(b.id),children:n.jsx(Ee,{enumKey:b.id,enumValues:c,size:s?"small":"medium"})},b.id))}):n.jsx(xe,{inputRef:y,className:"w-full h-full p-0 bg-transparent",position:"item-aligned",disabled:a,multiple:A,padding:!1,includeFocusOutline:!1,value:g?A?l.map(b=>b.toString()):l?.toString():A?[]:"",onValueChange:h,onMultiValueChange:h,renderValue:I,children:c?.map(b=>n.jsx(Re,{value:String(b.id),children:n.jsx(Ee,{enumKey:b.id,enumValues:c,size:s?"small":"medium"})},b.id))})}function $z(e){const{align:t,value:c,updateValue:i,focused:l}=e,a=c&&typeof c=="number"?c.toString():"",[s,d]=f.useState(a),u=f.useRef(c);f.useEffect(()=>{u.current!==c&&String(c)!==s&&d(c?c.toString():null),u.current=c},[c]);const A=f.useCallback(()=>{if(s!==a)if(s!=null){const y=parseFloat(s);if(isNaN(y))return;y!=null&&i(y)}else i(null)},[s,c]);Do(s,A,!l,2e3),f.useEffect(()=>{!l&&a!==s&&d(c!=null?c.toString():null)},[c,l]);const _=f.useRef(null);f.useEffect(()=>{_.current&&l&&_.current.focus({preventScroll:!0})},[l,_]);const g=/^-?[0-9]+[,.]?[0-9]*$/;return n.jsx("input",{ref:_,className:"w-full text-right p-0 m-0 bg-transparent border-none resize-none outline-none font-normal leading-normal text-unset",style:{textAlign:t},value:s??"",onChange:y=>{const h=y.target.value.replace(",",".");h.length===0&&d(null),(g.test(h)||h.startsWith("-"))&&d(h)}})}function jz(e){const{internalValue:t,updateValue:c,focused:i}=e,l=f.useRef(null);return f.useEffect(()=>{l.current&&i&&l.current.focus({preventScroll:!0})},[i,l]),n.jsx(ot,{ref:l,size:"small",value:!!t,onValueChange:c})}function qz(e){const{disabled:t,error:c,mode:i,internalValue:l,updateValue:a}=e;return n.jsx(Vn,{value:l??void 0,onChange:s=>a(s),size:"medium",invisible:!0,className:"w-full h-full",inputClassName:"w-full h-full",mode:i})}function Gi({showError:e,disabled:t,showExpandIcon:c,selected:i,openPopup:l,children:a}){const s=f.useRef(null),d=f.useCallback(()=>{if(l){const A=s&&s?.current?.getBoundingClientRect();l(A)}},[]),u=f.useRef();return f.useEffect(()=>{u.current&&i&&u.current.focus({preventScroll:!0})},[i]),n.jsx(n.Fragment,{children:(e||!t&&c)&&n.jsxs("div",{ref:s,className:"absolute top-0.5 right-0.5 flex items-center",children:[i&&a,i&&!t&&c&&n.jsx(ee,{ref:u,color:"inherit",size:"small",onClick:d,children:n.jsxs("svg",{fill:"#888",width:"20",height:"20",viewBox:"0 0 24 24",children:[n.jsx("path",{className:"cls-2",d:"M20,5a1,1,0,0,0-1-1L14,4h0a1,1,0,0,0,0,2h2.57L13.29,9.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L18,7.42V10a1,1,0,0,0,1,1h0a1,1,0,0,0,1-1Z"}),n.jsx("path",{className:"cls-2",d:"M10.71,13.29a1,1,0,0,0-1.42,0L6,16.57V14a1,1,0,0,0-1-1H5a1,1,0,0,0-1,1l0,5a1,1,0,0,0,1,1h5a1,1,0,0,0,0-2H7.42l3.29-3.29A1,1,0,0,0,10.71,13.29Z"})]})}),e&&n.jsx(tc,{side:"left",className:"flex items-center justify-center",style:{width:32,height:32},title:e.message,children:n.jsx(wc,{size:"small",color:"error"})})]})})}const Jz="max-w-full box-border relative pt-[2px] items-center border border-transparent outline-none rounded-md duration-200 ease-[cubic-bezier(0.4,0,0.2,1)] focus:border-primary-solid",Zz="pt-0 border-2 border-solid",Xz="transition-colors duration-200 ease-[cubic-bezier(0,0,0.2,1)] border-2 border-solid border-green-500 bg-green-50 dark:bg-green-900",xz="transition-colors duration-200 ease-[cubic-bezier(0,0,0.2,1)] border-2 border-solid border-red-500 bg-red-50 dark:bg-red-900";function Rz(e){const{propertyKey:t,error:c,selected:i,openPopup:l,value:a,disabled:s,property:d,entity:u,path:A,previewSize:_,updateValue:g}=e,y=Sn(),{internalValue:h,setInternalValue:I,onFilesAdded:b,storage:p,onFileUploadComplete:w,storagePathBuilder:k,multipleFilesSupported:K}=_i({entityValues:u.values,entityId:u.id,path:A,property:d,propertyKey:t,storageSource:y,onChange:g,value:a,disabled:s});return n.jsx(e3,{internalValue:h,setInternalValue:I,name:t,disabled:s,autoFocus:!1,openPopup:l,error:c,selected:i,property:d,onChange:g,entity:u,storagePathBuilder:k,storage:p,multipleFilesSupported:K,onFilesAdded:b,onFileUploadComplete:w,previewSize:_})}function e3({property:e,name:t,internalValue:c,setInternalValue:i,openPopup:l,entity:a,selected:s,error:d,onChange:u,multipleFilesSupported:A,previewSize:_,disabled:g,autoFocus:y,storage:h,onFilesAdded:I,onFileUploadComplete:b,storagePathBuilder:p}){const[w,k]=f.useState(!1),K=A&&_==="medium"?"small":_;if(A){const U=e;if(Array.isArray(U.of))throw Error("Using array properties instead of single one in `of` in ArrayProperty");if(U.of){if(U.of.dataType!=="string")throw Error("Storage field using array must be of data type string")}else throw Error("Storage field using array must be of data type string")}const m=h?.metadata,v=!!c,S=cn(),{open:B,getRootProps:P,getInputProps:F,isDragActive:D,isDragAccept:C,isDragReject:N}=er.useDropzone({accept:h.acceptedFiles?h.acceptedFiles.map(U=>({[U]:[]})).reduce((U,L)=>({...U,...L}),{}):void 0,disabled:g,maxSize:h.maxSize,noClick:!0,noKeyboard:!0,onDrop:I,onDropRejected:(U,L)=>{for(const X of U)for(const W of X.errors)S.open({type:"error",message:`Error uploading file: File is larger than ${h.maxSize} bytes`})}}),{...M}=P(),H=A?"Drag 'n' drop some files here, or click here to edit":"Drag 'n' drop a file here, or click here edit",Z=A?e.of:e,O=f.useMemo(()=>Pn(K),[K]),oe=!g&&d;return n.jsxs("div",{...M,onMouseEnter:()=>k(!0),onMouseMove:()=>k(!0),onMouseLeave:()=>k(!1),className:E(Jz,"relative w-full h-full flex",`justify-${v?"start":"center"}`,D?Zz:"",C?Xz:"",N?xz:""),children:[n.jsx("input",{autoFocus:y,...F()}),c.map((U,L)=>{let X;return U.storagePathOrDownloadUrl?X=n.jsx(n3,{property:Z,value:U.storagePathOrDownloadUrl,entity:a,size:K},`storage_preview_${L}`):U.file&&(X=n.jsx(Ii,{entry:U,metadata:m,storagePath:p(U.file),onFileUploadComplete:b,imageSize:O,simple:!0},`storage_progress_${L}`)),X}),!c&&n.jsx("div",{className:"flex-grow m-2 max-w-[200px]",onClick:B,children:n.jsx(j,{className:"text-gray-400 dark:text-gray-600",variant:"body2",align:"center",children:H})}),n.jsx(Gi,{showError:oe,disabled:g,showExpandIcon:!0,selected:s,openPopup:g?void 0:l,children:n.jsx(ee,{color:"inherit",size:"small",onClick:B,children:n.jsx(bc,{size:"small",className:"text-gray-500"})})})]})}function n3({property:e,value:t,size:c,entity:i}){return n.jsx("div",{className:"relative m-2",children:t&&n.jsx(se,{children:n.jsx(Ke,{propertyKey:"ignore",value:t,property:e,entity:i,size:c})})})}function zi(e){const{name:t,internalValue:c,updateValue:i,multiselect:l,path:a,size:s,previewProperties:d,title:u,disabled:A,forceFilter:_}=e,[g,y]=f.useState(!1),h=f.useCallback(()=>y(!0),[]),I=f.useCallback(()=>y(!1),[]),p=Ae().getCollection(a);if(!p)throw Error(`Couldn't find the corresponding collection view for the path: ${a}`);const w=f.useCallback(F=>{i(F?In(F):null)},[i]),k=f.useCallback(F=>{i(F.map(D=>In(D)))},[i]),K=c?Array.isArray(c)?c.map(F=>F.id):c.id?[c.id]:[]:[],m=xn({multiselect:l,path:a,collection:p,onMultipleEntitiesSelected:k,onSingleEntitySelected:w,selectedEntityIds:K,forceFilter:_}),v=f.useCallback(()=>{A||m.open()},[A,m]),S=!c||Array.isArray(c)&&c.length===0,B=()=>c instanceof Je?n.jsx(on,{onClick:A?void 0:v,size:ln(s),reference:c,onHover:g,disabled:!a,previewProperties:d}):n.jsx(Co,{onClick:A?void 0:v,size:ln(s),children:n.jsx(pe,{title:"Value is not a reference.",error:"Click to edit"})}),P=()=>Array.isArray(c)?n.jsx(n.Fragment,{children:c.map((F,D)=>n.jsx("div",{className:"m-1 w-full",children:n.jsx(on,{onClick:A?void 0:v,size:"tiny",reference:F,onHover:g,disabled:!a,previewProperties:d})},`preview_array_ref_${t}_${D}`))}):n.jsx(pe,{error:"Data is not an array of references"});return p?n.jsxs("div",{className:"w-full",onMouseEnter:h,onMouseMove:h,onMouseLeave:I,children:[c&&!l&&B(),c&&l&&P(),S&&n.jsxs(te,{onClick:v,size:"small",variant:"outlined",color:"primary",children:["Edit ",u]})]}):n.jsx(pe,{error:"The specified collection does not exist"})}function Ln(e){switch(e){case"xl":return 400;case"l":return 280;case"m":return 140;case"s":return 80;case"xs":return 54;default:throw Error("Missing mapping for collection size -> height")}}const o3=({justifyContent:e,scrollable:t,faded:c,fullHeight:i,children:l})=>n.jsx("div",{className:E("flex flex-col max-h-full w-full",{"items-start":c||t}),style:{justifyContent:e,height:i?"100%":void 0,overflow:t?"auto":void 0,WebkitMaskImage:c?"linear-gradient(to bottom, black 60%, transparent 100%)":void 0,maskImage:c?"linear-gradient(to bottom, black 60%, transparent 100%)":void 0},children:l}),bt=f.memo(function({children:t,actions:c,size:i,selected:l,disabled:a,disabledTooltip:s,saved:d,error:u,align:A,allowScroll:_,removePadding:g,fullHeight:y,onSelect:h,width:I,hideOverflow:b=!0,showExpandIcon:p=!0}){const[w,k]=nr(),K=f.useRef(null);Mo(K,()=>{l&&h&&h(void 0)},!!(l&&h));const[m,v]=f.useState(!1),S=f.useMemo(()=>Ln(i),[i]),[B,P]=f.useState(!1),[F,D]=f.useState(d),C=!a&&u;f.useEffect(()=>{d&&D(!0);const W=setTimeout(()=>{D(!1)},800);return()=>{clearTimeout(W)}},[d]);let N=0;if(!g)switch(i){case"l":case"xl":N=4;break;case"m":N=2;break;case"s":default:N=1;break}let M;switch(A){case"right":M="flex-end";break;case"center":M="center";break;case"left":default:M="flex-start"}const H=f.useCallback(()=>{if(!h)return;const W=K&&K?.current?.getBoundingClientRect();a?h(void 0):!l&&W&&h(W)},[K,h,l,a]),Z=f.useCallback(W=>{H(),W.stopPropagation()},[H]);f.useEffect(()=>{if(k){const W=k.height>S;m!==W&&v(W)}},[k,m,S]);const O=!C&&l,oe=!a&&_&&m,U=!a&&!_&&m,L=f.useCallback(()=>P(!0),[]),X=f.useCallback(()=>P(!1),[]);return n.jsxs("div",{ref:K,className:E("transition-colors duration-100 ease-in-out",`flex relative h-full rounded-md p-${N} border border-4 border-opacity-75`,B&&!a?"bg-gray-50 dark:bg-gray-900":"",d?"bg-gray-100 bg-opacity-75 dark:bg-gray-800 dark:bg-opacity-75":"",!O&&!F&&!C?"border-transparent":"",b?"overflow-hidden":"",O?"bg-gray-50 dark:bg-gray-900":"",O&&!F?"border-primary":"",F?"border-green-500 ":"",C?"border-red-500":""),style:{justifyContent:M,alignItems:a||!m?"center":void 0,width:I??"100%",textAlign:A},tabIndex:l||a?void 0:0,onFocus:Z,onMouseEnter:L,onMouseMove:L,onMouseLeave:X,children:[n.jsxs(se,{children:[y&&!U&&t,(!y||U)&&n.jsx(o3,{fullHeight:y??!1,justifyContent:M,scrollable:oe??!1,faded:U,children:!y&&n.jsx("div",{ref:w,style:{display:"flex",width:"100%",justifyContent:M,height:y?"100%":void 0},children:t})})]}),c,a&&B&&s&&n.jsx("div",{className:"absolute top-1 right-1 text-xs",children:n.jsx(ye,{title:s,children:n.jsx(Tc,{size:"smallest",color:"disabled",className:"text-gray-500"})})})]})},(e,t)=>e.error===t.error&&e.value===t.value&&e.disabled===t.disabled&&e.saved===t.saved&&e.allowScroll===t.allowScroll&&e.align===t.align&&e.size===t.size&&e.disabledTooltip===t.disabledTooltip&&e.width===t.width&&e.showExpandIcon===t.showExpandIcon&&e.removePadding===t.removePadding&&e.fullHeight===t.fullHeight&&e.selected===t.selected);function r3(e){return e.dataType==="string"&&e.storage?!0:e.dataType==="array"?Array.isArray(e.of)?!1:e.of?.dataType==="string"&&e.of?.storage:!1}const t3=f.memo(function({propertyKey:t,columnIndex:c,customFieldValidator:i,value:l,property:a,align:s,width:d,height:u,path:A,entity:_,readonly:g,disabled:y}){const h=re(),{onValueChange:I,size:b,selectedCell:p,select:w,setPopupCell:k}=E3(),K=p?.columnIndex===c&&p?.entity.path===_.path&&p?.entity.id===_.id,[m,v]=f.useState(l),S=f.useRef(l),[B,P]=f.useState(),[F,D]=f.useState(!1),C=f.useCallback(()=>{D(!0),setTimeout(()=>{D(!1)},100)},[]),N=!!a.Field,M=!!a.Preview,H=Nn(a),Z=typeof a.disabled=="object"?a.disabled.disabledMessage:void 0,O=g||y||!!a.disabled,oe=f.useMemo(()=>lo({property:a,entityId:_.id,customFieldValidator:i,name:t}),[_.id,a,t]);f.useEffect(()=>{de(l,S.current)||(P(void 0),v(l),S.current=l,C())},[C,l]);const U=ie=>{D(!1),oe.validate(ie).then(()=>{P(void 0),I&&I({value:ie,propertyKey:t,setError:P,onValueUpdated:C,entity:_,fullPath:A,context:h})}).catch(Y=>{P(Y)})};f.useEffect(()=>{oe.validate(m).then(()=>P(void 0)).catch(ie=>{P(ie)})},[m,oe]);const L=ie=>{let Y;ie===void 0?Y=null:Y=ie,S.current=Y,v(Y),U(Y)};Ne({property:a,value:m,setValue:L});const X=f.useCallback(ie=>{w(ie?{columnIndex:c,width:d,height:u,entity:_,cellRect:ie,propertyKey:t}:void 0)},[c,_,u,t,w,d]),W=ie=>{k&&k(ie?{columnIndex:c,width:d,height:u,entity:_,cellRect:ie,propertyKey:t}:void 0)};let V,Q=!1,q=!1,R=!0,$=!1,ne=!1,J=!0;const x=!O&&B;if(g||H)return n.jsx(bt,{size:b,width:d,saved:F,value:m,align:s??"left",fullHeight:!1,disabledTooltip:Z??(H?"Read only":void 0),disabled:!0,children:n.jsx(Ke,{width:d,height:Ln(b),propertyKey:t,property:a,entity:_,value:l,size:ln(b)})},`${t}_${_.path}_${_.id}`);if(!N&&(!M||K)){if(r3(a))V=n.jsx(Rz,{error:B,disabled:O,focused:K,selected:K,openPopup:k?W:void 0,property:a,entity:_,path:A,value:m,previewSize:ln(b),updateValue:L,propertyKey:t}),J=!1,q=!0,ne=!0,$=!0;else if(K&&a.dataType==="number"){const Y=a;Y.enumValues?(V=n.jsx(It,{name:t,multiple:!1,disabled:O,focused:K,valueType:"number",small:ln(b)!=="medium",enumValues:Y.enumValues,error:B,internalValue:m,updateValue:L}),ne=!0):(V=n.jsx($z,{align:s,error:B,focused:K,disabled:O,value:m,updateValue:L}),Q=!0)}else if(K&&a.dataType==="string"){const Y=a;if(Y.enumValues)V=n.jsx(It,{name:t,multiple:!1,focused:K,disabled:O,valueType:"string",small:ln(b)!=="medium",enumValues:Y.enumValues,error:B,internalValue:m,updateValue:L}),ne=!0;else if(!Y.storage){const Be=!!Y.multiline||!!Y.markdown;V=n.jsx(Yz,{error:B,disabled:O,multiline:Be,focused:K,value:m,updateValue:L}),Q=!0}}else if(a.dataType==="boolean")V=n.jsx(jz,{error:B,disabled:O,focused:K,internalValue:m,updateValue:L});else if(a.dataType==="date")V=n.jsx(qz,{name:t,error:B,disabled:O,mode:a.mode,focused:K,internalValue:m,updateValue:L}),ne=!0,R=!1,Q=!1;else if(a.dataType==="reference")typeof a.path=="string"&&(V=n.jsx(zi,{name:t,internalValue:m,updateValue:L,disabled:O,size:b,path:a.path,multiselect:!1,previewProperties:a.previewProperties,title:a.name,forceFilter:a.forceFilter})),Q=!1;else if(a.dataType==="array"){const Y=a;if(!Y.of&&!Y.oneOf)throw Error(`You need to specify an 'of' or 'oneOf' prop (or specify a custom field) in your array property ${t}`);Y.of&&!Array.isArray(Y.of)&&(Y.of.dataType==="string"||Y.of.dataType==="number"?K&&Y.of.enumValues&&(V=n.jsx(It,{name:t,multiple:!0,disabled:O,focused:K,small:ln(b)!=="medium",valueType:Y.of.dataType,enumValues:Y.of.enumValues,error:B,internalValue:m,updateValue:L}),Q=!0,ne=!0,R=!1):Y.of.dataType==="reference"&&(typeof Y.of.key=="string"&&(V=n.jsx(zi,{name:t,disabled:O,internalValue:m,updateValue:L,size:b,multiselect:!0,path:Y.of.key,previewProperties:Y.of.previewProperties,title:Y.of.name,forceFilter:Y.of.forceFilter})),Q=!1))}}return V||(Q=!1,q=K&&!V&&!O&&!H,V=n.jsx(Ke,{width:d,height:u,entity:_,propertyKey:t,value:m,property:a,size:ln(b)})),n.jsx(bt,{size:b,width:d,onSelect:X,selected:K,disabled:O||H,disabledTooltip:Z??"Disabled",removePadding:$,fullHeight:ne,saved:F,error:B,align:s,allowScroll:Q,showExpandIcon:q,value:m,hideOverflow:R,actions:J&&n.jsx(Gi,{showError:x,disabled:O,showExpandIcon:q,selected:K,openPopup:O?void 0:W}),children:V},`cell_${t}_${_.path}_${_.id}`)},c3);function c3(e,t){return e.height===t.height&&e.propertyKey===t.propertyKey&&e.align===t.align&&e.width===t.width&&de(e.property,t.property)&&de(e.value,t.value)&&de(e.entity.values,t.entity.values)}function uo(e){return n.jsx("div",{className:"flex w-full h-screen max-h-full max-w-full bg-gray-50 dark:bg-gray-900",children:n.jsx("div",{className:"m-auto",children:n.jsx(Gn,{...e})})})}function Hi({trigger:e,children:t,open:c,onOpenChange:i,side:l,sideOffset:a=5,align:s,alignOffset:d,arrowPadding:u,sticky:A,hideWhenDetached:_,avoidCollisions:g,enabled:y=!0}){return En("Popover",i3),y?n.jsxs(Zn.Root,{open:c,onOpenChange:i,children:[n.jsx(Zn.Trigger,{asChild:!0,children:e}),n.jsx(Zn.Portal,{children:n.jsxs(Zn.Content,{className:E(He,"PopoverContent shadow z-50"),side:l,sideOffset:a,align:s,alignOffset:d,arrowPadding:u,sticky:A,hideWhenDetached:_,avoidCollisions:g,children:[t,n.jsx(Zn.Arrow,{className:"fill-white dark:fill-gray-950"})]})})]}):n.jsx(n.Fragment,{children:e})}const i3=`
679
+ `;function vi({propertyKey:e,value:t,error:c,showError:i,isSubmitting:a,setValue:l,tableMode:s,property:d,includeDescription:u,underlyingValueHasChanged:A,context:y,disabled:h}){if(ne(),!Array.isArray(d.resolvedProperties))throw Error("ArrayCustomShapedFieldBinding misconfiguration. Property `of` not set");const I=d.expanded===void 0?!0:d.expanded;Te({property:d,value:t,setValue:l});const _=n.jsx(Ce,{icon:ke(d,"small"),required:d.validation?.required,className:"text-text-secondary dark:text-text-secondary-dark",title:d.name}),g=d.resolvedProperties.map((b,p)=>{const w={propertyKey:`${e}[${p}]`,disabled:h,property:b,includeDescription:u,underlyingValueHasChanged:A,context:y,tableMode:!1,partOfArray:!0,partOfBlock:!1,autoFocus:!1};return n.jsx("div",{className:"pb-4",children:n.jsx(pn,{...w})},`custom_shaped_array_${p}`)});return n.jsxs(n.Fragment,{children:[!s&&n.jsx(dn,{initiallyExpanded:I,title:_,className:"px-2 md:px-4 pb-2 md:pb-4 pt-1 md:pt-2",children:g}),s&&g,n.jsx(Se,{includeDescription:u,showError:i,error:c,disabled:h,property:d})]})}De.addMethod(De.array,"uniqueInArray",function(e=c=>c,t){return this.test("uniqueInArray",t,c=>!c||c.length===new Set(c.map(e)).size)});function Ki(e,t,c){const i={};return Object.entries(t).forEach(([a,l])=>{i[a]=so({property:l,customFieldValidator:c,name:a,entityId:e})}),De.object().shape(i)}function so(e){const t=e.property;if(Le(t))throw console.error("Error in property",e),Error("Trying to create a yup mapping from a property builder. Please use resolved properties only");if(t.dataType==="string")return pz(e);if(t.dataType==="number")return wz(e);if(t.dataType==="boolean")return Kz(e);if(t.dataType==="map")return bz(e);if(t.dataType==="array")return Sz(e);if(t.dataType==="date")return mz(e);if(t.dataType==="geopoint")return kz(e);if(t.dataType==="reference")return vz(e);throw console.error("Unsupported data type in yup mapping",t),Error("Unsupported data type in yup mapping")}function bz({property:e,entityId:t,customFieldValidator:c,name:i}){const a={};return e.validation,e.properties&&Object.entries(e.properties).forEach(([l,s])=>{a[l]=so({property:s,parentProperty:e,customFieldValidator:c,name:`${i}[${l}]`,entityId:t})}),De.object().shape(a)}function pz({property:e,parentProperty:t,customFieldValidator:c,name:i,entityId:a}){let l=De.string();const s=e.validation;if(e.enumValues){s?.required&&(l=l.required(s?.requiredMessage?s.requiredMessage:"Required"));const d=tn(e.enumValues);l=l.oneOf((s?.required?d:[...d,null]).map(u=>u?.id??null)).nullable(!0)}if(s){if(l=s.required?l.required(s?.requiredMessage?s.requiredMessage:"Required").nullable(!0):l.notRequired().nullable(!0),s.unique&&c&&i&&(l=l.test("unique","This value already exists and should be unique",(d,u)=>c({name:i,property:e,parentProperty:t,value:d,entityId:a}))),(s.min||s.min===0)&&(l=l.min(s.min,`${e.name} must be min ${s.min} characters long`)),(s.max||s.max===0)&&(l=l.max(s.max,`${e.name} must be max ${s.max} characters long`)),s.matches){const d=typeof s.matches=="string"?Pi(s.matches):s.matches;d&&(l=l.matches(d,s.matchesMessage?{message:s.matchesMessage}:void 0))}s.trim&&(l=l.trim()),s.lowercase&&(l=l.lowercase()),s.uppercase&&(l=l.uppercase()),e.email&&(l=l.email(`${e.name} must be an email`)),e.url&&(l=l.url(`${e.name} must be a url`))}else l=l.notRequired().nullable(!0);return l}function wz({property:e,parentProperty:t,customFieldValidator:c,name:i,entityId:a}){const l=e.validation;let s=De.number().typeError("Must be a number");return l?(s=l.required?s.required(l.requiredMessage?l.requiredMessage:"Required").nullable(!0):s.notRequired().nullable(!0),l.unique&&c&&i&&(s=s.test("unique","This value already exists and should be unique",d=>c({name:i,property:e,parentProperty:t,value:d,entityId:a}))),(l.min||l.min===0)&&(s=s.min(l.min,`${e.name} must be higher or equal to ${l.min}`)),(l.max||l.max===0)&&(s=s.max(l.max,`${e.name} must be lower or equal to ${l.max}`)),(l.lessThan||l.lessThan===0)&&(s=s.lessThan(l.lessThan,`${e.name} must be higher than ${l.lessThan}`)),(l.moreThan||l.moreThan===0)&&(s=s.moreThan(l.moreThan,`${e.name} must be lower than ${l.moreThan}`)),l.positive&&(s=s.positive(`${e.name} must be positive`)),l.negative&&(s=s.negative(`${e.name} must be negative`)),l.integer&&(s=s.integer(`${e.name} must be an integer`))):s=s.notRequired().nullable(!0),s}function kz({property:e,parentProperty:t,customFieldValidator:c,name:i,entityId:a}){let l=De.object();const s=e.validation;return s?.unique&&c&&i&&(l=l.test("unique","This value already exists and should be unique",d=>c({name:i,property:e,parentProperty:t,value:d,entityId:a}))),s?.required?l=l.required(s.requiredMessage).nullable(!0):l=l.notRequired().nullable(!0),l}function mz({property:e,parentProperty:t,customFieldValidator:c,name:i,entityId:a}){if(e.autoValue)return De.object().nullable();let l=De.date();const s=e.validation;return s?(l=s.required?l.required(s?.requiredMessage?s.requiredMessage:"Required"):l.notRequired(),s.unique&&c&&i&&(l=l.test("unique","This value already exists and should be unique",d=>c({name:i,property:e,parentProperty:t,value:d,entityId:a}))),s.min&&(l=l.min(s.min,`${e.name} must be after ${s.min}`)),s.max&&(l=l.max(s.max,`${e.name} must be before ${s.min}`))):l=l.notRequired(),l.transform(d=>d instanceof Date?d:null).nullable()}function vz({property:e,parentProperty:t,customFieldValidator:c,name:i,entityId:a}){let l=De.object();const s=e.validation;return s?(l=s.required?l.required(s?.requiredMessage?s.requiredMessage:"Required").nullable(!0):l.notRequired().nullable(!0),s.unique&&c&&i&&(l=l.test("unique","This value already exists and should be unique",d=>c({name:i,property:e,parentProperty:t,value:d,entityId:a})))):l=l.notRequired().nullable(!0),l}function Kz({property:e,parentProperty:t,customFieldValidator:c,name:i,entityId:a}){let l=De.boolean();const s=e.validation;return s?(l=s.required?l.required(s?.requiredMessage?s.requiredMessage:"Required").nullable(!0):l.notRequired().nullable(!0),s.unique&&c&&i&&(l=l.test("unique","This value already exists and should be unique",d=>c({name:i,property:e,parentProperty:t,value:d,entityId:a})))):l=l.notRequired().nullable(!0),l}function Cz(e){return e.validation?.uniqueInArray?!0:e.dataType==="map"&&e.properties?Object.entries(e.properties).filter(([t,c])=>c.validation?.uniqueInArray):!1}function Sz({property:e,parentProperty:t,customFieldValidator:c,name:i,entityId:a}){let l=De.array();if(e.of)if(Array.isArray(e.of)){const d=e.of.map((u,A)=>({[`${i}[${A}]`]:so({property:u,parentProperty:e,entityId:a})})).reduce((u,A)=>({...u,...A}),{});return De.array().of(De.mixed().test("Dynamic object validation","Dynamic object validation error",(u,A)=>rn(d,A.path).validate(u)))}else{l=l.of(so({property:e.of,parentProperty:e,entityId:a}));const d=Cz(e.of);d&&(typeof d=="boolean"?l=l.uniqueInArray(u=>u,`${e.name} should have unique values within the array`):Array.isArray(d)&&d.forEach(([u,A])=>{l=l.uniqueInArray(y=>y&&y[u],`${e.name} → ${A.name??u}: should have unique values within the array`)}))}const s=e.validation;return s?(l=s.required?l.required(s?.requiredMessage?s.requiredMessage:"Required").nullable(!0):l.notRequired().nullable(!0),(s.min||s.min===0)&&(l=l.min(s.min,`${e.name} should be min ${s.min} entries long`)),s.max&&(l=l.max(s.max,`${e.name} should be max ${s.max} entries long`))):l=l.notRequired().nullable(!0),l}const Bz=({containerRef:e})=>{const{isSubmitting:t,isValidating:c,errors:i}=Fe.useFormikContext();return f.useEffect(()=>{const a=Object.keys(i);if(a.length>0&&t&&!c){const l=e?.current?.querySelector(`#form_field_${a[0]}`);if(l&&e?.current){const s=Ci(e.current);if(s){const u=l.getBoundingClientRect().top;s.scrollTo({top:s.scrollTop+u-64,behavior:"smooth"})}const d=l.querySelector("input");d&&d.focus()}}},[t,c,i,e]),null},Ez=e=>{const t=e&&e.scrollHeight>e.clientHeight,c=e?window.getComputedStyle(e).overflowY:null,i=c&&c.indexOf("hidden")!==-1;return t&&!i},Ci=e=>!e||e===document.body?document.body:Ez(e)?e:Ci(e.parentNode);function Fz({customId:e,entityId:t,status:c,onChange:i,error:a,entity:l}){const s=c==="existing"||!e,d=c!=="existing"&&!e,u=f.useMemo(()=>{if(!(!e||typeof e=="boolean"||e==="optional"))return tn(e)},[e]),A=an(),{copy:y}=Uc({onSuccess:_=>A.open({type:"success",message:`Copied ${_}`})}),h=ne(),I={label:d?"ID is set automatically":"ID",disabled:s,name:"id",value:(l&&c==="existing"?l.id:t)??"",endAdornment:l?n.jsxs(n.Fragment,{children:[n.jsx(_e,{title:"Copy",children:n.jsx(R,{onClick:_=>y(l.id),"aria-label":"copy-id",children:n.jsx(no,{size:"small"})})}),h?.entityLinkBuilder&&n.jsx(_e,{title:"Open in the console",children:n.jsx(R,{component:"a",href:h.entityLinkBuilder({entity:l}),rel:"noopener noreferrer",target:"_blank",onClick:_=>_.stopPropagation(),"aria-label":"go-to-datasource",children:n.jsx(ro,{size:"small"})})})]}):void 0};return n.jsxs(n.Fragment,{children:[u&&n.jsx(Xe,{error:a,onValueChange:_=>i(_),...I,renderValue:_=>{const g=u.find(b=>b.id===_);return g?`${g.id} - ${g.label}`:_},children:u.map(_=>n.jsx(xe,{value:String(_.id),children:n.jsx(Ee,{enumKey:_.id,enumValues:u,size:"medium"})},_.id))}),!u&&n.jsx(un,{...I,error:a,placeholder:e==="optional"?"Autogenerated ID, it can be manually changed":c==="new"||c==="copy"?"ID of the new document":"ID of the document",onChange:_=>{let g=_.target.value;return g&&(g=g.trim()),i(g.length?g:void 0)}}),n.jsx(Fe.ErrorMessage,{name:"id",component:"div",children:_=>"You need to specify an ID"})]})}function te({children:e,className:t,variant:c="filled",disabled:i=!1,size:a="medium",startIcon:l=null,fullWidth:s=!1,component:d,...u}){const A="rounded-md border uppercase inline-flex items-center justify-center p-2 px-4 text-sm font-medium focus:outline-none transition ease-in-out duration-150 gap-2",y=E({"w-full":s,"w-fit":!s,"border-transparent bg-primary hover:bg-blue-600 focus:ring-blue-400 !text-white shadow hover:ring-1 hover:ring-primary":c==="filled"&&!i,"border-primary !text-primary hover:bg-primary hover:bg-opacity-10 hover:border-blue-600 !hover:text-blue-600 focus:ring-blue-400 hover:ring-1 hover:ring-primary":c==="outlined"&&!i,"border-transparent !text-primary !hover:text-blue-600 hover:bg-primary hover:bg-opacity-10":c==="text"&&!i,"border-blue-600 border-opacity-50 dark:border-blue-500 dark:border-opacity-50 opacity-50 !text-blue-600 !dark:text-blue-500 text-opacity-50 dark:text-opacity-50":c==="outlined"&&i,"border-transparent outline-none opacity-50 !text-gray-600 !dark:text-gray-500":(c==="filled"||c==="text")&&i}),h=E({"py-1 px-2":a==="small","py-2 px-4":a==="medium","py-2 px-5":a==="large"});return d?n.jsxs(d,{onClick:u.onClick,className:E(he,l?"pl-3":"",A,y,h,t),...u,children:[l,e]}):n.jsxs("button",{type:u.type??"button",onClick:u.onClick,className:E(he,l?"pl-3":"",A,y,h,t),disabled:i,...u,children:[l,e]})}const Si=f.memo(Pz,(e,t)=>e.status===t.status&&e.path===t.path&&de(e.entity?.values,t.entity?.values));function Pz({status:e,path:t,collection:c,entity:i,onEntitySaveRequested:a,onDiscard:l,onModified:s,onValuesChanged:d,onIdChange:u,onFormContextChange:A,hideId:y,autoSave:h,onIdUpdateError:I}){const _=ne(),g=Qe(),b=_.plugins,p=f.useMemo(()=>Me({collection:c,path:t,values:i?.values,fields:_.fields}),[i?.values,t]),w=(e==="new"||e==="copy")&&!!p.customId&&p.customId!=="optional",k=f.useMemo(()=>e==="new"||e==="copy"?w?void 0:g.generateEntityId(t):i?.id,[]),v=f.useRef(!1),K=f.useMemo(()=>{const Q=p.properties;if((e==="existing"||e==="copy")&&i)return i.values??eo(Q);if(e==="new")return eo(Q);throw console.error({status:e,entity:i}),new Error("Form has not been initialised with the correct parameters")},[e,p,i]),[m,C]=f.useState(k),[B,P]=f.useState(!1),[F,D]=f.useState(),S=f.useRef(i?.values??K),T=S.current,[N,q]=f.useState(T),G=Q=>{q(Q),d&&d(Q),h&&Q&&!de(Q,T)&&H(Q)};f.useEffect(()=>{m&&u&&u(m)},[m,u]);const V=Me({collection:c,path:t,entityId:m,values:N,previousValues:T,fields:_.fields}),oe=V.callbacks?.onIdUpdate;f.useEffect(()=>{if(oe&&N&&(e==="new"||e==="copy"))try{const Q=oe({collection:V,path:t,entityId:m,values:N,context:_});C(Q)}catch(Q){I&&I(Q),console.error(Q)}},[m,N,e]);const O=f.useMemo(()=>T&&e==="existing"?Object.entries(V.properties).map(([Q,X])=>{if(Rn(X))return{};const ee=T[Q],U=K[Q];return de(ee,U)?{}:{[Q]:U}}).reduce((Q,X)=>({...Q,...X}),{}):{},[K,V.properties,T,e]),H=Q=>a({collection:V,path:t,entityId:m,values:Q,previousValues:i?.values,closeAfterSave:v.current,autoSave:h??!1}).then(X=>{const ee=e==="new"?"new_entity_saved":e==="copy"?"entity_copied":e==="existing"?"entity_edited":"unmapped_event";_.onAnalyticsEvent?.(ee,{path:t}),S.current=Q}).catch(X=>{console.error(X),D(X)}).finally(()=>{v.current=!1}),Z=(Q,X)=>{if(w&&!m){console.error("Missing custom Id"),P(!0),X.setSubmitting(!1);return}if(D(void 0),P(!1),e==="existing"){if(!i?.id)throw Error("Form misconfiguration when saving, no id for existing entity")}else if(e==="new"||e==="copy"){if(V.customId&&V.customId!=="optional"&&!m)throw Error("Form misconfiguration when saving, entityId should be set")}else throw Error("New FormType added, check EntityForm");H(Q)?.then(ee=>{X.resetForm({values:Q,submitCount:0,touched:{}})}).finally(()=>{X.setSubmitting(!1)})},L=f.useCallback(({name:Q,value:X,property:ee})=>g.checkUniqueField(t,Q,X,ee,m),[g,t,m]),W=f.useMemo(()=>m?Ki(m,V.properties,L):void 0,[m,V.properties,L]);return n.jsx(Fe.Formik,{initialValues:K,onSubmit:Z,validationSchema:W,validate:Q=>console.debug("Validating",Q),onReset:()=>l&&l(),children:Q=>{const X=[],ee={setFieldValue:Q.setFieldValue,values:Q.values,collection:Me({collection:V,path:t,fields:_.fields}),entityId:m,path:t,save:H};if(f.useEffect(()=>{A&&A(ee)},[A,ee]),b&&V){const U={entityId:m,path:t,status:e,collection:c,context:_,currentEntityId:m,formContext:ee};X.push(...b.map((re,J)=>re.form?.Actions?n.jsx(re.form.Actions,{...U},`actions_${re.name}`):null).filter(Boolean))}return n.jsxs("div",{className:"h-full overflow-auto",children:[X.length>0&&n.jsx("div",{className:E("w-full flex justify-end items-center sticky top-0 right-0 left-0 z-10 bg-opacity-60 bg-slate-200 dark:bg-opacity-60 dark:bg-slate-800 backdrop-blur-md"),children:X}),n.jsxs("div",{className:"pl-4 pr-4 pt-12 pb-16 md:pl-8",children:[n.jsx("div",{className:`w-full py-2 flex items-center mt-${4+(X?8:0)} lg:mt-${8+(X?8:0)} mb-8`,children:n.jsx(j,{className:"mt-4 flex-grow "+V.hideIdFromForm?"mb-2":"mb-0",variant:"h4",children:V.singularName??V.name})}),!y&&n.jsx(Fz,{customId:V.customId,entityId:m,status:e,onChange:C,error:B,entity:i}),m&&n.jsx(Dz,{...Q,initialValues:T,onModified:s,onValuesChanged:G,underlyingChanges:O,entity:i,resolvedCollection:V,formContext:ee,status:e,savingError:F,closeAfterSaveRef:v,autoSave:h})]})]})}})}function Dz(e){const{values:t,onModified:c,onValuesChanged:i,underlyingChanges:a,formContext:l,entity:s,touched:d,setFieldValue:u,resolvedCollection:A,isSubmitting:y,status:h,handleSubmit:I,savingError:_,dirty:g,closeAfterSaveRef:b,autoSave:p}=e,w=g;f.useEffect(()=>{c&&c(w),i&&i(t)},[w,t]),f.useEffect(()=>{!p&&a&&s&&Object.entries(a).forEach(([m,C])=>{const B=t[m];!de(C,B)&&!d[m]&&(console.debug("Updated value from the datasource:",m,C),u(m,C!==void 0?C:null))})},[p,a,s,t,d,u]);const k=n.jsx("div",{className:"flex flex-col gap-8",children:(A.propertiesOrder??Object.keys(A.properties)).map(m=>{const C=A.properties[m];if(!C)return console.warn(`Property ${m} not found in collection ${A.name}`),null;const B=!!a&&Object.keys(a).includes(m)&&!!d[m],P=!p&&y||Cn(C)||!!C.disabled;if(Rn(C))return null;const D={propertyKey:m,disabled:P,property:C,includeDescription:C.description||C.longDescription,underlyingValueHasChanged:B&&!p,context:l,tableMode:!1,partOfArray:!1,partOfBlock:!1,autoFocus:!1};return n.jsx("div",{id:`form_field_${m}`,children:n.jsx(ie,{children:n.jsx(pn,{...D})})},`field_${A.name}_${m}`)}).filter(Boolean)}),v=y||!w&&h==="existing",K=f.useRef(null);return n.jsxs(Fe.Form,{onSubmit:I,noValidate:!0,children:[n.jsxs("div",{className:"mt-12",ref:K,children:[k,n.jsx(Bz,{containerRef:K})]}),n.jsx("div",{className:"h-14"}),!p&&n.jsxs(kn,{position:"absolute",children:[_&&n.jsx("div",{className:"text-right",children:n.jsx(j,{color:"error",children:_.message})}),n.jsx(te,{variant:"text",disabled:v,type:"reset",children:h==="existing"?"Discard":"Clear"}),n.jsxs(te,{variant:"text",color:"primary",type:"submit",disabled:v,onClick:()=>{b.current=!1},children:[h==="existing"&&"Save",h==="copy"&&"Create copy",h==="new"&&"Create"]}),n.jsxs(te,{variant:"filled",color:"primary",type:"submit",disabled:v,onClick:()=>{b.current=!0},children:[h==="existing"&&"Save and close",h==="copy"&&"Create copy and close",h==="new"&&"Create and close"]})]})]})}function Bi(e,t){try{const c=Object.keys(e);return(t??c).map(a=>{if(e[a]){const l=e[a];return!Le(l)&&l?.dataType==="map"&&l.properties?{[a]:{...l,properties:Bi(l.properties,l.propertiesOrder)}}:{[a]:l}}else return}).filter(a=>a!==void 0).reduce((a,l)=>({...a,...l}),{})}catch(c){return console.error("Error sorting properties",c),e}}function nt(e,t){if(e)return typeof e=="string"?e:e(t)}const Ei="::";function ot(e){return Fi(Ze(e))}function Fi(e){return e.length===1?e[0]:e.reduce((t,c)=>`${t}${Ei}${c}`)}function Ze(e){return e.split("/").filter((t,c)=>c%2===0)}function Nz(e){return e?e.toString():""}function Pi(e){if(!e)return;const t=e.match(/\/(.*?)\/([a-z]*)?$/i);return t?new RegExp(t[1],t[2]||""):new RegExp(e,"")}function Tz(e){return e.match(/\/((?![*+?])(?:[^\r\n[/\\]|\\.|\[(?:[^\r\n\]\\]|\\.)*])+)\/((?:g(?:im?|mi?)?|i(?:gm?|mg?)?|m(?:gi?|ig?)?)?)/)?!0:!!e.match(/((?![*+?])(?:[^\r\n[/\\]|\\.|\[(?:[^\r\n\]\\]|\\.)*])+)/)}function Oo(e,t,c,i=300){const a=f.useRef(!1),l=()=>{t(),a.current=!1},s=f.useRef(void 0);f.useEffect(()=>(a.current=!0,clearTimeout(s.current),s.current=setTimeout(l,i),()=>{c&&l()}),[c,e])}function Mz(e,t=300){const[c,i]=f.useState(e);return f.useEffect(()=>{const a=setTimeout(()=>{i(e)},t);return()=>{clearTimeout(a)}},[e,t]),c}function Di(e,t){const c=Ne({propertyKey:"ignore",propertyOrBuilder:e,fields:t});return c?c.dataType==="reference"?!0:c.dataType==="array"?Array.isArray(c.of)?!1:c.of?.dataType==="reference":!1:null}function Oz(e){return n.jsx(gr,{size:e})}function rt(e,t){const c=e?.Icon??gr;return n.jsx(c,{size:t})}function ke(e,t="small",c={}){if(Le(e))return n.jsx(pc,{size:t});{const i=Go(e,c);return rt(i,t)}}function Lz(e,t){return Le(e)?"#888":Go(e,t)?.color??"#666"}function wn(e,t){if(typeof e=="object"){if(t in e)return e[t];if(t.includes(".")){const c=t.split("."),i=e[c[0]];if(typeof i=="object"&&i.dataType==="map"&&i.properties)return wn(i.properties,c.slice(1).join("."))}}}function tt(e,t){if(typeof e=="object"){if(t in e)return e[t];if(t.includes(".")){const c=t.split("."),i=e[c[0]];if(i.dataType==="map"&&i.properties)return tt(i.properties,c.slice(1).join("."))}}}function Qz(e){return e.replace(/\.([^.]*)/g,"[$1]")}function Ni(e,t){if(!t)return e;const c={};return t.forEach(i=>{const a=wn(e,i);typeof a=="object"&&a.dataType==="map"&&a.properties&&(c[i]={...a,properties:Ni(a.properties,a.propertiesOrder??[])}),a&&(c[i]=a)}),c}const Lo={read:!0,edit:!0,create:!0,delete:!0};function uo(e,t,c,i){const a=e.permissions;if(a===void 0)return Lo;if(typeof a=="object")return a;if(typeof a=="function")return a({entity:i,user:t.user,authController:t,collection:e,pathSegments:c});throw console.error("Permissions:",a),Error("New type of permission added and not mapped")}function ct(e,t,c,i){return uo(e,t,c,i).edit??Lo.edit}function Qo(e,t,c,i){return uo(e,t,c,i).create??Lo.create}function it(e,t,c,i){return uo(e,t,c,i).delete??Lo.delete}function Ti(e,t){if(e&&(e=No(e),e in Wo))return e in Wo?n.jsx(r,{iconKey:e,size:"medium",className:t}):void 0}function Vo(e,t){const c=Ti(e.icon,t);if(e?.icon&&c)return c;let i=No(("singularName"in e?e.singularName:void 0)??e.name),a;i in Wo&&(a=i),a||(i=No(e.path),i in Wo&&(a=i));const l=_r.length;return a||(a=_r[Jt(e.path)%l]),n.jsx(r,{iconKey:a,size:"medium",className:t})}const Wo=oc.reduce((e,t)=>(e[t]=t,e),{});function Vz(e,t){if(t!==void 0&&t===1)return e;const c={"(quiz)$":"$1zes","^(ox)$":"$1en","([m|l])ouse$":"$1ice","(matr|vert|ind)ix|ex$":"$1ices","(x|ch|ss|sh)$":"$1es","([^aeiouy]|qu)y$":"$1ies","(hive)$":"$1s","(?:([^f])fe|([lr])f)$":"$1$2ves","(shea|lea|loa|thie)f$":"$1ves",sis$:"ses","([ti])um$":"$1a","(tomat|potat|ech|her|vet)o$":"$1oes","(bu)s$":"$1ses","(alias)$":"$1es","(octop)us$":"$1i","(ax|test)is$":"$1es","(us)$":"$1es","([^s]+)$":"$1s"},i={move:"moves",foot:"feet",goose:"geese",sex:"sexes",child:"children",man:"men",tooth:"teeth",person:"people"};if(["sheep","fish","deer","moose","series","species","money","rice","information","equipment","bison","cod","offspring","pike","salmon","shrimp","swine","trout","aircraft","hovercraft","spacecraft","sugar","tuna","you","wood"].indexOf(e.toLowerCase())>=0)return e;for(const l in i){const s=new RegExp(`${l}$`,"i"),d=i[l];if(s.test(e))return e.replace(s,d)}for(const l in c){const s=new RegExp(l,"i");if(s.test(e))return e.replace(s,c[l])}return e}function Wz(e,t){if(t!==void 0&&t!==1)return e;const c={"(quiz)zes$":"$1","(matr)ices$":"$1ix","(vert|ind)ices$":"$1ex","^(ox)en$":"$1","(alias)es$":"$1","(octop|vir)i$":"$1us","(cris|ax|test)es$":"$1is","(shoe)s$":"$1","(o)es$":"$1","(bus)es$":"$1","([m|l])ice$":"$1ouse","(x|ch|ss|sh)es$":"$1","(m)ovies$":"$1ovie","(s)eries$":"$1eries","([^aeiouy]|qu)ies$":"$1y","([lr])ves$":"$1f","(tive)s$":"$1","(hive)s$":"$1","(li|wi|kni)ves$":"$1fe","(shea|loa|lea|thie)ves$":"$1f","(^analy)ses$":"$1sis","((a)naly|(b)a|(d)iagno|(p)arenthe|(p)rogno|(s)ynop|(t)he)ses$":"$1$2sis","([ti])a$":"$1um","(n)ews$":"$1ews","(h|bl)ouses$":"$1ouse","(corpse)s$":"$1","(us)es$":"$1",s$:""},i={move:"moves",foot:"feet",goose:"geese",sex:"sexes",child:"children",man:"men",tooth:"teeth",person:"people"};if(["sheep","fish","deer","moose","series","species","money","rice","information","equipment","bison","cod","offspring","pike","salmon","shrimp","swine","trout","aircraft","hovercraft","spacecraft","sugar","tuna","you","wood"].indexOf(e.toLowerCase())>=0)return e;for(const l in i){const s=new RegExp(`${i[l]}$`,"i");if(s.test(e))return e.replace(s,l)}for(const l in c){const s=new RegExp(l,"i");if(s.test(e))return e.replace(s,c[l])}return e}function Mi(e,t,c,i=3){const a=Object.keys(e.properties);let l=c?.filter(s=>a.includes(s));return l&&l.length>0?l:(l=a,l.filter(s=>{const d=e.properties[s];return d&&!Le(d)&&!Di(d,t)}).slice(0,i))}function Oi(e,t=166){let c;function i(...a){const l=()=>{e.apply(this,a)};clearTimeout(c),c=setTimeout(l,t)}return i.clear=()=>{clearTimeout(c)},i}function at(e,t=""){return e&&Object.keys(e).reduce((c,i)=>{const a=t?`${t}.${i}`:i;return typeof e[i]=="object"&&e[i]!==null?Array.isArray(e[i])?e[i].forEach((l,s)=>{Object.assign(c,at(l,`${a}[${s}]`))}):Object.assign(c,at(e[i],a)):c[a]=e[i],c},{})}function Li(e){return e.reduce((t,c)=>(Object.entries(c).forEach(([i,a])=>{if(Array.isArray(a)&&(t[i]=Math.max(t[i]||0,a.length)),typeof a=="object"&&a!==null){const l=Li([a]);Object.entries(l).forEach(([s,d])=>{const u=`${i}.${s}`;t[u]=Math.max(t[u]||0,d)})}}),t),{})}function Qi(e){return Object.keys(lt).includes(e)}const lt={text_field:{key:"text_field",name:"Text field",description:"Simple short text",Icon:Pc,color:"#2d7ff9",property:{dataType:"string",Field:Mn}},multiline:{key:"multiline",name:"Multiline",description:"Text with multiple lines",Icon:Dc,color:"#2d7ff9",property:{dataType:"string",multiline:!0,Field:Mn}},markdown:{key:"markdown",name:"Markdown",description:"Text with advanced markdown syntax",Icon:bc,color:"#2d7ff9",property:{dataType:"string",markdown:!0,Field:mi}},url:{key:"url",name:"Url",description:"Text with URL validation",Icon:wc,color:"#154fb3",property:{dataType:"string",url:!0,Field:Mn}},email:{key:"email",name:"Email",description:"Text with email validation",Icon:_c,color:"#154fb3",property:{dataType:"string",email:!0,Field:Mn}},select:{key:"select",name:"Select/enum",description:"Select one text value from within an enumeration",Icon:Kc,color:"#4223c9",property:{dataType:"string",enumValues:[],Field:zr}},multi_select:{key:"multi_select",name:"Multi select",description:"Select multiple text values from within an enumeration",Icon:Cc,color:"#4223c9",property:{dataType:"array",of:{dataType:"string",enumValues:[]},Field:$r}},number_input:{key:"number_input",name:"Number input",description:"Simple number field with validation",Icon:Bc,color:"#bec920",property:{dataType:"number",Field:Mn}},number_select:{key:"number_select",name:"Number select",description:"Select a number value from within an enumeration",Icon:pr,color:"#bec920",property:{dataType:"number",enumValues:[],Field:zr}},multi_number_select:{key:"multi_number_select",name:"Multiple number select",description:"Select multiple number values from within an enumeration",Icon:pr,color:"#bec920",property:{dataType:"array",of:{dataType:"number",enumValues:[]},Field:$r}},file_upload:{key:"file_upload",name:"File upload",description:"Input for uploading single files",Icon:Nc,color:"#f92d9a",property:{dataType:"string",storage:{storagePath:"{path}"},Field:Jr}},multi_file_upload:{key:"multi_file_upload",name:"Multiple file upload",description:"Input for uploading multiple files",Icon:fc,color:"#f92d9a",property:{dataType:"array",of:{dataType:"string",storage:{storagePath:"{path}"}},Field:Jr}},reference:{key:"reference",name:"Reference",description:"The value refers to a different collection",Icon:vc,color:"#ff0042",property:{dataType:"reference",Field:Ii}},multi_references:{key:"multi_references",name:"Multiple references",description:"Multiple values that refer to a different collection",Icon:tc,color:"#ff0042",property:{dataType:"array",of:{dataType:"reference"},Field:li}},switch:{key:"switch",name:"Switch",description:"Boolean true or false field (or yes or no, 0 or 1...)",Icon:Ic,color:"#20d9d2",property:{dataType:"boolean",Field:hi}},date_time:{key:"date_time",name:"Date/time",description:"A date time select field",Icon:Fc,color:"#8b46ff",property:{dataType:"date",Field:gi}},group:{key:"group",name:"Group",description:"Group of multiple fields",Icon:hr,color:"#ff9408",property:{dataType:"map",properties:{},Field:bi}},key_value:{key:"key_value",name:"Key-value",description:"Flexible field that allows the user to add multiple key-value pairs",Icon:hr,color:"#ff9408",property:{dataType:"map",keyValue:!0,Field:pi}},repeat:{key:"repeat",name:"Repeat/list",description:"A field that gets repeated multiple times (e.g. multiple text fields)",Icon:mr,color:"#ff9408",property:{dataType:"array",of:{dataType:"string"},Field:wi}},custom_array:{key:"custom_array",name:"Custom array",description:"A field that saved its value as an array of custom objects",Icon:mr,color:"#ff9408",property:{dataType:"array",of:[],Field:vi}},block:{key:"block",name:"Block",description:"A complex field that allows the user to compose different fields together, with a key->value format",Icon:Tc,color:"#ff9408",property:{dataType:"array",oneOf:{properties:{}},Field:ki}}};function Go(e,t){const c=dt(e),i=st(e);if(!i){console.error("No field id found for property",e);return}const a=lt[i],l=c?t[c]:void 0;return qe(a??{},l??{})}function st(e){if(e.dataType==="string")return e.multiline?"multiline":e.markdown?"markdown":e.storage?"file_upload":e.url?"url":e.email?"email":e.enumValues?"select":"text_field";if(e.dataType==="number")return e.enumValues?"number_select":"number_input";if(e.dataType==="map"){if(e.keyValue)return"key_value";if(e.properties)return"group"}else if(e.dataType==="array"){const t=e.of;return e.oneOf?"block":Array.isArray(t)?"custom_array":Le(t)?"repeat":t?.dataType==="string"&&t.enumValues?"multi_select":t?.dataType==="number"&&t.enumValues?"multi_number_select":t?.dataType==="string"&&t.storage?"multi_file_upload":t?.dataType==="reference"?"multi_references":"repeat"}else{if(e.dataType==="boolean")return"switch";if(e.dataType==="date")return"date_time";if(e.dataType==="reference")return"reference"}console.error("Unsupported field config mapping",e)}function dt(e){return e.fieldConfig?e.fieldConfig:st(e)}const Me=({collection:e,path:t,entityId:c,values:i,previousValues:a,userConfigPersistence:l,fields:s})=>{const d=l?.getCollectionConfig(t),u=rn(d,"properties"),A=eo(e.properties),y=i??A,h=a??i??A,I=Object.entries(e.properties).map(([b,p])=>{const w=y?Fe.getIn(y,b):void 0;return{[b]:Ne({propertyKey:b,propertyOrBuilder:p,values:y,previousValues:h,path:t,propertyValue:w,entityId:c,fields:s})}}).filter(b=>b!==null).reduce((b,p)=>({...b,...p}),{}),_=qe(I,u),g=Object.entries(_).filter(([b,p])=>!!p?.dataType).map(([b,p])=>({[b]:p})).reduce((b,p)=>({...b,...p}),{});return{...e,properties:g,originalCollection:e}};function Ne({propertyOrBuilder:e,propertyValue:t,fromBuilder:c=!1,...i}){if(typeof e=="object"&&"resolved"in e)return e;let a=null;if(e)if(Le(e)){const l=i.path;if(!l)throw Error("Trying to resolve a property builder without specifying the entity path");const s=e({...i,path:l,propertyValue:t,values:i.values??{},previousValues:i.previousValues??i.values??{}});if(!s)return console.debug("Property builder not returning `Property` so it is not rendered",l,i.entityId,e),null;a=Ne({...i,propertyValue:t,propertyOrBuilder:s,fromBuilder:!0})}else{const l=e;if(l.dataType==="map"&&l.properties){const s=ut({...i,properties:l.properties,propertyValue:t});a={...l,resolved:!0,fromBuilder:c,properties:s}}else l.dataType==="array"?a=sn({property:l,propertyValue:t,fromBuilder:c,...i}):(l.dataType==="string"||l.dataType==="number")&&l.enumValues&&(a=ft(l,c))}else return null;if(a||(a={...e,resolved:!0,fromBuilder:c}),a.fieldConfig&&!Qi(a.fieldConfig)){const l=i.fields;if(!l)throw Error(`Trying to resolve a property with key ${a.fieldConfig} that inherits from a custom field but no custom fields were provided. Use the property 'fields' in your top level component to provide them`);const s=l[a.fieldConfig];if(!s)throw Error(`Trying to resolve a property that inherits from a custom field but no custom field with id ${a.fieldConfig} was found. Check the \`fields\` in your top level component`);if(s.property){const d=Ne({propertyOrBuilder:s.property,propertyValue:t,...i});d&&(a=qe(d,a))}}return a?{...a,resolved:!0}:null}function sn({propertyKey:e,property:t,propertyValue:c,...i}){if(t.of){if(Array.isArray(t.of))return{...t,resolved:!0,fromBuilder:i.fromBuilder,resolvedProperties:t.of.map((a,l)=>Ne({propertyKey:`${e}.${l}`,propertyOrBuilder:a,propertyValue:Array.isArray(c)?c[l]:void 0,...i,index:l}))};{const a=t.of,l=Array.isArray(c)?c.map((d,u)=>Ne({propertyKey:`${e}.${u}`,propertyOrBuilder:a,propertyValue:d,...i,index:u})).filter(d=>!!d):[],s=Ne({propertyKey:`${e}`,propertyOrBuilder:a,propertyValue:void 0,...i});if(!s)throw Error("When using a property builder as the 'of' prop of an ArrayProperty, you must return a valid child property");return{...t,resolved:!0,fromBuilder:i.fromBuilder,of:s,resolvedProperties:l}}}else if(t.oneOf){const a=t.oneOf?.typeField??xn,l=Array.isArray(c)?c.map((d,u)=>{const A=d&&d[a],y=t.oneOf?.properties[A];return!A||!y?null:Ne({propertyKey:`${e}.${u}`,propertyOrBuilder:y,propertyValue:c,...i})}).filter(d=>!!d):[],s=ut({properties:t.oneOf.properties,propertyValue:void 0,...i});return{...t,resolved:!0,oneOf:{...t.oneOf,properties:s},fromBuilder:i.fromBuilder,resolvedProperties:l}}else{if(t.Field)return{...t,resolved:!0,fromBuilder:i.fromBuilder};throw Error("The array property needs to declare an 'of' or a 'oneOf' property, or provide a custom `Field`")}}function ut({properties:e,propertyValue:t,...c}){return Object.entries(e).map(([i,a])=>({[i]:Ne({propertyKey:i,propertyOrBuilder:a,propertyValue:t&&typeof t=="object"?rn(t,i):void 0,...c})})).filter(i=>i!==null).reduce((i,a)=>({...i,...a}),{})}function ft(e,t){return typeof e.enumValues=="object"?{...e,resolved:!0,enumValues:tn(e.enumValues)?.filter(c=>c&&c.id&&c.label)??[],fromBuilder:t??!1}:e}function Gz(e){return typeof e=="object"?Object.entries(e).map(([t,c])=>typeof c=="string"?{id:t,label:c}:c):Array.isArray(e)?e:void 0}function At(e,t){return typeof e=="string"?t?.find(c=>c.key===e):e}function _t(e){const{path:t,collections:c=[],currentFullPath:i}=e,a=pe(t).split("/"),l=bo(a),s=[];for(let d=0;d<l.length;d++){const u=l[d],A=c&&c.find(y=>y.alias===u||y.path===u);if(A){const y=A.alias??A.path,h=i&&i.length>0?i+"/"+y:y;s.push({type:"collection",path:h,collection:A});const I=pe(pe(t).replace(u,"")),_=I.length>0?I.split("/"):[];if(_.length>0){const g=_[0],b=h+"/"+g;if(s.push({type:"entity",entityId:g,path:h,parentCollection:A}),_.length>1){const p=_.slice(1).join("/");if(!A)throw Error("collection not found resolving path: "+A);const w=A.entityViews,k=w&&w.map(v=>At(v,e.contextEntityViews)).filter(Boolean).find(v=>v.key===p);if(k){const v=i&&i.length>0?i+"/"+k.key:k.key;s.push({type:"custom_view",path:v,view:k})}else A.subcollections&&s.push(..._t({path:p,collections:A.subcollections,currentFullPath:b,contextEntityViews:e.contextEntityViews}))}}break}}return s}function Vi(e){return n.jsx(_e,{...e,tooltipClassName:"!text-red-500 bg-red-50",children:e.children})}function we({title:e,error:t,tooltip:c}){const i=t instanceof Error?t.message:t,a=n.jsxs("div",{className:"flex items-center m-2",children:[n.jsx(br,{size:"small",color:"error"}),n.jsxs("div",{className:"pl-2",children:[e&&n.jsx(j,{variant:"body2",className:"font-medium",children:e}),n.jsx(j,{variant:"body2",children:i})]})]});return c?n.jsx(Vi,{title:c,children:a}):a}function yt({entity:e,collection:t,path:c,className:i}){const a=ne(),l=f.useMemo(()=>Me({collection:t,path:c,entityId:e.id,values:e.values,fields:a.fields}),[t,c,e]),s=ne(),d=l.properties;return n.jsx("div",{className:"w-full "+i,children:n.jsxs("div",{className:"w-full mb-4",children:[n.jsxs("div",{className:E(ue,"flex justify-between py-2 border-b last:border-b-0"),children:[n.jsx("div",{className:"flex items-center w-1/4",children:n.jsx("span",{className:"pl-2 text-sm text-gray-600",children:"Id"})}),n.jsxs("div",{className:"flex-grow p-2 ml-2 w-3/4 text-gray-900 dark:text-white min-h-[56px] flex items-center",children:[n.jsx("span",{className:"flex-grow mr-2",children:e.id}),s?.entityLinkBuilder&&n.jsx("a",{href:s.entityLinkBuilder({entity:e}),rel:"noopener noreferrer",target:"_blank",children:n.jsx(R,{children:n.jsx(ro,{size:"small"})})})]})]}),Object.entries(d).map(([u,A])=>{const y=e.values[u];return n.jsxs("div",{className:E(ue,"flex justify-between py-2 border-b last:border-b-0"),children:[n.jsx("div",{className:"flex items-center w-1/4",children:n.jsx("span",{className:"pl-2 text-sm text-gray-600",children:A.name})}),n.jsx("div",{className:"flex-grow p-2 ml-2 w-3/4 text-gray-900 dark:text-white min-h-[56px] flex items-center",children:n.jsx(Be,{propertyKey:u,value:y,entity:e,property:A,size:"medium"})})]},`reference_previews_${u}`)})]})})}function zz(e){return e.dataType==="boolean"?"center":e.dataType==="number"?e.enumValues?"left":"right":e.dataType==="date"?"right":"left"}function Wi(e){if(e.columnWidth)return e.columnWidth;if(e.dataType==="string")return e.url?280:e.storage?160:e.enumValues?200:e.multiline||e.markdown?300:(e.email,200);if(e.dataType==="array"){const t=e;return t.of?Array.isArray(e.of)?300:Wi(t.of):300}else return e.dataType==="number"?e.enumValues?200:140:e.dataType==="map"?360:e.dataType==="date"?200:e.dataType==="reference"?220:e.dataType==="boolean"?140:200}function ht(e){return`subcollection:${e.alias??e.path}`}function zo(e){return parseInt(e,10)||0}const Hz={shadow:{visibility:"hidden",position:"absolute",overflow:"hidden",height:0,top:0,left:0,transform:"translateZ(0)"}};function Gi(e){return e==null||Object.keys(e).length===0||e.outerHeightStyle===0&&!e.overflow}const gt=ce.forwardRef(function(t,c){const{onChange:i,onScroll:a,onResize:l,maxRows:s,minRows:d=1,style:u,value:A,onFocus:y,onBlur:h,sizeRef:I,..._}=t,{current:g}=ce.useRef(A!=null),b=ce.useRef(null),p=Uz(c,b),w=ce.useRef(null),k=ce.useRef(0),[v,K]=ce.useState({outerHeightStyle:0}),m=ce.useCallback(()=>{const D=b.current;if(typeof window>"u")return{outerHeightStyle:0};const T=window.getComputedStyle(D);if(T.width==="0px")return{outerHeightStyle:0};const N=I?.current??w.current,q=w.current;N.style.width=T.width,q.value=D.value||t.placeholder||"x",q.value.slice(-1)===`
680
+ `&&(q.value+=" ");const G=T.boxSizing,V=zo(T.paddingBottom)+zo(T.paddingTop),oe=zo(T.borderBottomWidth)+zo(T.borderTopWidth),O=N.scrollHeight;q.value="x";const H=N.scrollHeight;let Z=O;d&&(Z=Math.max(Number(d)*H,Z)),s&&(Z=Math.min(Number(s)*H,Z)),Z=Math.max(Z,H);const L=Z+(G==="border-box"?V+oe:0),W=Math.abs(Z-O)<=1;return{outerHeightStyle:L,overflow:W}},[s,d,t.placeholder]),C=(D,S)=>{const{outerHeightStyle:T,overflow:N}=S;return k.current<20&&(T>0&&Math.abs((D.outerHeightStyle||0)-T)>1||D.overflow!==N)?(k.current+=1,{overflow:N,outerHeightStyle:T}):(process.env.NODE_ENV!=="production"&&k.current===20&&console.error(["MUI: Too many re-renders. The layout is unstable.","TextareaAutosize limits the number of renders to prevent an infinite loop."].join(`
681
+ `)),D)},B=ce.useCallback(()=>{const D=m();Gi(D)||(l&&l(D),K(S=>C(S,D)))},[m,l]),P=()=>{const D=m();Gi(D)||La.flushSync(()=>{K(S=>C(S,D))})};ce.useEffect(()=>{const D=Oi(()=>{k.current=0,b.current&&P()});let S;const T=b.current,N=window;if(!(typeof window>"u"))return N.addEventListener("resize",D),typeof ResizeObserver<"u"&&(S=new ResizeObserver(D),S.observe(T)),()=>{D.clear(),N.removeEventListener("resize",D),S&&S.disconnect()}}),f.useLayoutEffect(()=>{B()}),ce.useEffect(()=>{k.current=0},[A]);const F=D=>{k.current=0,g||B(),i&&i(D)};return n.jsxs(ce.Fragment,{children:[n.jsx("textarea",{value:A,onChange:F,className:t.className,ref:p,onFocus:y,onBlur:h,rows:d,style:{height:v.outerHeightStyle,overflow:v.overflow?"hidden":void 0,...u},onScroll:a,..._}),n.jsx("textarea",{"aria-hidden":!0,className:t.shadowClassName,readOnly:!0,ref:w,tabIndex:-1,style:{...Hz.shadow,...u,padding:0}})]})});function Uz(...e){return ce.useMemo(()=>e.every(t=>t==null)?null:t=>{e.forEach(c=>{Yz(c,t)})},e)}function Yz(e,t){typeof e=="function"?e(t):e&&(e.current=t)}function $z(e){const t=f.useRef(null),{disabled:c,value:i,multiline:a,updateValue:l,focused:s}=e,d=f.useRef(i),[u,A]=f.useState(i),y=f.useRef(!1);f.useEffect(()=>{d.current!==i&&i!==u&&A(i),d.current=i},[i]);const h=f.useCallback(()=>{!i&&!u||u!==i&&(d.current=u,l(u))},[u,l,i]);return Oo(u,h,!s,2e3),f.useEffect(()=>{t.current&&s&&!y.current?(y.current=!0,t.current.focus({preventScroll:!0}),t.current.selectionStart=t.current.value.length,t.current.selectionEnd=t.current.value.length):y.current=s},[s,t]),n.jsx(gt,{ref:t,style:{padding:0,margin:0,width:"100%",color:"unset",fontWeight:"unset",lineHeight:"unset",fontSize:"unset",fontFamily:"unset",background:"unset",border:"unset",resize:"none",outline:"none"},value:u??"",onChange:I=>{const _=I.target.value;(a||!_.endsWith(`
682
+ `))&&A(_)},onFocus:()=>{y.current=!0},onBlur:()=>{y.current=!1,h()}})}function It(e){const{name:t,enumValues:c,error:i,internalValue:a,disabled:l,small:s,focused:d,updateValue:u,multiple:A,valueType:y}=e,h=Array.isArray(a)&&A||!Array.isArray(a)&&!A,I=f.useRef(null);f.useEffect(()=>{I.current&&d&&I.current?.focus({preventScroll:!0})},[d,I]);const _=f.useCallback(b=>{if(y==="number")if(A){const p=b.map(w=>parseFloat(w));u(p)}else u(parseFloat(b));else if(y==="string")u(b||null);else throw Error("Missing mapping in TableSelect")},[A,u,y]),g=(b,p)=>A&&Array.isArray(b)?n.jsx(Qr,{value:b,name:t,enumValues:c,size:s?"small":"medium"},`${b}-${p}`):n.jsx(Ee,{enumKey:b,enumValues:c,size:s?"small":"medium"},`${b}-${p}`);return A?n.jsx(Ur,{inputRef:I,containerClassName:"w-full h-full",className:"w-full h-full p-0 bg-transparent",position:"item-aligned",disabled:l,padding:!1,includeFocusOutline:!1,value:h?a.map(b=>b.toString()):[],onMultiValueChange:_,renderValue:g,children:c?.map(b=>n.jsx(Yr,{value:String(b.id),children:n.jsx(Ee,{enumKey:b.id,enumValues:c,size:s?"small":"medium"})},b.id))}):n.jsx(Xe,{inputRef:I,className:"w-full h-full p-0 bg-transparent",position:"item-aligned",disabled:l,multiple:A,padding:!1,includeFocusOutline:!1,value:h?A?a.map(b=>b.toString()):a?.toString():A?[]:"",onValueChange:_,onMultiValueChange:_,renderValue:g,children:c?.map(b=>n.jsx(xe,{value:String(b.id),children:n.jsx(Ee,{enumKey:b.id,enumValues:c,size:s?"small":"medium"})},b.id))})}function jz(e){const{align:t,value:c,updateValue:i,focused:a}=e,l=c&&typeof c=="number"?c.toString():"",[s,d]=f.useState(l),u=f.useRef(c);f.useEffect(()=>{u.current!==c&&String(c)!==s&&d(c?c.toString():null),u.current=c},[c]);const A=f.useCallback(()=>{if(s!==l)if(s!=null){const I=parseFloat(s);if(isNaN(I))return;I!=null&&i(I)}else i(null)},[s,c]);Oo(s,A,!a,2e3),f.useEffect(()=>{!a&&l!==s&&d(c!=null?c.toString():null)},[c,a]);const y=f.useRef(null);f.useEffect(()=>{y.current&&a&&y.current.focus({preventScroll:!0})},[a,y]);const h=/^-?[0-9]+[,.]?[0-9]*$/;return n.jsx("input",{ref:y,className:"w-full text-right p-0 m-0 bg-transparent border-none resize-none outline-none font-normal leading-normal text-unset",style:{textAlign:t},value:s??"",onChange:I=>{const _=I.target.value.replace(",",".");_.length===0&&d(null),(h.test(_)||_.startsWith("-"))&&d(_)}})}function qz(e){const{internalValue:t,updateValue:c,focused:i}=e,a=f.useRef(null);return f.useEffect(()=>{a.current&&i&&a.current.focus({preventScroll:!0})},[i,a]),n.jsx(Zr,{ref:a,size:"small",value:!!t,onValueChange:c})}function Jz(e){const{disabled:t,error:c,mode:i,internalValue:a,updateValue:l}=e;return n.jsx(Vn,{value:a??void 0,onChange:s=>l(s),size:"medium",invisible:!0,className:"w-full h-full",inputClassName:"w-full h-full",mode:i})}function zi({showError:e,disabled:t,showExpandIcon:c,selected:i,openPopup:a,children:l}){const s=f.useRef(null),d=f.useCallback(()=>{if(a){const A=s&&s?.current?.getBoundingClientRect();a(A)}},[]),u=f.useRef();return f.useEffect(()=>{u.current&&i&&u.current.focus({preventScroll:!0})},[i]),n.jsx(n.Fragment,{children:(e||!t&&c)&&n.jsxs("div",{ref:s,className:"absolute top-0.5 right-0.5 flex items-center",children:[i&&l,i&&!t&&c&&n.jsx(R,{ref:u,color:"inherit",size:"small",onClick:d,children:n.jsxs("svg",{fill:"#888",width:"20",height:"20",viewBox:"0 0 24 24",children:[n.jsx("path",{className:"cls-2",d:"M20,5a1,1,0,0,0-1-1L14,4h0a1,1,0,0,0,0,2h2.57L13.29,9.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L18,7.42V10a1,1,0,0,0,1,1h0a1,1,0,0,0,1-1Z"}),n.jsx("path",{className:"cls-2",d:"M10.71,13.29a1,1,0,0,0-1.42,0L6,16.57V14a1,1,0,0,0-1-1H5a1,1,0,0,0-1,1l0,5a1,1,0,0,0,1,1h5a1,1,0,0,0,0-2H7.42l3.29-3.29A1,1,0,0,0,10.71,13.29Z"})]})}),e&&n.jsx(Vi,{side:"left",className:"flex items-center justify-center",style:{width:32,height:32},title:e.message,children:n.jsx(yc,{size:"small",color:"error"})})]})})}const Zz="max-w-full box-border relative pt-[2px] items-center border border-transparent outline-none rounded-md duration-200 ease-[cubic-bezier(0.4,0,0.2,1)] focus:border-primary-solid",Xz="pt-0 border-2 border-solid",xz="transition-colors duration-200 ease-[cubic-bezier(0,0,0.2,1)] border-2 border-solid border-green-500 bg-green-50 dark:bg-green-900",Rz="transition-colors duration-200 ease-[cubic-bezier(0,0,0.2,1)] border-2 border-solid border-red-500 bg-red-50 dark:bg-red-900";function e3(e){const{propertyKey:t,error:c,selected:i,openPopup:a,value:l,disabled:s,property:d,entity:u,path:A,previewSize:y,updateValue:h}=e,I=Bn(),{internalValue:_,setInternalValue:g,onFilesAdded:b,storage:p,onFileUploadComplete:w,storagePathBuilder:k,multipleFilesSupported:v}=di({entityValues:u.values,entityId:u.id,path:A,property:d,propertyKey:t,storageSource:I,onChange:h,value:l,disabled:s});return n.jsx(n3,{internalValue:_,setInternalValue:g,name:t,disabled:s,autoFocus:!1,openPopup:a,error:c,selected:i,property:d,onChange:h,entity:u,storagePathBuilder:k,storage:p,multipleFilesSupported:v,onFilesAdded:b,onFileUploadComplete:w,previewSize:y})}function n3({property:e,name:t,internalValue:c,setInternalValue:i,openPopup:a,entity:l,selected:s,error:d,onChange:u,multipleFilesSupported:A,previewSize:y,disabled:h,autoFocus:I,storage:_,onFilesAdded:g,onFileUploadComplete:b,storagePathBuilder:p}){const[w,k]=f.useState(!1),v=A&&y==="medium"?"small":y;if(A){const O=e;if(Array.isArray(O.of))throw Error("Using array properties instead of single one in `of` in ArrayProperty");if(O.of){if(O.of.dataType!=="string")throw Error("Storage field using array must be of data type string")}else throw Error("Storage field using array must be of data type string")}const K=_?.metadata,m=!!c,C=an(),{open:B,getRootProps:P,getInputProps:F,isDragActive:D,isDragAccept:S,isDragReject:T}=Ro.useDropzone({accept:_.acceptedFiles?_.acceptedFiles.map(O=>({[O]:[]})).reduce((O,H)=>({...O,...H}),{}):void 0,disabled:h,maxSize:_.maxSize,noClick:!0,noKeyboard:!0,onDrop:g,onDropRejected:(O,H)=>{for(const Z of O)for(const L of Z.errors)C.open({type:"error",message:`Error uploading file: File is larger than ${_.maxSize} bytes`})}}),{...N}=P(),q=A?"Drag 'n' drop some files here, or click here to edit":"Drag 'n' drop a file here, or click here edit",G=A?e.of:e,V=f.useMemo(()=>Pn(v),[v]),oe=!h&&d;return n.jsxs("div",{...N,onMouseEnter:()=>k(!0),onMouseMove:()=>k(!0),onMouseLeave:()=>k(!1),className:E(Zz,"relative w-full h-full flex",`justify-${m?"start":"center"}`,D?Xz:"",S?xz:"",T?Rz:""),children:[n.jsx("input",{autoFocus:I,...F()}),c.map((O,H)=>{let Z;return O.storagePathOrDownloadUrl?Z=n.jsx(o3,{property:G,value:O.storagePathOrDownloadUrl,entity:l,size:v},`storage_preview_${H}`):O.file&&(Z=n.jsx(_i,{entry:O,metadata:K,storagePath:p(O.file),onFileUploadComplete:b,imageSize:V,simple:!0},`storage_progress_${H}`)),Z}),!c&&n.jsx("div",{className:"flex-grow m-2 max-w-[200px]",onClick:B,children:n.jsx(j,{className:"text-gray-400 dark:text-gray-600",variant:"body2",align:"center",children:q})}),n.jsx(zi,{showError:oe,disabled:h,showExpandIcon:!0,selected:s,openPopup:h?void 0:a,children:n.jsx(R,{color:"inherit",size:"small",onClick:B,children:n.jsx(Ac,{size:"small",className:"text-gray-500"})})})]})}function o3({property:e,value:t,size:c,entity:i}){return n.jsx("div",{className:"relative m-2",children:t&&n.jsx(ie,{children:n.jsx(Be,{propertyKey:"ignore",value:t,property:e,entity:i,size:c})})})}function Hi(e){const{name:t,internalValue:c,updateValue:i,multiselect:a,path:l,size:s,previewProperties:d,title:u,disabled:A,forceFilter:y}=e,[h,I]=f.useState(!1),_=f.useCallback(()=>I(!0),[]),g=f.useCallback(()=>I(!1),[]),p=fe().getCollection(l);if(!p)throw Error(`Couldn't find the corresponding collection view for the path: ${l}`);const w=f.useCallback(F=>{i(F?hn(F):null)},[i]),k=f.useCallback(F=>{i(F.map(D=>hn(D)))},[i]),v=c?Array.isArray(c)?c.map(F=>F.id):c.id?[c.id]:[]:[],K=io({multiselect:a,path:l,collection:p,onMultipleEntitiesSelected:k,onSingleEntitySelected:w,selectedEntityIds:v,forceFilter:y}),m=f.useCallback(()=>{A||K.open()},[A,K]),C=!c||Array.isArray(c)&&c.length===0,B=()=>c instanceof je?n.jsx(nn,{onClick:A?void 0:m,size:ln(s),reference:c,onHover:h,disabled:!l,previewProperties:d}):n.jsx(Po,{onClick:A?void 0:m,size:ln(s),children:n.jsx(we,{title:"Value is not a reference.",error:"Click to edit"})}),P=()=>Array.isArray(c)?n.jsx(n.Fragment,{children:c.map((F,D)=>n.jsx("div",{className:"m-1 w-full",children:n.jsx(nn,{onClick:A?void 0:m,size:"tiny",reference:F,onHover:h,disabled:!l,previewProperties:d})},`preview_array_ref_${t}_${D}`))}):n.jsx(we,{error:"Data is not an array of references"});return p?n.jsxs("div",{className:"w-full",onMouseEnter:_,onMouseMove:_,onMouseLeave:g,children:[c&&!a&&B(),c&&a&&P(),C&&n.jsxs(te,{onClick:m,size:"small",variant:"outlined",color:"primary",children:["Edit ",u]})]}):n.jsx(we,{error:"The specified collection does not exist"})}function Ln(e){switch(e){case"xl":return 400;case"l":return 280;case"m":return 140;case"s":return 80;case"xs":return 54;default:throw Error("Missing mapping for collection size -> height")}}const r3=({justifyContent:e,scrollable:t,faded:c,fullHeight:i,children:a})=>n.jsx("div",{className:E("flex flex-col max-h-full w-full",{"items-start":c||t}),style:{justifyContent:e,height:i?"100%":void 0,overflow:t?"auto":void 0,WebkitMaskImage:c?"linear-gradient(to bottom, black 60%, transparent 100%)":void 0,maskImage:c?"linear-gradient(to bottom, black 60%, transparent 100%)":void 0},children:a}),bt=f.memo(function({children:t,actions:c,size:i,selected:a,disabled:l,disabledTooltip:s,saved:d,error:u,align:A,allowScroll:y,removePadding:h,fullHeight:I,onSelect:_,width:g,hideOverflow:b=!0,showExpandIcon:p=!0}){const[w,k]=er(),v=f.useRef(null);Do(v,()=>{a&&_&&_(void 0)},!!(a&&_));const[K,m]=f.useState(!1),C=f.useMemo(()=>Ln(i),[i]),[B,P]=f.useState(!1),[F,D]=f.useState(d),S=!l&&u;f.useEffect(()=>{d&&D(!0);const L=setTimeout(()=>{D(!1)},800);return()=>{clearTimeout(L)}},[d]);let T=0;if(!h)switch(i){case"l":case"xl":T=4;break;case"m":T=2;break;case"s":default:T=1;break}let N;switch(A){case"right":N="flex-end";break;case"center":N="center";break;case"left":default:N="flex-start"}const q=f.useCallback(()=>{if(!_)return;const L=v&&v?.current?.getBoundingClientRect();l?_(void 0):!a&&L&&_(L)},[v,_,a,l]),G=f.useCallback(L=>{q(),L.stopPropagation()},[q]);f.useEffect(()=>{if(k){const L=k.height>C;K!==L&&m(L)}},[k,K,C]);const V=!S&&a,oe=!l&&y&&K,O=!l&&!y&&K,H=f.useCallback(()=>P(!0),[]),Z=f.useCallback(()=>P(!1),[]);return n.jsxs("div",{ref:v,className:E("transition-colors duration-100 ease-in-out",`flex relative h-full rounded-md p-${T} border border-4 border-opacity-75`,B&&!l?"bg-gray-50 dark:bg-gray-900":"",d?"bg-gray-100 bg-opacity-75 dark:bg-gray-800 dark:bg-opacity-75":"",!V&&!F&&!S?"border-transparent":"",b?"overflow-hidden":"",V?"bg-gray-50 dark:bg-gray-900":"",V&&!F?"border-primary":"",F?"border-green-500 ":"",S?"border-red-500":""),style:{justifyContent:N,alignItems:l||!K?"center":void 0,width:g??"100%",textAlign:A},tabIndex:a||l?void 0:0,onFocus:G,onMouseEnter:H,onMouseMove:H,onMouseLeave:Z,children:[n.jsxs(ie,{children:[I&&!O&&t,(!I||O)&&n.jsx(r3,{fullHeight:I??!1,justifyContent:N,scrollable:oe??!1,faded:O,children:!I&&n.jsx("div",{ref:w,style:{display:"flex",width:"100%",justifyContent:N,height:I?"100%":void 0},children:t})})]}),c,l&&B&&s&&n.jsx("div",{className:"absolute top-1 right-1 text-xs",children:n.jsx(_e,{title:s,children:n.jsx(Ec,{size:"smallest",color:"disabled",className:"text-gray-500"})})})]})},(e,t)=>e.error===t.error&&e.value===t.value&&e.disabled===t.disabled&&e.saved===t.saved&&e.allowScroll===t.allowScroll&&e.align===t.align&&e.size===t.size&&e.disabledTooltip===t.disabledTooltip&&e.width===t.width&&e.showExpandIcon===t.showExpandIcon&&e.removePadding===t.removePadding&&e.fullHeight===t.fullHeight&&e.selected===t.selected);function t3(e){return e.dataType==="string"&&e.storage?!0:e.dataType==="array"?Array.isArray(e.of)?!1:e.of?.dataType==="string"&&e.of?.storage:!1}const c3=f.memo(function({propertyKey:t,customFieldValidator:c,value:i,property:a,align:l,width:s,height:d,path:u,entity:A,readonly:y,disabled:h}){const I=ne(),{onValueChange:_,size:g,selectedCell:b,select:p,setPopupCell:w}=F3(),k=b?.propertyKey===t&&b?.entity.path===A.path&&b?.entity.id===A.id,[v,K]=f.useState(i),m=f.useRef(i),[C,B]=f.useState(),[P,F]=f.useState(!1),D=f.useCallback(()=>{F(!0),setTimeout(()=>{F(!1)},100)},[]),S=!!a.Field,T=!!a.Preview,N=Cn(a),q=typeof a.disabled=="object"?a.disabled.disabledMessage:void 0,G=y||h||!!a.disabled,V=f.useMemo(()=>so({property:a,entityId:A.id,customFieldValidator:c,name:t}),[A.id,a,t]);f.useEffect(()=>{de(i,m.current)||(B(void 0),K(i),m.current=i,D())},[D,i]);const oe=Y=>{F(!1),V.validate(Y).then(()=>{B(void 0),_&&_({value:Y,propertyKey:t,setError:B,onValueUpdated:D,entity:A,fullPath:u,context:I})}).catch(x=>{B(x)})};f.useEffect(()=>{V.validate(v).then(()=>B(void 0)).catch(Y=>{B(Y)})},[v,V]);const O=Y=>{let x;Y===void 0?x=null:x=Y,m.current=x,K(x),oe(x)};Te({property:a,value:v,setValue:O});const H=f.useCallback(Y=>{p(Y?{width:s,height:d,entity:A,cellRect:Y,propertyKey:t}:void 0)},[A,d,t,p,s]),Z=Y=>{w&&w(Y?{width:s,height:d,entity:A,cellRect:Y,propertyKey:t}:void 0)};let L,W=!1,Q=!1,X=!0,ee=!1,U=!1,re=!0;const J=!G&&C;if(y||N)return n.jsx(bt,{size:g,width:s,saved:P,value:v,align:l??"left",fullHeight:!1,disabledTooltip:q??(N?"Read only":void 0),disabled:!0,children:n.jsx(Be,{width:s,height:Ln(g),propertyKey:t,property:a,entity:A,value:i,size:ln(g)})},`${t}_${A.path}_${A.id}`);if(!S&&(!T||k)){if(t3(a))L=n.jsx(e3,{error:C,disabled:G,focused:k,selected:k,openPopup:w?Z:void 0,property:a,entity:A,path:u,value:v,previewSize:ln(g),updateValue:O,propertyKey:t}),re=!1,Q=!0,U=!0,ee=!0;else if(k&&a.dataType==="number"){const x=a;x.enumValues?(L=n.jsx(It,{name:t,multiple:!1,disabled:G,focused:k,valueType:"number",small:ln(g)!=="medium",enumValues:x.enumValues,error:C,internalValue:v,updateValue:O}),U=!0):(L=n.jsx(jz,{align:l,error:C,focused:k,disabled:G,value:v,updateValue:O}),W=!0)}else if(k&&a.dataType==="string"){const x=a;if(x.enumValues)L=n.jsx(It,{name:t,multiple:!1,focused:k,disabled:G,valueType:"string",small:ln(g)!=="medium",enumValues:x.enumValues,error:C,internalValue:v,updateValue:O}),U=!0;else if(!x.storage){const ge=!!x.multiline||!!x.markdown;L=n.jsx($z,{error:C,disabled:G,multiline:ge,focused:k,value:v,updateValue:O}),W=!0}}else if(a.dataType==="boolean")L=n.jsx(qz,{error:C,disabled:G,focused:k,internalValue:v,updateValue:O});else if(a.dataType==="date")L=n.jsx(Jz,{name:t,error:C,disabled:G,mode:a.mode,focused:k,internalValue:v,updateValue:O}),U=!0,X=!1,W=!1;else if(a.dataType==="reference")typeof a.path=="string"&&(L=n.jsx(Hi,{name:t,internalValue:v,updateValue:O,disabled:G,size:g,path:a.path,multiselect:!1,previewProperties:a.previewProperties,title:a.name,forceFilter:a.forceFilter})),W=!1;else if(a.dataType==="array"){const x=a;if(!x.of&&!x.oneOf)throw Error(`You need to specify an 'of' or 'oneOf' prop (or specify a custom field) in your array property ${t}`);x.of&&!Array.isArray(x.of)&&(x.of.dataType==="string"||x.of.dataType==="number"?k&&x.of.enumValues&&(L=n.jsx(It,{name:t,multiple:!0,disabled:G,focused:k,small:ln(g)!=="medium",valueType:x.of.dataType,enumValues:x.of.enumValues,error:C,internalValue:v,updateValue:O}),W=!0,U=!0,X=!1):x.of.dataType==="reference"&&(typeof x.of.key=="string"&&(L=n.jsx(Hi,{name:t,disabled:G,internalValue:v,updateValue:O,size:g,multiselect:!0,path:x.of.key,previewProperties:x.of.previewProperties,title:x.of.name,forceFilter:x.of.forceFilter})),W=!1))}}return L||(W=!1,Q=k&&!L&&!G&&!N,L=n.jsx(Be,{width:s,height:d,entity:A,propertyKey:t,value:v,property:a,size:ln(g)})),n.jsx(bt,{size:g,width:s,onSelect:H,selected:k,disabled:G||N,disabledTooltip:q??"Disabled",removePadding:ee,fullHeight:U,saved:P,error:C,align:l,allowScroll:W,showExpandIcon:Q,value:v,hideOverflow:X,actions:re&&n.jsx(zi,{showError:J,disabled:G,showExpandIcon:Q,selected:k,openPopup:G?void 0:Z}),children:L},`cell_${t}_${A.path}_${A.id}`)},i3);function i3(e,t){return e.height===t.height&&e.propertyKey===t.propertyKey&&e.align===t.align&&e.width===t.width&&de(e.property,t.property)&&de(e.value,t.value)&&de(e.entity.values,t.entity.values)}function fo({text:e,...t}){return n.jsx("div",{className:"flex w-full h-screen max-h-full max-w-full bg-gray-50 dark:bg-gray-900 gap-4",children:n.jsxs("div",{className:"m-auto flex flex-col gap-2 items-center",children:[n.jsx(Gn,{...t}),e&&n.jsx(j,{color:"secondary",variant:"caption",className:"text-center",children:e})]})})}function Ui({trigger:e,children:t,open:c,onOpenChange:i,side:a,sideOffset:l=5,align:s,alignOffset:d,arrowPadding:u,sticky:A,hideWhenDetached:y,avoidCollisions:h,enabled:I=!0}){return Dn("Popover",a3),I?n.jsxs(Xn.Root,{open:c,onOpenChange:i,children:[n.jsx(Xn.Trigger,{asChild:!0,children:e}),n.jsx(Xn.Portal,{children:n.jsxs(Xn.Content,{className:E(Ge,"PopoverContent shadow z-50"),side:a,sideOffset:l,align:s,alignOffset:d,arrowPadding:u,sticky:A,hideWhenDetached:y,avoidCollisions:h,children:[t,n.jsx(Xn.Arrow,{className:"fill-white dark:fill-gray-950"})]})})]}):n.jsx(n.Fragment,{children:e})}const a3=`
683
683
 
684
684
  .PopoverContent {
685
685
  animation-duration: 400ms;
@@ -743,10 +743,10 @@
743
743
  transform: translateX(0);
744
744
  }
745
745
  }
746
- `,a3=e=>{switch(e){case"primary":return"bg-primary";case"secondary":return"bg-secondary";case"error":return"bg-red-500";default:return"bg-gray-300 dark:bg-gray-700"}},Ui=({color:e="primary",invisible:t=!1,children:c})=>n.jsxs("div",{className:"relative inline-block",children:[c,n.jsx("span",{className:`absolute top-0 right-0 transform translate-x-1/2 -translate-y-1/2 rounded-full
747
- ${a3(e)}
746
+ `,l3=e=>{switch(e){case"primary":return"bg-primary";case"secondary":return"bg-secondary";case"error":return"bg-red-500";default:return"bg-gray-300 dark:bg-gray-700"}},Yi=({color:e="primary",invisible:t=!1,children:c})=>n.jsxs("div",{className:"relative inline-block",children:[c,n.jsx("span",{className:`absolute top-0 right-0 transform translate-x-1/2 -translate-y-1/2 rounded-full
747
+ ${l3(e)}
748
748
  transition-all duration-200 ease-out
749
- ${t?"w-0 h-0":"w-2 h-2"}`})]}),l3=f.memo(function({resizeHandleRef:t,columnIndex:c,isResizingIndex:i,sort:l,onColumnSort:a,onFilterUpdate:s,filter:d,column:u,onClickResizeColumn:A,createFilterField:_}){const[g,y]=f.useState(!1),[h,I]=f.useState(!1),b=f.useCallback(m=>{I(!0)},[]),p=f.useCallback((m,v)=>{s(u,m),v!==void 0&&I(v)},[u,s]),w=i===c,K=!(i!==c&&i>0)&&(g||w);return n.jsx(se,{children:n.jsxs("div",{className:E("flex py-0 px-3 h-full text-xs uppercase font-semibold relative select-none items-center bg-gray-50 dark:bg-gray-900","text-gray-600 hover:text-gray-800 dark:text-gray-400 dark:hover:text-gray-200 ","hover:bg-gray-100 dark:hover:bg-gray-800 hover:bg-opacity-50 dark:hover:bg-opacity-50",u.frozen?"sticky left-0 z-10":"relative z-0"),style:{left:u.frozen?0:void 0,minWidth:u.width,maxWidth:u.width},onMouseEnter:()=>y(!0),onMouseMove:()=>y(!0),onMouseLeave:()=>y(!1),children:[n.jsx("div",{className:"overflow-hidden flex-grow",children:n.jsxs("div",{className:`flex items-center justify-${u.headerAlign} flex-row`,children:[u.icon&&u.icon(g||h),n.jsx("div",{className:"truncate -webkit-box w-full mx-1 overflow-hidden",style:{WebkitBoxOrient:"vertical",WebkitLineClamp:2,justifyContent:u.align},children:u.title})]})}),u.sortable&&(l||K||h)&&n.jsx(Ui,{color:"secondary",invisible:!l,children:n.jsxs(ee,{size:"small",className:g||h?"bg-white dark:bg-gray-950":void 0,onClick:()=>{a(u.key)},children:[!l&&n.jsx(po,{}),l==="asc"&&n.jsx(po,{}),l==="desc"&&n.jsx(po,{className:"rotate-180"})]})}),u.filter&&_&&n.jsx("div",{children:n.jsx(Ui,{color:"secondary",invisible:!d,children:n.jsx(Hi,{open:h,onOpenChange:I,trigger:n.jsx(ee,{className:g||h?"bg-white dark:bg-gray-950":void 0,size:"small",onClick:b,children:n.jsx(eo,{})}),children:u.filter&&n.jsx(s3,{column:u,filter:d,onHover:g,onFilterUpdate:p,createFilterField:_,popupOpen:h,setPopupOpen:I})})})}),u.resizable&&n.jsx("div",{ref:t,className:E("absolute h-full w-[6px] top-0 right-0 cursor-col-resize",K&&"bg-gray-300 dark:bg-gray-700"),onMouseDown:A?()=>A(c,u):void 0})]})})},de);function s3({column:e,onFilterUpdate:t,filter:c,onHover:i,createFilterField:l,popupOpen:a,setPopupOpen:s}){const d=e.key,[u,A]=f.useState(c);if(f.useEffect(()=>{A(c)},[c]),!e.filter)return null;const _=()=>{t(u,!1)},g=I=>{t(void 0,!1)},y=!!c,h=l({id:d,filterValue:u,setFilterValue:A,column:e,popupOpen:a,setPopupOpen:s});return h?n.jsxs("div",{className:E("text-gray-900 dark:text-white"),children:[n.jsx("div",{className:E(ue,"py-4 px-6 text-xs font-semibold uppercase border-b"),children:e.title??d}),h&&n.jsx("div",{className:"m-4",children:h}),n.jsxs("div",{className:"flex justify-end m-4",children:[n.jsx(te,{className:"mr-4",disabled:!y,variant:"text",color:"primary",type:"reset","aria-label":"filter clear",onClick:g,children:"Clear"}),n.jsx(te,{variant:"outlined",color:"primary",onClick:_,children:"Filter"})]})]}):null}const d3=({columns:e,currentSort:t,onColumnSort:c,onFilterUpdate:i,sortByProperty:l,filter:a,onColumnResize:s,onColumnResizeEnd:d,createFilterField:u})=>{const A=e.map(()=>f.createRef()),[_,g]=f.useState(-1),y=f.useCallback((m,v,S)=>{const B=e[m],P=100,F=800,D=v>F?F:v<P?P:v,C={width:D,key:B.key,column:{...B,width:D}};S?d(C):s(C)},[e,s,d]),h=f.useCallback(m=>{if(_>=0){const v=A[_].current?.parentElement?.getBoundingClientRect().left;return v?m.clientX-v:void 0}},[A,_]),I=f.useCallback(m=>{document.body.style.cursor=m?"col-resize":"auto"},[]),b=f.useCallback(m=>{m.stopPropagation(),m.preventDefault();const v=h(m);v&&y(_,v,!1)},[y,h,_]),p=f.useCallback(m=>{m.stopPropagation(),m.preventDefault();const v=h(m);v&&y(_,v,!0),g(-1),I(!1)},[y,h,_,I]),w=f.useCallback(()=>{document.removeEventListener("mousemove",b),document.removeEventListener("mouseup",p)},[b,p]),k=f.useCallback(()=>{document.addEventListener("mousemove",b),document.addEventListener("mouseup",p)},[b,p]);f.useEffect(()=>(_>=0?k():w(),()=>{w()}),[k,_,w]);const K=f.useCallback(m=>{g(m),I(!0)},[I]);return n.jsx("div",{className:E(ue,"z-20 sticky min-w-full flex w-fit flex-row top-0 left-0 h-12 border-b bg-gray-50 dark:bg-gray-900"),children:e.map((m,v)=>{const S=e[v],B=S&&a&&a[S.key]?a[S.key]:void 0;return n.jsx(se,{children:n.jsx(l3,{resizeHandleRef:A[v],columnIndex:v,isResizingIndex:_,onFilterUpdate:i,filter:B,sort:l===S.key?t:void 0,onColumnSort:c,onClickResizeColumn:K,column:S,createFilterField:u})},"header_"+S.key)})})},u3=f.memo(function({rowData:t,rowIndex:c,children:i,onRowClick:l,size:a,style:s,hoverRow:d,rowClassName:u}){const A=f.useCallback(_=>l?l({rowData:t,rowIndex:c,event:_}):void 0,[l,t,c]);return n.jsx("div",{className:E("flex min-w-full text-sm border-b border-gray-200 dark:border-gray-800 border-opacity-40 dark:border-opacity-40",u?u(t):"",{"hover:bg-opacity-95":d,"cursor-pointer":l}),onClick:A,style:{...s,height:Ln(a),width:"fit-content"},children:i})},de),f3=f.memo(function(t){return t.rowData&&t.cellRenderer({cellData:t.cellData,rowData:t.rowData,rowIndex:t.rowIndex,isScrolling:!1,column:t.column,columns:t.columns,columnIndex:t.columnIndex,width:t.column.width})},(e,t)=>de(e,t)),Ho=f.createContext({});Ho.displayName="VirtualListContext";const A3=f.forwardRef(({children:e,...t},c)=>n.jsx(Ho.Consumer,{children:i=>{const l=i.customView;return n.jsxs(n.Fragment,{children:[n.jsx("div",{id:"virtual-table",style:{position:"relative",height:"100%"},children:n.jsxs("div",{ref:c,...t,style:{...t?.style,minHeight:"100%",position:"relative"},children:[n.jsx(d3,{...i}),!l&&e]})}),l&&n.jsx("div",{style:{position:"sticky",top:"56px",flexGrow:1,height:"calc(100% - 56px)",marginTop:"calc(56px - 100vh)",left:0},children:l})]})}})),Yi=f.memo(function({data:t,onResetPagination:c,onEndReached:i,size:l="m",columns:a,onRowClick:s,onColumnResize:d,filter:u,checkFilterCombination:A,onFilterUpdate:_,sortBy:g,error:y,emptyMessage:h,onSortByUpdate:I,loading:b,cellRenderer:p,hoverRow:w,createFilterField:k,rowClassName:K,className:m,endAdornment:v}){const S=g?g[0]:void 0,B=g?g[1]:void 0,[P,F]=f.useState(a),D=f.useRef(null),C=f.useRef(0);f.useEffect(()=>{F(a)},[a]);const[N,M]=nr(),H=f.useCallback(J=>{F(P.map(x=>x.key===J.column.key?J.column:x))},[P]),Z=f.useCallback(J=>{F(P.map(x=>x.key===J.column.key?J.column:x)),d&&d(J)},[P,d]),O=f.useRef();f.useEffect(()=>{O.current=u},[u]);const oe=f.useCallback(()=>{C.current=0,D.current&&D.current.scrollTo(D.current?.scrollLeft,0)},[]),U=f.useCallback(J=>{const x=S===J&&B==="desc",Y=S===J&&B==="asc"?"desc":x?void 0:"asc",Be=x?void 0:J,Oe=O.current,Ue=Y&&Be?[Be,Y]:void 0;Oe&&A&&!A(Oe,Ue)&&_&&_(void 0),c&&c(),I&&I(Ue),oe()},[A,B,_,c,I,oe,S]),L=f.useCallback(()=>{C.current=0,I&&I(void 0)},[I]),X=Math.max((t?.length??0)*Ln(l)-M.height,0),W=f.useCallback(J=>{i&&(t?.length??0)>0&&J>C.current+500&&(C.current=J,i())},[t,i]),V=f.useCallback(({scrollOffset:J,scrollUpdateWasRequested:x})=>{!x&&J>=X-500&&W(J)},[X,W]),Q=f.useCallback((J,x)=>{C.current=0;const ie=O.current;let Y=ie?{...ie}:{};x?Y[J.key]=x:delete Y[J.key],!A||A(Y,S&&B?[S,B]:void 0)||(Y=x?{[J.key]:x}:{}),_&&_(Y),J.key!==S&&L()},[A,B,_,L,S]),q=f.useCallback(()=>n.jsxs("div",{className:"h-full flex flex-col items-center justify-center sticky left-0",children:[n.jsx(j,{variant:"h6",children:"Error fetching data from the data source"}),y?.message&&n.jsx(co,{className:"px-4 break-all",source:y.message})]}),[y?.message]),R=f.useCallback(()=>b?n.jsx(uo,{}):n.jsxs("div",{className:"flex overflow-auto items-center justify-center p-2 gap-2 h-full",children:[n.jsx(fc,{}),n.jsx(j,{children:h})]}),[h,b]),$=!b&&(t?.length??0)===0,ne=y?q():$?R():void 0;return n.jsx("div",{ref:N,className:E("h-full w-full",m),children:n.jsx(Ho.Provider,{value:{data:t,size:l,cellRenderer:p,columns:P,currentSort:B,onRowClick:s,customView:ne,onColumnResize:H,onColumnResizeEnd:Z,filter:O.current,onColumnSort:U,onFilterUpdate:Q,sortByProperty:S,hoverRow:w??!1,createFilterField:k,rowClassName:K,endAdornment:v},children:n.jsx(_3,{outerRef:D,width:M.width,height:M.height,itemCount:(t?.length??0)+(v?1:0),onScroll:V,itemSize:Ln(l)},l)})})},de);function _3({outerRef:e,width:t,height:c,itemCount:i,onScroll:l,itemSize:a}){const s=f.useCallback(({index:d,style:u})=>n.jsx(Ho.Consumer,{children:({onRowClick:A,data:_,columns:g,size:y="m",cellRenderer:h,hoverRow:I,rowClassName:b,endAdornment:p})=>{if(p&&d===(_??[]).length)return n.jsx("div",{style:{...u,height:"auto",position:"sticky",bottom:0,zIndex:1},children:p});const w=_&&_[d];return n.jsx(u3,{rowData:w,rowIndex:d,onRowClick:A,columns:g,hoverRow:I,rowClassName:b,style:{...u,top:`calc(${u.top}px + 48px)`},size:y,children:g.map((k,K)=>{const m=w&&w[k.key];return n.jsx(f3,{dataKey:k.key,cellRenderer:h,column:k,columns:g,rowData:w,cellData:m,rowIndex:d,columnIndex:K},`cell_${k.key}`)})},`row_${d}`)}}),[]);return n.jsx(Pa.FixedSizeList,{outerRef:e,innerElementType:A3,width:t,height:c,overscanCount:4,itemCount:i,onScroll:l,itemSize:a,children:s})}function Qn({children:e,trigger:t,open:c,defaultOpen:i,onOpenChange:l}){return n.jsxs(Jn.Root,{open:c,defaultOpen:i,onOpenChange:l,children:[n.jsx(Jn.Trigger,{asChild:!0,children:t}),n.jsx(Jn.Portal,{children:n.jsx(Jn.Content,{className:E(He,"shadow py-2 z-30"),children:e})})]})}function ke({children:e,dense:t,onClick:c}){return n.jsx(Jn.Item,{className:E(ge,c&&"cursor-pointer","rounded-md px-4 py-2 text-sm font-medium text-gray-700 dark:text-gray-300 hover:bg-gray-100 dark:hover:bg-gray-900 flex items-center gap-4"),onClick:c,children:e})}function pt({entity:e,width:t,frozen:c,isSelected:i,selectionEnabled:l,size:a,toggleEntitySelection:s,onCopyClicked:d,onEditClicked:u,onDeleteClicked:A,hideId:_}){const g=Ge(),y=!!u,h=!!d,I=!!A,b=f.useCallback(K=>{s&&s(e)},[e,s]),p=f.useCallback(K=>{K.stopPropagation(),A&&A(e)},[e,A]),w=f.useCallback(K=>{K.stopPropagation(),d&&d(e)},[e,d]),k=f.useCallback(K=>{K.stopPropagation(),s&&s(e)},[e,s]);return n.jsxs("div",{onClick:k,className:E("h-full flex items-center justify-center flex-col bg-gray-50 dark:bg-gray-900 bg-opacity-90 dark:bg-opacity-90 z-10",c?"sticky left-0":""),style:{width:t,position:c?"sticky":"initial",left:c?0:"initial",contain:"strict"},children:[(y||I||l)&&n.jsxs("div",{className:"w-34 flex justify-center",children:[y&&n.jsx(ye,{title:`Edit ${e.id}`,children:n.jsx(ee,{onClick:K=>{K.stopPropagation(),u&&u(e)},size:g?"medium":"small",children:n.jsx(ko,{})})}),l&&n.jsx(ye,{title:`Select ${e.id}`,children:n.jsx(Lr,{size:g?"medium":"small",checked:i,onCheckedChange:b})}),(h||I)&&n.jsxs(Qn,{trigger:n.jsx(ee,{size:g?"medium":"small",children:n.jsx(vr,{})}),children:[I&&n.jsxs(ke,{onClick:p,children:[n.jsx(wo,{}),"Delete"]}),h&&n.jsxs(ke,{onClick:w,children:[n.jsx(kc,{}),"Copy"]})]})]}),!_&&a!=="xs"&&n.jsx("div",{className:"w-[138px] text-center overflow-hidden truncate",children:e?n.jsxs(j,{className:"font-mono",variant:"caption",color:"secondary",children:[" ",e.id," "]}):n.jsx(Ve,{})})]})}function y3(e){const t=Ge(),c=!e.forceFilter&&e.filterIsSet&&e.clearFilter&&n.jsxs(te,{variant:"outlined",className:"h-fit-content","aria-label":"filter clear",onClick:e.clearFilter,size:"small",children:[n.jsx(mc,{}),"Clear filter"]}),i=n.jsx(xe,{value:e.size,className:"w-16 h-10",size:"small",onValueChange:l=>e.onSizeChanged(l),renderValue:l=>n.jsx("div",{className:"font-medium",children:l.toUpperCase()}),children:["xs","s","m","l","xl"].map(l=>n.jsx(Re,{value:l,className:"w-12 font-medium text-center",children:l.toUpperCase()},l))});return n.jsxs("div",{className:E(ue,"no-scrollbar min-h-[56px] overflow-x-auto px-4 bg-gray-50 dark:bg-gray-900 border-b flex flex-row justify-between items-center w-full"),children:[n.jsxs("div",{className:"flex items-center gap-8 md:gap-4 ",children:[e.title&&n.jsx("div",{className:"hidden lg:block",children:e.title}),i,e.actionsStart,c]}),n.jsxs("div",{className:"flex items-center gap-4 md:gap-2",children:[t&&n.jsx("div",{className:"w-[22px]",children:e.loading&&n.jsx(Gn,{size:"small"})}),e.onTextSearch&&n.jsx(Qt,{onTextSearch:e.onTextSearch,expandable:!0},"search-bar"),e.actions]})]})}const $i={"==":"==","!=":"!=",">":">","<":"<",">=":">=","<=":"<=",in:"In","not-in":"Not in","array-contains":"Contains","array-contains-any":"Contains Any"},wt=["array-contains-any","in","not-in"];function h3({name:e,value:t,setValue:c,isArray:i,path:l,title:a,previewProperties:s,setPopupOpen:d}){const u=i?["array-contains"]:["==","!=",">","<",">=","<="],[A,_]=f.useState(!1);i?u.push("array-contains-any"):u.push("in","not-in");const[g,y]=t||[u[0],void 0],[h,I]=f.useState(g),[b,p]=f.useState(y),w=b?Array.isArray(b)?b.map(C=>C instanceof Je?C.id:null).filter(Boolean):[b.id]:[];function k(C,N){const M=wt.includes(h),H=wt.includes(C);let Z=N;M!==H&&(Z=H?Z instanceof Je?[Z]:[]:void 0),I(C),p(Z);const O=Z!==null&&Array.isArray(Z)?Z.length>0:Z!==void 0;c(C&&O?[C,Z]:void 0)}const K=Ae(),m=f.useMemo(()=>l?K.getCollection(l):void 0,[l]),v=C=>{k(h,In(C))},S=C=>{k(h,C.map(N=>In(N)))},B=wt.includes(h),P=xn({multiselect:B,path:l,collection:m,onSingleEntitySelected:v,onMultipleEntitiesSelected:S,selectedEntityIds:w,onClose:()=>{d(!0)}}),F=()=>{d(!1),P.open()},D=C=>n.jsx("div",{className:"mb-0.5",onMouseEnter:()=>_(!0),onMouseMove:()=>_(!0),onMouseLeave:()=>_(!1),children:n.jsx(on,{disabled:!l,previewProperties:s,size:"medium",onClick:F,reference:C,onHover:A,allowEntityNavigation:!1})});return n.jsxs("div",{className:"flex w-[440px] flex-row",children:[n.jsx("div",{className:"w-[120px]",children:n.jsx(xe,{value:h,onValueChange:C=>{k(C,b)},renderValue:C=>$i[C],children:u.map(C=>n.jsx(Re,{value:C,children:$i[C]},C))})}),n.jsxs("div",{className:"flex-grow ml-2 h-full",children:[b&&Array.isArray(b)&&n.jsx("div",{children:b.map((C,N)=>D(C))}),b&&!Array.isArray(b)&&n.jsx("div",{children:D(b)}),(!b||Array.isArray(b)&&b.length===0)&&n.jsx(te,{onClick:F,className:"h-full",children:B?"Select references":"Select reference"})]})]})}const ji={"==":"==","!=":"!=",">":">","<":"<",">=":">=","<=":"<=",in:"In","not-in":"Not in","array-contains":"Contains","array-contains-any":"Any"},kt=["array-contains-any","in","not-in"];function g3({name:e,value:t,setValue:c,dataType:i,isArray:l,enumValues:a,title:s}){const d=l?["array-contains"]:["==","!=",">","<",">=","<="];a&&(l?d.push("array-contains-any"):d.push("in","not-in"));const[u,A]=t||[d[0],void 0],[_,g]=f.useState(u),[y,h]=f.useState(A);function I(p,w){let k=w;const K=kt.includes(_),m=kt.includes(p);K!==m&&(k=m?typeof w=="string"||typeof w=="number"?[w]:[]:""),typeof k=="number"&&isNaN(k)&&(k=void 0),g(p),h(k);const v=k!==null&&Array.isArray(k)?k.length>0:k!==void 0;c(p&&v?[p,k]:void 0)}const b=kt.includes(_);return n.jsxs("div",{className:"flex w-[440px] items-center",children:[n.jsx("div",{className:"w-[80px]",children:n.jsx(xe,{value:_,position:"item-aligned",onValueChange:p=>{I(p,y)},renderValue:p=>ji[p],children:d.map(p=>n.jsx(Re,{value:p,children:ji[p]},p))})}),n.jsxs("div",{className:"flex-grow ml-2",children:[!a&&n.jsx(An,{type:i==="number"?"number":void 0,value:y!==void 0?String(y):"",onChange:p=>{const w=i==="number"?parseFloat(p.target.value):p.target.value;I(_,w)},endAdornment:y&&n.jsx(ee,{className:"absolute right-3 top-2",onClick:p=>I(_,void 0),children:n.jsx(an,{})})}),a&&n.jsx(xe,{position:"item-aligned",value:y!==void 0?Array.isArray(y)?y.map(p=>String(p)):String(y):l?[]:"",onValueChange:p=>{I(_,i==="number"?parseInt(p):p)},multiple:b,endAdornment:y&&n.jsx(ee,{className:"absolute right-3 top-2",onClick:p=>I(_,void 0),children:n.jsx(an,{})}),renderValue:p=>n.jsx(Ee,{enumKey:p,enumValues:a,size:"small"},`select_value_${e}_${p}`),children:a.map(p=>n.jsx(Re,{value:String(p.id),children:n.jsx(Ee,{enumKey:String(p.id),enumValues:a,size:"small"})},`select_value_${e}_${p.id}`))})]})]})}function I3({name:e,title:t,value:c,setValue:i}){function l(d){i(d!==void 0?["==",d]:void 0)}const a=c&&c[1],s=!!c;return n.jsx("div",{className:"w-[200px]",children:n.jsx(On,{value:a,allowIndeterminate:!0,onValueChange:d=>l(d===null?void 0:d),label:s?a?`${t} is true`:`${t} is false`:"No filter"})})}const b3="hover:bg-gray-200 hover:bg-opacity-75 dark:hover:bg-gray-700 dark:hover:bg-opacity-75",p3="inline-flex items-center justify-center p-2 text-sm font-medium focus:outline-none transition-colors ease-in-out duration-150",w3="dark:text-gray-100 text-gray-700 visited:text-gray-700 dark:visited:text-gray-100",k3={medium:"w-10 !h-10 min-w-10 min-h-10",small:"w-8 !h-8 min-w-8 min-h-8",large:"w-12 !h-12 min-w-12 min-h-12"},m3={circular:"rounded-full",square:"rounded-md"},v3=({children:e,className:t,size:c="medium",variant:i="ghost",shape:l="circular",disabled:a,toggled:s,component:d,...u},A)=>{const _=i==="ghost"?"bg-transparent":"bg-gray-50 dark:bg-gray-950",g=d||"button";return n.jsx(g,{type:"button",ref:A,...u,className:E(ge,a?"opacity-50 pointer-events-none":"cursor-pointer",s?"outline outline-2 outline-primary":"",w3,_,p3,b3,m3[l],k3[c],t),children:e})},ee=f.forwardRef(v3),mt=ce.forwardRef(function(t,c){const{shrink:i,className:l,...a}=t,s={root:"origin-left transition-transform block whitespace-nowrap overflow-hidden text-overflow-ellipsis max-w-full",shrink:"transform translate-y-[2px] scale-75 translate-x-[12px]",expanded:"translate-x-[16px] top-0 transform translate-y-[16px] scale-100"},d=E(s.root,{[s.shrink]:i,[s.expanded]:!i},l);return n.jsx("label",{"data-shrink":i,ref:c,className:d,...a})}),Vn=({value:e,label:t,onChange:c,disabled:i,clearable:l,mode:a="date",error:s,size:d,className:u,style:A,inputClassName:_,preventOpenOnFocus:g,invisible:y})=>{const h=f.useRef(null),{locale:I}=re(),b=f.useRef(null),[p,w]=f.useState(document.activeElement===b.current),k=e!=null,K=e!=null&&!(e instanceof Date);En("DateTimeField",K3);const m=v=>{v.preventDefault(),c(null)};return n.jsxs(n.Fragment,{children:[n.jsxs("div",{className:E("rounded-md relative max-w-full",!y&&qe,i?en:ze,{"min-h-[48px]":d==="small","min-h-[64px]":d==="medium"},u),style:A,children:[t&&n.jsx(mt,{className:E("absolute top-1 pointer-events-none",s?"text-red-500 dark:text-red-600":p?"text-primary":"text-text-secondary dark:text-text-secondary-dark",i?"opacity-50":""),shrink:k||p,children:t}),n.jsx(Ro,{ref:h,locale:I,selected:(K?null:e)??null,onChange:c,disabled:!1,popperClassName:E(He,"my-4 shadow"),onClick:v=>v.stopPropagation(),onFocus:()=>w(!0),onBlur:()=>w(!1),showTimeSelect:a==="date_time",timeFormat:"HH:mm",timeIntervals:15,timeCaption:"time",dateFormat:a==="date_time"?"Pp":"P",preventOpenOnFocus:!0,className:E("w-full outline-none bg-transparent leading-normal text-base px-3",l?"pr-14":"pr-12","rounded-md",!y&&ge,d==="small"?"min-h-[48px]":"min-h-[64px]",t?"pt-[28px] pb-2":"py-2",_,i&&"border border-transparent outline-none opacity-50 dark:opacity-50 text-gray-600 dark:text-gray-500")}),n.jsx(ee,{onClick:()=>h.current?.setOpen(!0),className:"absolute right-3 top-1/2 transform -translate-y-1/2 !text-gray-500 ",children:n.jsx(Ac,{color:"disabled"})}),l&&e&&n.jsx(ee,{onClick:m,className:"absolute right-14 top-1/2 transform -translate-y-1/2 text-gray-400 ",children:n.jsx(an,{})})]}),K&&n.jsx(pe,{title:"Invalid date value for this field",error:`The provided value is: ${JSON.stringify(e)}`})]})},K3=`
749
+ ${t?"w-0 h-0":"w-2 h-2"}`})]}),s3=f.memo(function({resizeHandleRef:t,columnIndex:c,isResizingIndex:i,sort:a,onColumnSort:l,onFilterUpdate:s,filter:d,column:u,onClickResizeColumn:A,createFilterField:y}){const[h,I]=f.useState(!1),[_,g]=f.useState(!1),b=f.useCallback(K=>{g(!0)},[]),p=f.useCallback((K,m)=>{s(u,K),m!==void 0&&g(m)},[u,s]),w=i===c,v=!(i!==c&&i>0)&&(h||w);return n.jsx(ie,{children:n.jsxs("div",{className:E("flex py-0 px-3 h-full text-xs uppercase font-semibold relative select-none items-center bg-gray-50 dark:bg-gray-900","text-gray-600 hover:text-gray-800 dark:text-gray-400 dark:hover:text-gray-200 ","hover:bg-gray-100 dark:hover:bg-gray-800 hover:bg-opacity-50 dark:hover:bg-opacity-50",u.frozen?"sticky left-0 z-10":"relative z-0"),style:{left:u.frozen?0:void 0,minWidth:u.width,maxWidth:u.width},onMouseEnter:()=>I(!0),onMouseMove:()=>I(!0),onMouseLeave:()=>I(!1),children:[n.jsx("div",{className:"overflow-hidden flex-grow",children:n.jsxs("div",{className:`flex items-center justify-${u.headerAlign} flex-row`,children:[u.icon&&u.icon(h||_),n.jsx("div",{className:"truncate -webkit-box w-full mx-1 overflow-hidden",style:{WebkitBoxOrient:"vertical",WebkitLineClamp:2,justifyContent:u.align},children:u.title})]})}),u.sortable&&(a||v||_)&&n.jsx(Yi,{color:"secondary",invisible:!a,children:n.jsxs(R,{size:"small",className:h||_?"bg-white dark:bg-gray-950":void 0,onClick:()=>{l(u.key)},children:[!a&&n.jsx(So,{}),a==="asc"&&n.jsx(So,{}),a==="desc"&&n.jsx(So,{className:"rotate-180"})]})}),u.filter&&y&&n.jsx("div",{children:n.jsx(Yi,{color:"secondary",invisible:!d,children:n.jsx(Ui,{open:_,onOpenChange:g,trigger:n.jsx(R,{className:h||_?"bg-white dark:bg-gray-950":void 0,size:"small",onClick:b,children:n.jsx(oo,{})}),children:u.filter&&n.jsx(d3,{column:u,filter:d,onHover:h,onFilterUpdate:p,createFilterField:y,popupOpen:_,setPopupOpen:g})})})}),u.resizable&&n.jsx("div",{ref:t,className:E("absolute h-full w-[6px] top-0 right-0 cursor-col-resize",v&&"bg-gray-300 dark:bg-gray-700"),onMouseDown:A?()=>A(c,u):void 0})]})})},de);function d3({column:e,onFilterUpdate:t,filter:c,onHover:i,createFilterField:a,popupOpen:l,setPopupOpen:s}){const d=e.key,[u,A]=f.useState(c);if(f.useEffect(()=>{A(c)},[c]),!e.filter)return null;const y=()=>{t(u,!1)},h=g=>{t(void 0,!1)},I=!!c,_=a({id:d,filterValue:u,setFilterValue:A,column:e,popupOpen:l,setPopupOpen:s});return _?n.jsxs("div",{className:E("text-gray-900 dark:text-white"),children:[n.jsx("div",{className:E(ue,"py-4 px-6 text-xs font-semibold uppercase border-b"),children:e.title??d}),_&&n.jsx("div",{className:"m-4",children:_}),n.jsxs("div",{className:"flex justify-end m-4",children:[n.jsx(te,{className:"mr-4",disabled:!I,variant:"text",color:"primary",type:"reset","aria-label":"filter clear",onClick:h,children:"Clear"}),n.jsx(te,{variant:"outlined",color:"primary",onClick:y,children:"Filter"})]})]}):null}const u3=({columns:e,currentSort:t,onColumnSort:c,onFilterUpdate:i,sortByProperty:a,filter:l,onColumnResize:s,onColumnResizeEnd:d,createFilterField:u})=>{const A=e.map(()=>f.createRef()),[y,h]=f.useState(-1),I=f.useCallback((K,m,C)=>{const B=e[K],P=100,F=800,D=m>F?F:m<P?P:m,S={width:D,key:B.key,column:{...B,width:D}};C?d(S):s(S)},[e,s,d]),_=f.useCallback(K=>{if(y>=0){const m=A[y].current?.parentElement?.getBoundingClientRect().left;return m?K.clientX-m:void 0}},[A,y]),g=f.useCallback(K=>{document.body.style.cursor=K?"col-resize":"auto"},[]),b=f.useCallback(K=>{K.stopPropagation(),K.preventDefault();const m=_(K);m&&I(y,m,!1)},[I,_,y]),p=f.useCallback(K=>{K.stopPropagation(),K.preventDefault();const m=_(K);m&&I(y,m,!0),h(-1),g(!1)},[I,_,y,g]),w=f.useCallback(()=>{document.removeEventListener("mousemove",b),document.removeEventListener("mouseup",p)},[b,p]),k=f.useCallback(()=>{document.addEventListener("mousemove",b),document.addEventListener("mouseup",p)},[b,p]);f.useEffect(()=>(y>=0?k():w(),()=>{w()}),[k,y,w]);const v=f.useCallback(K=>{h(K),g(!0)},[g]);return n.jsx("div",{className:E(ue,"z-20 sticky min-w-full flex w-fit flex-row top-0 left-0 h-12 border-b bg-gray-50 dark:bg-gray-900"),children:e.map((K,m)=>{const C=e[m],B=C&&l&&l[C.key]?l[C.key]:void 0;return n.jsx(ie,{children:n.jsx(s3,{resizeHandleRef:A[m],columnIndex:m,isResizingIndex:y,onFilterUpdate:i,filter:B,sort:a===C.key?t:void 0,onColumnSort:c,onClickResizeColumn:v,column:C,createFilterField:u})},"header_"+C.key)})})},f3=f.memo(function({rowData:t,rowIndex:c,children:i,onRowClick:a,size:l,style:s,hoverRow:d,rowClassName:u}){const A=f.useCallback(y=>a?a({rowData:t,rowIndex:c,event:y}):void 0,[a,t,c]);return n.jsx("div",{className:E("flex min-w-full text-sm border-b border-gray-200 dark:border-gray-800 border-opacity-40 dark:border-opacity-40",u?u(t):"",{"hover:bg-opacity-95":d,"cursor-pointer":a}),onClick:A,style:{...s,height:Ln(l),width:"fit-content"},children:i})},de),A3=f.memo(function(t){return t.rowData&&t.cellRenderer({cellData:t.cellData,rowData:t.rowData,rowIndex:t.rowIndex,isScrolling:!1,column:t.column,columns:t.columns,columnIndex:t.columnIndex,width:t.column.width})},(e,t)=>de(e,t)),Ho=f.createContext({});Ho.displayName="VirtualListContext";const _3=f.forwardRef(({children:e,...t},c)=>n.jsx(Ho.Consumer,{children:i=>{const a=i.customView;return n.jsxs(n.Fragment,{children:[n.jsx("div",{id:"virtual-table",style:{position:"relative",height:"100%"},children:n.jsxs("div",{ref:c,...t,style:{...t?.style,minHeight:"100%",position:"relative"},children:[n.jsx(u3,{...i}),!a&&e]})}),a&&n.jsx("div",{style:{position:"sticky",top:"56px",flexGrow:1,height:"calc(100% - 56px)",marginTop:"calc(56px - 100vh)",left:0},children:a})]})}})),$i=f.memo(function({data:t,onResetPagination:c,onEndReached:i,size:a="m",columns:l,onRowClick:s,onColumnResize:d,filter:u,checkFilterCombination:A,onFilterUpdate:y,sortBy:h,error:I,emptyMessage:_,onSortByUpdate:g,loading:b,cellRenderer:p,hoverRow:w,createFilterField:k,rowClassName:v,className:K,endAdornment:m}){const C=h?h[0]:void 0,B=h?h[1]:void 0,[P,F]=f.useState(l),D=f.useRef(null),S=f.useRef(0);f.useEffect(()=>{F(l)},[l]);const[T,N]=er(),q=f.useCallback(J=>{F(P.map(Y=>Y.key===J.column.key?J.column:Y))},[P]),G=f.useCallback(J=>{F(P.map(Y=>Y.key===J.column.key?J.column:Y)),d&&d(J)},[P,d]),V=f.useRef();f.useEffect(()=>{V.current=u},[u]);const oe=f.useCallback(()=>{S.current=0,D.current&&D.current.scrollTo(D.current?.scrollLeft,0)},[]),O=f.useCallback(J=>{const Y=C===J&&B==="desc",ge=C===J&&B==="asc"?"desc":Y?void 0:"asc",He=Y?void 0:J,ve=V.current,fn=ge&&He?[He,ge]:void 0;ve&&A&&!A(ve,fn)&&y&&y(void 0),c&&c(),g&&g(fn),oe()},[A,B,y,c,g,oe,C]),H=f.useCallback(()=>{S.current=0,g&&g(void 0)},[g]),Z=Math.max((t?.length??0)*Ln(a)-N.height,0),L=f.useCallback(J=>{i&&(t?.length??0)>0&&J>S.current+500&&(S.current=J,i())},[t,i]),W=f.useCallback(({scrollOffset:J,scrollUpdateWasRequested:Y})=>{!Y&&J>=Z-500&&L(J)},[Z,L]),Q=f.useCallback((J,Y)=>{S.current=0;const x=V.current;let ge=x?{...x}:{};Y?ge[J.key]=Y:delete ge[J.key],!A||A(ge,C&&B?[C,B]:void 0)||(ge=Y?{[J.key]:Y}:{}),y&&y(ge),J.key!==C&&H()},[A,B,y,H,C]),X=f.useCallback(()=>n.jsxs("div",{className:"h-full flex flex-col items-center justify-center sticky left-0",children:[n.jsx(j,{variant:"h6",children:"Error fetching data from the data source"}),I?.message&&n.jsx(lo,{className:"px-4 break-all",source:I.message})]}),[I?.message]),ee=f.useCallback(()=>b?n.jsx(fo,{}):n.jsxs("div",{className:"flex overflow-auto items-center justify-center p-2 gap-2 h-full",children:[n.jsx(ic,{}),n.jsx(j,{children:_})]}),[_,b]),U=!b&&(t?.length??0)===0,re=I?X():U?ee():void 0;return n.jsx("div",{ref:T,className:E("h-full w-full",K),children:n.jsx(Ho.Provider,{value:{data:t,size:a,cellRenderer:p,columns:P,currentSort:B,onRowClick:s,customView:re,onColumnResize:q,onColumnResizeEnd:G,filter:V.current,onColumnSort:O,onFilterUpdate:Q,sortByProperty:C,hoverRow:w??!1,createFilterField:k,rowClassName:v,endAdornment:m},children:n.jsx(y3,{outerRef:D,width:N.width,height:N.height,itemCount:(t?.length??0)+(m?1:0),onScroll:W,itemSize:Ln(a)},a)})})},de);function y3({outerRef:e,width:t,height:c,itemCount:i,onScroll:a,itemSize:l}){const s=f.useCallback(({index:d,style:u})=>n.jsx(Ho.Consumer,{children:({onRowClick:A,data:y,columns:h,size:I="m",cellRenderer:_,hoverRow:g,rowClassName:b,endAdornment:p})=>{if(p&&d===(y??[]).length)return n.jsx("div",{style:{...u,height:"auto",position:"sticky",bottom:0,zIndex:1},children:p});const w=y&&y[d];return n.jsx(f3,{rowData:w,rowIndex:d,onRowClick:A,columns:h,hoverRow:g,rowClassName:b,style:{...u,top:`calc(${u.top}px + 48px)`},size:I,children:h.map((k,v)=>{const K=w&&w[k.key];return n.jsx(A3,{dataKey:k.key,cellRenderer:_,column:k,columns:h,rowData:w,cellData:K,rowIndex:d,columnIndex:v},`cell_${k.key}`)})},`row_${d}`)}}),[]);return n.jsx(Na.FixedSizeList,{outerRef:e,innerElementType:_3,width:t,height:c,overscanCount:4,itemCount:i,onScroll:a,itemSize:l,children:s})}function Qn({children:e,trigger:t,open:c,defaultOpen:i,onOpenChange:a}){return n.jsxs(Jn.Root,{open:c,defaultOpen:i,onOpenChange:a,children:[n.jsx(Jn.Trigger,{asChild:!0,children:t}),n.jsx(Jn.Portal,{children:n.jsx(Jn.Content,{className:E(Ge,"shadow py-2 z-30"),children:e})})]})}function me({children:e,dense:t,onClick:c}){return n.jsx(Jn.Item,{className:E(he,c&&"cursor-pointer","rounded-md px-4 py-2 text-sm font-medium text-gray-700 dark:text-gray-300 hover:bg-gray-100 dark:hover:bg-gray-900 flex items-center gap-4"),onClick:c,children:e})}function pt({entity:e,width:t,frozen:c,isSelected:i,selectionEnabled:a,size:l,toggleEntitySelection:s,onCopyClicked:d,onEditClicked:u,onDeleteClicked:A,hideId:y}){const h=ze(),I=!!u,_=!!d,g=!!A,b=f.useCallback(v=>{s&&s(e)},[e,s]),p=f.useCallback(v=>{v.stopPropagation(),A&&A(e)},[e,A]),w=f.useCallback(v=>{v.stopPropagation(),d&&d(e)},[e,d]),k=f.useCallback(v=>{v.stopPropagation(),s&&s(e)},[e,s]);return n.jsxs("div",{onClick:k,className:E("h-full flex items-center justify-center flex-col bg-gray-50 dark:bg-gray-900 bg-opacity-90 dark:bg-opacity-90 z-10",c?"sticky left-0":""),style:{width:t,position:c?"sticky":"initial",left:c?0:"initial",contain:"strict"},children:[(I||g||a)&&n.jsxs("div",{className:"w-34 flex justify-center",children:[I&&n.jsx(_e,{title:`Edit ${e.id}`,children:n.jsx(R,{onClick:v=>{v.stopPropagation(),u&&u(e)},size:h?"medium":"small",children:n.jsx(Eo,{})})}),a&&n.jsx(_e,{title:`Select ${e.id}`,children:n.jsx(Gr,{size:h?"medium":"small",checked:i,onCheckedChange:b})}),(_||g)&&n.jsxs(Qn,{trigger:n.jsx(R,{size:h?"medium":"small",children:n.jsx(kr,{})}),children:[g&&n.jsxs(me,{onClick:p,children:[n.jsx(Bo,{}),"Delete"]}),_&&n.jsxs(me,{onClick:w,children:[n.jsx(hc,{}),"Copy"]})]})]}),!y&&l!=="xs"&&n.jsx("div",{className:"w-[138px] text-center overflow-hidden truncate",children:e?n.jsxs(j,{className:"font-mono",variant:"caption",color:"secondary",children:[" ",e.id," "]}):n.jsx(Ve,{})})]})}function h3(e){const t=ze(),c=!e.forceFilter&&e.filterIsSet&&e.clearFilter&&n.jsxs(te,{variant:"outlined",className:"h-fit-content","aria-label":"filter clear",onClick:e.clearFilter,size:"small",children:[n.jsx(gc,{}),"Clear filter"]}),i=n.jsx(Xe,{value:e.size,className:"w-16 h-10",size:"small",onValueChange:a=>e.onSizeChanged(a),renderValue:a=>n.jsx("div",{className:"font-medium",children:a.toUpperCase()}),children:["xs","s","m","l","xl"].map(a=>n.jsx(xe,{value:a,className:"w-12 font-medium text-center",children:a.toUpperCase()},a))});return n.jsxs("div",{className:E(ue,"no-scrollbar min-h-[56px] overflow-x-auto px-4 bg-gray-50 dark:bg-gray-900 border-b flex flex-row justify-between items-center w-full"),children:[n.jsxs("div",{className:"flex items-center gap-2",children:[e.title&&n.jsx("div",{className:"hidden lg:block",children:e.title}),i,e.actionsStart,c]}),n.jsxs("div",{className:"flex items-center gap-2",children:[t&&n.jsx("div",{className:"w-[22px]",children:e.loading&&n.jsx(Gn,{size:"small"})}),e.onTextSearch&&n.jsx(Qt,{onTextSearch:e.onTextSearch,expandable:!0},"search-bar"),e.actions]})]})}const ji={"==":"==","!=":"!=",">":">","<":"<",">=":">=","<=":"<=",in:"In","not-in":"Not in","array-contains":"Contains","array-contains-any":"Contains Any"},wt=["array-contains-any","in","not-in"];function g3({name:e,value:t,setValue:c,isArray:i,path:a,title:l,previewProperties:s,setPopupOpen:d}){const u=i?["array-contains"]:["==","!=",">","<",">=","<="],[A,y]=f.useState(!1);i?u.push("array-contains-any"):u.push("in","not-in");const[h,I]=t||[u[0],void 0],[_,g]=f.useState(h),[b,p]=f.useState(I),w=b?Array.isArray(b)?b.map(S=>S instanceof je?S.id:null).filter(Boolean):[b.id]:[];function k(S,T){const N=wt.includes(_),q=wt.includes(S);let G=T;N!==q&&(G=q?G instanceof je?[G]:[]:void 0),g(S),p(G);const V=G!==null&&Array.isArray(G)?G.length>0:G!==void 0;c(S&&V?[S,G]:void 0)}const v=fe(),K=f.useMemo(()=>a?v.getCollection(a):void 0,[a]),m=S=>{k(_,hn(S))},C=S=>{k(_,S.map(T=>hn(T)))},B=wt.includes(_),P=io({multiselect:B,path:a,collection:K,onSingleEntitySelected:m,onMultipleEntitiesSelected:C,selectedEntityIds:w,onClose:()=>{d(!0)}}),F=()=>{d(!1),P.open()},D=S=>n.jsx("div",{className:"mb-0.5",onMouseEnter:()=>y(!0),onMouseMove:()=>y(!0),onMouseLeave:()=>y(!1),children:n.jsx(nn,{disabled:!a,previewProperties:s,size:"medium",onClick:F,reference:S,onHover:A,allowEntityNavigation:!1})});return n.jsxs("div",{className:"flex w-[440px] flex-row",children:[n.jsx("div",{className:"w-[120px]",children:n.jsx(Xe,{value:_,onValueChange:S=>{k(S,b)},renderValue:S=>ji[S],children:u.map(S=>n.jsx(xe,{value:S,children:ji[S]},S))})}),n.jsxs("div",{className:"flex-grow ml-2 h-full",children:[b&&Array.isArray(b)&&n.jsx("div",{children:b.map((S,T)=>D(S))}),b&&!Array.isArray(b)&&n.jsx("div",{children:D(b)}),(!b||Array.isArray(b)&&b.length===0)&&n.jsx(te,{onClick:F,className:"h-full",children:B?"Select references":"Select reference"})]})]})}const qi={"==":"==","!=":"!=",">":">","<":"<",">=":">=","<=":"<=",in:"In","not-in":"Not in","array-contains":"Contains","array-contains-any":"Any"},kt=["array-contains-any","in","not-in"];function I3({name:e,value:t,setValue:c,dataType:i,isArray:a,enumValues:l,title:s}){const d=a?["array-contains"]:["==","!=",">","<",">=","<="];l&&(a?d.push("array-contains-any"):d.push("in","not-in"));const[u,A]=t||[d[0],void 0],[y,h]=f.useState(u),[I,_]=f.useState(A);function g(p,w){let k=w;const v=kt.includes(y),K=kt.includes(p);v!==K&&(k=K?typeof w=="string"||typeof w=="number"?[w]:[]:""),typeof k=="number"&&isNaN(k)&&(k=void 0),h(p),_(k);const m=k!==null&&Array.isArray(k)?k.length>0:k!==void 0;c(p&&m?[p,k]:void 0)}const b=kt.includes(y);return n.jsxs("div",{className:"flex w-[440px] items-center",children:[n.jsx("div",{className:"w-[80px]",children:n.jsx(Xe,{value:y,position:"item-aligned",onValueChange:p=>{g(p,I)},renderValue:p=>qi[p],children:d.map(p=>n.jsx(xe,{value:p,children:qi[p]},p))})}),n.jsxs("div",{className:"flex-grow ml-2",children:[!l&&n.jsx(un,{type:i==="number"?"number":void 0,value:I!==void 0?String(I):"",onChange:p=>{const w=i==="number"?parseFloat(p.target.value):p.target.value;g(y,w)},endAdornment:I&&n.jsx(R,{className:"absolute right-3 top-2",onClick:p=>g(y,void 0),children:n.jsx(cn,{})})}),l&&n.jsx(Xe,{position:"item-aligned",value:I!==void 0?Array.isArray(I)?I.map(p=>String(p)):String(I):a?[]:"",onValueChange:p=>{g(y,i==="number"?parseInt(p):p)},multiple:b,endAdornment:I&&n.jsx(R,{className:"absolute right-3 top-2",onClick:p=>g(y,void 0),children:n.jsx(cn,{})}),renderValue:p=>n.jsx(Ee,{enumKey:p,enumValues:l,size:"small"},`select_value_${e}_${p}`),children:l.map(p=>n.jsx(xe,{value:String(p.id),children:n.jsx(Ee,{enumKey:String(p.id),enumValues:l,size:"small"})},`select_value_${e}_${p.id}`))})]})]})}function b3({name:e,title:t,value:c,setValue:i}){function a(d){i(d!==void 0?["==",d]:void 0)}const l=c&&c[1],s=!!c;return n.jsx("div",{className:"w-[200px]",children:n.jsx(On,{value:l,allowIndeterminate:!0,onValueChange:d=>a(d===null?void 0:d),label:s?l?`${t} is true`:`${t} is false`:"No filter"})})}const p3="hover:bg-gray-200 hover:bg-opacity-75 dark:hover:bg-gray-700 dark:hover:bg-opacity-75",w3="inline-flex items-center justify-center p-2 text-sm font-medium focus:outline-none transition-colors ease-in-out duration-150",k3="dark:text-gray-100 text-gray-700 visited:text-gray-700 dark:visited:text-gray-100",m3={medium:"w-10 !h-10 min-w-10 min-h-10",small:"w-8 !h-8 min-w-8 min-h-8",large:"w-12 !h-12 min-w-12 min-h-12"},v3={circular:"rounded-full",square:"rounded-md"},K3=({children:e,className:t,size:c="medium",variant:i="ghost",shape:a="circular",disabled:l,toggled:s,component:d,...u},A)=>{const y=i==="ghost"?"bg-transparent":"bg-gray-50 dark:bg-gray-950",h=d||"button";return n.jsx(h,{type:"button",ref:A,...u,className:E(he,l?"opacity-50 pointer-events-none":"cursor-pointer",s?"outline outline-2 outline-primary":"",k3,y,w3,p3,v3[a],m3[c],t),children:e})},R=f.forwardRef(K3),mt=ce.forwardRef(function(t,c){const{shrink:i,className:a,...l}=t,s={root:"origin-left transition-transform block whitespace-nowrap overflow-hidden text-overflow-ellipsis max-w-full",shrink:"transform translate-y-[2px] scale-75 translate-x-[12px]",expanded:"translate-x-[16px] top-0 transform translate-y-[16px] scale-100"},d=E(s.root,{[s.shrink]:i,[s.expanded]:!i},a);return n.jsx("label",{"data-shrink":i,ref:c,className:d,...l})}),Vn=({value:e,label:t,onChange:c,disabled:i,clearable:a,mode:l="date",error:s,size:d,className:u,style:A,inputClassName:y,preventOpenOnFocus:h,invisible:I})=>{const _=f.useRef(null),{locale:g}=ne(),b=f.useRef(null),[p,w]=f.useState(document.activeElement===b.current),k=e!=null,v=e!=null&&!(e instanceof Date);Dn("DateTimeField",C3);const K=m=>{m.preventDefault(),c(null)};return n.jsxs(n.Fragment,{children:[n.jsxs("div",{className:E("rounded-md relative max-w-full",!I&&Je,i?Re:We,{"min-h-[48px]":d==="small","min-h-[64px]":d==="medium"},u),style:A,children:[t&&n.jsx(mt,{className:E("absolute top-1 pointer-events-none",s?"text-red-500 dark:text-red-600":p?"text-primary":"text-text-secondary dark:text-text-secondary-dark",i?"opacity-50":""),shrink:k||p,children:t}),n.jsx(xo,{ref:_,locale:g,selected:(v?null:e)??null,onChange:c,disabled:!1,popperClassName:E(Ge,"my-4 shadow"),onClick:m=>m.stopPropagation(),onFocus:()=>w(!0),onBlur:()=>w(!1),showTimeSelect:l==="date_time",timeFormat:"HH:mm",timeIntervals:15,timeCaption:"time",dateFormat:l==="date_time"?"Pp":"P",preventOpenOnFocus:!0,className:E("w-full outline-none bg-transparent leading-normal text-base px-3",a?"pr-14":"pr-12","rounded-md",!I&&he,d==="small"?"min-h-[48px]":"min-h-[64px]",t?"pt-[28px] pb-2":"py-2",y,i&&"border border-transparent outline-none opacity-50 dark:opacity-50 text-gray-600 dark:text-gray-500")}),n.jsx(R,{onClick:()=>_.current?.setOpen(!0),className:"absolute right-3 top-1/2 transform -translate-y-1/2 !text-gray-500 ",children:n.jsx(ac,{color:"disabled"})}),a&&e&&n.jsx(R,{onClick:K,className:"absolute right-14 top-1/2 transform -translate-y-1/2 text-gray-400 ",children:n.jsx(cn,{})})]}),v&&n.jsx(we,{title:"Invalid date value for this field",error:`The provided value is: ${JSON.stringify(e)}`})]})},C3=`
750
750
  .react-datepicker__year-read-view--down-arrow,
751
751
  .react-datepicker__month-read-view--down-arrow,
752
752
  .react-datepicker__month-year-read-view--down-arrow, .react-datepicker__navigation-icon::before {
@@ -1580,7 +1580,7 @@
1580
1580
  .react-datepicker__day--outside-month{
1581
1581
  color: #666 !important;
1582
1582
  }
1583
- `,qi={"==":"==","!=":"!=",">":">","<":"<",">=":">=","<=":"<=","not-in":"not in",in:"in","array-contains":"Contains","array-contains-any":"Any"},Ji=["array-contains-any","in"];function C3({name:e,isArray:t,mode:c,value:i,setValue:l,title:a}){const s=t?["array-contains"]:["==","!=",">","<",">=","<="],[d,u]=i||[s[0],void 0],[A,_]=f.useState(d),[g,y]=f.useState(u);function h(I,b){let p=b;const w=Ji.includes(A),k=Ji.includes(I);w!==k&&(p=k?b?[b]:[]:""),_(I),y(p===null?void 0:p);const K=p!==null&&Array.isArray(p)?p.length>0:p!==void 0;l(I&&K?[I,p]:void 0)}return n.jsxs("div",{className:"flex w-[440px] items-center",children:[n.jsx("div",{className:"w-[80px]",children:n.jsx(xe,{value:A,onValueChange:I=>{h(I,g)},renderValue:I=>qi[I],children:s.map(I=>n.jsx(Re,{value:I,children:qi[I]},I))})}),n.jsx("div",{className:"flex-grow ml-2",children:n.jsx(Vn,{mode:c,size:"medium",value:g,onChange:I=>{h(A,I===null?void 0:I)},clearable:!0})})]})}const Zi="collectionGroupParent";function Xi(e,t){return f.useMemo(()=>e.propertiesOrder?xi(e,e.propertiesOrder,!1):S3(e,t),[e,t])}function xi(e,t,c){return t.flatMap(i=>{const l=e.properties[i];return l?c&&l.hideFromCollection?[null]:c&&l.disabled&&typeof l.disabled=="object"&&l.disabled.hidden?[null]:l.dataType==="map"&&l.spreadChildren&&l.properties?vt(l,i):[{key:i,disabled:!!l.disabled||!!l.readOnly}]:e.additionalFields?.find(s=>s.id===i)?[{key:i,disabled:!0}]:e.subcollections&&e.subcollections.find(d=>ht(d)===i)?[{key:i,disabled:!0}]:e.collectionGroup&&i===Zi?[{key:i,disabled:!0}]:[null]}).filter(Boolean)}function S3(e,t){const c=Object.keys(e.properties);e.additionalColumns&&console.warn("`additionalColumns` is deprecated and will be removed in previous versions. Use `additionalFields` instead, with the same structure.");const i=e.additionalFields??e.additionalColumns??[],l=e.subcollections??[],a=[...c,...i.map(s=>s.id)];if(t){const s=l.map(d=>ht(d));a.push(...s.filter(d=>!a.includes(d)))}return e.collectionGroup&&a.push(Zi),xi(e,a,!0)}function vt(e,t,c){return e.dataType==="map"&&e.spreadChildren&&e.properties?Object.entries(e.properties).flatMap(([i,l])=>vt(l,`${t}.${i}`,c||!!e.disabled||!!e.readOnly)):[{key:t,disabled:c||!!e.disabled||!!e.readOnly}]}const B3={},Ri=f.createContext(B3),E3=()=>f.useContext(Ri),Kt=f.memo(function({forceFilter:t,actionsStart:c,actions:i,title:l,tableRowActionsBuilder:a,uniqueFieldValidator:s,getPropertyFor:d,onValueChange:u,selectionController:A,highlightedEntities:_,onEntityClick:g,onColumnResize:y,onSizeChanged:h,textSearchEnabled:I=!1,hoverRow:b=!0,inlineEditing:p=!1,additionalFields:w,displayedColumnIds:k,defaultSize:K,properties:m,tableController:{data:v,dataLoading:S,noMoreToLoad:B,dataLoadingError:P,filterValues:F,setFilterValues:D,sortBy:C,setSortBy:N,searchString:M,setSearchString:H,clearFilter:Z,itemCount:O,setItemCount:oe,pageSize:U=50,paginationEnabled:L,checkFilterCombination:X,setPopupCell:W},filterable:V=!0,sortable:Q=!0,endAdornment:q}){const R=Ge(),$=!!t,ne=A?.selectedEntities?.length>0?A?.selectedEntities:_,J=re(),[x,ie]=f.useState(K??"m"),[Y,Be]=f.useState(void 0),Oe=ne?.map(z=>z.id),Ue=!!F&&Object.keys(F).length>0,zn=()=>{!L||S||B||O!==void 0&&oe?.(O+U)},Ao=f.useCallback(()=>{oe?.(U)},[U]),kn=f.useCallback(({rowData:z})=>{if(!p)return g&&g(z)},[g,p]),Hn=f.useCallback(z=>{h&&h(z),ie(z)},[]),_o=f.useCallback(z=>H?.(z),[]),rn=f.useMemo(()=>w?w.map(z=>({[z.id]:z})).reduce((z,me)=>({...z,...me}),{}):{},[w]);f.useEffect(()=>{const z=me=>{me.keyCode===27&&G()};return document.addEventListener("keydown",z,!1),()=>{document.removeEventListener("keydown",z,!1)}});const yo=f.useCallback(z=>{Be(z)},[]),G=f.useCallback(()=>{Be(void 0)},[]),_e=s,ae=f.useCallback(({column:z,columnIndex:me,rowData:ve,rowIndex:Ye})=>{const fe=ve,tn=z.key;let Un=z.custom.disabled;const ho=fe.values?dn(fe.values,tn):void 0,Yn=d?.({propertyKey:tn,propertyValue:ho,entity:fe})??z.custom.resolvedProperty;return Yn?.disabled||(Un=!1),Yn?n.jsx(se,{children:fe?n.jsx(t3,{readonly:!p,align:z.align??"left",propertyKey:tn,property:Yn,value:fe?.values?dn(fe.values,tn):void 0,customFieldValidator:_e,columnIndex:me,width:z.width,height:Ln(x),entity:fe,disabled:Un,path:fe.path},`property_table_cell_${fe.id}_${tn}`):nn()}):null},[_e,p,x,Oe]),T=f.useCallback(({column:z,rowData:me,width:ve})=>{const Ye=me,fe=rn[z.key],tn=fe.dependencies?Object.entries(Ye.values).filter(([ho,Yn])=>fe.dependencies.includes(ho)).reduce((ho,Yn)=>({...ho,...Yn}),{}):Ye;fe.builder&&console.warn("`additionalField.builder` is deprecated. Use `additionalField.Builder` instead.");const Un=fe.builder??fe.Builder;if(!Un)throw new Error("No builder provided for additional field");return n.jsx(bt,{width:ve,size:x,value:tn,selected:!1,disabled:!0,align:"left",allowScroll:!1,showExpandIcon:!1,disabledTooltip:"This column can't be edited directly",children:n.jsx(se,{children:n.jsx(Un,{entity:Ye,context:J})})},`additional_table_cell_${Ye.id}_${z.key}`)},[rn,x,Oe]),le=f.useMemo(()=>{const z=Object.entries(m).flatMap(([ve,Ye])=>vt(Ye,ve)).map(({key:ve,disabled:Ye})=>{const fe=ut(m,ve);if(!fe)throw Error("Internal error: no property found in path "+ve);const tn=ea(fe);return{key:ve,align:Gz(fe),icon:Un=>we(fe,"small"),title:fe.name??ve,sortable:Q&&(t?Object.keys(t).includes(ve):!0),filter:!$&&tn,width:Vi(fe),resizable:!0,custom:{resolvedProperty:fe,disabled:Ye}}}),me=w?w.map(ve=>({key:ve.id,align:"left",sortable:!1,title:ve.name,width:ve.width??200})):[];return[...z,...me]},[w,$,t,m,Q]),he=f.useMemo(()=>({key:"id_ewcfedcswdf3",width:R?160:130,title:"ID",resizable:!1,frozen:R,headerAlign:"center"}),[R]),Le=f.useMemo(()=>[he,...k.map(z=>le.find(me=>me.key===z.key)).filter(Boolean)],[le,k,he]),mn=f.useCallback(z=>{const me=z.column,ve=z.columns,Ye=me.key;if(z.columnIndex===0)return a?a({entity:z.rowData,size:x,width:me.width,frozen:me.frozen}):n.jsx(pt,{entity:z.rowData,width:me.width,frozen:me.frozen,isSelected:!1,size:x});if(rn[Ye])return T(z);if(z.columnIndex<ve.length+1)return ae(z);throw Error("Internal: columns not mapped properly")},[rn,a,x,T,ae]),vn=f.useCallback(z=>{D?.({...z,...t})},[t]);return n.jsx(Ri.Provider,{value:{setPopupCell:W,select:yo,onValueChange:u,size:x,selectedCell:Y,selectedEntityIds:Oe},children:n.jsxs("div",{className:"h-full w-full flex flex-col bg-white dark:bg-gray-950",children:[n.jsx(y3,{forceFilter:$,filterIsSet:Ue,onTextSearch:I?_o:void 0,clearFilter:Z,size:x,onSizeChanged:Hn,title:l,actionsStart:c,actions:i,loading:S}),n.jsx(Yi,{data:v,columns:Le,cellRenderer:mn,onRowClick:p?void 0:g?kn:void 0,onEndReached:zn,onResetPagination:Ao,error:P,paginationEnabled:L,onColumnResize:y,size:x,loading:S,filter:F,onFilterUpdate:D?vn:void 0,sortBy:C,onSortByUpdate:N,hoverRow:b,checkFilterCombination:X,createFilterField:V?F3:void 0,rowClassName:f.useCallback(z=>Oe?.includes(z.id)?"bg-gray-100 bg-opacity-75 dark:bg-gray-800 dark:bg-opacity-75":"",[Oe]),className:"flex-grow",endAdornment:q})]})})},de);function F3({id:e,filterValue:t,setFilterValue:c,column:i,popupOpen:l,setPopupOpen:a}){if(!i.custom)return null;const{resolvedProperty:s}=i.custom,d=s?.dataType==="array",u=d?s.of:s;if(!u)return null;if(u.dataType==="reference")return n.jsx(h3,{value:t,setValue:c,name:e,isArray:d,path:u.path,title:s?.name,previewProperties:u?.previewProperties,popupOpen:l,setPopupOpen:a});if(u.dataType==="number"||u.dataType==="string"){const A=u.name,_=u.enumValues?sn(u.enumValues):void 0;return n.jsx(g3,{value:t,setValue:c,name:e,dataType:u.dataType,isArray:d,enumValues:_,title:A})}else if(u.dataType==="boolean"){const A=u.name;return n.jsx(I3,{value:t,setValue:c,name:e,title:A})}else if(u.dataType==="date"){const A=u.name;return n.jsx(C3,{value:t,setValue:c,name:e,mode:u.mode,isArray:d,title:A})}return n.jsx("div",{children:`Currently the filter field ${s.dataType} is not supported`})}function ea(e,t=!1){return t?["string","number","date","reference"].includes(e.dataType):e.dataType==="array"?e.of?ea(e.of,!0):!1:["string","number","boolean","date","reference","array"].includes(e.dataType)}function P3({data:e,entitiesDisplayedFirst:t}){if(!t)return e;const c=new Set(t.map(i=>i.id));return[...t,...e.filter(i=>!c.has(i.id))]}function D3(e,t,c=5e3){const[i,l]=f.useState(e),a=f.useRef(i.length??0),s=f.useRef(!1),d=f.useRef(t),u=!de(d.current,t),A=e.length>=a.current||u;return f.useEffect(()=>{const _=()=>{de(i,e)||(d.current=t,a.current=e.length,l(e)),s.current=!1};s.current=!0;let g;return A?_():g=setTimeout(_,c),()=>{clearTimeout(g),s.current&&A&&_()}},[e,c,t,A]),A?e:i}const N3=50;function Ct({fullPath:e,collection:t,entitiesDisplayedFirst:c,lastDeleteTimestamp:i,forceFilter:l}){const{initialFilter:a,initialSort:s,forceFilter:d}=t,[u,A]=f.useState(void 0),_=Ae(),g=Qe(),y=f.useMemo(()=>_.resolveAliasesFrom(e),[e,_.resolveAliasesFrom]),h=l??d,I=t.pagination===void 0||!!t.pagination,b=typeof t.pagination=="number"?t.pagination:N3,[p,w]=f.useState(),[k,K]=f.useState(I?b:void 0),m=f.useCallback((U,L)=>g.isFilterCombinationValid?g.isFilterCombinationValid({path:y,collection:t,filterValues:U,sortBy:L}):!0,[]),v=f.useMemo(()=>{if(s&&h&&!m(h,s)){console.warn("Initial sort is not compatible with the force filter. Ignoring initial sort");return}return s},[s,h]),[S,B]=f.useState(h??a??void 0),[P,F]=f.useState(v),D=f.useCallback(()=>B(h??void 0),[h]),C=f.useCallback(U=>{if(h){console.warn("Filter is not compatible with the force filter. Ignoring filter");return}U&&Object.keys(U).length===0?B(void 0):B(U)},[h]),{data:N,dataLoading:M,noMoreToLoad:H,dataLoadingError:Z}=ec({path:e,collection:t,filterValues:S,sortBy:P,searchString:p,itemCount:k}),O=P3({data:N,entitiesDisplayedFirst:c});return{data:D3(O,{filterValues:S,sortBy:P,searchString:p,lastDeleteTimestamp:i}),dataLoading:M,noMoreToLoad:H,dataLoadingError:Z,filterValues:S,setFilterValues:C,sortBy:P,setSortBy:F,searchString:p,setSearchString:w,clearFilter:D,itemCount:k,setItemCount:K,paginationEnabled:I,pageSize:b,checkFilterCombination:m,popupCell:u,setPopupCell:A}}function M3(e,t){const[c,i]=f.useState(),{navigator:l}=f.useContext(Ie.UNSAFE_NavigationContext),a=Ie.useNavigate(),s=()=>{i(void 0)},d=()=>{t(),i(void 0),a(-1)},u=f.useCallback(({action:A,location:_,retry:g})=>{switch(A){case"REPLACE":{g();return}case"POP":i(_)}},[]);return f.useEffect(()=>{if(!e||c||!("block"in l))return;const A=l.block(_=>{const g={..._,retry(){A(),_.retry()}};u(g)});return A},[l,u,e,c]),{navigationWasBlocked:!!c,handleCancel:s,handleOk:d}}function T3({open:e,handleOk:t,handleCancel:c,body:i,title:l}){return n.jsxs(Zo,{open:e,onOpenChange:a=>a?c():t(),children:[n.jsxs(Xo,{children:[n.jsx(j,{variant:"h6",children:l}),i,n.jsx(j,{children:"Are you sure you want to leave this page?"})]}),n.jsxs(wn,{children:[n.jsx(te,{variant:"text",onClick:c,autoFocus:!0,children:" Cancel "}),n.jsx(te,{onClick:t,children:" Ok "})]})]})}const na=f.createContext({width:"",blocked:!1,setBlocked:e=>{},setBlockedNavigationMessage:e=>{},close:()=>{}}),Uo=()=>f.useContext(na);function O3(){const t=Xn().sidePanels,c=[...t];return c.push(void 0),n.jsx(n.Fragment,{children:c.map((i,l)=>n.jsx(L3,{panel:i,offsetPosition:t.length-l-1},`side_dialog_${l}`))})}function L3({offsetPosition:e,panel:t}){const[c,i]=f.useState(!1),[l,a]=f.useState(!1),[s,d]=f.useState(),u=f.useRef(t?.width),A=u.current,_=Xn(),{navigationWasBlocked:g,handleOk:y,handleCancel:h}=M3(l&&!c,()=>a(!1));f.useEffect(()=>{t&&(u.current=t.width)},[t]);const I=()=>{a(!1),i(!1),_.close(),t?.onClose?.()},b=()=>{i(!1)},p=w=>{l&&!w?i(!0):(_.close(),t?.onClose?.())};return n.jsxs(na.Provider,{value:{blocked:l,setBlocked:a,setBlockedNavigationMessage:d,width:A,close:p},children:[n.jsxs(Vt,{open:!!t,onOpenChange:w=>!w&&p(),children:[t&&n.jsx("div",{className:"transform max-w-[100vw] lg:max-w-[95vw] flex flex-col h-full transition-all duration-250 ease-in-out bg-white dark:bg-gray-900 ",style:{width:t.width,transform:`translateX(-${e*200}px)`},children:n.jsx(se,{children:t.component})}),!t&&n.jsx("div",{style:{width:A}})]}),n.jsx(T3,{open:g||c,handleOk:c?I:y,handleCancel:c?b:h,body:s})]})}function Q3({entityOrEntitiesToDelete:e,collection:t,onClose:c,open:i,callbacks:l,onEntityDelete:a,onMultipleEntitiesDelete:s,path:d}){const u=Qe(),A=cn(),[_,g]=f.useState(!1),[y,h]=f.useState(),[I,b]=f.useState(),p=re();f.useEffect(()=>{if(e){const C=Array.isArray(e)&&e.length===1?e[0]:e;h(C),b(Array.isArray(C))}},[e]);const w=f.useMemo(()=>Me({collection:t,path:d,fields:p.fields}),[t,d]),k=f.useCallback(()=>{c()},[c]),K=f.useCallback(C=>{console.debug("Deleted",C)},[]),m=f.useCallback((C,N)=>{A.open({type:"error",message:"Error deleting: "+N?.message}),console.error("Error deleting entity"),console.error(N)},[w.name]),v=f.useCallback((C,N)=>{A.open({type:"error",message:"Error before deleting: "+N?.message}),console.error(N)},[w.name]),S=f.useCallback((C,N)=>{A.open({type:"error",message:"Error after deleting: "+N?.message}),console.error(N)},[w.name]),B=f.useCallback(C=>nc({dataSource:u,entity:C,collection:w,callbacks:l,onDeleteSuccess:K,onDeleteFailure:m,onPreDeleteHookError:v,onDeleteSuccessHookError:S,context:p}),[u,w,l,K,m,v,S,p]),P=f.useCallback(async()=>{y&&(g(!0),I?Promise.all(y.map(B)).then(C=>{g(!1),s&&y&&s(d,y),C.every(Boolean)?A.open({type:"success",message:`${w.name}: multiple deleted`}):C.some(Boolean)?A.open({type:"warning",message:`${w.name}: Some of the entities have been deleted, but not all`}):A.open({type:"error",message:`${w.name}: Error deleting entities`}),c()}):B(y).then(C=>{g(!1),C&&(a&&y&&a(d,y),A.open({type:"success",message:`${w.singularName??w.name} deleted`}),c())}))},[y,I,B,s,d,c,A,w.name,a]);let F;if(y&&I)F=n.jsx(n.Fragment,{children:"Multiple entities"});else{const C=y;F=C?n.jsx(yt,{entity:C,collection:t,path:d}):n.jsx(n.Fragment,{})}const D=I?n.jsxs(n.Fragment,{children:[n.jsx("b",{children:w.name}),": Confirm multiple delete?"]}):`Would you like to delete this ${w.singularName??w.name}?`;return n.jsxs(Zo,{maxWidth:"2xl","aria-labelledby":"delete-dialog",open:i,onOpenChange:C=>C?void 0:c(),children:[n.jsxs(Xo,{fullHeight:!0,children:[n.jsx(j,{variant:"subtitle2",className:"p-4",children:D}),!I&&F]}),n.jsxs(wn,{children:[_&&n.jsx(Gn,{size:"small"}),n.jsx(te,{onClick:k,disabled:_,variant:"text",color:"primary",children:"Cancel"}),n.jsx(te,{autoFocus:!0,disabled:_,onClick:P,variant:"filled",color:"primary",children:"Ok"})]})]})}function Yo(e){return Array.isArray(e)?e:e?[e]:[]}function V3({collection:e,relativePath:t,parentPathSegments:c,onNewClick:i,onMultipleDeleteClick:l,selectionEnabled:a,path:s,selectionController:d,tableController:u,collectionEntitiesCount:A}){const _=re(),g=_.plugins??[],y=yn(),h=Ge(),I=d.selectedEntities,b=Vo(e,y,Xe(s),null)&&i&&(h?n.jsxs(te,{id:`add_entity_${s}`,onClick:i,startIcon:n.jsx(hn,{}),size:"large",variant:"filled",color:"primary",children:["Add ",e.singularName??e.name]}):n.jsx(te,{id:`add_entity_${s}`,onClick:i,size:"medium",variant:"filled",color:"primary",children:n.jsx(hn,{})})),p=At(e,y,Xe(s),null);let w;if(a){const v=h?n.jsxs(te,{variant:"text",disabled:!I?.length||!p,startIcon:n.jsx(wo,{}),onClick:l,color:"primary",className:"lg:w-20",children:["(",I?.length,")"]}):n.jsx(ee,{color:"primary",disabled:!I?.length||!p,onClick:l,children:n.jsx(wo,{})});w=n.jsx(ye,{title:p?"Delete":"You have selected at least one entity you cannot delete",children:v})}const k={path:s,relativePath:t,parentPathSegments:c,collection:e,selectionController:d,context:_,tableController:u,collectionEntitiesCount:A},K=[];K.push(...Yo(e.Actions)),g&&g.forEach(v=>{v.collections?.CollectionActions&&K.push(...Yo(v.collections?.CollectionActions))});const m=n.jsx(n.Fragment,{children:K.map((v,S)=>n.jsx(v,{...k},`actions_${S}`))});return n.jsxs(n.Fragment,{children:[m,w,b]})}function W3({containerRef:e,innerRef:t,x:c,y:i,onMove:l}){let a=0,s=0;const d=f.useRef(!1),u=I=>{if(I.button!==0||!e.current||I.defaultPrevented||I.innerClicked)return;const{x:b,y:p}=e.current.getBoundingClientRect();a=I.screenX-b,s=I.screenY-p,document.addEventListener("mousemove",y),document.addEventListener("mouseup",g),document.addEventListener("selectstart",_),d.current=!0},A=I=>{I.innerClicked=!0},_=I=>{I.preventDefault(),I.stopPropagation()},g=I=>{document.removeEventListener("mousemove",y),document.removeEventListener("mouseup",g),document.removeEventListener("selectstart",_),I.stopPropagation(),d.current=!1},y=I=>{I.target.localName==="input"||!d.current||(l({x:I.screenX-a,y:I.screenY-s}),I.stopPropagation())},h=()=>{e.current&&(e.current.style.top=`${i}px`,e.current.style.left=`${c}px`)};f.useEffect(()=>{const I=e.current,b=t.current;if(!(!I||!b))return b&&b.addEventListener("mousedown",A),I&&I.addEventListener("mousedown",u),h(),()=>{I&&I.removeEventListener("mousedown",u),b&&b.removeEventListener("mousedown",A)}})}function G3(){const[e,t]=f.useState({width:0,height:0});return f.useLayoutEffect(()=>{function c(){t({width:window.innerWidth,height:window.innerHeight})}return window.addEventListener("resize",c),c(),()=>window.removeEventListener("resize",c)},[]),e}const z3=({onResize:e})=>{const t=f.useRef(0),c=f.useRef(null),i=f.useRef(e);i.current=e;const l=f.useCallback(s=>{t.current&&cancelAnimationFrame(t.current),t.current=requestAnimationFrame(()=>{i.current(s)})},[]),a=f.useCallback(()=>{const s=c.current;s&&s.contentDocument&&s.contentDocument.defaultView&&s.contentDocument.defaultView.addEventListener("resize",l)},[l]);return f.useEffect(()=>{const s=c.current;return()=>{s&&s.contentDocument&&s.contentDocument.defaultView&&s.contentDocument.defaultView.removeEventListener("resize",l)}},[l]),n.jsx("object",{onLoad:a,ref:c,tabIndex:-1,type:"text/html",data:"about:blank",title:"",style:{position:"absolute",top:0,left:0,height:"100%",width:"100%",pointerEvents:"none",zIndex:-1,opacity:0}})};function H3(e){return e.open?n.jsx(U3,{...e}):null}function U3({tableKey:e,entity:t,customFieldValidator:c,propertyKey:i,collection:l,path:a,cellRect:s,open:d,onClose:u,columnIndex:A,onCellValueChange:_}){const g=Qe(),y=re(),[h,I]=f.useState(),[b,p]=f.useState(),w=t?.id,[k,K]=f.useState(t);f.useEffect(()=>w&&l?g.listenEntity?.({path:a,entityId:w,collection:l,onUpdate:K}):()=>{},[g,w,l,a]);const[m,v]=f.useState(k?.values),S=l?Me({collection:l,path:a,values:m,entityId:w,fields:y.fields}):void 0,B=G3(),P=f.useRef(null),F=f.useRef(null),D=f.useRef(!1),C=f.useCallback(()=>{if(!s)throw Error("getInitialLocation error");return{x:s.left<B.width-s.right?s.x+s.width/2:s.x-s.width/2,y:s.top<B.height-s.bottom?s.y+s.height/2:s.y-s.height/2}},[s,B.height,B.width]),N=f.useCallback(({x:L,y:X})=>{const W=P.current?.getBoundingClientRect();if(!W)throw Error("normalizePosition called before draggableBoundingRect is set");return{x:Math.max(0,Math.min(L,B.width-W.width)),y:Math.max(0,Math.min(X,B.height-W.height))}},[B]),M=f.useCallback(L=>{const X=P.current?.getBoundingClientRect();if(!s||!X)return;const W=N(L??C());(!b||W.x!==b.x||W.y!==b.y)&&p(W)},[s,C,N,b]);W3({containerRef:P,innerRef:F,x:b?.x,y:b?.y,onMove:M}),f.useEffect(()=>{D.current=!1},[i,k]),f.useEffect(()=>{D.current=!1},[i]),f.useLayoutEffect(()=>{const L=P.current?.getBoundingClientRect();!s||!L||D.current||(M(),D.current=!0)},[s,M,D.current]),f.useLayoutEffect(()=>{M(b)},[B,s]);const H=f.useMemo(()=>{if(!(!S||!w))return Ei(w,i&&S.properties[i]?{[i]:S.properties[i]}:{},c)},[S,w,i,c]),Z=f.useCallback(()=>M(b),[b,M]),O=async L=>(I(null),l&&k&&_&&i?_({value:L[i],propertyKey:i,entity:k,setError:I,onValueUpdated:()=>{},fullPath:a,context:y}):Promise.resolve());if(!k)return n.jsx(n.Fragment,{});const oe=k&&n.jsxs("div",{className:`text-gray-900 dark:text-white overflow-auto rounded rounded-md bg-white dark:bg-gray-950 ${d?"":"hidden"} cursor-grab`,children:[n.jsx(Fe.Formik,{initialValues:k?.values??{},validationSchema:H,validateOnMount:!0,validate:L=>console.debug("Validating",L),onSubmit:(L,X)=>{O(L).then(()=>u()).finally(()=>X.setSubmitting(!1))},children:({values:L,setFieldValue:X,handleSubmit:W,isSubmitting:V})=>{if(f.useEffect(()=>{de(L,m)||v(L)},[L]),!k)return n.jsx(pe,{error:"PopupFormField misconfiguration"});if(!S)return n.jsx(n.Fragment,{});const Q=V,q={collection:S,entityId:w,values:L,path:a,setFieldValue:X,save:O},R=i&&pn(S.properties,i),$=i&&R?{propertyKey:i,disabled:V||Nn(R)||!!R.disabled,property:R,includeDescription:!1,underlyingValueHasChanged:!1,context:q,tableMode:!0,partOfArray:!1,partOfBlock:!1,autoFocus:d}:void 0;let ne=n.jsx(n.Fragment,{children:n.jsx("div",{className:"w-[560px] max-w-full max-h-[85vh]",children:n.jsxs(Fe.Form,{onSubmit:W,noValidate:!0,children:[n.jsx("div",{className:"mb-1 p-4 flex flex-col relative",children:n.jsx("div",{ref:F,className:"cursor-auto",style:{cursor:"auto !important"},children:$&&n.jsx(bn,{...$})})}),n.jsx(wn,{children:n.jsx(te,{variant:"filled",color:"primary",type:"submit",disabled:Q,children:"Save"})})]})},`popup_form_${e}_${w}_${A}`)});const J=y.plugins;return J&&J.forEach(x=>{x.form?.provider&&(ne=n.jsx(x.form.provider.Component,{status:"existing",path:a,collection:S,entity:k,context:y,currentEntityId:w,formContext:q,...x.form.provider.props,children:ne}))}),ne}}),h&&n.jsx(j,{color:"error",children:h.message})]}),U=n.jsxs("div",{style:{boxShadow:"0 0 0 2px rgba(128,128,128,0.2)"},className:`inline-block fixed z-30 shadow-outline rounded-md bg-white dark:bg-gray-950 ${d?"visible":"invisible"} cursor-grab overflow-visible`,ref:P,children:[n.jsx(z3,{onResize:Z}),n.jsxs("div",{className:"overflow-hidden",children:[oe,n.jsx("div",{className:"absolute -top-3.5 -right-3.5 bg-gray-500 rounded-full",style:{width:"32px",height:"32px"},children:n.jsx(ee,{size:"small",onClick:L=>{L.stopPropagation(),u()},children:n.jsx(an,{className:"text-white",size:"small"})})})]})]},`draggable_${i}_${w}_${d}`);return n.jsx(La.Root,{asChild:!0,children:U})}const Y3="collectionGroupParent",St=f.memo(function({fullPath:t,parentPathSegments:c,isSubCollection:i,className:l,...a}){const s=Qe(),d=Ae(),u=Cn(),A=yn(),_=Bn(),g=re(),y=f.useMemo(()=>{const G=_?.getCollectionConfig(t);return G?Ze(a,G):a},[a,t,_?.getCollectionConfig]),[h,I]=f.useState(void 0),[b,p]=f.useState(void 0),[w,k]=f.useState(0),[K,m]=f.useState(0),v=f.useCallback(()=>{const G=h;setTimeout(()=>{G===h&&I(void 0)},2400)},[h]),S=f.useCallback(G=>ft(y,A,Xe(t),G??null)?y.inlineEditing===void 0||y.inlineEditing:!1,[y,A,t]),B=y.selectionEnabled===void 0||y.selectionEnabled,P=!S(),[F,D]=f.useState(!1),C=Bt(),N=y.selectionController??C,{selectedEntities:M,toggleEntitySelection:H,isEntitySelected:Z,setSelectedEntities:O}=N;f.useEffect(()=>{p(void 0)},[M]);const oe=Ct({fullPath:t,collection:y,entitiesDisplayedFirst:[],lastDeleteTimestamp:w}),U=f.useRef(Math.random().toString(36)),L=oe.popupCell,X=f.useCallback(()=>{oe.setPopupCell?.(void 0)},[oe.setPopupCell]),W=f.useCallback(G=>(I(G),g.onAnalyticsEvent?.("edit_entity_clicked",{path:G.path,entityId:G.id}),u.open({entityId:G.id,path:t,collection:y,updateUrl:!0,onClose:v})),[t,y,u]),V=f.useCallback(()=>{g.onAnalyticsEvent?.("new_entity_click",{path:t}),u.open({path:t,collection:y,updateUrl:!0,onClose:v})},[t,y,u]),Q=f.useCallback(G=>{g.onAnalyticsEvent?.("single_delete_dialog_open",{path:t}),p(G)},[g,t]),q=f.useCallback(()=>{g.onAnalyticsEvent?.("multiple_delete_dialog_open",{path:t}),p(M)},[g,t,M]),R=f.useCallback((G,_e)=>{g.onAnalyticsEvent?.("single_entity_deleted",{path:t}),O(ae=>ae.filter(T=>T.id!==_e.id)),k(Date.now())},[g,t,O]),$=f.useCallback((G,_e)=>{g.onAnalyticsEvent?.("multiple_entities_deleted",{path:t}),O([]),p(void 0),k(Date.now())},[O]),ne=f.useCallback((G,_e)=>{if(_){const ae=_.getCollectionConfig(G),T=Ze(ae,_e);_.onCollectionModified(G,T)}},[_]),J=f.useCallback(({width:G,key:_e})=>{if(!pn(y.properties,_e))return;const ae=oa(_e,G);ne(t,ae)},[y,ne,t]),x=f.useCallback(G=>{_&&ne(t,{defaultSize:G})},[ne,t,_]),ie=Vo(y,A,Xe(t),null),Y=f.useCallback(({name:G,value:_e,property:ae,entityId:T})=>s.checkUniqueField(t,G,_e,ae,T),[t]),Be=({fullPath:G,context:_e,value:ae,propertyKey:T,onValueUpdated:le,setError:he,entity:Le})=>{const mn=Fe.setIn({...Le.values},T,ae),vn={path:G,entityId:Le.id,values:mn,previousValues:Le.values,collection:y,status:"existing"};return dr({...vn,callbacks:y.callbacks,dataSource:s,context:_e,onSaveSuccess:()=>le(),onSaveFailure:z=>{console.error("Save failure"),console.error(z),he(z)}})},Oe=d.resolveAliasesFrom(t),Ue=f.useMemo(()=>Me({collection:y,path:t,fields:g.fields}),[y,t]),zn=f.useCallback(({propertyKey:G,propertyValue:_e,entity:ae})=>{let T=pn(y.properties,G);return T||(T=pn(Ue.properties,G)),Te({propertyKey:G,propertyOrBuilder:T,path:t,propertyValue:_e,values:ae.values,entityId:ae.id,fields:g.fields})},[y.properties,g.fields,t,Ue.properties]),Ao=Xi(Ue,!0),kn=f.useCallback(G=>{I(G),g.onAnalyticsEvent?.("copy_entity_click",{path:G.path,entityId:G.id}),u.open({entityId:G.id,path:t,copy:!0,collection:y,updateUrl:!0,onClose:v})},[u,y,t,v]),Hn=f.useCallback(G=>{I(G),g.onAnalyticsEvent?.("entity_click",{path:G.path,entityId:G.id}),u.open({entityId:G.id,path:G.path,collection:y,updateUrl:!0,onClose:v})},[u,y,t,v]),_o=f.useMemo(()=>{const G=y.subcollections?.map(ae=>({id:ht(ae),name:ae.name,width:200,dependencies:[],Builder:({entity:T})=>n.jsx(te,{color:"primary",startIcon:n.jsx(ko,{size:"small"}),onClick:le=>{le.stopPropagation(),u.open({path:t,entityId:T.id,selectedSubPath:ae.alias??ae.path,collection:y,updateUrl:!0})},children:ae.name})}))??[],_e=y.collectionGroup?[{id:Y3,name:"Parent entities",width:260,dependencies:[],Builder:({entity:ae})=>{const T=d.getParentReferencesFromPath(ae.path);return n.jsx(n.Fragment,{children:T.map(le=>n.jsx(on,{reference:le,size:"tiny"},le.path+"/"+le.id))})}}]:[];return[...y.additionalFields??y.additionalColumns??[],...G,..._e]},[y,t]),rn=f.useCallback(({entity:G,size:_e,width:ae,frozen:T})=>{const le=Z(G),he=At(y,A,Xe(t),G);return n.jsx(pt,{entity:G,width:ae,frozen:T,isSelected:le,selectionEnabled:B,size:_e,toggleEntitySelection:H,onEditClicked:Hn,onCopyClicked:ie?kn:void 0,onDeleteClicked:he?Q:void 0,hideId:y?.hideIdFromCollection})},[Z,y,A,t,B,H,Hn,ie,kn]),yo=n.jsx(Hi,{open:F,onOpenChange:D,enabled:!!y.description,trigger:n.jsxs("div",{className:"flex flex-col items-start",children:[n.jsx(j,{variant:"subtitle1",className:`leading-none truncate max-w-[160px] lg:max-w-[240px] ${y.description?"cursor-pointer":"cursor-auto"}`,onClick:y.description?G=>{D(!0),G.stopPropagation()}:void 0,children:`${y.name}`}),n.jsx($3,{fullPath:t,collection:y,filter:oe.filterValues,sortBy:oe.sortBy,onCountChange:m})]}),children:y.description&&n.jsx("div",{className:"m-4 text-gray-900 dark:text-white",children:n.jsx(co,{source:y.description})})});return n.jsxs("div",{className:E("overflow-hidden h-full w-full",l),children:[n.jsx(Kt,{additionalFields:_o,tableController:oe,displayedColumnIds:Ao,onSizeChanged:x,onEntityClick:W,onColumnResize:J,onValueChange:Be,tableRowActionsBuilder:rn,uniqueFieldValidator:Y,title:yo,selectionController:N,highlightedEntities:h?[h]:[],defaultSize:y.defaultSize,properties:Ue.properties,getPropertyFor:zn,actions:n.jsx(V3,{parentPathSegments:c??[],collection:y,tableController:oe,onMultipleDeleteClick:q,onNewClick:V,path:t,relativePath:y.path,selectionController:N,selectionEnabled:B,collectionEntitiesCount:K}),hoverRow:P,inlineEditing:S()},`collection_table_${t}`),n.jsx(H3,{open:!!L,onClose:X,cellRect:L?.cellRect,columnIndex:L?.columnIndex,propertyKey:L?.propertyKey,collection:y,entity:L?.entity,tableKey:U.current,customFieldValidator:Y,path:Oe,onCellValueChange:Be},`popup_form_${L?.columnIndex}_${L?.entity?.id}`),b&&n.jsx(Q3,{entityOrEntitiesToDelete:b,path:t,collection:y,callbacks:y.callbacks,open:!!b,onEntityDelete:R,onMultipleEntitiesDelete:$,onClose:()=>p(void 0)})]})},de);function Bt(){const[e,t]=f.useState([]),c=f.useCallback(l=>{let a;e.map(s=>s.id).includes(l.id)?a=e.filter(s=>s.id!==l.id):a=[...e,l],t(a)},[e]),i=f.useCallback(l=>e.map(a=>a.id).includes(l.id),[e]);return{selectedEntities:e,setSelectedEntities:t,isEntitySelected:i,toggleEntitySelection:c}}function $3({fullPath:e,collection:t,filter:c,sortBy:i,onCountChange:l}){const a=Qe(),s=Ae(),[d,u]=f.useState(void 0),[A,_]=f.useState(void 0),g=i?i[0]:void 0,y=i?i[1]:void 0,h=f.useMemo(()=>s.resolveAliasesFrom(e),[e,s.resolveAliasesFrom]);return f.useEffect(()=>{a.countEntities({path:h,collection:t,filter:c,orderBy:g,order:y}).then(u).catch(_)},[e,a,h,t,c,g,y]),f.useEffect(()=>{l&&l(d??0)},[l,d]),A?null:n.jsx(j,{className:"w-full text-ellipsis block overflow-hidden whitespace-nowrap max-w-xs text-left w-fit-content",variant:"caption",color:"secondary",children:d!==void 0?`${d} entities`:n.jsx(Ve,{className:"w-full max-w-[80px] mt-1"})})}function oa(e,t){if(e.includes(".")){const[c,...i]=e.split(".");return{properties:{[c]:oa(i.join("."),t)}}}return{properties:{[e]:{columnWidth:t}}}}function ra({onSingleEntitySelected:e,onMultipleEntitiesSelected:t,multiselect:c,collection:i,path:l,selectedEntityIds:a,description:s,forceFilter:d,maxSelection:u}){const A=Uo(),_=Cn(),g=Ae(),y=re(),h=g.resolveAliasesFrom(l),I=Qe(),[b,p]=f.useState([]),w=Bt();f.useEffect(()=>{let C=!1;const N=a?.map(M=>M?.toString()).filter(Boolean);return N&&i?Promise.all(N.map(M=>I.fetchEntity({path:h,entityId:M,collection:i}))).then(M=>{if(!C){const H=M.filter(Z=>Z!==void 0);w.setSelectedEntities(H),p(H)}}):(w.setSelectedEntities([]),p([])),()=>{C=!0}},[I,h,a,i,w.setSelectedEntities]);const k=f.useCallback(()=>{y.onAnalyticsEvent?.("reference_selection_clear",{path:h}),w.setSelectedEntities([]),!c&&e?e(null):t&&t([])},[c,t,e]),K=f.useCallback(C=>{let N;const M=w.selectedEntities;if(y.onAnalyticsEvent?.("reference_selection_toggle",{path:h,entityId:C.id}),M){if(M.map(H=>H.id).indexOf(C.id)>-1)N=M.filter(H=>H.id!==C.id);else{if(u&&M.length>=u)return;N=[...M,C]}w.setSelectedEntities(N),t&&t(N)}},[t,w.selectedEntities]),m=f.useCallback(C=>{!c&&e?(y.onAnalyticsEvent?.("reference_selected_single",{path:h,entityId:C.id}),e(C),A.close(!1)):K(C)},[A,c,e,K]),v=f.useCallback(()=>{y.onAnalyticsEvent?.("reference_selection_new_entity",{path:h}),_.open({path:h,collection:i,updateUrl:!0,onUpdate:({entity:C})=>{p([C,...b]),m(C)},closeOnSave:!0})},[_,h,i,b,m]),S=f.useCallback(({entity:C,size:N,width:M,frozen:H})=>{const Z=w.selectedEntities,O=Z&&Z.map(oe=>oe.id).indexOf(C.id)>-1;return n.jsx(pt,{width:M,frozen:H,entity:C,size:N,isSelected:O,selectionEnabled:c,toggleEntitySelection:K,hideId:i?.hideIdFromCollection})},[c,w.selectedEntities,K,i?.hideIdFromCollection]),B=f.useCallback(C=>{C.stopPropagation(),A.close(!1)},[A]);if(!i)return n.jsx(pe,{error:"Could not find collection with id "+i});const P=f.useMemo(()=>Me({collection:i,path:h,values:{},fields:y.fields}),[i,y.fields,h]),F=Xi(P,!1),D=Ct({fullPath:h,collection:i,entitiesDisplayedFirst:b,forceFilter:d});return n.jsxs("div",{className:"flex flex-col h-full",children:[n.jsx("div",{className:"flex-grow",children:b&&n.jsx(Kt,{displayedColumnIds:F,onEntityClick:m,tableController:D,tableRowActionsBuilder:S,title:n.jsx(j,{variant:"subtitle2",children:i.singularName?`Select ${i.singularName}`:`Select from ${i.name}`}),defaultSize:i.defaultSize,properties:P.properties,forceFilter:d,inlineEditing:!1,selectionController:w,actions:n.jsx(j3,{collection:i,path:h,onNewClick:v,onClear:k})})}),n.jsxs(wn,{translucent:!1,children:[s&&n.jsx(j,{variant:"body2",className:"flex-grow text-left",children:s}),n.jsx(te,{onClick:B,color:"primary",variant:"filled",children:"Done"})]})]})}function j3({collection:e,path:t,onClear:c,onNewClick:i}){const l=yn(),a=Ge(),s=i?u=>{u.preventDefault(),i()}:void 0,d=Vo(e,l,Xe(t),null)&&s&&(a?n.jsxs(te,{onClick:s,startIcon:n.jsx(hn,{}),variant:"outlined",color:"primary",children:["Add ",e.singularName??e.name]}):n.jsx(te,{onClick:s,size:"medium",variant:"outlined",color:"primary",children:n.jsx(hn,{})}));return n.jsxs(n.Fragment,{children:[n.jsx(te,{onClick:c,variant:"text",color:"primary",children:"Clear"}),d]})}function fn({title:e,children:t,invisible:c=!1,initiallyExpanded:i=!0,onExpandedChange:l,titleClassName:a,asField:s,className:d}){En("ExpandablePanel",`
1583
+ `,Ji={"==":"==","!=":"!=",">":">","<":"<",">=":">=","<=":"<=","not-in":"not in",in:"in","array-contains":"Contains","array-contains-any":"Any"},Zi=["array-contains-any","in"];function S3({name:e,isArray:t,mode:c,value:i,setValue:a,title:l}){const s=t?["array-contains"]:["==","!=",">","<",">=","<="],[d,u]=i||[s[0],void 0],[A,y]=f.useState(d),[h,I]=f.useState(u);function _(g,b){let p=b;const w=Zi.includes(A),k=Zi.includes(g);w!==k&&(p=k?b?[b]:[]:""),y(g),I(p===null?void 0:p);const v=p!==null&&Array.isArray(p)?p.length>0:p!==void 0;a(g&&v?[g,p]:void 0)}return n.jsxs("div",{className:"flex w-[440px] items-center",children:[n.jsx("div",{className:"w-[80px]",children:n.jsx(Xe,{value:A,onValueChange:g=>{_(g,h)},renderValue:g=>Ji[g],children:s.map(g=>n.jsx(xe,{value:g,children:Ji[g]},g))})}),n.jsx("div",{className:"flex-grow ml-2",children:n.jsx(Vn,{mode:c,size:"medium",value:h,onChange:g=>{_(A,g===null?void 0:g)},clearable:!0})})]})}const Xi="collectionGroupParent";function xi(e,t){return f.useMemo(()=>e.propertiesOrder?Ri(e,e.propertiesOrder):B3(e,t),[e,t])}function Ri(e,t){return t.flatMap(c=>{const i=e.properties[c];return i?i.hideFromCollection?[null]:i.disabled&&typeof i.disabled=="object"&&i.disabled.hidden?[null]:i.dataType==="map"&&i.spreadChildren&&i.properties?vt(i,c):[{key:c,disabled:!!i.disabled||!!i.readOnly}]:e.additionalFields?.find(l=>l.id===c)?[{key:c,disabled:!0}]:e.subcollections&&e.subcollections.find(s=>ht(s)===c)?[{key:c,disabled:!0}]:e.collectionGroup&&c===Xi?[{key:c,disabled:!0}]:[null]}).filter(Boolean)}function B3(e,t){const c=Object.keys(e.properties),i=e.additionalFields??[],a=e.subcollections??[],l=[...c,...i.map(s=>s.id)];if(t){const s=a.map(d=>ht(d));l.push(...s.filter(d=>!l.includes(d)))}return e.collectionGroup&&l.push(Xi),Ri(e,l)}function vt(e,t,c){return e.dataType==="map"&&e.spreadChildren&&e.properties?Object.entries(e.properties).flatMap(([i,a])=>vt(a,`${t}.${i}`,c||!!e.disabled||!!e.readOnly)):[{key:t,disabled:c||!!e.disabled||!!e.readOnly}]}const E3={},ea=f.createContext(E3),F3=()=>f.useContext(ea),Kt=f.memo(function({forceFilter:t,actionsStart:c,actions:i,title:a,tableRowActionsBuilder:l,uniqueFieldValidator:s,getPropertyFor:d,onValueChange:u,selectionController:A,highlightedEntities:y,onEntityClick:h,onColumnResize:I,onSizeChanged:_,textSearchEnabled:g=!1,hoverRow:b=!0,inlineEditing:p=!1,additionalFields:w,displayedColumnIds:k,defaultSize:v,properties:K,tableController:{data:m,dataLoading:C,noMoreToLoad:B,dataLoadingError:P,filterValues:F,setFilterValues:D,sortBy:S,setSortBy:T,searchString:N,setSearchString:q,clearFilter:G,itemCount:V,setItemCount:oe,pageSize:O=50,paginationEnabled:H,checkFilterCombination:Z,setPopupCell:L},filterable:W=!0,sortable:Q=!0,endAdornment:X}){const ee=ze(),U=!!t,re=A?.selectedEntities?.length>0?A?.selectedEntities:y,J=ne(),[Y,x]=f.useState(v??"m"),[ge,He]=f.useState(void 0),ve=re?.map($=>$.id),fn=!!F&&Object.keys(F).length>0,An=()=>{!H||C||B||V!==void 0&&oe?.(V+O)},zn=f.useCallback(()=>{oe?.(O)},[O]),_o=f.useCallback(({rowData:$})=>{if(!p)return h&&h($)},[h,p]),mn=f.useCallback($=>{_&&_($),x($)},[]),Hn=f.useCallback($=>q?.($),[]),_n=f.useMemo(()=>w?w.map($=>({[$.id]:$})).reduce(($,se)=>({...$,...se}),{}):{},[w]);f.useEffect(()=>{const $=se=>{se.keyCode===27&&yo()};return document.addEventListener("keydown",$,!1),()=>{document.removeEventListener("keydown",$,!1)}});const Un=f.useCallback($=>{He($)},[]),yo=f.useCallback(()=>{He(void 0)},[]),z=s,Ae=f.useCallback(({column:$,columnIndex:se,rowData:Ke,rowIndex:Ue})=>{const ye=Ke,on=$.key;let Yn=$.custom?.disabled;const ho=ye.values?rn(ye.values,on):void 0,$n=d?.({propertyKey:on,propertyValue:ho,entity:ye})??$.custom.resolvedProperty;return $n?.disabled||(Yn=!1),$n?n.jsx(ie,{children:ye?n.jsx(c3,{readonly:!p,align:$.align??"left",propertyKey:on,property:$n,value:ye?.values?rn(ye.values,on):void 0,customFieldValidator:z,columnIndex:se,width:$.width,height:Ln(Y),entity:ye,disabled:Yn,path:ye.path},`property_table_cell_${ye.id}_${on}`):en()}):null},[z,p,Y,ve]),ae=f.useCallback(({column:$,rowData:se,width:Ke})=>{const Ue=se,ye=_n[$.key],on=ye.dependencies?Object.entries(Ue.values).filter(([ho,$n])=>ye.dependencies.includes(ho)).reduce((ho,$n)=>({...ho,...$n}),{}):Ue,Yn=ye.Builder;if(!Yn)throw new Error("No builder provided for additional field");return n.jsx(bt,{width:Ke,size:Y,value:on,selected:!1,disabled:!0,align:"left",allowScroll:!1,showExpandIcon:!1,disabledTooltip:"This column can't be edited directly",children:n.jsx(ie,{children:n.jsx(Yn,{entity:Ue,context:J})})},`additional_table_cell_${Ue.id}_${$.key}`)},[_n,Y,ve]),M=f.useMemo(()=>{const $=Object.entries(K).flatMap(([Ke,Ue])=>vt(Ue,Ke)).map(({key:Ke,disabled:Ue})=>{const ye=tt(K,Ke);if(!ye)throw Error("Internal error: no property found in path "+Ke);const on=na(ye);return{key:Ke,align:zz(ye),icon:Yn=>ke(ye,"small"),title:ye.name??Ke,sortable:Q&&(t?Object.keys(t).includes(Ke):!0),filter:!U&&on,width:Wi(ye),resizable:!0,custom:{resolvedProperty:ye,disabled:Ue}}}),se=w?w.map(Ke=>({key:Ke.id,align:"left",sortable:!1,title:Ke.name,width:Ke.width??200})):[];return[...$,...se]},[w,U,t,K,Q]),le=f.useMemo(()=>({key:"id_ewcfedcswdf3",width:ee?160:130,title:"ID",resizable:!1,frozen:ee,headerAlign:"center"}),[ee]),Ie=f.useMemo(()=>[le,...k.map($=>M.find(se=>se.key===$.key)).filter(Boolean)],[M,k,le]),Oe=f.useCallback($=>{const se=$.column,Ke=$.columns,Ue=se.key;if($.columnIndex===0)return l?l({entity:$.rowData,size:Y,width:se.width,frozen:se.frozen}):n.jsx(pt,{entity:$.rowData,width:se.width,frozen:se.frozen,isSelected:!1,size:Y});if(_n[Ue])return ae($);if($.columnIndex<Ke.length+1)return Ae($);throw Error("Internal: columns not mapped properly")},[_n,l,Y,ae,Ae]),vn=f.useCallback($=>{D?.({...$,...t})},[t]);return n.jsx(ea.Provider,{value:{setPopupCell:L,select:Un,onValueChange:u,size:Y,selectedCell:ge,selectedEntityIds:ve},children:n.jsxs("div",{className:"h-full w-full flex flex-col bg-white dark:bg-gray-950",children:[n.jsx(h3,{forceFilter:U,filterIsSet:fn,onTextSearch:g?Hn:void 0,clearFilter:G,size:Y,onSizeChanged:mn,title:a,actionsStart:c,actions:i,loading:C}),n.jsx($i,{data:m,columns:Ie,cellRenderer:Oe,onRowClick:p?void 0:h?_o:void 0,onEndReached:An,onResetPagination:zn,error:P,paginationEnabled:H,onColumnResize:I,size:Y,loading:C,filter:F,onFilterUpdate:D?vn:void 0,sortBy:S,onSortByUpdate:T,hoverRow:b,checkFilterCombination:Z,createFilterField:W?P3:void 0,rowClassName:f.useCallback($=>ve?.includes($.id)?"bg-gray-100 bg-opacity-75 dark:bg-gray-800 dark:bg-opacity-75":"",[ve]),className:"flex-grow",endAdornment:X})]})})},de);function P3({id:e,filterValue:t,setFilterValue:c,column:i,popupOpen:a,setPopupOpen:l}){if(!i.custom)return null;const{resolvedProperty:s}=i.custom,d=s?.dataType==="array",u=d?s.of:s;if(!u)return null;if(u.dataType==="reference")return n.jsx(g3,{value:t,setValue:c,name:e,isArray:d,path:u.path,title:s?.name,previewProperties:u?.previewProperties,popupOpen:a,setPopupOpen:l});if(u.dataType==="number"||u.dataType==="string"){const A=u.name,y=u.enumValues?tn(u.enumValues):void 0;return n.jsx(I3,{value:t,setValue:c,name:e,dataType:u.dataType,isArray:d,enumValues:y,title:A})}else if(u.dataType==="boolean"){const A=u.name;return n.jsx(b3,{value:t,setValue:c,name:e,title:A})}else if(u.dataType==="date"){const A=u.name;return n.jsx(S3,{value:t,setValue:c,name:e,mode:u.mode,isArray:d,title:A})}return n.jsx("div",{children:`Currently the filter field ${s.dataType} is not supported`})}function na(e,t=!1){return t?["string","number","date","reference"].includes(e.dataType):e.dataType==="array"?e.of?na(e.of,!0):!1:["string","number","boolean","date","reference","array"].includes(e.dataType)}function D3({data:e,entitiesDisplayedFirst:t}){if(!t)return e;const c=new Set(t.map(i=>i.id));return[...t,...e.filter(i=>!c.has(i.id))]}function N3(e,t,c=5e3){const[i,a]=f.useState(e),l=f.useRef(i.length??0),s=f.useRef(!1),d=f.useRef(t),u=!de(d.current,t),A=e.length>=l.current||u;return f.useEffect(()=>{const y=()=>{de(i,e)||(d.current=t,l.current=e.length,a(e)),s.current=!1};s.current=!0;let h;return A?y():h=setTimeout(y,c),()=>{clearTimeout(h),s.current&&A&&y()}},[e,c,t,A]),A?e:i}const T3=50;function Ct({fullPath:e,collection:t,entitiesDisplayedFirst:c,lastDeleteTimestamp:i,forceFilter:a}){const{initialFilter:l,initialSort:s,forceFilter:d}=t,[u,A]=f.useState(void 0),y=fe(),h=Qe(),I=f.useMemo(()=>y.resolveAliasesFrom(e),[e,y.resolveAliasesFrom]),_=a??d,g=t.pagination===void 0||!!t.pagination,b=typeof t.pagination=="number"?t.pagination:T3,[p,w]=f.useState(),[k,v]=f.useState(g?b:void 0),K=f.useCallback((O,H)=>h.isFilterCombinationValid?h.isFilterCombinationValid({path:I,collection:t,filterValues:O,sortBy:H}):!0,[]),m=f.useMemo(()=>{if(s&&_&&!K(_,s)){console.warn("Initial sort is not compatible with the force filter. Ignoring initial sort");return}return s},[s,_]),[C,B]=f.useState(_??l??void 0),[P,F]=f.useState(m),D=f.useCallback(()=>B(_??void 0),[_]),S=f.useCallback(O=>{if(_){console.warn("Filter is not compatible with the force filter. Ignoring filter");return}O&&Object.keys(O).length===0?B(void 0):B(O)},[_]),{data:T,dataLoading:N,noMoreToLoad:q,dataLoadingError:G}=Gc({path:e,collection:t,filterValues:C,sortBy:P,searchString:p,itemCount:k}),V=D3({data:T,entitiesDisplayedFirst:c});return{data:N3(V,{filterValues:C,sortBy:P,searchString:p,lastDeleteTimestamp:i}),dataLoading:N,noMoreToLoad:q,dataLoadingError:G,filterValues:C,setFilterValues:S,sortBy:P,setSortBy:F,searchString:p,setSearchString:w,clearFilter:D,itemCount:k,setItemCount:v,paginationEnabled:g,pageSize:b,checkFilterCombination:K,popupCell:u,setPopupCell:A}}function M3(e,t){const[c,i]=f.useState(),{navigator:a}=f.useContext(be.UNSAFE_NavigationContext),l=be.useNavigate(),s=()=>{i(void 0)},d=()=>{t(),i(void 0),l(-1)},u=f.useCallback(({action:A,location:y,retry:h})=>{switch(A){case"REPLACE":{h();return}case"POP":i(y)}},[]);return f.useEffect(()=>{if(!e||c||!("block"in a))return;const A=a.block(y=>{const h={...y,retry(){A(),y.retry()}};u(h)});return A},[a,u,e,c]),{navigationWasBlocked:!!c,handleCancel:s,handleOk:d}}function O3({open:e,handleOk:t,handleCancel:c,body:i,title:a}){return n.jsxs(Jo,{open:e,onOpenChange:l=>l?c():t(),children:[n.jsxs(Zo,{children:[n.jsx(j,{variant:"h6",children:a}),i,n.jsx(j,{children:"Are you sure you want to leave this page?"})]}),n.jsxs(kn,{children:[n.jsx(te,{variant:"text",onClick:c,autoFocus:!0,children:" Cancel "}),n.jsx(te,{onClick:t,children:" Ok "})]})]})}const oa=f.createContext({width:"",blocked:!1,setBlocked:e=>{},setBlockedNavigationMessage:e=>{},close:()=>{}}),Uo=()=>f.useContext(oa);function L3(){const t=co().sidePanels,c=[...t];return c.push(void 0),n.jsx(n.Fragment,{children:c.map((i,a)=>n.jsx(Q3,{panel:i,offsetPosition:t.length-a-1},`side_dialog_${a}`))})}function Q3({offsetPosition:e,panel:t}){const[c,i]=f.useState(!1),[a,l]=f.useState(!1),[s,d]=f.useState(),u=f.useRef(t?.width),A=u.current,y=co(),{navigationWasBlocked:h,handleOk:I,handleCancel:_}=M3(a&&!c,()=>l(!1));f.useEffect(()=>{t&&(u.current=t.width)},[t]);const g=()=>{l(!1),i(!1),y.close(),t?.onClose?.()},b=()=>{i(!1)},p=w=>{a&&!w?i(!0):(y.close(),t?.onClose?.())};return n.jsxs(oa.Provider,{value:{blocked:a,setBlocked:l,setBlockedNavigationMessage:d,width:A,close:p},children:[n.jsxs(Vt,{open:!!t,onOpenChange:w=>!w&&p(),children:[t&&n.jsx("div",{className:"transform max-w-[100vw] lg:max-w-[95vw] flex flex-col h-full transition-all duration-250 ease-in-out bg-white dark:bg-gray-900 ",style:{width:t.width,transform:`translateX(-${e*200}px)`},children:n.jsx(ie,{children:t.component})}),!t&&n.jsx("div",{style:{width:A}})]}),n.jsx(O3,{open:h||c,handleOk:c?g:I,handleCancel:c?b:_,body:s})]})}function V3({entityOrEntitiesToDelete:e,collection:t,onClose:c,open:i,callbacks:a,onEntityDelete:l,onMultipleEntitiesDelete:s,path:d}){const u=Qe(),A=an(),[y,h]=f.useState(!1),[I,_]=f.useState(),[g,b]=f.useState(),p=ne();f.useEffect(()=>{if(e){const S=Array.isArray(e)&&e.length===1?e[0]:e;_(S),b(Array.isArray(S))}},[e]);const w=f.useMemo(()=>Me({collection:t,path:d,fields:p.fields}),[t,d]),k=f.useCallback(()=>{c()},[c]),v=f.useCallback(S=>{console.debug("Deleted",S)},[]),K=f.useCallback((S,T)=>{A.open({type:"error",message:"Error deleting: "+T?.message}),console.error("Error deleting entity"),console.error(T)},[w.name]),m=f.useCallback((S,T)=>{A.open({type:"error",message:"Error before deleting: "+T?.message}),console.error(T)},[w.name]),C=f.useCallback((S,T)=>{A.open({type:"error",message:"Error after deleting: "+T?.message}),console.error(T)},[w.name]),B=f.useCallback(S=>zc({dataSource:u,entity:S,collection:w,callbacks:a,onDeleteSuccess:v,onDeleteFailure:K,onPreDeleteHookError:m,onDeleteSuccessHookError:C,context:p}),[u,w,a,v,K,m,C,p]),P=f.useCallback(async()=>{I&&(h(!0),g?Promise.all(I.map(B)).then(S=>{h(!1),s&&I&&s(d,I),S.every(Boolean)?A.open({type:"success",message:`${w.name}: multiple deleted`}):S.some(Boolean)?A.open({type:"warning",message:`${w.name}: Some of the entities have been deleted, but not all`}):A.open({type:"error",message:`${w.name}: Error deleting entities`}),c()}):B(I).then(S=>{h(!1),S&&(l&&I&&l(d,I),A.open({type:"success",message:`${w.singularName??w.name} deleted`}),c())}))},[I,g,B,s,d,c,A,w.name,l]);let F;if(I&&g)F=n.jsx(n.Fragment,{children:"Multiple entities"});else{const S=I;F=S?n.jsx(yt,{entity:S,collection:t,path:d}):n.jsx(n.Fragment,{})}const D=g?n.jsxs(n.Fragment,{children:[n.jsx("b",{children:w.name}),": Confirm multiple delete?"]}):`Would you like to delete this ${w.singularName??w.name}?`;return n.jsxs(Jo,{maxWidth:"2xl","aria-labelledby":"delete-dialog",open:i,onOpenChange:S=>S?void 0:c(),children:[n.jsxs(Zo,{fullHeight:!0,children:[n.jsx(j,{variant:"subtitle2",className:"p-4",children:D}),!g&&n.jsx("div",{className:"p-4",children:F})]}),n.jsxs(kn,{children:[y&&n.jsx(Gn,{size:"small"}),n.jsx(te,{onClick:k,disabled:y,variant:"text",color:"primary",children:"Cancel"}),n.jsx(te,{autoFocus:!0,disabled:y,onClick:P,variant:"filled",color:"primary",children:"Ok"})]})]})}function Yo(e){return Array.isArray(e)?e:e?[e]:[]}function W3({collection:e,relativePath:t,parentPathSegments:c,onNewClick:i,onMultipleDeleteClick:a,selectionEnabled:l,path:s,selectionController:d,tableController:u,collectionEntitiesCount:A}){const y=ne(),h=y.plugins??[],I=In(),_=ze(),g=d.selectedEntities,b=Qo(e,I,Ze(s),null)&&i&&(_?n.jsxs(te,{id:`add_entity_${s}`,onClick:i,startIcon:n.jsx(gn,{}),size:"large",variant:"filled",color:"primary",children:["Add ",e.singularName??e.name]}):n.jsx(te,{id:`add_entity_${s}`,onClick:i,size:"medium",variant:"filled",color:"primary",children:n.jsx(gn,{})})),p=it(e,I,Ze(s),null);let w;if(l){const m=_?n.jsxs(te,{variant:"text",disabled:!g?.length||!p,startIcon:n.jsx(Bo,{}),onClick:a,color:"primary",className:"lg:w-20",children:["(",g?.length,")"]}):n.jsx(R,{color:"primary",disabled:!g?.length||!p,onClick:a,children:n.jsx(Bo,{})});w=n.jsx(_e,{title:p?"Delete":"You have selected at least one entity you cannot delete",children:m})}const k={path:s,relativePath:t,parentPathSegments:c,collection:e,selectionController:d,context:y,tableController:u,collectionEntitiesCount:A},v=[];v.push(...Yo(e.Actions)),h&&h.forEach(m=>{m.collections?.CollectionActions&&v.push(...Yo(m.collections?.CollectionActions))});const K=n.jsx(n.Fragment,{children:v.map((m,C)=>n.jsx(m,{...k},`actions_${C}`))});return n.jsxs(n.Fragment,{children:[K,w,b]})}function G3({containerRef:e,innerRef:t,x:c,y:i,onMove:a}){let l=0,s=0;const d=f.useRef(!1),u=g=>{if(g.button!==0||!e.current||g.defaultPrevented||g.innerClicked)return;const{x:b,y:p}=e.current.getBoundingClientRect();l=g.screenX-b,s=g.screenY-p,document.addEventListener("mousemove",I),document.addEventListener("mouseup",h),document.addEventListener("selectstart",y),d.current=!0},A=g=>{g.innerClicked=!0},y=g=>{g.preventDefault(),g.stopPropagation()},h=g=>{document.removeEventListener("mousemove",I),document.removeEventListener("mouseup",h),document.removeEventListener("selectstart",y),g.stopPropagation(),d.current=!1},I=g=>{g.target.localName==="input"||!d.current||(a({x:g.screenX-l,y:g.screenY-s}),g.stopPropagation())},_=()=>{e.current&&(e.current.style.top=`${i}px`,e.current.style.left=`${c}px`)};f.useEffect(()=>{const g=e.current,b=t.current;if(!(!g||!b))return b&&b.addEventListener("mousedown",A),g&&g.addEventListener("mousedown",u),_(),()=>{g&&g.removeEventListener("mousedown",u),b&&b.removeEventListener("mousedown",A)}})}function z3(){const[e,t]=f.useState({width:0,height:0});return f.useLayoutEffect(()=>{function c(){t({width:window.innerWidth,height:window.innerHeight})}return window.addEventListener("resize",c),c(),()=>window.removeEventListener("resize",c)},[]),e}const H3=({onResize:e})=>{const t=f.useRef(0),c=f.useRef(null),i=f.useRef(e);i.current=e;const a=f.useCallback(s=>{t.current&&cancelAnimationFrame(t.current),t.current=requestAnimationFrame(()=>{i.current(s)})},[]),l=f.useCallback(()=>{const s=c.current;s&&s.contentDocument&&s.contentDocument.defaultView&&s.contentDocument.defaultView.addEventListener("resize",a)},[a]);return f.useEffect(()=>{const s=c.current;return()=>{s&&s.contentDocument&&s.contentDocument.defaultView&&s.contentDocument.defaultView.removeEventListener("resize",a)}},[a]),n.jsx("object",{onLoad:l,ref:c,tabIndex:-1,type:"text/html",data:"about:blank",title:"",style:{position:"absolute",top:0,left:0,height:"100%",width:"100%",pointerEvents:"none",zIndex:-1,opacity:0}})};function U3(e){return e.open?n.jsx(Y3,{...e}):null}function Y3({tableKey:e,entity:t,customFieldValidator:c,propertyKey:i,collection:a,path:l,cellRect:s,open:d,onClose:u,onCellValueChange:A,container:y}){const h=Qe(),I=ne(),[_,g]=f.useState(),[b,p]=f.useState(),w=t?.id,[k,v]=f.useState(t);f.useEffect(()=>w&&a?h.listenEntity?.({path:l,entityId:w,collection:a,onUpdate:v}):()=>{},[h,w,a,l]);const[K,m]=f.useState(k?.values),C=a?Me({collection:a,path:l,values:K,entityId:w,fields:I.fields}):void 0,B=z3(),P=f.useRef(null),F=f.useRef(null),D=f.useRef(!1),S=f.useCallback(()=>{if(!s)throw Error("getInitialLocation error");return{x:s.left<B.width-s.right?s.x+s.width/2:s.x-s.width/2,y:s.top<B.height-s.bottom?s.y+s.height/2:s.y-s.height/2}},[s,B.height,B.width]),T=f.useCallback(({x:H,y:Z})=>{const L=P.current?.getBoundingClientRect();if(!L)throw Error("normalizePosition called before draggableBoundingRect is set");return{x:Math.max(0,Math.min(H,B.width-L.width)),y:Math.max(0,Math.min(Z,B.height-L.height))}},[B]),N=f.useCallback(H=>{const Z=P.current?.getBoundingClientRect();if(!s||!Z)return;const L=H??T(S());(!b||L.x!==b.x||L.y!==b.y)&&p(L)},[s,S,T,b]);G3({containerRef:P,innerRef:F,x:b?.x,y:b?.y,onMove:N}),f.useEffect(()=>{D.current=!1},[i,k]),f.useLayoutEffect(()=>{const H=P.current?.getBoundingClientRect();!s||!H||D.current||(N(),D.current=!0)},[s,N,D.current]),f.useLayoutEffect(()=>{N(b)},[B,s]);const q=f.useMemo(()=>{if(!(!C||!w))return Ki(w,i&&C.properties[i]?{[i]:C.properties[i]}:{},c)},[C,w,i,c]),G=f.useCallback(()=>N(b),[b,N]),V=async H=>(g(null),a&&k&&A&&i?A({value:H[i],propertyKey:i,entity:k,setError:g,onValueUpdated:()=>{},fullPath:l,context:I}):Promise.resolve());if(!k)return n.jsx(n.Fragment,{});const oe=k&&n.jsxs("div",{className:`text-gray-900 dark:text-white overflow-auto rounded rounded-md bg-white dark:bg-gray-950 ${d?"":"hidden"} cursor-grab max-w-[100vw]`,children:[n.jsx(Fe.Formik,{initialValues:k?.values??{},validationSchema:q,validateOnMount:!0,validate:H=>console.debug("Validating",H),onSubmit:(H,Z)=>{V(H).then(()=>u()).finally(()=>Z.setSubmitting(!1))},children:({values:H,setFieldValue:Z,handleSubmit:L,isSubmitting:W})=>{if(f.useEffect(()=>{de(H,K)||m(H)},[H]),!k)return n.jsx(we,{error:"PopupFormField misconfiguration"});if(!C)return n.jsx(n.Fragment,{});const Q=W,X={collection:C,entityId:w,values:H,path:l,setFieldValue:Z,save:V},ee=i&&wn(C.properties,i),U=i&&ee?{propertyKey:i,disabled:W||Cn(ee)||!!ee.disabled,property:ee,includeDescription:!1,underlyingValueHasChanged:!1,context:X,tableMode:!0,partOfArray:!1,partOfBlock:!1,autoFocus:d}:void 0;let re=n.jsx(n.Fragment,{children:n.jsx("div",{className:"w-[560px] max-w-full max-h-[85vh]",children:n.jsxs(Fe.Form,{onSubmit:L,noValidate:!0,children:[n.jsx("div",{className:"mb-1 p-4 flex flex-col relative",children:n.jsx("div",{ref:F,className:"cursor-auto",style:{cursor:"auto !important"},children:U&&n.jsx(pn,{...U})})}),n.jsx(kn,{children:n.jsx(te,{variant:"filled",color:"primary",type:"submit",disabled:Q,children:"Save"})})]})},`popup_form_${e}_${w}_${i}`)});const J=I.plugins;return J&&J.forEach(Y=>{Y.form?.provider&&(re=n.jsx(Y.form.provider.Component,{status:"existing",path:l,collection:C,entity:k,context:I,currentEntityId:w,formContext:X,...Y.form.provider.props,children:re}))}),re}}),_&&n.jsx(j,{color:"error",children:_.message})]}),O=n.jsxs("div",{style:{boxShadow:"0 0 0 2px rgba(128,128,128,0.2)"},className:`inline-block fixed z-20 shadow-outline rounded-md bg-white dark:bg-gray-950 ${d?"visible":"invisible"} cursor-grab overflow-visible`,ref:P,children:[n.jsx(H3,{onResize:G}),n.jsxs("div",{className:"overflow-hidden",children:[oe,n.jsx("div",{className:"absolute -top-3.5 -right-3.5 bg-gray-500 rounded-full",style:{width:"32px",height:"32px"},children:n.jsx(R,{size:"small",onClick:H=>{H.stopPropagation(),u()},children:n.jsx(cn,{className:"text-white",size:"small"})})})]})]},`draggable_${i}_${w}_${d}`);return n.jsx(Va.Root,{asChild:!0,container:y,children:O})}const $3="collectionGroupParent",St=f.memo(function({fullPath:t,parentPathSegments:c,isSubCollection:i,className:a,...l}){const s=Qe(),d=fe(),u=Sn(),A=In(),y=En(),h=ne(),I=f.useRef(null),_=f.useMemo(()=>{const z=y?.getCollectionConfig(t);return z?qe(l,z):l},[l,t,y?.getCollectionConfig]),[g,b]=f.useState(void 0),[p,w]=f.useState(void 0),[k,v]=f.useState(0),[K,m]=f.useState(0),C=f.useCallback(()=>{const z=g;setTimeout(()=>{z===g&&b(void 0)},2400)},[g]),B=f.useCallback(z=>ct(_,A,Ze(t),z??null)?_.inlineEditing===void 0||_.inlineEditing:!1,[_,A,t]),P=_.selectionEnabled===void 0||_.selectionEnabled,F=!B(),[D,S]=f.useState(!1),T=Bt(),N=_.selectionController??T,{selectedEntities:q,toggleEntitySelection:G,isEntitySelected:V,setSelectedEntities:oe}=N;f.useEffect(()=>{w(void 0)},[q]);const O=Ct({fullPath:t,collection:_,entitiesDisplayedFirst:[],lastDeleteTimestamp:k}),H=f.useRef(Math.random().toString(36)),Z=O.popupCell,L=f.useCallback(()=>{O.setPopupCell?.(void 0)},[O.setPopupCell]),W=f.useCallback(z=>(b(z),h.onAnalyticsEvent?.("edit_entity_clicked",{path:z.path,entityId:z.id}),u.open({entityId:z.id,path:t,collection:_,updateUrl:!0,onClose:C})),[t,_,u]),Q=f.useCallback(()=>{h.onAnalyticsEvent?.("new_entity_click",{path:t}),u.open({path:t,collection:_,updateUrl:!0,onClose:C})},[t,_,u]),X=f.useCallback(z=>{h.onAnalyticsEvent?.("single_delete_dialog_open",{path:t}),w(z)},[h,t]),ee=f.useCallback(()=>{h.onAnalyticsEvent?.("multiple_delete_dialog_open",{path:t}),w(q)},[h,t,q]),U=f.useCallback((z,Ae)=>{h.onAnalyticsEvent?.("single_entity_deleted",{path:t}),oe(ae=>ae.filter(M=>M.id!==Ae.id)),v(Date.now())},[h,t,oe]),re=f.useCallback((z,Ae)=>{h.onAnalyticsEvent?.("multiple_entities_deleted",{path:t}),oe([]),w(void 0),v(Date.now())},[oe]),J=f.useCallback((z,Ae)=>{if(y){const ae=y.getCollectionConfig(z),M=qe(ae,Ae);y.onCollectionModified(z,M)}},[y]),Y=f.useCallback(({width:z,key:Ae})=>{if(!wn(_.properties,Ae))return;const ae=ra(Ae,z);J(t,ae)},[_,J,t]),x=f.useCallback(z=>{y&&J(t,{defaultSize:z})},[J,t,y]),ge=Qo(_,A,Ze(t),null),He=f.useCallback(({name:z,value:Ae,property:ae,entityId:M})=>s.checkUniqueField(t,z,Ae,ae,M),[t]),ve=({fullPath:z,context:Ae,value:ae,propertyKey:M,onValueUpdated:le,setError:Ie,entity:Oe})=>{const vn=Fe.setIn({...Oe.values},M,ae),$={path:z,entityId:Oe.id,values:vn,previousValues:Oe.values,collection:_,status:"existing"};return Fr({...$,callbacks:_.callbacks,dataSource:s,context:Ae,onSaveSuccess:()=>le(),onSaveFailure:se=>{console.error("Save failure"),console.error(se),Ie(se)}})},fn=d.resolveAliasesFrom(t),An=f.useMemo(()=>Me({collection:_,path:t,fields:h.fields}),[_,t]),zn=f.useCallback(({propertyKey:z,propertyValue:Ae,entity:ae})=>{let M=wn(_.properties,z);return M||(M=wn(An.properties,z)),Ne({propertyKey:z,propertyOrBuilder:M,path:t,propertyValue:Ae,values:ae.values,entityId:ae.id,fields:h.fields})},[_.properties,h.fields,t,An.properties]),_o=xi(An,!0),mn=f.useCallback(z=>{b(z),h.onAnalyticsEvent?.("copy_entity_click",{path:z.path,entityId:z.id}),u.open({entityId:z.id,path:t,copy:!0,collection:_,updateUrl:!0,onClose:C})},[u,_,t,C]),Hn=f.useCallback(z=>{b(z),h.onAnalyticsEvent?.("entity_click",{path:z.path,entityId:z.id}),u.open({entityId:z.id,path:z.path,collection:_,updateUrl:!0,onClose:C})},[u,_,t,C]),_n=f.useMemo(()=>{const z=_.subcollections?.map(ae=>({id:ht(ae),name:ae.name,width:200,dependencies:[],Builder:({entity:M})=>n.jsx(te,{color:"primary",variant:"outlined",startIcon:n.jsx(Eo,{size:"small"}),onClick:le=>{le.stopPropagation(),u.open({path:t,entityId:M.id,selectedSubPath:ae.alias??ae.path,collection:_,updateUrl:!0})},children:ae.name})}))??[],Ae=_.collectionGroup?[{id:$3,name:"Parent entities",width:260,dependencies:[],Builder:({entity:ae})=>{const M=d.getParentReferencesFromPath(ae.path);return n.jsx(n.Fragment,{children:M.map(le=>n.jsx(nn,{reference:le,size:"tiny"},le.path+"/"+le.id))})}}]:[];return[..._.additionalFields??[],...z,...Ae]},[_,t]),Un=f.useCallback(({entity:z,size:Ae,width:ae,frozen:M})=>{const le=V(z),Ie=it(_,A,Ze(t),z);return n.jsx(pt,{entity:z,width:ae,frozen:M,isSelected:le,selectionEnabled:P,size:Ae,toggleEntitySelection:G,onEditClicked:Hn,onCopyClicked:ge?mn:void 0,onDeleteClicked:Ie?X:void 0,hideId:_?.hideIdFromCollection})},[V,_,A,t,P,G,Hn,ge,mn]),yo=n.jsx(Ui,{open:D,onOpenChange:S,enabled:!!_.description,trigger:n.jsxs("div",{className:"flex flex-col items-start",children:[n.jsx(j,{variant:"subtitle1",className:`leading-none truncate max-w-[160px] lg:max-w-[240px] ${_.description?"cursor-pointer":"cursor-auto"}`,onClick:_.description?z=>{S(!0),z.stopPropagation()}:void 0,children:`${_.name}`}),n.jsx(j3,{fullPath:t,collection:_,filter:O.filterValues,sortBy:O.sortBy,onCountChange:m})]}),children:_.description&&n.jsx("div",{className:"m-4 text-gray-900 dark:text-white",children:n.jsx(lo,{source:_.description})})});return n.jsxs("div",{className:E("overflow-hidden h-full w-full",a),ref:I,children:[n.jsx(Kt,{additionalFields:_n,tableController:O,displayedColumnIds:_o,onSizeChanged:x,onEntityClick:W,onColumnResize:Y,onValueChange:ve,tableRowActionsBuilder:Un,uniqueFieldValidator:He,title:yo,selectionController:N,highlightedEntities:g?[g]:[],defaultSize:_.defaultSize,properties:An.properties,getPropertyFor:zn,actions:n.jsx(W3,{parentPathSegments:c??[],collection:_,tableController:O,onMultipleDeleteClick:ee,onNewClick:Q,path:t,relativePath:_.path,selectionController:N,selectionEnabled:P,collectionEntitiesCount:K}),hoverRow:F,inlineEditing:B()},`collection_table_${t}`),n.jsx(U3,{open:!!Z,onClose:L,cellRect:Z?.cellRect,propertyKey:Z?.propertyKey,collection:_,entity:Z?.entity,tableKey:H.current,customFieldValidator:He,path:fn,onCellValueChange:ve,container:I.current},`popup_form_${Z?.propertyKey}_${Z?.entity?.id}`),p&&n.jsx(V3,{entityOrEntitiesToDelete:p,path:t,collection:_,callbacks:_.callbacks,open:!!p,onEntityDelete:U,onMultipleEntitiesDelete:re,onClose:()=>w(void 0)})]})},de);function Bt(){const[e,t]=f.useState([]),c=f.useCallback(a=>{let l;e.map(s=>s.id).includes(a.id)?l=e.filter(s=>s.id!==a.id):l=[...e,a],t(l)},[e]),i=f.useCallback(a=>e.map(l=>l.id).includes(a.id),[e]);return{selectedEntities:e,setSelectedEntities:t,isEntitySelected:i,toggleEntitySelection:c}}function j3({fullPath:e,collection:t,filter:c,sortBy:i,onCountChange:a}){const l=Qe(),s=fe(),[d,u]=f.useState(void 0),[A,y]=f.useState(void 0),h=i?i[0]:void 0,I=i?i[1]:void 0,_=f.useMemo(()=>s.resolveAliasesFrom(e),[e,s.resolveAliasesFrom]);return f.useEffect(()=>{l.countEntities({path:_,collection:t,filter:c,orderBy:h,order:I}).then(u).catch(y)},[e,l,_,t,c,h,I]),f.useEffect(()=>{a&&a(d??0)},[a,d]),A?null:n.jsx(j,{className:"w-full text-ellipsis block overflow-hidden whitespace-nowrap max-w-xs text-left w-fit-content",variant:"caption",color:"secondary",children:d!==void 0?`${d} entities`:n.jsx(Ve,{className:"w-full max-w-[80px] mt-1"})})}function ra(e,t){if(e.includes(".")){const[c,...i]=e.split(".");return{properties:{[c]:ra(i.join("."),t)}}}return{properties:{[e]:{columnWidth:t}}}}function ta({onSingleEntitySelected:e,onMultipleEntitiesSelected:t,multiselect:c,collection:i,path:a,selectedEntityIds:l,description:s,forceFilter:d,maxSelection:u}){const A=Uo(),y=Sn(),h=fe(),I=ne(),_=h.resolveAliasesFrom(a),g=Qe(),[b,p]=f.useState([]),w=Bt();f.useEffect(()=>{let S=!1;const T=l?.map(N=>N?.toString()).filter(Boolean);return T&&i?Promise.all(T.map(N=>g.fetchEntity({path:_,entityId:N,collection:i}))).then(N=>{if(!S){const q=N.filter(G=>G!==void 0);w.setSelectedEntities(q),p(q)}}):(w.setSelectedEntities([]),p([])),()=>{S=!0}},[g,_,l,i,w.setSelectedEntities]);const k=f.useCallback(()=>{I.onAnalyticsEvent?.("reference_selection_clear",{path:_}),w.setSelectedEntities([]),!c&&e?e(null):t&&t([])},[c,t,e]),v=f.useCallback(S=>{let T;const N=w.selectedEntities;if(I.onAnalyticsEvent?.("reference_selection_toggle",{path:_,entityId:S.id}),N){if(N.map(q=>q.id).indexOf(S.id)>-1)T=N.filter(q=>q.id!==S.id);else{if(u&&N.length>=u)return;T=[...N,S]}w.setSelectedEntities(T),t&&t(T)}},[t,w.selectedEntities]),K=f.useCallback(S=>{!c&&e?(I.onAnalyticsEvent?.("reference_selected_single",{path:_,entityId:S.id}),e(S),A.close(!1)):v(S)},[A,c,e,v]),m=f.useCallback(()=>{I.onAnalyticsEvent?.("reference_selection_new_entity",{path:_}),y.open({path:_,collection:i,updateUrl:!0,onUpdate:({entity:S})=>{p([S,...b]),K(S)},closeOnSave:!0})},[y,_,i,b,K]),C=f.useCallback(({entity:S,size:T,width:N,frozen:q})=>{const G=w.selectedEntities,V=G&&G.map(oe=>oe.id).indexOf(S.id)>-1;return n.jsx(pt,{width:N,frozen:q,entity:S,size:T,isSelected:V,selectionEnabled:c,toggleEntitySelection:v,hideId:i?.hideIdFromCollection})},[c,w.selectedEntities,v,i?.hideIdFromCollection]),B=f.useCallback(S=>{S.stopPropagation(),A.close(!1)},[A]);if(!i)return n.jsx(we,{error:"Could not find collection with id "+i});const P=f.useMemo(()=>Me({collection:i,path:_,values:{},fields:I.fields}),[i,I.fields,_]),F=xi(P,!1),D=Ct({fullPath:_,collection:i,entitiesDisplayedFirst:b,forceFilter:d});return n.jsxs("div",{className:"flex flex-col h-full",children:[n.jsx("div",{className:"flex-grow",children:b&&n.jsx(Kt,{displayedColumnIds:F,onEntityClick:K,tableController:D,tableRowActionsBuilder:C,title:n.jsx(j,{variant:"subtitle2",children:i.singularName?`Select ${i.singularName}`:`Select from ${i.name}`}),defaultSize:i.defaultSize,properties:P.properties,forceFilter:d,inlineEditing:!1,selectionController:w,actions:n.jsx(q3,{collection:i,path:_,onNewClick:m,onClear:k})})}),n.jsxs(kn,{translucent:!1,children:[s&&n.jsx(j,{variant:"body2",className:"flex-grow text-left",children:s}),n.jsx(te,{onClick:B,color:"primary",variant:"filled",children:"Done"})]})]})}function q3({collection:e,path:t,onClear:c,onNewClick:i}){const a=In(),l=ze(),s=i?u=>{u.preventDefault(),i()}:void 0,d=Qo(e,a,Ze(t),null)&&s&&(l?n.jsxs(te,{onClick:s,startIcon:n.jsx(gn,{}),variant:"outlined",color:"primary",children:["Add ",e.singularName??e.name]}):n.jsx(te,{onClick:s,size:"medium",variant:"outlined",color:"primary",children:n.jsx(gn,{})}));return n.jsxs(n.Fragment,{children:[n.jsx(te,{onClick:c,variant:"text",color:"primary",children:"Clear"}),d]})}function dn({title:e,children:t,invisible:c=!1,initiallyExpanded:i=!0,onExpandedChange:a,titleClassName:l,asField:s,className:d}){Dn("ExpandablePanel",`
1584
1584
  .CollapsibleContent {
1585
1585
  overflow: hidden;
1586
1586
  }
@@ -1607,5 +1607,5 @@
1607
1607
  to {
1608
1608
  height: 0;
1609
1609
  }
1610
- }`);const[u,A]=f.useState(i),[_,g]=f.useState(u);return f.useEffect(()=>{u?setTimeout(()=>{g(!0)},220):g(!1)},[u]),n.jsx(n.Fragment,{children:n.jsxs(qn.Root,{className:E(!c&&ue+" border","rounded-md"),open:u,onOpenChange:y=>{l?.(y),A(y)},children:[n.jsxs(qn.Trigger,{className:E(ge,"rounded flex items-center justify-between w-full min-h-[52px]",c?"border-b px-2":"p-4",c&&ue,s&&qe,a),children:[e,n.jsx(eo,{className:E("transition",u?"rotate-180":"")})]}),n.jsx(qn.Content,{className:E("CollapsibleContent"),style:{overflow:_?"visible":"hidden"},children:n.jsx("div",{className:d,children:t})})]})})}function $o({children:e,group:t}){const c=Bn();return n.jsx(fn,{invisible:!0,titleClassName:"font-medium text-sm text-gray-600 dark:text-gray-400",className:"py-4",initiallyExpanded:!(c?.collapsedGroups??[]).includes(t??"ungrouped"),onExpandedChange:i=>{if(c)if(i)c.setCollapsedGroups((c.collapsedGroups??[]).filter(l=>l!==(t??"ungrouped")));else{const l=(c.collapsedGroups??[]).concat(t??"ungrouped");c.setCollapsedGroups(l)}},title:n.jsx(j,{color:"secondary",className:"font-medium ml-1",children:t?.toUpperCase()??"Views".toUpperCase()}),children:n.jsx("div",{className:"mb-8",children:e})})}function Et({view:e,path:t,collection:c,url:i,name:l,description:a,onClick:s}){const d=Bn(),u=Wo(c??e),A=Ie.useNavigate(),_=re(),g=(d?.favouritePaths??[]).includes(t);let y;if(_.plugins&&c){const h={path:t,collection:c,context:_};y=n.jsx(n.Fragment,{children:_.plugins.map((I,b)=>I.homePage?.CollectionActions?n.jsx(I.homePage.CollectionActions,{...h,extraProps:I.homePage.extraProps},`actions_${b}`):null)})}return n.jsx(ya,{className:E("h-full p-4 cursor-pointer min-h-[230px]"),onClick:()=>{s?.(),A(i),d&&d.setRecentlyVisitedPaths([t,...(d.recentlyVisitedPaths??[]).filter(h=>h!==t)])},children:n.jsxs("div",{className:"flex flex-col items-start h-full",children:[n.jsxs("div",{className:"flex-grow w-full",children:[n.jsxs("div",{className:"h-10 flex items-center w-full justify-between text-gray-300 dark:text-gray-600",children:[u,n.jsxs("div",{className:"flex items-center gap-1",onClick:h=>{h.preventDefault(),h.stopPropagation()},children:[y,d&&n.jsx(ee,{onClick:h=>{h.preventDefault(),h.stopPropagation(),g?d.setFavouritePaths(d.favouritePaths.filter(I=>I!==t)):d.setFavouritePaths([...d.favouritePaths,t])},children:g?n.jsx(Cr,{size:18,className:"text-secondary"}):n.jsx(Sr,{size:18,className:"text-gray-400 dark:text-gray-500"})})]})]}),n.jsx(j,{gutterBottom:!0,variant:"h5",component:"h2",children:l}),a&&n.jsx(j,{variant:"body2",color:"secondary",component:"div",children:n.jsx(co,{source:a})})]}),n.jsx("div",{style:{alignSelf:"flex-end"},children:n.jsx("div",{className:"p-4",children:n.jsx(uc,{className:"text-primary"})})})]})})}function q3({entry:e}){const t=Ie.useNavigate(),c=Bn();if(!c)return null;const i=c.favouritePaths.includes(e.path),l=a=>{a.preventDefault(),a.stopPropagation(),i?c.setFavouritePaths(c.favouritePaths.filter(s=>s!==e.path)):c.setFavouritePaths([...c.favouritePaths,e.path])};return n.jsx(Ko,{onClick:()=>t(e.url),icon:i?n.jsx(Cr,{onClick:l,size:18,className:"text-secondary"}):n.jsx(Sr,{onClick:l,size:18,className:"text-gray-400 dark:text-gray-500"}),children:e.name},e.path)}function J3({hidden:e}){const t=re(),c=Ae(),i=Bn();if(!i)return null;const l=(i?.favouritePaths??[]).map(d=>c.topLevelNavigation?.navigationEntries.find(u=>u.path===d)).filter(Boolean),a=(i?.recentlyVisitedPaths??[]).map(d=>c.topLevelNavigation?.navigationEntries.find(u=>u.path===d)).filter(Boolean).slice(0,5),s=n.jsx(To,{in:!e&&l.length>0,children:n.jsx($o,{group:"Favourites",children:n.jsx("div",{className:"grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4",children:l.map(d=>n.jsx("div",{className:"col-span-1",children:n.jsx(Et,{...d,onClick:()=>{const u=d.type==="collection"?"home_favorite_navigate_to_collection":d.type==="view"?"home_favorite_navigate_to_view":"unmapped_event";t.onAnalyticsEvent?.(u,{path:d.path})}})},`nav_${d.group}_${d.name}`))})})});return n.jsxs(n.Fragment,{children:[n.jsx("div",{className:"flex flex-row flex-wrap gap-1 pb-2",children:a.map(d=>n.jsx(q3,{entry:d},d.path))}),s]})}const Ft={};function Z3(){const e=Ie.useLocation(),t=f.useRef(null),[c,i]=f.useState(0),[l,a]=f.useState("down"),s=f.useCallback(()=>{!t.current||!e.key||(Ft[e.key]=t.current.scrollTop,i(t.current.scrollTop),a(t.current.scrollTop>c?"down":"up"))},[t,e.key,c]);return f.useEffect(()=>{const d=t.current;if(d)return d.addEventListener("scroll",s,{passive:!0}),()=>{d&&d.removeEventListener("scroll",s)}},[t,s,e]),f.useEffect(()=>{!t.current||!Ft[e.key]||t.current.scrollTo({top:Ft[e.key],behavior:"auto"})},[e]),{containerRef:t,scroll:c,direction:l}}const Wn=new Oa.Search("url");Wn.addIndex("name"),Wn.addIndex("description"),Wn.addIndex("group"),Wn.addIndex("path");function ta({additionalChildrenStart:e,additionalChildrenEnd:t}){const c=re(),i=Ae();if(!i.topLevelNavigation)throw Error("Navigation not ready in FireCMSHomePage");const{containerRef:l,scroll:a,direction:s}=Z3(),{navigationEntries:d,groups:u}=i.topLevelNavigation,[A,_]=f.useState(null),g=A?d.filter(b=>A.includes(b.url)):d;f.useEffect(()=>{Wn.addDocuments(d)},[d]);const y=f.useCallback(b=>{if(!b||b==="")_(null);else{const p=Wn.search(b);_(p.map(w=>w.url))}},[]),h=[...u];(g.filter(b=>!b.group).length>0||g.length===0)&&h.push(void 0);let I;if(c.plugins){const b={context:c};I=n.jsx(n.Fragment,{children:c.plugins.filter(p=>p.homePage?.includeSection).map((p,w)=>{const k=p.homePage.includeSection(b);return n.jsx($o,{group:k.title,children:k.children},`plugin_section_${p.name}`)})})}return n.jsx("div",{id:"home_page",ref:l,className:"py-2 overflow-auto h-full w-full",children:n.jsxs(Ot,{maxWidth:"6xl",children:[n.jsx("div",{className:"sticky py-4 transition-all duration-400 ease-in-out top-0 z-10",style:{top:s==="down"?-84:0},children:n.jsx(Qt,{onTextSearch:y,placeholder:"Search collections",large:!1,className:"w-full"})}),n.jsx(J3,{hidden:!!A}),e,h.map((b,p)=>{const w=[],k={group:b,context:c};c.plugins&&c.plugins.forEach(m=>{m.homePage?.AdditionalCards&&w.push(...Yo(m.homePage?.AdditionalCards))});const K=g.filter(m=>m.group===b||!m.group&&b===void 0);return K.length===0&&w.length===0?null:n.jsx($o,{group:b,children:n.jsxs("div",{className:"grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4",children:[K.map(m=>n.jsx("div",{className:"col-span-1",children:n.jsx(Et,{...m,onClick:()=>{const v=m.type==="collection"?"home_navigate_to_collection":m.type==="view"?"home_navigate_to_view":"unmapped_event";c.onAnalyticsEvent?.(v,{path:m.path})}})},`nav_${m.group}_${m.name}`)),w&&w.map((m,v)=>n.jsx("div",{children:n.jsx(m,{...k})},`nav_${b}_add_${v}`))]})},`plugin_section_${b}`)}),I,t]})})}function X3({widget:e}){const t="h-8 w-8 p-1 rounded-full shadow text-white";return n.jsx("div",{className:t,style:{background:e?.color??"#888"},children:dt(e,"medium")})}function x3({children:e,title:t,path:c}){const i=fr();return f.useEffect(()=>{i.set({breadcrumbs:[{title:t,url:c}]})},[c,t]),n.jsx(n.Fragment,{children:e})}function ca(){return n.jsx("div",{className:"flex w-full h-full",children:n.jsxs("div",{className:"m-auto flex items-center flex-col",children:[n.jsx(j,{variant:"h4",align:"center",gutterBottom:!0,children:"Page not found"}),n.jsx(j,{align:"center",gutterBottom:!0,children:"This page does not exist or you may not have access to it"}),n.jsx(te,{variant:"text",component:Ie.Link,to:"/",children:"Back to home"})]})})}function R3({open:e,onAccept:t,onCancel:c,title:i,loading:l,body:a}){return n.jsxs(Zo,{open:e,onOpenChange:s=>s?void 0:c(),children:[n.jsxs(Xo,{children:[n.jsx(j,{variant:"h6",className:"mb-2",children:i}),a]}),n.jsxs(wn,{children:[n.jsx(te,{variant:"text",onClick:c,autoFocus:!0,children:"Cancel"}),n.jsx(ha,{color:"primary",type:"submit",loading:l,onClick:t,children:"Ok"})]})]})}function ia({width:e,height:t,className:c,style:i}){return n.jsxs("svg",{width:e??"100%",height:t??"100%",viewBox:"0 0 599 599",version:"1.1",style:i,className:c,xmlns:"http://www.w3.org/2000/svg",children:[n.jsxs("defs",{children:[n.jsxs("radialGradient",{cx:"28.6213569%",cy:"43.1133328%",fx:"28.6213569%",fy:"43.1133328%",r:"71.5003456%",gradientTransform:"translate(0.286214,0.431133),rotate(3.343450),scale(1.000000,0.996175),translate(-0.286214,-0.431133)",id:"radialGradient-1",children:[n.jsx("stop",{stopColor:"#FF5B79",offset:"0%"}),n.jsx("stop",{stopColor:"#FA5574",offset:"28.0930803%"}),n.jsx("stop",{stopColor:"#EC4C51",offset:"44.7242531%"}),n.jsx("stop",{stopColor:"#9543C1",offset:"71.4578165%"}),n.jsx("stop",{stopColor:"#3857B3",offset:"100%"})]}),n.jsxs("radialGradient",{cx:"53.6205516%",cy:"47.2473036%",fx:"53.6205516%",fy:"47.2473036%",r:"50.8229649%",gradientTransform:"translate(0.536206,0.472473),rotate(90.000000),scale(1.000000,1.206631),translate(-0.536206,-0.472473)",id:"radialGradient-2",children:[n.jsx("stop",{stopColor:"#68294F",stopOpacity:"0",offset:"0%"}),n.jsx("stop",{stopColor:"#5E2548",stopOpacity:"0.04641108",offset:"75.3503173%"}),n.jsx("stop",{stopColor:"#0D060B",stopOpacity:"0.437431709",offset:"100%"})]}),n.jsxs("radialGradient",{cx:"53.8605015%",cy:"48.1990423%",fx:"53.8605015%",fy:"48.1990423%",r:"59.9151549%",gradientTransform:"translate(0.538605,0.481990),rotate(180.000000),scale(1.000000,0.925027),translate(-0.538605,-0.481990)",id:"radialGradient-3",children:[n.jsx("stop",{stopColor:"#68294F",stopOpacity:"0",offset:"0%"}),n.jsx("stop",{stopColor:"#5E2548",stopOpacity:"0.04641108",offset:"84.0867343%"}),n.jsx("stop",{stopColor:"#FF0000",stopOpacity:"0.567324765",offset:"100%"})]})]}),n.jsx("g",{id:"Page-1",stroke:"none",strokeWidth:"1",fill:"none",fillRule:"evenodd",children:n.jsxs("g",{id:"firecms_logo",children:[n.jsx("circle",{fill:"url(#radialGradient-1)",cx:"299.5",cy:"299.5",r:"299.5"}),n.jsx("circle",{fill:"url(#radialGradient-2)",cx:"299.5",cy:"299.5",r:"299.5"}),n.jsx("circle",{fill:"url(#radialGradient-3)",cx:"299.5",cy:"299.5",r:"299.5"})]})})]})}const eH={info:"bg-sky-200 dark:bg-teal-900",warn:"bg-orange-200 dark:bg-yellow-950"};function nH({children:e,mode:t="info"}){return n.jsx("div",{className:E("my-3 py-1 px-2 rounded",eH[t]),children:e})}const aa=function({title:t,endAdornment:c,startAdornment:i,drawerOpen:l,dropDownActions:a,includeDrawer:s,className:d,style:u,user:A}){const _=Ae(),g=yn(),{mode:y,toggleMode:h}=ur(),I=Ge(),b=A??g.user;let p;if(b&&b.photoURL)p=n.jsx(Tt,{src:b.photoURL});else if(b===void 0||g.initialLoading)p=n.jsx("div",{className:"p-1 flex justify-center",children:n.jsx(Ve,{className:"w-10 h-10 rounded-full"})});else{const w=b?.displayName?b.displayName[0].toUpperCase():b?.email?b.email[0].toUpperCase():"A";p=n.jsx(Tt,{children:w})}return n.jsx("div",{style:u,className:E("pr-2",{"ml-[17rem]":l&&I,"ml-16":s&&!(l&&I)&&!i,"h-16":!0,"z-10":I,"transition-all":!0,"ease-in":!0,"duration-75":!0,"w-full":!s,"w-[calc(100%-64px)]":s&&!(l&&I),"w-[calc(100%-17rem)]":s&&l&&I,"duration-150":l&&I,fixed:!0},d),children:n.jsxs("div",{className:"flex flex-row gap-2 px-4 h-full items-center",children:[i,_&&n.jsx("div",{className:"mr-8 hidden lg:block",children:n.jsx(Ie.Link,{className:"visited:text-inherit visited:dark:text-inherit",to:_?.basePath??"/",children:n.jsx(j,{variant:"subtitle1",noWrap:!0,className:"ml-2 !font-medium",children:t})})}),n.jsx("div",{className:"flex-grow"}),c&&n.jsx(se,{children:c}),n.jsx(ee,{color:"inherit","aria-label":"Open drawer",onClick:h,size:"large",children:y==="dark"?n.jsx(hc,{}):n.jsx(Ec,{})}),n.jsxs(Qn,{trigger:p,children:[a,!a&&n.jsxs(ke,{onClick:g.signOut,children:[n.jsx(Nc,{}),"Log Out"]})]})]})})},oH=e=>e&&Array.isArray(e)&&e.length>0?e.map((t,c)=>t?{[Vr(t)+c]:fo()}:{}).reduce((t,c)=>({...t,...c}),{}):{};function Pt({droppableId:e,addLabel:t,value:c,disabled:i=!1,buildEntry:l,size:a,onInternalIdAdded:s,includeAddButton:d,newDefaultEntry:u,onValueChange:A}){const _=c&&Array.isArray(c)&&c.length>0,g=f.useRef(oH(c)),[y,h]=f.useState(_?Object.values(g.current):[]);f.useEffect(()=>{if(_&&c&&c.length!==y.length){const k=c.map((K,m)=>{const v=Vr(K)+m;if(v in g.current)return g.current[v];{const S=fo();return g.current[v]=S,S}});h(k)}},[_,y.length,c]);const I=k=>{if(k.preventDefault(),i)return;const K=fo(),m=[...y,K];s&&s(K),h(m),A([...c??[],u])},b=k=>{const K=[...y];K.splice(k,1),h(K),A(c.filter((m,v)=>v!==k))},p=k=>{const K=fo(),m=c[k],v=[...y.splice(0,k+1),K,...y.splice(k+1,y.length-k-1)];s&&s(K),h(v),A([...c.slice(0,k+1),m,...c.slice(k+1)])},w=k=>{if(!k.destination)return;const K=k.source.index,m=k.destination.index,v=[...y],S=v[K];v[K]=v[m],v[m]=S,h(v),A(rH(c,K,m))};return n.jsx(Kn.DragDropContext,{onDragEnd:w,children:n.jsx(Kn.Droppable,{droppableId:e,renderClone:(k,K,m)=>{const v=m.source.index,S=y[v];return n.jsx(Dt,{provided:k,internalId:S,index:v,size:a,disabled:i,buildEntry:l,remove:b,copy:p,isDragging:K.isDragging})},children:(k,K)=>n.jsxs("div",{...k.droppableProps,ref:k.innerRef,children:[_&&y.map((m,v)=>n.jsx(Kn.Draggable,{draggableId:`array_field_${m}`,isDragDisabled:i,index:v,children:(S,B)=>n.jsx(Dt,{provided:S,internalId:m,index:v,size:a,disabled:i,buildEntry:l,remove:b,copy:p,isDragging:B.isDragging})},`array_field_${m}`)),k.placeholder,d&&n.jsx("div",{className:"p-4 justify-center text-left",children:n.jsx(te,{variant:a==="small"?"text":"outlined",size:a==="small"?"small":"medium",color:"primary",disabled:i,startIcon:n.jsx(hn,{}),onClick:I,children:t??"Add"})})]})})})}function Dt({provided:e,index:t,internalId:c,size:i,disabled:l,buildEntry:a,remove:s,copy:d,isDragging:u}){const[A,_]=nr(),g=i!=="small"&&_.height===0,y=i!=="small"&&_.height<100,[h,I]=f.useState(!1),b=f.useCallback(()=>I(!0),[]),p=f.useCallback(()=>I(!1),[]);return n.jsx("div",{onMouseEnter:b,onMouseMove:b,onMouseLeave:p,ref:e.innerRef,...e.draggableProps,style:e.draggableProps.style,className:`${u||h?ze:""} mb-1 rounded-md opacity-100`,children:n.jsxs("div",{className:"flex items-start",children:[n.jsx("div",{ref:A,className:"flex-grow w-[calc(100%-48px)] text-text-primary dark:text-text-primary-dark",children:a(t,c)}),n.jsx(la,{direction:i==="small"?"row":"column",disabled:l,remove:s,index:t,provided:e,measuring:g,contentOverflow:y,copy:d})]})})}function la({direction:e,disabled:t,remove:c,index:i,provided:l,copy:a,contentOverflow:s,measuring:d}){return n.jsxs("div",{className:`p-1 flex ${e==="row"?"flex-row-reverse":"flex-col"} items-center`,...l.dragHandleProps,children:[n.jsx(ye,{side:e==="column"?"left":void 0,title:"Move",children:n.jsx(ee,{size:"small",disabled:t,className:`cursor-${t?"inherit":"grab"}`,children:n.jsx("svg",{focusable:"false",fill:"currentColor","aria-hidden":"true",viewBox:"0 0 24 24",children:n.jsx("path",{d:"M20 9H4v2h16V9zM4 15h16v-2H4v2z"})})})}),!d&&!s&&n.jsxs(n.Fragment,{children:[n.jsx(ye,{title:"Remove",side:e==="column"?"left":void 0,children:n.jsx(ee,{size:"small","aria-label":"remove",disabled:t,onClick:()=>c(i),children:n.jsx(oo,{size:"small"})})}),n.jsx(ye,{side:e==="column"?"left":void 0,title:"Copy in this position",children:n.jsx(ee,{size:"small","aria-label":"copy",disabled:t,onClick:()=>a(i),children:n.jsx(Rn,{size:"small"})})})]}),!d&&s&&n.jsx(n.Fragment,{children:n.jsxs(Qn,{trigger:n.jsx(ee,{size:"small",children:n.jsx(vr,{size:"small"})}),children:[n.jsxs(ke,{dense:!0,onClick:()=>c(i),children:[n.jsx(oo,{size:"small"}),"Remove"]}),n.jsxs(ke,{dense:!0,onClick:()=>a(i),children:[n.jsx(Rn,{size:"small"}),"Copy"]})]})})]})}function rH(e,t,c){const i=Array.from(e),[l]=i.splice(t,1);return i.splice(c,0,l),i}function fo(){return Math.floor(Math.random()*Math.floor(Number.MAX_SAFE_INTEGER))}const tH="100vw",cH="55vw",sa="768px",jo="main_##Q$SC^#S6";function iH({path:e,entityId:t,selectedSubPath:c,copy:i,collection:l,onValuesAreModified:a,formWidth:s,onUpdate:d,onClose:u}){l.customId&&l.formAutoSave&&console.warn(`The collection ${l.path} has customId and formAutoSave enabled. This is not supported and formAutoSave will be ignored`);const[A,_]=f.useState(!1),[g,y]=f.useState(void 0);Do(g,()=>{g&&x({entityId:W?.id,collection:l,path:e,values:g,closeAfterSave:!1})},!1,2e3);const h=Qe(),I=Uo(),b=Cn(),p=cn(),w=re(),k=yn(),[K,m]=f.useState(void 0),[v,S]=f.useState(i?"copy":t?"existing":"new"),B=f.useRef(void 0),P=B.current,F=(l.subcollections??[]).filter(T=>!T.hideFromNavigation),D=F?.length??0,C=l.views,N=C?.length??0,M=l.formAutoSave&&!l.customId,H=N>0||D>0,Z=c??$r(l?l.defaultSelectedView:void 0,{status:v,entityId:t}),O=f.useRef(Z??jo),oe=O.current===jo,{entity:U,dataLoading:L,dataLoadingError:X}=sr({path:e,entityId:t,collection:l,useCache:!1}),[W,V]=f.useState(U),[Q,q]=f.useState(void 0);f.useEffect(()=>{U&&V(U)},[U]),f.useEffect(()=>{if(v==="new")q(!1);else{const T=W?ft(l,k,Xe(e),W??null):!1;W&&q(!T)}},[k,W,v]);const R=f.useCallback(T=>{_(!1),p.open({type:"error",message:"Error before saving: "+T?.message}),console.error(T)},[p]),$=f.useCallback(T=>{_(!1),p.open({type:"error",message:"Error after saving (entity is saved): "+T?.message}),console.error(T)},[p]),ne=(T,le)=>{_(!1),M||p.open({type:"success",message:`${l.singularName??l.name}: Saved correctly`}),V(T),S("existing"),a(!1),d&&d({entity:T}),le?(I.setBlocked(!1),I.close(!0),u?.()):v!=="existing"&&b.replace({path:e,entityId:T.id,selectedSubPath:O.current,updateUrl:!0,collection:l})},J=f.useCallback(T=>{_(!1),p.open({type:"error",message:"Error saving: "+T?.message}),console.error("Error saving entity",e,t),console.error(T)},[t,e,p]),x=({values:T,previousValues:le,closeAfterSave:he,entityId:Le,collection:mn,path:vn})=>{_(!0),dr({path:vn,entityId:Le,values:T,previousValues:le,collection:mn,status:v,dataSource:h,context:w,onSaveSuccess:z=>ne(z,he),onSaveFailure:J,onPreSaveHookError:R,onSaveSuccessHookError:$}).then()},ie=async({collection:T,path:le,entityId:he,values:Le,previousValues:mn,closeAfterSave:vn,autoSave:z})=>{v&&(z?y(Le):x({collection:T,path:le,entityId:he,values:Le,previousValues:mn,closeAfterSave:vn}))},Y=C&&C.map((T,le)=>{if(O.current!==T.key)return null;const he=T.Builder;return he?n.jsx("div",{className:E(ue,"relative flex-grow w-full h-full overflow-auto "),role:"tabpanel",children:n.jsx(se,{children:K&&n.jsx(he,{collection:l,entity:W,modifiedValues:P??W?.values,formContext:K})})},`custom_view_${T.key}`):(console.error("customView.Builder is not defined"),null)}).filter(Boolean),Be=L&&!W||(!W||Q===void 0)&&(v==="existing"||v==="copy"),Oe=Be||A,Ue=F&&F.map((T,le)=>{const he=T.alias??T.path,Le=W?`${e}/${W?.id}/${be(he)}`:void 0;return O.current!==he?null:n.jsxs("div",{className:"relative flex-grow h-full overflow-auto w-full",role:"tabpanel",children:[Oe&&n.jsx(uo,{}),!Be&&(W&&Le?n.jsx(St,{fullPath:Le,parentPathSegments:Xe(e),isSubCollection:!0,...T}):n.jsx("div",{className:"flex items-center justify-center w-full h-full p-3",children:n.jsx(j,{variant:"label",children:"You need to save your entity before adding additional collections"})}))]},`subcol_${he}`)}).filter(Boolean),zn=f.useCallback(()=>{a(!1)},[]),Ao=T=>{O.current=T,b.replace({path:e,entityId:t,selectedSubPath:T===jo?void 0:T,updateUrl:!0,collection:l})},kn=f.useCallback(T=>{B.current=T},[]),Hn=f.useCallback(T=>{p.open({type:"error",message:"Error updating id, check the console"})},[]),_o=f.useCallback(T=>{V(le=>le?{...le,id:T}:void 0)},[]),rn=T=>{M||a(T)};function yo(){const T=w.plugins;let le=n.jsx(Pi,{status:v,path:e,collection:l,onEntitySaveRequested:ie,onDiscard:zn,onValuesChanged:kn,onModified:rn,entity:W,onIdChange:_o,onFormContextChange:m,hideId:l.hideIdFromForm,autoSave:M,onIdUpdateError:Hn});return T&&T.forEach(he=>{he.form?.provider&&(le=n.jsx(he.form.provider.Component,{status:v,path:e,collection:l,onDiscard:zn,onValuesChanged:kn,onModified:rn,entity:W,context:w,formContext:K,...he.form.provider.props,children:le}))}),n.jsx(se,{children:le})}const G=Q===void 0?n.jsx(n.Fragment,{}):Q?n.jsxs(n.Fragment,{children:[n.jsx(j,{className:"mt-16 mb-8 mx-8",variant:"h4",children:l.singularName??l.name}),n.jsx(yt,{className:"px-12",entity:W,path:e,collection:l})]}):yo(),_e=F&&F.map(T=>n.jsx(xo,{className:"text-sm min-w-[140px]",value:T.path,children:T.name},`entity_detail_collection_tab_${T.name}`)),ae=C&&C.map(T=>n.jsx(xo,{className:"text-sm min-w-[140px]",value:T.key,children:T.name},`entity_detail_collection_tab_${T.name}`));return n.jsx("div",{className:"flex flex-col h-full w-full transition-width duration-250 ease-in-out",children:n.jsxs(n.Fragment,{children:[n.jsxs("div",{className:E(ue,"no-scrollbar border-b pl-2 pr-2 pt-1 flex items-end overflow-scroll bg-gray-50 dark:bg-gray-950"),children:[n.jsx("div",{className:"pb-1 self-center",children:n.jsx(ee,{onClick:()=>(u?.(),I.close(!1)),size:"large",children:n.jsx(pr,{})})}),n.jsx("div",{className:"flex-grow"}),Be&&n.jsx("div",{className:"self-center",children:n.jsx(Gn,{size:"small"})}),n.jsxs(ga,{value:O.current,onValueChange:T=>{Ao(T)},className:"pl-4 pr-4 pt-0",children:[n.jsx(xo,{disabled:!H,value:jo,className:`${H?"":"hidden"} text-sm min-w-[140px]`,children:l.singularName??l.name}),ae,_e]})]}),n.jsxs("div",{className:"flex-grow h-full flex overflow-auto flex-row w-full ",style:{},children:[n.jsx("div",{role:"tabpanel",hidden:!oe,id:`form_${e}`,className:" w-full",children:Be?n.jsx(uo,{}):G}),Y,Ue]})]})})}function aH(e){const{blocked:t,setBlocked:c,setBlockedNavigationMessage:i}=Uo(),l=Ae(),a=f.useMemo(()=>{if(!e)return;let d=e.collection;if(!d&&(d=l.getCollection(e.path,e.entityId),!d))throw console.error("ERROR: No collection found in path `",e.path,"`. Entity id: ",e.entityId),Error("ERROR: No collection found in path `"+e.path+"`. Make sure you have defined a collection for this path in the root navigation.");return d},[l,e]);f.useEffect(()=>{function d(u){t&&a&&(u.preventDefault(),u.returnValue=`You have unsaved changes in this ${a.name}. Are you sure you want to leave this page?`)}return typeof window<"u"&&window.addEventListener("beforeunload",d),()=>{typeof window<"u"&&window.removeEventListener("beforeunload",d)}},[t,a]);const s=f.useCallback(d=>{c(d),i(d?n.jsxs(n.Fragment,{children:[" You have unsaved changes in this ",n.jsx("b",{children:a?.singularName??a?.name}),"."]}):void 0)},[a?.name,c,i]);return!e||!a?n.jsx("div",{className:"w-full"}):n.jsx(n.Fragment,{children:n.jsx(se,{children:n.jsx(iH,{...e,formWidth:e.width,collection:a,onValuesAreModified:s})})})}const da="new";function lH(e,t){if(t)return tH;const c=!e.selectedSubPath,i=typeof e.width=="number"?`${e.width}px`:e.width;return c?i??sa:`calc(${cH} + ${i??sa})`}const sH=(e,t)=>{const c=Ie.useLocation(),i=f.useRef(!1),l=!Ge();f.useEffect(()=>{if(!e.loading&&!i.current){if(e.isUrlCollectionPath(c.pathname)){const u=c.hash===`#${da}`,A=e.urlPathToDataPath(c.pathname),_=dH(A,e.collections,u);t.replace(_.map(g=>Nt(g,e,l)))}i.current=!0}},[c,e,t,l]);const a=f.useCallback(()=>{t.close()},[t]),s=f.useCallback(u=>{if(u.copy&&!u.entityId)throw Error("If you want to copy an entity you need to provide an entityId");const A=$r(u.collection?u.collection.defaultSelectedView:void 0,{status:u.copy?"copy":u.entityId?"existing":"new",entityId:u.entityId});t.open(Nt({selectedSubPath:A,...u},e,l))},[t,e,l]),d=f.useCallback(u=>{if(u.copy&&!u.entityId)throw Error("If you want to copy an entity you need to provide an entityId");t.replace(Nt(u,e,l))},[e,t,l]);return{close:a,open:s,replace:d}};function dH(e,t,c){const i=cr({path:e,collections:t}),l=[];let a="";for(let s=0;s<i.length;s++){const d=i[s];if(d.type==="collection"&&(a=d.path),s>0){const u=i[s-1];if(d.type==="entity")l.push({path:d.path,entityId:d.entityId,copy:!1});else if(d.type==="custom_view"){if(u.type==="entity"){const A=l[l.length-1];A&&(A.selectedSubPath=d.view.key)}}else if(d.type==="collection"&&u.type==="entity"){const A=l[l.length-1];A&&(A.selectedSubPath=d.collection.alias??d.collection.path)}}}return c&&l.push({path:a,copy:!1}),l}const Nt=(e,t,c)=>{const i=be(e.path),l=e.entityId?t.buildUrlCollectionPath(`${i}/${e.entityId}/${e.selectedSubPath||""}`):t.buildUrlCollectionPath(`${i}#${da}`);return{key:`${e.path}/${e.entityId}`,component:n.jsx(aH,{...e}),urlPath:l,parentUrlPath:t.buildUrlCollectionPath(i),width:lH(e,c),onClose:e.onClose}};function ua(e){const{path:t,collections:c=[],currentFullPath:i}=e,l=be(t).split("/"),a=bo(l),s=[];for(let d=0;d<a.length;d++){const u=a[d],A=c&&c.find(_=>_.alias===u||_.path===u);if(A){const _=A.alias??A.path,g=i&&i.length>0?i+"/"+_:_,y=be(be(t).replace(u,"")),h=y.length>0?y.split("/"):[];if(h.length>0){const I=h[0],b=g+"/"+I;if(s.push(new Je(I,g)),h.length>1){const p=h.slice(1).join("/");if(!A)throw Error("collection not found resolving path: "+A);A.subcollections&&s.push(...ua({path:p,collections:A.subcollections,currentFullPath:b}))}}break}}return s}function uH({basePath:e,baseCollectionPath:t,authController:c,collections:i,views:l,userConfigPersistence:a,plugins:s,dataSource:d}){const u=Ie.useLocation(),[A,_]=f.useState(),[g,y]=f.useState(),[h,I]=f.useState(!1),[b,p]=f.useState(void 0),[w,k]=f.useState(!0),[K,m]=f.useState(void 0),v=be(e),S=be(t),B=v?`/${v}`:"/",P=v?`/${v}/${S}`:`/${S}`,F=f.useCallback(V=>v?`/${v}/${qo(V)}`:`/${qo(V)}`,[v]),D=f.useCallback(V=>`${be(t)}/${qo(V)}`,[t]),C=f.useCallback((V,Q)=>{const q=[...(V??[]).map($=>$.hideFromNavigation?void 0:{url:D($.alias??$.path),type:"collection",name:$.name.trim(),path:$.alias??$.path,collection:$,description:$.description?.trim(),group:$.group?.trim()}).filter(Boolean),...(Q??[]).map($=>$.hideFromNavigation?void 0:{url:F(Array.isArray($.path)?$.path[0]:$.path),name:$.name.trim(),type:"view",view:$,description:$.description?.trim(),group:$.group?.trim()}).filter(Boolean)],R=Object.values(q).map($=>$.group).filter(Boolean).filter(($,ne,J)=>J.indexOf($)===ne);return{navigationEntries:q,groups:R}},[F,D]),N=f.useCallback(async()=>{if(!c.initialLoading){try{const[V=[],Q=[]]=await Promise.all([fH(i,c,d,s),AH(l,c,d)]);_(V),y(Q),p(C(V??[],Q))}catch(V){console.error(V),m(V)}k(!1),I(!0)}},[i,c.user,c.initialLoading,d,s,l,C]);f.useEffect(()=>{N()},[N]);const M=f.useCallback((V,Q,q=!1)=>{if(!A)return;const R=Io(be(V),A),$=q?a?.getCollectionConfig(V):void 0,ne=R?Ze(R,$):void 0;let J=ne;if(ne){const x=ne.subcollections,ie=ne.callbacks,Y=ne.permissions;J={...J,subcollections:J?.subcollections??x,callbacks:J?.callbacks??ie,permissions:J?.permissions??Y}}if(J)return{...ne,...J}},[e,t,A]),H=f.useCallback(V=>{let Q=A;if(!Q)throw Error("Collections have not been initialised yet");for(let q=0;q<V.length;q++){const R=V[q],$=Q.find(ne=>ne.alias===R||ne.path===R);if(!$)return;if(Q=$.subcollections,q===V.length-1)return $}},[A]),Z=f.useCallback(V=>be(V+"/").startsWith(be(P)+"/"),[P]),O=f.useCallback(V=>{if(V.startsWith(P))return V.replace(P,"");throw Error("Expected path starting with "+P)},[P]),oe=f.useCallback(({path:V})=>`s/edit/${qo(V)}`,[]),U=f.useCallback(V=>{if(!A)throw Error("Collections have not been initialised yet");return tr(V,A)},[A]),L=u.state,X=L&&L.base_location?L.base_location:u,W=f.useCallback(V=>ua({path:V,collections:A}),[A]);return f.useMemo(()=>({collections:A??[],views:g??[],loading:!h||w,navigationLoadingError:K,homeUrl:B,basePath:e,baseCollectionPath:t,initialised:h,getCollection:M,getCollectionFromPaths:H,isUrlCollectionPath:Z,urlPathToDataPath:O,buildUrlCollectionPath:D,buildUrlEditCollectionPath:oe,buildCMSUrlPath:F,resolveAliasesFrom:U,topLevelNavigation:b,baseLocation:X,refreshNavigation:N,getParentReferencesFromPath:W}),[t,X,e,F,D,oe,A,W,M,H,B,h,Z,w,K,N,U,b,O,g])}function qo(e){return encodeURIComponent(be(e)).replaceAll("%2F","/").replaceAll("%23","#")}function fa(e,t){return e.filter(c=>c.permissions?so(c,t,[c.path],null).read!==!1:!0).map(c=>c.subcollections?{...c,subcollections:fa(c.subcollections,t)}:c)}async function fH(e,t,c,i){let l=[];return typeof e=="function"?l=await e({user:t.user,authController:t,dataSource:c}):Array.isArray(e)&&(l=e),l=fa(l,t),i&&i.forEach(a=>{a.collections?.injectCollections&&(l=a.collections?.injectCollections(l??[]))}),l}async function AH(e,t,c){let i=[];return typeof e=="function"?i=await e({user:t.user,authController:t,dataSource:c}):Array.isArray(e)&&(i=e),i}function _H(){const e=Ie.useLocation(),t=Ie.useNavigate(),[c,i]=f.useState([]),l=f.useRef(c),a=f.useRef({}),s=f.useRef(0),d=g=>{l.current=g,i(g)};f.useEffect(()=>{const h=(e.state?.panels??[]).map(I=>a.current[I]).filter(I=>!!I);de(l.current.map(I=>I.key),h.map(I=>I.key))||d(h)},[e]);const u=f.useCallback(()=>{if(c.length===0)return;const g=c[c.length-1],y=[...c.slice(0,-1)];if(d(y),s.current>0)g.urlPath&&t(-1),s.current--;else if(g.parentUrlPath){const h=e.state?.base_location??e;t(g.parentUrlPath,{replace:!0,state:{base_location:h,panels:y.map(I=>I.key)}})}},[c,t,e]),A=f.useCallback(g=>{const y=Array.isArray(g)?g:[g];y.forEach(b=>{a.current[b.key]=b}),s.current=s.current+y.length;const h=e.state?.base_location??e,I=[...c,...y];d(I),y.forEach(b=>{b.urlPath&&t(b.urlPath,{state:{base_location:h,panels:I.map(p=>p.key)}})})},[e,t,c]),_=f.useCallback(g=>{const y=Array.isArray(g)?g:[g];y.forEach(b=>{a.current[b.key]=b});const h=e.state?.base_location??e,I=[...c.slice(0,-y.length),...y];d(I),y.forEach(b=>{b.urlPath&&t(b.urlPath,{replace:!0,state:{base_location:h,panels:I.map(p=>p.key)}})})},[e,t,c]);return{sidePanels:c,close:u,open:A,replace:_}}function yH(e){f.useEffect(()=>{if(!e)return;const t=Ut[e];t&&(Ro.registerLocale(e,t),Ro.setDefaultLocale(e))},[e])}const hH="/",gH="/c";function IH(e){const t=ur(),{children:c,collections:i,views:l,entityLinkBuilder:a,userConfigPersistence:s,dateTimeFormat:d,locale:u,authController:A,storageSource:_,dataSource:g,basePath:y=hH,baseCollectionPath:h=gH,plugins:I,onAnalyticsEvent:b,fields:p}=e;yH(u);const w=uH({basePath:y,baseCollectionPath:h,authController:A,collections:i,views:l,userConfigPersistence:s,dataSource:g,plugins:I}),k=_H(),K=sH(w,k),m=A.initialLoading||w.loading||(I?.some(S=>S.loading)??!1);if(w.navigationLoadingError)return n.jsx(Lt,{maxWidth:"md",fullScreen:!0,children:n.jsx(pe,{title:"Error loading navigation",error:w.navigationLoadingError})});if(A.authError)return n.jsx(Lt,{maxWidth:"md",fullScreen:!0,children:n.jsx(pe,{title:"Error loading auth",error:A.authError})});const v={entityLinkBuilder:a,dateTimeFormat:d,locale:u,plugins:I,onAnalyticsEvent:b,fields:p??{}};return n.jsx(rr.Provider,{value:t,children:n.jsx(ar.Provider,{value:v,children:n.jsx(Rt.Provider,{value:s,children:n.jsx(xt.Provider,{value:_,children:n.jsx(qt.Provider,{value:g,children:n.jsx(ir.Provider,{value:A,children:n.jsx(Zt.Provider,{value:k,children:n.jsx(Xt.Provider,{value:K,children:n.jsx(Jt.Provider,{value:w,children:n.jsx(Va,{children:n.jsx(bH,{loading:m,children:c})})})})})})})})})})})}function bH({loading:e,children:t}){const c=re();let i=t({context:c,loading:e});const l=c.plugins;return!e&&l&&l.forEach(a=>{a.provider&&(i=n.jsx(a.provider.Component,{...a.provider.props,context:c,children:i}))}),n.jsx(n.Fragment,{children:i})}function Aa({hovered:e,drawerOpen:t,closeDrawer:c}){const i=re(),l=Ae(),a=e&&!t,s=Ge();if(!l.topLevelNavigation)throw Error("Navigation not ready in Drawer");const{navigationEntries:d,groups:u}=l.topLevelNavigation,A=Object.values(d).filter(y=>!y.group),_=f.useCallback(y=>t?n.jsx("div",{className:"pt-8 pl-6 pr-8 pb-2 flex flex-row items-center",children:n.jsx(j,{variant:"caption",color:"secondary",className:"font-medium flex-grow",children:y?y.toUpperCase():"Views".toUpperCase()})}):n.jsx("div",{className:"h-4"}),[t]),g=y=>{const h=y.type==="collection"?"drawer_navigate_to_collection":y.type==="view"?"drawer_navigate_to_view":"unmapped_event";i.onAnalyticsEvent?.(h,{url:y.url}),s||c()};return n.jsxs("div",{className:"flex-grow overflow-scroll no-scrollbar",children:[u.map(y=>n.jsxs(f.Fragment,{children:[_(y),Object.values(d).filter(h=>h.group===y).map((h,I)=>n.jsx(Mt,{icon:Wo(h.collection??h.view),tooltipsOpen:a,drawerOpen:t,onClick:()=>g(h),url:h.url,name:h.name},`navigation_${I}`))]},`drawer_group_${y}`)),A.length>0&&_(),A.map((y,h)=>n.jsx(Mt,{icon:Wo(y.collection??y.view),tooltipsOpen:a,onClick:()=>g(y),drawerOpen:t,url:y.url,name:y.name},`navigation_${h}`))]})}function Mt({name:e,icon:t,drawerOpen:c,tooltipsOpen:i,url:l,onClick:a}){const s=n.jsx("div",{className:"text-gray-600 dark:text-gray-500",children:t}),d=n.jsxs(Ie.NavLink,{onClick:a,className:({isActive:u})=>E("rounded-r-xl truncate","hover:bg-gray-200 hover:bg-opacity-75 dark:hover:bg-gray-700 dark:hover:bg-opacity-75 text-gray-800 dark:text-gray-200 hover:text-gray-900 hover:dark:text-gray-100","flex flex-row items-center w-full mr-8",c?"pl-8 h-12":"pl-6 h-11","font-medium text-sm",u?"bg-gray-100 dark:bg-gray-800":""),to:l,children:[s,n.jsx("div",{className:E(c?"opacity-100":"opacity-0 hidden","ml-4 font-inherit text-inherit"),children:e.toUpperCase()})]});return c?d:n.jsx(ye,{open:i,side:"right",title:e,children:d})}const pH=280,wH=f.memo(function(t){const{children:c,name:i,logo:l,includeDrawer:a=!0,autoOpenDrawer:s,Drawer:d=Aa,drawerProps:u,FireCMSAppBarComponent:A=aa,fireCMSAppBarComponentProps:_}=t,g=Ge(),y=Ae(),[h,I]=f.useState(!1),[b,p]=f.useState(!1),w=f.useCallback(()=>p(!0),[]),k=f.useCallback(()=>p(!1),[]),K=f.useCallback(()=>{I(!1)},[]),m=h||!!(g&&s&&b);return n.jsxs("div",{className:"flex h-screen w-screen bg-gray-50 dark:bg-gray-900 text-gray-900 dark:text-white overflow-hidden",style:{paddingTop:"env(safe-area-inset-top)",paddingLeft:"env(safe-area-inset-left)",paddingRight:"env(safe-area-inset-right)",paddingBottom:"env(safe-area-inset-bottom)",height:"100dvh"},children:[n.jsx(A,{title:i,includeDrawer:a,drawerOpen:m,..._}),n.jsx(mH,{displayed:a,onMouseEnter:w,onMouseMove:w,onMouseLeave:k,open:m,logo:l,hovered:b,setDrawerOpen:I,children:a&&(y.loading?n.jsx(uo,{}):n.jsx(d,{hovered:b,drawerOpen:m,closeDrawer:K,...u}))}),n.jsxs("main",{className:"flex flex-col flex-grow overflow-auto",children:[n.jsx(kH,{}),n.jsx("div",{className:E(ue,"flex-grow overflow-auto lg:m-0 lg:mx-4 lg:mb-4 lg:rounded-lg lg:border lg:border-solid m-0 mt-1"),children:n.jsx(se,{children:c})})]})]})},de),kH=()=>n.jsx("div",{className:"flex flex-col min-h-[68px]"});function mH(e){const t=Ae(),c=e.displayed?e.open?pH:72:0,i=n.jsxs("div",{className:"relative h-full no-scrollbar overflow-y-auto overflow-x-hidden",style:{width:c,transition:"left 150ms cubic-bezier(0.4, 0, 0.6, 1) 0ms, opacity 150ms cubic-bezier(0.4, 0, 0.6, 1) 0ms, width 150ms cubic-bezier(0.4, 0, 0.6, 1) 0ms"},children:[!e.open&&e.displayed&&n.jsx(ye,{title:"Open menu",side:"right",sideOffset:12,className:"fixed top-2 left-3 !bg-gray-50 dark:!bg-gray-900 rounded-full w-fit",children:n.jsx(ee,{color:"inherit","aria-label":"Open menu",className:"sticky top-2 left-3 ",onClick:()=>e.setDrawerOpen(!0),size:"large",children:n.jsx(mr,{})})}),n.jsxs("div",{className:"flex flex-col h-full",children:[n.jsx("div",{style:{transition:"padding 150ms cubic-bezier(0.4, 0, 0.6, 1) 0ms",padding:e.open?"32px 96px 0px 24px":"72px 16px 0px"},className:E("cursor-pointer"),children:n.jsx(ye,{title:"Home",sideOffset:20,side:"right",children:n.jsx(Ie.Link,{to:t.basePath,children:e.logo?n.jsx("img",{src:e.logo,alt:"Logo",className:"max-w-full max-h-full"}):n.jsx(ia,{})})})}),e.children]})]});return Ge()?n.jsxs("div",{className:"relative",onMouseEnter:e.onMouseEnter,onMouseMove:e.onMouseMove,onMouseLeave:e.onMouseLeave,style:{width:c,transition:"left 150ms cubic-bezier(0.4, 0, 0.6, 1) 0ms, opacity 150ms cubic-bezier(0.4, 0, 0.6, 1) 0ms, width 150ms cubic-bezier(0.4, 0, 0.6, 1) 0ms"},children:[i,n.jsx("div",{className:`absolute right-0 top-4 ${e.open?"opacity-100":"opacity-0 invisible"} transition-opacity duration-1000 ease-in-out`,children:n.jsx(ee,{"aria-label":"Close drawer",onClick:()=>e.setDrawerOpen(!1),children:n.jsx(yc,{})})})]}):e.displayed?n.jsxs(n.Fragment,{children:[n.jsx(ee,{color:"inherit","aria-label":"Open drawer",onClick:()=>e.setDrawerOpen(!0),size:"large",className:"absolute top-2 left-6",children:n.jsx(mr,{})}),n.jsx(Vt,{side:"left",transparent:!0,open:e.open,onOpenChange:e.setDrawerOpen,children:i})]}):null}const vH=f.memo(function({HomePage:t=ta,customRoutes:c}){const i=Ie.useLocation(),l=Ae();if(!l)return n.jsx(n.Fragment,{});const a=i.state,s=a&&a.base_location?a.base_location:i,d=[];l.views&&l.views.forEach(y=>{Array.isArray(y.path)?d.push(...y.path.map(h=>_a(h,y))):d.push(_a(y.path,y))});const A=[...l.collections??[]].sort((y,h)=>h.path.length-y.path.length).map(y=>{const h=l.buildUrlCollectionPath(y.alias??y.path);return n.jsx(Ie.Route,{path:h+"/*",element:n.jsx(Jo,{path:h,title:y.name,type:"collection",children:n.jsx(St,{isSubCollection:!1,parentPathSegments:[],fullPath:y.alias??y.path,...y,Actions:Yo(y.Actions)},`collection_view_${y.alias??y.path}`)})},`navigation_${y.alias??y.path}`)}),_=n.jsx(Ie.Route,{path:"/",element:n.jsx(Jo,{path:l.homeUrl,title:"Home",type:"home",children:n.jsx(t,{})},"navigation_home")}),g=n.jsx(Ie.Route,{path:"*",element:n.jsx(ca,{})});return n.jsxs(Ie.Routes,{location:s,children:[A,d,_,g,c]})}),_a=(e,t)=>n.jsx(Ie.Route,{path:e,element:n.jsx(Jo,{path:e,title:t.name,type:"view",children:t.view},`navigation_${e}`)},"navigation_view_"+e),Jo=f.memo(function({children:t,title:c,path:i,type:l}){const a=fr();return f.useEffect(()=>{a.set({breadcrumbs:[{title:c,url:i}]})},[i,c]),n.jsx(n.Fragment,{children:t})},de);function KH(e){return e}function CH(e){return e}function SH(e){return e}function BH(e){return e}function EH(e){return e}function FH(e){return e}function PH(e){return e}function DH(e){return e}function NH(e){return e}function MH(){const e=typeof window<"u"&&window.matchMedia("(prefers-color-scheme: dark)"),c=(localStorage.getItem("prefers-dark-mode")!=null?localStorage.getItem("prefers-dark-mode")==="true":null)??e,[i,l]=f.useState(c?"dark":"light");f.useEffect(()=>{l(c?"dark":"light"),d(c?"dark":"light")},[c]);const a=f.useCallback(()=>{l("dark"),d("dark")},[e]),s=f.useCallback(()=>{l("light"),d("light")},[]),d=A=>{document.body.style.setProperty("color-scheme",A),document.documentElement.dataset.theme=A},u=f.useCallback(()=>{i==="light"?(e?localStorage.removeItem("prefers-dark-mode"):localStorage.setItem("prefers-dark-mode","true"),a()):(e?localStorage.setItem("prefers-dark-mode","false"):localStorage.removeItem("prefers-dark-mode"),s())},[i,e]);return{mode:i,setMode:l,toggleMode:u}}function TH(){const[e,t]=f.useState({}),c=f.useCallback(I=>{const b=localStorage.getItem(I);return b?JSON.parse(b):{}},[]),i=f.useCallback(I=>{const b=`collection_config::${jr(I)}`;return e[b]?e[b]:c(b)},[e,c]),l=f.useCallback((I,b)=>{const p=`collection_config::${jr(I)}`;localStorage.setItem(p,JSON.stringify(b)),t(w=>{const k=w[p],K=Ze(k??c(I),b);return Ze(w,K)})},[c]),[a,s]=f.useState([]),[d,u]=f.useState([]),[A,_]=f.useState([]);f.useEffect(()=>{s(localStorage.getItem("recently_visited_paths")?JSON.parse(localStorage.getItem("recently_visited_paths")):[]),u(localStorage.getItem("favourite_paths")?JSON.parse(localStorage.getItem("favourite_paths")):[]),_(localStorage.getItem("collapsed_groups")?JSON.parse(localStorage.getItem("collapsed_groups")):[])},[]);const g=f.useCallback(I=>{localStorage.setItem("recently_visited_paths",JSON.stringify(I)),s(I)},[]),y=f.useCallback(I=>{localStorage.setItem("favourite_paths",JSON.stringify(I)),u(I)},[]),h=f.useCallback(I=>{localStorage.setItem("collapsed_groups",JSON.stringify(I)),_(I)},[]);return{onCollectionModified:l,getCollectionConfig:i,recentlyVisitedPaths:a,setRecentlyVisitedPaths:g,favouritePaths:d,setFavouritePaths:y,collapsedGroups:A,setCollapsedGroups:h}}const OH=({children:e})=>n.jsx(Wt.SnackbarProvider,{maxSnack:3,autoHideDuration:3500,children:e}),LH=({ref:e})=>{const[t,c]=f.useState(!1),[i,l]=f.useState(!1);return f.useEffect(()=>{e.current&&(e.current.onfocus=()=>{c(!0),l(!0)},e.current.onblur=()=>{l(!1)})},[e]),{inputFocused:i,autoCompleteOpen:t,setAutoCompleteOpen:c}};function QH({children:e,open:t,setOpen:c}){const i=f.useRef(null);return Mo(i,()=>c(!1)),n.jsx(To,{in:t,duration:50,className:E("absolute top-full left-0 right-0 overflow-visible",t?"shadow":"","my-2","z-20","w-full"),children:n.jsx("div",{ref:i,className:E(t?He:"","bg-gray-50 dark:bg-gray-900 py-2"),children:e})})}function VH({children:e,onClick:t}){return n.jsx("div",{className:"flex w-full items-center pr-6 pl-14 h-[48px] cursor-pointer hover:bg-gray-100 dark:hover:bg-gray-800",onClick:t,children:e})}const WH=e=>{switch(e){case"error":return"bg-red-50 dark:bg-red-800 dark:text-red-100 text-red-900";case"warning":return"bg-amber-50 dark:bg-amber-800 dark:text-amber-100 text-amber-900";case"info":return"bg-blue-50 dark:bg-blue-800 dark:text-blue-100 text-blue-900";case"success":return"bg-emerald-50 dark:bg-emerald-800 dark:text-emerald-100 text-emerald-900";default:return"bg-blue-50 dark:bg-blue-800 dark:text-blue-100 text-blue-900"}},GH=({children:e,onDismiss:t,color:c="info",action:i,className:l,style:a})=>{const s=WH(c);return n.jsxs("div",{style:a,className:E("px-4 py-2 rounded-md flex items-center gap-2",s,l),children:[n.jsx("span",{className:"flex-grow",children:e}),t&&n.jsx("button",{className:"text-gray-400 hover:text-gray-600 dark:text-gray-500 dark:hover:text-gray-400",onClick:t,children:"×"}),i]})},zH=({src:e,alt:t,children:c,className:i,...l},a)=>n.jsx("button",{ref:a,...l,className:E("rounded-full flex items-center justify-center overflow-hidden",ge,"p-1 hover:bg-gray-200 hover:dark:bg-gray-700",i),children:e?n.jsx("img",{className:"object-cover rounded-full w-10 h-10 bg-gray-100 dark:bg-gray-800",src:e,alt:t}):n.jsx("span",{className:"py-1.5 text-lg font-medium text-gray-900 dark:text-white rounded-full w-10 h-10 bg-gray-100 dark:bg-gray-800",children:c})}),Tt=f.forwardRef(zH);function ya({children:e,style:t,onClick:c,className:i}){const l=f.useCallback(a=>{(a.key==="Enter"||a.key===" ")&&c?.()},[c]);return n.jsx("div",{onKeyPress:l,role:c?"button":void 0,tabIndex:c?0:void 0,onClick:c,className:E(cc,c&&ge,c&&ic,i),style:t,children:e})}const HH={xs:"max-w-xs",sm:"max-w-sm",md:"max-w-md",lg:"max-w-lg",xl:"max-w-xl","2xl":"max-w-2xl","3xl":"max-w-3xl","4xl":"max-w-4xl","5xl":"max-w-5xl","6xl":"max-w-6xl","7xl":"max-w-7xl"},UH=({children:e,className:t,style:c,maxWidth:i="7xl"},l)=>{const a=i?HH[i]:"";return n.jsx("div",{ref:l,className:E("mx-auto px-3 md:px-4 lg-px-6",a,t),style:c,children:e})},Ot=f.forwardRef(UH);function Lt({children:e,maxWidth:t,fullScreen:c=!1,className:i}){return n.jsx("div",{className:"flex flex-col flex-grow h-full",children:n.jsx(Ot,{className:E("m-auto",i),maxWidth:t,children:e})})}function Gn({size:e="medium",className:t}){let c="";e==="small"?c="w-4 h-4 m-1":e==="medium"?c="w-8 h-8 m-1":c="w-10 h-10 m-1";let i="";return e==="small"?i="border-[3px]":e==="medium"?i="border-4":i="border-[6px]",n.jsx("div",{className:E(c,i,"inline-block animate-spin rounded-full border-solid border-current border-r-transparent align-[-0.125em] motion-reduce:animate-[spin_1.5s_linear_infinite]","text-blue-600 dark:text-blue-400",t),role:"status",children:n.jsx("span",{className:"!absolute !-m-px !h-px !w-px !overflow-hidden !whitespace-nowrap !border-0 !p-0 ![clip:rect(0,0,0,0)]",children:"Loading..."})})}const YH={xs:"max-w-xs min-w-xs w-xs",sm:"max-w-sm min-w-sm w-sm",md:"max-w-md min-w-md w-md",lg:"max-w-lg min-w-lg w-lg",xl:"max-w-xl min-w-xl w-xl","2xl":"max-w-2xl min-w-2xl w-2xl","3xl":"max-w-3xl min-w-3xl w-3xl","4xl":"max-w-4xl min-w-4xl w-4xl","5xl":"max-w-5xl min-w-5xl w-5xl","6xl":"max-w-6xl min-w-6xl w-6xl","7xl":"max-w-7xl min-w-7xl w-7xl",full:"max-w-full min-w-full w-full"},Zo=({open:e,onOpenChange:t,children:c,className:i,fullWidth:l=!0,fullHeight:a,fullScreen:s,scrollable:d=!0,maxWidth:u="lg"})=>{const[A,_]=f.useState(!1);return f.useEffect(()=>{if(e)return _(!0),()=>{};{const g=setTimeout(()=>{_(!1)},250);return()=>clearTimeout(g)}},[e]),n.jsx($e.Root,{open:A||e,onOpenChange:t,children:n.jsx($e.Portal,{children:n.jsxs("div",{className:"fixed inset-0 z-40",children:[n.jsx($e.Overlay,{className:E("fixed inset-0 transition-opacity z-20 ease-in-out duration-200 bg-black bg-opacity-50 dark:bg-opacity-60 backdrop-blur-sm ",A&&e?"opacity-100":"opacity-0","z-20 fixed top-0 left-0 w-full h-full flex justify-center items-center"),style:{pointerEvents:A?"auto":"none"}}),n.jsx($e.Content,{className:E("h-full outline-none flex justify-center items-center z-50 opacity-100 transition-all duration-200 ease-in-out"),children:n.jsx("div",{className:E(He,"z-30","relative","outline-none focus:outline-none",l&&!s?"w-11/12":void 0,a&&!s?"h-full":void 0,"text-gray-900 dark:text-white","justify-center items-center",s?"h-screen w-screen":"max-h-[90vh] shadow-xl","ease-in-out duration-200",d&&"overflow-y-auto",A&&e?"opacity-100":"opacity-0",u&&!s?YH[u]:void 0,i),children:c})})]})})})};function wn({children:e,position:t="sticky",translucent:c=!0,className:i}){return n.jsx("div",{className:E(ue,"py-3 px-4 border-t flex flex-row items-center justify-end bottom-0 right-0 left-0 text-right z-2 gap-2",t,"bg-white bg-opacity-60 dark:bg-gray-900 dark:bg-opacity-60",c?"backdrop-blur-sm":"",i),children:e})}function Xo({children:e,className:t,fullHeight:c}){return c?n.jsx("div",{className:"flex-grow flex flex-col h-full relative",children:e}):n.jsx("div",{className:E("py-6 px-6 h-full flex-grow",t),children:e})}function $H({accept:e,onFilesAdded:t,onFilesRejected:c,maxSize:i,disabled:l,maxFiles:a,title:s,uploadDescription:d="Drag and drop a file here or click",children:u,preventDropOnDocument:A=!0,size:_}){const{getRootProps:g,getInputProps:y,isDragActive:h,isDragAccept:I,isDragReject:b}=er.useDropzone({accept:e,noDragEventsBubbling:!0,maxSize:i,onDrop:t,onDropRejected:c,disabled:l,maxFiles:a,preventDropOnDocument:A});return n.jsxs("div",{...g(),className:E(qe,ze,ge,"flex gap-2","p-4 box-border relative items-center border-2 border-solid border-transparent outline-none rounded-md duration-200 ease-[cubic-bezier(0.4,0,0.2,1)] focus:border-primary-solid",{"h-44":_==="medium","h-28":_==="small","cursor-pointer":!l,"hover:bg-field-hover dark:hover:bg-field-hover-dark":!h,"transition-colors duration-200 ease-[cubic-bezier(0,0,0.2,1)] border-red-500":b,"transition-colors duration-200 ease-[cubic-bezier(0,0,0.2,1)] border-green-500":I}),children:[n.jsx(j,{variant:"caption",color:"secondary",className:"absolute top-2 left-3.5 cursor-inherit",children:s}),n.jsx("input",{...y()}),u,n.jsx("div",{className:"flex-grow h-28 box-border flex flex-col items-center justify-center text-center",children:n.jsx(j,{align:"center",variant:"label",children:d})})]})}function ha({children:e,loading:t,disabled:c,onClick:i,startIcon:l,...a}){return n.jsxs(te,{disabled:t||c,onClick:i,component:a.component,...a,children:[t&&n.jsx(Gn,{size:"small"}),!t&&l,e]})}function jH({children:e,style:t,className:c}){return n.jsx("div",{className:E(He,c),style:t,children:e})}function xe({inputRef:e,open:t,name:c,id:i,onOpenChange:l,value:a,onChange:s,onValueChange:d,onMultiValueChange:u,className:A,inputClassName:_,placeholder:g,renderValue:y,renderValues:h,label:I,size:b="medium",includeFocusOutline:p=!0,error:w,disabled:k,padding:K=!0,position:m="item-aligned",endAdornment:v,multiple:S,invisible:B,children:P,...F}){const[D,C]=f.useState(!1);f.useEffect(()=>{C(t??!1)},[t]);const N=f.useCallback(M=>{S?Array.isArray(a)&&a.includes(M)?u?.(a.filter(H=>H!==M)):u?.([...a??[],M]):d?.(M),!S&&s&&s({target:{name:c,value:M}})},[S,s,a,u,d]);return n.jsxs(je.Root,{name:c,value:Array.isArray(a)?void 0:a,defaultOpen:t,open:D,disabled:k,onValueChange:N,onOpenChange:M=>{l?.(M),C(M)},...F,children:[typeof I=="string"?n.jsx(di,{error:w,children:I}):I,n.jsxs("div",{className:E(b==="small"?"min-h-[42px]":"min-h-[64px]","select-none rounded-md text-sm",B?yr:qe,k?en:ze,"relative flex items-center",A),children:[n.jsxs(je.Trigger,{ref:e,id:i,className:E("w-full h-full",b==="small"?"h-[42px]":"h-[64px]",K?"px-4 ":"","outlin e-none focus:outline-none","select-none rounded-md text-sm",w?"text-red-500 dark:text-red-600":"focus:text-text-primary dark:focus:text-text-primary-dark",w?"border border-red-500 dark:border-red-600":"",k?"text-gray-600 dark:text-gray-400":"text-gray-800 dark:text-gray-200","relative flex items-center",p?ge:"",_),children:[n.jsx(je.Value,{asChild:!0,children:n.jsxs("div",{className:E("flex-grow w-full max-w-full flex flex-row gap-2 items-center","overflow-visible",b==="small"?"h-[42px]":"h-[64px]"),children:[y&&(a&&Array.isArray(a)?a.map((M,H)=>n.jsx("div",{className:"flex items-center gap-1 max-w-full",children:y?y(M,H):M},M)):typeof a=="string"?y?y(a,0):a:g),h&&(!a||Array.isArray(a))?h(a??[]):null,!y&&!h&&a]})}),n.jsx(je.Icon,{className:E("px-2 h-full flex items-center"),children:n.jsx(eo,{size:"small",className:E("transition",t?"rotate-180":"")})})]}),v&&n.jsx("div",{className:E("absolute h-full flex items-center",b==="small"?"right-10":"right-14"),onClick:M=>M.stopPropagation(),children:v})]}),n.jsx(je.Portal,{children:n.jsx(je.Content,{position:m,className:"z-50 overflow-hidden relative border border-gray-200 dark:border-gray-800 bg-white dark:bg-gray-800 p-2 rounded-lg shadow-lg",children:n.jsx(je.Viewport,{children:P})})})]})}function Re({value:e,children:t,disabled:c,className:i}){return n.jsxs(je.Item,{value:e,disabled:c,onClick:l=>{l.preventDefault(),l.stopPropagation()},className:E("w-full","relative relative flex items-center p-2 rounded-md text-sm text-gray-700 dark:text-gray-300",ge,"focus:z-10","data-[state=checked]:bg-gray-100 data-[state=checked]:dark:bg-gray-900 focus:bg-gray-100 dark:focus:bg-gray-950","data-[state=checked]:focus:bg-gray-200 data-[state=checked]:dark:focus:bg-gray-950",c?"opacity-50 cursor-not-allowed":"cursor-pointer","[&>*]:w-full","overflow-visible",i),children:[n.jsx(je.ItemText,{children:t}),n.jsx("div",{className:"absolute left-1 data-[state=checked]:block hidden",children:n.jsx(_c,{size:16})})]},e)}function qH({label:e,children:t,className:c}){return n.jsxs(n.Fragment,{children:[n.jsx(je.Group,{className:E("text-xs text-gray-900 dark:text-gray-100 uppercase tracking-wider font-bold mt-6 first:mt-2","px-2 py-2",c),children:e}),t]})}function Qt({onTextSearch:e,placeholder:t="Search",expandable:c=!1,large:i=!1,className:l,autoFocus:a}){const[s,d]=f.useState(""),[u,A]=f.useState(!1),_=f.useDeferredValue(s);f.useEffect(()=>{e(_||void 0)},[_]);const g=f.useCallback(()=>{d(""),e(void 0)},[]);return n.jsxs("div",{className:E("relative",i?"h-14":"h-[42px]","bg-gray-50 dark:bg-gray-800 transition duration-150 ease-in-out border",ue,"rounded"),children:[n.jsx("div",{className:"absolute p-0 px-4 h-full absolute pointer-events-none flex items-center justify-center top-0",children:n.jsx(sc,{className:"text-gray-500"})}),n.jsx("input",{placeholder:t,value:s,onChange:y=>{d(y.target.value)},autoFocus:a,onFocus:()=>A(!0),onBlur:()=>A(!1),className:E("relative flex items-center rounded transition-all bg-transparent outline-none appearance-none border-none","pl-12 h-full text-current ",c?u?"w-[220px]":"w-[180px]":"",ge,l)}),s?n.jsx(ee,{className:`${i?"mr-2 top-1":"mr-1 top-0"} absolute right-0 z-10`,onClick:g,children:n.jsx(an,{size:"small"})}):n.jsx("div",{style:{width:26}})]})}const Vt=({children:e,side:t="right",open:c,onOpenChange:i,transparent:l,...a})=>{const[s,d]=f.useState(!1);f.useEffect(()=>{if(c)return d(!0),()=>{};{const A=setTimeout(()=>{d(!1)},250);return()=>clearTimeout(A)}},[c]);const u={top:"-translate-y-full",bottom:"translate-y-full",left:"-translate-x-full",right:"translate-x-full"};return n.jsx($e.Root,{open:s||c,onOpenChange:i,children:n.jsxs($e.Portal,{children:[n.jsx($e.Overlay,{className:E("fixed inset-0 transition-opacity z-20 ease-in-out duration-200 backdrop-blur-sm",l?"bg-white bg-opacity-80":"bg-black bg-opacity-50","dark:bg-black dark:bg-opacity-60",s&&c?"opacity-100":"opacity-0"),style:{pointerEvents:s?"auto":"none"}}),n.jsx($e.Content,{...a,className:E("text-gray-900 dark:text-white","fixed transform z-20 transition-all duration-[240ms] ease-in-out","outline-none focus:outline-none",l?"":"shadow-md",t==="top"||t==="bottom"?"w-full":"h-full",t==="left"||t==="top"?"left-0 top-0":"right-0 bottom-0",s&&c?"opacity-100":"opacity-0",!s||!c?u[t]:""),children:e})]})})};function JH(){return n.jsxs("div",{role:"status",children:[n.jsxs("svg",{"aria-hidden":"true",className:"w-8 h-8 mr-2 text-gray-200 animate-spin dark:text-gray-600 fill-primary",viewBox:"0 0 100 101",fill:"none",xmlns:"http://www.w3.org/2000/svg",children:[n.jsx("path",{d:"M100 50.5908C100 78.2051 77.6142 100.591 50 100.591C22.3858 100.591 0 78.2051 0 50.5908C0 22.9766 22.3858 0.59082 50 0.59082C77.6142 0.59082 100 22.9766 100 50.5908ZM9.08144 50.5908C9.08144 73.1895 27.4013 91.5094 50 91.5094C72.5987 91.5094 90.9186 73.1895 90.9186 50.5908C90.9186 27.9921 72.5987 9.67226 50 9.67226C27.4013 9.67226 9.08144 27.9921 9.08144 50.5908Z",fill:"currentColor"}),n.jsx("path",{d:"M93.9676 39.0409C96.393 38.4038 97.8624 35.9116 97.0079 33.5539C95.2932 28.8227 92.871 24.3692 89.8167 20.348C85.8452 15.1192 80.8826 10.7238 75.2124 7.41289C69.5422 4.10194 63.2754 1.94025 56.7698 1.05124C51.7666 0.367541 46.6976 0.446843 41.7345 1.27873C39.2613 1.69328 37.813 4.19778 38.4501 6.62326C39.0873 9.04874 41.5694 10.4717 44.0505 10.1071C47.8511 9.54855 51.7191 9.52689 55.5402 10.0491C60.8642 10.7766 65.9928 12.5457 70.6331 15.2552C75.2735 17.9648 79.3347 21.5619 82.5849 25.841C84.9175 28.9121 86.7997 32.2913 88.1811 35.8758C89.083 38.2158 91.5421 39.6781 93.9676 39.0409Z",fill:"currentFill"})]}),n.jsx("span",{className:"sr-only",children:"Loading..."})]})}function An({value:e,onChange:t,label:c,type:i="text",multiline:l=!1,invisible:a,rows:s,disabled:d,error:u,endAdornment:A,autoFocus:_,placeholder:g,size:y="medium",className:h,style:I,inputClassName:b,inputStyle:p,inputRef:w,...k}){const K=w??f.useRef(null),[m,v]=f.useState(document.activeElement===K.current),S=e!=null&&e!=="",B=f.useCallback(F=>{F.target.blur(),F.stopPropagation(),setTimeout(()=>{F.target.focus()},0)},[]),P=l?n.jsx(gt,{...k,ref:K,placeholder:g,autoFocus:_,rows:s,value:e??"",onChange:t,style:p,className:E(a?Ar:ge,"rounded-md resize-none w-full outline-none p-[32px] text-base bg-transparent min-h-[64px] px-3 pt-[28px]",d&&"border border-transparent outline-none opacity-50 text-gray-600 dark:text-gray-500")}):n.jsx("input",{...k,ref:K,onWheel:i==="number"?B:void 0,disabled:d,style:p,className:E("w-full outline-none bg-transparent leading-normal px-3","rounded-md",a?Ar:ge,d?en:ze,y==="small"?"min-h-[48px]":"min-h-[64px]",c?y==="medium"?"pt-[28px] pb-2":"pt-4 pb-2":"py-2",m?"text-text-primary dark:text-text-primary-dark":"",A?"pr-10":"pr-3",b,d&&"border border-transparent outline-none opacity-50 dark:opacity-50 text-gray-800 dark:text-gray-200"),placeholder:g,autoFocus:_,onFocus:()=>v(!0),onBlur:()=>v(!1),type:i,value:Number.isNaN(e)?"":e??"",onChange:t});return n.jsxs("div",{className:E("rounded-md relative max-w-full",a?yr:qe,d?en:ze,u?"border border-red-500 dark:border-red-600":"",{"min-h-[48px]":!a&&y==="small","min-h-[64px]":!a&&y==="medium"},h),style:I,children:[c&&n.jsx(mt,{className:E("pointer-events-none absolute",y==="medium"?"top-1":"-top-1",u?"text-red-500 dark:text-red-600":m?"text-primary":"text-text-secondary dark:text-text-secondary-dark",d?"opacity-50":""),shrink:S||m,children:c}),P,A&&n.jsx("div",{className:"flex absolute right-0 top-3 mr-3 ",children:A})]})}function ga({value:e,onValueChange:t,className:c,children:i}){return n.jsx(or.Root,{value:e,onValueChange:t,children:n.jsx(or.List,{className:E("flex text-sm font-medium text-center text-gray-800 dark:text-gray-200",c),children:i})})}function xo({value:e,className:t,children:c,disabled:i}){return n.jsx(or.Trigger,{value:e,disabled:i,className:E(ge,"border-b-2 border-transparent","data-[state=active]:border-secondary",i?"text-gray-400 dark:text-gray-500":E("text-gray-700 dark:text-gray-300","data-[state=active]:text-gray-900 data-[state=active]:dark:text-gray-100","hover:text-gray-800 dark:hover:text-gray-200"),t),children:n.jsx("div",{className:E("uppercase inline-block p-2 px-4 m-2 rounded","hover:bg-gray-100 dark:hover:bg-gray-800"),children:c})})}const ZH=({children:e,className:t,style:c})=>n.jsx("table",{className:E("w-full text-left text-gray-800 dark:text-gray-200 rounded-md overflow-x-auto",t),style:c,children:e}),XH=({children:e,className:t})=>n.jsx("tbody",{className:E("bg-white text-sm dark:bg-gray-800 divide-y divide-gray-200 dark:divide-gray-700",t),children:e}),xH=({children:e,className:t})=>n.jsx("thead",{children:n.jsx("tr",{className:E(ue,"text-sm font-medium text-gray-700 dark:text-gray-300","bg-gray-50 border-b dark:bg-gray-900",t),children:e})}),RH=({children:e,className:t,onClick:c,style:i})=>n.jsx("tr",{onClick:c,style:i,className:E("divide-gray-100 dark:divide-gray-800","bg-white dark:bg-gray-950",c?"hover:bg-gray-100 dark:hover:bg-gray-800 cursor-pointer":"",t),children:e}),eU=({children:e,header:t=!1,scope:c="",align:i,className:l,style:a,colspan:s})=>{const d=f.useRef(null),u=t||nU(d.current)==="TableHeader"?"th":"td";return n.jsx(u,{scope:c,colSpan:s,ref:d,style:a,className:E("px-4 py-3 text-clip ",i==="center"?"text-center":i==="right"?"text-right":"text-left",l),children:e})};function nU(e){if(e){const t=Object.keys(e).find(a=>a.startsWith("__reactFiber$")||a.startsWith("__reactInternalInstance$")),c=e[t],i=a=>{let s=a.return;for(;typeof s.type=="string";)s=s.return;return s};let l=i(c);return l=i(l),l?.elementType?.name}}o.AbcIcon=ts,o.AcUnitIcon=cs,o.AccessAlarmIcon=is,o.AccessAlarmsIcon=as,o.AccessTimeFilledIcon=ss,o.AccessTimeIcon=ls,o.AccessibilityIcon=ds,o.AccessibilityNewIcon=us,o.AccessibleForwardIcon=As,o.AccessibleIcon=fs,o.AccountBalanceIcon=_s,o.AccountBalanceWalletIcon=ys,o.AccountBoxIcon=hs,o.AccountCircleIcon=gs,o.AccountTreeIcon=Is,o.AdUnitsIcon=bs,o.AdbIcon=ps,o.AddAPhotoIcon=ws,o.AddAlarmIcon=ks,o.AddAlertIcon=ms,o.AddBoxIcon=vs,o.AddBusinessIcon=Ks,o.AddCardIcon=Cs,o.AddChartIcon=Ss,o.AddCircleIcon=Bs,o.AddCircleOutlineIcon=Es,o.AddCommentIcon=Fs,o.AddHomeIcon=Ps,o.AddHomeWorkIcon=Ds,o.AddIcCallIcon=Ns,o.AddIcon=hn,o.AddLinkIcon=dc,o.AddLocationAltIcon=Ts,o.AddLocationIcon=Ms,o.AddModeratorIcon=Os,o.AddPhotoAlternateIcon=Ls,o.AddReactionIcon=Qs,o.AddRoadIcon=Vs,o.AddShoppingCartIcon=Ws,o.AddTaskIcon=Gs,o.AddToDriveIcon=zs,o.AddToHomeScreenIcon=Hs,o.AddToPhotosIcon=Us,o.AddToQueueIcon=Ys,o.AdfScannerIcon=$s,o.AdjustIcon=js,o.AdminPanelSettingsIcon=qs,o.AdsClickIcon=Js,o.AgricultureIcon=Zs,o.AirIcon=Xs,o.AirlineSeatFlatAngledIcon=Rs,o.AirlineSeatFlatIcon=xs,o.AirlineSeatIndividualSuiteIcon=ed,o.AirlineSeatLegroomExtraIcon=nd,o.AirlineSeatLegroomNormalIcon=od,o.AirlineSeatLegroomReducedIcon=rd,o.AirlineSeatReclineExtraIcon=td,o.AirlineSeatReclineNormalIcon=cd,o.AirlineStopsIcon=id,o.AirlinesIcon=ad,o.AirplaneTicketIcon=ld,o.AirplanemodeActiveIcon=sd,o.AirplanemodeInactiveIcon=dd,o.AirplayIcon=ud,o.AirportShuttleIcon=fd,o.AlarmAddIcon=_d,o.AlarmIcon=Ad,o.AlarmOffIcon=yd,o.AlarmOnIcon=hd,o.AlbumIcon=gd,o.Alert=GH,o.AlignHorizontalCenterIcon=Id,o.AlignHorizontalLeftIcon=bd,o.AlignHorizontalRightIcon=pd,o.AlignVerticalBottomIcon=wd,o.AlignVerticalCenterIcon=kd,o.AlignVerticalTopIcon=md,o.AllInboxIcon=vd,o.AllInclusiveIcon=Kd,o.AllOutIcon=Cd,o.AltRouteIcon=Sd,o.AlternateEmailIcon=Bd,o.AnalyticsIcon=Ed,o.AnchorIcon=Fd,o.AndroidIcon=Pd,o.AnimationIcon=Dd,o.AnnouncementIcon=Nd,o.AodIcon=Md,o.ApartmentIcon=Td,o.ApiIcon=Od,o.AppBlockingIcon=Ld,o.AppRegistrationIcon=Qd,o.AppSettingsAltIcon=Vd,o.AppShortcutIcon=Wd,o.ApprovalIcon=Gd,o.AppsIcon=zd,o.AppsOutageIcon=Hd,o.ArchitectureIcon=Ud,o.ArchiveIcon=Yd,o.AreaChartIcon=$d,o.ArrayContainer=Pt,o.ArrayContainerItem=Dt,o.ArrayCustomShapedFieldBinding=Bi,o.ArrayEnumPreview=Mr,o.ArrayItemOptions=la,o.ArrayOfMapsPreview=Jc,o.ArrayOfReferencesFieldBinding=fi,o.ArrayOfReferencesPreview=Xc,o.ArrayOfStorageComponentsPreview=xc,o.ArrayOfStringsPreview=Rc,o.ArrayOneOfPreview=ei,o.ArrayPropertyEnumPreview=Tr,o.ArrayPropertyPreview=Nr,o.ArrowBackIcon=jd,o.ArrowBackIosIcon=qd,o.ArrowBackIosNewIcon=Jd,o.ArrowCircleDownIcon=Zd,o.ArrowCircleLeftIcon=Xd,o.ArrowCircleRightIcon=xd,o.ArrowCircleUpIcon=Rd,o.ArrowDownwardIcon=eu,o.ArrowDropDownCircleIcon=nu,o.ArrowDropDownIcon=gr,o.ArrowDropUpIcon=ou,o.ArrowForwardIcon=uc,o.ArrowForwardIosIcon=ru,o.ArrowLeftIcon=tu,o.ArrowOutwardIcon=cu,o.ArrowRightAltIcon=au,o.ArrowRightIcon=iu,o.ArrowUpwardIcon=po,o.ArtTrackIcon=lu,o.ArticleIcon=su,o.AspectRatioIcon=du,o.AssessmentIcon=uu,o.AssignmentIcon=fc,o.AssignmentIndIcon=fu,o.AssignmentLateIcon=Au,o.AssignmentReturnIcon=_u,o.AssignmentReturnedIcon=yu,o.AssignmentTurnedInIcon=hu,o.AssistWalkerIcon=gu,o.AssistantDirectionIcon=bu,o.AssistantIcon=Iu,o.AssistantPhotoIcon=pu,o.AssuredWorkloadIcon=wu,o.AsyncPreviewComponent=VG,o.AtmIcon=ku,o.AttachEmailIcon=mu,o.AttachFileIcon=vu,o.AttachMoneyIcon=Ku,o.AttachmentIcon=Cu,o.AttractionsIcon=Su,o.AttributionIcon=Bu,o.AudioFileIcon=Eu,o.AudiotrackIcon=Fu,o.AuthControllerContext=ir,o.AutoAwesomeIcon=Pu,o.AutoAwesomeMosaicIcon=Du,o.AutoAwesomeMotionIcon=Nu,o.AutoDeleteIcon=Mu,o.AutoFixHighIcon=Tu,o.AutoFixNormalIcon=Ou,o.AutoFixOffIcon=Lu,o.AutoGraphIcon=Qu,o.AutoModeIcon=Vu,o.AutoStoriesIcon=Wu,o.Autocomplete=QH,o.AutocompleteItem=VH,o.AutofpsSelectIcon=Gu,o.AutorenewIcon=zu,o.AvTimerIcon=Hu,o.Avatar=Tt,o.BabyChangingStationIcon=Uu,o.BackHandIcon=Yu,o.BackpackIcon=$u,o.BackspaceIcon=ju,o.BackupIcon=qu,o.BackupTableIcon=Ju,o.BadgeIcon=Zu,o.BakeryDiningIcon=Xu,o.BalanceIcon=xu,o.BalconyIcon=Ru,o.BallotIcon=Ir,o.BarChartIcon=ef,o.BatchPredictionIcon=nf,o.BathroomIcon=of,o.BathtubIcon=rf,o.Battery0BarIcon=tf,o.Battery1BarIcon=cf,o.Battery2BarIcon=af,o.Battery3BarIcon=lf,o.Battery4BarIcon=sf,o.Battery5BarIcon=df,o.Battery6BarIcon=uf,o.BatteryAlertIcon=ff,o.BatteryChargingFullIcon=Af,o.BatteryFullIcon=_f,o.BatterySaverIcon=yf,o.BatteryStdIcon=hf,o.BatteryUnknownIcon=gf,o.BeachAccessIcon=If,o.BedIcon=bf,o.BedroomBabyIcon=pf,o.BedroomChildIcon=wf,o.BedroomParentIcon=kf,o.BedtimeIcon=mf,o.BedtimeOffIcon=vf,o.BeenhereIcon=Kf,o.BentoIcon=Cf,o.BikeScooterIcon=Sf,o.BiotechIcon=Bf,o.BlenderIcon=Ef,o.BlindIcon=Ff,o.BlindsClosedIcon=Df,o.BlindsIcon=Pf,o.BlockFieldBinding=Ci,o.BlockIcon=Nf,o.BloodtypeIcon=Mf,o.BluetoothAudioIcon=Of,o.BluetoothConnectedIcon=Lf,o.BluetoothDisabledIcon=Qf,o.BluetoothDriveIcon=Vf,o.BluetoothIcon=Tf,o.BluetoothSearchingIcon=Wf,o.BlurCircularIcon=Gf,o.BlurLinearIcon=zf,o.BlurOffIcon=Hf,o.BlurOnIcon=Uf,o.BoltIcon=Yf,o.BookIcon=$f,o.BookOnlineIcon=jf,o.BookmarkAddIcon=Jf,o.BookmarkAddedIcon=Zf,o.BookmarkBorderIcon=Xf,o.BookmarkIcon=qf,o.BookmarkRemoveIcon=xf,o.BookmarksIcon=Rf,o.BooleanPreview=ti,o.BooleanSwitch=ot,o.BooleanSwitchWithLabel=On,o.BorderAllIcon=eA,o.BorderBottomIcon=nA,o.BorderClearIcon=oA,o.BorderColorIcon=rA,o.BorderHorizontalIcon=tA,o.BorderInnerIcon=cA,o.BorderLeftIcon=iA,o.BorderOuterIcon=aA,o.BorderRightIcon=lA,o.BorderStyleIcon=sA,o.BorderTopIcon=dA,o.BorderVerticalIcon=uA,o.BoyIcon=fA,o.BrandingWatermarkIcon=AA,o.BreadcrumbUpdater=x3,o.BreakfastDiningIcon=_A,o.Brightness1Icon=yA,o.Brightness2Icon=hA,o.Brightness3Icon=gA,o.Brightness4Icon=IA,o.Brightness5Icon=bA,o.Brightness6Icon=pA,o.Brightness7Icon=wA,o.BrightnessAutoIcon=kA,o.BrightnessHighIcon=mA,o.BrightnessLowIcon=vA,o.BrightnessMediumIcon=KA,o.BroadcastOnHomeIcon=CA,o.BroadcastOnPersonalIcon=SA,o.BrokenImageIcon=BA,o.BrowseGalleryIcon=EA,o.BrowserNotSupportedIcon=FA,o.BrowserUpdatedIcon=PA,o.BrunchDiningIcon=DA,o.BrushIcon=NA,o.BubbleChartIcon=MA,o.BugReportIcon=TA,o.BuildCircleIcon=LA,o.BuildIcon=OA,o.BungalowIcon=QA,o.BurstModeIcon=VA,o.BusAlertIcon=WA,o.BusinessCenterIcon=zA,o.BusinessIcon=GA,o.Button=te,o.COLLECTION_PATH_SEPARATOR=ai,o.CabinIcon=HA,o.CableIcon=UA,o.CachedIcon=YA,o.CakeIcon=$A,o.CalculateIcon=jA,o.CalendarMonthIcon=Ac,o.CalendarTodayIcon=qA,o.CalendarViewDayIcon=JA,o.CalendarViewMonthIcon=ZA,o.CalendarViewWeekIcon=XA,o.CallEndIcon=RA,o.CallIcon=xA,o.CallMadeIcon=e_,o.CallMergeIcon=n_,o.CallMissedIcon=o_,o.CallMissedOutgoingIcon=r_,o.CallReceivedIcon=t_,o.CallSplitIcon=c_,o.CallToActionIcon=i_,o.CameraAltIcon=l_,o.CameraEnhanceIcon=s_,o.CameraFrontIcon=d_,o.CameraIcon=a_,o.CameraIndoorIcon=u_,o.CameraOutdoorIcon=f_,o.CameraRearIcon=A_,o.CameraRollIcon=__,o.CameraswitchIcon=y_,o.CampaignIcon=h_,o.CancelIcon=g_,o.CancelPresentationIcon=I_,o.CancelScheduleSendIcon=b_,o.CandlestickChartIcon=p_,o.CarCrashIcon=w_,o.CarRentalIcon=k_,o.CarRepairIcon=m_,o.Card=ya,o.CardGiftcardIcon=v_,o.CardMembershipIcon=K_,o.CardTravelIcon=C_,o.CarpenterIcon=S_,o.CasesIcon=B_,o.CasinoIcon=E_,o.CastConnectedIcon=P_,o.CastForEducationIcon=D_,o.CastIcon=F_,o.CastleIcon=N_,o.CatchingPokemonIcon=M_,o.CategoryIcon=T_,o.CelebrationIcon=O_,o.CellTowerIcon=L_,o.CellWifiIcon=Q_,o.CenterFocusStrongIcon=V_,o.CenterFocusWeakIcon=W_,o.CenteredView=Lt,o.ChairAltIcon=z_,o.ChairIcon=G_,o.ChaletIcon=H_,o.ChangeCircleIcon=U_,o.ChangeHistoryIcon=Y_,o.ChargingStationIcon=$_,o.ChatBubbleIcon=q_,o.ChatBubbleOutlineIcon=J_,o.ChatIcon=j_,o.CheckBoxIcon=Z_,o.CheckBoxOutlineBlankIcon=X_,o.CheckCircleIcon=x_,o.CheckCircleOutlineIcon=R_,o.CheckIcon=_c,o.Checkbox=Lr,o.ChecklistIcon=ey,o.ChecklistRtlIcon=ny,o.CheckroomIcon=oy,o.ChevronLeftIcon=yc,o.ChevronRightIcon=ry,o.ChildCareIcon=ty,o.ChildFriendlyIcon=cy,o.Chip=Ko,o.ChromeReaderModeIcon=iy,o.ChurchIcon=ay,o.CircleIcon=br,o.CircleNotificationsIcon=ly,o.CircularProgress=Gn,o.CircularProgressCenter=uo,o.ClassIcon=sy,o.CleanHandsIcon=dy,o.CleaningServicesIcon=uy,o.ClearAllIcon=fy,o.ClearIcon=an,o.CloseFullscreenIcon=Ay,o.CloseIcon=pr,o.ClosedCaptionDisabledIcon=yy,o.ClosedCaptionIcon=_y,o.ClosedCaptionOffIcon=hy,o.CloudCircleIcon=Iy,o.CloudDoneIcon=by,o.CloudDownloadIcon=py,o.CloudIcon=gy,o.CloudOffIcon=wy,o.CloudQueueIcon=ky,o.CloudSyncIcon=my,o.CloudUploadIcon=vy,o.Co2Icon=Ky,o.CoPresentIcon=Cy,o.CodeIcon=Sy,o.CodeOffIcon=By,o.CoffeeIcon=Ey,o.CoffeeMakerIcon=Fy,o.Collapse=To,o.CollectionsBookmarkIcon=Dy,o.CollectionsIcon=Py,o.ColorLensIcon=Ny,o.ColorizeIcon=My,o.CommentBankIcon=Oy,o.CommentIcon=Ty,o.CommentsDisabledIcon=Ly,o.CommitIcon=Qy,o.CommuteIcon=Vy,o.CompareArrowsIcon=Gy,o.CompareIcon=Wy,o.CompassCalibrationIcon=zy,o.CompostIcon=Hy,o.CompressIcon=Uy,o.ComputerIcon=Yy,o.ConfirmationNumberIcon=$y,o.ConnectWithoutContactIcon=jy,o.ConnectedTvIcon=qy,o.ConnectingAirportsIcon=Jy,o.ConstructionIcon=Zy,o.ContactEmergencyIcon=Xy,o.ContactMailIcon=xy,o.ContactPageIcon=Ry,o.ContactPhoneIcon=eh,o.ContactSupportIcon=nh,o.ContactlessIcon=oh,o.ContactsIcon=rh,o.Container=Ot,o.ContentCopyIcon=Rn,o.ContentCutIcon=th,o.ContentPasteGoIcon=ih,o.ContentPasteIcon=ch,o.ContentPasteOffIcon=ah,o.ContentPasteSearchIcon=lh,o.ContrastIcon=sh,o.ControlCameraIcon=dh,o.ControlPointDuplicateIcon=fh,o.ControlPointIcon=uh,o.CookieIcon=Ah,o.CopyAllIcon=_h,o.CopyrightIcon=yh,o.CoronavirusIcon=hh,o.CorporateFareIcon=gh,o.CottageIcon=Ih,o.CountertopsIcon=bh,o.CreateIcon=ph,o.CreateNewFolderIcon=wh,o.CreditCardIcon=kh,o.CreditCardOffIcon=mh,o.CreditScoreIcon=vh,o.CribIcon=Kh,o.CrisisAlertIcon=Ch,o.Crop169Icon=Bh,o.Crop32Icon=Eh,o.Crop54Icon=Fh,o.Crop75Icon=Ph,o.CropDinIcon=Dh,o.CropFreeIcon=Nh,o.CropIcon=Sh,o.CropLandscapeIcon=Mh,o.CropOriginalIcon=Th,o.CropPortraitIcon=Oh,o.CropRotateIcon=Lh,o.CropSquareIcon=Qh,o.CrueltyFreeIcon=Vh,o.CssIcon=Wh,o.CurrencyBitcoinIcon=Gh,o.CurrencyExchangeIcon=zh,o.CurrencyFrancIcon=Hh,o.CurrencyLiraIcon=Uh,o.CurrencyPoundIcon=Yh,o.CurrencyRubleIcon=$h,o.CurrencyRupeeIcon=jh,o.CurrencyYenIcon=qh,o.CurrencyYuanIcon=Jh,o.CurtainsClosedIcon=Xh,o.CurtainsIcon=Zh,o.CycloneIcon=xh,o.DEFAULT_FIELD_CONFIGS=Di,o.DangerousIcon=Rh,o.DarkModeIcon=hc,o.DashboardCustomizeIcon=ng,o.DashboardIcon=eg,o.DataArrayIcon=og,o.DataExplorationIcon=rg,o.DataObjectIcon=tg,o.DataSaverOffIcon=cg,o.DataSaverOnIcon=ig,o.DataThresholdingIcon=ag,o.DataUsageIcon=lg,o.DatasetIcon=sg,o.DatasetLinkedIcon=dg,o.DatePreview=ri,o.DateRangeIcon=ug,o.DateTimeField=Vn,o.DateTimeFieldBinding=wi,o.DeblurIcon=fg,o.DebouncedTextField=RG,o.DeckIcon=Ag,o.DehazeIcon=_g,o.DeleteConfirmationDialog=R3,o.DeleteForeverIcon=yg,o.DeleteIcon=wo,o.DeleteOutlineIcon=hg,o.DeleteSweepIcon=gg,o.DeliveryDiningIcon=Ig,o.DensityLargeIcon=bg,o.DensityMediumIcon=pg,o.DensitySmallIcon=wg,o.DepartureBoardIcon=kg,o.DescriptionIcon=gc,o.DeselectIcon=mg,o.DesignServicesIcon=vg,o.DeskIcon=Kg,o.DesktopAccessDisabledIcon=Cg,o.DesktopMacIcon=Sg,o.DesktopWindowsIcon=Bg,o.DetailsIcon=Eg,o.DeveloperBoardIcon=Fg,o.DeveloperBoardOffIcon=Pg,o.DeveloperModeIcon=Dg,o.DeviceHubIcon=Ng,o.DeviceThermostatIcon=Mg,o.DeviceUnknownIcon=Tg,o.DevicesFoldIcon=Lg,o.DevicesIcon=Og,o.DevicesOtherIcon=Qg,o.DialerSipIcon=Vg,o.Dialog=Zo,o.DialogActions=wn,o.DialogContent=Xo,o.DialpadIcon=Wg,o.DiamondIcon=Gg,o.DifferenceIcon=zg,o.DiningIcon=Hg,o.DinnerDiningIcon=Ug,o.DirectionsBikeIcon=$g,o.DirectionsBoatFilledIcon=qg,o.DirectionsBoatIcon=jg,o.DirectionsBusFilledIcon=Zg,o.DirectionsBusIcon=Jg,o.DirectionsCarFilledIcon=xg,o.DirectionsCarIcon=Xg,o.DirectionsIcon=Yg,o.DirectionsOffIcon=Rg,o.DirectionsRailwayFilledIcon=nI,o.DirectionsRailwayIcon=eI,o.DirectionsRunIcon=oI,o.DirectionsSubwayFilledIcon=tI,o.DirectionsSubwayIcon=rI,o.DirectionsTransitFilledIcon=iI,o.DirectionsTransitIcon=cI,o.DirectionsWalkIcon=aI,o.DirtyLensIcon=lI,o.DisabledByDefaultIcon=sI,o.DisabledVisibleIcon=dI,o.DiscFullIcon=uI,o.DiscountIcon=fI,o.DisplaySettingsIcon=AI,o.Diversity1Icon=_I,o.Diversity2Icon=yI,o.Diversity3Icon=hI,o.DnsIcon=gI,o.DoDisturbAltIcon=bI,o.DoDisturbIcon=II,o.DoDisturbOffIcon=pI,o.DoDisturbOnIcon=wI,o.DoNotDisturbAltIcon=mI,o.DoNotDisturbIcon=kI,o.DoNotDisturbOffIcon=vI,o.DoNotDisturbOnIcon=KI,o.DoNotDisturbOnTotalSilenceIcon=CI,o.DoNotStepIcon=SI,o.DoNotTouchIcon=BI,o.DockIcon=EI,o.DocumentScannerIcon=FI,o.DomainAddIcon=DI,o.DomainDisabledIcon=NI,o.DomainIcon=PI,o.DomainVerificationIcon=MI,o.DoneAllIcon=OI,o.DoneIcon=TI,o.DoneOutlineIcon=LI,o.DonutLargeIcon=QI,o.DonutSmallIcon=VI,o.DoorBackIcon=WI,o.DoorFrontIcon=GI,o.DoorSlidingIcon=zI,o.DoorbellIcon=HI,o.DoubleArrowIcon=UI,o.DownhillSkiingIcon=YI,o.DownloadDoneIcon=jI,o.DownloadForOfflineIcon=qI,o.DownloadIcon=$I,o.DownloadingIcon=JI,o.DraftsIcon=ZI,o.DragHandleIcon=XI,o.DragIndicatorIcon=xI,o.DrawIcon=RI,o.Drawer=Aa,o.DrawerNavigationItem=Mt,o.DriveEtaIcon=eb,o.DriveFileMoveIcon=nb,o.DriveFileMoveRtlIcon=ob,o.DriveFileRenameOutlineIcon=rb,o.DriveFolderUploadIcon=Ic,o.DryCleaningIcon=cb,o.DryIcon=tb,o.DuoIcon=ib,o.DvrIcon=ab,o.DynamicFeedIcon=lb,o.DynamicFormIcon=sb,o.EMobiledataIcon=db,o.EarbudsBatteryIcon=fb,o.EarbudsIcon=ub,o.EastIcon=Ab,o.EdgesensorHighIcon=_b,o.EdgesensorLowIcon=yb,o.EditAttributesIcon=hb,o.EditCalendarIcon=gb,o.EditIcon=bc,o.EditLocationAltIcon=bb,o.EditLocationIcon=Ib,o.EditNoteIcon=pb,o.EditNotificationsIcon=wb,o.EditOffIcon=kb,o.EditRoadIcon=mb,o.EggAltIcon=Kb,o.EggIcon=vb,o.EjectIcon=Cb,o.ElderlyIcon=Sb,o.ElderlyWomanIcon=Bb,o.ElectricBikeIcon=Eb,o.ElectricBoltIcon=Fb,o.ElectricCarIcon=Pb,o.ElectricMeterIcon=Db,o.ElectricMopedIcon=Nb,o.ElectricRickshawIcon=Mb,o.ElectricScooterIcon=Tb,o.ElectricalServicesIcon=Ob,o.ElevatorIcon=Lb,o.EmailIcon=pc,o.EmergencyIcon=Qb,o.EmergencyRecordingIcon=Vb,o.EmergencyShareIcon=Wb,o.EmojiEmotionsIcon=Gb,o.EmojiEventsIcon=zb,o.EmojiFoodBeverageIcon=Hb,o.EmojiNatureIcon=Ub,o.EmojiObjectsIcon=Yb,o.EmojiPeopleIcon=$b,o.EmojiSymbolsIcon=jb,o.EmojiTransportationIcon=qb,o.EmptyValue=Fn,o.EnergySavingsLeafIcon=Jb,o.EngineeringIcon=Zb,o.EnhancedEncryptionIcon=Xb,o.EntityCollectionTable=Kt,o.EntityCollectionView=St,o.EntityForm=Pi,o.EntityPreview=yt,o.EntityReference=Je,o.EnumValuesChip=Ee,o.EqualizerIcon=xb,o.ErrorBoundary=se,o.ErrorIcon=wr,o.ErrorOutlineIcon=wc,o.ErrorView=pe,o.EscalatorIcon=Rb,o.EscalatorWarningIcon=ep,o.EuroIcon=np,o.EuroSymbolIcon=op,o.EvStationIcon=rp,o.EventAvailableIcon=cp,o.EventBusyIcon=ip,o.EventIcon=tp,o.EventNoteIcon=ap,o.EventRepeatIcon=lp,o.EventSeatIcon=sp,o.ExitToAppIcon=dp,o.ExpandCircleDownIcon=fp,o.ExpandIcon=up,o.ExpandLessIcon=Ap,o.ExpandMoreIcon=eo,o.ExpandablePanel=fn,o.ExplicitIcon=_p,o.ExploreIcon=yp,o.ExploreOffIcon=hp,o.ExposureIcon=gp,o.ExposureNeg1Icon=Ip,o.ExposureNeg2Icon=bp,o.ExposurePlus1Icon=pp,o.ExposurePlus2Icon=wp,o.ExposureZeroIcon=kp,o.ExtensionIcon=mp,o.ExtensionOffIcon=vp,o.Face2Icon=Cp,o.Face3Icon=Sp,o.Face4Icon=Bp,o.Face5Icon=Ep,o.Face6Icon=Fp,o.FaceIcon=Kp,o.FaceRetouchingNaturalIcon=Pp,o.FaceRetouchingOffIcon=Dp,o.FactCheckIcon=Np,o.FactoryIcon=Mp,o.FamilyRestroomIcon=Tp,o.FastForwardIcon=Op,o.FastRewindIcon=Lp,o.FastfoodIcon=Qp,o.FavoriteBorderIcon=Wp,o.FavoriteIcon=Vp,o.FaxIcon=Gp,o.FeaturedPlayListIcon=zp,o.FeaturedVideoIcon=Hp,o.FeedIcon=Up,o.FeedbackIcon=Yp,o.FemaleIcon=$p,o.FenceIcon=jp,o.FestivalIcon=qp,o.FiberDvrIcon=Jp,o.FiberManualRecordIcon=Zp,o.FiberNewIcon=Xp,o.FiberPinIcon=xp,o.FiberSmartRecordIcon=Rp,o.FieldConfigBadge=X3,o.FieldHelperText=Se,o.FileCopyIcon=kc,o.FileDownloadDoneIcon=nw,o.FileDownloadIcon=ew,o.FileDownloadOffIcon=ow,o.FileOpenIcon=rw,o.FilePresentIcon=tw,o.FileUpload=$H,o.FileUploadIcon=cw,o.Filter1Icon=aw,o.Filter2Icon=lw,o.Filter3Icon=sw,o.Filter4Icon=dw,o.Filter5Icon=uw,o.Filter6Icon=fw,o.Filter7Icon=Aw,o.Filter8Icon=_w,o.Filter9Icon=yw,o.Filter9PlusIcon=hw,o.FilterAltIcon=gw,o.FilterAltOffIcon=Iw,o.FilterBAndWIcon=bw,o.FilterCenterFocusIcon=pw,o.FilterDramaIcon=ww,o.FilterFramesIcon=kw,o.FilterHdrIcon=mw,o.FilterIcon=iw,o.FilterListIcon=vw,o.FilterListOffIcon=mc,o.FilterNoneIcon=Kw,o.FilterTiltShiftIcon=Cw,o.FilterVintageIcon=Sw,o.FindInPageIcon=Bw,o.FindReplaceIcon=Ew,o.FingerprintIcon=Fw,o.FireCMS=IH,o.FireCMSAppBar=aa,o.FireCMSContextInstance=ar,o.FireCMSHomePage=ta,o.FireCMSLogo=ia,o.FireExtinguisherIcon=Pw,o.FireHydrantAltIcon=Dw,o.FireTruckIcon=Nw,o.FireplaceIcon=Mw,o.FirstPageIcon=Tw,o.FitScreenIcon=Ow,o.FitbitIcon=Lw,o.FitnessCenterIcon=Qw,o.FlagCircleIcon=Vw,o.FlagIcon=vc,o.FlakyIcon=Ww,o.FlareIcon=Gw,o.FlashAutoIcon=zw,o.FlashOffIcon=Hw,o.FlashOnIcon=Uw,o.FlashlightOffIcon=Yw,o.FlashlightOnIcon=$w,o.FlatwareIcon=jw,o.FlightClassIcon=Jw,o.FlightIcon=qw,o.FlightLandIcon=Zw,o.FlightTakeoffIcon=Xw,o.FlipCameraAndroidIcon=Rw,o.FlipCameraIosIcon=ek,o.FlipIcon=xw,o.FlipToBackIcon=nk,o.FlipToFrontIcon=ok,o.FloodIcon=rk,o.FluorescentIcon=tk,o.FlutterDashIcon=ck,o.FmdBadIcon=ik,o.FmdGoodIcon=ak,o.FolderCopyIcon=sk,o.FolderDeleteIcon=dk,o.FolderIcon=lk,o.FolderOffIcon=uk,o.FolderOpenIcon=fk,o.FolderSharedIcon=Ak,o.FolderSpecialIcon=_k,o.FolderZipIcon=yk,o.FollowTheSignsIcon=hk,o.FontDownloadIcon=gk,o.FontDownloadOffIcon=Ik,o.FoodBankIcon=bk,o.ForestIcon=pk,o.ForkLeftIcon=wk,o.ForkRightIcon=kk,o.FormatAlignCenterIcon=mk,o.FormatAlignJustifyIcon=vk,o.FormatAlignLeftIcon=Kk,o.FormatAlignRightIcon=Ck,o.FormatBoldIcon=Sk,o.FormatClearIcon=Bk,o.FormatColorFillIcon=Ek,o.FormatColorResetIcon=Fk,o.FormatColorTextIcon=Pk,o.FormatIndentDecreaseIcon=Dk,o.FormatIndentIncreaseIcon=Nk,o.FormatItalicIcon=Mk,o.FormatLineSpacingIcon=Tk,o.FormatListBulletedIcon=Ok,o.FormatListNumberedIcon=kr,o.FormatListNumberedRtlIcon=Lk,o.FormatOverlineIcon=Qk,o.FormatPaintIcon=Vk,o.FormatQuoteIcon=Kc,o.FormatShapesIcon=Wk,o.FormatSizeIcon=Gk,o.FormatStrikethroughIcon=zk,o.FormatTextdirectionLToRIcon=Hk,o.FormatTextdirectionRToLIcon=Uk,o.FormatUnderlinedIcon=Yk,o.FormikArrayContainer=No,o.FortIcon=$k,o.ForumIcon=jk,o.Forward10Icon=Jk,o.Forward30Icon=Zk,o.Forward5Icon=Xk,o.ForwardIcon=qk,o.ForwardToInboxIcon=xk,o.FoundationIcon=Rk,o.FreeBreakfastIcon=em,o.FreeCancellationIcon=nm,o.FrontHandIcon=om,o.FullscreenExitIcon=tm,o.FullscreenIcon=rm,o.FunctionsIcon=Cc,o.GMobiledataIcon=cm,o.GTranslateIcon=im,o.GamepadIcon=am,o.GamesIcon=lm,o.GarageIcon=sm,o.GasMeterIcon=dm,o.GavelIcon=um,o.GeneratingTokensIcon=fm,o.GeoPoint=Br,o.GestureIcon=Am,o.GetAppIcon=_m,o.GifBoxIcon=hm,o.GifIcon=ym,o.GirlIcon=gm,o.GitHubIcon=el,o.GiteIcon=Im,o.GolfCourseIcon=bm,o.GppBadIcon=pm,o.GppGoodIcon=wm,o.GppMaybeIcon=km,o.GpsFixedIcon=mm,o.GpsNotFixedIcon=vm,o.GpsOffIcon=Km,o.GradeIcon=Cm,o.GradientIcon=Sm,o.GradingIcon=Bm,o.GrainIcon=Em,o.GraphicEqIcon=Fm,o.GrassIcon=Pm,o.Grid3x3Icon=Dm,o.Grid4x4Icon=Nm,o.GridGoldenratioIcon=Mm,o.GridOffIcon=Tm,o.GridOnIcon=Om,o.GridViewIcon=Lm,o.GroupAddIcon=Vm,o.GroupIcon=Qm,o.GroupOffIcon=Wm,o.GroupRemoveIcon=Gm,o.GroupWorkIcon=zm,o.Groups2Icon=Um,o.Groups3Icon=Ym,o.GroupsIcon=Hm,o.HMobiledataIcon=$m,o.HPlusMobiledataIcon=jm,o.HailIcon=qm,o.HandshakeIcon=Jm,o.HandymanIcon=Zm,o.HardwareIcon=Xm,o.HdIcon=xm,o.HdrAutoIcon=Rm,o.HdrAutoSelectIcon=ev,o.HdrEnhancedSelectIcon=nv,o.HdrOffIcon=ov,o.HdrOffSelectIcon=rv,o.HdrOnIcon=tv,o.HdrOnSelectIcon=cv,o.HdrPlusIcon=iv,o.HdrStrongIcon=av,o.HdrWeakIcon=lv,o.HeadphonesBatteryIcon=dv,o.HeadphonesIcon=sv,o.HeadsetIcon=uv,o.HeadsetMicIcon=fv,o.HeadsetOffIcon=Av,o.HealingIcon=_v,o.HealthAndSafetyIcon=yv,o.HearingDisabledIcon=gv,o.HearingIcon=hv,o.HeartBrokenIcon=Iv,o.HeatPumpIcon=bv,o.HeightIcon=pv,o.HelpCenterIcon=kv,o.HelpIcon=wv,o.HelpOutlineIcon=mv,o.HevcIcon=vv,o.HexagonIcon=Kv,o.HideImageIcon=Cv,o.HideSourceIcon=Sv,o.HighQualityIcon=Bv,o.HighlightAltIcon=Fv,o.HighlightIcon=Ev,o.HighlightOffIcon=Pv,o.HikingIcon=Dv,o.HistoryEduIcon=Mv,o.HistoryIcon=Nv,o.HistoryToggleOffIcon=Tv,o.HiveIcon=Ov,o.HlsIcon=Lv,o.HlsOffIcon=Qv,o.HolidayVillageIcon=Vv,o.HomeIcon=Wv,o.HomeMaxIcon=Gv,o.HomeMiniIcon=zv,o.HomeRepairServiceIcon=Hv,o.HomeWorkIcon=Uv,o.HorizontalDistributeIcon=Yv,o.HorizontalRuleIcon=$v,o.HorizontalSplitIcon=jv,o.HotTubIcon=qv,o.HotelClassIcon=Zv,o.HotelIcon=Jv,o.HourglassBottomIcon=Xv,o.HourglassDisabledIcon=xv,o.HourglassEmptyIcon=Rv,o.HourglassFullIcon=e0,o.HourglassTopIcon=n0,o.HouseIcon=o0,o.HouseSidingIcon=r0,o.HouseboatIcon=t0,o.HowToRegIcon=c0,o.HowToVoteIcon=i0,o.HtmlIcon=a0,o.HttpIcon=Sc,o.HttpsIcon=l0,o.HubIcon=s0,o.HvacIcon=d0,o.IceSkatingIcon=u0,o.IcecreamIcon=f0,o.Icon=r,o.IconButton=ee,o.ImageAspectRatioIcon=_0,o.ImageIcon=A0,o.ImageNotSupportedIcon=y0,o.ImagePreview=Gc,o.ImageSearchIcon=h0,o.ImagesearchRollerIcon=g0,o.ImportContactsIcon=I0,o.ImportExportIcon=b0,o.ImportantDevicesIcon=p0,o.InboxIcon=w0,o.IncompleteCircleIcon=k0,o.IndeterminateCheckBoxIcon=m0,o.InfoIcon=Bc,o.InfoLabel=nH,o.InputIcon=v0,o.InputLabel=mt,o.InsertChartIcon=K0,o.InsertChartOutlinedIcon=C0,o.InsertCommentIcon=S0,o.InsertDriveFileIcon=B0,o.InsertEmoticonIcon=E0,o.InsertInvitationIcon=F0,o.InsertLinkIcon=P0,o.InsertPageBreakIcon=D0,o.InsertPhotoIcon=N0,o.InsightsIcon=M0,o.InstallDesktopIcon=T0,o.InstallMobileIcon=O0,o.IntegrationInstructionsIcon=L0,o.InterestsIcon=Q0,o.InterpreterModeIcon=V0,o.Inventory2Icon=G0,o.InventoryIcon=W0,o.InvertColorsIcon=z0,o.InvertColorsOffIcon=H0,o.IosShareIcon=U0,o.IronIcon=Y0,o.IsoIcon=$0,o.JavascriptIcon=j0,o.JoinFullIcon=q0,o.JoinInnerIcon=J0,o.JoinLeftIcon=Z0,o.JoinRightIcon=X0,o.KayakingIcon=x0,o.KebabDiningIcon=R0,o.KeyIcon=eK,o.KeyOffIcon=nK,o.KeyValueFieldBinding=vi,o.KeyValuePreview=Or,o.KeyboardAltIcon=rK,o.KeyboardArrowDownIcon=tK,o.KeyboardArrowLeftIcon=cK,o.KeyboardArrowRightIcon=iK,o.KeyboardArrowUpIcon=aK,o.KeyboardBackspaceIcon=lK,o.KeyboardCapslockIcon=sK,o.KeyboardCommandKeyIcon=dK,o.KeyboardControlKeyIcon=uK,o.KeyboardDoubleArrowDownIcon=fK,o.KeyboardDoubleArrowLeftIcon=AK,o.KeyboardDoubleArrowRightIcon=_K,o.KeyboardDoubleArrowUpIcon=yK,o.KeyboardHideIcon=hK,o.KeyboardIcon=oK,o.KeyboardOptionKeyIcon=gK,o.KeyboardReturnIcon=IK,o.KeyboardTabIcon=ko,o.KeyboardVoiceIcon=bK,o.KingBedIcon=pK,o.KitchenIcon=wK,o.KitesurfingIcon=kK,o.LabelIcon=mK,o.LabelImportantIcon=vK,o.LabelOffIcon=KK,o.LabelWithIcon=Ce,o.LanIcon=CK,o.LandscapeIcon=SK,o.LandslideIcon=BK,o.LanguageIcon=EK,o.LaptopChromebookIcon=PK,o.LaptopIcon=FK,o.LaptopMacIcon=DK,o.LaptopWindowsIcon=NK,o.LastPageIcon=MK,o.LaunchIcon=TK,o.LayersClearIcon=LK,o.LayersIcon=OK,o.LeaderboardIcon=QK,o.LeakAddIcon=VK,o.LeakRemoveIcon=WK,o.LegendToggleIcon=GK,o.LensBlurIcon=HK,o.LensIcon=zK,o.LibraryAddCheckIcon=YK,o.LibraryAddIcon=UK,o.LibraryBooksIcon=$K,o.LibraryMusicIcon=jK,o.LightIcon=qK,o.LightModeIcon=Ec,o.LightbulbCircleIcon=ZK,o.LightbulbIcon=JK,o.LineAxisIcon=XK,o.LineStyleIcon=xK,o.LineWeightIcon=RK,o.LinearScaleIcon=eC,o.LinkIcon=Fc,o.LinkOffIcon=nC,o.LinkedCameraIcon=oC,o.LiquorIcon=rC,o.ListAltIcon=Dc,o.ListIcon=Pc,o.LiveHelpIcon=tC,o.LiveTvIcon=cC,o.LivingIcon=iC,o.LoadingButton=ha,o.LocalActivityIcon=aC,o.LocalAirportIcon=lC,o.LocalAtmIcon=sC,o.LocalBarIcon=dC,o.LocalCafeIcon=uC,o.LocalCarWashIcon=fC,o.LocalConvenienceStoreIcon=AC,o.LocalDiningIcon=_C,o.LocalDrinkIcon=yC,o.LocalFireDepartmentIcon=hC,o.LocalFloristIcon=gC,o.LocalGasStationIcon=IC,o.LocalGroceryStoreIcon=bC,o.LocalHospitalIcon=pC,o.LocalHotelIcon=wC,o.LocalLaundryServiceIcon=kC,o.LocalLibraryIcon=mC,o.LocalMallIcon=vC,o.LocalMoviesIcon=KC,o.LocalOfferIcon=CC,o.LocalParkingIcon=SC,o.LocalPharmacyIcon=BC,o.LocalPhoneIcon=EC,o.LocalPizzaIcon=FC,o.LocalPlayIcon=PC,o.LocalPoliceIcon=DC,o.LocalPostOfficeIcon=NC,o.LocalPrintshopIcon=MC,o.LocalSeeIcon=TC,o.LocalShippingIcon=OC,o.LocalTaxiIcon=LC,o.LocationCityIcon=QC,o.LocationDisabledIcon=VC,o.LocationOffIcon=WC,o.LocationOnIcon=GC,o.LocationSearchingIcon=zC,o.LockClockIcon=UC,o.LockIcon=HC,o.LockOpenIcon=YC,o.LockPersonIcon=$C,o.LockResetIcon=jC,o.LoginIcon=qC,o.LogoDevIcon=JC,o.LogoutIcon=Nc,o.Looks3Icon=XC,o.Looks4Icon=xC,o.Looks5Icon=RC,o.Looks6Icon=eS,o.LooksIcon=ZC,o.LooksOneIcon=nS,o.LooksTwoIcon=oS,o.LoopIcon=rS,o.LoupeIcon=tS,o.LowPriorityIcon=cS,o.LoyaltyIcon=iS,o.LteMobiledataIcon=aS,o.LtePlusMobiledataIcon=lS,o.LuggageIcon=sS,o.LunchDiningIcon=dS,o.LyricsIcon=uS,o.MacroOffIcon=fS,o.MailIcon=AS,o.MailLockIcon=_S,o.MailOutlineIcon=yS,o.MaleIcon=hS,o.Man2Icon=IS,o.Man3Icon=bS,o.Man4Icon=pS,o.ManIcon=gS,o.ManageAccountsIcon=wS,o.ManageHistoryIcon=kS,o.ManageSearchIcon=mS,o.MapFieldBinding=mi,o.MapIcon=vS,o.MapPropertyPreview=ni,o.MapsHomeWorkIcon=KS,o.MapsUgcIcon=CS,o.MarginIcon=SS,o.MarkAsUnreadIcon=BS,o.MarkChatReadIcon=ES,o.MarkChatUnreadIcon=FS,o.MarkEmailReadIcon=PS,o.MarkEmailUnreadIcon=DS,o.MarkUnreadChatAltIcon=NS,o.Markdown=co,o.MarkdownFieldBinding=Si,o.MarkunreadIcon=MS,o.MarkunreadMailboxIcon=TS,o.MasksIcon=OS,o.MaximizeIcon=LS,o.MediaBluetoothOffIcon=QS,o.MediaBluetoothOnIcon=VS,o.MediationIcon=WS,o.MedicalInformationIcon=GS,o.MedicalServicesIcon=zS,o.MedicationIcon=HS,o.MedicationLiquidIcon=US,o.MeetingRoomIcon=YS,o.MemoryIcon=$S,o.Menu=Qn,o.MenuBookIcon=jS,o.MenuIcon=mr,o.MenuItem=ke,o.MenuOpenIcon=qS,o.MergeIcon=JS,o.MergeTypeIcon=ZS,o.MessageIcon=XS,o.MicExternalOffIcon=RS,o.MicExternalOnIcon=eB,o.MicIcon=xS,o.MicNoneIcon=nB,o.MicOffIcon=oB,o.MicrowaveIcon=rB,o.MilitaryTechIcon=tB,o.MinimizeIcon=cB,o.MinorCrashIcon=iB,o.MiscellaneousServicesIcon=aB,o.MissedVideoCallIcon=lB,o.MmsIcon=sB,o.MobileFriendlyIcon=dB,o.MobileOffIcon=uB,o.MobileScreenShareIcon=fB,o.MobiledataOffIcon=AB,o.ModeCommentIcon=yB,o.ModeControllerProvider=Ga,o.ModeEditIcon=hB,o.ModeEditOutlineIcon=gB,o.ModeFanOffIcon=IB,o.ModeIcon=_B,o.ModeNightIcon=bB,o.ModeOfTravelIcon=pB,o.ModeStandbyIcon=wB,o.ModelTrainingIcon=kB,o.MonetizationOnIcon=mB,o.MoneyIcon=vB,o.MoneyOffCsredIcon=CB,o.MoneyOffIcon=KB,o.MonitorHeartIcon=BB,o.MonitorIcon=SB,o.MonitorWeightIcon=EB,o.MonochromePhotosIcon=FB,o.MoodBadIcon=DB,o.MoodIcon=PB,o.MopedIcon=NB,o.MoreHorizIcon=TB,o.MoreIcon=MB,o.MoreTimeIcon=OB,o.MoreVertIcon=vr,o.MosqueIcon=LB,o.MotionPhotosAutoIcon=QB,o.MotionPhotosOffIcon=VB,o.MotionPhotosOnIcon=WB,o.MotionPhotosPauseIcon=GB,o.MotionPhotosPausedIcon=zB,o.MouseIcon=HB,o.MoveDownIcon=UB,o.MoveToInboxIcon=YB,o.MoveUpIcon=$B,o.MovieCreationIcon=qB,o.MovieFilterIcon=JB,o.MovieIcon=jB,o.MovingIcon=ZB,o.MpIcon=XB,o.MultiSelect=Zr,o.MultiSelectBinding=xr,o.MultiSelectContext=Jr,o.MultiSelectItem=Xr,o.MultilineChartIcon=xB,o.MultipleStopIcon=RB,o.MuseumIcon=eE,o.MusicNoteIcon=nE,o.MusicOffIcon=oE,o.MusicVideoIcon=rE,o.MyLocationIcon=tE,o.NatIcon=cE,o.NatureIcon=iE,o.NaturePeopleIcon=aE,o.NavigateBeforeIcon=lE,o.NavigateNextIcon=sE,o.NavigationCollectionCard=Et,o.NavigationGroup=$o,o.NavigationIcon=dE,o.NavigationRoutes=vH,o.NearMeDisabledIcon=fE,o.NearMeIcon=uE,o.NearbyErrorIcon=AE,o.NearbyOffIcon=_E,o.NestCamWiredStandIcon=yE,o.NetworkCellIcon=hE,o.NetworkCheckIcon=gE,o.NetworkLockedIcon=IE,o.NetworkPingIcon=bE,o.NetworkWifi1BarIcon=wE,o.NetworkWifi2BarIcon=kE,o.NetworkWifi3BarIcon=mE,o.NetworkWifiIcon=pE,o.NewLabelIcon=vE,o.NewReleasesIcon=KE,o.NewspaperIcon=CE,o.NextPlanIcon=SE,o.NextWeekIcon=BE,o.NfcIcon=EE,o.NightShelterIcon=FE,o.NightlifeIcon=PE,o.NightlightIcon=DE,o.NightlightRoundIcon=NE,o.NightsStayIcon=ME,o.NoAccountsIcon=TE,o.NoAdultContentIcon=OE,o.NoBackpackIcon=LE,o.NoCellIcon=QE,o.NoCrashIcon=VE,o.NoDrinksIcon=WE,o.NoEncryptionGmailerrorredIcon=zE,o.NoEncryptionIcon=GE,o.NoFlashIcon=HE,o.NoFoodIcon=UE,o.NoLuggageIcon=YE,o.NoMealsIcon=$E,o.NoMeetingRoomIcon=jE,o.NoPhotographyIcon=qE,o.NoSimIcon=JE,o.NoStrollerIcon=ZE,o.NoTransferIcon=XE,o.NoiseAwareIcon=xE,o.NoiseControlOffIcon=RE,o.NordicWalkingIcon=eF,o.NorthEastIcon=oF,o.NorthIcon=nF,o.NorthWestIcon=rF,o.NotAccessibleIcon=tF,o.NotFoundPage=ca,o.NotInterestedIcon=cF,o.NotListedLocationIcon=iF,o.NotStartedIcon=aF,o.NoteAddIcon=sF,o.NoteAltIcon=dF,o.NoteIcon=lF,o.NotesIcon=uF,o.NotificationAddIcon=fF,o.NotificationImportantIcon=AF,o.NotificationsActiveIcon=yF,o.NotificationsIcon=_F,o.NotificationsNoneIcon=hF,o.NotificationsOffIcon=gF,o.NotificationsPausedIcon=IF,o.NumberPropertyPreview=ci,o.NumbersIcon=Mc,o.OfflineBoltIcon=bF,o.OfflinePinIcon=pF,o.OfflineShareIcon=wF,o.OilBarrelIcon=kF,o.OnDeviceTrainingIcon=mF,o.OndemandVideoIcon=vF,o.OnlinePredictionIcon=KF,o.OpacityIcon=CF,o.OpenInBrowserIcon=SF,o.OpenInFullIcon=BF,o.OpenInNewIcon=no,o.OpenInNewOffIcon=EF,o.OpenWithIcon=FF,o.OtherHousesIcon=PF,o.OutboundIcon=DF,o.OutboxIcon=NF,o.OutdoorGrillIcon=MF,o.OutletIcon=TF,o.OutlinedFlagIcon=OF,o.OutputIcon=LF,o.PaddingIcon=QF,o.PagesIcon=VF,o.PageviewIcon=WF,o.PaidIcon=GF,o.PaletteIcon=zF,o.PanToolAltIcon=UF,o.PanToolIcon=HF,o.PanoramaFishEyeIcon=$F,o.PanoramaHorizontalIcon=jF,o.PanoramaHorizontalSelectIcon=qF,o.PanoramaIcon=YF,o.PanoramaPhotosphereIcon=JF,o.PanoramaPhotosphereSelectIcon=ZF,o.PanoramaVerticalIcon=XF,o.PanoramaVerticalSelectIcon=xF,o.PanoramaWideAngleIcon=RF,o.PanoramaWideAngleSelectIcon=eP,o.Paper=jH,o.ParaglidingIcon=nP,o.ParkIcon=oP,o.PartyModeIcon=rP,o.PasswordIcon=tP,o.PatternIcon=cP,o.PauseCircleFilledIcon=lP,o.PauseCircleIcon=aP,o.PauseCircleOutlineIcon=sP,o.PauseIcon=iP,o.PausePresentationIcon=dP,o.PaymentIcon=uP,o.PaymentsIcon=fP,o.PedalBikeIcon=AP,o.PendingActionsIcon=yP,o.PendingIcon=_P,o.PentagonIcon=hP,o.PeopleAltIcon=IP,o.PeopleIcon=gP,o.PeopleOutlineIcon=bP,o.PercentIcon=pP,o.PermCameraMicIcon=wP,o.PermContactCalendarIcon=kP,o.PermDataSettingIcon=mP,o.PermDeviceInformationIcon=vP,o.PermIdentityIcon=KP,o.PermMediaIcon=CP,o.PermPhoneMsgIcon=SP,o.PermScanWifiIcon=BP,o.Person2Icon=FP,o.Person3Icon=PP,o.Person4Icon=DP,o.PersonAddAlt1Icon=TP,o.PersonAddAltIcon=MP,o.PersonAddDisabledIcon=OP,o.PersonAddIcon=NP,o.PersonIcon=EP,o.PersonOffIcon=LP,o.PersonOutlineIcon=QP,o.PersonPinCircleIcon=WP,o.PersonPinIcon=VP,o.PersonRemoveAlt1Icon=zP,o.PersonRemoveIcon=GP,o.PersonSearchIcon=HP,o.PersonalInjuryIcon=UP,o.PersonalVideoIcon=YP,o.PestControlIcon=$P,o.PestControlRodentIcon=jP,o.PetsIcon=qP,o.PhishingIcon=JP,o.PhoneAndroidIcon=XP,o.PhoneBluetoothSpeakerIcon=xP,o.PhoneCallbackIcon=RP,o.PhoneDisabledIcon=e1,o.PhoneEnabledIcon=n1,o.PhoneForwardedIcon=o1,o.PhoneIcon=ZP,o.PhoneIphoneIcon=r1,o.PhoneLockedIcon=t1,o.PhoneMissedIcon=c1,o.PhonePausedIcon=i1,o.PhonelinkEraseIcon=l1,o.PhonelinkIcon=a1,o.PhonelinkLockIcon=s1,o.PhonelinkOffIcon=d1,o.PhonelinkRingIcon=u1,o.PhonelinkSetupIcon=f1,o.PhotoAlbumIcon=_1,o.PhotoCameraBackIcon=h1,o.PhotoCameraFrontIcon=g1,o.PhotoCameraIcon=y1,o.PhotoFilterIcon=I1,o.PhotoIcon=A1,o.PhotoLibraryIcon=b1,o.PhotoSizeSelectActualIcon=p1,o.PhotoSizeSelectLargeIcon=w1,o.PhotoSizeSelectSmallIcon=k1,o.PhpIcon=m1,o.PianoIcon=v1,o.PianoOffIcon=K1,o.PictureAsPdfIcon=C1,o.PictureInPictureAltIcon=B1,o.PictureInPictureIcon=S1,o.PieChartIcon=E1,o.PieChartOutlineIcon=F1,o.PinDropIcon=D1,o.PinEndIcon=N1,o.PinIcon=P1,o.PinInvokeIcon=M1,o.PinchIcon=T1,o.PivotTableChartIcon=O1,o.PixIcon=L1,o.PlaceIcon=Q1,o.PlagiarismIcon=V1,o.PlayArrowIcon=W1,o.PlayCircleFilledIcon=z1,o.PlayCircleIcon=G1,o.PlayCircleOutlineIcon=H1,o.PlayDisabledIcon=U1,o.PlayForWorkIcon=Y1,o.PlayLessonIcon=$1,o.PlaylistAddCheckCircleIcon=J1,o.PlaylistAddCheckIcon=q1,o.PlaylistAddCircleIcon=Z1,o.PlaylistAddIcon=j1,o.PlaylistPlayIcon=X1,o.PlaylistRemoveIcon=x1,o.PlumbingIcon=R1,o.PlusOneIcon=eD,o.PodcastsIcon=nD,o.PointOfSaleIcon=oD,o.PolicyIcon=rD,o.PollIcon=tD,o.PolylineIcon=cD,o.PolymerIcon=iD,o.PoolIcon=aD,o.PortableWifiOffIcon=lD,o.PortraitIcon=sD,o.PostAddIcon=dD,o.PowerIcon=uD,o.PowerInputIcon=fD,o.PowerOffIcon=AD,o.PowerSettingsNewIcon=_D,o.PrecisionManufacturingIcon=yD,o.PregnantWomanIcon=hD,o.PresentToAllIcon=gD,o.PreviewIcon=ID,o.PriceChangeIcon=bD,o.PriceCheckIcon=pD,o.PrintDisabledIcon=kD,o.PrintIcon=wD,o.PriorityHighIcon=mD,o.PrivacyTipIcon=vD,o.PrivateConnectivityIcon=KD,o.ProductionQuantityLimitsIcon=CD,o.PropaneIcon=SD,o.PropaneTankIcon=BD,o.PropertyFieldBinding=bn,o.PropertyPreview=Ke,o.PsychologyAltIcon=FD,o.PsychologyIcon=ED,o.PublicIcon=PD,o.PublicOffIcon=DD,o.PublishIcon=ND,o.PublishedWithChangesIcon=MD,o.PunchClockIcon=TD,o.PushPinIcon=OD,o.QrCode2Icon=QD,o.QrCodeIcon=LD,o.QrCodeScannerIcon=VD,o.QueryBuilderIcon=WD,o.QueryStatsIcon=GD,o.QuestionAnswerIcon=zD,o.QuestionMarkIcon=HD,o.QueueIcon=UD,o.QueueMusicIcon=YD,o.QueuePlayNextIcon=$D,o.QuickreplyIcon=jD,o.QuizIcon=qD,o.RMobiledataIcon=JD,o.RadarIcon=ZD,o.RadioButtonCheckedIcon=xD,o.RadioButtonUncheckedIcon=RD,o.RadioIcon=XD,o.RailwayAlertIcon=eN,o.RamenDiningIcon=nN,o.RampLeftIcon=oN,o.RampRightIcon=rN,o.RateReviewIcon=tN,o.RawOffIcon=cN,o.RawOnIcon=iN,o.ReadMoreIcon=aN,o.ReadOnlyFieldBinding=rt,o.RealEstateAgentIcon=lN,o.ReceiptIcon=sN,o.ReceiptLongIcon=dN,o.RecentActorsIcon=uN,o.RecommendIcon=fN,o.RecordVoiceOverIcon=AN,o.RectangleIcon=_N,o.RecyclingIcon=yN,o.RedeemIcon=hN,o.RedoIcon=gN,o.ReduceCapacityIcon=IN,o.ReferenceFieldBinding=ki,o.ReferencePreview=on,o.ReferencePreviewContainer=Co,o.ReferenceSelectionInner=ra,o.RefreshIcon=bN,o.RememberMeIcon=pN,o.RemoveCircleIcon=Tc,o.RemoveCircleOutlineIcon=wN,o.RemoveDoneIcon=kN,o.RemoveFromQueueIcon=mN,o.RemoveIcon=oo,o.RemoveModeratorIcon=vN,o.RemoveRedEyeIcon=KN,o.RemoveRoadIcon=CN,o.RemoveShoppingCartIcon=SN,o.ReorderIcon=BN,o.RepartitionIcon=EN,o.RepeatFieldBinding=Ki,o.RepeatIcon=Kr,o.RepeatOnIcon=FN,o.RepeatOneIcon=PN,o.RepeatOneOnIcon=DN,o.Replay10Icon=MN,o.Replay30Icon=TN,o.Replay5Icon=ON,o.ReplayCircleFilledIcon=LN,o.ReplayIcon=NN,o.ReplyAllIcon=VN,o.ReplyIcon=QN,o.ReportGmailerrorredIcon=GN,o.ReportIcon=WN,o.ReportOffIcon=zN,o.ReportProblemIcon=HN,o.RequestPageIcon=UN,o.RequestQuoteIcon=YN,o.ResetTvIcon=$N,o.RestartAltIcon=jN,o.RestaurantIcon=qN,o.RestaurantMenuIcon=JN,o.RestoreFromTrashIcon=XN,o.RestoreIcon=ZN,o.RestorePageIcon=xN,o.ReviewsIcon=RN,o.RiceBowlIcon=eM,o.RingVolumeIcon=nM,o.RocketIcon=oM,o.RocketLaunchIcon=rM,o.RollerShadesClosedIcon=cM,o.RollerShadesIcon=tM,o.RollerSkatingIcon=iM,o.RoofingIcon=aM,o.RoomIcon=lM,o.RoomPreferencesIcon=sM,o.RoomServiceIcon=dM,o.Rotate90DegreesCcwIcon=uM,o.Rotate90DegreesCwIcon=fM,o.RotateLeftIcon=AM,o.RotateRightIcon=_M,o.RoundaboutLeftIcon=yM,o.RoundaboutRightIcon=hM,o.RoundedCornerIcon=gM,o.RouteIcon=IM,o.RouteWrapper=Jo,o.RouterIcon=bM,o.RowingIcon=pM,o.RssFeedIcon=wM,o.RsvpIcon=kM,o.RttIcon=mM,o.RuleFolderIcon=KM,o.RuleIcon=vM,o.RunCircleIcon=CM,o.RunningWithErrorsIcon=SM,o.RvHookupIcon=BM,o.SafetyCheckIcon=EM,o.SafetyDividerIcon=FM,o.SailingIcon=PM,o.SanitizerIcon=DM,o.SatelliteAltIcon=MM,o.SatelliteIcon=NM,o.SaveAltIcon=OM,o.SaveAsIcon=LM,o.SaveIcon=TM,o.SavedSearchIcon=QM,o.SavingsIcon=VM,o.Scaffold=wH,o.ScaleIcon=WM,o.ScannerIcon=GM,o.ScatterPlotIcon=zM,o.ScheduleIcon=Oc,o.ScheduleSendIcon=HM,o.SchemaIcon=UM,o.SchoolIcon=YM,o.ScienceIcon=$M,o.ScoreIcon=jM,o.ScoreboardIcon=qM,o.ScreenLockLandscapeIcon=JM,o.ScreenLockPortraitIcon=ZM,o.ScreenLockRotationIcon=XM,o.ScreenRotationAltIcon=RM,o.ScreenRotationIcon=xM,o.ScreenSearchDesktopIcon=eT,o.ScreenShareIcon=nT,o.ScreenshotIcon=oT,o.ScreenshotMonitorIcon=rT,o.ScubaDivingIcon=tT,o.SdCardAlertIcon=aT,o.SdCardIcon=iT,o.SdIcon=cT,o.SdStorageIcon=lT,o.SearchBar=Qt,o.SearchIcon=sc,o.SearchOffIcon=sT,o.SecurityIcon=dT,o.SecurityUpdateGoodIcon=fT,o.SecurityUpdateIcon=uT,o.SecurityUpdateWarningIcon=AT,o.SegmentIcon=_T,o.Select=xe,o.SelectAllIcon=yT,o.SelectFieldBinding=qr,o.SelectGroup=qH,o.SelectItem=Re,o.SelfImprovementIcon=hT,o.SellIcon=gT,o.SendAndArchiveIcon=bT,o.SendIcon=IT,o.SendTimeExtensionIcon=pT,o.SendToMobileIcon=wT,o.SensorDoorIcon=kT,o.SensorOccupiedIcon=mT,o.SensorWindowIcon=vT,o.SensorsIcon=KT,o.SensorsOffIcon=CT,o.SentimentDissatisfiedIcon=ST,o.SentimentNeutralIcon=BT,o.SentimentSatisfiedAltIcon=FT,o.SentimentSatisfiedIcon=ET,o.SentimentVeryDissatisfiedIcon=PT,o.SentimentVerySatisfiedIcon=DT,o.SetMealIcon=NT,o.SettingsAccessibilityIcon=TT,o.SettingsApplicationsIcon=OT,o.SettingsBackupRestoreIcon=LT,o.SettingsBluetoothIcon=QT,o.SettingsBrightnessIcon=VT,o.SettingsCellIcon=WT,o.SettingsEthernetIcon=GT,o.SettingsIcon=MT,o.SettingsInputAntennaIcon=zT,o.SettingsInputComponentIcon=HT,o.SettingsInputCompositeIcon=UT,o.SettingsInputHdmiIcon=YT,o.SettingsInputSvideoIcon=$T,o.SettingsOverscanIcon=jT,o.SettingsPhoneIcon=qT,o.SettingsPowerIcon=JT,o.SettingsRemoteIcon=ZT,o.SettingsSuggestIcon=XT,o.SettingsSystemDaydreamIcon=xT,o.SettingsVoiceIcon=RT,o.SevereColdIcon=e2,o.ShapeLineIcon=n2,o.ShareIcon=o2,o.ShareLocationIcon=r2,o.Sheet=Vt,o.ShieldIcon=t2,o.ShieldMoonIcon=c2,o.Shop2Icon=a2,o.ShopIcon=i2,o.ShopTwoIcon=l2,o.ShoppingBagIcon=s2,o.ShoppingBasketIcon=d2,o.ShoppingCartCheckoutIcon=f2,o.ShoppingCartIcon=u2,o.ShortTextIcon=Lc,o.ShortcutIcon=A2,o.ShowChartIcon=_2,o.ShowerIcon=y2,o.ShuffleIcon=h2,o.ShuffleOnIcon=g2,o.ShutterSpeedIcon=I2,o.SickIcon=b2,o.SideDialogs=O3,o.SignLanguageIcon=p2,o.SignalCellular0BarIcon=w2,o.SignalCellular4BarIcon=k2,o.SignalCellularAlt1BarIcon=v2,o.SignalCellularAlt2BarIcon=K2,o.SignalCellularAltIcon=m2,o.SignalCellularConnectedNoInternet0BarIcon=C2,o.SignalCellularConnectedNoInternet4BarIcon=S2,o.SignalCellularNoSimIcon=B2,o.SignalCellularNodataIcon=E2,o.SignalCellularNullIcon=F2,o.SignalCellularOffIcon=P2,o.SignalWifi0BarIcon=D2,o.SignalWifi4BarIcon=N2,o.SignalWifi4BarLockIcon=M2,o.SignalWifiBadIcon=T2,o.SignalWifiConnectedNoInternet4Icon=O2,o.SignalWifiOffIcon=L2,o.SignalWifiStatusbar4BarIcon=Q2,o.SignalWifiStatusbarConnectedNoInternet4Icon=V2,o.SignalWifiStatusbarNullIcon=W2,o.SignpostIcon=G2,o.SimCardAlertIcon=H2,o.SimCardDownloadIcon=U2,o.SimCardIcon=z2,o.SingleBedIcon=Y2,o.SipIcon=$2,o.SkateboardingIcon=j2,o.SkeletonPropertyComponent=Dn,o.SkipNextIcon=q2,o.SkipPreviousIcon=J2,o.SleddingIcon=Z2,o.SlideshowIcon=X2,o.SlowMotionVideoIcon=x2,o.SmartButtonIcon=R2,o.SmartDisplayIcon=eO,o.SmartScreenIcon=nO,o.SmartToyIcon=oO,o.SmartphoneIcon=rO,o.SmokeFreeIcon=tO,o.SmokingRoomsIcon=cO,o.SmsFailedIcon=aO,o.SmsIcon=iO,o.SnackbarProvider=OH,o.SnippetFolderIcon=lO,o.SnoozeIcon=sO,o.SnowboardingIcon=dO,o.SnowmobileIcon=uO,o.SnowshoeingIcon=fO,o.SoapIcon=AO,o.SocialDistanceIcon=_O,o.SolarPowerIcon=yO,o.SortByAlphaIcon=gO,o.SortIcon=hO,o.SosIcon=IO,o.SoupKitchenIcon=bO,o.SourceIcon=pO,o.SouthAmericaIcon=kO,o.SouthEastIcon=mO,o.SouthIcon=wO,o.SouthWestIcon=vO,o.SpaIcon=KO,o.SpaceBarIcon=CO,o.SpaceDashboardIcon=SO,o.SpatialAudioIcon=BO,o.SpatialAudioOffIcon=EO,o.SpatialTrackingIcon=FO,o.SpeakerGroupIcon=DO,o.SpeakerIcon=PO,o.SpeakerNotesIcon=NO,o.SpeakerNotesOffIcon=MO,o.SpeakerPhoneIcon=TO,o.SpeedIcon=OO,o.SpellcheckIcon=LO,o.Spinner=JH,o.SplitscreenIcon=QO,o.SpokeIcon=VO,o.SportsBarIcon=GO,o.SportsBaseballIcon=zO,o.SportsBasketballIcon=HO,o.SportsCricketIcon=UO,o.SportsEsportsIcon=YO,o.SportsFootballIcon=$O,o.SportsGolfIcon=jO,o.SportsGymnasticsIcon=qO,o.SportsHandballIcon=JO,o.SportsHockeyIcon=ZO,o.SportsIcon=WO,o.SportsKabaddiIcon=XO,o.SportsMartialArtsIcon=xO,o.SportsMmaIcon=RO,o.SportsMotorsportsIcon=eL,o.SportsRugbyIcon=nL,o.SportsScoreIcon=oL,o.SportsSoccerIcon=rL,o.SportsTennisIcon=tL,o.SportsVolleyballIcon=cL,o.SquareFootIcon=aL,o.SquareIcon=iL,o.SsidChartIcon=lL,o.StackedBarChartIcon=sL,o.StackedLineChartIcon=dL,o.StadiumIcon=uL,o.StairsIcon=fL,o.StarBorderIcon=Sr,o.StarBorderPurple500Icon=AL,o.StarHalfIcon=_L,o.StarIcon=Cr,o.StarOutlineIcon=yL,o.StarPurple500Icon=hL,o.StarRateIcon=gL,o.StarsIcon=IL,o.StartIcon=bL,o.StayCurrentLandscapeIcon=pL,o.StayCurrentPortraitIcon=wL,o.StayPrimaryLandscapeIcon=kL,o.StayPrimaryPortraitIcon=mL,o.StickyNote2Icon=vL,o.StopCircleIcon=CL,o.StopIcon=KL,o.StopScreenShareIcon=SL,o.StorageIcon=BL,o.StorageThumbnail=zc,o.StorageThumbnailInternal=Uc,o.StorageUploadFieldBinding=nt,o.StoreIcon=EL,o.StoreMallDirectoryIcon=FL,o.StorefrontIcon=PL,o.StormIcon=DL,o.StraightIcon=NL,o.StraightenIcon=ML,o.StreamIcon=TL,o.StreetviewIcon=OL,o.StrikethroughSIcon=LL,o.StringPropertyPreview=Dr,o.StrollerIcon=QL,o.StyleIcon=VL,o.SubdirectoryArrowLeftIcon=WL,o.SubdirectoryArrowRightIcon=GL,o.SubjectIcon=Qc,o.SubscriptIcon=zL,o.SubscriptionsIcon=HL,o.SubtitlesIcon=UL,o.SubtitlesOffIcon=YL,o.SubwayIcon=$L,o.SummarizeIcon=jL,o.SuperscriptIcon=qL,o.SupervisedUserCircleIcon=JL,o.SupervisorAccountIcon=ZL,o.SupportAgentIcon=xL,o.SupportIcon=XL,o.SurfingIcon=RL,o.SurroundSoundIcon=e4,o.SwapCallsIcon=n4,o.SwapHorizIcon=o4,o.SwapHorizontalCircleIcon=r4,o.SwapVertIcon=t4,o.SwapVerticalCircleIcon=c4,o.SwipeDownAltIcon=l4,o.SwipeDownIcon=a4,o.SwipeIcon=i4,o.SwipeLeftAltIcon=d4,o.SwipeLeftIcon=s4,o.SwipeRightAltIcon=f4,o.SwipeRightIcon=u4,o.SwipeUpAltIcon=_4,o.SwipeUpIcon=A4,o.SwipeVerticalIcon=y4,o.SwitchAccessShortcutAddIcon=g4,o.SwitchAccessShortcutIcon=h4,o.SwitchAccountIcon=I4,o.SwitchCameraIcon=b4,o.SwitchControl=ez,o.SwitchFieldBinding=pi,o.SwitchLeftIcon=p4,o.SwitchRightIcon=w4,o.SwitchVideoIcon=k4,o.SynagogueIcon=m4,o.SyncAltIcon=K4,o.SyncDisabledIcon=C4,o.SyncIcon=v4,o.SyncLockIcon=S4,o.SyncProblemIcon=B4,o.SystemSecurityUpdateGoodIcon=F4,o.SystemSecurityUpdateIcon=E4,o.SystemSecurityUpdateWarningIcon=P4,o.SystemUpdateAltIcon=N4,o.SystemUpdateIcon=D4,o.Tab=xo,o.TabIcon=M4,o.TabUnselectedIcon=T4,o.Table=ZH,o.TableBarIcon=O4,o.TableBody=XH,o.TableCell=eU,o.TableChartIcon=L4,o.TableHeader=xH,o.TableRestaurantIcon=Q4,o.TableRow=RH,o.TableRowsIcon=V4,o.TableViewIcon=W4,o.TabletAndroidIcon=z4,o.TabletIcon=G4,o.TabletMacIcon=H4,o.Tabs=ga,o.TagFacesIcon=Y4,o.TagIcon=U4,o.TakeoutDiningIcon=$4,o.TapAndPlayIcon=j4,o.TapasIcon=q4,o.TaskAltIcon=Z4,o.TaskIcon=J4,o.TaxiAlertIcon=X4,o.TempleBuddhistIcon=x4,o.TempleHinduIcon=R4,o.TerminalIcon=eQ,o.TerrainIcon=nQ,o.TextDecreaseIcon=oQ,o.TextField=An,o.TextFieldBinding=Tn,o.TextFieldsIcon=rQ,o.TextFormatIcon=tQ,o.TextIncreaseIcon=cQ,o.TextRotateUpIcon=iQ,o.TextRotateVerticalIcon=aQ,o.TextRotationAngledownIcon=lQ,o.TextRotationAngleupIcon=sQ,o.TextRotationDownIcon=dQ,o.TextRotationNoneIcon=uQ,o.TextSnippetIcon=fQ,o.TextareaAutosize=gt,o.TextsmsIcon=AQ,o.TextureIcon=_Q,o.TheaterComedyIcon=yQ,o.TheatersIcon=hQ,o.ThermostatAutoIcon=IQ,o.ThermostatIcon=gQ,o.ThumbDownAltIcon=pQ,o.ThumbDownIcon=bQ,o.ThumbDownOffAltIcon=wQ,o.ThumbUpAltIcon=mQ,o.ThumbUpIcon=kQ,o.ThumbUpOffAltIcon=vQ,o.ThumbsUpDownIcon=KQ,o.ThunderstormIcon=CQ,o.TimeToLeaveIcon=SQ,o.TimelapseIcon=BQ,o.TimelineIcon=EQ,o.Timer10Icon=PQ,o.Timer10SelectIcon=DQ,o.Timer3Icon=NQ,o.Timer3SelectIcon=MQ,o.TimerIcon=FQ,o.TimerOffIcon=TQ,o.TipsAndUpdatesIcon=OQ,o.TireRepairIcon=LQ,o.TitleIcon=QQ,o.TocIcon=VQ,o.TodayIcon=WQ,o.ToggleOffIcon=GQ,o.ToggleOnIcon=zQ,o.TokenIcon=HQ,o.TollIcon=UQ,o.TonalityIcon=YQ,o.Tooltip=ye,o.TopicIcon=$Q,o.TornadoIcon=jQ,o.TouchAppIcon=qQ,o.TourIcon=JQ,o.ToysIcon=ZQ,o.TrackChangesIcon=XQ,o.TrafficIcon=xQ,o.TrainIcon=RQ,o.TramIcon=eV,o.TranscribeIcon=nV,o.TransferWithinAStationIcon=oV,o.TransformIcon=rV,o.TransgenderIcon=tV,o.TransitEnterexitIcon=cV,o.TranslateIcon=iV,o.TravelExploreIcon=aV,o.TrendingDownIcon=lV,o.TrendingFlatIcon=sV,o.TrendingUpIcon=dV,o.TripOriginIcon=uV,o.TroubleshootIcon=fV,o.TryIcon=AV,o.TsunamiIcon=_V,o.TtyIcon=yV,o.TuneIcon=hV,o.TungstenIcon=gV,o.TurnLeftIcon=IV,o.TurnRightIcon=bV,o.TurnSharpLeftIcon=pV,o.TurnSharpRightIcon=wV,o.TurnSlightLeftIcon=kV,o.TurnSlightRightIcon=mV,o.TurnedInIcon=vV,o.TurnedInNotIcon=KV,o.TvIcon=CV,o.TvOffIcon=SV,o.TwoWheelerIcon=BV,o.TypeSpecimenIcon=EV,o.Typography=j,o.UTurnLeftIcon=FV,o.UTurnRightIcon=PV,o.UmbrellaIcon=DV,o.UnarchiveIcon=NV,o.UndoIcon=MV,o.UnfoldLessDoubleIcon=OV,o.UnfoldLessIcon=TV,o.UnfoldMoreDoubleIcon=QV,o.UnfoldMoreIcon=LV,o.UnpublishedIcon=VV,o.UnsubscribeIcon=WV,o.UpcomingIcon=GV,o.UpdateDisabledIcon=HV,o.UpdateIcon=zV,o.UpgradeIcon=UV,o.UploadFileIcon=Vc,o.UploadIcon=YV,o.UrlComponentPreview=ro,o.UsbIcon=$V,o.UsbOffIcon=jV,o.VaccinesIcon=qV,o.VapeFreeIcon=JV,o.VapingRoomsIcon=ZV,o.VerifiedIcon=XV,o.VerifiedUserIcon=xV,o.VerticalAlignBottomIcon=RV,o.VerticalAlignCenterIcon=e5,o.VerticalAlignTopIcon=n5,o.VerticalDistributeIcon=o5,o.VerticalShadesClosedIcon=t5,o.VerticalShadesIcon=r5,o.VerticalSplitIcon=c5,o.VibrationIcon=i5,o.VideoCallIcon=a5,o.VideoCameraBackIcon=l5,o.VideoCameraFrontIcon=s5,o.VideoChatIcon=d5,o.VideoFileIcon=u5,o.VideoLabelIcon=f5,o.VideoLibraryIcon=A5,o.VideoSettingsIcon=_5,o.VideoStableIcon=y5,o.VideocamIcon=h5,o.VideocamOffIcon=g5,o.VideogameAssetIcon=I5,o.VideogameAssetOffIcon=b5,o.ViewAgendaIcon=p5,o.ViewArrayIcon=w5,o.ViewCarouselIcon=k5,o.ViewColumnIcon=m5,o.ViewComfyAltIcon=K5,o.ViewComfyIcon=v5,o.ViewCompactAltIcon=S5,o.ViewCompactIcon=C5,o.ViewCozyIcon=B5,o.ViewDayIcon=E5,o.ViewHeadlineIcon=F5,o.ViewInArIcon=P5,o.ViewKanbanIcon=D5,o.ViewListIcon=N5,o.ViewModuleIcon=M5,o.ViewQuiltIcon=T5,o.ViewSidebarIcon=O5,o.ViewStreamIcon=Wc,o.ViewTimelineIcon=L5,o.ViewWeekIcon=Q5,o.VignetteIcon=V5,o.VillaIcon=W5,o.VirtualTable=Yi,o.VisibilityIcon=G5,o.VisibilityOffIcon=z5,o.VoiceChatIcon=H5,o.VoiceOverOffIcon=U5,o.VoicemailIcon=Y5,o.VolcanoIcon=$5,o.VolumeDownIcon=j5,o.VolumeMuteIcon=q5,o.VolumeOffIcon=J5,o.VolumeUpIcon=Z5,o.VolunteerActivismIcon=X5,o.VpnKeyIcon=x5,o.VpnKeyOffIcon=R5,o.VpnLockIcon=eW,o.VrpanoIcon=nW,o.WalletIcon=oW,o.WallpaperIcon=rW,o.WarehouseIcon=tW,o.WarningAmberIcon=iW,o.WarningIcon=cW,o.WashIcon=aW,o.WatchIcon=lW,o.WatchLaterIcon=sW,o.WatchOffIcon=dW,o.WaterDamageIcon=fW,o.WaterDropIcon=AW,o.WaterIcon=uW,o.WaterfallChartIcon=_W,o.WavesIcon=yW,o.WavingHandIcon=hW,o.WbAutoIcon=gW,o.WbCloudyIcon=IW,o.WbIncandescentIcon=bW,o.WbIridescentIcon=pW,o.WbShadeIcon=wW,o.WbSunnyIcon=kW,o.WbTwilightIcon=mW,o.WcIcon=vW,o.WebAssetIcon=CW,o.WebAssetOffIcon=SW,o.WebIcon=KW,o.WebStoriesIcon=BW,o.WebhookIcon=EW,o.WeekendIcon=FW,o.WestIcon=PW,o.WhatshotIcon=DW,o.WheelchairPickupIcon=NW,o.WhereToVoteIcon=MW,o.WidgetsIcon=TW,o.WidthFullIcon=OW,o.WidthNormalIcon=LW,o.WidthWideIcon=QW,o.Wifi1BarIcon=WW,o.Wifi2BarIcon=GW,o.WifiCalling3Icon=HW,o.WifiCallingIcon=zW,o.WifiChannelIcon=UW,o.WifiFindIcon=YW,o.WifiIcon=VW,o.WifiLockIcon=$W,o.WifiOffIcon=jW,o.WifiPasswordIcon=qW,o.WifiProtectedSetupIcon=JW,o.WifiTetheringErrorIcon=XW,o.WifiTetheringIcon=ZW,o.WifiTetheringOffIcon=xW,o.WindPowerIcon=RW,o.WindowIcon=eG,o.WineBarIcon=nG,o.Woman2Icon=rG,o.WomanIcon=oG,o.WorkHistoryIcon=cG,o.WorkIcon=tG,o.WorkOffIcon=iG,o.WorkOutlineIcon=aG,o.WorkspacePremiumIcon=lG,o.WorkspacesIcon=sG,o.WrapTextIcon=dG,o.WrongLocationIcon=uG,o.WysiwygIcon=fG,o.YardIcon=AG,o.YoutubeSearchedForIcon=_G,o.ZoomInIcon=yG,o.ZoomInMapIcon=hG,o.ZoomOutIcon=gG,o.ZoomOutMapIcon=IG,o._10kIcon=rl,o._10mpIcon=tl,o._11mpIcon=cl,o._123Icon=nl,o._12mpIcon=il,o._13mpIcon=al,o._14mpIcon=ll,o._15mpIcon=sl,o._16mpIcon=dl,o._17mpIcon=ul,o._18UpRatingIcon=fl,o._18mpIcon=Al,o._19mpIcon=_l,o._1kIcon=yl,o._1kPlusIcon=hl,o._1xMobiledataIcon=gl,o._20mpIcon=Il,o._21mpIcon=bl,o._22mpIcon=pl,o._23mpIcon=wl,o._24mpIcon=kl,o._2kIcon=ml,o._2kPlusIcon=vl,o._2mpIcon=Kl,o._30fpsIcon=Cl,o._30fpsSelectIcon=Sl,o._360Icon=ol,o._3dRotationIcon=Bl,o._3gMobiledataIcon=El,o._3kIcon=Fl,o._3kPlusIcon=Pl,o._3mpIcon=Dl,o._3pIcon=Nl,o._4gMobiledataIcon=Ml,o._4gPlusMobiledataIcon=Tl,o._4kIcon=Ol,o._4kPlusIcon=Ll,o._4mpIcon=Ql,o._5gIcon=Vl,o._5kIcon=Wl,o._5kPlusIcon=Gl,o._5mpIcon=zl,o._60fpsIcon=Hl,o._60fpsSelectIcon=Ul,o._6FtApartIcon=Yl,o._6kIcon=$l,o._6kPlusIcon=jl,o._6mpIcon=ql,o._7kIcon=Jl,o._7kPlusIcon=Zl,o._7mpIcon=Xl,o._8kIcon=xl,o._8kPlusIcon=Rl,o._8mpIcon=es,o._9kIcon=ns,o._9kPlusIcon=os,o._9mpIcon=rs,o.addInitialSlash=Ha,o.buildAdditionalFieldDelegate=DH,o.buildCollection=KH,o.buildEntityCallbacks=PH,o.buildEnumLabel=qc,o.buildEnumValueConfig=FH,o.buildEnumValues=EH,o.buildFieldConfig=NH,o.buildProperties=SH,o.buildPropertiesOrBuilder=BH,o.buildProperty=CH,o.canCreateEntity=Vo,o.canDeleteEntity=At,o.canEditEntity=ft,o.cardClickableMixin=ic,o.cardMixin=cc,o.cardSelectedMixin=Za,o.cn=E,o.coolIconKeys=hr,o.debounce=Li,o.defaultBorderMixin=ue,o.defaultDateFormat=oi,o.deleteEntityWithCallbacks=nc,o.enumToObjectEntries=sn,o.fieldBackgroundDisabledMixin=en,o.fieldBackgroundHoverMixin=ze,o.fieldBackgroundInvisibleMixin=yr,o.fieldBackgroundMixin=qe,o.flattenObject=_t,o.focusedClasses=_r,o.focusedInvisibleMixin=Ar,o.focusedMixin=ge,o.fullPathToCollectionSegments=Xe,o.getArrayValuesCount=Qi,o.getBracketNotation=Qz,o.getCollectionByPathOrAlias=Io,o.getCollectionPathsCombinations=bo,o.getColorForProperty=Lz,o.getColorScheme=jc,o.getDefaultValueFor=Eo,o.getDefaultValueForDataType=zr,o.getDefaultValuesFor=ao,o.getFieldConfig=Lo,o.getFieldId=at,o.getHashValue=Vr,o.getIcon=Ti,o.getIconForProperty=we,o.getIconForView=Wo,o.getIconForWidget=dt,o.getIdIcon=Oz,o.getLabelOrConfigFrom=vo,o.getLastSegment=Ua,o.getPropertiesWithPropertiesOrder=Mi,o.getPropertyInPath=pn,o.getRandomId=fo,o.getReferenceFrom=In,o.getReferencePreviewKeys=Oi,o.getResolvedPropertyInPath=ut,o.getValueInPath=dn,o.hydrateRegExp=si,o.iconKeys=lc,o.isEmptyObject=Gr,o.isEnumValueDisabled=NG,o.isHidden=io,o.isObject=Bo,o.isPropertyBuilder=We,o.isReadOnly=Nn,o.isReferenceProperty=Ni,o.isValidRegExp=XG,o.joinCollectionLists=UG,o.mergeCollections=Ur,o.mergeDeep=Ze,o.paperMixin=He,o.pick=ii,o.plural=Vz,o.randomColor=JG,o.randomString=Mn,o.removeFunctions=Qr,o.removeInPath=GG,o.removeInitialAndTrailingSlashes=be,o.removeInitialSlash=$t,o.removeTrailingSlash=jt,o.removeUndefined=Wr,o.renderSkeletonCaptionText=EG,o.renderSkeletonIcon=Pr,o.renderSkeletonImageThumbnail=Fr,o.renderSkeletonText=nn,o.resolveArrayProperty=un,o.resolveCollection=Me,o.resolveCollectionPathAliases=tr,o.resolveDefaultSelectedView=$r,o.resolveEnumValues=Tz,o.resolveNavigationFrom=oc,o.resolvePermissions=so,o.resolveProperties=lt,o.resolveProperty=Te,o.resolvePropertyEnum=st,o.sanitizeData=HG,o.saveEntityWithCallbacks=dr,o.segmentsToStrippedPath=li,o.serializeRegExp=ZG,o.singular=Wz,o.slugify=Po,o.sortProperties=Yr,o.stripCollectionPath=jr,o.toKebabCase=$G,o.toSnakeCase=qG,o.traverseValueProperty=Fo,o.traverseValuesProperties=Hr,o.unslugify=za,o.updateDateAutoValues=zG,o.useAuthController=yn,o.useAutoComplete=LH,o.useBreadcrumbsContext=fr,o.useBrowserTitleAndIcon=qa,o.useBuildLocalConfigurationPersistence=TH,o.useBuildModeController=MH,o.useClearRestoreValue=Ne,o.useClipboard=rc,o.useCollectionFetch=ec,o.useCollectionTableController=Ct,o.useDataSource=Qe,o.useDebounce=Do,o.useDebounceValue=xG,o.useEntityFetch=sr,o.useFireCMSContext=re,o.useLargeLayout=Ge,o.useModeController=ur,o.useNavigationContext=Ae,o.useOutsideAlerter=Mo,o.useReferenceDialog=xn,o.useResolvedNavigationFrom=Ya,o.useSelectionController=Bt,o.useSideDialogContext=Uo,o.useSideDialogsController=Xn,o.useSideEntityController=Cn,o.useSnackbarController=cn,o.useStorageSource=Sn,Object.defineProperty(o,Symbol.toStringTag,{value:"Module"})});
1610
+ }`);const[u,A]=f.useState(i),[y,h]=f.useState(u);return f.useEffect(()=>{u?setTimeout(()=>{h(!0)},220):h(!1)},[u]),n.jsx(n.Fragment,{children:n.jsxs(qn.Root,{className:E(!c&&ue+" border","rounded-md"),open:u,onOpenChange:I=>{a?.(I),A(I)},children:[n.jsxs(qn.Trigger,{className:E(he,"rounded flex items-center justify-between w-full min-h-[52px]",c?"border-b px-2":"p-4",c&&ue,s&&Je,l),children:[e,n.jsx(oo,{className:E("transition",u?"rotate-180":"")})]}),n.jsx(qn.Content,{className:E("CollapsibleContent"),style:{overflow:y?"visible":"hidden"},children:n.jsx("div",{className:d,children:t})})]})})}function Et({children:e,group:t}){const c=En();return n.jsx(dn,{invisible:!0,titleClassName:"font-medium text-sm text-gray-600 dark:text-gray-400",className:"py-4",initiallyExpanded:!(c?.collapsedGroups??[]).includes(t??"ungrouped"),onExpandedChange:i=>{if(c)if(i)c.setCollapsedGroups((c.collapsedGroups??[]).filter(a=>a!==(t??"ungrouped")));else{const a=(c.collapsedGroups??[]).concat(t??"ungrouped");c.setCollapsedGroups(a)}},title:n.jsx(j,{color:"secondary",className:"font-medium ml-1",children:t?.toUpperCase()??"Views".toUpperCase()}),children:n.jsx("div",{className:"mb-8",children:e})})}function ca({view:e,path:t,collection:c,url:i,name:a,description:l,onClick:s}){const d=En(),u=Vo(c??e),A=be.useNavigate(),y=ne(),h=(d?.favouritePaths??[]).includes(t);let I;if(y.plugins&&c){const _={path:t,collection:c,context:y};I=n.jsx(n.Fragment,{children:y.plugins.map((g,b)=>g.homePage?.CollectionActions?n.jsx(g.homePage.CollectionActions,{..._,extraProps:g.homePage.extraProps},`actions_${b}`):null)})}return n.jsx(ga,{className:E("h-full p-4 cursor-pointer min-h-[230px]"),onClick:()=>{s?.(),A(i),d&&d.setRecentlyVisitedPaths([t,...(d.recentlyVisitedPaths??[]).filter(_=>_!==t)])},children:n.jsxs("div",{className:"flex flex-col items-start h-full",children:[n.jsxs("div",{className:"flex-grow w-full",children:[n.jsxs("div",{className:"h-10 flex items-center w-full justify-between text-gray-300 dark:text-gray-600",children:[u,n.jsxs("div",{className:"flex items-center gap-1",onClick:_=>{_.preventDefault(),_.stopPropagation()},children:[I,d&&n.jsx(R,{onClick:_=>{_.preventDefault(),_.stopPropagation(),h?d.setFavouritePaths(d.favouritePaths.filter(g=>g!==t)):d.setFavouritePaths([...d.favouritePaths,t])},children:h?n.jsx(vr,{size:18,className:"text-secondary"}):n.jsx(Kr,{size:18,className:"text-gray-400 dark:text-gray-500"})})]})]}),n.jsx(j,{gutterBottom:!0,variant:"h5",component:"h2",children:a}),l&&n.jsx(j,{variant:"body2",color:"secondary",component:"div",children:n.jsx(lo,{source:l})})]}),n.jsx("div",{style:{alignSelf:"flex-end"},children:n.jsx("div",{className:"p-4",children:n.jsx(cc,{className:"text-primary"})})})]})})}function J3({entry:e}){const t=be.useNavigate(),c=En();if(!c)return null;const i=c.favouritePaths.includes(e.path),a=l=>{l.preventDefault(),l.stopPropagation(),i?c.setFavouritePaths(c.favouritePaths.filter(s=>s!==e.path)):c.setFavouritePaths([...c.favouritePaths,e.path])};return n.jsx(Fo,{onClick:()=>t(e.url),icon:i?n.jsx(vr,{onClick:a,size:18,className:"text-secondary"}):n.jsx(Kr,{onClick:a,size:18,className:"text-gray-400 dark:text-gray-500"}),children:e.name},e.path)}function Z3({hidden:e}){const t=fe(),c=En();if(!c)return null;const i=(c?.favouritePaths??[]).map(a=>t.topLevelNavigation?.navigationEntries.find(l=>l.path===a)).filter(Boolean);return n.jsx(To,{in:i.length>0,children:n.jsx("div",{className:"flex flex-row flex-wrap gap-2 pb-2 min-h-[32px]",children:i.map(a=>n.jsx(J3,{entry:a},a.path))})})}const Ft={};function X3(){const e=be.useLocation(),t=f.useRef(null),[c,i]=f.useState(0),[a,l]=f.useState("down"),s=f.useCallback(()=>{!t.current||!e.key||(Ft[e.key]=t.current.scrollTop,i(t.current.scrollTop),l(t.current.scrollTop>c?"down":"up"))},[t,e.key,c]);return f.useEffect(()=>{const d=t.current;if(d)return d.addEventListener("scroll",s,{passive:!0}),()=>{d&&d.removeEventListener("scroll",s)}},[t,s,e]),f.useEffect(()=>{!t.current||!Ft[e.key]||t.current.scrollTo({top:Ft[e.key],behavior:"auto"})},[e]),{containerRef:t,scroll:c,direction:a}}const Wn=new Qa.Search("url");Wn.addIndex("name"),Wn.addIndex("description"),Wn.addIndex("group"),Wn.addIndex("path");function ia({additionalChildrenStart:e,additionalChildrenEnd:t}){const c=ne(),i=fe();if(!i.topLevelNavigation)throw Error("Navigation not ready in FireCMSHomePage");const{containerRef:a,scroll:l,direction:s}=X3(),{navigationEntries:d,groups:u}=i.topLevelNavigation,[A,y]=f.useState(null),h=A?d.filter(p=>A.includes(p.url)):d;f.useEffect(()=>{Wn.addDocuments(d)},[d]);const I=f.useCallback(p=>{if(!p||p==="")y(null);else{const w=Wn.search(p);y(w.map(k=>k.url))}},[]),_=[...u];(h.filter(p=>!p.group).length>0||h.length===0)&&_.push(void 0);let g,b;if(c.plugins){const p={context:c};b=n.jsx(n.Fragment,{children:c.plugins.filter(w=>w.homePage?.includeSection).map((w,k)=>{const v=w.homePage.includeSection(p);return n.jsx(Et,{group:v.title,children:v.children},`plugin_section_${w.name}`)})}),g=n.jsx("div",{className:"flex flex-col gap-2",children:c.plugins.filter(w=>w.homePage?.additionalChildrenStart).map((w,k)=>n.jsx("div",{children:w.homePage.additionalChildrenStart},`plugin_children_start_${k}`))})}return n.jsx("div",{id:"home_page",ref:a,className:"py-2 overflow-auto h-full w-full",children:n.jsxs(Ot,{maxWidth:"6xl",children:[n.jsx("div",{className:"sticky py-4 transition-all duration-400 ease-in-out top-0 z-10",style:{top:s==="down"?-84:0},children:n.jsx(Qt,{onTextSearch:I,placeholder:"Search collections",large:!1,className:"w-full"})}),n.jsx(Z3,{hidden:!!A}),e,g,_.map((p,w)=>{const k=[],v={group:p,context:c};c.plugins&&c.plugins.forEach(m=>{m.homePage?.AdditionalCards&&k.push(...Yo(m.homePage?.AdditionalCards))});const K=h.filter(m=>m.group===p||!m.group&&p===void 0);return K.length===0&&k.length===0?null:n.jsx(Et,{group:p,children:n.jsxs("div",{className:"grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4",children:[K.map(m=>n.jsx("div",{className:"col-span-1",children:n.jsx(ca,{...m,onClick:()=>{const C=m.type==="collection"?"home_navigate_to_collection":m.type==="view"?"home_navigate_to_view":"unmapped_event";c.onAnalyticsEvent?.(C,{path:m.path})}})},`nav_${m.group}_${m.name}`)),k&&k.map((m,C)=>n.jsx("div",{children:n.jsx(m,{...v})},`nav_${p}_add_${C}`))]})},`plugin_section_${p}`)}),b,t]})})}function x3({fieldConfig:e}){const t="h-8 w-8 p-1 rounded-full shadow text-white";return n.jsx("div",{className:t,style:{background:e?.color??"#888"},children:rt(e,"medium")})}function R3({children:e,title:t,path:c}){const i=Dr();return f.useEffect(()=>{i.set({breadcrumbs:[{title:t,url:c}]})},[c,t]),n.jsx(n.Fragment,{children:e})}function aa(){return n.jsx("div",{className:"flex w-full h-full",children:n.jsxs("div",{className:"m-auto flex items-center flex-col",children:[n.jsx(j,{variant:"h4",align:"center",gutterBottom:!0,children:"Page not found"}),n.jsx(j,{align:"center",gutterBottom:!0,children:"This page does not exist or you may not have access to it"}),n.jsx(te,{variant:"text",component:be.Link,to:"/",children:"Back to home"})]})})}function eH({open:e,onAccept:t,onCancel:c,title:i,loading:a,body:l}){return n.jsxs(Jo,{open:e,onOpenChange:s=>s?void 0:c(),children:[n.jsxs(Zo,{children:[n.jsx(j,{variant:"h6",className:"mb-2",children:i}),l]}),n.jsxs(kn,{children:[n.jsx(te,{variant:"text",onClick:c,autoFocus:!0,children:"Cancel"}),n.jsx(Ia,{color:"primary",type:"submit",loading:a,onClick:t,children:"Ok"})]})]})}function la({width:e,height:t,className:c,style:i}){return n.jsxs("svg",{width:e??"100%",height:t??"100%",viewBox:"0 0 599 599",version:"1.1",style:i,className:c,xmlns:"http://www.w3.org/2000/svg",children:[n.jsxs("defs",{children:[n.jsxs("radialGradient",{cx:"28.6213569%",cy:"43.1133328%",fx:"28.6213569%",fy:"43.1133328%",r:"71.5003456%",gradientTransform:"translate(0.286214,0.431133),rotate(3.343450),scale(1.000000,0.996175),translate(-0.286214,-0.431133)",id:"radialGradient-1",children:[n.jsx("stop",{stopColor:"#FF5B79",offset:"0%"}),n.jsx("stop",{stopColor:"#FA5574",offset:"28.0930803%"}),n.jsx("stop",{stopColor:"#EC4C51",offset:"44.7242531%"}),n.jsx("stop",{stopColor:"#9543C1",offset:"71.4578165%"}),n.jsx("stop",{stopColor:"#3857B3",offset:"100%"})]}),n.jsxs("radialGradient",{cx:"53.6205516%",cy:"47.2473036%",fx:"53.6205516%",fy:"47.2473036%",r:"50.8229649%",gradientTransform:"translate(0.536206,0.472473),rotate(90.000000),scale(1.000000,1.206631),translate(-0.536206,-0.472473)",id:"radialGradient-2",children:[n.jsx("stop",{stopColor:"#68294F",stopOpacity:"0",offset:"0%"}),n.jsx("stop",{stopColor:"#5E2548",stopOpacity:"0.04641108",offset:"75.3503173%"}),n.jsx("stop",{stopColor:"#0D060B",stopOpacity:"0.437431709",offset:"100%"})]}),n.jsxs("radialGradient",{cx:"53.8605015%",cy:"48.1990423%",fx:"53.8605015%",fy:"48.1990423%",r:"59.9151549%",gradientTransform:"translate(0.538605,0.481990),rotate(180.000000),scale(1.000000,0.925027),translate(-0.538605,-0.481990)",id:"radialGradient-3",children:[n.jsx("stop",{stopColor:"#68294F",stopOpacity:"0",offset:"0%"}),n.jsx("stop",{stopColor:"#5E2548",stopOpacity:"0.04641108",offset:"84.0867343%"}),n.jsx("stop",{stopColor:"#FF0000",stopOpacity:"0.567324765",offset:"100%"})]})]}),n.jsx("g",{id:"Page-1",stroke:"none",strokeWidth:"1",fill:"none",fillRule:"evenodd",children:n.jsxs("g",{id:"firecms_logo",children:[n.jsx("circle",{fill:"url(#radialGradient-1)",cx:"299.5",cy:"299.5",r:"299.5"}),n.jsx("circle",{fill:"url(#radialGradient-2)",cx:"299.5",cy:"299.5",r:"299.5"}),n.jsx("circle",{fill:"url(#radialGradient-3)",cx:"299.5",cy:"299.5",r:"299.5"})]})})]})}const nH={info:"bg-sky-200 dark:bg-teal-900",warn:"bg-orange-200 dark:bg-yellow-950"};function oH({children:e,mode:t="info"}){return n.jsx("div",{className:E("my-3 py-2 px-4 rounded",nH[t]),children:e})}const sa=function({title:t,endAdornment:c,startAdornment:i,drawerOpen:a,dropDownActions:l,includeDrawer:s,className:d,style:u,user:A}){const y=fe(),h=In(),{mode:I,toggleMode:_}=Pr(),g=ze(),b=A??h.user;let p;if(b&&b.photoURL)p=n.jsx(Mt,{src:b.photoURL});else if(b===void 0||h.initialLoading)p=n.jsx("div",{className:"p-1 flex justify-center",children:n.jsx(Ve,{className:"w-10 h-10 rounded-full"})});else{const w=b?.displayName?b.displayName[0].toUpperCase():b?.email?b.email[0].toUpperCase():"A";p=n.jsx(Mt,{children:w})}return n.jsx("div",{style:u,className:E("pr-2",{"ml-[17rem]":a&&g,"ml-16":s&&!(a&&g)&&!i,"h-16":!0,"z-10":g,"transition-all":!0,"ease-in":!0,"duration-75":!0,"w-full":!s,"w-[calc(100%-64px)]":s&&!(a&&g),"w-[calc(100%-17rem)]":s&&a&&g,"duration-150":a&&g,fixed:!0},d),children:n.jsxs("div",{className:"flex flex-row gap-2 px-4 h-full items-center",children:[i,y&&n.jsx("div",{className:"mr-8 hidden lg:block",children:n.jsx(be.Link,{className:"visited:text-inherit visited:dark:text-inherit",to:y?.basePath??"/",children:n.jsx(j,{variant:"subtitle1",noWrap:!0,className:"ml-2 !font-medium",children:t})})}),n.jsx("div",{className:"flex-grow"}),c&&n.jsx(ie,{children:c}),n.jsx(R,{color:"inherit","aria-label":"Open drawer",onClick:_,size:"large",children:I==="dark"?n.jsx(dc,{}):n.jsx(mc,{})}),n.jsxs(Qn,{trigger:p,children:[l,!l&&n.jsxs(me,{onClick:h.signOut,children:[n.jsx(Sc,{}),"Log Out"]})]})]})})},rH=e=>e&&Array.isArray(e)&&e.length>0?e.map((t,c)=>t?{[ir(t)+c]:Ao()}:{}).reduce((t,c)=>({...t,...c}),{}):{};function Pt({droppableId:e,addLabel:t,value:c,disabled:i=!1,buildEntry:a,size:l,onInternalIdAdded:s,includeAddButton:d,newDefaultEntry:u,onValueChange:A}){const y=c&&Array.isArray(c)&&c.length>0,h=f.useRef(rH(c)),[I,_]=f.useState(y?Object.values(h.current):[]);f.useEffect(()=>{if(y&&c&&c.length!==I.length){const k=c.map((v,K)=>{const m=ir(v)+K;if(m in h.current)return h.current[m];{const C=Ao();return h.current[m]=C,C}});_(k)}},[y,I.length,c]);const g=k=>{if(k.preventDefault(),i)return;const v=Ao(),K=[...I,v];s&&s(v),_(K),A([...c??[],u])},b=k=>{const v=[...I];v.splice(k,1),_(v),A(c.filter((K,m)=>m!==k))},p=k=>{const v=Ao(),K=c[k],m=[...I.splice(0,k+1),v,...I.splice(k+1,I.length-k-1)];s&&s(v),_(m),A([...c.slice(0,k+1),K,...c.slice(k+1)])},w=k=>{if(!k.destination)return;const v=k.source.index,K=k.destination.index,m=[...I],C=m[v];m[v]=m[K],m[K]=C,_(m),A(tH(c,v,K))};return n.jsx(Kn.DragDropContext,{onDragEnd:w,children:n.jsx(Kn.Droppable,{droppableId:e,renderClone:(k,v,K)=>{const m=K.source.index,C=I[m];return n.jsx(Dt,{provided:k,internalId:C,index:m,size:l,disabled:i,buildEntry:a,remove:b,copy:p,isDragging:v.isDragging})},children:(k,v)=>n.jsxs("div",{...k.droppableProps,ref:k.innerRef,children:[y&&I.map((K,m)=>n.jsx(Kn.Draggable,{draggableId:`array_field_${K}`,isDragDisabled:i,index:m,children:(C,B)=>n.jsx(Dt,{provided:C,internalId:K,index:m,size:l,disabled:i,buildEntry:a,remove:b,copy:p,isDragging:B.isDragging})},`array_field_${K}`)),k.placeholder,d&&n.jsx("div",{className:"p-4 justify-center text-left",children:n.jsx(te,{variant:l==="small"?"text":"outlined",size:l==="small"?"small":"medium",color:"primary",disabled:i,startIcon:n.jsx(gn,{}),onClick:g,children:t??"Add"})})]})})})}function Dt({provided:e,index:t,internalId:c,size:i,disabled:a,buildEntry:l,remove:s,copy:d,isDragging:u}){const[A,y]=er(),h=i!=="small"&&y.height===0,I=i!=="small"&&y.height<100,[_,g]=f.useState(!1),b=f.useCallback(()=>g(!0),[]),p=f.useCallback(()=>g(!1),[]);return n.jsx("div",{onMouseEnter:b,onMouseMove:b,onMouseLeave:p,ref:e.innerRef,...e.draggableProps,style:e.draggableProps.style,className:`${u||_?We:""} mb-1 rounded-md opacity-100`,children:n.jsxs("div",{className:"flex items-start",children:[n.jsx("div",{ref:A,className:"flex-grow w-[calc(100%-48px)] text-text-primary dark:text-text-primary-dark",children:l(t,c)}),n.jsx(da,{direction:i==="small"?"row":"column",disabled:a,remove:s,index:t,provided:e,measuring:h,contentOverflow:I,copy:d})]})})}function da({direction:e,disabled:t,remove:c,index:i,provided:a,copy:l,contentOverflow:s,measuring:d}){return n.jsxs("div",{className:`p-1 flex ${e==="row"?"flex-row-reverse":"flex-col"} items-center`,...a.dragHandleProps,children:[n.jsx(_e,{side:e==="column"?"left":void 0,title:"Move",children:n.jsx(R,{size:"small",disabled:t,className:`cursor-${t?"inherit":"grab"}`,children:n.jsx("svg",{focusable:"false",fill:"currentColor","aria-hidden":"true",viewBox:"0 0 24 24",children:n.jsx("path",{d:"M20 9H4v2h16V9zM4 15h16v-2H4v2z"})})})}),!d&&!s&&n.jsxs(n.Fragment,{children:[n.jsx(_e,{title:"Remove",side:e==="column"?"left":void 0,children:n.jsx(R,{size:"small","aria-label":"remove",disabled:t,onClick:()=>c(i),children:n.jsx(to,{size:"small"})})}),n.jsx(_e,{side:e==="column"?"left":void 0,title:"Copy in this position",children:n.jsx(R,{size:"small","aria-label":"copy",disabled:t,onClick:()=>l(i),children:n.jsx(no,{size:"small"})})})]}),!d&&s&&n.jsx(n.Fragment,{children:n.jsxs(Qn,{trigger:n.jsx(R,{size:"small",children:n.jsx(kr,{size:"small"})}),children:[n.jsxs(me,{dense:!0,onClick:()=>c(i),children:[n.jsx(to,{size:"small"}),"Remove"]}),n.jsxs(me,{dense:!0,onClick:()=>l(i),children:[n.jsx(no,{size:"small"}),"Copy"]})]})})]})}function tH(e,t,c){const i=Array.from(e),[a]=i.splice(t,1);return i.splice(c,0,a),i}function Ao(){return Math.floor(Math.random()*Math.floor(Number.MAX_SAFE_INTEGER))}const cH="100vw",iH="55vw",ua="768px",$o="main_##Q$SC^#S6";function aH({path:e,entityId:t,selectedSubPath:c,copy:i,collection:a,onValuesAreModified:l,formWidth:s,onUpdate:d,onClose:u}){a.customId&&a.formAutoSave&&console.warn(`The collection ${a.path} has customId and formAutoSave enabled. This is not supported and formAutoSave will be ignored`);const[A,y]=f.useState(!1),[h,I]=f.useState(void 0);Oo(h,()=>{h&&Y({entityId:L?.id,collection:a,path:e,values:h,closeAfterSave:!1})},!1,2e3);const _=Qe(),g=Uo(),b=Sn(),p=an(),w=ne(),k=In(),[v,K]=f.useState(void 0),[m,C]=f.useState(i?"copy":t?"existing":"new"),B=f.useRef(void 0),P=B.current,F=(a.subcollections??[]).filter(M=>!M.hideFromNavigation),D=F?.length??0,S=a.entityViews,T=S?.length??0,N=a.formAutoSave&&!a.customId,q=T>0||D>0,G=c??nt(a?a.defaultSelectedView:void 0,{status:m,entityId:t}),V=f.useRef(G??$o),oe=V.current===$o,{entity:O,dataLoading:H,dataLoadingError:Z}=Er({path:e,entityId:t,collection:a,useCache:!1}),[L,W]=f.useState(O),[Q,X]=f.useState(void 0);f.useEffect(()=>{O&&W(O)},[O]),f.useEffect(()=>{if(m==="new")X(!1);else{const M=L?ct(a,k,Ze(e),L??null):!1;L&&X(!M)}},[k,L,m]);const ee=f.useCallback(M=>{y(!1),p.open({type:"error",message:"Error before saving: "+M?.message}),console.error(M)},[p]),U=f.useCallback(M=>{y(!1),p.open({type:"error",message:"Error after saving (entity is saved): "+M?.message}),console.error(M)},[p]),re=(M,le)=>{y(!1),N||p.open({type:"success",message:`${a.singularName??a.name}: Saved correctly`}),W(M),C("existing"),l(!1),d&&d({entity:M}),le?(g.setBlocked(!1),g.close(!0),u?.()):m!=="existing"&&b.replace({path:e,entityId:M.id,selectedSubPath:V.current,updateUrl:!0,collection:a})},J=f.useCallback(M=>{y(!1),p.open({type:"error",message:"Error saving: "+M?.message}),console.error("Error saving entity",e,t),console.error(M)},[t,e,p]),Y=({values:M,previousValues:le,closeAfterSave:Ie,entityId:Oe,collection:vn,path:$})=>{y(!0),Fr({path:$,entityId:Oe,values:M,previousValues:le,collection:vn,status:m,dataSource:_,context:w,onSaveSuccess:se=>re(se,Ie),onSaveFailure:J,onPreSaveHookError:ee,onSaveSuccessHookError:U}).then()},x=async({collection:M,path:le,entityId:Ie,values:Oe,previousValues:vn,closeAfterSave:$,autoSave:se})=>{m&&(se?I(Oe):Y({collection:M,path:le,entityId:Ie,values:Oe,previousValues:vn,closeAfterSave:$}))},ge=S?S.map(M=>At(M,w.entityViews)).filter(Boolean):[],He=S&&ge.map((M,le)=>{if(!M||V.current!==M.key)return null;const Ie=M.Builder;return Ie?n.jsx("div",{className:E(ue,"relative flex-grow w-full h-full overflow-auto "),role:"tabpanel",children:n.jsx(ie,{children:v&&n.jsx(Ie,{collection:a,entity:L,modifiedValues:P??L?.values,formContext:v})})},`custom_view_${M.key}`):(console.error("customView.Builder is not defined"),null)}).filter(Boolean),ve=H&&!L||(!L||Q===void 0)&&(m==="existing"||m==="copy"),fn=ve||A,An=F&&F.map((M,le)=>{const Ie=M.alias??M.path,Oe=L?`${e}/${L?.id}/${pe(Ie)}`:void 0;return V.current!==Ie?null:n.jsxs("div",{className:"relative flex-grow h-full overflow-auto w-full",role:"tabpanel",children:[fn&&n.jsx(fo,{}),!ve&&(L&&Oe?n.jsx(St,{fullPath:Oe,parentPathSegments:Ze(e),isSubCollection:!0,...M}):n.jsx("div",{className:"flex items-center justify-center w-full h-full p-3",children:n.jsx(j,{variant:"label",children:"You need to save your entity before adding additional collections"})}))]},`subcol_${Ie}`)}).filter(Boolean),zn=f.useCallback(()=>{l(!1)},[]),_o=M=>{V.current=M,b.replace({path:e,entityId:t,selectedSubPath:M===$o?void 0:M,updateUrl:!0,collection:a})},mn=f.useCallback(M=>{B.current=M},[]),Hn=f.useCallback(M=>{p.open({type:"error",message:"Error updating id, check the console"})},[]),_n=f.useCallback(M=>{W(le=>le?{...le,id:M}:void 0)},[]),Un=M=>{N||l(M)};function yo(){const M=w.plugins;let le=n.jsx(Si,{status:m,path:e,collection:a,onEntitySaveRequested:x,onDiscard:zn,onValuesChanged:mn,onModified:Un,entity:L,onIdChange:_n,onFormContextChange:K,hideId:a.hideIdFromForm,autoSave:N,onIdUpdateError:Hn});return M&&M.forEach(Ie=>{Ie.form?.provider&&(le=n.jsx(Ie.form.provider.Component,{status:m,path:e,collection:a,onDiscard:zn,onValuesChanged:mn,onModified:Un,entity:L,context:w,formContext:v,...Ie.form.provider.props,children:le}))}),n.jsx(ie,{children:le})}const z=Q===void 0?n.jsx(n.Fragment,{}):Q?n.jsxs(n.Fragment,{children:[n.jsx(j,{className:"mt-16 mb-8 mx-8",variant:"h4",children:a.singularName??a.name}),n.jsx(yt,{className:"px-12",entity:L,path:e,collection:a})]}):yo(),Ae=F&&F.map(M=>n.jsx(Xo,{className:"text-sm min-w-[140px]",value:M.path,children:M.name},`entity_detail_collection_tab_${M.name}`)),ae=ge.map(M=>n.jsx(Xo,{className:"text-sm min-w-[140px]",value:M.key,children:M.name},`entity_detail_collection_tab_${M.name}`));return n.jsx("div",{className:"flex flex-col h-full w-full transition-width duration-250 ease-in-out",children:n.jsxs(n.Fragment,{children:[n.jsxs("div",{className:E(ue,"no-scrollbar border-b pl-2 pr-2 pt-1 flex items-end overflow-scroll bg-gray-50 dark:bg-gray-950"),children:[n.jsx("div",{className:"pb-1 self-center",children:n.jsx(R,{onClick:()=>(u?.(),g.close(!1)),size:"large",children:n.jsx(Ir,{})})}),n.jsx("div",{className:"flex-grow"}),ve&&n.jsx("div",{className:"self-center",children:n.jsx(Gn,{size:"small"})}),n.jsxs(ba,{value:V.current,onValueChange:M=>{_o(M)},className:"pl-4 pr-4 pt-0",children:[n.jsx(Xo,{disabled:!q,value:$o,className:`${q?"":"hidden"} text-sm min-w-[140px]`,children:a.singularName??a.name}),ae,Ae]})]}),n.jsxs("div",{className:"flex-grow h-full flex overflow-auto flex-row w-full ",style:{},children:[n.jsx("div",{role:"tabpanel",hidden:!oe,id:`form_${e}`,className:" w-full",children:ve?n.jsx(fo,{}):z}),He,An]})]})})}function lH(e){const{blocked:t,setBlocked:c,setBlockedNavigationMessage:i}=Uo(),a=fe(),l=f.useMemo(()=>{if(!e)return;let d=e.collection;if(!d&&(d=a.getCollection(e.path,e.entityId),!d))throw console.error("ERROR: No collection found in path `",e.path,"`. Entity id: ",e.entityId),Error("ERROR: No collection found in path `"+e.path+"`. Make sure you have defined a collection for this path in the root navigation.");return d},[a,e]);f.useEffect(()=>{function d(u){t&&l&&(u.preventDefault(),u.returnValue=`You have unsaved changes in this ${l.name}. Are you sure you want to leave this page?`)}return typeof window<"u"&&window.addEventListener("beforeunload",d),()=>{typeof window<"u"&&window.removeEventListener("beforeunload",d)}},[t,l]);const s=f.useCallback(d=>{c(d),i(d?n.jsxs(n.Fragment,{children:[" You have unsaved changes in this ",n.jsx("b",{children:l?.singularName??l?.name}),"."]}):void 0)},[l?.name,c,i]);return!e||!l?n.jsx("div",{className:"w-full"}):n.jsx(n.Fragment,{children:n.jsx(ie,{children:n.jsx(aH,{...e,formWidth:e.width,collection:l,onValuesAreModified:s})})})}const fa="new";function sH(e,t){if(t)return cH;const c=!e.selectedSubPath,i=typeof e.width=="number"?`${e.width}px`:e.width;return c?i??ua:`calc(${iH} + ${i??ua})`}const dH=(e,t)=>{const c=be.useLocation(),i=f.useRef(!1),a=!ze();f.useEffect(()=>{if(!e.loading&&!i.current){if(e.isUrlCollectionPath(c.pathname)){const u=c.hash===`#${fa}`,A=e.urlPathToDataPath(c.pathname),y=uH(A,e.collections,u);t.replace(y.map(h=>Nt(h,e,a)))}i.current=!0}},[c,e,t,a]);const l=f.useCallback(()=>{t.close()},[t]),s=f.useCallback(u=>{if(u.copy&&!u.entityId)throw Error("If you want to copy an entity you need to provide an entityId");const A=nt(u.collection?u.collection.defaultSelectedView:void 0,{status:u.copy?"copy":u.entityId?"existing":"new",entityId:u.entityId});t.open(Nt({selectedSubPath:A,...u},e,a))},[t,e,a]),d=f.useCallback(u=>{if(u.copy&&!u.entityId)throw Error("If you want to copy an entity you need to provide an entityId");t.replace(Nt(u,e,a))},[e,t,a]);return{close:l,open:s,replace:d}};function uH(e,t,c){const i=_t({path:e,collections:t}),a=[];let l="";for(let s=0;s<i.length;s++){const d=i[s];if(d.type==="collection"&&(l=d.path),s>0){const u=i[s-1];if(d.type==="entity")a.push({path:d.path,entityId:d.entityId,copy:!1});else if(d.type==="custom_view"){if(u.type==="entity"){const A=a[a.length-1];A&&(A.selectedSubPath=d.view.key)}}else if(d.type==="collection"&&u.type==="entity"){const A=a[a.length-1];A&&(A.selectedSubPath=d.collection.alias??d.collection.path)}}}return c&&a.push({path:l,copy:!1}),a}const Nt=(e,t,c)=>{const i=pe(e.path),a=e.entityId?t.buildUrlCollectionPath(`${i}/${e.entityId}/${e.selectedSubPath||""}`):t.buildUrlCollectionPath(`${i}#${fa}`);return{key:`${e.path}/${e.entityId}`,component:n.jsx(lH,{...e}),urlPath:a,parentUrlPath:t.buildUrlCollectionPath(i),width:sH(e,c),onClose:e.onClose}};function Aa(e){const{path:t,collections:c=[],currentFullPath:i}=e,a=pe(t).split("/"),l=bo(a),s=[];for(let d=0;d<l.length;d++){const u=l[d],A=c&&c.find(y=>y.alias===u||y.path===u);if(A){const y=A.alias??A.path,h=i&&i.length>0?i+"/"+y:y,I=pe(pe(t).replace(u,"")),_=I.length>0?I.split("/"):[];if(_.length>0){const g=_[0],b=h+"/"+g;if(s.push(new je(g,h)),_.length>1){const p=_.slice(1).join("/");if(!A)throw Error("collection not found resolving path: "+A);A.subcollections&&s.push(...Aa({path:p,collections:A.subcollections,currentFullPath:b}))}}break}}return s}function fH({basePath:e,baseCollectionPath:t,authController:c,collections:i,views:a,userConfigPersistence:l,plugins:s,dataSource:d}){const u=be.useLocation(),[A,y]=f.useState(),[h,I]=f.useState(),[_,g]=f.useState(!1),[b,p]=f.useState(void 0),[w,k]=f.useState(!0),[v,K]=f.useState(void 0),m=pe(e),C=pe(t),B=m?`/${m}`:"/",P=m?`/${m}/${C}`:`/${C}`,F=f.useCallback(W=>m?`/${m}/${jo(W)}`:`/${jo(W)}`,[m]),D=f.useCallback(W=>`${pe(t)}/${jo(W)}`,[t]),S=f.useCallback((W,Q)=>{const X=[...(W??[]).map(U=>U.hideFromNavigation?void 0:{url:D(U.alias??U.path),type:"collection",name:U.name.trim(),path:U.alias??U.path,collection:U,description:U.description?.trim(),group:U.group?.trim()}).filter(Boolean),...(Q??[]).map(U=>U.hideFromNavigation?void 0:{url:F(Array.isArray(U.path)?U.path[0]:U.path),name:U.name.trim(),type:"view",view:U,description:U.description?.trim(),group:U.group?.trim()}).filter(Boolean)],ee=Object.values(X).map(U=>U.group).filter(Boolean).filter((U,re,J)=>J.indexOf(U)===re);return{navigationEntries:X,groups:ee}},[F,D]),T=f.useCallback(async()=>{if(!c.initialLoading){try{const[W=[],Q=[]]=await Promise.all([AH(i,c,d,s),_H(a,c,d)]);y(W),I(Q),p(S(W??[],Q))}catch(W){console.error(W),K(W)}k(!1),g(!0)}},[i,c.user,c.initialLoading,d,s,a,S]);f.useEffect(()=>{T()},[T]);const N=f.useCallback((W,Q,X=!1)=>{if(!A)return;const ee=Io(pe(W),A),U=X?l?.getCollectionConfig(W):void 0,re=ee?qe(ee,U):void 0;let J=re;if(re){const Y=re.subcollections,x=re.callbacks,ge=re.permissions;J={...J,subcollections:J?.subcollections??Y,callbacks:J?.callbacks??x,permissions:J?.permissions??ge}}if(J)return{...re,...J}},[e,t,A]),q=f.useCallback(W=>{let Q=A;if(!Q)throw Error("Collections have not been initialised yet");for(let X=0;X<W.length;X++){const ee=W[X],U=Q.find(re=>re.alias===ee||re.path===ee);if(!U)return;if(Q=U.subcollections,X===W.length-1)return U}},[A]),G=f.useCallback(W=>pe(W+"/").startsWith(pe(P)+"/"),[P]),V=f.useCallback(W=>{if(W.startsWith(P))return W.replace(P,"");throw Error("Expected path starting with "+P)},[P]),oe=f.useCallback(({path:W})=>`s/edit/${jo(W)}`,[]),O=f.useCallback(W=>{if(!A)throw Error("Collections have not been initialised yet");return rr(W,A)},[A]),H=u.state,Z=H&&H.base_location?H.base_location:u,L=f.useCallback(W=>Aa({path:W,collections:A}),[A]);return f.useMemo(()=>({collections:A??[],views:h??[],loading:!_||w,navigationLoadingError:v,homeUrl:B,basePath:e,baseCollectionPath:t,initialised:_,getCollection:N,getCollectionFromPaths:q,isUrlCollectionPath:G,urlPathToDataPath:V,buildUrlCollectionPath:D,buildUrlEditCollectionPath:oe,buildCMSUrlPath:F,resolveAliasesFrom:O,topLevelNavigation:b,baseLocation:Z,refreshNavigation:T,getParentReferencesFromPath:L}),[t,Z,e,F,D,oe,A,L,N,q,B,_,G,w,v,T,O,b,V,h])}function jo(e){return encodeURIComponent(pe(e)).replaceAll("%2F","/").replaceAll("%23","#")}function _a(e,t){return e.filter(c=>c.permissions?uo(c,t,[c.path],null).read!==!1:!0).map(c=>c.subcollections?{...c,subcollections:_a(c.subcollections,t)}:c)}async function AH(e,t,c,i){let a=[];return typeof e=="function"?a=await e({user:t.user,authController:t,dataSource:c}):Array.isArray(e)&&(a=e),a=_a(a,t),i&&i.forEach(l=>{l.collections?.injectCollections&&(a=l.collections?.injectCollections(a??[]))}),a}async function _H(e,t,c){let i=[];return typeof e=="function"?i=await e({user:t.user,authController:t,dataSource:c}):Array.isArray(e)&&(i=e),i}function yH(){const e=be.useLocation(),t=be.useNavigate(),[c,i]=f.useState([]),a=f.useRef(c),l=f.useRef({}),s=f.useRef(0),d=h=>{a.current=h,i(h)};f.useEffect(()=>{const _=(e.state?.panels??[]).map(g=>l.current[g]).filter(g=>!!g);de(a.current.map(g=>g.key),_.map(g=>g.key))||d(_)},[e]);const u=f.useCallback(()=>{if(c.length===0)return;const h=c[c.length-1],I=[...c.slice(0,-1)];if(d(I),s.current>0)h.urlPath&&t(-1),s.current--;else if(h.parentUrlPath){const _=e.state?.base_location??e;t(h.parentUrlPath,{replace:!0,state:{base_location:_,panels:I.map(g=>g.key)}})}},[c,t,e]),A=f.useCallback(h=>{const I=Array.isArray(h)?h:[h];I.forEach(b=>{l.current[b.key]=b}),s.current=s.current+I.length;const _=e.state?.base_location??e,g=[...c,...I];d(g),I.forEach(b=>{b.urlPath&&t(b.urlPath,{state:{base_location:_,panels:g.map(p=>p.key)}})})},[e,t,c]),y=f.useCallback(h=>{const I=Array.isArray(h)?h:[h];I.forEach(b=>{l.current[b.key]=b});const _=e.state?.base_location??e,g=[...c.slice(0,-I.length),...I];d(g),I.forEach(b=>{b.urlPath&&t(b.urlPath,{replace:!0,state:{base_location:_,panels:g.map(p=>p.key)}})})},[e,t,c]);return{sidePanels:c,close:u,open:A,replace:y}}function hH(e){f.useEffect(()=>{if(!e)return;const t=Ut[e];t&&(xo.registerLocale(e,t),xo.setDefaultLocale(e))},[e])}const gH="/",IH="/c";function bH(e){const t=Pr(),{children:c,collections:i,views:a,entityLinkBuilder:l,userConfigPersistence:s,dateTimeFormat:d,locale:u,authController:A,storageSource:y,dataSource:h,basePath:I=gH,baseCollectionPath:_=IH,plugins:g,onAnalyticsEvent:b,fields:p,entityViews:w}=e;hH(u);const k=fH({basePath:I,baseCollectionPath:_,authController:A,collections:i,views:a,userConfigPersistence:s,dataSource:h,plugins:g}),v=yH(),K=dH(k,v),m=A.initialLoading||k.loading||(g?.some(B=>B.loading)??!1),C=f.useMemo(()=>({entityLinkBuilder:l,dateTimeFormat:d,locale:u,plugins:g,onAnalyticsEvent:b,entityViews:w??[],fields:p??{}}),[d,u,g,w,p]);return k.navigationLoadingError?n.jsx(Lt,{maxWidth:"md",fullScreen:!0,children:n.jsx(we,{title:"Error loading navigation",error:k.navigationLoadingError})}):A.authError?n.jsx(Lt,{maxWidth:"md",fullScreen:!0,children:n.jsx(we,{title:"Error loading auth",error:A.authError})}):n.jsx(or.Provider,{value:t,children:n.jsx(Sr.Provider,{value:C,children:n.jsx(Wc.Provider,{value:s,children:n.jsx(Vc.Provider,{value:y,children:n.jsx(Mc.Provider,{value:h,children:n.jsx(Cr.Provider,{value:A,children:n.jsx(Lc.Provider,{value:v,children:n.jsx(Qc.Provider,{value:K,children:n.jsx(Oc.Provider,{value:k,children:n.jsx(Ga,{children:n.jsx(pH,{loading:m,children:c})})})})})})})})})})})}function pH({loading:e,children:t}){const c=ne();let i=t({context:c,loading:e});const a=c.plugins;return!e&&a&&a.forEach(l=>{l.provider&&(i=n.jsx(l.provider.Component,{...l.provider.props,context:c,children:i}))}),n.jsx(n.Fragment,{children:i})}function ya({hovered:e,drawerOpen:t,closeDrawer:c}){const i=ne(),a=fe(),l=e&&!t,s=ze();if(!a.topLevelNavigation)throw Error("Navigation not ready in Drawer");const{navigationEntries:d,groups:u}=a.topLevelNavigation,A=Object.values(d).filter(I=>!I.group),y=f.useCallback(I=>t?n.jsx("div",{className:"pt-8 pl-6 pr-8 pb-2 flex flex-row items-center",children:n.jsx(j,{variant:"caption",color:"secondary",className:"font-medium flex-grow",children:I?I.toUpperCase():"Views".toUpperCase()})}):n.jsx("div",{className:"h-4"}),[t]),h=I=>{const _=I.type==="collection"?"drawer_navigate_to_collection":I.type==="view"?"drawer_navigate_to_view":"unmapped_event";i.onAnalyticsEvent?.(_,{url:I.url}),s||c()};return n.jsxs("div",{className:"flex-grow overflow-scroll no-scrollbar",children:[u.map(I=>n.jsxs(f.Fragment,{children:[y(I),Object.values(d).filter(_=>_.group===I).map((_,g)=>n.jsx(Tt,{icon:Vo(_.collection??_.view),tooltipsOpen:l,drawerOpen:t,onClick:()=>h(_),url:_.url,name:_.name},`navigation_${g}`))]},`drawer_group_${I}`)),A.length>0&&y(),A.map((I,_)=>n.jsx(Tt,{icon:Vo(I.collection??I.view),tooltipsOpen:l,onClick:()=>h(I),drawerOpen:t,url:I.url,name:I.name},`navigation_${_}`))]})}function Tt({name:e,icon:t,drawerOpen:c,tooltipsOpen:i,url:a,onClick:l}){const s=n.jsx("div",{className:"text-gray-600 dark:text-gray-500",children:t}),d=n.jsxs(be.NavLink,{onClick:l,className:({isActive:u})=>E("rounded-r-xl truncate","hover:bg-gray-200 hover:bg-opacity-75 dark:hover:bg-gray-700 dark:hover:bg-opacity-75 text-gray-800 dark:text-gray-200 hover:text-gray-900 hover:dark:text-gray-100","flex flex-row items-center w-full mr-8",c?"pl-8 h-12":"pl-6 h-11","font-medium text-sm",u?"bg-gray-100 dark:bg-gray-800":""),to:a,children:[s,n.jsx("div",{className:E(c?"opacity-100":"opacity-0 hidden","ml-4 font-inherit text-inherit"),children:e.toUpperCase()})]});return c?d:n.jsx(_e,{open:i,side:"right",title:e,children:d})}const wH=280,kH=f.memo(function(t){const{children:c,name:i,logo:a,includeDrawer:l=!0,autoOpenDrawer:s,Drawer:d=ya,drawerProps:u,FireCMSAppBarComponent:A=sa,fireCMSAppBarComponentProps:y}=t,h=ze(),I=fe(),[_,g]=f.useState(!1),[b,p]=f.useState(!1),w=f.useCallback(()=>p(!0),[]),k=f.useCallback(()=>p(!1),[]),v=f.useCallback(()=>{g(!1)},[]),K=_||!!(h&&s&&b);return n.jsxs("div",{className:"flex h-screen w-screen bg-gray-50 dark:bg-gray-900 text-gray-900 dark:text-white overflow-hidden",style:{paddingTop:"env(safe-area-inset-top)",paddingLeft:"env(safe-area-inset-left)",paddingRight:"env(safe-area-inset-right)",paddingBottom:"env(safe-area-inset-bottom)",height:"100dvh"},children:[n.jsx(A,{title:i,includeDrawer:l,drawerOpen:K,...y}),n.jsx(vH,{displayed:l,onMouseEnter:w,onMouseMove:w,onMouseLeave:k,open:K,logo:a,hovered:b,setDrawerOpen:g,children:l&&(I.loading?n.jsx(fo,{}):n.jsx(d,{hovered:b,drawerOpen:K,closeDrawer:v,...u}))}),n.jsxs("main",{className:"flex flex-col flex-grow overflow-auto",children:[n.jsx(mH,{}),n.jsx("div",{className:E(ue,"flex-grow overflow-auto lg:m-0 lg:mx-4 lg:mb-4 lg:rounded-lg lg:border lg:border-solid m-0 mt-1"),children:n.jsx(ie,{children:c})})]})]})},de),mH=()=>n.jsx("div",{className:"flex flex-col min-h-[68px]"});function vH(e){const t=fe(),c=e.displayed?e.open?wH:72:0,i=n.jsxs("div",{className:"relative h-full no-scrollbar overflow-y-auto overflow-x-hidden",style:{width:c,transition:"left 150ms cubic-bezier(0.4, 0, 0.6, 1) 0ms, opacity 150ms cubic-bezier(0.4, 0, 0.6, 1) 0ms, width 150ms cubic-bezier(0.4, 0, 0.6, 1) 0ms"},children:[!e.open&&e.displayed&&n.jsx(_e,{title:"Open menu",side:"right",sideOffset:12,className:"fixed top-2 left-3 !bg-gray-50 dark:!bg-gray-900 rounded-full w-fit",children:n.jsx(R,{color:"inherit","aria-label":"Open menu",className:"sticky top-2 left-3 ",onClick:()=>e.setDrawerOpen(!0),size:"large",children:n.jsx(wr,{})})}),n.jsxs("div",{className:"flex flex-col h-full",children:[n.jsx("div",{style:{transition:"padding 150ms cubic-bezier(0.4, 0, 0.6, 1) 0ms",padding:e.open?"32px 96px 0px 24px":"72px 16px 0px"},className:E("cursor-pointer"),children:n.jsx(_e,{title:"Home",sideOffset:20,side:"right",children:n.jsx(be.Link,{to:t.basePath,children:e.logo?n.jsx("img",{src:e.logo,alt:"Logo",className:E("max-w-full max-h-full",e.open??"w-[160px] h-[160px]")}):n.jsx(la,{})})})}),e.children]})]});return ze()?n.jsxs("div",{className:"relative",onMouseEnter:e.onMouseEnter,onMouseMove:e.onMouseMove,onMouseLeave:e.onMouseLeave,style:{width:c,transition:"left 150ms cubic-bezier(0.4, 0, 0.6, 1) 0ms, opacity 150ms cubic-bezier(0.4, 0, 0.6, 1) 0ms, width 150ms cubic-bezier(0.4, 0, 0.6, 1) 0ms"},children:[i,n.jsx("div",{className:`absolute right-0 top-4 ${e.open?"opacity-100":"opacity-0 invisible"} transition-opacity duration-1000 ease-in-out`,children:n.jsx(R,{"aria-label":"Close drawer",onClick:()=>e.setDrawerOpen(!1),children:n.jsx(sc,{})})})]}):e.displayed?n.jsxs(n.Fragment,{children:[n.jsx(R,{color:"inherit","aria-label":"Open drawer",onClick:()=>e.setDrawerOpen(!0),size:"large",className:"absolute top-2 left-6",children:n.jsx(wr,{})}),n.jsx(Vt,{side:"left",transparent:!0,open:e.open,onOpenChange:e.setDrawerOpen,children:i})]}):null}const KH=f.memo(function({HomePage:t=ia,customRoutes:c}){const i=be.useLocation(),a=fe();if(!a)return n.jsx(n.Fragment,{});const l=i.state,s=l&&l.base_location?l.base_location:i,d=[];a.views&&a.views.forEach(I=>{Array.isArray(I.path)?d.push(...I.path.map(_=>ha(_,I))):d.push(ha(I.path,I))});const A=[...a.collections??[]].sort((I,_)=>_.path.length-I.path.length).map(I=>{const _=a.buildUrlCollectionPath(I.alias??I.path);return n.jsx(be.Route,{path:_+"/*",element:n.jsx(qo,{path:_,title:I.name,type:"collection",children:n.jsx(St,{isSubCollection:!1,parentPathSegments:[],fullPath:I.alias??I.path,...I,Actions:Yo(I.Actions)},`collection_view_${I.alias??I.path}`)})},`navigation_${I.alias??I.path}`)}),y=n.jsx(be.Route,{path:"/",element:n.jsx(qo,{path:a.homeUrl,title:"Home",type:"home",children:n.jsx(t,{})},"navigation_home")}),h=n.jsx(be.Route,{path:"*",element:n.jsx(aa,{})});return n.jsxs(be.Routes,{location:s,children:[A,d,y,h,c]})}),ha=(e,t)=>n.jsx(be.Route,{path:e,element:n.jsx(qo,{path:e,title:t.name,type:"view",children:t.view},`navigation_${e}`)},"navigation_view_"+e),qo=f.memo(function({children:t,title:c,path:i,type:a}){const l=Dr();return f.useEffect(()=>{l.set({breadcrumbs:[{title:c,url:i}]})},[i,c]),n.jsx(n.Fragment,{children:t})},de);function CH(e){return e}function SH(e){return e}function BH(e){return e}function EH(e){return e}function FH(e){return e}function PH(e){return e}function DH(e){return e}function NH(e){return e}function TH(e){return e}function MH(){const e=typeof window<"u"&&window.matchMedia("(prefers-color-scheme: dark)"),c=(localStorage.getItem("prefers-dark-mode")!=null?localStorage.getItem("prefers-dark-mode")==="true":null)??e,[i,a]=f.useState(c?"dark":"light");f.useEffect(()=>{a(c?"dark":"light"),d(c?"dark":"light")},[c]);const l=f.useCallback(()=>{a("dark"),d("dark")},[e]),s=f.useCallback(()=>{a("light"),d("light")},[]),d=A=>{document.body.style.setProperty("color-scheme",A),document.documentElement.dataset.theme=A},u=f.useCallback(()=>{i==="light"?(e?localStorage.removeItem("prefers-dark-mode"):localStorage.setItem("prefers-dark-mode","true"),l()):(e?localStorage.setItem("prefers-dark-mode","false"):localStorage.removeItem("prefers-dark-mode"),s())},[i,e]);return{mode:i,setMode:a,toggleMode:u}}function OH(){const[e,t]=f.useState({}),c=f.useCallback(g=>{const b=localStorage.getItem(g);return b?JSON.parse(b):{}},[]),i=f.useCallback(g=>{const b=`collection_config::${ot(g)}`;return e[b]?e[b]:c(b)},[e,c]),a=f.useCallback((g,b)=>{const p=`collection_config::${ot(g)}`;localStorage.setItem(p,JSON.stringify(b)),t(w=>{const k=w[p],v=qe(k??c(g),b);return qe(w,v)})},[c]),[l,s]=f.useState([]),[d,u]=f.useState([]),[A,y]=f.useState([]);f.useEffect(()=>{s(localStorage.getItem("recently_visited_paths")?JSON.parse(localStorage.getItem("recently_visited_paths")):[]),u(localStorage.getItem("favourite_paths")?JSON.parse(localStorage.getItem("favourite_paths")):[]),y(localStorage.getItem("collapsed_groups")?JSON.parse(localStorage.getItem("collapsed_groups")):[])},[]);const h=f.useCallback(g=>{localStorage.setItem("recently_visited_paths",JSON.stringify(g)),s(g)},[]),I=f.useCallback(g=>{localStorage.setItem("favourite_paths",JSON.stringify(g)),u(g)},[]),_=f.useCallback(g=>{localStorage.setItem("collapsed_groups",JSON.stringify(g)),y(g)},[]);return{onCollectionModified:a,getCollectionConfig:i,recentlyVisitedPaths:l,setRecentlyVisitedPaths:h,favouritePaths:d,setFavouritePaths:I,collapsedGroups:A,setCollapsedGroups:_}}const LH=({children:e})=>n.jsx(Gt.SnackbarProvider,{maxSnack:3,autoHideDuration:3500,children:e}),QH=({ref:e})=>{const[t,c]=f.useState(!1),[i,a]=f.useState(!1);return f.useEffect(()=>{e.current&&(e.current.onfocus=()=>{c(!0),a(!0)},e.current.onblur=()=>{a(!1)})},[e]),{inputFocused:i,autoCompleteOpen:t,setAutoCompleteOpen:c}};function VH({children:e,open:t,setOpen:c}){const i=f.useRef(null);return Do(i,()=>c(!1)),n.jsx(To,{in:t,duration:50,className:E("absolute top-full left-0 right-0 overflow-visible",t?"shadow":"","my-2","z-20","w-full"),children:n.jsx("div",{ref:i,className:E(t?Ge:"","bg-gray-50 dark:bg-gray-900 py-2"),children:e})})}function WH({children:e,onClick:t}){return n.jsx("div",{className:"flex w-full items-center pr-6 pl-14 h-[48px] cursor-pointer hover:bg-gray-100 dark:hover:bg-gray-800",onClick:t,children:e})}const GH=e=>{switch(e){case"error":return"bg-red-50 dark:bg-red-800 dark:text-red-100 text-red-900";case"warning":return"bg-amber-50 dark:bg-amber-800 dark:text-amber-100 text-amber-900";case"info":return"bg-blue-50 dark:bg-blue-800 dark:text-blue-100 text-blue-900";case"success":return"bg-emerald-50 dark:bg-emerald-800 dark:text-emerald-100 text-emerald-900";default:return"bg-blue-50 dark:bg-blue-800 dark:text-blue-100 text-blue-900"}},zH=({children:e,onDismiss:t,color:c="info",action:i,className:a,style:l})=>{const s=GH(c);return n.jsxs("div",{style:l,className:E("px-4 py-2 rounded-md flex items-center gap-2",s,a),children:[n.jsx("span",{className:"flex-grow",children:e}),t&&n.jsx("button",{className:"text-gray-400 hover:text-gray-600 dark:text-gray-500 dark:hover:text-gray-400",onClick:t,children:"×"}),i]})},HH=({src:e,alt:t,children:c,className:i,...a},l)=>n.jsx("button",{ref:l,...a,className:E("rounded-full flex items-center justify-center overflow-hidden",he,"p-1 hover:bg-gray-200 hover:dark:bg-gray-700",i),children:e?n.jsx("img",{className:"object-cover rounded-full w-10 h-10 bg-gray-100 dark:bg-gray-800",src:e,alt:t}):n.jsx("span",{className:"py-1.5 text-lg font-medium text-gray-900 dark:text-white rounded-full w-10 h-10 bg-gray-100 dark:bg-gray-800",children:c})}),Mt=f.forwardRef(HH);function ga({children:e,style:t,onClick:c,className:i}){const a=f.useCallback(l=>{(l.key==="Enter"||l.key===" ")&&c?.()},[c]);return n.jsx("div",{onKeyPress:a,role:c?"button":void 0,tabIndex:c?0:void 0,onClick:c,className:E(Rt,c&&he,c&&ec,i),style:t,children:e})}const UH={xs:"max-w-xs",sm:"max-w-sm",md:"max-w-md",lg:"max-w-lg",xl:"max-w-xl","2xl":"max-w-2xl","3xl":"max-w-3xl","4xl":"max-w-4xl","5xl":"max-w-5xl","6xl":"max-w-6xl","7xl":"max-w-7xl"},YH=({children:e,className:t,style:c,maxWidth:i="7xl"},a)=>{const l=i?UH[i]:"";return n.jsx("div",{ref:a,className:E("mx-auto px-3 md:px-4 lg-px-6",l,t),style:c,children:e})},Ot=f.forwardRef(YH);function Lt({children:e,maxWidth:t,fullScreen:c=!1,className:i}){return n.jsx("div",{className:"flex flex-col flex-grow h-full",children:n.jsx(Ot,{className:E("m-auto",i),maxWidth:t,children:e})})}function Gn({size:e="medium",className:t}){let c="";e==="small"?c="w-4 h-4 m-1":e==="medium"?c="w-8 h-8 m-1":c="w-10 h-10 m-1";let i="";return e==="small"?i="border-[3px]":e==="medium"?i="border-4":i="border-[6px]",n.jsx("div",{className:E(c,i,"inline-block animate-spin rounded-full border-solid border-current border-r-transparent align-[-0.125em] motion-reduce:animate-[spin_1.5s_linear_infinite]","text-blue-600 dark:text-blue-400",t),role:"status",children:n.jsx("span",{className:"!absolute !-m-px !h-px !w-px !overflow-hidden !whitespace-nowrap !border-0 !p-0 ![clip:rect(0,0,0,0)]",children:"Loading..."})})}const $H={xs:"max-w-xs min-w-xs w-xs",sm:"max-w-sm min-w-sm w-sm",md:"max-w-md min-w-md w-md",lg:"max-w-lg min-w-lg w-lg",xl:"max-w-xl min-w-xl w-xl","2xl":"max-w-2xl min-w-2xl w-2xl","3xl":"max-w-3xl min-w-3xl w-3xl","4xl":"max-w-4xl min-w-4xl w-4xl","5xl":"max-w-5xl min-w-5xl w-5xl","6xl":"max-w-6xl min-w-6xl w-6xl","7xl":"max-w-7xl min-w-7xl w-7xl",full:"max-w-full min-w-full w-full"},Jo=({open:e,onOpenChange:t,children:c,className:i,fullWidth:a=!0,fullHeight:l,fullScreen:s,scrollable:d=!0,maxWidth:u="lg"})=>{const[A,y]=f.useState(!1);return f.useEffect(()=>{if(e)return y(!0),()=>{};{const h=setTimeout(()=>{y(!1)},250);return()=>clearTimeout(h)}},[e]),n.jsx(Ye.Root,{open:A||e,onOpenChange:t,children:n.jsx(Ye.Portal,{children:n.jsxs("div",{className:"fixed inset-0 z-40",children:[n.jsx(Ye.Overlay,{className:E("fixed inset-0 transition-opacity z-20 ease-in-out duration-200 bg-black bg-opacity-50 dark:bg-opacity-60 backdrop-blur-sm ",A&&e?"opacity-100":"opacity-0","z-20 fixed top-0 left-0 w-full h-full flex justify-center items-center"),style:{pointerEvents:A?"auto":"none"}}),n.jsx(Ye.Content,{className:E("h-full outline-none flex justify-center items-center z-50 opacity-100 transition-all duration-200 ease-in-out"),children:n.jsx("div",{className:E(Ge,"z-30","relative","outline-none focus:outline-none",a&&!s?"w-11/12":void 0,l&&!s?"h-full":void 0,"text-gray-900 dark:text-white","justify-center items-center",s?"h-screen w-screen":"max-h-[90vh] shadow-xl","ease-in-out duration-200",d&&"overflow-y-auto",A&&e?"opacity-100":"opacity-0",u&&!s?$H[u]:void 0,i),children:c})})]})})})};function kn({children:e,position:t="sticky",translucent:c=!0,className:i}){return n.jsx("div",{className:E(ue,"py-3 px-4 border-t flex flex-row items-center justify-end bottom-0 right-0 left-0 text-right z-2 gap-2",t,"bg-white bg-opacity-60 dark:bg-gray-900 dark:bg-opacity-60",c?"backdrop-blur-sm":"",i),children:e})}function Zo({children:e,className:t,fullHeight:c}){return c?n.jsx("div",{className:"flex-grow flex flex-col h-full relative",children:e}):n.jsx("div",{className:E("py-6 px-6 h-full flex-grow",t),children:e})}function jH({accept:e,onFilesAdded:t,onFilesRejected:c,maxSize:i,disabled:a,maxFiles:l,title:s,uploadDescription:d="Drag and drop a file here or click",children:u,preventDropOnDocument:A=!0,size:y}){const{getRootProps:h,getInputProps:I,isDragActive:_,isDragAccept:g,isDragReject:b}=Ro.useDropzone({accept:e,noDragEventsBubbling:!0,maxSize:i,onDrop:t,onDropRejected:c,disabled:a,maxFiles:l,preventDropOnDocument:A});return n.jsxs("div",{...h(),className:E(Je,We,he,"flex gap-2","p-4 box-border relative items-center border-2 border-solid border-transparent outline-none rounded-md duration-200 ease-[cubic-bezier(0.4,0,0.2,1)] focus:border-primary-solid",{"h-44":y==="medium","h-28":y==="small","cursor-pointer":!a,"hover:bg-field-hover dark:hover:bg-field-hover-dark":!_,"transition-colors duration-200 ease-[cubic-bezier(0,0,0.2,1)] border-red-500":b,"transition-colors duration-200 ease-[cubic-bezier(0,0,0.2,1)] border-green-500":g}),children:[n.jsx(j,{variant:"caption",color:"secondary",className:"absolute top-2 left-3.5 cursor-inherit",children:s}),n.jsx("input",{...I()}),u,n.jsx("div",{className:"flex-grow h-28 box-border flex flex-col items-center justify-center text-center",children:n.jsx(j,{align:"center",variant:"label",children:d})})]})}function Ia({children:e,loading:t,disabled:c,onClick:i,startIcon:a,...l}){return n.jsxs(te,{disabled:t||c,onClick:i,component:l.component,...l,children:[t&&n.jsx(Gn,{size:"small"}),!t&&a,e]})}function qH({children:e,style:t,className:c}){return n.jsx("div",{className:E(Ge,c),style:t,children:e})}function Xe({inputRef:e,open:t,name:c,id:i,onOpenChange:a,value:l,onChange:s,onValueChange:d,onMultiValueChange:u,className:A,inputClassName:y,placeholder:h,renderValue:I,renderValues:_,label:g,size:b="medium",includeFocusOutline:p=!0,error:w,disabled:k,padding:v=!0,position:K="item-aligned",endAdornment:m,multiple:C,invisible:B,children:P,...F}){const[D,S]=f.useState(!1);f.useEffect(()=>{S(t??!1)},[t]);const T=f.useCallback(N=>{C?Array.isArray(l)&&l.includes(N)?u?.(l.filter(q=>q!==N)):u?.([...l??[],N]):d?.(N),!C&&s&&s({target:{name:c,value:N}})},[C,s,l,u,d]);return n.jsxs($e.Root,{name:c,value:Array.isArray(l)?void 0:l,defaultOpen:t,open:D,disabled:k,onValueChange:T,onOpenChange:N=>{a?.(N),S(N)},...F,children:[typeof g=="string"?n.jsx(ii,{error:w,children:g}):g,n.jsxs("div",{className:E(b==="small"?"min-h-[42px]":"min-h-[64px]","select-none rounded-md text-sm",B?Ar:Je,k?Re:We,"relative flex items-center",A),children:[n.jsxs($e.Trigger,{ref:e,id:i,className:E("w-full h-full",b==="small"?"h-[42px]":"h-[64px]",v?"px-4 ":"","outlin e-none focus:outline-none","select-none rounded-md text-sm",w?"text-red-500 dark:text-red-600":"focus:text-text-primary dark:focus:text-text-primary-dark",w?"border border-red-500 dark:border-red-600":"",k?"text-gray-600 dark:text-gray-400":"text-gray-800 dark:text-gray-200","relative flex items-center",p?he:"",y),children:[n.jsx($e.Value,{asChild:!0,children:n.jsxs("div",{className:E("flex-grow w-full max-w-full flex flex-row gap-2 items-center","overflow-visible",b==="small"?"h-[42px]":"h-[64px]"),children:[I&&(l&&Array.isArray(l)?l.map((N,q)=>n.jsx("div",{className:"flex items-center gap-1 max-w-full",children:I?I(N,q):N},N)):typeof l=="string"?I?I(l,0):l:h),_&&(!l||Array.isArray(l))?_(l??[]):null,!I&&!_&&l]})}),n.jsx($e.Icon,{className:E("px-2 h-full flex items-center"),children:n.jsx(oo,{size:"small",className:E("transition",t?"rotate-180":"")})})]}),m&&n.jsx("div",{className:E("absolute h-full flex items-center",b==="small"?"right-10":"right-14"),onClick:N=>N.stopPropagation(),children:m})]}),n.jsx($e.Portal,{children:n.jsx($e.Content,{position:K,className:"z-50 overflow-hidden relative border border-gray-200 dark:border-gray-800 bg-white dark:bg-gray-800 p-2 rounded-lg shadow-lg",children:n.jsx($e.Viewport,{children:P})})})]})}function xe({value:e,children:t,disabled:c,className:i}){return n.jsxs($e.Item,{value:e,disabled:c,onClick:a=>{a.preventDefault(),a.stopPropagation()},className:E("w-full","relative relative flex items-center p-2 rounded-md text-sm text-gray-700 dark:text-gray-300",he,"focus:z-10","data-[state=checked]:bg-gray-100 data-[state=checked]:dark:bg-gray-900 focus:bg-gray-100 dark:focus:bg-gray-950","data-[state=checked]:focus:bg-gray-200 data-[state=checked]:dark:focus:bg-gray-950",c?"opacity-50 cursor-not-allowed":"cursor-pointer","[&>*]:w-full","overflow-visible",i),children:[n.jsx($e.ItemText,{children:t}),n.jsx("div",{className:"absolute left-1 data-[state=checked]:block hidden",children:n.jsx(lc,{size:16})})]},e)}function JH({label:e,children:t,className:c}){return n.jsxs(n.Fragment,{children:[n.jsx($e.Group,{className:E("text-xs text-gray-900 dark:text-gray-100 uppercase tracking-wider font-bold mt-6 first:mt-2","px-2 py-2",c),children:e}),t]})}function Qt({onTextSearch:e,placeholder:t="Search",expandable:c=!1,large:i=!1,className:a,autoFocus:l}){const[s,d]=f.useState(""),[u,A]=f.useState(!1),y=f.useDeferredValue(s);f.useEffect(()=>{e(y||void 0)},[y]);const h=f.useCallback(()=>{d(""),e(void 0)},[]);return n.jsxs("div",{className:E("relative",i?"h-14":"h-[42px]","bg-gray-50 dark:bg-gray-800 transition duration-150 ease-in-out border",ue,"rounded"),children:[n.jsx("div",{className:"absolute p-0 px-4 h-full absolute pointer-events-none flex items-center justify-center top-0",children:n.jsx(rc,{className:"text-gray-500"})}),n.jsx("input",{placeholder:t,value:s,onChange:I=>{d(I.target.value)},autoFocus:l,onFocus:()=>A(!0),onBlur:()=>A(!1),className:E("relative flex items-center rounded transition-all bg-transparent outline-none appearance-none border-none","pl-12 h-full text-current ",c?u?"w-[220px]":"w-[180px]":"",he,a)}),s?n.jsx(R,{className:`${i?"mr-2 top-1":"mr-1 top-0"} absolute right-0 z-10`,onClick:h,children:n.jsx(cn,{size:"small"})}):n.jsx("div",{style:{width:26}})]})}const Vt=({children:e,side:t="right",open:c,onOpenChange:i,transparent:a,...l})=>{const[s,d]=f.useState(!1);f.useEffect(()=>{if(c)return d(!0),()=>{};{const A=setTimeout(()=>{d(!1)},250);return()=>clearTimeout(A)}},[c]);const u={top:"-translate-y-full",bottom:"translate-y-full",left:"-translate-x-full",right:"translate-x-full"};return n.jsx(Ye.Root,{open:s||c,onOpenChange:i,children:n.jsxs(Ye.Portal,{children:[n.jsx(Ye.Overlay,{className:E("fixed inset-0 transition-opacity z-20 ease-in-out duration-200 backdrop-blur-sm",a?"bg-white bg-opacity-80":"bg-black bg-opacity-50","dark:bg-black dark:bg-opacity-60",s&&c?"opacity-100":"opacity-0"),style:{pointerEvents:s?"auto":"none"}}),n.jsx(Ye.Content,{...l,className:E("text-gray-900 dark:text-white","fixed transform z-20 transition-all duration-[240ms] ease-in-out","outline-none focus:outline-none",a?"":"shadow-md",t==="top"||t==="bottom"?"w-full":"h-full",t==="left"||t==="top"?"left-0 top-0":"right-0 bottom-0",s&&c?"opacity-100":"opacity-0",!s||!c?u[t]:""),children:e})]})})};function ZH(){return n.jsxs("div",{role:"status",children:[n.jsxs("svg",{"aria-hidden":"true",className:"w-8 h-8 mr-2 text-gray-200 animate-spin dark:text-gray-600 fill-primary",viewBox:"0 0 100 101",fill:"none",xmlns:"http://www.w3.org/2000/svg",children:[n.jsx("path",{d:"M100 50.5908C100 78.2051 77.6142 100.591 50 100.591C22.3858 100.591 0 78.2051 0 50.5908C0 22.9766 22.3858 0.59082 50 0.59082C77.6142 0.59082 100 22.9766 100 50.5908ZM9.08144 50.5908C9.08144 73.1895 27.4013 91.5094 50 91.5094C72.5987 91.5094 90.9186 73.1895 90.9186 50.5908C90.9186 27.9921 72.5987 9.67226 50 9.67226C27.4013 9.67226 9.08144 27.9921 9.08144 50.5908Z",fill:"currentColor"}),n.jsx("path",{d:"M93.9676 39.0409C96.393 38.4038 97.8624 35.9116 97.0079 33.5539C95.2932 28.8227 92.871 24.3692 89.8167 20.348C85.8452 15.1192 80.8826 10.7238 75.2124 7.41289C69.5422 4.10194 63.2754 1.94025 56.7698 1.05124C51.7666 0.367541 46.6976 0.446843 41.7345 1.27873C39.2613 1.69328 37.813 4.19778 38.4501 6.62326C39.0873 9.04874 41.5694 10.4717 44.0505 10.1071C47.8511 9.54855 51.7191 9.52689 55.5402 10.0491C60.8642 10.7766 65.9928 12.5457 70.6331 15.2552C75.2735 17.9648 79.3347 21.5619 82.5849 25.841C84.9175 28.9121 86.7997 32.2913 88.1811 35.8758C89.083 38.2158 91.5421 39.6781 93.9676 39.0409Z",fill:"currentFill"})]}),n.jsx("span",{className:"sr-only",children:"Loading..."})]})}function un({value:e,onChange:t,label:c,type:i="text",multiline:a=!1,invisible:l,rows:s,disabled:d,error:u,endAdornment:A,autoFocus:y,placeholder:h,size:I="medium",className:_,style:g,inputClassName:b,inputStyle:p,inputRef:w,...k}){const v=w??f.useRef(null),[K,m]=f.useState(document.activeElement===v.current),C=e!=null&&e!=="",B=f.useCallback(F=>{F.target.blur(),F.stopPropagation(),setTimeout(()=>{F.target.focus()},0)},[]),P=a?n.jsx(gt,{...k,ref:v,placeholder:h,autoFocus:y,rows:s,value:e??"",onChange:t,style:p,className:E(l?ur:he,"rounded-md resize-none w-full outline-none p-[32px] text-base bg-transparent min-h-[64px] px-3 pt-[28px]",d&&"border border-transparent outline-none opacity-50 text-gray-600 dark:text-gray-500")}):n.jsx("input",{...k,ref:v,onWheel:i==="number"?B:void 0,disabled:d,style:p,className:E("w-full outline-none bg-transparent leading-normal px-3","rounded-md",l?ur:he,d?Re:We,I==="small"?"min-h-[48px]":"min-h-[64px]",c?I==="medium"?"pt-[28px] pb-2":"pt-4 pb-2":"py-2",K?"text-text-primary dark:text-text-primary-dark":"",A?"pr-10":"pr-3",b,d&&"border border-transparent outline-none opacity-50 dark:opacity-50 text-gray-800 dark:text-gray-200"),placeholder:h,autoFocus:y,onFocus:()=>m(!0),onBlur:()=>m(!1),type:i,value:Number.isNaN(e)?"":e??"",onChange:t});return n.jsxs("div",{className:E("rounded-md relative max-w-full",l?Ar:Je,d?Re:We,u?"border border-red-500 dark:border-red-600":"",{"min-h-[48px]":!l&&I==="small","min-h-[64px]":!l&&I==="medium"},_),style:g,children:[c&&n.jsx(mt,{className:E("pointer-events-none absolute",I==="medium"?"top-1":"-top-1",u?"text-red-500 dark:text-red-600":K?"text-primary":"text-text-secondary dark:text-text-secondary-dark",d?"opacity-50":""),shrink:C||K,children:c}),P,A&&n.jsx("div",{className:"flex absolute right-0 top-3 mr-3 ",children:A})]})}function ba({value:e,onValueChange:t,className:c,children:i}){return n.jsx(nr.Root,{value:e,onValueChange:t,children:n.jsx(nr.List,{className:E("flex text-sm font-medium text-center text-gray-800 dark:text-gray-200",c),children:i})})}function Xo({value:e,className:t,children:c,disabled:i}){return n.jsx(nr.Trigger,{value:e,disabled:i,className:E(he,"border-b-2 border-transparent","data-[state=active]:border-secondary",i?"text-gray-400 dark:text-gray-500":E("text-gray-700 dark:text-gray-300","data-[state=active]:text-gray-900 data-[state=active]:dark:text-gray-100","hover:text-gray-800 dark:hover:text-gray-200"),t),children:n.jsx("div",{className:E("uppercase inline-block p-2 px-4 m-2 rounded","hover:bg-gray-100 dark:hover:bg-gray-800"),children:c})})}const XH=({children:e,className:t,style:c})=>n.jsx("table",{className:E("w-full text-left text-gray-800 dark:text-gray-200 rounded-md overflow-x-auto",t),style:c,children:e}),xH=({children:e,className:t})=>n.jsx("tbody",{className:E("bg-white text-sm dark:bg-gray-800 divide-y divide-gray-200 dark:divide-gray-700",t),children:e}),RH=({children:e,className:t})=>n.jsx("thead",{children:n.jsx("tr",{className:E(ue,"text-sm font-medium text-gray-700 dark:text-gray-300","bg-gray-50 border-b dark:bg-gray-900",t),children:e})}),eU=({children:e,className:t,onClick:c,style:i})=>n.jsx("tr",{onClick:c,style:i,className:E("divide-gray-100 dark:divide-gray-800","bg-white dark:bg-gray-950",c?"hover:bg-gray-100 dark:hover:bg-gray-800 cursor-pointer":"",t),children:e}),nU=({children:e,header:t=!1,scope:c="",align:i,className:a,style:l,colspan:s})=>{const d=f.useRef(null),u=t||oU(d.current)==="TableHeader"?"th":"td";return n.jsx(u,{scope:c,colSpan:s,ref:d,style:l,className:E("px-4 py-3 text-clip ",i==="center"?"text-center":i==="right"?"text-right":"text-left",a),children:e})};function oU(e){if(e){const t=Object.keys(e).find(l=>l.startsWith("__reactFiber$")||l.startsWith("__reactInternalInstance$")),c=e[t],i=l=>{let s=l.return;for(;typeof s.type=="string";)s=s.return;return s};let a=i(c);return a=i(a),a?.elementType?.name}}o.AbcIcon=ls,o.AcUnitIcon=ss,o.AccessAlarmIcon=ds,o.AccessAlarmsIcon=us,o.AccessTimeFilledIcon=As,o.AccessTimeIcon=fs,o.AccessibilityIcon=_s,o.AccessibilityNewIcon=ys,o.AccessibleForwardIcon=gs,o.AccessibleIcon=hs,o.AccountBalanceIcon=Is,o.AccountBalanceWalletIcon=bs,o.AccountBoxIcon=ps,o.AccountCircleIcon=ws,o.AccountTreeIcon=ks,o.AdUnitsIcon=ms,o.AdbIcon=vs,o.AddAPhotoIcon=Ks,o.AddAlarmIcon=Cs,o.AddAlertIcon=Ss,o.AddBoxIcon=Bs,o.AddBusinessIcon=Es,o.AddCardIcon=Fs,o.AddChartIcon=Ps,o.AddCircleIcon=Ds,o.AddCircleOutlineIcon=Ns,o.AddCommentIcon=Ts,o.AddHomeIcon=Ms,o.AddHomeWorkIcon=Os,o.AddIcCallIcon=Ls,o.AddIcon=gn,o.AddLinkIcon=tc,o.AddLocationAltIcon=Vs,o.AddLocationIcon=Qs,o.AddModeratorIcon=Ws,o.AddPhotoAlternateIcon=Gs,o.AddReactionIcon=zs,o.AddRoadIcon=Hs,o.AddShoppingCartIcon=Us,o.AddTaskIcon=Ys,o.AddToDriveIcon=$s,o.AddToHomeScreenIcon=js,o.AddToPhotosIcon=qs,o.AddToQueueIcon=Js,o.AdfScannerIcon=Zs,o.AdjustIcon=Xs,o.AdminPanelSettingsIcon=xs,o.AdsClickIcon=Rs,o.AgricultureIcon=ed,o.AirIcon=nd,o.AirlineSeatFlatAngledIcon=rd,o.AirlineSeatFlatIcon=od,o.AirlineSeatIndividualSuiteIcon=td,o.AirlineSeatLegroomExtraIcon=cd,o.AirlineSeatLegroomNormalIcon=id,o.AirlineSeatLegroomReducedIcon=ad,o.AirlineSeatReclineExtraIcon=ld,o.AirlineSeatReclineNormalIcon=sd,o.AirlineStopsIcon=dd,o.AirlinesIcon=ud,o.AirplaneTicketIcon=fd,o.AirplanemodeActiveIcon=Ad,o.AirplanemodeInactiveIcon=_d,o.AirplayIcon=yd,o.AirportShuttleIcon=hd,o.AlarmAddIcon=Id,o.AlarmIcon=gd,o.AlarmOffIcon=bd,o.AlarmOnIcon=pd,o.AlbumIcon=wd,o.Alert=zH,o.AlignHorizontalCenterIcon=kd,o.AlignHorizontalLeftIcon=md,o.AlignHorizontalRightIcon=vd,o.AlignVerticalBottomIcon=Kd,o.AlignVerticalCenterIcon=Cd,o.AlignVerticalTopIcon=Sd,o.AllInboxIcon=Bd,o.AllInclusiveIcon=Ed,o.AllOutIcon=Fd,o.AltRouteIcon=Pd,o.AlternateEmailIcon=Dd,o.AnalyticsIcon=Nd,o.AnchorIcon=Td,o.AndroidIcon=Md,o.AnimationIcon=Od,o.AnnouncementIcon=Ld,o.AodIcon=Qd,o.ApartmentIcon=Vd,o.ApiIcon=Wd,o.AppBlockingIcon=Gd,o.AppRegistrationIcon=zd,o.AppSettingsAltIcon=Hd,o.AppShortcutIcon=Ud,o.ApprovalIcon=Yd,o.AppsIcon=$d,o.AppsOutageIcon=jd,o.ArchitectureIcon=qd,o.ArchiveIcon=Jd,o.AreaChartIcon=Zd,o.ArrayContainer=Pt,o.ArrayContainerItem=Dt,o.ArrayCustomShapedFieldBinding=vi,o.ArrayEnumPreview=Qr,o.ArrayItemOptions=da,o.ArrayOfMapsPreview=Jc,o.ArrayOfReferencesFieldBinding=li,o.ArrayOfReferencesPreview=Xc,o.ArrayOfStorageComponentsPreview=xc,o.ArrayOfStringsPreview=Rc,o.ArrayOneOfPreview=ei,o.ArrayPropertyEnumPreview=Vr,o.ArrayPropertyPreview=Lr,o.ArrowBackIcon=Xd,o.ArrowBackIosIcon=xd,o.ArrowBackIosNewIcon=Rd,o.ArrowCircleDownIcon=eu,o.ArrowCircleLeftIcon=nu,o.ArrowCircleRightIcon=ou,o.ArrowCircleUpIcon=ru,o.ArrowDownwardIcon=tu,o.ArrowDropDownCircleIcon=cu,o.ArrowDropDownIcon=yr,o.ArrowDropUpIcon=iu,o.ArrowForwardIcon=cc,o.ArrowForwardIosIcon=au,o.ArrowLeftIcon=lu,o.ArrowOutwardIcon=su,o.ArrowRightAltIcon=uu,o.ArrowRightIcon=du,o.ArrowUpwardIcon=So,o.ArtTrackIcon=fu,o.ArticleIcon=Au,o.AspectRatioIcon=_u,o.AssessmentIcon=yu,o.AssignmentIcon=ic,o.AssignmentIndIcon=hu,o.AssignmentLateIcon=gu,o.AssignmentReturnIcon=Iu,o.AssignmentReturnedIcon=bu,o.AssignmentTurnedInIcon=pu,o.AssistWalkerIcon=wu,o.AssistantDirectionIcon=mu,o.AssistantIcon=ku,o.AssistantPhotoIcon=vu,o.AssuredWorkloadIcon=Ku,o.AsyncPreviewComponent=$G,o.AtmIcon=Cu,o.AttachEmailIcon=Su,o.AttachFileIcon=Bu,o.AttachMoneyIcon=Eu,o.AttachmentIcon=Fu,o.AttractionsIcon=Pu,o.AttributionIcon=Du,o.AudioFileIcon=Nu,o.AudiotrackIcon=Tu,o.AuthControllerContext=Cr,o.AutoAwesomeIcon=Mu,o.AutoAwesomeMosaicIcon=Ou,o.AutoAwesomeMotionIcon=Lu,o.AutoDeleteIcon=Qu,o.AutoFixHighIcon=Vu,o.AutoFixNormalIcon=Wu,o.AutoFixOffIcon=Gu,o.AutoGraphIcon=zu,o.AutoModeIcon=Hu,o.AutoStoriesIcon=Uu,o.Autocomplete=VH,o.AutocompleteItem=WH,o.AutofpsSelectIcon=Yu,o.AutorenewIcon=$u,o.AvTimerIcon=ju,o.Avatar=Mt,o.BabyChangingStationIcon=qu,o.BackHandIcon=Ju,o.BackpackIcon=Zu,o.BackspaceIcon=Xu,o.BackupIcon=xu,o.BackupTableIcon=Ru,o.BadgeIcon=ef,o.BakeryDiningIcon=nf,o.BalanceIcon=of,o.BalconyIcon=rf,o.BallotIcon=hr,o.BarChartIcon=tf,o.BatchPredictionIcon=cf,o.BathroomIcon=af,o.BathtubIcon=lf,o.Battery0BarIcon=sf,o.Battery1BarIcon=df,o.Battery2BarIcon=uf,o.Battery3BarIcon=ff,o.Battery4BarIcon=Af,o.Battery5BarIcon=_f,o.Battery6BarIcon=yf,o.BatteryAlertIcon=hf,o.BatteryChargingFullIcon=gf,o.BatteryFullIcon=If,o.BatterySaverIcon=bf,o.BatteryStdIcon=pf,o.BatteryUnknownIcon=wf,o.BeachAccessIcon=kf,o.BedIcon=mf,o.BedroomBabyIcon=vf,o.BedroomChildIcon=Kf,o.BedroomParentIcon=Cf,o.BedtimeIcon=Sf,o.BedtimeOffIcon=Bf,o.BeenhereIcon=Ef,o.BentoIcon=Ff,o.BikeScooterIcon=Pf,o.BiotechIcon=Df,o.BlenderIcon=Nf,o.BlindIcon=Tf,o.BlindsClosedIcon=Of,o.BlindsIcon=Mf,o.BlockFieldBinding=ki,o.BlockIcon=Lf,o.BloodtypeIcon=Qf,o.BluetoothAudioIcon=Wf,o.BluetoothConnectedIcon=Gf,o.BluetoothDisabledIcon=zf,o.BluetoothDriveIcon=Hf,o.BluetoothIcon=Vf,o.BluetoothSearchingIcon=Uf,o.BlurCircularIcon=Yf,o.BlurLinearIcon=$f,o.BlurOffIcon=jf,o.BlurOnIcon=qf,o.BoltIcon=Jf,o.BookIcon=Zf,o.BookOnlineIcon=Xf,o.BookmarkAddIcon=Rf,o.BookmarkAddedIcon=eA,o.BookmarkBorderIcon=nA,o.BookmarkIcon=xf,o.BookmarkRemoveIcon=oA,o.BookmarksIcon=rA,o.BooleanPreview=ti,o.BooleanSwitch=Zr,o.BooleanSwitchWithLabel=On,o.BorderAllIcon=tA,o.BorderBottomIcon=cA,o.BorderClearIcon=iA,o.BorderColorIcon=aA,o.BorderHorizontalIcon=lA,o.BorderInnerIcon=sA,o.BorderLeftIcon=dA,o.BorderOuterIcon=uA,o.BorderRightIcon=fA,o.BorderStyleIcon=AA,o.BorderTopIcon=_A,o.BorderVerticalIcon=yA,o.BoyIcon=hA,o.BrandingWatermarkIcon=gA,o.BreadcrumbUpdater=R3,o.BreakfastDiningIcon=IA,o.Brightness1Icon=bA,o.Brightness2Icon=pA,o.Brightness3Icon=wA,o.Brightness4Icon=kA,o.Brightness5Icon=mA,o.Brightness6Icon=vA,o.Brightness7Icon=KA,o.BrightnessAutoIcon=CA,o.BrightnessHighIcon=SA,o.BrightnessLowIcon=BA,o.BrightnessMediumIcon=EA,o.BroadcastOnHomeIcon=FA,o.BroadcastOnPersonalIcon=PA,o.BrokenImageIcon=DA,o.BrowseGalleryIcon=NA,o.BrowserNotSupportedIcon=TA,o.BrowserUpdatedIcon=MA,o.BrunchDiningIcon=OA,o.BrushIcon=LA,o.BubbleChartIcon=QA,o.BugReportIcon=VA,o.BuildCircleIcon=GA,o.BuildIcon=WA,o.BungalowIcon=zA,o.BurstModeIcon=HA,o.BusAlertIcon=UA,o.BusinessCenterIcon=$A,o.BusinessIcon=YA,o.Button=te,o.COLLECTION_PATH_SEPARATOR=Ei,o.CabinIcon=jA,o.CableIcon=qA,o.CachedIcon=JA,o.CakeIcon=ZA,o.CalculateIcon=XA,o.CalendarMonthIcon=ac,o.CalendarTodayIcon=xA,o.CalendarViewDayIcon=RA,o.CalendarViewMonthIcon=e_,o.CalendarViewWeekIcon=n_,o.CallEndIcon=r_,o.CallIcon=o_,o.CallMadeIcon=t_,o.CallMergeIcon=c_,o.CallMissedIcon=i_,o.CallMissedOutgoingIcon=a_,o.CallReceivedIcon=l_,o.CallSplitIcon=s_,o.CallToActionIcon=d_,o.CameraAltIcon=f_,o.CameraEnhanceIcon=A_,o.CameraFrontIcon=__,o.CameraIcon=u_,o.CameraIndoorIcon=y_,o.CameraOutdoorIcon=h_,o.CameraRearIcon=g_,o.CameraRollIcon=I_,o.CameraswitchIcon=b_,o.CampaignIcon=p_,o.CancelIcon=w_,o.CancelPresentationIcon=k_,o.CancelScheduleSendIcon=m_,o.CandlestickChartIcon=v_,o.CarCrashIcon=K_,o.CarRentalIcon=C_,o.CarRepairIcon=S_,o.Card=ga,o.CardGiftcardIcon=B_,o.CardMembershipIcon=E_,o.CardTravelIcon=F_,o.CarpenterIcon=P_,o.CasesIcon=D_,o.CasinoIcon=N_,o.CastConnectedIcon=M_,o.CastForEducationIcon=O_,o.CastIcon=T_,o.CastleIcon=L_,o.CatchingPokemonIcon=Q_,o.CategoryIcon=V_,o.CelebrationIcon=W_,o.CellTowerIcon=G_,o.CellWifiIcon=z_,o.CenterFocusStrongIcon=H_,o.CenterFocusWeakIcon=U_,o.CenteredView=Lt,o.ChairAltIcon=$_,o.ChairIcon=Y_,o.ChaletIcon=j_,o.ChangeCircleIcon=q_,o.ChangeHistoryIcon=J_,o.ChargingStationIcon=Z_,o.ChatBubbleIcon=x_,o.ChatBubbleOutlineIcon=R_,o.ChatIcon=X_,o.CheckBoxIcon=ey,o.CheckBoxOutlineBlankIcon=ny,o.CheckCircleIcon=oy,o.CheckCircleOutlineIcon=ry,o.CheckIcon=lc,o.Checkbox=Gr,o.ChecklistIcon=ty,o.ChecklistRtlIcon=cy,o.CheckroomIcon=iy,o.ChevronLeftIcon=sc,o.ChevronRightIcon=ay,o.ChildCareIcon=ly,o.ChildFriendlyIcon=sy,o.Chip=Fo,o.ChromeReaderModeIcon=dy,o.ChurchIcon=uy,o.CircleIcon=gr,o.CircleNotificationsIcon=fy,o.CircularProgress=Gn,o.CircularProgressCenter=fo,o.ClassIcon=Ay,o.CleanHandsIcon=_y,o.CleaningServicesIcon=yy,o.ClearAllIcon=hy,o.ClearIcon=cn,o.CloseFullscreenIcon=gy,o.CloseIcon=Ir,o.ClosedCaptionDisabledIcon=by,o.ClosedCaptionIcon=Iy,o.ClosedCaptionOffIcon=py,o.CloudCircleIcon=ky,o.CloudDoneIcon=my,o.CloudDownloadIcon=vy,o.CloudIcon=wy,o.CloudOffIcon=Ky,o.CloudQueueIcon=Cy,o.CloudSyncIcon=Sy,o.CloudUploadIcon=By,o.Co2Icon=Ey,o.CoPresentIcon=Fy,o.CodeIcon=Py,o.CodeOffIcon=Dy,o.CoffeeIcon=Ny,o.CoffeeMakerIcon=Ty,o.Collapse=To,o.CollectionsBookmarkIcon=Oy,o.CollectionsIcon=My,o.ColorLensIcon=Ly,o.ColorizeIcon=Qy,o.CommentBankIcon=Wy,o.CommentIcon=Vy,o.CommentsDisabledIcon=Gy,o.CommitIcon=zy,o.CommuteIcon=Hy,o.CompareArrowsIcon=Yy,o.CompareIcon=Uy,o.CompassCalibrationIcon=$y,o.CompostIcon=jy,o.CompressIcon=qy,o.ComputerIcon=Jy,o.ConfirmationNumberIcon=Zy,o.ConnectWithoutContactIcon=Xy,o.ConnectedTvIcon=xy,o.ConnectingAirportsIcon=Ry,o.ConstructionIcon=eh,o.ContactEmergencyIcon=nh,o.ContactMailIcon=oh,o.ContactPageIcon=rh,o.ContactPhoneIcon=th,o.ContactSupportIcon=ch,o.ContactlessIcon=ih,o.ContactsIcon=ah,o.Container=Ot,o.ContentCopyIcon=no,o.ContentCutIcon=lh,o.ContentPasteGoIcon=dh,o.ContentPasteIcon=sh,o.ContentPasteOffIcon=uh,o.ContentPasteSearchIcon=fh,o.ContrastIcon=Ah,o.ControlCameraIcon=_h,o.ControlPointDuplicateIcon=hh,o.ControlPointIcon=yh,o.CookieIcon=gh,o.CopyAllIcon=Ih,o.CopyrightIcon=bh,o.CoronavirusIcon=ph,o.CorporateFareIcon=wh,o.CottageIcon=kh,o.CountertopsIcon=mh,o.CreateIcon=vh,o.CreateNewFolderIcon=Kh,o.CreditCardIcon=Ch,o.CreditCardOffIcon=Sh,o.CreditScoreIcon=Bh,o.CribIcon=Eh,o.CrisisAlertIcon=Fh,o.Crop169Icon=Dh,o.Crop32Icon=Nh,o.Crop54Icon=Th,o.Crop75Icon=Mh,o.CropDinIcon=Oh,o.CropFreeIcon=Lh,o.CropIcon=Ph,o.CropLandscapeIcon=Qh,o.CropOriginalIcon=Vh,o.CropPortraitIcon=Wh,o.CropRotateIcon=Gh,o.CropSquareIcon=zh,o.CrueltyFreeIcon=Hh,o.CssIcon=Uh,o.CurrencyBitcoinIcon=Yh,o.CurrencyExchangeIcon=$h,o.CurrencyFrancIcon=jh,o.CurrencyLiraIcon=qh,o.CurrencyPoundIcon=Jh,o.CurrencyRubleIcon=Zh,o.CurrencyRupeeIcon=Xh,o.CurrencyYenIcon=xh,o.CurrencyYuanIcon=Rh,o.CurtainsClosedIcon=ng,o.CurtainsIcon=eg,o.CycloneIcon=og,o.DEFAULT_FIELD_CONFIGS=lt,o.DangerousIcon=rg,o.DarkModeIcon=dc,o.DashboardCustomizeIcon=cg,o.DashboardIcon=tg,o.DataArrayIcon=ig,o.DataExplorationIcon=ag,o.DataObjectIcon=lg,o.DataSaverOffIcon=sg,o.DataSaverOnIcon=dg,o.DataThresholdingIcon=ug,o.DataUsageIcon=fg,o.DatasetIcon=Ag,o.DatasetLinkedIcon=_g,o.DatePreview=ri,o.DateRangeIcon=yg,o.DateTimeField=Vn,o.DateTimeFieldBinding=gi,o.DeblurIcon=hg,o.DebouncedTextField=nl,o.DeckIcon=gg,o.DefaultHomePage=ia,o.DehazeIcon=Ig,o.DeleteConfirmationDialog=eH,o.DeleteForeverIcon=bg,o.DeleteIcon=Bo,o.DeleteOutlineIcon=pg,o.DeleteSweepIcon=wg,o.DeliveryDiningIcon=kg,o.DensityLargeIcon=mg,o.DensityMediumIcon=vg,o.DensitySmallIcon=Kg,o.DepartureBoardIcon=Cg,o.DescriptionIcon=uc,o.DeselectIcon=Sg,o.DesignServicesIcon=Bg,o.DeskIcon=Eg,o.DesktopAccessDisabledIcon=Fg,o.DesktopMacIcon=Pg,o.DesktopWindowsIcon=Dg,o.DetailsIcon=Ng,o.DeveloperBoardIcon=Tg,o.DeveloperBoardOffIcon=Mg,o.DeveloperModeIcon=Og,o.DeviceHubIcon=Lg,o.DeviceThermostatIcon=Qg,o.DeviceUnknownIcon=Vg,o.DevicesFoldIcon=Gg,o.DevicesIcon=Wg,o.DevicesOtherIcon=zg,o.DialerSipIcon=Hg,o.Dialog=Jo,o.DialogActions=kn,o.DialogContent=Zo,o.DialpadIcon=Ug,o.DiamondIcon=Yg,o.DifferenceIcon=$g,o.DiningIcon=jg,o.DinnerDiningIcon=qg,o.DirectionsBikeIcon=Zg,o.DirectionsBoatFilledIcon=xg,o.DirectionsBoatIcon=Xg,o.DirectionsBusFilledIcon=eI,o.DirectionsBusIcon=Rg,o.DirectionsCarFilledIcon=oI,o.DirectionsCarIcon=nI,o.DirectionsIcon=Jg,o.DirectionsOffIcon=rI,o.DirectionsRailwayFilledIcon=cI,o.DirectionsRailwayIcon=tI,o.DirectionsRunIcon=iI,o.DirectionsSubwayFilledIcon=lI,o.DirectionsSubwayIcon=aI,o.DirectionsTransitFilledIcon=dI,o.DirectionsTransitIcon=sI,o.DirectionsWalkIcon=uI,o.DirtyLensIcon=fI,o.DisabledByDefaultIcon=AI,o.DisabledVisibleIcon=_I,o.DiscFullIcon=yI,o.DiscountIcon=hI,o.DisplaySettingsIcon=gI,o.Diversity1Icon=II,o.Diversity2Icon=bI,o.Diversity3Icon=pI,o.DnsIcon=wI,o.DoDisturbAltIcon=mI,o.DoDisturbIcon=kI,o.DoDisturbOffIcon=vI,o.DoDisturbOnIcon=KI,o.DoNotDisturbAltIcon=SI,o.DoNotDisturbIcon=CI,o.DoNotDisturbOffIcon=BI,o.DoNotDisturbOnIcon=EI,o.DoNotDisturbOnTotalSilenceIcon=FI,o.DoNotStepIcon=PI,o.DoNotTouchIcon=DI,o.DockIcon=NI,o.DocumentScannerIcon=TI,o.DomainAddIcon=OI,o.DomainDisabledIcon=LI,o.DomainIcon=MI,o.DomainVerificationIcon=QI,o.DoneAllIcon=WI,o.DoneIcon=VI,o.DoneOutlineIcon=GI,o.DonutLargeIcon=zI,o.DonutSmallIcon=HI,o.DoorBackIcon=UI,o.DoorFrontIcon=YI,o.DoorSlidingIcon=$I,o.DoorbellIcon=jI,o.DoubleArrowIcon=qI,o.DownhillSkiingIcon=JI,o.DownloadDoneIcon=XI,o.DownloadForOfflineIcon=xI,o.DownloadIcon=ZI,o.DownloadingIcon=RI,o.DraftsIcon=eb,o.DragHandleIcon=nb,o.DragIndicatorIcon=ob,o.DrawIcon=rb,o.Drawer=ya,o.DrawerNavigationItem=Tt,o.DriveEtaIcon=tb,o.DriveFileMoveIcon=cb,o.DriveFileMoveRtlIcon=ib,o.DriveFileRenameOutlineIcon=ab,o.DriveFolderUploadIcon=fc,o.DryCleaningIcon=sb,o.DryIcon=lb,o.DuoIcon=db,o.DvrIcon=ub,o.DynamicFeedIcon=fb,o.DynamicFormIcon=Ab,o.EMobiledataIcon=_b,o.EarbudsBatteryIcon=hb,o.EarbudsIcon=yb,o.EastIcon=gb,o.EdgesensorHighIcon=Ib,o.EdgesensorLowIcon=bb,o.EditAttributesIcon=pb,o.EditCalendarIcon=wb,o.EditIcon=Ac,o.EditLocationAltIcon=mb,o.EditLocationIcon=kb,o.EditNoteIcon=vb,o.EditNotificationsIcon=Kb,o.EditOffIcon=Cb,o.EditRoadIcon=Sb,o.EggAltIcon=Eb,o.EggIcon=Bb,o.EjectIcon=Fb,o.ElderlyIcon=Pb,o.ElderlyWomanIcon=Db,o.ElectricBikeIcon=Nb,o.ElectricBoltIcon=Tb,o.ElectricCarIcon=Mb,o.ElectricMeterIcon=Ob,o.ElectricMopedIcon=Lb,o.ElectricRickshawIcon=Qb,o.ElectricScooterIcon=Vb,o.ElectricalServicesIcon=Wb,o.ElevatorIcon=Gb,o.EmailIcon=_c,o.EmergencyIcon=zb,o.EmergencyRecordingIcon=Hb,o.EmergencyShareIcon=Ub,o.EmojiEmotionsIcon=Yb,o.EmojiEventsIcon=$b,o.EmojiFoodBeverageIcon=jb,o.EmojiNatureIcon=qb,o.EmojiObjectsIcon=Jb,o.EmojiPeopleIcon=Zb,o.EmojiSymbolsIcon=Xb,o.EmojiTransportationIcon=xb,o.EmptyValue=Fn,o.EnergySavingsLeafIcon=Rb,o.EngineeringIcon=ep,o.EnhancedEncryptionIcon=np,o.EntityCollectionTable=Kt,o.EntityCollectionView=St,o.EntityForm=Si,o.EntityPreview=yt,o.EntityReference=je,o.EnumValuesChip=Ee,o.EqualizerIcon=op,o.ErrorBoundary=ie,o.ErrorIcon=br,o.ErrorOutlineIcon=yc,o.ErrorView=we,o.EscalatorIcon=rp,o.EscalatorWarningIcon=tp,o.EuroIcon=cp,o.EuroSymbolIcon=ip,o.EvStationIcon=ap,o.EventAvailableIcon=sp,o.EventBusyIcon=dp,o.EventIcon=lp,o.EventNoteIcon=up,o.EventRepeatIcon=fp,o.EventSeatIcon=Ap,o.ExitToAppIcon=_p,o.ExpandCircleDownIcon=hp,o.ExpandIcon=yp,o.ExpandLessIcon=gp,o.ExpandMoreIcon=oo,o.ExpandablePanel=dn,o.ExplicitIcon=Ip,o.ExploreIcon=bp,o.ExploreOffIcon=pp,o.ExposureIcon=wp,o.ExposureNeg1Icon=kp,o.ExposureNeg2Icon=mp,o.ExposurePlus1Icon=vp,o.ExposurePlus2Icon=Kp,o.ExposureZeroIcon=Cp,o.ExtensionIcon=Sp,o.ExtensionOffIcon=Bp,o.Face2Icon=Fp,o.Face3Icon=Pp,o.Face4Icon=Dp,o.Face5Icon=Np,o.Face6Icon=Tp,o.FaceIcon=Ep,o.FaceRetouchingNaturalIcon=Mp,o.FaceRetouchingOffIcon=Op,o.FactCheckIcon=Lp,o.FactoryIcon=Qp,o.FamilyRestroomIcon=Vp,o.FastForwardIcon=Wp,o.FastRewindIcon=Gp,o.FastfoodIcon=zp,o.FavoriteBorderIcon=Up,o.FavoriteIcon=Hp,o.FaxIcon=Yp,o.FeaturedPlayListIcon=$p,o.FeaturedVideoIcon=jp,o.FeedIcon=qp,o.FeedbackIcon=Jp,o.FemaleIcon=Zp,o.FenceIcon=Xp,o.FestivalIcon=xp,o.FiberDvrIcon=Rp,o.FiberManualRecordIcon=ew,o.FiberNewIcon=nw,o.FiberPinIcon=ow,o.FiberSmartRecordIcon=rw,o.FieldConfigBadge=x3,o.FieldHelperText=Se,o.FileCopyIcon=hc,o.FileDownloadDoneIcon=cw,o.FileDownloadIcon=tw,o.FileDownloadOffIcon=iw,o.FileOpenIcon=aw,o.FilePresentIcon=lw,o.FileUpload=jH,o.FileUploadIcon=sw,o.Filter1Icon=uw,o.Filter2Icon=fw,o.Filter3Icon=Aw,o.Filter4Icon=_w,o.Filter5Icon=yw,o.Filter6Icon=hw,o.Filter7Icon=gw,o.Filter8Icon=Iw,o.Filter9Icon=bw,o.Filter9PlusIcon=pw,o.FilterAltIcon=ww,o.FilterAltOffIcon=kw,o.FilterBAndWIcon=mw,o.FilterCenterFocusIcon=vw,o.FilterDramaIcon=Kw,o.FilterFramesIcon=Cw,o.FilterHdrIcon=Sw,o.FilterIcon=dw,o.FilterListIcon=Bw,o.FilterListOffIcon=gc,o.FilterNoneIcon=Ew,o.FilterTiltShiftIcon=Fw,o.FilterVintageIcon=Pw,o.FindInPageIcon=Dw,o.FindReplaceIcon=Nw,o.FingerprintIcon=Tw,o.FireCMS=bH,o.FireCMSAppBar=sa,o.FireCMSContextInstance=Sr,o.FireCMSLogo=la,o.FireExtinguisherIcon=Mw,o.FireHydrantAltIcon=Ow,o.FireTruckIcon=Lw,o.FireplaceIcon=Qw,o.FirstPageIcon=Vw,o.FitScreenIcon=Ww,o.FitbitIcon=Gw,o.FitnessCenterIcon=zw,o.FlagCircleIcon=Hw,o.FlagIcon=Ic,o.FlakyIcon=Uw,o.FlareIcon=Yw,o.FlashAutoIcon=$w,o.FlashOffIcon=jw,o.FlashOnIcon=qw,o.FlashlightOffIcon=Jw,o.FlashlightOnIcon=Zw,o.FlatwareIcon=Xw,o.FlightClassIcon=Rw,o.FlightIcon=xw,o.FlightLandIcon=ek,o.FlightTakeoffIcon=nk,o.FlipCameraAndroidIcon=rk,o.FlipCameraIosIcon=tk,o.FlipIcon=ok,o.FlipToBackIcon=ck,o.FlipToFrontIcon=ik,o.FloodIcon=ak,o.FluorescentIcon=lk,o.FlutterDashIcon=sk,o.FmdBadIcon=dk,o.FmdGoodIcon=uk,o.FolderCopyIcon=Ak,o.FolderDeleteIcon=_k,o.FolderIcon=fk,o.FolderOffIcon=yk,o.FolderOpenIcon=hk,o.FolderSharedIcon=gk,o.FolderSpecialIcon=Ik,o.FolderZipIcon=bk,o.FollowTheSignsIcon=pk,o.FontDownloadIcon=wk,o.FontDownloadOffIcon=kk,o.FoodBankIcon=mk,o.ForestIcon=vk,o.ForkLeftIcon=Kk,o.ForkRightIcon=Ck,o.FormatAlignCenterIcon=Sk,o.FormatAlignJustifyIcon=Bk,o.FormatAlignLeftIcon=Ek,o.FormatAlignRightIcon=Fk,o.FormatBoldIcon=Pk,o.FormatClearIcon=Dk,o.FormatColorFillIcon=Nk,o.FormatColorResetIcon=Tk,o.FormatColorTextIcon=Mk,o.FormatIndentDecreaseIcon=Ok,o.FormatIndentIncreaseIcon=Lk,o.FormatItalicIcon=Qk,o.FormatLineSpacingIcon=Vk,o.FormatListBulletedIcon=Wk,o.FormatListNumberedIcon=pr,o.FormatListNumberedRtlIcon=Gk,o.FormatOverlineIcon=zk,o.FormatPaintIcon=Hk,o.FormatQuoteIcon=bc,o.FormatShapesIcon=Uk,o.FormatSizeIcon=Yk,o.FormatStrikethroughIcon=$k,o.FormatTextdirectionLToRIcon=jk,o.FormatTextdirectionRToLIcon=qk,o.FormatUnderlinedIcon=Jk,o.FormikArrayContainer=Co,o.FortIcon=Zk,o.ForumIcon=Xk,o.Forward10Icon=Rk,o.Forward30Icon=em,o.Forward5Icon=nm,o.ForwardIcon=xk,o.ForwardToInboxIcon=om,o.FoundationIcon=rm,o.FreeBreakfastIcon=tm,o.FreeCancellationIcon=cm,o.FrontHandIcon=im,o.FullscreenExitIcon=lm,o.FullscreenIcon=am,o.FunctionsIcon=pc,o.GMobiledataIcon=sm,o.GTranslateIcon=dm,o.GamepadIcon=um,o.GamesIcon=fm,o.GarageIcon=Am,o.GasMeterIcon=_m,o.GavelIcon=ym,o.GeneratingTokensIcon=hm,o.GeoPoint=tr,o.GestureIcon=gm,o.GetAppIcon=Im,o.GifBoxIcon=pm,o.GifIcon=bm,o.GirlIcon=wm,o.GitHubIcon=tl,o.GiteIcon=km,o.GolfCourseIcon=mm,o.GppBadIcon=vm,o.GppGoodIcon=Km,o.GppMaybeIcon=Cm,o.GpsFixedIcon=Sm,o.GpsNotFixedIcon=Bm,o.GpsOffIcon=Em,o.GradeIcon=Fm,o.GradientIcon=Pm,o.GradingIcon=Dm,o.GrainIcon=Nm,o.GraphicEqIcon=Tm,o.GrassIcon=Mm,o.Grid3x3Icon=Om,o.Grid4x4Icon=Lm,o.GridGoldenratioIcon=Qm,o.GridOffIcon=Vm,o.GridOnIcon=Wm,o.GridViewIcon=Gm,o.GroupAddIcon=Hm,o.GroupIcon=zm,o.GroupOffIcon=Um,o.GroupRemoveIcon=Ym,o.GroupWorkIcon=$m,o.Groups2Icon=qm,o.Groups3Icon=Jm,o.GroupsIcon=jm,o.HMobiledataIcon=Zm,o.HPlusMobiledataIcon=Xm,o.HailIcon=xm,o.HandshakeIcon=Rm,o.HandymanIcon=ev,o.HardwareIcon=nv,o.HdIcon=ov,o.HdrAutoIcon=rv,o.HdrAutoSelectIcon=tv,o.HdrEnhancedSelectIcon=cv,o.HdrOffIcon=iv,o.HdrOffSelectIcon=av,o.HdrOnIcon=lv,o.HdrOnSelectIcon=sv,o.HdrPlusIcon=dv,o.HdrStrongIcon=uv,o.HdrWeakIcon=fv,o.HeadphonesBatteryIcon=_v,o.HeadphonesIcon=Av,o.HeadsetIcon=yv,o.HeadsetMicIcon=hv,o.HeadsetOffIcon=gv,o.HealingIcon=Iv,o.HealthAndSafetyIcon=bv,o.HearingDisabledIcon=wv,o.HearingIcon=pv,o.HeartBrokenIcon=kv,o.HeatPumpIcon=mv,o.HeightIcon=vv,o.HelpCenterIcon=Cv,o.HelpIcon=Kv,o.HelpOutlineIcon=Sv,o.HevcIcon=Bv,o.HexagonIcon=Ev,o.HideImageIcon=Fv,o.HideSourceIcon=Pv,o.HighQualityIcon=Dv,o.HighlightAltIcon=Tv,o.HighlightIcon=Nv,o.HighlightOffIcon=Mv,o.HikingIcon=Ov,o.HistoryEduIcon=Qv,o.HistoryIcon=Lv,o.HistoryToggleOffIcon=Vv,o.HiveIcon=Wv,o.HlsIcon=Gv,o.HlsOffIcon=zv,o.HolidayVillageIcon=Hv,o.HomeIcon=Uv,o.HomeMaxIcon=Yv,o.HomeMiniIcon=$v,o.HomeRepairServiceIcon=jv,o.HomeWorkIcon=qv,o.HorizontalDistributeIcon=Jv,o.HorizontalRuleIcon=Zv,o.HorizontalSplitIcon=Xv,o.HotTubIcon=xv,o.HotelClassIcon=e0,o.HotelIcon=Rv,o.HourglassBottomIcon=n0,o.HourglassDisabledIcon=o0,o.HourglassEmptyIcon=r0,o.HourglassFullIcon=t0,o.HourglassTopIcon=c0,o.HouseIcon=i0,o.HouseSidingIcon=a0,o.HouseboatIcon=l0,o.HowToRegIcon=s0,o.HowToVoteIcon=d0,o.HtmlIcon=u0,o.HttpIcon=wc,o.HttpsIcon=f0,o.HubIcon=A0,o.HvacIcon=_0,o.IceSkatingIcon=y0,o.IcecreamIcon=h0,o.Icon=r,o.IconButton=R,o.ImageAspectRatioIcon=I0,o.ImageIcon=g0,o.ImageNotSupportedIcon=b0,o.ImagePreview=Yc,o.ImageSearchIcon=p0,o.ImagesearchRollerIcon=w0,o.ImportContactsIcon=k0,o.ImportExportIcon=m0,o.ImportantDevicesIcon=v0,o.InboxIcon=K0,o.IncompleteCircleIcon=C0,o.IndeterminateCheckBoxIcon=S0,o.InfoIcon=kc,o.InfoLabel=oH,o.InputIcon=B0,o.InputLabel=mt,o.InsertChartIcon=E0,o.InsertChartOutlinedIcon=F0,o.InsertCommentIcon=P0,o.InsertDriveFileIcon=D0,o.InsertEmoticonIcon=N0,o.InsertInvitationIcon=T0,o.InsertLinkIcon=M0,o.InsertPageBreakIcon=O0,o.InsertPhotoIcon=L0,o.InsightsIcon=Q0,o.InstallDesktopIcon=V0,o.InstallMobileIcon=W0,o.IntegrationInstructionsIcon=G0,o.InterestsIcon=z0,o.InterpreterModeIcon=H0,o.Inventory2Icon=Y0,o.InventoryIcon=U0,o.InvertColorsIcon=$0,o.InvertColorsOffIcon=j0,o.IosShareIcon=q0,o.IronIcon=J0,o.IsoIcon=Z0,o.JavascriptIcon=X0,o.JoinFullIcon=x0,o.JoinInnerIcon=R0,o.JoinLeftIcon=eK,o.JoinRightIcon=nK,o.KayakingIcon=oK,o.KebabDiningIcon=rK,o.KeyIcon=tK,o.KeyOffIcon=cK,o.KeyValueFieldBinding=pi,o.KeyValuePreview=Wr,o.KeyboardAltIcon=aK,o.KeyboardArrowDownIcon=lK,o.KeyboardArrowLeftIcon=sK,o.KeyboardArrowRightIcon=dK,o.KeyboardArrowUpIcon=uK,o.KeyboardBackspaceIcon=fK,o.KeyboardCapslockIcon=AK,o.KeyboardCommandKeyIcon=_K,o.KeyboardControlKeyIcon=yK,o.KeyboardDoubleArrowDownIcon=hK,o.KeyboardDoubleArrowLeftIcon=gK,o.KeyboardDoubleArrowRightIcon=IK,o.KeyboardDoubleArrowUpIcon=bK,o.KeyboardHideIcon=pK,o.KeyboardIcon=iK,o.KeyboardOptionKeyIcon=wK,o.KeyboardReturnIcon=kK,o.KeyboardTabIcon=Eo,o.KeyboardVoiceIcon=mK,o.KingBedIcon=vK,o.KitchenIcon=KK,o.KitesurfingIcon=CK,o.LabelIcon=SK,o.LabelImportantIcon=BK,o.LabelOffIcon=EK,o.LabelWithIcon=Ce,o.LanIcon=FK,o.LandscapeIcon=PK,o.LandslideIcon=DK,o.LanguageIcon=NK,o.LaptopChromebookIcon=MK,o.LaptopIcon=TK,o.LaptopMacIcon=OK,o.LaptopWindowsIcon=LK,o.LastPageIcon=QK,o.LaunchIcon=VK,o.LayersClearIcon=GK,o.LayersIcon=WK,o.LeaderboardIcon=zK,o.LeakAddIcon=HK,o.LeakRemoveIcon=UK,o.LegendToggleIcon=YK,o.LensBlurIcon=jK,o.LensIcon=$K,o.LibraryAddCheckIcon=JK,o.LibraryAddIcon=qK,o.LibraryBooksIcon=ZK,o.LibraryMusicIcon=XK,o.LightIcon=xK,o.LightModeIcon=mc,o.LightbulbCircleIcon=eC,o.LightbulbIcon=RK,o.LineAxisIcon=nC,o.LineStyleIcon=oC,o.LineWeightIcon=rC,o.LinearScaleIcon=tC,o.LinkIcon=vc,o.LinkOffIcon=cC,o.LinkedCameraIcon=iC,o.LiquorIcon=aC,o.ListAltIcon=Cc,o.ListIcon=Kc,o.LiveHelpIcon=lC,o.LiveTvIcon=sC,o.LivingIcon=dC,o.LoadingButton=Ia,o.LocalActivityIcon=uC,o.LocalAirportIcon=fC,o.LocalAtmIcon=AC,o.LocalBarIcon=_C,o.LocalCafeIcon=yC,o.LocalCarWashIcon=hC,o.LocalConvenienceStoreIcon=gC,o.LocalDiningIcon=IC,o.LocalDrinkIcon=bC,o.LocalFireDepartmentIcon=pC,o.LocalFloristIcon=wC,o.LocalGasStationIcon=kC,o.LocalGroceryStoreIcon=mC,o.LocalHospitalIcon=vC,o.LocalHotelIcon=KC,o.LocalLaundryServiceIcon=CC,o.LocalLibraryIcon=SC,o.LocalMallIcon=BC,o.LocalMoviesIcon=EC,o.LocalOfferIcon=FC,o.LocalParkingIcon=PC,o.LocalPharmacyIcon=DC,o.LocalPhoneIcon=NC,o.LocalPizzaIcon=TC,o.LocalPlayIcon=MC,o.LocalPoliceIcon=OC,o.LocalPostOfficeIcon=LC,o.LocalPrintshopIcon=QC,o.LocalSeeIcon=VC,o.LocalShippingIcon=WC,o.LocalTaxiIcon=GC,o.LocationCityIcon=zC,o.LocationDisabledIcon=HC,o.LocationOffIcon=UC,o.LocationOnIcon=YC,o.LocationSearchingIcon=$C,o.LockClockIcon=qC,o.LockIcon=jC,o.LockOpenIcon=JC,o.LockPersonIcon=ZC,o.LockResetIcon=XC,o.LoginIcon=xC,o.LogoDevIcon=RC,o.LogoutIcon=Sc,o.Looks3Icon=nS,o.Looks4Icon=oS,o.Looks5Icon=rS,o.Looks6Icon=tS,o.LooksIcon=eS,o.LooksOneIcon=cS,o.LooksTwoIcon=iS,o.LoopIcon=aS,o.LoupeIcon=lS,o.LowPriorityIcon=sS,o.LoyaltyIcon=dS,o.LteMobiledataIcon=uS,o.LtePlusMobiledataIcon=fS,o.LuggageIcon=AS,o.LunchDiningIcon=_S,o.LyricsIcon=yS,o.MacroOffIcon=hS,o.MailIcon=gS,o.MailLockIcon=IS,o.MailOutlineIcon=bS,o.MaleIcon=pS,o.Man2Icon=kS,o.Man3Icon=mS,o.Man4Icon=vS,o.ManIcon=wS,o.ManageAccountsIcon=KS,o.ManageHistoryIcon=CS,o.ManageSearchIcon=SS,o.MapFieldBinding=bi,o.MapIcon=BS,o.MapPropertyPreview=ni,o.MapsHomeWorkIcon=ES,o.MapsUgcIcon=FS,o.MarginIcon=PS,o.MarkAsUnreadIcon=DS,o.MarkChatReadIcon=NS,o.MarkChatUnreadIcon=TS,o.MarkEmailReadIcon=MS,o.MarkEmailUnreadIcon=OS,o.MarkUnreadChatAltIcon=LS,o.Markdown=lo,o.MarkdownFieldBinding=mi,o.MarkunreadIcon=QS,o.MarkunreadMailboxIcon=VS,o.MasksIcon=WS,o.MaximizeIcon=GS,o.MediaBluetoothOffIcon=zS,o.MediaBluetoothOnIcon=HS,o.MediationIcon=US,o.MedicalInformationIcon=YS,o.MedicalServicesIcon=$S,o.MedicationIcon=jS,o.MedicationLiquidIcon=qS,o.MeetingRoomIcon=JS,o.MemoryIcon=ZS,o.Menu=Qn,o.MenuBookIcon=XS,o.MenuIcon=wr,o.MenuItem=me,o.MenuOpenIcon=xS,o.MergeIcon=RS,o.MergeTypeIcon=eB,o.MessageIcon=nB,o.MicExternalOffIcon=rB,o.MicExternalOnIcon=tB,o.MicIcon=oB,o.MicNoneIcon=cB,o.MicOffIcon=iB,o.MicrowaveIcon=aB,o.MilitaryTechIcon=lB,o.MinimizeIcon=sB,o.MinorCrashIcon=dB,o.MiscellaneousServicesIcon=uB,o.MissedVideoCallIcon=fB,o.MmsIcon=AB,o.MobileFriendlyIcon=_B,o.MobileOffIcon=yB,o.MobileScreenShareIcon=hB,o.MobiledataOffIcon=gB,o.ModeCommentIcon=bB,o.ModeControllerProvider=Ha,o.ModeEditIcon=pB,o.ModeEditOutlineIcon=wB,o.ModeFanOffIcon=kB,o.ModeIcon=IB,o.ModeNightIcon=mB,o.ModeOfTravelIcon=vB,o.ModeStandbyIcon=KB,o.ModelTrainingIcon=CB,o.MonetizationOnIcon=SB,o.MoneyIcon=BB,o.MoneyOffCsredIcon=FB,o.MoneyOffIcon=EB,o.MonitorHeartIcon=DB,o.MonitorIcon=PB,o.MonitorWeightIcon=NB,o.MonochromePhotosIcon=TB,o.MoodBadIcon=OB,o.MoodIcon=MB,o.MopedIcon=LB,o.MoreHorizIcon=VB,o.MoreIcon=QB,o.MoreTimeIcon=WB,o.MoreVertIcon=kr,o.MosqueIcon=GB,o.MotionPhotosAutoIcon=zB,o.MotionPhotosOffIcon=HB,o.MotionPhotosOnIcon=UB,o.MotionPhotosPauseIcon=YB,o.MotionPhotosPausedIcon=$B,o.MouseIcon=jB,o.MoveDownIcon=qB,o.MoveToInboxIcon=JB,o.MoveUpIcon=ZB,o.MovieCreationIcon=xB,o.MovieFilterIcon=RB,o.MovieIcon=XB,o.MovingIcon=eE,o.MpIcon=nE,o.MultiSelect=Ur,o.MultiSelectBinding=$r,o.MultiSelectContext=Hr,o.MultiSelectItem=Yr,o.MultilineChartIcon=oE,o.MultipleStopIcon=rE,o.MuseumIcon=tE,o.MusicNoteIcon=cE,o.MusicOffIcon=iE,o.MusicVideoIcon=aE,o.MyLocationIcon=lE,o.NatIcon=sE,o.NatureIcon=dE,o.NaturePeopleIcon=uE,o.NavigateBeforeIcon=fE,o.NavigateNextIcon=AE,o.NavigationCollectionCard=ca,o.NavigationGroup=Et,o.NavigationIcon=_E,o.NavigationRoutes=KH,o.NearMeDisabledIcon=hE,o.NearMeIcon=yE,o.NearbyErrorIcon=gE,o.NearbyOffIcon=IE,o.NestCamWiredStandIcon=bE,o.NetworkCellIcon=pE,o.NetworkCheckIcon=wE,o.NetworkLockedIcon=kE,o.NetworkPingIcon=mE,o.NetworkWifi1BarIcon=KE,o.NetworkWifi2BarIcon=CE,o.NetworkWifi3BarIcon=SE,o.NetworkWifiIcon=vE,o.NewLabelIcon=BE,o.NewReleasesIcon=EE,o.NewspaperIcon=FE,o.NextPlanIcon=PE,o.NextWeekIcon=DE,o.NfcIcon=NE,o.NightShelterIcon=TE,o.NightlifeIcon=ME,o.NightlightIcon=OE,o.NightlightRoundIcon=LE,o.NightsStayIcon=QE,o.NoAccountsIcon=VE,o.NoAdultContentIcon=WE,o.NoBackpackIcon=GE,o.NoCellIcon=zE,o.NoCrashIcon=HE,o.NoDrinksIcon=UE,o.NoEncryptionGmailerrorredIcon=$E,o.NoEncryptionIcon=YE,o.NoFlashIcon=jE,o.NoFoodIcon=qE,o.NoLuggageIcon=JE,o.NoMealsIcon=ZE,o.NoMeetingRoomIcon=XE,o.NoPhotographyIcon=xE,o.NoSimIcon=RE,o.NoStrollerIcon=eF,o.NoTransferIcon=nF,o.NoiseAwareIcon=oF,o.NoiseControlOffIcon=rF,o.NordicWalkingIcon=tF,o.NorthEastIcon=iF,o.NorthIcon=cF,o.NorthWestIcon=aF,o.NotAccessibleIcon=lF,o.NotFoundPage=aa,o.NotInterestedIcon=sF,o.NotListedLocationIcon=dF,o.NotStartedIcon=uF,o.NoteAddIcon=AF,o.NoteAltIcon=_F,o.NoteIcon=fF,o.NotesIcon=yF,o.NotificationAddIcon=hF,o.NotificationImportantIcon=gF,o.NotificationsActiveIcon=bF,o.NotificationsIcon=IF,o.NotificationsNoneIcon=pF,o.NotificationsOffIcon=wF,o.NotificationsPausedIcon=kF,o.NumberPropertyPreview=ci,o.NumbersIcon=Bc,o.OfflineBoltIcon=mF,o.OfflinePinIcon=vF,o.OfflineShareIcon=KF,o.OilBarrelIcon=CF,o.OnDeviceTrainingIcon=SF,o.OndemandVideoIcon=BF,o.OnlinePredictionIcon=EF,o.OpacityIcon=FF,o.OpenInBrowserIcon=PF,o.OpenInFullIcon=DF,o.OpenInNewIcon=ro,o.OpenInNewOffIcon=NF,o.OpenWithIcon=TF,o.OtherHousesIcon=MF,o.OutboundIcon=OF,o.OutboxIcon=LF,o.OutdoorGrillIcon=QF,o.OutletIcon=VF,o.OutlinedFlagIcon=WF,o.OutputIcon=GF,o.PaddingIcon=zF,o.PagesIcon=HF,o.PageviewIcon=UF,o.PaidIcon=YF,o.PaletteIcon=$F,o.PanToolAltIcon=qF,o.PanToolIcon=jF,o.PanoramaFishEyeIcon=ZF,o.PanoramaHorizontalIcon=XF,o.PanoramaHorizontalSelectIcon=xF,o.PanoramaIcon=JF,o.PanoramaPhotosphereIcon=RF,o.PanoramaPhotosphereSelectIcon=eP,o.PanoramaVerticalIcon=nP,o.PanoramaVerticalSelectIcon=oP,o.PanoramaWideAngleIcon=rP,o.PanoramaWideAngleSelectIcon=tP,o.Paper=qH,o.ParaglidingIcon=cP,o.ParkIcon=iP,o.PartyModeIcon=aP,o.PasswordIcon=lP,o.PatternIcon=sP,o.PauseCircleFilledIcon=fP,o.PauseCircleIcon=uP,o.PauseCircleOutlineIcon=AP,o.PauseIcon=dP,o.PausePresentationIcon=_P,o.PaymentIcon=yP,o.PaymentsIcon=hP,o.PedalBikeIcon=gP,o.PendingActionsIcon=bP,o.PendingIcon=IP,o.PentagonIcon=pP,o.PeopleAltIcon=kP,o.PeopleIcon=wP,o.PeopleOutlineIcon=mP,o.PercentIcon=vP,o.PermCameraMicIcon=KP,o.PermContactCalendarIcon=CP,o.PermDataSettingIcon=SP,o.PermDeviceInformationIcon=BP,o.PermIdentityIcon=EP,o.PermMediaIcon=FP,o.PermPhoneMsgIcon=PP,o.PermScanWifiIcon=DP,o.Person2Icon=TP,o.Person3Icon=MP,o.Person4Icon=OP,o.PersonAddAlt1Icon=VP,o.PersonAddAltIcon=QP,o.PersonAddDisabledIcon=WP,o.PersonAddIcon=LP,o.PersonIcon=NP,o.PersonOffIcon=GP,o.PersonOutlineIcon=zP,o.PersonPinCircleIcon=UP,o.PersonPinIcon=HP,o.PersonRemoveAlt1Icon=$P,o.PersonRemoveIcon=YP,o.PersonSearchIcon=jP,o.PersonalInjuryIcon=qP,o.PersonalVideoIcon=JP,o.PestControlIcon=ZP,o.PestControlRodentIcon=XP,o.PetsIcon=xP,o.PhishingIcon=RP,o.PhoneAndroidIcon=n1,o.PhoneBluetoothSpeakerIcon=o1,o.PhoneCallbackIcon=r1,o.PhoneDisabledIcon=t1,o.PhoneEnabledIcon=c1,o.PhoneForwardedIcon=i1,o.PhoneIcon=e1,o.PhoneIphoneIcon=a1,o.PhoneLockedIcon=l1,o.PhoneMissedIcon=s1,o.PhonePausedIcon=d1,o.PhonelinkEraseIcon=f1,o.PhonelinkIcon=u1,o.PhonelinkLockIcon=A1,o.PhonelinkOffIcon=_1,o.PhonelinkRingIcon=y1,o.PhonelinkSetupIcon=h1,o.PhotoAlbumIcon=I1,o.PhotoCameraBackIcon=p1,o.PhotoCameraFrontIcon=w1,o.PhotoCameraIcon=b1,o.PhotoFilterIcon=k1,o.PhotoIcon=g1,o.PhotoLibraryIcon=m1,o.PhotoSizeSelectActualIcon=v1,o.PhotoSizeSelectLargeIcon=K1,o.PhotoSizeSelectSmallIcon=C1,o.PhpIcon=S1,o.PianoIcon=B1,o.PianoOffIcon=E1,o.PictureAsPdfIcon=F1,o.PictureInPictureAltIcon=D1,o.PictureInPictureIcon=P1,o.PieChartIcon=N1,o.PieChartOutlineIcon=T1,o.PinDropIcon=O1,o.PinEndIcon=L1,o.PinIcon=M1,o.PinInvokeIcon=Q1,o.PinchIcon=V1,o.PivotTableChartIcon=W1,o.PixIcon=G1,o.PlaceIcon=z1,o.PlagiarismIcon=H1,o.PlayArrowIcon=U1,o.PlayCircleFilledIcon=$1,o.PlayCircleIcon=Y1,o.PlayCircleOutlineIcon=j1,o.PlayDisabledIcon=q1,o.PlayForWorkIcon=J1,o.PlayLessonIcon=Z1,o.PlaylistAddCheckCircleIcon=R1,o.PlaylistAddCheckIcon=x1,o.PlaylistAddCircleIcon=eD,o.PlaylistAddIcon=X1,o.PlaylistPlayIcon=nD,o.PlaylistRemoveIcon=oD,o.PlumbingIcon=rD,o.PlusOneIcon=tD,o.PodcastsIcon=cD,o.PointOfSaleIcon=iD,o.PolicyIcon=aD,o.PollIcon=lD,o.PolylineIcon=sD,o.PolymerIcon=dD,o.PoolIcon=uD,o.PortableWifiOffIcon=fD,o.PortraitIcon=AD,o.PostAddIcon=_D,o.PowerIcon=yD,o.PowerInputIcon=hD,o.PowerOffIcon=gD,o.PowerSettingsNewIcon=ID,o.PrecisionManufacturingIcon=bD,o.PregnantWomanIcon=pD,o.PresentToAllIcon=wD,o.PreviewIcon=kD,o.PriceChangeIcon=mD,o.PriceCheckIcon=vD,o.PrintDisabledIcon=CD,o.PrintIcon=KD,o.PriorityHighIcon=SD,o.PrivacyTipIcon=BD,o.PrivateConnectivityIcon=ED,o.ProductionQuantityLimitsIcon=FD,o.PropaneIcon=PD,o.PropaneTankIcon=DD,o.PropertyFieldBinding=pn,o.PropertyPreview=Be,o.PsychologyAltIcon=TD,o.PsychologyIcon=ND,o.PublicIcon=MD,o.PublicOffIcon=OD,o.PublishIcon=LD,o.PublishedWithChangesIcon=QD,o.PunchClockIcon=VD,o.PushPinIcon=WD,o.QrCode2Icon=zD,o.QrCodeIcon=GD,o.QrCodeScannerIcon=HD,o.QueryBuilderIcon=UD,o.QueryStatsIcon=YD,o.QuestionAnswerIcon=$D,o.QuestionMarkIcon=jD,o.QueueIcon=qD,o.QueueMusicIcon=JD,o.QueuePlayNextIcon=ZD,o.QuickreplyIcon=XD,o.QuizIcon=xD,o.RMobiledataIcon=RD,o.RadarIcon=eN,o.RadioButtonCheckedIcon=oN,o.RadioButtonUncheckedIcon=rN,o.RadioIcon=nN,o.RailwayAlertIcon=tN,o.RamenDiningIcon=cN,o.RampLeftIcon=iN,o.RampRightIcon=aN,o.RateReviewIcon=lN,o.RawOffIcon=sN,o.RawOnIcon=dN,o.ReadMoreIcon=uN,o.ReadOnlyFieldBinding=Xr,o.RealEstateAgentIcon=fN,o.ReceiptIcon=AN,o.ReceiptLongIcon=_N,o.RecentActorsIcon=yN,o.RecommendIcon=hN,o.RecordVoiceOverIcon=gN,o.RectangleIcon=IN,o.RecyclingIcon=bN,o.RedeemIcon=pN,o.RedoIcon=wN,o.ReduceCapacityIcon=kN,o.ReferenceFieldBinding=Ii,o.ReferencePreview=nn,o.ReferencePreviewContainer=Po,o.ReferenceSelectionInner=ta,o.RefreshIcon=mN,o.RememberMeIcon=vN,o.RemoveCircleIcon=Ec,o.RemoveCircleOutlineIcon=KN,o.RemoveDoneIcon=CN,o.RemoveFromQueueIcon=SN,o.RemoveIcon=to,o.RemoveModeratorIcon=BN,o.RemoveRedEyeIcon=EN,o.RemoveRoadIcon=FN,o.RemoveShoppingCartIcon=PN,o.ReorderIcon=DN,o.RepartitionIcon=NN,o.RepeatFieldBinding=wi,o.RepeatIcon=mr,o.RepeatOnIcon=TN,o.RepeatOneIcon=MN,o.RepeatOneOnIcon=ON,o.Replay10Icon=QN,o.Replay30Icon=VN,o.Replay5Icon=WN,o.ReplayCircleFilledIcon=GN,o.ReplayIcon=LN,o.ReplyAllIcon=HN,o.ReplyIcon=zN,o.ReportGmailerrorredIcon=YN,o.ReportIcon=UN,o.ReportOffIcon=$N,o.ReportProblemIcon=jN,o.RequestPageIcon=qN,o.RequestQuoteIcon=JN,o.ResetTvIcon=ZN,o.RestartAltIcon=XN,o.RestaurantIcon=xN,o.RestaurantMenuIcon=RN,o.RestoreFromTrashIcon=nT,o.RestoreIcon=eT,o.RestorePageIcon=oT,o.ReviewsIcon=rT,o.RiceBowlIcon=tT,o.RingVolumeIcon=cT,o.RocketIcon=iT,o.RocketLaunchIcon=aT,o.RollerShadesClosedIcon=sT,o.RollerShadesIcon=lT,o.RollerSkatingIcon=dT,o.RoofingIcon=uT,o.RoomIcon=fT,o.RoomPreferencesIcon=AT,o.RoomServiceIcon=_T,o.Rotate90DegreesCcwIcon=yT,o.Rotate90DegreesCwIcon=hT,o.RotateLeftIcon=gT,o.RotateRightIcon=IT,o.RoundaboutLeftIcon=bT,o.RoundaboutRightIcon=pT,o.RoundedCornerIcon=wT,o.RouteIcon=kT,o.RouteWrapper=qo,o.RouterIcon=mT,o.RowingIcon=vT,o.RssFeedIcon=KT,o.RsvpIcon=CT,o.RttIcon=ST,o.RuleFolderIcon=ET,o.RuleIcon=BT,o.RunCircleIcon=FT,o.RunningWithErrorsIcon=PT,o.RvHookupIcon=DT,o.SafetyCheckIcon=NT,o.SafetyDividerIcon=TT,o.SailingIcon=MT,o.SanitizerIcon=OT,o.SatelliteAltIcon=QT,o.SatelliteIcon=LT,o.SaveAltIcon=WT,o.SaveAsIcon=GT,o.SaveIcon=VT,o.SavedSearchIcon=zT,o.SavingsIcon=HT,o.Scaffold=kH,o.ScaleIcon=UT,o.ScannerIcon=YT,o.ScatterPlotIcon=$T,o.ScheduleIcon=Fc,o.ScheduleSendIcon=jT,o.SchemaIcon=qT,o.SchoolIcon=JT,o.ScienceIcon=ZT,o.ScoreIcon=XT,o.ScoreboardIcon=xT,o.ScreenLockLandscapeIcon=RT,o.ScreenLockPortraitIcon=eM,o.ScreenLockRotationIcon=nM,o.ScreenRotationAltIcon=rM,o.ScreenRotationIcon=oM,o.ScreenSearchDesktopIcon=tM,o.ScreenShareIcon=cM,o.ScreenshotIcon=iM,o.ScreenshotMonitorIcon=aM,o.ScubaDivingIcon=lM,o.SdCardAlertIcon=uM,o.SdCardIcon=dM,o.SdIcon=sM,o.SdStorageIcon=fM,o.SearchBar=Qt,o.SearchIcon=rc,o.SearchOffIcon=AM,o.SecurityIcon=_M,o.SecurityUpdateGoodIcon=hM,o.SecurityUpdateIcon=yM,o.SecurityUpdateWarningIcon=gM,o.SegmentIcon=IM,o.Select=Xe,o.SelectAllIcon=bM,o.SelectFieldBinding=zr,o.SelectGroup=JH,o.SelectItem=xe,o.SelfImprovementIcon=pM,o.SellIcon=wM,o.SendAndArchiveIcon=mM,o.SendIcon=kM,o.SendTimeExtensionIcon=vM,o.SendToMobileIcon=KM,o.SensorDoorIcon=CM,o.SensorOccupiedIcon=SM,o.SensorWindowIcon=BM,o.SensorsIcon=EM,o.SensorsOffIcon=FM,o.SentimentDissatisfiedIcon=PM,o.SentimentNeutralIcon=DM,o.SentimentSatisfiedAltIcon=TM,o.SentimentSatisfiedIcon=NM,o.SentimentVeryDissatisfiedIcon=MM,o.SentimentVerySatisfiedIcon=OM,o.SetMealIcon=LM,o.SettingsAccessibilityIcon=VM,o.SettingsApplicationsIcon=WM,o.SettingsBackupRestoreIcon=GM,o.SettingsBluetoothIcon=zM,o.SettingsBrightnessIcon=HM,o.SettingsCellIcon=UM,o.SettingsEthernetIcon=YM,o.SettingsIcon=QM,o.SettingsInputAntennaIcon=$M,o.SettingsInputComponentIcon=jM,o.SettingsInputCompositeIcon=qM,o.SettingsInputHdmiIcon=JM,o.SettingsInputSvideoIcon=ZM,o.SettingsOverscanIcon=XM,o.SettingsPhoneIcon=xM,o.SettingsPowerIcon=RM,o.SettingsRemoteIcon=e2,o.SettingsSuggestIcon=n2,o.SettingsSystemDaydreamIcon=o2,o.SettingsVoiceIcon=r2,o.SevereColdIcon=t2,o.ShapeLineIcon=c2,o.ShareIcon=i2,o.ShareLocationIcon=a2,o.Sheet=Vt,o.ShieldIcon=l2,o.ShieldMoonIcon=s2,o.Shop2Icon=u2,o.ShopIcon=d2,o.ShopTwoIcon=f2,o.ShoppingBagIcon=A2,o.ShoppingBasketIcon=_2,o.ShoppingCartCheckoutIcon=h2,o.ShoppingCartIcon=y2,o.ShortTextIcon=Pc,o.ShortcutIcon=g2,o.ShowChartIcon=I2,o.ShowerIcon=b2,o.ShuffleIcon=p2,o.ShuffleOnIcon=w2,o.ShutterSpeedIcon=k2,o.SickIcon=m2,o.SideDialogs=L3,o.SignLanguageIcon=v2,o.SignalCellular0BarIcon=K2,o.SignalCellular4BarIcon=C2,o.SignalCellularAlt1BarIcon=B2,o.SignalCellularAlt2BarIcon=E2,o.SignalCellularAltIcon=S2,o.SignalCellularConnectedNoInternet0BarIcon=F2,o.SignalCellularConnectedNoInternet4BarIcon=P2,o.SignalCellularNoSimIcon=D2,o.SignalCellularNodataIcon=N2,o.SignalCellularNullIcon=T2,o.SignalCellularOffIcon=M2,o.SignalWifi0BarIcon=O2,o.SignalWifi4BarIcon=L2,o.SignalWifi4BarLockIcon=Q2,o.SignalWifiBadIcon=V2,o.SignalWifiConnectedNoInternet4Icon=W2,o.SignalWifiOffIcon=G2,o.SignalWifiStatusbar4BarIcon=z2,o.SignalWifiStatusbarConnectedNoInternet4Icon=H2,o.SignalWifiStatusbarNullIcon=U2,o.SignpostIcon=Y2,o.SimCardAlertIcon=j2,o.SimCardDownloadIcon=q2,o.SimCardIcon=$2,o.SingleBedIcon=J2,o.SipIcon=Z2,o.SkateboardingIcon=X2,o.SkeletonPropertyComponent=Nn,o.SkipNextIcon=x2,o.SkipPreviousIcon=R2,o.SleddingIcon=eO,o.SlideshowIcon=nO,o.SlowMotionVideoIcon=oO,o.SmartButtonIcon=rO,o.SmartDisplayIcon=tO,o.SmartScreenIcon=cO,o.SmartToyIcon=iO,o.SmartphoneIcon=aO,o.SmokeFreeIcon=lO,o.SmokingRoomsIcon=sO,o.SmsFailedIcon=uO,o.SmsIcon=dO,o.SnackbarProvider=LH,o.SnippetFolderIcon=fO,o.SnoozeIcon=AO,o.SnowboardingIcon=_O,o.SnowmobileIcon=yO,o.SnowshoeingIcon=hO,o.SoapIcon=gO,o.SocialDistanceIcon=IO,o.SolarPowerIcon=bO,o.SortByAlphaIcon=wO,o.SortIcon=pO,o.SosIcon=kO,o.SoupKitchenIcon=mO,o.SourceIcon=vO,o.SouthAmericaIcon=CO,o.SouthEastIcon=SO,o.SouthIcon=KO,o.SouthWestIcon=BO,o.SpaIcon=EO,o.SpaceBarIcon=FO,o.SpaceDashboardIcon=PO,o.SpatialAudioIcon=DO,o.SpatialAudioOffIcon=NO,o.SpatialTrackingIcon=TO,o.SpeakerGroupIcon=OO,o.SpeakerIcon=MO,o.SpeakerNotesIcon=LO,o.SpeakerNotesOffIcon=QO,o.SpeakerPhoneIcon=VO,o.SpeedIcon=WO,o.SpellcheckIcon=GO,o.Spinner=ZH,o.SplitscreenIcon=zO,o.SpokeIcon=HO,o.SportsBarIcon=YO,o.SportsBaseballIcon=$O,o.SportsBasketballIcon=jO,o.SportsCricketIcon=qO,o.SportsEsportsIcon=JO,o.SportsFootballIcon=ZO,o.SportsGolfIcon=XO,o.SportsGymnasticsIcon=xO,o.SportsHandballIcon=RO,o.SportsHockeyIcon=eL,o.SportsIcon=UO,o.SportsKabaddiIcon=nL,o.SportsMartialArtsIcon=oL,o.SportsMmaIcon=rL,o.SportsMotorsportsIcon=tL,o.SportsRugbyIcon=cL,o.SportsScoreIcon=iL,o.SportsSoccerIcon=aL,o.SportsTennisIcon=lL,o.SportsVolleyballIcon=sL,o.SquareFootIcon=uL,o.SquareIcon=dL,o.SsidChartIcon=fL,o.StackedBarChartIcon=AL,o.StackedLineChartIcon=_L,o.StadiumIcon=yL,o.StairsIcon=hL,o.StarBorderIcon=Kr,o.StarBorderPurple500Icon=gL,o.StarHalfIcon=IL,o.StarIcon=vr,o.StarOutlineIcon=bL,o.StarPurple500Icon=pL,o.StarRateIcon=wL,o.StarsIcon=kL,o.StartIcon=mL,o.StayCurrentLandscapeIcon=vL,o.StayCurrentPortraitIcon=KL,o.StayPrimaryLandscapeIcon=CL,o.StayPrimaryPortraitIcon=SL,o.StickyNote2Icon=BL,o.StopCircleIcon=FL,o.StopIcon=EL,o.StopScreenShareIcon=PL,o.StorageIcon=DL,o.StorageThumbnail=$c,o.StorageThumbnailInternal=qc,o.StorageUploadFieldBinding=Jr,o.StoreIcon=NL,o.StoreMallDirectoryIcon=TL,o.StorefrontIcon=ML,o.StormIcon=OL,o.StraightIcon=LL,o.StraightenIcon=QL,o.StreamIcon=VL,o.StreetviewIcon=WL,o.StrikethroughSIcon=GL,o.StringPropertyPreview=Or,o.StrollerIcon=zL,o.StyleIcon=HL,o.SubdirectoryArrowLeftIcon=UL,o.SubdirectoryArrowRightIcon=YL,o.SubjectIcon=Dc,o.SubscriptIcon=$L,o.SubscriptionsIcon=jL,o.SubtitlesIcon=qL,o.SubtitlesOffIcon=JL,o.SubwayIcon=ZL,o.SummarizeIcon=XL,o.SuperscriptIcon=xL,o.SupervisedUserCircleIcon=RL,o.SupervisorAccountIcon=e4,o.SupportAgentIcon=o4,o.SupportIcon=n4,o.SurfingIcon=r4,o.SurroundSoundIcon=t4,o.SwapCallsIcon=c4,o.SwapHorizIcon=i4,o.SwapHorizontalCircleIcon=a4,o.SwapVertIcon=l4,o.SwapVerticalCircleIcon=s4,o.SwipeDownAltIcon=f4,o.SwipeDownIcon=u4,o.SwipeIcon=d4,o.SwipeLeftAltIcon=_4,o.SwipeLeftIcon=A4,o.SwipeRightAltIcon=h4,o.SwipeRightIcon=y4,o.SwipeUpAltIcon=I4,o.SwipeUpIcon=g4,o.SwipeVerticalIcon=b4,o.SwitchAccessShortcutAddIcon=w4,o.SwitchAccessShortcutIcon=p4,o.SwitchAccountIcon=k4,o.SwitchCameraIcon=m4,o.SwitchControl=ol,o.SwitchFieldBinding=hi,o.SwitchLeftIcon=v4,o.SwitchRightIcon=K4,o.SwitchVideoIcon=C4,o.SynagogueIcon=S4,o.SyncAltIcon=E4,o.SyncDisabledIcon=F4,o.SyncIcon=B4,o.SyncLockIcon=P4,o.SyncProblemIcon=D4,o.SystemSecurityUpdateGoodIcon=T4,o.SystemSecurityUpdateIcon=N4,o.SystemSecurityUpdateWarningIcon=M4,o.SystemUpdateAltIcon=L4,o.SystemUpdateIcon=O4,o.Tab=Xo,o.TabIcon=Q4,o.TabUnselectedIcon=V4,o.Table=XH,o.TableBarIcon=W4,o.TableBody=xH,o.TableCell=nU,o.TableChartIcon=G4,o.TableHeader=RH,o.TableRestaurantIcon=z4,o.TableRow=eU,o.TableRowsIcon=H4,o.TableViewIcon=U4,o.TabletAndroidIcon=$4,o.TabletIcon=Y4,o.TabletMacIcon=j4,o.Tabs=ba,o.TagFacesIcon=J4,o.TagIcon=q4,o.TakeoutDiningIcon=Z4,o.TapAndPlayIcon=X4,o.TapasIcon=x4,o.TaskAltIcon=eQ,o.TaskIcon=R4,o.TaxiAlertIcon=nQ,o.TempleBuddhistIcon=oQ,o.TempleHinduIcon=rQ,o.TerminalIcon=tQ,o.TerrainIcon=cQ,o.TextDecreaseIcon=iQ,o.TextField=un,o.TextFieldBinding=Mn,o.TextFieldsIcon=aQ,o.TextFormatIcon=lQ,o.TextIncreaseIcon=sQ,o.TextRotateUpIcon=dQ,o.TextRotateVerticalIcon=uQ,o.TextRotationAngledownIcon=fQ,o.TextRotationAngleupIcon=AQ,o.TextRotationDownIcon=_Q,o.TextRotationNoneIcon=yQ,o.TextSnippetIcon=hQ,o.TextareaAutosize=gt,o.TextsmsIcon=gQ,o.TextureIcon=IQ,o.TheaterComedyIcon=bQ,o.TheatersIcon=pQ,o.ThermostatAutoIcon=kQ,o.ThermostatIcon=wQ,o.ThumbDownAltIcon=vQ,o.ThumbDownIcon=mQ,o.ThumbDownOffAltIcon=KQ,o.ThumbUpAltIcon=SQ,o.ThumbUpIcon=CQ,o.ThumbUpOffAltIcon=BQ,o.ThumbsUpDownIcon=EQ,o.ThunderstormIcon=FQ,o.TimeToLeaveIcon=PQ,o.TimelapseIcon=DQ,o.TimelineIcon=NQ,o.Timer10Icon=MQ,o.Timer10SelectIcon=OQ,o.Timer3Icon=LQ,o.Timer3SelectIcon=QQ,o.TimerIcon=TQ,o.TimerOffIcon=VQ,o.TipsAndUpdatesIcon=WQ,o.TireRepairIcon=GQ,o.TitleIcon=zQ,o.TocIcon=HQ,o.TodayIcon=UQ,o.ToggleOffIcon=YQ,o.ToggleOnIcon=$Q,o.TokenIcon=jQ,o.TollIcon=qQ,o.TonalityIcon=JQ,o.Tooltip=_e,o.TopicIcon=ZQ,o.TornadoIcon=XQ,o.TouchAppIcon=xQ,o.TourIcon=RQ,o.ToysIcon=eV,o.TrackChangesIcon=nV,o.TrafficIcon=oV,o.TrainIcon=rV,o.TramIcon=tV,o.TranscribeIcon=cV,o.TransferWithinAStationIcon=iV,o.TransformIcon=aV,o.TransgenderIcon=lV,o.TransitEnterexitIcon=sV,o.TranslateIcon=dV,o.TravelExploreIcon=uV,o.TrendingDownIcon=fV,o.TrendingFlatIcon=AV,o.TrendingUpIcon=_V,o.TripOriginIcon=yV,o.TroubleshootIcon=hV,o.TryIcon=gV,o.TsunamiIcon=IV,o.TtyIcon=bV,o.TuneIcon=pV,o.TungstenIcon=wV,o.TurnLeftIcon=kV,o.TurnRightIcon=mV,o.TurnSharpLeftIcon=vV,o.TurnSharpRightIcon=KV,o.TurnSlightLeftIcon=CV,o.TurnSlightRightIcon=SV,o.TurnedInIcon=BV,o.TurnedInNotIcon=EV,o.TvIcon=FV,o.TvOffIcon=PV,o.TwoWheelerIcon=DV,o.TypeSpecimenIcon=NV,o.Typography=j,o.UTurnLeftIcon=TV,o.UTurnRightIcon=MV,o.UmbrellaIcon=OV,o.UnarchiveIcon=LV,o.UndoIcon=QV,o.UnfoldLessDoubleIcon=WV,o.UnfoldLessIcon=VV,o.UnfoldMoreDoubleIcon=zV,o.UnfoldMoreIcon=GV,o.UnpublishedIcon=HV,o.UnsubscribeIcon=UV,o.UpcomingIcon=YV,o.UpdateDisabledIcon=jV,o.UpdateIcon=$V,o.UpgradeIcon=qV,o.UploadFileIcon=Nc,o.UploadIcon=JV,o.UrlComponentPreview=ao,o.UsbIcon=ZV,o.UsbOffIcon=XV,o.VaccinesIcon=xV,o.VapeFreeIcon=RV,o.VapingRoomsIcon=e5,o.VerifiedIcon=n5,o.VerifiedUserIcon=o5,o.VerticalAlignBottomIcon=r5,o.VerticalAlignCenterIcon=t5,o.VerticalAlignTopIcon=c5,o.VerticalDistributeIcon=i5,o.VerticalShadesClosedIcon=l5,o.VerticalShadesIcon=a5,o.VerticalSplitIcon=s5,o.VibrationIcon=d5,o.VideoCallIcon=u5,o.VideoCameraBackIcon=f5,o.VideoCameraFrontIcon=A5,o.VideoChatIcon=_5,o.VideoFileIcon=y5,o.VideoLabelIcon=h5,o.VideoLibraryIcon=g5,o.VideoSettingsIcon=I5,o.VideoStableIcon=b5,o.VideocamIcon=p5,o.VideocamOffIcon=w5,o.VideogameAssetIcon=k5,o.VideogameAssetOffIcon=m5,o.ViewAgendaIcon=v5,o.ViewArrayIcon=K5,o.ViewCarouselIcon=C5,o.ViewColumnIcon=S5,o.ViewComfyAltIcon=E5,o.ViewComfyIcon=B5,o.ViewCompactAltIcon=P5,o.ViewCompactIcon=F5,o.ViewCozyIcon=D5,o.ViewDayIcon=N5,o.ViewHeadlineIcon=T5,o.ViewInArIcon=M5,o.ViewKanbanIcon=O5,o.ViewListIcon=L5,o.ViewModuleIcon=Q5,o.ViewQuiltIcon=V5,o.ViewSidebarIcon=W5,o.ViewStreamIcon=Tc,o.ViewTimelineIcon=G5,o.ViewWeekIcon=z5,o.VignetteIcon=H5,o.VillaIcon=U5,o.VirtualTable=$i,o.VisibilityIcon=Y5,o.VisibilityOffIcon=$5,o.VoiceChatIcon=j5,o.VoiceOverOffIcon=q5,o.VoicemailIcon=J5,o.VolcanoIcon=Z5,o.VolumeDownIcon=X5,o.VolumeMuteIcon=x5,o.VolumeOffIcon=R5,o.VolumeUpIcon=eW,o.VolunteerActivismIcon=nW,o.VpnKeyIcon=oW,o.VpnKeyOffIcon=rW,o.VpnLockIcon=tW,o.VrpanoIcon=cW,o.WalletIcon=iW,o.WallpaperIcon=aW,o.WarehouseIcon=lW,o.WarningAmberIcon=dW,o.WarningIcon=sW,o.WashIcon=uW,o.WatchIcon=fW,o.WatchLaterIcon=AW,o.WatchOffIcon=_W,o.WaterDamageIcon=hW,o.WaterDropIcon=gW,o.WaterIcon=yW,o.WaterfallChartIcon=IW,o.WavesIcon=bW,o.WavingHandIcon=pW,o.WbAutoIcon=wW,o.WbCloudyIcon=kW,o.WbIncandescentIcon=mW,o.WbIridescentIcon=vW,o.WbShadeIcon=KW,o.WbSunnyIcon=CW,o.WbTwilightIcon=SW,o.WcIcon=BW,o.WebAssetIcon=FW,o.WebAssetOffIcon=PW,o.WebIcon=EW,o.WebStoriesIcon=DW,o.WebhookIcon=NW,o.WeekendIcon=TW,o.WestIcon=MW,o.WhatshotIcon=OW,o.WheelchairPickupIcon=LW,o.WhereToVoteIcon=QW,o.WidgetsIcon=VW,o.WidthFullIcon=WW,o.WidthNormalIcon=GW,o.WidthWideIcon=zW,o.Wifi1BarIcon=UW,o.Wifi2BarIcon=YW,o.WifiCalling3Icon=jW,o.WifiCallingIcon=$W,o.WifiChannelIcon=qW,o.WifiFindIcon=JW,o.WifiIcon=HW,o.WifiLockIcon=ZW,o.WifiOffIcon=XW,o.WifiPasswordIcon=xW,o.WifiProtectedSetupIcon=RW,o.WifiTetheringErrorIcon=nG,o.WifiTetheringIcon=eG,o.WifiTetheringOffIcon=oG,o.WindPowerIcon=rG,o.WindowIcon=tG,o.WineBarIcon=cG,o.Woman2Icon=aG,o.WomanIcon=iG,o.WorkHistoryIcon=sG,o.WorkIcon=lG,o.WorkOffIcon=dG,o.WorkOutlineIcon=uG,o.WorkspacePremiumIcon=fG,o.WorkspacesIcon=AG,o.WrapTextIcon=_G,o.WrongLocationIcon=yG,o.WysiwygIcon=hG,o.YardIcon=gG,o.YoutubeSearchedForIcon=IG,o.ZoomInIcon=bG,o.ZoomInMapIcon=pG,o.ZoomOutIcon=wG,o.ZoomOutMapIcon=kG,o._10kIcon=al,o._10mpIcon=ll,o._11mpIcon=sl,o._123Icon=cl,o._12mpIcon=dl,o._13mpIcon=ul,o._14mpIcon=fl,o._15mpIcon=Al,o._16mpIcon=_l,o._17mpIcon=yl,o._18UpRatingIcon=hl,o._18mpIcon=gl,o._19mpIcon=Il,o._1kIcon=bl,o._1kPlusIcon=pl,o._1xMobiledataIcon=wl,o._20mpIcon=kl,o._21mpIcon=ml,o._22mpIcon=vl,o._23mpIcon=Kl,o._24mpIcon=Cl,o._2kIcon=Sl,o._2kPlusIcon=Bl,o._2mpIcon=El,o._30fpsIcon=Fl,o._30fpsSelectIcon=Pl,o._360Icon=il,o._3dRotationIcon=Dl,o._3gMobiledataIcon=Nl,o._3kIcon=Tl,o._3kPlusIcon=Ml,o._3mpIcon=Ol,o._3pIcon=Ll,o._4gMobiledataIcon=Ql,o._4gPlusMobiledataIcon=Vl,o._4kIcon=Wl,o._4kPlusIcon=Gl,o._4mpIcon=zl,o._5gIcon=Hl,o._5kIcon=Ul,o._5kPlusIcon=Yl,o._5mpIcon=$l,o._60fpsIcon=jl,o._60fpsSelectIcon=ql,o._6FtApartIcon=Jl,o._6kIcon=Zl,o._6kPlusIcon=Xl,o._6mpIcon=xl,o._7kIcon=Rl,o._7kPlusIcon=es,o._7mpIcon=ns,o._8kIcon=os,o._8kPlusIcon=rs,o._8mpIcon=ts,o._9kIcon=cs,o._9kPlusIcon=is,o._9mpIcon=as,o.addInitialSlash=Ya,o.buildAdditionalFieldDelegate=NH,o.buildCollection=CH,o.buildEntityCallbacks=DH,o.buildEnumLabel=xt,o.buildEnumValueConfig=PH,o.buildEnumValues=FH,o.buildFieldConfig=TH,o.buildProperties=BH,o.buildPropertiesOrBuilder=EH,o.buildProperty=SH,o.canCreateEntity=Qo,o.canDeleteEntity=it,o.canEditEntity=ct,o.cardClickableMixin=ec,o.cardMixin=Rt,o.cardSelectedMixin=xa,o.cn=E,o.coolIconKeys=_r,o.debounce=Oi,o.defaultBorderMixin=ue,o.defaultDateFormat=oi,o.deleteEntityWithCallbacks=zc,o.enumToObjectEntries=tn,o.fieldBackgroundDisabledMixin=Re,o.fieldBackgroundHoverMixin=We,o.fieldBackgroundInvisibleMixin=Ar,o.fieldBackgroundMixin=Je,o.flattenObject=at,o.focusedClasses=fr,o.focusedInvisibleMixin=ur,o.focusedMixin=he,o.fullPathToCollectionSegments=Ze,o.getArrayValuesCount=Li,o.getBracketNotation=Qz,o.getCollectionByPathOrAlias=Io,o.getCollectionPathsCombinations=bo,o.getColorForProperty=Lz,o.getColorScheme=Xt,o.getDefaultFieldId=st,o.getDefaultValueFor=ko,o.getDefaultValueForDataType=sr,o.getDefaultValuesFor=eo,o.getFieldConfig=Go,o.getFieldId=dt,o.getHashValue=ir,o.getIcon=Ti,o.getIconForProperty=ke,o.getIconForView=Vo,o.getIconForWidget=rt,o.getIdIcon=Oz,o.getLabelOrConfigFrom=Ko,o.getLastSegment=$a,o.getPropertiesWithPropertiesOrder=Ni,o.getPropertyInPath=wn,o.getRandomId=Ao,o.getReferenceFrom=hn,o.getReferencePreviewKeys=Mi,o.getResolvedPropertyInPath=tt,o.getValueInPath=rn,o.hydrateRegExp=Pi,o.iconKeys=oc,o.isDefaultFieldConfigId=Qi,o.isEmptyObject=lr,o.isEnumValueDisabled=Xa,o.isHidden=Rn,o.isObject=po,o.isPropertyBuilder=Le,o.isReadOnly=Cn,o.isReferenceProperty=Di,o.isValidRegExp=Tz,o.mergeDeep=qe,o.paperMixin=Ge,o.pick=qt,o.plural=Vz,o.randomColor=xG,o.randomString=Tn,o.removeFunctions=cr,o.removeInPath=ja,o.removeInitialAndTrailingSlashes=pe,o.removeInitialSlash=$t,o.removeTrailingSlash=jt,o.removeUndefined=ar,o.renderSkeletonCaptionText=QG,o.renderSkeletonIcon=Mr,o.renderSkeletonImageThumbnail=Tr,o.renderSkeletonText=en,o.resolveArrayProperty=sn,o.resolveCollection=Me,o.resolveCollectionPathAliases=rr,o.resolveDefaultSelectedView=nt,o.resolveEntityView=At,o.resolveEnumValues=Gz,o.resolveNavigationFrom=Hc,o.resolvePermissions=uo,o.resolveProperties=ut,o.resolveProperty=Ne,o.resolvePropertyEnum=ft,o.sanitizeData=Ja,o.saveEntityWithCallbacks=Fr,o.segmentsToStrippedPath=Fi,o.serializeRegExp=Nz,o.singular=Wz,o.slugify=No,o.sortProperties=Bi,o.stripCollectionPath=ot,o.toKebabCase=JG,o.toSnakeCase=XG,o.traverseValueProperty=mo,o.traverseValuesProperties=dr,o.unslugify=Ua,o.updateDateAutoValues=qa,o.useAuthController=In,o.useAutoComplete=QH,o.useBreadcrumbsContext=Dr,o.useBrowserTitleAndIcon=CG,o.useBuildLocalConfigurationPersistence=OH,o.useBuildModeController=MH,o.useClearRestoreValue=Te,o.useClipboard=Uc,o.useCollectionFetch=Gc,o.useDataSource=Qe,o.useDebounce=Oo,o.useDebounceValue=Mz,o.useEntityCollectionTableController=Ct,o.useEntityFetch=Er,o.useFireCMSContext=ne,o.useLargeLayout=ze,o.useModeController=Pr,o.useNavigationContext=fe,o.useOutsideAlerter=Do,o.useReferenceDialog=io,o.useResolvedNavigationFrom=mG,o.useSelectionController=Bt,o.useSideDialogContext=Uo,o.useSideDialogsController=co,o.useSideEntityController=Sn,o.useSnackbarController=an,o.useStorageSource=Bn,Object.defineProperty(o,Symbol.toStringTag,{value:"Module"})});
1611
1611
  //# sourceMappingURL=index.umd.js.map