@firecms/core 3.0.0-alpha.49 → 3.0.0-alpha.50

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 (4456) hide show
  1. package/dist/components/CircularProgressCenter.d.ts +1 -1
  2. package/dist/components/ErrorBoundary.d.ts +1 -1
  3. package/dist/components/ErrorTooltip.d.ts +1 -1
  4. package/dist/form/components/index.d.ts +0 -1
  5. package/dist/form/form_field_configs.d.ts +1 -1
  6. package/dist/index.d.ts +1 -3
  7. package/dist/index.es.js +10964 -25027
  8. package/dist/index.es.js.map +1 -1
  9. package/dist/index.umd.js +5 -1027
  10. package/dist/index.umd.js.map +1 -1
  11. package/dist/types/index.d.ts +0 -1
  12. package/dist/types/properties.d.ts +1 -1
  13. package/dist/util/chip_utils.d.ts +1 -2
  14. package/dist/util/enums.d.ts +2 -1
  15. package/dist/util/index.d.ts +0 -1
  16. package/package.json +120 -137
  17. package/src/components/ArrayContainer.tsx +12 -3
  18. package/src/components/CircularProgressCenter.tsx +1 -1
  19. package/src/components/DeleteConfirmationDialog.tsx +1 -1
  20. package/src/components/EntityCollectionTable/fields/TableReferenceField.tsx +1 -1
  21. package/src/components/EntityCollectionTable/fields/TableStorageUpload.tsx +1 -2
  22. package/src/components/EntityCollectionTable/filters/BooleanFilterField.tsx +1 -1
  23. package/src/components/EntityCollectionTable/filters/DateTimeFilterField.tsx +4 -1
  24. package/src/components/EntityCollectionTable/filters/ReferenceFilterField.tsx +1 -1
  25. package/src/components/EntityCollectionTable/filters/StringNumberFilterField.tsx +1 -2
  26. package/src/components/EntityCollectionTable/internal/CollectionTableToolbar.tsx +10 -3
  27. package/src/components/EntityCollectionTable/internal/DeleteEntityDialog.tsx +1 -1
  28. package/src/components/EntityCollectionTable/internal/EntityCollectionRowActions.tsx +1 -2
  29. package/src/components/EntityCollectionTable/internal/EntityTableCell.tsx +2 -3
  30. package/src/components/EntityCollectionTable/internal/EntityTableCellActions.tsx +1 -2
  31. package/src/components/EntityCollectionTable/internal/default_entity_actions.tsx +1 -1
  32. package/src/components/EntityCollectionTable/internal/popup_field/PopupFormField.tsx +1 -2
  33. package/src/components/EntityCollectionView/EntityCollectionView.tsx +14 -3
  34. package/src/components/EntityCollectionView/EntityCollectionViewActions.tsx +1 -2
  35. package/src/components/EntityPreview.tsx +1 -4
  36. package/src/components/ErrorBoundary.tsx +1 -2
  37. package/src/components/ErrorTooltip.tsx +1 -1
  38. package/src/components/ErrorView.tsx +1 -2
  39. package/src/components/FireCMSAppBar.tsx +12 -3
  40. package/src/components/HomePage/DefaultHomePage.tsx +1 -1
  41. package/src/components/HomePage/FavouritesView.tsx +1 -2
  42. package/src/components/HomePage/NavigationCollectionCard.tsx +1 -2
  43. package/src/components/HomePage/NavigationGroup.tsx +1 -2
  44. package/src/components/NotFoundPage.tsx +1 -1
  45. package/src/components/ReferenceSelectionInner.tsx +1 -3
  46. package/src/components/VirtualTable/VirtualTable.tsx +1 -2
  47. package/src/components/VirtualTable/VirtualTableHeader.tsx +10 -3
  48. package/src/components/VirtualTable/VirtualTableHeaderRow.tsx +1 -2
  49. package/src/components/VirtualTable/VirtualTableRow.tsx +1 -1
  50. package/src/components/VirtualTable/fields/VirtualTableDateField.tsx +4 -1
  51. package/src/components/VirtualTable/fields/VirtualTableInput.tsx +1 -1
  52. package/src/components/VirtualTable/fields/VirtualTableSelect.tsx +1 -1
  53. package/src/components/VirtualTable/fields/VirtualTableSwitch.tsx +1 -1
  54. package/src/core/Drawer.tsx +1 -1
  55. package/src/core/FireCMS.tsx +1 -1
  56. package/src/core/Scaffold.tsx +1 -3
  57. package/src/core/SideDialogs.tsx +1 -1
  58. package/src/form/EntityForm.tsx +1 -3
  59. package/src/form/PropertyFieldBinding.tsx +1 -1
  60. package/src/form/components/CustomIdField.tsx +1 -2
  61. package/src/form/components/FieldHelperText.tsx +1 -3
  62. package/src/form/components/ReferenceWidget.tsx +11 -3
  63. package/src/form/components/StorageItemPreview.tsx +1 -3
  64. package/src/form/components/StorageUploadProgress.tsx +1 -3
  65. package/src/form/components/SwitchControl.tsx +1 -1
  66. package/src/form/components/index.tsx +0 -1
  67. package/src/form/field_bindings/ArrayCustomShapedFieldBinding.tsx +1 -1
  68. package/src/form/field_bindings/ArrayOfReferencesFieldBinding.tsx +1 -1
  69. package/src/form/field_bindings/BlockFieldBinding.tsx +1 -2
  70. package/src/form/field_bindings/DateTimeFieldBinding.tsx +4 -2
  71. package/src/form/field_bindings/KeyValueFieldBinding.tsx +11 -3
  72. package/src/form/field_bindings/MapFieldBinding.tsx +1 -1
  73. package/src/form/field_bindings/MarkdownFieldBinding.tsx +8 -4
  74. package/src/form/field_bindings/MultiSelectBinding.tsx +1 -2
  75. package/src/form/field_bindings/ReadOnlyFieldBinding.tsx +1 -2
  76. package/src/form/field_bindings/ReferenceFieldBinding.tsx +1 -1
  77. package/src/form/field_bindings/RepeatFieldBinding.tsx +1 -1
  78. package/src/form/field_bindings/SelectFieldBinding.tsx +1 -3
  79. package/src/form/field_bindings/StorageUploadFieldBinding.tsx +4 -3
  80. package/src/form/field_bindings/SwitchFieldBinding.tsx +1 -1
  81. package/src/form/field_bindings/TextFieldBinding.tsx +1 -2
  82. package/src/form/form_field_configs.tsx +1 -1
  83. package/src/index.ts +2 -3
  84. package/src/internal/EntityView.tsx +1 -4
  85. package/src/internal/useUnsavedChangesDialog.tsx +1 -1
  86. package/src/preview/PropertyPreview.tsx +1 -1
  87. package/src/preview/components/AsyncPreviewComponent.tsx +1 -1
  88. package/src/preview/components/BooleanPreview.tsx +1 -1
  89. package/src/preview/components/EnumValuesChip.tsx +1 -1
  90. package/src/preview/components/ImagePreview.tsx +1 -2
  91. package/src/preview/components/ReferencePreview.tsx +1 -3
  92. package/src/preview/components/UrlComponentPreview.tsx +1 -2
  93. package/src/preview/property_previews/ArrayOneOfPreview.tsx +1 -2
  94. package/src/preview/property_previews/ArrayPropertyPreview.tsx +1 -2
  95. package/src/preview/property_previews/MapPropertyPreview.tsx +1 -3
  96. package/src/preview/property_previews/SkeletonPropertyComponent.tsx +1 -1
  97. package/src/preview/property_previews/StringPropertyPreview.tsx +1 -1
  98. package/src/types/index.ts +0 -1
  99. package/src/types/properties.ts +1 -1
  100. package/src/util/chip_utils.ts +1 -47
  101. package/src/util/enums.ts +3 -2
  102. package/src/util/icons.tsx +1 -2
  103. package/src/util/index.ts +0 -1
  104. package/src/util/property_utils.tsx +1 -1
  105. package/dist/icons/GitHubIcon.d.ts +0 -2
  106. package/dist/icons/Icon.d.ts +0 -13
  107. package/dist/icons/components/AbcIcon.d.ts +0 -5
  108. package/dist/icons/components/AcUnitIcon.d.ts +0 -5
  109. package/dist/icons/components/AccessAlarmIcon.d.ts +0 -5
  110. package/dist/icons/components/AccessAlarmsIcon.d.ts +0 -5
  111. package/dist/icons/components/AccessTimeFilledIcon.d.ts +0 -5
  112. package/dist/icons/components/AccessTimeIcon.d.ts +0 -5
  113. package/dist/icons/components/AccessibilityIcon.d.ts +0 -5
  114. package/dist/icons/components/AccessibilityNewIcon.d.ts +0 -5
  115. package/dist/icons/components/AccessibleForwardIcon.d.ts +0 -5
  116. package/dist/icons/components/AccessibleIcon.d.ts +0 -5
  117. package/dist/icons/components/AccountBalanceIcon.d.ts +0 -5
  118. package/dist/icons/components/AccountBalanceWalletIcon.d.ts +0 -5
  119. package/dist/icons/components/AccountBoxIcon.d.ts +0 -5
  120. package/dist/icons/components/AccountCircleIcon.d.ts +0 -5
  121. package/dist/icons/components/AccountTreeIcon.d.ts +0 -5
  122. package/dist/icons/components/AdUnitsIcon.d.ts +0 -5
  123. package/dist/icons/components/AdbIcon.d.ts +0 -5
  124. package/dist/icons/components/AddAPhotoIcon.d.ts +0 -5
  125. package/dist/icons/components/AddAlarmIcon.d.ts +0 -5
  126. package/dist/icons/components/AddAlertIcon.d.ts +0 -5
  127. package/dist/icons/components/AddBoxIcon.d.ts +0 -5
  128. package/dist/icons/components/AddBusinessIcon.d.ts +0 -5
  129. package/dist/icons/components/AddCardIcon.d.ts +0 -5
  130. package/dist/icons/components/AddChartIcon.d.ts +0 -5
  131. package/dist/icons/components/AddCircleIcon.d.ts +0 -5
  132. package/dist/icons/components/AddCircleOutlineIcon.d.ts +0 -5
  133. package/dist/icons/components/AddCommentIcon.d.ts +0 -5
  134. package/dist/icons/components/AddHomeIcon.d.ts +0 -5
  135. package/dist/icons/components/AddHomeWorkIcon.d.ts +0 -5
  136. package/dist/icons/components/AddIcCallIcon.d.ts +0 -5
  137. package/dist/icons/components/AddIcon.d.ts +0 -5
  138. package/dist/icons/components/AddLinkIcon.d.ts +0 -5
  139. package/dist/icons/components/AddLocationAltIcon.d.ts +0 -5
  140. package/dist/icons/components/AddLocationIcon.d.ts +0 -5
  141. package/dist/icons/components/AddModeratorIcon.d.ts +0 -5
  142. package/dist/icons/components/AddPhotoAlternateIcon.d.ts +0 -5
  143. package/dist/icons/components/AddReactionIcon.d.ts +0 -5
  144. package/dist/icons/components/AddRoadIcon.d.ts +0 -5
  145. package/dist/icons/components/AddShoppingCartIcon.d.ts +0 -5
  146. package/dist/icons/components/AddTaskIcon.d.ts +0 -5
  147. package/dist/icons/components/AddToDriveIcon.d.ts +0 -5
  148. package/dist/icons/components/AddToHomeScreenIcon.d.ts +0 -5
  149. package/dist/icons/components/AddToPhotosIcon.d.ts +0 -5
  150. package/dist/icons/components/AddToQueueIcon.d.ts +0 -5
  151. package/dist/icons/components/AdfScannerIcon.d.ts +0 -5
  152. package/dist/icons/components/AdjustIcon.d.ts +0 -5
  153. package/dist/icons/components/AdminPanelSettingsIcon.d.ts +0 -5
  154. package/dist/icons/components/AdsClickIcon.d.ts +0 -5
  155. package/dist/icons/components/AgricultureIcon.d.ts +0 -5
  156. package/dist/icons/components/AirIcon.d.ts +0 -5
  157. package/dist/icons/components/AirlineSeatFlatAngledIcon.d.ts +0 -5
  158. package/dist/icons/components/AirlineSeatFlatIcon.d.ts +0 -5
  159. package/dist/icons/components/AirlineSeatIndividualSuiteIcon.d.ts +0 -5
  160. package/dist/icons/components/AirlineSeatLegroomExtraIcon.d.ts +0 -5
  161. package/dist/icons/components/AirlineSeatLegroomNormalIcon.d.ts +0 -5
  162. package/dist/icons/components/AirlineSeatLegroomReducedIcon.d.ts +0 -5
  163. package/dist/icons/components/AirlineSeatReclineExtraIcon.d.ts +0 -5
  164. package/dist/icons/components/AirlineSeatReclineNormalIcon.d.ts +0 -5
  165. package/dist/icons/components/AirlineStopsIcon.d.ts +0 -5
  166. package/dist/icons/components/AirlinesIcon.d.ts +0 -5
  167. package/dist/icons/components/AirplaneTicketIcon.d.ts +0 -5
  168. package/dist/icons/components/AirplanemodeActiveIcon.d.ts +0 -5
  169. package/dist/icons/components/AirplanemodeInactiveIcon.d.ts +0 -5
  170. package/dist/icons/components/AirplayIcon.d.ts +0 -5
  171. package/dist/icons/components/AirportShuttleIcon.d.ts +0 -5
  172. package/dist/icons/components/AlarmAddIcon.d.ts +0 -5
  173. package/dist/icons/components/AlarmIcon.d.ts +0 -5
  174. package/dist/icons/components/AlarmOffIcon.d.ts +0 -5
  175. package/dist/icons/components/AlarmOnIcon.d.ts +0 -5
  176. package/dist/icons/components/AlbumIcon.d.ts +0 -5
  177. package/dist/icons/components/AlignHorizontalCenterIcon.d.ts +0 -5
  178. package/dist/icons/components/AlignHorizontalLeftIcon.d.ts +0 -5
  179. package/dist/icons/components/AlignHorizontalRightIcon.d.ts +0 -5
  180. package/dist/icons/components/AlignVerticalBottomIcon.d.ts +0 -5
  181. package/dist/icons/components/AlignVerticalCenterIcon.d.ts +0 -5
  182. package/dist/icons/components/AlignVerticalTopIcon.d.ts +0 -5
  183. package/dist/icons/components/AllInboxIcon.d.ts +0 -5
  184. package/dist/icons/components/AllInclusiveIcon.d.ts +0 -5
  185. package/dist/icons/components/AllOutIcon.d.ts +0 -5
  186. package/dist/icons/components/AltRouteIcon.d.ts +0 -5
  187. package/dist/icons/components/AlternateEmailIcon.d.ts +0 -5
  188. package/dist/icons/components/AnalyticsIcon.d.ts +0 -5
  189. package/dist/icons/components/AnchorIcon.d.ts +0 -5
  190. package/dist/icons/components/AndroidIcon.d.ts +0 -5
  191. package/dist/icons/components/AnimationIcon.d.ts +0 -5
  192. package/dist/icons/components/AnnouncementIcon.d.ts +0 -5
  193. package/dist/icons/components/AodIcon.d.ts +0 -5
  194. package/dist/icons/components/ApartmentIcon.d.ts +0 -5
  195. package/dist/icons/components/ApiIcon.d.ts +0 -5
  196. package/dist/icons/components/AppBlockingIcon.d.ts +0 -5
  197. package/dist/icons/components/AppRegistrationIcon.d.ts +0 -5
  198. package/dist/icons/components/AppSettingsAltIcon.d.ts +0 -5
  199. package/dist/icons/components/AppShortcutIcon.d.ts +0 -5
  200. package/dist/icons/components/ApprovalIcon.d.ts +0 -5
  201. package/dist/icons/components/AppsIcon.d.ts +0 -5
  202. package/dist/icons/components/AppsOutageIcon.d.ts +0 -5
  203. package/dist/icons/components/ArchitectureIcon.d.ts +0 -5
  204. package/dist/icons/components/ArchiveIcon.d.ts +0 -5
  205. package/dist/icons/components/AreaChartIcon.d.ts +0 -5
  206. package/dist/icons/components/ArrowBackIcon.d.ts +0 -5
  207. package/dist/icons/components/ArrowBackIosIcon.d.ts +0 -5
  208. package/dist/icons/components/ArrowBackIosNewIcon.d.ts +0 -5
  209. package/dist/icons/components/ArrowCircleDownIcon.d.ts +0 -5
  210. package/dist/icons/components/ArrowCircleLeftIcon.d.ts +0 -5
  211. package/dist/icons/components/ArrowCircleRightIcon.d.ts +0 -5
  212. package/dist/icons/components/ArrowCircleUpIcon.d.ts +0 -5
  213. package/dist/icons/components/ArrowDownwardIcon.d.ts +0 -5
  214. package/dist/icons/components/ArrowDropDownCircleIcon.d.ts +0 -5
  215. package/dist/icons/components/ArrowDropDownIcon.d.ts +0 -5
  216. package/dist/icons/components/ArrowDropUpIcon.d.ts +0 -5
  217. package/dist/icons/components/ArrowForwardIcon.d.ts +0 -5
  218. package/dist/icons/components/ArrowForwardIosIcon.d.ts +0 -5
  219. package/dist/icons/components/ArrowLeftIcon.d.ts +0 -5
  220. package/dist/icons/components/ArrowOutwardIcon.d.ts +0 -5
  221. package/dist/icons/components/ArrowRightAltIcon.d.ts +0 -5
  222. package/dist/icons/components/ArrowRightIcon.d.ts +0 -5
  223. package/dist/icons/components/ArrowUpwardIcon.d.ts +0 -5
  224. package/dist/icons/components/ArtTrackIcon.d.ts +0 -5
  225. package/dist/icons/components/ArticleIcon.d.ts +0 -5
  226. package/dist/icons/components/AspectRatioIcon.d.ts +0 -5
  227. package/dist/icons/components/AssessmentIcon.d.ts +0 -5
  228. package/dist/icons/components/AssignmentIcon.d.ts +0 -5
  229. package/dist/icons/components/AssignmentIndIcon.d.ts +0 -5
  230. package/dist/icons/components/AssignmentLateIcon.d.ts +0 -5
  231. package/dist/icons/components/AssignmentReturnIcon.d.ts +0 -5
  232. package/dist/icons/components/AssignmentReturnedIcon.d.ts +0 -5
  233. package/dist/icons/components/AssignmentTurnedInIcon.d.ts +0 -5
  234. package/dist/icons/components/AssistWalkerIcon.d.ts +0 -5
  235. package/dist/icons/components/AssistantDirectionIcon.d.ts +0 -5
  236. package/dist/icons/components/AssistantIcon.d.ts +0 -5
  237. package/dist/icons/components/AssistantPhotoIcon.d.ts +0 -5
  238. package/dist/icons/components/AssuredWorkloadIcon.d.ts +0 -5
  239. package/dist/icons/components/AtmIcon.d.ts +0 -5
  240. package/dist/icons/components/AttachEmailIcon.d.ts +0 -5
  241. package/dist/icons/components/AttachFileIcon.d.ts +0 -5
  242. package/dist/icons/components/AttachMoneyIcon.d.ts +0 -5
  243. package/dist/icons/components/AttachmentIcon.d.ts +0 -5
  244. package/dist/icons/components/AttractionsIcon.d.ts +0 -5
  245. package/dist/icons/components/AttributionIcon.d.ts +0 -5
  246. package/dist/icons/components/AudioFileIcon.d.ts +0 -5
  247. package/dist/icons/components/AudiotrackIcon.d.ts +0 -5
  248. package/dist/icons/components/AutoAwesomeIcon.d.ts +0 -5
  249. package/dist/icons/components/AutoAwesomeMosaicIcon.d.ts +0 -5
  250. package/dist/icons/components/AutoAwesomeMotionIcon.d.ts +0 -5
  251. package/dist/icons/components/AutoDeleteIcon.d.ts +0 -5
  252. package/dist/icons/components/AutoFixHighIcon.d.ts +0 -5
  253. package/dist/icons/components/AutoFixNormalIcon.d.ts +0 -5
  254. package/dist/icons/components/AutoFixOffIcon.d.ts +0 -5
  255. package/dist/icons/components/AutoGraphIcon.d.ts +0 -5
  256. package/dist/icons/components/AutoModeIcon.d.ts +0 -5
  257. package/dist/icons/components/AutoStoriesIcon.d.ts +0 -5
  258. package/dist/icons/components/AutofpsSelectIcon.d.ts +0 -5
  259. package/dist/icons/components/AutorenewIcon.d.ts +0 -5
  260. package/dist/icons/components/AvTimerIcon.d.ts +0 -5
  261. package/dist/icons/components/BabyChangingStationIcon.d.ts +0 -5
  262. package/dist/icons/components/BackHandIcon.d.ts +0 -5
  263. package/dist/icons/components/BackpackIcon.d.ts +0 -5
  264. package/dist/icons/components/BackspaceIcon.d.ts +0 -5
  265. package/dist/icons/components/BackupIcon.d.ts +0 -5
  266. package/dist/icons/components/BackupTableIcon.d.ts +0 -5
  267. package/dist/icons/components/BadgeIcon.d.ts +0 -5
  268. package/dist/icons/components/BakeryDiningIcon.d.ts +0 -5
  269. package/dist/icons/components/BalanceIcon.d.ts +0 -5
  270. package/dist/icons/components/BalconyIcon.d.ts +0 -5
  271. package/dist/icons/components/BallotIcon.d.ts +0 -5
  272. package/dist/icons/components/BarChartIcon.d.ts +0 -5
  273. package/dist/icons/components/BatchPredictionIcon.d.ts +0 -5
  274. package/dist/icons/components/BathroomIcon.d.ts +0 -5
  275. package/dist/icons/components/BathtubIcon.d.ts +0 -5
  276. package/dist/icons/components/Battery0BarIcon.d.ts +0 -5
  277. package/dist/icons/components/Battery1BarIcon.d.ts +0 -5
  278. package/dist/icons/components/Battery2BarIcon.d.ts +0 -5
  279. package/dist/icons/components/Battery3BarIcon.d.ts +0 -5
  280. package/dist/icons/components/Battery4BarIcon.d.ts +0 -5
  281. package/dist/icons/components/Battery5BarIcon.d.ts +0 -5
  282. package/dist/icons/components/Battery6BarIcon.d.ts +0 -5
  283. package/dist/icons/components/BatteryAlertIcon.d.ts +0 -5
  284. package/dist/icons/components/BatteryChargingFullIcon.d.ts +0 -5
  285. package/dist/icons/components/BatteryFullIcon.d.ts +0 -5
  286. package/dist/icons/components/BatterySaverIcon.d.ts +0 -5
  287. package/dist/icons/components/BatteryStdIcon.d.ts +0 -5
  288. package/dist/icons/components/BatteryUnknownIcon.d.ts +0 -5
  289. package/dist/icons/components/BeachAccessIcon.d.ts +0 -5
  290. package/dist/icons/components/BedIcon.d.ts +0 -5
  291. package/dist/icons/components/BedroomBabyIcon.d.ts +0 -5
  292. package/dist/icons/components/BedroomChildIcon.d.ts +0 -5
  293. package/dist/icons/components/BedroomParentIcon.d.ts +0 -5
  294. package/dist/icons/components/BedtimeIcon.d.ts +0 -5
  295. package/dist/icons/components/BedtimeOffIcon.d.ts +0 -5
  296. package/dist/icons/components/BeenhereIcon.d.ts +0 -5
  297. package/dist/icons/components/BentoIcon.d.ts +0 -5
  298. package/dist/icons/components/BikeScooterIcon.d.ts +0 -5
  299. package/dist/icons/components/BiotechIcon.d.ts +0 -5
  300. package/dist/icons/components/BlenderIcon.d.ts +0 -5
  301. package/dist/icons/components/BlindIcon.d.ts +0 -5
  302. package/dist/icons/components/BlindsClosedIcon.d.ts +0 -5
  303. package/dist/icons/components/BlindsIcon.d.ts +0 -5
  304. package/dist/icons/components/BlockIcon.d.ts +0 -5
  305. package/dist/icons/components/BloodtypeIcon.d.ts +0 -5
  306. package/dist/icons/components/BluetoothAudioIcon.d.ts +0 -5
  307. package/dist/icons/components/BluetoothConnectedIcon.d.ts +0 -5
  308. package/dist/icons/components/BluetoothDisabledIcon.d.ts +0 -5
  309. package/dist/icons/components/BluetoothDriveIcon.d.ts +0 -5
  310. package/dist/icons/components/BluetoothIcon.d.ts +0 -5
  311. package/dist/icons/components/BluetoothSearchingIcon.d.ts +0 -5
  312. package/dist/icons/components/BlurCircularIcon.d.ts +0 -5
  313. package/dist/icons/components/BlurLinearIcon.d.ts +0 -5
  314. package/dist/icons/components/BlurOffIcon.d.ts +0 -5
  315. package/dist/icons/components/BlurOnIcon.d.ts +0 -5
  316. package/dist/icons/components/BoltIcon.d.ts +0 -5
  317. package/dist/icons/components/BookIcon.d.ts +0 -5
  318. package/dist/icons/components/BookOnlineIcon.d.ts +0 -5
  319. package/dist/icons/components/BookmarkAddIcon.d.ts +0 -5
  320. package/dist/icons/components/BookmarkAddedIcon.d.ts +0 -5
  321. package/dist/icons/components/BookmarkBorderIcon.d.ts +0 -5
  322. package/dist/icons/components/BookmarkIcon.d.ts +0 -5
  323. package/dist/icons/components/BookmarkRemoveIcon.d.ts +0 -5
  324. package/dist/icons/components/BookmarksIcon.d.ts +0 -5
  325. package/dist/icons/components/BorderAllIcon.d.ts +0 -5
  326. package/dist/icons/components/BorderBottomIcon.d.ts +0 -5
  327. package/dist/icons/components/BorderClearIcon.d.ts +0 -5
  328. package/dist/icons/components/BorderColorIcon.d.ts +0 -5
  329. package/dist/icons/components/BorderHorizontalIcon.d.ts +0 -5
  330. package/dist/icons/components/BorderInnerIcon.d.ts +0 -5
  331. package/dist/icons/components/BorderLeftIcon.d.ts +0 -5
  332. package/dist/icons/components/BorderOuterIcon.d.ts +0 -5
  333. package/dist/icons/components/BorderRightIcon.d.ts +0 -5
  334. package/dist/icons/components/BorderStyleIcon.d.ts +0 -5
  335. package/dist/icons/components/BorderTopIcon.d.ts +0 -5
  336. package/dist/icons/components/BorderVerticalIcon.d.ts +0 -5
  337. package/dist/icons/components/BoyIcon.d.ts +0 -5
  338. package/dist/icons/components/BrandingWatermarkIcon.d.ts +0 -5
  339. package/dist/icons/components/BreakfastDiningIcon.d.ts +0 -5
  340. package/dist/icons/components/Brightness1Icon.d.ts +0 -5
  341. package/dist/icons/components/Brightness2Icon.d.ts +0 -5
  342. package/dist/icons/components/Brightness3Icon.d.ts +0 -5
  343. package/dist/icons/components/Brightness4Icon.d.ts +0 -5
  344. package/dist/icons/components/Brightness5Icon.d.ts +0 -5
  345. package/dist/icons/components/Brightness6Icon.d.ts +0 -5
  346. package/dist/icons/components/Brightness7Icon.d.ts +0 -5
  347. package/dist/icons/components/BrightnessAutoIcon.d.ts +0 -5
  348. package/dist/icons/components/BrightnessHighIcon.d.ts +0 -5
  349. package/dist/icons/components/BrightnessLowIcon.d.ts +0 -5
  350. package/dist/icons/components/BrightnessMediumIcon.d.ts +0 -5
  351. package/dist/icons/components/BroadcastOnHomeIcon.d.ts +0 -5
  352. package/dist/icons/components/BroadcastOnPersonalIcon.d.ts +0 -5
  353. package/dist/icons/components/BrokenImageIcon.d.ts +0 -5
  354. package/dist/icons/components/BrowseGalleryIcon.d.ts +0 -5
  355. package/dist/icons/components/BrowserNotSupportedIcon.d.ts +0 -5
  356. package/dist/icons/components/BrowserUpdatedIcon.d.ts +0 -5
  357. package/dist/icons/components/BrunchDiningIcon.d.ts +0 -5
  358. package/dist/icons/components/BrushIcon.d.ts +0 -5
  359. package/dist/icons/components/BubbleChartIcon.d.ts +0 -5
  360. package/dist/icons/components/BugReportIcon.d.ts +0 -5
  361. package/dist/icons/components/BuildCircleIcon.d.ts +0 -5
  362. package/dist/icons/components/BuildIcon.d.ts +0 -5
  363. package/dist/icons/components/BungalowIcon.d.ts +0 -5
  364. package/dist/icons/components/BurstModeIcon.d.ts +0 -5
  365. package/dist/icons/components/BusAlertIcon.d.ts +0 -5
  366. package/dist/icons/components/BusinessCenterIcon.d.ts +0 -5
  367. package/dist/icons/components/BusinessIcon.d.ts +0 -5
  368. package/dist/icons/components/CabinIcon.d.ts +0 -5
  369. package/dist/icons/components/CableIcon.d.ts +0 -5
  370. package/dist/icons/components/CachedIcon.d.ts +0 -5
  371. package/dist/icons/components/CakeIcon.d.ts +0 -5
  372. package/dist/icons/components/CalculateIcon.d.ts +0 -5
  373. package/dist/icons/components/CalendarMonthIcon.d.ts +0 -5
  374. package/dist/icons/components/CalendarTodayIcon.d.ts +0 -5
  375. package/dist/icons/components/CalendarViewDayIcon.d.ts +0 -5
  376. package/dist/icons/components/CalendarViewMonthIcon.d.ts +0 -5
  377. package/dist/icons/components/CalendarViewWeekIcon.d.ts +0 -5
  378. package/dist/icons/components/CallEndIcon.d.ts +0 -5
  379. package/dist/icons/components/CallIcon.d.ts +0 -5
  380. package/dist/icons/components/CallMadeIcon.d.ts +0 -5
  381. package/dist/icons/components/CallMergeIcon.d.ts +0 -5
  382. package/dist/icons/components/CallMissedIcon.d.ts +0 -5
  383. package/dist/icons/components/CallMissedOutgoingIcon.d.ts +0 -5
  384. package/dist/icons/components/CallReceivedIcon.d.ts +0 -5
  385. package/dist/icons/components/CallSplitIcon.d.ts +0 -5
  386. package/dist/icons/components/CallToActionIcon.d.ts +0 -5
  387. package/dist/icons/components/CameraAltIcon.d.ts +0 -5
  388. package/dist/icons/components/CameraEnhanceIcon.d.ts +0 -5
  389. package/dist/icons/components/CameraFrontIcon.d.ts +0 -5
  390. package/dist/icons/components/CameraIcon.d.ts +0 -5
  391. package/dist/icons/components/CameraIndoorIcon.d.ts +0 -5
  392. package/dist/icons/components/CameraOutdoorIcon.d.ts +0 -5
  393. package/dist/icons/components/CameraRearIcon.d.ts +0 -5
  394. package/dist/icons/components/CameraRollIcon.d.ts +0 -5
  395. package/dist/icons/components/CameraswitchIcon.d.ts +0 -5
  396. package/dist/icons/components/CampaignIcon.d.ts +0 -5
  397. package/dist/icons/components/CancelIcon.d.ts +0 -5
  398. package/dist/icons/components/CancelPresentationIcon.d.ts +0 -5
  399. package/dist/icons/components/CancelScheduleSendIcon.d.ts +0 -5
  400. package/dist/icons/components/CandlestickChartIcon.d.ts +0 -5
  401. package/dist/icons/components/CarCrashIcon.d.ts +0 -5
  402. package/dist/icons/components/CarRentalIcon.d.ts +0 -5
  403. package/dist/icons/components/CarRepairIcon.d.ts +0 -5
  404. package/dist/icons/components/CardGiftcardIcon.d.ts +0 -5
  405. package/dist/icons/components/CardMembershipIcon.d.ts +0 -5
  406. package/dist/icons/components/CardTravelIcon.d.ts +0 -5
  407. package/dist/icons/components/CarpenterIcon.d.ts +0 -5
  408. package/dist/icons/components/CasesIcon.d.ts +0 -5
  409. package/dist/icons/components/CasinoIcon.d.ts +0 -5
  410. package/dist/icons/components/CastConnectedIcon.d.ts +0 -5
  411. package/dist/icons/components/CastForEducationIcon.d.ts +0 -5
  412. package/dist/icons/components/CastIcon.d.ts +0 -5
  413. package/dist/icons/components/CastleIcon.d.ts +0 -5
  414. package/dist/icons/components/CatchingPokemonIcon.d.ts +0 -5
  415. package/dist/icons/components/CategoryIcon.d.ts +0 -5
  416. package/dist/icons/components/CelebrationIcon.d.ts +0 -5
  417. package/dist/icons/components/CellTowerIcon.d.ts +0 -5
  418. package/dist/icons/components/CellWifiIcon.d.ts +0 -5
  419. package/dist/icons/components/CenterFocusStrongIcon.d.ts +0 -5
  420. package/dist/icons/components/CenterFocusWeakIcon.d.ts +0 -5
  421. package/dist/icons/components/ChairAltIcon.d.ts +0 -5
  422. package/dist/icons/components/ChairIcon.d.ts +0 -5
  423. package/dist/icons/components/ChaletIcon.d.ts +0 -5
  424. package/dist/icons/components/ChangeCircleIcon.d.ts +0 -5
  425. package/dist/icons/components/ChangeHistoryIcon.d.ts +0 -5
  426. package/dist/icons/components/ChargingStationIcon.d.ts +0 -5
  427. package/dist/icons/components/ChatBubbleIcon.d.ts +0 -5
  428. package/dist/icons/components/ChatBubbleOutlineIcon.d.ts +0 -5
  429. package/dist/icons/components/ChatIcon.d.ts +0 -5
  430. package/dist/icons/components/CheckBoxIcon.d.ts +0 -5
  431. package/dist/icons/components/CheckBoxOutlineBlankIcon.d.ts +0 -5
  432. package/dist/icons/components/CheckCircleIcon.d.ts +0 -5
  433. package/dist/icons/components/CheckCircleOutlineIcon.d.ts +0 -5
  434. package/dist/icons/components/CheckIcon.d.ts +0 -5
  435. package/dist/icons/components/ChecklistIcon.d.ts +0 -5
  436. package/dist/icons/components/ChecklistRtlIcon.d.ts +0 -5
  437. package/dist/icons/components/CheckroomIcon.d.ts +0 -5
  438. package/dist/icons/components/ChevronLeftIcon.d.ts +0 -5
  439. package/dist/icons/components/ChevronRightIcon.d.ts +0 -5
  440. package/dist/icons/components/ChildCareIcon.d.ts +0 -5
  441. package/dist/icons/components/ChildFriendlyIcon.d.ts +0 -5
  442. package/dist/icons/components/ChromeReaderModeIcon.d.ts +0 -5
  443. package/dist/icons/components/ChurchIcon.d.ts +0 -5
  444. package/dist/icons/components/CircleIcon.d.ts +0 -5
  445. package/dist/icons/components/CircleNotificationsIcon.d.ts +0 -5
  446. package/dist/icons/components/ClassIcon.d.ts +0 -5
  447. package/dist/icons/components/CleanHandsIcon.d.ts +0 -5
  448. package/dist/icons/components/CleaningServicesIcon.d.ts +0 -5
  449. package/dist/icons/components/ClearAllIcon.d.ts +0 -5
  450. package/dist/icons/components/ClearIcon.d.ts +0 -5
  451. package/dist/icons/components/CloseFullscreenIcon.d.ts +0 -5
  452. package/dist/icons/components/CloseIcon.d.ts +0 -5
  453. package/dist/icons/components/ClosedCaptionDisabledIcon.d.ts +0 -5
  454. package/dist/icons/components/ClosedCaptionIcon.d.ts +0 -5
  455. package/dist/icons/components/ClosedCaptionOffIcon.d.ts +0 -5
  456. package/dist/icons/components/CloudCircleIcon.d.ts +0 -5
  457. package/dist/icons/components/CloudDoneIcon.d.ts +0 -5
  458. package/dist/icons/components/CloudDownloadIcon.d.ts +0 -5
  459. package/dist/icons/components/CloudIcon.d.ts +0 -5
  460. package/dist/icons/components/CloudOffIcon.d.ts +0 -5
  461. package/dist/icons/components/CloudQueueIcon.d.ts +0 -5
  462. package/dist/icons/components/CloudSyncIcon.d.ts +0 -5
  463. package/dist/icons/components/CloudUploadIcon.d.ts +0 -5
  464. package/dist/icons/components/Co2Icon.d.ts +0 -5
  465. package/dist/icons/components/CoPresentIcon.d.ts +0 -5
  466. package/dist/icons/components/CodeIcon.d.ts +0 -5
  467. package/dist/icons/components/CodeOffIcon.d.ts +0 -5
  468. package/dist/icons/components/CoffeeIcon.d.ts +0 -5
  469. package/dist/icons/components/CoffeeMakerIcon.d.ts +0 -5
  470. package/dist/icons/components/CollectionsBookmarkIcon.d.ts +0 -5
  471. package/dist/icons/components/CollectionsIcon.d.ts +0 -5
  472. package/dist/icons/components/ColorLensIcon.d.ts +0 -5
  473. package/dist/icons/components/ColorizeIcon.d.ts +0 -5
  474. package/dist/icons/components/CommentBankIcon.d.ts +0 -5
  475. package/dist/icons/components/CommentIcon.d.ts +0 -5
  476. package/dist/icons/components/CommentsDisabledIcon.d.ts +0 -5
  477. package/dist/icons/components/CommitIcon.d.ts +0 -5
  478. package/dist/icons/components/CommuteIcon.d.ts +0 -5
  479. package/dist/icons/components/CompareArrowsIcon.d.ts +0 -5
  480. package/dist/icons/components/CompareIcon.d.ts +0 -5
  481. package/dist/icons/components/CompassCalibrationIcon.d.ts +0 -5
  482. package/dist/icons/components/CompostIcon.d.ts +0 -5
  483. package/dist/icons/components/CompressIcon.d.ts +0 -5
  484. package/dist/icons/components/ComputerIcon.d.ts +0 -5
  485. package/dist/icons/components/ConfirmationNumberIcon.d.ts +0 -5
  486. package/dist/icons/components/ConnectWithoutContactIcon.d.ts +0 -5
  487. package/dist/icons/components/ConnectedTvIcon.d.ts +0 -5
  488. package/dist/icons/components/ConnectingAirportsIcon.d.ts +0 -5
  489. package/dist/icons/components/ConstructionIcon.d.ts +0 -5
  490. package/dist/icons/components/ContactEmergencyIcon.d.ts +0 -5
  491. package/dist/icons/components/ContactMailIcon.d.ts +0 -5
  492. package/dist/icons/components/ContactPageIcon.d.ts +0 -5
  493. package/dist/icons/components/ContactPhoneIcon.d.ts +0 -5
  494. package/dist/icons/components/ContactSupportIcon.d.ts +0 -5
  495. package/dist/icons/components/ContactlessIcon.d.ts +0 -5
  496. package/dist/icons/components/ContactsIcon.d.ts +0 -5
  497. package/dist/icons/components/ContentCopyIcon.d.ts +0 -5
  498. package/dist/icons/components/ContentCutIcon.d.ts +0 -5
  499. package/dist/icons/components/ContentPasteGoIcon.d.ts +0 -5
  500. package/dist/icons/components/ContentPasteIcon.d.ts +0 -5
  501. package/dist/icons/components/ContentPasteOffIcon.d.ts +0 -5
  502. package/dist/icons/components/ContentPasteSearchIcon.d.ts +0 -5
  503. package/dist/icons/components/ContrastIcon.d.ts +0 -5
  504. package/dist/icons/components/ControlCameraIcon.d.ts +0 -5
  505. package/dist/icons/components/ControlPointDuplicateIcon.d.ts +0 -5
  506. package/dist/icons/components/ControlPointIcon.d.ts +0 -5
  507. package/dist/icons/components/CookieIcon.d.ts +0 -5
  508. package/dist/icons/components/CopyAllIcon.d.ts +0 -5
  509. package/dist/icons/components/CopyrightIcon.d.ts +0 -5
  510. package/dist/icons/components/CoronavirusIcon.d.ts +0 -5
  511. package/dist/icons/components/CorporateFareIcon.d.ts +0 -5
  512. package/dist/icons/components/CottageIcon.d.ts +0 -5
  513. package/dist/icons/components/CountertopsIcon.d.ts +0 -5
  514. package/dist/icons/components/CreateIcon.d.ts +0 -5
  515. package/dist/icons/components/CreateNewFolderIcon.d.ts +0 -5
  516. package/dist/icons/components/CreditCardIcon.d.ts +0 -5
  517. package/dist/icons/components/CreditCardOffIcon.d.ts +0 -5
  518. package/dist/icons/components/CreditScoreIcon.d.ts +0 -5
  519. package/dist/icons/components/CribIcon.d.ts +0 -5
  520. package/dist/icons/components/CrisisAlertIcon.d.ts +0 -5
  521. package/dist/icons/components/Crop169Icon.d.ts +0 -5
  522. package/dist/icons/components/Crop32Icon.d.ts +0 -5
  523. package/dist/icons/components/Crop54Icon.d.ts +0 -5
  524. package/dist/icons/components/Crop75Icon.d.ts +0 -5
  525. package/dist/icons/components/CropDinIcon.d.ts +0 -5
  526. package/dist/icons/components/CropFreeIcon.d.ts +0 -5
  527. package/dist/icons/components/CropIcon.d.ts +0 -5
  528. package/dist/icons/components/CropLandscapeIcon.d.ts +0 -5
  529. package/dist/icons/components/CropOriginalIcon.d.ts +0 -5
  530. package/dist/icons/components/CropPortraitIcon.d.ts +0 -5
  531. package/dist/icons/components/CropRotateIcon.d.ts +0 -5
  532. package/dist/icons/components/CropSquareIcon.d.ts +0 -5
  533. package/dist/icons/components/CrueltyFreeIcon.d.ts +0 -5
  534. package/dist/icons/components/CssIcon.d.ts +0 -5
  535. package/dist/icons/components/CurrencyBitcoinIcon.d.ts +0 -5
  536. package/dist/icons/components/CurrencyExchangeIcon.d.ts +0 -5
  537. package/dist/icons/components/CurrencyFrancIcon.d.ts +0 -5
  538. package/dist/icons/components/CurrencyLiraIcon.d.ts +0 -5
  539. package/dist/icons/components/CurrencyPoundIcon.d.ts +0 -5
  540. package/dist/icons/components/CurrencyRubleIcon.d.ts +0 -5
  541. package/dist/icons/components/CurrencyRupeeIcon.d.ts +0 -5
  542. package/dist/icons/components/CurrencyYenIcon.d.ts +0 -5
  543. package/dist/icons/components/CurrencyYuanIcon.d.ts +0 -5
  544. package/dist/icons/components/CurtainsClosedIcon.d.ts +0 -5
  545. package/dist/icons/components/CurtainsIcon.d.ts +0 -5
  546. package/dist/icons/components/CycloneIcon.d.ts +0 -5
  547. package/dist/icons/components/DangerousIcon.d.ts +0 -5
  548. package/dist/icons/components/DarkModeIcon.d.ts +0 -5
  549. package/dist/icons/components/DashboardCustomizeIcon.d.ts +0 -5
  550. package/dist/icons/components/DashboardIcon.d.ts +0 -5
  551. package/dist/icons/components/DataArrayIcon.d.ts +0 -5
  552. package/dist/icons/components/DataExplorationIcon.d.ts +0 -5
  553. package/dist/icons/components/DataObjectIcon.d.ts +0 -5
  554. package/dist/icons/components/DataSaverOffIcon.d.ts +0 -5
  555. package/dist/icons/components/DataSaverOnIcon.d.ts +0 -5
  556. package/dist/icons/components/DataThresholdingIcon.d.ts +0 -5
  557. package/dist/icons/components/DataUsageIcon.d.ts +0 -5
  558. package/dist/icons/components/DatasetIcon.d.ts +0 -5
  559. package/dist/icons/components/DatasetLinkedIcon.d.ts +0 -5
  560. package/dist/icons/components/DateRangeIcon.d.ts +0 -5
  561. package/dist/icons/components/DeblurIcon.d.ts +0 -5
  562. package/dist/icons/components/DeckIcon.d.ts +0 -5
  563. package/dist/icons/components/DehazeIcon.d.ts +0 -5
  564. package/dist/icons/components/DeleteForeverIcon.d.ts +0 -5
  565. package/dist/icons/components/DeleteIcon.d.ts +0 -5
  566. package/dist/icons/components/DeleteOutlineIcon.d.ts +0 -5
  567. package/dist/icons/components/DeleteSweepIcon.d.ts +0 -5
  568. package/dist/icons/components/DeliveryDiningIcon.d.ts +0 -5
  569. package/dist/icons/components/DensityLargeIcon.d.ts +0 -5
  570. package/dist/icons/components/DensityMediumIcon.d.ts +0 -5
  571. package/dist/icons/components/DensitySmallIcon.d.ts +0 -5
  572. package/dist/icons/components/DepartureBoardIcon.d.ts +0 -5
  573. package/dist/icons/components/DescriptionIcon.d.ts +0 -5
  574. package/dist/icons/components/DeselectIcon.d.ts +0 -5
  575. package/dist/icons/components/DesignServicesIcon.d.ts +0 -5
  576. package/dist/icons/components/DeskIcon.d.ts +0 -5
  577. package/dist/icons/components/DesktopAccessDisabledIcon.d.ts +0 -5
  578. package/dist/icons/components/DesktopMacIcon.d.ts +0 -5
  579. package/dist/icons/components/DesktopWindowsIcon.d.ts +0 -5
  580. package/dist/icons/components/DetailsIcon.d.ts +0 -5
  581. package/dist/icons/components/DeveloperBoardIcon.d.ts +0 -5
  582. package/dist/icons/components/DeveloperBoardOffIcon.d.ts +0 -5
  583. package/dist/icons/components/DeveloperModeIcon.d.ts +0 -5
  584. package/dist/icons/components/DeviceHubIcon.d.ts +0 -5
  585. package/dist/icons/components/DeviceThermostatIcon.d.ts +0 -5
  586. package/dist/icons/components/DeviceUnknownIcon.d.ts +0 -5
  587. package/dist/icons/components/DevicesFoldIcon.d.ts +0 -5
  588. package/dist/icons/components/DevicesIcon.d.ts +0 -5
  589. package/dist/icons/components/DevicesOtherIcon.d.ts +0 -5
  590. package/dist/icons/components/DialerSipIcon.d.ts +0 -5
  591. package/dist/icons/components/DialpadIcon.d.ts +0 -5
  592. package/dist/icons/components/DiamondIcon.d.ts +0 -5
  593. package/dist/icons/components/DifferenceIcon.d.ts +0 -5
  594. package/dist/icons/components/DiningIcon.d.ts +0 -5
  595. package/dist/icons/components/DinnerDiningIcon.d.ts +0 -5
  596. package/dist/icons/components/DirectionsBikeIcon.d.ts +0 -5
  597. package/dist/icons/components/DirectionsBoatFilledIcon.d.ts +0 -5
  598. package/dist/icons/components/DirectionsBoatIcon.d.ts +0 -5
  599. package/dist/icons/components/DirectionsBusFilledIcon.d.ts +0 -5
  600. package/dist/icons/components/DirectionsBusIcon.d.ts +0 -5
  601. package/dist/icons/components/DirectionsCarFilledIcon.d.ts +0 -5
  602. package/dist/icons/components/DirectionsCarIcon.d.ts +0 -5
  603. package/dist/icons/components/DirectionsIcon.d.ts +0 -5
  604. package/dist/icons/components/DirectionsOffIcon.d.ts +0 -5
  605. package/dist/icons/components/DirectionsRailwayFilledIcon.d.ts +0 -5
  606. package/dist/icons/components/DirectionsRailwayIcon.d.ts +0 -5
  607. package/dist/icons/components/DirectionsRunIcon.d.ts +0 -5
  608. package/dist/icons/components/DirectionsSubwayFilledIcon.d.ts +0 -5
  609. package/dist/icons/components/DirectionsSubwayIcon.d.ts +0 -5
  610. package/dist/icons/components/DirectionsTransitFilledIcon.d.ts +0 -5
  611. package/dist/icons/components/DirectionsTransitIcon.d.ts +0 -5
  612. package/dist/icons/components/DirectionsWalkIcon.d.ts +0 -5
  613. package/dist/icons/components/DirtyLensIcon.d.ts +0 -5
  614. package/dist/icons/components/DisabledByDefaultIcon.d.ts +0 -5
  615. package/dist/icons/components/DisabledVisibleIcon.d.ts +0 -5
  616. package/dist/icons/components/DiscFullIcon.d.ts +0 -5
  617. package/dist/icons/components/DiscountIcon.d.ts +0 -5
  618. package/dist/icons/components/DisplaySettingsIcon.d.ts +0 -5
  619. package/dist/icons/components/Diversity1Icon.d.ts +0 -5
  620. package/dist/icons/components/Diversity2Icon.d.ts +0 -5
  621. package/dist/icons/components/Diversity3Icon.d.ts +0 -5
  622. package/dist/icons/components/DnsIcon.d.ts +0 -5
  623. package/dist/icons/components/DoDisturbAltIcon.d.ts +0 -5
  624. package/dist/icons/components/DoDisturbIcon.d.ts +0 -5
  625. package/dist/icons/components/DoDisturbOffIcon.d.ts +0 -5
  626. package/dist/icons/components/DoDisturbOnIcon.d.ts +0 -5
  627. package/dist/icons/components/DoNotDisturbAltIcon.d.ts +0 -5
  628. package/dist/icons/components/DoNotDisturbIcon.d.ts +0 -5
  629. package/dist/icons/components/DoNotDisturbOffIcon.d.ts +0 -5
  630. package/dist/icons/components/DoNotDisturbOnIcon.d.ts +0 -5
  631. package/dist/icons/components/DoNotDisturbOnTotalSilenceIcon.d.ts +0 -5
  632. package/dist/icons/components/DoNotStepIcon.d.ts +0 -5
  633. package/dist/icons/components/DoNotTouchIcon.d.ts +0 -5
  634. package/dist/icons/components/DockIcon.d.ts +0 -5
  635. package/dist/icons/components/DocumentScannerIcon.d.ts +0 -5
  636. package/dist/icons/components/DomainAddIcon.d.ts +0 -5
  637. package/dist/icons/components/DomainDisabledIcon.d.ts +0 -5
  638. package/dist/icons/components/DomainIcon.d.ts +0 -5
  639. package/dist/icons/components/DomainVerificationIcon.d.ts +0 -5
  640. package/dist/icons/components/DoneAllIcon.d.ts +0 -5
  641. package/dist/icons/components/DoneIcon.d.ts +0 -5
  642. package/dist/icons/components/DoneOutlineIcon.d.ts +0 -5
  643. package/dist/icons/components/DonutLargeIcon.d.ts +0 -5
  644. package/dist/icons/components/DonutSmallIcon.d.ts +0 -5
  645. package/dist/icons/components/DoorBackIcon.d.ts +0 -5
  646. package/dist/icons/components/DoorFrontIcon.d.ts +0 -5
  647. package/dist/icons/components/DoorSlidingIcon.d.ts +0 -5
  648. package/dist/icons/components/DoorbellIcon.d.ts +0 -5
  649. package/dist/icons/components/DoubleArrowIcon.d.ts +0 -5
  650. package/dist/icons/components/DownhillSkiingIcon.d.ts +0 -5
  651. package/dist/icons/components/DownloadDoneIcon.d.ts +0 -5
  652. package/dist/icons/components/DownloadForOfflineIcon.d.ts +0 -5
  653. package/dist/icons/components/DownloadIcon.d.ts +0 -5
  654. package/dist/icons/components/DownloadingIcon.d.ts +0 -5
  655. package/dist/icons/components/DraftsIcon.d.ts +0 -5
  656. package/dist/icons/components/DragHandleIcon.d.ts +0 -5
  657. package/dist/icons/components/DragIndicatorIcon.d.ts +0 -5
  658. package/dist/icons/components/DrawIcon.d.ts +0 -5
  659. package/dist/icons/components/DriveEtaIcon.d.ts +0 -5
  660. package/dist/icons/components/DriveFileMoveIcon.d.ts +0 -5
  661. package/dist/icons/components/DriveFileMoveRtlIcon.d.ts +0 -5
  662. package/dist/icons/components/DriveFileRenameOutlineIcon.d.ts +0 -5
  663. package/dist/icons/components/DriveFolderUploadIcon.d.ts +0 -5
  664. package/dist/icons/components/DryCleaningIcon.d.ts +0 -5
  665. package/dist/icons/components/DryIcon.d.ts +0 -5
  666. package/dist/icons/components/DuoIcon.d.ts +0 -5
  667. package/dist/icons/components/DvrIcon.d.ts +0 -5
  668. package/dist/icons/components/DynamicFeedIcon.d.ts +0 -5
  669. package/dist/icons/components/DynamicFormIcon.d.ts +0 -5
  670. package/dist/icons/components/EMobiledataIcon.d.ts +0 -5
  671. package/dist/icons/components/EarbudsBatteryIcon.d.ts +0 -5
  672. package/dist/icons/components/EarbudsIcon.d.ts +0 -5
  673. package/dist/icons/components/EastIcon.d.ts +0 -5
  674. package/dist/icons/components/EdgesensorHighIcon.d.ts +0 -5
  675. package/dist/icons/components/EdgesensorLowIcon.d.ts +0 -5
  676. package/dist/icons/components/EditAttributesIcon.d.ts +0 -5
  677. package/dist/icons/components/EditCalendarIcon.d.ts +0 -5
  678. package/dist/icons/components/EditIcon.d.ts +0 -5
  679. package/dist/icons/components/EditLocationAltIcon.d.ts +0 -5
  680. package/dist/icons/components/EditLocationIcon.d.ts +0 -5
  681. package/dist/icons/components/EditNoteIcon.d.ts +0 -5
  682. package/dist/icons/components/EditNotificationsIcon.d.ts +0 -5
  683. package/dist/icons/components/EditOffIcon.d.ts +0 -5
  684. package/dist/icons/components/EditRoadIcon.d.ts +0 -5
  685. package/dist/icons/components/EggAltIcon.d.ts +0 -5
  686. package/dist/icons/components/EggIcon.d.ts +0 -5
  687. package/dist/icons/components/EjectIcon.d.ts +0 -5
  688. package/dist/icons/components/ElderlyIcon.d.ts +0 -5
  689. package/dist/icons/components/ElderlyWomanIcon.d.ts +0 -5
  690. package/dist/icons/components/ElectricBikeIcon.d.ts +0 -5
  691. package/dist/icons/components/ElectricBoltIcon.d.ts +0 -5
  692. package/dist/icons/components/ElectricCarIcon.d.ts +0 -5
  693. package/dist/icons/components/ElectricMeterIcon.d.ts +0 -5
  694. package/dist/icons/components/ElectricMopedIcon.d.ts +0 -5
  695. package/dist/icons/components/ElectricRickshawIcon.d.ts +0 -5
  696. package/dist/icons/components/ElectricScooterIcon.d.ts +0 -5
  697. package/dist/icons/components/ElectricalServicesIcon.d.ts +0 -5
  698. package/dist/icons/components/ElevatorIcon.d.ts +0 -5
  699. package/dist/icons/components/EmailIcon.d.ts +0 -5
  700. package/dist/icons/components/EmergencyIcon.d.ts +0 -5
  701. package/dist/icons/components/EmergencyRecordingIcon.d.ts +0 -5
  702. package/dist/icons/components/EmergencyShareIcon.d.ts +0 -5
  703. package/dist/icons/components/EmojiEmotionsIcon.d.ts +0 -5
  704. package/dist/icons/components/EmojiEventsIcon.d.ts +0 -5
  705. package/dist/icons/components/EmojiFoodBeverageIcon.d.ts +0 -5
  706. package/dist/icons/components/EmojiNatureIcon.d.ts +0 -5
  707. package/dist/icons/components/EmojiObjectsIcon.d.ts +0 -5
  708. package/dist/icons/components/EmojiPeopleIcon.d.ts +0 -5
  709. package/dist/icons/components/EmojiSymbolsIcon.d.ts +0 -5
  710. package/dist/icons/components/EmojiTransportationIcon.d.ts +0 -5
  711. package/dist/icons/components/EnergySavingsLeafIcon.d.ts +0 -5
  712. package/dist/icons/components/EngineeringIcon.d.ts +0 -5
  713. package/dist/icons/components/EnhancedEncryptionIcon.d.ts +0 -5
  714. package/dist/icons/components/EqualizerIcon.d.ts +0 -5
  715. package/dist/icons/components/ErrorIcon.d.ts +0 -5
  716. package/dist/icons/components/ErrorOutlineIcon.d.ts +0 -5
  717. package/dist/icons/components/EscalatorIcon.d.ts +0 -5
  718. package/dist/icons/components/EscalatorWarningIcon.d.ts +0 -5
  719. package/dist/icons/components/EuroIcon.d.ts +0 -5
  720. package/dist/icons/components/EuroSymbolIcon.d.ts +0 -5
  721. package/dist/icons/components/EvStationIcon.d.ts +0 -5
  722. package/dist/icons/components/EventAvailableIcon.d.ts +0 -5
  723. package/dist/icons/components/EventBusyIcon.d.ts +0 -5
  724. package/dist/icons/components/EventIcon.d.ts +0 -5
  725. package/dist/icons/components/EventNoteIcon.d.ts +0 -5
  726. package/dist/icons/components/EventRepeatIcon.d.ts +0 -5
  727. package/dist/icons/components/EventSeatIcon.d.ts +0 -5
  728. package/dist/icons/components/ExitToAppIcon.d.ts +0 -5
  729. package/dist/icons/components/ExpandCircleDownIcon.d.ts +0 -5
  730. package/dist/icons/components/ExpandIcon.d.ts +0 -5
  731. package/dist/icons/components/ExpandLessIcon.d.ts +0 -5
  732. package/dist/icons/components/ExpandMoreIcon.d.ts +0 -5
  733. package/dist/icons/components/ExplicitIcon.d.ts +0 -5
  734. package/dist/icons/components/ExploreIcon.d.ts +0 -5
  735. package/dist/icons/components/ExploreOffIcon.d.ts +0 -5
  736. package/dist/icons/components/ExposureIcon.d.ts +0 -5
  737. package/dist/icons/components/ExposureNeg1Icon.d.ts +0 -5
  738. package/dist/icons/components/ExposureNeg2Icon.d.ts +0 -5
  739. package/dist/icons/components/ExposurePlus1Icon.d.ts +0 -5
  740. package/dist/icons/components/ExposurePlus2Icon.d.ts +0 -5
  741. package/dist/icons/components/ExposureZeroIcon.d.ts +0 -5
  742. package/dist/icons/components/ExtensionIcon.d.ts +0 -5
  743. package/dist/icons/components/ExtensionOffIcon.d.ts +0 -5
  744. package/dist/icons/components/Face2Icon.d.ts +0 -5
  745. package/dist/icons/components/Face3Icon.d.ts +0 -5
  746. package/dist/icons/components/Face4Icon.d.ts +0 -5
  747. package/dist/icons/components/Face5Icon.d.ts +0 -5
  748. package/dist/icons/components/Face6Icon.d.ts +0 -5
  749. package/dist/icons/components/FaceIcon.d.ts +0 -5
  750. package/dist/icons/components/FaceRetouchingNaturalIcon.d.ts +0 -5
  751. package/dist/icons/components/FaceRetouchingOffIcon.d.ts +0 -5
  752. package/dist/icons/components/FactCheckIcon.d.ts +0 -5
  753. package/dist/icons/components/FactoryIcon.d.ts +0 -5
  754. package/dist/icons/components/FamilyRestroomIcon.d.ts +0 -5
  755. package/dist/icons/components/FastForwardIcon.d.ts +0 -5
  756. package/dist/icons/components/FastRewindIcon.d.ts +0 -5
  757. package/dist/icons/components/FastfoodIcon.d.ts +0 -5
  758. package/dist/icons/components/FavoriteBorderIcon.d.ts +0 -5
  759. package/dist/icons/components/FavoriteIcon.d.ts +0 -5
  760. package/dist/icons/components/FaxIcon.d.ts +0 -5
  761. package/dist/icons/components/FeaturedPlayListIcon.d.ts +0 -5
  762. package/dist/icons/components/FeaturedVideoIcon.d.ts +0 -5
  763. package/dist/icons/components/FeedIcon.d.ts +0 -5
  764. package/dist/icons/components/FeedbackIcon.d.ts +0 -5
  765. package/dist/icons/components/FemaleIcon.d.ts +0 -5
  766. package/dist/icons/components/FenceIcon.d.ts +0 -5
  767. package/dist/icons/components/FestivalIcon.d.ts +0 -5
  768. package/dist/icons/components/FiberDvrIcon.d.ts +0 -5
  769. package/dist/icons/components/FiberManualRecordIcon.d.ts +0 -5
  770. package/dist/icons/components/FiberNewIcon.d.ts +0 -5
  771. package/dist/icons/components/FiberPinIcon.d.ts +0 -5
  772. package/dist/icons/components/FiberSmartRecordIcon.d.ts +0 -5
  773. package/dist/icons/components/FileCopyIcon.d.ts +0 -5
  774. package/dist/icons/components/FileDownloadDoneIcon.d.ts +0 -5
  775. package/dist/icons/components/FileDownloadIcon.d.ts +0 -5
  776. package/dist/icons/components/FileDownloadOffIcon.d.ts +0 -5
  777. package/dist/icons/components/FileOpenIcon.d.ts +0 -5
  778. package/dist/icons/components/FilePresentIcon.d.ts +0 -5
  779. package/dist/icons/components/FileUploadIcon.d.ts +0 -5
  780. package/dist/icons/components/Filter1Icon.d.ts +0 -5
  781. package/dist/icons/components/Filter2Icon.d.ts +0 -5
  782. package/dist/icons/components/Filter3Icon.d.ts +0 -5
  783. package/dist/icons/components/Filter4Icon.d.ts +0 -5
  784. package/dist/icons/components/Filter5Icon.d.ts +0 -5
  785. package/dist/icons/components/Filter6Icon.d.ts +0 -5
  786. package/dist/icons/components/Filter7Icon.d.ts +0 -5
  787. package/dist/icons/components/Filter8Icon.d.ts +0 -5
  788. package/dist/icons/components/Filter9Icon.d.ts +0 -5
  789. package/dist/icons/components/Filter9PlusIcon.d.ts +0 -5
  790. package/dist/icons/components/FilterAltIcon.d.ts +0 -5
  791. package/dist/icons/components/FilterAltOffIcon.d.ts +0 -5
  792. package/dist/icons/components/FilterBAndWIcon.d.ts +0 -5
  793. package/dist/icons/components/FilterCenterFocusIcon.d.ts +0 -5
  794. package/dist/icons/components/FilterDramaIcon.d.ts +0 -5
  795. package/dist/icons/components/FilterFramesIcon.d.ts +0 -5
  796. package/dist/icons/components/FilterHdrIcon.d.ts +0 -5
  797. package/dist/icons/components/FilterIcon.d.ts +0 -5
  798. package/dist/icons/components/FilterListIcon.d.ts +0 -5
  799. package/dist/icons/components/FilterListOffIcon.d.ts +0 -5
  800. package/dist/icons/components/FilterNoneIcon.d.ts +0 -5
  801. package/dist/icons/components/FilterTiltShiftIcon.d.ts +0 -5
  802. package/dist/icons/components/FilterVintageIcon.d.ts +0 -5
  803. package/dist/icons/components/FindInPageIcon.d.ts +0 -5
  804. package/dist/icons/components/FindReplaceIcon.d.ts +0 -5
  805. package/dist/icons/components/FingerprintIcon.d.ts +0 -5
  806. package/dist/icons/components/FireExtinguisherIcon.d.ts +0 -5
  807. package/dist/icons/components/FireHydrantAltIcon.d.ts +0 -5
  808. package/dist/icons/components/FireTruckIcon.d.ts +0 -5
  809. package/dist/icons/components/FireplaceIcon.d.ts +0 -5
  810. package/dist/icons/components/FirstPageIcon.d.ts +0 -5
  811. package/dist/icons/components/FitScreenIcon.d.ts +0 -5
  812. package/dist/icons/components/FitbitIcon.d.ts +0 -5
  813. package/dist/icons/components/FitnessCenterIcon.d.ts +0 -5
  814. package/dist/icons/components/FlagCircleIcon.d.ts +0 -5
  815. package/dist/icons/components/FlagIcon.d.ts +0 -5
  816. package/dist/icons/components/FlakyIcon.d.ts +0 -5
  817. package/dist/icons/components/FlareIcon.d.ts +0 -5
  818. package/dist/icons/components/FlashAutoIcon.d.ts +0 -5
  819. package/dist/icons/components/FlashOffIcon.d.ts +0 -5
  820. package/dist/icons/components/FlashOnIcon.d.ts +0 -5
  821. package/dist/icons/components/FlashlightOffIcon.d.ts +0 -5
  822. package/dist/icons/components/FlashlightOnIcon.d.ts +0 -5
  823. package/dist/icons/components/FlatwareIcon.d.ts +0 -5
  824. package/dist/icons/components/FlightClassIcon.d.ts +0 -5
  825. package/dist/icons/components/FlightIcon.d.ts +0 -5
  826. package/dist/icons/components/FlightLandIcon.d.ts +0 -5
  827. package/dist/icons/components/FlightTakeoffIcon.d.ts +0 -5
  828. package/dist/icons/components/FlipCameraAndroidIcon.d.ts +0 -5
  829. package/dist/icons/components/FlipCameraIosIcon.d.ts +0 -5
  830. package/dist/icons/components/FlipIcon.d.ts +0 -5
  831. package/dist/icons/components/FlipToBackIcon.d.ts +0 -5
  832. package/dist/icons/components/FlipToFrontIcon.d.ts +0 -5
  833. package/dist/icons/components/FloodIcon.d.ts +0 -5
  834. package/dist/icons/components/FluorescentIcon.d.ts +0 -5
  835. package/dist/icons/components/FlutterDashIcon.d.ts +0 -5
  836. package/dist/icons/components/FmdBadIcon.d.ts +0 -5
  837. package/dist/icons/components/FmdGoodIcon.d.ts +0 -5
  838. package/dist/icons/components/FolderCopyIcon.d.ts +0 -5
  839. package/dist/icons/components/FolderDeleteIcon.d.ts +0 -5
  840. package/dist/icons/components/FolderIcon.d.ts +0 -5
  841. package/dist/icons/components/FolderOffIcon.d.ts +0 -5
  842. package/dist/icons/components/FolderOpenIcon.d.ts +0 -5
  843. package/dist/icons/components/FolderSharedIcon.d.ts +0 -5
  844. package/dist/icons/components/FolderSpecialIcon.d.ts +0 -5
  845. package/dist/icons/components/FolderZipIcon.d.ts +0 -5
  846. package/dist/icons/components/FollowTheSignsIcon.d.ts +0 -5
  847. package/dist/icons/components/FontDownloadIcon.d.ts +0 -5
  848. package/dist/icons/components/FontDownloadOffIcon.d.ts +0 -5
  849. package/dist/icons/components/FoodBankIcon.d.ts +0 -5
  850. package/dist/icons/components/ForestIcon.d.ts +0 -5
  851. package/dist/icons/components/ForkLeftIcon.d.ts +0 -5
  852. package/dist/icons/components/ForkRightIcon.d.ts +0 -5
  853. package/dist/icons/components/FormatAlignCenterIcon.d.ts +0 -5
  854. package/dist/icons/components/FormatAlignJustifyIcon.d.ts +0 -5
  855. package/dist/icons/components/FormatAlignLeftIcon.d.ts +0 -5
  856. package/dist/icons/components/FormatAlignRightIcon.d.ts +0 -5
  857. package/dist/icons/components/FormatBoldIcon.d.ts +0 -5
  858. package/dist/icons/components/FormatClearIcon.d.ts +0 -5
  859. package/dist/icons/components/FormatColorFillIcon.d.ts +0 -5
  860. package/dist/icons/components/FormatColorResetIcon.d.ts +0 -5
  861. package/dist/icons/components/FormatColorTextIcon.d.ts +0 -5
  862. package/dist/icons/components/FormatIndentDecreaseIcon.d.ts +0 -5
  863. package/dist/icons/components/FormatIndentIncreaseIcon.d.ts +0 -5
  864. package/dist/icons/components/FormatItalicIcon.d.ts +0 -5
  865. package/dist/icons/components/FormatLineSpacingIcon.d.ts +0 -5
  866. package/dist/icons/components/FormatListBulletedIcon.d.ts +0 -5
  867. package/dist/icons/components/FormatListNumberedIcon.d.ts +0 -5
  868. package/dist/icons/components/FormatListNumberedRtlIcon.d.ts +0 -5
  869. package/dist/icons/components/FormatOverlineIcon.d.ts +0 -5
  870. package/dist/icons/components/FormatPaintIcon.d.ts +0 -5
  871. package/dist/icons/components/FormatQuoteIcon.d.ts +0 -5
  872. package/dist/icons/components/FormatShapesIcon.d.ts +0 -5
  873. package/dist/icons/components/FormatSizeIcon.d.ts +0 -5
  874. package/dist/icons/components/FormatStrikethroughIcon.d.ts +0 -5
  875. package/dist/icons/components/FormatTextdirectionLToRIcon.d.ts +0 -5
  876. package/dist/icons/components/FormatTextdirectionRToLIcon.d.ts +0 -5
  877. package/dist/icons/components/FormatUnderlinedIcon.d.ts +0 -5
  878. package/dist/icons/components/FortIcon.d.ts +0 -5
  879. package/dist/icons/components/ForumIcon.d.ts +0 -5
  880. package/dist/icons/components/Forward10Icon.d.ts +0 -5
  881. package/dist/icons/components/Forward30Icon.d.ts +0 -5
  882. package/dist/icons/components/Forward5Icon.d.ts +0 -5
  883. package/dist/icons/components/ForwardIcon.d.ts +0 -5
  884. package/dist/icons/components/ForwardToInboxIcon.d.ts +0 -5
  885. package/dist/icons/components/FoundationIcon.d.ts +0 -5
  886. package/dist/icons/components/FreeBreakfastIcon.d.ts +0 -5
  887. package/dist/icons/components/FreeCancellationIcon.d.ts +0 -5
  888. package/dist/icons/components/FrontHandIcon.d.ts +0 -5
  889. package/dist/icons/components/FullscreenExitIcon.d.ts +0 -5
  890. package/dist/icons/components/FullscreenIcon.d.ts +0 -5
  891. package/dist/icons/components/FunctionsIcon.d.ts +0 -5
  892. package/dist/icons/components/GMobiledataIcon.d.ts +0 -5
  893. package/dist/icons/components/GTranslateIcon.d.ts +0 -5
  894. package/dist/icons/components/GamepadIcon.d.ts +0 -5
  895. package/dist/icons/components/GamesIcon.d.ts +0 -5
  896. package/dist/icons/components/GarageIcon.d.ts +0 -5
  897. package/dist/icons/components/GasMeterIcon.d.ts +0 -5
  898. package/dist/icons/components/GavelIcon.d.ts +0 -5
  899. package/dist/icons/components/GeneratingTokensIcon.d.ts +0 -5
  900. package/dist/icons/components/GestureIcon.d.ts +0 -5
  901. package/dist/icons/components/GetAppIcon.d.ts +0 -5
  902. package/dist/icons/components/GifBoxIcon.d.ts +0 -5
  903. package/dist/icons/components/GifIcon.d.ts +0 -5
  904. package/dist/icons/components/GirlIcon.d.ts +0 -5
  905. package/dist/icons/components/GiteIcon.d.ts +0 -5
  906. package/dist/icons/components/GolfCourseIcon.d.ts +0 -5
  907. package/dist/icons/components/GppBadIcon.d.ts +0 -5
  908. package/dist/icons/components/GppGoodIcon.d.ts +0 -5
  909. package/dist/icons/components/GppMaybeIcon.d.ts +0 -5
  910. package/dist/icons/components/GpsFixedIcon.d.ts +0 -5
  911. package/dist/icons/components/GpsNotFixedIcon.d.ts +0 -5
  912. package/dist/icons/components/GpsOffIcon.d.ts +0 -5
  913. package/dist/icons/components/GradeIcon.d.ts +0 -5
  914. package/dist/icons/components/GradientIcon.d.ts +0 -5
  915. package/dist/icons/components/GradingIcon.d.ts +0 -5
  916. package/dist/icons/components/GrainIcon.d.ts +0 -5
  917. package/dist/icons/components/GraphicEqIcon.d.ts +0 -5
  918. package/dist/icons/components/GrassIcon.d.ts +0 -5
  919. package/dist/icons/components/Grid3x3Icon.d.ts +0 -5
  920. package/dist/icons/components/Grid4x4Icon.d.ts +0 -5
  921. package/dist/icons/components/GridGoldenratioIcon.d.ts +0 -5
  922. package/dist/icons/components/GridOffIcon.d.ts +0 -5
  923. package/dist/icons/components/GridOnIcon.d.ts +0 -5
  924. package/dist/icons/components/GridViewIcon.d.ts +0 -5
  925. package/dist/icons/components/GroupAddIcon.d.ts +0 -5
  926. package/dist/icons/components/GroupIcon.d.ts +0 -5
  927. package/dist/icons/components/GroupOffIcon.d.ts +0 -5
  928. package/dist/icons/components/GroupRemoveIcon.d.ts +0 -5
  929. package/dist/icons/components/GroupWorkIcon.d.ts +0 -5
  930. package/dist/icons/components/Groups2Icon.d.ts +0 -5
  931. package/dist/icons/components/Groups3Icon.d.ts +0 -5
  932. package/dist/icons/components/GroupsIcon.d.ts +0 -5
  933. package/dist/icons/components/HMobiledataIcon.d.ts +0 -5
  934. package/dist/icons/components/HPlusMobiledataIcon.d.ts +0 -5
  935. package/dist/icons/components/HailIcon.d.ts +0 -5
  936. package/dist/icons/components/HandshakeIcon.d.ts +0 -5
  937. package/dist/icons/components/HandymanIcon.d.ts +0 -5
  938. package/dist/icons/components/HardwareIcon.d.ts +0 -5
  939. package/dist/icons/components/HdIcon.d.ts +0 -5
  940. package/dist/icons/components/HdrAutoIcon.d.ts +0 -5
  941. package/dist/icons/components/HdrAutoSelectIcon.d.ts +0 -5
  942. package/dist/icons/components/HdrEnhancedSelectIcon.d.ts +0 -5
  943. package/dist/icons/components/HdrOffIcon.d.ts +0 -5
  944. package/dist/icons/components/HdrOffSelectIcon.d.ts +0 -5
  945. package/dist/icons/components/HdrOnIcon.d.ts +0 -5
  946. package/dist/icons/components/HdrOnSelectIcon.d.ts +0 -5
  947. package/dist/icons/components/HdrPlusIcon.d.ts +0 -5
  948. package/dist/icons/components/HdrStrongIcon.d.ts +0 -5
  949. package/dist/icons/components/HdrWeakIcon.d.ts +0 -5
  950. package/dist/icons/components/HeadphonesBatteryIcon.d.ts +0 -5
  951. package/dist/icons/components/HeadphonesIcon.d.ts +0 -5
  952. package/dist/icons/components/HeadsetIcon.d.ts +0 -5
  953. package/dist/icons/components/HeadsetMicIcon.d.ts +0 -5
  954. package/dist/icons/components/HeadsetOffIcon.d.ts +0 -5
  955. package/dist/icons/components/HealingIcon.d.ts +0 -5
  956. package/dist/icons/components/HealthAndSafetyIcon.d.ts +0 -5
  957. package/dist/icons/components/HearingDisabledIcon.d.ts +0 -5
  958. package/dist/icons/components/HearingIcon.d.ts +0 -5
  959. package/dist/icons/components/HeartBrokenIcon.d.ts +0 -5
  960. package/dist/icons/components/HeatPumpIcon.d.ts +0 -5
  961. package/dist/icons/components/HeightIcon.d.ts +0 -5
  962. package/dist/icons/components/HelpCenterIcon.d.ts +0 -5
  963. package/dist/icons/components/HelpIcon.d.ts +0 -5
  964. package/dist/icons/components/HelpOutlineIcon.d.ts +0 -5
  965. package/dist/icons/components/HevcIcon.d.ts +0 -5
  966. package/dist/icons/components/HexagonIcon.d.ts +0 -5
  967. package/dist/icons/components/HideImageIcon.d.ts +0 -5
  968. package/dist/icons/components/HideSourceIcon.d.ts +0 -5
  969. package/dist/icons/components/HighQualityIcon.d.ts +0 -5
  970. package/dist/icons/components/HighlightAltIcon.d.ts +0 -5
  971. package/dist/icons/components/HighlightIcon.d.ts +0 -5
  972. package/dist/icons/components/HighlightOffIcon.d.ts +0 -5
  973. package/dist/icons/components/HikingIcon.d.ts +0 -5
  974. package/dist/icons/components/HistoryEduIcon.d.ts +0 -5
  975. package/dist/icons/components/HistoryIcon.d.ts +0 -5
  976. package/dist/icons/components/HistoryToggleOffIcon.d.ts +0 -5
  977. package/dist/icons/components/HiveIcon.d.ts +0 -5
  978. package/dist/icons/components/HlsIcon.d.ts +0 -5
  979. package/dist/icons/components/HlsOffIcon.d.ts +0 -5
  980. package/dist/icons/components/HolidayVillageIcon.d.ts +0 -5
  981. package/dist/icons/components/HomeIcon.d.ts +0 -5
  982. package/dist/icons/components/HomeMaxIcon.d.ts +0 -5
  983. package/dist/icons/components/HomeMiniIcon.d.ts +0 -5
  984. package/dist/icons/components/HomeRepairServiceIcon.d.ts +0 -5
  985. package/dist/icons/components/HomeWorkIcon.d.ts +0 -5
  986. package/dist/icons/components/HorizontalDistributeIcon.d.ts +0 -5
  987. package/dist/icons/components/HorizontalRuleIcon.d.ts +0 -5
  988. package/dist/icons/components/HorizontalSplitIcon.d.ts +0 -5
  989. package/dist/icons/components/HotTubIcon.d.ts +0 -5
  990. package/dist/icons/components/HotelClassIcon.d.ts +0 -5
  991. package/dist/icons/components/HotelIcon.d.ts +0 -5
  992. package/dist/icons/components/HourglassBottomIcon.d.ts +0 -5
  993. package/dist/icons/components/HourglassDisabledIcon.d.ts +0 -5
  994. package/dist/icons/components/HourglassEmptyIcon.d.ts +0 -5
  995. package/dist/icons/components/HourglassFullIcon.d.ts +0 -5
  996. package/dist/icons/components/HourglassTopIcon.d.ts +0 -5
  997. package/dist/icons/components/HouseIcon.d.ts +0 -5
  998. package/dist/icons/components/HouseSidingIcon.d.ts +0 -5
  999. package/dist/icons/components/HouseboatIcon.d.ts +0 -5
  1000. package/dist/icons/components/HowToRegIcon.d.ts +0 -5
  1001. package/dist/icons/components/HowToVoteIcon.d.ts +0 -5
  1002. package/dist/icons/components/HtmlIcon.d.ts +0 -5
  1003. package/dist/icons/components/HttpIcon.d.ts +0 -5
  1004. package/dist/icons/components/HttpsIcon.d.ts +0 -5
  1005. package/dist/icons/components/HubIcon.d.ts +0 -5
  1006. package/dist/icons/components/HvacIcon.d.ts +0 -5
  1007. package/dist/icons/components/IceSkatingIcon.d.ts +0 -5
  1008. package/dist/icons/components/IcecreamIcon.d.ts +0 -5
  1009. package/dist/icons/components/ImageAspectRatioIcon.d.ts +0 -5
  1010. package/dist/icons/components/ImageIcon.d.ts +0 -5
  1011. package/dist/icons/components/ImageNotSupportedIcon.d.ts +0 -5
  1012. package/dist/icons/components/ImageSearchIcon.d.ts +0 -5
  1013. package/dist/icons/components/ImagesearchRollerIcon.d.ts +0 -5
  1014. package/dist/icons/components/ImportContactsIcon.d.ts +0 -5
  1015. package/dist/icons/components/ImportExportIcon.d.ts +0 -5
  1016. package/dist/icons/components/ImportantDevicesIcon.d.ts +0 -5
  1017. package/dist/icons/components/InboxIcon.d.ts +0 -5
  1018. package/dist/icons/components/IncompleteCircleIcon.d.ts +0 -5
  1019. package/dist/icons/components/IndeterminateCheckBoxIcon.d.ts +0 -5
  1020. package/dist/icons/components/InfoIcon.d.ts +0 -5
  1021. package/dist/icons/components/InputIcon.d.ts +0 -5
  1022. package/dist/icons/components/InsertChartIcon.d.ts +0 -5
  1023. package/dist/icons/components/InsertChartOutlinedIcon.d.ts +0 -5
  1024. package/dist/icons/components/InsertCommentIcon.d.ts +0 -5
  1025. package/dist/icons/components/InsertDriveFileIcon.d.ts +0 -5
  1026. package/dist/icons/components/InsertEmoticonIcon.d.ts +0 -5
  1027. package/dist/icons/components/InsertInvitationIcon.d.ts +0 -5
  1028. package/dist/icons/components/InsertLinkIcon.d.ts +0 -5
  1029. package/dist/icons/components/InsertPageBreakIcon.d.ts +0 -5
  1030. package/dist/icons/components/InsertPhotoIcon.d.ts +0 -5
  1031. package/dist/icons/components/InsightsIcon.d.ts +0 -5
  1032. package/dist/icons/components/InstallDesktopIcon.d.ts +0 -5
  1033. package/dist/icons/components/InstallMobileIcon.d.ts +0 -5
  1034. package/dist/icons/components/IntegrationInstructionsIcon.d.ts +0 -5
  1035. package/dist/icons/components/InterestsIcon.d.ts +0 -5
  1036. package/dist/icons/components/InterpreterModeIcon.d.ts +0 -5
  1037. package/dist/icons/components/Inventory2Icon.d.ts +0 -5
  1038. package/dist/icons/components/InventoryIcon.d.ts +0 -5
  1039. package/dist/icons/components/InvertColorsIcon.d.ts +0 -5
  1040. package/dist/icons/components/InvertColorsOffIcon.d.ts +0 -5
  1041. package/dist/icons/components/IosShareIcon.d.ts +0 -5
  1042. package/dist/icons/components/IronIcon.d.ts +0 -5
  1043. package/dist/icons/components/IsoIcon.d.ts +0 -5
  1044. package/dist/icons/components/JavascriptIcon.d.ts +0 -5
  1045. package/dist/icons/components/JoinFullIcon.d.ts +0 -5
  1046. package/dist/icons/components/JoinInnerIcon.d.ts +0 -5
  1047. package/dist/icons/components/JoinLeftIcon.d.ts +0 -5
  1048. package/dist/icons/components/JoinRightIcon.d.ts +0 -5
  1049. package/dist/icons/components/KayakingIcon.d.ts +0 -5
  1050. package/dist/icons/components/KebabDiningIcon.d.ts +0 -5
  1051. package/dist/icons/components/KeyIcon.d.ts +0 -5
  1052. package/dist/icons/components/KeyOffIcon.d.ts +0 -5
  1053. package/dist/icons/components/KeyboardAltIcon.d.ts +0 -5
  1054. package/dist/icons/components/KeyboardArrowDownIcon.d.ts +0 -5
  1055. package/dist/icons/components/KeyboardArrowLeftIcon.d.ts +0 -5
  1056. package/dist/icons/components/KeyboardArrowRightIcon.d.ts +0 -5
  1057. package/dist/icons/components/KeyboardArrowUpIcon.d.ts +0 -5
  1058. package/dist/icons/components/KeyboardBackspaceIcon.d.ts +0 -5
  1059. package/dist/icons/components/KeyboardCapslockIcon.d.ts +0 -5
  1060. package/dist/icons/components/KeyboardCommandKeyIcon.d.ts +0 -5
  1061. package/dist/icons/components/KeyboardControlKeyIcon.d.ts +0 -5
  1062. package/dist/icons/components/KeyboardDoubleArrowDownIcon.d.ts +0 -5
  1063. package/dist/icons/components/KeyboardDoubleArrowLeftIcon.d.ts +0 -5
  1064. package/dist/icons/components/KeyboardDoubleArrowRightIcon.d.ts +0 -5
  1065. package/dist/icons/components/KeyboardDoubleArrowUpIcon.d.ts +0 -5
  1066. package/dist/icons/components/KeyboardHideIcon.d.ts +0 -5
  1067. package/dist/icons/components/KeyboardIcon.d.ts +0 -5
  1068. package/dist/icons/components/KeyboardOptionKeyIcon.d.ts +0 -5
  1069. package/dist/icons/components/KeyboardReturnIcon.d.ts +0 -5
  1070. package/dist/icons/components/KeyboardTabIcon.d.ts +0 -5
  1071. package/dist/icons/components/KeyboardVoiceIcon.d.ts +0 -5
  1072. package/dist/icons/components/KingBedIcon.d.ts +0 -5
  1073. package/dist/icons/components/KitchenIcon.d.ts +0 -5
  1074. package/dist/icons/components/KitesurfingIcon.d.ts +0 -5
  1075. package/dist/icons/components/LabelIcon.d.ts +0 -5
  1076. package/dist/icons/components/LabelImportantIcon.d.ts +0 -5
  1077. package/dist/icons/components/LabelOffIcon.d.ts +0 -5
  1078. package/dist/icons/components/LanIcon.d.ts +0 -5
  1079. package/dist/icons/components/LandscapeIcon.d.ts +0 -5
  1080. package/dist/icons/components/LandslideIcon.d.ts +0 -5
  1081. package/dist/icons/components/LanguageIcon.d.ts +0 -5
  1082. package/dist/icons/components/LaptopChromebookIcon.d.ts +0 -5
  1083. package/dist/icons/components/LaptopIcon.d.ts +0 -5
  1084. package/dist/icons/components/LaptopMacIcon.d.ts +0 -5
  1085. package/dist/icons/components/LaptopWindowsIcon.d.ts +0 -5
  1086. package/dist/icons/components/LastPageIcon.d.ts +0 -5
  1087. package/dist/icons/components/LaunchIcon.d.ts +0 -5
  1088. package/dist/icons/components/LayersClearIcon.d.ts +0 -5
  1089. package/dist/icons/components/LayersIcon.d.ts +0 -5
  1090. package/dist/icons/components/LeaderboardIcon.d.ts +0 -5
  1091. package/dist/icons/components/LeakAddIcon.d.ts +0 -5
  1092. package/dist/icons/components/LeakRemoveIcon.d.ts +0 -5
  1093. package/dist/icons/components/LegendToggleIcon.d.ts +0 -5
  1094. package/dist/icons/components/LensBlurIcon.d.ts +0 -5
  1095. package/dist/icons/components/LensIcon.d.ts +0 -5
  1096. package/dist/icons/components/LibraryAddCheckIcon.d.ts +0 -5
  1097. package/dist/icons/components/LibraryAddIcon.d.ts +0 -5
  1098. package/dist/icons/components/LibraryBooksIcon.d.ts +0 -5
  1099. package/dist/icons/components/LibraryMusicIcon.d.ts +0 -5
  1100. package/dist/icons/components/LightIcon.d.ts +0 -5
  1101. package/dist/icons/components/LightModeIcon.d.ts +0 -5
  1102. package/dist/icons/components/LightbulbCircleIcon.d.ts +0 -5
  1103. package/dist/icons/components/LightbulbIcon.d.ts +0 -5
  1104. package/dist/icons/components/LineAxisIcon.d.ts +0 -5
  1105. package/dist/icons/components/LineStyleIcon.d.ts +0 -5
  1106. package/dist/icons/components/LineWeightIcon.d.ts +0 -5
  1107. package/dist/icons/components/LinearScaleIcon.d.ts +0 -5
  1108. package/dist/icons/components/LinkIcon.d.ts +0 -5
  1109. package/dist/icons/components/LinkOffIcon.d.ts +0 -5
  1110. package/dist/icons/components/LinkedCameraIcon.d.ts +0 -5
  1111. package/dist/icons/components/LiquorIcon.d.ts +0 -5
  1112. package/dist/icons/components/ListAltIcon.d.ts +0 -5
  1113. package/dist/icons/components/ListIcon.d.ts +0 -5
  1114. package/dist/icons/components/LiveHelpIcon.d.ts +0 -5
  1115. package/dist/icons/components/LiveTvIcon.d.ts +0 -5
  1116. package/dist/icons/components/LivingIcon.d.ts +0 -5
  1117. package/dist/icons/components/LocalActivityIcon.d.ts +0 -5
  1118. package/dist/icons/components/LocalAirportIcon.d.ts +0 -5
  1119. package/dist/icons/components/LocalAtmIcon.d.ts +0 -5
  1120. package/dist/icons/components/LocalBarIcon.d.ts +0 -5
  1121. package/dist/icons/components/LocalCafeIcon.d.ts +0 -5
  1122. package/dist/icons/components/LocalCarWashIcon.d.ts +0 -5
  1123. package/dist/icons/components/LocalConvenienceStoreIcon.d.ts +0 -5
  1124. package/dist/icons/components/LocalDiningIcon.d.ts +0 -5
  1125. package/dist/icons/components/LocalDrinkIcon.d.ts +0 -5
  1126. package/dist/icons/components/LocalFireDepartmentIcon.d.ts +0 -5
  1127. package/dist/icons/components/LocalFloristIcon.d.ts +0 -5
  1128. package/dist/icons/components/LocalGasStationIcon.d.ts +0 -5
  1129. package/dist/icons/components/LocalGroceryStoreIcon.d.ts +0 -5
  1130. package/dist/icons/components/LocalHospitalIcon.d.ts +0 -5
  1131. package/dist/icons/components/LocalHotelIcon.d.ts +0 -5
  1132. package/dist/icons/components/LocalLaundryServiceIcon.d.ts +0 -5
  1133. package/dist/icons/components/LocalLibraryIcon.d.ts +0 -5
  1134. package/dist/icons/components/LocalMallIcon.d.ts +0 -5
  1135. package/dist/icons/components/LocalMoviesIcon.d.ts +0 -5
  1136. package/dist/icons/components/LocalOfferIcon.d.ts +0 -5
  1137. package/dist/icons/components/LocalParkingIcon.d.ts +0 -5
  1138. package/dist/icons/components/LocalPharmacyIcon.d.ts +0 -5
  1139. package/dist/icons/components/LocalPhoneIcon.d.ts +0 -5
  1140. package/dist/icons/components/LocalPizzaIcon.d.ts +0 -5
  1141. package/dist/icons/components/LocalPlayIcon.d.ts +0 -5
  1142. package/dist/icons/components/LocalPoliceIcon.d.ts +0 -5
  1143. package/dist/icons/components/LocalPostOfficeIcon.d.ts +0 -5
  1144. package/dist/icons/components/LocalPrintshopIcon.d.ts +0 -5
  1145. package/dist/icons/components/LocalSeeIcon.d.ts +0 -5
  1146. package/dist/icons/components/LocalShippingIcon.d.ts +0 -5
  1147. package/dist/icons/components/LocalTaxiIcon.d.ts +0 -5
  1148. package/dist/icons/components/LocationCityIcon.d.ts +0 -5
  1149. package/dist/icons/components/LocationDisabledIcon.d.ts +0 -5
  1150. package/dist/icons/components/LocationOffIcon.d.ts +0 -5
  1151. package/dist/icons/components/LocationOnIcon.d.ts +0 -5
  1152. package/dist/icons/components/LocationSearchingIcon.d.ts +0 -5
  1153. package/dist/icons/components/LockClockIcon.d.ts +0 -5
  1154. package/dist/icons/components/LockIcon.d.ts +0 -5
  1155. package/dist/icons/components/LockOpenIcon.d.ts +0 -5
  1156. package/dist/icons/components/LockPersonIcon.d.ts +0 -5
  1157. package/dist/icons/components/LockResetIcon.d.ts +0 -5
  1158. package/dist/icons/components/LoginIcon.d.ts +0 -5
  1159. package/dist/icons/components/LogoDevIcon.d.ts +0 -5
  1160. package/dist/icons/components/LogoutIcon.d.ts +0 -5
  1161. package/dist/icons/components/Looks3Icon.d.ts +0 -5
  1162. package/dist/icons/components/Looks4Icon.d.ts +0 -5
  1163. package/dist/icons/components/Looks5Icon.d.ts +0 -5
  1164. package/dist/icons/components/Looks6Icon.d.ts +0 -5
  1165. package/dist/icons/components/LooksIcon.d.ts +0 -5
  1166. package/dist/icons/components/LooksOneIcon.d.ts +0 -5
  1167. package/dist/icons/components/LooksTwoIcon.d.ts +0 -5
  1168. package/dist/icons/components/LoopIcon.d.ts +0 -5
  1169. package/dist/icons/components/LoupeIcon.d.ts +0 -5
  1170. package/dist/icons/components/LowPriorityIcon.d.ts +0 -5
  1171. package/dist/icons/components/LoyaltyIcon.d.ts +0 -5
  1172. package/dist/icons/components/LteMobiledataIcon.d.ts +0 -5
  1173. package/dist/icons/components/LtePlusMobiledataIcon.d.ts +0 -5
  1174. package/dist/icons/components/LuggageIcon.d.ts +0 -5
  1175. package/dist/icons/components/LunchDiningIcon.d.ts +0 -5
  1176. package/dist/icons/components/LyricsIcon.d.ts +0 -5
  1177. package/dist/icons/components/MacroOffIcon.d.ts +0 -5
  1178. package/dist/icons/components/MailIcon.d.ts +0 -5
  1179. package/dist/icons/components/MailLockIcon.d.ts +0 -5
  1180. package/dist/icons/components/MailOutlineIcon.d.ts +0 -5
  1181. package/dist/icons/components/MaleIcon.d.ts +0 -5
  1182. package/dist/icons/components/Man2Icon.d.ts +0 -5
  1183. package/dist/icons/components/Man3Icon.d.ts +0 -5
  1184. package/dist/icons/components/Man4Icon.d.ts +0 -5
  1185. package/dist/icons/components/ManIcon.d.ts +0 -5
  1186. package/dist/icons/components/ManageAccountsIcon.d.ts +0 -5
  1187. package/dist/icons/components/ManageHistoryIcon.d.ts +0 -5
  1188. package/dist/icons/components/ManageSearchIcon.d.ts +0 -5
  1189. package/dist/icons/components/MapIcon.d.ts +0 -5
  1190. package/dist/icons/components/MapsHomeWorkIcon.d.ts +0 -5
  1191. package/dist/icons/components/MapsUgcIcon.d.ts +0 -5
  1192. package/dist/icons/components/MarginIcon.d.ts +0 -5
  1193. package/dist/icons/components/MarkAsUnreadIcon.d.ts +0 -5
  1194. package/dist/icons/components/MarkChatReadIcon.d.ts +0 -5
  1195. package/dist/icons/components/MarkChatUnreadIcon.d.ts +0 -5
  1196. package/dist/icons/components/MarkEmailReadIcon.d.ts +0 -5
  1197. package/dist/icons/components/MarkEmailUnreadIcon.d.ts +0 -5
  1198. package/dist/icons/components/MarkUnreadChatAltIcon.d.ts +0 -5
  1199. package/dist/icons/components/MarkunreadIcon.d.ts +0 -5
  1200. package/dist/icons/components/MarkunreadMailboxIcon.d.ts +0 -5
  1201. package/dist/icons/components/MasksIcon.d.ts +0 -5
  1202. package/dist/icons/components/MaximizeIcon.d.ts +0 -5
  1203. package/dist/icons/components/MediaBluetoothOffIcon.d.ts +0 -5
  1204. package/dist/icons/components/MediaBluetoothOnIcon.d.ts +0 -5
  1205. package/dist/icons/components/MediationIcon.d.ts +0 -5
  1206. package/dist/icons/components/MedicalInformationIcon.d.ts +0 -5
  1207. package/dist/icons/components/MedicalServicesIcon.d.ts +0 -5
  1208. package/dist/icons/components/MedicationIcon.d.ts +0 -5
  1209. package/dist/icons/components/MedicationLiquidIcon.d.ts +0 -5
  1210. package/dist/icons/components/MeetingRoomIcon.d.ts +0 -5
  1211. package/dist/icons/components/MemoryIcon.d.ts +0 -5
  1212. package/dist/icons/components/MenuBookIcon.d.ts +0 -5
  1213. package/dist/icons/components/MenuIcon.d.ts +0 -5
  1214. package/dist/icons/components/MenuOpenIcon.d.ts +0 -5
  1215. package/dist/icons/components/MergeIcon.d.ts +0 -5
  1216. package/dist/icons/components/MergeTypeIcon.d.ts +0 -5
  1217. package/dist/icons/components/MessageIcon.d.ts +0 -5
  1218. package/dist/icons/components/MicExternalOffIcon.d.ts +0 -5
  1219. package/dist/icons/components/MicExternalOnIcon.d.ts +0 -5
  1220. package/dist/icons/components/MicIcon.d.ts +0 -5
  1221. package/dist/icons/components/MicNoneIcon.d.ts +0 -5
  1222. package/dist/icons/components/MicOffIcon.d.ts +0 -5
  1223. package/dist/icons/components/MicrowaveIcon.d.ts +0 -5
  1224. package/dist/icons/components/MilitaryTechIcon.d.ts +0 -5
  1225. package/dist/icons/components/MinimizeIcon.d.ts +0 -5
  1226. package/dist/icons/components/MinorCrashIcon.d.ts +0 -5
  1227. package/dist/icons/components/MiscellaneousServicesIcon.d.ts +0 -5
  1228. package/dist/icons/components/MissedVideoCallIcon.d.ts +0 -5
  1229. package/dist/icons/components/MmsIcon.d.ts +0 -5
  1230. package/dist/icons/components/MobileFriendlyIcon.d.ts +0 -5
  1231. package/dist/icons/components/MobileOffIcon.d.ts +0 -5
  1232. package/dist/icons/components/MobileScreenShareIcon.d.ts +0 -5
  1233. package/dist/icons/components/MobiledataOffIcon.d.ts +0 -5
  1234. package/dist/icons/components/ModeCommentIcon.d.ts +0 -5
  1235. package/dist/icons/components/ModeEditIcon.d.ts +0 -5
  1236. package/dist/icons/components/ModeEditOutlineIcon.d.ts +0 -5
  1237. package/dist/icons/components/ModeFanOffIcon.d.ts +0 -5
  1238. package/dist/icons/components/ModeIcon.d.ts +0 -5
  1239. package/dist/icons/components/ModeNightIcon.d.ts +0 -5
  1240. package/dist/icons/components/ModeOfTravelIcon.d.ts +0 -5
  1241. package/dist/icons/components/ModeStandbyIcon.d.ts +0 -5
  1242. package/dist/icons/components/ModelTrainingIcon.d.ts +0 -5
  1243. package/dist/icons/components/MonetizationOnIcon.d.ts +0 -5
  1244. package/dist/icons/components/MoneyIcon.d.ts +0 -5
  1245. package/dist/icons/components/MoneyOffCsredIcon.d.ts +0 -5
  1246. package/dist/icons/components/MoneyOffIcon.d.ts +0 -5
  1247. package/dist/icons/components/MonitorHeartIcon.d.ts +0 -5
  1248. package/dist/icons/components/MonitorIcon.d.ts +0 -5
  1249. package/dist/icons/components/MonitorWeightIcon.d.ts +0 -5
  1250. package/dist/icons/components/MonochromePhotosIcon.d.ts +0 -5
  1251. package/dist/icons/components/MoodBadIcon.d.ts +0 -5
  1252. package/dist/icons/components/MoodIcon.d.ts +0 -5
  1253. package/dist/icons/components/MopedIcon.d.ts +0 -5
  1254. package/dist/icons/components/MoreHorizIcon.d.ts +0 -5
  1255. package/dist/icons/components/MoreIcon.d.ts +0 -5
  1256. package/dist/icons/components/MoreTimeIcon.d.ts +0 -5
  1257. package/dist/icons/components/MoreVertIcon.d.ts +0 -5
  1258. package/dist/icons/components/MosqueIcon.d.ts +0 -5
  1259. package/dist/icons/components/MotionPhotosAutoIcon.d.ts +0 -5
  1260. package/dist/icons/components/MotionPhotosOffIcon.d.ts +0 -5
  1261. package/dist/icons/components/MotionPhotosOnIcon.d.ts +0 -5
  1262. package/dist/icons/components/MotionPhotosPauseIcon.d.ts +0 -5
  1263. package/dist/icons/components/MotionPhotosPausedIcon.d.ts +0 -5
  1264. package/dist/icons/components/MouseIcon.d.ts +0 -5
  1265. package/dist/icons/components/MoveDownIcon.d.ts +0 -5
  1266. package/dist/icons/components/MoveToInboxIcon.d.ts +0 -5
  1267. package/dist/icons/components/MoveUpIcon.d.ts +0 -5
  1268. package/dist/icons/components/MovieCreationIcon.d.ts +0 -5
  1269. package/dist/icons/components/MovieFilterIcon.d.ts +0 -5
  1270. package/dist/icons/components/MovieIcon.d.ts +0 -5
  1271. package/dist/icons/components/MovingIcon.d.ts +0 -5
  1272. package/dist/icons/components/MpIcon.d.ts +0 -5
  1273. package/dist/icons/components/MultilineChartIcon.d.ts +0 -5
  1274. package/dist/icons/components/MultipleStopIcon.d.ts +0 -5
  1275. package/dist/icons/components/MuseumIcon.d.ts +0 -5
  1276. package/dist/icons/components/MusicNoteIcon.d.ts +0 -5
  1277. package/dist/icons/components/MusicOffIcon.d.ts +0 -5
  1278. package/dist/icons/components/MusicVideoIcon.d.ts +0 -5
  1279. package/dist/icons/components/MyLocationIcon.d.ts +0 -5
  1280. package/dist/icons/components/NatIcon.d.ts +0 -5
  1281. package/dist/icons/components/NatureIcon.d.ts +0 -5
  1282. package/dist/icons/components/NaturePeopleIcon.d.ts +0 -5
  1283. package/dist/icons/components/NavigateBeforeIcon.d.ts +0 -5
  1284. package/dist/icons/components/NavigateNextIcon.d.ts +0 -5
  1285. package/dist/icons/components/NavigationIcon.d.ts +0 -5
  1286. package/dist/icons/components/NearMeDisabledIcon.d.ts +0 -5
  1287. package/dist/icons/components/NearMeIcon.d.ts +0 -5
  1288. package/dist/icons/components/NearbyErrorIcon.d.ts +0 -5
  1289. package/dist/icons/components/NearbyOffIcon.d.ts +0 -5
  1290. package/dist/icons/components/NestCamWiredStandIcon.d.ts +0 -5
  1291. package/dist/icons/components/NetworkCellIcon.d.ts +0 -5
  1292. package/dist/icons/components/NetworkCheckIcon.d.ts +0 -5
  1293. package/dist/icons/components/NetworkLockedIcon.d.ts +0 -5
  1294. package/dist/icons/components/NetworkPingIcon.d.ts +0 -5
  1295. package/dist/icons/components/NetworkWifi1BarIcon.d.ts +0 -5
  1296. package/dist/icons/components/NetworkWifi2BarIcon.d.ts +0 -5
  1297. package/dist/icons/components/NetworkWifi3BarIcon.d.ts +0 -5
  1298. package/dist/icons/components/NetworkWifiIcon.d.ts +0 -5
  1299. package/dist/icons/components/NewLabelIcon.d.ts +0 -5
  1300. package/dist/icons/components/NewReleasesIcon.d.ts +0 -5
  1301. package/dist/icons/components/NewspaperIcon.d.ts +0 -5
  1302. package/dist/icons/components/NextPlanIcon.d.ts +0 -5
  1303. package/dist/icons/components/NextWeekIcon.d.ts +0 -5
  1304. package/dist/icons/components/NfcIcon.d.ts +0 -5
  1305. package/dist/icons/components/NightShelterIcon.d.ts +0 -5
  1306. package/dist/icons/components/NightlifeIcon.d.ts +0 -5
  1307. package/dist/icons/components/NightlightIcon.d.ts +0 -5
  1308. package/dist/icons/components/NightlightRoundIcon.d.ts +0 -5
  1309. package/dist/icons/components/NightsStayIcon.d.ts +0 -5
  1310. package/dist/icons/components/NoAccountsIcon.d.ts +0 -5
  1311. package/dist/icons/components/NoAdultContentIcon.d.ts +0 -5
  1312. package/dist/icons/components/NoBackpackIcon.d.ts +0 -5
  1313. package/dist/icons/components/NoCellIcon.d.ts +0 -5
  1314. package/dist/icons/components/NoCrashIcon.d.ts +0 -5
  1315. package/dist/icons/components/NoDrinksIcon.d.ts +0 -5
  1316. package/dist/icons/components/NoEncryptionGmailerrorredIcon.d.ts +0 -5
  1317. package/dist/icons/components/NoEncryptionIcon.d.ts +0 -5
  1318. package/dist/icons/components/NoFlashIcon.d.ts +0 -5
  1319. package/dist/icons/components/NoFoodIcon.d.ts +0 -5
  1320. package/dist/icons/components/NoLuggageIcon.d.ts +0 -5
  1321. package/dist/icons/components/NoMealsIcon.d.ts +0 -5
  1322. package/dist/icons/components/NoMeetingRoomIcon.d.ts +0 -5
  1323. package/dist/icons/components/NoPhotographyIcon.d.ts +0 -5
  1324. package/dist/icons/components/NoSimIcon.d.ts +0 -5
  1325. package/dist/icons/components/NoStrollerIcon.d.ts +0 -5
  1326. package/dist/icons/components/NoTransferIcon.d.ts +0 -5
  1327. package/dist/icons/components/NoiseAwareIcon.d.ts +0 -5
  1328. package/dist/icons/components/NoiseControlOffIcon.d.ts +0 -5
  1329. package/dist/icons/components/NordicWalkingIcon.d.ts +0 -5
  1330. package/dist/icons/components/NorthEastIcon.d.ts +0 -5
  1331. package/dist/icons/components/NorthIcon.d.ts +0 -5
  1332. package/dist/icons/components/NorthWestIcon.d.ts +0 -5
  1333. package/dist/icons/components/NotAccessibleIcon.d.ts +0 -5
  1334. package/dist/icons/components/NotInterestedIcon.d.ts +0 -5
  1335. package/dist/icons/components/NotListedLocationIcon.d.ts +0 -5
  1336. package/dist/icons/components/NotStartedIcon.d.ts +0 -5
  1337. package/dist/icons/components/NoteAddIcon.d.ts +0 -5
  1338. package/dist/icons/components/NoteAltIcon.d.ts +0 -5
  1339. package/dist/icons/components/NoteIcon.d.ts +0 -5
  1340. package/dist/icons/components/NotesIcon.d.ts +0 -5
  1341. package/dist/icons/components/NotificationAddIcon.d.ts +0 -5
  1342. package/dist/icons/components/NotificationImportantIcon.d.ts +0 -5
  1343. package/dist/icons/components/NotificationsActiveIcon.d.ts +0 -5
  1344. package/dist/icons/components/NotificationsIcon.d.ts +0 -5
  1345. package/dist/icons/components/NotificationsNoneIcon.d.ts +0 -5
  1346. package/dist/icons/components/NotificationsOffIcon.d.ts +0 -5
  1347. package/dist/icons/components/NotificationsPausedIcon.d.ts +0 -5
  1348. package/dist/icons/components/NumbersIcon.d.ts +0 -5
  1349. package/dist/icons/components/OfflineBoltIcon.d.ts +0 -5
  1350. package/dist/icons/components/OfflinePinIcon.d.ts +0 -5
  1351. package/dist/icons/components/OfflineShareIcon.d.ts +0 -5
  1352. package/dist/icons/components/OilBarrelIcon.d.ts +0 -5
  1353. package/dist/icons/components/OnDeviceTrainingIcon.d.ts +0 -5
  1354. package/dist/icons/components/OndemandVideoIcon.d.ts +0 -5
  1355. package/dist/icons/components/OnlinePredictionIcon.d.ts +0 -5
  1356. package/dist/icons/components/OpacityIcon.d.ts +0 -5
  1357. package/dist/icons/components/OpenInBrowserIcon.d.ts +0 -5
  1358. package/dist/icons/components/OpenInFullIcon.d.ts +0 -5
  1359. package/dist/icons/components/OpenInNewIcon.d.ts +0 -5
  1360. package/dist/icons/components/OpenInNewOffIcon.d.ts +0 -5
  1361. package/dist/icons/components/OpenWithIcon.d.ts +0 -5
  1362. package/dist/icons/components/OtherHousesIcon.d.ts +0 -5
  1363. package/dist/icons/components/OutboundIcon.d.ts +0 -5
  1364. package/dist/icons/components/OutboxIcon.d.ts +0 -5
  1365. package/dist/icons/components/OutdoorGrillIcon.d.ts +0 -5
  1366. package/dist/icons/components/OutletIcon.d.ts +0 -5
  1367. package/dist/icons/components/OutlinedFlagIcon.d.ts +0 -5
  1368. package/dist/icons/components/OutputIcon.d.ts +0 -5
  1369. package/dist/icons/components/PaddingIcon.d.ts +0 -5
  1370. package/dist/icons/components/PagesIcon.d.ts +0 -5
  1371. package/dist/icons/components/PageviewIcon.d.ts +0 -5
  1372. package/dist/icons/components/PaidIcon.d.ts +0 -5
  1373. package/dist/icons/components/PaletteIcon.d.ts +0 -5
  1374. package/dist/icons/components/PanToolAltIcon.d.ts +0 -5
  1375. package/dist/icons/components/PanToolIcon.d.ts +0 -5
  1376. package/dist/icons/components/PanoramaFishEyeIcon.d.ts +0 -5
  1377. package/dist/icons/components/PanoramaHorizontalIcon.d.ts +0 -5
  1378. package/dist/icons/components/PanoramaHorizontalSelectIcon.d.ts +0 -5
  1379. package/dist/icons/components/PanoramaIcon.d.ts +0 -5
  1380. package/dist/icons/components/PanoramaPhotosphereIcon.d.ts +0 -5
  1381. package/dist/icons/components/PanoramaPhotosphereSelectIcon.d.ts +0 -5
  1382. package/dist/icons/components/PanoramaVerticalIcon.d.ts +0 -5
  1383. package/dist/icons/components/PanoramaVerticalSelectIcon.d.ts +0 -5
  1384. package/dist/icons/components/PanoramaWideAngleIcon.d.ts +0 -5
  1385. package/dist/icons/components/PanoramaWideAngleSelectIcon.d.ts +0 -5
  1386. package/dist/icons/components/ParaglidingIcon.d.ts +0 -5
  1387. package/dist/icons/components/ParkIcon.d.ts +0 -5
  1388. package/dist/icons/components/PartyModeIcon.d.ts +0 -5
  1389. package/dist/icons/components/PasswordIcon.d.ts +0 -5
  1390. package/dist/icons/components/PatternIcon.d.ts +0 -5
  1391. package/dist/icons/components/PauseCircleFilledIcon.d.ts +0 -5
  1392. package/dist/icons/components/PauseCircleIcon.d.ts +0 -5
  1393. package/dist/icons/components/PauseCircleOutlineIcon.d.ts +0 -5
  1394. package/dist/icons/components/PauseIcon.d.ts +0 -5
  1395. package/dist/icons/components/PausePresentationIcon.d.ts +0 -5
  1396. package/dist/icons/components/PaymentIcon.d.ts +0 -5
  1397. package/dist/icons/components/PaymentsIcon.d.ts +0 -5
  1398. package/dist/icons/components/PedalBikeIcon.d.ts +0 -5
  1399. package/dist/icons/components/PendingActionsIcon.d.ts +0 -5
  1400. package/dist/icons/components/PendingIcon.d.ts +0 -5
  1401. package/dist/icons/components/PentagonIcon.d.ts +0 -5
  1402. package/dist/icons/components/PeopleAltIcon.d.ts +0 -5
  1403. package/dist/icons/components/PeopleIcon.d.ts +0 -5
  1404. package/dist/icons/components/PeopleOutlineIcon.d.ts +0 -5
  1405. package/dist/icons/components/PercentIcon.d.ts +0 -5
  1406. package/dist/icons/components/PermCameraMicIcon.d.ts +0 -5
  1407. package/dist/icons/components/PermContactCalendarIcon.d.ts +0 -5
  1408. package/dist/icons/components/PermDataSettingIcon.d.ts +0 -5
  1409. package/dist/icons/components/PermDeviceInformationIcon.d.ts +0 -5
  1410. package/dist/icons/components/PermIdentityIcon.d.ts +0 -5
  1411. package/dist/icons/components/PermMediaIcon.d.ts +0 -5
  1412. package/dist/icons/components/PermPhoneMsgIcon.d.ts +0 -5
  1413. package/dist/icons/components/PermScanWifiIcon.d.ts +0 -5
  1414. package/dist/icons/components/Person2Icon.d.ts +0 -5
  1415. package/dist/icons/components/Person3Icon.d.ts +0 -5
  1416. package/dist/icons/components/Person4Icon.d.ts +0 -5
  1417. package/dist/icons/components/PersonAddAlt1Icon.d.ts +0 -5
  1418. package/dist/icons/components/PersonAddAltIcon.d.ts +0 -5
  1419. package/dist/icons/components/PersonAddDisabledIcon.d.ts +0 -5
  1420. package/dist/icons/components/PersonAddIcon.d.ts +0 -5
  1421. package/dist/icons/components/PersonIcon.d.ts +0 -5
  1422. package/dist/icons/components/PersonOffIcon.d.ts +0 -5
  1423. package/dist/icons/components/PersonOutlineIcon.d.ts +0 -5
  1424. package/dist/icons/components/PersonPinCircleIcon.d.ts +0 -5
  1425. package/dist/icons/components/PersonPinIcon.d.ts +0 -5
  1426. package/dist/icons/components/PersonRemoveAlt1Icon.d.ts +0 -5
  1427. package/dist/icons/components/PersonRemoveIcon.d.ts +0 -5
  1428. package/dist/icons/components/PersonSearchIcon.d.ts +0 -5
  1429. package/dist/icons/components/PersonalInjuryIcon.d.ts +0 -5
  1430. package/dist/icons/components/PersonalVideoIcon.d.ts +0 -5
  1431. package/dist/icons/components/PestControlIcon.d.ts +0 -5
  1432. package/dist/icons/components/PestControlRodentIcon.d.ts +0 -5
  1433. package/dist/icons/components/PetsIcon.d.ts +0 -5
  1434. package/dist/icons/components/PhishingIcon.d.ts +0 -5
  1435. package/dist/icons/components/PhoneAndroidIcon.d.ts +0 -5
  1436. package/dist/icons/components/PhoneBluetoothSpeakerIcon.d.ts +0 -5
  1437. package/dist/icons/components/PhoneCallbackIcon.d.ts +0 -5
  1438. package/dist/icons/components/PhoneDisabledIcon.d.ts +0 -5
  1439. package/dist/icons/components/PhoneEnabledIcon.d.ts +0 -5
  1440. package/dist/icons/components/PhoneForwardedIcon.d.ts +0 -5
  1441. package/dist/icons/components/PhoneIcon.d.ts +0 -5
  1442. package/dist/icons/components/PhoneIphoneIcon.d.ts +0 -5
  1443. package/dist/icons/components/PhoneLockedIcon.d.ts +0 -5
  1444. package/dist/icons/components/PhoneMissedIcon.d.ts +0 -5
  1445. package/dist/icons/components/PhonePausedIcon.d.ts +0 -5
  1446. package/dist/icons/components/PhonelinkEraseIcon.d.ts +0 -5
  1447. package/dist/icons/components/PhonelinkIcon.d.ts +0 -5
  1448. package/dist/icons/components/PhonelinkLockIcon.d.ts +0 -5
  1449. package/dist/icons/components/PhonelinkOffIcon.d.ts +0 -5
  1450. package/dist/icons/components/PhonelinkRingIcon.d.ts +0 -5
  1451. package/dist/icons/components/PhonelinkSetupIcon.d.ts +0 -5
  1452. package/dist/icons/components/PhotoAlbumIcon.d.ts +0 -5
  1453. package/dist/icons/components/PhotoCameraBackIcon.d.ts +0 -5
  1454. package/dist/icons/components/PhotoCameraFrontIcon.d.ts +0 -5
  1455. package/dist/icons/components/PhotoCameraIcon.d.ts +0 -5
  1456. package/dist/icons/components/PhotoFilterIcon.d.ts +0 -5
  1457. package/dist/icons/components/PhotoIcon.d.ts +0 -5
  1458. package/dist/icons/components/PhotoLibraryIcon.d.ts +0 -5
  1459. package/dist/icons/components/PhotoSizeSelectActualIcon.d.ts +0 -5
  1460. package/dist/icons/components/PhotoSizeSelectLargeIcon.d.ts +0 -5
  1461. package/dist/icons/components/PhotoSizeSelectSmallIcon.d.ts +0 -5
  1462. package/dist/icons/components/PhpIcon.d.ts +0 -5
  1463. package/dist/icons/components/PianoIcon.d.ts +0 -5
  1464. package/dist/icons/components/PianoOffIcon.d.ts +0 -5
  1465. package/dist/icons/components/PictureAsPdfIcon.d.ts +0 -5
  1466. package/dist/icons/components/PictureInPictureAltIcon.d.ts +0 -5
  1467. package/dist/icons/components/PictureInPictureIcon.d.ts +0 -5
  1468. package/dist/icons/components/PieChartIcon.d.ts +0 -5
  1469. package/dist/icons/components/PieChartOutlineIcon.d.ts +0 -5
  1470. package/dist/icons/components/PinDropIcon.d.ts +0 -5
  1471. package/dist/icons/components/PinEndIcon.d.ts +0 -5
  1472. package/dist/icons/components/PinIcon.d.ts +0 -5
  1473. package/dist/icons/components/PinInvokeIcon.d.ts +0 -5
  1474. package/dist/icons/components/PinchIcon.d.ts +0 -5
  1475. package/dist/icons/components/PivotTableChartIcon.d.ts +0 -5
  1476. package/dist/icons/components/PixIcon.d.ts +0 -5
  1477. package/dist/icons/components/PlaceIcon.d.ts +0 -5
  1478. package/dist/icons/components/PlagiarismIcon.d.ts +0 -5
  1479. package/dist/icons/components/PlayArrowIcon.d.ts +0 -5
  1480. package/dist/icons/components/PlayCircleFilledIcon.d.ts +0 -5
  1481. package/dist/icons/components/PlayCircleIcon.d.ts +0 -5
  1482. package/dist/icons/components/PlayCircleOutlineIcon.d.ts +0 -5
  1483. package/dist/icons/components/PlayDisabledIcon.d.ts +0 -5
  1484. package/dist/icons/components/PlayForWorkIcon.d.ts +0 -5
  1485. package/dist/icons/components/PlayLessonIcon.d.ts +0 -5
  1486. package/dist/icons/components/PlaylistAddCheckCircleIcon.d.ts +0 -5
  1487. package/dist/icons/components/PlaylistAddCheckIcon.d.ts +0 -5
  1488. package/dist/icons/components/PlaylistAddCircleIcon.d.ts +0 -5
  1489. package/dist/icons/components/PlaylistAddIcon.d.ts +0 -5
  1490. package/dist/icons/components/PlaylistPlayIcon.d.ts +0 -5
  1491. package/dist/icons/components/PlaylistRemoveIcon.d.ts +0 -5
  1492. package/dist/icons/components/PlumbingIcon.d.ts +0 -5
  1493. package/dist/icons/components/PlusOneIcon.d.ts +0 -5
  1494. package/dist/icons/components/PodcastsIcon.d.ts +0 -5
  1495. package/dist/icons/components/PointOfSaleIcon.d.ts +0 -5
  1496. package/dist/icons/components/PolicyIcon.d.ts +0 -5
  1497. package/dist/icons/components/PollIcon.d.ts +0 -5
  1498. package/dist/icons/components/PolylineIcon.d.ts +0 -5
  1499. package/dist/icons/components/PolymerIcon.d.ts +0 -5
  1500. package/dist/icons/components/PoolIcon.d.ts +0 -5
  1501. package/dist/icons/components/PortableWifiOffIcon.d.ts +0 -5
  1502. package/dist/icons/components/PortraitIcon.d.ts +0 -5
  1503. package/dist/icons/components/PostAddIcon.d.ts +0 -5
  1504. package/dist/icons/components/PowerIcon.d.ts +0 -5
  1505. package/dist/icons/components/PowerInputIcon.d.ts +0 -5
  1506. package/dist/icons/components/PowerOffIcon.d.ts +0 -5
  1507. package/dist/icons/components/PowerSettingsNewIcon.d.ts +0 -5
  1508. package/dist/icons/components/PrecisionManufacturingIcon.d.ts +0 -5
  1509. package/dist/icons/components/PregnantWomanIcon.d.ts +0 -5
  1510. package/dist/icons/components/PresentToAllIcon.d.ts +0 -5
  1511. package/dist/icons/components/PreviewIcon.d.ts +0 -5
  1512. package/dist/icons/components/PriceChangeIcon.d.ts +0 -5
  1513. package/dist/icons/components/PriceCheckIcon.d.ts +0 -5
  1514. package/dist/icons/components/PrintDisabledIcon.d.ts +0 -5
  1515. package/dist/icons/components/PrintIcon.d.ts +0 -5
  1516. package/dist/icons/components/PriorityHighIcon.d.ts +0 -5
  1517. package/dist/icons/components/PrivacyTipIcon.d.ts +0 -5
  1518. package/dist/icons/components/PrivateConnectivityIcon.d.ts +0 -5
  1519. package/dist/icons/components/ProductionQuantityLimitsIcon.d.ts +0 -5
  1520. package/dist/icons/components/PropaneIcon.d.ts +0 -5
  1521. package/dist/icons/components/PropaneTankIcon.d.ts +0 -5
  1522. package/dist/icons/components/PsychologyAltIcon.d.ts +0 -5
  1523. package/dist/icons/components/PsychologyIcon.d.ts +0 -5
  1524. package/dist/icons/components/PublicIcon.d.ts +0 -5
  1525. package/dist/icons/components/PublicOffIcon.d.ts +0 -5
  1526. package/dist/icons/components/PublishIcon.d.ts +0 -5
  1527. package/dist/icons/components/PublishedWithChangesIcon.d.ts +0 -5
  1528. package/dist/icons/components/PunchClockIcon.d.ts +0 -5
  1529. package/dist/icons/components/PushPinIcon.d.ts +0 -5
  1530. package/dist/icons/components/QrCode2Icon.d.ts +0 -5
  1531. package/dist/icons/components/QrCodeIcon.d.ts +0 -5
  1532. package/dist/icons/components/QrCodeScannerIcon.d.ts +0 -5
  1533. package/dist/icons/components/QueryBuilderIcon.d.ts +0 -5
  1534. package/dist/icons/components/QueryStatsIcon.d.ts +0 -5
  1535. package/dist/icons/components/QuestionAnswerIcon.d.ts +0 -5
  1536. package/dist/icons/components/QuestionMarkIcon.d.ts +0 -5
  1537. package/dist/icons/components/QueueIcon.d.ts +0 -5
  1538. package/dist/icons/components/QueueMusicIcon.d.ts +0 -5
  1539. package/dist/icons/components/QueuePlayNextIcon.d.ts +0 -5
  1540. package/dist/icons/components/QuickreplyIcon.d.ts +0 -5
  1541. package/dist/icons/components/QuizIcon.d.ts +0 -5
  1542. package/dist/icons/components/RMobiledataIcon.d.ts +0 -5
  1543. package/dist/icons/components/RadarIcon.d.ts +0 -5
  1544. package/dist/icons/components/RadioButtonCheckedIcon.d.ts +0 -5
  1545. package/dist/icons/components/RadioButtonUncheckedIcon.d.ts +0 -5
  1546. package/dist/icons/components/RadioIcon.d.ts +0 -5
  1547. package/dist/icons/components/RailwayAlertIcon.d.ts +0 -5
  1548. package/dist/icons/components/RamenDiningIcon.d.ts +0 -5
  1549. package/dist/icons/components/RampLeftIcon.d.ts +0 -5
  1550. package/dist/icons/components/RampRightIcon.d.ts +0 -5
  1551. package/dist/icons/components/RateReviewIcon.d.ts +0 -5
  1552. package/dist/icons/components/RawOffIcon.d.ts +0 -5
  1553. package/dist/icons/components/RawOnIcon.d.ts +0 -5
  1554. package/dist/icons/components/ReadMoreIcon.d.ts +0 -5
  1555. package/dist/icons/components/RealEstateAgentIcon.d.ts +0 -5
  1556. package/dist/icons/components/ReceiptIcon.d.ts +0 -5
  1557. package/dist/icons/components/ReceiptLongIcon.d.ts +0 -5
  1558. package/dist/icons/components/RecentActorsIcon.d.ts +0 -5
  1559. package/dist/icons/components/RecommendIcon.d.ts +0 -5
  1560. package/dist/icons/components/RecordVoiceOverIcon.d.ts +0 -5
  1561. package/dist/icons/components/RectangleIcon.d.ts +0 -5
  1562. package/dist/icons/components/RecyclingIcon.d.ts +0 -5
  1563. package/dist/icons/components/RedeemIcon.d.ts +0 -5
  1564. package/dist/icons/components/RedoIcon.d.ts +0 -5
  1565. package/dist/icons/components/ReduceCapacityIcon.d.ts +0 -5
  1566. package/dist/icons/components/RefreshIcon.d.ts +0 -5
  1567. package/dist/icons/components/RememberMeIcon.d.ts +0 -5
  1568. package/dist/icons/components/RemoveCircleIcon.d.ts +0 -5
  1569. package/dist/icons/components/RemoveCircleOutlineIcon.d.ts +0 -5
  1570. package/dist/icons/components/RemoveDoneIcon.d.ts +0 -5
  1571. package/dist/icons/components/RemoveFromQueueIcon.d.ts +0 -5
  1572. package/dist/icons/components/RemoveIcon.d.ts +0 -5
  1573. package/dist/icons/components/RemoveModeratorIcon.d.ts +0 -5
  1574. package/dist/icons/components/RemoveRedEyeIcon.d.ts +0 -5
  1575. package/dist/icons/components/RemoveRoadIcon.d.ts +0 -5
  1576. package/dist/icons/components/RemoveShoppingCartIcon.d.ts +0 -5
  1577. package/dist/icons/components/ReorderIcon.d.ts +0 -5
  1578. package/dist/icons/components/RepartitionIcon.d.ts +0 -5
  1579. package/dist/icons/components/RepeatIcon.d.ts +0 -5
  1580. package/dist/icons/components/RepeatOnIcon.d.ts +0 -5
  1581. package/dist/icons/components/RepeatOneIcon.d.ts +0 -5
  1582. package/dist/icons/components/RepeatOneOnIcon.d.ts +0 -5
  1583. package/dist/icons/components/Replay10Icon.d.ts +0 -5
  1584. package/dist/icons/components/Replay30Icon.d.ts +0 -5
  1585. package/dist/icons/components/Replay5Icon.d.ts +0 -5
  1586. package/dist/icons/components/ReplayCircleFilledIcon.d.ts +0 -5
  1587. package/dist/icons/components/ReplayIcon.d.ts +0 -5
  1588. package/dist/icons/components/ReplyAllIcon.d.ts +0 -5
  1589. package/dist/icons/components/ReplyIcon.d.ts +0 -5
  1590. package/dist/icons/components/ReportGmailerrorredIcon.d.ts +0 -5
  1591. package/dist/icons/components/ReportIcon.d.ts +0 -5
  1592. package/dist/icons/components/ReportOffIcon.d.ts +0 -5
  1593. package/dist/icons/components/ReportProblemIcon.d.ts +0 -5
  1594. package/dist/icons/components/RequestPageIcon.d.ts +0 -5
  1595. package/dist/icons/components/RequestQuoteIcon.d.ts +0 -5
  1596. package/dist/icons/components/ResetTvIcon.d.ts +0 -5
  1597. package/dist/icons/components/RestartAltIcon.d.ts +0 -5
  1598. package/dist/icons/components/RestaurantIcon.d.ts +0 -5
  1599. package/dist/icons/components/RestaurantMenuIcon.d.ts +0 -5
  1600. package/dist/icons/components/RestoreFromTrashIcon.d.ts +0 -5
  1601. package/dist/icons/components/RestoreIcon.d.ts +0 -5
  1602. package/dist/icons/components/RestorePageIcon.d.ts +0 -5
  1603. package/dist/icons/components/ReviewsIcon.d.ts +0 -5
  1604. package/dist/icons/components/RiceBowlIcon.d.ts +0 -5
  1605. package/dist/icons/components/RingVolumeIcon.d.ts +0 -5
  1606. package/dist/icons/components/RocketIcon.d.ts +0 -5
  1607. package/dist/icons/components/RocketLaunchIcon.d.ts +0 -5
  1608. package/dist/icons/components/RollerShadesClosedIcon.d.ts +0 -5
  1609. package/dist/icons/components/RollerShadesIcon.d.ts +0 -5
  1610. package/dist/icons/components/RollerSkatingIcon.d.ts +0 -5
  1611. package/dist/icons/components/RoofingIcon.d.ts +0 -5
  1612. package/dist/icons/components/RoomIcon.d.ts +0 -5
  1613. package/dist/icons/components/RoomPreferencesIcon.d.ts +0 -5
  1614. package/dist/icons/components/RoomServiceIcon.d.ts +0 -5
  1615. package/dist/icons/components/Rotate90DegreesCcwIcon.d.ts +0 -5
  1616. package/dist/icons/components/Rotate90DegreesCwIcon.d.ts +0 -5
  1617. package/dist/icons/components/RotateLeftIcon.d.ts +0 -5
  1618. package/dist/icons/components/RotateRightIcon.d.ts +0 -5
  1619. package/dist/icons/components/RoundaboutLeftIcon.d.ts +0 -5
  1620. package/dist/icons/components/RoundaboutRightIcon.d.ts +0 -5
  1621. package/dist/icons/components/RoundedCornerIcon.d.ts +0 -5
  1622. package/dist/icons/components/RouteIcon.d.ts +0 -5
  1623. package/dist/icons/components/RouterIcon.d.ts +0 -5
  1624. package/dist/icons/components/RowingIcon.d.ts +0 -5
  1625. package/dist/icons/components/RssFeedIcon.d.ts +0 -5
  1626. package/dist/icons/components/RsvpIcon.d.ts +0 -5
  1627. package/dist/icons/components/RttIcon.d.ts +0 -5
  1628. package/dist/icons/components/RuleFolderIcon.d.ts +0 -5
  1629. package/dist/icons/components/RuleIcon.d.ts +0 -5
  1630. package/dist/icons/components/RunCircleIcon.d.ts +0 -5
  1631. package/dist/icons/components/RunningWithErrorsIcon.d.ts +0 -5
  1632. package/dist/icons/components/RvHookupIcon.d.ts +0 -5
  1633. package/dist/icons/components/SafetyCheckIcon.d.ts +0 -5
  1634. package/dist/icons/components/SafetyDividerIcon.d.ts +0 -5
  1635. package/dist/icons/components/SailingIcon.d.ts +0 -5
  1636. package/dist/icons/components/SanitizerIcon.d.ts +0 -5
  1637. package/dist/icons/components/SatelliteAltIcon.d.ts +0 -5
  1638. package/dist/icons/components/SatelliteIcon.d.ts +0 -5
  1639. package/dist/icons/components/SaveAltIcon.d.ts +0 -5
  1640. package/dist/icons/components/SaveAsIcon.d.ts +0 -5
  1641. package/dist/icons/components/SaveIcon.d.ts +0 -5
  1642. package/dist/icons/components/SavedSearchIcon.d.ts +0 -5
  1643. package/dist/icons/components/SavingsIcon.d.ts +0 -5
  1644. package/dist/icons/components/ScaleIcon.d.ts +0 -5
  1645. package/dist/icons/components/ScannerIcon.d.ts +0 -5
  1646. package/dist/icons/components/ScatterPlotIcon.d.ts +0 -5
  1647. package/dist/icons/components/ScheduleIcon.d.ts +0 -5
  1648. package/dist/icons/components/ScheduleSendIcon.d.ts +0 -5
  1649. package/dist/icons/components/SchemaIcon.d.ts +0 -5
  1650. package/dist/icons/components/SchoolIcon.d.ts +0 -5
  1651. package/dist/icons/components/ScienceIcon.d.ts +0 -5
  1652. package/dist/icons/components/ScoreIcon.d.ts +0 -5
  1653. package/dist/icons/components/ScoreboardIcon.d.ts +0 -5
  1654. package/dist/icons/components/ScreenLockLandscapeIcon.d.ts +0 -5
  1655. package/dist/icons/components/ScreenLockPortraitIcon.d.ts +0 -5
  1656. package/dist/icons/components/ScreenLockRotationIcon.d.ts +0 -5
  1657. package/dist/icons/components/ScreenRotationAltIcon.d.ts +0 -5
  1658. package/dist/icons/components/ScreenRotationIcon.d.ts +0 -5
  1659. package/dist/icons/components/ScreenSearchDesktopIcon.d.ts +0 -5
  1660. package/dist/icons/components/ScreenShareIcon.d.ts +0 -5
  1661. package/dist/icons/components/ScreenshotIcon.d.ts +0 -5
  1662. package/dist/icons/components/ScreenshotMonitorIcon.d.ts +0 -5
  1663. package/dist/icons/components/ScubaDivingIcon.d.ts +0 -5
  1664. package/dist/icons/components/SdCardAlertIcon.d.ts +0 -5
  1665. package/dist/icons/components/SdCardIcon.d.ts +0 -5
  1666. package/dist/icons/components/SdIcon.d.ts +0 -5
  1667. package/dist/icons/components/SdStorageIcon.d.ts +0 -5
  1668. package/dist/icons/components/SearchIcon.d.ts +0 -5
  1669. package/dist/icons/components/SearchOffIcon.d.ts +0 -5
  1670. package/dist/icons/components/SecurityIcon.d.ts +0 -5
  1671. package/dist/icons/components/SecurityUpdateGoodIcon.d.ts +0 -5
  1672. package/dist/icons/components/SecurityUpdateIcon.d.ts +0 -5
  1673. package/dist/icons/components/SecurityUpdateWarningIcon.d.ts +0 -5
  1674. package/dist/icons/components/SegmentIcon.d.ts +0 -5
  1675. package/dist/icons/components/SelectAllIcon.d.ts +0 -5
  1676. package/dist/icons/components/SelfImprovementIcon.d.ts +0 -5
  1677. package/dist/icons/components/SellIcon.d.ts +0 -5
  1678. package/dist/icons/components/SendAndArchiveIcon.d.ts +0 -5
  1679. package/dist/icons/components/SendIcon.d.ts +0 -5
  1680. package/dist/icons/components/SendTimeExtensionIcon.d.ts +0 -5
  1681. package/dist/icons/components/SendToMobileIcon.d.ts +0 -5
  1682. package/dist/icons/components/SensorDoorIcon.d.ts +0 -5
  1683. package/dist/icons/components/SensorOccupiedIcon.d.ts +0 -5
  1684. package/dist/icons/components/SensorWindowIcon.d.ts +0 -5
  1685. package/dist/icons/components/SensorsIcon.d.ts +0 -5
  1686. package/dist/icons/components/SensorsOffIcon.d.ts +0 -5
  1687. package/dist/icons/components/SentimentDissatisfiedIcon.d.ts +0 -5
  1688. package/dist/icons/components/SentimentNeutralIcon.d.ts +0 -5
  1689. package/dist/icons/components/SentimentSatisfiedAltIcon.d.ts +0 -5
  1690. package/dist/icons/components/SentimentSatisfiedIcon.d.ts +0 -5
  1691. package/dist/icons/components/SentimentVeryDissatisfiedIcon.d.ts +0 -5
  1692. package/dist/icons/components/SentimentVerySatisfiedIcon.d.ts +0 -5
  1693. package/dist/icons/components/SetMealIcon.d.ts +0 -5
  1694. package/dist/icons/components/SettingsAccessibilityIcon.d.ts +0 -5
  1695. package/dist/icons/components/SettingsApplicationsIcon.d.ts +0 -5
  1696. package/dist/icons/components/SettingsBackupRestoreIcon.d.ts +0 -5
  1697. package/dist/icons/components/SettingsBluetoothIcon.d.ts +0 -5
  1698. package/dist/icons/components/SettingsBrightnessIcon.d.ts +0 -5
  1699. package/dist/icons/components/SettingsCellIcon.d.ts +0 -5
  1700. package/dist/icons/components/SettingsEthernetIcon.d.ts +0 -5
  1701. package/dist/icons/components/SettingsIcon.d.ts +0 -5
  1702. package/dist/icons/components/SettingsInputAntennaIcon.d.ts +0 -5
  1703. package/dist/icons/components/SettingsInputComponentIcon.d.ts +0 -5
  1704. package/dist/icons/components/SettingsInputCompositeIcon.d.ts +0 -5
  1705. package/dist/icons/components/SettingsInputHdmiIcon.d.ts +0 -5
  1706. package/dist/icons/components/SettingsInputSvideoIcon.d.ts +0 -5
  1707. package/dist/icons/components/SettingsOverscanIcon.d.ts +0 -5
  1708. package/dist/icons/components/SettingsPhoneIcon.d.ts +0 -5
  1709. package/dist/icons/components/SettingsPowerIcon.d.ts +0 -5
  1710. package/dist/icons/components/SettingsRemoteIcon.d.ts +0 -5
  1711. package/dist/icons/components/SettingsSuggestIcon.d.ts +0 -5
  1712. package/dist/icons/components/SettingsSystemDaydreamIcon.d.ts +0 -5
  1713. package/dist/icons/components/SettingsVoiceIcon.d.ts +0 -5
  1714. package/dist/icons/components/SevereColdIcon.d.ts +0 -5
  1715. package/dist/icons/components/ShapeLineIcon.d.ts +0 -5
  1716. package/dist/icons/components/ShareIcon.d.ts +0 -5
  1717. package/dist/icons/components/ShareLocationIcon.d.ts +0 -5
  1718. package/dist/icons/components/ShieldIcon.d.ts +0 -5
  1719. package/dist/icons/components/ShieldMoonIcon.d.ts +0 -5
  1720. package/dist/icons/components/Shop2Icon.d.ts +0 -5
  1721. package/dist/icons/components/ShopIcon.d.ts +0 -5
  1722. package/dist/icons/components/ShopTwoIcon.d.ts +0 -5
  1723. package/dist/icons/components/ShoppingBagIcon.d.ts +0 -5
  1724. package/dist/icons/components/ShoppingBasketIcon.d.ts +0 -5
  1725. package/dist/icons/components/ShoppingCartCheckoutIcon.d.ts +0 -5
  1726. package/dist/icons/components/ShoppingCartIcon.d.ts +0 -5
  1727. package/dist/icons/components/ShortTextIcon.d.ts +0 -5
  1728. package/dist/icons/components/ShortcutIcon.d.ts +0 -5
  1729. package/dist/icons/components/ShowChartIcon.d.ts +0 -5
  1730. package/dist/icons/components/ShowerIcon.d.ts +0 -5
  1731. package/dist/icons/components/ShuffleIcon.d.ts +0 -5
  1732. package/dist/icons/components/ShuffleOnIcon.d.ts +0 -5
  1733. package/dist/icons/components/ShutterSpeedIcon.d.ts +0 -5
  1734. package/dist/icons/components/SickIcon.d.ts +0 -5
  1735. package/dist/icons/components/SignLanguageIcon.d.ts +0 -5
  1736. package/dist/icons/components/SignalCellular0BarIcon.d.ts +0 -5
  1737. package/dist/icons/components/SignalCellular4BarIcon.d.ts +0 -5
  1738. package/dist/icons/components/SignalCellularAlt1BarIcon.d.ts +0 -5
  1739. package/dist/icons/components/SignalCellularAlt2BarIcon.d.ts +0 -5
  1740. package/dist/icons/components/SignalCellularAltIcon.d.ts +0 -5
  1741. package/dist/icons/components/SignalCellularConnectedNoInternet0BarIcon.d.ts +0 -5
  1742. package/dist/icons/components/SignalCellularConnectedNoInternet4BarIcon.d.ts +0 -5
  1743. package/dist/icons/components/SignalCellularNoSimIcon.d.ts +0 -5
  1744. package/dist/icons/components/SignalCellularNodataIcon.d.ts +0 -5
  1745. package/dist/icons/components/SignalCellularNullIcon.d.ts +0 -5
  1746. package/dist/icons/components/SignalCellularOffIcon.d.ts +0 -5
  1747. package/dist/icons/components/SignalWifi0BarIcon.d.ts +0 -5
  1748. package/dist/icons/components/SignalWifi4BarIcon.d.ts +0 -5
  1749. package/dist/icons/components/SignalWifi4BarLockIcon.d.ts +0 -5
  1750. package/dist/icons/components/SignalWifiBadIcon.d.ts +0 -5
  1751. package/dist/icons/components/SignalWifiConnectedNoInternet4Icon.d.ts +0 -5
  1752. package/dist/icons/components/SignalWifiOffIcon.d.ts +0 -5
  1753. package/dist/icons/components/SignalWifiStatusbar4BarIcon.d.ts +0 -5
  1754. package/dist/icons/components/SignalWifiStatusbarConnectedNoInternet4Icon.d.ts +0 -5
  1755. package/dist/icons/components/SignalWifiStatusbarNullIcon.d.ts +0 -5
  1756. package/dist/icons/components/SignpostIcon.d.ts +0 -5
  1757. package/dist/icons/components/SimCardAlertIcon.d.ts +0 -5
  1758. package/dist/icons/components/SimCardDownloadIcon.d.ts +0 -5
  1759. package/dist/icons/components/SimCardIcon.d.ts +0 -5
  1760. package/dist/icons/components/SingleBedIcon.d.ts +0 -5
  1761. package/dist/icons/components/SipIcon.d.ts +0 -5
  1762. package/dist/icons/components/SkateboardingIcon.d.ts +0 -5
  1763. package/dist/icons/components/SkipNextIcon.d.ts +0 -5
  1764. package/dist/icons/components/SkipPreviousIcon.d.ts +0 -5
  1765. package/dist/icons/components/SleddingIcon.d.ts +0 -5
  1766. package/dist/icons/components/SlideshowIcon.d.ts +0 -5
  1767. package/dist/icons/components/SlowMotionVideoIcon.d.ts +0 -5
  1768. package/dist/icons/components/SmartButtonIcon.d.ts +0 -5
  1769. package/dist/icons/components/SmartDisplayIcon.d.ts +0 -5
  1770. package/dist/icons/components/SmartScreenIcon.d.ts +0 -5
  1771. package/dist/icons/components/SmartToyIcon.d.ts +0 -5
  1772. package/dist/icons/components/SmartphoneIcon.d.ts +0 -5
  1773. package/dist/icons/components/SmokeFreeIcon.d.ts +0 -5
  1774. package/dist/icons/components/SmokingRoomsIcon.d.ts +0 -5
  1775. package/dist/icons/components/SmsFailedIcon.d.ts +0 -5
  1776. package/dist/icons/components/SmsIcon.d.ts +0 -5
  1777. package/dist/icons/components/SnippetFolderIcon.d.ts +0 -5
  1778. package/dist/icons/components/SnoozeIcon.d.ts +0 -5
  1779. package/dist/icons/components/SnowboardingIcon.d.ts +0 -5
  1780. package/dist/icons/components/SnowmobileIcon.d.ts +0 -5
  1781. package/dist/icons/components/SnowshoeingIcon.d.ts +0 -5
  1782. package/dist/icons/components/SoapIcon.d.ts +0 -5
  1783. package/dist/icons/components/SocialDistanceIcon.d.ts +0 -5
  1784. package/dist/icons/components/SolarPowerIcon.d.ts +0 -5
  1785. package/dist/icons/components/SortByAlphaIcon.d.ts +0 -5
  1786. package/dist/icons/components/SortIcon.d.ts +0 -5
  1787. package/dist/icons/components/SosIcon.d.ts +0 -5
  1788. package/dist/icons/components/SoupKitchenIcon.d.ts +0 -5
  1789. package/dist/icons/components/SourceIcon.d.ts +0 -5
  1790. package/dist/icons/components/SouthAmericaIcon.d.ts +0 -5
  1791. package/dist/icons/components/SouthEastIcon.d.ts +0 -5
  1792. package/dist/icons/components/SouthIcon.d.ts +0 -5
  1793. package/dist/icons/components/SouthWestIcon.d.ts +0 -5
  1794. package/dist/icons/components/SpaIcon.d.ts +0 -5
  1795. package/dist/icons/components/SpaceBarIcon.d.ts +0 -5
  1796. package/dist/icons/components/SpaceDashboardIcon.d.ts +0 -5
  1797. package/dist/icons/components/SpatialAudioIcon.d.ts +0 -5
  1798. package/dist/icons/components/SpatialAudioOffIcon.d.ts +0 -5
  1799. package/dist/icons/components/SpatialTrackingIcon.d.ts +0 -5
  1800. package/dist/icons/components/SpeakerGroupIcon.d.ts +0 -5
  1801. package/dist/icons/components/SpeakerIcon.d.ts +0 -5
  1802. package/dist/icons/components/SpeakerNotesIcon.d.ts +0 -5
  1803. package/dist/icons/components/SpeakerNotesOffIcon.d.ts +0 -5
  1804. package/dist/icons/components/SpeakerPhoneIcon.d.ts +0 -5
  1805. package/dist/icons/components/SpeedIcon.d.ts +0 -5
  1806. package/dist/icons/components/SpellcheckIcon.d.ts +0 -5
  1807. package/dist/icons/components/SplitscreenIcon.d.ts +0 -5
  1808. package/dist/icons/components/SpokeIcon.d.ts +0 -5
  1809. package/dist/icons/components/SportsBarIcon.d.ts +0 -5
  1810. package/dist/icons/components/SportsBaseballIcon.d.ts +0 -5
  1811. package/dist/icons/components/SportsBasketballIcon.d.ts +0 -5
  1812. package/dist/icons/components/SportsCricketIcon.d.ts +0 -5
  1813. package/dist/icons/components/SportsEsportsIcon.d.ts +0 -5
  1814. package/dist/icons/components/SportsFootballIcon.d.ts +0 -5
  1815. package/dist/icons/components/SportsGolfIcon.d.ts +0 -5
  1816. package/dist/icons/components/SportsGymnasticsIcon.d.ts +0 -5
  1817. package/dist/icons/components/SportsHandballIcon.d.ts +0 -5
  1818. package/dist/icons/components/SportsHockeyIcon.d.ts +0 -5
  1819. package/dist/icons/components/SportsIcon.d.ts +0 -5
  1820. package/dist/icons/components/SportsKabaddiIcon.d.ts +0 -5
  1821. package/dist/icons/components/SportsMartialArtsIcon.d.ts +0 -5
  1822. package/dist/icons/components/SportsMmaIcon.d.ts +0 -5
  1823. package/dist/icons/components/SportsMotorsportsIcon.d.ts +0 -5
  1824. package/dist/icons/components/SportsRugbyIcon.d.ts +0 -5
  1825. package/dist/icons/components/SportsScoreIcon.d.ts +0 -5
  1826. package/dist/icons/components/SportsSoccerIcon.d.ts +0 -5
  1827. package/dist/icons/components/SportsTennisIcon.d.ts +0 -5
  1828. package/dist/icons/components/SportsVolleyballIcon.d.ts +0 -5
  1829. package/dist/icons/components/SquareFootIcon.d.ts +0 -5
  1830. package/dist/icons/components/SquareIcon.d.ts +0 -5
  1831. package/dist/icons/components/SsidChartIcon.d.ts +0 -5
  1832. package/dist/icons/components/StackedBarChartIcon.d.ts +0 -5
  1833. package/dist/icons/components/StackedLineChartIcon.d.ts +0 -5
  1834. package/dist/icons/components/StadiumIcon.d.ts +0 -5
  1835. package/dist/icons/components/StairsIcon.d.ts +0 -5
  1836. package/dist/icons/components/StarBorderIcon.d.ts +0 -5
  1837. package/dist/icons/components/StarBorderPurple500Icon.d.ts +0 -5
  1838. package/dist/icons/components/StarHalfIcon.d.ts +0 -5
  1839. package/dist/icons/components/StarIcon.d.ts +0 -5
  1840. package/dist/icons/components/StarOutlineIcon.d.ts +0 -5
  1841. package/dist/icons/components/StarPurple500Icon.d.ts +0 -5
  1842. package/dist/icons/components/StarRateIcon.d.ts +0 -5
  1843. package/dist/icons/components/StarsIcon.d.ts +0 -5
  1844. package/dist/icons/components/StartIcon.d.ts +0 -5
  1845. package/dist/icons/components/StayCurrentLandscapeIcon.d.ts +0 -5
  1846. package/dist/icons/components/StayCurrentPortraitIcon.d.ts +0 -5
  1847. package/dist/icons/components/StayPrimaryLandscapeIcon.d.ts +0 -5
  1848. package/dist/icons/components/StayPrimaryPortraitIcon.d.ts +0 -5
  1849. package/dist/icons/components/StickyNote2Icon.d.ts +0 -5
  1850. package/dist/icons/components/StopCircleIcon.d.ts +0 -5
  1851. package/dist/icons/components/StopIcon.d.ts +0 -5
  1852. package/dist/icons/components/StopScreenShareIcon.d.ts +0 -5
  1853. package/dist/icons/components/StorageIcon.d.ts +0 -5
  1854. package/dist/icons/components/StoreIcon.d.ts +0 -5
  1855. package/dist/icons/components/StoreMallDirectoryIcon.d.ts +0 -5
  1856. package/dist/icons/components/StorefrontIcon.d.ts +0 -5
  1857. package/dist/icons/components/StormIcon.d.ts +0 -5
  1858. package/dist/icons/components/StraightIcon.d.ts +0 -5
  1859. package/dist/icons/components/StraightenIcon.d.ts +0 -5
  1860. package/dist/icons/components/StreamIcon.d.ts +0 -5
  1861. package/dist/icons/components/StreetviewIcon.d.ts +0 -5
  1862. package/dist/icons/components/StrikethroughSIcon.d.ts +0 -5
  1863. package/dist/icons/components/StrollerIcon.d.ts +0 -5
  1864. package/dist/icons/components/StyleIcon.d.ts +0 -5
  1865. package/dist/icons/components/SubdirectoryArrowLeftIcon.d.ts +0 -5
  1866. package/dist/icons/components/SubdirectoryArrowRightIcon.d.ts +0 -5
  1867. package/dist/icons/components/SubjectIcon.d.ts +0 -5
  1868. package/dist/icons/components/SubscriptIcon.d.ts +0 -5
  1869. package/dist/icons/components/SubscriptionsIcon.d.ts +0 -5
  1870. package/dist/icons/components/SubtitlesIcon.d.ts +0 -5
  1871. package/dist/icons/components/SubtitlesOffIcon.d.ts +0 -5
  1872. package/dist/icons/components/SubwayIcon.d.ts +0 -5
  1873. package/dist/icons/components/SummarizeIcon.d.ts +0 -5
  1874. package/dist/icons/components/SuperscriptIcon.d.ts +0 -5
  1875. package/dist/icons/components/SupervisedUserCircleIcon.d.ts +0 -5
  1876. package/dist/icons/components/SupervisorAccountIcon.d.ts +0 -5
  1877. package/dist/icons/components/SupportAgentIcon.d.ts +0 -5
  1878. package/dist/icons/components/SupportIcon.d.ts +0 -5
  1879. package/dist/icons/components/SurfingIcon.d.ts +0 -5
  1880. package/dist/icons/components/SurroundSoundIcon.d.ts +0 -5
  1881. package/dist/icons/components/SwapCallsIcon.d.ts +0 -5
  1882. package/dist/icons/components/SwapHorizIcon.d.ts +0 -5
  1883. package/dist/icons/components/SwapHorizontalCircleIcon.d.ts +0 -5
  1884. package/dist/icons/components/SwapVertIcon.d.ts +0 -5
  1885. package/dist/icons/components/SwapVerticalCircleIcon.d.ts +0 -5
  1886. package/dist/icons/components/SwipeDownAltIcon.d.ts +0 -5
  1887. package/dist/icons/components/SwipeDownIcon.d.ts +0 -5
  1888. package/dist/icons/components/SwipeIcon.d.ts +0 -5
  1889. package/dist/icons/components/SwipeLeftAltIcon.d.ts +0 -5
  1890. package/dist/icons/components/SwipeLeftIcon.d.ts +0 -5
  1891. package/dist/icons/components/SwipeRightAltIcon.d.ts +0 -5
  1892. package/dist/icons/components/SwipeRightIcon.d.ts +0 -5
  1893. package/dist/icons/components/SwipeUpAltIcon.d.ts +0 -5
  1894. package/dist/icons/components/SwipeUpIcon.d.ts +0 -5
  1895. package/dist/icons/components/SwipeVerticalIcon.d.ts +0 -5
  1896. package/dist/icons/components/SwitchAccessShortcutAddIcon.d.ts +0 -5
  1897. package/dist/icons/components/SwitchAccessShortcutIcon.d.ts +0 -5
  1898. package/dist/icons/components/SwitchAccountIcon.d.ts +0 -5
  1899. package/dist/icons/components/SwitchCameraIcon.d.ts +0 -5
  1900. package/dist/icons/components/SwitchLeftIcon.d.ts +0 -5
  1901. package/dist/icons/components/SwitchRightIcon.d.ts +0 -5
  1902. package/dist/icons/components/SwitchVideoIcon.d.ts +0 -5
  1903. package/dist/icons/components/SynagogueIcon.d.ts +0 -5
  1904. package/dist/icons/components/SyncAltIcon.d.ts +0 -5
  1905. package/dist/icons/components/SyncDisabledIcon.d.ts +0 -5
  1906. package/dist/icons/components/SyncIcon.d.ts +0 -5
  1907. package/dist/icons/components/SyncLockIcon.d.ts +0 -5
  1908. package/dist/icons/components/SyncProblemIcon.d.ts +0 -5
  1909. package/dist/icons/components/SystemSecurityUpdateGoodIcon.d.ts +0 -5
  1910. package/dist/icons/components/SystemSecurityUpdateIcon.d.ts +0 -5
  1911. package/dist/icons/components/SystemSecurityUpdateWarningIcon.d.ts +0 -5
  1912. package/dist/icons/components/SystemUpdateAltIcon.d.ts +0 -5
  1913. package/dist/icons/components/SystemUpdateIcon.d.ts +0 -5
  1914. package/dist/icons/components/TabIcon.d.ts +0 -5
  1915. package/dist/icons/components/TabUnselectedIcon.d.ts +0 -5
  1916. package/dist/icons/components/TableBarIcon.d.ts +0 -5
  1917. package/dist/icons/components/TableChartIcon.d.ts +0 -5
  1918. package/dist/icons/components/TableRestaurantIcon.d.ts +0 -5
  1919. package/dist/icons/components/TableRowsIcon.d.ts +0 -5
  1920. package/dist/icons/components/TableViewIcon.d.ts +0 -5
  1921. package/dist/icons/components/TabletAndroidIcon.d.ts +0 -5
  1922. package/dist/icons/components/TabletIcon.d.ts +0 -5
  1923. package/dist/icons/components/TabletMacIcon.d.ts +0 -5
  1924. package/dist/icons/components/TagFacesIcon.d.ts +0 -5
  1925. package/dist/icons/components/TagIcon.d.ts +0 -5
  1926. package/dist/icons/components/TakeoutDiningIcon.d.ts +0 -5
  1927. package/dist/icons/components/TapAndPlayIcon.d.ts +0 -5
  1928. package/dist/icons/components/TapasIcon.d.ts +0 -5
  1929. package/dist/icons/components/TaskAltIcon.d.ts +0 -5
  1930. package/dist/icons/components/TaskIcon.d.ts +0 -5
  1931. package/dist/icons/components/TaxiAlertIcon.d.ts +0 -5
  1932. package/dist/icons/components/TempleBuddhistIcon.d.ts +0 -5
  1933. package/dist/icons/components/TempleHinduIcon.d.ts +0 -5
  1934. package/dist/icons/components/TerminalIcon.d.ts +0 -5
  1935. package/dist/icons/components/TerrainIcon.d.ts +0 -5
  1936. package/dist/icons/components/TextDecreaseIcon.d.ts +0 -5
  1937. package/dist/icons/components/TextFieldsIcon.d.ts +0 -5
  1938. package/dist/icons/components/TextFormatIcon.d.ts +0 -5
  1939. package/dist/icons/components/TextIncreaseIcon.d.ts +0 -5
  1940. package/dist/icons/components/TextRotateUpIcon.d.ts +0 -5
  1941. package/dist/icons/components/TextRotateVerticalIcon.d.ts +0 -5
  1942. package/dist/icons/components/TextRotationAngledownIcon.d.ts +0 -5
  1943. package/dist/icons/components/TextRotationAngleupIcon.d.ts +0 -5
  1944. package/dist/icons/components/TextRotationDownIcon.d.ts +0 -5
  1945. package/dist/icons/components/TextRotationNoneIcon.d.ts +0 -5
  1946. package/dist/icons/components/TextSnippetIcon.d.ts +0 -5
  1947. package/dist/icons/components/TextsmsIcon.d.ts +0 -5
  1948. package/dist/icons/components/TextureIcon.d.ts +0 -5
  1949. package/dist/icons/components/TheaterComedyIcon.d.ts +0 -5
  1950. package/dist/icons/components/TheatersIcon.d.ts +0 -5
  1951. package/dist/icons/components/ThermostatAutoIcon.d.ts +0 -5
  1952. package/dist/icons/components/ThermostatIcon.d.ts +0 -5
  1953. package/dist/icons/components/ThumbDownAltIcon.d.ts +0 -5
  1954. package/dist/icons/components/ThumbDownIcon.d.ts +0 -5
  1955. package/dist/icons/components/ThumbDownOffAltIcon.d.ts +0 -5
  1956. package/dist/icons/components/ThumbUpAltIcon.d.ts +0 -5
  1957. package/dist/icons/components/ThumbUpIcon.d.ts +0 -5
  1958. package/dist/icons/components/ThumbUpOffAltIcon.d.ts +0 -5
  1959. package/dist/icons/components/ThumbsUpDownIcon.d.ts +0 -5
  1960. package/dist/icons/components/ThunderstormIcon.d.ts +0 -5
  1961. package/dist/icons/components/TimeToLeaveIcon.d.ts +0 -5
  1962. package/dist/icons/components/TimelapseIcon.d.ts +0 -5
  1963. package/dist/icons/components/TimelineIcon.d.ts +0 -5
  1964. package/dist/icons/components/Timer10Icon.d.ts +0 -5
  1965. package/dist/icons/components/Timer10SelectIcon.d.ts +0 -5
  1966. package/dist/icons/components/Timer3Icon.d.ts +0 -5
  1967. package/dist/icons/components/Timer3SelectIcon.d.ts +0 -5
  1968. package/dist/icons/components/TimerIcon.d.ts +0 -5
  1969. package/dist/icons/components/TimerOffIcon.d.ts +0 -5
  1970. package/dist/icons/components/TipsAndUpdatesIcon.d.ts +0 -5
  1971. package/dist/icons/components/TireRepairIcon.d.ts +0 -5
  1972. package/dist/icons/components/TitleIcon.d.ts +0 -5
  1973. package/dist/icons/components/TocIcon.d.ts +0 -5
  1974. package/dist/icons/components/TodayIcon.d.ts +0 -5
  1975. package/dist/icons/components/ToggleOffIcon.d.ts +0 -5
  1976. package/dist/icons/components/ToggleOnIcon.d.ts +0 -5
  1977. package/dist/icons/components/TokenIcon.d.ts +0 -5
  1978. package/dist/icons/components/TollIcon.d.ts +0 -5
  1979. package/dist/icons/components/TonalityIcon.d.ts +0 -5
  1980. package/dist/icons/components/TopicIcon.d.ts +0 -5
  1981. package/dist/icons/components/TornadoIcon.d.ts +0 -5
  1982. package/dist/icons/components/TouchAppIcon.d.ts +0 -5
  1983. package/dist/icons/components/TourIcon.d.ts +0 -5
  1984. package/dist/icons/components/ToysIcon.d.ts +0 -5
  1985. package/dist/icons/components/TrackChangesIcon.d.ts +0 -5
  1986. package/dist/icons/components/TrafficIcon.d.ts +0 -5
  1987. package/dist/icons/components/TrainIcon.d.ts +0 -5
  1988. package/dist/icons/components/TramIcon.d.ts +0 -5
  1989. package/dist/icons/components/TranscribeIcon.d.ts +0 -5
  1990. package/dist/icons/components/TransferWithinAStationIcon.d.ts +0 -5
  1991. package/dist/icons/components/TransformIcon.d.ts +0 -5
  1992. package/dist/icons/components/TransgenderIcon.d.ts +0 -5
  1993. package/dist/icons/components/TransitEnterexitIcon.d.ts +0 -5
  1994. package/dist/icons/components/TranslateIcon.d.ts +0 -5
  1995. package/dist/icons/components/TravelExploreIcon.d.ts +0 -5
  1996. package/dist/icons/components/TrendingDownIcon.d.ts +0 -5
  1997. package/dist/icons/components/TrendingFlatIcon.d.ts +0 -5
  1998. package/dist/icons/components/TrendingUpIcon.d.ts +0 -5
  1999. package/dist/icons/components/TripOriginIcon.d.ts +0 -5
  2000. package/dist/icons/components/TroubleshootIcon.d.ts +0 -5
  2001. package/dist/icons/components/TryIcon.d.ts +0 -5
  2002. package/dist/icons/components/TsunamiIcon.d.ts +0 -5
  2003. package/dist/icons/components/TtyIcon.d.ts +0 -5
  2004. package/dist/icons/components/TuneIcon.d.ts +0 -5
  2005. package/dist/icons/components/TungstenIcon.d.ts +0 -5
  2006. package/dist/icons/components/TurnLeftIcon.d.ts +0 -5
  2007. package/dist/icons/components/TurnRightIcon.d.ts +0 -5
  2008. package/dist/icons/components/TurnSharpLeftIcon.d.ts +0 -5
  2009. package/dist/icons/components/TurnSharpRightIcon.d.ts +0 -5
  2010. package/dist/icons/components/TurnSlightLeftIcon.d.ts +0 -5
  2011. package/dist/icons/components/TurnSlightRightIcon.d.ts +0 -5
  2012. package/dist/icons/components/TurnedInIcon.d.ts +0 -5
  2013. package/dist/icons/components/TurnedInNotIcon.d.ts +0 -5
  2014. package/dist/icons/components/TvIcon.d.ts +0 -5
  2015. package/dist/icons/components/TvOffIcon.d.ts +0 -5
  2016. package/dist/icons/components/TwoWheelerIcon.d.ts +0 -5
  2017. package/dist/icons/components/TypeSpecimenIcon.d.ts +0 -5
  2018. package/dist/icons/components/UTurnLeftIcon.d.ts +0 -5
  2019. package/dist/icons/components/UTurnRightIcon.d.ts +0 -5
  2020. package/dist/icons/components/UmbrellaIcon.d.ts +0 -5
  2021. package/dist/icons/components/UnarchiveIcon.d.ts +0 -5
  2022. package/dist/icons/components/UndoIcon.d.ts +0 -5
  2023. package/dist/icons/components/UnfoldLessDoubleIcon.d.ts +0 -5
  2024. package/dist/icons/components/UnfoldLessIcon.d.ts +0 -5
  2025. package/dist/icons/components/UnfoldMoreDoubleIcon.d.ts +0 -5
  2026. package/dist/icons/components/UnfoldMoreIcon.d.ts +0 -5
  2027. package/dist/icons/components/UnpublishedIcon.d.ts +0 -5
  2028. package/dist/icons/components/UnsubscribeIcon.d.ts +0 -5
  2029. package/dist/icons/components/UpcomingIcon.d.ts +0 -5
  2030. package/dist/icons/components/UpdateDisabledIcon.d.ts +0 -5
  2031. package/dist/icons/components/UpdateIcon.d.ts +0 -5
  2032. package/dist/icons/components/UpgradeIcon.d.ts +0 -5
  2033. package/dist/icons/components/UploadFileIcon.d.ts +0 -5
  2034. package/dist/icons/components/UploadIcon.d.ts +0 -5
  2035. package/dist/icons/components/UsbIcon.d.ts +0 -5
  2036. package/dist/icons/components/UsbOffIcon.d.ts +0 -5
  2037. package/dist/icons/components/VaccinesIcon.d.ts +0 -5
  2038. package/dist/icons/components/VapeFreeIcon.d.ts +0 -5
  2039. package/dist/icons/components/VapingRoomsIcon.d.ts +0 -5
  2040. package/dist/icons/components/VerifiedIcon.d.ts +0 -5
  2041. package/dist/icons/components/VerifiedUserIcon.d.ts +0 -5
  2042. package/dist/icons/components/VerticalAlignBottomIcon.d.ts +0 -5
  2043. package/dist/icons/components/VerticalAlignCenterIcon.d.ts +0 -5
  2044. package/dist/icons/components/VerticalAlignTopIcon.d.ts +0 -5
  2045. package/dist/icons/components/VerticalDistributeIcon.d.ts +0 -5
  2046. package/dist/icons/components/VerticalShadesClosedIcon.d.ts +0 -5
  2047. package/dist/icons/components/VerticalShadesIcon.d.ts +0 -5
  2048. package/dist/icons/components/VerticalSplitIcon.d.ts +0 -5
  2049. package/dist/icons/components/VibrationIcon.d.ts +0 -5
  2050. package/dist/icons/components/VideoCallIcon.d.ts +0 -5
  2051. package/dist/icons/components/VideoCameraBackIcon.d.ts +0 -5
  2052. package/dist/icons/components/VideoCameraFrontIcon.d.ts +0 -5
  2053. package/dist/icons/components/VideoChatIcon.d.ts +0 -5
  2054. package/dist/icons/components/VideoFileIcon.d.ts +0 -5
  2055. package/dist/icons/components/VideoLabelIcon.d.ts +0 -5
  2056. package/dist/icons/components/VideoLibraryIcon.d.ts +0 -5
  2057. package/dist/icons/components/VideoSettingsIcon.d.ts +0 -5
  2058. package/dist/icons/components/VideoStableIcon.d.ts +0 -5
  2059. package/dist/icons/components/VideocamIcon.d.ts +0 -5
  2060. package/dist/icons/components/VideocamOffIcon.d.ts +0 -5
  2061. package/dist/icons/components/VideogameAssetIcon.d.ts +0 -5
  2062. package/dist/icons/components/VideogameAssetOffIcon.d.ts +0 -5
  2063. package/dist/icons/components/ViewAgendaIcon.d.ts +0 -5
  2064. package/dist/icons/components/ViewArrayIcon.d.ts +0 -5
  2065. package/dist/icons/components/ViewCarouselIcon.d.ts +0 -5
  2066. package/dist/icons/components/ViewColumnIcon.d.ts +0 -5
  2067. package/dist/icons/components/ViewComfyAltIcon.d.ts +0 -5
  2068. package/dist/icons/components/ViewComfyIcon.d.ts +0 -5
  2069. package/dist/icons/components/ViewCompactAltIcon.d.ts +0 -5
  2070. package/dist/icons/components/ViewCompactIcon.d.ts +0 -5
  2071. package/dist/icons/components/ViewCozyIcon.d.ts +0 -5
  2072. package/dist/icons/components/ViewDayIcon.d.ts +0 -5
  2073. package/dist/icons/components/ViewHeadlineIcon.d.ts +0 -5
  2074. package/dist/icons/components/ViewInArIcon.d.ts +0 -5
  2075. package/dist/icons/components/ViewKanbanIcon.d.ts +0 -5
  2076. package/dist/icons/components/ViewListIcon.d.ts +0 -5
  2077. package/dist/icons/components/ViewModuleIcon.d.ts +0 -5
  2078. package/dist/icons/components/ViewQuiltIcon.d.ts +0 -5
  2079. package/dist/icons/components/ViewSidebarIcon.d.ts +0 -5
  2080. package/dist/icons/components/ViewStreamIcon.d.ts +0 -5
  2081. package/dist/icons/components/ViewTimelineIcon.d.ts +0 -5
  2082. package/dist/icons/components/ViewWeekIcon.d.ts +0 -5
  2083. package/dist/icons/components/VignetteIcon.d.ts +0 -5
  2084. package/dist/icons/components/VillaIcon.d.ts +0 -5
  2085. package/dist/icons/components/VisibilityIcon.d.ts +0 -5
  2086. package/dist/icons/components/VisibilityOffIcon.d.ts +0 -5
  2087. package/dist/icons/components/VoiceChatIcon.d.ts +0 -5
  2088. package/dist/icons/components/VoiceOverOffIcon.d.ts +0 -5
  2089. package/dist/icons/components/VoicemailIcon.d.ts +0 -5
  2090. package/dist/icons/components/VolcanoIcon.d.ts +0 -5
  2091. package/dist/icons/components/VolumeDownIcon.d.ts +0 -5
  2092. package/dist/icons/components/VolumeMuteIcon.d.ts +0 -5
  2093. package/dist/icons/components/VolumeOffIcon.d.ts +0 -5
  2094. package/dist/icons/components/VolumeUpIcon.d.ts +0 -5
  2095. package/dist/icons/components/VolunteerActivismIcon.d.ts +0 -5
  2096. package/dist/icons/components/VpnKeyIcon.d.ts +0 -5
  2097. package/dist/icons/components/VpnKeyOffIcon.d.ts +0 -5
  2098. package/dist/icons/components/VpnLockIcon.d.ts +0 -5
  2099. package/dist/icons/components/VrpanoIcon.d.ts +0 -5
  2100. package/dist/icons/components/WalletIcon.d.ts +0 -5
  2101. package/dist/icons/components/WallpaperIcon.d.ts +0 -5
  2102. package/dist/icons/components/WarehouseIcon.d.ts +0 -5
  2103. package/dist/icons/components/WarningAmberIcon.d.ts +0 -5
  2104. package/dist/icons/components/WarningIcon.d.ts +0 -5
  2105. package/dist/icons/components/WashIcon.d.ts +0 -5
  2106. package/dist/icons/components/WatchIcon.d.ts +0 -5
  2107. package/dist/icons/components/WatchLaterIcon.d.ts +0 -5
  2108. package/dist/icons/components/WatchOffIcon.d.ts +0 -5
  2109. package/dist/icons/components/WaterDamageIcon.d.ts +0 -5
  2110. package/dist/icons/components/WaterDropIcon.d.ts +0 -5
  2111. package/dist/icons/components/WaterIcon.d.ts +0 -5
  2112. package/dist/icons/components/WaterfallChartIcon.d.ts +0 -5
  2113. package/dist/icons/components/WavesIcon.d.ts +0 -5
  2114. package/dist/icons/components/WavingHandIcon.d.ts +0 -5
  2115. package/dist/icons/components/WbAutoIcon.d.ts +0 -5
  2116. package/dist/icons/components/WbCloudyIcon.d.ts +0 -5
  2117. package/dist/icons/components/WbIncandescentIcon.d.ts +0 -5
  2118. package/dist/icons/components/WbIridescentIcon.d.ts +0 -5
  2119. package/dist/icons/components/WbShadeIcon.d.ts +0 -5
  2120. package/dist/icons/components/WbSunnyIcon.d.ts +0 -5
  2121. package/dist/icons/components/WbTwilightIcon.d.ts +0 -5
  2122. package/dist/icons/components/WcIcon.d.ts +0 -5
  2123. package/dist/icons/components/WebAssetIcon.d.ts +0 -5
  2124. package/dist/icons/components/WebAssetOffIcon.d.ts +0 -5
  2125. package/dist/icons/components/WebIcon.d.ts +0 -5
  2126. package/dist/icons/components/WebStoriesIcon.d.ts +0 -5
  2127. package/dist/icons/components/WebhookIcon.d.ts +0 -5
  2128. package/dist/icons/components/WeekendIcon.d.ts +0 -5
  2129. package/dist/icons/components/WestIcon.d.ts +0 -5
  2130. package/dist/icons/components/WhatshotIcon.d.ts +0 -5
  2131. package/dist/icons/components/WheelchairPickupIcon.d.ts +0 -5
  2132. package/dist/icons/components/WhereToVoteIcon.d.ts +0 -5
  2133. package/dist/icons/components/WidgetsIcon.d.ts +0 -5
  2134. package/dist/icons/components/WidthFullIcon.d.ts +0 -5
  2135. package/dist/icons/components/WidthNormalIcon.d.ts +0 -5
  2136. package/dist/icons/components/WidthWideIcon.d.ts +0 -5
  2137. package/dist/icons/components/Wifi1BarIcon.d.ts +0 -5
  2138. package/dist/icons/components/Wifi2BarIcon.d.ts +0 -5
  2139. package/dist/icons/components/WifiCalling3Icon.d.ts +0 -5
  2140. package/dist/icons/components/WifiCallingIcon.d.ts +0 -5
  2141. package/dist/icons/components/WifiChannelIcon.d.ts +0 -5
  2142. package/dist/icons/components/WifiFindIcon.d.ts +0 -5
  2143. package/dist/icons/components/WifiIcon.d.ts +0 -5
  2144. package/dist/icons/components/WifiLockIcon.d.ts +0 -5
  2145. package/dist/icons/components/WifiOffIcon.d.ts +0 -5
  2146. package/dist/icons/components/WifiPasswordIcon.d.ts +0 -5
  2147. package/dist/icons/components/WifiProtectedSetupIcon.d.ts +0 -5
  2148. package/dist/icons/components/WifiTetheringErrorIcon.d.ts +0 -5
  2149. package/dist/icons/components/WifiTetheringIcon.d.ts +0 -5
  2150. package/dist/icons/components/WifiTetheringOffIcon.d.ts +0 -5
  2151. package/dist/icons/components/WindPowerIcon.d.ts +0 -5
  2152. package/dist/icons/components/WindowIcon.d.ts +0 -5
  2153. package/dist/icons/components/WineBarIcon.d.ts +0 -5
  2154. package/dist/icons/components/Woman2Icon.d.ts +0 -5
  2155. package/dist/icons/components/WomanIcon.d.ts +0 -5
  2156. package/dist/icons/components/WorkHistoryIcon.d.ts +0 -5
  2157. package/dist/icons/components/WorkIcon.d.ts +0 -5
  2158. package/dist/icons/components/WorkOffIcon.d.ts +0 -5
  2159. package/dist/icons/components/WorkOutlineIcon.d.ts +0 -5
  2160. package/dist/icons/components/WorkspacePremiumIcon.d.ts +0 -5
  2161. package/dist/icons/components/WorkspacesIcon.d.ts +0 -5
  2162. package/dist/icons/components/WrapTextIcon.d.ts +0 -5
  2163. package/dist/icons/components/WrongLocationIcon.d.ts +0 -5
  2164. package/dist/icons/components/WysiwygIcon.d.ts +0 -5
  2165. package/dist/icons/components/YardIcon.d.ts +0 -5
  2166. package/dist/icons/components/YoutubeSearchedForIcon.d.ts +0 -5
  2167. package/dist/icons/components/ZoomInIcon.d.ts +0 -5
  2168. package/dist/icons/components/ZoomInMapIcon.d.ts +0 -5
  2169. package/dist/icons/components/ZoomOutIcon.d.ts +0 -5
  2170. package/dist/icons/components/ZoomOutMapIcon.d.ts +0 -5
  2171. package/dist/icons/components/_10kIcon.d.ts +0 -5
  2172. package/dist/icons/components/_10mpIcon.d.ts +0 -5
  2173. package/dist/icons/components/_11mpIcon.d.ts +0 -5
  2174. package/dist/icons/components/_123Icon.d.ts +0 -5
  2175. package/dist/icons/components/_12mpIcon.d.ts +0 -5
  2176. package/dist/icons/components/_13mpIcon.d.ts +0 -5
  2177. package/dist/icons/components/_14mpIcon.d.ts +0 -5
  2178. package/dist/icons/components/_15mpIcon.d.ts +0 -5
  2179. package/dist/icons/components/_16mpIcon.d.ts +0 -5
  2180. package/dist/icons/components/_17mpIcon.d.ts +0 -5
  2181. package/dist/icons/components/_18UpRatingIcon.d.ts +0 -5
  2182. package/dist/icons/components/_18mpIcon.d.ts +0 -5
  2183. package/dist/icons/components/_19mpIcon.d.ts +0 -5
  2184. package/dist/icons/components/_1kIcon.d.ts +0 -5
  2185. package/dist/icons/components/_1kPlusIcon.d.ts +0 -5
  2186. package/dist/icons/components/_1xMobiledataIcon.d.ts +0 -5
  2187. package/dist/icons/components/_20mpIcon.d.ts +0 -5
  2188. package/dist/icons/components/_21mpIcon.d.ts +0 -5
  2189. package/dist/icons/components/_22mpIcon.d.ts +0 -5
  2190. package/dist/icons/components/_23mpIcon.d.ts +0 -5
  2191. package/dist/icons/components/_24mpIcon.d.ts +0 -5
  2192. package/dist/icons/components/_2kIcon.d.ts +0 -5
  2193. package/dist/icons/components/_2kPlusIcon.d.ts +0 -5
  2194. package/dist/icons/components/_2mpIcon.d.ts +0 -5
  2195. package/dist/icons/components/_30fpsIcon.d.ts +0 -5
  2196. package/dist/icons/components/_30fpsSelectIcon.d.ts +0 -5
  2197. package/dist/icons/components/_360Icon.d.ts +0 -5
  2198. package/dist/icons/components/_3dRotationIcon.d.ts +0 -5
  2199. package/dist/icons/components/_3gMobiledataIcon.d.ts +0 -5
  2200. package/dist/icons/components/_3kIcon.d.ts +0 -5
  2201. package/dist/icons/components/_3kPlusIcon.d.ts +0 -5
  2202. package/dist/icons/components/_3mpIcon.d.ts +0 -5
  2203. package/dist/icons/components/_3pIcon.d.ts +0 -5
  2204. package/dist/icons/components/_4gMobiledataIcon.d.ts +0 -5
  2205. package/dist/icons/components/_4gPlusMobiledataIcon.d.ts +0 -5
  2206. package/dist/icons/components/_4kIcon.d.ts +0 -5
  2207. package/dist/icons/components/_4kPlusIcon.d.ts +0 -5
  2208. package/dist/icons/components/_4mpIcon.d.ts +0 -5
  2209. package/dist/icons/components/_5gIcon.d.ts +0 -5
  2210. package/dist/icons/components/_5kIcon.d.ts +0 -5
  2211. package/dist/icons/components/_5kPlusIcon.d.ts +0 -5
  2212. package/dist/icons/components/_5mpIcon.d.ts +0 -5
  2213. package/dist/icons/components/_60fpsIcon.d.ts +0 -5
  2214. package/dist/icons/components/_60fpsSelectIcon.d.ts +0 -5
  2215. package/dist/icons/components/_6FtApartIcon.d.ts +0 -5
  2216. package/dist/icons/components/_6kIcon.d.ts +0 -5
  2217. package/dist/icons/components/_6kPlusIcon.d.ts +0 -5
  2218. package/dist/icons/components/_6mpIcon.d.ts +0 -5
  2219. package/dist/icons/components/_7kIcon.d.ts +0 -5
  2220. package/dist/icons/components/_7kPlusIcon.d.ts +0 -5
  2221. package/dist/icons/components/_7mpIcon.d.ts +0 -5
  2222. package/dist/icons/components/_8kIcon.d.ts +0 -5
  2223. package/dist/icons/components/_8kPlusIcon.d.ts +0 -5
  2224. package/dist/icons/components/_8mpIcon.d.ts +0 -5
  2225. package/dist/icons/components/_9kIcon.d.ts +0 -5
  2226. package/dist/icons/components/_9kPlusIcon.d.ts +0 -5
  2227. package/dist/icons/components/_9mpIcon.d.ts +0 -5
  2228. package/dist/icons/generateIcons.d.ts +0 -1
  2229. package/dist/icons/icon_keys.d.ts +0 -2
  2230. package/dist/icons/index.d.ts +0 -2125
  2231. package/dist/styles.d.ts +0 -12
  2232. package/dist/types/colors.d.ts +0 -11
  2233. package/dist/ui/Alert.d.ts +0 -10
  2234. package/dist/ui/Autocomplete.d.ts +0 -19
  2235. package/dist/ui/Avatar.d.ts +0 -9
  2236. package/dist/ui/Badge.d.ts +0 -9
  2237. package/dist/ui/BooleanSwitch.d.ts +0 -14
  2238. package/dist/ui/BooleanSwitchWithLabel.d.ts +0 -14
  2239. package/dist/ui/Button.d.ts +0 -11
  2240. package/dist/ui/Card.d.ts +0 -7
  2241. package/dist/ui/CenteredView.d.ts +0 -7
  2242. package/dist/ui/Checkbox.d.ts +0 -9
  2243. package/dist/ui/Chip.d.ts +0 -16
  2244. package/dist/ui/CircularProgress.d.ts +0 -5
  2245. package/dist/ui/Collapse.d.ts +0 -9
  2246. package/dist/ui/Container.d.ts +0 -8
  2247. package/dist/ui/DateTimeField.d.ts +0 -18
  2248. package/dist/ui/DebouncedTextField.d.ts +0 -2
  2249. package/dist/ui/Dialog.d.ts +0 -28
  2250. package/dist/ui/DialogActions.d.ts +0 -7
  2251. package/dist/ui/DialogContent.d.ts +0 -6
  2252. package/dist/ui/ExpandablePanel.d.ts +0 -11
  2253. package/dist/ui/FileUpload.d.ts +0 -23
  2254. package/dist/ui/IconButton.d.ts +0 -11
  2255. package/dist/ui/InfoLabel.d.ts +0 -5
  2256. package/dist/ui/InputLabel.d.ts +0 -11
  2257. package/dist/ui/LoadingButton.d.ts +0 -7
  2258. package/dist/ui/Markdown.d.ts +0 -9
  2259. package/dist/ui/Menu.d.ts +0 -14
  2260. package/dist/ui/MultiSelect.d.ts +0 -39
  2261. package/dist/ui/Paper.d.ts +0 -5
  2262. package/dist/ui/Popover.d.ts +0 -21
  2263. package/dist/ui/SearchBar.d.ts +0 -10
  2264. package/dist/ui/Select.d.ts +0 -42
  2265. package/dist/ui/Sheet.d.ts +0 -10
  2266. package/dist/ui/Skeleton.d.ts +0 -6
  2267. package/dist/ui/Spinner.d.ts +0 -1
  2268. package/dist/ui/Table.d.ts +0 -34
  2269. package/dist/ui/Tabs.d.ts +0 -14
  2270. package/dist/ui/TextField.d.ts +0 -23
  2271. package/dist/ui/TextareaAutosize.d.ts +0 -74
  2272. package/dist/ui/Tooltip.d.ts +0 -12
  2273. package/dist/ui/Typography.d.ts +0 -35
  2274. package/dist/ui/common/SelectInputLabel.d.ts +0 -4
  2275. package/dist/ui/index.d.ts +0 -42
  2276. package/dist/ui/util/cn.d.ts +0 -2
  2277. package/dist/ui/util/index.d.ts +0 -3
  2278. package/dist/ui/util/useInjectStyles.d.ts +0 -7
  2279. package/dist/ui/util/useOutsideAlerter.d.ts +0 -5
  2280. package/dist/util/debounce.d.ts +0 -10
  2281. package/src/icons/GitHubIcon.tsx +0 -13
  2282. package/src/icons/Icon.tsx +0 -63
  2283. package/src/icons/components/AbcIcon.tsx +0 -8
  2284. package/src/icons/components/AcUnitIcon.tsx +0 -8
  2285. package/src/icons/components/AccessAlarmIcon.tsx +0 -8
  2286. package/src/icons/components/AccessAlarmsIcon.tsx +0 -8
  2287. package/src/icons/components/AccessTimeFilledIcon.tsx +0 -8
  2288. package/src/icons/components/AccessTimeIcon.tsx +0 -8
  2289. package/src/icons/components/AccessibilityIcon.tsx +0 -8
  2290. package/src/icons/components/AccessibilityNewIcon.tsx +0 -8
  2291. package/src/icons/components/AccessibleForwardIcon.tsx +0 -8
  2292. package/src/icons/components/AccessibleIcon.tsx +0 -8
  2293. package/src/icons/components/AccountBalanceIcon.tsx +0 -8
  2294. package/src/icons/components/AccountBalanceWalletIcon.tsx +0 -8
  2295. package/src/icons/components/AccountBoxIcon.tsx +0 -8
  2296. package/src/icons/components/AccountCircleIcon.tsx +0 -8
  2297. package/src/icons/components/AccountTreeIcon.tsx +0 -8
  2298. package/src/icons/components/AdUnitsIcon.tsx +0 -8
  2299. package/src/icons/components/AdbIcon.tsx +0 -8
  2300. package/src/icons/components/AddAPhotoIcon.tsx +0 -8
  2301. package/src/icons/components/AddAlarmIcon.tsx +0 -8
  2302. package/src/icons/components/AddAlertIcon.tsx +0 -8
  2303. package/src/icons/components/AddBoxIcon.tsx +0 -8
  2304. package/src/icons/components/AddBusinessIcon.tsx +0 -8
  2305. package/src/icons/components/AddCardIcon.tsx +0 -8
  2306. package/src/icons/components/AddChartIcon.tsx +0 -8
  2307. package/src/icons/components/AddCircleIcon.tsx +0 -8
  2308. package/src/icons/components/AddCircleOutlineIcon.tsx +0 -8
  2309. package/src/icons/components/AddCommentIcon.tsx +0 -8
  2310. package/src/icons/components/AddHomeIcon.tsx +0 -8
  2311. package/src/icons/components/AddHomeWorkIcon.tsx +0 -8
  2312. package/src/icons/components/AddIcCallIcon.tsx +0 -8
  2313. package/src/icons/components/AddIcon.tsx +0 -8
  2314. package/src/icons/components/AddLinkIcon.tsx +0 -8
  2315. package/src/icons/components/AddLocationAltIcon.tsx +0 -8
  2316. package/src/icons/components/AddLocationIcon.tsx +0 -8
  2317. package/src/icons/components/AddModeratorIcon.tsx +0 -8
  2318. package/src/icons/components/AddPhotoAlternateIcon.tsx +0 -8
  2319. package/src/icons/components/AddReactionIcon.tsx +0 -8
  2320. package/src/icons/components/AddRoadIcon.tsx +0 -8
  2321. package/src/icons/components/AddShoppingCartIcon.tsx +0 -8
  2322. package/src/icons/components/AddTaskIcon.tsx +0 -8
  2323. package/src/icons/components/AddToDriveIcon.tsx +0 -8
  2324. package/src/icons/components/AddToHomeScreenIcon.tsx +0 -8
  2325. package/src/icons/components/AddToPhotosIcon.tsx +0 -8
  2326. package/src/icons/components/AddToQueueIcon.tsx +0 -8
  2327. package/src/icons/components/AdfScannerIcon.tsx +0 -8
  2328. package/src/icons/components/AdjustIcon.tsx +0 -8
  2329. package/src/icons/components/AdminPanelSettingsIcon.tsx +0 -8
  2330. package/src/icons/components/AdsClickIcon.tsx +0 -8
  2331. package/src/icons/components/AgricultureIcon.tsx +0 -8
  2332. package/src/icons/components/AirIcon.tsx +0 -8
  2333. package/src/icons/components/AirlineSeatFlatAngledIcon.tsx +0 -8
  2334. package/src/icons/components/AirlineSeatFlatIcon.tsx +0 -8
  2335. package/src/icons/components/AirlineSeatIndividualSuiteIcon.tsx +0 -8
  2336. package/src/icons/components/AirlineSeatLegroomExtraIcon.tsx +0 -8
  2337. package/src/icons/components/AirlineSeatLegroomNormalIcon.tsx +0 -8
  2338. package/src/icons/components/AirlineSeatLegroomReducedIcon.tsx +0 -8
  2339. package/src/icons/components/AirlineSeatReclineExtraIcon.tsx +0 -8
  2340. package/src/icons/components/AirlineSeatReclineNormalIcon.tsx +0 -8
  2341. package/src/icons/components/AirlineStopsIcon.tsx +0 -8
  2342. package/src/icons/components/AirlinesIcon.tsx +0 -8
  2343. package/src/icons/components/AirplaneTicketIcon.tsx +0 -8
  2344. package/src/icons/components/AirplanemodeActiveIcon.tsx +0 -8
  2345. package/src/icons/components/AirplanemodeInactiveIcon.tsx +0 -8
  2346. package/src/icons/components/AirplayIcon.tsx +0 -8
  2347. package/src/icons/components/AirportShuttleIcon.tsx +0 -8
  2348. package/src/icons/components/AlarmAddIcon.tsx +0 -8
  2349. package/src/icons/components/AlarmIcon.tsx +0 -8
  2350. package/src/icons/components/AlarmOffIcon.tsx +0 -8
  2351. package/src/icons/components/AlarmOnIcon.tsx +0 -8
  2352. package/src/icons/components/AlbumIcon.tsx +0 -8
  2353. package/src/icons/components/AlignHorizontalCenterIcon.tsx +0 -8
  2354. package/src/icons/components/AlignHorizontalLeftIcon.tsx +0 -8
  2355. package/src/icons/components/AlignHorizontalRightIcon.tsx +0 -8
  2356. package/src/icons/components/AlignVerticalBottomIcon.tsx +0 -8
  2357. package/src/icons/components/AlignVerticalCenterIcon.tsx +0 -8
  2358. package/src/icons/components/AlignVerticalTopIcon.tsx +0 -8
  2359. package/src/icons/components/AllInboxIcon.tsx +0 -8
  2360. package/src/icons/components/AllInclusiveIcon.tsx +0 -8
  2361. package/src/icons/components/AllOutIcon.tsx +0 -8
  2362. package/src/icons/components/AltRouteIcon.tsx +0 -8
  2363. package/src/icons/components/AlternateEmailIcon.tsx +0 -8
  2364. package/src/icons/components/AnalyticsIcon.tsx +0 -8
  2365. package/src/icons/components/AnchorIcon.tsx +0 -8
  2366. package/src/icons/components/AndroidIcon.tsx +0 -8
  2367. package/src/icons/components/AnimationIcon.tsx +0 -8
  2368. package/src/icons/components/AnnouncementIcon.tsx +0 -8
  2369. package/src/icons/components/AodIcon.tsx +0 -8
  2370. package/src/icons/components/ApartmentIcon.tsx +0 -8
  2371. package/src/icons/components/ApiIcon.tsx +0 -8
  2372. package/src/icons/components/AppBlockingIcon.tsx +0 -8
  2373. package/src/icons/components/AppRegistrationIcon.tsx +0 -8
  2374. package/src/icons/components/AppSettingsAltIcon.tsx +0 -8
  2375. package/src/icons/components/AppShortcutIcon.tsx +0 -8
  2376. package/src/icons/components/ApprovalIcon.tsx +0 -8
  2377. package/src/icons/components/AppsIcon.tsx +0 -8
  2378. package/src/icons/components/AppsOutageIcon.tsx +0 -8
  2379. package/src/icons/components/ArchitectureIcon.tsx +0 -8
  2380. package/src/icons/components/ArchiveIcon.tsx +0 -8
  2381. package/src/icons/components/AreaChartIcon.tsx +0 -8
  2382. package/src/icons/components/ArrowBackIcon.tsx +0 -8
  2383. package/src/icons/components/ArrowBackIosIcon.tsx +0 -8
  2384. package/src/icons/components/ArrowBackIosNewIcon.tsx +0 -8
  2385. package/src/icons/components/ArrowCircleDownIcon.tsx +0 -8
  2386. package/src/icons/components/ArrowCircleLeftIcon.tsx +0 -8
  2387. package/src/icons/components/ArrowCircleRightIcon.tsx +0 -8
  2388. package/src/icons/components/ArrowCircleUpIcon.tsx +0 -8
  2389. package/src/icons/components/ArrowDownwardIcon.tsx +0 -8
  2390. package/src/icons/components/ArrowDropDownCircleIcon.tsx +0 -8
  2391. package/src/icons/components/ArrowDropDownIcon.tsx +0 -8
  2392. package/src/icons/components/ArrowDropUpIcon.tsx +0 -8
  2393. package/src/icons/components/ArrowForwardIcon.tsx +0 -8
  2394. package/src/icons/components/ArrowForwardIosIcon.tsx +0 -8
  2395. package/src/icons/components/ArrowLeftIcon.tsx +0 -8
  2396. package/src/icons/components/ArrowOutwardIcon.tsx +0 -8
  2397. package/src/icons/components/ArrowRightAltIcon.tsx +0 -8
  2398. package/src/icons/components/ArrowRightIcon.tsx +0 -8
  2399. package/src/icons/components/ArrowUpwardIcon.tsx +0 -8
  2400. package/src/icons/components/ArtTrackIcon.tsx +0 -8
  2401. package/src/icons/components/ArticleIcon.tsx +0 -8
  2402. package/src/icons/components/AspectRatioIcon.tsx +0 -8
  2403. package/src/icons/components/AssessmentIcon.tsx +0 -8
  2404. package/src/icons/components/AssignmentIcon.tsx +0 -8
  2405. package/src/icons/components/AssignmentIndIcon.tsx +0 -8
  2406. package/src/icons/components/AssignmentLateIcon.tsx +0 -8
  2407. package/src/icons/components/AssignmentReturnIcon.tsx +0 -8
  2408. package/src/icons/components/AssignmentReturnedIcon.tsx +0 -8
  2409. package/src/icons/components/AssignmentTurnedInIcon.tsx +0 -8
  2410. package/src/icons/components/AssistWalkerIcon.tsx +0 -8
  2411. package/src/icons/components/AssistantDirectionIcon.tsx +0 -8
  2412. package/src/icons/components/AssistantIcon.tsx +0 -8
  2413. package/src/icons/components/AssistantPhotoIcon.tsx +0 -8
  2414. package/src/icons/components/AssuredWorkloadIcon.tsx +0 -8
  2415. package/src/icons/components/AtmIcon.tsx +0 -8
  2416. package/src/icons/components/AttachEmailIcon.tsx +0 -8
  2417. package/src/icons/components/AttachFileIcon.tsx +0 -8
  2418. package/src/icons/components/AttachMoneyIcon.tsx +0 -8
  2419. package/src/icons/components/AttachmentIcon.tsx +0 -8
  2420. package/src/icons/components/AttractionsIcon.tsx +0 -8
  2421. package/src/icons/components/AttributionIcon.tsx +0 -8
  2422. package/src/icons/components/AudioFileIcon.tsx +0 -8
  2423. package/src/icons/components/AudiotrackIcon.tsx +0 -8
  2424. package/src/icons/components/AutoAwesomeIcon.tsx +0 -8
  2425. package/src/icons/components/AutoAwesomeMosaicIcon.tsx +0 -8
  2426. package/src/icons/components/AutoAwesomeMotionIcon.tsx +0 -8
  2427. package/src/icons/components/AutoDeleteIcon.tsx +0 -8
  2428. package/src/icons/components/AutoFixHighIcon.tsx +0 -8
  2429. package/src/icons/components/AutoFixNormalIcon.tsx +0 -8
  2430. package/src/icons/components/AutoFixOffIcon.tsx +0 -8
  2431. package/src/icons/components/AutoGraphIcon.tsx +0 -8
  2432. package/src/icons/components/AutoModeIcon.tsx +0 -8
  2433. package/src/icons/components/AutoStoriesIcon.tsx +0 -8
  2434. package/src/icons/components/AutofpsSelectIcon.tsx +0 -8
  2435. package/src/icons/components/AutorenewIcon.tsx +0 -8
  2436. package/src/icons/components/AvTimerIcon.tsx +0 -8
  2437. package/src/icons/components/BabyChangingStationIcon.tsx +0 -8
  2438. package/src/icons/components/BackHandIcon.tsx +0 -8
  2439. package/src/icons/components/BackpackIcon.tsx +0 -8
  2440. package/src/icons/components/BackspaceIcon.tsx +0 -8
  2441. package/src/icons/components/BackupIcon.tsx +0 -8
  2442. package/src/icons/components/BackupTableIcon.tsx +0 -8
  2443. package/src/icons/components/BadgeIcon.tsx +0 -8
  2444. package/src/icons/components/BakeryDiningIcon.tsx +0 -8
  2445. package/src/icons/components/BalanceIcon.tsx +0 -8
  2446. package/src/icons/components/BalconyIcon.tsx +0 -8
  2447. package/src/icons/components/BallotIcon.tsx +0 -8
  2448. package/src/icons/components/BarChartIcon.tsx +0 -8
  2449. package/src/icons/components/BatchPredictionIcon.tsx +0 -8
  2450. package/src/icons/components/BathroomIcon.tsx +0 -8
  2451. package/src/icons/components/BathtubIcon.tsx +0 -8
  2452. package/src/icons/components/Battery0BarIcon.tsx +0 -8
  2453. package/src/icons/components/Battery1BarIcon.tsx +0 -8
  2454. package/src/icons/components/Battery2BarIcon.tsx +0 -8
  2455. package/src/icons/components/Battery3BarIcon.tsx +0 -8
  2456. package/src/icons/components/Battery4BarIcon.tsx +0 -8
  2457. package/src/icons/components/Battery5BarIcon.tsx +0 -8
  2458. package/src/icons/components/Battery6BarIcon.tsx +0 -8
  2459. package/src/icons/components/BatteryAlertIcon.tsx +0 -8
  2460. package/src/icons/components/BatteryChargingFullIcon.tsx +0 -8
  2461. package/src/icons/components/BatteryFullIcon.tsx +0 -8
  2462. package/src/icons/components/BatterySaverIcon.tsx +0 -8
  2463. package/src/icons/components/BatteryStdIcon.tsx +0 -8
  2464. package/src/icons/components/BatteryUnknownIcon.tsx +0 -8
  2465. package/src/icons/components/BeachAccessIcon.tsx +0 -8
  2466. package/src/icons/components/BedIcon.tsx +0 -8
  2467. package/src/icons/components/BedroomBabyIcon.tsx +0 -8
  2468. package/src/icons/components/BedroomChildIcon.tsx +0 -8
  2469. package/src/icons/components/BedroomParentIcon.tsx +0 -8
  2470. package/src/icons/components/BedtimeIcon.tsx +0 -8
  2471. package/src/icons/components/BedtimeOffIcon.tsx +0 -8
  2472. package/src/icons/components/BeenhereIcon.tsx +0 -8
  2473. package/src/icons/components/BentoIcon.tsx +0 -8
  2474. package/src/icons/components/BikeScooterIcon.tsx +0 -8
  2475. package/src/icons/components/BiotechIcon.tsx +0 -8
  2476. package/src/icons/components/BlenderIcon.tsx +0 -8
  2477. package/src/icons/components/BlindIcon.tsx +0 -8
  2478. package/src/icons/components/BlindsClosedIcon.tsx +0 -8
  2479. package/src/icons/components/BlindsIcon.tsx +0 -8
  2480. package/src/icons/components/BlockIcon.tsx +0 -8
  2481. package/src/icons/components/BloodtypeIcon.tsx +0 -8
  2482. package/src/icons/components/BluetoothAudioIcon.tsx +0 -8
  2483. package/src/icons/components/BluetoothConnectedIcon.tsx +0 -8
  2484. package/src/icons/components/BluetoothDisabledIcon.tsx +0 -8
  2485. package/src/icons/components/BluetoothDriveIcon.tsx +0 -8
  2486. package/src/icons/components/BluetoothIcon.tsx +0 -8
  2487. package/src/icons/components/BluetoothSearchingIcon.tsx +0 -8
  2488. package/src/icons/components/BlurCircularIcon.tsx +0 -8
  2489. package/src/icons/components/BlurLinearIcon.tsx +0 -8
  2490. package/src/icons/components/BlurOffIcon.tsx +0 -8
  2491. package/src/icons/components/BlurOnIcon.tsx +0 -8
  2492. package/src/icons/components/BoltIcon.tsx +0 -8
  2493. package/src/icons/components/BookIcon.tsx +0 -8
  2494. package/src/icons/components/BookOnlineIcon.tsx +0 -8
  2495. package/src/icons/components/BookmarkAddIcon.tsx +0 -8
  2496. package/src/icons/components/BookmarkAddedIcon.tsx +0 -8
  2497. package/src/icons/components/BookmarkBorderIcon.tsx +0 -8
  2498. package/src/icons/components/BookmarkIcon.tsx +0 -8
  2499. package/src/icons/components/BookmarkRemoveIcon.tsx +0 -8
  2500. package/src/icons/components/BookmarksIcon.tsx +0 -8
  2501. package/src/icons/components/BorderAllIcon.tsx +0 -8
  2502. package/src/icons/components/BorderBottomIcon.tsx +0 -8
  2503. package/src/icons/components/BorderClearIcon.tsx +0 -8
  2504. package/src/icons/components/BorderColorIcon.tsx +0 -8
  2505. package/src/icons/components/BorderHorizontalIcon.tsx +0 -8
  2506. package/src/icons/components/BorderInnerIcon.tsx +0 -8
  2507. package/src/icons/components/BorderLeftIcon.tsx +0 -8
  2508. package/src/icons/components/BorderOuterIcon.tsx +0 -8
  2509. package/src/icons/components/BorderRightIcon.tsx +0 -8
  2510. package/src/icons/components/BorderStyleIcon.tsx +0 -8
  2511. package/src/icons/components/BorderTopIcon.tsx +0 -8
  2512. package/src/icons/components/BorderVerticalIcon.tsx +0 -8
  2513. package/src/icons/components/BoyIcon.tsx +0 -8
  2514. package/src/icons/components/BrandingWatermarkIcon.tsx +0 -8
  2515. package/src/icons/components/BreakfastDiningIcon.tsx +0 -8
  2516. package/src/icons/components/Brightness1Icon.tsx +0 -8
  2517. package/src/icons/components/Brightness2Icon.tsx +0 -8
  2518. package/src/icons/components/Brightness3Icon.tsx +0 -8
  2519. package/src/icons/components/Brightness4Icon.tsx +0 -8
  2520. package/src/icons/components/Brightness5Icon.tsx +0 -8
  2521. package/src/icons/components/Brightness6Icon.tsx +0 -8
  2522. package/src/icons/components/Brightness7Icon.tsx +0 -8
  2523. package/src/icons/components/BrightnessAutoIcon.tsx +0 -8
  2524. package/src/icons/components/BrightnessHighIcon.tsx +0 -8
  2525. package/src/icons/components/BrightnessLowIcon.tsx +0 -8
  2526. package/src/icons/components/BrightnessMediumIcon.tsx +0 -8
  2527. package/src/icons/components/BroadcastOnHomeIcon.tsx +0 -8
  2528. package/src/icons/components/BroadcastOnPersonalIcon.tsx +0 -8
  2529. package/src/icons/components/BrokenImageIcon.tsx +0 -8
  2530. package/src/icons/components/BrowseGalleryIcon.tsx +0 -8
  2531. package/src/icons/components/BrowserNotSupportedIcon.tsx +0 -8
  2532. package/src/icons/components/BrowserUpdatedIcon.tsx +0 -8
  2533. package/src/icons/components/BrunchDiningIcon.tsx +0 -8
  2534. package/src/icons/components/BrushIcon.tsx +0 -8
  2535. package/src/icons/components/BubbleChartIcon.tsx +0 -8
  2536. package/src/icons/components/BugReportIcon.tsx +0 -8
  2537. package/src/icons/components/BuildCircleIcon.tsx +0 -8
  2538. package/src/icons/components/BuildIcon.tsx +0 -8
  2539. package/src/icons/components/BungalowIcon.tsx +0 -8
  2540. package/src/icons/components/BurstModeIcon.tsx +0 -8
  2541. package/src/icons/components/BusAlertIcon.tsx +0 -8
  2542. package/src/icons/components/BusinessCenterIcon.tsx +0 -8
  2543. package/src/icons/components/BusinessIcon.tsx +0 -8
  2544. package/src/icons/components/CabinIcon.tsx +0 -8
  2545. package/src/icons/components/CableIcon.tsx +0 -8
  2546. package/src/icons/components/CachedIcon.tsx +0 -8
  2547. package/src/icons/components/CakeIcon.tsx +0 -8
  2548. package/src/icons/components/CalculateIcon.tsx +0 -8
  2549. package/src/icons/components/CalendarMonthIcon.tsx +0 -8
  2550. package/src/icons/components/CalendarTodayIcon.tsx +0 -8
  2551. package/src/icons/components/CalendarViewDayIcon.tsx +0 -8
  2552. package/src/icons/components/CalendarViewMonthIcon.tsx +0 -8
  2553. package/src/icons/components/CalendarViewWeekIcon.tsx +0 -8
  2554. package/src/icons/components/CallEndIcon.tsx +0 -8
  2555. package/src/icons/components/CallIcon.tsx +0 -8
  2556. package/src/icons/components/CallMadeIcon.tsx +0 -8
  2557. package/src/icons/components/CallMergeIcon.tsx +0 -8
  2558. package/src/icons/components/CallMissedIcon.tsx +0 -8
  2559. package/src/icons/components/CallMissedOutgoingIcon.tsx +0 -8
  2560. package/src/icons/components/CallReceivedIcon.tsx +0 -8
  2561. package/src/icons/components/CallSplitIcon.tsx +0 -8
  2562. package/src/icons/components/CallToActionIcon.tsx +0 -8
  2563. package/src/icons/components/CameraAltIcon.tsx +0 -8
  2564. package/src/icons/components/CameraEnhanceIcon.tsx +0 -8
  2565. package/src/icons/components/CameraFrontIcon.tsx +0 -8
  2566. package/src/icons/components/CameraIcon.tsx +0 -8
  2567. package/src/icons/components/CameraIndoorIcon.tsx +0 -8
  2568. package/src/icons/components/CameraOutdoorIcon.tsx +0 -8
  2569. package/src/icons/components/CameraRearIcon.tsx +0 -8
  2570. package/src/icons/components/CameraRollIcon.tsx +0 -8
  2571. package/src/icons/components/CameraswitchIcon.tsx +0 -8
  2572. package/src/icons/components/CampaignIcon.tsx +0 -8
  2573. package/src/icons/components/CancelIcon.tsx +0 -8
  2574. package/src/icons/components/CancelPresentationIcon.tsx +0 -8
  2575. package/src/icons/components/CancelScheduleSendIcon.tsx +0 -8
  2576. package/src/icons/components/CandlestickChartIcon.tsx +0 -8
  2577. package/src/icons/components/CarCrashIcon.tsx +0 -8
  2578. package/src/icons/components/CarRentalIcon.tsx +0 -8
  2579. package/src/icons/components/CarRepairIcon.tsx +0 -8
  2580. package/src/icons/components/CardGiftcardIcon.tsx +0 -8
  2581. package/src/icons/components/CardMembershipIcon.tsx +0 -8
  2582. package/src/icons/components/CardTravelIcon.tsx +0 -8
  2583. package/src/icons/components/CarpenterIcon.tsx +0 -8
  2584. package/src/icons/components/CasesIcon.tsx +0 -8
  2585. package/src/icons/components/CasinoIcon.tsx +0 -8
  2586. package/src/icons/components/CastConnectedIcon.tsx +0 -8
  2587. package/src/icons/components/CastForEducationIcon.tsx +0 -8
  2588. package/src/icons/components/CastIcon.tsx +0 -8
  2589. package/src/icons/components/CastleIcon.tsx +0 -8
  2590. package/src/icons/components/CatchingPokemonIcon.tsx +0 -8
  2591. package/src/icons/components/CategoryIcon.tsx +0 -8
  2592. package/src/icons/components/CelebrationIcon.tsx +0 -8
  2593. package/src/icons/components/CellTowerIcon.tsx +0 -8
  2594. package/src/icons/components/CellWifiIcon.tsx +0 -8
  2595. package/src/icons/components/CenterFocusStrongIcon.tsx +0 -8
  2596. package/src/icons/components/CenterFocusWeakIcon.tsx +0 -8
  2597. package/src/icons/components/ChairAltIcon.tsx +0 -8
  2598. package/src/icons/components/ChairIcon.tsx +0 -8
  2599. package/src/icons/components/ChaletIcon.tsx +0 -8
  2600. package/src/icons/components/ChangeCircleIcon.tsx +0 -8
  2601. package/src/icons/components/ChangeHistoryIcon.tsx +0 -8
  2602. package/src/icons/components/ChargingStationIcon.tsx +0 -8
  2603. package/src/icons/components/ChatBubbleIcon.tsx +0 -8
  2604. package/src/icons/components/ChatBubbleOutlineIcon.tsx +0 -8
  2605. package/src/icons/components/ChatIcon.tsx +0 -8
  2606. package/src/icons/components/CheckBoxIcon.tsx +0 -8
  2607. package/src/icons/components/CheckBoxOutlineBlankIcon.tsx +0 -8
  2608. package/src/icons/components/CheckCircleIcon.tsx +0 -8
  2609. package/src/icons/components/CheckCircleOutlineIcon.tsx +0 -8
  2610. package/src/icons/components/CheckIcon.tsx +0 -8
  2611. package/src/icons/components/ChecklistIcon.tsx +0 -8
  2612. package/src/icons/components/ChecklistRtlIcon.tsx +0 -8
  2613. package/src/icons/components/CheckroomIcon.tsx +0 -8
  2614. package/src/icons/components/ChevronLeftIcon.tsx +0 -8
  2615. package/src/icons/components/ChevronRightIcon.tsx +0 -8
  2616. package/src/icons/components/ChildCareIcon.tsx +0 -8
  2617. package/src/icons/components/ChildFriendlyIcon.tsx +0 -8
  2618. package/src/icons/components/ChromeReaderModeIcon.tsx +0 -8
  2619. package/src/icons/components/ChurchIcon.tsx +0 -8
  2620. package/src/icons/components/CircleIcon.tsx +0 -8
  2621. package/src/icons/components/CircleNotificationsIcon.tsx +0 -8
  2622. package/src/icons/components/ClassIcon.tsx +0 -8
  2623. package/src/icons/components/CleanHandsIcon.tsx +0 -8
  2624. package/src/icons/components/CleaningServicesIcon.tsx +0 -8
  2625. package/src/icons/components/ClearAllIcon.tsx +0 -8
  2626. package/src/icons/components/ClearIcon.tsx +0 -8
  2627. package/src/icons/components/CloseFullscreenIcon.tsx +0 -8
  2628. package/src/icons/components/CloseIcon.tsx +0 -8
  2629. package/src/icons/components/ClosedCaptionDisabledIcon.tsx +0 -8
  2630. package/src/icons/components/ClosedCaptionIcon.tsx +0 -8
  2631. package/src/icons/components/ClosedCaptionOffIcon.tsx +0 -8
  2632. package/src/icons/components/CloudCircleIcon.tsx +0 -8
  2633. package/src/icons/components/CloudDoneIcon.tsx +0 -8
  2634. package/src/icons/components/CloudDownloadIcon.tsx +0 -8
  2635. package/src/icons/components/CloudIcon.tsx +0 -8
  2636. package/src/icons/components/CloudOffIcon.tsx +0 -8
  2637. package/src/icons/components/CloudQueueIcon.tsx +0 -8
  2638. package/src/icons/components/CloudSyncIcon.tsx +0 -8
  2639. package/src/icons/components/CloudUploadIcon.tsx +0 -8
  2640. package/src/icons/components/Co2Icon.tsx +0 -8
  2641. package/src/icons/components/CoPresentIcon.tsx +0 -8
  2642. package/src/icons/components/CodeIcon.tsx +0 -8
  2643. package/src/icons/components/CodeOffIcon.tsx +0 -8
  2644. package/src/icons/components/CoffeeIcon.tsx +0 -8
  2645. package/src/icons/components/CoffeeMakerIcon.tsx +0 -8
  2646. package/src/icons/components/CollectionsBookmarkIcon.tsx +0 -8
  2647. package/src/icons/components/CollectionsIcon.tsx +0 -8
  2648. package/src/icons/components/ColorLensIcon.tsx +0 -8
  2649. package/src/icons/components/ColorizeIcon.tsx +0 -8
  2650. package/src/icons/components/CommentBankIcon.tsx +0 -8
  2651. package/src/icons/components/CommentIcon.tsx +0 -8
  2652. package/src/icons/components/CommentsDisabledIcon.tsx +0 -8
  2653. package/src/icons/components/CommitIcon.tsx +0 -8
  2654. package/src/icons/components/CommuteIcon.tsx +0 -8
  2655. package/src/icons/components/CompareArrowsIcon.tsx +0 -8
  2656. package/src/icons/components/CompareIcon.tsx +0 -8
  2657. package/src/icons/components/CompassCalibrationIcon.tsx +0 -8
  2658. package/src/icons/components/CompostIcon.tsx +0 -8
  2659. package/src/icons/components/CompressIcon.tsx +0 -8
  2660. package/src/icons/components/ComputerIcon.tsx +0 -8
  2661. package/src/icons/components/ConfirmationNumberIcon.tsx +0 -8
  2662. package/src/icons/components/ConnectWithoutContactIcon.tsx +0 -8
  2663. package/src/icons/components/ConnectedTvIcon.tsx +0 -8
  2664. package/src/icons/components/ConnectingAirportsIcon.tsx +0 -8
  2665. package/src/icons/components/ConstructionIcon.tsx +0 -8
  2666. package/src/icons/components/ContactEmergencyIcon.tsx +0 -8
  2667. package/src/icons/components/ContactMailIcon.tsx +0 -8
  2668. package/src/icons/components/ContactPageIcon.tsx +0 -8
  2669. package/src/icons/components/ContactPhoneIcon.tsx +0 -8
  2670. package/src/icons/components/ContactSupportIcon.tsx +0 -8
  2671. package/src/icons/components/ContactlessIcon.tsx +0 -8
  2672. package/src/icons/components/ContactsIcon.tsx +0 -8
  2673. package/src/icons/components/ContentCopyIcon.tsx +0 -8
  2674. package/src/icons/components/ContentCutIcon.tsx +0 -8
  2675. package/src/icons/components/ContentPasteGoIcon.tsx +0 -8
  2676. package/src/icons/components/ContentPasteIcon.tsx +0 -8
  2677. package/src/icons/components/ContentPasteOffIcon.tsx +0 -8
  2678. package/src/icons/components/ContentPasteSearchIcon.tsx +0 -8
  2679. package/src/icons/components/ContrastIcon.tsx +0 -8
  2680. package/src/icons/components/ControlCameraIcon.tsx +0 -8
  2681. package/src/icons/components/ControlPointDuplicateIcon.tsx +0 -8
  2682. package/src/icons/components/ControlPointIcon.tsx +0 -8
  2683. package/src/icons/components/CookieIcon.tsx +0 -8
  2684. package/src/icons/components/CopyAllIcon.tsx +0 -8
  2685. package/src/icons/components/CopyrightIcon.tsx +0 -8
  2686. package/src/icons/components/CoronavirusIcon.tsx +0 -8
  2687. package/src/icons/components/CorporateFareIcon.tsx +0 -8
  2688. package/src/icons/components/CottageIcon.tsx +0 -8
  2689. package/src/icons/components/CountertopsIcon.tsx +0 -8
  2690. package/src/icons/components/CreateIcon.tsx +0 -8
  2691. package/src/icons/components/CreateNewFolderIcon.tsx +0 -8
  2692. package/src/icons/components/CreditCardIcon.tsx +0 -8
  2693. package/src/icons/components/CreditCardOffIcon.tsx +0 -8
  2694. package/src/icons/components/CreditScoreIcon.tsx +0 -8
  2695. package/src/icons/components/CribIcon.tsx +0 -8
  2696. package/src/icons/components/CrisisAlertIcon.tsx +0 -8
  2697. package/src/icons/components/Crop169Icon.tsx +0 -8
  2698. package/src/icons/components/Crop32Icon.tsx +0 -8
  2699. package/src/icons/components/Crop54Icon.tsx +0 -8
  2700. package/src/icons/components/Crop75Icon.tsx +0 -8
  2701. package/src/icons/components/CropDinIcon.tsx +0 -8
  2702. package/src/icons/components/CropFreeIcon.tsx +0 -8
  2703. package/src/icons/components/CropIcon.tsx +0 -8
  2704. package/src/icons/components/CropLandscapeIcon.tsx +0 -8
  2705. package/src/icons/components/CropOriginalIcon.tsx +0 -8
  2706. package/src/icons/components/CropPortraitIcon.tsx +0 -8
  2707. package/src/icons/components/CropRotateIcon.tsx +0 -8
  2708. package/src/icons/components/CropSquareIcon.tsx +0 -8
  2709. package/src/icons/components/CrueltyFreeIcon.tsx +0 -8
  2710. package/src/icons/components/CssIcon.tsx +0 -8
  2711. package/src/icons/components/CurrencyBitcoinIcon.tsx +0 -8
  2712. package/src/icons/components/CurrencyExchangeIcon.tsx +0 -8
  2713. package/src/icons/components/CurrencyFrancIcon.tsx +0 -8
  2714. package/src/icons/components/CurrencyLiraIcon.tsx +0 -8
  2715. package/src/icons/components/CurrencyPoundIcon.tsx +0 -8
  2716. package/src/icons/components/CurrencyRubleIcon.tsx +0 -8
  2717. package/src/icons/components/CurrencyRupeeIcon.tsx +0 -8
  2718. package/src/icons/components/CurrencyYenIcon.tsx +0 -8
  2719. package/src/icons/components/CurrencyYuanIcon.tsx +0 -8
  2720. package/src/icons/components/CurtainsClosedIcon.tsx +0 -8
  2721. package/src/icons/components/CurtainsIcon.tsx +0 -8
  2722. package/src/icons/components/CycloneIcon.tsx +0 -8
  2723. package/src/icons/components/DangerousIcon.tsx +0 -8
  2724. package/src/icons/components/DarkModeIcon.tsx +0 -8
  2725. package/src/icons/components/DashboardCustomizeIcon.tsx +0 -8
  2726. package/src/icons/components/DashboardIcon.tsx +0 -8
  2727. package/src/icons/components/DataArrayIcon.tsx +0 -8
  2728. package/src/icons/components/DataExplorationIcon.tsx +0 -8
  2729. package/src/icons/components/DataObjectIcon.tsx +0 -8
  2730. package/src/icons/components/DataSaverOffIcon.tsx +0 -8
  2731. package/src/icons/components/DataSaverOnIcon.tsx +0 -8
  2732. package/src/icons/components/DataThresholdingIcon.tsx +0 -8
  2733. package/src/icons/components/DataUsageIcon.tsx +0 -8
  2734. package/src/icons/components/DatasetIcon.tsx +0 -8
  2735. package/src/icons/components/DatasetLinkedIcon.tsx +0 -8
  2736. package/src/icons/components/DateRangeIcon.tsx +0 -8
  2737. package/src/icons/components/DeblurIcon.tsx +0 -8
  2738. package/src/icons/components/DeckIcon.tsx +0 -8
  2739. package/src/icons/components/DehazeIcon.tsx +0 -8
  2740. package/src/icons/components/DeleteForeverIcon.tsx +0 -8
  2741. package/src/icons/components/DeleteIcon.tsx +0 -8
  2742. package/src/icons/components/DeleteOutlineIcon.tsx +0 -8
  2743. package/src/icons/components/DeleteSweepIcon.tsx +0 -8
  2744. package/src/icons/components/DeliveryDiningIcon.tsx +0 -8
  2745. package/src/icons/components/DensityLargeIcon.tsx +0 -8
  2746. package/src/icons/components/DensityMediumIcon.tsx +0 -8
  2747. package/src/icons/components/DensitySmallIcon.tsx +0 -8
  2748. package/src/icons/components/DepartureBoardIcon.tsx +0 -8
  2749. package/src/icons/components/DescriptionIcon.tsx +0 -8
  2750. package/src/icons/components/DeselectIcon.tsx +0 -8
  2751. package/src/icons/components/DesignServicesIcon.tsx +0 -8
  2752. package/src/icons/components/DeskIcon.tsx +0 -8
  2753. package/src/icons/components/DesktopAccessDisabledIcon.tsx +0 -8
  2754. package/src/icons/components/DesktopMacIcon.tsx +0 -8
  2755. package/src/icons/components/DesktopWindowsIcon.tsx +0 -8
  2756. package/src/icons/components/DetailsIcon.tsx +0 -8
  2757. package/src/icons/components/DeveloperBoardIcon.tsx +0 -8
  2758. package/src/icons/components/DeveloperBoardOffIcon.tsx +0 -8
  2759. package/src/icons/components/DeveloperModeIcon.tsx +0 -8
  2760. package/src/icons/components/DeviceHubIcon.tsx +0 -8
  2761. package/src/icons/components/DeviceThermostatIcon.tsx +0 -8
  2762. package/src/icons/components/DeviceUnknownIcon.tsx +0 -8
  2763. package/src/icons/components/DevicesFoldIcon.tsx +0 -8
  2764. package/src/icons/components/DevicesIcon.tsx +0 -8
  2765. package/src/icons/components/DevicesOtherIcon.tsx +0 -8
  2766. package/src/icons/components/DialerSipIcon.tsx +0 -8
  2767. package/src/icons/components/DialpadIcon.tsx +0 -8
  2768. package/src/icons/components/DiamondIcon.tsx +0 -8
  2769. package/src/icons/components/DifferenceIcon.tsx +0 -8
  2770. package/src/icons/components/DiningIcon.tsx +0 -8
  2771. package/src/icons/components/DinnerDiningIcon.tsx +0 -8
  2772. package/src/icons/components/DirectionsBikeIcon.tsx +0 -8
  2773. package/src/icons/components/DirectionsBoatFilledIcon.tsx +0 -8
  2774. package/src/icons/components/DirectionsBoatIcon.tsx +0 -8
  2775. package/src/icons/components/DirectionsBusFilledIcon.tsx +0 -8
  2776. package/src/icons/components/DirectionsBusIcon.tsx +0 -8
  2777. package/src/icons/components/DirectionsCarFilledIcon.tsx +0 -8
  2778. package/src/icons/components/DirectionsCarIcon.tsx +0 -8
  2779. package/src/icons/components/DirectionsIcon.tsx +0 -8
  2780. package/src/icons/components/DirectionsOffIcon.tsx +0 -8
  2781. package/src/icons/components/DirectionsRailwayFilledIcon.tsx +0 -8
  2782. package/src/icons/components/DirectionsRailwayIcon.tsx +0 -8
  2783. package/src/icons/components/DirectionsRunIcon.tsx +0 -8
  2784. package/src/icons/components/DirectionsSubwayFilledIcon.tsx +0 -8
  2785. package/src/icons/components/DirectionsSubwayIcon.tsx +0 -8
  2786. package/src/icons/components/DirectionsTransitFilledIcon.tsx +0 -8
  2787. package/src/icons/components/DirectionsTransitIcon.tsx +0 -8
  2788. package/src/icons/components/DirectionsWalkIcon.tsx +0 -8
  2789. package/src/icons/components/DirtyLensIcon.tsx +0 -8
  2790. package/src/icons/components/DisabledByDefaultIcon.tsx +0 -8
  2791. package/src/icons/components/DisabledVisibleIcon.tsx +0 -8
  2792. package/src/icons/components/DiscFullIcon.tsx +0 -8
  2793. package/src/icons/components/DiscountIcon.tsx +0 -8
  2794. package/src/icons/components/DisplaySettingsIcon.tsx +0 -8
  2795. package/src/icons/components/Diversity1Icon.tsx +0 -8
  2796. package/src/icons/components/Diversity2Icon.tsx +0 -8
  2797. package/src/icons/components/Diversity3Icon.tsx +0 -8
  2798. package/src/icons/components/DnsIcon.tsx +0 -8
  2799. package/src/icons/components/DoDisturbAltIcon.tsx +0 -8
  2800. package/src/icons/components/DoDisturbIcon.tsx +0 -8
  2801. package/src/icons/components/DoDisturbOffIcon.tsx +0 -8
  2802. package/src/icons/components/DoDisturbOnIcon.tsx +0 -8
  2803. package/src/icons/components/DoNotDisturbAltIcon.tsx +0 -8
  2804. package/src/icons/components/DoNotDisturbIcon.tsx +0 -8
  2805. package/src/icons/components/DoNotDisturbOffIcon.tsx +0 -8
  2806. package/src/icons/components/DoNotDisturbOnIcon.tsx +0 -8
  2807. package/src/icons/components/DoNotDisturbOnTotalSilenceIcon.tsx +0 -8
  2808. package/src/icons/components/DoNotStepIcon.tsx +0 -8
  2809. package/src/icons/components/DoNotTouchIcon.tsx +0 -8
  2810. package/src/icons/components/DockIcon.tsx +0 -8
  2811. package/src/icons/components/DocumentScannerIcon.tsx +0 -8
  2812. package/src/icons/components/DomainAddIcon.tsx +0 -8
  2813. package/src/icons/components/DomainDisabledIcon.tsx +0 -8
  2814. package/src/icons/components/DomainIcon.tsx +0 -8
  2815. package/src/icons/components/DomainVerificationIcon.tsx +0 -8
  2816. package/src/icons/components/DoneAllIcon.tsx +0 -8
  2817. package/src/icons/components/DoneIcon.tsx +0 -8
  2818. package/src/icons/components/DoneOutlineIcon.tsx +0 -8
  2819. package/src/icons/components/DonutLargeIcon.tsx +0 -8
  2820. package/src/icons/components/DonutSmallIcon.tsx +0 -8
  2821. package/src/icons/components/DoorBackIcon.tsx +0 -8
  2822. package/src/icons/components/DoorFrontIcon.tsx +0 -8
  2823. package/src/icons/components/DoorSlidingIcon.tsx +0 -8
  2824. package/src/icons/components/DoorbellIcon.tsx +0 -8
  2825. package/src/icons/components/DoubleArrowIcon.tsx +0 -8
  2826. package/src/icons/components/DownhillSkiingIcon.tsx +0 -8
  2827. package/src/icons/components/DownloadDoneIcon.tsx +0 -8
  2828. package/src/icons/components/DownloadForOfflineIcon.tsx +0 -8
  2829. package/src/icons/components/DownloadIcon.tsx +0 -8
  2830. package/src/icons/components/DownloadingIcon.tsx +0 -8
  2831. package/src/icons/components/DraftsIcon.tsx +0 -8
  2832. package/src/icons/components/DragHandleIcon.tsx +0 -8
  2833. package/src/icons/components/DragIndicatorIcon.tsx +0 -8
  2834. package/src/icons/components/DrawIcon.tsx +0 -8
  2835. package/src/icons/components/DriveEtaIcon.tsx +0 -8
  2836. package/src/icons/components/DriveFileMoveIcon.tsx +0 -8
  2837. package/src/icons/components/DriveFileMoveRtlIcon.tsx +0 -8
  2838. package/src/icons/components/DriveFileRenameOutlineIcon.tsx +0 -8
  2839. package/src/icons/components/DriveFolderUploadIcon.tsx +0 -8
  2840. package/src/icons/components/DryCleaningIcon.tsx +0 -8
  2841. package/src/icons/components/DryIcon.tsx +0 -8
  2842. package/src/icons/components/DuoIcon.tsx +0 -8
  2843. package/src/icons/components/DvrIcon.tsx +0 -8
  2844. package/src/icons/components/DynamicFeedIcon.tsx +0 -8
  2845. package/src/icons/components/DynamicFormIcon.tsx +0 -8
  2846. package/src/icons/components/EMobiledataIcon.tsx +0 -8
  2847. package/src/icons/components/EarbudsBatteryIcon.tsx +0 -8
  2848. package/src/icons/components/EarbudsIcon.tsx +0 -8
  2849. package/src/icons/components/EastIcon.tsx +0 -8
  2850. package/src/icons/components/EdgesensorHighIcon.tsx +0 -8
  2851. package/src/icons/components/EdgesensorLowIcon.tsx +0 -8
  2852. package/src/icons/components/EditAttributesIcon.tsx +0 -8
  2853. package/src/icons/components/EditCalendarIcon.tsx +0 -8
  2854. package/src/icons/components/EditIcon.tsx +0 -8
  2855. package/src/icons/components/EditLocationAltIcon.tsx +0 -8
  2856. package/src/icons/components/EditLocationIcon.tsx +0 -8
  2857. package/src/icons/components/EditNoteIcon.tsx +0 -8
  2858. package/src/icons/components/EditNotificationsIcon.tsx +0 -8
  2859. package/src/icons/components/EditOffIcon.tsx +0 -8
  2860. package/src/icons/components/EditRoadIcon.tsx +0 -8
  2861. package/src/icons/components/EggAltIcon.tsx +0 -8
  2862. package/src/icons/components/EggIcon.tsx +0 -8
  2863. package/src/icons/components/EjectIcon.tsx +0 -8
  2864. package/src/icons/components/ElderlyIcon.tsx +0 -8
  2865. package/src/icons/components/ElderlyWomanIcon.tsx +0 -8
  2866. package/src/icons/components/ElectricBikeIcon.tsx +0 -8
  2867. package/src/icons/components/ElectricBoltIcon.tsx +0 -8
  2868. package/src/icons/components/ElectricCarIcon.tsx +0 -8
  2869. package/src/icons/components/ElectricMeterIcon.tsx +0 -8
  2870. package/src/icons/components/ElectricMopedIcon.tsx +0 -8
  2871. package/src/icons/components/ElectricRickshawIcon.tsx +0 -8
  2872. package/src/icons/components/ElectricScooterIcon.tsx +0 -8
  2873. package/src/icons/components/ElectricalServicesIcon.tsx +0 -8
  2874. package/src/icons/components/ElevatorIcon.tsx +0 -8
  2875. package/src/icons/components/EmailIcon.tsx +0 -8
  2876. package/src/icons/components/EmergencyIcon.tsx +0 -8
  2877. package/src/icons/components/EmergencyRecordingIcon.tsx +0 -8
  2878. package/src/icons/components/EmergencyShareIcon.tsx +0 -8
  2879. package/src/icons/components/EmojiEmotionsIcon.tsx +0 -8
  2880. package/src/icons/components/EmojiEventsIcon.tsx +0 -8
  2881. package/src/icons/components/EmojiFoodBeverageIcon.tsx +0 -8
  2882. package/src/icons/components/EmojiNatureIcon.tsx +0 -8
  2883. package/src/icons/components/EmojiObjectsIcon.tsx +0 -8
  2884. package/src/icons/components/EmojiPeopleIcon.tsx +0 -8
  2885. package/src/icons/components/EmojiSymbolsIcon.tsx +0 -8
  2886. package/src/icons/components/EmojiTransportationIcon.tsx +0 -8
  2887. package/src/icons/components/EnergySavingsLeafIcon.tsx +0 -8
  2888. package/src/icons/components/EngineeringIcon.tsx +0 -8
  2889. package/src/icons/components/EnhancedEncryptionIcon.tsx +0 -8
  2890. package/src/icons/components/EqualizerIcon.tsx +0 -8
  2891. package/src/icons/components/ErrorIcon.tsx +0 -8
  2892. package/src/icons/components/ErrorOutlineIcon.tsx +0 -8
  2893. package/src/icons/components/EscalatorIcon.tsx +0 -8
  2894. package/src/icons/components/EscalatorWarningIcon.tsx +0 -8
  2895. package/src/icons/components/EuroIcon.tsx +0 -8
  2896. package/src/icons/components/EuroSymbolIcon.tsx +0 -8
  2897. package/src/icons/components/EvStationIcon.tsx +0 -8
  2898. package/src/icons/components/EventAvailableIcon.tsx +0 -8
  2899. package/src/icons/components/EventBusyIcon.tsx +0 -8
  2900. package/src/icons/components/EventIcon.tsx +0 -8
  2901. package/src/icons/components/EventNoteIcon.tsx +0 -8
  2902. package/src/icons/components/EventRepeatIcon.tsx +0 -8
  2903. package/src/icons/components/EventSeatIcon.tsx +0 -8
  2904. package/src/icons/components/ExitToAppIcon.tsx +0 -8
  2905. package/src/icons/components/ExpandCircleDownIcon.tsx +0 -8
  2906. package/src/icons/components/ExpandIcon.tsx +0 -8
  2907. package/src/icons/components/ExpandLessIcon.tsx +0 -8
  2908. package/src/icons/components/ExpandMoreIcon.tsx +0 -8
  2909. package/src/icons/components/ExplicitIcon.tsx +0 -8
  2910. package/src/icons/components/ExploreIcon.tsx +0 -8
  2911. package/src/icons/components/ExploreOffIcon.tsx +0 -8
  2912. package/src/icons/components/ExposureIcon.tsx +0 -8
  2913. package/src/icons/components/ExposureNeg1Icon.tsx +0 -8
  2914. package/src/icons/components/ExposureNeg2Icon.tsx +0 -8
  2915. package/src/icons/components/ExposurePlus1Icon.tsx +0 -8
  2916. package/src/icons/components/ExposurePlus2Icon.tsx +0 -8
  2917. package/src/icons/components/ExposureZeroIcon.tsx +0 -8
  2918. package/src/icons/components/ExtensionIcon.tsx +0 -8
  2919. package/src/icons/components/ExtensionOffIcon.tsx +0 -8
  2920. package/src/icons/components/Face2Icon.tsx +0 -8
  2921. package/src/icons/components/Face3Icon.tsx +0 -8
  2922. package/src/icons/components/Face4Icon.tsx +0 -8
  2923. package/src/icons/components/Face5Icon.tsx +0 -8
  2924. package/src/icons/components/Face6Icon.tsx +0 -8
  2925. package/src/icons/components/FaceIcon.tsx +0 -8
  2926. package/src/icons/components/FaceRetouchingNaturalIcon.tsx +0 -8
  2927. package/src/icons/components/FaceRetouchingOffIcon.tsx +0 -8
  2928. package/src/icons/components/FactCheckIcon.tsx +0 -8
  2929. package/src/icons/components/FactoryIcon.tsx +0 -8
  2930. package/src/icons/components/FamilyRestroomIcon.tsx +0 -8
  2931. package/src/icons/components/FastForwardIcon.tsx +0 -8
  2932. package/src/icons/components/FastRewindIcon.tsx +0 -8
  2933. package/src/icons/components/FastfoodIcon.tsx +0 -8
  2934. package/src/icons/components/FavoriteBorderIcon.tsx +0 -8
  2935. package/src/icons/components/FavoriteIcon.tsx +0 -8
  2936. package/src/icons/components/FaxIcon.tsx +0 -8
  2937. package/src/icons/components/FeaturedPlayListIcon.tsx +0 -8
  2938. package/src/icons/components/FeaturedVideoIcon.tsx +0 -8
  2939. package/src/icons/components/FeedIcon.tsx +0 -8
  2940. package/src/icons/components/FeedbackIcon.tsx +0 -8
  2941. package/src/icons/components/FemaleIcon.tsx +0 -8
  2942. package/src/icons/components/FenceIcon.tsx +0 -8
  2943. package/src/icons/components/FestivalIcon.tsx +0 -8
  2944. package/src/icons/components/FiberDvrIcon.tsx +0 -8
  2945. package/src/icons/components/FiberManualRecordIcon.tsx +0 -8
  2946. package/src/icons/components/FiberNewIcon.tsx +0 -8
  2947. package/src/icons/components/FiberPinIcon.tsx +0 -8
  2948. package/src/icons/components/FiberSmartRecordIcon.tsx +0 -8
  2949. package/src/icons/components/FileCopyIcon.tsx +0 -8
  2950. package/src/icons/components/FileDownloadDoneIcon.tsx +0 -8
  2951. package/src/icons/components/FileDownloadIcon.tsx +0 -8
  2952. package/src/icons/components/FileDownloadOffIcon.tsx +0 -8
  2953. package/src/icons/components/FileOpenIcon.tsx +0 -8
  2954. package/src/icons/components/FilePresentIcon.tsx +0 -8
  2955. package/src/icons/components/FileUploadIcon.tsx +0 -8
  2956. package/src/icons/components/Filter1Icon.tsx +0 -8
  2957. package/src/icons/components/Filter2Icon.tsx +0 -8
  2958. package/src/icons/components/Filter3Icon.tsx +0 -8
  2959. package/src/icons/components/Filter4Icon.tsx +0 -8
  2960. package/src/icons/components/Filter5Icon.tsx +0 -8
  2961. package/src/icons/components/Filter6Icon.tsx +0 -8
  2962. package/src/icons/components/Filter7Icon.tsx +0 -8
  2963. package/src/icons/components/Filter8Icon.tsx +0 -8
  2964. package/src/icons/components/Filter9Icon.tsx +0 -8
  2965. package/src/icons/components/Filter9PlusIcon.tsx +0 -8
  2966. package/src/icons/components/FilterAltIcon.tsx +0 -8
  2967. package/src/icons/components/FilterAltOffIcon.tsx +0 -8
  2968. package/src/icons/components/FilterBAndWIcon.tsx +0 -8
  2969. package/src/icons/components/FilterCenterFocusIcon.tsx +0 -8
  2970. package/src/icons/components/FilterDramaIcon.tsx +0 -8
  2971. package/src/icons/components/FilterFramesIcon.tsx +0 -8
  2972. package/src/icons/components/FilterHdrIcon.tsx +0 -8
  2973. package/src/icons/components/FilterIcon.tsx +0 -8
  2974. package/src/icons/components/FilterListIcon.tsx +0 -8
  2975. package/src/icons/components/FilterListOffIcon.tsx +0 -8
  2976. package/src/icons/components/FilterNoneIcon.tsx +0 -8
  2977. package/src/icons/components/FilterTiltShiftIcon.tsx +0 -8
  2978. package/src/icons/components/FilterVintageIcon.tsx +0 -8
  2979. package/src/icons/components/FindInPageIcon.tsx +0 -8
  2980. package/src/icons/components/FindReplaceIcon.tsx +0 -8
  2981. package/src/icons/components/FingerprintIcon.tsx +0 -8
  2982. package/src/icons/components/FireExtinguisherIcon.tsx +0 -8
  2983. package/src/icons/components/FireHydrantAltIcon.tsx +0 -8
  2984. package/src/icons/components/FireTruckIcon.tsx +0 -8
  2985. package/src/icons/components/FireplaceIcon.tsx +0 -8
  2986. package/src/icons/components/FirstPageIcon.tsx +0 -8
  2987. package/src/icons/components/FitScreenIcon.tsx +0 -8
  2988. package/src/icons/components/FitbitIcon.tsx +0 -8
  2989. package/src/icons/components/FitnessCenterIcon.tsx +0 -8
  2990. package/src/icons/components/FlagCircleIcon.tsx +0 -8
  2991. package/src/icons/components/FlagIcon.tsx +0 -8
  2992. package/src/icons/components/FlakyIcon.tsx +0 -8
  2993. package/src/icons/components/FlareIcon.tsx +0 -8
  2994. package/src/icons/components/FlashAutoIcon.tsx +0 -8
  2995. package/src/icons/components/FlashOffIcon.tsx +0 -8
  2996. package/src/icons/components/FlashOnIcon.tsx +0 -8
  2997. package/src/icons/components/FlashlightOffIcon.tsx +0 -8
  2998. package/src/icons/components/FlashlightOnIcon.tsx +0 -8
  2999. package/src/icons/components/FlatwareIcon.tsx +0 -8
  3000. package/src/icons/components/FlightClassIcon.tsx +0 -8
  3001. package/src/icons/components/FlightIcon.tsx +0 -8
  3002. package/src/icons/components/FlightLandIcon.tsx +0 -8
  3003. package/src/icons/components/FlightTakeoffIcon.tsx +0 -8
  3004. package/src/icons/components/FlipCameraAndroidIcon.tsx +0 -8
  3005. package/src/icons/components/FlipCameraIosIcon.tsx +0 -8
  3006. package/src/icons/components/FlipIcon.tsx +0 -8
  3007. package/src/icons/components/FlipToBackIcon.tsx +0 -8
  3008. package/src/icons/components/FlipToFrontIcon.tsx +0 -8
  3009. package/src/icons/components/FloodIcon.tsx +0 -8
  3010. package/src/icons/components/FluorescentIcon.tsx +0 -8
  3011. package/src/icons/components/FlutterDashIcon.tsx +0 -8
  3012. package/src/icons/components/FmdBadIcon.tsx +0 -8
  3013. package/src/icons/components/FmdGoodIcon.tsx +0 -8
  3014. package/src/icons/components/FolderCopyIcon.tsx +0 -8
  3015. package/src/icons/components/FolderDeleteIcon.tsx +0 -8
  3016. package/src/icons/components/FolderIcon.tsx +0 -8
  3017. package/src/icons/components/FolderOffIcon.tsx +0 -8
  3018. package/src/icons/components/FolderOpenIcon.tsx +0 -8
  3019. package/src/icons/components/FolderSharedIcon.tsx +0 -8
  3020. package/src/icons/components/FolderSpecialIcon.tsx +0 -8
  3021. package/src/icons/components/FolderZipIcon.tsx +0 -8
  3022. package/src/icons/components/FollowTheSignsIcon.tsx +0 -8
  3023. package/src/icons/components/FontDownloadIcon.tsx +0 -8
  3024. package/src/icons/components/FontDownloadOffIcon.tsx +0 -8
  3025. package/src/icons/components/FoodBankIcon.tsx +0 -8
  3026. package/src/icons/components/ForestIcon.tsx +0 -8
  3027. package/src/icons/components/ForkLeftIcon.tsx +0 -8
  3028. package/src/icons/components/ForkRightIcon.tsx +0 -8
  3029. package/src/icons/components/FormatAlignCenterIcon.tsx +0 -8
  3030. package/src/icons/components/FormatAlignJustifyIcon.tsx +0 -8
  3031. package/src/icons/components/FormatAlignLeftIcon.tsx +0 -8
  3032. package/src/icons/components/FormatAlignRightIcon.tsx +0 -8
  3033. package/src/icons/components/FormatBoldIcon.tsx +0 -8
  3034. package/src/icons/components/FormatClearIcon.tsx +0 -8
  3035. package/src/icons/components/FormatColorFillIcon.tsx +0 -8
  3036. package/src/icons/components/FormatColorResetIcon.tsx +0 -8
  3037. package/src/icons/components/FormatColorTextIcon.tsx +0 -8
  3038. package/src/icons/components/FormatIndentDecreaseIcon.tsx +0 -8
  3039. package/src/icons/components/FormatIndentIncreaseIcon.tsx +0 -8
  3040. package/src/icons/components/FormatItalicIcon.tsx +0 -8
  3041. package/src/icons/components/FormatLineSpacingIcon.tsx +0 -8
  3042. package/src/icons/components/FormatListBulletedIcon.tsx +0 -8
  3043. package/src/icons/components/FormatListNumberedIcon.tsx +0 -8
  3044. package/src/icons/components/FormatListNumberedRtlIcon.tsx +0 -8
  3045. package/src/icons/components/FormatOverlineIcon.tsx +0 -8
  3046. package/src/icons/components/FormatPaintIcon.tsx +0 -8
  3047. package/src/icons/components/FormatQuoteIcon.tsx +0 -8
  3048. package/src/icons/components/FormatShapesIcon.tsx +0 -8
  3049. package/src/icons/components/FormatSizeIcon.tsx +0 -8
  3050. package/src/icons/components/FormatStrikethroughIcon.tsx +0 -8
  3051. package/src/icons/components/FormatTextdirectionLToRIcon.tsx +0 -8
  3052. package/src/icons/components/FormatTextdirectionRToLIcon.tsx +0 -8
  3053. package/src/icons/components/FormatUnderlinedIcon.tsx +0 -8
  3054. package/src/icons/components/FortIcon.tsx +0 -8
  3055. package/src/icons/components/ForumIcon.tsx +0 -8
  3056. package/src/icons/components/Forward10Icon.tsx +0 -8
  3057. package/src/icons/components/Forward30Icon.tsx +0 -8
  3058. package/src/icons/components/Forward5Icon.tsx +0 -8
  3059. package/src/icons/components/ForwardIcon.tsx +0 -8
  3060. package/src/icons/components/ForwardToInboxIcon.tsx +0 -8
  3061. package/src/icons/components/FoundationIcon.tsx +0 -8
  3062. package/src/icons/components/FreeBreakfastIcon.tsx +0 -8
  3063. package/src/icons/components/FreeCancellationIcon.tsx +0 -8
  3064. package/src/icons/components/FrontHandIcon.tsx +0 -8
  3065. package/src/icons/components/FullscreenExitIcon.tsx +0 -8
  3066. package/src/icons/components/FullscreenIcon.tsx +0 -8
  3067. package/src/icons/components/FunctionsIcon.tsx +0 -8
  3068. package/src/icons/components/GMobiledataIcon.tsx +0 -8
  3069. package/src/icons/components/GTranslateIcon.tsx +0 -8
  3070. package/src/icons/components/GamepadIcon.tsx +0 -8
  3071. package/src/icons/components/GamesIcon.tsx +0 -8
  3072. package/src/icons/components/GarageIcon.tsx +0 -8
  3073. package/src/icons/components/GasMeterIcon.tsx +0 -8
  3074. package/src/icons/components/GavelIcon.tsx +0 -8
  3075. package/src/icons/components/GeneratingTokensIcon.tsx +0 -8
  3076. package/src/icons/components/GestureIcon.tsx +0 -8
  3077. package/src/icons/components/GetAppIcon.tsx +0 -8
  3078. package/src/icons/components/GifBoxIcon.tsx +0 -8
  3079. package/src/icons/components/GifIcon.tsx +0 -8
  3080. package/src/icons/components/GirlIcon.tsx +0 -8
  3081. package/src/icons/components/GiteIcon.tsx +0 -8
  3082. package/src/icons/components/GolfCourseIcon.tsx +0 -8
  3083. package/src/icons/components/GppBadIcon.tsx +0 -8
  3084. package/src/icons/components/GppGoodIcon.tsx +0 -8
  3085. package/src/icons/components/GppMaybeIcon.tsx +0 -8
  3086. package/src/icons/components/GpsFixedIcon.tsx +0 -8
  3087. package/src/icons/components/GpsNotFixedIcon.tsx +0 -8
  3088. package/src/icons/components/GpsOffIcon.tsx +0 -8
  3089. package/src/icons/components/GradeIcon.tsx +0 -8
  3090. package/src/icons/components/GradientIcon.tsx +0 -8
  3091. package/src/icons/components/GradingIcon.tsx +0 -8
  3092. package/src/icons/components/GrainIcon.tsx +0 -8
  3093. package/src/icons/components/GraphicEqIcon.tsx +0 -8
  3094. package/src/icons/components/GrassIcon.tsx +0 -8
  3095. package/src/icons/components/Grid3x3Icon.tsx +0 -8
  3096. package/src/icons/components/Grid4x4Icon.tsx +0 -8
  3097. package/src/icons/components/GridGoldenratioIcon.tsx +0 -8
  3098. package/src/icons/components/GridOffIcon.tsx +0 -8
  3099. package/src/icons/components/GridOnIcon.tsx +0 -8
  3100. package/src/icons/components/GridViewIcon.tsx +0 -8
  3101. package/src/icons/components/GroupAddIcon.tsx +0 -8
  3102. package/src/icons/components/GroupIcon.tsx +0 -8
  3103. package/src/icons/components/GroupOffIcon.tsx +0 -8
  3104. package/src/icons/components/GroupRemoveIcon.tsx +0 -8
  3105. package/src/icons/components/GroupWorkIcon.tsx +0 -8
  3106. package/src/icons/components/Groups2Icon.tsx +0 -8
  3107. package/src/icons/components/Groups3Icon.tsx +0 -8
  3108. package/src/icons/components/GroupsIcon.tsx +0 -8
  3109. package/src/icons/components/HMobiledataIcon.tsx +0 -8
  3110. package/src/icons/components/HPlusMobiledataIcon.tsx +0 -8
  3111. package/src/icons/components/HailIcon.tsx +0 -8
  3112. package/src/icons/components/HandshakeIcon.tsx +0 -8
  3113. package/src/icons/components/HandymanIcon.tsx +0 -8
  3114. package/src/icons/components/HardwareIcon.tsx +0 -8
  3115. package/src/icons/components/HdIcon.tsx +0 -8
  3116. package/src/icons/components/HdrAutoIcon.tsx +0 -8
  3117. package/src/icons/components/HdrAutoSelectIcon.tsx +0 -8
  3118. package/src/icons/components/HdrEnhancedSelectIcon.tsx +0 -8
  3119. package/src/icons/components/HdrOffIcon.tsx +0 -8
  3120. package/src/icons/components/HdrOffSelectIcon.tsx +0 -8
  3121. package/src/icons/components/HdrOnIcon.tsx +0 -8
  3122. package/src/icons/components/HdrOnSelectIcon.tsx +0 -8
  3123. package/src/icons/components/HdrPlusIcon.tsx +0 -8
  3124. package/src/icons/components/HdrStrongIcon.tsx +0 -8
  3125. package/src/icons/components/HdrWeakIcon.tsx +0 -8
  3126. package/src/icons/components/HeadphonesBatteryIcon.tsx +0 -8
  3127. package/src/icons/components/HeadphonesIcon.tsx +0 -8
  3128. package/src/icons/components/HeadsetIcon.tsx +0 -8
  3129. package/src/icons/components/HeadsetMicIcon.tsx +0 -8
  3130. package/src/icons/components/HeadsetOffIcon.tsx +0 -8
  3131. package/src/icons/components/HealingIcon.tsx +0 -8
  3132. package/src/icons/components/HealthAndSafetyIcon.tsx +0 -8
  3133. package/src/icons/components/HearingDisabledIcon.tsx +0 -8
  3134. package/src/icons/components/HearingIcon.tsx +0 -8
  3135. package/src/icons/components/HeartBrokenIcon.tsx +0 -8
  3136. package/src/icons/components/HeatPumpIcon.tsx +0 -8
  3137. package/src/icons/components/HeightIcon.tsx +0 -8
  3138. package/src/icons/components/HelpCenterIcon.tsx +0 -8
  3139. package/src/icons/components/HelpIcon.tsx +0 -8
  3140. package/src/icons/components/HelpOutlineIcon.tsx +0 -8
  3141. package/src/icons/components/HevcIcon.tsx +0 -8
  3142. package/src/icons/components/HexagonIcon.tsx +0 -8
  3143. package/src/icons/components/HideImageIcon.tsx +0 -8
  3144. package/src/icons/components/HideSourceIcon.tsx +0 -8
  3145. package/src/icons/components/HighQualityIcon.tsx +0 -8
  3146. package/src/icons/components/HighlightAltIcon.tsx +0 -8
  3147. package/src/icons/components/HighlightIcon.tsx +0 -8
  3148. package/src/icons/components/HighlightOffIcon.tsx +0 -8
  3149. package/src/icons/components/HikingIcon.tsx +0 -8
  3150. package/src/icons/components/HistoryEduIcon.tsx +0 -8
  3151. package/src/icons/components/HistoryIcon.tsx +0 -8
  3152. package/src/icons/components/HistoryToggleOffIcon.tsx +0 -8
  3153. package/src/icons/components/HiveIcon.tsx +0 -8
  3154. package/src/icons/components/HlsIcon.tsx +0 -8
  3155. package/src/icons/components/HlsOffIcon.tsx +0 -8
  3156. package/src/icons/components/HolidayVillageIcon.tsx +0 -8
  3157. package/src/icons/components/HomeIcon.tsx +0 -8
  3158. package/src/icons/components/HomeMaxIcon.tsx +0 -8
  3159. package/src/icons/components/HomeMiniIcon.tsx +0 -8
  3160. package/src/icons/components/HomeRepairServiceIcon.tsx +0 -8
  3161. package/src/icons/components/HomeWorkIcon.tsx +0 -8
  3162. package/src/icons/components/HorizontalDistributeIcon.tsx +0 -8
  3163. package/src/icons/components/HorizontalRuleIcon.tsx +0 -8
  3164. package/src/icons/components/HorizontalSplitIcon.tsx +0 -8
  3165. package/src/icons/components/HotTubIcon.tsx +0 -8
  3166. package/src/icons/components/HotelClassIcon.tsx +0 -8
  3167. package/src/icons/components/HotelIcon.tsx +0 -8
  3168. package/src/icons/components/HourglassBottomIcon.tsx +0 -8
  3169. package/src/icons/components/HourglassDisabledIcon.tsx +0 -8
  3170. package/src/icons/components/HourglassEmptyIcon.tsx +0 -8
  3171. package/src/icons/components/HourglassFullIcon.tsx +0 -8
  3172. package/src/icons/components/HourglassTopIcon.tsx +0 -8
  3173. package/src/icons/components/HouseIcon.tsx +0 -8
  3174. package/src/icons/components/HouseSidingIcon.tsx +0 -8
  3175. package/src/icons/components/HouseboatIcon.tsx +0 -8
  3176. package/src/icons/components/HowToRegIcon.tsx +0 -8
  3177. package/src/icons/components/HowToVoteIcon.tsx +0 -8
  3178. package/src/icons/components/HtmlIcon.tsx +0 -8
  3179. package/src/icons/components/HttpIcon.tsx +0 -8
  3180. package/src/icons/components/HttpsIcon.tsx +0 -8
  3181. package/src/icons/components/HubIcon.tsx +0 -8
  3182. package/src/icons/components/HvacIcon.tsx +0 -8
  3183. package/src/icons/components/IceSkatingIcon.tsx +0 -8
  3184. package/src/icons/components/IcecreamIcon.tsx +0 -8
  3185. package/src/icons/components/ImageAspectRatioIcon.tsx +0 -8
  3186. package/src/icons/components/ImageIcon.tsx +0 -8
  3187. package/src/icons/components/ImageNotSupportedIcon.tsx +0 -8
  3188. package/src/icons/components/ImageSearchIcon.tsx +0 -8
  3189. package/src/icons/components/ImagesearchRollerIcon.tsx +0 -8
  3190. package/src/icons/components/ImportContactsIcon.tsx +0 -8
  3191. package/src/icons/components/ImportExportIcon.tsx +0 -8
  3192. package/src/icons/components/ImportantDevicesIcon.tsx +0 -8
  3193. package/src/icons/components/InboxIcon.tsx +0 -8
  3194. package/src/icons/components/IncompleteCircleIcon.tsx +0 -8
  3195. package/src/icons/components/IndeterminateCheckBoxIcon.tsx +0 -8
  3196. package/src/icons/components/InfoIcon.tsx +0 -8
  3197. package/src/icons/components/InputIcon.tsx +0 -8
  3198. package/src/icons/components/InsertChartIcon.tsx +0 -8
  3199. package/src/icons/components/InsertChartOutlinedIcon.tsx +0 -8
  3200. package/src/icons/components/InsertCommentIcon.tsx +0 -8
  3201. package/src/icons/components/InsertDriveFileIcon.tsx +0 -8
  3202. package/src/icons/components/InsertEmoticonIcon.tsx +0 -8
  3203. package/src/icons/components/InsertInvitationIcon.tsx +0 -8
  3204. package/src/icons/components/InsertLinkIcon.tsx +0 -8
  3205. package/src/icons/components/InsertPageBreakIcon.tsx +0 -8
  3206. package/src/icons/components/InsertPhotoIcon.tsx +0 -8
  3207. package/src/icons/components/InsightsIcon.tsx +0 -8
  3208. package/src/icons/components/InstallDesktopIcon.tsx +0 -8
  3209. package/src/icons/components/InstallMobileIcon.tsx +0 -8
  3210. package/src/icons/components/IntegrationInstructionsIcon.tsx +0 -8
  3211. package/src/icons/components/InterestsIcon.tsx +0 -8
  3212. package/src/icons/components/InterpreterModeIcon.tsx +0 -8
  3213. package/src/icons/components/Inventory2Icon.tsx +0 -8
  3214. package/src/icons/components/InventoryIcon.tsx +0 -8
  3215. package/src/icons/components/InvertColorsIcon.tsx +0 -8
  3216. package/src/icons/components/InvertColorsOffIcon.tsx +0 -8
  3217. package/src/icons/components/IosShareIcon.tsx +0 -8
  3218. package/src/icons/components/IronIcon.tsx +0 -8
  3219. package/src/icons/components/IsoIcon.tsx +0 -8
  3220. package/src/icons/components/JavascriptIcon.tsx +0 -8
  3221. package/src/icons/components/JoinFullIcon.tsx +0 -8
  3222. package/src/icons/components/JoinInnerIcon.tsx +0 -8
  3223. package/src/icons/components/JoinLeftIcon.tsx +0 -8
  3224. package/src/icons/components/JoinRightIcon.tsx +0 -8
  3225. package/src/icons/components/KayakingIcon.tsx +0 -8
  3226. package/src/icons/components/KebabDiningIcon.tsx +0 -8
  3227. package/src/icons/components/KeyIcon.tsx +0 -8
  3228. package/src/icons/components/KeyOffIcon.tsx +0 -8
  3229. package/src/icons/components/KeyboardAltIcon.tsx +0 -8
  3230. package/src/icons/components/KeyboardArrowDownIcon.tsx +0 -8
  3231. package/src/icons/components/KeyboardArrowLeftIcon.tsx +0 -8
  3232. package/src/icons/components/KeyboardArrowRightIcon.tsx +0 -8
  3233. package/src/icons/components/KeyboardArrowUpIcon.tsx +0 -8
  3234. package/src/icons/components/KeyboardBackspaceIcon.tsx +0 -8
  3235. package/src/icons/components/KeyboardCapslockIcon.tsx +0 -8
  3236. package/src/icons/components/KeyboardCommandKeyIcon.tsx +0 -8
  3237. package/src/icons/components/KeyboardControlKeyIcon.tsx +0 -8
  3238. package/src/icons/components/KeyboardDoubleArrowDownIcon.tsx +0 -8
  3239. package/src/icons/components/KeyboardDoubleArrowLeftIcon.tsx +0 -8
  3240. package/src/icons/components/KeyboardDoubleArrowRightIcon.tsx +0 -8
  3241. package/src/icons/components/KeyboardDoubleArrowUpIcon.tsx +0 -8
  3242. package/src/icons/components/KeyboardHideIcon.tsx +0 -8
  3243. package/src/icons/components/KeyboardIcon.tsx +0 -8
  3244. package/src/icons/components/KeyboardOptionKeyIcon.tsx +0 -8
  3245. package/src/icons/components/KeyboardReturnIcon.tsx +0 -8
  3246. package/src/icons/components/KeyboardTabIcon.tsx +0 -8
  3247. package/src/icons/components/KeyboardVoiceIcon.tsx +0 -8
  3248. package/src/icons/components/KingBedIcon.tsx +0 -8
  3249. package/src/icons/components/KitchenIcon.tsx +0 -8
  3250. package/src/icons/components/KitesurfingIcon.tsx +0 -8
  3251. package/src/icons/components/LabelIcon.tsx +0 -8
  3252. package/src/icons/components/LabelImportantIcon.tsx +0 -8
  3253. package/src/icons/components/LabelOffIcon.tsx +0 -8
  3254. package/src/icons/components/LanIcon.tsx +0 -8
  3255. package/src/icons/components/LandscapeIcon.tsx +0 -8
  3256. package/src/icons/components/LandslideIcon.tsx +0 -8
  3257. package/src/icons/components/LanguageIcon.tsx +0 -8
  3258. package/src/icons/components/LaptopChromebookIcon.tsx +0 -8
  3259. package/src/icons/components/LaptopIcon.tsx +0 -8
  3260. package/src/icons/components/LaptopMacIcon.tsx +0 -8
  3261. package/src/icons/components/LaptopWindowsIcon.tsx +0 -8
  3262. package/src/icons/components/LastPageIcon.tsx +0 -8
  3263. package/src/icons/components/LaunchIcon.tsx +0 -8
  3264. package/src/icons/components/LayersClearIcon.tsx +0 -8
  3265. package/src/icons/components/LayersIcon.tsx +0 -8
  3266. package/src/icons/components/LeaderboardIcon.tsx +0 -8
  3267. package/src/icons/components/LeakAddIcon.tsx +0 -8
  3268. package/src/icons/components/LeakRemoveIcon.tsx +0 -8
  3269. package/src/icons/components/LegendToggleIcon.tsx +0 -8
  3270. package/src/icons/components/LensBlurIcon.tsx +0 -8
  3271. package/src/icons/components/LensIcon.tsx +0 -8
  3272. package/src/icons/components/LibraryAddCheckIcon.tsx +0 -8
  3273. package/src/icons/components/LibraryAddIcon.tsx +0 -8
  3274. package/src/icons/components/LibraryBooksIcon.tsx +0 -8
  3275. package/src/icons/components/LibraryMusicIcon.tsx +0 -8
  3276. package/src/icons/components/LightIcon.tsx +0 -8
  3277. package/src/icons/components/LightModeIcon.tsx +0 -8
  3278. package/src/icons/components/LightbulbCircleIcon.tsx +0 -8
  3279. package/src/icons/components/LightbulbIcon.tsx +0 -8
  3280. package/src/icons/components/LineAxisIcon.tsx +0 -8
  3281. package/src/icons/components/LineStyleIcon.tsx +0 -8
  3282. package/src/icons/components/LineWeightIcon.tsx +0 -8
  3283. package/src/icons/components/LinearScaleIcon.tsx +0 -8
  3284. package/src/icons/components/LinkIcon.tsx +0 -8
  3285. package/src/icons/components/LinkOffIcon.tsx +0 -8
  3286. package/src/icons/components/LinkedCameraIcon.tsx +0 -8
  3287. package/src/icons/components/LiquorIcon.tsx +0 -8
  3288. package/src/icons/components/ListAltIcon.tsx +0 -8
  3289. package/src/icons/components/ListIcon.tsx +0 -8
  3290. package/src/icons/components/LiveHelpIcon.tsx +0 -8
  3291. package/src/icons/components/LiveTvIcon.tsx +0 -8
  3292. package/src/icons/components/LivingIcon.tsx +0 -8
  3293. package/src/icons/components/LocalActivityIcon.tsx +0 -8
  3294. package/src/icons/components/LocalAirportIcon.tsx +0 -8
  3295. package/src/icons/components/LocalAtmIcon.tsx +0 -8
  3296. package/src/icons/components/LocalBarIcon.tsx +0 -8
  3297. package/src/icons/components/LocalCafeIcon.tsx +0 -8
  3298. package/src/icons/components/LocalCarWashIcon.tsx +0 -8
  3299. package/src/icons/components/LocalConvenienceStoreIcon.tsx +0 -8
  3300. package/src/icons/components/LocalDiningIcon.tsx +0 -8
  3301. package/src/icons/components/LocalDrinkIcon.tsx +0 -8
  3302. package/src/icons/components/LocalFireDepartmentIcon.tsx +0 -8
  3303. package/src/icons/components/LocalFloristIcon.tsx +0 -8
  3304. package/src/icons/components/LocalGasStationIcon.tsx +0 -8
  3305. package/src/icons/components/LocalGroceryStoreIcon.tsx +0 -8
  3306. package/src/icons/components/LocalHospitalIcon.tsx +0 -8
  3307. package/src/icons/components/LocalHotelIcon.tsx +0 -8
  3308. package/src/icons/components/LocalLaundryServiceIcon.tsx +0 -8
  3309. package/src/icons/components/LocalLibraryIcon.tsx +0 -8
  3310. package/src/icons/components/LocalMallIcon.tsx +0 -8
  3311. package/src/icons/components/LocalMoviesIcon.tsx +0 -8
  3312. package/src/icons/components/LocalOfferIcon.tsx +0 -8
  3313. package/src/icons/components/LocalParkingIcon.tsx +0 -8
  3314. package/src/icons/components/LocalPharmacyIcon.tsx +0 -8
  3315. package/src/icons/components/LocalPhoneIcon.tsx +0 -8
  3316. package/src/icons/components/LocalPizzaIcon.tsx +0 -8
  3317. package/src/icons/components/LocalPlayIcon.tsx +0 -8
  3318. package/src/icons/components/LocalPoliceIcon.tsx +0 -8
  3319. package/src/icons/components/LocalPostOfficeIcon.tsx +0 -8
  3320. package/src/icons/components/LocalPrintshopIcon.tsx +0 -8
  3321. package/src/icons/components/LocalSeeIcon.tsx +0 -8
  3322. package/src/icons/components/LocalShippingIcon.tsx +0 -8
  3323. package/src/icons/components/LocalTaxiIcon.tsx +0 -8
  3324. package/src/icons/components/LocationCityIcon.tsx +0 -8
  3325. package/src/icons/components/LocationDisabledIcon.tsx +0 -8
  3326. package/src/icons/components/LocationOffIcon.tsx +0 -8
  3327. package/src/icons/components/LocationOnIcon.tsx +0 -8
  3328. package/src/icons/components/LocationSearchingIcon.tsx +0 -8
  3329. package/src/icons/components/LockClockIcon.tsx +0 -8
  3330. package/src/icons/components/LockIcon.tsx +0 -8
  3331. package/src/icons/components/LockOpenIcon.tsx +0 -8
  3332. package/src/icons/components/LockPersonIcon.tsx +0 -8
  3333. package/src/icons/components/LockResetIcon.tsx +0 -8
  3334. package/src/icons/components/LoginIcon.tsx +0 -8
  3335. package/src/icons/components/LogoDevIcon.tsx +0 -8
  3336. package/src/icons/components/LogoutIcon.tsx +0 -8
  3337. package/src/icons/components/Looks3Icon.tsx +0 -8
  3338. package/src/icons/components/Looks4Icon.tsx +0 -8
  3339. package/src/icons/components/Looks5Icon.tsx +0 -8
  3340. package/src/icons/components/Looks6Icon.tsx +0 -8
  3341. package/src/icons/components/LooksIcon.tsx +0 -8
  3342. package/src/icons/components/LooksOneIcon.tsx +0 -8
  3343. package/src/icons/components/LooksTwoIcon.tsx +0 -8
  3344. package/src/icons/components/LoopIcon.tsx +0 -8
  3345. package/src/icons/components/LoupeIcon.tsx +0 -8
  3346. package/src/icons/components/LowPriorityIcon.tsx +0 -8
  3347. package/src/icons/components/LoyaltyIcon.tsx +0 -8
  3348. package/src/icons/components/LteMobiledataIcon.tsx +0 -8
  3349. package/src/icons/components/LtePlusMobiledataIcon.tsx +0 -8
  3350. package/src/icons/components/LuggageIcon.tsx +0 -8
  3351. package/src/icons/components/LunchDiningIcon.tsx +0 -8
  3352. package/src/icons/components/LyricsIcon.tsx +0 -8
  3353. package/src/icons/components/MacroOffIcon.tsx +0 -8
  3354. package/src/icons/components/MailIcon.tsx +0 -8
  3355. package/src/icons/components/MailLockIcon.tsx +0 -8
  3356. package/src/icons/components/MailOutlineIcon.tsx +0 -8
  3357. package/src/icons/components/MaleIcon.tsx +0 -8
  3358. package/src/icons/components/Man2Icon.tsx +0 -8
  3359. package/src/icons/components/Man3Icon.tsx +0 -8
  3360. package/src/icons/components/Man4Icon.tsx +0 -8
  3361. package/src/icons/components/ManIcon.tsx +0 -8
  3362. package/src/icons/components/ManageAccountsIcon.tsx +0 -8
  3363. package/src/icons/components/ManageHistoryIcon.tsx +0 -8
  3364. package/src/icons/components/ManageSearchIcon.tsx +0 -8
  3365. package/src/icons/components/MapIcon.tsx +0 -8
  3366. package/src/icons/components/MapsHomeWorkIcon.tsx +0 -8
  3367. package/src/icons/components/MapsUgcIcon.tsx +0 -8
  3368. package/src/icons/components/MarginIcon.tsx +0 -8
  3369. package/src/icons/components/MarkAsUnreadIcon.tsx +0 -8
  3370. package/src/icons/components/MarkChatReadIcon.tsx +0 -8
  3371. package/src/icons/components/MarkChatUnreadIcon.tsx +0 -8
  3372. package/src/icons/components/MarkEmailReadIcon.tsx +0 -8
  3373. package/src/icons/components/MarkEmailUnreadIcon.tsx +0 -8
  3374. package/src/icons/components/MarkUnreadChatAltIcon.tsx +0 -8
  3375. package/src/icons/components/MarkunreadIcon.tsx +0 -8
  3376. package/src/icons/components/MarkunreadMailboxIcon.tsx +0 -8
  3377. package/src/icons/components/MasksIcon.tsx +0 -8
  3378. package/src/icons/components/MaximizeIcon.tsx +0 -8
  3379. package/src/icons/components/MediaBluetoothOffIcon.tsx +0 -8
  3380. package/src/icons/components/MediaBluetoothOnIcon.tsx +0 -8
  3381. package/src/icons/components/MediationIcon.tsx +0 -8
  3382. package/src/icons/components/MedicalInformationIcon.tsx +0 -8
  3383. package/src/icons/components/MedicalServicesIcon.tsx +0 -8
  3384. package/src/icons/components/MedicationIcon.tsx +0 -8
  3385. package/src/icons/components/MedicationLiquidIcon.tsx +0 -8
  3386. package/src/icons/components/MeetingRoomIcon.tsx +0 -8
  3387. package/src/icons/components/MemoryIcon.tsx +0 -8
  3388. package/src/icons/components/MenuBookIcon.tsx +0 -8
  3389. package/src/icons/components/MenuIcon.tsx +0 -8
  3390. package/src/icons/components/MenuOpenIcon.tsx +0 -8
  3391. package/src/icons/components/MergeIcon.tsx +0 -8
  3392. package/src/icons/components/MergeTypeIcon.tsx +0 -8
  3393. package/src/icons/components/MessageIcon.tsx +0 -8
  3394. package/src/icons/components/MicExternalOffIcon.tsx +0 -8
  3395. package/src/icons/components/MicExternalOnIcon.tsx +0 -8
  3396. package/src/icons/components/MicIcon.tsx +0 -8
  3397. package/src/icons/components/MicNoneIcon.tsx +0 -8
  3398. package/src/icons/components/MicOffIcon.tsx +0 -8
  3399. package/src/icons/components/MicrowaveIcon.tsx +0 -8
  3400. package/src/icons/components/MilitaryTechIcon.tsx +0 -8
  3401. package/src/icons/components/MinimizeIcon.tsx +0 -8
  3402. package/src/icons/components/MinorCrashIcon.tsx +0 -8
  3403. package/src/icons/components/MiscellaneousServicesIcon.tsx +0 -8
  3404. package/src/icons/components/MissedVideoCallIcon.tsx +0 -8
  3405. package/src/icons/components/MmsIcon.tsx +0 -8
  3406. package/src/icons/components/MobileFriendlyIcon.tsx +0 -8
  3407. package/src/icons/components/MobileOffIcon.tsx +0 -8
  3408. package/src/icons/components/MobileScreenShareIcon.tsx +0 -8
  3409. package/src/icons/components/MobiledataOffIcon.tsx +0 -8
  3410. package/src/icons/components/ModeCommentIcon.tsx +0 -8
  3411. package/src/icons/components/ModeEditIcon.tsx +0 -8
  3412. package/src/icons/components/ModeEditOutlineIcon.tsx +0 -8
  3413. package/src/icons/components/ModeFanOffIcon.tsx +0 -8
  3414. package/src/icons/components/ModeIcon.tsx +0 -8
  3415. package/src/icons/components/ModeNightIcon.tsx +0 -8
  3416. package/src/icons/components/ModeOfTravelIcon.tsx +0 -8
  3417. package/src/icons/components/ModeStandbyIcon.tsx +0 -8
  3418. package/src/icons/components/ModelTrainingIcon.tsx +0 -8
  3419. package/src/icons/components/MonetizationOnIcon.tsx +0 -8
  3420. package/src/icons/components/MoneyIcon.tsx +0 -8
  3421. package/src/icons/components/MoneyOffCsredIcon.tsx +0 -8
  3422. package/src/icons/components/MoneyOffIcon.tsx +0 -8
  3423. package/src/icons/components/MonitorHeartIcon.tsx +0 -8
  3424. package/src/icons/components/MonitorIcon.tsx +0 -8
  3425. package/src/icons/components/MonitorWeightIcon.tsx +0 -8
  3426. package/src/icons/components/MonochromePhotosIcon.tsx +0 -8
  3427. package/src/icons/components/MoodBadIcon.tsx +0 -8
  3428. package/src/icons/components/MoodIcon.tsx +0 -8
  3429. package/src/icons/components/MopedIcon.tsx +0 -8
  3430. package/src/icons/components/MoreHorizIcon.tsx +0 -8
  3431. package/src/icons/components/MoreIcon.tsx +0 -8
  3432. package/src/icons/components/MoreTimeIcon.tsx +0 -8
  3433. package/src/icons/components/MoreVertIcon.tsx +0 -8
  3434. package/src/icons/components/MosqueIcon.tsx +0 -8
  3435. package/src/icons/components/MotionPhotosAutoIcon.tsx +0 -8
  3436. package/src/icons/components/MotionPhotosOffIcon.tsx +0 -8
  3437. package/src/icons/components/MotionPhotosOnIcon.tsx +0 -8
  3438. package/src/icons/components/MotionPhotosPauseIcon.tsx +0 -8
  3439. package/src/icons/components/MotionPhotosPausedIcon.tsx +0 -8
  3440. package/src/icons/components/MouseIcon.tsx +0 -8
  3441. package/src/icons/components/MoveDownIcon.tsx +0 -8
  3442. package/src/icons/components/MoveToInboxIcon.tsx +0 -8
  3443. package/src/icons/components/MoveUpIcon.tsx +0 -8
  3444. package/src/icons/components/MovieCreationIcon.tsx +0 -8
  3445. package/src/icons/components/MovieFilterIcon.tsx +0 -8
  3446. package/src/icons/components/MovieIcon.tsx +0 -8
  3447. package/src/icons/components/MovingIcon.tsx +0 -8
  3448. package/src/icons/components/MpIcon.tsx +0 -8
  3449. package/src/icons/components/MultilineChartIcon.tsx +0 -8
  3450. package/src/icons/components/MultipleStopIcon.tsx +0 -8
  3451. package/src/icons/components/MuseumIcon.tsx +0 -8
  3452. package/src/icons/components/MusicNoteIcon.tsx +0 -8
  3453. package/src/icons/components/MusicOffIcon.tsx +0 -8
  3454. package/src/icons/components/MusicVideoIcon.tsx +0 -8
  3455. package/src/icons/components/MyLocationIcon.tsx +0 -8
  3456. package/src/icons/components/NatIcon.tsx +0 -8
  3457. package/src/icons/components/NatureIcon.tsx +0 -8
  3458. package/src/icons/components/NaturePeopleIcon.tsx +0 -8
  3459. package/src/icons/components/NavigateBeforeIcon.tsx +0 -8
  3460. package/src/icons/components/NavigateNextIcon.tsx +0 -8
  3461. package/src/icons/components/NavigationIcon.tsx +0 -8
  3462. package/src/icons/components/NearMeDisabledIcon.tsx +0 -8
  3463. package/src/icons/components/NearMeIcon.tsx +0 -8
  3464. package/src/icons/components/NearbyErrorIcon.tsx +0 -8
  3465. package/src/icons/components/NearbyOffIcon.tsx +0 -8
  3466. package/src/icons/components/NestCamWiredStandIcon.tsx +0 -8
  3467. package/src/icons/components/NetworkCellIcon.tsx +0 -8
  3468. package/src/icons/components/NetworkCheckIcon.tsx +0 -8
  3469. package/src/icons/components/NetworkLockedIcon.tsx +0 -8
  3470. package/src/icons/components/NetworkPingIcon.tsx +0 -8
  3471. package/src/icons/components/NetworkWifi1BarIcon.tsx +0 -8
  3472. package/src/icons/components/NetworkWifi2BarIcon.tsx +0 -8
  3473. package/src/icons/components/NetworkWifi3BarIcon.tsx +0 -8
  3474. package/src/icons/components/NetworkWifiIcon.tsx +0 -8
  3475. package/src/icons/components/NewLabelIcon.tsx +0 -8
  3476. package/src/icons/components/NewReleasesIcon.tsx +0 -8
  3477. package/src/icons/components/NewspaperIcon.tsx +0 -8
  3478. package/src/icons/components/NextPlanIcon.tsx +0 -8
  3479. package/src/icons/components/NextWeekIcon.tsx +0 -8
  3480. package/src/icons/components/NfcIcon.tsx +0 -8
  3481. package/src/icons/components/NightShelterIcon.tsx +0 -8
  3482. package/src/icons/components/NightlifeIcon.tsx +0 -8
  3483. package/src/icons/components/NightlightIcon.tsx +0 -8
  3484. package/src/icons/components/NightlightRoundIcon.tsx +0 -8
  3485. package/src/icons/components/NightsStayIcon.tsx +0 -8
  3486. package/src/icons/components/NoAccountsIcon.tsx +0 -8
  3487. package/src/icons/components/NoAdultContentIcon.tsx +0 -8
  3488. package/src/icons/components/NoBackpackIcon.tsx +0 -8
  3489. package/src/icons/components/NoCellIcon.tsx +0 -8
  3490. package/src/icons/components/NoCrashIcon.tsx +0 -8
  3491. package/src/icons/components/NoDrinksIcon.tsx +0 -8
  3492. package/src/icons/components/NoEncryptionGmailerrorredIcon.tsx +0 -8
  3493. package/src/icons/components/NoEncryptionIcon.tsx +0 -8
  3494. package/src/icons/components/NoFlashIcon.tsx +0 -8
  3495. package/src/icons/components/NoFoodIcon.tsx +0 -8
  3496. package/src/icons/components/NoLuggageIcon.tsx +0 -8
  3497. package/src/icons/components/NoMealsIcon.tsx +0 -8
  3498. package/src/icons/components/NoMeetingRoomIcon.tsx +0 -8
  3499. package/src/icons/components/NoPhotographyIcon.tsx +0 -8
  3500. package/src/icons/components/NoSimIcon.tsx +0 -8
  3501. package/src/icons/components/NoStrollerIcon.tsx +0 -8
  3502. package/src/icons/components/NoTransferIcon.tsx +0 -8
  3503. package/src/icons/components/NoiseAwareIcon.tsx +0 -8
  3504. package/src/icons/components/NoiseControlOffIcon.tsx +0 -8
  3505. package/src/icons/components/NordicWalkingIcon.tsx +0 -8
  3506. package/src/icons/components/NorthEastIcon.tsx +0 -8
  3507. package/src/icons/components/NorthIcon.tsx +0 -8
  3508. package/src/icons/components/NorthWestIcon.tsx +0 -8
  3509. package/src/icons/components/NotAccessibleIcon.tsx +0 -8
  3510. package/src/icons/components/NotInterestedIcon.tsx +0 -8
  3511. package/src/icons/components/NotListedLocationIcon.tsx +0 -8
  3512. package/src/icons/components/NotStartedIcon.tsx +0 -8
  3513. package/src/icons/components/NoteAddIcon.tsx +0 -8
  3514. package/src/icons/components/NoteAltIcon.tsx +0 -8
  3515. package/src/icons/components/NoteIcon.tsx +0 -8
  3516. package/src/icons/components/NotesIcon.tsx +0 -8
  3517. package/src/icons/components/NotificationAddIcon.tsx +0 -8
  3518. package/src/icons/components/NotificationImportantIcon.tsx +0 -8
  3519. package/src/icons/components/NotificationsActiveIcon.tsx +0 -8
  3520. package/src/icons/components/NotificationsIcon.tsx +0 -8
  3521. package/src/icons/components/NotificationsNoneIcon.tsx +0 -8
  3522. package/src/icons/components/NotificationsOffIcon.tsx +0 -8
  3523. package/src/icons/components/NotificationsPausedIcon.tsx +0 -8
  3524. package/src/icons/components/NumbersIcon.tsx +0 -8
  3525. package/src/icons/components/OfflineBoltIcon.tsx +0 -8
  3526. package/src/icons/components/OfflinePinIcon.tsx +0 -8
  3527. package/src/icons/components/OfflineShareIcon.tsx +0 -8
  3528. package/src/icons/components/OilBarrelIcon.tsx +0 -8
  3529. package/src/icons/components/OnDeviceTrainingIcon.tsx +0 -8
  3530. package/src/icons/components/OndemandVideoIcon.tsx +0 -8
  3531. package/src/icons/components/OnlinePredictionIcon.tsx +0 -8
  3532. package/src/icons/components/OpacityIcon.tsx +0 -8
  3533. package/src/icons/components/OpenInBrowserIcon.tsx +0 -8
  3534. package/src/icons/components/OpenInFullIcon.tsx +0 -8
  3535. package/src/icons/components/OpenInNewIcon.tsx +0 -8
  3536. package/src/icons/components/OpenInNewOffIcon.tsx +0 -8
  3537. package/src/icons/components/OpenWithIcon.tsx +0 -8
  3538. package/src/icons/components/OtherHousesIcon.tsx +0 -8
  3539. package/src/icons/components/OutboundIcon.tsx +0 -8
  3540. package/src/icons/components/OutboxIcon.tsx +0 -8
  3541. package/src/icons/components/OutdoorGrillIcon.tsx +0 -8
  3542. package/src/icons/components/OutletIcon.tsx +0 -8
  3543. package/src/icons/components/OutlinedFlagIcon.tsx +0 -8
  3544. package/src/icons/components/OutputIcon.tsx +0 -8
  3545. package/src/icons/components/PaddingIcon.tsx +0 -8
  3546. package/src/icons/components/PagesIcon.tsx +0 -8
  3547. package/src/icons/components/PageviewIcon.tsx +0 -8
  3548. package/src/icons/components/PaidIcon.tsx +0 -8
  3549. package/src/icons/components/PaletteIcon.tsx +0 -8
  3550. package/src/icons/components/PanToolAltIcon.tsx +0 -8
  3551. package/src/icons/components/PanToolIcon.tsx +0 -8
  3552. package/src/icons/components/PanoramaFishEyeIcon.tsx +0 -8
  3553. package/src/icons/components/PanoramaHorizontalIcon.tsx +0 -8
  3554. package/src/icons/components/PanoramaHorizontalSelectIcon.tsx +0 -8
  3555. package/src/icons/components/PanoramaIcon.tsx +0 -8
  3556. package/src/icons/components/PanoramaPhotosphereIcon.tsx +0 -8
  3557. package/src/icons/components/PanoramaPhotosphereSelectIcon.tsx +0 -8
  3558. package/src/icons/components/PanoramaVerticalIcon.tsx +0 -8
  3559. package/src/icons/components/PanoramaVerticalSelectIcon.tsx +0 -8
  3560. package/src/icons/components/PanoramaWideAngleIcon.tsx +0 -8
  3561. package/src/icons/components/PanoramaWideAngleSelectIcon.tsx +0 -8
  3562. package/src/icons/components/ParaglidingIcon.tsx +0 -8
  3563. package/src/icons/components/ParkIcon.tsx +0 -8
  3564. package/src/icons/components/PartyModeIcon.tsx +0 -8
  3565. package/src/icons/components/PasswordIcon.tsx +0 -8
  3566. package/src/icons/components/PatternIcon.tsx +0 -8
  3567. package/src/icons/components/PauseCircleFilledIcon.tsx +0 -8
  3568. package/src/icons/components/PauseCircleIcon.tsx +0 -8
  3569. package/src/icons/components/PauseCircleOutlineIcon.tsx +0 -8
  3570. package/src/icons/components/PauseIcon.tsx +0 -8
  3571. package/src/icons/components/PausePresentationIcon.tsx +0 -8
  3572. package/src/icons/components/PaymentIcon.tsx +0 -8
  3573. package/src/icons/components/PaymentsIcon.tsx +0 -8
  3574. package/src/icons/components/PedalBikeIcon.tsx +0 -8
  3575. package/src/icons/components/PendingActionsIcon.tsx +0 -8
  3576. package/src/icons/components/PendingIcon.tsx +0 -8
  3577. package/src/icons/components/PentagonIcon.tsx +0 -8
  3578. package/src/icons/components/PeopleAltIcon.tsx +0 -8
  3579. package/src/icons/components/PeopleIcon.tsx +0 -8
  3580. package/src/icons/components/PeopleOutlineIcon.tsx +0 -8
  3581. package/src/icons/components/PercentIcon.tsx +0 -8
  3582. package/src/icons/components/PermCameraMicIcon.tsx +0 -8
  3583. package/src/icons/components/PermContactCalendarIcon.tsx +0 -8
  3584. package/src/icons/components/PermDataSettingIcon.tsx +0 -8
  3585. package/src/icons/components/PermDeviceInformationIcon.tsx +0 -8
  3586. package/src/icons/components/PermIdentityIcon.tsx +0 -8
  3587. package/src/icons/components/PermMediaIcon.tsx +0 -8
  3588. package/src/icons/components/PermPhoneMsgIcon.tsx +0 -8
  3589. package/src/icons/components/PermScanWifiIcon.tsx +0 -8
  3590. package/src/icons/components/Person2Icon.tsx +0 -8
  3591. package/src/icons/components/Person3Icon.tsx +0 -8
  3592. package/src/icons/components/Person4Icon.tsx +0 -8
  3593. package/src/icons/components/PersonAddAlt1Icon.tsx +0 -8
  3594. package/src/icons/components/PersonAddAltIcon.tsx +0 -8
  3595. package/src/icons/components/PersonAddDisabledIcon.tsx +0 -8
  3596. package/src/icons/components/PersonAddIcon.tsx +0 -8
  3597. package/src/icons/components/PersonIcon.tsx +0 -8
  3598. package/src/icons/components/PersonOffIcon.tsx +0 -8
  3599. package/src/icons/components/PersonOutlineIcon.tsx +0 -8
  3600. package/src/icons/components/PersonPinCircleIcon.tsx +0 -8
  3601. package/src/icons/components/PersonPinIcon.tsx +0 -8
  3602. package/src/icons/components/PersonRemoveAlt1Icon.tsx +0 -8
  3603. package/src/icons/components/PersonRemoveIcon.tsx +0 -8
  3604. package/src/icons/components/PersonSearchIcon.tsx +0 -8
  3605. package/src/icons/components/PersonalInjuryIcon.tsx +0 -8
  3606. package/src/icons/components/PersonalVideoIcon.tsx +0 -8
  3607. package/src/icons/components/PestControlIcon.tsx +0 -8
  3608. package/src/icons/components/PestControlRodentIcon.tsx +0 -8
  3609. package/src/icons/components/PetsIcon.tsx +0 -8
  3610. package/src/icons/components/PhishingIcon.tsx +0 -8
  3611. package/src/icons/components/PhoneAndroidIcon.tsx +0 -8
  3612. package/src/icons/components/PhoneBluetoothSpeakerIcon.tsx +0 -8
  3613. package/src/icons/components/PhoneCallbackIcon.tsx +0 -8
  3614. package/src/icons/components/PhoneDisabledIcon.tsx +0 -8
  3615. package/src/icons/components/PhoneEnabledIcon.tsx +0 -8
  3616. package/src/icons/components/PhoneForwardedIcon.tsx +0 -8
  3617. package/src/icons/components/PhoneIcon.tsx +0 -8
  3618. package/src/icons/components/PhoneIphoneIcon.tsx +0 -8
  3619. package/src/icons/components/PhoneLockedIcon.tsx +0 -8
  3620. package/src/icons/components/PhoneMissedIcon.tsx +0 -8
  3621. package/src/icons/components/PhonePausedIcon.tsx +0 -8
  3622. package/src/icons/components/PhonelinkEraseIcon.tsx +0 -8
  3623. package/src/icons/components/PhonelinkIcon.tsx +0 -8
  3624. package/src/icons/components/PhonelinkLockIcon.tsx +0 -8
  3625. package/src/icons/components/PhonelinkOffIcon.tsx +0 -8
  3626. package/src/icons/components/PhonelinkRingIcon.tsx +0 -8
  3627. package/src/icons/components/PhonelinkSetupIcon.tsx +0 -8
  3628. package/src/icons/components/PhotoAlbumIcon.tsx +0 -8
  3629. package/src/icons/components/PhotoCameraBackIcon.tsx +0 -8
  3630. package/src/icons/components/PhotoCameraFrontIcon.tsx +0 -8
  3631. package/src/icons/components/PhotoCameraIcon.tsx +0 -8
  3632. package/src/icons/components/PhotoFilterIcon.tsx +0 -8
  3633. package/src/icons/components/PhotoIcon.tsx +0 -8
  3634. package/src/icons/components/PhotoLibraryIcon.tsx +0 -8
  3635. package/src/icons/components/PhotoSizeSelectActualIcon.tsx +0 -8
  3636. package/src/icons/components/PhotoSizeSelectLargeIcon.tsx +0 -8
  3637. package/src/icons/components/PhotoSizeSelectSmallIcon.tsx +0 -8
  3638. package/src/icons/components/PhpIcon.tsx +0 -8
  3639. package/src/icons/components/PianoIcon.tsx +0 -8
  3640. package/src/icons/components/PianoOffIcon.tsx +0 -8
  3641. package/src/icons/components/PictureAsPdfIcon.tsx +0 -8
  3642. package/src/icons/components/PictureInPictureAltIcon.tsx +0 -8
  3643. package/src/icons/components/PictureInPictureIcon.tsx +0 -8
  3644. package/src/icons/components/PieChartIcon.tsx +0 -8
  3645. package/src/icons/components/PieChartOutlineIcon.tsx +0 -8
  3646. package/src/icons/components/PinDropIcon.tsx +0 -8
  3647. package/src/icons/components/PinEndIcon.tsx +0 -8
  3648. package/src/icons/components/PinIcon.tsx +0 -8
  3649. package/src/icons/components/PinInvokeIcon.tsx +0 -8
  3650. package/src/icons/components/PinchIcon.tsx +0 -8
  3651. package/src/icons/components/PivotTableChartIcon.tsx +0 -8
  3652. package/src/icons/components/PixIcon.tsx +0 -8
  3653. package/src/icons/components/PlaceIcon.tsx +0 -8
  3654. package/src/icons/components/PlagiarismIcon.tsx +0 -8
  3655. package/src/icons/components/PlayArrowIcon.tsx +0 -8
  3656. package/src/icons/components/PlayCircleFilledIcon.tsx +0 -8
  3657. package/src/icons/components/PlayCircleIcon.tsx +0 -8
  3658. package/src/icons/components/PlayCircleOutlineIcon.tsx +0 -8
  3659. package/src/icons/components/PlayDisabledIcon.tsx +0 -8
  3660. package/src/icons/components/PlayForWorkIcon.tsx +0 -8
  3661. package/src/icons/components/PlayLessonIcon.tsx +0 -8
  3662. package/src/icons/components/PlaylistAddCheckCircleIcon.tsx +0 -8
  3663. package/src/icons/components/PlaylistAddCheckIcon.tsx +0 -8
  3664. package/src/icons/components/PlaylistAddCircleIcon.tsx +0 -8
  3665. package/src/icons/components/PlaylistAddIcon.tsx +0 -8
  3666. package/src/icons/components/PlaylistPlayIcon.tsx +0 -8
  3667. package/src/icons/components/PlaylistRemoveIcon.tsx +0 -8
  3668. package/src/icons/components/PlumbingIcon.tsx +0 -8
  3669. package/src/icons/components/PlusOneIcon.tsx +0 -8
  3670. package/src/icons/components/PodcastsIcon.tsx +0 -8
  3671. package/src/icons/components/PointOfSaleIcon.tsx +0 -8
  3672. package/src/icons/components/PolicyIcon.tsx +0 -8
  3673. package/src/icons/components/PollIcon.tsx +0 -8
  3674. package/src/icons/components/PolylineIcon.tsx +0 -8
  3675. package/src/icons/components/PolymerIcon.tsx +0 -8
  3676. package/src/icons/components/PoolIcon.tsx +0 -8
  3677. package/src/icons/components/PortableWifiOffIcon.tsx +0 -8
  3678. package/src/icons/components/PortraitIcon.tsx +0 -8
  3679. package/src/icons/components/PostAddIcon.tsx +0 -8
  3680. package/src/icons/components/PowerIcon.tsx +0 -8
  3681. package/src/icons/components/PowerInputIcon.tsx +0 -8
  3682. package/src/icons/components/PowerOffIcon.tsx +0 -8
  3683. package/src/icons/components/PowerSettingsNewIcon.tsx +0 -8
  3684. package/src/icons/components/PrecisionManufacturingIcon.tsx +0 -8
  3685. package/src/icons/components/PregnantWomanIcon.tsx +0 -8
  3686. package/src/icons/components/PresentToAllIcon.tsx +0 -8
  3687. package/src/icons/components/PreviewIcon.tsx +0 -8
  3688. package/src/icons/components/PriceChangeIcon.tsx +0 -8
  3689. package/src/icons/components/PriceCheckIcon.tsx +0 -8
  3690. package/src/icons/components/PrintDisabledIcon.tsx +0 -8
  3691. package/src/icons/components/PrintIcon.tsx +0 -8
  3692. package/src/icons/components/PriorityHighIcon.tsx +0 -8
  3693. package/src/icons/components/PrivacyTipIcon.tsx +0 -8
  3694. package/src/icons/components/PrivateConnectivityIcon.tsx +0 -8
  3695. package/src/icons/components/ProductionQuantityLimitsIcon.tsx +0 -8
  3696. package/src/icons/components/PropaneIcon.tsx +0 -8
  3697. package/src/icons/components/PropaneTankIcon.tsx +0 -8
  3698. package/src/icons/components/PsychologyAltIcon.tsx +0 -8
  3699. package/src/icons/components/PsychologyIcon.tsx +0 -8
  3700. package/src/icons/components/PublicIcon.tsx +0 -8
  3701. package/src/icons/components/PublicOffIcon.tsx +0 -8
  3702. package/src/icons/components/PublishIcon.tsx +0 -8
  3703. package/src/icons/components/PublishedWithChangesIcon.tsx +0 -8
  3704. package/src/icons/components/PunchClockIcon.tsx +0 -8
  3705. package/src/icons/components/PushPinIcon.tsx +0 -8
  3706. package/src/icons/components/QrCode2Icon.tsx +0 -8
  3707. package/src/icons/components/QrCodeIcon.tsx +0 -8
  3708. package/src/icons/components/QrCodeScannerIcon.tsx +0 -8
  3709. package/src/icons/components/QueryBuilderIcon.tsx +0 -8
  3710. package/src/icons/components/QueryStatsIcon.tsx +0 -8
  3711. package/src/icons/components/QuestionAnswerIcon.tsx +0 -8
  3712. package/src/icons/components/QuestionMarkIcon.tsx +0 -8
  3713. package/src/icons/components/QueueIcon.tsx +0 -8
  3714. package/src/icons/components/QueueMusicIcon.tsx +0 -8
  3715. package/src/icons/components/QueuePlayNextIcon.tsx +0 -8
  3716. package/src/icons/components/QuickreplyIcon.tsx +0 -8
  3717. package/src/icons/components/QuizIcon.tsx +0 -8
  3718. package/src/icons/components/RMobiledataIcon.tsx +0 -8
  3719. package/src/icons/components/RadarIcon.tsx +0 -8
  3720. package/src/icons/components/RadioButtonCheckedIcon.tsx +0 -8
  3721. package/src/icons/components/RadioButtonUncheckedIcon.tsx +0 -8
  3722. package/src/icons/components/RadioIcon.tsx +0 -8
  3723. package/src/icons/components/RailwayAlertIcon.tsx +0 -8
  3724. package/src/icons/components/RamenDiningIcon.tsx +0 -8
  3725. package/src/icons/components/RampLeftIcon.tsx +0 -8
  3726. package/src/icons/components/RampRightIcon.tsx +0 -8
  3727. package/src/icons/components/RateReviewIcon.tsx +0 -8
  3728. package/src/icons/components/RawOffIcon.tsx +0 -8
  3729. package/src/icons/components/RawOnIcon.tsx +0 -8
  3730. package/src/icons/components/ReadMoreIcon.tsx +0 -8
  3731. package/src/icons/components/RealEstateAgentIcon.tsx +0 -8
  3732. package/src/icons/components/ReceiptIcon.tsx +0 -8
  3733. package/src/icons/components/ReceiptLongIcon.tsx +0 -8
  3734. package/src/icons/components/RecentActorsIcon.tsx +0 -8
  3735. package/src/icons/components/RecommendIcon.tsx +0 -8
  3736. package/src/icons/components/RecordVoiceOverIcon.tsx +0 -8
  3737. package/src/icons/components/RectangleIcon.tsx +0 -8
  3738. package/src/icons/components/RecyclingIcon.tsx +0 -8
  3739. package/src/icons/components/RedeemIcon.tsx +0 -8
  3740. package/src/icons/components/RedoIcon.tsx +0 -8
  3741. package/src/icons/components/ReduceCapacityIcon.tsx +0 -8
  3742. package/src/icons/components/RefreshIcon.tsx +0 -8
  3743. package/src/icons/components/RememberMeIcon.tsx +0 -8
  3744. package/src/icons/components/RemoveCircleIcon.tsx +0 -8
  3745. package/src/icons/components/RemoveCircleOutlineIcon.tsx +0 -8
  3746. package/src/icons/components/RemoveDoneIcon.tsx +0 -8
  3747. package/src/icons/components/RemoveFromQueueIcon.tsx +0 -8
  3748. package/src/icons/components/RemoveIcon.tsx +0 -8
  3749. package/src/icons/components/RemoveModeratorIcon.tsx +0 -8
  3750. package/src/icons/components/RemoveRedEyeIcon.tsx +0 -8
  3751. package/src/icons/components/RemoveRoadIcon.tsx +0 -8
  3752. package/src/icons/components/RemoveShoppingCartIcon.tsx +0 -8
  3753. package/src/icons/components/ReorderIcon.tsx +0 -8
  3754. package/src/icons/components/RepartitionIcon.tsx +0 -8
  3755. package/src/icons/components/RepeatIcon.tsx +0 -8
  3756. package/src/icons/components/RepeatOnIcon.tsx +0 -8
  3757. package/src/icons/components/RepeatOneIcon.tsx +0 -8
  3758. package/src/icons/components/RepeatOneOnIcon.tsx +0 -8
  3759. package/src/icons/components/Replay10Icon.tsx +0 -8
  3760. package/src/icons/components/Replay30Icon.tsx +0 -8
  3761. package/src/icons/components/Replay5Icon.tsx +0 -8
  3762. package/src/icons/components/ReplayCircleFilledIcon.tsx +0 -8
  3763. package/src/icons/components/ReplayIcon.tsx +0 -8
  3764. package/src/icons/components/ReplyAllIcon.tsx +0 -8
  3765. package/src/icons/components/ReplyIcon.tsx +0 -8
  3766. package/src/icons/components/ReportGmailerrorredIcon.tsx +0 -8
  3767. package/src/icons/components/ReportIcon.tsx +0 -8
  3768. package/src/icons/components/ReportOffIcon.tsx +0 -8
  3769. package/src/icons/components/ReportProblemIcon.tsx +0 -8
  3770. package/src/icons/components/RequestPageIcon.tsx +0 -8
  3771. package/src/icons/components/RequestQuoteIcon.tsx +0 -8
  3772. package/src/icons/components/ResetTvIcon.tsx +0 -8
  3773. package/src/icons/components/RestartAltIcon.tsx +0 -8
  3774. package/src/icons/components/RestaurantIcon.tsx +0 -8
  3775. package/src/icons/components/RestaurantMenuIcon.tsx +0 -8
  3776. package/src/icons/components/RestoreFromTrashIcon.tsx +0 -8
  3777. package/src/icons/components/RestoreIcon.tsx +0 -8
  3778. package/src/icons/components/RestorePageIcon.tsx +0 -8
  3779. package/src/icons/components/ReviewsIcon.tsx +0 -8
  3780. package/src/icons/components/RiceBowlIcon.tsx +0 -8
  3781. package/src/icons/components/RingVolumeIcon.tsx +0 -8
  3782. package/src/icons/components/RocketIcon.tsx +0 -8
  3783. package/src/icons/components/RocketLaunchIcon.tsx +0 -8
  3784. package/src/icons/components/RollerShadesClosedIcon.tsx +0 -8
  3785. package/src/icons/components/RollerShadesIcon.tsx +0 -8
  3786. package/src/icons/components/RollerSkatingIcon.tsx +0 -8
  3787. package/src/icons/components/RoofingIcon.tsx +0 -8
  3788. package/src/icons/components/RoomIcon.tsx +0 -8
  3789. package/src/icons/components/RoomPreferencesIcon.tsx +0 -8
  3790. package/src/icons/components/RoomServiceIcon.tsx +0 -8
  3791. package/src/icons/components/Rotate90DegreesCcwIcon.tsx +0 -8
  3792. package/src/icons/components/Rotate90DegreesCwIcon.tsx +0 -8
  3793. package/src/icons/components/RotateLeftIcon.tsx +0 -8
  3794. package/src/icons/components/RotateRightIcon.tsx +0 -8
  3795. package/src/icons/components/RoundaboutLeftIcon.tsx +0 -8
  3796. package/src/icons/components/RoundaboutRightIcon.tsx +0 -8
  3797. package/src/icons/components/RoundedCornerIcon.tsx +0 -8
  3798. package/src/icons/components/RouteIcon.tsx +0 -8
  3799. package/src/icons/components/RouterIcon.tsx +0 -8
  3800. package/src/icons/components/RowingIcon.tsx +0 -8
  3801. package/src/icons/components/RssFeedIcon.tsx +0 -8
  3802. package/src/icons/components/RsvpIcon.tsx +0 -8
  3803. package/src/icons/components/RttIcon.tsx +0 -8
  3804. package/src/icons/components/RuleFolderIcon.tsx +0 -8
  3805. package/src/icons/components/RuleIcon.tsx +0 -8
  3806. package/src/icons/components/RunCircleIcon.tsx +0 -8
  3807. package/src/icons/components/RunningWithErrorsIcon.tsx +0 -8
  3808. package/src/icons/components/RvHookupIcon.tsx +0 -8
  3809. package/src/icons/components/SafetyCheckIcon.tsx +0 -8
  3810. package/src/icons/components/SafetyDividerIcon.tsx +0 -8
  3811. package/src/icons/components/SailingIcon.tsx +0 -8
  3812. package/src/icons/components/SanitizerIcon.tsx +0 -8
  3813. package/src/icons/components/SatelliteAltIcon.tsx +0 -8
  3814. package/src/icons/components/SatelliteIcon.tsx +0 -8
  3815. package/src/icons/components/SaveAltIcon.tsx +0 -8
  3816. package/src/icons/components/SaveAsIcon.tsx +0 -8
  3817. package/src/icons/components/SaveIcon.tsx +0 -8
  3818. package/src/icons/components/SavedSearchIcon.tsx +0 -8
  3819. package/src/icons/components/SavingsIcon.tsx +0 -8
  3820. package/src/icons/components/ScaleIcon.tsx +0 -8
  3821. package/src/icons/components/ScannerIcon.tsx +0 -8
  3822. package/src/icons/components/ScatterPlotIcon.tsx +0 -8
  3823. package/src/icons/components/ScheduleIcon.tsx +0 -8
  3824. package/src/icons/components/ScheduleSendIcon.tsx +0 -8
  3825. package/src/icons/components/SchemaIcon.tsx +0 -8
  3826. package/src/icons/components/SchoolIcon.tsx +0 -8
  3827. package/src/icons/components/ScienceIcon.tsx +0 -8
  3828. package/src/icons/components/ScoreIcon.tsx +0 -8
  3829. package/src/icons/components/ScoreboardIcon.tsx +0 -8
  3830. package/src/icons/components/ScreenLockLandscapeIcon.tsx +0 -8
  3831. package/src/icons/components/ScreenLockPortraitIcon.tsx +0 -8
  3832. package/src/icons/components/ScreenLockRotationIcon.tsx +0 -8
  3833. package/src/icons/components/ScreenRotationAltIcon.tsx +0 -8
  3834. package/src/icons/components/ScreenRotationIcon.tsx +0 -8
  3835. package/src/icons/components/ScreenSearchDesktopIcon.tsx +0 -8
  3836. package/src/icons/components/ScreenShareIcon.tsx +0 -8
  3837. package/src/icons/components/ScreenshotIcon.tsx +0 -8
  3838. package/src/icons/components/ScreenshotMonitorIcon.tsx +0 -8
  3839. package/src/icons/components/ScubaDivingIcon.tsx +0 -8
  3840. package/src/icons/components/SdCardAlertIcon.tsx +0 -8
  3841. package/src/icons/components/SdCardIcon.tsx +0 -8
  3842. package/src/icons/components/SdIcon.tsx +0 -8
  3843. package/src/icons/components/SdStorageIcon.tsx +0 -8
  3844. package/src/icons/components/SearchIcon.tsx +0 -8
  3845. package/src/icons/components/SearchOffIcon.tsx +0 -8
  3846. package/src/icons/components/SecurityIcon.tsx +0 -8
  3847. package/src/icons/components/SecurityUpdateGoodIcon.tsx +0 -8
  3848. package/src/icons/components/SecurityUpdateIcon.tsx +0 -8
  3849. package/src/icons/components/SecurityUpdateWarningIcon.tsx +0 -8
  3850. package/src/icons/components/SegmentIcon.tsx +0 -8
  3851. package/src/icons/components/SelectAllIcon.tsx +0 -8
  3852. package/src/icons/components/SelfImprovementIcon.tsx +0 -8
  3853. package/src/icons/components/SellIcon.tsx +0 -8
  3854. package/src/icons/components/SendAndArchiveIcon.tsx +0 -8
  3855. package/src/icons/components/SendIcon.tsx +0 -8
  3856. package/src/icons/components/SendTimeExtensionIcon.tsx +0 -8
  3857. package/src/icons/components/SendToMobileIcon.tsx +0 -8
  3858. package/src/icons/components/SensorDoorIcon.tsx +0 -8
  3859. package/src/icons/components/SensorOccupiedIcon.tsx +0 -8
  3860. package/src/icons/components/SensorWindowIcon.tsx +0 -8
  3861. package/src/icons/components/SensorsIcon.tsx +0 -8
  3862. package/src/icons/components/SensorsOffIcon.tsx +0 -8
  3863. package/src/icons/components/SentimentDissatisfiedIcon.tsx +0 -8
  3864. package/src/icons/components/SentimentNeutralIcon.tsx +0 -8
  3865. package/src/icons/components/SentimentSatisfiedAltIcon.tsx +0 -8
  3866. package/src/icons/components/SentimentSatisfiedIcon.tsx +0 -8
  3867. package/src/icons/components/SentimentVeryDissatisfiedIcon.tsx +0 -8
  3868. package/src/icons/components/SentimentVerySatisfiedIcon.tsx +0 -8
  3869. package/src/icons/components/SetMealIcon.tsx +0 -8
  3870. package/src/icons/components/SettingsAccessibilityIcon.tsx +0 -8
  3871. package/src/icons/components/SettingsApplicationsIcon.tsx +0 -8
  3872. package/src/icons/components/SettingsBackupRestoreIcon.tsx +0 -8
  3873. package/src/icons/components/SettingsBluetoothIcon.tsx +0 -8
  3874. package/src/icons/components/SettingsBrightnessIcon.tsx +0 -8
  3875. package/src/icons/components/SettingsCellIcon.tsx +0 -8
  3876. package/src/icons/components/SettingsEthernetIcon.tsx +0 -8
  3877. package/src/icons/components/SettingsIcon.tsx +0 -8
  3878. package/src/icons/components/SettingsInputAntennaIcon.tsx +0 -8
  3879. package/src/icons/components/SettingsInputComponentIcon.tsx +0 -8
  3880. package/src/icons/components/SettingsInputCompositeIcon.tsx +0 -8
  3881. package/src/icons/components/SettingsInputHdmiIcon.tsx +0 -8
  3882. package/src/icons/components/SettingsInputSvideoIcon.tsx +0 -8
  3883. package/src/icons/components/SettingsOverscanIcon.tsx +0 -8
  3884. package/src/icons/components/SettingsPhoneIcon.tsx +0 -8
  3885. package/src/icons/components/SettingsPowerIcon.tsx +0 -8
  3886. package/src/icons/components/SettingsRemoteIcon.tsx +0 -8
  3887. package/src/icons/components/SettingsSuggestIcon.tsx +0 -8
  3888. package/src/icons/components/SettingsSystemDaydreamIcon.tsx +0 -8
  3889. package/src/icons/components/SettingsVoiceIcon.tsx +0 -8
  3890. package/src/icons/components/SevereColdIcon.tsx +0 -8
  3891. package/src/icons/components/ShapeLineIcon.tsx +0 -8
  3892. package/src/icons/components/ShareIcon.tsx +0 -8
  3893. package/src/icons/components/ShareLocationIcon.tsx +0 -8
  3894. package/src/icons/components/ShieldIcon.tsx +0 -8
  3895. package/src/icons/components/ShieldMoonIcon.tsx +0 -8
  3896. package/src/icons/components/Shop2Icon.tsx +0 -8
  3897. package/src/icons/components/ShopIcon.tsx +0 -8
  3898. package/src/icons/components/ShopTwoIcon.tsx +0 -8
  3899. package/src/icons/components/ShoppingBagIcon.tsx +0 -8
  3900. package/src/icons/components/ShoppingBasketIcon.tsx +0 -8
  3901. package/src/icons/components/ShoppingCartCheckoutIcon.tsx +0 -8
  3902. package/src/icons/components/ShoppingCartIcon.tsx +0 -8
  3903. package/src/icons/components/ShortTextIcon.tsx +0 -8
  3904. package/src/icons/components/ShortcutIcon.tsx +0 -8
  3905. package/src/icons/components/ShowChartIcon.tsx +0 -8
  3906. package/src/icons/components/ShowerIcon.tsx +0 -8
  3907. package/src/icons/components/ShuffleIcon.tsx +0 -8
  3908. package/src/icons/components/ShuffleOnIcon.tsx +0 -8
  3909. package/src/icons/components/ShutterSpeedIcon.tsx +0 -8
  3910. package/src/icons/components/SickIcon.tsx +0 -8
  3911. package/src/icons/components/SignLanguageIcon.tsx +0 -8
  3912. package/src/icons/components/SignalCellular0BarIcon.tsx +0 -8
  3913. package/src/icons/components/SignalCellular4BarIcon.tsx +0 -8
  3914. package/src/icons/components/SignalCellularAlt1BarIcon.tsx +0 -8
  3915. package/src/icons/components/SignalCellularAlt2BarIcon.tsx +0 -8
  3916. package/src/icons/components/SignalCellularAltIcon.tsx +0 -8
  3917. package/src/icons/components/SignalCellularConnectedNoInternet0BarIcon.tsx +0 -8
  3918. package/src/icons/components/SignalCellularConnectedNoInternet4BarIcon.tsx +0 -8
  3919. package/src/icons/components/SignalCellularNoSimIcon.tsx +0 -8
  3920. package/src/icons/components/SignalCellularNodataIcon.tsx +0 -8
  3921. package/src/icons/components/SignalCellularNullIcon.tsx +0 -8
  3922. package/src/icons/components/SignalCellularOffIcon.tsx +0 -8
  3923. package/src/icons/components/SignalWifi0BarIcon.tsx +0 -8
  3924. package/src/icons/components/SignalWifi4BarIcon.tsx +0 -8
  3925. package/src/icons/components/SignalWifi4BarLockIcon.tsx +0 -8
  3926. package/src/icons/components/SignalWifiBadIcon.tsx +0 -8
  3927. package/src/icons/components/SignalWifiConnectedNoInternet4Icon.tsx +0 -8
  3928. package/src/icons/components/SignalWifiOffIcon.tsx +0 -8
  3929. package/src/icons/components/SignalWifiStatusbar4BarIcon.tsx +0 -8
  3930. package/src/icons/components/SignalWifiStatusbarConnectedNoInternet4Icon.tsx +0 -8
  3931. package/src/icons/components/SignalWifiStatusbarNullIcon.tsx +0 -8
  3932. package/src/icons/components/SignpostIcon.tsx +0 -8
  3933. package/src/icons/components/SimCardAlertIcon.tsx +0 -8
  3934. package/src/icons/components/SimCardDownloadIcon.tsx +0 -8
  3935. package/src/icons/components/SimCardIcon.tsx +0 -8
  3936. package/src/icons/components/SingleBedIcon.tsx +0 -8
  3937. package/src/icons/components/SipIcon.tsx +0 -8
  3938. package/src/icons/components/SkateboardingIcon.tsx +0 -8
  3939. package/src/icons/components/SkipNextIcon.tsx +0 -8
  3940. package/src/icons/components/SkipPreviousIcon.tsx +0 -8
  3941. package/src/icons/components/SleddingIcon.tsx +0 -8
  3942. package/src/icons/components/SlideshowIcon.tsx +0 -8
  3943. package/src/icons/components/SlowMotionVideoIcon.tsx +0 -8
  3944. package/src/icons/components/SmartButtonIcon.tsx +0 -8
  3945. package/src/icons/components/SmartDisplayIcon.tsx +0 -8
  3946. package/src/icons/components/SmartScreenIcon.tsx +0 -8
  3947. package/src/icons/components/SmartToyIcon.tsx +0 -8
  3948. package/src/icons/components/SmartphoneIcon.tsx +0 -8
  3949. package/src/icons/components/SmokeFreeIcon.tsx +0 -8
  3950. package/src/icons/components/SmokingRoomsIcon.tsx +0 -8
  3951. package/src/icons/components/SmsFailedIcon.tsx +0 -8
  3952. package/src/icons/components/SmsIcon.tsx +0 -8
  3953. package/src/icons/components/SnippetFolderIcon.tsx +0 -8
  3954. package/src/icons/components/SnoozeIcon.tsx +0 -8
  3955. package/src/icons/components/SnowboardingIcon.tsx +0 -8
  3956. package/src/icons/components/SnowmobileIcon.tsx +0 -8
  3957. package/src/icons/components/SnowshoeingIcon.tsx +0 -8
  3958. package/src/icons/components/SoapIcon.tsx +0 -8
  3959. package/src/icons/components/SocialDistanceIcon.tsx +0 -8
  3960. package/src/icons/components/SolarPowerIcon.tsx +0 -8
  3961. package/src/icons/components/SortByAlphaIcon.tsx +0 -8
  3962. package/src/icons/components/SortIcon.tsx +0 -8
  3963. package/src/icons/components/SosIcon.tsx +0 -8
  3964. package/src/icons/components/SoupKitchenIcon.tsx +0 -8
  3965. package/src/icons/components/SourceIcon.tsx +0 -8
  3966. package/src/icons/components/SouthAmericaIcon.tsx +0 -8
  3967. package/src/icons/components/SouthEastIcon.tsx +0 -8
  3968. package/src/icons/components/SouthIcon.tsx +0 -8
  3969. package/src/icons/components/SouthWestIcon.tsx +0 -8
  3970. package/src/icons/components/SpaIcon.tsx +0 -8
  3971. package/src/icons/components/SpaceBarIcon.tsx +0 -8
  3972. package/src/icons/components/SpaceDashboardIcon.tsx +0 -8
  3973. package/src/icons/components/SpatialAudioIcon.tsx +0 -8
  3974. package/src/icons/components/SpatialAudioOffIcon.tsx +0 -8
  3975. package/src/icons/components/SpatialTrackingIcon.tsx +0 -8
  3976. package/src/icons/components/SpeakerGroupIcon.tsx +0 -8
  3977. package/src/icons/components/SpeakerIcon.tsx +0 -8
  3978. package/src/icons/components/SpeakerNotesIcon.tsx +0 -8
  3979. package/src/icons/components/SpeakerNotesOffIcon.tsx +0 -8
  3980. package/src/icons/components/SpeakerPhoneIcon.tsx +0 -8
  3981. package/src/icons/components/SpeedIcon.tsx +0 -8
  3982. package/src/icons/components/SpellcheckIcon.tsx +0 -8
  3983. package/src/icons/components/SplitscreenIcon.tsx +0 -8
  3984. package/src/icons/components/SpokeIcon.tsx +0 -8
  3985. package/src/icons/components/SportsBarIcon.tsx +0 -8
  3986. package/src/icons/components/SportsBaseballIcon.tsx +0 -8
  3987. package/src/icons/components/SportsBasketballIcon.tsx +0 -8
  3988. package/src/icons/components/SportsCricketIcon.tsx +0 -8
  3989. package/src/icons/components/SportsEsportsIcon.tsx +0 -8
  3990. package/src/icons/components/SportsFootballIcon.tsx +0 -8
  3991. package/src/icons/components/SportsGolfIcon.tsx +0 -8
  3992. package/src/icons/components/SportsGymnasticsIcon.tsx +0 -8
  3993. package/src/icons/components/SportsHandballIcon.tsx +0 -8
  3994. package/src/icons/components/SportsHockeyIcon.tsx +0 -8
  3995. package/src/icons/components/SportsIcon.tsx +0 -8
  3996. package/src/icons/components/SportsKabaddiIcon.tsx +0 -8
  3997. package/src/icons/components/SportsMartialArtsIcon.tsx +0 -8
  3998. package/src/icons/components/SportsMmaIcon.tsx +0 -8
  3999. package/src/icons/components/SportsMotorsportsIcon.tsx +0 -8
  4000. package/src/icons/components/SportsRugbyIcon.tsx +0 -8
  4001. package/src/icons/components/SportsScoreIcon.tsx +0 -8
  4002. package/src/icons/components/SportsSoccerIcon.tsx +0 -8
  4003. package/src/icons/components/SportsTennisIcon.tsx +0 -8
  4004. package/src/icons/components/SportsVolleyballIcon.tsx +0 -8
  4005. package/src/icons/components/SquareFootIcon.tsx +0 -8
  4006. package/src/icons/components/SquareIcon.tsx +0 -8
  4007. package/src/icons/components/SsidChartIcon.tsx +0 -8
  4008. package/src/icons/components/StackedBarChartIcon.tsx +0 -8
  4009. package/src/icons/components/StackedLineChartIcon.tsx +0 -8
  4010. package/src/icons/components/StadiumIcon.tsx +0 -8
  4011. package/src/icons/components/StairsIcon.tsx +0 -8
  4012. package/src/icons/components/StarBorderIcon.tsx +0 -8
  4013. package/src/icons/components/StarBorderPurple500Icon.tsx +0 -8
  4014. package/src/icons/components/StarHalfIcon.tsx +0 -8
  4015. package/src/icons/components/StarIcon.tsx +0 -8
  4016. package/src/icons/components/StarOutlineIcon.tsx +0 -8
  4017. package/src/icons/components/StarPurple500Icon.tsx +0 -8
  4018. package/src/icons/components/StarRateIcon.tsx +0 -8
  4019. package/src/icons/components/StarsIcon.tsx +0 -8
  4020. package/src/icons/components/StartIcon.tsx +0 -8
  4021. package/src/icons/components/StayCurrentLandscapeIcon.tsx +0 -8
  4022. package/src/icons/components/StayCurrentPortraitIcon.tsx +0 -8
  4023. package/src/icons/components/StayPrimaryLandscapeIcon.tsx +0 -8
  4024. package/src/icons/components/StayPrimaryPortraitIcon.tsx +0 -8
  4025. package/src/icons/components/StickyNote2Icon.tsx +0 -8
  4026. package/src/icons/components/StopCircleIcon.tsx +0 -8
  4027. package/src/icons/components/StopIcon.tsx +0 -8
  4028. package/src/icons/components/StopScreenShareIcon.tsx +0 -8
  4029. package/src/icons/components/StorageIcon.tsx +0 -8
  4030. package/src/icons/components/StoreIcon.tsx +0 -8
  4031. package/src/icons/components/StoreMallDirectoryIcon.tsx +0 -8
  4032. package/src/icons/components/StorefrontIcon.tsx +0 -8
  4033. package/src/icons/components/StormIcon.tsx +0 -8
  4034. package/src/icons/components/StraightIcon.tsx +0 -8
  4035. package/src/icons/components/StraightenIcon.tsx +0 -8
  4036. package/src/icons/components/StreamIcon.tsx +0 -8
  4037. package/src/icons/components/StreetviewIcon.tsx +0 -8
  4038. package/src/icons/components/StrikethroughSIcon.tsx +0 -8
  4039. package/src/icons/components/StrollerIcon.tsx +0 -8
  4040. package/src/icons/components/StyleIcon.tsx +0 -8
  4041. package/src/icons/components/SubdirectoryArrowLeftIcon.tsx +0 -8
  4042. package/src/icons/components/SubdirectoryArrowRightIcon.tsx +0 -8
  4043. package/src/icons/components/SubjectIcon.tsx +0 -8
  4044. package/src/icons/components/SubscriptIcon.tsx +0 -8
  4045. package/src/icons/components/SubscriptionsIcon.tsx +0 -8
  4046. package/src/icons/components/SubtitlesIcon.tsx +0 -8
  4047. package/src/icons/components/SubtitlesOffIcon.tsx +0 -8
  4048. package/src/icons/components/SubwayIcon.tsx +0 -8
  4049. package/src/icons/components/SummarizeIcon.tsx +0 -8
  4050. package/src/icons/components/SuperscriptIcon.tsx +0 -8
  4051. package/src/icons/components/SupervisedUserCircleIcon.tsx +0 -8
  4052. package/src/icons/components/SupervisorAccountIcon.tsx +0 -8
  4053. package/src/icons/components/SupportAgentIcon.tsx +0 -8
  4054. package/src/icons/components/SupportIcon.tsx +0 -8
  4055. package/src/icons/components/SurfingIcon.tsx +0 -8
  4056. package/src/icons/components/SurroundSoundIcon.tsx +0 -8
  4057. package/src/icons/components/SwapCallsIcon.tsx +0 -8
  4058. package/src/icons/components/SwapHorizIcon.tsx +0 -8
  4059. package/src/icons/components/SwapHorizontalCircleIcon.tsx +0 -8
  4060. package/src/icons/components/SwapVertIcon.tsx +0 -8
  4061. package/src/icons/components/SwapVerticalCircleIcon.tsx +0 -8
  4062. package/src/icons/components/SwipeDownAltIcon.tsx +0 -8
  4063. package/src/icons/components/SwipeDownIcon.tsx +0 -8
  4064. package/src/icons/components/SwipeIcon.tsx +0 -8
  4065. package/src/icons/components/SwipeLeftAltIcon.tsx +0 -8
  4066. package/src/icons/components/SwipeLeftIcon.tsx +0 -8
  4067. package/src/icons/components/SwipeRightAltIcon.tsx +0 -8
  4068. package/src/icons/components/SwipeRightIcon.tsx +0 -8
  4069. package/src/icons/components/SwipeUpAltIcon.tsx +0 -8
  4070. package/src/icons/components/SwipeUpIcon.tsx +0 -8
  4071. package/src/icons/components/SwipeVerticalIcon.tsx +0 -8
  4072. package/src/icons/components/SwitchAccessShortcutAddIcon.tsx +0 -8
  4073. package/src/icons/components/SwitchAccessShortcutIcon.tsx +0 -8
  4074. package/src/icons/components/SwitchAccountIcon.tsx +0 -8
  4075. package/src/icons/components/SwitchCameraIcon.tsx +0 -8
  4076. package/src/icons/components/SwitchLeftIcon.tsx +0 -8
  4077. package/src/icons/components/SwitchRightIcon.tsx +0 -8
  4078. package/src/icons/components/SwitchVideoIcon.tsx +0 -8
  4079. package/src/icons/components/SynagogueIcon.tsx +0 -8
  4080. package/src/icons/components/SyncAltIcon.tsx +0 -8
  4081. package/src/icons/components/SyncDisabledIcon.tsx +0 -8
  4082. package/src/icons/components/SyncIcon.tsx +0 -8
  4083. package/src/icons/components/SyncLockIcon.tsx +0 -8
  4084. package/src/icons/components/SyncProblemIcon.tsx +0 -8
  4085. package/src/icons/components/SystemSecurityUpdateGoodIcon.tsx +0 -8
  4086. package/src/icons/components/SystemSecurityUpdateIcon.tsx +0 -8
  4087. package/src/icons/components/SystemSecurityUpdateWarningIcon.tsx +0 -8
  4088. package/src/icons/components/SystemUpdateAltIcon.tsx +0 -8
  4089. package/src/icons/components/SystemUpdateIcon.tsx +0 -8
  4090. package/src/icons/components/TabIcon.tsx +0 -8
  4091. package/src/icons/components/TabUnselectedIcon.tsx +0 -8
  4092. package/src/icons/components/TableBarIcon.tsx +0 -8
  4093. package/src/icons/components/TableChartIcon.tsx +0 -8
  4094. package/src/icons/components/TableRestaurantIcon.tsx +0 -8
  4095. package/src/icons/components/TableRowsIcon.tsx +0 -8
  4096. package/src/icons/components/TableViewIcon.tsx +0 -8
  4097. package/src/icons/components/TabletAndroidIcon.tsx +0 -8
  4098. package/src/icons/components/TabletIcon.tsx +0 -8
  4099. package/src/icons/components/TabletMacIcon.tsx +0 -8
  4100. package/src/icons/components/TagFacesIcon.tsx +0 -8
  4101. package/src/icons/components/TagIcon.tsx +0 -8
  4102. package/src/icons/components/TakeoutDiningIcon.tsx +0 -8
  4103. package/src/icons/components/TapAndPlayIcon.tsx +0 -8
  4104. package/src/icons/components/TapasIcon.tsx +0 -8
  4105. package/src/icons/components/TaskAltIcon.tsx +0 -8
  4106. package/src/icons/components/TaskIcon.tsx +0 -8
  4107. package/src/icons/components/TaxiAlertIcon.tsx +0 -8
  4108. package/src/icons/components/TempleBuddhistIcon.tsx +0 -8
  4109. package/src/icons/components/TempleHinduIcon.tsx +0 -8
  4110. package/src/icons/components/TerminalIcon.tsx +0 -8
  4111. package/src/icons/components/TerrainIcon.tsx +0 -8
  4112. package/src/icons/components/TextDecreaseIcon.tsx +0 -8
  4113. package/src/icons/components/TextFieldsIcon.tsx +0 -8
  4114. package/src/icons/components/TextFormatIcon.tsx +0 -8
  4115. package/src/icons/components/TextIncreaseIcon.tsx +0 -8
  4116. package/src/icons/components/TextRotateUpIcon.tsx +0 -8
  4117. package/src/icons/components/TextRotateVerticalIcon.tsx +0 -8
  4118. package/src/icons/components/TextRotationAngledownIcon.tsx +0 -8
  4119. package/src/icons/components/TextRotationAngleupIcon.tsx +0 -8
  4120. package/src/icons/components/TextRotationDownIcon.tsx +0 -8
  4121. package/src/icons/components/TextRotationNoneIcon.tsx +0 -8
  4122. package/src/icons/components/TextSnippetIcon.tsx +0 -8
  4123. package/src/icons/components/TextsmsIcon.tsx +0 -8
  4124. package/src/icons/components/TextureIcon.tsx +0 -8
  4125. package/src/icons/components/TheaterComedyIcon.tsx +0 -8
  4126. package/src/icons/components/TheatersIcon.tsx +0 -8
  4127. package/src/icons/components/ThermostatAutoIcon.tsx +0 -8
  4128. package/src/icons/components/ThermostatIcon.tsx +0 -8
  4129. package/src/icons/components/ThumbDownAltIcon.tsx +0 -8
  4130. package/src/icons/components/ThumbDownIcon.tsx +0 -8
  4131. package/src/icons/components/ThumbDownOffAltIcon.tsx +0 -8
  4132. package/src/icons/components/ThumbUpAltIcon.tsx +0 -8
  4133. package/src/icons/components/ThumbUpIcon.tsx +0 -8
  4134. package/src/icons/components/ThumbUpOffAltIcon.tsx +0 -8
  4135. package/src/icons/components/ThumbsUpDownIcon.tsx +0 -8
  4136. package/src/icons/components/ThunderstormIcon.tsx +0 -8
  4137. package/src/icons/components/TimeToLeaveIcon.tsx +0 -8
  4138. package/src/icons/components/TimelapseIcon.tsx +0 -8
  4139. package/src/icons/components/TimelineIcon.tsx +0 -8
  4140. package/src/icons/components/Timer10Icon.tsx +0 -8
  4141. package/src/icons/components/Timer10SelectIcon.tsx +0 -8
  4142. package/src/icons/components/Timer3Icon.tsx +0 -8
  4143. package/src/icons/components/Timer3SelectIcon.tsx +0 -8
  4144. package/src/icons/components/TimerIcon.tsx +0 -8
  4145. package/src/icons/components/TimerOffIcon.tsx +0 -8
  4146. package/src/icons/components/TipsAndUpdatesIcon.tsx +0 -8
  4147. package/src/icons/components/TireRepairIcon.tsx +0 -8
  4148. package/src/icons/components/TitleIcon.tsx +0 -8
  4149. package/src/icons/components/TocIcon.tsx +0 -8
  4150. package/src/icons/components/TodayIcon.tsx +0 -8
  4151. package/src/icons/components/ToggleOffIcon.tsx +0 -8
  4152. package/src/icons/components/ToggleOnIcon.tsx +0 -8
  4153. package/src/icons/components/TokenIcon.tsx +0 -8
  4154. package/src/icons/components/TollIcon.tsx +0 -8
  4155. package/src/icons/components/TonalityIcon.tsx +0 -8
  4156. package/src/icons/components/TopicIcon.tsx +0 -8
  4157. package/src/icons/components/TornadoIcon.tsx +0 -8
  4158. package/src/icons/components/TouchAppIcon.tsx +0 -8
  4159. package/src/icons/components/TourIcon.tsx +0 -8
  4160. package/src/icons/components/ToysIcon.tsx +0 -8
  4161. package/src/icons/components/TrackChangesIcon.tsx +0 -8
  4162. package/src/icons/components/TrafficIcon.tsx +0 -8
  4163. package/src/icons/components/TrainIcon.tsx +0 -8
  4164. package/src/icons/components/TramIcon.tsx +0 -8
  4165. package/src/icons/components/TranscribeIcon.tsx +0 -8
  4166. package/src/icons/components/TransferWithinAStationIcon.tsx +0 -8
  4167. package/src/icons/components/TransformIcon.tsx +0 -8
  4168. package/src/icons/components/TransgenderIcon.tsx +0 -8
  4169. package/src/icons/components/TransitEnterexitIcon.tsx +0 -8
  4170. package/src/icons/components/TranslateIcon.tsx +0 -8
  4171. package/src/icons/components/TravelExploreIcon.tsx +0 -8
  4172. package/src/icons/components/TrendingDownIcon.tsx +0 -8
  4173. package/src/icons/components/TrendingFlatIcon.tsx +0 -8
  4174. package/src/icons/components/TrendingUpIcon.tsx +0 -8
  4175. package/src/icons/components/TripOriginIcon.tsx +0 -8
  4176. package/src/icons/components/TroubleshootIcon.tsx +0 -8
  4177. package/src/icons/components/TryIcon.tsx +0 -8
  4178. package/src/icons/components/TsunamiIcon.tsx +0 -8
  4179. package/src/icons/components/TtyIcon.tsx +0 -8
  4180. package/src/icons/components/TuneIcon.tsx +0 -8
  4181. package/src/icons/components/TungstenIcon.tsx +0 -8
  4182. package/src/icons/components/TurnLeftIcon.tsx +0 -8
  4183. package/src/icons/components/TurnRightIcon.tsx +0 -8
  4184. package/src/icons/components/TurnSharpLeftIcon.tsx +0 -8
  4185. package/src/icons/components/TurnSharpRightIcon.tsx +0 -8
  4186. package/src/icons/components/TurnSlightLeftIcon.tsx +0 -8
  4187. package/src/icons/components/TurnSlightRightIcon.tsx +0 -8
  4188. package/src/icons/components/TurnedInIcon.tsx +0 -8
  4189. package/src/icons/components/TurnedInNotIcon.tsx +0 -8
  4190. package/src/icons/components/TvIcon.tsx +0 -8
  4191. package/src/icons/components/TvOffIcon.tsx +0 -8
  4192. package/src/icons/components/TwoWheelerIcon.tsx +0 -8
  4193. package/src/icons/components/TypeSpecimenIcon.tsx +0 -8
  4194. package/src/icons/components/UTurnLeftIcon.tsx +0 -8
  4195. package/src/icons/components/UTurnRightIcon.tsx +0 -8
  4196. package/src/icons/components/UmbrellaIcon.tsx +0 -8
  4197. package/src/icons/components/UnarchiveIcon.tsx +0 -8
  4198. package/src/icons/components/UndoIcon.tsx +0 -8
  4199. package/src/icons/components/UnfoldLessDoubleIcon.tsx +0 -8
  4200. package/src/icons/components/UnfoldLessIcon.tsx +0 -8
  4201. package/src/icons/components/UnfoldMoreDoubleIcon.tsx +0 -8
  4202. package/src/icons/components/UnfoldMoreIcon.tsx +0 -8
  4203. package/src/icons/components/UnpublishedIcon.tsx +0 -8
  4204. package/src/icons/components/UnsubscribeIcon.tsx +0 -8
  4205. package/src/icons/components/UpcomingIcon.tsx +0 -8
  4206. package/src/icons/components/UpdateDisabledIcon.tsx +0 -8
  4207. package/src/icons/components/UpdateIcon.tsx +0 -8
  4208. package/src/icons/components/UpgradeIcon.tsx +0 -8
  4209. package/src/icons/components/UploadFileIcon.tsx +0 -8
  4210. package/src/icons/components/UploadIcon.tsx +0 -8
  4211. package/src/icons/components/UsbIcon.tsx +0 -8
  4212. package/src/icons/components/UsbOffIcon.tsx +0 -8
  4213. package/src/icons/components/VaccinesIcon.tsx +0 -8
  4214. package/src/icons/components/VapeFreeIcon.tsx +0 -8
  4215. package/src/icons/components/VapingRoomsIcon.tsx +0 -8
  4216. package/src/icons/components/VerifiedIcon.tsx +0 -8
  4217. package/src/icons/components/VerifiedUserIcon.tsx +0 -8
  4218. package/src/icons/components/VerticalAlignBottomIcon.tsx +0 -8
  4219. package/src/icons/components/VerticalAlignCenterIcon.tsx +0 -8
  4220. package/src/icons/components/VerticalAlignTopIcon.tsx +0 -8
  4221. package/src/icons/components/VerticalDistributeIcon.tsx +0 -8
  4222. package/src/icons/components/VerticalShadesClosedIcon.tsx +0 -8
  4223. package/src/icons/components/VerticalShadesIcon.tsx +0 -8
  4224. package/src/icons/components/VerticalSplitIcon.tsx +0 -8
  4225. package/src/icons/components/VibrationIcon.tsx +0 -8
  4226. package/src/icons/components/VideoCallIcon.tsx +0 -8
  4227. package/src/icons/components/VideoCameraBackIcon.tsx +0 -8
  4228. package/src/icons/components/VideoCameraFrontIcon.tsx +0 -8
  4229. package/src/icons/components/VideoChatIcon.tsx +0 -8
  4230. package/src/icons/components/VideoFileIcon.tsx +0 -8
  4231. package/src/icons/components/VideoLabelIcon.tsx +0 -8
  4232. package/src/icons/components/VideoLibraryIcon.tsx +0 -8
  4233. package/src/icons/components/VideoSettingsIcon.tsx +0 -8
  4234. package/src/icons/components/VideoStableIcon.tsx +0 -8
  4235. package/src/icons/components/VideocamIcon.tsx +0 -8
  4236. package/src/icons/components/VideocamOffIcon.tsx +0 -8
  4237. package/src/icons/components/VideogameAssetIcon.tsx +0 -8
  4238. package/src/icons/components/VideogameAssetOffIcon.tsx +0 -8
  4239. package/src/icons/components/ViewAgendaIcon.tsx +0 -8
  4240. package/src/icons/components/ViewArrayIcon.tsx +0 -8
  4241. package/src/icons/components/ViewCarouselIcon.tsx +0 -8
  4242. package/src/icons/components/ViewColumnIcon.tsx +0 -8
  4243. package/src/icons/components/ViewComfyAltIcon.tsx +0 -8
  4244. package/src/icons/components/ViewComfyIcon.tsx +0 -8
  4245. package/src/icons/components/ViewCompactAltIcon.tsx +0 -8
  4246. package/src/icons/components/ViewCompactIcon.tsx +0 -8
  4247. package/src/icons/components/ViewCozyIcon.tsx +0 -8
  4248. package/src/icons/components/ViewDayIcon.tsx +0 -8
  4249. package/src/icons/components/ViewHeadlineIcon.tsx +0 -8
  4250. package/src/icons/components/ViewInArIcon.tsx +0 -8
  4251. package/src/icons/components/ViewKanbanIcon.tsx +0 -8
  4252. package/src/icons/components/ViewListIcon.tsx +0 -8
  4253. package/src/icons/components/ViewModuleIcon.tsx +0 -8
  4254. package/src/icons/components/ViewQuiltIcon.tsx +0 -8
  4255. package/src/icons/components/ViewSidebarIcon.tsx +0 -8
  4256. package/src/icons/components/ViewStreamIcon.tsx +0 -8
  4257. package/src/icons/components/ViewTimelineIcon.tsx +0 -8
  4258. package/src/icons/components/ViewWeekIcon.tsx +0 -8
  4259. package/src/icons/components/VignetteIcon.tsx +0 -8
  4260. package/src/icons/components/VillaIcon.tsx +0 -8
  4261. package/src/icons/components/VisibilityIcon.tsx +0 -8
  4262. package/src/icons/components/VisibilityOffIcon.tsx +0 -8
  4263. package/src/icons/components/VoiceChatIcon.tsx +0 -8
  4264. package/src/icons/components/VoiceOverOffIcon.tsx +0 -8
  4265. package/src/icons/components/VoicemailIcon.tsx +0 -8
  4266. package/src/icons/components/VolcanoIcon.tsx +0 -8
  4267. package/src/icons/components/VolumeDownIcon.tsx +0 -8
  4268. package/src/icons/components/VolumeMuteIcon.tsx +0 -8
  4269. package/src/icons/components/VolumeOffIcon.tsx +0 -8
  4270. package/src/icons/components/VolumeUpIcon.tsx +0 -8
  4271. package/src/icons/components/VolunteerActivismIcon.tsx +0 -8
  4272. package/src/icons/components/VpnKeyIcon.tsx +0 -8
  4273. package/src/icons/components/VpnKeyOffIcon.tsx +0 -8
  4274. package/src/icons/components/VpnLockIcon.tsx +0 -8
  4275. package/src/icons/components/VrpanoIcon.tsx +0 -8
  4276. package/src/icons/components/WalletIcon.tsx +0 -8
  4277. package/src/icons/components/WallpaperIcon.tsx +0 -8
  4278. package/src/icons/components/WarehouseIcon.tsx +0 -8
  4279. package/src/icons/components/WarningAmberIcon.tsx +0 -8
  4280. package/src/icons/components/WarningIcon.tsx +0 -8
  4281. package/src/icons/components/WashIcon.tsx +0 -8
  4282. package/src/icons/components/WatchIcon.tsx +0 -8
  4283. package/src/icons/components/WatchLaterIcon.tsx +0 -8
  4284. package/src/icons/components/WatchOffIcon.tsx +0 -8
  4285. package/src/icons/components/WaterDamageIcon.tsx +0 -8
  4286. package/src/icons/components/WaterDropIcon.tsx +0 -8
  4287. package/src/icons/components/WaterIcon.tsx +0 -8
  4288. package/src/icons/components/WaterfallChartIcon.tsx +0 -8
  4289. package/src/icons/components/WavesIcon.tsx +0 -8
  4290. package/src/icons/components/WavingHandIcon.tsx +0 -8
  4291. package/src/icons/components/WbAutoIcon.tsx +0 -8
  4292. package/src/icons/components/WbCloudyIcon.tsx +0 -8
  4293. package/src/icons/components/WbIncandescentIcon.tsx +0 -8
  4294. package/src/icons/components/WbIridescentIcon.tsx +0 -8
  4295. package/src/icons/components/WbShadeIcon.tsx +0 -8
  4296. package/src/icons/components/WbSunnyIcon.tsx +0 -8
  4297. package/src/icons/components/WbTwilightIcon.tsx +0 -8
  4298. package/src/icons/components/WcIcon.tsx +0 -8
  4299. package/src/icons/components/WebAssetIcon.tsx +0 -8
  4300. package/src/icons/components/WebAssetOffIcon.tsx +0 -8
  4301. package/src/icons/components/WebIcon.tsx +0 -8
  4302. package/src/icons/components/WebStoriesIcon.tsx +0 -8
  4303. package/src/icons/components/WebhookIcon.tsx +0 -8
  4304. package/src/icons/components/WeekendIcon.tsx +0 -8
  4305. package/src/icons/components/WestIcon.tsx +0 -8
  4306. package/src/icons/components/WhatshotIcon.tsx +0 -8
  4307. package/src/icons/components/WheelchairPickupIcon.tsx +0 -8
  4308. package/src/icons/components/WhereToVoteIcon.tsx +0 -8
  4309. package/src/icons/components/WidgetsIcon.tsx +0 -8
  4310. package/src/icons/components/WidthFullIcon.tsx +0 -8
  4311. package/src/icons/components/WidthNormalIcon.tsx +0 -8
  4312. package/src/icons/components/WidthWideIcon.tsx +0 -8
  4313. package/src/icons/components/Wifi1BarIcon.tsx +0 -8
  4314. package/src/icons/components/Wifi2BarIcon.tsx +0 -8
  4315. package/src/icons/components/WifiCalling3Icon.tsx +0 -8
  4316. package/src/icons/components/WifiCallingIcon.tsx +0 -8
  4317. package/src/icons/components/WifiChannelIcon.tsx +0 -8
  4318. package/src/icons/components/WifiFindIcon.tsx +0 -8
  4319. package/src/icons/components/WifiIcon.tsx +0 -8
  4320. package/src/icons/components/WifiLockIcon.tsx +0 -8
  4321. package/src/icons/components/WifiOffIcon.tsx +0 -8
  4322. package/src/icons/components/WifiPasswordIcon.tsx +0 -8
  4323. package/src/icons/components/WifiProtectedSetupIcon.tsx +0 -8
  4324. package/src/icons/components/WifiTetheringErrorIcon.tsx +0 -8
  4325. package/src/icons/components/WifiTetheringIcon.tsx +0 -8
  4326. package/src/icons/components/WifiTetheringOffIcon.tsx +0 -8
  4327. package/src/icons/components/WindPowerIcon.tsx +0 -8
  4328. package/src/icons/components/WindowIcon.tsx +0 -8
  4329. package/src/icons/components/WineBarIcon.tsx +0 -8
  4330. package/src/icons/components/Woman2Icon.tsx +0 -8
  4331. package/src/icons/components/WomanIcon.tsx +0 -8
  4332. package/src/icons/components/WorkHistoryIcon.tsx +0 -8
  4333. package/src/icons/components/WorkIcon.tsx +0 -8
  4334. package/src/icons/components/WorkOffIcon.tsx +0 -8
  4335. package/src/icons/components/WorkOutlineIcon.tsx +0 -8
  4336. package/src/icons/components/WorkspacePremiumIcon.tsx +0 -8
  4337. package/src/icons/components/WorkspacesIcon.tsx +0 -8
  4338. package/src/icons/components/WrapTextIcon.tsx +0 -8
  4339. package/src/icons/components/WrongLocationIcon.tsx +0 -8
  4340. package/src/icons/components/WysiwygIcon.tsx +0 -8
  4341. package/src/icons/components/YardIcon.tsx +0 -8
  4342. package/src/icons/components/YoutubeSearchedForIcon.tsx +0 -8
  4343. package/src/icons/components/ZoomInIcon.tsx +0 -8
  4344. package/src/icons/components/ZoomInMapIcon.tsx +0 -8
  4345. package/src/icons/components/ZoomOutIcon.tsx +0 -8
  4346. package/src/icons/components/ZoomOutMapIcon.tsx +0 -8
  4347. package/src/icons/components/_10kIcon.tsx +0 -8
  4348. package/src/icons/components/_10mpIcon.tsx +0 -8
  4349. package/src/icons/components/_11mpIcon.tsx +0 -8
  4350. package/src/icons/components/_123Icon.tsx +0 -8
  4351. package/src/icons/components/_12mpIcon.tsx +0 -8
  4352. package/src/icons/components/_13mpIcon.tsx +0 -8
  4353. package/src/icons/components/_14mpIcon.tsx +0 -8
  4354. package/src/icons/components/_15mpIcon.tsx +0 -8
  4355. package/src/icons/components/_16mpIcon.tsx +0 -8
  4356. package/src/icons/components/_17mpIcon.tsx +0 -8
  4357. package/src/icons/components/_18UpRatingIcon.tsx +0 -8
  4358. package/src/icons/components/_18mpIcon.tsx +0 -8
  4359. package/src/icons/components/_19mpIcon.tsx +0 -8
  4360. package/src/icons/components/_1kIcon.tsx +0 -8
  4361. package/src/icons/components/_1kPlusIcon.tsx +0 -8
  4362. package/src/icons/components/_1xMobiledataIcon.tsx +0 -8
  4363. package/src/icons/components/_20mpIcon.tsx +0 -8
  4364. package/src/icons/components/_21mpIcon.tsx +0 -8
  4365. package/src/icons/components/_22mpIcon.tsx +0 -8
  4366. package/src/icons/components/_23mpIcon.tsx +0 -8
  4367. package/src/icons/components/_24mpIcon.tsx +0 -8
  4368. package/src/icons/components/_2kIcon.tsx +0 -8
  4369. package/src/icons/components/_2kPlusIcon.tsx +0 -8
  4370. package/src/icons/components/_2mpIcon.tsx +0 -8
  4371. package/src/icons/components/_30fpsIcon.tsx +0 -8
  4372. package/src/icons/components/_30fpsSelectIcon.tsx +0 -8
  4373. package/src/icons/components/_360Icon.tsx +0 -8
  4374. package/src/icons/components/_3dRotationIcon.tsx +0 -8
  4375. package/src/icons/components/_3gMobiledataIcon.tsx +0 -8
  4376. package/src/icons/components/_3kIcon.tsx +0 -8
  4377. package/src/icons/components/_3kPlusIcon.tsx +0 -8
  4378. package/src/icons/components/_3mpIcon.tsx +0 -8
  4379. package/src/icons/components/_3pIcon.tsx +0 -8
  4380. package/src/icons/components/_4gMobiledataIcon.tsx +0 -8
  4381. package/src/icons/components/_4gPlusMobiledataIcon.tsx +0 -8
  4382. package/src/icons/components/_4kIcon.tsx +0 -8
  4383. package/src/icons/components/_4kPlusIcon.tsx +0 -8
  4384. package/src/icons/components/_4mpIcon.tsx +0 -8
  4385. package/src/icons/components/_5gIcon.tsx +0 -8
  4386. package/src/icons/components/_5kIcon.tsx +0 -8
  4387. package/src/icons/components/_5kPlusIcon.tsx +0 -8
  4388. package/src/icons/components/_5mpIcon.tsx +0 -8
  4389. package/src/icons/components/_60fpsIcon.tsx +0 -8
  4390. package/src/icons/components/_60fpsSelectIcon.tsx +0 -8
  4391. package/src/icons/components/_6FtApartIcon.tsx +0 -8
  4392. package/src/icons/components/_6kIcon.tsx +0 -8
  4393. package/src/icons/components/_6kPlusIcon.tsx +0 -8
  4394. package/src/icons/components/_6mpIcon.tsx +0 -8
  4395. package/src/icons/components/_7kIcon.tsx +0 -8
  4396. package/src/icons/components/_7kPlusIcon.tsx +0 -8
  4397. package/src/icons/components/_7mpIcon.tsx +0 -8
  4398. package/src/icons/components/_8kIcon.tsx +0 -8
  4399. package/src/icons/components/_8kPlusIcon.tsx +0 -8
  4400. package/src/icons/components/_8mpIcon.tsx +0 -8
  4401. package/src/icons/components/_9kIcon.tsx +0 -8
  4402. package/src/icons/components/_9kPlusIcon.tsx +0 -8
  4403. package/src/icons/components/_9mpIcon.tsx +0 -8
  4404. package/src/icons/generateIcons.ts +0 -41
  4405. package/src/icons/icon_keys.ts +0 -2139
  4406. package/src/icons/index.ts +0 -2125
  4407. package/src/styles.ts +0 -12
  4408. package/src/types/colors.ts +0 -55
  4409. package/src/ui/Alert.tsx +0 -53
  4410. package/src/ui/Autocomplete.tsx +0 -87
  4411. package/src/ui/Avatar.tsx +0 -37
  4412. package/src/ui/Badge.tsx +0 -40
  4413. package/src/ui/BooleanSwitch.tsx +0 -78
  4414. package/src/ui/BooleanSwitchWithLabel.tsx +0 -100
  4415. package/src/ui/Button.tsx +0 -74
  4416. package/src/ui/Card.tsx +0 -35
  4417. package/src/ui/CenteredView.tsx +0 -24
  4418. package/src/ui/Checkbox.tsx +0 -74
  4419. package/src/ui/Chip.tsx +0 -57
  4420. package/src/ui/CircularProgress.tsx +0 -48
  4421. package/src/ui/Collapse.tsx +0 -63
  4422. package/src/ui/Container.tsx +0 -50
  4423. package/src/ui/DateTimeField.tsx +0 -980
  4424. package/src/ui/DebouncedTextField.tsx +0 -31
  4425. package/src/ui/Dialog.tsx +0 -108
  4426. package/src/ui/DialogActions.tsx +0 -27
  4427. package/src/ui/DialogContent.tsx +0 -23
  4428. package/src/ui/ExpandablePanel.tsx +0 -115
  4429. package/src/ui/FileUpload.tsx +0 -100
  4430. package/src/ui/IconButton.tsx +0 -69
  4431. package/src/ui/InfoLabel.tsx +0 -23
  4432. package/src/ui/InputLabel.tsx +0 -37
  4433. package/src/ui/LoadingButton.tsx +0 -32
  4434. package/src/ui/Markdown.tsx +0 -29
  4435. package/src/ui/Menu.tsx +0 -58
  4436. package/src/ui/MultiSelect.tsx +0 -226
  4437. package/src/ui/Paper.tsx +0 -21
  4438. package/src/ui/Popover.tsx +0 -141
  4439. package/src/ui/SearchBar.tsx +0 -85
  4440. package/src/ui/Select.tsx +0 -261
  4441. package/src/ui/Sheet.tsx +0 -80
  4442. package/src/ui/Skeleton.tsx +0 -24
  4443. package/src/ui/Spinner.tsx +0 -16
  4444. package/src/ui/Table.tsx +0 -143
  4445. package/src/ui/Tabs.tsx +0 -60
  4446. package/src/ui/TextField.tsx +0 -166
  4447. package/src/ui/TextareaAutosize.tsx +0 -369
  4448. package/src/ui/Tooltip.tsx +0 -124
  4449. package/src/ui/Typography.tsx +0 -104
  4450. package/src/ui/common/SelectInputLabel.tsx +0 -8
  4451. package/src/ui/index.tsx +0 -43
  4452. package/src/ui/util/cn.ts +0 -6
  4453. package/src/ui/util/index.ts +0 -3
  4454. package/src/ui/util/useInjectStyles.tsx +0 -21
  4455. package/src/ui/util/useOutsideAlerter.tsx +0 -44
  4456. package/src/util/debounce.ts +0 -28
package/dist/index.umd.js CHANGED
@@ -1,128 +1,8 @@
1
- (function(o,n){typeof exports=="object"&&typeof module<"u"?n(exports,require("react/jsx-runtime"),require("react"),require("@radix-ui/react-collapsible"),require("clsx"),require("tailwind-merge"),require("@radix-ui/react-checkbox"),require("@material-design-icons/font/filled.css"),require("react-datepicker"),require("notistack"),require("object-hash"),require("formik"),require("@radix-ui/react-tooltip"),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("@radix-ui/react-popover"),require("date-fns/format"),require("date-fns/locale"),require("react-router-dom"),require("@hello-pangea/dnd"),require("react-image-file-resizer"),require("react-window"),require("react-use-measure"),require("react-markdown-editor-lite"),require("yup"),require("js-search"),require("@radix-ui/react-portal")):typeof define=="function"&&define.amd?define(["exports","react/jsx-runtime","react","@radix-ui/react-collapsible","clsx","tailwind-merge","@radix-ui/react-checkbox","@material-design-icons/font/filled.css","react-datepicker","notistack","object-hash","formik","@radix-ui/react-tooltip","@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","@radix-ui/react-popover","date-fns/format","date-fns/locale","react-router-dom","@hello-pangea/dnd","react-image-file-resizer","react-window","react-use-measure","react-markdown-editor-lite","yup","js-search","@radix-ui/react-portal"],n):(o=typeof globalThis<"u"?globalThis:o||self,n(o["FireCMS core"]={},o.jsxRuntime,o.React,o.Collapsible,o.clsx,o.tailwindMerge,o.CheckboxPrimitive,null,o.DatePicker,o.notistack,o.hash,o.formik,o.TooltipPrimitive,o.DialogPrimitive,o.reactDropzone,o.equal,o.MarkdownIt,o.DropdownMenu,o.cmdk,o.SelectPrimitive,o.ReactDOM,o.TabsPrimitive,o.PopoverPrimitive,o.format,o.locales,o.reactRouterDom,o.dnd,o.Resizer,o.reactWindow,o.useMeasure,o.MdEditor,o.yup,o.JsSearch,o.Portal))})(this,function(o,n,f,Qa,Va,Wa,Ga,BU,cr,Jt,Zt,Pe,za,Ha,ir,se,Xt,Ua,po,Ya,ja,$a,qa,Ja,Za,pe,Pn,Xa,xa,ar,mn,Ra,el,nl){"use strict";function De(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 le=De(f),qn=De(Qa),xt=De(Ga),Jn=De(za),Je=De(Ha),Zn=De(Ua),Ze=De(Ya),ol=De(ja),lr=De($a),Xn=De(qa),Rt=De(Za),Ne=De(Ra),rl=De(el),tl=De(nl),Ie="focus-visible: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",sr="focus:bg-opacity-70 focus:bg-gray-100 focus:dark:bg-gray-800 focus:dark:bg-opacity-60",dr="z-30 outline-none ring-2 ring-primary ring-opacity-75 ring-offset-2 ring-offset-transparent ",Xe="bg-opacity-70 bg-gray-100 dark:bg-gray-800 dark:bg-opacity-60 transition duration-150 ease-in-out",ur="bg-opacity-0 bg-gray-100 dark:bg-gray-800 dark:bg-opacity-0 transition duration-150 ease-in-out",nn="bg-opacity-100 dark:bg-opacity-90",Ye="hover:bg-opacity-90 dark:hover:bg-opacity-90",fe="border-gray-100 dark:border-gray-800 dark:border-opacity-80",je="bg-white rounded-md dark:bg-gray-950 border dark:border-gray-800 dark:border-opacity-90 border-gray-100",ec="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",nc="hover:bg-blue-100 dark:hover:bg-blue-900 hover:bg-opacity-20 dark:hover:bg-opacity-20 hover:ring-2 cursor-pointer",cl="bg-blue-100 dark:bg-blue-900 bg-opacity-30 dark:bg-opacity-10 ring-1 ring-primary ring-opacity-75";function vn(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])}function F(...e){return Wa.twMerge(Va.clsx(e))}function wo({children:e,className:t,in:c=!1,duration:i=220}){return vn(`Collapse-${i}`,`
2
- .CollapseContent-${i} {
3
- overflow: hidden;
4
- }
5
- .CollapseContent-${i}[data-state='open'] {
6
- animation: slideDown ${i}ms ease-out;
7
- }
8
- .CollapseContent-${i}[data-state='closed'] {
9
- animation: slideUp ${i}ms ease-in;
10
- }
11
-
12
- @keyframes slideDown {
13
- from {
14
- height: 0;
15
- }
16
- to {
17
- height: var(--radix-collapsible-content-height);
18
- }
19
- }
20
-
21
- @keyframes slideUp {
22
- from {
23
- height: var(--radix-collapsible-content-height);
24
- }
25
- to {
26
- height: 0;
27
- }
28
- }
29
- `),n.jsx(qn.Root,{open:c,className:t,children:n.jsx(qn.Content,{className:F(`CollapseContent-${i}`),children:e})})}function ko(e,t,c=!0){f.useEffect(()=>{if(!c)return;function i(a){oc(a.target)||e.current&&!e.current.contains(a.target)&&t()}return document.addEventListener("mousedown",i),()=>{document.removeEventListener("mousedown",i)}},[e,c,t])}function oc(e){return e instanceof HTMLElement?e.getAttribute("role")==="presentation"?!0:oc(e.parentNode):!1}const il=({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 al({children:e,open:t,setOpen:c}){const i=f.useRef(null);return ko(i,()=>c(!1)),n.jsx(wo,{in:t,duration:50,className:F("absolute top-full left-0 right-0 overflow-visible",t?"shadow":"","my-2","z-20","w-full"),children:n.jsx("div",{ref:i,className:F(t?je:"","bg-gray-50 dark:bg-gray-900 py-2"),children:e})})}function ll({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 sl=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"}},dl=({children:e,onDismiss:t,color:c="info",action:i,className:a,style:l})=>{const s=sl(c);return n.jsxs("div",{style:l,className:F("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]})},ul=({src:e,alt:t,children:c,className:i,...a},l)=>n.jsx("button",{ref:l,...a,className:F("rounded-full flex items-center justify-center overflow-hidden",Ie,"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})}),fr=f.forwardRef(ul),Ar=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?A=>A.preventDefault():A=>{A.preventDefault(),c?t==null?a?.(!0):a?.(t?!1:null):a?.(!t)},className:F(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:F("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:F("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"})})]})}),Dn=function({value:t,position:c="end",invisible:i,onValueChange:a,error:l,label:s,autoFocus:d,disabled:u,size:A,...g}){const h=f.useRef(null),_=f.useRef(null),[y,I]=f.useState(d),b=()=>I(!0),p=()=>I(!1);f.useEffect(()=>{},[]);const w=document.activeElement===_?.current||document.activeElement===h?.current;return n.jsxs("div",{ref:h,onFocus:b,onBlur:p,tabIndex:-1,className:F(!i&&Xe,!i&&(u?nn:Ye),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?dr:"",l?"text-red-500 dark:text-red-600":w&&!u?"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=>{g.allowIndeterminate?t==null?a?.(!0):a?.(t?!1:null):a?.(!t)},children:[n.jsx(Ar,{value:t,ref:_,size:A,className:i&&w?dr:"",disabled:u,...g}),n.jsx("div",{className:F("flex-grow",c==="end"?"mr-4":"ml-4",A==="small"?"text-sm":"text-base"),children:s})]})};function ie({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",g=F({"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=F({"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:F(Ie,l?"pl-3":"",A,g,h,t),...u,children:[l,e]}):n.jsxs("button",{type:u.type??"button",onClick:u.onClick,className:F(Ie,l?"pl-3":"",A,g,h,t),disabled:i,...u,children:[l,e]})}function rc({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:F(ec,c&&Ie,c&&nc,i),style:t,children:e})}const fl={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"},Al=({children:e,className:t,style:c,maxWidth:i="7xl"},a)=>{const l=i?fl[i]:"";return n.jsx("div",{ref:a,className:F("mx-auto px-3 md:px-4 lg-px-6",l,t),style:c,children:e})},yr=f.forwardRef(Al);function gr({children:e,maxWidth:t,fullScreen:c=!1,className:i}){return n.jsx("div",{className:"flex flex-col flex-grow h-full",children:n.jsx(yr,{className:F("m-auto",i),maxWidth:t,children:e})})}function Nn({size:e="medium",className:t}){let c="";e==="small"?c="w-4 h-4":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:F(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 _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"],tc=["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"],yl={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:F("material-icons",c?yl[c]:"","select-none",i),onClick:a,children:e})}function gl(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 hr(e){return n.jsx(r,{...e,iconKey:"search"})}function _l(e){return n.jsx(r,{...e,iconKey:"123"})}function hl(e){return n.jsx(r,{...e,iconKey:"360"})}function Il(e){return n.jsx(r,{...e,iconKey:"10k"})}function bl(e){return n.jsx(r,{...e,iconKey:"10mp"})}function pl(e){return n.jsx(r,{...e,iconKey:"11mp"})}function wl(e){return n.jsx(r,{...e,iconKey:"12mp"})}function kl(e){return n.jsx(r,{...e,iconKey:"13mp"})}function ml(e){return n.jsx(r,{...e,iconKey:"14mp"})}function vl(e){return n.jsx(r,{...e,iconKey:"15mp"})}function Cl(e){return n.jsx(r,{...e,iconKey:"16mp"})}function Kl(e){return n.jsx(r,{...e,iconKey:"17mp"})}function Sl(e){return n.jsx(r,{...e,iconKey:"18_up_rating"})}function Bl(e){return n.jsx(r,{...e,iconKey:"18mp"})}function El(e){return n.jsx(r,{...e,iconKey:"19mp"})}function Fl(e){return n.jsx(r,{...e,iconKey:"1k"})}function Pl(e){return n.jsx(r,{...e,iconKey:"1k_plus"})}function Dl(e){return n.jsx(r,{...e,iconKey:"1x_mobiledata"})}function Nl(e){return n.jsx(r,{...e,iconKey:"20mp"})}function Tl(e){return n.jsx(r,{...e,iconKey:"21mp"})}function Ml(e){return n.jsx(r,{...e,iconKey:"22mp"})}function Ol(e){return n.jsx(r,{...e,iconKey:"23mp"})}function Ll(e){return n.jsx(r,{...e,iconKey:"24mp"})}function Ql(e){return n.jsx(r,{...e,iconKey:"2k"})}function Vl(e){return n.jsx(r,{...e,iconKey:"2k_plus"})}function Wl(e){return n.jsx(r,{...e,iconKey:"2mp"})}function Gl(e){return n.jsx(r,{...e,iconKey:"30fps"})}function zl(e){return n.jsx(r,{...e,iconKey:"30fps_select"})}function Hl(e){return n.jsx(r,{...e,iconKey:"3d_rotation"})}function Ul(e){return n.jsx(r,{...e,iconKey:"3g_mobiledata"})}function Yl(e){return n.jsx(r,{...e,iconKey:"3k"})}function jl(e){return n.jsx(r,{...e,iconKey:"3k_plus"})}function $l(e){return n.jsx(r,{...e,iconKey:"3mp"})}function ql(e){return n.jsx(r,{...e,iconKey:"3p"})}function Jl(e){return n.jsx(r,{...e,iconKey:"4g_mobiledata"})}function Zl(e){return n.jsx(r,{...e,iconKey:"4g_plus_mobiledata"})}function Xl(e){return n.jsx(r,{...e,iconKey:"4k"})}function xl(e){return n.jsx(r,{...e,iconKey:"4k_plus"})}function Rl(e){return n.jsx(r,{...e,iconKey:"4mp"})}function es(e){return n.jsx(r,{...e,iconKey:"5g"})}function ns(e){return n.jsx(r,{...e,iconKey:"5k"})}function os(e){return n.jsx(r,{...e,iconKey:"5k_plus"})}function rs(e){return n.jsx(r,{...e,iconKey:"5mp"})}function ts(e){return n.jsx(r,{...e,iconKey:"60fps"})}function cs(e){return n.jsx(r,{...e,iconKey:"60fps_select"})}function is(e){return n.jsx(r,{...e,iconKey:"6_ft_apart"})}function as(e){return n.jsx(r,{...e,iconKey:"6k"})}function ls(e){return n.jsx(r,{...e,iconKey:"6k_plus"})}function ss(e){return n.jsx(r,{...e,iconKey:"6mp"})}function ds(e){return n.jsx(r,{...e,iconKey:"7k"})}function us(e){return n.jsx(r,{...e,iconKey:"7k_plus"})}function fs(e){return n.jsx(r,{...e,iconKey:"7mp"})}function As(e){return n.jsx(r,{...e,iconKey:"8k"})}function ys(e){return n.jsx(r,{...e,iconKey:"8k_plus"})}function gs(e){return n.jsx(r,{...e,iconKey:"8mp"})}function _s(e){return n.jsx(r,{...e,iconKey:"9k"})}function hs(e){return n.jsx(r,{...e,iconKey:"9k_plus"})}function Is(e){return n.jsx(r,{...e,iconKey:"9mp"})}function bs(e){return n.jsx(r,{...e,iconKey:"abc"})}function ps(e){return n.jsx(r,{...e,iconKey:"ac_unit"})}function ws(e){return n.jsx(r,{...e,iconKey:"access_alarm"})}function ks(e){return n.jsx(r,{...e,iconKey:"access_alarms"})}function ms(e){return n.jsx(r,{...e,iconKey:"access_time"})}function vs(e){return n.jsx(r,{...e,iconKey:"access_time_filled"})}function Cs(e){return n.jsx(r,{...e,iconKey:"accessibility"})}function Ks(e){return n.jsx(r,{...e,iconKey:"accessibility_new"})}function Ss(e){return n.jsx(r,{...e,iconKey:"accessible"})}function Bs(e){return n.jsx(r,{...e,iconKey:"accessible_forward"})}function Es(e){return n.jsx(r,{...e,iconKey:"account_balance"})}function Fs(e){return n.jsx(r,{...e,iconKey:"account_balance_wallet"})}function Ps(e){return n.jsx(r,{...e,iconKey:"account_box"})}function Ds(e){return n.jsx(r,{...e,iconKey:"account_circle"})}function Ns(e){return n.jsx(r,{...e,iconKey:"account_tree"})}function Ts(e){return n.jsx(r,{...e,iconKey:"ad_units"})}function Ms(e){return n.jsx(r,{...e,iconKey:"adb"})}function sn(e){return n.jsx(r,{...e,iconKey:"add"})}function Os(e){return n.jsx(r,{...e,iconKey:"add_a_photo"})}function Ls(e){return n.jsx(r,{...e,iconKey:"add_alarm"})}function Qs(e){return n.jsx(r,{...e,iconKey:"add_alert"})}function Vs(e){return n.jsx(r,{...e,iconKey:"add_box"})}function Ws(e){return n.jsx(r,{...e,iconKey:"add_business"})}function Gs(e){return n.jsx(r,{...e,iconKey:"add_card"})}function zs(e){return n.jsx(r,{...e,iconKey:"add_chart"})}function Hs(e){return n.jsx(r,{...e,iconKey:"add_circle"})}function Us(e){return n.jsx(r,{...e,iconKey:"add_circle_outline"})}function Ys(e){return n.jsx(r,{...e,iconKey:"add_comment"})}function js(e){return n.jsx(r,{...e,iconKey:"add_home"})}function $s(e){return n.jsx(r,{...e,iconKey:"add_home_work"})}function qs(e){return n.jsx(r,{...e,iconKey:"add_ic_call"})}function cc(e){return n.jsx(r,{...e,iconKey:"add_link"})}function Js(e){return n.jsx(r,{...e,iconKey:"add_location"})}function Zs(e){return n.jsx(r,{...e,iconKey:"add_location_alt"})}function Xs(e){return n.jsx(r,{...e,iconKey:"add_moderator"})}function xs(e){return n.jsx(r,{...e,iconKey:"add_photo_alternate"})}function Rs(e){return n.jsx(r,{...e,iconKey:"add_reaction"})}function ed(e){return n.jsx(r,{...e,iconKey:"add_road"})}function nd(e){return n.jsx(r,{...e,iconKey:"add_shopping_cart"})}function od(e){return n.jsx(r,{...e,iconKey:"add_task"})}function rd(e){return n.jsx(r,{...e,iconKey:"add_to_drive"})}function td(e){return n.jsx(r,{...e,iconKey:"add_to_home_screen"})}function cd(e){return n.jsx(r,{...e,iconKey:"add_to_photos"})}function id(e){return n.jsx(r,{...e,iconKey:"add_to_queue"})}function ad(e){return n.jsx(r,{...e,iconKey:"adf_scanner"})}function ld(e){return n.jsx(r,{...e,iconKey:"adjust"})}function sd(e){return n.jsx(r,{...e,iconKey:"admin_panel_settings"})}function dd(e){return n.jsx(r,{...e,iconKey:"ads_click"})}function ud(e){return n.jsx(r,{...e,iconKey:"agriculture"})}function fd(e){return n.jsx(r,{...e,iconKey:"air"})}function Ad(e){return n.jsx(r,{...e,iconKey:"airline_seat_flat"})}function yd(e){return n.jsx(r,{...e,iconKey:"airline_seat_flat_angled"})}function gd(e){return n.jsx(r,{...e,iconKey:"airline_seat_individual_suite"})}function _d(e){return n.jsx(r,{...e,iconKey:"airline_seat_legroom_extra"})}function hd(e){return n.jsx(r,{...e,iconKey:"airline_seat_legroom_normal"})}function Id(e){return n.jsx(r,{...e,iconKey:"airline_seat_legroom_reduced"})}function bd(e){return n.jsx(r,{...e,iconKey:"airline_seat_recline_extra"})}function pd(e){return n.jsx(r,{...e,iconKey:"airline_seat_recline_normal"})}function wd(e){return n.jsx(r,{...e,iconKey:"airline_stops"})}function kd(e){return n.jsx(r,{...e,iconKey:"airlines"})}function md(e){return n.jsx(r,{...e,iconKey:"airplane_ticket"})}function vd(e){return n.jsx(r,{...e,iconKey:"airplanemode_active"})}function Cd(e){return n.jsx(r,{...e,iconKey:"airplanemode_inactive"})}function Kd(e){return n.jsx(r,{...e,iconKey:"airplay"})}function Sd(e){return n.jsx(r,{...e,iconKey:"airport_shuttle"})}function Bd(e){return n.jsx(r,{...e,iconKey:"alarm"})}function Ed(e){return n.jsx(r,{...e,iconKey:"alarm_add"})}function Fd(e){return n.jsx(r,{...e,iconKey:"alarm_off"})}function Pd(e){return n.jsx(r,{...e,iconKey:"alarm_on"})}function Dd(e){return n.jsx(r,{...e,iconKey:"album"})}function Nd(e){return n.jsx(r,{...e,iconKey:"align_horizontal_center"})}function Td(e){return n.jsx(r,{...e,iconKey:"align_horizontal_left"})}function Md(e){return n.jsx(r,{...e,iconKey:"align_horizontal_right"})}function Od(e){return n.jsx(r,{...e,iconKey:"align_vertical_bottom"})}function Ld(e){return n.jsx(r,{...e,iconKey:"align_vertical_center"})}function Qd(e){return n.jsx(r,{...e,iconKey:"align_vertical_top"})}function Vd(e){return n.jsx(r,{...e,iconKey:"all_inbox"})}function Wd(e){return n.jsx(r,{...e,iconKey:"all_inclusive"})}function Gd(e){return n.jsx(r,{...e,iconKey:"all_out"})}function zd(e){return n.jsx(r,{...e,iconKey:"alt_route"})}function Hd(e){return n.jsx(r,{...e,iconKey:"alternate_email"})}function Ud(e){return n.jsx(r,{...e,iconKey:"analytics"})}function Yd(e){return n.jsx(r,{...e,iconKey:"anchor"})}function jd(e){return n.jsx(r,{...e,iconKey:"android"})}function $d(e){return n.jsx(r,{...e,iconKey:"animation"})}function qd(e){return n.jsx(r,{...e,iconKey:"announcement"})}function Jd(e){return n.jsx(r,{...e,iconKey:"aod"})}function Zd(e){return n.jsx(r,{...e,iconKey:"apartment"})}function Xd(e){return n.jsx(r,{...e,iconKey:"api"})}function xd(e){return n.jsx(r,{...e,iconKey:"app_blocking"})}function Rd(e){return n.jsx(r,{...e,iconKey:"app_registration"})}function eu(e){return n.jsx(r,{...e,iconKey:"app_settings_alt"})}function nu(e){return n.jsx(r,{...e,iconKey:"app_shortcut"})}function ou(e){return n.jsx(r,{...e,iconKey:"approval"})}function ru(e){return n.jsx(r,{...e,iconKey:"apps"})}function tu(e){return n.jsx(r,{...e,iconKey:"apps_outage"})}function cu(e){return n.jsx(r,{...e,iconKey:"architecture"})}function iu(e){return n.jsx(r,{...e,iconKey:"archive"})}function au(e){return n.jsx(r,{...e,iconKey:"area_chart"})}function lu(e){return n.jsx(r,{...e,iconKey:"arrow_back"})}function su(e){return n.jsx(r,{...e,iconKey:"arrow_back_ios"})}function du(e){return n.jsx(r,{...e,iconKey:"arrow_back_ios_new"})}function uu(e){return n.jsx(r,{...e,iconKey:"arrow_circle_down"})}function fu(e){return n.jsx(r,{...e,iconKey:"arrow_circle_left"})}function Au(e){return n.jsx(r,{...e,iconKey:"arrow_circle_right"})}function yu(e){return n.jsx(r,{...e,iconKey:"arrow_circle_up"})}function gu(e){return n.jsx(r,{...e,iconKey:"arrow_downward"})}function Ir(e){return n.jsx(r,{...e,iconKey:"arrow_drop_down"})}function _u(e){return n.jsx(r,{...e,iconKey:"arrow_drop_down_circle"})}function hu(e){return n.jsx(r,{...e,iconKey:"arrow_drop_up"})}function ic(e){return n.jsx(r,{...e,iconKey:"arrow_forward"})}function Iu(e){return n.jsx(r,{...e,iconKey:"arrow_forward_ios"})}function bu(e){return n.jsx(r,{...e,iconKey:"arrow_left"})}function pu(e){return n.jsx(r,{...e,iconKey:"arrow_outward"})}function wu(e){return n.jsx(r,{...e,iconKey:"arrow_right"})}function ku(e){return n.jsx(r,{...e,iconKey:"arrow_right_alt"})}function mo(e){return n.jsx(r,{...e,iconKey:"arrow_upward"})}function mu(e){return n.jsx(r,{...e,iconKey:"art_track"})}function vu(e){return n.jsx(r,{...e,iconKey:"article"})}function Cu(e){return n.jsx(r,{...e,iconKey:"aspect_ratio"})}function Ku(e){return n.jsx(r,{...e,iconKey:"assessment"})}function ac(e){return n.jsx(r,{...e,iconKey:"assignment"})}function Su(e){return n.jsx(r,{...e,iconKey:"assignment_ind"})}function Bu(e){return n.jsx(r,{...e,iconKey:"assignment_late"})}function Eu(e){return n.jsx(r,{...e,iconKey:"assignment_return"})}function Fu(e){return n.jsx(r,{...e,iconKey:"assignment_returned"})}function Pu(e){return n.jsx(r,{...e,iconKey:"assignment_turned_in"})}function Du(e){return n.jsx(r,{...e,iconKey:"assist_walker"})}function Nu(e){return n.jsx(r,{...e,iconKey:"assistant"})}function Tu(e){return n.jsx(r,{...e,iconKey:"assistant_direction"})}function Mu(e){return n.jsx(r,{...e,iconKey:"assistant_photo"})}function Ou(e){return n.jsx(r,{...e,iconKey:"assured_workload"})}function Lu(e){return n.jsx(r,{...e,iconKey:"atm"})}function Qu(e){return n.jsx(r,{...e,iconKey:"attach_email"})}function Vu(e){return n.jsx(r,{...e,iconKey:"attach_file"})}function Wu(e){return n.jsx(r,{...e,iconKey:"attach_money"})}function Gu(e){return n.jsx(r,{...e,iconKey:"attachment"})}function zu(e){return n.jsx(r,{...e,iconKey:"attractions"})}function Hu(e){return n.jsx(r,{...e,iconKey:"attribution"})}function Uu(e){return n.jsx(r,{...e,iconKey:"audio_file"})}function Yu(e){return n.jsx(r,{...e,iconKey:"audiotrack"})}function ju(e){return n.jsx(r,{...e,iconKey:"auto_awesome"})}function $u(e){return n.jsx(r,{...e,iconKey:"auto_awesome_mosaic"})}function qu(e){return n.jsx(r,{...e,iconKey:"auto_awesome_motion"})}function Ju(e){return n.jsx(r,{...e,iconKey:"auto_delete"})}function Zu(e){return n.jsx(r,{...e,iconKey:"auto_fix_high"})}function Xu(e){return n.jsx(r,{...e,iconKey:"auto_fix_normal"})}function xu(e){return n.jsx(r,{...e,iconKey:"auto_fix_off"})}function Ru(e){return n.jsx(r,{...e,iconKey:"auto_graph"})}function ef(e){return n.jsx(r,{...e,iconKey:"auto_mode"})}function nf(e){return n.jsx(r,{...e,iconKey:"auto_stories"})}function of(e){return n.jsx(r,{...e,iconKey:"autofps_select"})}function rf(e){return n.jsx(r,{...e,iconKey:"autorenew"})}function tf(e){return n.jsx(r,{...e,iconKey:"av_timer"})}function cf(e){return n.jsx(r,{...e,iconKey:"baby_changing_station"})}function af(e){return n.jsx(r,{...e,iconKey:"back_hand"})}function lf(e){return n.jsx(r,{...e,iconKey:"backpack"})}function sf(e){return n.jsx(r,{...e,iconKey:"backspace"})}function df(e){return n.jsx(r,{...e,iconKey:"backup"})}function uf(e){return n.jsx(r,{...e,iconKey:"backup_table"})}function ff(e){return n.jsx(r,{...e,iconKey:"badge"})}function Af(e){return n.jsx(r,{...e,iconKey:"bakery_dining"})}function yf(e){return n.jsx(r,{...e,iconKey:"balance"})}function gf(e){return n.jsx(r,{...e,iconKey:"balcony"})}function br(e){return n.jsx(r,{...e,iconKey:"ballot"})}function _f(e){return n.jsx(r,{...e,iconKey:"bar_chart"})}function hf(e){return n.jsx(r,{...e,iconKey:"batch_prediction"})}function If(e){return n.jsx(r,{...e,iconKey:"bathroom"})}function bf(e){return n.jsx(r,{...e,iconKey:"bathtub"})}function pf(e){return n.jsx(r,{...e,iconKey:"battery_0_bar"})}function wf(e){return n.jsx(r,{...e,iconKey:"battery_1_bar"})}function kf(e){return n.jsx(r,{...e,iconKey:"battery_2_bar"})}function mf(e){return n.jsx(r,{...e,iconKey:"battery_3_bar"})}function vf(e){return n.jsx(r,{...e,iconKey:"battery_4_bar"})}function Cf(e){return n.jsx(r,{...e,iconKey:"battery_5_bar"})}function Kf(e){return n.jsx(r,{...e,iconKey:"battery_6_bar"})}function Sf(e){return n.jsx(r,{...e,iconKey:"battery_alert"})}function Bf(e){return n.jsx(r,{...e,iconKey:"battery_charging_full"})}function Ef(e){return n.jsx(r,{...e,iconKey:"battery_full"})}function Ff(e){return n.jsx(r,{...e,iconKey:"battery_saver"})}function Pf(e){return n.jsx(r,{...e,iconKey:"battery_std"})}function Df(e){return n.jsx(r,{...e,iconKey:"battery_unknown"})}function Nf(e){return n.jsx(r,{...e,iconKey:"beach_access"})}function Tf(e){return n.jsx(r,{...e,iconKey:"bed"})}function Mf(e){return n.jsx(r,{...e,iconKey:"bedroom_baby"})}function Of(e){return n.jsx(r,{...e,iconKey:"bedroom_child"})}function Lf(e){return n.jsx(r,{...e,iconKey:"bedroom_parent"})}function Qf(e){return n.jsx(r,{...e,iconKey:"bedtime"})}function Vf(e){return n.jsx(r,{...e,iconKey:"bedtime_off"})}function Wf(e){return n.jsx(r,{...e,iconKey:"beenhere"})}function Gf(e){return n.jsx(r,{...e,iconKey:"bento"})}function zf(e){return n.jsx(r,{...e,iconKey:"bike_scooter"})}function Hf(e){return n.jsx(r,{...e,iconKey:"biotech"})}function Uf(e){return n.jsx(r,{...e,iconKey:"blender"})}function Yf(e){return n.jsx(r,{...e,iconKey:"blind"})}function jf(e){return n.jsx(r,{...e,iconKey:"blinds"})}function $f(e){return n.jsx(r,{...e,iconKey:"blinds_closed"})}function qf(e){return n.jsx(r,{...e,iconKey:"block"})}function Jf(e){return n.jsx(r,{...e,iconKey:"bloodtype"})}function Zf(e){return n.jsx(r,{...e,iconKey:"bluetooth"})}function Xf(e){return n.jsx(r,{...e,iconKey:"bluetooth_audio"})}function xf(e){return n.jsx(r,{...e,iconKey:"bluetooth_connected"})}function Rf(e){return n.jsx(r,{...e,iconKey:"bluetooth_disabled"})}function eA(e){return n.jsx(r,{...e,iconKey:"bluetooth_drive"})}function nA(e){return n.jsx(r,{...e,iconKey:"bluetooth_searching"})}function oA(e){return n.jsx(r,{...e,iconKey:"blur_circular"})}function rA(e){return n.jsx(r,{...e,iconKey:"blur_linear"})}function tA(e){return n.jsx(r,{...e,iconKey:"blur_off"})}function cA(e){return n.jsx(r,{...e,iconKey:"blur_on"})}function iA(e){return n.jsx(r,{...e,iconKey:"bolt"})}function aA(e){return n.jsx(r,{...e,iconKey:"book"})}function lA(e){return n.jsx(r,{...e,iconKey:"book_online"})}function sA(e){return n.jsx(r,{...e,iconKey:"bookmark"})}function dA(e){return n.jsx(r,{...e,iconKey:"bookmark_add"})}function uA(e){return n.jsx(r,{...e,iconKey:"bookmark_added"})}function fA(e){return n.jsx(r,{...e,iconKey:"bookmark_border"})}function AA(e){return n.jsx(r,{...e,iconKey:"bookmark_remove"})}function yA(e){return n.jsx(r,{...e,iconKey:"bookmarks"})}function gA(e){return n.jsx(r,{...e,iconKey:"border_all"})}function _A(e){return n.jsx(r,{...e,iconKey:"border_bottom"})}function hA(e){return n.jsx(r,{...e,iconKey:"border_clear"})}function IA(e){return n.jsx(r,{...e,iconKey:"border_color"})}function bA(e){return n.jsx(r,{...e,iconKey:"border_horizontal"})}function pA(e){return n.jsx(r,{...e,iconKey:"border_inner"})}function wA(e){return n.jsx(r,{...e,iconKey:"border_left"})}function kA(e){return n.jsx(r,{...e,iconKey:"border_outer"})}function mA(e){return n.jsx(r,{...e,iconKey:"border_right"})}function vA(e){return n.jsx(r,{...e,iconKey:"border_style"})}function CA(e){return n.jsx(r,{...e,iconKey:"border_top"})}function KA(e){return n.jsx(r,{...e,iconKey:"border_vertical"})}function SA(e){return n.jsx(r,{...e,iconKey:"boy"})}function BA(e){return n.jsx(r,{...e,iconKey:"branding_watermark"})}function EA(e){return n.jsx(r,{...e,iconKey:"breakfast_dining"})}function FA(e){return n.jsx(r,{...e,iconKey:"brightness_1"})}function PA(e){return n.jsx(r,{...e,iconKey:"brightness_2"})}function DA(e){return n.jsx(r,{...e,iconKey:"brightness_3"})}function NA(e){return n.jsx(r,{...e,iconKey:"brightness_4"})}function TA(e){return n.jsx(r,{...e,iconKey:"brightness_5"})}function MA(e){return n.jsx(r,{...e,iconKey:"brightness_6"})}function OA(e){return n.jsx(r,{...e,iconKey:"brightness_7"})}function LA(e){return n.jsx(r,{...e,iconKey:"brightness_auto"})}function QA(e){return n.jsx(r,{...e,iconKey:"brightness_high"})}function VA(e){return n.jsx(r,{...e,iconKey:"brightness_low"})}function WA(e){return n.jsx(r,{...e,iconKey:"brightness_medium"})}function GA(e){return n.jsx(r,{...e,iconKey:"broadcast_on_home"})}function zA(e){return n.jsx(r,{...e,iconKey:"broadcast_on_personal"})}function HA(e){return n.jsx(r,{...e,iconKey:"broken_image"})}function UA(e){return n.jsx(r,{...e,iconKey:"browse_gallery"})}function YA(e){return n.jsx(r,{...e,iconKey:"browser_not_supported"})}function jA(e){return n.jsx(r,{...e,iconKey:"browser_updated"})}function $A(e){return n.jsx(r,{...e,iconKey:"brunch_dining"})}function qA(e){return n.jsx(r,{...e,iconKey:"brush"})}function JA(e){return n.jsx(r,{...e,iconKey:"bubble_chart"})}function ZA(e){return n.jsx(r,{...e,iconKey:"bug_report"})}function XA(e){return n.jsx(r,{...e,iconKey:"build"})}function xA(e){return n.jsx(r,{...e,iconKey:"build_circle"})}function RA(e){return n.jsx(r,{...e,iconKey:"bungalow"})}function ey(e){return n.jsx(r,{...e,iconKey:"burst_mode"})}function ny(e){return n.jsx(r,{...e,iconKey:"bus_alert"})}function oy(e){return n.jsx(r,{...e,iconKey:"business"})}function ry(e){return n.jsx(r,{...e,iconKey:"business_center"})}function ty(e){return n.jsx(r,{...e,iconKey:"cabin"})}function cy(e){return n.jsx(r,{...e,iconKey:"cable"})}function iy(e){return n.jsx(r,{...e,iconKey:"cached"})}function ay(e){return n.jsx(r,{...e,iconKey:"cake"})}function ly(e){return n.jsx(r,{...e,iconKey:"calculate"})}function lc(e){return n.jsx(r,{...e,iconKey:"calendar_month"})}function sy(e){return n.jsx(r,{...e,iconKey:"calendar_today"})}function dy(e){return n.jsx(r,{...e,iconKey:"calendar_view_day"})}function uy(e){return n.jsx(r,{...e,iconKey:"calendar_view_month"})}function fy(e){return n.jsx(r,{...e,iconKey:"calendar_view_week"})}function Ay(e){return n.jsx(r,{...e,iconKey:"call"})}function yy(e){return n.jsx(r,{...e,iconKey:"call_end"})}function gy(e){return n.jsx(r,{...e,iconKey:"call_made"})}function _y(e){return n.jsx(r,{...e,iconKey:"call_merge"})}function hy(e){return n.jsx(r,{...e,iconKey:"call_missed"})}function Iy(e){return n.jsx(r,{...e,iconKey:"call_missed_outgoing"})}function by(e){return n.jsx(r,{...e,iconKey:"call_received"})}function py(e){return n.jsx(r,{...e,iconKey:"call_split"})}function wy(e){return n.jsx(r,{...e,iconKey:"call_to_action"})}function ky(e){return n.jsx(r,{...e,iconKey:"camera"})}function my(e){return n.jsx(r,{...e,iconKey:"camera_alt"})}function vy(e){return n.jsx(r,{...e,iconKey:"camera_enhance"})}function Cy(e){return n.jsx(r,{...e,iconKey:"camera_front"})}function Ky(e){return n.jsx(r,{...e,iconKey:"camera_indoor"})}function Sy(e){return n.jsx(r,{...e,iconKey:"camera_outdoor"})}function By(e){return n.jsx(r,{...e,iconKey:"camera_rear"})}function Ey(e){return n.jsx(r,{...e,iconKey:"camera_roll"})}function Fy(e){return n.jsx(r,{...e,iconKey:"cameraswitch"})}function Py(e){return n.jsx(r,{...e,iconKey:"campaign"})}function Dy(e){return n.jsx(r,{...e,iconKey:"cancel"})}function Ny(e){return n.jsx(r,{...e,iconKey:"cancel_presentation"})}function Ty(e){return n.jsx(r,{...e,iconKey:"cancel_schedule_send"})}function My(e){return n.jsx(r,{...e,iconKey:"candlestick_chart"})}function Oy(e){return n.jsx(r,{...e,iconKey:"car_crash"})}function Ly(e){return n.jsx(r,{...e,iconKey:"car_rental"})}function Qy(e){return n.jsx(r,{...e,iconKey:"car_repair"})}function Vy(e){return n.jsx(r,{...e,iconKey:"card_giftcard"})}function Wy(e){return n.jsx(r,{...e,iconKey:"card_membership"})}function Gy(e){return n.jsx(r,{...e,iconKey:"card_travel"})}function zy(e){return n.jsx(r,{...e,iconKey:"carpenter"})}function Hy(e){return n.jsx(r,{...e,iconKey:"cases"})}function Uy(e){return n.jsx(r,{...e,iconKey:"casino"})}function Yy(e){return n.jsx(r,{...e,iconKey:"cast"})}function jy(e){return n.jsx(r,{...e,iconKey:"cast_connected"})}function $y(e){return n.jsx(r,{...e,iconKey:"cast_for_education"})}function qy(e){return n.jsx(r,{...e,iconKey:"castle"})}function Jy(e){return n.jsx(r,{...e,iconKey:"catching_pokemon"})}function Zy(e){return n.jsx(r,{...e,iconKey:"category"})}function Xy(e){return n.jsx(r,{...e,iconKey:"celebration"})}function xy(e){return n.jsx(r,{...e,iconKey:"cell_tower"})}function Ry(e){return n.jsx(r,{...e,iconKey:"cell_wifi"})}function eg(e){return n.jsx(r,{...e,iconKey:"center_focus_strong"})}function ng(e){return n.jsx(r,{...e,iconKey:"center_focus_weak"})}function og(e){return n.jsx(r,{...e,iconKey:"chair"})}function rg(e){return n.jsx(r,{...e,iconKey:"chair_alt"})}function tg(e){return n.jsx(r,{...e,iconKey:"chalet"})}function cg(e){return n.jsx(r,{...e,iconKey:"change_circle"})}function ig(e){return n.jsx(r,{...e,iconKey:"change_history"})}function ag(e){return n.jsx(r,{...e,iconKey:"charging_station"})}function lg(e){return n.jsx(r,{...e,iconKey:"chat"})}function sg(e){return n.jsx(r,{...e,iconKey:"chat_bubble"})}function dg(e){return n.jsx(r,{...e,iconKey:"chat_bubble_outline"})}function sc(e){return n.jsx(r,{...e,iconKey:"check"})}function ug(e){return n.jsx(r,{...e,iconKey:"check_box"})}function fg(e){return n.jsx(r,{...e,iconKey:"check_box_outline_blank"})}function Ag(e){return n.jsx(r,{...e,iconKey:"check_circle"})}function yg(e){return n.jsx(r,{...e,iconKey:"check_circle_outline"})}function gg(e){return n.jsx(r,{...e,iconKey:"checklist"})}function _g(e){return n.jsx(r,{...e,iconKey:"checklist_rtl"})}function hg(e){return n.jsx(r,{...e,iconKey:"checkroom"})}function dc(e){return n.jsx(r,{...e,iconKey:"chevron_left"})}function Ig(e){return n.jsx(r,{...e,iconKey:"chevron_right"})}function bg(e){return n.jsx(r,{...e,iconKey:"child_care"})}function pg(e){return n.jsx(r,{...e,iconKey:"child_friendly"})}function wg(e){return n.jsx(r,{...e,iconKey:"chrome_reader_mode"})}function kg(e){return n.jsx(r,{...e,iconKey:"church"})}function pr(e){return n.jsx(r,{...e,iconKey:"circle"})}function mg(e){return n.jsx(r,{...e,iconKey:"circle_notifications"})}function vg(e){return n.jsx(r,{...e,iconKey:"class"})}function Cg(e){return n.jsx(r,{...e,iconKey:"clean_hands"})}function Kg(e){return n.jsx(r,{...e,iconKey:"cleaning_services"})}function dn(e){return n.jsx(r,{...e,iconKey:"clear"})}function Sg(e){return n.jsx(r,{...e,iconKey:"clear_all"})}function wr(e){return n.jsx(r,{...e,iconKey:"close"})}function Bg(e){return n.jsx(r,{...e,iconKey:"close_fullscreen"})}function Eg(e){return n.jsx(r,{...e,iconKey:"closed_caption"})}function Fg(e){return n.jsx(r,{...e,iconKey:"closed_caption_disabled"})}function Pg(e){return n.jsx(r,{...e,iconKey:"closed_caption_off"})}function Dg(e){return n.jsx(r,{...e,iconKey:"cloud"})}function Ng(e){return n.jsx(r,{...e,iconKey:"cloud_circle"})}function Tg(e){return n.jsx(r,{...e,iconKey:"cloud_done"})}function Mg(e){return n.jsx(r,{...e,iconKey:"cloud_download"})}function Og(e){return n.jsx(r,{...e,iconKey:"cloud_off"})}function Lg(e){return n.jsx(r,{...e,iconKey:"cloud_queue"})}function Qg(e){return n.jsx(r,{...e,iconKey:"cloud_sync"})}function Vg(e){return n.jsx(r,{...e,iconKey:"cloud_upload"})}function Wg(e){return n.jsx(r,{...e,iconKey:"co2"})}function Gg(e){return n.jsx(r,{...e,iconKey:"co_present"})}function zg(e){return n.jsx(r,{...e,iconKey:"code"})}function Hg(e){return n.jsx(r,{...e,iconKey:"code_off"})}function Ug(e){return n.jsx(r,{...e,iconKey:"coffee"})}function Yg(e){return n.jsx(r,{...e,iconKey:"coffee_maker"})}function jg(e){return n.jsx(r,{...e,iconKey:"collections"})}function $g(e){return n.jsx(r,{...e,iconKey:"collections_bookmark"})}function qg(e){return n.jsx(r,{...e,iconKey:"color_lens"})}function Jg(e){return n.jsx(r,{...e,iconKey:"colorize"})}function Zg(e){return n.jsx(r,{...e,iconKey:"comment"})}function Xg(e){return n.jsx(r,{...e,iconKey:"comment_bank"})}function xg(e){return n.jsx(r,{...e,iconKey:"comments_disabled"})}function Rg(e){return n.jsx(r,{...e,iconKey:"commit"})}function e_(e){return n.jsx(r,{...e,iconKey:"commute"})}function n_(e){return n.jsx(r,{...e,iconKey:"compare"})}function o_(e){return n.jsx(r,{...e,iconKey:"compare_arrows"})}function r_(e){return n.jsx(r,{...e,iconKey:"compass_calibration"})}function t_(e){return n.jsx(r,{...e,iconKey:"compost"})}function c_(e){return n.jsx(r,{...e,iconKey:"compress"})}function i_(e){return n.jsx(r,{...e,iconKey:"computer"})}function a_(e){return n.jsx(r,{...e,iconKey:"confirmation_number"})}function l_(e){return n.jsx(r,{...e,iconKey:"connect_without_contact"})}function s_(e){return n.jsx(r,{...e,iconKey:"connected_tv"})}function d_(e){return n.jsx(r,{...e,iconKey:"connecting_airports"})}function u_(e){return n.jsx(r,{...e,iconKey:"construction"})}function f_(e){return n.jsx(r,{...e,iconKey:"contact_emergency"})}function A_(e){return n.jsx(r,{...e,iconKey:"contact_mail"})}function y_(e){return n.jsx(r,{...e,iconKey:"contact_page"})}function g_(e){return n.jsx(r,{...e,iconKey:"contact_phone"})}function __(e){return n.jsx(r,{...e,iconKey:"contact_support"})}function h_(e){return n.jsx(r,{...e,iconKey:"contactless"})}function I_(e){return n.jsx(r,{...e,iconKey:"contacts"})}function xn(e){return n.jsx(r,{...e,iconKey:"content_copy"})}function b_(e){return n.jsx(r,{...e,iconKey:"content_cut"})}function p_(e){return n.jsx(r,{...e,iconKey:"content_paste"})}function w_(e){return n.jsx(r,{...e,iconKey:"content_paste_go"})}function k_(e){return n.jsx(r,{...e,iconKey:"content_paste_off"})}function m_(e){return n.jsx(r,{...e,iconKey:"content_paste_search"})}function v_(e){return n.jsx(r,{...e,iconKey:"contrast"})}function C_(e){return n.jsx(r,{...e,iconKey:"control_camera"})}function K_(e){return n.jsx(r,{...e,iconKey:"control_point"})}function S_(e){return n.jsx(r,{...e,iconKey:"control_point_duplicate"})}function B_(e){return n.jsx(r,{...e,iconKey:"cookie"})}function E_(e){return n.jsx(r,{...e,iconKey:"copy_all"})}function F_(e){return n.jsx(r,{...e,iconKey:"copyright"})}function P_(e){return n.jsx(r,{...e,iconKey:"coronavirus"})}function D_(e){return n.jsx(r,{...e,iconKey:"corporate_fare"})}function N_(e){return n.jsx(r,{...e,iconKey:"cottage"})}function T_(e){return n.jsx(r,{...e,iconKey:"countertops"})}function M_(e){return n.jsx(r,{...e,iconKey:"create"})}function O_(e){return n.jsx(r,{...e,iconKey:"create_new_folder"})}function L_(e){return n.jsx(r,{...e,iconKey:"credit_card"})}function Q_(e){return n.jsx(r,{...e,iconKey:"credit_card_off"})}function V_(e){return n.jsx(r,{...e,iconKey:"credit_score"})}function W_(e){return n.jsx(r,{...e,iconKey:"crib"})}function G_(e){return n.jsx(r,{...e,iconKey:"crisis_alert"})}function z_(e){return n.jsx(r,{...e,iconKey:"crop"})}function H_(e){return n.jsx(r,{...e,iconKey:"crop_16_9"})}function U_(e){return n.jsx(r,{...e,iconKey:"crop_3_2"})}function Y_(e){return n.jsx(r,{...e,iconKey:"crop_5_4"})}function j_(e){return n.jsx(r,{...e,iconKey:"crop_7_5"})}function $_(e){return n.jsx(r,{...e,iconKey:"crop_din"})}function q_(e){return n.jsx(r,{...e,iconKey:"crop_free"})}function J_(e){return n.jsx(r,{...e,iconKey:"crop_landscape"})}function Z_(e){return n.jsx(r,{...e,iconKey:"crop_original"})}function X_(e){return n.jsx(r,{...e,iconKey:"crop_portrait"})}function x_(e){return n.jsx(r,{...e,iconKey:"crop_rotate"})}function R_(e){return n.jsx(r,{...e,iconKey:"crop_square"})}function eh(e){return n.jsx(r,{...e,iconKey:"cruelty_free"})}function nh(e){return n.jsx(r,{...e,iconKey:"css"})}function oh(e){return n.jsx(r,{...e,iconKey:"currency_bitcoin"})}function rh(e){return n.jsx(r,{...e,iconKey:"currency_exchange"})}function th(e){return n.jsx(r,{...e,iconKey:"currency_franc"})}function ch(e){return n.jsx(r,{...e,iconKey:"currency_lira"})}function ih(e){return n.jsx(r,{...e,iconKey:"currency_pound"})}function ah(e){return n.jsx(r,{...e,iconKey:"currency_ruble"})}function lh(e){return n.jsx(r,{...e,iconKey:"currency_rupee"})}function sh(e){return n.jsx(r,{...e,iconKey:"currency_yen"})}function dh(e){return n.jsx(r,{...e,iconKey:"currency_yuan"})}function uh(e){return n.jsx(r,{...e,iconKey:"curtains"})}function fh(e){return n.jsx(r,{...e,iconKey:"curtains_closed"})}function Ah(e){return n.jsx(r,{...e,iconKey:"cyclone"})}function yh(e){return n.jsx(r,{...e,iconKey:"dangerous"})}function uc(e){return n.jsx(r,{...e,iconKey:"dark_mode"})}function gh(e){return n.jsx(r,{...e,iconKey:"dashboard"})}function _h(e){return n.jsx(r,{...e,iconKey:"dashboard_customize"})}function hh(e){return n.jsx(r,{...e,iconKey:"data_array"})}function Ih(e){return n.jsx(r,{...e,iconKey:"data_exploration"})}function bh(e){return n.jsx(r,{...e,iconKey:"data_object"})}function ph(e){return n.jsx(r,{...e,iconKey:"data_saver_off"})}function wh(e){return n.jsx(r,{...e,iconKey:"data_saver_on"})}function kh(e){return n.jsx(r,{...e,iconKey:"data_thresholding"})}function mh(e){return n.jsx(r,{...e,iconKey:"data_usage"})}function vh(e){return n.jsx(r,{...e,iconKey:"dataset"})}function Ch(e){return n.jsx(r,{...e,iconKey:"dataset_linked"})}function Kh(e){return n.jsx(r,{...e,iconKey:"date_range"})}function Sh(e){return n.jsx(r,{...e,iconKey:"deblur"})}function Bh(e){return n.jsx(r,{...e,iconKey:"deck"})}function Eh(e){return n.jsx(r,{...e,iconKey:"dehaze"})}function vo(e){return n.jsx(r,{...e,iconKey:"delete"})}function Fh(e){return n.jsx(r,{...e,iconKey:"delete_forever"})}function Ph(e){return n.jsx(r,{...e,iconKey:"delete_outline"})}function Dh(e){return n.jsx(r,{...e,iconKey:"delete_sweep"})}function Nh(e){return n.jsx(r,{...e,iconKey:"delivery_dining"})}function Th(e){return n.jsx(r,{...e,iconKey:"density_large"})}function Mh(e){return n.jsx(r,{...e,iconKey:"density_medium"})}function Oh(e){return n.jsx(r,{...e,iconKey:"density_small"})}function Lh(e){return n.jsx(r,{...e,iconKey:"departure_board"})}function fc(e){return n.jsx(r,{...e,iconKey:"description"})}function Qh(e){return n.jsx(r,{...e,iconKey:"deselect"})}function Vh(e){return n.jsx(r,{...e,iconKey:"design_services"})}function Wh(e){return n.jsx(r,{...e,iconKey:"desk"})}function Gh(e){return n.jsx(r,{...e,iconKey:"desktop_access_disabled"})}function zh(e){return n.jsx(r,{...e,iconKey:"desktop_mac"})}function Hh(e){return n.jsx(r,{...e,iconKey:"desktop_windows"})}function Uh(e){return n.jsx(r,{...e,iconKey:"details"})}function Yh(e){return n.jsx(r,{...e,iconKey:"developer_board"})}function jh(e){return n.jsx(r,{...e,iconKey:"developer_board_off"})}function $h(e){return n.jsx(r,{...e,iconKey:"developer_mode"})}function qh(e){return n.jsx(r,{...e,iconKey:"device_hub"})}function Jh(e){return n.jsx(r,{...e,iconKey:"device_thermostat"})}function Zh(e){return n.jsx(r,{...e,iconKey:"device_unknown"})}function Xh(e){return n.jsx(r,{...e,iconKey:"devices"})}function xh(e){return n.jsx(r,{...e,iconKey:"devices_fold"})}function Rh(e){return n.jsx(r,{...e,iconKey:"devices_other"})}function eI(e){return n.jsx(r,{...e,iconKey:"dialer_sip"})}function nI(e){return n.jsx(r,{...e,iconKey:"dialpad"})}function oI(e){return n.jsx(r,{...e,iconKey:"diamond"})}function rI(e){return n.jsx(r,{...e,iconKey:"difference"})}function tI(e){return n.jsx(r,{...e,iconKey:"dining"})}function cI(e){return n.jsx(r,{...e,iconKey:"dinner_dining"})}function iI(e){return n.jsx(r,{...e,iconKey:"directions"})}function aI(e){return n.jsx(r,{...e,iconKey:"directions_bike"})}function lI(e){return n.jsx(r,{...e,iconKey:"directions_boat"})}function sI(e){return n.jsx(r,{...e,iconKey:"directions_boat_filled"})}function dI(e){return n.jsx(r,{...e,iconKey:"directions_bus"})}function uI(e){return n.jsx(r,{...e,iconKey:"directions_bus_filled"})}function fI(e){return n.jsx(r,{...e,iconKey:"directions_car"})}function AI(e){return n.jsx(r,{...e,iconKey:"directions_car_filled"})}function yI(e){return n.jsx(r,{...e,iconKey:"directions_off"})}function gI(e){return n.jsx(r,{...e,iconKey:"directions_railway"})}function _I(e){return n.jsx(r,{...e,iconKey:"directions_railway_filled"})}function hI(e){return n.jsx(r,{...e,iconKey:"directions_run"})}function II(e){return n.jsx(r,{...e,iconKey:"directions_subway"})}function bI(e){return n.jsx(r,{...e,iconKey:"directions_subway_filled"})}function pI(e){return n.jsx(r,{...e,iconKey:"directions_transit"})}function wI(e){return n.jsx(r,{...e,iconKey:"directions_transit_filled"})}function kI(e){return n.jsx(r,{...e,iconKey:"directions_walk"})}function mI(e){return n.jsx(r,{...e,iconKey:"dirty_lens"})}function vI(e){return n.jsx(r,{...e,iconKey:"disabled_by_default"})}function CI(e){return n.jsx(r,{...e,iconKey:"disabled_visible"})}function KI(e){return n.jsx(r,{...e,iconKey:"disc_full"})}function SI(e){return n.jsx(r,{...e,iconKey:"discount"})}function BI(e){return n.jsx(r,{...e,iconKey:"display_settings"})}function EI(e){return n.jsx(r,{...e,iconKey:"diversity_1"})}function FI(e){return n.jsx(r,{...e,iconKey:"diversity_2"})}function PI(e){return n.jsx(r,{...e,iconKey:"diversity_3"})}function DI(e){return n.jsx(r,{...e,iconKey:"dns"})}function NI(e){return n.jsx(r,{...e,iconKey:"do_disturb"})}function TI(e){return n.jsx(r,{...e,iconKey:"do_disturb_alt"})}function MI(e){return n.jsx(r,{...e,iconKey:"do_disturb_off"})}function OI(e){return n.jsx(r,{...e,iconKey:"do_disturb_on"})}function LI(e){return n.jsx(r,{...e,iconKey:"do_not_disturb"})}function QI(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 WI(e){return n.jsx(r,{...e,iconKey:"do_not_disturb_on"})}function GI(e){return n.jsx(r,{...e,iconKey:"do_not_disturb_on_total_silence"})}function zI(e){return n.jsx(r,{...e,iconKey:"do_not_step"})}function HI(e){return n.jsx(r,{...e,iconKey:"do_not_touch"})}function UI(e){return n.jsx(r,{...e,iconKey:"dock"})}function YI(e){return n.jsx(r,{...e,iconKey:"document_scanner"})}function jI(e){return n.jsx(r,{...e,iconKey:"domain"})}function $I(e){return n.jsx(r,{...e,iconKey:"domain_add"})}function qI(e){return n.jsx(r,{...e,iconKey:"domain_disabled"})}function JI(e){return n.jsx(r,{...e,iconKey:"domain_verification"})}function ZI(e){return n.jsx(r,{...e,iconKey:"done"})}function XI(e){return n.jsx(r,{...e,iconKey:"done_all"})}function xI(e){return n.jsx(r,{...e,iconKey:"done_outline"})}function RI(e){return n.jsx(r,{...e,iconKey:"donut_large"})}function eb(e){return n.jsx(r,{...e,iconKey:"donut_small"})}function nb(e){return n.jsx(r,{...e,iconKey:"door_back"})}function ob(e){return n.jsx(r,{...e,iconKey:"door_front"})}function rb(e){return n.jsx(r,{...e,iconKey:"door_sliding"})}function tb(e){return n.jsx(r,{...e,iconKey:"doorbell"})}function cb(e){return n.jsx(r,{...e,iconKey:"double_arrow"})}function ib(e){return n.jsx(r,{...e,iconKey:"downhill_skiing"})}function ab(e){return n.jsx(r,{...e,iconKey:"download"})}function lb(e){return n.jsx(r,{...e,iconKey:"download_done"})}function sb(e){return n.jsx(r,{...e,iconKey:"download_for_offline"})}function db(e){return n.jsx(r,{...e,iconKey:"downloading"})}function ub(e){return n.jsx(r,{...e,iconKey:"drafts"})}function fb(e){return n.jsx(r,{...e,iconKey:"drag_handle"})}function Ab(e){return n.jsx(r,{...e,iconKey:"drag_indicator"})}function yb(e){return n.jsx(r,{...e,iconKey:"draw"})}function gb(e){return n.jsx(r,{...e,iconKey:"drive_eta"})}function _b(e){return n.jsx(r,{...e,iconKey:"drive_file_move"})}function hb(e){return n.jsx(r,{...e,iconKey:"drive_file_move_rtl"})}function Ib(e){return n.jsx(r,{...e,iconKey:"drive_file_rename_outline"})}function Ac(e){return n.jsx(r,{...e,iconKey:"drive_folder_upload"})}function bb(e){return n.jsx(r,{...e,iconKey:"dry"})}function pb(e){return n.jsx(r,{...e,iconKey:"dry_cleaning"})}function wb(e){return n.jsx(r,{...e,iconKey:"duo"})}function kb(e){return n.jsx(r,{...e,iconKey:"dvr"})}function mb(e){return n.jsx(r,{...e,iconKey:"dynamic_feed"})}function vb(e){return n.jsx(r,{...e,iconKey:"dynamic_form"})}function Cb(e){return n.jsx(r,{...e,iconKey:"e_mobiledata"})}function Kb(e){return n.jsx(r,{...e,iconKey:"earbuds"})}function Sb(e){return n.jsx(r,{...e,iconKey:"earbuds_battery"})}function Bb(e){return n.jsx(r,{...e,iconKey:"east"})}function Eb(e){return n.jsx(r,{...e,iconKey:"edgesensor_high"})}function Fb(e){return n.jsx(r,{...e,iconKey:"edgesensor_low"})}function yc(e){return n.jsx(r,{...e,iconKey:"edit"})}function Pb(e){return n.jsx(r,{...e,iconKey:"edit_attributes"})}function Db(e){return n.jsx(r,{...e,iconKey:"edit_calendar"})}function Nb(e){return n.jsx(r,{...e,iconKey:"edit_location"})}function Tb(e){return n.jsx(r,{...e,iconKey:"edit_location_alt"})}function Mb(e){return n.jsx(r,{...e,iconKey:"edit_note"})}function Ob(e){return n.jsx(r,{...e,iconKey:"edit_notifications"})}function Lb(e){return n.jsx(r,{...e,iconKey:"edit_off"})}function Qb(e){return n.jsx(r,{...e,iconKey:"edit_road"})}function Vb(e){return n.jsx(r,{...e,iconKey:"egg"})}function Wb(e){return n.jsx(r,{...e,iconKey:"egg_alt"})}function Gb(e){return n.jsx(r,{...e,iconKey:"eject"})}function zb(e){return n.jsx(r,{...e,iconKey:"elderly"})}function Hb(e){return n.jsx(r,{...e,iconKey:"elderly_woman"})}function Ub(e){return n.jsx(r,{...e,iconKey:"electric_bike"})}function Yb(e){return n.jsx(r,{...e,iconKey:"electric_bolt"})}function jb(e){return n.jsx(r,{...e,iconKey:"electric_car"})}function $b(e){return n.jsx(r,{...e,iconKey:"electric_meter"})}function qb(e){return n.jsx(r,{...e,iconKey:"electric_moped"})}function Jb(e){return n.jsx(r,{...e,iconKey:"electric_rickshaw"})}function Zb(e){return n.jsx(r,{...e,iconKey:"electric_scooter"})}function Xb(e){return n.jsx(r,{...e,iconKey:"electrical_services"})}function xb(e){return n.jsx(r,{...e,iconKey:"elevator"})}function gc(e){return n.jsx(r,{...e,iconKey:"email"})}function Rb(e){return n.jsx(r,{...e,iconKey:"emergency"})}function ep(e){return n.jsx(r,{...e,iconKey:"emergency_recording"})}function np(e){return n.jsx(r,{...e,iconKey:"emergency_share"})}function op(e){return n.jsx(r,{...e,iconKey:"emoji_emotions"})}function rp(e){return n.jsx(r,{...e,iconKey:"emoji_events"})}function tp(e){return n.jsx(r,{...e,iconKey:"emoji_food_beverage"})}function cp(e){return n.jsx(r,{...e,iconKey:"emoji_nature"})}function ip(e){return n.jsx(r,{...e,iconKey:"emoji_objects"})}function ap(e){return n.jsx(r,{...e,iconKey:"emoji_people"})}function lp(e){return n.jsx(r,{...e,iconKey:"emoji_symbols"})}function sp(e){return n.jsx(r,{...e,iconKey:"emoji_transportation"})}function dp(e){return n.jsx(r,{...e,iconKey:"energy_savings_leaf"})}function up(e){return n.jsx(r,{...e,iconKey:"engineering"})}function fp(e){return n.jsx(r,{...e,iconKey:"enhanced_encryption"})}function Ap(e){return n.jsx(r,{...e,iconKey:"equalizer"})}function kr(e){return n.jsx(r,{...e,iconKey:"error"})}function _c(e){return n.jsx(r,{...e,iconKey:"error_outline"})}function yp(e){return n.jsx(r,{...e,iconKey:"escalator"})}function gp(e){return n.jsx(r,{...e,iconKey:"escalator_warning"})}function _p(e){return n.jsx(r,{...e,iconKey:"euro"})}function hp(e){return n.jsx(r,{...e,iconKey:"euro_symbol"})}function Ip(e){return n.jsx(r,{...e,iconKey:"ev_station"})}function bp(e){return n.jsx(r,{...e,iconKey:"event"})}function pp(e){return n.jsx(r,{...e,iconKey:"event_available"})}function wp(e){return n.jsx(r,{...e,iconKey:"event_busy"})}function kp(e){return n.jsx(r,{...e,iconKey:"event_note"})}function mp(e){return n.jsx(r,{...e,iconKey:"event_repeat"})}function vp(e){return n.jsx(r,{...e,iconKey:"event_seat"})}function Cp(e){return n.jsx(r,{...e,iconKey:"exit_to_app"})}function Kp(e){return n.jsx(r,{...e,iconKey:"expand"})}function Sp(e){return n.jsx(r,{...e,iconKey:"expand_circle_down"})}function Bp(e){return n.jsx(r,{...e,iconKey:"expand_less"})}function Co(e){return n.jsx(r,{...e,iconKey:"expand_more"})}function Ep(e){return n.jsx(r,{...e,iconKey:"explicit"})}function Fp(e){return n.jsx(r,{...e,iconKey:"explore"})}function Pp(e){return n.jsx(r,{...e,iconKey:"explore_off"})}function Dp(e){return n.jsx(r,{...e,iconKey:"exposure"})}function Np(e){return n.jsx(r,{...e,iconKey:"exposure_neg_1"})}function Tp(e){return n.jsx(r,{...e,iconKey:"exposure_neg_2"})}function Mp(e){return n.jsx(r,{...e,iconKey:"exposure_plus_1"})}function Op(e){return n.jsx(r,{...e,iconKey:"exposure_plus_2"})}function Lp(e){return n.jsx(r,{...e,iconKey:"exposure_zero"})}function Qp(e){return n.jsx(r,{...e,iconKey:"extension"})}function Vp(e){return n.jsx(r,{...e,iconKey:"extension_off"})}function Wp(e){return n.jsx(r,{...e,iconKey:"face"})}function Gp(e){return n.jsx(r,{...e,iconKey:"face_2"})}function zp(e){return n.jsx(r,{...e,iconKey:"face_3"})}function Hp(e){return n.jsx(r,{...e,iconKey:"face_4"})}function Up(e){return n.jsx(r,{...e,iconKey:"face_5"})}function Yp(e){return n.jsx(r,{...e,iconKey:"face_6"})}function jp(e){return n.jsx(r,{...e,iconKey:"face_retouching_natural"})}function $p(e){return n.jsx(r,{...e,iconKey:"face_retouching_off"})}function qp(e){return n.jsx(r,{...e,iconKey:"fact_check"})}function Jp(e){return n.jsx(r,{...e,iconKey:"factory"})}function Zp(e){return n.jsx(r,{...e,iconKey:"family_restroom"})}function Xp(e){return n.jsx(r,{...e,iconKey:"fast_forward"})}function xp(e){return n.jsx(r,{...e,iconKey:"fast_rewind"})}function Rp(e){return n.jsx(r,{...e,iconKey:"fastfood"})}function ew(e){return n.jsx(r,{...e,iconKey:"favorite"})}function nw(e){return n.jsx(r,{...e,iconKey:"favorite_border"})}function ow(e){return n.jsx(r,{...e,iconKey:"fax"})}function rw(e){return n.jsx(r,{...e,iconKey:"featured_play_list"})}function tw(e){return n.jsx(r,{...e,iconKey:"featured_video"})}function cw(e){return n.jsx(r,{...e,iconKey:"feed"})}function iw(e){return n.jsx(r,{...e,iconKey:"feedback"})}function aw(e){return n.jsx(r,{...e,iconKey:"female"})}function lw(e){return n.jsx(r,{...e,iconKey:"fence"})}function sw(e){return n.jsx(r,{...e,iconKey:"festival"})}function dw(e){return n.jsx(r,{...e,iconKey:"fiber_dvr"})}function uw(e){return n.jsx(r,{...e,iconKey:"fiber_manual_record"})}function fw(e){return n.jsx(r,{...e,iconKey:"fiber_new"})}function Aw(e){return n.jsx(r,{...e,iconKey:"fiber_pin"})}function yw(e){return n.jsx(r,{...e,iconKey:"fiber_smart_record"})}function hc(e){return n.jsx(r,{...e,iconKey:"file_copy"})}function gw(e){return n.jsx(r,{...e,iconKey:"file_download"})}function _w(e){return n.jsx(r,{...e,iconKey:"file_download_done"})}function hw(e){return n.jsx(r,{...e,iconKey:"file_download_off"})}function Iw(e){return n.jsx(r,{...e,iconKey:"file_open"})}function bw(e){return n.jsx(r,{...e,iconKey:"file_present"})}function pw(e){return n.jsx(r,{...e,iconKey:"file_upload"})}function ww(e){return n.jsx(r,{...e,iconKey:"filter"})}function kw(e){return n.jsx(r,{...e,iconKey:"filter_1"})}function mw(e){return n.jsx(r,{...e,iconKey:"filter_2"})}function vw(e){return n.jsx(r,{...e,iconKey:"filter_3"})}function Cw(e){return n.jsx(r,{...e,iconKey:"filter_4"})}function Kw(e){return n.jsx(r,{...e,iconKey:"filter_5"})}function Sw(e){return n.jsx(r,{...e,iconKey:"filter_6"})}function Bw(e){return n.jsx(r,{...e,iconKey:"filter_7"})}function Ew(e){return n.jsx(r,{...e,iconKey:"filter_8"})}function Fw(e){return n.jsx(r,{...e,iconKey:"filter_9"})}function Pw(e){return n.jsx(r,{...e,iconKey:"filter_9_plus"})}function Dw(e){return n.jsx(r,{...e,iconKey:"filter_alt"})}function Nw(e){return n.jsx(r,{...e,iconKey:"filter_alt_off"})}function Tw(e){return n.jsx(r,{...e,iconKey:"filter_b_and_w"})}function Mw(e){return n.jsx(r,{...e,iconKey:"filter_center_focus"})}function Ow(e){return n.jsx(r,{...e,iconKey:"filter_drama"})}function Lw(e){return n.jsx(r,{...e,iconKey:"filter_frames"})}function Qw(e){return n.jsx(r,{...e,iconKey:"filter_hdr"})}function Ic(e){return n.jsx(r,{...e,iconKey:"filter_list"})}function bc(e){return n.jsx(r,{...e,iconKey:"filter_list_off"})}function Vw(e){return n.jsx(r,{...e,iconKey:"filter_none"})}function Ww(e){return n.jsx(r,{...e,iconKey:"filter_tilt_shift"})}function Gw(e){return n.jsx(r,{...e,iconKey:"filter_vintage"})}function zw(e){return n.jsx(r,{...e,iconKey:"find_in_page"})}function Hw(e){return n.jsx(r,{...e,iconKey:"find_replace"})}function Uw(e){return n.jsx(r,{...e,iconKey:"fingerprint"})}function Yw(e){return n.jsx(r,{...e,iconKey:"fire_extinguisher"})}function jw(e){return n.jsx(r,{...e,iconKey:"fire_hydrant_alt"})}function $w(e){return n.jsx(r,{...e,iconKey:"fire_truck"})}function qw(e){return n.jsx(r,{...e,iconKey:"fireplace"})}function Jw(e){return n.jsx(r,{...e,iconKey:"first_page"})}function Zw(e){return n.jsx(r,{...e,iconKey:"fit_screen"})}function Xw(e){return n.jsx(r,{...e,iconKey:"fitbit"})}function xw(e){return n.jsx(r,{...e,iconKey:"fitness_center"})}function pc(e){return n.jsx(r,{...e,iconKey:"flag"})}function Rw(e){return n.jsx(r,{...e,iconKey:"flag_circle"})}function ek(e){return n.jsx(r,{...e,iconKey:"flaky"})}function nk(e){return n.jsx(r,{...e,iconKey:"flare"})}function ok(e){return n.jsx(r,{...e,iconKey:"flash_auto"})}function rk(e){return n.jsx(r,{...e,iconKey:"flash_off"})}function tk(e){return n.jsx(r,{...e,iconKey:"flash_on"})}function ck(e){return n.jsx(r,{...e,iconKey:"flashlight_off"})}function ik(e){return n.jsx(r,{...e,iconKey:"flashlight_on"})}function ak(e){return n.jsx(r,{...e,iconKey:"flatware"})}function lk(e){return n.jsx(r,{...e,iconKey:"flight"})}function sk(e){return n.jsx(r,{...e,iconKey:"flight_class"})}function dk(e){return n.jsx(r,{...e,iconKey:"flight_land"})}function uk(e){return n.jsx(r,{...e,iconKey:"flight_takeoff"})}function fk(e){return n.jsx(r,{...e,iconKey:"flip"})}function Ak(e){return n.jsx(r,{...e,iconKey:"flip_camera_android"})}function yk(e){return n.jsx(r,{...e,iconKey:"flip_camera_ios"})}function gk(e){return n.jsx(r,{...e,iconKey:"flip_to_back"})}function _k(e){return n.jsx(r,{...e,iconKey:"flip_to_front"})}function hk(e){return n.jsx(r,{...e,iconKey:"flood"})}function Ik(e){return n.jsx(r,{...e,iconKey:"fluorescent"})}function bk(e){return n.jsx(r,{...e,iconKey:"flutter_dash"})}function pk(e){return n.jsx(r,{...e,iconKey:"fmd_bad"})}function wk(e){return n.jsx(r,{...e,iconKey:"fmd_good"})}function kk(e){return n.jsx(r,{...e,iconKey:"folder"})}function mk(e){return n.jsx(r,{...e,iconKey:"folder_copy"})}function vk(e){return n.jsx(r,{...e,iconKey:"folder_delete"})}function Ck(e){return n.jsx(r,{...e,iconKey:"folder_off"})}function Kk(e){return n.jsx(r,{...e,iconKey:"folder_open"})}function Sk(e){return n.jsx(r,{...e,iconKey:"folder_shared"})}function Bk(e){return n.jsx(r,{...e,iconKey:"folder_special"})}function Ek(e){return n.jsx(r,{...e,iconKey:"folder_zip"})}function Fk(e){return n.jsx(r,{...e,iconKey:"follow_the_signs"})}function Pk(e){return n.jsx(r,{...e,iconKey:"font_download"})}function Dk(e){return n.jsx(r,{...e,iconKey:"font_download_off"})}function Nk(e){return n.jsx(r,{...e,iconKey:"food_bank"})}function Tk(e){return n.jsx(r,{...e,iconKey:"forest"})}function Mk(e){return n.jsx(r,{...e,iconKey:"fork_left"})}function Ok(e){return n.jsx(r,{...e,iconKey:"fork_right"})}function Lk(e){return n.jsx(r,{...e,iconKey:"format_align_center"})}function Qk(e){return n.jsx(r,{...e,iconKey:"format_align_justify"})}function Vk(e){return n.jsx(r,{...e,iconKey:"format_align_left"})}function Wk(e){return n.jsx(r,{...e,iconKey:"format_align_right"})}function Gk(e){return n.jsx(r,{...e,iconKey:"format_bold"})}function zk(e){return n.jsx(r,{...e,iconKey:"format_clear"})}function Hk(e){return n.jsx(r,{...e,iconKey:"format_color_fill"})}function Uk(e){return n.jsx(r,{...e,iconKey:"format_color_reset"})}function Yk(e){return n.jsx(r,{...e,iconKey:"format_color_text"})}function jk(e){return n.jsx(r,{...e,iconKey:"format_indent_decrease"})}function $k(e){return n.jsx(r,{...e,iconKey:"format_indent_increase"})}function qk(e){return n.jsx(r,{...e,iconKey:"format_italic"})}function Jk(e){return n.jsx(r,{...e,iconKey:"format_line_spacing"})}function Zk(e){return n.jsx(r,{...e,iconKey:"format_list_bulleted"})}function mr(e){return n.jsx(r,{...e,iconKey:"format_list_numbered"})}function Xk(e){return n.jsx(r,{...e,iconKey:"format_list_numbered_rtl"})}function xk(e){return n.jsx(r,{...e,iconKey:"format_overline"})}function Rk(e){return n.jsx(r,{...e,iconKey:"format_paint"})}function wc(e){return n.jsx(r,{...e,iconKey:"format_quote"})}function em(e){return n.jsx(r,{...e,iconKey:"format_shapes"})}function nm(e){return n.jsx(r,{...e,iconKey:"format_size"})}function om(e){return n.jsx(r,{...e,iconKey:"format_strikethrough"})}function rm(e){return n.jsx(r,{...e,iconKey:"format_textdirection_l_to_r"})}function tm(e){return n.jsx(r,{...e,iconKey:"format_textdirection_r_to_l"})}function cm(e){return n.jsx(r,{...e,iconKey:"format_underlined"})}function im(e){return n.jsx(r,{...e,iconKey:"fort"})}function am(e){return n.jsx(r,{...e,iconKey:"forum"})}function lm(e){return n.jsx(r,{...e,iconKey:"forward"})}function sm(e){return n.jsx(r,{...e,iconKey:"forward_10"})}function dm(e){return n.jsx(r,{...e,iconKey:"forward_30"})}function um(e){return n.jsx(r,{...e,iconKey:"forward_5"})}function fm(e){return n.jsx(r,{...e,iconKey:"forward_to_inbox"})}function Am(e){return n.jsx(r,{...e,iconKey:"foundation"})}function ym(e){return n.jsx(r,{...e,iconKey:"free_breakfast"})}function gm(e){return n.jsx(r,{...e,iconKey:"free_cancellation"})}function _m(e){return n.jsx(r,{...e,iconKey:"front_hand"})}function hm(e){return n.jsx(r,{...e,iconKey:"fullscreen"})}function Im(e){return n.jsx(r,{...e,iconKey:"fullscreen_exit"})}function kc(e){return n.jsx(r,{...e,iconKey:"functions"})}function bm(e){return n.jsx(r,{...e,iconKey:"g_mobiledata"})}function pm(e){return n.jsx(r,{...e,iconKey:"g_translate"})}function wm(e){return n.jsx(r,{...e,iconKey:"gamepad"})}function km(e){return n.jsx(r,{...e,iconKey:"games"})}function mm(e){return n.jsx(r,{...e,iconKey:"garage"})}function vm(e){return n.jsx(r,{...e,iconKey:"gas_meter"})}function Cm(e){return n.jsx(r,{...e,iconKey:"gavel"})}function Km(e){return n.jsx(r,{...e,iconKey:"generating_tokens"})}function Sm(e){return n.jsx(r,{...e,iconKey:"gesture"})}function Bm(e){return n.jsx(r,{...e,iconKey:"get_app"})}function Em(e){return n.jsx(r,{...e,iconKey:"gif"})}function Fm(e){return n.jsx(r,{...e,iconKey:"gif_box"})}function Pm(e){return n.jsx(r,{...e,iconKey:"girl"})}function Dm(e){return n.jsx(r,{...e,iconKey:"gite"})}function Nm(e){return n.jsx(r,{...e,iconKey:"golf_course"})}function Tm(e){return n.jsx(r,{...e,iconKey:"gpp_bad"})}function Mm(e){return n.jsx(r,{...e,iconKey:"gpp_good"})}function Om(e){return n.jsx(r,{...e,iconKey:"gpp_maybe"})}function Lm(e){return n.jsx(r,{...e,iconKey:"gps_fixed"})}function Qm(e){return n.jsx(r,{...e,iconKey:"gps_not_fixed"})}function Vm(e){return n.jsx(r,{...e,iconKey:"gps_off"})}function Wm(e){return n.jsx(r,{...e,iconKey:"grade"})}function Gm(e){return n.jsx(r,{...e,iconKey:"gradient"})}function zm(e){return n.jsx(r,{...e,iconKey:"grading"})}function Hm(e){return n.jsx(r,{...e,iconKey:"grain"})}function Um(e){return n.jsx(r,{...e,iconKey:"graphic_eq"})}function Ym(e){return n.jsx(r,{...e,iconKey:"grass"})}function jm(e){return n.jsx(r,{...e,iconKey:"grid_3x3"})}function $m(e){return n.jsx(r,{...e,iconKey:"grid_4x4"})}function qm(e){return n.jsx(r,{...e,iconKey:"grid_goldenratio"})}function Jm(e){return n.jsx(r,{...e,iconKey:"grid_off"})}function Zm(e){return n.jsx(r,{...e,iconKey:"grid_on"})}function Xm(e){return n.jsx(r,{...e,iconKey:"grid_view"})}function xm(e){return n.jsx(r,{...e,iconKey:"group"})}function Rm(e){return n.jsx(r,{...e,iconKey:"group_add"})}function ev(e){return n.jsx(r,{...e,iconKey:"group_off"})}function nv(e){return n.jsx(r,{...e,iconKey:"group_remove"})}function ov(e){return n.jsx(r,{...e,iconKey:"group_work"})}function rv(e){return n.jsx(r,{...e,iconKey:"groups"})}function tv(e){return n.jsx(r,{...e,iconKey:"groups_2"})}function cv(e){return n.jsx(r,{...e,iconKey:"groups_3"})}function iv(e){return n.jsx(r,{...e,iconKey:"h_mobiledata"})}function av(e){return n.jsx(r,{...e,iconKey:"h_plus_mobiledata"})}function lv(e){return n.jsx(r,{...e,iconKey:"hail"})}function sv(e){return n.jsx(r,{...e,iconKey:"handshake"})}function dv(e){return n.jsx(r,{...e,iconKey:"handyman"})}function uv(e){return n.jsx(r,{...e,iconKey:"hardware"})}function fv(e){return n.jsx(r,{...e,iconKey:"hd"})}function Av(e){return n.jsx(r,{...e,iconKey:"hdr_auto"})}function yv(e){return n.jsx(r,{...e,iconKey:"hdr_auto_select"})}function gv(e){return n.jsx(r,{...e,iconKey:"hdr_enhanced_select"})}function _v(e){return n.jsx(r,{...e,iconKey:"hdr_off"})}function hv(e){return n.jsx(r,{...e,iconKey:"hdr_off_select"})}function Iv(e){return n.jsx(r,{...e,iconKey:"hdr_on"})}function bv(e){return n.jsx(r,{...e,iconKey:"hdr_on_select"})}function pv(e){return n.jsx(r,{...e,iconKey:"hdr_plus"})}function wv(e){return n.jsx(r,{...e,iconKey:"hdr_strong"})}function kv(e){return n.jsx(r,{...e,iconKey:"hdr_weak"})}function mv(e){return n.jsx(r,{...e,iconKey:"headphones"})}function vv(e){return n.jsx(r,{...e,iconKey:"headphones_battery"})}function Cv(e){return n.jsx(r,{...e,iconKey:"headset"})}function Kv(e){return n.jsx(r,{...e,iconKey:"headset_mic"})}function Sv(e){return n.jsx(r,{...e,iconKey:"headset_off"})}function Bv(e){return n.jsx(r,{...e,iconKey:"healing"})}function Ev(e){return n.jsx(r,{...e,iconKey:"health_and_safety"})}function Fv(e){return n.jsx(r,{...e,iconKey:"hearing"})}function Pv(e){return n.jsx(r,{...e,iconKey:"hearing_disabled"})}function Dv(e){return n.jsx(r,{...e,iconKey:"heart_broken"})}function Nv(e){return n.jsx(r,{...e,iconKey:"heat_pump"})}function Tv(e){return n.jsx(r,{...e,iconKey:"height"})}function Mv(e){return n.jsx(r,{...e,iconKey:"help"})}function Ov(e){return n.jsx(r,{...e,iconKey:"help_center"})}function Lv(e){return n.jsx(r,{...e,iconKey:"help_outline"})}function Qv(e){return n.jsx(r,{...e,iconKey:"hevc"})}function Vv(e){return n.jsx(r,{...e,iconKey:"hexagon"})}function Wv(e){return n.jsx(r,{...e,iconKey:"hide_image"})}function Gv(e){return n.jsx(r,{...e,iconKey:"hide_source"})}function zv(e){return n.jsx(r,{...e,iconKey:"high_quality"})}function Hv(e){return n.jsx(r,{...e,iconKey:"highlight"})}function Uv(e){return n.jsx(r,{...e,iconKey:"highlight_alt"})}function Yv(e){return n.jsx(r,{...e,iconKey:"highlight_off"})}function jv(e){return n.jsx(r,{...e,iconKey:"hiking"})}function $v(e){return n.jsx(r,{...e,iconKey:"history"})}function qv(e){return n.jsx(r,{...e,iconKey:"history_edu"})}function Jv(e){return n.jsx(r,{...e,iconKey:"history_toggle_off"})}function Zv(e){return n.jsx(r,{...e,iconKey:"hive"})}function Xv(e){return n.jsx(r,{...e,iconKey:"hls"})}function xv(e){return n.jsx(r,{...e,iconKey:"hls_off"})}function Rv(e){return n.jsx(r,{...e,iconKey:"holiday_village"})}function e0(e){return n.jsx(r,{...e,iconKey:"home"})}function n0(e){return n.jsx(r,{...e,iconKey:"home_max"})}function o0(e){return n.jsx(r,{...e,iconKey:"home_mini"})}function r0(e){return n.jsx(r,{...e,iconKey:"home_repair_service"})}function t0(e){return n.jsx(r,{...e,iconKey:"home_work"})}function c0(e){return n.jsx(r,{...e,iconKey:"horizontal_distribute"})}function i0(e){return n.jsx(r,{...e,iconKey:"horizontal_rule"})}function a0(e){return n.jsx(r,{...e,iconKey:"horizontal_split"})}function l0(e){return n.jsx(r,{...e,iconKey:"hot_tub"})}function s0(e){return n.jsx(r,{...e,iconKey:"hotel"})}function d0(e){return n.jsx(r,{...e,iconKey:"hotel_class"})}function u0(e){return n.jsx(r,{...e,iconKey:"hourglass_bottom"})}function f0(e){return n.jsx(r,{...e,iconKey:"hourglass_disabled"})}function A0(e){return n.jsx(r,{...e,iconKey:"hourglass_empty"})}function y0(e){return n.jsx(r,{...e,iconKey:"hourglass_full"})}function g0(e){return n.jsx(r,{...e,iconKey:"hourglass_top"})}function _0(e){return n.jsx(r,{...e,iconKey:"house"})}function h0(e){return n.jsx(r,{...e,iconKey:"house_siding"})}function I0(e){return n.jsx(r,{...e,iconKey:"houseboat"})}function b0(e){return n.jsx(r,{...e,iconKey:"how_to_reg"})}function p0(e){return n.jsx(r,{...e,iconKey:"how_to_vote"})}function w0(e){return n.jsx(r,{...e,iconKey:"html"})}function mc(e){return n.jsx(r,{...e,iconKey:"http"})}function k0(e){return n.jsx(r,{...e,iconKey:"https"})}function m0(e){return n.jsx(r,{...e,iconKey:"hub"})}function v0(e){return n.jsx(r,{...e,iconKey:"hvac"})}function C0(e){return n.jsx(r,{...e,iconKey:"ice_skating"})}function K0(e){return n.jsx(r,{...e,iconKey:"icecream"})}function S0(e){return n.jsx(r,{...e,iconKey:"image"})}function B0(e){return n.jsx(r,{...e,iconKey:"image_aspect_ratio"})}function E0(e){return n.jsx(r,{...e,iconKey:"image_not_supported"})}function F0(e){return n.jsx(r,{...e,iconKey:"image_search"})}function P0(e){return n.jsx(r,{...e,iconKey:"imagesearch_roller"})}function D0(e){return n.jsx(r,{...e,iconKey:"import_contacts"})}function N0(e){return n.jsx(r,{...e,iconKey:"import_export"})}function T0(e){return n.jsx(r,{...e,iconKey:"important_devices"})}function M0(e){return n.jsx(r,{...e,iconKey:"inbox"})}function O0(e){return n.jsx(r,{...e,iconKey:"incomplete_circle"})}function L0(e){return n.jsx(r,{...e,iconKey:"indeterminate_check_box"})}function vc(e){return n.jsx(r,{...e,iconKey:"info"})}function Q0(e){return n.jsx(r,{...e,iconKey:"input"})}function V0(e){return n.jsx(r,{...e,iconKey:"insert_chart"})}function W0(e){return n.jsx(r,{...e,iconKey:"insert_chart_outlined"})}function G0(e){return n.jsx(r,{...e,iconKey:"insert_comment"})}function z0(e){return n.jsx(r,{...e,iconKey:"insert_drive_file"})}function H0(e){return n.jsx(r,{...e,iconKey:"insert_emoticon"})}function U0(e){return n.jsx(r,{...e,iconKey:"insert_invitation"})}function Y0(e){return n.jsx(r,{...e,iconKey:"insert_link"})}function j0(e){return n.jsx(r,{...e,iconKey:"insert_page_break"})}function $0(e){return n.jsx(r,{...e,iconKey:"insert_photo"})}function q0(e){return n.jsx(r,{...e,iconKey:"insights"})}function J0(e){return n.jsx(r,{...e,iconKey:"install_desktop"})}function Z0(e){return n.jsx(r,{...e,iconKey:"install_mobile"})}function X0(e){return n.jsx(r,{...e,iconKey:"integration_instructions"})}function x0(e){return n.jsx(r,{...e,iconKey:"interests"})}function R0(e){return n.jsx(r,{...e,iconKey:"interpreter_mode"})}function eC(e){return n.jsx(r,{...e,iconKey:"inventory"})}function nC(e){return n.jsx(r,{...e,iconKey:"inventory_2"})}function oC(e){return n.jsx(r,{...e,iconKey:"invert_colors"})}function rC(e){return n.jsx(r,{...e,iconKey:"invert_colors_off"})}function tC(e){return n.jsx(r,{...e,iconKey:"ios_share"})}function cC(e){return n.jsx(r,{...e,iconKey:"iron"})}function iC(e){return n.jsx(r,{...e,iconKey:"iso"})}function aC(e){return n.jsx(r,{...e,iconKey:"javascript"})}function lC(e){return n.jsx(r,{...e,iconKey:"join_full"})}function sC(e){return n.jsx(r,{...e,iconKey:"join_inner"})}function dC(e){return n.jsx(r,{...e,iconKey:"join_left"})}function uC(e){return n.jsx(r,{...e,iconKey:"join_right"})}function fC(e){return n.jsx(r,{...e,iconKey:"kayaking"})}function AC(e){return n.jsx(r,{...e,iconKey:"kebab_dining"})}function yC(e){return n.jsx(r,{...e,iconKey:"key"})}function gC(e){return n.jsx(r,{...e,iconKey:"key_off"})}function _C(e){return n.jsx(r,{...e,iconKey:"keyboard"})}function hC(e){return n.jsx(r,{...e,iconKey:"keyboard_alt"})}function IC(e){return n.jsx(r,{...e,iconKey:"keyboard_arrow_down"})}function bC(e){return n.jsx(r,{...e,iconKey:"keyboard_arrow_left"})}function pC(e){return n.jsx(r,{...e,iconKey:"keyboard_arrow_right"})}function wC(e){return n.jsx(r,{...e,iconKey:"keyboard_arrow_up"})}function kC(e){return n.jsx(r,{...e,iconKey:"keyboard_backspace"})}function mC(e){return n.jsx(r,{...e,iconKey:"keyboard_capslock"})}function vC(e){return n.jsx(r,{...e,iconKey:"keyboard_command_key"})}function CC(e){return n.jsx(r,{...e,iconKey:"keyboard_control_key"})}function KC(e){return n.jsx(r,{...e,iconKey:"keyboard_double_arrow_down"})}function SC(e){return n.jsx(r,{...e,iconKey:"keyboard_double_arrow_left"})}function BC(e){return n.jsx(r,{...e,iconKey:"keyboard_double_arrow_right"})}function EC(e){return n.jsx(r,{...e,iconKey:"keyboard_double_arrow_up"})}function FC(e){return n.jsx(r,{...e,iconKey:"keyboard_hide"})}function PC(e){return n.jsx(r,{...e,iconKey:"keyboard_option_key"})}function DC(e){return n.jsx(r,{...e,iconKey:"keyboard_return"})}function Ko(e){return n.jsx(r,{...e,iconKey:"keyboard_tab"})}function NC(e){return n.jsx(r,{...e,iconKey:"keyboard_voice"})}function TC(e){return n.jsx(r,{...e,iconKey:"king_bed"})}function MC(e){return n.jsx(r,{...e,iconKey:"kitchen"})}function OC(e){return n.jsx(r,{...e,iconKey:"kitesurfing"})}function LC(e){return n.jsx(r,{...e,iconKey:"label"})}function QC(e){return n.jsx(r,{...e,iconKey:"label_important"})}function VC(e){return n.jsx(r,{...e,iconKey:"label_off"})}function WC(e){return n.jsx(r,{...e,iconKey:"lan"})}function GC(e){return n.jsx(r,{...e,iconKey:"landscape"})}function zC(e){return n.jsx(r,{...e,iconKey:"landslide"})}function HC(e){return n.jsx(r,{...e,iconKey:"language"})}function UC(e){return n.jsx(r,{...e,iconKey:"laptop"})}function YC(e){return n.jsx(r,{...e,iconKey:"laptop_chromebook"})}function jC(e){return n.jsx(r,{...e,iconKey:"laptop_mac"})}function $C(e){return n.jsx(r,{...e,iconKey:"laptop_windows"})}function qC(e){return n.jsx(r,{...e,iconKey:"last_page"})}function JC(e){return n.jsx(r,{...e,iconKey:"launch"})}function ZC(e){return n.jsx(r,{...e,iconKey:"layers"})}function XC(e){return n.jsx(r,{...e,iconKey:"layers_clear"})}function xC(e){return n.jsx(r,{...e,iconKey:"leaderboard"})}function RC(e){return n.jsx(r,{...e,iconKey:"leak_add"})}function eK(e){return n.jsx(r,{...e,iconKey:"leak_remove"})}function nK(e){return n.jsx(r,{...e,iconKey:"legend_toggle"})}function oK(e){return n.jsx(r,{...e,iconKey:"lens"})}function rK(e){return n.jsx(r,{...e,iconKey:"lens_blur"})}function tK(e){return n.jsx(r,{...e,iconKey:"library_add"})}function cK(e){return n.jsx(r,{...e,iconKey:"library_add_check"})}function iK(e){return n.jsx(r,{...e,iconKey:"library_books"})}function aK(e){return n.jsx(r,{...e,iconKey:"library_music"})}function lK(e){return n.jsx(r,{...e,iconKey:"light"})}function Cc(e){return n.jsx(r,{...e,iconKey:"light_mode"})}function sK(e){return n.jsx(r,{...e,iconKey:"lightbulb"})}function dK(e){return n.jsx(r,{...e,iconKey:"lightbulb_circle"})}function uK(e){return n.jsx(r,{...e,iconKey:"line_axis"})}function fK(e){return n.jsx(r,{...e,iconKey:"line_style"})}function AK(e){return n.jsx(r,{...e,iconKey:"line_weight"})}function yK(e){return n.jsx(r,{...e,iconKey:"linear_scale"})}function Kc(e){return n.jsx(r,{...e,iconKey:"link"})}function gK(e){return n.jsx(r,{...e,iconKey:"link_off"})}function _K(e){return n.jsx(r,{...e,iconKey:"linked_camera"})}function hK(e){return n.jsx(r,{...e,iconKey:"liquor"})}function Sc(e){return n.jsx(r,{...e,iconKey:"list"})}function Bc(e){return n.jsx(r,{...e,iconKey:"list_alt"})}function IK(e){return n.jsx(r,{...e,iconKey:"live_help"})}function bK(e){return n.jsx(r,{...e,iconKey:"live_tv"})}function pK(e){return n.jsx(r,{...e,iconKey:"living"})}function wK(e){return n.jsx(r,{...e,iconKey:"local_activity"})}function kK(e){return n.jsx(r,{...e,iconKey:"local_airport"})}function mK(e){return n.jsx(r,{...e,iconKey:"local_atm"})}function vK(e){return n.jsx(r,{...e,iconKey:"local_bar"})}function CK(e){return n.jsx(r,{...e,iconKey:"local_cafe"})}function KK(e){return n.jsx(r,{...e,iconKey:"local_car_wash"})}function SK(e){return n.jsx(r,{...e,iconKey:"local_convenience_store"})}function BK(e){return n.jsx(r,{...e,iconKey:"local_dining"})}function EK(e){return n.jsx(r,{...e,iconKey:"local_drink"})}function FK(e){return n.jsx(r,{...e,iconKey:"local_fire_department"})}function PK(e){return n.jsx(r,{...e,iconKey:"local_florist"})}function DK(e){return n.jsx(r,{...e,iconKey:"local_gas_station"})}function NK(e){return n.jsx(r,{...e,iconKey:"local_grocery_store"})}function TK(e){return n.jsx(r,{...e,iconKey:"local_hospital"})}function MK(e){return n.jsx(r,{...e,iconKey:"local_hotel"})}function OK(e){return n.jsx(r,{...e,iconKey:"local_laundry_service"})}function LK(e){return n.jsx(r,{...e,iconKey:"local_library"})}function QK(e){return n.jsx(r,{...e,iconKey:"local_mall"})}function VK(e){return n.jsx(r,{...e,iconKey:"local_movies"})}function WK(e){return n.jsx(r,{...e,iconKey:"local_offer"})}function GK(e){return n.jsx(r,{...e,iconKey:"local_parking"})}function zK(e){return n.jsx(r,{...e,iconKey:"local_pharmacy"})}function HK(e){return n.jsx(r,{...e,iconKey:"local_phone"})}function UK(e){return n.jsx(r,{...e,iconKey:"local_pizza"})}function YK(e){return n.jsx(r,{...e,iconKey:"local_play"})}function jK(e){return n.jsx(r,{...e,iconKey:"local_police"})}function $K(e){return n.jsx(r,{...e,iconKey:"local_post_office"})}function qK(e){return n.jsx(r,{...e,iconKey:"local_printshop"})}function JK(e){return n.jsx(r,{...e,iconKey:"local_see"})}function ZK(e){return n.jsx(r,{...e,iconKey:"local_shipping"})}function XK(e){return n.jsx(r,{...e,iconKey:"local_taxi"})}function xK(e){return n.jsx(r,{...e,iconKey:"location_city"})}function RK(e){return n.jsx(r,{...e,iconKey:"location_disabled"})}function eS(e){return n.jsx(r,{...e,iconKey:"location_off"})}function nS(e){return n.jsx(r,{...e,iconKey:"location_on"})}function oS(e){return n.jsx(r,{...e,iconKey:"location_searching"})}function rS(e){return n.jsx(r,{...e,iconKey:"lock"})}function tS(e){return n.jsx(r,{...e,iconKey:"lock_clock"})}function cS(e){return n.jsx(r,{...e,iconKey:"lock_open"})}function iS(e){return n.jsx(r,{...e,iconKey:"lock_person"})}function aS(e){return n.jsx(r,{...e,iconKey:"lock_reset"})}function lS(e){return n.jsx(r,{...e,iconKey:"login"})}function sS(e){return n.jsx(r,{...e,iconKey:"logo_dev"})}function Ec(e){return n.jsx(r,{...e,iconKey:"logout"})}function dS(e){return n.jsx(r,{...e,iconKey:"looks"})}function uS(e){return n.jsx(r,{...e,iconKey:"looks_3"})}function fS(e){return n.jsx(r,{...e,iconKey:"looks_4"})}function AS(e){return n.jsx(r,{...e,iconKey:"looks_5"})}function yS(e){return n.jsx(r,{...e,iconKey:"looks_6"})}function gS(e){return n.jsx(r,{...e,iconKey:"looks_one"})}function _S(e){return n.jsx(r,{...e,iconKey:"looks_two"})}function hS(e){return n.jsx(r,{...e,iconKey:"loop"})}function IS(e){return n.jsx(r,{...e,iconKey:"loupe"})}function bS(e){return n.jsx(r,{...e,iconKey:"low_priority"})}function pS(e){return n.jsx(r,{...e,iconKey:"loyalty"})}function wS(e){return n.jsx(r,{...e,iconKey:"lte_mobiledata"})}function kS(e){return n.jsx(r,{...e,iconKey:"lte_plus_mobiledata"})}function mS(e){return n.jsx(r,{...e,iconKey:"luggage"})}function vS(e){return n.jsx(r,{...e,iconKey:"lunch_dining"})}function CS(e){return n.jsx(r,{...e,iconKey:"lyrics"})}function KS(e){return n.jsx(r,{...e,iconKey:"macro_off"})}function SS(e){return n.jsx(r,{...e,iconKey:"mail"})}function BS(e){return n.jsx(r,{...e,iconKey:"mail_lock"})}function ES(e){return n.jsx(r,{...e,iconKey:"mail_outline"})}function FS(e){return n.jsx(r,{...e,iconKey:"male"})}function PS(e){return n.jsx(r,{...e,iconKey:"man"})}function DS(e){return n.jsx(r,{...e,iconKey:"man_2"})}function NS(e){return n.jsx(r,{...e,iconKey:"man_3"})}function TS(e){return n.jsx(r,{...e,iconKey:"man_4"})}function MS(e){return n.jsx(r,{...e,iconKey:"manage_accounts"})}function OS(e){return n.jsx(r,{...e,iconKey:"manage_history"})}function LS(e){return n.jsx(r,{...e,iconKey:"manage_search"})}function QS(e){return n.jsx(r,{...e,iconKey:"map"})}function VS(e){return n.jsx(r,{...e,iconKey:"maps_home_work"})}function WS(e){return n.jsx(r,{...e,iconKey:"maps_ugc"})}function GS(e){return n.jsx(r,{...e,iconKey:"margin"})}function zS(e){return n.jsx(r,{...e,iconKey:"mark_as_unread"})}function HS(e){return n.jsx(r,{...e,iconKey:"mark_chat_read"})}function US(e){return n.jsx(r,{...e,iconKey:"mark_chat_unread"})}function YS(e){return n.jsx(r,{...e,iconKey:"mark_email_read"})}function jS(e){return n.jsx(r,{...e,iconKey:"mark_email_unread"})}function $S(e){return n.jsx(r,{...e,iconKey:"mark_unread_chat_alt"})}function qS(e){return n.jsx(r,{...e,iconKey:"markunread"})}function JS(e){return n.jsx(r,{...e,iconKey:"markunread_mailbox"})}function ZS(e){return n.jsx(r,{...e,iconKey:"masks"})}function XS(e){return n.jsx(r,{...e,iconKey:"maximize"})}function xS(e){return n.jsx(r,{...e,iconKey:"media_bluetooth_off"})}function RS(e){return n.jsx(r,{...e,iconKey:"media_bluetooth_on"})}function eB(e){return n.jsx(r,{...e,iconKey:"mediation"})}function nB(e){return n.jsx(r,{...e,iconKey:"medical_information"})}function oB(e){return n.jsx(r,{...e,iconKey:"medical_services"})}function rB(e){return n.jsx(r,{...e,iconKey:"medication"})}function tB(e){return n.jsx(r,{...e,iconKey:"medication_liquid"})}function cB(e){return n.jsx(r,{...e,iconKey:"meeting_room"})}function iB(e){return n.jsx(r,{...e,iconKey:"memory"})}function vr(e){return n.jsx(r,{...e,iconKey:"menu"})}function aB(e){return n.jsx(r,{...e,iconKey:"menu_book"})}function lB(e){return n.jsx(r,{...e,iconKey:"menu_open"})}function sB(e){return n.jsx(r,{...e,iconKey:"merge"})}function dB(e){return n.jsx(r,{...e,iconKey:"merge_type"})}function uB(e){return n.jsx(r,{...e,iconKey:"message"})}function fB(e){return n.jsx(r,{...e,iconKey:"mic"})}function AB(e){return n.jsx(r,{...e,iconKey:"mic_external_off"})}function yB(e){return n.jsx(r,{...e,iconKey:"mic_external_on"})}function gB(e){return n.jsx(r,{...e,iconKey:"mic_none"})}function _B(e){return n.jsx(r,{...e,iconKey:"mic_off"})}function hB(e){return n.jsx(r,{...e,iconKey:"microwave"})}function IB(e){return n.jsx(r,{...e,iconKey:"military_tech"})}function bB(e){return n.jsx(r,{...e,iconKey:"minimize"})}function pB(e){return n.jsx(r,{...e,iconKey:"minor_crash"})}function wB(e){return n.jsx(r,{...e,iconKey:"miscellaneous_services"})}function kB(e){return n.jsx(r,{...e,iconKey:"missed_video_call"})}function mB(e){return n.jsx(r,{...e,iconKey:"mms"})}function vB(e){return n.jsx(r,{...e,iconKey:"mobile_friendly"})}function CB(e){return n.jsx(r,{...e,iconKey:"mobile_off"})}function KB(e){return n.jsx(r,{...e,iconKey:"mobile_screen_share"})}function SB(e){return n.jsx(r,{...e,iconKey:"mobiledata_off"})}function BB(e){return n.jsx(r,{...e,iconKey:"mode"})}function EB(e){return n.jsx(r,{...e,iconKey:"mode_comment"})}function FB(e){return n.jsx(r,{...e,iconKey:"mode_edit"})}function PB(e){return n.jsx(r,{...e,iconKey:"mode_edit_outline"})}function DB(e){return n.jsx(r,{...e,iconKey:"mode_fan_off"})}function NB(e){return n.jsx(r,{...e,iconKey:"mode_night"})}function TB(e){return n.jsx(r,{...e,iconKey:"mode_of_travel"})}function MB(e){return n.jsx(r,{...e,iconKey:"mode_standby"})}function OB(e){return n.jsx(r,{...e,iconKey:"model_training"})}function LB(e){return n.jsx(r,{...e,iconKey:"monetization_on"})}function QB(e){return n.jsx(r,{...e,iconKey:"money"})}function VB(e){return n.jsx(r,{...e,iconKey:"money_off"})}function WB(e){return n.jsx(r,{...e,iconKey:"money_off_csred"})}function GB(e){return n.jsx(r,{...e,iconKey:"monitor"})}function zB(e){return n.jsx(r,{...e,iconKey:"monitor_heart"})}function HB(e){return n.jsx(r,{...e,iconKey:"monitor_weight"})}function UB(e){return n.jsx(r,{...e,iconKey:"monochrome_photos"})}function YB(e){return n.jsx(r,{...e,iconKey:"mood"})}function jB(e){return n.jsx(r,{...e,iconKey:"mood_bad"})}function $B(e){return n.jsx(r,{...e,iconKey:"moped"})}function qB(e){return n.jsx(r,{...e,iconKey:"more"})}function JB(e){return n.jsx(r,{...e,iconKey:"more_horiz"})}function ZB(e){return n.jsx(r,{...e,iconKey:"more_time"})}function Cr(e){return n.jsx(r,{...e,iconKey:"more_vert"})}function XB(e){return n.jsx(r,{...e,iconKey:"mosque"})}function xB(e){return n.jsx(r,{...e,iconKey:"motion_photos_auto"})}function RB(e){return n.jsx(r,{...e,iconKey:"motion_photos_off"})}function eE(e){return n.jsx(r,{...e,iconKey:"motion_photos_on"})}function nE(e){return n.jsx(r,{...e,iconKey:"motion_photos_pause"})}function oE(e){return n.jsx(r,{...e,iconKey:"motion_photos_paused"})}function rE(e){return n.jsx(r,{...e,iconKey:"mouse"})}function tE(e){return n.jsx(r,{...e,iconKey:"move_down"})}function cE(e){return n.jsx(r,{...e,iconKey:"move_to_inbox"})}function iE(e){return n.jsx(r,{...e,iconKey:"move_up"})}function aE(e){return n.jsx(r,{...e,iconKey:"movie"})}function lE(e){return n.jsx(r,{...e,iconKey:"movie_creation"})}function sE(e){return n.jsx(r,{...e,iconKey:"movie_filter"})}function dE(e){return n.jsx(r,{...e,iconKey:"moving"})}function uE(e){return n.jsx(r,{...e,iconKey:"mp"})}function fE(e){return n.jsx(r,{...e,iconKey:"multiline_chart"})}function AE(e){return n.jsx(r,{...e,iconKey:"multiple_stop"})}function yE(e){return n.jsx(r,{...e,iconKey:"museum"})}function gE(e){return n.jsx(r,{...e,iconKey:"music_note"})}function _E(e){return n.jsx(r,{...e,iconKey:"music_off"})}function hE(e){return n.jsx(r,{...e,iconKey:"music_video"})}function IE(e){return n.jsx(r,{...e,iconKey:"my_location"})}function bE(e){return n.jsx(r,{...e,iconKey:"nat"})}function pE(e){return n.jsx(r,{...e,iconKey:"nature"})}function wE(e){return n.jsx(r,{...e,iconKey:"nature_people"})}function kE(e){return n.jsx(r,{...e,iconKey:"navigate_before"})}function mE(e){return n.jsx(r,{...e,iconKey:"navigate_next"})}function vE(e){return n.jsx(r,{...e,iconKey:"navigation"})}function CE(e){return n.jsx(r,{...e,iconKey:"near_me"})}function KE(e){return n.jsx(r,{...e,iconKey:"near_me_disabled"})}function SE(e){return n.jsx(r,{...e,iconKey:"nearby_error"})}function BE(e){return n.jsx(r,{...e,iconKey:"nearby_off"})}function EE(e){return n.jsx(r,{...e,iconKey:"nest_cam_wired_stand"})}function FE(e){return n.jsx(r,{...e,iconKey:"network_cell"})}function PE(e){return n.jsx(r,{...e,iconKey:"network_check"})}function DE(e){return n.jsx(r,{...e,iconKey:"network_locked"})}function NE(e){return n.jsx(r,{...e,iconKey:"network_ping"})}function TE(e){return n.jsx(r,{...e,iconKey:"network_wifi"})}function ME(e){return n.jsx(r,{...e,iconKey:"network_wifi_1_bar"})}function OE(e){return n.jsx(r,{...e,iconKey:"network_wifi_2_bar"})}function LE(e){return n.jsx(r,{...e,iconKey:"network_wifi_3_bar"})}function QE(e){return n.jsx(r,{...e,iconKey:"new_label"})}function VE(e){return n.jsx(r,{...e,iconKey:"new_releases"})}function WE(e){return n.jsx(r,{...e,iconKey:"newspaper"})}function GE(e){return n.jsx(r,{...e,iconKey:"next_plan"})}function zE(e){return n.jsx(r,{...e,iconKey:"next_week"})}function HE(e){return n.jsx(r,{...e,iconKey:"nfc"})}function UE(e){return n.jsx(r,{...e,iconKey:"night_shelter"})}function YE(e){return n.jsx(r,{...e,iconKey:"nightlife"})}function jE(e){return n.jsx(r,{...e,iconKey:"nightlight"})}function $E(e){return n.jsx(r,{...e,iconKey:"nightlight_round"})}function qE(e){return n.jsx(r,{...e,iconKey:"nights_stay"})}function JE(e){return n.jsx(r,{...e,iconKey:"no_accounts"})}function ZE(e){return n.jsx(r,{...e,iconKey:"no_adult_content"})}function XE(e){return n.jsx(r,{...e,iconKey:"no_backpack"})}function xE(e){return n.jsx(r,{...e,iconKey:"no_cell"})}function RE(e){return n.jsx(r,{...e,iconKey:"no_crash"})}function eF(e){return n.jsx(r,{...e,iconKey:"no_drinks"})}function nF(e){return n.jsx(r,{...e,iconKey:"no_encryption"})}function oF(e){return n.jsx(r,{...e,iconKey:"no_encryption_gmailerrorred"})}function rF(e){return n.jsx(r,{...e,iconKey:"no_flash"})}function tF(e){return n.jsx(r,{...e,iconKey:"no_food"})}function cF(e){return n.jsx(r,{...e,iconKey:"no_luggage"})}function iF(e){return n.jsx(r,{...e,iconKey:"no_meals"})}function aF(e){return n.jsx(r,{...e,iconKey:"no_meeting_room"})}function lF(e){return n.jsx(r,{...e,iconKey:"no_photography"})}function sF(e){return n.jsx(r,{...e,iconKey:"no_sim"})}function dF(e){return n.jsx(r,{...e,iconKey:"no_stroller"})}function uF(e){return n.jsx(r,{...e,iconKey:"no_transfer"})}function fF(e){return n.jsx(r,{...e,iconKey:"noise_aware"})}function AF(e){return n.jsx(r,{...e,iconKey:"noise_control_off"})}function yF(e){return n.jsx(r,{...e,iconKey:"nordic_walking"})}function gF(e){return n.jsx(r,{...e,iconKey:"north"})}function _F(e){return n.jsx(r,{...e,iconKey:"north_east"})}function hF(e){return n.jsx(r,{...e,iconKey:"north_west"})}function IF(e){return n.jsx(r,{...e,iconKey:"not_accessible"})}function bF(e){return n.jsx(r,{...e,iconKey:"not_interested"})}function pF(e){return n.jsx(r,{...e,iconKey:"not_listed_location"})}function wF(e){return n.jsx(r,{...e,iconKey:"not_started"})}function kF(e){return n.jsx(r,{...e,iconKey:"note"})}function mF(e){return n.jsx(r,{...e,iconKey:"note_add"})}function vF(e){return n.jsx(r,{...e,iconKey:"note_alt"})}function CF(e){return n.jsx(r,{...e,iconKey:"notes"})}function KF(e){return n.jsx(r,{...e,iconKey:"notification_add"})}function SF(e){return n.jsx(r,{...e,iconKey:"notification_important"})}function BF(e){return n.jsx(r,{...e,iconKey:"notifications"})}function EF(e){return n.jsx(r,{...e,iconKey:"notifications_active"})}function FF(e){return n.jsx(r,{...e,iconKey:"notifications_none"})}function PF(e){return n.jsx(r,{...e,iconKey:"notifications_off"})}function DF(e){return n.jsx(r,{...e,iconKey:"notifications_paused"})}function Fc(e){return n.jsx(r,{...e,iconKey:"numbers"})}function NF(e){return n.jsx(r,{...e,iconKey:"offline_bolt"})}function TF(e){return n.jsx(r,{...e,iconKey:"offline_pin"})}function MF(e){return n.jsx(r,{...e,iconKey:"offline_share"})}function OF(e){return n.jsx(r,{...e,iconKey:"oil_barrel"})}function LF(e){return n.jsx(r,{...e,iconKey:"on_device_training"})}function QF(e){return n.jsx(r,{...e,iconKey:"ondemand_video"})}function VF(e){return n.jsx(r,{...e,iconKey:"online_prediction"})}function WF(e){return n.jsx(r,{...e,iconKey:"opacity"})}function GF(e){return n.jsx(r,{...e,iconKey:"open_in_browser"})}function zF(e){return n.jsx(r,{...e,iconKey:"open_in_full"})}function Rn(e){return n.jsx(r,{...e,iconKey:"open_in_new"})}function HF(e){return n.jsx(r,{...e,iconKey:"open_in_new_off"})}function UF(e){return n.jsx(r,{...e,iconKey:"open_with"})}function YF(e){return n.jsx(r,{...e,iconKey:"other_houses"})}function jF(e){return n.jsx(r,{...e,iconKey:"outbound"})}function $F(e){return n.jsx(r,{...e,iconKey:"outbox"})}function qF(e){return n.jsx(r,{...e,iconKey:"outdoor_grill"})}function JF(e){return n.jsx(r,{...e,iconKey:"outlet"})}function ZF(e){return n.jsx(r,{...e,iconKey:"outlined_flag"})}function XF(e){return n.jsx(r,{...e,iconKey:"output"})}function xF(e){return n.jsx(r,{...e,iconKey:"padding"})}function RF(e){return n.jsx(r,{...e,iconKey:"pages"})}function eP(e){return n.jsx(r,{...e,iconKey:"pageview"})}function nP(e){return n.jsx(r,{...e,iconKey:"paid"})}function oP(e){return n.jsx(r,{...e,iconKey:"palette"})}function rP(e){return n.jsx(r,{...e,iconKey:"pan_tool"})}function tP(e){return n.jsx(r,{...e,iconKey:"pan_tool_alt"})}function cP(e){return n.jsx(r,{...e,iconKey:"panorama"})}function iP(e){return n.jsx(r,{...e,iconKey:"panorama_fish_eye"})}function aP(e){return n.jsx(r,{...e,iconKey:"panorama_horizontal"})}function lP(e){return n.jsx(r,{...e,iconKey:"panorama_horizontal_select"})}function sP(e){return n.jsx(r,{...e,iconKey:"panorama_photosphere"})}function dP(e){return n.jsx(r,{...e,iconKey:"panorama_photosphere_select"})}function uP(e){return n.jsx(r,{...e,iconKey:"panorama_vertical"})}function fP(e){return n.jsx(r,{...e,iconKey:"panorama_vertical_select"})}function AP(e){return n.jsx(r,{...e,iconKey:"panorama_wide_angle"})}function yP(e){return n.jsx(r,{...e,iconKey:"panorama_wide_angle_select"})}function gP(e){return n.jsx(r,{...e,iconKey:"paragliding"})}function _P(e){return n.jsx(r,{...e,iconKey:"park"})}function hP(e){return n.jsx(r,{...e,iconKey:"party_mode"})}function IP(e){return n.jsx(r,{...e,iconKey:"password"})}function bP(e){return n.jsx(r,{...e,iconKey:"pattern"})}function pP(e){return n.jsx(r,{...e,iconKey:"pause"})}function wP(e){return n.jsx(r,{...e,iconKey:"pause_circle"})}function kP(e){return n.jsx(r,{...e,iconKey:"pause_circle_filled"})}function mP(e){return n.jsx(r,{...e,iconKey:"pause_circle_outline"})}function vP(e){return n.jsx(r,{...e,iconKey:"pause_presentation"})}function CP(e){return n.jsx(r,{...e,iconKey:"payment"})}function KP(e){return n.jsx(r,{...e,iconKey:"payments"})}function SP(e){return n.jsx(r,{...e,iconKey:"pedal_bike"})}function BP(e){return n.jsx(r,{...e,iconKey:"pending"})}function EP(e){return n.jsx(r,{...e,iconKey:"pending_actions"})}function FP(e){return n.jsx(r,{...e,iconKey:"pentagon"})}function PP(e){return n.jsx(r,{...e,iconKey:"people"})}function DP(e){return n.jsx(r,{...e,iconKey:"people_alt"})}function NP(e){return n.jsx(r,{...e,iconKey:"people_outline"})}function TP(e){return n.jsx(r,{...e,iconKey:"percent"})}function MP(e){return n.jsx(r,{...e,iconKey:"perm_camera_mic"})}function OP(e){return n.jsx(r,{...e,iconKey:"perm_contact_calendar"})}function LP(e){return n.jsx(r,{...e,iconKey:"perm_data_setting"})}function QP(e){return n.jsx(r,{...e,iconKey:"perm_device_information"})}function VP(e){return n.jsx(r,{...e,iconKey:"perm_identity"})}function WP(e){return n.jsx(r,{...e,iconKey:"perm_media"})}function GP(e){return n.jsx(r,{...e,iconKey:"perm_phone_msg"})}function zP(e){return n.jsx(r,{...e,iconKey:"perm_scan_wifi"})}function HP(e){return n.jsx(r,{...e,iconKey:"person"})}function UP(e){return n.jsx(r,{...e,iconKey:"person_2"})}function YP(e){return n.jsx(r,{...e,iconKey:"person_3"})}function jP(e){return n.jsx(r,{...e,iconKey:"person_4"})}function $P(e){return n.jsx(r,{...e,iconKey:"person_add"})}function qP(e){return n.jsx(r,{...e,iconKey:"person_add_alt"})}function JP(e){return n.jsx(r,{...e,iconKey:"person_add_alt_1"})}function ZP(e){return n.jsx(r,{...e,iconKey:"person_add_disabled"})}function XP(e){return n.jsx(r,{...e,iconKey:"person_off"})}function xP(e){return n.jsx(r,{...e,iconKey:"person_outline"})}function RP(e){return n.jsx(r,{...e,iconKey:"person_pin"})}function e1(e){return n.jsx(r,{...e,iconKey:"person_pin_circle"})}function n1(e){return n.jsx(r,{...e,iconKey:"person_remove"})}function o1(e){return n.jsx(r,{...e,iconKey:"person_remove_alt_1"})}function r1(e){return n.jsx(r,{...e,iconKey:"person_search"})}function t1(e){return n.jsx(r,{...e,iconKey:"personal_injury"})}function c1(e){return n.jsx(r,{...e,iconKey:"personal_video"})}function i1(e){return n.jsx(r,{...e,iconKey:"pest_control"})}function a1(e){return n.jsx(r,{...e,iconKey:"pest_control_rodent"})}function l1(e){return n.jsx(r,{...e,iconKey:"pets"})}function s1(e){return n.jsx(r,{...e,iconKey:"phishing"})}function d1(e){return n.jsx(r,{...e,iconKey:"phone"})}function u1(e){return n.jsx(r,{...e,iconKey:"phone_android"})}function f1(e){return n.jsx(r,{...e,iconKey:"phone_bluetooth_speaker"})}function A1(e){return n.jsx(r,{...e,iconKey:"phone_callback"})}function y1(e){return n.jsx(r,{...e,iconKey:"phone_disabled"})}function g1(e){return n.jsx(r,{...e,iconKey:"phone_enabled"})}function _1(e){return n.jsx(r,{...e,iconKey:"phone_forwarded"})}function h1(e){return n.jsx(r,{...e,iconKey:"phone_iphone"})}function I1(e){return n.jsx(r,{...e,iconKey:"phone_locked"})}function b1(e){return n.jsx(r,{...e,iconKey:"phone_missed"})}function p1(e){return n.jsx(r,{...e,iconKey:"phone_paused"})}function w1(e){return n.jsx(r,{...e,iconKey:"phonelink"})}function k1(e){return n.jsx(r,{...e,iconKey:"phonelink_erase"})}function m1(e){return n.jsx(r,{...e,iconKey:"phonelink_lock"})}function v1(e){return n.jsx(r,{...e,iconKey:"phonelink_off"})}function C1(e){return n.jsx(r,{...e,iconKey:"phonelink_ring"})}function K1(e){return n.jsx(r,{...e,iconKey:"phonelink_setup"})}function S1(e){return n.jsx(r,{...e,iconKey:"photo"})}function B1(e){return n.jsx(r,{...e,iconKey:"photo_album"})}function E1(e){return n.jsx(r,{...e,iconKey:"photo_camera"})}function F1(e){return n.jsx(r,{...e,iconKey:"photo_camera_back"})}function P1(e){return n.jsx(r,{...e,iconKey:"photo_camera_front"})}function D1(e){return n.jsx(r,{...e,iconKey:"photo_filter"})}function N1(e){return n.jsx(r,{...e,iconKey:"photo_library"})}function T1(e){return n.jsx(r,{...e,iconKey:"photo_size_select_actual"})}function M1(e){return n.jsx(r,{...e,iconKey:"photo_size_select_large"})}function O1(e){return n.jsx(r,{...e,iconKey:"photo_size_select_small"})}function L1(e){return n.jsx(r,{...e,iconKey:"php"})}function Q1(e){return n.jsx(r,{...e,iconKey:"piano"})}function V1(e){return n.jsx(r,{...e,iconKey:"piano_off"})}function W1(e){return n.jsx(r,{...e,iconKey:"picture_as_pdf"})}function G1(e){return n.jsx(r,{...e,iconKey:"picture_in_picture"})}function z1(e){return n.jsx(r,{...e,iconKey:"picture_in_picture_alt"})}function H1(e){return n.jsx(r,{...e,iconKey:"pie_chart"})}function U1(e){return n.jsx(r,{...e,iconKey:"pie_chart_outline"})}function Y1(e){return n.jsx(r,{...e,iconKey:"pin"})}function j1(e){return n.jsx(r,{...e,iconKey:"pin_drop"})}function $1(e){return n.jsx(r,{...e,iconKey:"pin_end"})}function q1(e){return n.jsx(r,{...e,iconKey:"pin_invoke"})}function J1(e){return n.jsx(r,{...e,iconKey:"pinch"})}function Z1(e){return n.jsx(r,{...e,iconKey:"pivot_table_chart"})}function X1(e){return n.jsx(r,{...e,iconKey:"pix"})}function x1(e){return n.jsx(r,{...e,iconKey:"place"})}function R1(e){return n.jsx(r,{...e,iconKey:"plagiarism"})}function eD(e){return n.jsx(r,{...e,iconKey:"play_arrow"})}function nD(e){return n.jsx(r,{...e,iconKey:"play_circle"})}function oD(e){return n.jsx(r,{...e,iconKey:"play_circle_filled"})}function rD(e){return n.jsx(r,{...e,iconKey:"play_circle_outline"})}function tD(e){return n.jsx(r,{...e,iconKey:"play_disabled"})}function cD(e){return n.jsx(r,{...e,iconKey:"play_for_work"})}function iD(e){return n.jsx(r,{...e,iconKey:"play_lesson"})}function aD(e){return n.jsx(r,{...e,iconKey:"playlist_add"})}function lD(e){return n.jsx(r,{...e,iconKey:"playlist_add_check"})}function sD(e){return n.jsx(r,{...e,iconKey:"playlist_add_check_circle"})}function dD(e){return n.jsx(r,{...e,iconKey:"playlist_add_circle"})}function uD(e){return n.jsx(r,{...e,iconKey:"playlist_play"})}function fD(e){return n.jsx(r,{...e,iconKey:"playlist_remove"})}function AD(e){return n.jsx(r,{...e,iconKey:"plumbing"})}function yD(e){return n.jsx(r,{...e,iconKey:"plus_one"})}function gD(e){return n.jsx(r,{...e,iconKey:"podcasts"})}function _D(e){return n.jsx(r,{...e,iconKey:"point_of_sale"})}function hD(e){return n.jsx(r,{...e,iconKey:"policy"})}function ID(e){return n.jsx(r,{...e,iconKey:"poll"})}function bD(e){return n.jsx(r,{...e,iconKey:"polyline"})}function pD(e){return n.jsx(r,{...e,iconKey:"polymer"})}function wD(e){return n.jsx(r,{...e,iconKey:"pool"})}function kD(e){return n.jsx(r,{...e,iconKey:"portable_wifi_off"})}function mD(e){return n.jsx(r,{...e,iconKey:"portrait"})}function vD(e){return n.jsx(r,{...e,iconKey:"post_add"})}function CD(e){return n.jsx(r,{...e,iconKey:"power"})}function KD(e){return n.jsx(r,{...e,iconKey:"power_input"})}function SD(e){return n.jsx(r,{...e,iconKey:"power_off"})}function BD(e){return n.jsx(r,{...e,iconKey:"power_settings_new"})}function ED(e){return n.jsx(r,{...e,iconKey:"precision_manufacturing"})}function FD(e){return n.jsx(r,{...e,iconKey:"pregnant_woman"})}function PD(e){return n.jsx(r,{...e,iconKey:"present_to_all"})}function DD(e){return n.jsx(r,{...e,iconKey:"preview"})}function ND(e){return n.jsx(r,{...e,iconKey:"price_change"})}function TD(e){return n.jsx(r,{...e,iconKey:"price_check"})}function MD(e){return n.jsx(r,{...e,iconKey:"print"})}function OD(e){return n.jsx(r,{...e,iconKey:"print_disabled"})}function LD(e){return n.jsx(r,{...e,iconKey:"priority_high"})}function QD(e){return n.jsx(r,{...e,iconKey:"privacy_tip"})}function VD(e){return n.jsx(r,{...e,iconKey:"private_connectivity"})}function WD(e){return n.jsx(r,{...e,iconKey:"production_quantity_limits"})}function GD(e){return n.jsx(r,{...e,iconKey:"propane"})}function zD(e){return n.jsx(r,{...e,iconKey:"propane_tank"})}function HD(e){return n.jsx(r,{...e,iconKey:"psychology"})}function UD(e){return n.jsx(r,{...e,iconKey:"psychology_alt"})}function YD(e){return n.jsx(r,{...e,iconKey:"public"})}function jD(e){return n.jsx(r,{...e,iconKey:"public_off"})}function $D(e){return n.jsx(r,{...e,iconKey:"publish"})}function qD(e){return n.jsx(r,{...e,iconKey:"published_with_changes"})}function JD(e){return n.jsx(r,{...e,iconKey:"punch_clock"})}function ZD(e){return n.jsx(r,{...e,iconKey:"push_pin"})}function XD(e){return n.jsx(r,{...e,iconKey:"qr_code"})}function xD(e){return n.jsx(r,{...e,iconKey:"qr_code_2"})}function RD(e){return n.jsx(r,{...e,iconKey:"qr_code_scanner"})}function eN(e){return n.jsx(r,{...e,iconKey:"query_builder"})}function nN(e){return n.jsx(r,{...e,iconKey:"query_stats"})}function oN(e){return n.jsx(r,{...e,iconKey:"question_answer"})}function rN(e){return n.jsx(r,{...e,iconKey:"question_mark"})}function tN(e){return n.jsx(r,{...e,iconKey:"queue"})}function cN(e){return n.jsx(r,{...e,iconKey:"queue_music"})}function iN(e){return n.jsx(r,{...e,iconKey:"queue_play_next"})}function aN(e){return n.jsx(r,{...e,iconKey:"quickreply"})}function lN(e){return n.jsx(r,{...e,iconKey:"quiz"})}function sN(e){return n.jsx(r,{...e,iconKey:"r_mobiledata"})}function dN(e){return n.jsx(r,{...e,iconKey:"radar"})}function uN(e){return n.jsx(r,{...e,iconKey:"radio"})}function fN(e){return n.jsx(r,{...e,iconKey:"radio_button_checked"})}function AN(e){return n.jsx(r,{...e,iconKey:"radio_button_unchecked"})}function yN(e){return n.jsx(r,{...e,iconKey:"railway_alert"})}function gN(e){return n.jsx(r,{...e,iconKey:"ramen_dining"})}function _N(e){return n.jsx(r,{...e,iconKey:"ramp_left"})}function hN(e){return n.jsx(r,{...e,iconKey:"ramp_right"})}function IN(e){return n.jsx(r,{...e,iconKey:"rate_review"})}function bN(e){return n.jsx(r,{...e,iconKey:"raw_off"})}function pN(e){return n.jsx(r,{...e,iconKey:"raw_on"})}function wN(e){return n.jsx(r,{...e,iconKey:"read_more"})}function kN(e){return n.jsx(r,{...e,iconKey:"real_estate_agent"})}function mN(e){return n.jsx(r,{...e,iconKey:"receipt"})}function vN(e){return n.jsx(r,{...e,iconKey:"receipt_long"})}function CN(e){return n.jsx(r,{...e,iconKey:"recent_actors"})}function KN(e){return n.jsx(r,{...e,iconKey:"recommend"})}function SN(e){return n.jsx(r,{...e,iconKey:"record_voice_over"})}function BN(e){return n.jsx(r,{...e,iconKey:"rectangle"})}function EN(e){return n.jsx(r,{...e,iconKey:"recycling"})}function FN(e){return n.jsx(r,{...e,iconKey:"redeem"})}function PN(e){return n.jsx(r,{...e,iconKey:"redo"})}function DN(e){return n.jsx(r,{...e,iconKey:"reduce_capacity"})}function NN(e){return n.jsx(r,{...e,iconKey:"refresh"})}function TN(e){return n.jsx(r,{...e,iconKey:"remember_me"})}function eo(e){return n.jsx(r,{...e,iconKey:"remove"})}function Pc(e){return n.jsx(r,{...e,iconKey:"remove_circle"})}function MN(e){return n.jsx(r,{...e,iconKey:"remove_circle_outline"})}function ON(e){return n.jsx(r,{...e,iconKey:"remove_done"})}function LN(e){return n.jsx(r,{...e,iconKey:"remove_from_queue"})}function QN(e){return n.jsx(r,{...e,iconKey:"remove_moderator"})}function VN(e){return n.jsx(r,{...e,iconKey:"remove_red_eye"})}function WN(e){return n.jsx(r,{...e,iconKey:"remove_road"})}function GN(e){return n.jsx(r,{...e,iconKey:"remove_shopping_cart"})}function zN(e){return n.jsx(r,{...e,iconKey:"reorder"})}function HN(e){return n.jsx(r,{...e,iconKey:"repartition"})}function Kr(e){return n.jsx(r,{...e,iconKey:"repeat"})}function UN(e){return n.jsx(r,{...e,iconKey:"repeat_on"})}function YN(e){return n.jsx(r,{...e,iconKey:"repeat_one"})}function jN(e){return n.jsx(r,{...e,iconKey:"repeat_one_on"})}function $N(e){return n.jsx(r,{...e,iconKey:"replay"})}function qN(e){return n.jsx(r,{...e,iconKey:"replay_10"})}function JN(e){return n.jsx(r,{...e,iconKey:"replay_30"})}function ZN(e){return n.jsx(r,{...e,iconKey:"replay_5"})}function XN(e){return n.jsx(r,{...e,iconKey:"replay_circle_filled"})}function xN(e){return n.jsx(r,{...e,iconKey:"reply"})}function RN(e){return n.jsx(r,{...e,iconKey:"reply_all"})}function eT(e){return n.jsx(r,{...e,iconKey:"report"})}function nT(e){return n.jsx(r,{...e,iconKey:"report_gmailerrorred"})}function oT(e){return n.jsx(r,{...e,iconKey:"report_off"})}function rT(e){return n.jsx(r,{...e,iconKey:"report_problem"})}function tT(e){return n.jsx(r,{...e,iconKey:"request_page"})}function cT(e){return n.jsx(r,{...e,iconKey:"request_quote"})}function iT(e){return n.jsx(r,{...e,iconKey:"reset_tv"})}function aT(e){return n.jsx(r,{...e,iconKey:"restart_alt"})}function lT(e){return n.jsx(r,{...e,iconKey:"restaurant"})}function sT(e){return n.jsx(r,{...e,iconKey:"restaurant_menu"})}function dT(e){return n.jsx(r,{...e,iconKey:"restore"})}function uT(e){return n.jsx(r,{...e,iconKey:"restore_from_trash"})}function fT(e){return n.jsx(r,{...e,iconKey:"restore_page"})}function AT(e){return n.jsx(r,{...e,iconKey:"reviews"})}function yT(e){return n.jsx(r,{...e,iconKey:"rice_bowl"})}function gT(e){return n.jsx(r,{...e,iconKey:"ring_volume"})}function _T(e){return n.jsx(r,{...e,iconKey:"rocket"})}function hT(e){return n.jsx(r,{...e,iconKey:"rocket_launch"})}function IT(e){return n.jsx(r,{...e,iconKey:"roller_shades"})}function bT(e){return n.jsx(r,{...e,iconKey:"roller_shades_closed"})}function pT(e){return n.jsx(r,{...e,iconKey:"roller_skating"})}function wT(e){return n.jsx(r,{...e,iconKey:"roofing"})}function kT(e){return n.jsx(r,{...e,iconKey:"room"})}function mT(e){return n.jsx(r,{...e,iconKey:"room_preferences"})}function vT(e){return n.jsx(r,{...e,iconKey:"room_service"})}function CT(e){return n.jsx(r,{...e,iconKey:"rotate_90_degrees_ccw"})}function KT(e){return n.jsx(r,{...e,iconKey:"rotate_90_degrees_cw"})}function ST(e){return n.jsx(r,{...e,iconKey:"rotate_left"})}function BT(e){return n.jsx(r,{...e,iconKey:"rotate_right"})}function ET(e){return n.jsx(r,{...e,iconKey:"roundabout_left"})}function FT(e){return n.jsx(r,{...e,iconKey:"roundabout_right"})}function PT(e){return n.jsx(r,{...e,iconKey:"rounded_corner"})}function DT(e){return n.jsx(r,{...e,iconKey:"route"})}function NT(e){return n.jsx(r,{...e,iconKey:"router"})}function TT(e){return n.jsx(r,{...e,iconKey:"rowing"})}function MT(e){return n.jsx(r,{...e,iconKey:"rss_feed"})}function OT(e){return n.jsx(r,{...e,iconKey:"rsvp"})}function LT(e){return n.jsx(r,{...e,iconKey:"rtt"})}function QT(e){return n.jsx(r,{...e,iconKey:"rule"})}function VT(e){return n.jsx(r,{...e,iconKey:"rule_folder"})}function WT(e){return n.jsx(r,{...e,iconKey:"run_circle"})}function GT(e){return n.jsx(r,{...e,iconKey:"running_with_errors"})}function zT(e){return n.jsx(r,{...e,iconKey:"rv_hookup"})}function HT(e){return n.jsx(r,{...e,iconKey:"safety_check"})}function UT(e){return n.jsx(r,{...e,iconKey:"safety_divider"})}function YT(e){return n.jsx(r,{...e,iconKey:"sailing"})}function jT(e){return n.jsx(r,{...e,iconKey:"sanitizer"})}function $T(e){return n.jsx(r,{...e,iconKey:"satellite"})}function qT(e){return n.jsx(r,{...e,iconKey:"satellite_alt"})}function JT(e){return n.jsx(r,{...e,iconKey:"save"})}function ZT(e){return n.jsx(r,{...e,iconKey:"save_alt"})}function XT(e){return n.jsx(r,{...e,iconKey:"save_as"})}function xT(e){return n.jsx(r,{...e,iconKey:"saved_search"})}function RT(e){return n.jsx(r,{...e,iconKey:"savings"})}function eM(e){return n.jsx(r,{...e,iconKey:"scale"})}function nM(e){return n.jsx(r,{...e,iconKey:"scanner"})}function oM(e){return n.jsx(r,{...e,iconKey:"scatter_plot"})}function Dc(e){return n.jsx(r,{...e,iconKey:"schedule"})}function rM(e){return n.jsx(r,{...e,iconKey:"schedule_send"})}function tM(e){return n.jsx(r,{...e,iconKey:"schema"})}function cM(e){return n.jsx(r,{...e,iconKey:"school"})}function iM(e){return n.jsx(r,{...e,iconKey:"science"})}function aM(e){return n.jsx(r,{...e,iconKey:"score"})}function lM(e){return n.jsx(r,{...e,iconKey:"scoreboard"})}function sM(e){return n.jsx(r,{...e,iconKey:"screen_lock_landscape"})}function dM(e){return n.jsx(r,{...e,iconKey:"screen_lock_portrait"})}function uM(e){return n.jsx(r,{...e,iconKey:"screen_lock_rotation"})}function fM(e){return n.jsx(r,{...e,iconKey:"screen_rotation"})}function AM(e){return n.jsx(r,{...e,iconKey:"screen_rotation_alt"})}function yM(e){return n.jsx(r,{...e,iconKey:"screen_search_desktop"})}function gM(e){return n.jsx(r,{...e,iconKey:"screen_share"})}function _M(e){return n.jsx(r,{...e,iconKey:"screenshot"})}function hM(e){return n.jsx(r,{...e,iconKey:"screenshot_monitor"})}function IM(e){return n.jsx(r,{...e,iconKey:"scuba_diving"})}function bM(e){return n.jsx(r,{...e,iconKey:"sd"})}function pM(e){return n.jsx(r,{...e,iconKey:"sd_card"})}function wM(e){return n.jsx(r,{...e,iconKey:"sd_card_alert"})}function kM(e){return n.jsx(r,{...e,iconKey:"sd_storage"})}function mM(e){return n.jsx(r,{...e,iconKey:"search_off"})}function vM(e){return n.jsx(r,{...e,iconKey:"security"})}function CM(e){return n.jsx(r,{...e,iconKey:"security_update"})}function KM(e){return n.jsx(r,{...e,iconKey:"security_update_good"})}function SM(e){return n.jsx(r,{...e,iconKey:"security_update_warning"})}function BM(e){return n.jsx(r,{...e,iconKey:"segment"})}function EM(e){return n.jsx(r,{...e,iconKey:"select_all"})}function FM(e){return n.jsx(r,{...e,iconKey:"self_improvement"})}function PM(e){return n.jsx(r,{...e,iconKey:"sell"})}function DM(e){return n.jsx(r,{...e,iconKey:"send"})}function NM(e){return n.jsx(r,{...e,iconKey:"send_and_archive"})}function TM(e){return n.jsx(r,{...e,iconKey:"send_time_extension"})}function MM(e){return n.jsx(r,{...e,iconKey:"send_to_mobile"})}function OM(e){return n.jsx(r,{...e,iconKey:"sensor_door"})}function LM(e){return n.jsx(r,{...e,iconKey:"sensor_occupied"})}function QM(e){return n.jsx(r,{...e,iconKey:"sensor_window"})}function VM(e){return n.jsx(r,{...e,iconKey:"sensors"})}function WM(e){return n.jsx(r,{...e,iconKey:"sensors_off"})}function GM(e){return n.jsx(r,{...e,iconKey:"sentiment_dissatisfied"})}function zM(e){return n.jsx(r,{...e,iconKey:"sentiment_neutral"})}function HM(e){return n.jsx(r,{...e,iconKey:"sentiment_satisfied"})}function UM(e){return n.jsx(r,{...e,iconKey:"sentiment_satisfied_alt"})}function YM(e){return n.jsx(r,{...e,iconKey:"sentiment_very_dissatisfied"})}function jM(e){return n.jsx(r,{...e,iconKey:"sentiment_very_satisfied"})}function $M(e){return n.jsx(r,{...e,iconKey:"set_meal"})}function qM(e){return n.jsx(r,{...e,iconKey:"settings"})}function JM(e){return n.jsx(r,{...e,iconKey:"settings_accessibility"})}function ZM(e){return n.jsx(r,{...e,iconKey:"settings_applications"})}function XM(e){return n.jsx(r,{...e,iconKey:"settings_backup_restore"})}function xM(e){return n.jsx(r,{...e,iconKey:"settings_bluetooth"})}function RM(e){return n.jsx(r,{...e,iconKey:"settings_brightness"})}function e2(e){return n.jsx(r,{...e,iconKey:"settings_cell"})}function n2(e){return n.jsx(r,{...e,iconKey:"settings_ethernet"})}function o2(e){return n.jsx(r,{...e,iconKey:"settings_input_antenna"})}function r2(e){return n.jsx(r,{...e,iconKey:"settings_input_component"})}function t2(e){return n.jsx(r,{...e,iconKey:"settings_input_composite"})}function c2(e){return n.jsx(r,{...e,iconKey:"settings_input_hdmi"})}function i2(e){return n.jsx(r,{...e,iconKey:"settings_input_svideo"})}function a2(e){return n.jsx(r,{...e,iconKey:"settings_overscan"})}function l2(e){return n.jsx(r,{...e,iconKey:"settings_phone"})}function s2(e){return n.jsx(r,{...e,iconKey:"settings_power"})}function d2(e){return n.jsx(r,{...e,iconKey:"settings_remote"})}function u2(e){return n.jsx(r,{...e,iconKey:"settings_suggest"})}function f2(e){return n.jsx(r,{...e,iconKey:"settings_system_daydream"})}function A2(e){return n.jsx(r,{...e,iconKey:"settings_voice"})}function y2(e){return n.jsx(r,{...e,iconKey:"severe_cold"})}function g2(e){return n.jsx(r,{...e,iconKey:"shape_line"})}function _2(e){return n.jsx(r,{...e,iconKey:"share"})}function h2(e){return n.jsx(r,{...e,iconKey:"share_location"})}function I2(e){return n.jsx(r,{...e,iconKey:"shield"})}function b2(e){return n.jsx(r,{...e,iconKey:"shield_moon"})}function p2(e){return n.jsx(r,{...e,iconKey:"shop"})}function w2(e){return n.jsx(r,{...e,iconKey:"shop_2"})}function k2(e){return n.jsx(r,{...e,iconKey:"shop_two"})}function m2(e){return n.jsx(r,{...e,iconKey:"shopping_bag"})}function v2(e){return n.jsx(r,{...e,iconKey:"shopping_basket"})}function C2(e){return n.jsx(r,{...e,iconKey:"shopping_cart"})}function K2(e){return n.jsx(r,{...e,iconKey:"shopping_cart_checkout"})}function Nc(e){return n.jsx(r,{...e,iconKey:"short_text"})}function S2(e){return n.jsx(r,{...e,iconKey:"shortcut"})}function B2(e){return n.jsx(r,{...e,iconKey:"show_chart"})}function E2(e){return n.jsx(r,{...e,iconKey:"shower"})}function F2(e){return n.jsx(r,{...e,iconKey:"shuffle"})}function P2(e){return n.jsx(r,{...e,iconKey:"shuffle_on"})}function D2(e){return n.jsx(r,{...e,iconKey:"shutter_speed"})}function N2(e){return n.jsx(r,{...e,iconKey:"sick"})}function T2(e){return n.jsx(r,{...e,iconKey:"sign_language"})}function M2(e){return n.jsx(r,{...e,iconKey:"signal_cellular_0_bar"})}function O2(e){return n.jsx(r,{...e,iconKey:"signal_cellular_4_bar"})}function L2(e){return n.jsx(r,{...e,iconKey:"signal_cellular_alt"})}function Q2(e){return n.jsx(r,{...e,iconKey:"signal_cellular_alt_1_bar"})}function V2(e){return n.jsx(r,{...e,iconKey:"signal_cellular_alt_2_bar"})}function W2(e){return n.jsx(r,{...e,iconKey:"signal_cellular_connected_no_internet_0_bar"})}function G2(e){return n.jsx(r,{...e,iconKey:"signal_cellular_connected_no_internet_4_bar"})}function z2(e){return n.jsx(r,{...e,iconKey:"signal_cellular_no_sim"})}function H2(e){return n.jsx(r,{...e,iconKey:"signal_cellular_nodata"})}function U2(e){return n.jsx(r,{...e,iconKey:"signal_cellular_null"})}function Y2(e){return n.jsx(r,{...e,iconKey:"signal_cellular_off"})}function j2(e){return n.jsx(r,{...e,iconKey:"signal_wifi_0_bar"})}function $2(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 J2(e){return n.jsx(r,{...e,iconKey:"signal_wifi_bad"})}function Z2(e){return n.jsx(r,{...e,iconKey:"signal_wifi_connected_no_internet_4"})}function X2(e){return n.jsx(r,{...e,iconKey:"signal_wifi_off"})}function x2(e){return n.jsx(r,{...e,iconKey:"signal_wifi_statusbar_4_bar"})}function R2(e){return n.jsx(r,{...e,iconKey:"signal_wifi_statusbar_connected_no_internet_4"})}function eO(e){return n.jsx(r,{...e,iconKey:"signal_wifi_statusbar_null"})}function nO(e){return n.jsx(r,{...e,iconKey:"signpost"})}function oO(e){return n.jsx(r,{...e,iconKey:"sim_card"})}function rO(e){return n.jsx(r,{...e,iconKey:"sim_card_alert"})}function tO(e){return n.jsx(r,{...e,iconKey:"sim_card_download"})}function cO(e){return n.jsx(r,{...e,iconKey:"single_bed"})}function iO(e){return n.jsx(r,{...e,iconKey:"sip"})}function aO(e){return n.jsx(r,{...e,iconKey:"skateboarding"})}function lO(e){return n.jsx(r,{...e,iconKey:"skip_next"})}function sO(e){return n.jsx(r,{...e,iconKey:"skip_previous"})}function dO(e){return n.jsx(r,{...e,iconKey:"sledding"})}function uO(e){return n.jsx(r,{...e,iconKey:"slideshow"})}function fO(e){return n.jsx(r,{...e,iconKey:"slow_motion_video"})}function AO(e){return n.jsx(r,{...e,iconKey:"smart_button"})}function yO(e){return n.jsx(r,{...e,iconKey:"smart_display"})}function gO(e){return n.jsx(r,{...e,iconKey:"smart_screen"})}function _O(e){return n.jsx(r,{...e,iconKey:"smart_toy"})}function hO(e){return n.jsx(r,{...e,iconKey:"smartphone"})}function IO(e){return n.jsx(r,{...e,iconKey:"smoke_free"})}function bO(e){return n.jsx(r,{...e,iconKey:"smoking_rooms"})}function pO(e){return n.jsx(r,{...e,iconKey:"sms"})}function wO(e){return n.jsx(r,{...e,iconKey:"sms_failed"})}function kO(e){return n.jsx(r,{...e,iconKey:"snippet_folder"})}function mO(e){return n.jsx(r,{...e,iconKey:"snooze"})}function vO(e){return n.jsx(r,{...e,iconKey:"snowboarding"})}function CO(e){return n.jsx(r,{...e,iconKey:"snowmobile"})}function KO(e){return n.jsx(r,{...e,iconKey:"snowshoeing"})}function SO(e){return n.jsx(r,{...e,iconKey:"soap"})}function BO(e){return n.jsx(r,{...e,iconKey:"social_distance"})}function EO(e){return n.jsx(r,{...e,iconKey:"solar_power"})}function FO(e){return n.jsx(r,{...e,iconKey:"sort"})}function PO(e){return n.jsx(r,{...e,iconKey:"sort_by_alpha"})}function DO(e){return n.jsx(r,{...e,iconKey:"sos"})}function NO(e){return n.jsx(r,{...e,iconKey:"soup_kitchen"})}function TO(e){return n.jsx(r,{...e,iconKey:"source"})}function MO(e){return n.jsx(r,{...e,iconKey:"south"})}function OO(e){return n.jsx(r,{...e,iconKey:"south_america"})}function LO(e){return n.jsx(r,{...e,iconKey:"south_east"})}function QO(e){return n.jsx(r,{...e,iconKey:"south_west"})}function VO(e){return n.jsx(r,{...e,iconKey:"spa"})}function WO(e){return n.jsx(r,{...e,iconKey:"space_bar"})}function GO(e){return n.jsx(r,{...e,iconKey:"space_dashboard"})}function zO(e){return n.jsx(r,{...e,iconKey:"spatial_audio"})}function HO(e){return n.jsx(r,{...e,iconKey:"spatial_audio_off"})}function UO(e){return n.jsx(r,{...e,iconKey:"spatial_tracking"})}function YO(e){return n.jsx(r,{...e,iconKey:"speaker"})}function jO(e){return n.jsx(r,{...e,iconKey:"speaker_group"})}function $O(e){return n.jsx(r,{...e,iconKey:"speaker_notes"})}function qO(e){return n.jsx(r,{...e,iconKey:"speaker_notes_off"})}function JO(e){return n.jsx(r,{...e,iconKey:"speaker_phone"})}function ZO(e){return n.jsx(r,{...e,iconKey:"speed"})}function XO(e){return n.jsx(r,{...e,iconKey:"spellcheck"})}function xO(e){return n.jsx(r,{...e,iconKey:"splitscreen"})}function RO(e){return n.jsx(r,{...e,iconKey:"spoke"})}function eL(e){return n.jsx(r,{...e,iconKey:"sports"})}function nL(e){return n.jsx(r,{...e,iconKey:"sports_bar"})}function oL(e){return n.jsx(r,{...e,iconKey:"sports_baseball"})}function rL(e){return n.jsx(r,{...e,iconKey:"sports_basketball"})}function tL(e){return n.jsx(r,{...e,iconKey:"sports_cricket"})}function cL(e){return n.jsx(r,{...e,iconKey:"sports_esports"})}function iL(e){return n.jsx(r,{...e,iconKey:"sports_football"})}function aL(e){return n.jsx(r,{...e,iconKey:"sports_golf"})}function lL(e){return n.jsx(r,{...e,iconKey:"sports_gymnastics"})}function sL(e){return n.jsx(r,{...e,iconKey:"sports_handball"})}function dL(e){return n.jsx(r,{...e,iconKey:"sports_hockey"})}function uL(e){return n.jsx(r,{...e,iconKey:"sports_kabaddi"})}function fL(e){return n.jsx(r,{...e,iconKey:"sports_martial_arts"})}function AL(e){return n.jsx(r,{...e,iconKey:"sports_mma"})}function yL(e){return n.jsx(r,{...e,iconKey:"sports_motorsports"})}function gL(e){return n.jsx(r,{...e,iconKey:"sports_rugby"})}function _L(e){return n.jsx(r,{...e,iconKey:"sports_score"})}function hL(e){return n.jsx(r,{...e,iconKey:"sports_soccer"})}function IL(e){return n.jsx(r,{...e,iconKey:"sports_tennis"})}function bL(e){return n.jsx(r,{...e,iconKey:"sports_volleyball"})}function pL(e){return n.jsx(r,{...e,iconKey:"square"})}function wL(e){return n.jsx(r,{...e,iconKey:"square_foot"})}function kL(e){return n.jsx(r,{...e,iconKey:"ssid_chart"})}function mL(e){return n.jsx(r,{...e,iconKey:"stacked_bar_chart"})}function vL(e){return n.jsx(r,{...e,iconKey:"stacked_line_chart"})}function CL(e){return n.jsx(r,{...e,iconKey:"stadium"})}function KL(e){return n.jsx(r,{...e,iconKey:"stairs"})}function Sr(e){return n.jsx(r,{...e,iconKey:"star"})}function Br(e){return n.jsx(r,{...e,iconKey:"star_border"})}function SL(e){return n.jsx(r,{...e,iconKey:"star_border_purple500"})}function BL(e){return n.jsx(r,{...e,iconKey:"star_half"})}function EL(e){return n.jsx(r,{...e,iconKey:"star_outline"})}function FL(e){return n.jsx(r,{...e,iconKey:"star_purple500"})}function PL(e){return n.jsx(r,{...e,iconKey:"star_rate"})}function DL(e){return n.jsx(r,{...e,iconKey:"stars"})}function NL(e){return n.jsx(r,{...e,iconKey:"start"})}function TL(e){return n.jsx(r,{...e,iconKey:"stay_current_landscape"})}function ML(e){return n.jsx(r,{...e,iconKey:"stay_current_portrait"})}function OL(e){return n.jsx(r,{...e,iconKey:"stay_primary_landscape"})}function LL(e){return n.jsx(r,{...e,iconKey:"stay_primary_portrait"})}function QL(e){return n.jsx(r,{...e,iconKey:"sticky_note_2"})}function VL(e){return n.jsx(r,{...e,iconKey:"stop"})}function WL(e){return n.jsx(r,{...e,iconKey:"stop_circle"})}function GL(e){return n.jsx(r,{...e,iconKey:"stop_screen_share"})}function zL(e){return n.jsx(r,{...e,iconKey:"storage"})}function HL(e){return n.jsx(r,{...e,iconKey:"store"})}function UL(e){return n.jsx(r,{...e,iconKey:"store_mall_directory"})}function YL(e){return n.jsx(r,{...e,iconKey:"storefront"})}function jL(e){return n.jsx(r,{...e,iconKey:"storm"})}function $L(e){return n.jsx(r,{...e,iconKey:"straight"})}function qL(e){return n.jsx(r,{...e,iconKey:"straighten"})}function JL(e){return n.jsx(r,{...e,iconKey:"stream"})}function ZL(e){return n.jsx(r,{...e,iconKey:"streetview"})}function XL(e){return n.jsx(r,{...e,iconKey:"strikethrough_s"})}function xL(e){return n.jsx(r,{...e,iconKey:"stroller"})}function RL(e){return n.jsx(r,{...e,iconKey:"style"})}function e4(e){return n.jsx(r,{...e,iconKey:"subdirectory_arrow_left"})}function n4(e){return n.jsx(r,{...e,iconKey:"subdirectory_arrow_right"})}function Tc(e){return n.jsx(r,{...e,iconKey:"subject"})}function o4(e){return n.jsx(r,{...e,iconKey:"subscript"})}function r4(e){return n.jsx(r,{...e,iconKey:"subscriptions"})}function t4(e){return n.jsx(r,{...e,iconKey:"subtitles"})}function c4(e){return n.jsx(r,{...e,iconKey:"subtitles_off"})}function i4(e){return n.jsx(r,{...e,iconKey:"subway"})}function a4(e){return n.jsx(r,{...e,iconKey:"summarize"})}function l4(e){return n.jsx(r,{...e,iconKey:"superscript"})}function s4(e){return n.jsx(r,{...e,iconKey:"supervised_user_circle"})}function d4(e){return n.jsx(r,{...e,iconKey:"supervisor_account"})}function u4(e){return n.jsx(r,{...e,iconKey:"support"})}function f4(e){return n.jsx(r,{...e,iconKey:"support_agent"})}function A4(e){return n.jsx(r,{...e,iconKey:"surfing"})}function y4(e){return n.jsx(r,{...e,iconKey:"surround_sound"})}function g4(e){return n.jsx(r,{...e,iconKey:"swap_calls"})}function _4(e){return n.jsx(r,{...e,iconKey:"swap_horiz"})}function h4(e){return n.jsx(r,{...e,iconKey:"swap_horizontal_circle"})}function I4(e){return n.jsx(r,{...e,iconKey:"swap_vert"})}function b4(e){return n.jsx(r,{...e,iconKey:"swap_vertical_circle"})}function p4(e){return n.jsx(r,{...e,iconKey:"swipe"})}function w4(e){return n.jsx(r,{...e,iconKey:"swipe_down"})}function k4(e){return n.jsx(r,{...e,iconKey:"swipe_down_alt"})}function m4(e){return n.jsx(r,{...e,iconKey:"swipe_left"})}function v4(e){return n.jsx(r,{...e,iconKey:"swipe_left_alt"})}function C4(e){return n.jsx(r,{...e,iconKey:"swipe_right"})}function K4(e){return n.jsx(r,{...e,iconKey:"swipe_right_alt"})}function S4(e){return n.jsx(r,{...e,iconKey:"swipe_up"})}function B4(e){return n.jsx(r,{...e,iconKey:"swipe_up_alt"})}function E4(e){return n.jsx(r,{...e,iconKey:"swipe_vertical"})}function F4(e){return n.jsx(r,{...e,iconKey:"switch_access_shortcut"})}function P4(e){return n.jsx(r,{...e,iconKey:"switch_access_shortcut_add"})}function D4(e){return n.jsx(r,{...e,iconKey:"switch_account"})}function N4(e){return n.jsx(r,{...e,iconKey:"switch_camera"})}function T4(e){return n.jsx(r,{...e,iconKey:"switch_left"})}function M4(e){return n.jsx(r,{...e,iconKey:"switch_right"})}function O4(e){return n.jsx(r,{...e,iconKey:"switch_video"})}function L4(e){return n.jsx(r,{...e,iconKey:"synagogue"})}function Q4(e){return n.jsx(r,{...e,iconKey:"sync"})}function V4(e){return n.jsx(r,{...e,iconKey:"sync_alt"})}function W4(e){return n.jsx(r,{...e,iconKey:"sync_disabled"})}function G4(e){return n.jsx(r,{...e,iconKey:"sync_lock"})}function z4(e){return n.jsx(r,{...e,iconKey:"sync_problem"})}function H4(e){return n.jsx(r,{...e,iconKey:"system_security_update"})}function U4(e){return n.jsx(r,{...e,iconKey:"system_security_update_good"})}function Y4(e){return n.jsx(r,{...e,iconKey:"system_security_update_warning"})}function j4(e){return n.jsx(r,{...e,iconKey:"system_update"})}function $4(e){return n.jsx(r,{...e,iconKey:"system_update_alt"})}function q4(e){return n.jsx(r,{...e,iconKey:"tab"})}function J4(e){return n.jsx(r,{...e,iconKey:"tab_unselected"})}function Z4(e){return n.jsx(r,{...e,iconKey:"table_bar"})}function X4(e){return n.jsx(r,{...e,iconKey:"table_chart"})}function x4(e){return n.jsx(r,{...e,iconKey:"table_restaurant"})}function R4(e){return n.jsx(r,{...e,iconKey:"table_rows"})}function eQ(e){return n.jsx(r,{...e,iconKey:"table_view"})}function nQ(e){return n.jsx(r,{...e,iconKey:"tablet"})}function oQ(e){return n.jsx(r,{...e,iconKey:"tablet_android"})}function rQ(e){return n.jsx(r,{...e,iconKey:"tablet_mac"})}function tQ(e){return n.jsx(r,{...e,iconKey:"tag"})}function cQ(e){return n.jsx(r,{...e,iconKey:"tag_faces"})}function iQ(e){return n.jsx(r,{...e,iconKey:"takeout_dining"})}function aQ(e){return n.jsx(r,{...e,iconKey:"tap_and_play"})}function lQ(e){return n.jsx(r,{...e,iconKey:"tapas"})}function sQ(e){return n.jsx(r,{...e,iconKey:"task"})}function dQ(e){return n.jsx(r,{...e,iconKey:"task_alt"})}function uQ(e){return n.jsx(r,{...e,iconKey:"taxi_alert"})}function fQ(e){return n.jsx(r,{...e,iconKey:"temple_buddhist"})}function AQ(e){return n.jsx(r,{...e,iconKey:"temple_hindu"})}function yQ(e){return n.jsx(r,{...e,iconKey:"terminal"})}function gQ(e){return n.jsx(r,{...e,iconKey:"terrain"})}function _Q(e){return n.jsx(r,{...e,iconKey:"text_decrease"})}function hQ(e){return n.jsx(r,{...e,iconKey:"text_fields"})}function IQ(e){return n.jsx(r,{...e,iconKey:"text_format"})}function bQ(e){return n.jsx(r,{...e,iconKey:"text_increase"})}function pQ(e){return n.jsx(r,{...e,iconKey:"text_rotate_up"})}function wQ(e){return n.jsx(r,{...e,iconKey:"text_rotate_vertical"})}function kQ(e){return n.jsx(r,{...e,iconKey:"text_rotation_angledown"})}function mQ(e){return n.jsx(r,{...e,iconKey:"text_rotation_angleup"})}function vQ(e){return n.jsx(r,{...e,iconKey:"text_rotation_down"})}function CQ(e){return n.jsx(r,{...e,iconKey:"text_rotation_none"})}function KQ(e){return n.jsx(r,{...e,iconKey:"text_snippet"})}function SQ(e){return n.jsx(r,{...e,iconKey:"textsms"})}function BQ(e){return n.jsx(r,{...e,iconKey:"texture"})}function EQ(e){return n.jsx(r,{...e,iconKey:"theater_comedy"})}function FQ(e){return n.jsx(r,{...e,iconKey:"theaters"})}function PQ(e){return n.jsx(r,{...e,iconKey:"thermostat"})}function DQ(e){return n.jsx(r,{...e,iconKey:"thermostat_auto"})}function NQ(e){return n.jsx(r,{...e,iconKey:"thumb_down"})}function TQ(e){return n.jsx(r,{...e,iconKey:"thumb_down_alt"})}function MQ(e){return n.jsx(r,{...e,iconKey:"thumb_down_off_alt"})}function OQ(e){return n.jsx(r,{...e,iconKey:"thumb_up"})}function LQ(e){return n.jsx(r,{...e,iconKey:"thumb_up_alt"})}function QQ(e){return n.jsx(r,{...e,iconKey:"thumb_up_off_alt"})}function VQ(e){return n.jsx(r,{...e,iconKey:"thumbs_up_down"})}function WQ(e){return n.jsx(r,{...e,iconKey:"thunderstorm"})}function GQ(e){return n.jsx(r,{...e,iconKey:"time_to_leave"})}function zQ(e){return n.jsx(r,{...e,iconKey:"timelapse"})}function HQ(e){return n.jsx(r,{...e,iconKey:"timeline"})}function UQ(e){return n.jsx(r,{...e,iconKey:"timer"})}function YQ(e){return n.jsx(r,{...e,iconKey:"timer_10"})}function jQ(e){return n.jsx(r,{...e,iconKey:"timer_10_select"})}function $Q(e){return n.jsx(r,{...e,iconKey:"timer_3"})}function qQ(e){return n.jsx(r,{...e,iconKey:"timer_3_select"})}function JQ(e){return n.jsx(r,{...e,iconKey:"timer_off"})}function ZQ(e){return n.jsx(r,{...e,iconKey:"tips_and_updates"})}function XQ(e){return n.jsx(r,{...e,iconKey:"tire_repair"})}function xQ(e){return n.jsx(r,{...e,iconKey:"title"})}function RQ(e){return n.jsx(r,{...e,iconKey:"toc"})}function eV(e){return n.jsx(r,{...e,iconKey:"today"})}function nV(e){return n.jsx(r,{...e,iconKey:"toggle_off"})}function oV(e){return n.jsx(r,{...e,iconKey:"toggle_on"})}function rV(e){return n.jsx(r,{...e,iconKey:"token"})}function tV(e){return n.jsx(r,{...e,iconKey:"toll"})}function cV(e){return n.jsx(r,{...e,iconKey:"tonality"})}function iV(e){return n.jsx(r,{...e,iconKey:"topic"})}function aV(e){return n.jsx(r,{...e,iconKey:"tornado"})}function lV(e){return n.jsx(r,{...e,iconKey:"touch_app"})}function sV(e){return n.jsx(r,{...e,iconKey:"tour"})}function dV(e){return n.jsx(r,{...e,iconKey:"toys"})}function uV(e){return n.jsx(r,{...e,iconKey:"track_changes"})}function fV(e){return n.jsx(r,{...e,iconKey:"traffic"})}function AV(e){return n.jsx(r,{...e,iconKey:"train"})}function yV(e){return n.jsx(r,{...e,iconKey:"tram"})}function gV(e){return n.jsx(r,{...e,iconKey:"transcribe"})}function _V(e){return n.jsx(r,{...e,iconKey:"transfer_within_a_station"})}function hV(e){return n.jsx(r,{...e,iconKey:"transform"})}function IV(e){return n.jsx(r,{...e,iconKey:"transgender"})}function bV(e){return n.jsx(r,{...e,iconKey:"transit_enterexit"})}function pV(e){return n.jsx(r,{...e,iconKey:"translate"})}function wV(e){return n.jsx(r,{...e,iconKey:"travel_explore"})}function kV(e){return n.jsx(r,{...e,iconKey:"trending_down"})}function mV(e){return n.jsx(r,{...e,iconKey:"trending_flat"})}function vV(e){return n.jsx(r,{...e,iconKey:"trending_up"})}function CV(e){return n.jsx(r,{...e,iconKey:"trip_origin"})}function KV(e){return n.jsx(r,{...e,iconKey:"troubleshoot"})}function SV(e){return n.jsx(r,{...e,iconKey:"try"})}function BV(e){return n.jsx(r,{...e,iconKey:"tsunami"})}function EV(e){return n.jsx(r,{...e,iconKey:"tty"})}function FV(e){return n.jsx(r,{...e,iconKey:"tune"})}function PV(e){return n.jsx(r,{...e,iconKey:"tungsten"})}function DV(e){return n.jsx(r,{...e,iconKey:"turn_left"})}function NV(e){return n.jsx(r,{...e,iconKey:"turn_right"})}function TV(e){return n.jsx(r,{...e,iconKey:"turn_sharp_left"})}function MV(e){return n.jsx(r,{...e,iconKey:"turn_sharp_right"})}function OV(e){return n.jsx(r,{...e,iconKey:"turn_slight_left"})}function LV(e){return n.jsx(r,{...e,iconKey:"turn_slight_right"})}function QV(e){return n.jsx(r,{...e,iconKey:"turned_in"})}function VV(e){return n.jsx(r,{...e,iconKey:"turned_in_not"})}function WV(e){return n.jsx(r,{...e,iconKey:"tv"})}function GV(e){return n.jsx(r,{...e,iconKey:"tv_off"})}function zV(e){return n.jsx(r,{...e,iconKey:"two_wheeler"})}function HV(e){return n.jsx(r,{...e,iconKey:"type_specimen"})}function UV(e){return n.jsx(r,{...e,iconKey:"u_turn_left"})}function YV(e){return n.jsx(r,{...e,iconKey:"u_turn_right"})}function jV(e){return n.jsx(r,{...e,iconKey:"umbrella"})}function $V(e){return n.jsx(r,{...e,iconKey:"unarchive"})}function qV(e){return n.jsx(r,{...e,iconKey:"undo"})}function JV(e){return n.jsx(r,{...e,iconKey:"unfold_less"})}function ZV(e){return n.jsx(r,{...e,iconKey:"unfold_less_double"})}function XV(e){return n.jsx(r,{...e,iconKey:"unfold_more"})}function xV(e){return n.jsx(r,{...e,iconKey:"unfold_more_double"})}function RV(e){return n.jsx(r,{...e,iconKey:"unpublished"})}function eW(e){return n.jsx(r,{...e,iconKey:"unsubscribe"})}function nW(e){return n.jsx(r,{...e,iconKey:"upcoming"})}function oW(e){return n.jsx(r,{...e,iconKey:"update"})}function rW(e){return n.jsx(r,{...e,iconKey:"update_disabled"})}function tW(e){return n.jsx(r,{...e,iconKey:"upgrade"})}function cW(e){return n.jsx(r,{...e,iconKey:"upload"})}function Mc(e){return n.jsx(r,{...e,iconKey:"upload_file"})}function iW(e){return n.jsx(r,{...e,iconKey:"usb"})}function aW(e){return n.jsx(r,{...e,iconKey:"usb_off"})}function lW(e){return n.jsx(r,{...e,iconKey:"vaccines"})}function sW(e){return n.jsx(r,{...e,iconKey:"vape_free"})}function dW(e){return n.jsx(r,{...e,iconKey:"vaping_rooms"})}function uW(e){return n.jsx(r,{...e,iconKey:"verified"})}function fW(e){return n.jsx(r,{...e,iconKey:"verified_user"})}function AW(e){return n.jsx(r,{...e,iconKey:"vertical_align_bottom"})}function yW(e){return n.jsx(r,{...e,iconKey:"vertical_align_center"})}function gW(e){return n.jsx(r,{...e,iconKey:"vertical_align_top"})}function _W(e){return n.jsx(r,{...e,iconKey:"vertical_distribute"})}function hW(e){return n.jsx(r,{...e,iconKey:"vertical_shades"})}function IW(e){return n.jsx(r,{...e,iconKey:"vertical_shades_closed"})}function bW(e){return n.jsx(r,{...e,iconKey:"vertical_split"})}function pW(e){return n.jsx(r,{...e,iconKey:"vibration"})}function wW(e){return n.jsx(r,{...e,iconKey:"video_call"})}function kW(e){return n.jsx(r,{...e,iconKey:"video_camera_back"})}function mW(e){return n.jsx(r,{...e,iconKey:"video_camera_front"})}function vW(e){return n.jsx(r,{...e,iconKey:"video_chat"})}function CW(e){return n.jsx(r,{...e,iconKey:"video_file"})}function KW(e){return n.jsx(r,{...e,iconKey:"video_label"})}function SW(e){return n.jsx(r,{...e,iconKey:"video_library"})}function BW(e){return n.jsx(r,{...e,iconKey:"video_settings"})}function EW(e){return n.jsx(r,{...e,iconKey:"video_stable"})}function FW(e){return n.jsx(r,{...e,iconKey:"videocam"})}function PW(e){return n.jsx(r,{...e,iconKey:"videocam_off"})}function DW(e){return n.jsx(r,{...e,iconKey:"videogame_asset"})}function NW(e){return n.jsx(r,{...e,iconKey:"videogame_asset_off"})}function TW(e){return n.jsx(r,{...e,iconKey:"view_agenda"})}function MW(e){return n.jsx(r,{...e,iconKey:"view_array"})}function OW(e){return n.jsx(r,{...e,iconKey:"view_carousel"})}function LW(e){return n.jsx(r,{...e,iconKey:"view_column"})}function QW(e){return n.jsx(r,{...e,iconKey:"view_comfy"})}function VW(e){return n.jsx(r,{...e,iconKey:"view_comfy_alt"})}function WW(e){return n.jsx(r,{...e,iconKey:"view_compact"})}function GW(e){return n.jsx(r,{...e,iconKey:"view_compact_alt"})}function zW(e){return n.jsx(r,{...e,iconKey:"view_cozy"})}function HW(e){return n.jsx(r,{...e,iconKey:"view_day"})}function UW(e){return n.jsx(r,{...e,iconKey:"view_headline"})}function YW(e){return n.jsx(r,{...e,iconKey:"view_in_ar"})}function jW(e){return n.jsx(r,{...e,iconKey:"view_kanban"})}function $W(e){return n.jsx(r,{...e,iconKey:"view_list"})}function qW(e){return n.jsx(r,{...e,iconKey:"view_module"})}function JW(e){return n.jsx(r,{...e,iconKey:"view_quilt"})}function ZW(e){return n.jsx(r,{...e,iconKey:"view_sidebar"})}function Oc(e){return n.jsx(r,{...e,iconKey:"view_stream"})}function XW(e){return n.jsx(r,{...e,iconKey:"view_timeline"})}function xW(e){return n.jsx(r,{...e,iconKey:"view_week"})}function RW(e){return n.jsx(r,{...e,iconKey:"vignette"})}function eG(e){return n.jsx(r,{...e,iconKey:"villa"})}function nG(e){return n.jsx(r,{...e,iconKey:"visibility"})}function oG(e){return n.jsx(r,{...e,iconKey:"visibility_off"})}function rG(e){return n.jsx(r,{...e,iconKey:"voice_chat"})}function tG(e){return n.jsx(r,{...e,iconKey:"voice_over_off"})}function cG(e){return n.jsx(r,{...e,iconKey:"voicemail"})}function iG(e){return n.jsx(r,{...e,iconKey:"volcano"})}function aG(e){return n.jsx(r,{...e,iconKey:"volume_down"})}function lG(e){return n.jsx(r,{...e,iconKey:"volume_mute"})}function sG(e){return n.jsx(r,{...e,iconKey:"volume_off"})}function dG(e){return n.jsx(r,{...e,iconKey:"volume_up"})}function uG(e){return n.jsx(r,{...e,iconKey:"volunteer_activism"})}function fG(e){return n.jsx(r,{...e,iconKey:"vpn_key"})}function AG(e){return n.jsx(r,{...e,iconKey:"vpn_key_off"})}function yG(e){return n.jsx(r,{...e,iconKey:"vpn_lock"})}function gG(e){return n.jsx(r,{...e,iconKey:"vrpano"})}function _G(e){return n.jsx(r,{...e,iconKey:"wallet"})}function hG(e){return n.jsx(r,{...e,iconKey:"wallpaper"})}function IG(e){return n.jsx(r,{...e,iconKey:"warehouse"})}function bG(e){return n.jsx(r,{...e,iconKey:"warning"})}function pG(e){return n.jsx(r,{...e,iconKey:"warning_amber"})}function wG(e){return n.jsx(r,{...e,iconKey:"wash"})}function kG(e){return n.jsx(r,{...e,iconKey:"watch"})}function mG(e){return n.jsx(r,{...e,iconKey:"watch_later"})}function vG(e){return n.jsx(r,{...e,iconKey:"watch_off"})}function CG(e){return n.jsx(r,{...e,iconKey:"water"})}function KG(e){return n.jsx(r,{...e,iconKey:"water_damage"})}function SG(e){return n.jsx(r,{...e,iconKey:"water_drop"})}function BG(e){return n.jsx(r,{...e,iconKey:"waterfall_chart"})}function EG(e){return n.jsx(r,{...e,iconKey:"waves"})}function FG(e){return n.jsx(r,{...e,iconKey:"waving_hand"})}function PG(e){return n.jsx(r,{...e,iconKey:"wb_auto"})}function DG(e){return n.jsx(r,{...e,iconKey:"wb_cloudy"})}function NG(e){return n.jsx(r,{...e,iconKey:"wb_incandescent"})}function TG(e){return n.jsx(r,{...e,iconKey:"wb_iridescent"})}function MG(e){return n.jsx(r,{...e,iconKey:"wb_shade"})}function OG(e){return n.jsx(r,{...e,iconKey:"wb_sunny"})}function LG(e){return n.jsx(r,{...e,iconKey:"wb_twilight"})}function QG(e){return n.jsx(r,{...e,iconKey:"wc"})}function VG(e){return n.jsx(r,{...e,iconKey:"web"})}function WG(e){return n.jsx(r,{...e,iconKey:"web_asset"})}function GG(e){return n.jsx(r,{...e,iconKey:"web_asset_off"})}function zG(e){return n.jsx(r,{...e,iconKey:"web_stories"})}function HG(e){return n.jsx(r,{...e,iconKey:"webhook"})}function UG(e){return n.jsx(r,{...e,iconKey:"weekend"})}function YG(e){return n.jsx(r,{...e,iconKey:"west"})}function jG(e){return n.jsx(r,{...e,iconKey:"whatshot"})}function $G(e){return n.jsx(r,{...e,iconKey:"wheelchair_pickup"})}function qG(e){return n.jsx(r,{...e,iconKey:"where_to_vote"})}function JG(e){return n.jsx(r,{...e,iconKey:"widgets"})}function ZG(e){return n.jsx(r,{...e,iconKey:"width_full"})}function XG(e){return n.jsx(r,{...e,iconKey:"width_normal"})}function xG(e){return n.jsx(r,{...e,iconKey:"width_wide"})}function RG(e){return n.jsx(r,{...e,iconKey:"wifi"})}function e5(e){return n.jsx(r,{...e,iconKey:"wifi_1_bar"})}function n5(e){return n.jsx(r,{...e,iconKey:"wifi_2_bar"})}function o5(e){return n.jsx(r,{...e,iconKey:"wifi_calling"})}function r5(e){return n.jsx(r,{...e,iconKey:"wifi_calling_3"})}function t5(e){return n.jsx(r,{...e,iconKey:"wifi_channel"})}function c5(e){return n.jsx(r,{...e,iconKey:"wifi_find"})}function i5(e){return n.jsx(r,{...e,iconKey:"wifi_lock"})}function a5(e){return n.jsx(r,{...e,iconKey:"wifi_off"})}function l5(e){return n.jsx(r,{...e,iconKey:"wifi_password"})}function s5(e){return n.jsx(r,{...e,iconKey:"wifi_protected_setup"})}function d5(e){return n.jsx(r,{...e,iconKey:"wifi_tethering"})}function u5(e){return n.jsx(r,{...e,iconKey:"wifi_tethering_error"})}function f5(e){return n.jsx(r,{...e,iconKey:"wifi_tethering_off"})}function A5(e){return n.jsx(r,{...e,iconKey:"wind_power"})}function y5(e){return n.jsx(r,{...e,iconKey:"window"})}function g5(e){return n.jsx(r,{...e,iconKey:"wine_bar"})}function _5(e){return n.jsx(r,{...e,iconKey:"woman"})}function h5(e){return n.jsx(r,{...e,iconKey:"woman_2"})}function I5(e){return n.jsx(r,{...e,iconKey:"work"})}function b5(e){return n.jsx(r,{...e,iconKey:"work_history"})}function p5(e){return n.jsx(r,{...e,iconKey:"work_off"})}function w5(e){return n.jsx(r,{...e,iconKey:"work_outline"})}function k5(e){return n.jsx(r,{...e,iconKey:"workspace_premium"})}function m5(e){return n.jsx(r,{...e,iconKey:"workspaces"})}function v5(e){return n.jsx(r,{...e,iconKey:"wrap_text"})}function C5(e){return n.jsx(r,{...e,iconKey:"wrong_location"})}function K5(e){return n.jsx(r,{...e,iconKey:"wysiwyg"})}function S5(e){return n.jsx(r,{...e,iconKey:"yard"})}function B5(e){return n.jsx(r,{...e,iconKey:"youtube_searched_for"})}function E5(e){return n.jsx(r,{...e,iconKey:"zoom_in"})}function F5(e){return n.jsx(r,{...e,iconKey:"zoom_in_map"})}function P5(e){return n.jsx(r,{...e,iconKey:"zoom_out"})}function D5(e){return n.jsx(r,{...e,iconKey:"zoom_out_map"})}const N5={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"},T5={medium:"w-10 h-10",small:"w-8 h-8",large:"w-12 h-12"},Er=({checked:e,indeterminate:t=!1,disabled:c,size:i="medium",onCheckedChange:a})=>{const l=t?!1:e;return n.jsx("div",{className:F(T5[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(xt.Root,{asChild:!0,checked:l,disabled:c,onCheckedChange:c?void 0:a,children:n.jsx("div",{className:F("border-2 relative transition-colors ease-in-out duration-150",N5[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(xt.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 Lc(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 So={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 Qc(e){const t=Lc(e),c=Object.keys(So),i=t%c.length;return So[c[i]]}function M5(e){return So[e]}const O5={smaller:"px-2 py-0.5 text-sm",small:"px-3 py-1 text-sm",medium:"px-4 py-1.5 text-sm"};function Bo({children:e,colorScheme:t,error:c,outlined:i,onClick:a,icon:l,size:s="medium",className:d}){const u=typeof t=="string"?M5(t):t;return n.jsxs("div",{className:F("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":"",O5[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]})}const L5="hover:bg-gray-200 hover:bg-opacity-75 dark:hover:bg-gray-700 dark:hover:bg-opacity-75",Q5="inline-flex items-center justify-center p-2 text-sm font-medium focus:outline-none transition-colors ease-in-out duration-150",V5="dark:text-gray-100 text-gray-700 visited:text-gray-700 dark:visited:text-gray-100",W5={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"},G5={circular:"rounded-full",square:"rounded-md"},z5=({children:e,className:t,size:c="medium",variant:i="ghost",shape:a="circular",disabled:l,toggled:s,component:d,...u},A)=>{const g=i==="ghost"?"bg-transparent":"bg-gray-50 dark:bg-gray-950",h=d||"button";return n.jsx(h,{type:"button",ref:A,...u,className:F(Ie,l?"opacity-50 pointer-events-none":"cursor-pointer",s?"outline outline-2 outline-primary":"",V5,g,Q5,L5,G5[a],W5[c],t),children:e})},R=f.forwardRef(z5),Vc=f.createContext({}),We=()=>f.useContext(Vc),Wc=f.createContext({}),Ae=()=>f.useContext(Wc),Fr=f.createContext({}),un=()=>f.useContext(Fr),Gc=f.createContext({}),no=()=>f.useContext(Gc),zc=f.createContext({}),fn=()=>f.useContext(zc),Hc=f.createContext({}),Tn=()=>f.useContext(Hc),An=()=>{const{enqueueSnackbar:e,closeSnackbar:t}=Jt.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])},Uc=f.createContext(void 0),Mn=()=>f.useContext(Uc),Yc=f.createContext({}),H5=({children:e})=>{const[t,c]=f.useState([]),i=f.useRef(t),a=d=>{i.current=d,c(d)},l=f.useCallback(()=>{if(t.length===0)return;const d=[...t.slice(0,-1)];a(d)},[t]),s=f.useCallback(d=>{const u=[...t,d];return a(u),{closeDialog:()=>{const A=i.current.filter(g=>g.key!==d.key);a(A)}}},[t]);return n.jsxs(Yc.Provider,{value:{open:s,close:l},children:[e,t.map((d,u)=>n.jsx(d.Component,{open:!0},`dialog_${u}`))]})},U5=()=>f.useContext(Yc),Pr=f.createContext({}),ee=()=>{const e=f.useContext(Pr),t=un(),c=no(),i=fn(),a=Ae(),l=We(),s=Tn(),d=An(),u=Mn(),A=U5();return{...e,authController:t,sideDialogsController:c,sideEntityController:i,navigation:a,dataSource:l,storageSource:s,snackbarController:d,userConfigPersistence:u,dialogsController:A}};function jc({path:e,collection:t,filterValues:c,sortBy:i,itemCount:a,searchString:l}){const s=We(),u=Ae().resolveAliasesFrom(e),A=i?i[0]:void 0,g=i?i[1]:void 0,h=ee(),[_,y]=f.useState([]),[I,b]=f.useState(!1),[p,w]=f.useState(),[k,m]=f.useState(!1);return f.useEffect(()=>{b(!0);const v=async K=>{if(t.callbacks?.onFetch)try{K=await Promise.all(K.map(C=>t.callbacks.onFetch({collection:t,path:u,entity:C,context:h})))}catch(C){console.error(C)}b(!1),w(void 0),y(K.map(C=>({...C}))),m(!a||K.length<a)},S=K=>{console.error("ERROR",K),b(!1),y([]),w(K)};return s.listenCollection?s.listenCollection({path:u,collection:t,onUpdate:v,onError:S,searchString:l,filter:c,limit:a,startAfter:void 0,orderBy:A,order:g}):(s.fetchCollection({path:u,collection:t,searchString:l,filter:c,limit:a,startAfter:void 0,orderBy:A,order:g}).then(v).catch(S),()=>{})},[u,a,g,A,c,l]),{data:_,dataLoading:I,dataLoadingError:p,noMoreToLoad:k}}const Dr={};function Nr({path:e,entityId:t,collection:c,useCache:i=!1}){const a=We(),s=Ae().resolveAliasesFrom(e),d=ee(),[u,A]=f.useState(),[g,h]=f.useState(!0),[_,y]=f.useState();return f.useEffect(()=>{h(!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)}Dr[`${s}/${t}`]=p,A(p),h(!1),y(void 0)},b=p=>{console.error("ERROR fetching entity",p),h(!1),A(void 0),y(p)};return t&&i&&Dr[`${s}/${t}`]?(A(Dr[`${s}/${t}`]),h(!1),y(void 0),()=>{}):t&&s&&c?a.listenEntity?a.listenEntity({path:s,entityId:t,collection:c,onUpdate:I,onError:b}):(a.fetchEntity({path:s,entityId:t,collection:c}).then(I).catch(b),()=>{}):(I(void 0),()=>{})},[t,s]),{entity:u,dataLoading:g,dataLoadingError:_}}class $e{id;path;constructor(t,c){this.id=t,this.path=c}get pathWithId(){return`${this.path}/${this.id}`}}class Eo{latitude;longitude;constructor(t,c){this.latitude=t,this.longitude=c}}const oo="type",Fo="value";function On(e){return e.readOnly||e.dataType==="date"&&e.autoValue?!0:e.dataType==="reference"?!e.path:!1}function ro(e){return typeof e.disabled=="object"&&!!e.disabled.hidden}function Ee(e){return typeof e=="function"}function to(e){return e?Object.entries(e).map(([t,c])=>{const i=Po(c);return i===void 0?{}:{[t]:i}}).reduce((t,c)=>({...t,...c}),{}):{}}function Po(e){if(!Ee(e))if(e.dataType==="map"&&e.properties){const t=to(e.properties);return Object.keys(t).length===0?void 0:t}else return e.defaultValue?e.defaultValue:Tr(e.dataType)}function Tr(e){return e==="string"||e==="number"?null:e==="boolean"?!1:e==="date"?null:e==="array"?[]:e==="map"?{}:null}function $c({inputValues:e,properties:t,status:c,timestampNowValue:i,setDateToMidnight:a}){return Mr(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 Y5(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 Cn(e){return new $e(e.id,e.path)}function Mr(e,t,c){const i=Object.entries(t).map(([l,s])=>{const d=e&&e[l],u=Do(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 Do(e,t,c){let i;if(t.dataType==="map"&&t.properties)i=Mr(e,t.properties,c);else if(t.dataType==="array")if(t.of&&Array.isArray(e))i=e.map(a=>Do(a,t.of,c));else if(t.oneOf&&Array.isArray(e)){const a=t.oneOf?.typeField??oo,l=t.oneOf?.valueField??Fo;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]:Do(s[l],u,c)}})}else i=e;else i=c(e,t);return i}function Or(e,t){try{const c=Object.keys(e);return(t??c).map(a=>{if(e[a]){const l=e[a];return!Ee(l)&&l?.dataType==="map"&&l.properties?{[a]:{...l,properties:Or(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 Lr(e,t){if(e)return typeof e=="string"?e:e(t)}const j5=/[A-Z]{2,}(?=[A-Z][a-z]+[0-9]*|\b)|[A-Z]?[a-z]+[0-9]*|[A-Z]|[0-9]+/g,$5=e=>{const t=e.match(j5);return t?t.map(c=>c.toLowerCase()).join("-"):""},q5=/[A-Z]{2,}(?=[A-Z][a-z]+[0-9]*|\b)|[A-Z]?[a-z]+[0-9]*|[A-Z]|[0-9]+/g,J5=e=>{const t=e.match(q5);return t?t.map(c=>c.toLowerCase()).join("_"):""};function Ln(e=5){return Math.random().toString(36).slice(2,2+e)}function Z5(){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}const qc="MMMM dd, yyyy, HH:mm:ss";function yn(e){return Array.isArray(e)?e:Object.entries(e).map(([t,c])=>typeof c=="string"?{id:t,label:c}:{...c,id:t})}function To(e,t){if(t)return e.find(c=>String(c.id)===String(t))}function Jc(e,t){const c=To(e,t);if(!c?.color)return Qc(t.toString());if(typeof c=="object"&&"color"in c){if(typeof c.color=="string")return So[c.color];if(typeof c.color=="object")return c.color}}function X5(e){return typeof e=="object"&&e.disabled}function Zc(e){if(e!==void 0)return typeof e=="object"?e.label:e}const Xc=(e,...t)=>({...t.reduce((c,i)=>({...c,[i]:e[i]}),{})});function Mo(e){return e&&typeof e=="object"&&!Array.isArray(e)}function Ge(e,t){const c=Mo(e),i=c?{...e}:e;return c&&Mo(t)&&Object.keys(t).forEach(a=>{Mo(t[a])?a in e?i[a]=Ge(e[a],t[a]):Object.assign(i,{[a]:t[a]}):Object.assign(i,{[a]:t[a]})}),i}function gn(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:gn(l,s)}}}function x5(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 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 Eo)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 a=Wr(e[i],t),l=typeof a=="string",s=!t||t&&!l||t&&l&&a!=="";a!==void 0&&!Gr(a)&&s&&(c[i]=a)}}),c)}return e}function Gr(e){return e&&Object.getPrototypeOf(e)===Object.prototype&&Object.keys(e).length===0}function xc(e,t){const c=l=>typeof l=="object"&&l!==null,i=l=>Array.isArray(l);if(!c(e)||!c(t))return e;const a=i(e)?[...e]:{...e};return Object.keys(t).forEach(l=>{l in a&&(c(a[l])&&c(t[l])?a[l]=xc(a[l],t[l]):a[l]===t[l]&&(i(a)?a.splice(l,1):delete a[l]))}),a}const Rc="::";function zr(e){return ei(ze(e))}function ei(e){return e.length===1?e[0]:e.reduce((t,c)=>`${t}${Rc}${c}`)}function ze(e){return e.split("/").filter((t,c)=>c%2===0)}function R5(e){return e?e.toString():""}function ni(e){if(!e)return;const t=e.match(/\/(.*?)\/([a-z]*)?$/i);return t?new RegExp(t[1],t[2]||""):new RegExp(e,"")}function ez(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 nz(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 we(e){return oi(ri(e))}function oi(e){return e.startsWith("/")?e.slice(1):e}function ri(e){return e.endsWith("/")?e.slice(0,-1):e}function oz(e){return e.startsWith("/")?e:`/${e}`}function rz(e){const t=we(e);if(t.includes("/")){const c=t.split("/");return c[c.length-1]}return t}function Hr(e,t){const c=we(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.id===i[0]);let l;if(a&&(l=a.path),i.length>1){const s=Oo(l??i[0],t);if(!s?.subcollections)return c;const d=c.split("/").slice(2).join("/");return(l??i[0])+"/"+i[1]+"/"+Hr(d,s.subcollections)}else return l??c}function Oo(e,t){const c=we(e).split("/");if(c.length%2===0)throw Error(`Collection paths must have an odd number of segments: ${e}`);const i=Lo(c);let a;for(let l=0;l<i.length;l++){const s=i[l],d=t&&t.sort((u,A)=>(u.id??"").localeCompare(A.id??"")).find(u=>u.id===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=Oo(u,d.subcollections))}}if(a)break}return a}function Lo(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}function Qo(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 tz(e,t=300){const[c,i]=f.useState(e);return f.useEffect(()=>{const a=setTimeout(()=>{i(e)},t);return()=>{clearTimeout(a)}},[e,t]),c}const ye=({open:e,side:t="bottom",sideOffset:c,onOpenChange:i,title:a,className:l,style:s,tooltipClassName:d,children:u})=>(vn("Tooltip",cz),a?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:l,style:s,children:u})}),n.jsx(Jn.Portal,{children:n.jsx(Jn.Content,{className:F("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})),cz=`
30
-
31
- .TooltipContent {
32
- animation-duration: 220ms;
33
- animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
34
- will-change: transform, opacity;
35
- }
36
-
37
- .TooltipContent[data-state='delayed-open'][data-side='top'] {
38
- animation-name: slideDownAndFade;
39
- }
40
- .TooltipContent[data-state='delayed-open'][data-side='right'] {
41
- animation-name: slideLeftAndFade;
42
- }
43
- .TooltipContent[data-state='delayed-open'][data-side='bottom'] {
44
- animation-name: slideUpAndFade;
45
- }
46
- .TooltipContent[data-state='delayed-open'][data-side='left'] {
47
- animation-name: slideRightAndFade;
48
- }
49
-
50
-
51
- @keyframes slideUpAndFade {
52
- from {
53
- opacity: 0;
54
- transform: translateY(4px);
55
- }
56
- to {
57
- opacity: 1;
58
- transform: translateY(0);
59
- }
60
- }
61
-
62
- @keyframes slideRightAndFade {
63
- from {
64
- opacity: 0;
65
- transform: translateX(-4px);
66
- }
67
- to {
68
- opacity: 1;
69
- transform: translateX(0);
70
- }
71
- }
72
-
73
- @keyframes slideDownAndFade {
74
- from {
75
- opacity: 0;
76
- transform: translateY(-4px);
77
- }
78
- to {
79
- opacity: 1;
80
- transform: translateY(0);
81
- }
82
- }
83
-
84
- @keyframes slideLeftAndFade {
85
- from {
86
- opacity: 0;
87
- transform: translateX(4px);
88
- }
89
- to {
90
- opacity: 1;
91
- transform: translateX(0);
92
- }
93
- }`;function ti(e){return n.jsx(ye,{...e,tooltipClassName:"!text-red-500 bg-red-50",children:e.children})}const ci={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"},iz={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"},az={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 Z({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=ci,style:g,onClick:h,..._}){const y=a||(d?"p":A[u]||ci[u])||"span",I=F(Ie,az[u],t?iz[t]:"",e!=="inherit"&&`text-${e}`,l&&"mb-[0.35em]",s&&"truncate",d&&"mb-4",i);return n.jsx(y,{className:I,onClick:h,style:g,..._,children:c})}function me({title:e,error:t,tooltip:c}){const i=t instanceof Error?t.message:t;console.log("ErrorView",t);const a=n.jsxs("div",{className:"flex items-center m-2",children:[n.jsx(kr,{size:"small",color:"error"}),n.jsxs("div",{className:"pl-2",children:[e&&n.jsx(Z,{variant:"body2",className:"font-medium",children:e}),n.jsx(Z,{variant:"body2",children:i})]})]});return c?n.jsx(ti,{title:c,children:a}):a}function Qn(){return n.jsx("div",{className:"rounded-full bg-gray-200 bg-opacity-30 dark:bg-opacity-20 w-5 h-2 inline-block"})}const lz=40,sz=100,dz=200;function Vn(e){if(e==="tiny")return lz;if(e==="small")return sz;if(e==="medium")return dz;throw Error("Thumbnail size not mapped")}function _n(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 ii({size:e,url:t}){const[c,i]=f.useState(!1),a=f.useMemo(()=>Vn(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(ye,{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(xn,{className:"text-gray-500",size:"small"})})})}),n.jsx(ye,{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(Rn,{className:"text-gray-500",size:"small"})})})]})]},"image_preview_"+t)}function co({url:e,previewType:t,size:c,hint:i}){return t?t==="image"?n.jsx(ii,{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:Vn(c),height:Vn(c)},children:[n.jsx(fc,{className:"flex-grow"}),i&&n.jsx(ye,{title:i,children:n.jsx(Z,{className:"max-w-full truncate rtl text-left",variant:"caption",children:i})})]}):!e||!e.trim()?n.jsx(Qn,{}):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(Rn,{size:"small"}),e]})}function Wn({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=_z(i,t):i.storage?c=Yr(t):c=on()}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)=>Ur(a,l))," "]}):i.of.dataType==="map"&&i.of.properties?c=fz(i.of.properties,t,i.of.previewProperties):i.of.dataType==="string"?i.of.enumValues?c=yz():i.of.storage?c=Ur(i.of):c=Az():c=Ur(i.of))}else e.dataType==="map"?c=uz(e,t):e.dataType==="date"?c=on():e.dataType==="reference"?c=gz():(e.dataType,c=on());return c||null}function uz(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(Wn,{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(Wn,{property:e.properties[i],size:"small"})},`table-cell-${i}`)]},`map_preview_table__${a}`))})})}function fz(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(Wn,{property:e[s],size:"small"})},`table-cell-${s}`))},`table_${a}_${l}`))})})}function Az(){return n.jsx("div",{className:"flex flex-col gap-2",children:[0,1].map((e,t)=>on(t))})}function yz(){return n.jsx("div",{className:"flex flex-col gap-2",children:[0,1].map((e,t)=>n.jsx(n.Fragment,{children:on(t)}))})}function Ur(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(Wn,{property:e,size:"small"},`i_${i}`)}))},"array_index_"+t)}function Yr(e){const t=e==="tiny"?40:e==="small"?100:200;return n.jsx(Oe,{width:t,height:t})}function gz(){return n.jsx(Oe,{width:200,height:100})}function _z(e,t="medium"){return typeof e.url=="boolean"?n.jsxs("div",{style:{display:"flex"},children:[jr(),on()]}):hz(t)}function hz(e){return n.jsx("div",{className:`w-${Vn(e)} h-${Vn(e)}`,children:jr()})}function on(e,t=120){return n.jsx(Oe,{width:t},`skeleton_${e}`)}function Iz(e){return n.jsx(Oe,{height:20})}function jr(){return n.jsx(Oe,{width:24,height:24})}const ai=f.memo(si,bz);function bz(e,t){return e.size===t.size&&e.storagePathOrDownloadUrl===t.storagePathOrDownloadUrl&&e.storeUrl===t.storeUrl}const li={};function si({storeUrl:e,storagePathOrDownloadUrl:t,size:c}){const[i,a]=f.useState(void 0),l=Tn(),[s,d]=f.useState(li[t]);if(f.useEffect(()=>{if(!t)return;let g=!1;return l.getDownloadURL(t).then(function(h){g||(d(h),li[t]=h)}).catch(a),()=>{g=!0}},[t]),!t)return null;const u=s?.metadata?pz(s?.metadata.contentType):void 0,A=u?.startsWith("image")?"image":u?.startsWith("video")?"video":u?.startsWith("audio")?"audio":"file";return s?.fileNotFound?n.jsx(me,{error:"File not found"}):s?.url?n.jsx(co,{previewType:A,url:s.url,size:c,hint:t}):Yr(c)}function pz(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 Fe({enumValues:e,enumKey:t,size:c,className:i,children:a}){if(!e)return null;const l=yn(e),s=t!==void 0?To(l,t):void 0,d=Zc(s),u=Jc(l,t);return n.jsxs(Bo,{className:i,colorScheme:u,error:!d,outlined:!1,size:c,children:[a,!a&&(d!==void 0?d:String(t))]})}function $r({propertyKey:e,value:t,property:c,size:i}){if(c.enumValues){const a=t,l=Tt(c);return n.jsx(Fe,{enumKey:a,enumValues:l.enumValues,size:i!=="medium"?"small":"medium"})}else if(c.previewAsTag){const a=Qc(e??"");return n.jsx(ae,{children:n.jsx(Bo,{colorScheme:a,size:i!=="medium"?"small":"medium",children:t})})}else{if(c.url)return n.jsx(co,{size:i,url:t,previewType:typeof c.url=="string"?c.url:void 0});{if(!t)return n.jsx(n.Fragment,{});const a=t.split(`
1
+ (function(v,r){typeof exports=="object"&&typeof module<"u"?r(exports,require("react/jsx-runtime"),require("react"),require("notistack"),require("object-hash"),require("formik"),require("@firecms/ui"),require("date-fns/format"),require("date-fns/locale"),require("react-fast-compare"),require("react-router-dom"),require("react-datepicker"),require("react-dropzone"),require("@hello-pangea/dnd"),require("react-image-file-resizer"),require("react-window"),require("react-use-measure"),require("markdown-it"),require("react-markdown-editor-lite"),require("yup"),require("js-search"),require("@radix-ui/react-portal")):typeof define=="function"&&define.amd?define(["exports","react/jsx-runtime","react","notistack","object-hash","formik","@firecms/ui","date-fns/format","date-fns/locale","react-fast-compare","react-router-dom","react-datepicker","react-dropzone","@hello-pangea/dnd","react-image-file-resizer","react-window","react-use-measure","markdown-it","react-markdown-editor-lite","yup","js-search","@radix-ui/react-portal"],r):(v=typeof globalThis<"u"?globalThis:v||self,r(v["FireCMS Core"]={},v.jsxRuntime,v.React,v.notistack,v.hash,v.formik,v.ui,v.format,v.locales,v.equal,v.reactRouterDom,v.reactDatepicker,v.reactDropzone,v.dnd,v.Resizer,v.reactWindow,v.useMeasure,v.MarkdownIt,v.MdEditor,v.yup,v.JsSearch,v.Portal))})(this,function(v,r,c,wn,Cn,Ce,f,Cl,El,oe,fe,En,Bn,lt,Bl,kl,sr,xl,Re,Sl,Il,Fl){"use strict";function bt(e){const t=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(e){for(const n in e)if(n!=="default"){const o=Object.getOwnPropertyDescriptor(e,n);Object.defineProperty(t,n,o.get?o:{enumerable:!0,get:()=>e[n]})}}return t.default=e,Object.freeze(t)}const ar=bt(c),kn=bt(El),Ee=bt(Sl),Nl=bt(Il),Tl=bt(Fl),Pl={breadcrumbs:[],set:e=>{}},xn=c.createContext(Pl),Ql=({children:e})=>{const[t,n]=c.useState([]),o=l=>{n(l.breadcrumbs)};return r.jsx(xn.Provider,{value:{breadcrumbs:t,set:o},children:e})},Ml=({children:e})=>r.jsx(wn.SnackbarProvider,{maxSnack:3,autoHideDuration:3500,children:e}),Dl={mode:"light",setMode:e=>{},toggleMode:()=>{}},Dt=c.createContext(Dl),Ol=Dt.Provider,cr=c.createContext({});function Vl(e){return e.includes("-")||e.includes("_")||!e.includes(" ")?e.replace(/[-_]/g," ").replace(/\w\S*/g,function(n){return n.charAt(0).toUpperCase()+n.substr(1)}):e}function ue(e){return Sn(In(e))}function Sn(e){return e.startsWith("/")?e.slice(1):e}function In(e){return e.endsWith("/")?e.slice(0,-1):e}function Gl(e){return e.startsWith("/")?e:`/${e}`}function Yl(e){const t=ue(e);if(t.includes("/")){const n=t.split("/");return n[n.length-1]}return t}function dr(e,t){const n=ue(e),o=n.split("/");if(o.length%2===0)throw Error(`Collection paths must have an odd number of segments: ${e}`);const l=t.find(s=>s.id===o[0]);let i;if(l&&(i=l.path),o.length>1){const s=Ot(i??o[0],t);if(!s?.subcollections)return n;const a=n.split("/").slice(2).join("/");return(i??o[0])+"/"+o[1]+"/"+dr(a,s.subcollections)}else return i??n}function Ot(e,t){const n=ue(e).split("/");if(n.length%2===0)throw Error(`Collection paths must have an odd number of segments: ${e}`);const o=Vt(n);let l;for(let i=0;i<o.length;i++){const s=o[i],a=t&&t.sort((d,A)=>(d.id??"").localeCompare(A.id??"")).find(d=>d.id===s||d.path===s);if(a){if(s===e)l=a;else if(a.subcollections){const d=e.replace(s,"").split("/").slice(2).join("/");d.length>0&&(l=Ot(d,a.subcollections))}}if(l)break}return l}function Vt(e){const t=e.length>0&&e.length%2===0?e.splice(0,e.length-1):e,n=t.length,o=[];for(let l=n;l>0;l=l-2)o.push(t.slice(0,l).join("/"));return o}class Me{id;path;constructor(t,n){this.id=t,this.path=n}get pathWithId(){return`${this.path}/${this.id}`}}class Gt{latitude;longitude;constructor(t,n){this.latitude=t,this.longitude=n}}const Fn=(e,...t)=>({...t.reduce((n,o)=>({...n,[o]:e[o]}),{})});function Yt(e){return e&&typeof e=="object"&&!Array.isArray(e)}function Fe(e,t){const n=Yt(e),o=n?{...e}:e;return n&&Yt(t)&&Object.keys(t).forEach(l=>{Yt(t[l])?l in e?o[l]=Fe(e[l],t[l]):Object.assign(o,{[l]:t[l]}):Object.assign(o,{[l]:t[l]})}),o}function Le(e,t){if(e&&typeof e=="object"){if(t in e)return e[t];if(t.includes(".")||t.includes("[")){let n=t.split(/[.[]/);t.includes("[")&&(n=n.map(a=>a.replace("]","")));const o=n[0],l=Array.isArray(e[o])&&!isNaN(parseInt(n[1])),i=l?e[o][parseInt(n[1])]:e[o],s=n.slice(l?2:1).join(".");return s===""?i:Le(i,s)}}}function zl(e,t){let n={...e};const o=t.split("."),l=o.pop();for(const i of o)n=n[i];return l&&delete n[l],n}function Ar(e){if(e!==void 0)return e===null?null:typeof e=="object"?Object.entries(e).filter(([t,n])=>typeof n!="function").map(([t,n])=>Array.isArray(n)?{[t]:n.map(o=>Ar(o))}:typeof n=="object"?{[t]:Ar(n)}:{[t]:n}).reduce((t,n)=>({...t,...n}),{}):e}function fr(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 Gt)return Cn(e)}return Cn(e,{ignoreUnknown:!0})}function ur(e,t){if(typeof e=="function")return e;if(Array.isArray(e))return e.map(n=>ur(n,t));if(typeof e=="object"){const n={};return e===null?e:(Object.keys(e).forEach(o=>{if(!gr(e)){const l=ur(e[o],t),i=typeof l=="string",s=!t||t&&!i||t&&i&&l!=="";l!==void 0&&!gr(l)&&s&&(n[o]=l)}}),n)}return e}function gr(e){return e&&Object.getPrototypeOf(e)===Object.prototype&&Object.keys(e).length===0}function Nn(e,t){const n=i=>typeof i=="object"&&i!==null,o=i=>Array.isArray(i);if(!n(e)||!n(t))return e;const l=o(e)?[...e]:{...e};return Object.keys(t).forEach(i=>{i in l&&(n(l[i])&&n(t[i])?l[i]=Nn(l[i],t[i]):l[i]===t[i]&&(o(l)?l.splice(i,1):delete l[i]))}),l}const yt="type",zt="value";function it(e){return e.readOnly||e.dataType==="date"&&e.autoValue?!0:e.dataType==="reference"?!e.path:!1}function vt(e){return typeof e.disabled=="object"&&!!e.disabled.hidden}function ve(e){return typeof e=="function"}function wt(e){return e?Object.entries(e).map(([t,n])=>{const o=Ut(n);return o===void 0?{}:{[t]:o}}).reduce((t,n)=>({...t,...n}),{}):{}}function Ut(e){if(!ve(e))if(e.dataType==="map"&&e.properties){const t=wt(e.properties);return Object.keys(t).length===0?void 0:t}else return e.defaultValue?e.defaultValue:hr(e.dataType)}function hr(e){return e==="string"||e==="number"?null:e==="boolean"?!1:e==="date"?null:e==="array"?[]:e==="map"?{}:null}function Tn({inputValues:e,properties:t,status:n,timestampNowValue:o,setDateToMidnight:l}){return pr(e,t,(i,s)=>{if(s.dataType==="date"){let a;return n==="existing"&&s.autoValue==="on_update"||(n==="new"||n==="copy")&&(s.autoValue==="on_update"||s.autoValue==="on_create")?a=o:a=i,s.mode==="date"&&(a=l(a)),a}else return i})??{}}function Ul(e,t){const n=e;return Object.entries(t).forEach(([o,l])=>{e&&e[o]!==void 0?n[o]=e[o]:l.validation?.required&&(n[o]=null)}),n}function et(e){return new Me(e.id,e.path)}function pr(e,t,n){const o=Object.entries(t).map(([i,s])=>{const a=e&&e[i],d=Lt(a,s,n);if(d!==void 0)return{[i]:d}}).reduce((i,s)=>({...i,...s}),{}),l={...e,...o};if(Object.keys(l).length!==0)return l}function Lt(e,t,n){let o;if(t.dataType==="map"&&t.properties)o=pr(e,t.properties,n);else if(t.dataType==="array")if(t.of&&Array.isArray(e))o=e.map(l=>Lt(l,t.of,n));else if(t.oneOf&&Array.isArray(e)){const l=t.oneOf?.typeField??yt,i=t.oneOf?.valueField??zt;o=e.map(s=>{if(s===null)return null;if(typeof s!="object")return s;const a=s[l],d=t.oneOf?.properties[a];return!a||!d?s:{[l]:a,[i]:Lt(s[i],d,n)}})}else o=e;else o=n(e,t);return o}function Pn(e){let t=0,n,o;for(n=0;n<e.length;n++)o=e.charCodeAt(n),t=(t<<5)-t+o,t|=0;return Math.abs(t)}function Qn(e){const t=Pn(e),n=Object.keys(f.CHIP_COLORS),o=t%n.length;return f.CHIP_COLORS[n[o]]}function $e(e){return Array.isArray(e)?e:Object.entries(e).map(([t,n])=>typeof n=="string"?{id:t,label:n}:{...n,id:t})}function $t(e,t){if(t)return e.find(n=>String(n.id)===String(t))}function Mn(e,t){const n=$t(e,t);if(!n?.color)return Qn(t.toString());if(typeof n=="object"&&"color"in n){if(typeof n.color=="string")return f.CHIP_COLORS[n.color];if(typeof n.color=="object")return n.color}}function Ll(e){return typeof e=="object"&&e.disabled}function Dn(e){if(e!==void 0)return typeof e=="object"?e.label:e}function On(e){return r.jsx(f.Tooltip,{...e,tooltipClassName:"!text-red-500 bg-red-50",children:e.children})}function he({title:e,error:t,tooltip:n}){const o=t instanceof Error?t.message:t;console.log("ErrorView",t);const l=r.jsxs("div",{className:"flex items-center m-2",children:[r.jsx(f.ErrorIcon,{size:"small",color:"error"}),r.jsxs("div",{className:"pl-2",children:[e&&r.jsx(f.Typography,{variant:"body2",className:"font-medium",children:e}),r.jsx(f.Typography,{variant:"body2",children:o})]})]});return n?r.jsx(On,{title:n,children:l}):l}function mr(e,t){try{const n=Object.keys(e);return(t??n).map(l=>{if(e[l]){const i=e[l];return!ve(i)&&i?.dataType==="map"&&i.properties?{[l]:{...i,properties:mr(i.properties,i.propertiesOrder)}}:{[l]:i}}else return}).filter(l=>l!==void 0).reduce((l,i)=>({...l,...i}),{})}catch(n){return console.error("Error sorting properties",n),e}}function br(e,t){if(e)return typeof e=="string"?e:e(t)}const $l=/[A-Z]{2,}(?=[A-Z][a-z]+[0-9]*|\b)|[A-Z]?[a-z]+[0-9]*|[A-Z]|[0-9]+/g,_l=e=>{const t=e.match($l);return t?t.map(n=>n.toLowerCase()).join("-"):""},Wl=/[A-Z]{2,}(?=[A-Z][a-z]+[0-9]*|\b)|[A-Z]?[a-z]+[0-9]*|[A-Z]|[0-9]+/g,jl=e=>{const t=e.match(Wl);return t?t.map(n=>n.toLowerCase()).join("_"):""};function st(e=5){return Math.random().toString(36).slice(2,2+e)}function Hl(){return Math.floor(Math.random()*16777215).toString(16)}function _t(e,t="_",n=!0){if(!e)return"";const o="ãàáäâẽèéëêìíïîõòóöôùúüûñç·/_,:;-",l=`aaaaaeeeeeiiiiooooouuuunc${t}${t}${t}${t}${t}${t}${t}`;for(let i=0,s=o.length;i<s;i++)e=e.replace(new RegExp(o.charAt(i),"g"),l.charAt(i));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,""),n?e.toLowerCase():e}const Vn="MMMM dd, yyyy, HH:mm:ss",Gn="::";function yr(e){return Yn(Ne(e))}function Yn(e){return e.length===1?e[0]:e.reduce((t,n)=>`${t}${Gn}${n}`)}function Ne(e){return e.split("/").filter((t,n)=>n%2===0)}function Jl(e){return e?e.toString():""}function zn(e){if(!e)return;const t=e.match(/\/(.*?)\/([a-z]*)?$/i);return t?new RegExp(t[1],t[2]||""):new RegExp(e,"")}function ql(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 Wt(e,t,n,o=300){const l=c.useRef(!1),i=()=>{t(),l.current=!1},s=c.useRef(void 0);c.useEffect(()=>(l.current=!0,clearTimeout(s.current),s.current=setTimeout(i,o),()=>{n&&i()}),[n,e])}function Zl(e,t=300){const[n,o]=c.useState(e);return c.useEffect(()=>{const l=setTimeout(()=>{o(e)},t);return()=>{clearTimeout(l)}},[e,t]),n}function Un(e,t){const n=ke({propertyKey:"ignore",propertyOrBuilder:e,fields:t});return n?n.dataType==="reference"?!0:n.dataType==="array"?Array.isArray(n.of)?!1:n.of?.dataType==="reference":!1:null}function Xl(e){return r.jsx(f.CircleIcon,{size:e})}function vr(e,t){const n=e?.Icon??f.CircleIcon;return r.jsx(n,{size:t})}function pe(e,t="small",n={}){if(ve(e))return r.jsx(f.FunctionsIcon,{size:t});{const o=tr(e,n);return vr(o,t)}}function Kl(e,t){return ve(e)?"#888":tr(e,t)?.color??"#666"}function tt(e,t){if(typeof e=="object"){if(t in e)return e[t];if(t.includes(".")){const n=t.split("."),o=e[n[0]];if(typeof o=="object"&&o.dataType==="map"&&o.properties)return tt(o.properties,n.slice(1).join("."))}}}function wr(e,t){if(typeof e=="object"){if(t in e)return e[t];if(t.includes(".")){const n=t.split("."),o=e[n[0]];if(o.dataType==="map"&&o.properties)return wr(o.properties,n.slice(1).join("."))}}}function Rl(e){return e.replace(/\.([^.]*)/g,"[$1]")}function Ln(e,t){if(!t)return e;const n={};return t.filter(Boolean).forEach(o=>{const l=tt(e,o);typeof l=="object"&&l.dataType==="map"&&l.properties&&(n[o]={...l,properties:Ln(l.properties,l.propertiesOrder??[])}),l&&(n[o]=l)}),n}function ei(e){return e.propertiesOrder?e.propertiesOrder:[...Object.keys(e.properties),...(e.additionalFields??[]).map(t=>t.key)]}const jt={read:!0,edit:!0,create:!0,delete:!0};function Ct(e,t,n,o){const l=e.permissions;if(l===void 0)return jt;if(typeof l=="object")return l;if(typeof l=="function")return l({entity:o,user:t.user,authController:t,collection:e,pathSegments:n});throw console.error("Permissions:",l),Error("New type of permission added and not mapped")}function Cr(e,t,n,o){return Ct(e,t,n,o).edit??jt.edit}function at(e,t,n,o){return Ct(e,t,n,o).create??jt.create}function Ht(e,t,n,o){return Ct(e,t,n,o).delete??jt.delete}function $n(e,t){if(e&&(e=_t(e),e in qt))return e in qt?r.jsx(f.Icon,{iconKey:e,size:"medium",className:t}):void 0}function Jt(e,t){const n=$n(e.icon,t);if(e?.icon&&n)return n;let o=_t(("singularName"in e?e.singularName:void 0)??e.name),l;o in qt&&(l=o),l||(o=_t(e.path),o in qt&&(l=o));const i=f.coolIconKeys.length;return l||(l=f.coolIconKeys[Pn(e.path)%i]),r.jsx(f.Icon,{iconKey:l,size:"medium",className:t})}const qt=f.iconKeys.reduce((e,t)=>(e[t]=t,e),{});function ti(e,t){if(t!==void 0&&t===1)return e;const n={"(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"},o={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 i in o){const s=new RegExp(`${i}$`,"i"),a=o[i];if(s.test(e))return e.replace(s,a)}for(const i in n){const s=new RegExp(i,"i");if(s.test(e))return e.replace(s,n[i])}return e}function ri(e,t){if(t!==void 0&&t!==1)return e;const n={"(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$:""},o={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 i in o){const s=new RegExp(`${o[i]}$`,"i");if(s.test(e))return e.replace(s,i)}for(const i in n){const s=new RegExp(i,"i");if(s.test(e))return e.replace(s,n[i])}return e}function _n(e,t,n,o=3){const l=Object.keys(e.properties);let i=n?.filter(s=>l.includes(s));return i&&i.length>0?i:(i=l,i.filter(s=>{const a=e.properties[s];return a&&!ve(a)&&!Un(a,t)}).slice(0,o))}function Er(e,t=""){return e&&Object.keys(e).reduce((n,o)=>{const l=t?`${t}.${o}`:o;return typeof e[o]=="object"&&e[o]!==null?Array.isArray(e[o])?e[o].forEach((i,s)=>{Object.assign(n,Er(i,`${l}[${s}]`))}):Object.assign(n,Er(e[o],l)):n[l]=e[o],n},{})}function Wn(e){return e.reduce((t,n)=>(Object.entries(n).forEach(([o,l])=>{if(Array.isArray(l)&&(t[o]=Math.max(t[o]||0,l.length)),typeof l=="object"&&l!==null){const i=Wn([l]);Object.entries(i).forEach(([s,a])=>{const d=`${o}.${s}`;t[d]=Math.max(t[d]||0,a)})}}),t),{})}function jn(e){return Object.keys(e).forEach(t=>{const n=e[t];n.editable=!0,n.dataType==="map"&&n.properties&&jn(n.properties)}),e}function Hn(e){return Object.entries(e).reduce((t,[n,o])=>{if(!ve(o)&&o.dataType==="map"&&o.properties){const l={...o,properties:Hn(o.properties)};t[n]=l}return ve(o)?t[n]=o:t[n]={...o,editable:!1},t},{})}function Br(e,t,n){if(e){const l=e({collection:t,parentPaths:n})??t;return l.subcollections&&(l.subcollections=l.subcollections.map(i=>Br(e,i,[...n,t.path]))),l}else return t}function Jn(e,t,n=[],o){const l=(t??[]).map(s=>{const a=e?.find(d=>d.id===s.id);return a?qn(a,s,n,o):Br(o,s,n)}),i=e.filter(s=>!l.map(a=>a.id).includes(s.id)).map(s=>o?Br(o,s,n):s);return[...l,...i]}function qn(e,t,n=[],o){const l=Jn(e?.subcollections??[],t?.subcollections??[],[...n,e.path],o),i={...e.properties};Object.keys(t.properties).forEach(h=>{const u=e.properties[h];u?i[h]=Zn(u,t.properties[h]):i[h]=t.properties[h]});const s=Fe(e,t),a=Xn(e),d=Xn(t),A=[...new Set([...d,...a])],g=[...new Set([...e.entityViews??[],...t.entityViews??[]])];let p={...s,subcollections:l,properties:mr(i,A),propertiesOrder:A,entityViews:g};if(o){const h=o({collection:p,parentPaths:n});h&&(p=h)}return p}function Zn(e,t){if(ve(t))return t;{const n=Fe(e,t),o=!!e.editable,l=!!t.editable;if(t.dataType==="map"&&t.properties){const i="properties"in e?e.properties:{},s="properties"in t?t.properties:{},a="propertiesOrder"in e&&e.propertiesOrder?e.propertiesOrder:Object.keys(i),d="propertiesOrder"in t&&t.propertiesOrder?t.propertiesOrder:"properties"in t?Object.keys(t.properties):[],A=[...new Set([...a,...d])],g={...i};return Object.keys(t.properties).forEach(p=>{const h=i[p];h&&(g[p]=Zn(h,s[p]))}),{...n,editable:o&&l,properties:g,propertiesOrder:A}}return{...n,editable:o&&l}}}function Xn(e){if(e.propertiesOrder&&e.propertiesOrder.length>0){const t=e.propertiesOrder;return e.additionalFields&&e.additionalFields.forEach(n=>{t.includes(n.key)||t.push(n.key)}),t}return[...Object.keys(e.properties),...(e.additionalFields??[])?.map(t=>t.key)]}function ni(e){return e}function oi(e){return e}function li(e){return e}function ii(e){return e}function si(e){return e}function ai(e){return e}function ci(e){return e}function di(e){return e}function Ai(e){return e}const Kn=c.createContext({}),Te=()=>c.useContext(Kn),Rn=c.createContext({}),ie=()=>c.useContext(Rn),_e=()=>c.useContext(cr),eo=c.createContext({}),Et=()=>c.useContext(eo),to=c.createContext({}),We=()=>c.useContext(to),ro=c.createContext({}),ct=()=>c.useContext(ro),je=()=>{const{enqueueSnackbar:e,closeSnackbar:t}=wn.useSnackbar(),n=c.useCallback(l=>{const{type:i,message:s,autoHideDuration:a}=l;e({message:s,variant:i,autoHideDuration:a})},[]),o=c.useCallback(()=>{t()},[]);return c.useMemo(()=>({open:n,close:o}),[n,o])},no=c.createContext(void 0),dt=()=>c.useContext(no),oo=c.createContext({}),fi=({children:e})=>{const[t,n]=c.useState([]),o=c.useRef(t),l=a=>{o.current=a,n(a)},i=c.useCallback(()=>{if(t.length===0)return;const a=[...t.slice(0,-1)];l(a)},[t]),s=c.useCallback(a=>{const d=[...t,a];return l(d),{closeDialog:()=>{const A=o.current.filter(g=>g.key!==a.key);l(A)}}},[t]);return r.jsxs(oo.Provider,{value:{open:s,close:i},children:[e,t.map((a,d)=>r.jsx(a.Component,{open:!0},`dialog_${d}`))]})},ui=()=>c.useContext(oo),kr=c.createContext({}),X=()=>{const e=c.useContext(kr),t=_e(),n=Et(),o=We(),l=ie(),i=Te(),s=ct(),a=je(),d=dt(),A=ui();return{...e,authController:t,sideDialogsController:n,sideEntityController:o,navigation:l,dataSource:i,storageSource:s,snackbarController:a,userConfigPersistence:d,dialogsController:A}};function lo({path:e,collection:t,filterValues:n,sortBy:o,itemCount:l,searchString:i}){const s=Te(),d=ie().resolveAliasesFrom(e),A=o?o[0]:void 0,g=o?o[1]:void 0,p=X(),[h,u]=c.useState([]),[m,b]=c.useState(!1),[y,w]=c.useState(),[C,E]=c.useState(!1);return c.useEffect(()=>{b(!0);const k=async x=>{if(t.callbacks?.onFetch)try{x=await Promise.all(x.map(B=>t.callbacks.onFetch({collection:t,path:d,entity:B,context:p})))}catch(B){console.error(B)}b(!1),w(void 0),u(x.map(B=>({...B}))),E(!l||x.length<l)},S=x=>{console.error("ERROR",x),b(!1),u([]),w(x)};return s.listenCollection?s.listenCollection({path:d,collection:t,onUpdate:k,onError:S,searchString:i,filter:n,limit:l,startAfter:void 0,orderBy:A,order:g}):(s.fetchCollection({path:d,collection:t,searchString:i,filter:n,limit:l,startAfter:void 0,orderBy:A,order:g}).then(k).catch(S),()=>{})},[d,l,g,A,n,i]),{data:h,dataLoading:m,dataLoadingError:y,noMoreToLoad:C}}const xr={};function Sr({path:e,entityId:t,collection:n,useCache:o=!1}){const l=Te(),s=ie().resolveAliasesFrom(e),a=X(),[d,A]=c.useState(),[g,p]=c.useState(!0),[h,u]=c.useState();return c.useEffect(()=>{p(!0);const m=async y=>{if(n.callbacks?.onFetch&&y)try{y=await n.callbacks.onFetch({collection:n,path:s,entity:y,context:a})}catch(w){console.error(w)}xr[`${s}/${t}`]=y,A(y),p(!1),u(void 0)},b=y=>{console.error("ERROR fetching entity",y),p(!1),A(void 0),u(y)};return t&&o&&xr[`${s}/${t}`]?(A(xr[`${s}/${t}`]),p(!1),u(void 0),()=>{}):t&&s&&n?l.listenEntity?l.listenEntity({path:s,entityId:t,collection:n,onUpdate:m,onError:b}):(l.fetchEntity({path:s,entityId:t,collection:n}).then(m).catch(b),()=>{}):(m(void 0),()=>{})},[t,s]),{entity:d,dataLoading:g,dataLoadingError:h}}async function Ir({collection:e,path:t,entityId:n,values:o,previousValues:l,status:i,dataSource:s,context:a,onSaveSuccess:d,onSaveFailure:A,onPreSaveHookError:g,onSaveSuccessHookError:p}){let h;const u=a.navigation.resolveAliasesFrom(t),m=e.callbacks;if(m?.onPreSave)try{const b=Be({collection:e,path:t,values:l,entityId:n,fields:a.propertyConfigs});h=await m.onPreSave({collection:b,path:t,resolvedPath:u,entityId:n,values:o,previousValues:l,status:i,context:a})}catch(b){console.error(b),g&&g(b);return}else h=o;return s.saveEntity({collection:e,path:u,entityId:n,values:h,previousValues:l,status:i}).then(b=>{try{if(m?.onSaveSuccess){const y=Be({collection:e,path:t,values:h,entityId:n,fields:a.propertyConfigs});m.onSaveSuccess({collection:y,path:t,resolvedPath:u,entityId:b.id,values:h,previousValues:l,status:i,context:a})}}catch(y){p&&p(y)}d&&d(b)}).catch(b=>{if(m?.onSaveFailure){const y=Be({collection:e,path:t,values:h,entityId:n,fields:a.propertyConfigs});m.onSaveFailure({collection:y,path:t,resolvedPath:u,entityId:n,values:h,previousValues:l,status:i,context:a})}A&&A(b)})}async function io({dataSource:e,entity:t,collection:n,callbacks:o,onDeleteSuccess:l,onDeleteFailure:i,onPreDeleteHookError:s,onDeleteSuccessHookError:a,context:d}){console.debug("Deleting entity",t.path,t.id);const A={entity:t,collection:n,entityId:t.id,path:t.path,context:d};if(o?.onPreDelete)try{await o.onPreDelete(A)}catch(g){return console.error(g),s&&s(t,g),!1}return e.deleteEntity({entity:t}).then(()=>{l&&l(t);try{return o?.onDelete&&o.onDelete(A),!0}catch(g){return a&&a(t,g),!1}}).catch(g=>(i&&i(t,g),!1))}function xe({property:e,value:t,setValue:n}){const o=c.useRef(null);c.useEffect(()=>{typeof e.disabled=="object"&&!!e.disabled.clearOnDisabled?t!=null&&(o.current=t,n(null)):o.current&&(n(o.current),o.current=null)},[e])}function so({path:e,context:t}){const n=t.dataSource,o=t.navigation;if(!o)throw Error("Calling getNavigationFrom, but main navigation has not yet been initialised");const i=mn({path:e,collections:o.collections??[]}).map(s=>{if(s.type==="collection")return Promise.resolve(s);if(s.type==="entity"){const a=o.getCollection(s.path,s.entityId);if(!a)throw Error(`No collection defined in the navigation for the entity with path ${s.path}`);return n.fetchEntity({path:s.path,entityId:s.entityId,collection:a}).then(d=>{if(d)return{...s,entity:d}})}else{if(s.type==="custom_view")return Promise.resolve(s);throw Error("Unmapped element in useEntitiesFromPath")}}).filter(s=>!!s);return Promise.all(i)}function gi({path:e}){const t=X(),[n,o]=c.useState(),[l,i]=c.useState(!1),[s,a]=c.useState();return c.useEffect(()=>{t.navigation&&(i(!0),a(void 0),so({path:e,context:t}).then(A=>{o(A)}).catch(A=>a(A)).finally(()=>i(!1)))},[e,t]),t.navigation?{data:n,dataLoading:l,dataLoadingError:s}:{dataLoading:!0}}const Fr=()=>c.useContext(Dt),ao=e=>{const{onSuccess:t,onError:n,disableClipboardAPI:o=!1,copiedDuration:l}=e||{},i=c.useRef(null),[s,a]=c.useState(!1),[d,A]=c.useState("");c.useEffect(()=>{l&&setTimeout(()=>a(!1),l)},[s]);const g=()=>navigator.clipboard!==void 0,p=c.useCallback(C=>{if(n)n(C);else throw new Error(C)},[n]),h=c.useCallback(C=>{t&&t(C),a(!0),A(C)},[t]),u=c.useCallback(C=>{navigator.clipboard.writeText(C).then(()=>h(C)).catch(E=>{p(E),a(!1)})},[p,h]),m=()=>{g()&&navigator.clipboard.writeText("")},b=C=>w("copy",typeof C=="object"?void 0:C),y=()=>w("cut"),w=c.useCallback((C="copy",E)=>{const k=i.current,S=k&&(k.tagName==="INPUT"||k.tagName==="TEXTAREA"),x=i.current;g()&&!o&&(E?u(E):k?S?(u(x.value),C==="cut"&&(x.value="")):u(k.innerText):p("Both the ref & text were undefined"))},[o,u,p]);return{ref:i,isCoppied:s,clipboard:d,clearClipboard:m,isSupported:g,copy:b,cut:y}},Nr=()=>c.useContext(xn),hi={xs:0,sm:640,md:768,lg:1024,xl:1280,"2xl":1536,"3xl":1920},Pe=(e="lg")=>{const[t,n]=c.useState(!1);return c.useEffect(()=>{const o=()=>{const l=window.matchMedia(`(min-width: ${hi[e]+1}px)`).matches;n(l)};return o(),window.addEventListener("resize",o),()=>{window.removeEventListener("resize",o)}},[]),t};function Bt(e){const t=ie(),n=Et(),o=c.useCallback(()=>{if(e.path){let i=e.collection;if(i||(i=t.getCollection(e.path)),!i)throw Error("Not able to resolve the collection in useReferenceDialog");n.open({key:`reference_${e.path}`,component:r.jsx(Ho,{collection:i,...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,n]),l=c.useCallback(()=>{n.close()},[n]);return{open:o,close:l}}const pi=`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 mi(e,t){c.useEffect(()=>{if(document){document.title=`${e} - FireCMS`;let n=document.querySelector("link[rel~='icon']");n||(n=document.createElement("link"),n.rel="icon",document.getElementsByTagName("head")[0].appendChild(n)),n.href=t??pi}},[e,t])}function At(){return r.jsx("div",{className:"rounded-full bg-gray-200 bg-opacity-30 dark:bg-opacity-20 w-5 h-2 inline-block"})}const bi=40,yi=100,vi=200;function ft(e){if(e==="tiny")return bi;if(e==="small")return yi;if(e==="medium")return vi;throw Error("Thumbnail size not mapped")}function He(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 co({size:e,url:t}){const[n,o]=c.useState(!1),l=c.useMemo(()=>ft(e),[e]);if(e==="tiny")return r.jsx("img",{src:t,className:"rounded-md",style:{position:"relative",objectFit:"cover",width:l,height:l,maxHeight:"100%"}},"tiny_image_preview_"+t);const i={maxWidth:"100%",maxHeight:"100%"};return r.jsxs("div",{className:"relative flex items-center justify-center max-w-full max-h-full",style:{width:l,height:l},onMouseEnter:()=>o(!0),onMouseMove:()=>o(!0),onMouseLeave:()=>o(!1),children:[r.jsx("img",{src:t,className:"rounded-md",style:i}),n&&r.jsxs(r.Fragment,{children:[navigator&&r.jsx(f.Tooltip,{title:"Copy url to clipboard",children:r.jsx("div",{className:"rounded-full absolute bottom-[-4px] right-8",children:r.jsx(f.IconButton,{variant:"filled",size:"small",onClick:s=>(s.stopPropagation(),s.preventDefault(),navigator.clipboard.writeText(t)),children:r.jsx(f.ContentCopyIcon,{className:"text-gray-500",size:"small"})})})}),r.jsx(f.Tooltip,{title:"Open image in new tab",children:r.jsx(f.IconButton,{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:r.jsx(f.OpenInNewIcon,{className:"text-gray-500",size:"small"})})})]})]},"image_preview_"+t)}function kt({url:e,previewType:t,size:n,hint:o}){return t?t==="image"?r.jsx(co,{url:e,size:n}):t==="audio"?r.jsxs("audio",{controls:!0,src:e,children:["Your browser does not support the",r.jsx("code",{children:"audio"})," element."]}):t==="video"?r.jsx("video",{className:`max-w-${n==="small"?"sm":"md"}`,controls:!0,children:r.jsx("source",{src:e})}):r.jsxs("a",{href:e,rel:"noopener noreferrer",target:"_blank",onClick:l=>l.stopPropagation(),className:"flex flex-col items-center justify-center",style:{width:ft(n),height:ft(n)},children:[r.jsx(f.DescriptionIcon,{className:"flex-grow"}),o&&r.jsx(f.Tooltip,{title:o,children:r.jsx(f.Typography,{className:"max-w-full truncate rtl text-left",variant:"caption",children:o})})]}):!e||!e.trim()?r.jsx(At,{}):r.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:[r.jsx(f.OpenInNewIcon,{size:"small"}),e]})}function ut({property:e,size:t}){e||console.error("No property assigned for skeleton component",e,t);let n;if(e.dataType==="string"){const o=e;o.url?n=xi(o,t):o.storage?n=Pr(t):n=Ve()}else if(e.dataType==="array"){const o=e;o.of&&(Array.isArray(o.of)?n=r.jsxs(r.Fragment,{children:[o.of.map((l,i)=>Tr(l,i))," "]}):o.of.dataType==="map"&&o.of.properties?n=Ci(o.of.properties,t,o.of.previewProperties):o.of.dataType==="string"?o.of.enumValues?n=Bi():o.of.storage?n=Tr(o.of):n=Ei():n=Tr(o.of))}else e.dataType==="map"?n=wi(e,t):e.dataType==="date"?n=Ve():e.dataType==="reference"?n=ki():(e.dataType,n=Ve());return n||null}function wi(e,t){if(!e.properties)return r.jsx(r.Fragment,{});let n;return t==="medium"?n=Object.keys(e.properties):(n=e.previewProperties||Object.keys(e.properties),t==="small"?n=n.slice(0,3):t==="tiny"&&(n=n.slice(0,1))),t!=="medium"?r.jsx("div",{className:"w-full flex flex-col space-y-4",children:n.map((o,l)=>r.jsx("div",{children:e.properties&&e.properties[o]&&r.jsx(ut,{property:e.properties[o],size:"small"})},`map_${o}`))}):r.jsx("table",{className:"table-auto",children:r.jsx("tbody",{children:n&&n.map((o,l)=>r.jsxs("tr",{className:"border-b last:border-b-0",children:[r.jsx("th",{className:"align-top",style:{width:"30%"},children:r.jsx("p",{className:"text-xs text-secondary",children:e.properties[o].name})},`table-cell-title--${o}`),r.jsx("th",{style:{width:"70%"},children:e.properties&&e.properties[o]&&r.jsx(ut,{property:e.properties[o],size:"small"})},`table-cell-${o}`)]},`map_preview_table__${l}`))})})}function Ci(e,t,n){let o=n;return(!o||!o.length)&&(o=Object.keys(e),t&&(o=o.slice(0,3))),r.jsx("table",{className:"table-auto",children:r.jsx("tbody",{children:[0,1,2].map((l,i)=>r.jsx("tr",{children:o&&o.map(s=>r.jsx("th",{children:r.jsx(ut,{property:e[s],size:"small"})},`table-cell-${s}`))},`table_${l}_${i}`))})})}function Ei(){return r.jsx("div",{className:"flex flex-col gap-2",children:[0,1].map((e,t)=>Ve(t))})}function Bi(){return r.jsx("div",{className:"flex flex-col gap-2",children:[0,1].map((e,t)=>r.jsx(r.Fragment,{children:Ve(t)}))})}function Tr(e,t=0){return r.jsx("div",{className:"flex flex-col gap-2",children:[0,1].map((n,o)=>r.jsx(r.Fragment,{children:r.jsx(ut,{property:e,size:"small"},`i_${o}`)}))},"array_index_"+t)}function Pr(e){const t=e==="tiny"?40:e==="small"?100:200;return r.jsx(f.Skeleton,{width:t,height:t})}function ki(){return r.jsx(f.Skeleton,{width:200,height:100})}function xi(e,t="medium"){return typeof e.url=="boolean"?r.jsxs("div",{style:{display:"flex"},children:[Qr(),Ve()]}):Si(t)}function Si(e){return r.jsx("div",{className:`w-${ft(e)} h-${ft(e)}`,children:Qr()})}function Ve(e,t=120){return r.jsx(f.Skeleton,{width:t},`skeleton_${e}`)}function Ii(e){return r.jsx(f.Skeleton,{height:20})}function Qr(){return r.jsx(f.Skeleton,{width:24,height:24})}const Ao=c.memo(uo,Fi);function Fi(e,t){return e.size===t.size&&e.storagePathOrDownloadUrl===t.storagePathOrDownloadUrl&&e.storeUrl===t.storeUrl}const fo={};function uo({storeUrl:e,storagePathOrDownloadUrl:t,size:n}){const[o,l]=c.useState(void 0),i=ct(),[s,a]=c.useState(fo[t]);if(c.useEffect(()=>{if(!t)return;let g=!1;return i.getDownloadURL(t).then(function(p){g||(a(p),fo[t]=p)}).catch(l),()=>{g=!0}},[t]),!t)return null;const d=s?.metadata?Ni(s?.metadata.contentType):void 0,A=d?.startsWith("image")?"image":d?.startsWith("video")?"video":d?.startsWith("audio")?"audio":"file";return s?.fileNotFound?r.jsx(he,{error:"File not found"}):s?.url?r.jsx(kt,{previewType:A,url:s.url,size:n,hint:t}):Pr(n)}function Ni(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 we({enumValues:e,enumKey:t,size:n,className:o,children:l}){if(!e)return null;const i=$e(e),s=t!==void 0?$t(i,t):void 0,a=Dn(s),d=Mn(i,t);return r.jsxs(f.Chip,{className:o,colorScheme:d,error:!a,outlined:!1,size:n,children:[l,!l&&(a!==void 0?a:String(t))]})}function Mr({propertyKey:e,value:t,property:n,size:o}){if(n.enumValues){const l=t,i=hn(n);return r.jsx(we,{enumKey:l,enumValues:i.enumValues,size:o!=="medium"?"small":"medium"})}else if(n.previewAsTag){const l=Qn(e??"");return r.jsx(ne,{children:r.jsx(f.Chip,{colorScheme:l,size:o!=="medium"?"small":"medium",children:t})})}else{if(n.url)return r.jsx(kt,{size:o,url:t,previewType:typeof n.url=="string"?n.url:void 0});{if(!t)return r.jsx(r.Fragment,{});const l=t.split(`
94
3
  `);return t&&t.includes(`
95
- `)?n.jsx("div",{className:"overflow-x-scroll",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 qr({propertyKey:e,value:t,property:c,entity:i,size:a}){const l=ee(),s=In({propertyKey:e,property:c,propertyValue:t,fields:l.propertyConfigs});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 gap-2",children:d&&d.map((A,g)=>{const h=s.resolvedProperties[g]??s.resolvedProperties[g]??(Array.isArray(s.of)?s.of[g]:s.of);return h?n.jsx(f.Fragment,{children:n.jsx("div",{className:F(fe,"m-1 border-b last:border-b-0"),children:n.jsx(ae,{children:n.jsx(Ce,{propertyKey:e,entity:i,value:A,property:h,size:u})})})},"preview_array_"+g):null})})}const rn=le.memo(function(t){const c=t.reference;return c instanceof $e?n.jsx(kz,{...t}):(console.warn("Reference preview received value of type",typeof c),n.jsx(Vo,{onClick:t.onClick,size:t.size,children:n.jsx(me,{error:"Unexpected value. Click to edit",tooltip:JSON.stringify(c)})}))},wz);function wz(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 kz({disabled:e,reference:t,previewProperties:c,size:i,onHover:a,onClick:l,allowEntityNavigation:s=!0}){const d=ee(),A=Ae().getCollection(t.path);if(!A){if(d.components?.missingReference)return n.jsx(d.components.missingReference,{path:t.path});throw Error(`Couldn't find the corresponding collection view for the path: ${t.path}`)}return n.jsx(mz,{reference:t,collection:A,previewProperties:c,size:i,disabled:e,allowEntityNavigation:s,onClick:l,onHover:a})}function mz({reference:e,collection:t,previewProperties:c,size:i,disabled:a,allowEntityNavigation:l,onClick:s,onHover:d}){const u=ee(),A=fn(),{entity:g,dataLoading:h,dataLoadingError:_}=Nr({path:e.path,entityId:e.id,collection:t,useCache:!0});g&&di.set(e.pathWithId,g);const y=g??di.get(e.pathWithId),I=f.useMemo(()=>Te({collection:t,path:e.path,values:y?.values,fields:u.propertyConfigs}),[t]),b=f.useMemo(()=>va(I,u.propertyConfigs,c,i==="small"||i==="medium"?3:1),[c,I,i]);let p;return I?(e?y&&!y.values?p=n.jsx(me,{error:"Reference does not exist",tooltip:e.path}):p=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"&&(e?n.jsx("div",{className:`${i!=="medium"?"block whitespace-nowrap overflow-hidden truncate":""}`,children:n.jsx(Z,{variant:"caption",className:"font-mono",children:e.id})}):n.jsx(Oe,{})),b&&b.map(w=>{const k=I.properties[w];return k?n.jsx("div",{className:b.length>1?"my-0.5":"my-0",children:y?n.jsx(Ce,{propertyKey:w,value:gn(y.values,w),property:k,entity:y,size:"tiny"}):n.jsx(Wn,{property:k,size:"tiny"})},"ref_prev_"+w):null})]}),n.jsx("div",{className:`my-${i==="tiny"?2:4}`,children:!a&&y&&l&&n.jsx(ye,{title:`See details for ${y.id}`,children:n.jsx(R,{color:"inherit",size:"small",onClick:w=>{w.stopPropagation(),u.onAnalyticsEvent?.("entity_click_from_reference",{path:y.path,entityId:y.id}),A.open({entityId:y.id,path:y.path,collection:I,updateUrl:!0})},children:n.jsx(Ko,{size:"small"})})})})]}):p=n.jsx(me,{error:"Reference not set"}),n.jsx(Vo,{onClick:a?void 0:s,onHover:a?void 0:d,size:i,children:p})):n.jsx(me,{error:"Could not find collection with id "+I})}function Vo({children:e,onHover:t,size:c,onClick:i}){return n.jsx(Z,{variant:"label",className:F("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 di=new Map;function ui({propertyKey:e,value:t,property:c,size:i}){const a=ee(),l=In({propertyKey:e,property:c,propertyValue:t,fields:a.propertyConfigs});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(rn,{disabled:!A.path,previewProperties:A.previewProperties,size:s,reference:d})},`preview_array_ref_${e}_${u}`)})})}function fi({propertyKey:e,entity:t,value:c,property:i,size:a}){const l=ee(),s=In({propertyKey:e,property:i,propertyValue:c,fields:l.propertyConfigs});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(ae,{children:n.jsx(Ce,{propertyKey:e,value:u,entity:t,property:s.of,size:d})},`preview_array_storage_${e}_${A}`))})}function Jr({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(ae,{children:n.jsx(Fe,{enumKey:a,enumValues:c,size:i!=="medium"?"small":"medium"})},`preview_array_ref_${e}_${l}`))})}function Zr({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(Jr,{name:e,value:t,enumValues:a.enumValues,size:i}):null}function Ai({propertyKey:e,value:t,property:c,entity:i,size:a}){const l=ee(),s=In({propertyKey:e,property:c,propertyValue:t,fields:l.propertyConfigs});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(ae,{children:n.jsx($r,{propertyKey:e,property:d,value:u,entity:i,size:a})})},`preview_array_strings_${e}_${A}`))})}function yi({propertyKey:e,value:t,property:c,size:i,entity:a}){const l=ee(),s=In({propertyKey:e,property:c,propertyValue:t,fields:l.propertyConfigs});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??oo,g=s.oneOf.valueField??Fo,h=s.oneOf.properties;return n.jsx("div",{className:"flex flex-col",children:d&&d.map((_,y)=>n.jsx(f.Fragment,{children:n.jsx("div",{className:F(fe,"m-1 border-b last:border-b-0"),children:n.jsx(ae,{children:_&&n.jsx(Ce,{propertyKey:e,value:_[g],entity:a,property:s.resolvedProperties[y]??h[_[A]],size:u})})})},"preview_array_"+_+"_"+y))})}function gi({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(!l.properties||Object.keys(l.properties??{}).length===0)return n.jsx(Xr,{value:t});if(!t)return null;const s=Object.keys(l.properties);return a==="tiny"?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(ae,{children:n.jsx(Ce,{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:F(fe,"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(Z,{variant:"caption",className:"font-mono break-words",color:"secondary",children:A.name})}),n.jsx("div",{className:"flex-grow max-w-[75%]",children:n.jsx(ae,{children:!(A.dataType==="map"||A==="array")&&n.jsx(Ce,{propertyKey:d,value:t[d],property:A,entity:i,size:a})})})]}),(A.dataType==="map"||A==="array")&&n.jsx("div",{className:F(fe,"border-l pl-4 ml-2 my-2"),children:n.jsx(Ce,{propertyKey:d,value:t[d],property:A,entity:i,size:a})})]},`map_preview_table_${d}}`)})})}function Xr({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:F(fe,"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(Z,{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(Z,{children:n.jsx(ae,{children:c&&c.toString()})})})]}),typeof c=="object"&&n.jsx("div",{className:F(fe,"border-l pl-4"),children:n.jsx(Xr,{value:c})})]},`map_preview_table_${t}}`))})}function _i({date:e}){const t=ee(),c=t?.locale?Rt[t?.locale]:void 0,i=t?.dateTimeFormat??qc,a=e?Ja(e,i,{locale:c}):"";return n.jsx(n.Fragment,{children:a})}function hi({value:e}){return n.jsx(Er,{checked:e})}function Ii({value:e,property:t,size:c}){if(t.enumValues){const i=e,a=yn(t.enumValues);return a?n.jsx(Fe,{enumKey:i,enumValues:a,size:c!=="medium"?"small":"medium"}):n.jsx(n.Fragment,{children:e})}else return n.jsx(n.Fragment,{children:e})}function Ce(e){const t=ee();let c;const{property:i,propertyKey:a,value:l,size:s,height:d,width:u,entity:A}=e,g=Me({propertyKey:a,propertyOrBuilder:i,propertyValue:l,fields:t.propertyConfigs});if(l===void 0||g===null)c=n.jsx(Qn,{});else if(g.Preview)c=f.createElement(g.Preview,{propertyKey:a,value:l,property:g,size:s,height:d,width:u,entity:A,customProps:g.customProps});else if(l===null)c=n.jsx(Qn,{});else if(g.dataType==="string"){const h=g;typeof l=="string"?h.url?typeof h.url=="boolean"?c=n.jsx(co,{size:e.size,url:l}):typeof h.url=="string"&&(c=n.jsx(co,{size:e.size,url:l,previewType:h.url})):h.storage?c=n.jsx(ai,{storeUrl:g.storage?.storeUrl??!1,size:e.size,storagePathOrDownloadUrl:l}):h.markdown?c=n.jsx(Ao,{source:l}):c=n.jsx($r,{...e,property:h,value:l}):c=Kn(a,g.dataType,l)}else if(g.dataType==="array")if(l instanceof Array){const h=g;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(qr,{...e,value:l,property:g}):h.of.dataType==="reference"?c=n.jsx(ui,{...e,value:l,property:g}):h.of.dataType==="string"?h.of.enumValues?c=n.jsx(Zr,{...e,value:l,property:g}):h.of.storage?c=n.jsx(fi,{...e,value:l,property:g}):c=n.jsx(Ai,{...e,value:l,property:g}):h.of.dataType==="number"&&h.of.enumValues?c=n.jsx(Zr,{...e,value:l,property:g}):c=n.jsx(qr,{...e,value:l,property:g}):h.oneOf&&(c=n.jsx(yi,{...e,value:l,property:g}))}else c=Kn(a,g.dataType,l);else g.dataType==="map"?typeof l=="object"?c=n.jsx(gi,{...e,property:g}):c=Kn(a,g.dataType,l):g.dataType==="date"?l instanceof Date?c=n.jsx(_i,{date:l}):c=Kn(a,g.dataType,l):g.dataType==="reference"?typeof g.path=="string"?l instanceof $e?c=n.jsx(rn,{disabled:!g.path,previewProperties:g.previewProperties,size:e.size,onClick:e.onClick,reference:l}):c=Kn(a,g.dataType,l):c=n.jsx(Qn,{}):g.dataType==="boolean"?typeof l=="boolean"?c=n.jsx(hi,{value:l}):c=Kn(a,g.dataType,l):g.dataType==="number"?typeof l=="number"?c=n.jsx(Ii,{...e,value:l,property:g}):c=Kn(a,g.dataType,l):c=JSON.stringify(l);return c??n.jsx(Qn,{})}function Kn(e,t,c){return console.warn(`Unexpected value for property ${e}, of type ${t}`,c),n.jsx(me,{title:"Unexpected value",error:`${JSON.stringify(c)}`})}function vz({propertyKey:e,value:t,property:c,size:i,entity:a}){const l=ee(),s=In({propertyKey:e,property:c,propertyValue:t,fields:l.propertyConfigs});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,g=d.previewProperties;if(!A)return null;let h=g;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((_,y)=>n.jsx("div",{className:"border-b last:border-b-0",children:h&&h.map(I=>n.jsx("div",{className:"table-cell",children:n.jsx(ae,{children:n.jsx(Ce,{propertyKey:I,value:_[I],property:u[I],entity:a,size:"small"})})},`table-cell-${I}`))},`table_${_}_${y}`))})})}function Oe({width:e,height:t,className:c}){return n.jsx("span",{className:F("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)})}const Cz=le.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(Oe,{}):n.jsx(le.Fragment,{children:a})});function xr({entity:e,collection:t,path:c,className:i}){const a=ee(),l=f.useMemo(()=>Te({collection:t,path:c,entityId:e.id,values:e.values,fields:a.propertyConfigs}),[t,c,e]),s=ee(),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:F(fe,"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(Rn,{size:"small"})})})]})]}),Object.entries(d).map(([u,A])=>{const g=e.values[u];return n.jsxs("div",{className:F(fe,"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(Ce,{propertyKey:u,value:g,entity:e,property:A,size:"medium"})})]},`reference_previews_${u}`)})]})})}function Kz(e){return e.dataType==="boolean"?"center":e.dataType==="number"?e.enumValues?"left":"right":e.dataType==="date"?"right":"left"}function bi(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:bi(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 Rr(e){return`subcollection:${e.id??e.path}`}function pi(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 io(e){return parseInt(e,10)||0}const Sz={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 et=le.forwardRef(function(t,c){const{onChange:i,onScroll:a,onResize:l,maxRows:s,minRows:d=1,style:u,value:A,onFocus:g,onBlur:h,sizeRef:_,ignoreBoxSizing:y,...I}=t,{current:b}=le.useRef(A!=null),p=le.useRef(null),w=Bz(c,p),k=le.useRef(null),m=le.useRef(0),[v,S]=le.useState({outerHeightStyle:0}),K=le.useCallback(()=>{const B=p.current;if(typeof window>"u")return{outerHeightStyle:0};const N=window.getComputedStyle(B);if(N.width==="0px")return{outerHeightStyle:0};const W=_?.current??k.current,z=k.current;W.style.width=N.width,z.value=B.value||t.placeholder||"x",z.value.slice(-1)===`
96
- `&&(z.value+=" ");const q=N.boxSizing,ne=io(N.paddingBottom)+io(N.paddingTop),H=io(N.borderBottomWidth)+io(N.borderTopWidth),V=io(N.minHeight),te=W.scrollHeight;z.value="x";const U=W.scrollHeight;let J=te;d&&(J=Math.max(Number(d)*U,J)),s&&(J=Math.min(Number(s)*U,J)),J=Math.max(J,U,V);const de=J+(!y&&q==="border-box"?ne+H:0),Y=Math.abs(J-te)<=1;return{outerHeightStyle:de,overflow:Y}},[s,d,t.placeholder]),C=(B,D)=>{const{outerHeightStyle:N,overflow:W}=D;return m.current<20&&(N>0&&Math.abs((B.outerHeightStyle||0)-N)>1||B.overflow!==W)?(m.current+=1,{overflow:W,outerHeightStyle:N}):(process.env.NODE_ENV!=="production"&&m.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(`
97
- `)),B)},P=le.useCallback(()=>{const B=K();wi(B)||(l&&l(B),S(D=>C(D,B)))},[K,l]),E=()=>{const B=K();wi(B)||ol.flushSync(()=>{S(D=>C(D,B))})};le.useEffect(()=>{const B=pi(()=>{m.current=0,p.current&&E()});let D;const N=p.current,W=window;if(!(typeof window>"u"))return W.addEventListener("resize",B),typeof ResizeObserver<"u"&&(D=new ResizeObserver(B),D.observe(N)),()=>{B.clear(),W.removeEventListener("resize",B),D&&D.disconnect()}}),f.useLayoutEffect(()=>{P()}),le.useEffect(()=>{m.current=0},[A]);const T=B=>{m.current=0,b||P(),i&&i(B)};return n.jsxs(le.Fragment,{children:[n.jsx("textarea",{value:A,onChange:T,className:t.className,ref:w,onFocus:g,onBlur:h,rows:d,style:{height:v.outerHeightStyle,overflow:v.overflow?"hidden":void 0,...u},onScroll:a,...I}),n.jsx("textarea",{"aria-hidden":!0,className:F(t.className,t.shadowClassName),readOnly:!0,ref:k,tabIndex:-1,style:{...Sz.shadow,...u,padding:0}})]})});function Bz(...e){return le.useMemo(()=>e.every(t=>t==null)?null:t=>{e.forEach(c=>{Ez(c,t)})},e)}function Ez(e,t){typeof e=="function"?e(t):e&&(e.current=t)}function Fz(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),g=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 Qo(u,h,!s,2e3),f.useEffect(()=>{t.current&&s&&!g.current?(g.current=!0,t.current.focus({preventScroll:!0}),t.current.selectionStart=t.current.value.length,t.current.selectionEnd=t.current.value.length):g.current=s},[s,t]),n.jsx(et,{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:_=>{const y=_.target.value;(a||!y.endsWith(`
98
- `))&&A(y)},onFocus:()=>{g.current=!0},onBlur:()=>{g.current=!1,h()}})}function nt(e){const{name:t,enumValues:c,error:i,internalValue:a,disabled:l,small:s,focused:d,updateValue:u,multiple:A,valueType:g}=e,h=Array.isArray(a)&&A||!Array.isArray(a)&&!A,_=f.useRef(null);f.useEffect(()=>{_.current&&d&&_.current?.focus({preventScroll:!0})},[d,_]);const y=f.useCallback(b=>{if(g==="number")if(A){const p=b.map(w=>parseFloat(w));u(p)}else u(parseFloat(b));else if(g==="string")u(b||null);else throw Error("Missing mapping in TableSelect")},[A,u,g]),I=(b,p)=>A&&Array.isArray(b)?n.jsx(Jr,{value:b,name:t,enumValues:c,size:s?"small":"medium"},`${b}-${p}`):n.jsx(Fe,{enumKey:b,enumValues:c,size:s?"small":"medium"},`${b}-${p}`);return A?n.jsx(kt,{inputRef:_,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:y,renderValue:I,children:c?.map(b=>n.jsx(mt,{value:String(b.id),children:n.jsx(Fe,{enumKey:b.id,enumValues:c,size:s?"small":"medium"})},b.id))}):n.jsx(xe,{inputRef:_,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:y,onMultiValueChange:y,renderValue:I,children:c?.map(b=>n.jsx(Re,{value:String(b.id),children:n.jsx(Fe,{enumKey:b.id,enumValues:c,size:s?"small":"medium"})},b.id))})}function Pz(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 _=parseFloat(s);if(isNaN(_))return;_!=null&&i(_)}else i(null)},[s,c]);Qo(s,A,!a,2e3),f.useEffect(()=>{!a&&l!==s&&d(c!=null?c.toString():null)},[c,a]);const g=f.useRef(null);f.useEffect(()=>{g.current&&a&&g.current.focus({preventScroll:!0})},[a,g]);const h=/^-?[0-9]+[,.]?[0-9]*$/;return n.jsx("input",{ref:g,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:_=>{const y=_.target.value.replace(",",".");y.length===0&&d(null),(h.test(y)||y.startsWith("-"))&&d(y)}})}function Dz(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(Ar,{ref:a,size:"small",value:!!t,onValueChange:c})}function Nz(e){const{disabled:t,error:c,mode:i,internalValue:a,updateValue:l}=e;return n.jsx(Yn,{value:a??void 0,onChange:s=>l(s),size:"medium",invisible:!0,className:"w-full h-full",inputClassName:"w-full h-full",mode:i})}class ae 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(kr,{color:"error",size:"small"}),n.jsx("div",{className:"ml-4",children:"Error"})]}),n.jsx(Z,{variant:"caption",children:this.state.error?.message??"See the error in the console"})]}):this.props.children}}async function Tz(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=ki(s,e,i,d,a),u||(u=Ln()+"_"+s.name),u}function Mz(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=ki(s,e,i,d,a),u||(u=Ln()+"_"+s.name),u}function ki(e,t,c,i,a){const l=e.name.split(".").pop();let s=t.replace("{entityId}",c).replace("{propertyKey}",i).replace("{rand}",Ln()).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=Ln()+"_"+e.name),s}function mi({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,g=a.dataType==="array";if(!A)throw Error("Storage meta must be specified");const h=A?.metadata,_=g?"small":"medium",y=A?.imageCompression,I=(g?i??[]:i?[i]:[]).map(C=>({id:ot(),storagePathOrDownloadUrl:C,metadata:h,size:_})),[b,p]=f.useState(i),[w,k]=f.useState(I);f.useEffect(()=>{se(b,i)||(p(i),k(I))},[I,i,b]);const m=f.useCallback(async C=>{if(A.fileName){const P=await Tz(A.fileName,A,t,e,c,a,C,l);if(!P||P.length===0)throw Error("You need to return a valid filename");return P}return Ln()+"_"+C.name},[e,t,c,a,l,A]),v=f.useCallback(C=>Mz(A.storagePath,A,t,e,c,a,C,l)??"/",[e,t,c,a,l,A]),S=f.useCallback(async(C,P,E)=>{console.debug("onFileUploadComplete",C,P);let T=C;if(A.storeUrl&&(T=(await s.getDownloadURL(C)).url),A.postProcess&&T&&(T=await A.postProcess(T)),!T){console.warn("uploadPathOrDownloadUrl is null");return}let B;P.storagePathOrDownloadUrl=T,P.metadata=E,B=[...w],B=vi(B),k(B);const D=B.filter(N=>!!N.storagePathOrDownloadUrl).map(N=>N.storagePathOrDownloadUrl);u(g?D:D?D[0]:null)},[w,g,u,A,s]),K=f.useCallback(async C=>{if(!C.length||d)return;let P;if(g)P=[...w,...await Promise.all(C.map(async E=>(y&&rt(E)&&(E=await Ki(E,y)),{id:ot(),file:E,fileName:await m(E),metadata:h,size:_})))];else{let E=C[0];y&&rt(E)&&(E=await Ki(E,y)),P=[{id:ot(),file:E,fileName:await m(E),metadata:h,size:_}]}P=vi(P),k(P)},[d,m,w,h,g,_]);return{internalValue:w,setInternalValue:k,storage:A,fileNameBuilder:m,storagePathBuilder:v,onFileUploadComplete:S,onFilesAdded:K,multipleFilesSupported:g}}function vi(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 ot(){return Math.floor(Math.random()*Math.floor(Number.MAX_SAFE_INTEGER))}const Ci={"image/jpeg":"JPEG","image/png":"PNG","image/webp":"WEBP"},rt=e=>Ci[e.type]?Ci[e.type]:null,Oz=100,Ki=(e,t)=>new Promise(c=>{const i=t.quality===void 0?Oz:t.quality,a=i>=0&&i<=100?i:100,l=rt(e);if(!l)throw Error("resizeAndCompressImage: Unsupported image format");Xa.imageFileResizer(e,t.maxWidth||Number.MAX_VALUE,t.maxHeight||Number.MAX_VALUE,l,a,0,s=>c(s),"file")});function Si({storagePath:e,entry:t,metadata:c,onFileUploadComplete:i,imageSize:a,simple:l}){const s=Tn(),d=An(),[u,A]=f.useState(),[g,h]=f.useState(!1),_=f.useRef(!1),y=f.useRef(!1),I=f.useCallback((b,p)=>{y.current||(y.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),_.current&&h(!1)}).catch(w=>{console.warn("Upload error",w),_.current&&(A(w),h(!1),d.open({type:"error",message:"Error uploading file: "+w.message}))}).finally(()=>{y.current=!1}))},[t,c,i,s,e]);return f.useEffect(()=>(_.current=!0,t.file&&I(t.file,t.fileName),()=>{_.current=!1}),[t.file,t.fileName,I]),l?n.jsx("div",{className:`m-4 w-${a} h-${a}`,children:g&&n.jsx(Oe,{className:`w-${a} h-${a}`})}):n.jsxs("div",{className:F(je,"relative m-4 border-box flex items-center justify-center",`min-w-[${a}px] min-h-[${a}px]`),children:[g&&n.jsx(Oe,{className:"w-full h-full"}),u&&n.jsx(me,{title:"Error uploading file",error:u})]})}function Bi({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(ti,{side:"left",className:"flex items-center justify-center",style:{width:32,height:32},title:e.message,children:n.jsx(_c,{size:"small",color:"error"})})]})})}const Lz="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",Qz="pt-0 border-2 border-solid",Vz="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",Wz="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 Gz(e){const{propertyKey:t,error:c,selected:i,openPopup:a,value:l,disabled:s,property:d,entity:u,path:A,previewSize:g,updateValue:h}=e,_=Tn(),{internalValue:y,setInternalValue:I,onFilesAdded:b,storage:p,onFileUploadComplete:w,storagePathBuilder:k,multipleFilesSupported:m}=mi({entityValues:u.values,entityId:u.id,path:A,property:d,propertyKey:t,storageSource:_,onChange:h,value:l,disabled:s});return n.jsx(zz,{internalValue:y,setInternalValue:I,name:t,disabled:s,autoFocus:!1,openPopup:a,error:c,selected:i,property:d,onChange:h,entity:u,storagePathBuilder:k,storage:p,multipleFilesSupported:m,onFilesAdded:b,onFileUploadComplete:w,previewSize:g})}function zz({property:e,name:t,internalValue:c,setInternalValue:i,openPopup:a,entity:l,selected:s,error:d,onChange:u,multipleFilesSupported:A,previewSize:g,disabled:h,autoFocus:_,storage:y,onFilesAdded:I,onFileUploadComplete:b,storagePathBuilder:p}){const[w,k]=f.useState(!1),m=A&&g==="medium"?"small":g;if(A){const H=e;if(Array.isArray(H.of))throw Error("Using array properties instead of single one in `of` in ArrayProperty");if(H.of){if(H.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 v=y?.metadata,S=!!c,K=An(),{open:C,getRootProps:P,getInputProps:E,isDragActive:T,isDragAccept:B,isDragReject:D}=ir.useDropzone({accept:y.acceptedFiles?y.acceptedFiles.map(H=>({[H]:[]})).reduce((H,V)=>({...H,...V}),{}):void 0,disabled:h,maxSize:y.maxSize,noClick:!0,noKeyboard:!0,onDrop:I,onDropRejected:(H,V)=>{for(const te of H)for(const U of te.errors)K.open({type:"error",message:`Error uploading file: File is larger than ${y.maxSize} bytes`})}}),{...N}=P(),W=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,q=f.useMemo(()=>Vn(m),[m]),ne=!h&&d;return n.jsxs("div",{...N,onMouseEnter:()=>k(!0),onMouseMove:()=>k(!0),onMouseLeave:()=>k(!1),className:F(Lz,"relative w-full h-full flex",`justify-${S?"start":"center"}`,T?Qz:"",B?Vz:"",D?Wz:""),children:[n.jsx("input",{autoFocus:_,...E()}),c.map((H,V)=>{let te;return H.storagePathOrDownloadUrl?te=n.jsx(Hz,{property:z,value:H.storagePathOrDownloadUrl,entity:l,size:m},`storage_preview_${V}`):H.file&&(te=n.jsx(Si,{entry:H,metadata:v,storagePath:p(H.file),onFileUploadComplete:b,imageSize:q,simple:!0},`storage_progress_${V}`)),te}),!c&&n.jsx("div",{className:"flex-grow m-2 max-w-[200px]",onClick:C,children:n.jsx(Z,{className:"text-gray-400 dark:text-gray-600",variant:"body2",align:"center",children:W})}),n.jsx(Bi,{showError:ne,disabled:h,showExpandIcon:!0,selected:s,openPopup:h?void 0:a,children:n.jsx(R,{color:"inherit",size:"small",onClick:C,children:n.jsx(yc,{size:"small",className:"text-gray-500"})})})]})}function Hz({property:e,value:t,size:c,entity:i}){return n.jsx("div",{className:"relative m-2",children:t&&n.jsx(ae,{children:n.jsx(Ce,{propertyKey:"ignore",value:t,property:e,entity:i,size:c})})})}function Ei(e){const t=ee(),c=Ae(),{path:i}=e,a=c.getCollection(i);if(!a){if(t.components?.missingReference)return n.jsx(t.components.missingReference,{path:i});throw Error(`Couldn't find the corresponding collection view for the path: ${i}`)}return n.jsx(Uz,{...e,collection:a})}function Uz(e){const{name:t,internalValue:c,updateValue:i,multiselect:a,path:l,size:s,previewProperties:d,title:u,disabled:A,forceFilter:g,collection:h}=e,[_,y]=f.useState(!1),I=f.useCallback(()=>y(!0),[]),b=f.useCallback(()=>y(!1),[]),p=f.useCallback(P=>{i(P?Cn(P):null)},[i]),w=f.useCallback(P=>{i(P.map(E=>Cn(E)))},[i]),k=c?Array.isArray(c)?c.map(P=>P.id):c.id?[c.id]:[]:[],m=fo({multiselect:a,path:l,collection:h,onMultipleEntitiesSelected:w,onSingleEntitySelected:p,selectedEntityIds:k,forceFilter:g}),v=f.useCallback(()=>{A||m.open()},[A,m]),S=!c||Array.isArray(c)&&c.length===0,K=()=>c instanceof $e?n.jsx(rn,{onClick:A?void 0:v,size:_n(s),reference:c,onHover:_,disabled:!l,previewProperties:d}):n.jsx(Vo,{onClick:A?void 0:v,size:_n(s),children:n.jsx(me,{title:"Value is not a reference.",error:"Click to edit"})}),C=()=>Array.isArray(c)?n.jsx(n.Fragment,{children:c.map((P,E)=>n.jsx("div",{className:"m-1 w-full",children:n.jsx(rn,{onClick:A?void 0:v,size:"tiny",reference:P,onHover:_,disabled:!l,previewProperties:d})},`preview_array_ref_${t}_${E}`))}):n.jsx(me,{error:"Data is not an array of references"});return h?n.jsxs("div",{className:"w-full",onMouseEnter:I,onMouseMove:I,onMouseLeave:b,children:[c&&!a&&K(),c&&a&&C(),S&&n.jsxs(ie,{onClick:v,size:"small",variant:"outlined",color:"primary",children:["Edit ",u]})]}):n.jsx(me,{error:"The specified collection does not exist"})}Ne.addMethod(Ne.array,"uniqueInArray",function(e=c=>c,t){return this.test("uniqueInArray",t,c=>!c||c.length===new Set(c.map(e)).size)});function Fi(e,t,c){const i={};return Object.entries(t).forEach(([a,l])=>{i[a]=ao({property:l,customFieldValidator:c,name:a,entityId:e})}),Ne.object().shape(i)}function ao(e){const t=e.property;if(Ee(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 jz(e);if(t.dataType==="number")return $z(e);if(t.dataType==="boolean")return Xz(e);if(t.dataType==="map")return Yz(e);if(t.dataType==="array")return Rz(e);if(t.dataType==="date")return Jz(e);if(t.dataType==="geopoint")return qz(e);if(t.dataType==="reference")return Zz(e);throw console.error("Unsupported data type in yup mapping",t),Error("Unsupported data type in yup mapping")}function Yz({property:e,entityId:t,customFieldValidator:c,name:i}){const a={};return e.validation,e.properties&&Object.entries(e.properties).forEach(([l,s])=>{a[l]=ao({property:s,parentProperty:e,customFieldValidator:c,name:`${i}[${l}]`,entityId:t})}),Ne.object().shape(a)}function jz({property:e,parentProperty:t,customFieldValidator:c,name:i,entityId:a}){let l=Ne.string();const s=e.validation;if(e.enumValues){s?.required&&(l=l.required(s?.requiredMessage?s.requiredMessage:"Required"));const d=yn(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"?ni(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 $z({property:e,parentProperty:t,customFieldValidator:c,name:i,entityId:a}){const l=e.validation;let s=Ne.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 qz({property:e,parentProperty:t,customFieldValidator:c,name:i,entityId:a}){let l=Ne.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 Jz({property:e,parentProperty:t,customFieldValidator:c,name:i,entityId:a}){if(e.autoValue)return Ne.object().nullable();let l=Ne.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 Zz({property:e,parentProperty:t,customFieldValidator:c,name:i,entityId:a}){let l=Ne.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 Xz({property:e,parentProperty:t,customFieldValidator:c,name:i,entityId:a}){let l=Ne.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 xz(e){return e.validation?.uniqueInArray?!0:e.dataType==="map"&&e.properties?Object.entries(e.properties).filter(([t,c])=>c.validation?.uniqueInArray):!1}function Rz({property:e,parentProperty:t,customFieldValidator:c,name:i,entityId:a}){let l=Ne.array();if(e.of)if(Array.isArray(e.of)){const d=e.of.map((u,A)=>({[`${i}[${A}]`]:ao({property:u,parentProperty:e,entityId:a})})).reduce((u,A)=>({...u,...A}),{});return Ne.array().of(Ne.mixed().test("Dynamic object validation","Dynamic object validation error",(u,A)=>gn(d,A.path).validate(u)))}else{l=l.of(ao({property:e.of,parentProperty:e,entityId:a}));const d=xz(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(g=>g&&g[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}function Gn(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 eH=({justifyContent:e,scrollable:t,faded:c,fullHeight:i,children:a})=>n.jsx("div",{className:F("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}),tt=f.memo(function({children:t,actions:c,size:i,selected:a,disabled:l,disabledTooltip:s,saved:d,error:u,align:A,allowScroll:g,removePadding:h,fullHeight:_,onSelect:y,width:I,hideOverflow:b=!0,showExpandIcon:p=!0}){const[w,k]=ar(),m=f.useRef(null);ko(m,()=>{a&&y&&y(void 0)},!!(a&&y));const[v,S]=f.useState(!1),K=f.useMemo(()=>Gn(i),[i]),[C,P]=f.useState(!1),[E,T]=f.useState(d),B=!l&&u;f.useEffect(()=>{d&&T(!0);const U=setTimeout(()=>{T(!1)},800);return()=>{clearTimeout(U)}},[d]);let D=0;if(!h)switch(i){case"l":case"xl":D=4;break;case"m":D=2;break;case"s":default:D=1;break}let N;switch(A){case"right":N="flex-end";break;case"center":N="center";break;case"left":default:N="flex-start"}const W=f.useCallback(()=>{if(!y)return;const U=m&&m?.current?.getBoundingClientRect();l?y(void 0):!a&&U&&y(U)},[m,y,a,l]),z=f.useCallback(U=>{W(),U.stopPropagation()},[W]);f.useEffect(()=>{if(k){const U=k.height>K;v!==U&&S(U)}},[k,v,K]);const q=!B&&a,ne=!l&&g&&v,H=!l&&!g&&v,V=f.useCallback(()=>P(!0),[]),te=f.useCallback(()=>P(!1),[]);return n.jsxs("div",{ref:m,className:F("transition-colors duration-100 ease-in-out",`flex relative h-full rounded-md p-${D} border border-4 border-opacity-75`,C&&!l?"bg-gray-50 dark:bg-gray-900":"",d?"bg-gray-100 bg-opacity-75 dark:bg-gray-800 dark:bg-opacity-75":"",!q&&!E&&!B?"border-transparent":"",b?"overflow-hidden":"",q?"bg-gray-50 dark:bg-gray-900":"",q&&!E?"border-primary":"",E?"border-green-500 ":"",B?"border-red-500":""),style:{justifyContent:N,alignItems:l||!v?"center":void 0,width:I??"100%",textAlign:A},tabIndex:a||l?void 0:0,onFocus:z,onMouseEnter:V,onMouseMove:V,onMouseLeave:te,children:[n.jsxs(ae,{children:[_&&!H&&t,(!_||H)&&n.jsx(eH,{fullHeight:_??!1,justifyContent:N,scrollable:ne??!1,faded:H,children:!_&&n.jsx("div",{ref:w,style:{display:"flex",width:"100%",justifyContent:N,height:_?"100%":void 0},children:t})})]}),c,l&&C&&s&&n.jsx("div",{className:"absolute top-1 right-1 text-xs",children:n.jsx(ye,{title:s,children:n.jsx(Pc,{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 nH(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 oH=f.memo(function({propertyKey:t,customFieldValidator:c,value:i,property:a,align:l,width:s,height:d,path:u,entity:A,readonly:g,disabled:h}){const _=ee(),{onValueChange:y,size:I,selectedCell:b,select:p,setPopupCell:w}=IH(),k=b?.propertyKey===t&&b?.entity.path===A.path&&b?.entity.id===A.id,[m,v]=f.useState(i),S=f.useRef(i),[K,C]=f.useState(),[P,E]=f.useState(!1),T=f.useCallback(()=>{E(!0),setTimeout(()=>{E(!1)},100)},[]),B=!!a.Field,D=!!a.Preview,N=On(a),W=typeof a.disabled=="object"?a.disabled.disabledMessage:void 0,z=g||h||!!a.disabled,q=f.useMemo(()=>ao({property:a,entityId:A.id,customFieldValidator:c,name:t}),[A.id,a,t]);f.useEffect(()=>{se(i,S.current)||(C(void 0),v(i),S.current=i,T())},[T,i]);const ne=M=>{se(M,S.current)||(E(!1),q.validate(M).then(()=>{C(void 0),S.current=M,y&&y({value:M,propertyKey:t,setError:C,onValueUpdated:T,entity:A,fullPath:u,context:_})}).catch(L=>{C(L)}))};f.useEffect(()=>{q.validate(m).then(()=>C(void 0)).catch(M=>{C(M)})},[m,q,t,a,A]);const H=M=>{let L;M===void 0?L=null:L=M,v(L),ne(L)};Le({property:a,value:m,setValue:H});const V=f.useCallback(M=>{p(M?{width:s,height:d,entity:A,cellRect:M,propertyKey:t}:void 0)},[A,d,t,p,s]),te=M=>{w&&w(M?{width:s,height:d,entity:A,cellRect:M,propertyKey:t}:void 0)};let U,J=!1,de=!1,Y=!0,O=!1,$=!1,oe=!0;const j=!z&&K;if(g||N)return n.jsx(tt,{size:I,width:s,saved:P,value:m,align:l??"left",fullHeight:!1,disabledTooltip:W??(N?"Read only":void 0),disabled:!0,children:n.jsx(Ce,{width:s,height:Gn(I),propertyKey:t,property:a,entity:A,value:m,size:_n(I)})},`${t}_${A.path}_${A.id}`);if(!B&&(!D||k)){if(nH(a))U=n.jsx(Gz,{error:K,disabled:z,focused:k,selected:k,openPopup:w?te:void 0,property:a,entity:A,path:u,value:m,previewSize:_n(I),updateValue:H,propertyKey:t}),oe=!1,de=!0,$=!0,O=!0;else if(k&&a.dataType==="number"){const L=a;L.enumValues?(U=n.jsx(nt,{name:t,multiple:!1,disabled:z,focused:k,valueType:"number",small:_n(I)!=="medium",enumValues:L.enumValues,error:K,internalValue:m,updateValue:H}),$=!0):(U=n.jsx(Pz,{align:l,error:K,focused:k,disabled:z,value:m,updateValue:H}),J=!0)}else if(k&&a.dataType==="string"){const L=a;if(L.enumValues)U=n.jsx(nt,{name:t,multiple:!1,focused:k,disabled:z,valueType:"string",small:_n(I)!=="medium",enumValues:L.enumValues,error:K,internalValue:m,updateValue:H}),$=!0;else if(!L.storage){const Qe=!!L.multiline||!!L.markdown;U=n.jsx(Fz,{error:K,disabled:z,multiline:Qe,focused:k,value:m,updateValue:H}),J=!0}}else if(a.dataType==="boolean")U=n.jsx(Dz,{error:K,disabled:z,focused:k,internalValue:m,updateValue:H});else if(a.dataType==="date")U=n.jsx(Nz,{name:t,error:K,disabled:z,mode:a.mode,focused:k,internalValue:m,updateValue:H}),$=!0,Y=!1,J=!1;else if(a.dataType==="reference")typeof a.path=="string"&&(U=n.jsx(Ei,{name:t,internalValue:m,updateValue:H,disabled:z,size:I,path:a.path,multiselect:!1,previewProperties:a.previewProperties,title:a.name,forceFilter:a.forceFilter})),J=!1;else if(a.dataType==="array"){const L=a;if(!L.of&&!L.oneOf)throw Error(`You need to specify an 'of' or 'oneOf' prop (or specify a custom field) in your array property ${t}`);L.of&&!Array.isArray(L.of)&&(L.of.dataType==="string"||L.of.dataType==="number"?k&&L.of.enumValues&&(U=n.jsx(nt,{name:t,multiple:!0,disabled:z,focused:k,small:_n(I)!=="medium",valueType:L.of.dataType,enumValues:L.of.enumValues,error:K,internalValue:m,updateValue:H}),J=!0,$=!0,Y=!1):L.of.dataType==="reference"&&(typeof L.of.path=="string"&&(U=n.jsx(Ei,{name:t,disabled:z,internalValue:m,updateValue:H,size:I,multiselect:!0,path:L.of.path,previewProperties:L.of.previewProperties,title:L.of.name,forceFilter:L.of.forceFilter})),J=!1))}}return U||(J=!1,de=k&&!U&&!z&&!N,U=n.jsx(Ce,{width:s,height:d,entity:A,propertyKey:t,value:m,property:a,size:_n(I)})),n.jsx(tt,{size:I,width:s,onSelect:V,selected:k,disabled:z||N,disabledTooltip:W??"Disabled",removePadding:O,fullHeight:$,saved:P,error:K,align:l,allowScroll:J,showExpandIcon:de,value:m,hideOverflow:Y,actions:oe&&n.jsx(Bi,{showError:j,disabled:z,showExpandIcon:de,selected:k,openPopup:z?void 0:te}),children:U},`cell_${t}_${A.path}_${A.id}`)},rH);function rH(e,t){return e.height===t.height&&e.propertyKey===t.propertyKey&&e.align===t.align&&e.width===t.width&&se(e.property,t.property)&&se(e.value,t.value)&&se(e.entity.id,t.entity.id)&&se(e.entity.values,t.entity.values)}function lo({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(Nn,{...t}),e&&n.jsx(Z,{color:"secondary",variant:"caption",className:"text-center",children:e})]})})}const tH=f.memo(function({resizeHandleRef:t,columnIndex:c,isResizingIndex:i,sort:a,onColumnSort:l,onFilterUpdate:s,filter:d,column:u,onClickResizeColumn:A,createFilterField:g,AdditionalHeaderWidget:h}){const[_,y]=f.useState(!1),[I,b]=f.useState(!1),[p,w]=f.useState(!1),k=f.useCallback(C=>{b(!0)},[]),m=f.useCallback((C,P)=>{s(u,C),P!==void 0&&b(P)},[u,s]),v=i===c,K=!(i!==c&&i>0)&&(_||v);return n.jsx(ae,{children:n.jsxs("div",{className:F("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(_||I),n.jsx("div",{className:"truncate -webkit-box w-full mx-1 overflow-hidden",style:{WebkitBoxOrient:"vertical",WebkitLineClamp:2,justifyContent:u.align},children:u.title})]})}),n.jsxs(n.Fragment,{children:[h&&n.jsx(h,{onHover:_||I}),u.sortable&&(a||K||I)&&n.jsx($t,{color:"secondary",invisible:!a,children:n.jsxs(R,{size:"small",className:_||I?"bg-white dark:bg-gray-950":void 0,onClick:()=>{l(u.key)},children:[!a&&n.jsx(mo,{}),a==="asc"&&n.jsx(mo,{}),a==="desc"&&n.jsx(mo,{className:"rotate-180"})]})})]}),u.filter&&g&&n.jsx("div",{children:n.jsx($t,{color:"secondary",invisible:!d,children:n.jsx(tr,{open:I,onOpenChange:b,className:p?"hidden":void 0,modal:!0,trigger:n.jsx(R,{className:_||I?"bg-white dark:bg-gray-950":void 0,size:"small",onClick:k,children:n.jsx(Ic,{size:"small"})}),children:n.jsx(cH,{column:u,filter:d,onHover:_,onFilterUpdate:m,createFilterField:g,hidden:p,setHidden:w})})})}),u.resizable&&n.jsx("div",{ref:t,className:F("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})]})})},se);function cH({column:e,onFilterUpdate:t,filter:c,onHover:i,createFilterField:a,hidden:l,setHidden:s}){const d=e.key,[u,A]=f.useState(c);if(f.useEffect(()=>{A(c)},[c]),!e.filter)return null;const g=()=>{t(u,!1)},h=I=>{t(void 0,!1)},_=!!c,y=a({id:d,filterValue:u,setFilterValue:A,column:e,hidden:l,setHidden:s});return y?n.jsxs("div",{className:"text-gray-900 dark:text-white",children:[n.jsx("div",{className:F(fe,"py-4 px-6 text-xs font-semibold uppercase border-b"),children:e.title??d}),y&&n.jsx("div",{className:"m-4",children:y}),n.jsxs("div",{className:"flex justify-end m-4",children:[n.jsx(ie,{className:"mr-4",disabled:!_,variant:"text",color:"primary",type:"reset","aria-label":"filter clear",onClick:h,children:"Clear"}),n.jsx(ie,{variant:"outlined",color:"primary",onClick:g,children:"Filter"})]})]}):null}const iH=({columns:e,currentSort:t,onColumnSort:c,onFilterUpdate:i,sortByProperty:a,filter:l,onColumnResize:s,onColumnResizeEnd:d,createFilterField:u,AddColumnComponent:A})=>{const g=e.map(()=>f.createRef()),[h,_]=f.useState(-1),y=f.useCallback((S,K,C)=>{const P=e[S],E=100,T=800,B=K>T?T:K<E?E:K,D={width:B,key:P.key,column:{...P,width:B}};C?d(D):s(D)},[e,s,d]),I=f.useCallback(S=>{if(h>=0){const K=g[h].current?.parentElement?.getBoundingClientRect().left;return K?S.clientX-K:void 0}},[g,h]),b=f.useCallback(S=>{document.body.style.cursor=S?"col-resize":"auto"},[]),p=f.useCallback(S=>{S.stopPropagation(),S.preventDefault();const K=I(S);K&&y(h,K,!1)},[y,I,h]),w=f.useCallback(S=>{S.stopPropagation(),S.preventDefault();const K=I(S);K&&y(h,K,!0),_(-1),b(!1)},[y,I,h,b]),k=f.useCallback(()=>{document.removeEventListener("mousemove",p),document.removeEventListener("mouseup",w)},[p,w]),m=f.useCallback(()=>{document.addEventListener("mousemove",p),document.addEventListener("mouseup",w)},[p,w]);f.useEffect(()=>(h>=0?m():k(),()=>{k()}),[m,h,k]);const v=f.useCallback(S=>{_(S),b(!0)},[b]);return n.jsxs("div",{className:F(fe,"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((S,K)=>{const C=e[K],P=C&&l&&l[C.key]?l[C.key]:void 0;return n.jsx(ae,{children:n.jsx(tH,{resizeHandleRef:g[K],columnIndex:K,isResizingIndex:h,onFilterUpdate:i,filter:P,sort:a===C.key?t:void 0,onColumnSort:c,onClickResizeColumn:v,column:C,createFilterField:u,AdditionalHeaderWidget:C.AdditionalHeaderWidget})},"header_"+C.key)}),A&&n.jsx(A,{})]})},aH=f.memo(function({rowData:t,rowIndex:c,children:i,onRowClick:a,size:l,style:s,hoverRow:d,rowClassName:u}){const A=f.useCallback(g=>{console.debug("VirtualTableRow click"),a&&a({rowData:t,rowIndex:c,event:g})},[a,t,c]);return n.jsx("div",{className:F("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:Gn(l),width:"fit-content"},children:i})},se),lH=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)=>se(e,t)),Wo=f.createContext({});Wo.displayName="VirtualListContext";const sH=f.forwardRef(({children:e,...t},c)=>n.jsx(Wo.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(iH,{...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})]})}})),Pi=f.memo(function({data:t,onResetPagination:c,onEndReached:i,size:a="m",columns:l,onRowClick:s,onColumnResize:d,filter:u,checkFilterCombination:A,onFilterUpdate:g,sortBy:h,error:_,emptyComponent:y,onSortByUpdate:I,loading:b,cellRenderer:p,hoverRow:w,createFilterField:k,rowClassName:m,className:v,endAdornment:S,AddColumnComponent:K}){const C=h?h[0]:void 0,P=h?h[1]:void 0,[E,T]=f.useState(l),B=f.useRef(null),D=f.useRef(0);f.useEffect(()=>{T(l)},[l]);const[N,W]=ar(),z=f.useCallback(M=>{T(E.map(L=>L.key===M.column.key?M.column:L))},[E]),q=f.useCallback(M=>{T(E.map(L=>L.key===M.column.key?M.column:L)),d&&d(M)},[E,d]),ne=f.useRef();f.useEffect(()=>{ne.current=u},[u]);const H=f.useCallback(()=>{D.current=0,B.current&&B.current.scrollTo(B.current?.scrollLeft,0)},[]),V=f.useCallback(M=>{const L=C===M&&P==="desc",be=C===M&&P==="asc"?"desc":L?void 0:"asc",ge=L?void 0:M,Ve=ne.current,bn=be&&ge?[ge,be]:void 0;Ve&&A&&!A(Ve,bn)&&g&&g(void 0),c&&c(),I&&I(bn),H()},[A,P,g,c,I,H,C]),te=f.useCallback(()=>{D.current=0,I&&I(void 0)},[I]),U=Math.max((t?.length??0)*Gn(a)-W.height,0),J=f.useCallback(M=>{i&&(t?.length??0)>0&&M>D.current+600&&(D.current=M,i())},[t?.length,i]),de=f.useCallback(({scrollOffset:M,scrollUpdateWasRequested:L})=>{!L&&M>=U-600&&J(M)},[U,J]),Y=f.useCallback((M,L)=>{D.current=0;const Qe=ne.current;let be=Qe?{...Qe}:{};L?be[M.key]=L:delete be[M.key],!A||A(be,C&&P?[C,P]:void 0)||(be=L?{[M.key]:L}:{}),g&&g(be),M.key!==C&&te()},[A,P,g,te,C]),O=f.useCallback(()=>n.jsxs("div",{className:"h-full flex flex-col items-center justify-center sticky left-0",children:[n.jsx(Z,{variant:"h6",children:"Error fetching data from the data source"}),_?.message&&n.jsx(Ao,{className:"px-4 break-all",source:_.message})]}),[_?.message]),$=f.useCallback(()=>b?n.jsx(lo,{}):n.jsxs("div",{className:"flex flex-col overflow-auto items-center justify-center p-2 gap-2 h-full",children:[n.jsx(ac,{}),y]}),[y,b]),oe=!b&&(t?.length??0)===0,j=_?O():oe?$():void 0;return n.jsx("div",{ref:N,className:F("h-full w-full",v),children:n.jsx(Wo.Provider,{value:{data:t,size:a,cellRenderer:p,columns:E,currentSort:P,onRowClick:s,customView:j,onColumnResize:z,onColumnResizeEnd:q,filter:ne.current,onColumnSort:V,onFilterUpdate:Y,sortByProperty:C,hoverRow:w??!1,createFilterField:k,rowClassName:m,endAdornment:S,AddColumnComponent:K},children:n.jsx(dH,{outerRef:B,width:W.width,height:W.height,itemCount:(t?.length??0)+(S?1:0),onScroll:de,includeAddColumn:!!K,itemSize:Gn(a)},a)})})},se);function dH({outerRef:e,width:t,height:c,itemCount:i,onScroll:a,itemSize:l,includeAddColumn:s}){const d=f.useCallback(({index:u,style:A})=>n.jsx(Wo.Consumer,{children:({onRowClick:g,data:h,columns:_,size:y="m",cellRenderer:I,hoverRow:b,rowClassName:p,endAdornment:w})=>{if(w&&u===(h??[]).length)return n.jsx("div",{style:{...A,height:"auto",position:"sticky",bottom:0,zIndex:1},children:w});const k=h&&h[u];return n.jsxs(aH,{rowData:k,rowIndex:u,onRowClick:g,columns:_,hoverRow:b,rowClassName:p,style:{...A,top:`calc(${A.top}px + 48px)`},size:y,children:[_.map((m,v)=>{const S=k&&k[m.key];return n.jsx(lH,{dataKey:m.key,cellRenderer:I,column:m,columns:_,rowData:k,cellData:S,rowIndex:u,columnIndex:v},`cell_${m.key}`)}),s&&n.jsx("div",{className:"w-20"})]},`row_${u}`)}}),[]);return n.jsx(xa.FixedSizeList,{outerRef:e,innerElementType:sH,width:t,height:c,overscanCount:4,itemCount:i,onScroll:a,itemSize:l,children:d})}const ct=f.memo(function({entity:t,collection:c,fullPath:i,width:a,frozen:l,isSelected:s,selectionEnabled:d,size:u,highlightEntity:A,onCollectionChange:g,unhighlightEntity:h,actions:_=[],hideId:y,selectionController:I}){const b=He(),p=ee(),w=f.useCallback(C=>{I?.toggleEntitySelection(t)},[t,I?.toggleEntitySelection]),k=f.useCallback(C=>{C.stopPropagation(),I?.toggleEntitySelection(t)},[t,I?.toggleEntitySelection]),m=_.length>0,v=_.some(C=>C.collapsed||C.collapsed===void 0),S=_.filter(C=>C.collapsed||C.collapsed===void 0),K=_.filter(C=>C.collapsed===!1);return n.jsxs("div",{onClick:k,className:F("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",l?"sticky left-0":""),style:{width:a,position:l?"sticky":"initial",left:l?0:"initial",contain:"strict"},children:[(m||d)&&n.jsxs("div",{className:"w-34 flex justify-center",children:[K.map((C,P)=>n.jsx(ye,{title:C.name,children:n.jsx(R,{onClick:E=>{E.stopPropagation(),C.onClick({entity:t,fullPath:i,collection:c,context:p,selectionController:I,highlightEntity:A,unhighlightEntity:h,onCollectionChange:g})},size:b?"medium":"small",children:C.icon})},P)),v&&n.jsx(jn,{trigger:n.jsx(R,{size:b?"medium":"small",children:n.jsx(Cr,{})}),children:S.map((C,P)=>n.jsxs(Be,{onClick:E=>{E.stopPropagation(),C.onClick({entity:t,fullPath:i,collection:c,context:p,selectionController:I,highlightEntity:A,unhighlightEntity:h,onCollectionChange:g})},children:[C.icon,C.name]},P))}),d&&n.jsx(ye,{title:`Select ${t.id}`,children:n.jsx(Er,{size:b?"medium":"small",checked:s,onCheckedChange:w})})]}),!y&&u!=="xs"&&n.jsx("div",{className:"w-[138px] text-center overflow-hidden truncate",children:t?n.jsxs(Z,{onClick:C=>{C.stopPropagation()},className:"font-mono select-all",variant:"caption",color:"secondary",children:[" ",t.id," "]}):n.jsx(Oe,{})})]})},se);function uH(e){const t=He(),c=!e.forceFilter&&e.filterIsSet&&e.clearFilter&&n.jsxs(ie,{variant:"outlined",className:"h-fit-content","aria-label":"filter clear",onClick:e.clearFilter,size:"small",children:[n.jsx(bc,{}),"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(Re,{value:a,className:"w-12 font-medium text-center",children:a.toUpperCase()},a))});return n.jsxs("div",{className:F(fe,"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(Nn,{size:"small"})}),e.onTextSearch&&n.jsx(Yt,{onTextSearch:e.onTextSearch,expandable:!0},"search-bar"),e.actions]})]})}const Di={"==":"==","!=":"!=",">":">","<":"<",">=":">=","<=":"<=",in:"In","not-in":"Not in","array-contains":"Contains","array-contains-any":"Contains Any"},it=["array-contains-any","in","not-in"];function fH({name:e,value:t,setValue:c,isArray:i,path:a,title:l,previewProperties:s,setHidden:d}){const u=i?["array-contains"]:["==","!=",">","<",">=","<="],[A,g]=f.useState(!1);i?u.push("array-contains-any"):u.push("in","not-in");const[h,_]=t||[u[0],void 0],[y,I]=f.useState(h),[b,p]=f.useState(_),w=b?Array.isArray(b)?b.map(B=>B instanceof $e?B.id:null).filter(Boolean):[b.id]:[];function k(B,D){const N=it.includes(y),W=it.includes(B);let z=D;N!==W&&(z=W?z instanceof $e?[z]:[]:void 0),I(B),p(z);const q=z!==null&&Array.isArray(z)?z.length>0:z!==void 0;c(B&&q?[B,z]:void 0)}const m=Ae(),v=f.useMemo(()=>a?m.getCollection(a):void 0,[a]),S=B=>{k(y,Cn(B))},K=B=>{k(y,B.map(D=>Cn(D)))},C=it.includes(y),P=fo({multiselect:C,path:a,collection:v,onSingleEntitySelected:S,onMultipleEntitiesSelected:K,selectedEntityIds:w,onClose:()=>{d(!1)}}),E=()=>{d(!0),P.open()},T=B=>n.jsx("div",{className:"mb-0.5",onMouseEnter:()=>g(!0),onMouseMove:()=>g(!0),onMouseLeave:()=>g(!1),children:n.jsx(rn,{disabled:!a,previewProperties:s,size:"medium",onClick:E,reference:B,onHover:A,allowEntityNavigation:!1})});return console.log("ReferenceFilterField",{internalValue:b}),n.jsxs("div",{className:"flex w-[440px] flex-row",children:[n.jsx("div",{className:"w-[120px]",children:n.jsx(xe,{value:y,onValueChange:B=>{k(B,b)},renderValue:B=>Di[B],children:u.map(B=>n.jsx(Re,{value:B,children:Di[B]},B))})}),n.jsxs("div",{className:"flex-grow ml-2 h-full",children:[b&&Array.isArray(b)&&n.jsx("div",{children:b.map((B,D)=>T(B))}),b&&!Array.isArray(b)&&n.jsx("div",{children:T(b)}),(!b||Array.isArray(b)&&b.length===0)&&n.jsx(ie,{onClick:E,variant:"outlined",className:"h-full w-full",children:C?"Select references":"Select reference"})]})]})}const Ni={"==":"==","!=":"!=",">":">","<":"<",">=":">=","<=":"<=",in:"In","not-in":"Not in","array-contains":"Contains","array-contains-any":"Any"},at=["array-contains-any","in","not-in"];function AH({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],[g,h]=f.useState(u),[_,y]=f.useState(A);function I(p,w){let k=w;const m=at.includes(g),v=at.includes(p);m!==v&&(k=v?typeof w=="string"||typeof w=="number"?[w]:[]:""),typeof k=="number"&&isNaN(k)&&(k=void 0),h(p),y(k);const S=k!==null&&Array.isArray(k)?k.length>0:k!==void 0;c(p&&S?[p,k]:void 0)}const b=at.includes(g);return n.jsxs("div",{className:"flex w-[440px] items-center",children:[n.jsx("div",{className:"w-[80px]",children:n.jsx(xe,{value:g,position:"item-aligned",onValueChange:p=>{I(p,_)},renderValue:p=>Ni[p],children:d.map(p=>n.jsx(Re,{value:p,children:Ni[p]},p))})}),n.jsxs("div",{className:"flex-grow ml-2",children:[!l&&n.jsx(tn,{type:i==="number"?"number":void 0,value:_!==void 0?String(_):"",onChange:p=>{const w=i==="number"?parseFloat(p.target.value):p.target.value;I(g,w)},endAdornment:_&&n.jsx(R,{className:"absolute right-3 top-2",onClick:p=>I(g,void 0),children:n.jsx(dn,{})})}),l&&n.jsx(xe,{position:"item-aligned",value:_!==void 0?Array.isArray(_)?_.map(p=>String(p)):String(_):a?[]:"",onValueChange:p=>{I(g,i==="number"?parseInt(p):p)},multiple:b,endAdornment:_&&n.jsx(R,{className:"absolute right-3 top-2",onClick:p=>I(g,void 0),children:n.jsx(dn,{})}),renderValue:p=>n.jsx(Fe,{enumKey:p,enumValues:l,size:"small"},`select_value_${e}_${p}`),children:l.map(p=>n.jsx(Re,{value:String(p.id),children:n.jsx(Fe,{enumKey:String(p.id),enumValues:l,size:"small"})},`select_value_${e}_${p.id}`))})]})]})}function yH({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(Dn,{value:l,allowIndeterminate:!0,onValueChange:d=>a(d===null?void 0:d),label:s?l?`${t} is true`:`${t} is false`:"No filter"})})}const Ti={"==":"==","!=":"!=",">":">","<":"<",">=":">=","<=":"<=","not-in":"not in",in:"in","array-contains":"Contains","array-contains-any":"Any"},Mi=["array-contains-any","in"];function gH({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,g]=f.useState(d),[h,_]=f.useState(u);function y(I,b){let p=b;const w=Mi.includes(A),k=Mi.includes(I);w!==k&&(p=k?b?[b]:[]:""),g(I),_(p===null?void 0:p);const m=p!==null&&Array.isArray(p)?p.length>0:p!==void 0;a(I&&m?[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=>{y(I,h)},renderValue:I=>Ti[I],children:s.map(I=>n.jsx(Re,{value:I,children:Ti[I]},I))})}),n.jsx("div",{className:"flex-grow ml-2",children:n.jsx(Yn,{mode:c,size:"medium",value:h,onChange:I=>{y(A,I===null?void 0:I)},clearable:!0})})]})}const Oi="collectionGroupParent";function Li(e,t){return f.useMemo(()=>e.propertiesOrder?Qi(e,e.propertiesOrder):_H(e,t),[e,t])}function Qi(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?lt(i,c):[{key:c,disabled:!!i.disabled||!!i.readOnly}]:e.additionalFields?.find(l=>l.key===c)?[{key:c,disabled:!0}]:e.subcollections&&e.subcollections.find(s=>Rr(s)===c)?[{key:c,disabled:!0}]:e.collectionGroup&&c===Oi?[{key:c,disabled:!0}]:[null]}).filter(Boolean)}function _H(e,t){const c=Object.keys(e.properties),i=e.additionalFields??[],a=e.subcollections??[],l=[...c,...i.map(s=>s.key)];if(t){const s=a.map(d=>Rr(d));l.push(...s.filter(d=>!l.includes(d)))}return e.collectionGroup&&l.push(Oi),Qi(e,l)}function lt(e,t,c){return e.dataType==="map"&&e.spreadChildren&&e.properties?Object.entries(e.properties).flatMap(([i,a])=>lt(a,`${t}.${i}`,c||!!e.disabled||!!e.readOnly)):[{key:t,disabled:c||!!e.disabled||!!e.readOnly}]}const hH={},Vi=f.createContext(hH),IH=()=>f.useContext(Vi),st=f.memo(function({forceFilter:t,actionsStart:c,actions:i,title:a,tableRowActionsBuilder:l,uniqueFieldValidator:s,getPropertyFor:d,onValueChange:u,selectionController:A,highlightedEntities:g,onEntityClick:h,onColumnResize:_,onSizeChanged:y,textSearchEnabled:I=!1,hoverRow:b=!0,inlineEditing:p=!1,additionalFields:w,displayedColumnIds:k,defaultSize:m,properties:v,tableController:{data:S,dataLoading:K,noMoreToLoad:C,dataLoadingError:P,filterValues:E,setFilterValues:T,sortBy:B,setSortBy:D,setSearchString:N,clearFilter:W,itemCount:z,setItemCount:q,pageSize:ne=50,paginationEnabled:H,checkFilterCombination:V,setPopupCell:te},filterable:U=!0,sortable:J=!0,endAdornment:de,AddColumnComponent:Y,AdditionalHeaderWidget:O,additionalIDHeaderWidget:$,emptyComponent:oe,getIdColumnWidth:j}){const M=He(),L=!!t,Qe=A?.selectedEntities?.length>0?A?.selectedEntities:g,be=ee(),[ge,Ve]=f.useState(m??"m"),[bn,cn]=f.useState(void 0),en=Qe?.map(X=>X.id),yo=!!E&&Object.keys(E).length>0,$n=()=>{!H||K||C||z!==void 0&&q?.(z+ne)},go=f.useCallback(()=>{q?.(ne)},[ne]),pn=f.useCallback(({rowData:X})=>{if(console.debug("EntityCollectionTable click"),!p)return h&&h(X)},[h,p]),wn=f.useCallback(X=>{y&&y(X),Ve(X)},[]),_o=f.useCallback(X=>N?.(X),[]),kn=f.useMemo(()=>w?w.map(X=>({[X.key]:X})).reduce((X,ke)=>({...X,...ke}),{}):{},[w]);f.useEffect(()=>{const X=ke=>{ke.keyCode===27&&Io()};return document.addEventListener("keydown",X,!1),()=>{document.removeEventListener("keydown",X,!1)}});const ho=f.useCallback(X=>{cn(X)},[]),Io=f.useCallback(()=>{cn(void 0)},[]),G=s,Q=f.useCallback(({column:X,columnIndex:ke,rowData:he,rowIndex:Ue})=>{const ue=he,an=X.key;let ln=X.custom?.disabled;const qt=ue.values?gn(ue.values,an):void 0,Fn=d?.({propertyKey:an,propertyValue:qt,entity:ue})??X.custom.resolvedProperty;return Fn?.disabled||(ln=!1),Fn?n.jsx(ae,{children:ue?n.jsx(oH,{readonly:!p,align:X.align??"left",propertyKey:an,property:Fn,value:ue?.values?gn(ue.values,an):void 0,customFieldValidator:G,columnIndex:ke,width:X.width,height:Gn(ge),entity:ue,disabled:ln,path:ue.path},`property_table_cell_${ue.id}_${an}`):on()}):null},[G,p,ge,en]),x=f.useCallback(({column:X,rowData:ke,width:he})=>{const Ue=ke,ue=kn[X.key],an=ue.dependencies?Object.entries(Ue.values).filter(([Fn,La])=>ue.dependencies.includes(Fn)).reduce((Fn,La)=>({...Fn,...La}),{}):Ue,ln=ue.Builder;if(!ln&&!ue.value)throw new Error("When using additional fields you need to provide a Builder or a value");const qt=ln?n.jsx(ln,{entity:Ue,context:be}):n.jsx(n.Fragment,{children:ue.value?.({entity:Ue,context:be})});return n.jsx(tt,{width:he,size:ge,value:an,selected:!1,disabled:!0,align:"left",allowScroll:!1,showExpandIcon:!1,disabledTooltip:"This column can't be edited directly",children:n.jsx(ae,{children:qt})},`additional_table_cell_${Ue.id}_${X.key}`)},[kn,ge,en]),re=f.useMemo(()=>{const X=Object.entries(v).flatMap(([he,Ue])=>lt(Ue,he)).map(({key:he,disabled:Ue})=>{const ue=Lt(v,he);if(!ue)throw Error("Internal error: no property found in path "+he);const an=Wi(ue);return{key:he,align:Kz(ue),icon:ln=>ve(ue,"small"),title:ue.name??he,sortable:J&&(t?Object.keys(t).includes(he):!0),filter:!L&&an,width:bi(ue),resizable:!0,custom:{resolvedProperty:ue,disabled:Ue},AdditionalHeaderWidget:({onHover:ln})=>O?n.jsx(O,{property:ue,propertyKey:he,onHover:ln}):void 0}}),ke=w?w.map(he=>({key:he.key,align:"left",sortable:!1,title:he.name,width:he.width??200})):[];return[...X,...ke]},[w,L,t,v,J]),ce=f.useMemo(()=>({key:"id_ewcfedcswdf3",width:j?.()??(M?160:130),title:"ID",resizable:!1,frozen:M,headerAlign:"center",align:"center",AdditionalHeaderWidget:()=>$}),[j,M]),_e=f.useMemo(()=>[ce,...k.map(X=>re.find(ke=>ke.key===X.key)).filter(Boolean)],[re,k,ce]),qe=f.useCallback(X=>{const ke=X.column,he=X.columns,Ue=ke.key;if(X.columnIndex===0)return l?l({entity:X.rowData,size:ge,width:ke.width,frozen:ke.frozen}):n.jsx(ct,{entity:X.rowData,width:ke.width,frozen:ke.frozen,isSelected:!1,size:ge});if(kn[Ue])return x(X);if(X.columnIndex<he.length+1)return Q(X);throw Error("Internal: columns not mapped properly")},[kn,l,ge,x,Q]),bo=f.useCallback(X=>{T?.({...X,...t})},[t]);return n.jsx(Vi.Provider,{value:{setPopupCell:te,select:ho,onValueChange:u,size:ge,selectedCell:bn,selectedEntityIds:en},children:n.jsxs("div",{className:"h-full w-full flex flex-col bg-white dark:bg-gray-950",children:[n.jsx(uH,{forceFilter:L,filterIsSet:yo,onTextSearch:I?_o:void 0,clearFilter:W,size:ge,onSizeChanged:wn,title:a,actionsStart:c,actions:i,loading:K}),n.jsx(Pi,{data:S,columns:_e,cellRenderer:qe,onRowClick:p?void 0:h?pn:void 0,onEndReached:$n,onResetPagination:go,error:P,paginationEnabled:H,onColumnResize:_,size:ge,loading:K,filter:E,onFilterUpdate:T?bo:void 0,sortBy:B,onSortByUpdate:D,hoverRow:b,emptyComponent:oe,checkFilterCombination:V,createFilterField:U?bH:void 0,rowClassName:f.useCallback(X=>en?.includes(X.id)?"bg-gray-100 bg-opacity-75 dark:bg-gray-800 dark:bg-opacity-75":"",[en]),className:"flex-grow",endAdornment:de,AddColumnComponent:Y})]})})},se);function bH({id:e,filterValue:t,setFilterValue:c,column:i,hidden:a,setHidden: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(fH,{value:t,setValue:c,name:e,isArray:d,path:u.path,title:s?.name,previewProperties:u?.previewProperties,hidden:a,setHidden:l});if(u.dataType==="number"||u.dataType==="string"){const A=u.name,g=u.enumValues?yn(u.enumValues):void 0;return n.jsx(AH,{value:t,setValue:c,name:e,dataType:u.dataType,isArray:d,enumValues:g,title:A})}else if(u.dataType==="boolean"){const A=u.name;return n.jsx(yH,{value:t,setValue:c,name:e,title:A})}else if(u.dataType==="date"){const A=u.name;return n.jsx(gH,{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 Wi(e,t=!1){return t?["string","number","date","reference"].includes(e.dataType):e.dataType==="array"?e.of?Wi(e.of,!0):!1:["string","number","boolean","date","reference","array"].includes(e.dataType)}function pH({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 wH(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=!se(d.current,t),A=e.length>=l.current||u;return f.useEffect(()=>{const g=()=>{se(i,e)||(d.current=t,l.current=e.length,a(e)),s.current=!1};s.current=!0;let h;return A?g():h=setTimeout(g,c),()=>{clearTimeout(h),s.current&&A&&g()}},[e,c,t,A]),A?e:i}const kH=50;function dt({fullPath:e,collection:t,entitiesDisplayedFirst:c,lastDeleteTimestamp:i,forceFilter:a}){const{initialFilter:l,initialSort:s,forceFilter:d}=t,[u,A]=f.useState(void 0),g=Ae(),h=We(),_=f.useMemo(()=>g.resolveAliasesFrom(e),[e,g.resolveAliasesFrom]),y=a??d,I=t.pagination===void 0||!!t.pagination,b=typeof t.pagination=="number"?t.pagination:kH,[p,w]=f.useState(),[k,m]=f.useState(I?b:void 0),v=f.useCallback((H,V)=>h.isFilterCombinationValid?h.isFilterCombinationValid({path:_,collection:t,filterValues:H,sortBy:V}):!0,[]),S=f.useMemo(()=>{if(s&&y&&!v(y,s)){console.warn("Initial sort is not compatible with the force filter. Ignoring initial sort");return}return s},[s,y]),[K,C]=f.useState(y??l??void 0),[P,E]=f.useState(S),T=f.useCallback(()=>C(y??void 0),[y]),B=f.useCallback(H=>{if(y){console.warn("Filter is not compatible with the force filter. Ignoring filter");return}H&&Object.keys(H).length===0?C(void 0):C(H)},[y]),{data:D,dataLoading:N,noMoreToLoad:W,dataLoadingError:z}=jc({path:e,collection:t,filterValues:K,sortBy:P,searchString:p,itemCount:k}),q=pH({data:D,entitiesDisplayedFirst:c});return{data:wH(q,{filterValues:K,sortBy:P,searchString:p,lastDeleteTimestamp:i}),dataLoading:N,noMoreToLoad:W,dataLoadingError:z,filterValues:K,setFilterValues:B,sortBy:P,setSortBy:E,searchString:p,setSearchString:w,clearFilter:T,itemCount:k,setItemCount:m,paginationEnabled:I,pageSize:b,checkFilterCombination:v,popupCell:u,setPopupCell:A}}function Gi({entityOrEntitiesToDelete:e,collection:t,onClose:c,open:i,callbacks:a,onEntityDelete:l,onMultipleEntitiesDelete:s,path:d}){const u=We(),A=An(),[g,h]=f.useState(!1),[_,y]=f.useState(),[I,b]=f.useState(),p=ee();f.useEffect(()=>{if(e){const B=Array.isArray(e)&&e.length===1?e[0]:e;y(B),b(Array.isArray(B))}},[e]);const w=f.useMemo(()=>Te({collection:t,path:d,fields:p.propertyConfigs}),[t,d]),k=f.useCallback(()=>{c()},[c]),m=f.useCallback(B=>{console.debug("Deleted",B)},[]),v=f.useCallback((B,D)=>{A.open({type:"error",message:"Error deleting: "+D?.message}),console.error("Error deleting entity"),console.error(D)},[w.name]),S=f.useCallback((B,D)=>{A.open({type:"error",message:"Error before deleting: "+D?.message}),console.error(D)},[w.name]),K=f.useCallback((B,D)=>{A.open({type:"error",message:"Error after deleting: "+D?.message}),console.error(D)},[w.name]),C=f.useCallback(B=>Da({dataSource:u,entity:B,collection:w,callbacks:a,onDeleteSuccess:m,onDeleteFailure:v,onPreDeleteHookError:S,onDeleteSuccessHookError:K,context:p}),[u,w,a,m,v,S,K,p]),P=f.useCallback(async()=>{_&&(h(!0),I?Promise.all(_.map(C)).then(B=>{h(!1),s&&_&&s(d,_),B.every(Boolean)?A.open({type:"success",message:`${w.name}: multiple deleted`}):B.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()}):C(_).then(B=>{h(!1),B&&(l&&_&&l(d,_),A.open({type:"success",message:`${w.singularName??w.name} deleted`}),c())}))},[_,I,C,s,d,c,A,w.name,l]);let E;if(_&&I)E=n.jsx(n.Fragment,{children:"Multiple entities"});else{const B=_;E=B?n.jsx(xr,{entity:B,collection:t,path:d}):n.jsx(n.Fragment,{})}const T=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(nr,{maxWidth:"2xl","aria-labelledby":"delete-dialog",open:i,onOpenChange:B=>B?void 0:c(),children:[n.jsxs(or,{fullHeight:!0,children:[n.jsx(Z,{variant:"subtitle2",className:"p-4",children:T}),!I&&n.jsx("div",{className:"p-4",children:E})]}),n.jsxs(En,{children:[g&&n.jsx(Nn,{size:"small"}),n.jsx(ie,{onClick:k,disabled:g,variant:"text",color:"primary",children:"Cancel"}),n.jsx(ie,{autoFocus:!0,disabled:g,onClick:P,variant:"filled",color:"primary",children:"Ok"})]})]})}function Go(e){return Array.isArray(e)?e:e?[e]:[]}function mH({collection:e,relativePath:t,parentCollectionIds:c,onNewClick:i,onMultipleDeleteClick:a,selectionEnabled:l,path:s,selectionController:d,tableController:u,collectionEntitiesCount:A}){const g=ee(),h=g.plugins??[],_=un(),y=He(),I=d.selectedEntities,b=Un(e,_,ze(s),null)&&i&&(y?n.jsxs(ie,{id:`add_entity_${s}`,onClick:i,startIcon:n.jsx(sn,{}),size:"large",variant:"filled",color:"primary",children:["Add ",e.singularName??e.name]}):n.jsx(ie,{id:`add_entity_${s}`,onClick:i,size:"medium",variant:"filled",color:"primary",children:n.jsx(sn,{})})),p=xo(e,_,ze(s),null);let w;if(l){const v=y?n.jsxs(ie,{variant:"text",disabled:!I?.length||!p,startIcon:n.jsx(vo,{}),onClick:a,color:"primary",className:"lg:w-20",children:["(",I?.length,")"]}):n.jsx(R,{color:"primary",disabled:!I?.length||!p,onClick:a,children:n.jsx(vo,{})});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,parentCollectionIds:c,collection:e,selectionController:d,context:g,tableController:u,collectionEntitiesCount:A},m=Go(e.Actions).map((v,S)=>n.jsx(ae,{children:n.jsx(v,{...k})},`actions_${S}`));return h&&h.forEach((v,S)=>{v.collections?.CollectionActions&&m.push(...Go(v.collections?.CollectionActions).map((K,C)=>n.jsx(ae,{children:n.jsx(K,{...k,...v.collections?.collectionActionsProps})},`plugin_actions_${S}_${C}`)))}),n.jsxs(n.Fragment,{children:[m,w,b]})}function vH({containerRef:e,innerRef:t,x:c,y:i,onMove:a}){let l=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();l=I.screenX-b,s=I.screenY-p,document.addEventListener("mousemove",_),document.addEventListener("mouseup",h),document.addEventListener("selectstart",g),d.current=!0},A=I=>{I.innerClicked=!0},g=I=>{I.preventDefault(),I.stopPropagation()},h=I=>{document.removeEventListener("mousemove",_),document.removeEventListener("mouseup",h),document.removeEventListener("selectstart",g),I.stopPropagation(),d.current=!1},_=I=>{I.target.localName==="input"||!d.current||(a({x:I.screenX-l,y:I.screenY-s}),I.stopPropagation())},y=()=>{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),y(),()=>{I&&I.removeEventListener("mousedown",u),b&&b.removeEventListener("mousedown",A)}})}function CH(){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 KH=({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 SH(e){return e.open?n.jsx(BH,{...e}):null}function BH({tableKey:e,entity:t,customFieldValidator:c,propertyKey:i,collection:a,path:l,cellRect:s,open:d,onClose:u,onCellValueChange:A,container:g}){const h=We(),_=ee(),[y,I]=f.useState(),[b,p]=f.useState(),w=t?.id,[k,m]=f.useState(t);f.useEffect(()=>w&&a?h.listenEntity?.({path:l,entityId:w,collection:a,onUpdate:V=>{m(V),S(V?.values)}}):()=>{},[h,w,a,l,d]);const[v,S]=f.useState(k?.values),K=a?Te({collection:a,path:l,values:v,entityId:w,fields:_.propertyConfigs}):void 0,C=CH(),P=f.useRef(null),E=f.useRef(null),T=f.useRef(!1),B=f.useCallback(()=>{if(!s)throw Error("getInitialLocation error");return{x:s.left<C.width-s.right?s.x+s.width/2:s.x-s.width/2,y:s.top<C.height-s.bottom?s.y+s.height/2:s.y-s.height/2}},[s,C.height,C.width]),D=f.useCallback(({x:V,y:te})=>{const U=P.current?.getBoundingClientRect();if(!U)throw Error("normalizePosition called before draggableBoundingRect is set");return{x:Math.max(0,Math.min(V,C.width-U.width)),y:Math.max(0,Math.min(te,C.height-U.height))}},[C]),N=f.useCallback(V=>{const te=P.current?.getBoundingClientRect();if(!s||!te)return;const U=V??D(B());(!b||U.x!==b.x||U.y!==b.y)&&p(U)},[s,B,D,b]);vH({containerRef:P,innerRef:E,x:b?.x,y:b?.y,onMove:N}),f.useEffect(()=>{T.current=!1},[i,k]),f.useLayoutEffect(()=>{const V=P.current?.getBoundingClientRect();!s||!V||T.current||(N(),T.current=!0)},[s,N,T.current]),f.useLayoutEffect(()=>{N(b)},[C,s]);const W=f.useMemo(()=>{if(!(!K||!w))return Fi(w,i&&K.properties[i]?{[i]:K.properties[i]}:{},c)},[K,w,i,c]),z=f.useCallback(()=>N(b),[b,N]),q=async V=>(I(null),a&&k&&A&&i?A({value:V[i],propertyKey:i,entity:k,setError:I,onValueUpdated:()=>{},fullPath:l,context:_}):Promise.resolve());if(!k)return n.jsx(n.Fragment,{});const ne=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(Pe.Formik,{initialValues:k?.values??{},enableReinitialize:!0,validationSchema:W,validateOnMount:!0,validate:V=>console.debug("Validating",V),onSubmit:(V,te)=>{q(V).then(()=>u()).finally(()=>te.setSubmitting(!1))},children:({values:V,setFieldValue:te,handleSubmit:U,isSubmitting:J})=>{if(f.useEffect(()=>{se(V,v)||S(V)},[V]),!k)return n.jsx(me,{error:"PopupFormField misconfiguration"});if(!K)return n.jsx(n.Fragment,{});const de=J,Y={collection:K,entityId:w,values:V,path:l,setFieldValue:te,save:q},O=i&&Bn(K.properties,i),$=i&&O?{propertyKey:i,disabled:J||On(O)||!!O.disabled,property:O,includeDescription:!1,underlyingValueHasChanged:!1,context:Y,tableMode:!0,partOfArray:!1,partOfBlock:!1,autoFocus:d}:void 0;let oe=n.jsx(n.Fragment,{children:n.jsx("div",{className:"w-[560px] max-w-full max-h-[85vh]",children:n.jsxs(Pe.Form,{onSubmit:U,noValidate:!0,children:[n.jsx("div",{className:"mb-1 p-4 flex flex-col relative",children:n.jsx("div",{ref:E,className:"cursor-auto",style:{cursor:"auto !important"},children:$&&n.jsx(Sn,{...$})})}),n.jsx(En,{children:n.jsx(ie,{variant:"filled",color:"primary",type:"submit",disabled:de,children:"Save"})})]})},`popup_form_${e}_${w}_${i}`)});const j=_.plugins;return j&&j.forEach(M=>{M.form?.provider&&(oe=n.jsx(M.form.provider.Component,{status:"existing",path:l,collection:K,entity:k,context:_,currentEntityId:w,formContext:Y,...M.form.provider.props,children:oe}))}),oe}}),y&&n.jsx(Z,{color:"error",children:y.message})]}),H=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(KH,{onResize:z}),n.jsxs("div",{className:"overflow-hidden",children:[ne,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:V=>{V.stopPropagation(),u()},children:n.jsx(dn,{className:"text-white",size:"small"})})})]})]},`draggable_${i}_${w}_${d}`);return n.jsx(tl.Root,{asChild:!0,container:g,children:H})}const EH={icon:n.jsx(Ko,{}),name:"Edit",collapsed:!1,onClick({entity:e,collection:t,context:c,highlightEntity:i,unhighlightEntity:a}){return i?.(e),c.onAnalyticsEvent?.("entity_click",{path:e.path,entityId:e.id}),c.sideEntityController.open({entityId:e.id,path:e.path,collection:t,updateUrl:!0,onClose:()=>a?.(e)}),Promise.resolve(void 0)}},zi={icon:n.jsx(hc,{}),name:"Copy",onClick({entity:e,collection:t,context:c,highlightEntity:i,unhighlightEntity:a}){return i?.(e),c.onAnalyticsEvent?.("copy_entity_click",{path:e.path,entityId:e.id}),c.sideEntityController.open({entityId:e.id,path:e.path,copy:!0,collection:t,updateUrl:!0,onClose:()=>a?.(e)}),Promise.resolve(void 0)}},Hi={icon:n.jsx(vo,{}),name:"Delete",onClick({entity:e,fullPath:t,collection:c,context:i,selectionController:a,onCollectionChange:l,sideEntityController:s}){const{closeDialog:d}=i.dialogsController.open({key:"delete_entity_dialog_"+e.id,Component:({open:u})=>{if(!c||!t)throw new Error("deleteEntityAction: Collection is undefined");return n.jsx(Gi,{entityOrEntitiesToDelete:e,path:t,collection:c,callbacks:c.callbacks,open:u,onEntityDelete:()=>{i.onAnalyticsEvent?.("single_entity_deleted",{path:t}),a?.setSelectedEntities(a.selectedEntities.filter(A=>A.id!==e.id)),l?.(),s?.close()},onClose:d})}});return Promise.resolve(void 0)}},FH="collectionGroupParent",ut=f.memo(function({fullPath:t,parentCollectionIds:c,isSubCollection:i,className:a,...l}){const s=We(),d=Ae(),u=fn(),A=un(),g=Mn(),h=ee(),_=f.useRef(null),y=f.useMemo(()=>{const Q=g?.getCollectionConfig(t);return Q?Ge(l,Q):l},[l,t,g?.getCollectionConfig]),I=Un(y,A,ze(t),null),[b,p]=f.useState(void 0),[w,k]=f.useState(void 0),[m,v]=f.useState(0),[S,K]=f.useState(0),C=f.useCallback(()=>{const Q=b;setTimeout(()=>{Q===b&&p(void 0)},2400)},[b]),P=f.useCallback(Q=>Qt(y,A,ze(t),Q??null)?y.inlineEditing===void 0||y.inlineEditing:!1,[y,A,t]),E=y.selectionEnabled===void 0||y.selectionEnabled,T=!P(),[B,D]=f.useState(!1),N=ft(),W=y.selectionController??N,{selectedEntities:z,toggleEntitySelection:q,isEntitySelected:ne,setSelectedEntities:H}=W;f.useEffect(()=>{k(void 0)},[z]);const V=dt({fullPath:t,collection:y,entitiesDisplayedFirst:[],lastDeleteTimestamp:m}),te=f.useRef(Math.random().toString(36)),U=V.popupCell,J=f.useCallback(()=>{V.setPopupCell?.(void 0)},[V.setPopupCell]),de=f.useCallback(Q=>(p(Q),h.onAnalyticsEvent?.("edit_entity_clicked",{path:Q.path,entityId:Q.id}),u.open({entityId:Q.id,path:Q.path,collection:y,updateUrl:!0,onClose:C})),[t,y,u]),Y=f.useCallback(()=>{h.onAnalyticsEvent?.("new_entity_click",{path:t}),u.open({path:t,collection:y,updateUrl:!0,onClose:C})},[t,y,u]);f.useCallback(Q=>{h.onAnalyticsEvent?.("single_delete_dialog_open",{path:t}),k(Q)},[h,t]);const O=f.useCallback(()=>{h.onAnalyticsEvent?.("multiple_delete_dialog_open",{path:t}),k(z)},[h,t,z]),$=f.useCallback((Q,x)=>{h.onAnalyticsEvent?.("single_entity_deleted",{path:t}),H(re=>re.filter(ce=>ce.id!==x.id)),v(Date.now())},[h,t,H]),oe=f.useCallback((Q,x)=>{h.onAnalyticsEvent?.("multiple_entities_deleted",{path:t}),H([]),k(void 0),v(Date.now())},[H]);let j;h?.plugins&&(j=h.plugins.find(Q=>Q.collectionView?.AddColumnComponent)?.collectionView?.AddColumnComponent);const M=f.useCallback((Q,x)=>{if(g){const re=g.getCollectionConfig(Q),ce=Ge(re,x);g.onCollectionModified(Q,ce)}},[g]),L=f.useCallback(({width:Q,key:x})=>{if(!Bn(y.properties,x))return;const re=Ui(x,Q);M(t,re)},[y,M,t]),Qe=f.useCallback(Q=>{g&&M(t,{defaultSize:Q})},[M,t,g]),be=Un(y,A,ze(t),null),ge=f.useCallback(({name:Q,value:x,property:re,entityId:ce})=>s.checkUniqueField(t,Q,x,ce),[t]),Ve=({fullPath:Q,context:x,value:re,propertyKey:ce,onValueUpdated:_e,setError:qe,entity:bo})=>{const X=Pe.setIn({...bo.values},ce,re),ke={path:Q,entityId:bo.id,values:X,previousValues:bo.values,collection:y,status:"existing"};return Gt({...ke,collection:y,callbacks:y.callbacks,dataSource:s,context:x,onSaveSuccess:()=>_e(),onSaveFailure:he=>{console.error("Save failure"),console.error(he),qe(he)}})},bn=d.resolveAliasesFrom(t),cn=f.useMemo(()=>Te({collection:y,path:t,fields:h.propertyConfigs}),[y,t]),en=f.useCallback(({propertyKey:Q,propertyValue:x,entity:re})=>{let ce=Bn(y.properties,Q);return ce||(ce=Bn(cn.properties,Q)),Me({propertyKey:Q,propertyOrBuilder:ce,path:t,propertyValue:x,values:re.values,entityId:re.id,fields:h.propertyConfigs})},[y.properties,h.propertyConfigs,t,cn.properties]),yo=Li(cn,!0),$n=f.useMemo(()=>{const Q=y.subcollections?.map(re=>({key:Rr(re),name:re.name,width:200,dependencies:[],Builder:({entity:ce})=>n.jsx(ie,{color:"primary",variant:"outlined",startIcon:n.jsx(Ko,{size:"small"}),onClick:_e=>{_e.stopPropagation(),u.open({path:t,entityId:ce.id,selectedSubPath:re.id??re.path,collection:y,updateUrl:!0})},children:re.name})}))??[],x=y.collectionGroup?[{key:FH,name:"Parent entities",width:260,dependencies:[],Builder:({entity:re})=>{const ce=d.getParentReferencesFromPath(re.path);return n.jsx(n.Fragment,{children:ce.map(_e=>n.jsx(rn,{reference:_e,size:"tiny"},_e.path+"/"+_e.id))})}}]:[];return[...y.additionalFields??[],...Q,...x]},[y,t]),go=f.useCallback(()=>{v(Date.now())},[]),pn=He(),wn=f.useCallback(({entity:Q,customEntityActions:x})=>{const re=Q?xo(y,A,ze(t),Q):!0,ce=[EH];return be&&ce.push(zi),re&&ce.push(Hi),x&&ce.push(...x),ce},[A,y,be,t]),_o=f.useCallback(()=>{const Q=wn({}),x=Q.filter(_e=>_e.collapsed!==!1),ce=Q.filter(_e=>_e.collapsed===!1).length*(pn?40:30);return(pn?80+ce:70+ce)+(x.length>0?pn?40:30:0)},[pn,wn]),kn=f.useCallback(({entity:Q,size:x,width:re,frozen:ce})=>{const _e=ne(Q),qe=wn({entity:Q,customEntityActions:y.entityActions});return n.jsx(ct,{entity:Q,width:re,frozen:ce,isSelected:_e,selectionEnabled:E,size:x,highlightEntity:p,unhighlightEntity:C,collection:y,fullPath:t,actions:qe,hideId:y?.hideIdFromCollection,onCollectionChange:go,selectionController:W})},[ne,y,A,t,E,q,be]),ho=n.jsx(tr,{open:B,onOpenChange:D,enabled:!!y.description,trigger:n.jsxs("div",{className:"flex flex-col items-start",children:[n.jsx(Z,{variant:"subtitle1",className:`leading-none truncate max-w-[160px] lg:max-w-[240px] ${y.description?"cursor-pointer":"cursor-auto"}`,onClick:y.description?Q=>{D(!0),Q.stopPropagation()}:void 0,children:`${y.name}`}),n.jsx(PH,{fullPath:t,collection:y,filter:V.filterValues,sortBy:V.sortBy,onCountChange:K})]}),children:y.description&&n.jsx("div",{className:"m-4 text-gray-900 dark:text-white",children:n.jsx(Ao,{source:y.description})})});function Io({property:Q,propertyKey:x,onHover:re}){return h.plugins?n.jsx(n.Fragment,{children:h.plugins.filter(ce=>ce.collectionView?.HeaderAction).map((ce,_e)=>{const qe=ce.collectionView.HeaderAction;return n.jsx(qe,{onHover:re,propertyKey:x,property:Q,fullPath:t,collection:y,parentCollectionIds:c??[]},`plugin_header_action_${_e}`)})}):null}const G=j?function(){return typeof j=="function"?n.jsx(j,{fullPath:t,parentCollectionIds:c??[],collection:y}):null}:void 0;return n.jsxs("div",{className:F("overflow-hidden h-full w-full",a),ref:_,children:[n.jsx(st,{additionalFields:$n,tableController:V,displayedColumnIds:yo,onSizeChanged:Qe,onEntityClick:de,onColumnResize:L,onValueChange:Ve,tableRowActionsBuilder:kn,uniqueFieldValidator:ge,title:ho,selectionController:W,highlightedEntities:b?[b]:[],defaultSize:y.defaultSize,properties:cn.properties,getPropertyFor:en,actions:n.jsx(mH,{parentCollectionIds:c??[],collection:y,tableController:V,onMultipleDeleteClick:O,onNewClick:Y,path:t,relativePath:y.path,selectionController:W,selectionEnabled:E,collectionEntitiesCount:S}),emptyComponent:I&&V.filterValues===void 0&&V.sortBy===void 0?n.jsxs("div",{className:"flex flex-col items-center justify-center",children:[n.jsx(Z,{variant:"subtitle2",children:"So empty..."}),n.jsxs(ie,{color:"primary",variant:"outlined",onClick:Y,className:"mt-4",children:[n.jsx(sn,{}),"Create your first entity"]})]}):n.jsx(Z,{variant:"label",children:"No results with the applied filter/sort"}),hoverRow:T,inlineEditing:P(),AdditionalHeaderWidget:Io,AddColumnComponent:G,getIdColumnWidth:_o,additionalIDHeaderWidget:n.jsx(DH,{path:t,collection:y})},`collection_table_${t}`),n.jsx(SH,{open:!!U,onClose:J,cellRect:U?.cellRect,propertyKey:U?.propertyKey,collection:y,entity:U?.entity,tableKey:te.current,customFieldValidator:ge,path:bn,onCellValueChange:Ve,container:_.current},`popup_form_${U?.propertyKey}_${U?.entity?.id}`),w&&n.jsx(Gi,{entityOrEntitiesToDelete:w,path:t,collection:y,callbacks:y.callbacks,open:!!w,onEntityDelete:$,onMultipleEntitiesDelete:oe,onClose:()=>k(void 0)})]})},se);function ft(){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 PH({fullPath:e,collection:t,filter:c,sortBy:i,onCountChange:a}){const l=We(),s=Ae(),[d,u]=f.useState(void 0),[A,g]=f.useState(void 0),h=i?i[0]:void 0,_=i?i[1]:void 0,y=f.useMemo(()=>s.resolveAliasesFrom(e),[e,s.resolveAliasesFrom]);return f.useEffect(()=>{l.countEntities({path:y,collection:t,filter:c,orderBy:h,order:_}).then(u).catch(g)},[e,l,y,t,c,h,_]),f.useEffect(()=>{a&&a(d??0)},[a,d]),A?null:n.jsx(Z,{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(Oe,{className:"w-full max-w-[80px] mt-1"})})}function Ui(e,t){if(e.includes(".")){const[c,...i]=e.split(".");return{properties:{[c]:Ui(i.join("."),t)}}}return{properties:{[e]:{columnWidth:t}}}}function DH({collection:e,path:t}){const[c,i]=f.useState(!1),[a,l]=f.useState(""),s=fn();return n.jsx(ye,{title:c?void 0:"Find by ID",children:n.jsx(tr,{open:c,onOpenChange:i,trigger:n.jsx(R,{size:"small",children:n.jsx(hr,{size:"small"})}),children:n.jsx("form",{noValidate:!0,onSubmit:d=>{if(d.preventDefault(),!!a)return i(!1),s.open({entityId:a,path:t,collection:e,updateUrl:!0})},className:"text-gray-900 dark:text-white w-96 max-w-full",children:n.jsxs("div",{className:"flex p-4 w-full gap-4",children:[n.jsx(tn,{placeholder:"Find entity by ID",size:"small",onChange:d=>l(d.target.value),value:a,className:"flex-grow"}),n.jsx(ie,{variant:"outlined",disabled:!a,type:"submit",children:"Go"})]})})})})}const NH={breadcrumbs:[],set:e=>{}},Yi=f.createContext(NH),TH=({children:e})=>{const[t,c]=f.useState([]),i=a=>{c(a.breadcrumbs)};return n.jsx(Yi.Provider,{value:{breadcrumbs:t,set:i},children:e})},MH=({children:e})=>n.jsx(Jt.SnackbarProvider,{maxSnack:3,autoHideDuration:3500,children:e}),OH={mode:"light",setMode:e=>{},toggleMode:()=>{}},zo=f.createContext(OH),LH=zo.Provider;function At(e){const{path:t,collections:c=[],currentFullPath:i}=e,a=we(t).split("/"),l=Lo(a),s=[];for(let d=0;d<l.length;d++){const u=l[d],A=c&&c.find(g=>g.id===u||g.path===u);if(A){const g=A.id??A.path,h=i&&i.length>0?i+"/"+g:g;s.push({type:"collection",path:h,collection:A});const _=we(we(t).replace(u,"")),y=_.length>0?_.split("/"):[];if(y.length>0){const I=y[0],b=h+"/"+I;if(s.push({type:"entity",entityId:I,path:h,parentCollection:A}),y.length>1){const p=y.slice(1).join("/");if(!A)throw Error("collection not found resolving path: "+A);const w=A.entityViews,k=w&&w.map(m=>Mt(m,e.contextEntityViews)).filter(Boolean).find(m=>m.key===p);if(k){const m=i&&i.length>0?i+"/"+k.key:k.key;s.push({type:"custom_view",path:m,view:k})}else A.subcollections&&s.push(...At({path:p,collections:A.subcollections,currentFullPath:b,contextEntityViews:e.contextEntityViews}))}}break}}return s}const QH="100vw",VH="55vw",ji="768px",Ho="main_##Q$SC^#S6";function WH({path:e,entityId:t,selectedSubPath:c,copy:i,collection:a,parentCollectionIds:l,onValuesAreModified:s,formWidth:d,onUpdate:u,onClose:A}){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[g,h]=f.useState(!1),[_,y]=f.useState(void 0);Qo(_,()=>{_&&L({entityId:J?.id,collection:a,path:e,values:_,closeAfterSave:!1})},!1,2e3);const I=We(),b=Uo(),p=fn(),w=An(),k=ee(),m=un(),[v,S]=f.useState(void 0),[K,C]=f.useState(i?"copy":t?"existing":"new"),P=f.useRef(void 0),E=P.current,T=(a.subcollections??[]).filter(G=>!G.hideFromNavigation),B=T?.length??0,D=a.entityViews,N=D?.length??0,W=a.formAutoSave&&!a.customId,z=N>0||B>0,q=c??Lr(a?a.defaultSelectedView:void 0,{status:K,entityId:t}),ne=f.useRef(q??Ho),H=ne.current===Ho,{entity:V,dataLoading:te,dataLoadingError:U}=Nr({path:e,entityId:t,collection:a,useCache:!1}),[J,de]=f.useState(V),[Y,O]=f.useState(void 0);f.useEffect(()=>{V&&de(V)},[V]),f.useEffect(()=>{if(K==="new")O(!1);else{const G=J?Qt(a,m,ze(e),J??null):!1;J&&O(!G)}},[m,J,K]);const $=f.useCallback(G=>{h(!1),w.open({type:"error",message:"Error before saving: "+G?.message}),console.error(G)},[w]),oe=f.useCallback(G=>{h(!1),w.open({type:"error",message:"Error after saving (entity is saved): "+G?.message}),console.error(G)},[w]),j=(G,Q)=>{h(!1),W||w.open({type:"success",message:`${a.singularName??a.name}: Saved correctly`}),de(G),C("existing"),s(!1),u&&u({entity:G}),Q?(b.setBlocked(!1),b.close(!0),A?.()):K!=="existing"&&p.replace({path:e,entityId:G.id,selectedSubPath:ne.current,updateUrl:!0,collection:a})},M=f.useCallback(G=>{h(!1),w.open({type:"error",message:"Error saving: "+G?.message}),console.error("Error saving entity",e,t),console.error(G)},[t,e,w]),L=({values:G,previousValues:Q,closeAfterSave:x,entityId:re,collection:ce,path:_e})=>{h(!0),Gt({path:_e,entityId:re,values:G,previousValues:Q,collection:ce,status:K,dataSource:I,context:k,onSaveSuccess:qe=>j(qe,x),onSaveFailure:M,onPreSaveHookError:$,onSaveSuccessHookError:oe}).then()},Qe=async({collection:G,path:Q,entityId:x,values:re,previousValues:ce,closeAfterSave:_e,autoSave:qe})=>{K&&(qe?y(re):L({collection:G,path:Q,entityId:x,values:re,previousValues:ce,closeAfterSave:_e}))},be=D?D.map(G=>Mt(G,k.entityViews)).filter(Boolean):[],ge=D&&be.map((G,Q)=>{if(!G||ne.current!==G.key)return null;const x=G.Builder;return x?n.jsx("div",{className:F(fe,"relative flex-grow w-full h-full overflow-auto "),role:"tabpanel",children:n.jsx(ae,{children:v&&n.jsx(x,{collection:a,entity:J,modifiedValues:E??J?.values,formContext:v})})},`custom_view_${G.key}`):(console.error("customView.Builder is not defined"),null)}).filter(Boolean),Ve=te&&!J||(!J||Y===void 0)&&(K==="existing"||K==="copy"),bn=Ve||g,cn=T&&T.map((G,Q)=>{const x=G.id??G.path,re=J?`${e}/${J?.id}/${we(x)}`:void 0;return ne.current!==x?null:n.jsxs("div",{className:"relative flex-grow h-full overflow-auto w-full",role:"tabpanel",children:[bn&&n.jsx(lo,{}),!Ve&&(J&&re?n.jsx(ut,{fullPath:re,parentCollectionIds:[...l,a.id],isSubCollection:!0,...G}):n.jsx("div",{className:"flex items-center justify-center w-full h-full p-3",children:n.jsx(Z,{variant:"label",children:"You need to save your entity before adding additional collections"})}))]},`subcol_${x}`)}).filter(Boolean),en=f.useCallback(()=>{s(!1)},[]),yo=G=>{ne.current=G,p.replace({path:e,entityId:t,selectedSubPath:G===Ho?void 0:G,updateUrl:!0,collection:a})},$n=f.useCallback(G=>{P.current=G},[]),go=f.useCallback(G=>{w.open({type:"error",message:"Error updating id, check the console"})},[]),pn=f.useCallback(G=>{de(Q=>Q?{...Q,id:G}:void 0)},[]),wn=G=>{W||s(G)};function _o(){const G=k.plugins;let Q=n.jsx(ba,{status:K,path:e,collection:a,onEntitySaveRequested:Qe,onDiscard:en,onValuesChanged:$n,onModified:wn,entity:J,onIdChange:pn,onFormContextChange:S,hideId:a.hideIdFromForm,autoSave:W,onIdUpdateError:go});return G&&G.forEach(x=>{x.form?.provider&&(Q=n.jsx(x.form.provider.Component,{status:K,path:e,collection:a,onDiscard:en,onValuesChanged:$n,onModified:wn,entity:J,context:k,formContext:v,...x.form.provider.props,children:Q}))}),n.jsx(ae,{children:Q})}const kn=Y===void 0?n.jsx(n.Fragment,{}):Y?n.jsxs(n.Fragment,{children:[n.jsx(Z,{className:"mt-16 mb-8 mx-8",variant:"h4",children:a.singularName??a.name}),n.jsx(xr,{className:"px-12",entity:J,path:e,collection:a})]}):_o(),ho=T&&T.map(G=>n.jsx(rr,{className:"text-sm min-w-[140px]",value:G.id,children:G.name},`entity_detail_collection_tab_${G.name}`)),Io=be.map(G=>n.jsx(rr,{className:"text-sm min-w-[140px]",value:G.key,children:G.name},`entity_detail_collection_tab_${G.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:F(fe,"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:()=>(A?.(),b.close(!1)),size:"large",children:n.jsx(wr,{})})}),n.jsx("div",{className:"flex-grow"}),Ve&&n.jsx("div",{className:"self-center",children:n.jsx(Nn,{size:"small"})}),n.jsxs(Oa,{value:ne.current,onValueChange:G=>{yo(G)},className:"pl-4 pr-4 pt-0",children:[n.jsx(rr,{disabled:!z,value:Ho,className:`${z?"":"hidden"} text-sm min-w-[140px]`,children:a.singularName??a.name}),Io,ho]})]}),n.jsxs("div",{className:"flex-grow h-full flex overflow-auto flex-row w-full ",style:{},children:[n.jsx("div",{role:"tabpanel",hidden:!H,id:`form_${e}`,className:" w-full",children:Ve?n.jsx(lo,{}):kn}),ge,cn]})]})})}function GH(e,t){const[c,i]=f.useState(),{navigator:a}=f.useContext(pe.UNSAFE_NavigationContext),l=pe.useNavigate(),s=()=>{i(void 0)},d=()=>{t(),i(void 0),l(-1)},u=f.useCallback(({action:A,location:g,retry:h})=>{switch(A){case"REPLACE":{h();return}case"POP":i(g)}},[]);return f.useEffect(()=>{if(!e||c||!("block"in a))return;const A=a.block(g=>{const h={...g,retry(){A(),g.retry()}};u(h)});return A},[a,u,e,c]),{navigationWasBlocked:!!c,handleCancel:s,handleOk:d}}function zH({open:e,handleOk:t,handleCancel:c,body:i,title:a}){return n.jsxs(nr,{open:e,onOpenChange:l=>l?c():t(),children:[n.jsxs(or,{children:[n.jsx(Z,{variant:"h6",children:a}),i,n.jsx(Z,{children:"Are you sure you want to leave this page?"})]}),n.jsxs(En,{children:[n.jsx(ie,{variant:"text",onClick:c,autoFocus:!0,children:" Cancel "}),n.jsx(ie,{onClick:t,children:" Ok "})]})]})}const $i=f.createContext({width:"",blocked:!1,setBlocked:e=>{},setBlockedNavigationMessage:e=>{},close:()=>{}}),Uo=()=>f.useContext($i);function HH(){const t=no().sidePanels,c=[...t];return c.push(void 0),n.jsx(n.Fragment,{children:c.map((i,a)=>n.jsx(UH,{panel:i,offsetPosition:t.length-a-1},`side_dialog_${a}`))})}function UH({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,g=no(),{navigationWasBlocked:h,handleOk:_,handleCancel:y}=GH(a&&!c,()=>l(!1));f.useEffect(()=>{t&&(u.current=t.width)},[t]);const I=()=>{l(!1),i(!1),g.close(),t?.onClose?.()},b=()=>{i(!1)},p=w=>{a&&!w?i(!0):(g.close(),t?.onClose?.())};return n.jsxs($i.Provider,{value:{blocked:a,setBlocked:l,setBlockedNavigationMessage:d,width:A,close:p},children:[n.jsxs(jt,{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(ae,{children:t.component})}),!t&&n.jsx("div",{style:{width:A}})]}),n.jsx(zH,{open:h||c,handleOk:c?I:_,handleCancel:c?b:y,body:s})]})}function YH(e){const{blocked:t,setBlocked:c,setBlockedNavigationMessage:i}=Uo(),a=Ae(),l=f.useMemo(()=>a.getParentCollectionIds(e.path),[a,e.path]),s=f.useMemo(()=>{if(!e)return;let u=e.collection;if(!u&&(u=a.getCollection(e.path,e.entityId),!u))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 u},[a,e]);f.useEffect(()=>{function u(A){t&&s&&(A.preventDefault(),A.returnValue=`You have unsaved changes in this ${s.name}. Are you sure you want to leave this page?`)}return typeof window<"u"&&window.addEventListener("beforeunload",u),()=>{typeof window<"u"&&window.removeEventListener("beforeunload",u)}},[t,s]);const d=f.useCallback(u=>{c(u),i(u?n.jsxs(n.Fragment,{children:[" You have unsaved changes in this ",n.jsx("b",{children:s?.singularName??s?.name}),"."]}):void 0)},[s?.name,c,i]);return!e||!s?n.jsx("div",{className:"w-full"}):n.jsx(n.Fragment,{children:n.jsx(ae,{children:n.jsx(WH,{...e,formWidth:e.width,collection:s,parentCollectionIds:l,onValuesAreModified:d})})})}const qi="new";function jH(e,t){if(t)return QH;const c=!e.selectedSubPath,i=typeof e.width=="number"?`${e.width}px`:e.width;return c?i??ji:`calc(${VH} + ${i??ji})`}const $H=(e,t)=>{const c=pe.useLocation(),i=f.useRef(!1),a=!He();f.useEffect(()=>{if(!e.loading&&!i.current){if(e.isUrlCollectionPath(c.pathname)){const u=c.hash===`#${qi}`,A=e.urlPathToDataPath(c.pathname),g=qH(A,e.collections,u);for(let h=0;h<g.length;h++){const _=g[h];setTimeout(()=>{h===0?t.replace(Yo(_,e,a)):t.open(Yo(_,e,a))},1)}}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=Lr(u.collection?u.collection.defaultSelectedView:void 0,{status:u.copy?"copy":u.entityId?"existing":"new",entityId:u.entityId});t.open(Yo({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(Yo(u,e,a))},[e,t,a]);return{close:l,open:s,replace:d}};function qH(e,t,c){const i=At({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.id??d.collection.path)}}}return c&&a.push({path:l,copy:!1}),a}const Yo=(e,t,c)=>{const i=we(e.path),a=e.entityId?t.buildUrlCollectionPath(`${i}/${e.entityId}/${e.selectedSubPath||""}`):t.buildUrlCollectionPath(`${i}#${qi}`);return{key:`${e.path}/${e.entityId}`,component:n.jsx(YH,{...e}),urlPath:a,parentUrlPath:t.buildUrlCollectionPath(i),width:jH(e,c),onClose:e.onClose}};function JH(){const e=pe.useLocation(),t=pe.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 y=(e.state?.panels??[]).map(I=>l.current[I]).filter(I=>!!I);se(a.current.map(I=>I.key),y.map(I=>I.key))||d(y)},[e]);const u=f.useCallback(()=>{if(c.length===0)return;const h=c[c.length-1],_=[...c.slice(0,-1)];if(d(_),s.current>0)h.urlPath&&t(-1),s.current--;else if(h.parentUrlPath){const y=e.state?.base_location??e;t(h.parentUrlPath,{replace:!0,state:{base_location:y,panels:_.map(I=>I.key)}})}},[c,t,e]),A=f.useCallback(h=>{const _=Array.isArray(h)?h:[h];_.forEach(b=>{l.current[b.key]=b}),s.current=s.current+_.length;const y=e.state?.base_location??e,I=[...c,..._];d(I),_.forEach(b=>{b.urlPath&&t(b.urlPath,{state:{base_location:y,panels:I.map(p=>p.key)}})})},[e,t,c]),g=f.useCallback(h=>{const _=Array.isArray(h)?h:[h];_.forEach(b=>{l.current[b.key]=b});const y=e.state?.base_location??e,I=[...c.slice(0,-_.length),..._];d(I),_.forEach(b=>{b.urlPath&&t(b.urlPath,{replace:!0,state:{base_location:y,panels:I.map(p=>p.key)}})})},[e,t,c]);return{sidePanels:c,close:u,open:A,replace:g}}function ZH(e){f.useEffect(()=>{if(!e)return;const t=Rt[e];t&&(cr.registerLocale(e,t),cr.setDefaultLocale(e))},[e])}function Ji(e){const{path:t,collections:c=[],currentFullPath:i}=e,a=we(t).split("/"),l=Lo(a),s=[];for(let d=0;d<l.length;d++){const u=l[d],A=c&&c.find(g=>g.id===u||g.path===u);if(A){const g=A.id??A.path,h=i&&i.length>0?i+"/"+g:g,_=we(we(t).replace(u,"")),y=_.length>0?_.split("/"):[];if(y.length>0){const I=y[0],b=h+"/"+I;if(s.push(new $e(I,h)),y.length>1){const p=y.slice(1).join("/");if(!A)throw Error("collection not found resolving path: "+A);A.subcollections&&s.push(...Ji({path:p,collections:A.subcollections,currentFullPath:b}))}}break}}return s}const XH="/",xH="/c";function RH({basePath:e=XH,baseCollectionPath:t=xH,authController:c,collections:i,views:a,userConfigPersistence:l,plugins:s,dataSource:d}){const u=pe.useLocation(),[A,g]=f.useState(),[h,_]=f.useState(),[y,I]=f.useState(!1),[b,p]=f.useState(void 0),[w,k]=f.useState(!0),[m,v]=f.useState(void 0),S=we(e),K=we(t),C=S?`/${S}`:"/",P=S?`/${S}/${K}`:`/${K}`,E=f.useCallback(Y=>S?`/${S}/${jo(Y)}`:`/${jo(Y)}`,[S]),T=f.useCallback(Y=>`${we(t)}/${jo(Y)}`,[t]),B=f.useCallback((Y,O)=>{const $=[...(Y??[]).map(j=>j.hideFromNavigation?void 0:{url:T(j.id??j.path),type:"collection",name:j.name.trim(),path:j.id??j.path,collection:j,description:j.description?.trim(),group:j.group?.trim()}).filter(Boolean),...(O??[]).map(j=>j.hideFromNavigation?void 0:{url:E(Array.isArray(j.path)?j.path[0]:j.path),name:j.name.trim(),type:"view",view:j,description:j.description?.trim(),group:j.group?.trim()}).filter(Boolean)],oe=Object.values($).map(j=>j.group).filter(Boolean).filter((j,M,L)=>L.indexOf(j)===M);return{navigationEntries:$,groups:oe}},[E,T]),D=f.useCallback(async()=>{if(!c.initialLoading){try{const[Y=[],O=[]]=await Promise.all([e3(i,c,d,s),n3(a,c,d)]);g(Y),_(O),p(B(Y??[],O))}catch(Y){console.error(Y),v(Y)}k(!1),I(!0)}},[i,c.user,c.initialLoading,s,a,B]);f.useEffect(()=>{D()},[D]);const N=f.useCallback((Y,O,$=!1)=>{if(!A)return;const oe=Oo(we(Y),A),j=$?l?.getCollectionConfig(Y):void 0,M=oe?Ge(oe,j):void 0;let L=M;if(M){const Qe=M.subcollections,be=M.callbacks,ge=M.permissions;L={...L,subcollections:L?.subcollections??Qe,callbacks:L?.callbacks??be,permissions:L?.permissions??ge}}if(L)return{...M,...L}},[e,t,A]),W=f.useCallback(Y=>{let O=A;if(!O)throw Error("Collections have not been initialised yet");for(let $=0;$<Y.length;$++){const oe=Y[$],j=O.find(M=>M.id===oe||M.path===oe);if(!j)return;if(O=j.subcollections,$===Y.length-1)return j}},[A]),z=f.useCallback(Y=>{let O=A;if(!O)throw Error("Collections have not been initialised yet");for(let $=0;$<Y.length;$++){const oe=Y[$],j=O.find(M=>M.id===oe);if(!j)return;if(O=j.subcollections,$===Y.length-1)return j}},[A]),q=f.useCallback(Y=>we(Y+"/").startsWith(we(P)+"/"),[P]),ne=f.useCallback(Y=>{if(Y.startsWith(P))return Y.replace(P,"");throw Error("Expected path starting with "+P)},[P]),H=f.useCallback(({path:Y})=>`s/edit/${jo(Y)}`,[]),V=f.useCallback(Y=>{if(!A)throw Error("Collections have not been initialised yet");return Hr(Y,A)},[A]),te=u.state,U=te&&te.base_location?te.base_location:u,J=f.useCallback(Y=>Ji({path:Y,collections:A}),[A]),de=f.useCallback(Y=>J(Y).map(O=>O.id),[J]);return f.useMemo(()=>({collections:A??[],views:h??[],loading:!y||w,navigationLoadingError:m,homeUrl:C,basePath:e,baseCollectionPath:t,initialised:y,getCollection:N,getCollectionFromPaths:W,getCollectionFromIds:z,isUrlCollectionPath:q,urlPathToDataPath:ne,buildUrlCollectionPath:T,buildUrlEditCollectionPath:H,buildCMSUrlPath:E,resolveAliasesFrom:V,topLevelNavigation:b,baseLocation:U,refreshNavigation:D,getParentReferencesFromPath:J,getParentCollectionIds:de}),[t,U,e,E,T,H,A,J,N,W,C,y,q,w,m,D,V,b,ne,h])}function jo(e){return encodeURIComponent(we(e)).replaceAll("%2F","/").replaceAll("%23","#")}function Zi(e,t){return e.filter(c=>c.permissions?uo(c,t,[c.path],null).read!==!1:!0).map(c=>c.subcollections?{...c,subcollections:Zi(c.subcollections,t)}:c)}async function e3(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=Zi(a,t),i&&i.forEach(l=>{l.collections?.injectCollections&&(a=l.collections?.injectCollections(a??[]))}),a}async function n3(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 o3({delegate:e,propertyConfigs:t,navigationController:c}){return{fetchCollection:f.useCallback(({path:i,collection:a,filter:l,limit:s,startAfter:d,searchString:u,orderBy:A,order:g})=>e.fetchCollection({path:i,filter:l,limit:s,startAfter:d,searchString:u,orderBy:A,order:g}),[e]),listenCollection:e.listenCollection?f.useCallback(({path:i,collection:a,filter:l,limit:s,startAfter:d,searchString:u,orderBy:A,order:g,onUpdate:h,onError:_})=>{const I=!!(a??c.getCollection(i))?.collectionGroup;if(!e.listenCollection)throw Error("useBuildDataSource delegate not initialised");return e.listenCollection({path:i,filter:l,limit:s,startAfter:d,searchString:u,orderBy:A,order:g,onUpdate:h,onError:_,isCollectionGroup:I})},[e,c.getCollection]):void 0,fetchEntity:f.useCallback(({path:i,entityId:a})=>e.fetchEntity({path:i,entityId:a}),[e]),listenEntity:e.listenEntity?f.useCallback(({path:i,entityId:a,collection:l,onUpdate:s,onError:d})=>{if(!e.listenEntity)throw Error("useBuildDataSource delegate not initialised");return e.listenEntity({path:i,entityId:a,onUpdate:s,onError:d})},[e.listenEntity]):void 0,saveEntity:f.useCallback(({path:i,entityId:a,values:l,collection:s,status:d})=>{const u=s??c.getCollection(i),g=(u?Te({collection:u,path:i,entityId:a,fields:t}):void 0)?.properties,h=yt(l,e.buildReference,e.buildGeoPoint,e.buildDate,e.buildDeleteFieldValue),_=g?$c({inputValues:h,properties:g,status:d,timestampNowValue:e.currentTime(),setDateToMidnight:e.setDateToMidnight}):h;return console.debug("Saving entity",i,a,_),e.saveEntity({path:i,entityId:a,values:_,status:d}).then(y=>({id:y.id,path:y.path,values:e.delegateToCMSModel(_)}))},[e.saveEntity,c.getCollection]),deleteEntity:f.useCallback(({entity:i})=>e.deleteEntity({entity:i}),[e.deleteEntity]),checkUniqueField:f.useCallback((i,a,l,s)=>e.checkUniqueField(i,a,l,s),[e.checkUniqueField]),generateEntityId:f.useCallback(i=>e.generateEntityId(i),[e.generateEntityId]),countEntities:f.useCallback(async({path:i,collection:a,filter:l,order:s,orderBy:d})=>e.countEntities({path:i,filter:l,orderBy:d,order:s,isCollectionGroup:!!a.collectionGroup}),[e.countEntities]),isFilterCombinationValid:f.useCallback(({path:i,filterValues:a,sortBy:l})=>e.isFilterCombinationValid?e.isFilterCombinationValid({path:i,filterValues:a,sortBy:l}):!0,[e.isFilterCombinationValid])}}function yt(e,t,c,i,a){return e===void 0?a():Array.isArray(e)?e.map(l=>yt(l,t,c,i,a)):e instanceof $e?t(e):e instanceof Eo?c(e):e instanceof Date?i(e):e&&typeof e=="object"?Object.entries(e).map(([l,s])=>({[l]:yt(s,t,c,i,a)})).reduce((l,s)=>({...l,...s}),{}):e}function r3(e){const t=zt(),{children:c,entityLinkBuilder:i,userConfigPersistence:a,dateTimeFormat:l,locale:s,authController:d,storageSource:u,dataSourceDelegate:A,plugins:g,onAnalyticsEvent:h,propertyConfigs:_,entityViews:y,components:I,baseCollectionPath:b,basePath:p,collections:w,views:k}=e;ZH(s);const m=RH({basePath:p,baseCollectionPath:b,authController:d,collections:w,views:k,userConfigPersistence:a,dataSource:A,plugins:g}),v=o3({delegate:A,propertyConfigs:_,navigationController:m}),S=JH(),K=$H(m,S),C=g?.some(T=>T.loading)??!1,P=d.initialLoading||m.loading||C,E=f.useMemo(()=>({entityLinkBuilder:i,dateTimeFormat:l,locale:s,plugins:g,onAnalyticsEvent:h,entityViews:y??[],propertyConfigs:_??{},components:I}),[l,s,g,y,_,I]);return m.navigationLoadingError?n.jsx(gr,{maxWidth:"md",fullScreen:!0,children:n.jsx(me,{title:"Error loading navigation",error:m.navigationLoadingError})}):d.authError?n.jsx(gr,{maxWidth:"md",fullScreen:!0,children:n.jsx(me,{title:"Error loading auth",error:d.authError})}):n.jsx(zo.Provider,{value:t,children:n.jsx(Pr.Provider,{value:E,children:n.jsx(Uc.Provider,{value:a,children:n.jsx(Hc.Provider,{value:u,children:n.jsx(Vc.Provider,{value:v,children:n.jsx(Fr.Provider,{value:d,children:n.jsx(Gc.Provider,{value:S,children:n.jsx(zc.Provider,{value:K,children:n.jsx(Wc.Provider,{value:m,children:n.jsx(TH,{children:n.jsx(H5,{children:n.jsx(t3,{loading:P,children:c})})})})})})})})})})})})}function t3({loading:e,children:t}){const c=ee();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 Xi({hovered:e,drawerOpen:t,closeDrawer:c}){const i=ee(),a=Ae(),l=e&&!t,s=He();if(!a.topLevelNavigation)throw Error("Navigation not ready in Drawer");const{navigationEntries:d,groups:u}=a.topLevelNavigation,A=Object.values(d).filter(_=>!_.group),g=f.useCallback(_=>t?n.jsx("div",{className:"pt-8 pl-6 pr-8 pb-2 flex flex-row items-center",children:n.jsx(Z,{variant:"caption",color:"secondary",className:"font-medium flex-grow",children:_?_.toUpperCase():"Views".toUpperCase()})}):n.jsx("div",{className:"h-4"}),[t]),h=_=>{const y=_.type==="collection"?"drawer_navigate_to_collection":_.type==="view"?"drawer_navigate_to_view":"unmapped_event";i.onAnalyticsEvent?.(y,{url:_.url}),s||c()};return n.jsxs("div",{className:"flex-grow overflow-scroll no-scrollbar",children:[u.map(_=>n.jsxs(f.Fragment,{children:[g(_),Object.values(d).filter(y=>y.group===_).map((y,I)=>n.jsx(gt,{icon:Ro(y.collection??y.view),tooltipsOpen:l,drawerOpen:t,onClick:()=>h(y),url:y.url,name:y.name},`navigation_${I}`))]},`drawer_group_${_}`)),A.length>0&&g(),A.map((_,y)=>n.jsx(gt,{icon:Ro(_.collection??_.view),tooltipsOpen:l,onClick:()=>h(_),drawerOpen:t,url:_.url,name:_.name},`navigation_${y}`))]})}function gt({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(pe.NavLink,{onClick:l,className:({isActive:u})=>F("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:F(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 c3=280,i3=f.memo(function(t){const{children:c,name:i,logo:a,includeDrawer:l=!0,autoOpenDrawer:s,Drawer:d=Xi,drawerProps:u,FireCMSAppBarComponent:A=ta,fireCMSAppBarComponentProps:g}=t,h=He(),_=Ae(),[y,I]=f.useState(!1),[b,p]=f.useState(!1),w=f.useCallback(()=>p(!0),[]),k=f.useCallback(()=>p(!1),[]),m=f.useCallback(()=>{I(!1)},[]),v=y||!!(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:v,...g}),n.jsx(l3,{displayed:l,onMouseEnter:w,onMouseMove:w,onMouseLeave:k,open:v,logo:a,hovered:b,setDrawerOpen:I,children:l&&(_.loading?n.jsx(lo,{}):n.jsx(d,{hovered:b,drawerOpen:v,closeDrawer:m,...u}))}),n.jsxs("main",{className:"flex flex-col flex-grow overflow-auto",children:[n.jsx(a3,{}),n.jsx("div",{className:F(fe,"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(ae,{children:c})})]})]})},se),a3=()=>n.jsx("div",{className:"flex flex-col min-h-[68px]"});function l3(e){const t=Ae(),c=e.displayed?e.open?c3: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(R,{color:"inherit","aria-label":"Open menu",className:"sticky top-2 left-3 ",onClick:()=>e.setDrawerOpen(!0),size:"large",children:n.jsx(vr,{})})}),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:F("cursor-pointer"),children:n.jsx(ye,{title:"Home",sideOffset:20,side:"right",children:n.jsx(pe.Link,{to:t.basePath,children:e.logo?n.jsx("img",{src:e.logo,alt:"Logo",className:F("max-w-full max-h-full",e.open??"w-[160px] h-[160px]")}):n.jsx(ra,{})})})}),e.children]})]});return He()?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(dc,{})})})]}):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(vr,{})}),n.jsx(jt,{side:"left",transparent:!0,open:e.open,onOpenChange:e.setDrawerOpen,children:i})]}):null}const s3=f.memo(function({HomePage:t=na,customRoutes:c}){const i=pe.useLocation(),a=Ae();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(_=>{Array.isArray(_.path)?d.push(..._.path.map(y=>xi(y,_))):d.push(xi(_.path,_))});const A=[...a.collections??[]].sort((_,y)=>y.path.length-_.path.length).map(_=>{const y=a.buildUrlCollectionPath(_.id??_.path);return n.jsx(pe.Route,{path:y+"/*",element:n.jsx($o,{path:y,title:_.name,type:"collection",children:n.jsx(ut,{isSubCollection:!1,parentCollectionIds:[],fullPath:_.id??_.path,..._,Actions:Go(_.Actions)},`collection_view_${_.id??_.path}`)})},`navigation_${_.id??_.path}`)}),g=n.jsx(pe.Route,{path:"/",element:n.jsx($o,{path:a.homeUrl,title:"Home",type:"home",children:n.jsx(t,{})},"navigation_home")}),h=n.jsx(pe.Route,{path:"*",element:n.jsx(oa,{})});return n.jsxs(pe.Routes,{location:s,children:[A,d,g,h,c]})}),xi=(e,t)=>n.jsx(pe.Route,{path:e,element:n.jsx($o,{path:e,title:t.name,type:"view",children:t.view},`navigation_${e}`)},"navigation_view_"+e),$o=f.memo(function({children:t,title:c,path:i,type:a}){const l=Ht();return f.useEffect(()=>{l.set({breadcrumbs:[{title:c,url:i}]})},[i,c]),n.jsx(n.Fragment,{children:t})},se);function d3(){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 u3(){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::${zr(I)}`;return e[b]?e[b]:c(b)},[e,c]),a=f.useCallback((I,b)=>{const p=`collection_config::${zr(I)}`;localStorage.setItem(p,JSON.stringify(b)),t(w=>{const k=w[p],m=Ge(k??c(I),b);return Ge(w,m)})},[c]),[l,s]=f.useState([]),[d,u]=f.useState([]),[A,g]=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")):[]),g(localStorage.getItem("collapsed_groups")?JSON.parse(localStorage.getItem("collapsed_groups")):[])},[]);const h=f.useCallback(I=>{localStorage.setItem("recently_visited_paths",JSON.stringify(I)),s(I)},[]),_=f.useCallback(I=>{localStorage.setItem("favourite_paths",JSON.stringify(I)),u(I)},[]),y=f.useCallback(I=>{localStorage.setItem("collapsed_groups",JSON.stringify(I)),g(I)},[]);return{onCollectionModified:a,getCollectionConfig:i,recentlyVisitedPaths:l,setRecentlyVisitedPaths:h,favouritePaths:d,setFavouritePaths:_,collapsedGroups:A,setCollapsedGroups:y}}function Ri({onSingleEntitySelected:e,onMultipleEntitiesSelected:t,multiselect:c,collection:i,path:a,selectedEntityIds:l,description:s,forceFilter:d,maxSelection:u}){console.log("ReferenceSelectionInner");const A=Uo(),g=fn(),h=Ae(),_=ee(),y=h.resolveAliasesFrom(a),I=We(),[b,p]=f.useState([]),w=ft();f.useEffect(()=>{let B=!1;const D=l?.map(N=>N?.toString()).filter(Boolean);return D&&i?Promise.all(D.map(N=>I.fetchEntity({path:y,entityId:N,collection:i}))).then(N=>{if(!B){const W=N.filter(z=>z!==void 0);w.setSelectedEntities(W),p(W)}}):(w.setSelectedEntities([]),p([])),()=>{B=!0}},[I,y,l,i,w.setSelectedEntities]);const k=()=>{_.onAnalyticsEvent?.("reference_selection_clear",{path:y}),w.setSelectedEntities([]),!c&&e?e(null):t&&t([])},m=B=>{console.debug("ReferenceSelectionInner toggleEntitySelection",B);let D;const N=w.selectedEntities;if(_.onAnalyticsEvent?.("reference_selection_toggle",{path:y,entityId:B.id}),N){if(N.map(W=>W.id).indexOf(B.id)>-1)D=N.filter(W=>W.id!==B.id);else{if(u&&N.length>=u)return;D=[...N,B]}w.setSelectedEntities(D),t&&t(D)}},v=B=>{console.debug("ReferenceSelectionInner onEntityClick",B),!c&&e?(_.onAnalyticsEvent?.("reference_selected_single",{path:y,entityId:B.id}),e(B),A.close(!1)):m(B)},S=()=>{_.onAnalyticsEvent?.("reference_selection_new_entity",{path:y}),g.open({path:y,collection:i,updateUrl:!0,onUpdate:({entity:B})=>{p([B,...b]),v(B)},closeOnSave:!0})},K=({entity:B,size:D,width:N,frozen:W})=>{const z=w.selectedEntities,q=z&&z.map(ne=>ne.id).indexOf(B.id)>-1;return n.jsx(ct,{width:N,frozen:W,entity:B,size:D,isSelected:q,selectionEnabled:c,hideId:i?.hideIdFromCollection,fullPath:y,selectionController:w})},C=f.useCallback(B=>{B.stopPropagation(),A.close(!1)},[A]);if(!i)return n.jsx(me,{error:"Could not find collection with id "+i});const P=f.useMemo(()=>Te({collection:i,path:y,values:{},fields:_.propertyConfigs}),[i,_.propertyConfigs,y]),E=Li(P,!1),T=dt({fullPath:y,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(st,{displayedColumnIds:E,onEntityClick:v,tableController:T,tableRowActionsBuilder:K,title:n.jsx(Z,{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(f3,{collection:i,path:y,onNewClick:S,onClear:k})})}),n.jsxs(En,{translucent:!1,children:[s&&n.jsx(Z,{variant:"body2",className:"flex-grow text-left",children:s}),n.jsx(ie,{onClick:C,color:"primary",variant:"filled",children:"Done"})]})]})}function f3({collection:e,path:t,onClear:c,onNewClick:i}){const a=un(),l=He(),s=i?u=>{u.preventDefault(),i()}:void 0,d=Un(e,a,ze(t),null)&&s&&(l?n.jsxs(ie,{onClick:s,startIcon:n.jsx(sn,{}),variant:"outlined",color:"primary",children:["Add ",e.singularName??e.name]}):n.jsx(ie,{onClick:s,size:"medium",variant:"outlined",color:"primary",children:n.jsx(sn,{})}));return n.jsxs(n.Fragment,{children:[n.jsx(ie,{onClick:c,variant:"text",color:"primary",children:"Clear"}),d]})}function hn({title:e,children:t,invisible:c=!1,expanded:i,onExpandedChange:a,initiallyExpanded:l=!0,titleClassName:s,asField:d,className:u}){vn("ExpandablePanel",`
99
- .CollapsibleContent {
100
- overflow: hidden;
101
- }
102
- .CollapsibleContent[data-state='open'] {
103
- animation: slideDown 220ms ease-out
104
- }
105
- .CollapsibleContent[data-state='closed'] {
106
- animation: slideUp 220ms ease-out;
107
- }
108
-
109
- @keyframes slideDown {
110
- from {
111
- height: 0;
112
- }
113
- to {
114
- height: var(--radix-collapsible-content-height);
115
- }
116
- }
117
-
118
- @keyframes slideUp {
119
- from {
120
- height: var(--radix-collapsible-content-height);
121
- }
122
- to {
123
- height: 0;
124
- }
125
- }`);const[A,g]=f.useState(i!==void 0?i:l),[h,_]=f.useState(A);return f.useEffect(()=>{A?setTimeout(()=>{_(!0)},220):_(!1)},[A]),f.useEffect(()=>{i!==void 0&&g(i)},[i]),n.jsx(n.Fragment,{children:n.jsxs(qn.Root,{className:F(!c&&fe+" border","rounded-md"),open:A,onOpenChange:y=>{a?.(y),g(y)},children:[n.jsxs(qn.Trigger,{className:F(Ie,"rounded flex items-center justify-between w-full min-h-[52px]",c?"border-b px-2":"p-4",c&&fe,d&&Xe,s),children:[e,n.jsx(Co,{className:F("transition",A?"rotate-180":"")})]}),n.jsx(qn.Content,{className:F("CollapsibleContent"),style:{overflow:h?"visible":"hidden"},children:n.jsx("div",{className:u,children:t})})]})})}function _t({children:e,group:t}){const c=Mn();return n.jsx(hn,{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(Z,{color:"secondary",className:"font-medium ml-1",children:t?.toUpperCase()??"Views".toUpperCase()}),children:n.jsx("div",{className:"mb-8",children:e})})}function ea({view:e,path:t,collection:c,url:i,name:a,description:l,onClick:s}){const d=Mn(),u=Ro(c??e),A=pe.useNavigate(),g=ee(),h=(d?.favouritePaths??[]).includes(t);let _;if(g.plugins&&c){const y={path:t,collection:c,context:g};_=n.jsx(n.Fragment,{children:g.plugins.map((I,b)=>I.homePage?.CollectionActions?n.jsx(I.homePage.CollectionActions,{...y,extraProps:I.homePage.extraProps},`actions_${b}`):null)})}return n.jsx(rc,{className:F("h-full p-4 cursor-pointer min-h-[230px]"),onClick:()=>{s?.(),A(i),d&&d.setRecentlyVisitedPaths([t,...(d.recentlyVisitedPaths??[]).filter(y=>y!==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:y=>{y.preventDefault(),y.stopPropagation()},children:[_,d&&n.jsx(R,{onClick:y=>{y.preventDefault(),y.stopPropagation(),h?d.setFavouritePaths(d.favouritePaths.filter(I=>I!==t)):d.setFavouritePaths([...d.favouritePaths,t])},children:h?n.jsx(Sr,{size:18,className:"text-secondary"}):n.jsx(Br,{size:18,className:"text-gray-400 dark:text-gray-500"})})]})]}),n.jsx(Z,{gutterBottom:!0,variant:"h5",component:"h2",children:a}),l&&n.jsx(Z,{variant:"body2",color:"secondary",component:"div",children:n.jsx(Ao,{source:l})})]}),n.jsx("div",{style:{alignSelf:"flex-end"},children:n.jsx("div",{className:"p-4",children:n.jsx(ic,{className:"text-primary"})})})]})})}function A3({entry:e}){const t=pe.useNavigate(),c=Mn();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(Bo,{onClick:()=>t(e.url),icon:i?n.jsx(Sr,{onClick:a,size:18,className:"text-secondary"}):n.jsx(Br,{onClick:a,size:18,className:"text-gray-400 dark:text-gray-500"}),children:e.name},e.path)}function y3({hidden:e}){const t=Ae(),c=Mn();if(!c)return null;const i=(c?.favouritePaths??[]).map(a=>t.topLevelNavigation?.navigationEntries.find(l=>l.path===a)).filter(Boolean);return n.jsx(wo,{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(A3,{entry:a},a.path))})})}const ht={};function g3(){const e=pe.useLocation(),t=f.useRef(null),[c,i]=f.useState(0),[a,l]=f.useState("down"),s=f.useCallback(()=>{!t.current||!e.key||(ht[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||!ht[e.key]||t.current.scrollTo({top:ht[e.key],behavior:"auto"})},[e]),{containerRef:t,scroll:c,direction:a}}const zn=new rl.Search("url");zn.addIndex("name"),zn.addIndex("description"),zn.addIndex("group"),zn.addIndex("path");function na({additionalChildrenStart:e,additionalChildrenEnd:t}){const c=ee(),i=Ae();if(!i.topLevelNavigation)throw Error("Navigation not ready in FireCMSHomePage");const{containerRef:a,scroll:l,direction:s}=g3(),{navigationEntries:d,groups:u}=i.topLevelNavigation,[A,g]=f.useState(null),h=A?d.filter(w=>A.includes(w.url)):d;f.useEffect(()=>{zn.addDocuments(d)},[d]);const _=f.useCallback(w=>{if(!w||w==="")g(null);else{const k=zn.search(w);g(k.map(m=>m.url))}},[]),y=[...u];(h.filter(w=>!w.group).length>0||h.length===0)&&y.push(void 0);let I,b,p;if(c.plugins){const w={context:c};p=n.jsx(n.Fragment,{children:c.plugins.filter(k=>k.homePage?.includeSection).map((k,m)=>{const v=k.homePage.includeSection(w);return n.jsx(_t,{group:v.title,children:v.children},`plugin_section_${k.name}`)})}),I=n.jsx("div",{className:"flex flex-col gap-2",children:c.plugins.filter(k=>k.homePage?.additionalChildrenStart).map((k,m)=>n.jsx("div",{children:k.homePage.additionalChildrenStart},`plugin_children_start_${m}`))}),b=n.jsx("div",{className:"flex flex-col gap-2",children:c.plugins.filter(k=>k.homePage?.additionalChildrenEnd).map((k,m)=>n.jsx("div",{children:k.homePage.additionalChildrenEnd},`plugin_children_start_${m}`))})}return n.jsx("div",{id:"home_page",ref:a,className:"py-2 overflow-auto h-full w-full",children:n.jsxs(yr,{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(Yt,{onTextSearch:_,placeholder:"Search collections",large:!1,className:"w-full"})}),n.jsx(y3,{hidden:!!A}),e,I,y.map((w,k)=>{const m=[],v={group:w,context:c};c.plugins&&c.plugins.forEach(K=>{K.homePage?.AdditionalCards&&m.push(...Go(K.homePage?.AdditionalCards))});const S=h.filter(K=>K.group===w||!K.group&&w===void 0);return S.length===0&&m.length===0?null:n.jsx(_t,{group:w,children:n.jsxs("div",{className:"grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4",children:[S.map(K=>n.jsx("div",{className:"col-span-1",children:n.jsx(ea,{...K,onClick:()=>{const C=K.type==="collection"?"home_navigate_to_collection":K.type==="view"?"home_navigate_to_view":"unmapped_event";c.onAnalyticsEvent?.(C,{path:K.path})}})},`nav_${K.group}_${K.name}`)),m&&m.map((K,C)=>n.jsx("div",{children:n.jsx(K,{...v})},`nav_${w}_add_${C}`))]})},`plugin_section_${w}`)}),p,b,t]})})}function _3({propertyConfig: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:Ot(e,"medium")})}function h3({children:e,title:t,path:c}){const i=Ht();return f.useEffect(()=>{i.set({breadcrumbs:[{title:t,url:c}]})},[c,t]),n.jsx(n.Fragment,{children:e})}function oa(){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(Z,{variant:"h4",align:"center",gutterBottom:!0,children:"Page not found"}),n.jsx(Z,{align:"center",gutterBottom:!0,children:"This page does not exist or you may not have access to it"}),n.jsx(ie,{variant:"text",component:pe.Link,to:"/",children:"Back to home"})]})})}function I3({open:e,onAccept:t,onCancel:c,title:i,loading:a,body:l}){return n.jsxs(nr,{open:e,onOpenChange:s=>s?void 0:c(),children:[n.jsxs(or,{children:[n.jsx(Z,{variant:"h6",className:"mb-2",children:i}),l]}),n.jsxs(En,{children:[n.jsx(ie,{variant:"text",onClick:c,autoFocus:!0,children:"Cancel"}),n.jsx(Ma,{color:"primary",type:"submit",loading:a,onClick:t,children:"Ok"})]})]})}function ra({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 ta=function({title:t,endAdornment:c,startAdornment:i,drawerOpen:a,dropDownActions:l,includeDrawer:s,className:d,style:u,user:A}){const g=Ae(),h=un(),{mode:_,toggleMode:y}=zt(),I=He(),b=A??h.user;let p;if(b&&b.photoURL)p=n.jsx(fr,{src:b.photoURL});else if(b===void 0||h.initialLoading)p=n.jsx("div",{className:"p-1 flex justify-center",children:n.jsx(Oe,{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(fr,{children:w})}return n.jsx("div",{style:u,className:F("pr-2",{"ml-[17rem]":a&&I,"ml-16":s&&!(a&&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&&!(a&&I),"w-[calc(100%-17rem)]":s&&a&&I,"duration-150":a&&I,fixed:!0},d),children:n.jsxs("div",{className:"flex flex-row gap-2 px-4 h-full items-center",children:[i,g&&n.jsx("div",{className:"mr-8 hidden lg:block",children:n.jsx(pe.Link,{className:"visited:text-inherit visited:dark:text-inherit",to:g?.basePath??"/",children:n.jsx(Z,{variant:"subtitle1",noWrap:!0,className:"ml-2 !font-medium",children:t})})}),n.jsx("div",{className:"flex-grow"}),c&&n.jsx(ae,{children:c}),n.jsx(R,{color:"inherit","aria-label":"Open drawer",onClick:y,size:"large",children:_==="dark"?n.jsx(uc,{}):n.jsx(Cc,{})}),n.jsxs(jn,{trigger:p,children:[l,!l&&n.jsxs(Be,{onClick:h.signOut,children:[n.jsx(Ec,{}),"Log Out"]})]})]})})},b3=e=>e&&Array.isArray(e)&&e.length>0?e.map((t,c)=>t?{[Vr(t)+c]:so()}:{}).reduce((t,c)=>({...t,...c}),{}):{};function It({droppableId:e,addLabel:t,value:c,disabled:i=!1,buildEntry:a,size:l,onInternalIdAdded:s,includeAddButton:d,newDefaultEntry:u,onValueChange:A}){const g=c&&Array.isArray(c)&&c.length>0,h=f.useRef(b3(c)),[_,y]=f.useState(g?Object.values(h.current):[]);f.useEffect(()=>{if(g&&c&&c.length!==_.length){const k=c.map((m,v)=>{const S=Vr(m)+v;if(S in h.current)return h.current[S];{const K=so();return h.current[S]=K,K}});y(k)}},[g,_.length,c]);const I=k=>{if(k.preventDefault(),i)return;const m=so(),v=[..._,m];s&&s(m),y(v),A([...c??[],u])},b=k=>{const m=[..._];m.splice(k,1),y(m),A(c.filter((v,S)=>S!==k))},p=k=>{const m=so(),v=c[k],S=[..._.splice(0,k+1),m,..._.splice(k+1,_.length-k-1)];s&&s(m),y(S),A([...c.slice(0,k+1),v,...c.slice(k+1)])},w=k=>{if(!k.destination)return;const m=k.source.index,v=k.destination.index,S=[..._],K=S[m];S[m]=S[v],S[v]=K,y(S),A(p3(c,m,v))};return n.jsx(Pn.DragDropContext,{onDragEnd:w,children:n.jsx(Pn.Droppable,{droppableId:e,renderClone:(k,m,v)=>{const S=v.source.index,K=_[S];return n.jsx(bt,{provided:k,internalId:K,index:S,size:l,disabled:i,buildEntry:a,remove:b,copy:p,isDragging:m.isDragging})},children:(k,m)=>n.jsxs("div",{...k.droppableProps,ref:k.innerRef,children:[g&&_.map((v,S)=>n.jsx(Pn.Draggable,{draggableId:`array_field_${v}`,isDragDisabled:i,index:S,children:(K,C)=>n.jsx(bt,{provided:K,internalId:v,index:S,size:l,disabled:i,buildEntry:a,remove:b,copy:p,isDragging:C.isDragging})},`array_field_${v}`)),k.placeholder,d&&n.jsx("div",{className:"py-4 justify-center text-left",children:n.jsx(ie,{variant:l==="small"?"text":"outlined",size:l==="small"?"small":"medium",color:"primary",disabled:i,startIcon:n.jsx(sn,{}),onClick:I,children:t??"Add"})})]})})})}function bt({provided:e,index:t,internalId:c,size:i,disabled:a,buildEntry:l,remove:s,copy:d,isDragging:u}){const[A,g]=ar(),h=i!=="small"&&g.height===0,_=i!=="small"&&g.height<100,[y,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||y?Ye:""} 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(ca,{direction:i==="small"?"row":"column",disabled:a,remove:s,index:t,provided:e,measuring:h,contentOverflow:_,copy:d})]})})}function ca({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(ye,{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(ye,{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(eo,{size:"small"})})}),n.jsx(ye,{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(xn,{size:"small"})})})]}),!d&&s&&n.jsx(n.Fragment,{children:n.jsxs(jn,{trigger:n.jsx(R,{size:"small",children:n.jsx(Cr,{size:"small"})}),children:[n.jsxs(Be,{dense:!0,onClick:()=>c(i),children:[n.jsx(eo,{size:"small"}),"Remove"]}),n.jsxs(Be,{dense:!0,onClick:()=>l(i),children:[n.jsx(xn,{size:"small"}),"Copy"]})]})})]})}function p3(e,t,c){const i=Array.from(e),[a]=i.splice(t,1);return i.splice(c,0,a),i}function so(){return Math.floor(Math.random()*Math.floor(Number.MAX_SAFE_INTEGER))}function qo({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(It,{droppableId:e,addLabel:t,value:c,disabled:i,buildEntry:a,size:l?"small":"medium",onInternalIdAdded:s,includeAddButton:d,newDefaultEntry:u,onValueChange:g=>A(e,g)})}function Ke({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("span",{className:`font-medium text-${c?"base":"sm"} origin-top-left transform ${c?"translate-x-2 scale-75":""}`,children:(t??"")+(a?" *":"")})]})}function w3(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(tn,{...e,onChange:l,value:c})}function k3({field:e,form:t,label:c,tooltip:i,disabled:a,size:l="small",allowIndeterminate:s}){const d=n.jsx(Dn,{label:c,size:l,position:"start",value:e.value,disabled:a,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:a}){const l=c.description||c.longDescription;if(!(t&&e)&&(!i||!l))return null;if(t&&e)return n.jsx(Z,{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(Z,{variant:"caption",color:a?"disabled":"secondary",className:"flex-grow",children:s||c.description}),c.longDescription&&n.jsx(ye,{title:c.longDescription,side:"bottom",children:n.jsx(R,{size:"small",className:"self-start",children:n.jsx(vc,{color:"disabled",size:"small"})})})]})}function pt({propertyKey:e,value:t,setValue:c,error:i,showError:a,disabled:l,autoFocus:s,touched:d,property:u,includeDescription:A}){const g=u.enumValues;Le({property:u,value:t,setValue:c});const h=f.useCallback(_=>{_.stopPropagation(),_.preventDefault(),c(null)},[c]);return n.jsxs(n.Fragment,{children:[n.jsx(xe,{value:t?t.toString():"",disabled:l,position:"item-aligned",inputClassName:F("w-full"),label:n.jsx(Ke,{icon:ve(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(dn,{})}),onValueChange:_=>{const y=_?u.dataType==="number"?parseFloat(_):_:null;return c(y)},renderValue:_=>n.jsx(Fe,{enumKey:_,enumValues:g,size:"medium"}),children:g&&g.map(_=>n.jsx(Re,{value:String(_.id),children:n.jsx(Fe,{enumKey:String(_.id),enumValues:g,size:"medium"})},_.id))}),n.jsx(Se,{includeDescription:A,showError:a,error:i,disabled:l,property:u})]})}function ia({children:e,error:t}){return n.jsx("div",{className:F("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})}const wt=le.createContext({});function kt({value:e,open:t,onMultiValueChange:c,size:i="medium",label:a,disabled:l,renderValue:s,renderValues:d,includeFocusOutline:u=!0,containerClassName:A,className:g,children:h,error:_}){const y=le.useRef(null),I=le.useRef(null),b=le.useRef(null);ko(b,()=>w(!1));const[p,w]=le.useState(!1);f.useEffect(()=>{w(t??!1)},[t]);const k=le.useCallback(B=>{Array.isArray(e)&&e.includes(B)?c?.(e.filter(D=>D!==B)):c?.([...e??[],B])},[e,c]),[m,v]=le.useState(""),[S,K]=le.useState(null),C=le.useCallback(B=>{const D=I.current;if(D){if((B.key==="Delete"||B.key==="Backspace")&&D.value===""){const N=[...e??[]];N.pop(),c?.(N)}B.key==="Escape"&&(D.blur(),w(!1),B.stopPropagation())}},[c,e]),P=le.useCallback(()=>{K(y.current?.getBoundingClientRect()??null),w(!0)},[]),E=S??y.current?.getBoundingClientRect(),T=window.innerHeight-(E?.top??0)-(E?.height??0)-16;return n.jsxs(n.Fragment,{children:[typeof a=="string"?n.jsx(ia,{error:_,children:a}):a,n.jsxs(po.Command,{onKeyDown:C,onClick:()=>{I.current?.focus(),P()},className:F("relative overflow-visible bg-transparent",A),children:[n.jsxs("div",{ref:y,className:F("flex flex-row",i==="small"?"min-h-[42px]":"min-h-[64px]","select-none rounded-md text-sm",Xe,l?nn:Ye,"relative flex items-center","p-4",_?"text-red-500 dark:text-red-600":"focus:text-text-primary dark:focus:text-text-primary-dark",_?"border border-red-500 dark:border-red-600":"",u?Ie:"",g),children:[n.jsxs("div",{className:F("flex-grow flex gap-1.5 flex-wrap items-center"),children:[s&&(e??[]).map((B,D)=>s(B,D)),d&&d(e??[]),n.jsx(po.Command.Input,{ref:I,value:m,onValueChange:v,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(Co,{size:"small",className:F("transition ",p?"rotate-180":"")})})]}),n.jsx(Je.Root,{open:p,onOpenChange:w,children:n.jsx(Je.Portal,{children:n.jsx(wt.Provider,{value:{fieldValue:e,setInputValue:v,onValueChangeInternal:k},children:n.jsx("div",{ref:b,className:"z-50 absolute overflow-auto outline-none",style:{pointerEvents:p?"auto":"none",top:(E?.top??0)+(E?.height??0),left:E?.left,width:E?.width,maxHeight:T},children:n.jsx(po.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 mt({children:e,value:t,className:c}){const i=le.useContext(wt);if(!i)throw new Error("MultiSelectItem must be used inside a MultiSelect");const{fieldValue:a,setInputValue:l,onValueChangeInternal:s}=i;return n.jsx(po.Command.Item,{onMouseDown:d=>{d.preventDefault(),d.stopPropagation()},onSelect:d=>{l(""),s(t)},className:F((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 vt({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 g=yn(A.enumValues);if(!g)throw console.error(s),Error("Field misconfiguration: array field of type string or number needs to have enumValues");Le({property:s,value:t,setValue:c});const h=!!t&&Array.isArray(t),_=f.useCallback((y,I)=>{const b=y!==void 0?To(g,y):void 0;return n.jsxs(Fe,{enumKey:y,enumValues:g,size:"medium",children:[b?.label??y,!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!==y))},children:n.jsx(wr,{size:"smallest"})})]},y)},[g,c,t]);return n.jsxs("div",{className:"mt-0.5 ml-0.5 mt-2",children:[n.jsx(kt,{value:h?t.map(y=>y.toString()):[],disabled:l,label:n.jsx(Ke,{icon:ve(s,"small"),required:s.validation?.required,title:s.name,className:"text-text-secondary dark:text-text-secondary-dark ml-3.5"}),renderValue:f.useCallback(y=>_(y,!1),[_]),onMultiValueChange:y=>{let I;return A&&A?.dataType==="number"?I=y?y.map(b=>parseFloat(b)):[]:I=y,c(I)},children:g.map(y=>String(y.id)).map(y=>n.jsx(mt,{value:y,children:_(y,!0)},y))}),n.jsx(Se,{includeDescription:d,showError:a,error:i,disabled:l,property:s})]})}function aa({propertyKey:e,value:t,error:c,showError:i,disabled:a,isSubmitting:l,tableMode:s,property:d,includeDescription:u,setValue:A,setFieldValue:g}){const h=d.of;if(h.dataType!=="reference")throw Error("ArrayOfReferencesField expected a property containing references");const _=d.expanded===void 0?!0:d.expanded,[y,I]=f.useState(!1),b=t&&Array.isArray(t)?t.map(P=>P.id):[];Le({property:d,value:t,setValue:A});const p=Ae(),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=>{console.debug("onMultipleEntitiesSelected",P),A(P.map(E=>Cn(E)))},[A]),m=fo({multiselect:!0,path:h.path,collection:w,onMultipleEntitiesSelected:k,selectedEntityIds:b,forceFilter:h.forceFilter}),v=f.useCallback(P=>{P.preventDefault(),m.open()},[m]),S=f.useCallback((P,E)=>{const T=t&&t.length>P?t[P]:void 0;return T?n.jsx("div",{onMouseEnter:()=>I(!0),onMouseMove:()=>I(!0),onMouseLeave:()=>I(!1),children:n.jsx(rn,{disabled:!h.path,previewProperties:h.previewProperties,size:"medium",onClick:v,reference:T,onHover:y})}):n.jsx("div",{children:"Internal ERROR"})},[h.path,h.previewProperties,y,t]),K=n.jsx(Ke,{icon:ve(d,"small"),required:d.validation?.required,title:d.name,className:"text-text-secondary dark:text-text-secondary-dark"}),C=n.jsxs(n.Fragment,{children:[!w&&n.jsx(me,{error:"The specified collection does not exist. Check console"}),w&&n.jsxs(n.Fragment,{children:[n.jsx(qo,{value:t,addLabel:d.name?"Add reference to "+d.name:"Add reference",name:e,buildEntry:S,disabled:l,setFieldValue:g,newDefaultEntry:d.of.defaultValue}),n.jsxs(ie,{className:"my-4 justify-center text-left",variant:"outlined",color:"primary",disabled:l,onClick:v,children:["Edit ",d.name]})]})]});return n.jsxs(n.Fragment,{children:[!s&&n.jsx(hn,{className:"px-2 md:px-4 pb-2 md:pb-4 pt-1 md:pt-2",initiallyExpanded:_,title:K,children:C}),s&&C,n.jsx(Se,{includeDescription:u,showError:i,error:c,disabled:a,property:d})]})}function la({name:e,property:t,value:c,entity:i,onRemove:a,disabled:l,size:s}){return n.jsxs("div",{className:F(je,"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(ye,{title:"Remove",children:n.jsx(R,{size:"small",onClick:d=>{d.stopPropagation(),a(c)},children:n.jsx(eo,{size:"small"})})})}),c&&n.jsx(ae,{children:n.jsx(Ce,{propertyKey:e,value:c,property:t,entity:i,size:s})})]})}const m3="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",v3="border-dotted-gray",C3="hover:bg-field-hover dark:hover:bg-field-hover-dark",K3="pt-0 border-2 border-solid",S3="transition-colors duration-200 ease-[cubic-bezier(0,0,0.2,1)] border-2 border-solid border-green-500",B3="transition-colors duration-200 ease-[cubic-bezier(0,0,0.2,1)] border-2 border-solid border-red-500";function Ct({propertyKey:e,value:t,setValue:c,error:i,showError:a,autoFocus:l,tableMode:s,property:d,includeDescription:u,context:A,isSubmitting:g}){if(!A.entityId)throw new Error("StorageUploadFieldBinding: Entity id is null");const h=Tn(),_=On(d)||!!d.disabled||g,{internalValue:y,setInternalValue:I,onFilesAdded:b,storage:p,onFileUploadComplete:w,storagePathBuilder:k,multipleFilesSupported:m}=mi({entityValues:A.values,entityId:A.entityId,path:A.path,property:d,propertyKey:e,value:t,storageSource:h,disabled:_,onChange:c});Le({property:d,value:t,setValue:c});const v={id:A.entityId,values:A.values,path:A.path};return n.jsxs(n.Fragment,{children:[!s&&n.jsx(Ke,{icon:ve(d,"small"),required:d.validation?.required,title:d.name,className:"text-text-secondary dark:text-text-secondary-dark ml-3.5"}),n.jsx(F3,{value:y,name:e,disabled:_,autoFocus:l,property:d,onChange:c,setInternalValue:I,onFilesAdded:b,entity:v,onFileUploadComplete:w,storagePathBuilder:k,storage:p,multipleFilesSupported:m}),n.jsx(Se,{includeDescription:u,showError:a,error:i,disabled:_,property:d})]})}function E3({storage:e,disabled:t,isDraggingOver:c,onFilesAdded:i,multipleFilesSupported:a,droppableProvided:l,autoFocus:s,internalValue:d,property:u,entity:A,onClear:g,metadata:h,storagePathBuilder:_,onFileUploadComplete:y,size:I,name:b,helpText:p}){const w=An(),{getRootProps:k,getInputProps:m,isDragActive:v,isDragAccept:S,isDragReject:K}=ir.useDropzone({accept:e.acceptedFiles?e.acceptedFiles.map(C=>({[C]:[]})).reduce((C,P)=>({...C,...P}),{}):void 0,disabled:t||c,noDragEventsBubbling:!0,maxSize:e.maxSize,onDrop:i,onDropRejected:(C,P)=>{for(const E of C)for(const T of E.errors)w.open({type:"error",message:`Error uploading file: File is larger than ${e.maxSize} bytes`})}});return n.jsxs("div",{...k(),className:F(Xe,t?nn:Ye,m3,a&&d.length?"":"flex",Ie,{[C3]:!v,[K3]:v,[B3]:K,[S3]:S,[v3]:t}),children:[n.jsxs("div",{...l.droppableProps,ref:l.innerRef,className:F("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,...m()}),d.map((C,P)=>{let E;return C.storagePathOrDownloadUrl?E=n.jsx(la,{name:`storage_preview_${C.storagePathOrDownloadUrl}`,property:u,disabled:t,entity:A,value:C.storagePathOrDownloadUrl,onRemove:g,size:C.size}):C.file&&(E=n.jsx(Si,{entry:C,metadata:h,storagePath:_(C.file),onFileUploadComplete:y,imageSize:I==="medium"?220:118,simple:!1})),n.jsx(Pn.Draggable,{draggableId:`array_field_${b}_${C.id}`,index:P,children:(T,B)=>n.jsx("div",{tabIndex:-1,ref:T.innerRef,...T.draggableProps,...T.dragHandleProps,className:F(Ie,"rounded-md"),style:{...T.draggableProps.style},children:E})},`array_field_${b}_${C.id}`)}),l.placeholder]}),n.jsx("div",{className:"flex-grow min-h-[38px] box-border m-2 text-center",children:n.jsx(Z,{align:"center",variant:"label",children:p})})]})}function F3({property:e,name:t,value:c,setInternalValue:i,onChange:a,multipleFilesSupported:l,onFileUploadComplete:s,disabled:d,onFilesAdded:u,autoFocus:A,storage:g,entity:h,storagePathBuilder:_}){if(l){const v=e;if(v.of){if(Array.isArray(v.of)||v.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=g?.metadata,I=l?"small":"medium",b=f.useCallback((v,S)=>{if(!l)return;const K=[...c],C=K[v];K.splice(v,1),K.splice(S,0,C),i(K);const P=K.filter(E=>!!E.storagePathOrDownloadUrl).map(E=>E.storagePathOrDownloadUrl);a(P)},[l,a,i,c]),p=f.useCallback(v=>{v.destination&&b(v.source.index,v.destination.index)},[b]),w=f.useCallback(v=>{if(l){const S=c.filter(K=>K.storagePathOrDownloadUrl!==v);a(S.filter(K=>!!K.storagePathOrDownloadUrl).map(K=>K.storagePathOrDownloadUrl)),i(S)}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",m=l?e.of:e;return n.jsx(Pn.DragDropContext,{onDragEnd:p,children:n.jsx(Pn.Droppable,{droppableId:`droppable_${t}`,direction:"horizontal",renderClone:(v,S,K)=>{const C=c[K.source.index];return n.jsx("div",{ref:v.innerRef,...v.draggableProps,...v.dragHandleProps,style:v.draggableProps.style,className:"rounded",children:n.jsx(la,{name:`storage_preview_${C.storagePathOrDownloadUrl}`,property:m,disabled:!0,entity:h,value:C.storagePathOrDownloadUrl,onRemove:w,size:C.size})})},children:(v,S)=>n.jsx(E3,{storage:g,disabled:d,isDraggingOver:S.isDraggingOver,droppableProvided:v,onFilesAdded:u,multipleFilesSupported:l,autoFocus:A,internalValue:c,property:m,entity:h,onClear:w,metadata:y,storagePathBuilder:_,onFileUploadComplete:s,size:I,name:t,helpText:k})})})}function Hn({propertyKey:e,value:t,setValue:c,error:i,showError:a,disabled:l,autoFocus:s,property:d,includeDescription:u}){let A,g;d.dataType==="string"&&(A=d.multiline,g=d.url),Le({property:d,value:t,setValue:c});const h=f.useCallback(b=>{b.stopPropagation(),b.preventDefault(),c(null)},[c]),_=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)},y=!!A,I=d.dataType==="number"?"number":void 0;return n.jsxs(n.Fragment,{children:[n.jsx(tn,{value:t,onChange:_,autoFocus:s,label:n.jsx(Ke,{icon:ve(d,"small"),required:d.validation?.required,title:d.name}),type:I,multiline:y,disabled:l,endAdornment:d.clearable&&n.jsx(R,{onClick:h,children:n.jsx(dn,{})}),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}),g&&n.jsx(wo,{className:"mt-1 ml-1",in:!!t,children:n.jsx(Ce,{value:t,property:d,size:"medium"})})]})}const sa=f.forwardRef(function({propertyKey:t,value:c,setValue:i,error:a,showError:l,autoFocus:s,disabled:d,touched:u,property:A,includeDescription:g},h){return Le({property:A,value:c,setValue:i}),n.jsxs(n.Fragment,{children:[n.jsx(Dn,{value:c,onValueChange:_=>i(_),error:l,label:n.jsx(Ke,{icon:ve(A,"small"),required:A.validation?.required,title:A.name}),disabled:d,autoFocus:s,size:"medium"}),n.jsx(Se,{includeDescription:g,showError:l,error:a,disabled:d,property:A})]})});function da({propertyKey:e,value:t,setValue:c,autoFocus:i,error:a,showError:l,disabled:s,touched:d,property:u,includeDescription:A}){const g=t||null;return Le({property:u,value:t,setValue:c}),n.jsxs(n.Fragment,{children:[n.jsx(Yn,{value:g,onChange:h=>c(h),size:"medium",mode:u.mode,clearable:u.clearable,label:n.jsx(Ke,{icon:ve(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})]})}function Kt({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(Ke,{icon:ve(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:F(je,"min-h-14 p-4 md:p-6 overflow-x-scroll no-scrollbar"),children:n.jsx(ae,{children:n.jsx(Ce,{propertyKey:e,value:t,property:l,entity:u,size:"medium"})})}),n.jsx(Se,{includeDescription:s,showError:i,error:c,property:l})]})}function ua(e){return typeof e.property.path!="string"?n.jsx(Kt,{...e}):n.jsx(P3,{...e})}function P3({value:e,setValue:t,error:c,showError:i,isSubmitting:a,disabled:l,touched:s,autoFocus:d,property:u,includeDescription:A,context:g}){if(!u.path)throw new Error("Property path is required for ReferenceFieldBinding");Le({property:u,value:e,setValue:t});const h=e&&e instanceof $e,_=Ae(),y=f.useMemo(()=>u.path?_.getCollection(u.path):void 0,[u.path]);if(!y)throw Error(`Couldn't find the corresponding collection for the path: ${u.path}`);const I=f.useCallback(w=>{t(w?Cn(w):null)},[t]),b=fo({multiselect:!1,path:u.path,collection:y,onSingleEntitySelected:I,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(Ke,{icon:ve(u,"small"),required:u.validation?.required,title:u.name,className:"text-text-secondary dark:text-text-secondary-dark ml-3.5"}),!y&&n.jsx(me,{error:"The specified collection does not exist. Check console"}),y&&n.jsxs(n.Fragment,{children:[e&&n.jsx(rn,{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(ie,{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 Sn=f.memo(D3,(e,t)=>{if(e.propertyKey!==t.propertyKey)return!1;const c=Ee(e.property)||e.property.fromBuilder,i=Ee(t.property)||t.property.fromBuilder;return!((c===i||se(e.property,t.property))&&e.disabled===t.disabled)||Jo(t.property),!1});function D3({propertyKey:e,property:t,context:c,includeDescription:i,underlyingValueHasChanged:a,disabled:l,tableMode:s,partOfArray:d,partOfBlock:u,autoFocus:A}){const g=ee(),_=Jo(t,g.plugins)?Pe.Field:Pe.FastField;return n.jsx(_,{name:e,children:y=>{let I;const b=Me({propertyKey:e,propertyValue:y.field.value,propertyOrBuilder:t,values:y.form.values,path:c.path,entityId:c.entityId,fields:g.propertyConfigs});if(b===null||ro(b))return n.jsx(n.Fragment,{});if(On(b))I=Kt;else if(b.Field)typeof b.Field=="function"&&(I=b.Field);else{const w=Zo(b,g.propertyConfigs);if(!w)throw console.log("INTERNAL: Could not find field config for property",{propertyKey:e,resolvedProperty:b,fields:g.propertyConfigs,propertyConfig:w}),new Error(`INTERNAL: Could not find field config for property ${e}`);I=Me({propertyOrBuilder:w.property,propertyValue:y.field.value,values:y.form.values,path:c.path,entityId:c.entityId,fields:g.propertyConfigs}).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:a,context:c,disabled:l,tableMode:s,partOfArray:d,partOfBlock:u,autoFocus:A};return n.jsx(N3,{Component:I,componentProps:p,fieldProps:y})}})}function N3({Component:e,componentProps:{propertyKey:t,property:c,includeDescription:i,underlyingValueHasChanged:a,tableMode:l,partOfArray:s,partOfBlock:d,autoFocus:u,context:A,disabled:g},fieldProps:h}){const{plugins:_}=ee(),y=c.customProps,I=h.field.value,b=h.meta.initialValue,p=Pe.getIn(h.form.errors,t),w=Pe.getIn(h.form.touched,t),k=p&&(h.form.submitCount>0||c.validation?.unique)&&(!Array.isArray(p)||!!p.filter(E=>!!E).length),v=T3(A.path,A.collection,t,c,e,_)??e,S=h.form.isSubmitting,K=f.useCallback((E,T)=>{h.form.setFieldTouched(t,!0,!1),h.form.setFieldValue(t,E,T)},[]),C=f.useCallback((E,T,B)=>{h.form.setFieldTouched(t,!0,!1),h.form.setFieldValue(E,T,B)},[]),P={propertyKey:t,value:I,initialValue:b,setValue:K,setFieldValue:C,error:p,touched:w,showError:k,isSubmitting:S,includeDescription:i??!0,property:c,disabled:g??!1,underlyingValueHasChanged:a??!1,tableMode:l??!1,partOfArray:s??!1,partOfBlock:d??!1,autoFocus:u??!1,customProps:y,context:A};return n.jsxs(ae,{children:[n.jsx(v,{...P}),a&&!S&&n.jsx(Z,{variant:"caption",className:"ml-3.5",children:"This value has been updated elsewhere"})]})}const Jo=(e,t)=>{if(t?.some(a=>a.form?.fieldBuilder)||Ee(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=>Jo(a,t)):c.dataType==="array"&&"resolvedProperties"in c?i||c.resolvedProperties?.some(a=>a&&Jo(a,t)):i};function T3(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 g={fieldConfigId:A,propertyKey:c,property:i,Field:a,plugin:u,path:e,collection:t},h=u.form?.fieldBuilderEnabled?.(g);(h===void 0||h)&&(d=u.form.fieldBuilder(g)||d)}A||console.warn("INTERNAL: Field id not found for property",i)}),d})()).current}function fa({propertyKey:e,value:t,showError:c,error:i,disabled:a,property:l,setValue:s,partOfBlock:d,tableMode:u,includeDescription:A,underlyingValueHasChanged:g,autoFocus:h,context:_}){const y=l.pickOnlySomeKeys||!1,I=(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;y?t?b=Xc(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,m])=>!ro(m)).map(([k,m],v)=>{const S={propertyKey:`${e}.${k}`,disabled:a,property:m,includeDescription:A,underlyingValueHasChanged:g,context:_,tableMode:!1,partOfArray:!1,partOfBlock:!1,autoFocus:h&&v===0};return n.jsx("div",{children:n.jsx(Sn,{...S})},`map-${e}-${v}`)})})}),w=n.jsx(Ke,{icon:ve(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(hn,{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:a,property:l})]})}function Aa({propertyKey:e,value:t,showError:c,error:i,disabled:a,property:l,setValue:s,tableMode:d,includeDescription:u,underlyingValueHasChanged:A,autoFocus:g,context:h}){const _=(l.expanded===void 0?!0:l.expanded)||g;if(!l.keyValue)throw Error(`Your property ${e} needs to have the 'keyValue' prop in order to use this field binding`);const y=n.jsx(St,{value:t,setValue:s,disabled:a,fieldName:l.name??e}),I=n.jsx(Ke,{icon:ve(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(hn,{initiallyExpanded:_,title:I,className:"px-2 md:px-4 pb-2 md:pb-4 pt-1 md:pt-2",children:y}),d&&y,n.jsx(Se,{includeDescription:u,showError:c,error:i,disabled:a,property:l})]})}function St({value:e,setValue:t,fieldName:c,disabled:i}){const[a,l]=f.useState(Object.keys(e??{}).map(u=>[Bt(),{key:u,dataType:Et(e?.[u])??"string"}]));f.useEffect(()=>{const u=a.map(([y,{key:I}])=>I),A=Object.entries(e??{}).filter(([y,I])=>I!==void 0).map(([y])=>y),g=A.filter(y=>!u.includes(y)),h=u.filter(y=>!A.includes(y)),_=[...a];g.forEach(y=>{_.push([Bt(),{key:y,dataType:Et(e?.[y])??"string"}])}),h.forEach(y=>{const I=_.findIndex(([b,{key:p}])=>p===y);_.splice(I,1)}),l(_)},[e]);const s=f.useRef(e??{}),d=(u,A)=>{if(!u){console.warn("No key selected for data type update");return}l(a.map(g=>g[0]===u?[g[0],{key:g[1].key,dataType:A}]:g)),t({...e??{},[a.find(g=>g[0]===u)?.[1].key??""]:Tr(A)})};return n.jsxs("div",{className:"py-1 flex flex-col gap-1",children:[a.map(([u,{key:A,dataType:g}],h)=>{const _=A?e?.[A]:"",y=I=>{if(l(a.map(p=>p[0]===u?[u,{key:I??"",dataType:p[1].dataType}]:p)),typeof e=="object"&&I in e)return;const b={...e??{}};typeof s.current=="object"&&A in s.current?b[A]=void 0:delete b[A],t({...b,[I??""]:_})};return n.jsx(M3,{rowId:u,fieldKey:A,value:e??{},onDeleteClick:()=>{const I={...e??{}};s.current&&A in s.current?I[A]=void 0:delete I[A],l(a.filter(b=>b[0]!==u)),t({...I})},onFieldKeyChange:y,setValue:t,entryValue:_,dataType:g,disabled:i,updateDataType:d},u)}),n.jsx(ie,{variant:"text",size:"small",color:"primary",className:"w-full",disabled:i,startIcon:n.jsx(sn,{}),onClick:u=>{u.preventDefault(),t({...e??{},"":null}),l([...a,[Bt(),{key:"",dataType:"string"}]])},children:c?`Add to ${c}`:"Add"})]})}function M3({rowId:e,fieldKey:t,value:c,onFieldKeyChange:i,onDeleteClick:a,setValue:l,entryValue:s,dataType:d,updateDataType:u,disabled:A}){function g(_,y,I){return I==="string"||I==="number"?n.jsx(tn,{placeholder:"value",value:_,type:I==="number"?"number":"text",size:"small",disabled:A||!y,onChange:b=>{if(I==="number"){const p=b.target.value?parseFloat(b.target.value):void 0;p&&isNaN(p)?l({...c,[y]:null}):p!=null?l({...c,[y]:p}):l({...c,[y]:null})}else l({...c,[y]:b.target.value})}},I):I==="date"?n.jsx(Yn,{value:_,size:"small",disabled:A||!y,onChange:b=>{l({...c,[y]:b})}}):I==="boolean"?n.jsx(Dn,{value:_,size:"small",position:"start",disabled:A||!y,onValueChange:b=>{l({...c,[y]:b})}}):I==="array"?n.jsx("div",{className:F(fe,"ml-2 pl-2 border-l border-solid"),children:n.jsx(It,{value:_,newDefaultEntry:"",droppableId:e.toString(),addLabel:y?`Add to ${y}`:"Add",size:"small",disabled:A||!y,includeAddButton:!0,onValueChange:b=>{l({...c,[y]:b})},buildEntry:(b,p)=>n.jsx(O3,{index:b,id:p,value:_[b],disabled:A||!y,setValue:w=>{const k=[..._];k[b]=w,l({...c,[y]:k})}})})}):I==="map"?n.jsx("div",{className:F(fe,"ml-2 pl-2 border-l border-solid"),children:n.jsx(St,{value:_,fieldName:y,setValue:b=>{l({...c,[y]:b})}})}):n.jsx(Z,{variant:"caption",children:`Data type ${I} not supported yet`})}function h(_){u(e,_)}return n.jsxs(n.Fragment,{children:[n.jsxs(Z,{component:"div",className:"font-mono flex flex-row gap-1",children:[n.jsx("div",{className:"w-[200px] max-w-[25%]",children:n.jsx(tn,{value:t,placeholder:"key",disabled:A||s!=null&&s!=="",size:"small",onChange:_=>{i(_.target.value)}})}),n.jsx("div",{className:"flex-grow",children:d!=="map"&&d!=="array"&&g(s,t,d)}),n.jsxs(jn,{trigger:n.jsx(R,{size:"small",className:"h-7 w-7",children:n.jsx(Ir,{})}),children:[n.jsx(Be,{dense:!0,onClick:()=>h("string"),children:"string"}),n.jsx(Be,{dense:!0,onClick:()=>h("number"),children:"number"}),n.jsx(Be,{dense:!0,onClick:()=>h("boolean"),children:"boolean"}),n.jsx(Be,{dense:!0,onClick:()=>h("date"),children:"date"}),n.jsx(Be,{dense:!0,onClick:()=>h("map"),children:"map"}),n.jsx(Be,{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(eo,{size:"small"})})]},e.toString()),(d==="map"||d==="array")&&g(s,t,d)]})}function O3({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(tn,{value:u,type:A==="number"?"number":"text",size:"small",onChange:g=>{if(A==="number"){const h=g.target.value?parseFloat(g.target.value):void 0;h&&isNaN(h)?i(null):h!=null?i(h):i(null)}else i(g.target.value)}}):A==="date"?n.jsx(Yn,{value:u,size:"small",onChange:g=>{i(g)}}):A==="boolean"?n.jsx(Dn,{value:u,size:"small",position:"start",onValueChange:g=>{i(g)}}):A==="array"?n.jsx(Z,{variant:"caption",children:"Arrays of arrays are not supported."}):A==="map"?n.jsx("div",{className:F(fe,"ml-2 pl-2 border-l border-solid"),children:n.jsx(St,{value:u,setValue:g=>{i(g)}})}):n.jsx(Z,{variant:"caption",children:`Data type ${A} not supported yet`})}return n.jsxs(n.Fragment,{children:[n.jsxs(Z,{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(jn,{trigger:n.jsx(R,{size:"small",className:"h-7 w-7",children:n.jsx(Ir,{})}),children:[n.jsx(Be,{dense:!0,onClick:()=>s("string"),children:"string"}),n.jsx(Be,{dense:!0,onClick:()=>s("number"),children:"number"}),n.jsx(Be,{dense:!0,onClick:()=>s("boolean"),children:"boolean"}),n.jsx(Be,{dense:!0,onClick:()=>s("map"),children:"map"}),n.jsx(Be,{dense:!0,onClick:()=>s("date"),children:"date"})]})]},e.toString()),a==="map"&&d(c,a)]})}function Bt(){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 $e)return"reference";if(e instanceof Eo)return"geopoint";if(typeof e=="object")return"map"}function ya({propertyKey:e,value:t,error:c,showError:i,isSubmitting:a,setValue:l,setFieldValue:s,tableMode:d,property:u,includeDescription:A,underlyingValueHasChanged:g,context:h,disabled:_}){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 y=u.expanded===void 0?!0:u.expanded,I=u.of,[b,p]=f.useState();Le({property:u,value:t,setValue:l});const w=(v,S)=>{const K=u.resolvedProperties[v]??I,C={propertyKey:`${e}.${v}`,disabled:_,property:K,includeDescription:A,underlyingValueHasChanged:g,context:h,tableMode:!1,partOfArray:!0,partOfBlock:!1,autoFocus:S===b};return n.jsx(Sn,{...C})},k=n.jsx(qo,{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}),m=n.jsx(Ke,{icon:ve(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(hn,{initiallyExpanded:y,className:"px-2 md:px-4 pb-2 md:pb-4 pt-1 md:pt-2",title:m,children:k}),d&&k,n.jsx(Se,{includeDescription:A,showError:i,error:c,disabled:_,property:u})]})}function ga({propertyKey:e,value:t,error:c,showError:i,isSubmitting:a,setValue:l,setFieldValue:s,tableMode:d,property:u,includeDescription:A,underlyingValueHasChanged:g,context:h,disabled:_}){if(!u.oneOf)throw Error("ArrayOneOfField misconfiguration. Property `oneOf` not set");const y=u.expanded===void 0?!0:u.expanded;Le({property:u,value:t,setValue:l});const[I,b]=f.useState(),p=f.useCallback((v,S)=>n.jsx(L3,{name:`${e}.${v}`,index:v,value:t[v],typeField:u.oneOf.typeField??oo,valueField:u.oneOf.valueField??Fo,properties:u.oneOf.properties,autoFocus:S===I,context:h},`array_one_of_${v}`),[h,I,u.oneOf,e,t]),w=n.jsx(Ke,{icon:ve(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],m=n.jsx(qo,{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??oo]:k,[u.oneOf.valueField??Fo]:Po(u.oneOf.properties[k])}});return n.jsxs(n.Fragment,{children:[!d&&n.jsx(hn,{className:"px-2 md:px-4 pb-2 md:pb-4 pt-1 md:pt-2",initiallyExpanded:y,title:w,children:m}),d&&m,n.jsx(Se,{includeDescription:A,showError:i,error:c,disabled:_,property:u})]})}function L3({name:e,index:t,value:c,typeField:i,valueField:a,properties:l,autoFocus:s,context:d}){const u=c&&c[i],[A,g]=f.useState(u??void 0),h=Pe.useFormikContext();f.useEffect(()=>{u||w(Object.keys(l)[0])},[]),f.useEffect(()=>{u!==A&&g(u)},[u]);const _=A?l[A]:void 0,y=Object.entries(l).map(([k,m])=>({id:k,label:m.name??k})),I=`${e}.${i}`,b=`${e}.${a}`,p=_?{propertyKey:b,property:_,context:d,autoFocus:s,partOfArray:!1,partOfBlock:!0,tableMode:!1}:void 0,w=k=>{const m=k?l[k]:void 0;g(k),h.setFieldTouched(I),h.setFieldValue(I,k),h.setFieldValue(b,m?Po(m):null)};return n.jsxs("div",{className:F(je,"bg-transparent p-4 my-4 py-8"),children:[n.jsx(Pe.FastField,{required:!0,name:I,children:k=>n.jsx(n.Fragment,{children:n.jsx(xe,{className:"mb-2",placeholder:n.jsx(Z,{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:m=>n.jsx(Fe,{enumKey:m,enumValues:y,size:"small"}),onValueChange:m=>{w(m)},children:y.map(m=>n.jsx(Re,{value:String(m.id),children:n.jsx(Fe,{enumKey:m.id,enumValues:y,size:"small"})},m.id))})})}),p&&n.jsx(Sn,{...p},`form_control_${e}_${A}`)]})}const Q3=new Xt;try{mn.use(mn.Plugins.AutoResize,{min:100}),mn.unuse(mn.Plugins.FontUnderline),mn.unuse(mn.Plugins.Clear)}catch{}function _a({propertyKey:e,value:t,setValue:c,error:i,showError:a,disabled:l,autoFocus:s,touched:d,property:u,tableMode:A,includeDescription:g,context:h}){const[_,y]=f.useState(t),I=f.useRef(t);vn("MarkdownFieldBinding",V3);const b=f.useDeferredValue({internalValue:_,value:t});return f.useEffect(()=>{I.current=t,y(t)},[t]),f.useEffect(()=>{b.internalValue!==I.current&&c(b.internalValue)},[b]),n.jsxs(n.Fragment,{children:[!A&&n.jsx(Z,{variant:"caption",className:"flex-grow",children:n.jsx(Ke,{icon:ve(u,"small"),required:u.validation?.required,title:u.name,className:"text-text-secondary dark:text-text-secondary-dark ml-3.5"})}),n.jsx(mn,{value:_??"",className:F(Xe,l?nn:Ye,"text-base"),readOnly:l,renderHTML:p=>Q3.render(p),view:{menu:!0,md:!0,html:!1},onChange:({html:p,text:w})=>{y(w??null)}}),n.jsx(Se,{includeDescription:g,showError:a,error:i,disabled:l,property:u})]})}const V3=`
4
+ `)?r.jsx("div",{className:"overflow-x-scroll",children:l.map((i,s)=>r.jsxs(c.Fragment,{children:[r.jsx("span",{children:i}),s!==l.length-1&&r.jsx("br",{})]},`string_preview_${s}`))}):r.jsx(r.Fragment,{children:t})}}}function Dr({propertyKey:e,value:t,property:n,entity:o,size:l}){const i=X(),s=Je({propertyKey:e,property:n,propertyValue:t,fields:i.propertyConfigs});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 a=t;if(!a)return null;const d=l==="medium"?"small":"tiny";return r.jsx("div",{className:"flex flex-col gap-2",children:a&&a.map((A,g)=>{const p=s.resolvedProperties[g]??s.resolvedProperties[g]??(Array.isArray(s.of)?s.of[g]:s.of);return p?r.jsx(c.Fragment,{children:r.jsx("div",{className:f.cn(f.defaultBorderMixin,"m-1 border-b last:border-b-0"),children:r.jsx(ne,{children:r.jsx(me,{propertyKey:e,entity:o,value:A,property:p,size:d})})})},"preview_array_"+g):null})})}const Ge=ar.memo(function(t){const n=t.reference;return n instanceof Me?r.jsx(Pi,{...t}):(console.warn("Reference preview received value of type",typeof n),r.jsx(Zt,{onClick:t.onClick,size:t.size,children:r.jsx(he,{error:"Unexpected value. Click to edit",tooltip:JSON.stringify(n)})}))},Ti);function Ti(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 Pi({disabled:e,reference:t,previewProperties:n,size:o,onHover:l,onClick:i,allowEntityNavigation:s=!0}){const a=X(),A=ie().getCollection(t.path);if(!A){if(a.components?.missingReference)return r.jsx(a.components.missingReference,{path:t.path});throw Error(`Couldn't find the corresponding collection view for the path: ${t.path}`)}return r.jsx(Qi,{reference:t,collection:A,previewProperties:n,size:o,disabled:e,allowEntityNavigation:s,onClick:i,onHover:l})}function Qi({reference:e,collection:t,previewProperties:n,size:o,disabled:l,allowEntityNavigation:i,onClick:s,onHover:a}){const d=X(),A=We(),{entity:g,dataLoading:p,dataLoadingError:h}=Sr({path:e.path,entityId:e.id,collection:t,useCache:!0});g&&go.set(e.pathWithId,g);const u=g??go.get(e.pathWithId),m=c.useMemo(()=>Be({collection:t,path:e.path,values:u?.values,fields:d.propertyConfigs}),[t]),b=c.useMemo(()=>_n(m,d.propertyConfigs,n,o==="small"||o==="medium"?3:1),[n,m,o]);let y;return m?(e?u&&!u.values?y=r.jsx(he,{error:"Reference does not exist",tooltip:e.path}):y=r.jsxs(r.Fragment,{children:[r.jsxs("div",{className:"flex flex-col flex-grow w-full max-w-[calc(100%-52px)] m-1",children:[o!=="tiny"&&(e?r.jsx("div",{className:`${o!=="medium"?"block whitespace-nowrap overflow-hidden truncate":""}`,children:r.jsx(f.Typography,{variant:"caption",className:"font-mono",children:e.id})}):r.jsx(f.Skeleton,{})),b&&b.map(w=>{const C=m.properties[w];return C?r.jsx("div",{className:b.length>1?"my-0.5":"my-0",children:u?r.jsx(me,{propertyKey:w,value:Le(u.values,w),property:C,entity:u,size:"tiny"}):r.jsx(ut,{property:C,size:"tiny"})},"ref_prev_"+w):null})]}),r.jsx("div",{className:`my-${o==="tiny"?2:4}`,children:!l&&u&&i&&r.jsx(f.Tooltip,{title:`See details for ${u.id}`,children:r.jsx(f.IconButton,{color:"inherit",size:"small",onClick:w=>{w.stopPropagation(),d.onAnalyticsEvent?.("entity_click_from_reference",{path:u.path,entityId:u.id}),A.open({entityId:u.id,path:u.path,collection:m,updateUrl:!0})},children:r.jsx(f.KeyboardTabIcon,{size:"small"})})})})]}):y=r.jsx(he,{error:"Reference not set"}),r.jsx(Zt,{onClick:l?void 0:s,onHover:l?void 0:a,size:o,children:y})):r.jsx(he,{error:"Could not find collection with id "+m})}function Zt({children:e,onHover:t,size:n,onClick:o}){return r.jsx(f.Typography,{variant:"label",className:f.cn("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":"",n==="medium"?"p-2":"p-1",n==="tiny"?"items-center":"","transition-colors duration-300 ease-in-out ",o?"cursor-pointer":""),style:{tabindex:0},onClick:l=>{o&&(l.preventDefault(),o(l))},children:e})}const go=new Map;function ho({propertyKey:e,value:t,property:n,size:o}){const l=X(),i=Je({propertyKey:e,property:n,propertyValue:t,fields:l.propertyConfigs});if(Array.isArray(i?.of))throw Error("Using array properties instead of single one in `of` in ArrayProperty");if(i?.dataType!=="array"||!i.of||i.of.dataType!=="reference")throw Error("Picked wrong preview component ArrayOfReferencesPreview");const s=o==="medium"?"small":"tiny";return r.jsx("div",{className:"flex flex-col w-full",children:t&&t.map((a,d)=>{const A=i.of;return r.jsx("div",{className:"mt-1 mb-1 w-full",children:r.jsx(Ge,{disabled:!A.path,previewProperties:A.previewProperties,size:s,reference:a})},`preview_array_ref_${e}_${d}`)})})}function po({propertyKey:e,entity:t,value:n,property:o,size:l}){const i=X(),s=Je({propertyKey:e,property:o,propertyValue:n,fields:i.propertyConfigs});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 a=l==="medium"?"small":"tiny";return r.jsx("div",{className:"flex flex-wrap gap-2",children:n&&n.map((d,A)=>r.jsx(ne,{children:r.jsx(me,{propertyKey:e,value:d,entity:t,property:s.of,size:a})},`preview_array_storage_${e}_${A}`))})}function Or({name:e,value:t,enumValues:n,size:o}){return r.jsx("div",{className:"flex flex-wrap gap-1.5",children:t&&t.map((l,i)=>r.jsx(ne,{children:r.jsx(we,{enumKey:l,enumValues:n,size:o!=="medium"?"small":"medium"})},`preview_array_ref_${e}_${i}`))})}function Vr({propertyKey:e,value:t,property:n,size:o}){if(n.dataType!=="array")throw Error("Picked wrong preview component ArrayEnumPreview");const l=n.of;if(!l.enumValues)throw Error("Picked wrong preview component ArrayEnumPreview");return t?r.jsx(Or,{name:e,value:t,enumValues:l.enumValues,size:o}):null}function mo({propertyKey:e,value:t,property:n,entity:o,size:l}){const i=X(),s=Je({propertyKey:e,property:n,propertyValue:t,fields:i.propertyConfigs});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 r.jsx("div",{children:`Unexpected value: ${t}`});const a=s.of;return r.jsx("div",{className:"flex flex-col gap-2",children:t&&t.map((d,A)=>r.jsx("div",{children:r.jsx(ne,{children:r.jsx(Mr,{propertyKey:e,property:a,value:d,entity:o,size:l})})},`preview_array_strings_${e}_${A}`))})}function bo({propertyKey:e,value:t,property:n,size:o,entity:l}){const i=X(),s=Je({propertyKey:e,property:n,propertyValue:t,fields:i.propertyConfigs});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 a=t;if(!a)return null;const d=o==="medium"?"small":"tiny",A=s.oneOf.typeField??yt,g=s.oneOf.valueField??zt,p=s.oneOf.properties;return r.jsx("div",{className:"flex flex-col",children:a&&a.map((h,u)=>r.jsx(c.Fragment,{children:r.jsx("div",{className:f.cn(f.defaultBorderMixin,"m-1 border-b last:border-b-0"),children:r.jsx(ne,{children:h&&r.jsx(me,{propertyKey:e,value:h[g],entity:l,property:s.resolvedProperties[u]??p[h[A]],size:d})})})},"preview_array_"+h+"_"+u))})}function yo({propertyKey:e,value:t,property:n,entity:o,size:l}){if(n.dataType!=="map")throw Error("Picked wrong preview component MapPropertyPreview");const i=n;if(!i.properties||Object.keys(i.properties??{}).length===0)return r.jsx(Gr,{value:t});if(!t)return null;const s=Object.keys(i.properties);return l==="tiny"?r.jsx("div",{className:"w-full flex flex-col space-y-1 md:space-y-2",children:s.map((a,d)=>r.jsx("div",{children:r.jsx(ne,{children:r.jsx(me,{propertyKey:a,value:t[a],property:i.properties[a],entity:o,size:l})},"map_preview_"+i.name+a+d)},`map_${a}`))}):r.jsx("div",{className:"flex flex-col gap-1 w-full",children:s&&s.map((a,d)=>{const A=i.properties[a];return r.jsxs("div",{className:f.cn(f.defaultBorderMixin,"last:border-b-0 border-b"),children:[r.jsxs("div",{className:"flex flex-row pt-0.5 pb-0.5 gap-2",children:[r.jsx("div",{className:"min-w-[140px] w-[25%] py-1",children:r.jsx(f.Typography,{variant:"caption",className:"font-mono break-words",color:"secondary",children:A.name})}),r.jsx("div",{className:"flex-grow max-w-[75%]",children:r.jsx(ne,{children:!(A.dataType==="map"||A==="array")&&r.jsx(me,{propertyKey:a,value:t[a],property:A,entity:o,size:l})})})]}),(A.dataType==="map"||A==="array")&&r.jsx("div",{className:f.cn(f.defaultBorderMixin,"border-l pl-4 ml-2 my-2"),children:r.jsx(me,{propertyKey:a,value:t[a],property:A,entity:o,size:l})})]},`map_preview_table_${a}}`)})})}function Gr({value:e}){return typeof e!="object"?null:r.jsx("div",{className:"flex flex-col gap-1 w-full",children:Object.entries(e).map(([t,n])=>r.jsxs("div",{className:f.cn(f.defaultBorderMixin,"last:border-b-0 border-b"),children:[r.jsxs("div",{className:"flex flex-row pt-0.5 pb-0.5 gap-2",children:[r.jsx("div",{className:"min-w-[140px] w-[25%] py-1",children:r.jsx(f.Typography,{variant:"caption",className:"font-mono break-words",color:"secondary",children:t})},`table-cell-title-${t}-${t}`),r.jsx("div",{className:"flex-grow max-w-[75%]",children:typeof n!="object"&&r.jsx(f.Typography,{children:r.jsx(ne,{children:n&&n.toString()})})})]}),typeof n=="object"&&r.jsx("div",{className:f.cn(f.defaultBorderMixin,"border-l pl-4"),children:r.jsx(Gr,{value:n})})]},`map_preview_table_${t}}`))})}function vo({date:e}){const t=X(),n=t?.locale?kn[t?.locale]:void 0,o=t?.dateTimeFormat??Vn,l=e?Cl(e,o,{locale:n}):"";return r.jsx(r.Fragment,{children:l})}function wo({value:e}){return r.jsx(f.Checkbox,{checked:e})}function Co({value:e,property:t,size:n}){if(t.enumValues){const o=e,l=$e(t.enumValues);return l?r.jsx(we,{enumKey:o,enumValues:l,size:n!=="medium"?"small":"medium"}):r.jsx(r.Fragment,{children:e})}else return r.jsx(r.Fragment,{children:e})}function me(e){const t=X();let n;const{property:o,propertyKey:l,value:i,size:s,height:a,width:d,entity:A}=e,g=ke({propertyKey:l,propertyOrBuilder:o,propertyValue:i,fields:t.propertyConfigs});if(i===void 0||g===null)n=r.jsx(At,{});else if(g.Preview)n=c.createElement(g.Preview,{propertyKey:l,value:i,property:g,size:s,height:a,width:d,entity:A,customProps:g.customProps});else if(i===null)n=r.jsx(At,{});else if(g.dataType==="string"){const p=g;typeof i=="string"?p.url?typeof p.url=="boolean"?n=r.jsx(kt,{size:e.size,url:i}):typeof p.url=="string"&&(n=r.jsx(kt,{size:e.size,url:i,previewType:p.url})):p.storage?n=r.jsx(Ao,{storeUrl:g.storage?.storeUrl??!1,size:e.size,storagePathOrDownloadUrl:i}):p.markdown?n=r.jsx(f.Markdown,{source:i}):n=r.jsx(Mr,{...e,property:p,value:i}):n=rt(l,g.dataType,i)}else if(g.dataType==="array")if(i instanceof Array){const p=g;if(!p.of&&!p.oneOf)throw Error(`You need to specify an 'of' or 'oneOf' prop (or specify a custom field) in your array property ${l}`);p.of?Array.isArray(p.of)?n=r.jsx(Dr,{...e,value:i,property:g}):p.of.dataType==="reference"?n=r.jsx(ho,{...e,value:i,property:g}):p.of.dataType==="string"?p.of.enumValues?n=r.jsx(Vr,{...e,value:i,property:g}):p.of.storage?n=r.jsx(po,{...e,value:i,property:g}):n=r.jsx(mo,{...e,value:i,property:g}):p.of.dataType==="number"&&p.of.enumValues?n=r.jsx(Vr,{...e,value:i,property:g}):n=r.jsx(Dr,{...e,value:i,property:g}):p.oneOf&&(n=r.jsx(bo,{...e,value:i,property:g}))}else n=rt(l,g.dataType,i);else g.dataType==="map"?typeof i=="object"?n=r.jsx(yo,{...e,property:g}):n=rt(l,g.dataType,i):g.dataType==="date"?i instanceof Date?n=r.jsx(vo,{date:i}):n=rt(l,g.dataType,i):g.dataType==="reference"?typeof g.path=="string"?i instanceof Me?n=r.jsx(Ge,{disabled:!g.path,previewProperties:g.previewProperties,size:e.size,onClick:e.onClick,reference:i}):n=rt(l,g.dataType,i):n=r.jsx(At,{}):g.dataType==="boolean"?typeof i=="boolean"?n=r.jsx(wo,{value:i}):n=rt(l,g.dataType,i):g.dataType==="number"?typeof i=="number"?n=r.jsx(Co,{...e,value:i,property:g}):n=rt(l,g.dataType,i):n=JSON.stringify(i);return n??r.jsx(At,{})}function rt(e,t,n){return console.warn(`Unexpected value for property ${e}, of type ${t}`,n),r.jsx(he,{title:"Unexpected value",error:`${JSON.stringify(n)}`})}function Mi({propertyKey:e,value:t,property:n,size:o,entity:l}){const i=X(),s=Je({propertyKey:e,property:n,propertyValue:t,fields:i.propertyConfigs});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 a=s.of,d=a.properties;if(!d)throw Error(`You need to specify a 'properties' prop (or specify a custom field) in your map property ${e}`);const A=t,g=a.previewProperties;if(!A)return null;let p=g;return(!p||!p.length)&&(p=Object.keys(d),o&&(p=p.slice(0,3))),r.jsx("div",{className:"table-auto text-xs",children:r.jsx("div",{children:A&&A.map((h,u)=>r.jsx("div",{className:"border-b last:border-b-0",children:p&&p.map(m=>r.jsx("div",{className:"table-cell",children:r.jsx(ne,{children:r.jsx(me,{propertyKey:m,value:h[m],property:d[m],entity:l,size:"small"})})},`table-cell-${m}`))},`table_${h}_${u}`))})})}const Di=ar.memo(function({builder:t}){const[n,o]=c.useState(!0),[l,i]=c.useState(null);return c.useEffect(()=>{let s=!1;return t.then(a=>{s||(o(!1),i(a))}).catch(a=>{o(!1),console.error(a)}),()=>{s=!0}},[t]),n?r.jsx(f.Skeleton,{}):r.jsx(ar.Fragment,{children:l})});function Yr({entity:e,collection:t,path:n,className:o}){const l=X(),i=c.useMemo(()=>Be({collection:t,path:n,entityId:e.id,values:e.values,fields:l.propertyConfigs}),[t,n,e]),s=X(),a=i.properties;return r.jsx("div",{className:"w-full "+o,children:r.jsxs("div",{className:"w-full mb-4",children:[r.jsxs("div",{className:f.cn(f.defaultBorderMixin,"flex justify-between py-2 border-b last:border-b-0"),children:[r.jsx("div",{className:"flex items-center w-1/4",children:r.jsx("span",{className:"pl-2 text-sm text-gray-600",children:"Id"})}),r.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:[r.jsx("span",{className:"flex-grow mr-2",children:e.id}),s?.entityLinkBuilder&&r.jsx("a",{href:s.entityLinkBuilder({entity:e}),rel:"noopener noreferrer",target:"_blank",children:r.jsx(f.IconButton,{children:r.jsx(f.OpenInNewIcon,{size:"small"})})})]})]}),Object.entries(a).map(([d,A])=>{const g=e.values[d];return r.jsxs("div",{className:f.cn(f.defaultBorderMixin,"flex justify-between py-2 border-b last:border-b-0"),children:[r.jsx("div",{className:"flex items-center w-1/4",children:r.jsx("span",{className:"pl-2 text-sm text-gray-600",children:A.name})}),r.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:r.jsx(me,{propertyKey:d,value:g,entity:e,property:A,size:"medium"})})]},`reference_previews_${d}`)})]})})}function Oi(e){return e.dataType==="boolean"?"center":e.dataType==="number"?e.enumValues?"left":"right":e.dataType==="date"?"right":"left"}function Eo(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:Eo(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 zr(e){return`subcollection:${e.id??e.path}`}function Vi(e){const t=c.useRef(null),{disabled:n,value:o,multiline:l,updateValue:i,focused:s}=e,a=c.useRef(o),[d,A]=c.useState(o),g=c.useRef(!1);c.useEffect(()=>{a.current!==o&&o!==d&&A(o),a.current=o},[o]);const p=c.useCallback(()=>{!o&&!d||d!==o&&(a.current=d,i(d))},[d,i,o]);return Wt(d,p,!s,2e3),c.useEffect(()=>{t.current&&s&&!g.current?(g.current=!0,t.current.focus({preventScroll:!0}),t.current.selectionStart=t.current.value.length,t.current.selectionEnd=t.current.value.length):g.current=s},[s,t]),r.jsx(f.TextareaAutosize,{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:d??"",onChange:h=>{const u=h.target.value;(l||!u.endsWith(`
5
+ `))&&A(u)},onFocus:()=>{g.current=!0},onBlur:()=>{g.current=!1,p()}})}function Ur(e){const{name:t,enumValues:n,error:o,internalValue:l,disabled:i,small:s,focused:a,updateValue:d,multiple:A,valueType:g}=e,p=Array.isArray(l)&&A||!Array.isArray(l)&&!A,h=c.useRef(null);c.useEffect(()=>{h.current&&a&&h.current?.focus({preventScroll:!0})},[a,h]);const u=c.useCallback(b=>{if(g==="number")if(A){const y=b.map(w=>parseFloat(w));d(y)}else d(parseFloat(b));else if(g==="string")d(b||null);else throw Error("Missing mapping in TableSelect")},[A,d,g]),m=(b,y)=>A&&Array.isArray(b)?r.jsx(Or,{value:b,name:t,enumValues:n,size:s?"small":"medium"},`${b}-${y}`):r.jsx(we,{enumKey:b,enumValues:n,size:s?"small":"medium"},`${b}-${y}`);return A?r.jsx(f.MultiSelect,{inputRef:h,containerClassName:"w-full h-full",className:"w-full h-full p-0 bg-transparent",position:"item-aligned",disabled:i,padding:!1,includeFocusOutline:!1,value:p?l.map(b=>b.toString()):[],onMultiValueChange:u,renderValue:m,children:n?.map(b=>r.jsx(f.MultiSelectItem,{value:String(b.id),children:r.jsx(we,{enumKey:b.id,enumValues:n,size:s?"small":"medium"})},b.id))}):r.jsx(f.Select,{inputRef:h,className:"w-full h-full p-0 bg-transparent",position:"item-aligned",disabled:i,multiple:A,padding:!1,includeFocusOutline:!1,value:p?A?l.map(b=>b.toString()):l?.toString():A?[]:"",onValueChange:u,onMultiValueChange:u,renderValue:m,children:n?.map(b=>r.jsx(f.SelectItem,{value:String(b.id),children:r.jsx(we,{enumKey:b.id,enumValues:n,size:s?"small":"medium"})},b.id))})}function Gi(e){const{align:t,value:n,updateValue:o,focused:l}=e,i=n&&typeof n=="number"?n.toString():"",[s,a]=c.useState(i),d=c.useRef(n);c.useEffect(()=>{d.current!==n&&String(n)!==s&&a(n?n.toString():null),d.current=n},[n]);const A=c.useCallback(()=>{if(s!==i)if(s!=null){const h=parseFloat(s);if(isNaN(h))return;h!=null&&o(h)}else o(null)},[s,n]);Wt(s,A,!l,2e3),c.useEffect(()=>{!l&&i!==s&&a(n!=null?n.toString():null)},[n,l]);const g=c.useRef(null);c.useEffect(()=>{g.current&&l&&g.current.focus({preventScroll:!0})},[l,g]);const p=/^-?[0-9]+[,.]?[0-9]*$/;return r.jsx("input",{ref:g,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:h=>{const u=h.target.value.replace(",",".");u.length===0&&a(null),(p.test(u)||u.startsWith("-"))&&a(u)}})}function Yi(e){const{internalValue:t,updateValue:n,focused:o}=e,l=c.useRef(null);return c.useEffect(()=>{l.current&&o&&l.current.focus({preventScroll:!0})},[o,l]),r.jsx(f.BooleanSwitch,{ref:l,size:"small",value:!!t,onValueChange:n})}function zi(e){const{locale:t}=X(),{disabled:n,error:o,mode:l,internalValue:i,updateValue:s}=e;return r.jsx(f.DateTimeField,{value:i??void 0,onChange:a=>s(a),size:"medium",invisible:!0,className:"w-full h-full",inputClassName:"w-full h-full",mode:l,locale:t})}class ne extends c.Component{constructor(t){super(t),this.state={error:null}}static getDerivedStateFromError(t){return{error:t}}componentDidCatch(t,n){console.error(t)}render(){return this.state.error?r.jsxs("div",{className:"flex flex-col m-2",children:[r.jsxs("div",{className:"flex items-center m-2",children:[r.jsx(f.ErrorIcon,{color:"error",size:"small"}),r.jsx("div",{className:"ml-4",children:"Error"})]}),r.jsx(f.Typography,{variant:"caption",children:this.state.error?.message??"See the error in the console"})]}):this.props.children}}async function Ui(e,t,n,o,l,i,s,a){let d;return typeof e=="function"?(d=await e({path:l,entityId:o,values:n,property:i,file:s,storage:t,propertyKey:a}),d||console.warn("Storage callback returned empty result. Using default name value")):d=Bo(s,e,o,a,l),d||(d=st()+"_"+s.name),d}function Li(e,t,n,o,l,i,s,a){let d;return typeof e=="function"?(d=e({path:l,entityId:o,values:n,property:i,file:s,storage:t,propertyKey:a}),d||console.warn("Storage callback returned empty result. Using default name value")):d=Bo(s,e,o,a,l),d||(d=st()+"_"+s.name),d}function Bo(e,t,n,o,l){const i=e.name.split(".").pop();let s=t.replace("{entityId}",n).replace("{propertyKey}",o).replace("{rand}",st()).replace("{file}",e.name).replace("{file.type}",e.type).replace("{path}",l);if(i){s=s.replace("{file.ext}",i);const a=e.name.replace(`.${i}`,"");s=s.replace("{file.name}",a)}return s||(s=st()+"_"+e.name),s}function ko({entityId:e,entityValues:t,path:n,value:o,property:l,propertyKey:i,storageSource:s,disabled:a,onChange:d}){const A=l.dataType==="string"?l.storage:l.dataType==="array"&&l.of.dataType==="string"?l.of.storage:void 0,g=l.dataType==="array";if(!A)throw Error("Storage meta must be specified");const p=A?.metadata,h=g?"small":"medium",u=A?.imageCompression,m=(g?o??[]:o?[o]:[]).map(B=>({id:Lr(),storagePathOrDownloadUrl:B,metadata:p,size:h})),[b,y]=c.useState(o),[w,C]=c.useState(m);c.useEffect(()=>{oe(b,o)||(y(o),C(m))},[m,o,b]);const E=c.useCallback(async B=>{if(A.fileName){const N=await Ui(A.fileName,A,t,e,n,l,B,i);if(!N||N.length===0)throw Error("You need to return a valid filename");return N}return st()+"_"+B.name},[e,t,n,l,i,A]),k=c.useCallback(B=>Li(A.storagePath,A,t,e,n,l,B,i)??"/",[e,t,n,l,i,A]),S=c.useCallback(async(B,N,I)=>{console.debug("onFileUploadComplete",B,N);let T=B;if(A.storeUrl&&(T=(await s.getDownloadURL(B)).url),A.postProcess&&T&&(T=await A.postProcess(T)),!T){console.warn("uploadPathOrDownloadUrl is null");return}let F;N.storagePathOrDownloadUrl=T,N.metadata=I,F=[...w],F=xo(F),C(F);const Q=F.filter(Y=>!!Y.storagePathOrDownloadUrl).map(Y=>Y.storagePathOrDownloadUrl);d(g?Q:Q?Q[0]:null)},[w,g,d,A,s]),x=c.useCallback(async B=>{if(!B.length||a)return;let N;if(g)N=[...w,...await Promise.all(B.map(async I=>(u&&$r(I)&&(I=await Io(I,u)),{id:Lr(),file:I,fileName:await E(I),metadata:p,size:h})))];else{let I=B[0];u&&$r(I)&&(I=await Io(I,u)),N=[{id:Lr(),file:I,fileName:await E(I),metadata:p,size:h}]}N=xo(N),C(N)},[a,E,w,p,g,h]);return{internalValue:w,setInternalValue:C,storage:A,fileNameBuilder:E,storagePathBuilder:k,onFileUploadComplete:S,onFilesAdded:x,multipleFilesSupported:g}}function xo(e){return e.filter((t,n)=>(e.map(o=>o.storagePathOrDownloadUrl).indexOf(t.storagePathOrDownloadUrl)===n||!t.storagePathOrDownloadUrl)&&(e.map(o=>o.file).indexOf(t.file)===n||!t.file))}function Lr(){return Math.floor(Math.random()*Math.floor(Number.MAX_SAFE_INTEGER))}const So={"image/jpeg":"JPEG","image/png":"PNG","image/webp":"WEBP"},$r=e=>So[e.type]?So[e.type]:null,$i=100,Io=(e,t)=>new Promise(n=>{const o=t.quality===void 0?$i:t.quality,l=o>=0&&o<=100?o:100,i=$r(e);if(!i)throw Error("resizeAndCompressImage: Unsupported image format");Bl.imageFileResizer(e,t.maxWidth||Number.MAX_VALUE,t.maxHeight||Number.MAX_VALUE,i,l,0,s=>n(s),"file")});function Fo({storagePath:e,entry:t,metadata:n,onFileUploadComplete:o,imageSize:l,simple:i}){const s=ct(),a=je(),[d,A]=c.useState(),[g,p]=c.useState(!1),h=c.useRef(!1),u=c.useRef(!1),m=c.useCallback((b,y)=>{u.current||(u.current=!0,A(void 0),p(!0),s.uploadFile({file:b,fileName:y,path:e,metadata:n}).then(async({path:w})=>{console.debug("Upload successful"),await o(w,t,n),h.current&&p(!1)}).catch(w=>{console.warn("Upload error",w),h.current&&(A(w),p(!1),a.open({type:"error",message:"Error uploading file: "+w.message}))}).finally(()=>{u.current=!1}))},[t,n,o,s,e]);return c.useEffect(()=>(h.current=!0,t.file&&m(t.file,t.fileName),()=>{h.current=!1}),[t.file,t.fileName,m]),i?r.jsx("div",{className:`m-4 w-${l} h-${l}`,children:g&&r.jsx(f.Skeleton,{className:`w-${l} h-${l}`})}):r.jsxs("div",{className:f.cn(f.paperMixin,"relative m-4 border-box flex items-center justify-center",`min-w-[${l}px] min-h-[${l}px]`),children:[g&&r.jsx(f.Skeleton,{className:"w-full h-full"}),d&&r.jsx(he,{title:"Error uploading file",error:d})]})}function No({showError:e,disabled:t,showExpandIcon:n,selected:o,openPopup:l,children:i}){const s=c.useRef(null),a=c.useCallback(()=>{if(l){const A=s&&s?.current?.getBoundingClientRect();l(A)}},[]),d=c.useRef();return c.useEffect(()=>{d.current&&o&&d.current.focus({preventScroll:!0})},[o]),r.jsx(r.Fragment,{children:(e||!t&&n)&&r.jsxs("div",{ref:s,className:"absolute top-0.5 right-0.5 flex items-center",children:[o&&i,o&&!t&&n&&r.jsx(f.IconButton,{ref:d,color:"inherit",size:"small",onClick:a,children:r.jsxs("svg",{fill:"#888",width:"20",height:"20",viewBox:"0 0 24 24",children:[r.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"}),r.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&&r.jsx(On,{side:"left",className:"flex items-center justify-center",style:{width:32,height:32},title:e.message,children:r.jsx(f.ErrorOutlineIcon,{size:"small",color:"error"})})]})})}const _i="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",Wi="pt-0 border-2 border-solid",ji="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",Hi="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 Ji(e){const{propertyKey:t,error:n,selected:o,openPopup:l,value:i,disabled:s,property:a,entity:d,path:A,previewSize:g,updateValue:p}=e,h=ct(),{internalValue:u,setInternalValue:m,onFilesAdded:b,storage:y,onFileUploadComplete:w,storagePathBuilder:C,multipleFilesSupported:E}=ko({entityValues:d.values,entityId:d.id,path:A,property:a,propertyKey:t,storageSource:h,onChange:p,value:i,disabled:s});return r.jsx(qi,{internalValue:u,setInternalValue:m,name:t,disabled:s,autoFocus:!1,openPopup:l,error:n,selected:o,property:a,onChange:p,entity:d,storagePathBuilder:C,storage:y,multipleFilesSupported:E,onFilesAdded:b,onFileUploadComplete:w,previewSize:g})}function qi({property:e,name:t,internalValue:n,setInternalValue:o,openPopup:l,entity:i,selected:s,error:a,onChange:d,multipleFilesSupported:A,previewSize:g,disabled:p,autoFocus:h,storage:u,onFilesAdded:m,onFileUploadComplete:b,storagePathBuilder:y}){const[w,C]=c.useState(!1),E=A&&g==="medium"?"small":g;if(A){const z=e;if(Array.isArray(z.of))throw Error("Using array properties instead of single one in `of` in ArrayProperty");if(z.of){if(z.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=u?.metadata,S=!!n,x=je(),{open:B,getRootProps:N,getInputProps:I,isDragActive:T,isDragAccept:F,isDragReject:Q}=Bn.useDropzone({accept:u.acceptedFiles?u.acceptedFiles.map(z=>({[z]:[]})).reduce((z,V)=>({...z,...V}),{}):void 0,disabled:p,maxSize:u.maxSize,noClick:!0,noKeyboard:!0,onDrop:m,onDropRejected:(z,V)=>{for(const re of z)for(const W of re.errors)x.open({type:"error",message:`Error uploading file: File is larger than ${u.maxSize} bytes`})}}),{...Y}=N(),J=A?"Drag 'n' drop some files here, or click here to edit":"Drag 'n' drop a file here, or click here edit",_=A?e.of:e,j=c.useMemo(()=>ft(E),[E]),te=!p&&a;return r.jsxs("div",{...Y,onMouseEnter:()=>C(!0),onMouseMove:()=>C(!0),onMouseLeave:()=>C(!1),className:f.cn(_i,"relative w-full h-full flex",`justify-${S?"start":"center"}`,T?Wi:"",F?ji:"",Q?Hi:""),children:[r.jsx("input",{autoFocus:h,...I()}),n.map((z,V)=>{let re;return z.storagePathOrDownloadUrl?re=r.jsx(Zi,{property:_,value:z.storagePathOrDownloadUrl,entity:i,size:E},`storage_preview_${V}`):z.file&&(re=r.jsx(Fo,{entry:z,metadata:k,storagePath:y(z.file),onFileUploadComplete:b,imageSize:j,simple:!0},`storage_progress_${V}`)),re}),!n&&r.jsx("div",{className:"flex-grow m-2 max-w-[200px]",onClick:B,children:r.jsx(f.Typography,{className:"text-gray-400 dark:text-gray-600",variant:"body2",align:"center",children:J})}),r.jsx(No,{showError:te,disabled:p,showExpandIcon:!0,selected:s,openPopup:p?void 0:l,children:r.jsx(f.IconButton,{color:"inherit",size:"small",onClick:B,children:r.jsx(f.EditIcon,{size:"small",className:"text-gray-500"})})})]})}function Zi({property:e,value:t,size:n,entity:o}){return r.jsx("div",{className:"relative m-2",children:t&&r.jsx(ne,{children:r.jsx(me,{propertyKey:"ignore",value:t,property:e,entity:o,size:n})})})}function To(e){const t=X(),n=ie(),{path:o}=e,l=n.getCollection(o);if(!l){if(t.components?.missingReference)return r.jsx(t.components.missingReference,{path:o});throw Error(`Couldn't find the corresponding collection view for the path: ${o}`)}return r.jsx(Xi,{...e,collection:l})}function Xi(e){const{name:t,internalValue:n,updateValue:o,multiselect:l,path:i,size:s,previewProperties:a,title:d,disabled:A,forceFilter:g,collection:p}=e,[h,u]=c.useState(!1),m=c.useCallback(()=>u(!0),[]),b=c.useCallback(()=>u(!1),[]),y=c.useCallback(N=>{o(N?et(N):null)},[o]),w=c.useCallback(N=>{o(N.map(I=>et(I)))},[o]),C=n?Array.isArray(n)?n.map(N=>N.id):n.id?[n.id]:[]:[],E=Bt({multiselect:l,path:i,collection:p,onMultipleEntitiesSelected:w,onSingleEntitySelected:y,selectedEntityIds:C,forceFilter:g}),k=c.useCallback(()=>{A||E.open()},[A,E]),S=!n||Array.isArray(n)&&n.length===0,x=()=>n instanceof Me?r.jsx(Ge,{onClick:A?void 0:k,size:He(s),reference:n,onHover:h,disabled:!i,previewProperties:a}):r.jsx(Zt,{onClick:A?void 0:k,size:He(s),children:r.jsx(he,{title:"Value is not a reference.",error:"Click to edit"})}),B=()=>Array.isArray(n)?r.jsx(r.Fragment,{children:n.map((N,I)=>r.jsx("div",{className:"m-1 w-full",children:r.jsx(Ge,{onClick:A?void 0:k,size:"tiny",reference:N,onHover:h,disabled:!i,previewProperties:a})},`preview_array_ref_${t}_${I}`))}):r.jsx(he,{error:"Data is not an array of references"});return p?r.jsxs("div",{className:"w-full",onMouseEnter:m,onMouseMove:m,onMouseLeave:b,children:[n&&!l&&x(),n&&l&&B(),S&&r.jsxs(f.Button,{onClick:k,size:"small",variant:"outlined",color:"primary",children:["Edit ",d]})]}):r.jsx(he,{error:"The specified collection does not exist"})}Ee.addMethod(Ee.array,"uniqueInArray",function(e=n=>n,t){return this.test("uniqueInArray",t,n=>!n||n.length===new Set(n.map(e)).size)});function Po(e,t,n){const o={};return Object.entries(t).forEach(([l,i])=>{o[l]=xt({property:i,customFieldValidator:n,name:l,entityId:e})}),Ee.object().shape(o)}function xt(e){const t=e.property;if(ve(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 Ri(e);if(t.dataType==="number")return es(e);if(t.dataType==="boolean")return os(e);if(t.dataType==="map")return Ki(e);if(t.dataType==="array")return is(e);if(t.dataType==="date")return rs(e);if(t.dataType==="geopoint")return ts(e);if(t.dataType==="reference")return ns(e);throw console.error("Unsupported data type in yup mapping",t),Error("Unsupported data type in yup mapping")}function Ki({property:e,entityId:t,customFieldValidator:n,name:o}){const l={};return e.validation,e.properties&&Object.entries(e.properties).forEach(([i,s])=>{l[i]=xt({property:s,parentProperty:e,customFieldValidator:n,name:`${o}[${i}]`,entityId:t})}),Ee.object().shape(l)}function Ri({property:e,parentProperty:t,customFieldValidator:n,name:o,entityId:l}){let i=Ee.string();const s=e.validation;if(e.enumValues){s?.required&&(i=i.required(s?.requiredMessage?s.requiredMessage:"Required"));const a=$e(e.enumValues);i=i.oneOf((s?.required?a:[...a,null]).map(d=>d?.id??null)).nullable(!0)}if(s){if(i=s.required?i.required(s?.requiredMessage?s.requiredMessage:"Required").nullable(!0):i.notRequired().nullable(!0),s.unique&&n&&o&&(i=i.test("unique","This value already exists and should be unique",(a,d)=>n({name:o,property:e,parentProperty:t,value:a,entityId:l}))),(s.min||s.min===0)&&(i=i.min(s.min,`${e.name} must be min ${s.min} characters long`)),(s.max||s.max===0)&&(i=i.max(s.max,`${e.name} must be max ${s.max} characters long`)),s.matches){const a=typeof s.matches=="string"?zn(s.matches):s.matches;a&&(i=i.matches(a,s.matchesMessage?{message:s.matchesMessage}:void 0))}s.trim&&(i=i.trim()),s.lowercase&&(i=i.lowercase()),s.uppercase&&(i=i.uppercase()),e.email&&(i=i.email(`${e.name} must be an email`)),e.url&&(i=i.url(`${e.name} must be a url`))}else i=i.notRequired().nullable(!0);return i}function es({property:e,parentProperty:t,customFieldValidator:n,name:o,entityId:l}){const i=e.validation;let s=Ee.number().typeError("Must be a number");return i?(s=i.required?s.required(i.requiredMessage?i.requiredMessage:"Required").nullable(!0):s.notRequired().nullable(!0),i.unique&&n&&o&&(s=s.test("unique","This value already exists and should be unique",a=>n({name:o,property:e,parentProperty:t,value:a,entityId:l}))),(i.min||i.min===0)&&(s=s.min(i.min,`${e.name} must be higher or equal to ${i.min}`)),(i.max||i.max===0)&&(s=s.max(i.max,`${e.name} must be lower or equal to ${i.max}`)),(i.lessThan||i.lessThan===0)&&(s=s.lessThan(i.lessThan,`${e.name} must be higher than ${i.lessThan}`)),(i.moreThan||i.moreThan===0)&&(s=s.moreThan(i.moreThan,`${e.name} must be lower than ${i.moreThan}`)),i.positive&&(s=s.positive(`${e.name} must be positive`)),i.negative&&(s=s.negative(`${e.name} must be negative`)),i.integer&&(s=s.integer(`${e.name} must be an integer`))):s=s.notRequired().nullable(!0),s}function ts({property:e,parentProperty:t,customFieldValidator:n,name:o,entityId:l}){let i=Ee.object();const s=e.validation;return s?.unique&&n&&o&&(i=i.test("unique","This value already exists and should be unique",a=>n({name:o,property:e,parentProperty:t,value:a,entityId:l}))),s?.required?i=i.required(s.requiredMessage).nullable(!0):i=i.notRequired().nullable(!0),i}function rs({property:e,parentProperty:t,customFieldValidator:n,name:o,entityId:l}){if(e.autoValue)return Ee.object().nullable();let i=Ee.date();const s=e.validation;return s?(i=s.required?i.required(s?.requiredMessage?s.requiredMessage:"Required"):i.notRequired(),s.unique&&n&&o&&(i=i.test("unique","This value already exists and should be unique",a=>n({name:o,property:e,parentProperty:t,value:a,entityId:l}))),s.min&&(i=i.min(s.min,`${e.name} must be after ${s.min}`)),s.max&&(i=i.max(s.max,`${e.name} must be before ${s.min}`))):i=i.notRequired(),i.transform(a=>a instanceof Date?a:null).nullable()}function ns({property:e,parentProperty:t,customFieldValidator:n,name:o,entityId:l}){let i=Ee.object();const s=e.validation;return s?(i=s.required?i.required(s?.requiredMessage?s.requiredMessage:"Required").nullable(!0):i.notRequired().nullable(!0),s.unique&&n&&o&&(i=i.test("unique","This value already exists and should be unique",a=>n({name:o,property:e,parentProperty:t,value:a,entityId:l})))):i=i.notRequired().nullable(!0),i}function os({property:e,parentProperty:t,customFieldValidator:n,name:o,entityId:l}){let i=Ee.boolean();const s=e.validation;return s?(i=s.required?i.required(s?.requiredMessage?s.requiredMessage:"Required").nullable(!0):i.notRequired().nullable(!0),s.unique&&n&&o&&(i=i.test("unique","This value already exists and should be unique",a=>n({name:o,property:e,parentProperty:t,value:a,entityId:l})))):i=i.notRequired().nullable(!0),i}function ls(e){return e.validation?.uniqueInArray?!0:e.dataType==="map"&&e.properties?Object.entries(e.properties).filter(([t,n])=>n.validation?.uniqueInArray):!1}function is({property:e,parentProperty:t,customFieldValidator:n,name:o,entityId:l}){let i=Ee.array();if(e.of)if(Array.isArray(e.of)){const a=e.of.map((d,A)=>({[`${o}[${A}]`]:xt({property:d,parentProperty:e,entityId:l})})).reduce((d,A)=>({...d,...A}),{});return Ee.array().of(Ee.mixed().test("Dynamic object validation","Dynamic object validation error",(d,A)=>Le(a,A.path).validate(d)))}else{i=i.of(xt({property:e.of,parentProperty:e,entityId:l}));const a=ls(e.of);a&&(typeof a=="boolean"?i=i.uniqueInArray(d=>d,`${e.name} should have unique values within the array`):Array.isArray(a)&&a.forEach(([d,A])=>{i=i.uniqueInArray(g=>g&&g[d],`${e.name} → ${A.name??d}: should have unique values within the array`)}))}const s=e.validation;return s?(i=s.required?i.required(s?.requiredMessage?s.requiredMessage:"Required").nullable(!0):i.notRequired().nullable(!0),(s.min||s.min===0)&&(i=i.min(s.min,`${e.name} should be min ${s.min} entries long`)),s.max&&(i=i.max(s.max,`${e.name} should be max ${s.max} entries long`))):i=i.notRequired().nullable(!0),i}function gt(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 ss=({justifyContent:e,scrollable:t,faded:n,fullHeight:o,children:l})=>r.jsx("div",{className:f.cn("flex flex-col max-h-full w-full",{"items-start":n||t}),style:{justifyContent:e,height:o?"100%":void 0,overflow:t?"auto":void 0,WebkitMaskImage:n?"linear-gradient(to bottom, black 60%, transparent 100%)":void 0,maskImage:n?"linear-gradient(to bottom, black 60%, transparent 100%)":void 0},children:l}),_r=c.memo(function({children:t,actions:n,size:o,selected:l,disabled:i,disabledTooltip:s,saved:a,error:d,align:A,allowScroll:g,removePadding:p,fullHeight:h,onSelect:u,width:m,hideOverflow:b=!0,showExpandIcon:y=!0}){const[w,C]=sr(),E=c.useRef(null);f.useOutsideAlerter(E,()=>{l&&u&&u(void 0)},!!(l&&u));const[k,S]=c.useState(!1),x=c.useMemo(()=>gt(o),[o]),[B,N]=c.useState(!1),[I,T]=c.useState(a),F=!i&&d;c.useEffect(()=>{a&&T(!0);const W=setTimeout(()=>{T(!1)},800);return()=>{clearTimeout(W)}},[a]);let Q=0;if(!p)switch(o){case"l":case"xl":Q=4;break;case"m":Q=2;break;case"s":default:Q=1;break}let Y;switch(A){case"right":Y="flex-end";break;case"center":Y="center";break;case"left":default:Y="flex-start"}const J=c.useCallback(()=>{if(!u)return;const W=E&&E?.current?.getBoundingClientRect();i?u(void 0):!l&&W&&u(W)},[E,u,l,i]),_=c.useCallback(W=>{J(),W.stopPropagation()},[J]);c.useEffect(()=>{if(C){const W=C.height>x;k!==W&&S(W)}},[C,k,x]);const j=!F&&l,te=!i&&g&&k,z=!i&&!g&&k,V=c.useCallback(()=>N(!0),[]),re=c.useCallback(()=>N(!1),[]);return r.jsxs("div",{ref:E,className:f.cn("transition-colors duration-100 ease-in-out",`flex relative h-full rounded-md p-${Q} border border-4 border-opacity-75`,B&&!i?"bg-gray-50 dark:bg-gray-900":"",a?"bg-gray-100 bg-opacity-75 dark:bg-gray-800 dark:bg-opacity-75":"",!j&&!I&&!F?"border-transparent":"",b?"overflow-hidden":"",j?"bg-gray-50 dark:bg-gray-900":"",j&&!I?"border-primary":"",I?"border-green-500 ":"",F?"border-red-500":""),style:{justifyContent:Y,alignItems:i||!k?"center":void 0,width:m??"100%",textAlign:A},tabIndex:l||i?void 0:0,onFocus:_,onMouseEnter:V,onMouseMove:V,onMouseLeave:re,children:[r.jsxs(ne,{children:[h&&!z&&t,(!h||z)&&r.jsx(ss,{fullHeight:h??!1,justifyContent:Y,scrollable:te??!1,faded:z,children:!h&&r.jsx("div",{ref:w,style:{display:"flex",width:"100%",justifyContent:Y,height:h?"100%":void 0},children:t})})]}),n,i&&B&&s&&r.jsx("div",{className:"absolute top-1 right-1 text-xs",children:r.jsx(f.Tooltip,{title:s,children:r.jsx(f.RemoveCircleIcon,{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 as(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 cs=c.memo(function({propertyKey:t,customFieldValidator:n,value:o,property:l,align:i,width:s,height:a,path:d,entity:A,readonly:g,disabled:p}){const h=X(),{onValueChange:u,size:m,selectedCell:b,select:y,setPopupCell:w}=ks(),C=b?.propertyKey===t&&b?.entity.path===A.path&&b?.entity.id===A.id,[E,k]=c.useState(o),S=c.useRef(o),[x,B]=c.useState(),[N,I]=c.useState(!1),T=c.useCallback(()=>{I(!0),setTimeout(()=>{I(!1)},100)},[]),F=!!l.Field,Q=!!l.Preview,Y=it(l),J=typeof l.disabled=="object"?l.disabled.disabledMessage:void 0,_=g||p||!!l.disabled,j=c.useMemo(()=>xt({property:l,entityId:A.id,customFieldValidator:n,name:t}),[A.id,l,t]);c.useEffect(()=>{oe(o,S.current)||(B(void 0),k(o),S.current=o,T())},[T,o]);const te=P=>{oe(P,S.current)||(I(!1),j.validate(P).then(()=>{B(void 0),S.current=P,u&&u({value:P,propertyKey:t,setError:B,onValueUpdated:T,entity:A,fullPath:d,context:h})}).catch(D=>{B(D)}))};c.useEffect(()=>{j.validate(E).then(()=>B(void 0)).catch(P=>{B(P)})},[E,j,t,l,A]);const z=P=>{let D;P===void 0?D=null:D=P,k(D),te(D)};xe({property:l,value:E,setValue:z});const V=c.useCallback(P=>{y(P?{width:s,height:a,entity:A,cellRect:P,propertyKey:t}:void 0)},[A,a,t,y,s]),re=P=>{w&&w(P?{width:s,height:a,entity:A,cellRect:P,propertyKey:t}:void 0)};let W,q=!1,se=!1,U=!0,M=!1,$=!1,K=!0;const L=!_&&x;if(g||Y)return r.jsx(_r,{size:m,width:s,saved:N,value:E,align:i??"left",fullHeight:!1,disabledTooltip:J??(Y?"Read only":void 0),disabled:!0,children:r.jsx(me,{width:s,height:gt(m),propertyKey:t,property:l,entity:A,value:E,size:He(m)})},`${t}_${A.path}_${A.id}`);if(!F&&(!Q||C)){if(as(l))W=r.jsx(Ji,{error:x,disabled:_,focused:C,selected:C,openPopup:w?re:void 0,property:l,entity:A,path:d,value:E,previewSize:He(m),updateValue:z,propertyKey:t}),K=!1,se=!0,$=!0,M=!0;else if(C&&l.dataType==="number"){const D=l;D.enumValues?(W=r.jsx(Ur,{name:t,multiple:!1,disabled:_,focused:C,valueType:"number",small:He(m)!=="medium",enumValues:D.enumValues,error:x,internalValue:E,updateValue:z}),$=!0):(W=r.jsx(Gi,{align:i,error:x,focused:C,disabled:_,value:E,updateValue:z}),q=!0)}else if(C&&l.dataType==="string"){const D=l;if(D.enumValues)W=r.jsx(Ur,{name:t,multiple:!1,focused:C,disabled:_,valueType:"string",small:He(m)!=="medium",enumValues:D.enumValues,error:x,internalValue:E,updateValue:z}),$=!0;else if(!D.storage){const Se=!!D.multiline||!!D.markdown;W=r.jsx(Vi,{error:x,disabled:_,multiline:Se,focused:C,value:E,updateValue:z}),q=!0}}else if(l.dataType==="boolean")W=r.jsx(Yi,{error:x,disabled:_,focused:C,internalValue:E,updateValue:z});else if(l.dataType==="date")W=r.jsx(zi,{name:t,error:x,disabled:_,mode:l.mode,focused:C,internalValue:E,updateValue:z}),$=!0,U=!1,q=!1;else if(l.dataType==="reference")typeof l.path=="string"&&(W=r.jsx(To,{name:t,internalValue:E,updateValue:z,disabled:_,size:m,path:l.path,multiselect:!1,previewProperties:l.previewProperties,title:l.name,forceFilter:l.forceFilter})),q=!1;else if(l.dataType==="array"){const D=l;if(!D.of&&!D.oneOf)throw Error(`You need to specify an 'of' or 'oneOf' prop (or specify a custom field) in your array property ${t}`);D.of&&!Array.isArray(D.of)&&(D.of.dataType==="string"||D.of.dataType==="number"?C&&D.of.enumValues&&(W=r.jsx(Ur,{name:t,multiple:!0,disabled:_,focused:C,small:He(m)!=="medium",valueType:D.of.dataType,enumValues:D.of.enumValues,error:x,internalValue:E,updateValue:z}),q=!0,$=!0,U=!1):D.of.dataType==="reference"&&(typeof D.of.path=="string"&&(W=r.jsx(To,{name:t,disabled:_,internalValue:E,updateValue:z,size:m,multiselect:!0,path:D.of.path,previewProperties:D.of.previewProperties,title:D.of.name,forceFilter:D.of.forceFilter})),q=!1))}}return W||(q=!1,se=C&&!W&&!_&&!Y,W=r.jsx(me,{width:s,height:a,entity:A,propertyKey:t,value:E,property:l,size:He(m)})),r.jsx(_r,{size:m,width:s,onSelect:V,selected:C,disabled:_||Y,disabledTooltip:J??"Disabled",removePadding:M,fullHeight:$,saved:N,error:x,align:i,allowScroll:q,showExpandIcon:se,value:E,hideOverflow:U,actions:K&&r.jsx(No,{showError:L,disabled:_,showExpandIcon:se,selected:C,openPopup:_?void 0:re}),children:W},`cell_${t}_${A.path}_${A.id}`)},ds);function ds(e,t){return e.height===t.height&&e.propertyKey===t.propertyKey&&e.align===t.align&&e.width===t.width&&oe(e.property,t.property)&&oe(e.value,t.value)&&oe(e.entity.id,t.entity.id)&&oe(e.entity.values,t.entity.values)}function St({text:e,...t}){return r.jsx("div",{className:"flex w-full h-screen max-h-full max-w-full bg-gray-50 dark:bg-gray-900 gap-4",children:r.jsxs("div",{className:"m-auto flex flex-col gap-2 items-center",children:[r.jsx(f.CircularProgress,{...t}),e&&r.jsx(f.Typography,{color:"secondary",variant:"caption",className:"text-center",children:e})]})})}const As=c.memo(function({resizeHandleRef:t,columnIndex:n,isResizingIndex:o,sort:l,onColumnSort:i,onFilterUpdate:s,filter:a,column:d,onClickResizeColumn:A,createFilterField:g,AdditionalHeaderWidget:p}){const[h,u]=c.useState(!1),[m,b]=c.useState(!1),[y,w]=c.useState(!1),C=c.useCallback(B=>{b(!0)},[]),E=c.useCallback((B,N)=>{s(d,B),N!==void 0&&b(N)},[d,s]),k=o===n,x=!(o!==n&&o>0)&&(h||k);return r.jsx(ne,{children:r.jsxs("div",{className:f.cn("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",d.frozen?"sticky left-0 z-10":"relative z-0"),style:{left:d.frozen?0:void 0,minWidth:d.width,maxWidth:d.width},onMouseEnter:()=>u(!0),onMouseMove:()=>u(!0),onMouseLeave:()=>u(!1),children:[r.jsx("div",{className:"overflow-hidden flex-grow",children:r.jsxs("div",{className:`flex items-center justify-${d.headerAlign} flex-row`,children:[d.icon&&d.icon(h||m),r.jsx("div",{className:"truncate -webkit-box w-full mx-1 overflow-hidden",style:{WebkitBoxOrient:"vertical",WebkitLineClamp:2,justifyContent:d.align},children:d.title})]})}),r.jsxs(r.Fragment,{children:[p&&r.jsx(p,{onHover:h||m}),d.sortable&&(l||x||m)&&r.jsx(f.Badge,{color:"secondary",invisible:!l,children:r.jsxs(f.IconButton,{size:"small",className:h||m?"bg-white dark:bg-gray-950":void 0,onClick:()=>{i(d.key)},children:[!l&&r.jsx(f.ArrowUpwardIcon,{}),l==="asc"&&r.jsx(f.ArrowUpwardIcon,{}),l==="desc"&&r.jsx(f.ArrowUpwardIcon,{className:"rotate-180"})]})})]}),d.filter&&g&&r.jsx("div",{children:r.jsx(f.Badge,{color:"secondary",invisible:!a,children:r.jsx(f.Popover,{open:m,onOpenChange:b,className:y?"hidden":void 0,modal:!0,trigger:r.jsx(f.IconButton,{className:h||m?"bg-white dark:bg-gray-950":void 0,size:"small",onClick:C,children:r.jsx(f.FilterListIcon,{size:"small"})}),children:r.jsx(fs,{column:d,filter:a,onHover:h,onFilterUpdate:E,createFilterField:g,hidden:y,setHidden:w})})})}),d.resizable&&r.jsx("div",{ref:t,className:f.cn("absolute h-full w-[6px] top-0 right-0 cursor-col-resize",x&&"bg-gray-300 dark:bg-gray-700"),onMouseDown:A?()=>A(n,d):void 0})]})})},oe);function fs({column:e,onFilterUpdate:t,filter:n,onHover:o,createFilterField:l,hidden:i,setHidden:s}){const a=e.key,[d,A]=c.useState(n);if(c.useEffect(()=>{A(n)},[n]),!e.filter)return null;const g=()=>{t(d,!1)},p=m=>{t(void 0,!1)},h=!!n,u=l({id:a,filterValue:d,setFilterValue:A,column:e,hidden:i,setHidden:s});return u?r.jsxs("div",{className:"text-gray-900 dark:text-white",children:[r.jsx("div",{className:f.cn(f.defaultBorderMixin,"py-4 px-6 text-xs font-semibold uppercase border-b"),children:e.title??a}),u&&r.jsx("div",{className:"m-4",children:u}),r.jsxs("div",{className:"flex justify-end m-4",children:[r.jsx(f.Button,{className:"mr-4",disabled:!h,variant:"text",color:"primary",type:"reset","aria-label":"filter clear",onClick:p,children:"Clear"}),r.jsx(f.Button,{variant:"outlined",color:"primary",onClick:g,children:"Filter"})]})]}):null}const us=({columns:e,currentSort:t,onColumnSort:n,onFilterUpdate:o,sortByProperty:l,filter:i,onColumnResize:s,onColumnResizeEnd:a,createFilterField:d,AddColumnComponent:A})=>{const g=e.map(()=>c.createRef()),[p,h]=c.useState(-1),u=c.useCallback((S,x,B)=>{const N=e[S],I=100,T=800,F=x>T?T:x<I?I:x,Q={width:F,key:N.key,column:{...N,width:F}};B?a(Q):s(Q)},[e,s,a]),m=c.useCallback(S=>{if(p>=0){const x=g[p].current?.parentElement?.getBoundingClientRect().left;return x?S.clientX-x:void 0}},[g,p]),b=c.useCallback(S=>{document.body.style.cursor=S?"col-resize":"auto"},[]),y=c.useCallback(S=>{S.stopPropagation(),S.preventDefault();const x=m(S);x&&u(p,x,!1)},[u,m,p]),w=c.useCallback(S=>{S.stopPropagation(),S.preventDefault();const x=m(S);x&&u(p,x,!0),h(-1),b(!1)},[u,m,p,b]),C=c.useCallback(()=>{document.removeEventListener("mousemove",y),document.removeEventListener("mouseup",w)},[y,w]),E=c.useCallback(()=>{document.addEventListener("mousemove",y),document.addEventListener("mouseup",w)},[y,w]);c.useEffect(()=>(p>=0?E():C(),()=>{C()}),[E,p,C]);const k=c.useCallback(S=>{h(S),b(!0)},[b]);return r.jsxs("div",{className:f.cn(f.defaultBorderMixin,"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((S,x)=>{const B=e[x],N=B&&i&&i[B.key]?i[B.key]:void 0;return r.jsx(ne,{children:r.jsx(As,{resizeHandleRef:g[x],columnIndex:x,isResizingIndex:p,onFilterUpdate:o,filter:N,sort:l===B.key?t:void 0,onColumnSort:n,onClickResizeColumn:k,column:B,createFilterField:d,AdditionalHeaderWidget:B.AdditionalHeaderWidget})},"header_"+B.key)}),A&&r.jsx(A,{})]})},gs=c.memo(function({rowData:t,rowIndex:n,children:o,onRowClick:l,size:i,style:s,hoverRow:a,rowClassName:d}){const A=c.useCallback(g=>{console.debug("VirtualTableRow click"),l&&l({rowData:t,rowIndex:n,event:g})},[l,t,n]);return r.jsx("div",{className:f.cn("flex min-w-full text-sm border-b border-gray-200 dark:border-gray-800 border-opacity-40 dark:border-opacity-40",d?d(t):"",{"hover:bg-opacity-95":a,"cursor-pointer":l}),onClick:A,style:{...s,height:gt(i),width:"fit-content"},children:o})},oe),hs=c.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)=>oe(e,t)),Xt=c.createContext({});Xt.displayName="VirtualListContext";const ps=c.forwardRef(({children:e,...t},n)=>r.jsx(Xt.Consumer,{children:o=>{const l=o.customView;return r.jsxs(r.Fragment,{children:[r.jsx("div",{id:"virtual-table",style:{position:"relative",height:"100%"},children:r.jsxs("div",{ref:n,...t,style:{...t?.style,minHeight:"100%",position:"relative"},children:[r.jsx(us,{...o}),!l&&e]})}),l&&r.jsx("div",{style:{position:"sticky",top:"56px",flexGrow:1,height:"calc(100% - 56px)",marginTop:"calc(56px - 100vh)",left:0},children:l})]})}})),Qo=c.memo(function({data:t,onResetPagination:n,onEndReached:o,size:l="m",columns:i,onRowClick:s,onColumnResize:a,filter:d,checkFilterCombination:A,onFilterUpdate:g,sortBy:p,error:h,emptyComponent:u,onSortByUpdate:m,loading:b,cellRenderer:y,hoverRow:w,createFilterField:C,rowClassName:E,className:k,endAdornment:S,AddColumnComponent:x}){const B=p?p[0]:void 0,N=p?p[1]:void 0,[I,T]=c.useState(i),F=c.useRef(null),Q=c.useRef(0);c.useEffect(()=>{T(i)},[i]);const[Y,J]=sr(),_=c.useCallback(P=>{T(I.map(D=>D.key===P.column.key?P.column:D))},[I]),j=c.useCallback(P=>{T(I.map(D=>D.key===P.column.key?P.column:D)),a&&a(P)},[I,a]),te=c.useRef();c.useEffect(()=>{te.current=d},[d]);const z=c.useCallback(()=>{Q.current=0,F.current&&F.current.scrollTo(F.current?.scrollLeft,0)},[]),V=c.useCallback(P=>{const D=B===P&&N==="desc",Ae=B===P&&N==="asc"?"desc":D?void 0:"asc",ae=D?void 0:P,Ie=te.current,qe=Ae&&ae?[ae,Ae]:void 0;Ie&&A&&!A(Ie,qe)&&g&&g(void 0),n&&n(),m&&m(qe),z()},[A,N,g,n,m,z,B]),re=c.useCallback(()=>{Q.current=0,m&&m(void 0)},[m]),W=Math.max((t?.length??0)*gt(l)-J.height,0),q=c.useCallback(P=>{o&&(t?.length??0)>0&&P>Q.current+600&&(Q.current=P,o())},[t?.length,o]),se=c.useCallback(({scrollOffset:P,scrollUpdateWasRequested:D})=>{!D&&P>=W-600&&q(P)},[W,q]),U=c.useCallback((P,D)=>{Q.current=0;const Se=te.current;let Ae=Se?{...Se}:{};D?Ae[P.key]=D:delete Ae[P.key],!A||A(Ae,B&&N?[B,N]:void 0)||(Ae=D?{[P.key]:D}:{}),g&&g(Ae),P.key!==B&&re()},[A,N,g,re,B]),M=c.useCallback(()=>r.jsxs("div",{className:"h-full flex flex-col items-center justify-center sticky left-0",children:[r.jsx(f.Typography,{variant:"h6",children:"Error fetching data from the data source"}),h?.message&&r.jsx(f.Markdown,{className:"px-4 break-all",source:h.message})]}),[h?.message]),$=c.useCallback(()=>b?r.jsx(St,{}):r.jsxs("div",{className:"flex flex-col overflow-auto items-center justify-center p-2 gap-2 h-full",children:[r.jsx(f.AssignmentIcon,{}),u]}),[u,b]),K=!b&&(t?.length??0)===0,L=h?M():K?$():void 0;return r.jsx("div",{ref:Y,className:f.cn("h-full w-full",k),children:r.jsx(Xt.Provider,{value:{data:t,size:l,cellRenderer:y,columns:I,currentSort:N,onRowClick:s,customView:L,onColumnResize:_,onColumnResizeEnd:j,filter:te.current,onColumnSort:V,onFilterUpdate:U,sortByProperty:B,hoverRow:w??!1,createFilterField:C,rowClassName:E,endAdornment:S,AddColumnComponent:x},children:r.jsx(ms,{outerRef:F,width:J.width,height:J.height,itemCount:(t?.length??0)+(S?1:0),onScroll:se,includeAddColumn:!!x,itemSize:gt(l)},l)})})},oe);function ms({outerRef:e,width:t,height:n,itemCount:o,onScroll:l,itemSize:i,includeAddColumn:s}){const a=c.useCallback(({index:d,style:A})=>r.jsx(Xt.Consumer,{children:({onRowClick:g,data:p,columns:h,size:u="m",cellRenderer:m,hoverRow:b,rowClassName:y,endAdornment:w})=>{if(w&&d===(p??[]).length)return r.jsx("div",{style:{...A,height:"auto",position:"sticky",bottom:0,zIndex:1},children:w});const C=p&&p[d];return r.jsxs(gs,{rowData:C,rowIndex:d,onRowClick:g,columns:h,hoverRow:b,rowClassName:y,style:{...A,top:`calc(${A.top}px + 48px)`},size:u,children:[h.map((E,k)=>{const S=C&&C[E.key];return r.jsx(hs,{dataKey:E.key,cellRenderer:m,column:E,columns:h,rowData:C,cellData:S,rowIndex:d,columnIndex:k},`cell_${E.key}`)}),s&&r.jsx("div",{className:"w-20"})]},`row_${d}`)}}),[]);return r.jsx(kl.FixedSizeList,{outerRef:e,innerElementType:ps,width:t,height:n,overscanCount:4,itemCount:o,onScroll:l,itemSize:i,children:a})}const Wr=c.memo(function({entity:t,collection:n,fullPath:o,width:l,frozen:i,isSelected:s,selectionEnabled:a,size:d,highlightEntity:A,onCollectionChange:g,unhighlightEntity:p,actions:h=[],hideId:u,selectionController:m}){const b=Pe(),y=X(),w=c.useCallback(B=>{m?.toggleEntitySelection(t)},[t,m?.toggleEntitySelection]),C=c.useCallback(B=>{B.stopPropagation(),m?.toggleEntitySelection(t)},[t,m?.toggleEntitySelection]),E=h.length>0,k=h.some(B=>B.collapsed||B.collapsed===void 0),S=h.filter(B=>B.collapsed||B.collapsed===void 0),x=h.filter(B=>B.collapsed===!1);return r.jsxs("div",{onClick:C,className:f.cn("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",i?"sticky left-0":""),style:{width:l,position:i?"sticky":"initial",left:i?0:"initial",contain:"strict"},children:[(E||a)&&r.jsxs("div",{className:"w-34 flex justify-center",children:[x.map((B,N)=>r.jsx(f.Tooltip,{title:B.name,children:r.jsx(f.IconButton,{onClick:I=>{I.stopPropagation(),B.onClick({entity:t,fullPath:o,collection:n,context:y,selectionController:m,highlightEntity:A,unhighlightEntity:p,onCollectionChange:g})},size:b?"medium":"small",children:B.icon})},N)),k&&r.jsx(f.Menu,{trigger:r.jsx(f.IconButton,{size:b?"medium":"small",children:r.jsx(f.MoreVertIcon,{})}),children:S.map((B,N)=>r.jsxs(f.MenuItem,{onClick:I=>{I.stopPropagation(),B.onClick({entity:t,fullPath:o,collection:n,context:y,selectionController:m,highlightEntity:A,unhighlightEntity:p,onCollectionChange:g})},children:[B.icon,B.name]},N))}),a&&r.jsx(f.Tooltip,{title:`Select ${t.id}`,children:r.jsx(f.Checkbox,{size:b?"medium":"small",checked:s,onCheckedChange:w})})]}),!u&&d!=="xs"&&r.jsx("div",{className:"w-[138px] text-center overflow-hidden truncate",children:t?r.jsxs(f.Typography,{onClick:B=>{B.stopPropagation()},className:"font-mono select-all",variant:"caption",color:"secondary",children:[" ",t.id," "]}):r.jsx(f.Skeleton,{})})]})},oe);function bs(e){const t=Pe(),n=!e.forceFilter&&e.filterIsSet&&e.clearFilter&&r.jsxs(f.Button,{variant:"outlined",className:"h-fit-content","aria-label":"filter clear",onClick:e.clearFilter,size:"small",children:[r.jsx(f.FilterListOffIcon,{}),"Clear filter"]}),o=r.jsx(f.Select,{value:e.size,className:"w-16 h-10",size:"small",onValueChange:l=>e.onSizeChanged(l),renderValue:l=>r.jsx("div",{className:"font-medium",children:l.toUpperCase()}),children:["xs","s","m","l","xl"].map(l=>r.jsx(f.SelectItem,{value:l,className:"w-12 font-medium text-center",children:l.toUpperCase()},l))});return r.jsxs("div",{className:f.cn(f.defaultBorderMixin,"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:[r.jsxs("div",{className:"flex items-center gap-2",children:[e.title&&r.jsx("div",{className:"hidden lg:block",children:e.title}),o,e.actionsStart,n]}),r.jsxs("div",{className:"flex items-center gap-2",children:[t&&r.jsx("div",{className:"w-[22px]",children:e.loading&&r.jsx(f.CircularProgress,{size:"small"})}),e.onTextSearch&&r.jsx(f.SearchBar,{onTextSearch:e.onTextSearch,expandable:!0},"search-bar"),e.actions]})]})}const Mo={"==":"==","!=":"!=",">":">","<":"<",">=":">=","<=":"<=",in:"In","not-in":"Not in","array-contains":"Contains","array-contains-any":"Contains Any"},jr=["array-contains-any","in","not-in"];function ys({name:e,value:t,setValue:n,isArray:o,path:l,title:i,previewProperties:s,setHidden:a}){const d=o?["array-contains"]:["==","!=",">","<",">=","<="],[A,g]=c.useState(!1);o?d.push("array-contains-any"):d.push("in","not-in");const[p,h]=t||[d[0],void 0],[u,m]=c.useState(p),[b,y]=c.useState(h),w=b?Array.isArray(b)?b.map(F=>F instanceof Me?F.id:null).filter(Boolean):[b.id]:[];function C(F,Q){const Y=jr.includes(u),J=jr.includes(F);let _=Q;Y!==J&&(_=J?_ instanceof Me?[_]:[]:void 0),m(F),y(_);const j=_!==null&&Array.isArray(_)?_.length>0:_!==void 0;n(F&&j?[F,_]:void 0)}const E=ie(),k=c.useMemo(()=>l?E.getCollection(l):void 0,[l]),S=F=>{C(u,et(F))},x=F=>{C(u,F.map(Q=>et(Q)))},B=jr.includes(u),N=Bt({multiselect:B,path:l,collection:k,onSingleEntitySelected:S,onMultipleEntitiesSelected:x,selectedEntityIds:w,onClose:()=>{a(!1)}}),I=()=>{a(!0),N.open()},T=F=>r.jsx("div",{className:"mb-0.5",onMouseEnter:()=>g(!0),onMouseMove:()=>g(!0),onMouseLeave:()=>g(!1),children:r.jsx(Ge,{disabled:!l,previewProperties:s,size:"medium",onClick:I,reference:F,onHover:A,allowEntityNavigation:!1})});return console.log("ReferenceFilterField",{internalValue:b}),r.jsxs("div",{className:"flex w-[440px] flex-row",children:[r.jsx("div",{className:"w-[120px]",children:r.jsx(f.Select,{value:u,onValueChange:F=>{C(F,b)},renderValue:F=>Mo[F],children:d.map(F=>r.jsx(f.SelectItem,{value:F,children:Mo[F]},F))})}),r.jsxs("div",{className:"flex-grow ml-2 h-full",children:[b&&Array.isArray(b)&&r.jsx("div",{children:b.map((F,Q)=>T(F))}),b&&!Array.isArray(b)&&r.jsx("div",{children:T(b)}),(!b||Array.isArray(b)&&b.length===0)&&r.jsx(f.Button,{onClick:I,variant:"outlined",className:"h-full w-full",children:B?"Select references":"Select reference"})]})]})}const Do={"==":"==","!=":"!=",">":">","<":"<",">=":">=","<=":"<=",in:"In","not-in":"Not in","array-contains":"Contains","array-contains-any":"Any"},Hr=["array-contains-any","in","not-in"];function vs({name:e,value:t,setValue:n,dataType:o,isArray:l,enumValues:i,title:s}){const a=l?["array-contains"]:["==","!=",">","<",">=","<="];i&&(l?a.push("array-contains-any"):a.push("in","not-in"));const[d,A]=t||[a[0],void 0],[g,p]=c.useState(d),[h,u]=c.useState(A);function m(y,w){let C=w;const E=Hr.includes(g),k=Hr.includes(y);E!==k&&(C=k?typeof w=="string"||typeof w=="number"?[w]:[]:""),typeof C=="number"&&isNaN(C)&&(C=void 0),p(y),u(C);const S=C!==null&&Array.isArray(C)?C.length>0:C!==void 0;n(y&&S?[y,C]:void 0)}const b=Hr.includes(g);return r.jsxs("div",{className:"flex w-[440px] items-center",children:[r.jsx("div",{className:"w-[80px]",children:r.jsx(f.Select,{value:g,position:"item-aligned",onValueChange:y=>{m(y,h)},renderValue:y=>Do[y],children:a.map(y=>r.jsx(f.SelectItem,{value:y,children:Do[y]},y))})}),r.jsxs("div",{className:"flex-grow ml-2",children:[!i&&r.jsx(f.TextField,{type:o==="number"?"number":void 0,value:h!==void 0?String(h):"",onChange:y=>{const w=o==="number"?parseFloat(y.target.value):y.target.value;m(g,w)},endAdornment:h&&r.jsx(f.IconButton,{className:"absolute right-3 top-2",onClick:y=>m(g,void 0),children:r.jsx(f.ClearIcon,{})})}),i&&r.jsx(f.Select,{position:"item-aligned",value:h!==void 0?Array.isArray(h)?h.map(y=>String(y)):String(h):l?[]:"",onValueChange:y=>{m(g,o==="number"?parseInt(y):y)},multiple:b,endAdornment:h&&r.jsx(f.IconButton,{className:"absolute right-3 top-2",onClick:y=>m(g,void 0),children:r.jsx(f.ClearIcon,{})}),renderValue:y=>r.jsx(we,{enumKey:y,enumValues:i,size:"small"},`select_value_${e}_${y}`),children:i.map(y=>r.jsx(f.SelectItem,{value:String(y.id),children:r.jsx(we,{enumKey:String(y.id),enumValues:i,size:"small"})},`select_value_${e}_${y.id}`))})]})]})}function ws({name:e,title:t,value:n,setValue:o}){function l(a){o(a!==void 0?["==",a]:void 0)}const i=n&&n[1],s=!!n;return r.jsx("div",{className:"w-[200px]",children:r.jsx(f.BooleanSwitchWithLabel,{value:i,allowIndeterminate:!0,onValueChange:a=>l(a===null?void 0:a),label:s?i?`${t} is true`:`${t} is false`:"No filter"})})}const Oo={"==":"==","!=":"!=",">":">","<":"<",">=":">=","<=":"<=","not-in":"not in",in:"in","array-contains":"Contains","array-contains-any":"Any"},Vo=["array-contains-any","in"];function Cs({name:e,isArray:t,mode:n,value:o,setValue:l,title:i}){const{locale:s}=X(),a=t?["array-contains"]:["==","!=",">","<",">=","<="],[d,A]=o||[a[0],void 0],[g,p]=c.useState(d),[h,u]=c.useState(A);function m(b,y){let w=y;const C=Vo.includes(g),E=Vo.includes(b);C!==E&&(w=E?y?[y]:[]:""),p(b),u(w===null?void 0:w);const k=w!==null&&Array.isArray(w)?w.length>0:w!==void 0;l(b&&k?[b,w]:void 0)}return r.jsxs("div",{className:"flex w-[440px] items-center",children:[r.jsx("div",{className:"w-[80px]",children:r.jsx(f.Select,{value:g,onValueChange:b=>{m(b,h)},renderValue:b=>Oo[b],children:a.map(b=>r.jsx(f.SelectItem,{value:b,children:Oo[b]},b))})}),r.jsx("div",{className:"flex-grow ml-2",children:r.jsx(f.DateTimeField,{mode:n,size:"medium",locale:s,value:h,onChange:b=>{m(g,b===null?void 0:b)},clearable:!0})})]})}const Go="collectionGroupParent";function Yo(e,t){return c.useMemo(()=>e.propertiesOrder?zo(e,e.propertiesOrder):Es(e,t),[e,t])}function zo(e,t){return t.flatMap(n=>{const o=e.properties[n];return o?o.hideFromCollection?[null]:o.disabled&&typeof o.disabled=="object"&&o.disabled.hidden?[null]:o.dataType==="map"&&o.spreadChildren&&o.properties?Jr(o,n):[{key:n,disabled:!!o.disabled||!!o.readOnly}]:e.additionalFields?.find(i=>i.key===n)?[{key:n,disabled:!0}]:e.subcollections&&e.subcollections.find(s=>zr(s)===n)?[{key:n,disabled:!0}]:e.collectionGroup&&n===Go?[{key:n,disabled:!0}]:[null]}).filter(Boolean)}function Es(e,t){const n=Object.keys(e.properties),o=e.additionalFields??[],l=e.subcollections??[],i=[...n,...o.map(s=>s.key)];if(t){const s=l.map(a=>zr(a));i.push(...s.filter(a=>!i.includes(a)))}return e.collectionGroup&&i.push(Go),zo(e,i)}function Jr(e,t,n){return e.dataType==="map"&&e.spreadChildren&&e.properties?Object.entries(e.properties).flatMap(([o,l])=>Jr(l,`${t}.${o}`,n||!!e.disabled||!!e.readOnly)):[{key:t,disabled:n||!!e.disabled||!!e.readOnly}]}const Bs={},Uo=c.createContext(Bs),ks=()=>c.useContext(Uo),qr=c.memo(function({forceFilter:t,actionsStart:n,actions:o,title:l,tableRowActionsBuilder:i,uniqueFieldValidator:s,getPropertyFor:a,onValueChange:d,selectionController:A,highlightedEntities:g,onEntityClick:p,onColumnResize:h,onSizeChanged:u,textSearchEnabled:m=!1,hoverRow:b=!0,inlineEditing:y=!1,additionalFields:w,displayedColumnIds:C,defaultSize:E,properties:k,tableController:{data:S,dataLoading:x,noMoreToLoad:B,dataLoadingError:N,filterValues:I,setFilterValues:T,sortBy:F,setSortBy:Q,setSearchString:Y,clearFilter:J,itemCount:_,setItemCount:j,pageSize:te=50,paginationEnabled:z,checkFilterCombination:V,setPopupCell:re},filterable:W=!0,sortable:q=!0,endAdornment:se,AddColumnComponent:U,AdditionalHeaderWidget:M,additionalIDHeaderWidget:$,emptyComponent:K,getIdColumnWidth:L}){const P=Pe(),D=!!t,Se=A?.selectedEntities?.length>0?A?.selectedEntities:g,Ae=X(),[ae,Ie]=c.useState(E??"m"),[qe,Ye]=c.useState(void 0),Oe=Se?.map(H=>H.id),Ft=!!I&&Object.keys(I).length>0,mt=()=>{!z||x||B||_!==void 0&&j?.(_+te)},Nt=c.useCallback(()=>{j?.(te)},[te]),Ze=c.useCallback(({rowData:H})=>{if(console.debug("EntityCollectionTable click"),!y)return p&&p(H)},[p,y]),Xe=c.useCallback(H=>{u&&u(H),Ie(H)},[]),Tt=c.useCallback(H=>Y?.(H),[]),Ke=c.useMemo(()=>w?w.map(H=>({[H.key]:H})).reduce((H,ge)=>({...H,...ge}),{}):{},[w]);c.useEffect(()=>{const H=ge=>{ge.keyCode===27&&Qt()};return document.addEventListener("keydown",H,!1),()=>{document.removeEventListener("keydown",H,!1)}});const Pt=c.useCallback(H=>{Ye(H)},[]),Qt=c.useCallback(()=>{Ye(void 0)},[]),G=s,O=c.useCallback(({column:H,columnIndex:ge,rowData:de,rowIndex:Qe})=>{const le=de,ze=H.key;let Ue=H.custom?.disabled;const vn=le.values?Le(le.values,ze):void 0,ot=a?.({propertyKey:ze,propertyValue:vn,entity:le})??H.custom.resolvedProperty;return ot?.disabled||(Ue=!1),ot?r.jsx(ne,{children:le?r.jsx(cs,{readonly:!y,align:H.align??"left",propertyKey:ze,property:ot,value:le?.values?Le(le.values,ze):void 0,customFieldValidator:G,columnIndex:ge,width:H.width,height:gt(ae),entity:le,disabled:Ue,path:le.path},`property_table_cell_${le.id}_${ze}`):Ve()}):null},[G,y,ae,Oe]),Z=c.useCallback(({column:H,rowData:ge,width:de})=>{const Qe=ge,le=Ke[H.key],ze=le.dependencies?Object.entries(Qe.values).filter(([ot,wl])=>le.dependencies.includes(ot)).reduce((ot,wl)=>({...ot,...wl}),{}):Qe,Ue=le.Builder;if(!Ue&&!le.value)throw new Error("When using additional fields you need to provide a Builder or a value");const vn=Ue?r.jsx(Ue,{entity:Qe,context:Ae}):r.jsx(r.Fragment,{children:le.value?.({entity:Qe,context:Ae})});return r.jsx(_r,{width:de,size:ae,value:ze,selected:!1,disabled:!0,align:"left",allowScroll:!1,showExpandIcon:!1,disabledTooltip:"This column can't be edited directly",children:r.jsx(ne,{children:vn})},`additional_table_cell_${Qe.id}_${H.key}`)},[Ke,ae,Oe]),R=c.useMemo(()=>{const H=Object.entries(k).flatMap(([de,Qe])=>Jr(Qe,de)).map(({key:de,disabled:Qe})=>{const le=wr(k,de);if(!le)throw Error("Internal error: no property found in path "+de);const ze=Lo(le);return{key:de,align:Oi(le),icon:Ue=>pe(le,"small"),title:le.name??de,sortable:q&&(t?Object.keys(t).includes(de):!0),filter:!D&&ze,width:Eo(le),resizable:!0,custom:{resolvedProperty:le,disabled:Qe},AdditionalHeaderWidget:({onHover:Ue})=>M?r.jsx(M,{property:le,propertyKey:de,onHover:Ue}):void 0}}),ge=w?w.map(de=>({key:de.key,align:"left",sortable:!1,title:de.name,width:de.width??200})):[];return[...H,...ge]},[w,D,t,k,q]),ee=c.useMemo(()=>({key:"id_ewcfedcswdf3",width:L?.()??(P?160:130),title:"ID",resizable:!1,frozen:P,headerAlign:"center",align:"center",AdditionalHeaderWidget:()=>$}),[L,P]),ce=c.useMemo(()=>[ee,...C.map(H=>R.find(ge=>ge.key===H.key)).filter(Boolean)],[R,C,ee]),De=c.useCallback(H=>{const ge=H.column,de=H.columns,Qe=ge.key;if(H.columnIndex===0)return i?i({entity:H.rowData,size:ae,width:ge.width,frozen:ge.frozen}):r.jsx(Wr,{entity:H.rowData,width:ge.width,frozen:ge.frozen,isSelected:!1,size:ae});if(Ke[Qe])return Z(H);if(H.columnIndex<de.length+1)return O(H);throw Error("Internal: columns not mapped properly")},[Ke,i,ae,Z,O]),Mt=c.useCallback(H=>{T?.({...H,...t})},[t]);return r.jsx(Uo.Provider,{value:{setPopupCell:re,select:Pt,onValueChange:d,size:ae,selectedCell:qe,selectedEntityIds:Oe},children:r.jsxs("div",{className:"h-full w-full flex flex-col bg-white dark:bg-gray-950",children:[r.jsx(bs,{forceFilter:D,filterIsSet:Ft,onTextSearch:m?Tt:void 0,clearFilter:J,size:ae,onSizeChanged:Xe,title:l,actionsStart:n,actions:o,loading:x}),r.jsx(Qo,{data:S,columns:ce,cellRenderer:De,onRowClick:y?void 0:p?Ze:void 0,onEndReached:mt,onResetPagination:Nt,error:N,paginationEnabled:z,onColumnResize:h,size:ae,loading:x,filter:I,onFilterUpdate:T?Mt:void 0,sortBy:F,onSortByUpdate:Q,hoverRow:b,emptyComponent:K,checkFilterCombination:V,createFilterField:W?xs:void 0,rowClassName:c.useCallback(H=>Oe?.includes(H.id)?"bg-gray-100 bg-opacity-75 dark:bg-gray-800 dark:bg-opacity-75":"",[Oe]),className:"flex-grow",endAdornment:se,AddColumnComponent:U})]})})},oe);function xs({id:e,filterValue:t,setFilterValue:n,column:o,hidden:l,setHidden:i}){if(!o.custom)return null;const{resolvedProperty:s}=o.custom,a=s?.dataType==="array",d=a?s.of:s;if(!d)return null;if(d.dataType==="reference")return r.jsx(ys,{value:t,setValue:n,name:e,isArray:a,path:d.path,title:s?.name,previewProperties:d?.previewProperties,hidden:l,setHidden:i});if(d.dataType==="number"||d.dataType==="string"){const A=d.name,g=d.enumValues?$e(d.enumValues):void 0;return r.jsx(vs,{value:t,setValue:n,name:e,dataType:d.dataType,isArray:a,enumValues:g,title:A})}else if(d.dataType==="boolean"){const A=d.name;return r.jsx(ws,{value:t,setValue:n,name:e,title:A})}else if(d.dataType==="date"){const A=d.name;return r.jsx(Cs,{value:t,setValue:n,name:e,mode:d.mode,isArray:a,title:A})}return r.jsx("div",{children:`Currently the filter field ${s.dataType} is not supported`})}function Lo(e,t=!1){return t?["string","number","date","reference"].includes(e.dataType):e.dataType==="array"?e.of?Lo(e.of,!0):!1:["string","number","boolean","date","reference","array"].includes(e.dataType)}function Ss({data:e,entitiesDisplayedFirst:t}){if(!t)return e;const n=new Set(t.map(o=>o.id));return[...t,...e.filter(o=>!n.has(o.id))]}function Is(e,t,n=5e3){const[o,l]=c.useState(e),i=c.useRef(o.length??0),s=c.useRef(!1),a=c.useRef(t),d=!oe(a.current,t),A=e.length>=i.current||d;return c.useEffect(()=>{const g=()=>{oe(o,e)||(a.current=t,i.current=e.length,l(e)),s.current=!1};s.current=!0;let p;return A?g():p=setTimeout(g,n),()=>{clearTimeout(p),s.current&&A&&g()}},[e,n,t,A]),A?e:o}const Fs=50;function Zr({fullPath:e,collection:t,entitiesDisplayedFirst:n,lastDeleteTimestamp:o,forceFilter:l}){const{initialFilter:i,initialSort:s,forceFilter:a}=t,[d,A]=c.useState(void 0),g=ie(),p=Te(),h=c.useMemo(()=>g.resolveAliasesFrom(e),[e,g.resolveAliasesFrom]),u=l??a,m=t.pagination===void 0||!!t.pagination,b=typeof t.pagination=="number"?t.pagination:Fs,[y,w]=c.useState(),[C,E]=c.useState(m?b:void 0),k=c.useCallback((z,V)=>p.isFilterCombinationValid?p.isFilterCombinationValid({path:h,collection:t,filterValues:z,sortBy:V}):!0,[]),S=c.useMemo(()=>{if(s&&u&&!k(u,s)){console.warn("Initial sort is not compatible with the force filter. Ignoring initial sort");return}return s},[s,u]),[x,B]=c.useState(u??i??void 0),[N,I]=c.useState(S),T=c.useCallback(()=>B(u??void 0),[u]),F=c.useCallback(z=>{if(u){console.warn("Filter is not compatible with the force filter. Ignoring filter");return}z&&Object.keys(z).length===0?B(void 0):B(z)},[u]),{data:Q,dataLoading:Y,noMoreToLoad:J,dataLoadingError:_}=lo({path:e,collection:t,filterValues:x,sortBy:N,searchString:y,itemCount:C}),j=Ss({data:Q,entitiesDisplayedFirst:n});return{data:Is(j,{filterValues:x,sortBy:N,searchString:y,lastDeleteTimestamp:o}),dataLoading:Y,noMoreToLoad:J,dataLoadingError:_,filterValues:x,setFilterValues:F,sortBy:N,setSortBy:I,searchString:y,setSearchString:w,clearFilter:T,itemCount:C,setItemCount:E,paginationEnabled:m,pageSize:b,checkFilterCombination:k,popupCell:d,setPopupCell:A}}function $o({entityOrEntitiesToDelete:e,collection:t,onClose:n,open:o,callbacks:l,onEntityDelete:i,onMultipleEntitiesDelete:s,path:a}){const d=Te(),A=je(),[g,p]=c.useState(!1),[h,u]=c.useState(),[m,b]=c.useState(),y=X();c.useEffect(()=>{if(e){const F=Array.isArray(e)&&e.length===1?e[0]:e;u(F),b(Array.isArray(F))}},[e]);const w=c.useMemo(()=>Be({collection:t,path:a,fields:y.propertyConfigs}),[t,a]),C=c.useCallback(()=>{n()},[n]),E=c.useCallback(F=>{console.debug("Deleted",F)},[]),k=c.useCallback((F,Q)=>{A.open({type:"error",message:"Error deleting: "+Q?.message}),console.error("Error deleting entity"),console.error(Q)},[w.name]),S=c.useCallback((F,Q)=>{A.open({type:"error",message:"Error before deleting: "+Q?.message}),console.error(Q)},[w.name]),x=c.useCallback((F,Q)=>{A.open({type:"error",message:"Error after deleting: "+Q?.message}),console.error(Q)},[w.name]),B=c.useCallback(F=>io({dataSource:d,entity:F,collection:w,callbacks:l,onDeleteSuccess:E,onDeleteFailure:k,onPreDeleteHookError:S,onDeleteSuccessHookError:x,context:y}),[d,w,l,E,k,S,x,y]),N=c.useCallback(async()=>{h&&(p(!0),m?Promise.all(h.map(B)).then(F=>{p(!1),s&&h&&s(a,h),F.every(Boolean)?A.open({type:"success",message:`${w.name}: multiple deleted`}):F.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`}),n()}):B(h).then(F=>{p(!1),F&&(i&&h&&i(a,h),A.open({type:"success",message:`${w.singularName??w.name} deleted`}),n())}))},[h,m,B,s,a,n,A,w.name,i]);let I;if(h&&m)I=r.jsx(r.Fragment,{children:"Multiple entities"});else{const F=h;I=F?r.jsx(Yr,{entity:F,collection:t,path:a}):r.jsx(r.Fragment,{})}const T=m?r.jsxs(r.Fragment,{children:[r.jsx("b",{children:w.name}),": Confirm multiple delete?"]}):`Would you like to delete this ${w.singularName??w.name}?`;return r.jsxs(f.Dialog,{maxWidth:"2xl","aria-labelledby":"delete-dialog",open:o,onOpenChange:F=>F?void 0:n(),children:[r.jsxs(f.DialogContent,{fullHeight:!0,children:[r.jsx(f.Typography,{variant:"subtitle2",className:"p-4",children:T}),!m&&r.jsx("div",{className:"p-4",children:I})]}),r.jsxs(f.DialogActions,{children:[g&&r.jsx(f.CircularProgress,{size:"small"}),r.jsx(f.Button,{onClick:C,disabled:g,variant:"text",color:"primary",children:"Cancel"}),r.jsx(f.Button,{autoFocus:!0,disabled:g,onClick:N,variant:"filled",color:"primary",children:"Ok"})]})]})}function Kt(e){return Array.isArray(e)?e:e?[e]:[]}function Ns({collection:e,relativePath:t,parentCollectionIds:n,onNewClick:o,onMultipleDeleteClick:l,selectionEnabled:i,path:s,selectionController:a,tableController:d,collectionEntitiesCount:A}){const g=X(),p=g.plugins??[],h=_e(),u=Pe(),m=a.selectedEntities,b=at(e,h,Ne(s),null)&&o&&(u?r.jsxs(f.Button,{id:`add_entity_${s}`,onClick:o,startIcon:r.jsx(f.AddIcon,{}),size:"large",variant:"filled",color:"primary",children:["Add ",e.singularName??e.name]}):r.jsx(f.Button,{id:`add_entity_${s}`,onClick:o,size:"medium",variant:"filled",color:"primary",children:r.jsx(f.AddIcon,{})})),y=Ht(e,h,Ne(s),null);let w;if(i){const k=u?r.jsxs(f.Button,{variant:"text",disabled:!m?.length||!y,startIcon:r.jsx(f.DeleteIcon,{}),onClick:l,color:"primary",className:"lg:w-20",children:["(",m?.length,")"]}):r.jsx(f.IconButton,{color:"primary",disabled:!m?.length||!y,onClick:l,children:r.jsx(f.DeleteIcon,{})});w=r.jsx(f.Tooltip,{title:y?"Delete":"You have selected at least one entity you cannot delete",children:k})}const C={path:s,relativePath:t,parentCollectionIds:n,collection:e,selectionController:a,context:g,tableController:d,collectionEntitiesCount:A},E=Kt(e.Actions).map((k,S)=>r.jsx(ne,{children:r.jsx(k,{...C})},`actions_${S}`));return p&&p.forEach((k,S)=>{k.collections?.CollectionActions&&E.push(...Kt(k.collections?.CollectionActions).map((x,B)=>r.jsx(ne,{children:r.jsx(x,{...C,...k.collections?.collectionActionsProps})},`plugin_actions_${S}_${B}`)))}),r.jsxs(r.Fragment,{children:[E,w,b]})}function Ts({containerRef:e,innerRef:t,x:n,y:o,onMove:l}){let i=0,s=0;const a=c.useRef(!1),d=m=>{if(m.button!==0||!e.current||m.defaultPrevented||m.innerClicked)return;const{x:b,y}=e.current.getBoundingClientRect();i=m.screenX-b,s=m.screenY-y,document.addEventListener("mousemove",h),document.addEventListener("mouseup",p),document.addEventListener("selectstart",g),a.current=!0},A=m=>{m.innerClicked=!0},g=m=>{m.preventDefault(),m.stopPropagation()},p=m=>{document.removeEventListener("mousemove",h),document.removeEventListener("mouseup",p),document.removeEventListener("selectstart",g),m.stopPropagation(),a.current=!1},h=m=>{m.target.localName==="input"||!a.current||(l({x:m.screenX-i,y:m.screenY-s}),m.stopPropagation())},u=()=>{e.current&&(e.current.style.top=`${o}px`,e.current.style.left=`${n}px`)};c.useEffect(()=>{const m=e.current,b=t.current;if(!(!m||!b))return b&&b.addEventListener("mousedown",A),m&&m.addEventListener("mousedown",d),u(),()=>{m&&m.removeEventListener("mousedown",d),b&&b.removeEventListener("mousedown",A)}})}function Ps(){const[e,t]=c.useState({width:0,height:0});return c.useLayoutEffect(()=>{function n(){t({width:window.innerWidth,height:window.innerHeight})}return window.addEventListener("resize",n),n(),()=>window.removeEventListener("resize",n)},[]),e}const Qs=({onResize:e})=>{const t=c.useRef(0),n=c.useRef(null),o=c.useRef(e);o.current=e;const l=c.useCallback(s=>{t.current&&cancelAnimationFrame(t.current),t.current=requestAnimationFrame(()=>{o.current(s)})},[]),i=c.useCallback(()=>{const s=n.current;s&&s.contentDocument&&s.contentDocument.defaultView&&s.contentDocument.defaultView.addEventListener("resize",l)},[l]);return c.useEffect(()=>{const s=n.current;return()=>{s&&s.contentDocument&&s.contentDocument.defaultView&&s.contentDocument.defaultView.removeEventListener("resize",l)}},[l]),r.jsx("object",{onLoad:i,ref:n,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 Ms(e){return e.open?r.jsx(Ds,{...e}):null}function Ds({tableKey:e,entity:t,customFieldValidator:n,propertyKey:o,collection:l,path:i,cellRect:s,open:a,onClose:d,onCellValueChange:A,container:g}){const p=Te(),h=X(),[u,m]=c.useState(),[b,y]=c.useState(),w=t?.id,[C,E]=c.useState(t);c.useEffect(()=>w&&l?p.listenEntity?.({path:i,entityId:w,collection:l,onUpdate:V=>{E(V),S(V?.values)}}):()=>{},[p,w,l,i,a]);const[k,S]=c.useState(C?.values),x=l?Be({collection:l,path:i,values:k,entityId:w,fields:h.propertyConfigs}):void 0,B=Ps(),N=c.useRef(null),I=c.useRef(null),T=c.useRef(!1),F=c.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]),Q=c.useCallback(({x:V,y:re})=>{const W=N.current?.getBoundingClientRect();if(!W)throw Error("normalizePosition called before draggableBoundingRect is set");return{x:Math.max(0,Math.min(V,B.width-W.width)),y:Math.max(0,Math.min(re,B.height-W.height))}},[B]),Y=c.useCallback(V=>{const re=N.current?.getBoundingClientRect();if(!s||!re)return;const W=V??Q(F());(!b||W.x!==b.x||W.y!==b.y)&&y(W)},[s,F,Q,b]);Ts({containerRef:N,innerRef:I,x:b?.x,y:b?.y,onMove:Y}),c.useEffect(()=>{T.current=!1},[o,C]),c.useLayoutEffect(()=>{const V=N.current?.getBoundingClientRect();!s||!V||T.current||(Y(),T.current=!0)},[s,Y,T.current]),c.useLayoutEffect(()=>{Y(b)},[B,s]);const J=c.useMemo(()=>{if(!(!x||!w))return Po(w,o&&x.properties[o]?{[o]:x.properties[o]}:{},n)},[x,w,o,n]),_=c.useCallback(()=>Y(b),[b,Y]),j=async V=>(m(null),l&&C&&A&&o?A({value:V[o],propertyKey:o,entity:C,setError:m,onValueUpdated:()=>{},fullPath:i,context:h}):Promise.resolve());if(!C)return r.jsx(r.Fragment,{});const te=C&&r.jsxs("div",{className:`text-gray-900 dark:text-white overflow-auto rounded rounded-md bg-white dark:bg-gray-950 ${a?"":"hidden"} cursor-grab max-w-[100vw]`,children:[r.jsx(Ce.Formik,{initialValues:C?.values??{},enableReinitialize:!0,validationSchema:J,validateOnMount:!0,validate:V=>console.debug("Validating",V),onSubmit:(V,re)=>{j(V).then(()=>d()).finally(()=>re.setSubmitting(!1))},children:({values:V,setFieldValue:re,handleSubmit:W,isSubmitting:q})=>{if(c.useEffect(()=>{oe(V,k)||S(V)},[V]),!C)return r.jsx(he,{error:"PopupFormField misconfiguration"});if(!x)return r.jsx(r.Fragment,{});const se=q,U={collection:x,entityId:w,values:V,path:i,setFieldValue:re,save:j},M=o&&tt(x.properties,o),$=o&&M?{propertyKey:o,disabled:q||it(M)||!!M.disabled,property:M,includeDescription:!1,underlyingValueHasChanged:!1,context:U,tableMode:!0,partOfArray:!1,partOfBlock:!1,autoFocus:a}:void 0;let K=r.jsx(r.Fragment,{children:r.jsx("div",{className:"w-[560px] max-w-full max-h-[85vh]",children:r.jsxs(Ce.Form,{onSubmit:W,noValidate:!0,children:[r.jsx("div",{className:"mb-1 p-4 flex flex-col relative",children:r.jsx("div",{ref:I,className:"cursor-auto",style:{cursor:"auto !important"},children:$&&r.jsx(nt,{...$})})}),r.jsx(f.DialogActions,{children:r.jsx(f.Button,{variant:"filled",color:"primary",type:"submit",disabled:se,children:"Save"})})]})},`popup_form_${e}_${w}_${o}`)});const L=h.plugins;return L&&L.forEach(P=>{P.form?.provider&&(K=r.jsx(P.form.provider.Component,{status:"existing",path:i,collection:x,entity:C,context:h,currentEntityId:w,formContext:U,...P.form.provider.props,children:K}))}),K}}),u&&r.jsx(f.Typography,{color:"error",children:u.message})]}),z=r.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 ${a?"visible":"invisible"} cursor-grab overflow-visible`,ref:N,children:[r.jsx(Qs,{onResize:_}),r.jsxs("div",{className:"overflow-hidden",children:[te,r.jsx("div",{className:"absolute -top-3.5 -right-3.5 bg-gray-500 rounded-full",style:{width:"32px",height:"32px"},children:r.jsx(f.IconButton,{size:"small",onClick:V=>{V.stopPropagation(),d()},children:r.jsx(f.ClearIcon,{className:"text-white",size:"small"})})})]})]},`draggable_${o}_${w}_${a}`);return r.jsx(Tl.Root,{asChild:!0,container:g,children:z})}const Os={icon:r.jsx(f.KeyboardTabIcon,{}),name:"Edit",collapsed:!1,onClick({entity:e,collection:t,context:n,highlightEntity:o,unhighlightEntity:l}){return o?.(e),n.onAnalyticsEvent?.("entity_click",{path:e.path,entityId:e.id}),n.sideEntityController.open({entityId:e.id,path:e.path,collection:t,updateUrl:!0,onClose:()=>l?.(e)}),Promise.resolve(void 0)}},_o={icon:r.jsx(f.FileCopyIcon,{}),name:"Copy",onClick({entity:e,collection:t,context:n,highlightEntity:o,unhighlightEntity:l}){return o?.(e),n.onAnalyticsEvent?.("copy_entity_click",{path:e.path,entityId:e.id}),n.sideEntityController.open({entityId:e.id,path:e.path,copy:!0,collection:t,updateUrl:!0,onClose:()=>l?.(e)}),Promise.resolve(void 0)}},Wo={icon:r.jsx(f.DeleteIcon,{}),name:"Delete",onClick({entity:e,fullPath:t,collection:n,context:o,selectionController:l,onCollectionChange:i,sideEntityController:s}){const{closeDialog:a}=o.dialogsController.open({key:"delete_entity_dialog_"+e.id,Component:({open:d})=>{if(!n||!t)throw new Error("deleteEntityAction: Collection is undefined");return r.jsx($o,{entityOrEntitiesToDelete:e,path:t,collection:n,callbacks:n.callbacks,open:d,onEntityDelete:()=>{o.onAnalyticsEvent?.("single_entity_deleted",{path:t}),l?.setSelectedEntities(l.selectedEntities.filter(A=>A.id!==e.id)),i?.(),s?.close()},onClose:a})}});return Promise.resolve(void 0)}},Vs="collectionGroupParent",Xr=c.memo(function({fullPath:t,parentCollectionIds:n,isSubCollection:o,className:l,...i}){const s=Te(),a=ie(),d=We(),A=_e(),g=dt(),p=X(),h=c.useRef(null),u=c.useMemo(()=>{const O=g?.getCollectionConfig(t);return O?Fe(i,O):i},[i,t,g?.getCollectionConfig]),m=at(u,A,Ne(t),null),[b,y]=c.useState(void 0),[w,C]=c.useState(void 0),[E,k]=c.useState(0),[S,x]=c.useState(0),B=c.useCallback(()=>{const O=b;setTimeout(()=>{O===b&&y(void 0)},2400)},[b]),N=c.useCallback(O=>Cr(u,A,Ne(t),O??null)?u.inlineEditing===void 0||u.inlineEditing:!1,[u,A,t]),I=u.selectionEnabled===void 0||u.selectionEnabled,T=!N(),[F,Q]=c.useState(!1),Y=Kr(),J=u.selectionController??Y,{selectedEntities:_,toggleEntitySelection:j,isEntitySelected:te,setSelectedEntities:z}=J;c.useEffect(()=>{C(void 0)},[_]);const V=Zr({fullPath:t,collection:u,entitiesDisplayedFirst:[],lastDeleteTimestamp:E}),re=c.useRef(Math.random().toString(36)),W=V.popupCell,q=c.useCallback(()=>{V.setPopupCell?.(void 0)},[V.setPopupCell]),se=c.useCallback(O=>(y(O),p.onAnalyticsEvent?.("edit_entity_clicked",{path:O.path,entityId:O.id}),d.open({entityId:O.id,path:O.path,collection:u,updateUrl:!0,onClose:B})),[t,u,d]),U=c.useCallback(()=>{p.onAnalyticsEvent?.("new_entity_click",{path:t}),d.open({path:t,collection:u,updateUrl:!0,onClose:B})},[t,u,d]);c.useCallback(O=>{p.onAnalyticsEvent?.("single_delete_dialog_open",{path:t}),C(O)},[p,t]);const M=c.useCallback(()=>{p.onAnalyticsEvent?.("multiple_delete_dialog_open",{path:t}),C(_)},[p,t,_]),$=c.useCallback((O,Z)=>{p.onAnalyticsEvent?.("single_entity_deleted",{path:t}),z(R=>R.filter(ee=>ee.id!==Z.id)),k(Date.now())},[p,t,z]),K=c.useCallback((O,Z)=>{p.onAnalyticsEvent?.("multiple_entities_deleted",{path:t}),z([]),C(void 0),k(Date.now())},[z]);let L;p?.plugins&&(L=p.plugins.find(O=>O.collectionView?.AddColumnComponent)?.collectionView?.AddColumnComponent);const P=c.useCallback((O,Z)=>{if(g){const R=g.getCollectionConfig(O),ee=Fe(R,Z);g.onCollectionModified(O,ee)}},[g]),D=c.useCallback(({width:O,key:Z})=>{if(!tt(u.properties,Z))return;const R=jo(Z,O);P(t,R)},[u,P,t]),Se=c.useCallback(O=>{g&&P(t,{defaultSize:O})},[P,t,g]),Ae=at(u,A,Ne(t),null),ae=c.useCallback(({name:O,value:Z,property:R,entityId:ee})=>s.checkUniqueField(t,O,Z,ee),[t]),Ie=({fullPath:O,context:Z,value:R,propertyKey:ee,onValueUpdated:ce,setError:De,entity:Mt})=>{const H=Ce.setIn({...Mt.values},ee,R),ge={path:O,entityId:Mt.id,values:H,previousValues:Mt.values,collection:u,status:"existing"};return Ir({...ge,collection:u,callbacks:u.callbacks,dataSource:s,context:Z,onSaveSuccess:()=>ce(),onSaveFailure:de=>{console.error("Save failure"),console.error(de),De(de)}})},qe=a.resolveAliasesFrom(t),Ye=c.useMemo(()=>Be({collection:u,path:t,fields:p.propertyConfigs}),[u,t]),Oe=c.useCallback(({propertyKey:O,propertyValue:Z,entity:R})=>{let ee=tt(u.properties,O);return ee||(ee=tt(Ye.properties,O)),ke({propertyKey:O,propertyOrBuilder:ee,path:t,propertyValue:Z,values:R.values,entityId:R.id,fields:p.propertyConfigs})},[u.properties,p.propertyConfigs,t,Ye.properties]),Ft=Yo(Ye,!0),mt=c.useMemo(()=>{const O=u.subcollections?.map(R=>({key:zr(R),name:R.name,width:200,dependencies:[],Builder:({entity:ee})=>r.jsx(f.Button,{color:"primary",variant:"outlined",startIcon:r.jsx(f.KeyboardTabIcon,{size:"small"}),onClick:ce=>{ce.stopPropagation(),d.open({path:t,entityId:ee.id,selectedSubPath:R.id??R.path,collection:u,updateUrl:!0})},children:R.name})}))??[],Z=u.collectionGroup?[{key:Vs,name:"Parent entities",width:260,dependencies:[],Builder:({entity:R})=>{const ee=a.getParentReferencesFromPath(R.path);return r.jsx(r.Fragment,{children:ee.map(ce=>r.jsx(Ge,{reference:ce,size:"tiny"},ce.path+"/"+ce.id))})}}]:[];return[...u.additionalFields??[],...O,...Z]},[u,t]),Nt=c.useCallback(()=>{k(Date.now())},[]),Ze=Pe(),Xe=c.useCallback(({entity:O,customEntityActions:Z})=>{const R=O?Ht(u,A,Ne(t),O):!0,ee=[Os];return Ae&&ee.push(_o),R&&ee.push(Wo),Z&&ee.push(...Z),ee},[A,u,Ae,t]),Tt=c.useCallback(()=>{const O=Xe({}),Z=O.filter(ce=>ce.collapsed!==!1),ee=O.filter(ce=>ce.collapsed===!1).length*(Ze?40:30);return(Ze?80+ee:70+ee)+(Z.length>0?Ze?40:30:0)},[Ze,Xe]),Ke=c.useCallback(({entity:O,size:Z,width:R,frozen:ee})=>{const ce=te(O),De=Xe({entity:O,customEntityActions:u.entityActions});return r.jsx(Wr,{entity:O,width:R,frozen:ee,isSelected:ce,selectionEnabled:I,size:Z,highlightEntity:y,unhighlightEntity:B,collection:u,fullPath:t,actions:De,hideId:u?.hideIdFromCollection,onCollectionChange:Nt,selectionController:J})},[te,u,A,t,I,j,Ae]),Pt=r.jsx(f.Popover,{open:F,onOpenChange:Q,enabled:!!u.description,trigger:r.jsxs("div",{className:"flex flex-col items-start",children:[r.jsx(f.Typography,{variant:"subtitle1",className:`leading-none truncate max-w-[160px] lg:max-w-[240px] ${u.description?"cursor-pointer":"cursor-auto"}`,onClick:u.description?O=>{Q(!0),O.stopPropagation()}:void 0,children:`${u.name}`}),r.jsx(Gs,{fullPath:t,collection:u,filter:V.filterValues,sortBy:V.sortBy,onCountChange:x})]}),children:u.description&&r.jsx("div",{className:"m-4 text-gray-900 dark:text-white",children:r.jsx(f.Markdown,{source:u.description})})});function Qt({property:O,propertyKey:Z,onHover:R}){return p.plugins?r.jsx(r.Fragment,{children:p.plugins.filter(ee=>ee.collectionView?.HeaderAction).map((ee,ce)=>{const De=ee.collectionView.HeaderAction;return r.jsx(De,{onHover:R,propertyKey:Z,property:O,fullPath:t,collection:u,parentCollectionIds:n??[]},`plugin_header_action_${ce}`)})}):null}const G=L?function(){return typeof L=="function"?r.jsx(L,{fullPath:t,parentCollectionIds:n??[],collection:u}):null}:void 0;return r.jsxs("div",{className:f.cn("overflow-hidden h-full w-full",l),ref:h,children:[r.jsx(qr,{additionalFields:mt,tableController:V,displayedColumnIds:Ft,onSizeChanged:Se,onEntityClick:se,onColumnResize:D,onValueChange:Ie,tableRowActionsBuilder:Ke,uniqueFieldValidator:ae,title:Pt,selectionController:J,highlightedEntities:b?[b]:[],defaultSize:u.defaultSize,properties:Ye.properties,getPropertyFor:Oe,actions:r.jsx(Ns,{parentCollectionIds:n??[],collection:u,tableController:V,onMultipleDeleteClick:M,onNewClick:U,path:t,relativePath:u.path,selectionController:J,selectionEnabled:I,collectionEntitiesCount:S}),emptyComponent:m&&V.filterValues===void 0&&V.sortBy===void 0?r.jsxs("div",{className:"flex flex-col items-center justify-center",children:[r.jsx(f.Typography,{variant:"subtitle2",children:"So empty..."}),r.jsxs(f.Button,{color:"primary",variant:"outlined",onClick:U,className:"mt-4",children:[r.jsx(f.AddIcon,{}),"Create your first entity"]})]}):r.jsx(f.Typography,{variant:"label",children:"No results with the applied filter/sort"}),hoverRow:T,inlineEditing:N(),AdditionalHeaderWidget:Qt,AddColumnComponent:G,getIdColumnWidth:Tt,additionalIDHeaderWidget:r.jsx(Ys,{path:t,collection:u})},`collection_table_${t}`),r.jsx(Ms,{open:!!W,onClose:q,cellRect:W?.cellRect,propertyKey:W?.propertyKey,collection:u,entity:W?.entity,tableKey:re.current,customFieldValidator:ae,path:qe,onCellValueChange:Ie,container:h.current},`popup_form_${W?.propertyKey}_${W?.entity?.id}`),w&&r.jsx($o,{entityOrEntitiesToDelete:w,path:t,collection:u,callbacks:u.callbacks,open:!!w,onEntityDelete:$,onMultipleEntitiesDelete:K,onClose:()=>C(void 0)})]})},oe);function Kr(){const[e,t]=c.useState([]),n=c.useCallback(l=>{let i;e.map(s=>s.id).includes(l.id)?i=e.filter(s=>s.id!==l.id):i=[...e,l],t(i)},[e]),o=c.useCallback(l=>e.map(i=>i.id).includes(l.id),[e]);return{selectedEntities:e,setSelectedEntities:t,isEntitySelected:o,toggleEntitySelection:n}}function Gs({fullPath:e,collection:t,filter:n,sortBy:o,onCountChange:l}){const i=Te(),s=ie(),[a,d]=c.useState(void 0),[A,g]=c.useState(void 0),p=o?o[0]:void 0,h=o?o[1]:void 0,u=c.useMemo(()=>s.resolveAliasesFrom(e),[e,s.resolveAliasesFrom]);return c.useEffect(()=>{i.countEntities({path:u,collection:t,filter:n,orderBy:p,order:h}).then(d).catch(g)},[e,i,u,t,n,p,h]),c.useEffect(()=>{l&&l(a??0)},[l,a]),A?null:r.jsx(f.Typography,{className:"w-full text-ellipsis block overflow-hidden whitespace-nowrap max-w-xs text-left w-fit-content",variant:"caption",color:"secondary",children:a!==void 0?`${a} entities`:r.jsx(f.Skeleton,{className:"w-full max-w-[80px] mt-1"})})}function jo(e,t){if(e.includes(".")){const[n,...o]=e.split(".");return{properties:{[n]:jo(o.join("."),t)}}}return{properties:{[e]:{columnWidth:t}}}}function Ys({collection:e,path:t}){const[n,o]=c.useState(!1),[l,i]=c.useState(""),s=We();return r.jsx(f.Tooltip,{title:n?void 0:"Find by ID",children:r.jsx(f.Popover,{open:n,onOpenChange:o,trigger:r.jsx(f.IconButton,{size:"small",children:r.jsx(f.SearchIcon,{size:"small"})}),children:r.jsx("form",{noValidate:!0,onSubmit:a=>{if(a.preventDefault(),!!l)return o(!1),s.open({entityId:l,path:t,collection:e,updateUrl:!0})},className:"text-gray-900 dark:text-white w-96 max-w-full",children:r.jsxs("div",{className:"flex p-4 w-full gap-4",children:[r.jsx(f.TextField,{placeholder:"Find entity by ID",size:"small",onChange:a=>i(a.target.value),value:l,className:"flex-grow"}),r.jsx(f.Button,{variant:"outlined",disabled:!l,type:"submit",children:"Go"})]})})})})}function Ho({onSingleEntitySelected:e,onMultipleEntitiesSelected:t,multiselect:n,collection:o,path:l,selectedEntityIds:i,description:s,forceFilter:a,maxSelection:d}){console.log("ReferenceSelectionInner");const A=nr(),g=We(),p=ie(),h=X(),u=p.resolveAliasesFrom(l),m=Te(),[b,y]=c.useState([]),w=Kr();c.useEffect(()=>{let F=!1;const Q=i?.map(Y=>Y?.toString()).filter(Boolean);return Q&&o?Promise.all(Q.map(Y=>m.fetchEntity({path:u,entityId:Y,collection:o}))).then(Y=>{if(!F){const J=Y.filter(_=>_!==void 0);w.setSelectedEntities(J),y(J)}}):(w.setSelectedEntities([]),y([])),()=>{F=!0}},[m,u,i,o,w.setSelectedEntities]);const C=()=>{h.onAnalyticsEvent?.("reference_selection_clear",{path:u}),w.setSelectedEntities([]),!n&&e?e(null):t&&t([])},E=F=>{console.debug("ReferenceSelectionInner toggleEntitySelection",F);let Q;const Y=w.selectedEntities;if(h.onAnalyticsEvent?.("reference_selection_toggle",{path:u,entityId:F.id}),Y){if(Y.map(J=>J.id).indexOf(F.id)>-1)Q=Y.filter(J=>J.id!==F.id);else{if(d&&Y.length>=d)return;Q=[...Y,F]}w.setSelectedEntities(Q),t&&t(Q)}},k=F=>{console.debug("ReferenceSelectionInner onEntityClick",F),!n&&e?(h.onAnalyticsEvent?.("reference_selected_single",{path:u,entityId:F.id}),e(F),A.close(!1)):E(F)},S=()=>{h.onAnalyticsEvent?.("reference_selection_new_entity",{path:u}),g.open({path:u,collection:o,updateUrl:!0,onUpdate:({entity:F})=>{y([F,...b]),k(F)},closeOnSave:!0})},x=({entity:F,size:Q,width:Y,frozen:J})=>{const _=w.selectedEntities,j=_&&_.map(te=>te.id).indexOf(F.id)>-1;return r.jsx(Wr,{width:Y,frozen:J,entity:F,size:Q,isSelected:j,selectionEnabled:n,hideId:o?.hideIdFromCollection,fullPath:u,selectionController:w})},B=c.useCallback(F=>{F.stopPropagation(),A.close(!1)},[A]);if(!o)return r.jsx(he,{error:"Could not find collection with id "+o});const N=c.useMemo(()=>Be({collection:o,path:u,values:{},fields:h.propertyConfigs}),[o,h.propertyConfigs,u]),I=Yo(N,!1),T=Zr({fullPath:u,collection:o,entitiesDisplayedFirst:b,forceFilter:a});return r.jsxs("div",{className:"flex flex-col h-full",children:[r.jsx("div",{className:"flex-grow",children:b&&r.jsx(qr,{displayedColumnIds:I,onEntityClick:k,tableController:T,tableRowActionsBuilder:x,title:r.jsx(f.Typography,{variant:"subtitle2",children:o.singularName?`Select ${o.singularName}`:`Select from ${o.name}`}),defaultSize:o.defaultSize,properties:N.properties,forceFilter:a,inlineEditing:!1,selectionController:w,actions:r.jsx(zs,{collection:o,path:u,onNewClick:S,onClear:C})})}),r.jsxs(f.DialogActions,{translucent:!1,children:[s&&r.jsx(f.Typography,{variant:"body2",className:"flex-grow text-left",children:s}),r.jsx(f.Button,{onClick:B,color:"primary",variant:"filled",children:"Done"})]})]})}function zs({collection:e,path:t,onClear:n,onNewClick:o}){const l=_e(),i=Pe(),s=o?d=>{d.preventDefault(),o()}:void 0,a=at(e,l,Ne(t),null)&&s&&(i?r.jsxs(f.Button,{onClick:s,startIcon:r.jsx(f.AddIcon,{}),variant:"outlined",color:"primary",children:["Add ",e.singularName??e.name]}):r.jsx(f.Button,{onClick:s,size:"medium",variant:"outlined",color:"primary",children:r.jsx(f.AddIcon,{})}));return r.jsxs(r.Fragment,{children:[r.jsx(f.Button,{onClick:n,variant:"text",color:"primary",children:"Clear"}),a]})}function Rr({children:e,group:t}){const n=dt();return r.jsx(f.ExpandablePanel,{invisible:!0,titleClassName:"font-medium text-sm text-gray-600 dark:text-gray-400",className:"py-4",initiallyExpanded:!(n?.collapsedGroups??[]).includes(t??"ungrouped"),onExpandedChange:o=>{if(n)if(o)n.setCollapsedGroups((n.collapsedGroups??[]).filter(l=>l!==(t??"ungrouped")));else{const l=(n.collapsedGroups??[]).concat(t??"ungrouped");n.setCollapsedGroups(l)}},title:r.jsx(f.Typography,{color:"secondary",className:"font-medium ml-1",children:t?.toUpperCase()??"Views".toUpperCase()}),children:r.jsx("div",{className:"mb-8",children:e})})}function Jo({view:e,path:t,collection:n,url:o,name:l,description:i,onClick:s}){const a=dt(),d=Jt(n??e),A=fe.useNavigate(),g=X(),p=(a?.favouritePaths??[]).includes(t);let h;if(g.plugins&&n){const u={path:t,collection:n,context:g};h=r.jsx(r.Fragment,{children:g.plugins.map((m,b)=>m.homePage?.CollectionActions?r.jsx(m.homePage.CollectionActions,{...u,extraProps:m.homePage.extraProps},`actions_${b}`):null)})}return r.jsx(f.Card,{className:f.cn("h-full p-4 cursor-pointer min-h-[230px]"),onClick:()=>{s?.(),A(o),a&&a.setRecentlyVisitedPaths([t,...(a.recentlyVisitedPaths??[]).filter(u=>u!==t)])},children:r.jsxs("div",{className:"flex flex-col items-start h-full",children:[r.jsxs("div",{className:"flex-grow w-full",children:[r.jsxs("div",{className:"h-10 flex items-center w-full justify-between text-gray-300 dark:text-gray-600",children:[d,r.jsxs("div",{className:"flex items-center gap-1",onClick:u=>{u.preventDefault(),u.stopPropagation()},children:[h,a&&r.jsx(f.IconButton,{onClick:u=>{u.preventDefault(),u.stopPropagation(),p?a.setFavouritePaths(a.favouritePaths.filter(m=>m!==t)):a.setFavouritePaths([...a.favouritePaths,t])},children:p?r.jsx(f.StarIcon,{size:18,className:"text-secondary"}):r.jsx(f.StarBorderIcon,{size:18,className:"text-gray-400 dark:text-gray-500"})})]})]}),r.jsx(f.Typography,{gutterBottom:!0,variant:"h5",component:"h2",children:l}),i&&r.jsx(f.Typography,{variant:"body2",color:"secondary",component:"div",children:r.jsx(f.Markdown,{source:i})})]}),r.jsx("div",{style:{alignSelf:"flex-end"},children:r.jsx("div",{className:"p-4",children:r.jsx(f.ArrowForwardIcon,{className:"text-primary"})})})]})})}function Us({entry:e}){const t=fe.useNavigate(),n=dt();if(!n)return null;const o=n.favouritePaths.includes(e.path),l=i=>{i.preventDefault(),i.stopPropagation(),o?n.setFavouritePaths(n.favouritePaths.filter(s=>s!==e.path)):n.setFavouritePaths([...n.favouritePaths,e.path])};return r.jsx(f.Chip,{onClick:()=>t(e.url),icon:o?r.jsx(f.StarIcon,{onClick:l,size:18,className:"text-secondary"}):r.jsx(f.StarBorderIcon,{onClick:l,size:18,className:"text-gray-400 dark:text-gray-500"}),children:e.name},e.path)}function Ls({hidden:e}){const t=ie(),n=dt();if(!n)return null;const o=(n?.favouritePaths??[]).map(l=>t.topLevelNavigation?.navigationEntries.find(i=>i.path===l)).filter(Boolean);return r.jsx(f.Collapse,{in:o.length>0,children:r.jsx("div",{className:"flex flex-row flex-wrap gap-2 pb-2 min-h-[32px]",children:o.map(l=>r.jsx(Us,{entry:l},l.path))})})}const en={};function $s(){const e=fe.useLocation(),t=c.useRef(null),[n,o]=c.useState(0),[l,i]=c.useState("down"),s=c.useCallback(()=>{!t.current||!e.key||(en[e.key]=t.current.scrollTop,o(t.current.scrollTop),i(t.current.scrollTop>n?"down":"up"))},[t,e.key,n]);return c.useEffect(()=>{const a=t.current;if(a)return a.addEventListener("scroll",s,{passive:!0}),()=>{a&&a.removeEventListener("scroll",s)}},[t,s,e]),c.useEffect(()=>{!t.current||!en[e.key]||t.current.scrollTo({top:en[e.key],behavior:"auto"})},[e]),{containerRef:t,scroll:n,direction:l}}const ht=new Nl.Search("url");ht.addIndex("name"),ht.addIndex("description"),ht.addIndex("group"),ht.addIndex("path");function qo({additionalChildrenStart:e,additionalChildrenEnd:t}){const n=X(),o=ie();if(!o.topLevelNavigation)throw Error("Navigation not ready in FireCMSHomePage");const{containerRef:l,scroll:i,direction:s}=$s(),{navigationEntries:a,groups:d}=o.topLevelNavigation,[A,g]=c.useState(null),p=A?a.filter(w=>A.includes(w.url)):a;c.useEffect(()=>{ht.addDocuments(a)},[a]);const h=c.useCallback(w=>{if(!w||w==="")g(null);else{const C=ht.search(w);g(C.map(E=>E.url))}},[]),u=[...d];(p.filter(w=>!w.group).length>0||p.length===0)&&u.push(void 0);let m,b,y;if(n.plugins){const w={context:n};y=r.jsx(r.Fragment,{children:n.plugins.filter(C=>C.homePage?.includeSection).map((C,E)=>{const k=C.homePage.includeSection(w);return r.jsx(Rr,{group:k.title,children:k.children},`plugin_section_${C.name}`)})}),m=r.jsx("div",{className:"flex flex-col gap-2",children:n.plugins.filter(C=>C.homePage?.additionalChildrenStart).map((C,E)=>r.jsx("div",{children:C.homePage.additionalChildrenStart},`plugin_children_start_${E}`))}),b=r.jsx("div",{className:"flex flex-col gap-2",children:n.plugins.filter(C=>C.homePage?.additionalChildrenEnd).map((C,E)=>r.jsx("div",{children:C.homePage.additionalChildrenEnd},`plugin_children_start_${E}`))})}return r.jsx("div",{id:"home_page",ref:l,className:"py-2 overflow-auto h-full w-full",children:r.jsxs(f.Container,{maxWidth:"6xl",children:[r.jsx("div",{className:"sticky py-4 transition-all duration-400 ease-in-out top-0 z-10",style:{top:s==="down"?-84:0},children:r.jsx(f.SearchBar,{onTextSearch:h,placeholder:"Search collections",large:!1,className:"w-full"})}),r.jsx(Ls,{hidden:!!A}),e,m,u.map((w,C)=>{const E=[],k={group:w,context:n};n.plugins&&n.plugins.forEach(x=>{x.homePage?.AdditionalCards&&E.push(...Kt(x.homePage?.AdditionalCards))});const S=p.filter(x=>x.group===w||!x.group&&w===void 0);return S.length===0&&E.length===0?null:r.jsx(Rr,{group:w,children:r.jsxs("div",{className:"grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4",children:[S.map(x=>r.jsx("div",{className:"col-span-1",children:r.jsx(Jo,{...x,onClick:()=>{const B=x.type==="collection"?"home_navigate_to_collection":x.type==="view"?"home_navigate_to_view":"unmapped_event";n.onAnalyticsEvent?.(B,{path:x.path})}})},`nav_${x.group}_${x.name}`)),E&&E.map((x,B)=>r.jsx("div",{children:r.jsx(x,{...k})},`nav_${w}_add_${B}`))]})},`plugin_section_${w}`)}),y,b,t]})})}function _s({propertyConfig:e}){const t="h-8 w-8 p-1 rounded-full shadow text-white";return r.jsx("div",{className:t,style:{background:e?.color??"#888"},children:vr(e,"medium")})}function Ws({children:e,title:t,path:n}){const o=Nr();return c.useEffect(()=>{o.set({breadcrumbs:[{title:t,url:n}]})},[n,t]),r.jsx(r.Fragment,{children:e})}function Zo(){return r.jsx("div",{className:"flex w-full h-full",children:r.jsxs("div",{className:"m-auto flex items-center flex-col",children:[r.jsx(f.Typography,{variant:"h4",align:"center",gutterBottom:!0,children:"Page not found"}),r.jsx(f.Typography,{align:"center",gutterBottom:!0,children:"This page does not exist or you may not have access to it"}),r.jsx(f.Button,{variant:"text",component:fe.Link,to:"/",children:"Back to home"})]})})}function js({open:e,onAccept:t,onCancel:n,title:o,loading:l,body:i}){return r.jsxs(f.Dialog,{open:e,onOpenChange:s=>s?void 0:n(),children:[r.jsxs(f.DialogContent,{children:[r.jsx(f.Typography,{variant:"h6",className:"mb-2",children:o}),i]}),r.jsxs(f.DialogActions,{children:[r.jsx(f.Button,{variant:"text",onClick:n,autoFocus:!0,children:"Cancel"}),r.jsx(f.LoadingButton,{color:"primary",type:"submit",loading:l,onClick:t,children:"Ok"})]})]})}function Xo({width:e,height:t,className:n,style:o}){return r.jsxs("svg",{width:e??"100%",height:t??"100%",viewBox:"0 0 599 599",version:"1.1",style:o,className:n,xmlns:"http://www.w3.org/2000/svg",children:[r.jsxs("defs",{children:[r.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:[r.jsx("stop",{stopColor:"#FF5B79",offset:"0%"}),r.jsx("stop",{stopColor:"#FA5574",offset:"28.0930803%"}),r.jsx("stop",{stopColor:"#EC4C51",offset:"44.7242531%"}),r.jsx("stop",{stopColor:"#9543C1",offset:"71.4578165%"}),r.jsx("stop",{stopColor:"#3857B3",offset:"100%"})]}),r.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:[r.jsx("stop",{stopColor:"#68294F",stopOpacity:"0",offset:"0%"}),r.jsx("stop",{stopColor:"#5E2548",stopOpacity:"0.04641108",offset:"75.3503173%"}),r.jsx("stop",{stopColor:"#0D060B",stopOpacity:"0.437431709",offset:"100%"})]}),r.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:[r.jsx("stop",{stopColor:"#68294F",stopOpacity:"0",offset:"0%"}),r.jsx("stop",{stopColor:"#5E2548",stopOpacity:"0.04641108",offset:"84.0867343%"}),r.jsx("stop",{stopColor:"#FF0000",stopOpacity:"0.567324765",offset:"100%"})]})]}),r.jsx("g",{id:"Page-1",stroke:"none",strokeWidth:"1",fill:"none",fillRule:"evenodd",children:r.jsxs("g",{id:"firecms_logo",children:[r.jsx("circle",{fill:"url(#radialGradient-1)",cx:"299.5",cy:"299.5",r:"299.5"}),r.jsx("circle",{fill:"url(#radialGradient-2)",cx:"299.5",cy:"299.5",r:"299.5"}),r.jsx("circle",{fill:"url(#radialGradient-3)",cx:"299.5",cy:"299.5",r:"299.5"})]})})]})}const Ko=function({title:t,endAdornment:n,startAdornment:o,drawerOpen:l,dropDownActions:i,includeDrawer:s,className:a,style:d,user:A}){const g=ie(),p=_e(),{mode:h,toggleMode:u}=Fr(),m=Pe(),b=A??p.user;let y;if(b&&b.photoURL)y=r.jsx(f.Avatar,{src:b.photoURL});else if(b===void 0||p.initialLoading)y=r.jsx("div",{className:"p-1 flex justify-center",children:r.jsx(f.Skeleton,{className:"w-10 h-10 rounded-full"})});else{const w=b?.displayName?b.displayName[0].toUpperCase():b?.email?b.email[0].toUpperCase():"A";y=r.jsx(f.Avatar,{children:w})}return r.jsx("div",{style:d,className:f.cn("pr-2",{"ml-[17rem]":l&&m,"ml-16":s&&!(l&&m)&&!o,"h-16":!0,"z-10":m,"transition-all":!0,"ease-in":!0,"duration-75":!0,"w-full":!s,"w-[calc(100%-64px)]":s&&!(l&&m),"w-[calc(100%-17rem)]":s&&l&&m,"duration-150":l&&m,fixed:!0},a),children:r.jsxs("div",{className:"flex flex-row gap-2 px-4 h-full items-center",children:[o,g&&r.jsx("div",{className:"mr-8 hidden lg:block",children:r.jsx(fe.Link,{className:"visited:text-inherit visited:dark:text-inherit",to:g?.basePath??"/",children:r.jsx(f.Typography,{variant:"subtitle1",noWrap:!0,className:"ml-2 !font-medium",children:t})})}),r.jsx("div",{className:"flex-grow"}),n&&r.jsx(ne,{children:n}),r.jsx(f.IconButton,{color:"inherit","aria-label":"Open drawer",onClick:u,size:"large",children:h==="dark"?r.jsx(f.DarkModeIcon,{}):r.jsx(f.LightModeIcon,{})}),r.jsxs(f.Menu,{trigger:y,children:[i,!i&&r.jsxs(f.MenuItem,{onClick:p.signOut,children:[r.jsx(f.LogoutIcon,{}),"Log Out"]})]})]})})},Hs=e=>e&&Array.isArray(e)&&e.length>0?e.map((t,n)=>t?{[fr(t)+n]:It()}:{}).reduce((t,n)=>({...t,...n}),{}):{};function tn({droppableId:e,addLabel:t,value:n,disabled:o=!1,buildEntry:l,size:i,onInternalIdAdded:s,includeAddButton:a,newDefaultEntry:d,onValueChange:A}){const g=n&&Array.isArray(n)&&n.length>0,p=c.useRef(Hs(n)),[h,u]=c.useState(g?Object.values(p.current):[]);c.useEffect(()=>{if(g&&n&&n.length!==h.length){const C=n.map((E,k)=>{const S=fr(E)+k;if(S in p.current)return p.current[S];{const x=It();return p.current[S]=x,x}});u(C)}},[g,h.length,n]);const m=C=>{if(C.preventDefault(),o)return;const E=It(),k=[...h,E];s&&s(E),u(k),A([...n??[],d])},b=C=>{const E=[...h];E.splice(C,1),u(E),A(n.filter((k,S)=>S!==C))},y=C=>{const E=It(),k=n[C],S=[...h.splice(0,C+1),E,...h.splice(C+1,h.length-C-1)];s&&s(E),u(S),A([...n.slice(0,C+1),k,...n.slice(C+1)])},w=C=>{if(!C.destination)return;const E=C.source.index,k=C.destination.index,S=[...h],x=S[E];S[E]=S[k],S[k]=x,u(S),A(Js(n,E,k))};return r.jsx(lt.DragDropContext,{onDragEnd:w,children:r.jsx(lt.Droppable,{droppableId:e,renderClone:(C,E,k)=>{const S=k.source.index,x=h[S];return r.jsx(rn,{provided:C,internalId:x,index:S,size:i,disabled:o,buildEntry:l,remove:b,copy:y,isDragging:E.isDragging})},children:(C,E)=>r.jsxs("div",{...C.droppableProps,ref:C.innerRef,children:[g&&h.map((k,S)=>r.jsx(lt.Draggable,{draggableId:`array_field_${k}`,isDragDisabled:o,index:S,children:(x,B)=>r.jsx(rn,{provided:x,internalId:k,index:S,size:i,disabled:o,buildEntry:l,remove:b,copy:y,isDragging:B.isDragging})},`array_field_${k}`)),C.placeholder,a&&r.jsx("div",{className:"py-4 justify-center text-left",children:r.jsx(f.Button,{variant:i==="small"?"text":"outlined",size:i==="small"?"small":"medium",color:"primary",disabled:o,startIcon:r.jsx(f.AddIcon,{}),onClick:m,children:t??"Add"})})]})})})}function rn({provided:e,index:t,internalId:n,size:o,disabled:l,buildEntry:i,remove:s,copy:a,isDragging:d}){const[A,g]=sr(),p=o!=="small"&&g.height===0,h=o!=="small"&&g.height<100,[u,m]=c.useState(!1),b=c.useCallback(()=>m(!0),[]),y=c.useCallback(()=>m(!1),[]);return r.jsx("div",{onMouseEnter:b,onMouseMove:b,onMouseLeave:y,ref:e.innerRef,...e.draggableProps,style:e.draggableProps.style,className:`${d||u?f.fieldBackgroundHoverMixin:""} mb-1 rounded-md opacity-100`,children:r.jsxs("div",{className:"flex items-start",children:[r.jsx("div",{ref:A,className:"flex-grow w-[calc(100%-48px)] text-text-primary dark:text-text-primary-dark",children:i(t,n)}),r.jsx(Ro,{direction:o==="small"?"row":"column",disabled:l,remove:s,index:t,provided:e,measuring:p,contentOverflow:h,copy:a})]})})}function Ro({direction:e,disabled:t,remove:n,index:o,provided:l,copy:i,contentOverflow:s,measuring:a}){return r.jsxs("div",{className:`p-1 flex ${e==="row"?"flex-row-reverse":"flex-col"} items-center`,...l.dragHandleProps,children:[r.jsx(f.Tooltip,{side:e==="column"?"left":void 0,title:"Move",children:r.jsx(f.IconButton,{size:"small",disabled:t,className:`cursor-${t?"inherit":"grab"}`,children:r.jsx("svg",{focusable:"false",fill:"currentColor","aria-hidden":"true",viewBox:"0 0 24 24",children:r.jsx("path",{d:"M20 9H4v2h16V9zM4 15h16v-2H4v2z"})})})}),!a&&!s&&r.jsxs(r.Fragment,{children:[r.jsx(f.Tooltip,{title:"Remove",side:e==="column"?"left":void 0,children:r.jsx(f.IconButton,{size:"small","aria-label":"remove",disabled:t,onClick:()=>n(o),children:r.jsx(f.RemoveIcon,{size:"small"})})}),r.jsx(f.Tooltip,{side:e==="column"?"left":void 0,title:"Copy in this position",children:r.jsx(f.IconButton,{size:"small","aria-label":"copy",disabled:t,onClick:()=>i(o),children:r.jsx(f.ContentCopyIcon,{size:"small"})})})]}),!a&&s&&r.jsx(r.Fragment,{children:r.jsxs(f.Menu,{trigger:r.jsx(f.IconButton,{size:"small",children:r.jsx(f.MoreVertIcon,{size:"small"})}),children:[r.jsxs(f.MenuItem,{dense:!0,onClick:()=>n(o),children:[r.jsx(f.RemoveIcon,{size:"small"}),"Remove"]}),r.jsxs(f.MenuItem,{dense:!0,onClick:()=>i(o),children:[r.jsx(f.ContentCopyIcon,{size:"small"}),"Copy"]})]})})]})}function Js(e,t,n){const o=Array.from(e),[l]=o.splice(t,1);return o.splice(n,0,l),o}function It(){return Math.floor(Math.random()*Math.floor(Number.MAX_SAFE_INTEGER))}function Rt({name:e,addLabel:t,value:n,disabled:o=!1,buildEntry:l,small:i,onInternalIdAdded:s,includeAddButton:a,newDefaultEntry:d=null,setFieldValue:A}){return r.jsx(tn,{droppableId:e,addLabel:t,value:n,disabled:o,buildEntry:l,size:i?"small":"medium",onInternalIdAdded:s,includeAddButton:a,newDefaultEntry:d,onValueChange:g=>A(e,g)})}function be({icon:e,title:t,small:n,className:o,required:l}){return r.jsxs("span",{className:`inline-flex items-center my-0.5 ${n?"gap-1":"gap-2"} ${o??""}`,children:[e,r.jsx("span",{className:`font-medium text-${n?"base":"sm"} origin-top-left transform ${n?"translate-x-2 scale-75":""}`,children:(t??"")+(l?" *":"")})]})}function qs({field:e,form:t,label:n,tooltip:o,disabled:l,size:i="small",allowIndeterminate:s}){const a=r.jsx(f.BooleanSwitchWithLabel,{label:n,size:i,position:"start",value:e.value,disabled:l,allowIndeterminate:s,onValueChange:d=>t.setFieldValue(e.name,d)});return o?r.jsx(f.Tooltip,{title:o,children:a}):a}function ye({error:e,showError:t,property:n,includeDescription:o=!0,disabled:l}){const i=n.description||n.longDescription;if(!(t&&e)&&(!o||!i))return null;if(t&&e)return r.jsx(f.Typography,{variant:"caption",className:"ml-3.5 text-red-500",children:e});const s=typeof n.disabled=="object"?n.disabled.disabledMessage:void 0;return r.jsxs("div",{className:"flex ml-3.5 mt-1",children:[r.jsx(f.Typography,{variant:"caption",color:l?"disabled":"secondary",className:"flex-grow",children:s||n.description}),n.longDescription&&r.jsx(f.Tooltip,{title:n.longDescription,side:"bottom",children:r.jsx(f.IconButton,{size:"small",className:"self-start",children:r.jsx(f.InfoIcon,{color:"disabled",size:"small"})})})]})}function nn({propertyKey:e,value:t,setValue:n,error:o,showError:l,disabled:i,autoFocus:s,touched:a,property:d,includeDescription:A}){const g=d.enumValues;xe({property:d,value:t,setValue:n});const p=c.useCallback(h=>{h.stopPropagation(),h.preventDefault(),n(null)},[n]);return r.jsxs(r.Fragment,{children:[r.jsx(f.Select,{value:t?t.toString():"",disabled:i,position:"item-aligned",inputClassName:f.cn("w-full"),label:r.jsx(be,{icon:pe(d,"small"),required:d.validation?.required,title:d.name,className:"text-text-secondary dark:text-text-secondary-dark ml-3.5"}),endAdornment:d.clearable&&r.jsx(f.IconButton,{onClick:p,children:r.jsx(f.ClearIcon,{})}),onValueChange:h=>{const u=h?d.dataType==="number"?parseFloat(h):h:null;return n(u)},renderValue:h=>r.jsx(we,{enumKey:h,enumValues:g,size:"medium"}),children:g&&g.map(h=>r.jsx(f.SelectItem,{value:String(h.id),children:r.jsx(we,{enumKey:String(h.id),enumValues:g,size:"medium"})},h.id))}),r.jsx(ye,{includeDescription:A,showError:l,error:o,disabled:i,property:d})]})}function on({propertyKey:e,value:t,setValue:n,error:o,showError:l,disabled:i,property:s,includeDescription:a,autoFocus:d}){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 g=$e(A.enumValues);if(!g)throw console.error(s),Error("Field misconfiguration: array field of type string or number needs to have enumValues");xe({property:s,value:t,setValue:n});const p=!!t&&Array.isArray(t),h=c.useCallback((u,m)=>{const b=u!==void 0?$t(g,u):void 0;return r.jsxs(we,{enumKey:u,enumValues:g,size:"medium",children:[b?.label??u,!m&&r.jsx("button",{className:"ml-1 ring-offset-background rounded-full outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2",onMouseDown:y=>{y.preventDefault(),y.stopPropagation()},onClick:y=>{y.preventDefault(),y.stopPropagation(),n(t.filter(w=>w!==u))},children:r.jsx(f.CloseIcon,{size:"smallest"})})]},u)},[g,n,t]);return r.jsxs("div",{className:"mt-0.5 ml-0.5 mt-2",children:[r.jsx(f.MultiSelect,{value:p?t.map(u=>u.toString()):[],disabled:i,label:r.jsx(be,{icon:pe(s,"small"),required:s.validation?.required,title:s.name,className:"text-text-secondary dark:text-text-secondary-dark ml-3.5"}),renderValue:c.useCallback(u=>h(u,!1),[h]),onMultiValueChange:u=>{let m;return A&&A?.dataType==="number"?m=u?u.map(b=>parseFloat(b)):[]:m=u,n(m)},children:g.map(u=>String(u.id)).map(u=>r.jsx(f.MultiSelectItem,{value:u,children:h(u,!0)},u))}),r.jsx(ye,{includeDescription:a,showError:l,error:o,disabled:i,property:s})]})}function el({propertyKey:e,value:t,error:n,showError:o,disabled:l,isSubmitting:i,tableMode:s,property:a,includeDescription:d,setValue:A,setFieldValue:g}){const p=a.of;if(p.dataType!=="reference")throw Error("ArrayOfReferencesField expected a property containing references");const h=a.expanded===void 0?!0:a.expanded,[u,m]=c.useState(!1),b=t&&Array.isArray(t)?t.map(N=>N.id):[];xe({property:a,value:t,setValue:A});const y=ie(),w=c.useMemo(()=>p.path?y.getCollection(p.path):void 0,[p.path]);if(!w)throw Error(`Couldn't find the corresponding collection for the path: ${p.path}`);const C=c.useCallback(N=>{console.debug("onMultipleEntitiesSelected",N),A(N.map(I=>et(I)))},[A]),E=Bt({multiselect:!0,path:p.path,collection:w,onMultipleEntitiesSelected:C,selectedEntityIds:b,forceFilter:p.forceFilter}),k=c.useCallback(N=>{N.preventDefault(),E.open()},[E]),S=c.useCallback((N,I)=>{const T=t&&t.length>N?t[N]:void 0;return T?r.jsx("div",{onMouseEnter:()=>m(!0),onMouseMove:()=>m(!0),onMouseLeave:()=>m(!1),children:r.jsx(Ge,{disabled:!p.path,previewProperties:p.previewProperties,size:"medium",onClick:k,reference:T,onHover:u})}):r.jsx("div",{children:"Internal ERROR"})},[p.path,p.previewProperties,u,t]),x=r.jsx(be,{icon:pe(a,"small"),required:a.validation?.required,title:a.name,className:"text-text-secondary dark:text-text-secondary-dark"}),B=r.jsxs(r.Fragment,{children:[!w&&r.jsx(he,{error:"The specified collection does not exist. Check console"}),w&&r.jsxs(r.Fragment,{children:[r.jsx(Rt,{value:t,addLabel:a.name?"Add reference to "+a.name:"Add reference",name:e,buildEntry:S,disabled:i,setFieldValue:g,newDefaultEntry:a.of.defaultValue}),r.jsxs(f.Button,{className:"my-4 justify-center text-left",variant:"outlined",color:"primary",disabled:i,onClick:k,children:["Edit ",a.name]})]})]});return r.jsxs(r.Fragment,{children:[!s&&r.jsx(f.ExpandablePanel,{className:"px-2 md:px-4 pb-2 md:pb-4 pt-1 md:pt-2",initiallyExpanded:h,title:x,children:B}),s&&B,r.jsx(ye,{includeDescription:d,showError:o,error:n,disabled:l,property:a})]})}function tl({name:e,property:t,value:n,entity:o,onRemove:l,disabled:i,size:s}){return r.jsxs("div",{className:f.cn(f.paperMixin,"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:[!i&&r.jsx("div",{className:"absolute rounded-full -top-2 -right-2 z-10 bg-white dark:bg-gray-900",children:r.jsx(f.Tooltip,{title:"Remove",children:r.jsx(f.IconButton,{size:"small",onClick:a=>{a.stopPropagation(),l(n)},children:r.jsx(f.RemoveIcon,{size:"small"})})})}),n&&r.jsx(ne,{children:r.jsx(me,{propertyKey:e,value:n,property:t,entity:o,size:s})})]})}const Zs="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",Xs="border-dotted-gray",Ks="hover:bg-field-hover dark:hover:bg-field-hover-dark",Rs="pt-0 border-2 border-solid",ea="transition-colors duration-200 ease-[cubic-bezier(0,0,0.2,1)] border-2 border-solid border-green-500",ta="transition-colors duration-200 ease-[cubic-bezier(0,0,0.2,1)] border-2 border-solid border-red-500";function ln({propertyKey:e,value:t,setValue:n,error:o,showError:l,autoFocus:i,tableMode:s,property:a,includeDescription:d,context:A,isSubmitting:g}){if(!A.entityId)throw new Error("StorageUploadFieldBinding: Entity id is null");const p=ct(),h=it(a)||!!a.disabled||g,{internalValue:u,setInternalValue:m,onFilesAdded:b,storage:y,onFileUploadComplete:w,storagePathBuilder:C,multipleFilesSupported:E}=ko({entityValues:A.values,entityId:A.entityId,path:A.path,property:a,propertyKey:e,value:t,storageSource:p,disabled:h,onChange:n});xe({property:a,value:t,setValue:n});const k={id:A.entityId,values:A.values,path:A.path};return r.jsxs(r.Fragment,{children:[!s&&r.jsx(be,{icon:pe(a,"small"),required:a.validation?.required,title:a.name,className:"text-text-secondary dark:text-text-secondary-dark ml-3.5"}),r.jsx(na,{value:u,name:e,disabled:h,autoFocus:i,property:a,onChange:n,setInternalValue:m,onFilesAdded:b,entity:k,onFileUploadComplete:w,storagePathBuilder:C,storage:y,multipleFilesSupported:E}),r.jsx(ye,{includeDescription:d,showError:l,error:o,disabled:h,property:a})]})}function ra({storage:e,disabled:t,isDraggingOver:n,onFilesAdded:o,multipleFilesSupported:l,droppableProvided:i,autoFocus:s,internalValue:a,property:d,entity:A,onClear:g,metadata:p,storagePathBuilder:h,onFileUploadComplete:u,size:m,name:b,helpText:y}){const w=je(),{getRootProps:C,getInputProps:E,isDragActive:k,isDragAccept:S,isDragReject:x}=Bn.useDropzone({accept:e.acceptedFiles?e.acceptedFiles.map(B=>({[B]:[]})).reduce((B,N)=>({...B,...N}),{}):void 0,disabled:t||n,noDragEventsBubbling:!0,maxSize:e.maxSize,onDrop:o,onDropRejected:(B,N)=>{for(const I of B)for(const T of I.errors)w.open({type:"error",message:`Error uploading file: File is larger than ${e.maxSize} bytes`})}});return r.jsxs("div",{...C(),className:f.cn(f.fieldBackgroundMixin,t?f.fieldBackgroundDisabledMixin:f.fieldBackgroundHoverMixin,Zs,l&&a.length?"":"flex",f.focusedMixin,{[Ks]:!k,[Rs]:k,[ta]:x,[ea]:S,[Xs]:t}),children:[r.jsxs("div",{...i.droppableProps,ref:i.innerRef,className:f.cn("flex items-center p-1 no-scrollbar",l&&a.length?"overflow-auto":"",l&&a.length?"min-h-[180px]":"min-h-[250px]"),children:[r.jsx("input",{autoFocus:s,...E()}),a.map((B,N)=>{let I;return B.storagePathOrDownloadUrl?I=r.jsx(tl,{name:`storage_preview_${B.storagePathOrDownloadUrl}`,property:d,disabled:t,entity:A,value:B.storagePathOrDownloadUrl,onRemove:g,size:B.size}):B.file&&(I=r.jsx(Fo,{entry:B,metadata:p,storagePath:h(B.file),onFileUploadComplete:u,imageSize:m==="medium"?220:118,simple:!1})),r.jsx(lt.Draggable,{draggableId:`array_field_${b}_${B.id}`,index:N,children:(T,F)=>r.jsx("div",{tabIndex:-1,ref:T.innerRef,...T.draggableProps,...T.dragHandleProps,className:f.cn(f.focusedMixin,"rounded-md"),style:{...T.draggableProps.style},children:I})},`array_field_${b}_${B.id}`)}),i.placeholder]}),r.jsx("div",{className:"flex-grow min-h-[38px] box-border m-2 text-center",children:r.jsx(f.Typography,{align:"center",variant:"label",children:y})})]})}function na({property:e,name:t,value:n,setInternalValue:o,onChange:l,multipleFilesSupported:i,onFileUploadComplete:s,disabled:a,onFilesAdded:d,autoFocus:A,storage:g,entity:p,storagePathBuilder:h}){if(i){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 u=g?.metadata,m=i?"small":"medium",b=c.useCallback((k,S)=>{if(!i)return;const x=[...n],B=x[k];x.splice(k,1),x.splice(S,0,B),o(x);const N=x.filter(I=>!!I.storagePathOrDownloadUrl).map(I=>I.storagePathOrDownloadUrl);l(N)},[i,l,o,n]),y=c.useCallback(k=>{k.destination&&b(k.source.index,k.destination.index)},[b]),w=c.useCallback(k=>{if(i){const S=n.filter(x=>x.storagePathOrDownloadUrl!==k);l(S.filter(x=>!!x.storagePathOrDownloadUrl).map(x=>x.storagePathOrDownloadUrl)),o(S)}else l(null),o([])},[n,i,l]),C=i?"Drag 'n' drop some files here, or click to select files":"Drag 'n' drop a file here, or click to select one",E=i?e.of:e;return r.jsx(lt.DragDropContext,{onDragEnd:y,children:r.jsx(lt.Droppable,{droppableId:`droppable_${t}`,direction:"horizontal",renderClone:(k,S,x)=>{const B=n[x.source.index];return r.jsx("div",{ref:k.innerRef,...k.draggableProps,...k.dragHandleProps,style:k.draggableProps.style,className:"rounded",children:r.jsx(tl,{name:`storage_preview_${B.storagePathOrDownloadUrl}`,property:E,disabled:!0,entity:p,value:B.storagePathOrDownloadUrl,onRemove:w,size:B.size})})},children:(k,S)=>r.jsx(ra,{storage:g,disabled:a,isDraggingOver:S.isDraggingOver,droppableProvided:k,onFilesAdded:d,multipleFilesSupported:i,autoFocus:A,internalValue:n,property:E,entity:p,onClear:w,metadata:u,storagePathBuilder:h,onFileUploadComplete:s,size:m,name:t,helpText:C})})})}function pt({propertyKey:e,value:t,setValue:n,error:o,showError:l,disabled:i,autoFocus:s,property:a,includeDescription:d}){let A,g;a.dataType==="string"&&(A=a.multiline,g=a.url),xe({property:a,value:t,setValue:n});const p=c.useCallback(b=>{b.stopPropagation(),b.preventDefault(),n(null)},[n]),h=b=>{if(m==="number"){const y=b.target.value?parseFloat(b.target.value):void 0;y&&isNaN(y)?n(null):y!=null?n(y):n(null)}else n(b.target.value)},u=!!A,m=a.dataType==="number"?"number":void 0;return r.jsxs(r.Fragment,{children:[r.jsx(f.TextField,{value:t,onChange:h,autoFocus:s,label:r.jsx(be,{icon:pe(a,"small"),required:a.validation?.required,title:a.name}),type:m,multiline:u,disabled:i,endAdornment:a.clearable&&r.jsx(f.IconButton,{onClick:p,children:r.jsx(f.ClearIcon,{})}),error:l?o:void 0,inputClassName:o?"text-red-500 dark:text-red-600":""}),r.jsx(ye,{includeDescription:d,showError:l,error:o,disabled:i,property:a}),g&&r.jsx(f.Collapse,{className:"mt-1 ml-1",in:!!t,children:r.jsx(me,{value:t,property:a,size:"medium"})})]})}const rl=c.forwardRef(function({propertyKey:t,value:n,setValue:o,error:l,showError:i,autoFocus:s,disabled:a,touched:d,property:A,includeDescription:g},p){return xe({property:A,value:n,setValue:o}),r.jsxs(r.Fragment,{children:[r.jsx(f.BooleanSwitchWithLabel,{value:n,onValueChange:h=>o(h),error:i,label:r.jsx(be,{icon:pe(A,"small"),required:A.validation?.required,title:A.name}),disabled:a,autoFocus:s,size:"medium"}),r.jsx(ye,{includeDescription:g,showError:i,error:l,disabled:a,property:A})]})});function nl({propertyKey:e,value:t,setValue:n,autoFocus:o,error:l,showError:i,disabled:s,touched:a,property:d,includeDescription:A}){const{locale:g}=X(),p=t||null;return xe({property:d,value:t,setValue:n}),r.jsxs(r.Fragment,{children:[r.jsx(f.DateTimeField,{value:p,onChange:h=>n(h),size:"medium",mode:d.mode,clearable:d.clearable,locale:g,label:r.jsx(be,{icon:pe(d,"small"),required:d.validation?.required,className:"text-text-secondary dark:text-text-secondary-dark",title:d.name})}),r.jsx(ye,{includeDescription:A,showError:i,error:l,disabled:s,property:d})]})}function sn({propertyKey:e,value:t,error:n,showError:o,tableMode:l,property:i,includeDescription:s,context:a}){if(!a.entityId)throw new Error("ReadOnlyFieldBinding: Entity id is null");const d={id:a.entityId,values:a.values,path:a.path};return r.jsxs(r.Fragment,{children:[!l&&r.jsx(be,{icon:pe(i,"small"),required:i.validation?.required,title:i.name,className:"text-text-secondary dark:text-text-secondary-dark ml-3.5"}),r.jsx("div",{className:f.cn(f.paperMixin,"min-h-14 p-4 md:p-6 overflow-x-scroll no-scrollbar"),children:r.jsx(ne,{children:r.jsx(me,{propertyKey:e,value:t,property:i,entity:d,size:"medium"})})}),r.jsx(ye,{includeDescription:s,showError:o,error:n,property:i})]})}function ol(e){return typeof e.property.path!="string"?r.jsx(sn,{...e}):r.jsx(oa,{...e})}function oa({value:e,setValue:t,error:n,showError:o,isSubmitting:l,disabled:i,touched:s,autoFocus:a,property:d,includeDescription:A,context:g}){if(!d.path)throw new Error("Property path is required for ReferenceFieldBinding");xe({property:d,value:e,setValue:t});const p=e&&e instanceof Me,h=ie(),u=c.useMemo(()=>d.path?h.getCollection(d.path):void 0,[d.path]);if(!u)throw Error(`Couldn't find the corresponding collection for the path: ${d.path}`);const m=c.useCallback(w=>{t(w?et(w):null)},[t]),b=Bt({multiselect:!1,path:d.path,collection:u,onSingleEntitySelected:m,selectedEntityIds:p?[e.id]:void 0,forceFilter:d.forceFilter}),y=c.useCallback(w=>{w.preventDefault(),b.open()},[b]);return r.jsxs(r.Fragment,{children:[r.jsx(be,{icon:pe(d,"small"),required:d.validation?.required,title:d.name,className:"text-text-secondary dark:text-text-secondary-dark ml-3.5"}),!u&&r.jsx(he,{error:"The specified collection does not exist. Check console"}),u&&r.jsxs(r.Fragment,{children:[e&&r.jsx(Ge,{disabled:!d.path,previewProperties:d.previewProperties,size:"medium",onClick:i||l?void 0:y,reference:e}),!e&&r.jsx("div",{className:"justify-center text-left",children:r.jsxs(f.Button,{variant:"outlined",color:"primary",disabled:i||l,onClick:y,children:["Edit ",d.name]})})]}),r.jsx(ye,{includeDescription:A,showError:o,error:n,disabled:i,property:d})]})}const nt=c.memo(la,(e,t)=>{if(e.propertyKey!==t.propertyKey)return!1;const n=ve(e.property)||e.property.fromBuilder,o=ve(t.property)||t.property.fromBuilder;return!((n===o||oe(e.property,t.property))&&e.disabled===t.disabled)||er(t.property),!1});function la({propertyKey:e,property:t,context:n,includeDescription:o,underlyingValueHasChanged:l,disabled:i,tableMode:s,partOfArray:a,partOfBlock:d,autoFocus:A}){const g=X(),h=er(t,g.plugins)?Ce.Field:Ce.FastField;return r.jsx(h,{name:e,children:u=>{let m;const b=ke({propertyKey:e,propertyValue:u.field.value,propertyOrBuilder:t,values:u.form.values,path:n.path,entityId:n.entityId,fields:g.propertyConfigs});if(b===null||vt(b))return r.jsx(r.Fragment,{});if(it(b))m=sn;else if(b.Field)typeof b.Field=="function"&&(m=b.Field);else{const w=tr(b,g.propertyConfigs);if(!w)throw console.log("INTERNAL: Could not find field config for property",{propertyKey:e,resolvedProperty:b,fields:g.propertyConfigs,propertyConfig:w}),new Error(`INTERNAL: Could not find field config for property ${e}`);m=ke({propertyOrBuilder:w.property,propertyValue:u.field.value,values:u.form.values,path:n.path,entityId:n.entityId,fields:g.propertyConfigs}).Field}if(!m)return console.warn(`No field component found for property ${e}`),console.warn("Property:",t),r.jsx("div",{children:`Currently the field ${b.dataType} is not supported`});const y={propertyKey:e,property:b,includeDescription:o,underlyingValueHasChanged:l,context:n,disabled:i,tableMode:s,partOfArray:a,partOfBlock:d,autoFocus:A};return r.jsx(ia,{Component:m,componentProps:y,fieldProps:u})}})}function ia({Component:e,componentProps:{propertyKey:t,property:n,includeDescription:o,underlyingValueHasChanged:l,tableMode:i,partOfArray:s,partOfBlock:a,autoFocus:d,context:A,disabled:g},fieldProps:p}){const{plugins:h}=X(),u=n.customProps,m=p.field.value,b=p.meta.initialValue,y=Ce.getIn(p.form.errors,t),w=Ce.getIn(p.form.touched,t),C=y&&(p.form.submitCount>0||n.validation?.unique)&&(!Array.isArray(y)||!!y.filter(I=>!!I).length),k=sa(A.path,A.collection,t,n,e,h)??e,S=p.form.isSubmitting,x=c.useCallback((I,T)=>{p.form.setFieldTouched(t,!0,!1),p.form.setFieldValue(t,I,T)},[]),B=c.useCallback((I,T,F)=>{p.form.setFieldTouched(t,!0,!1),p.form.setFieldValue(I,T,F)},[]),N={propertyKey:t,value:m,initialValue:b,setValue:x,setFieldValue:B,error:y,touched:w,showError:C,isSubmitting:S,includeDescription:o??!0,property:n,disabled:g??!1,underlyingValueHasChanged:l??!1,tableMode:i??!1,partOfArray:s??!1,partOfBlock:a??!1,autoFocus:d??!1,customProps:u,context:A};return r.jsxs(ne,{children:[r.jsx(k,{...N}),l&&!S&&r.jsx(f.Typography,{variant:"caption",className:"ml-3.5",children:"This value has been updated elsewhere"})]})}const er=(e,t)=>{if(t?.some(l=>l.form?.fieldBuilder)||ve(e))return!0;const n=e,o=!!n.Field||"fromBuilder"in n&&n.fromBuilder;return n.dataType==="map"&&n.properties?o||Object.values(n.properties).some(l=>er(l,t)):n.dataType==="array"&&"resolvedProperties"in n?o||n.resolvedProperties?.some(l=>l&&er(l,t)):o};function sa(e,t,n,o,l,i){return c.useRef((()=>{let a=null;return i&&i.forEach(d=>{const A=un(o);if(A&&d.form?.fieldBuilder){const g={fieldConfigId:A,propertyKey:n,property:o,Field:l,plugin:d,path:e,collection:t},p=d.form?.fieldBuilderEnabled?.(g);(p===void 0||p)&&(a=d.form.fieldBuilder(g)||a)}A||console.warn("INTERNAL: Field id not found for property",o)}),a})()).current}function ll({propertyKey:e,value:t,showError:n,error:o,disabled:l,property:i,setValue:s,partOfBlock:a,tableMode:d,includeDescription:A,underlyingValueHasChanged:g,autoFocus:p,context:h}){const u=i.pickOnlySomeKeys||!1,m=(i.expanded===void 0?!0:i.expanded)||p;if(!i.properties)throw Error(`You need to specify a 'properties' prop (or specify a custom field) in your map property ${e}`);let b;u?t?b=Fn(i.properties,...Object.keys(t).filter(C=>C in i.properties)):b={}:b=i.properties;const y=r.jsx(r.Fragment,{children:r.jsx("div",{className:"py-1 flex flex-col space-y-2",children:Object.entries(b).filter(([C,E])=>!vt(E)).map(([C,E],k)=>{const S={propertyKey:`${e}.${C}`,disabled:l,property:E,includeDescription:A,underlyingValueHasChanged:g,context:h,tableMode:!1,partOfArray:!1,partOfBlock:!1,autoFocus:p&&k===0};return r.jsx("div",{children:r.jsx(nt,{...S})},`map-${e}-${k}`)})})}),w=r.jsx(be,{icon:pe(i,"small"),required:i.validation?.required,title:i.name,className:"text-text-secondary dark:text-text-secondary-dark"});return r.jsxs(r.Fragment,{children:[!d&&!a&&r.jsx(f.ExpandablePanel,{initiallyExpanded:m,className:"px-2 md:px-4 pb-2 md:pb-4 pt-1 md:pt-2",title:w,children:y}),(d||a)&&y,r.jsx(ye,{includeDescription:A,showError:n,error:o,disabled:l,property:i})]})}function il({propertyKey:e,value:t,showError:n,error:o,disabled:l,property:i,setValue:s,tableMode:a,includeDescription:d,underlyingValueHasChanged:A,autoFocus:g,context:p}){const h=(i.expanded===void 0?!0:i.expanded)||g;if(!i.keyValue)throw Error(`Your property ${e} needs to have the 'keyValue' prop in order to use this field binding`);const u=r.jsx(an,{value:t,setValue:s,disabled:l,fieldName:i.name??e}),m=r.jsx(be,{icon:pe(i,"small"),required:i.validation?.required,title:i.name,className:"text-text-secondary dark:text-text-secondary-dark"});return r.jsxs(r.Fragment,{children:[!a&&r.jsx(f.ExpandablePanel,{initiallyExpanded:h,title:m,className:"px-2 md:px-4 pb-2 md:pb-4 pt-1 md:pt-2",children:u}),a&&u,r.jsx(ye,{includeDescription:d,showError:n,error:o,disabled:l,property:i})]})}function an({value:e,setValue:t,fieldName:n,disabled:o}){const[l,i]=c.useState(Object.keys(e??{}).map(d=>[cn(),{key:d,dataType:dn(e?.[d])??"string"}]));c.useEffect(()=>{const d=l.map(([u,{key:m}])=>m),A=Object.entries(e??{}).filter(([u,m])=>m!==void 0).map(([u])=>u),g=A.filter(u=>!d.includes(u)),p=d.filter(u=>!A.includes(u)),h=[...l];g.forEach(u=>{h.push([cn(),{key:u,dataType:dn(e?.[u])??"string"}])}),p.forEach(u=>{const m=h.findIndex(([b,{key:y}])=>y===u);h.splice(m,1)}),i(h)},[e]);const s=c.useRef(e??{}),a=(d,A)=>{if(!d){console.warn("No key selected for data type update");return}i(l.map(g=>g[0]===d?[g[0],{key:g[1].key,dataType:A}]:g)),t({...e??{},[l.find(g=>g[0]===d)?.[1].key??""]:hr(A)})};return r.jsxs("div",{className:"py-1 flex flex-col gap-1",children:[l.map(([d,{key:A,dataType:g}],p)=>{const h=A?e?.[A]:"",u=m=>{if(i(l.map(y=>y[0]===d?[d,{key:m??"",dataType:y[1].dataType}]:y)),typeof e=="object"&&m in e)return;const b={...e??{}};typeof s.current=="object"&&A in s.current?b[A]=void 0:delete b[A],t({...b,[m??""]:h})};return r.jsx(aa,{rowId:d,fieldKey:A,value:e??{},onDeleteClick:()=>{const m={...e??{}};s.current&&A in s.current?m[A]=void 0:delete m[A],i(l.filter(b=>b[0]!==d)),t({...m})},onFieldKeyChange:u,setValue:t,entryValue:h,dataType:g,disabled:o,updateDataType:a},d)}),r.jsx(f.Button,{variant:"text",size:"small",color:"primary",className:"w-full",disabled:o,startIcon:r.jsx(f.AddIcon,{}),onClick:d=>{d.preventDefault(),t({...e??{},"":null}),i([...l,[cn(),{key:"",dataType:"string"}]])},children:n?`Add to ${n}`:"Add"})]})}function aa({rowId:e,fieldKey:t,value:n,onFieldKeyChange:o,onDeleteClick:l,setValue:i,entryValue:s,dataType:a,updateDataType:d,disabled:A}){const{locale:g}=X();function p(u,m,b){return b==="string"||b==="number"?r.jsx(f.TextField,{placeholder:"value",value:u,type:b==="number"?"number":"text",size:"small",disabled:A||!m,onChange:y=>{if(b==="number"){const w=y.target.value?parseFloat(y.target.value):void 0;w&&isNaN(w)?i({...n,[m]:null}):w!=null?i({...n,[m]:w}):i({...n,[m]:null})}else i({...n,[m]:y.target.value})}},b):b==="date"?r.jsx(f.DateTimeField,{value:u,size:"small",locale:g,disabled:A||!m,onChange:y=>{i({...n,[m]:y})}}):b==="boolean"?r.jsx(f.BooleanSwitchWithLabel,{value:u,size:"small",position:"start",disabled:A||!m,onValueChange:y=>{i({...n,[m]:y})}}):b==="array"?r.jsx("div",{className:f.cn(f.defaultBorderMixin,"ml-2 pl-2 border-l border-solid"),children:r.jsx(tn,{value:u,newDefaultEntry:"",droppableId:e.toString(),addLabel:m?`Add to ${m}`:"Add",size:"small",disabled:A||!m,includeAddButton:!0,onValueChange:y=>{i({...n,[m]:y})},buildEntry:(y,w)=>r.jsx(ca,{index:y,id:w,value:u[y],disabled:A||!m,setValue:C=>{const E=[...u];E[y]=C,i({...n,[m]:E})}})})}):b==="map"?r.jsx("div",{className:f.cn(f.defaultBorderMixin,"ml-2 pl-2 border-l border-solid"),children:r.jsx(an,{value:u,fieldName:m,setValue:y=>{i({...n,[m]:y})}})}):r.jsx(f.Typography,{variant:"caption",children:`Data type ${b} not supported yet`})}function h(u){d(e,u)}return r.jsxs(r.Fragment,{children:[r.jsxs(f.Typography,{component:"div",className:"font-mono flex flex-row gap-1",children:[r.jsx("div",{className:"w-[200px] max-w-[25%]",children:r.jsx(f.TextField,{value:t,placeholder:"key",disabled:A||s!=null&&s!=="",size:"small",onChange:u=>{o(u.target.value)}})}),r.jsx("div",{className:"flex-grow",children:a!=="map"&&a!=="array"&&p(s,t,a)}),r.jsxs(f.Menu,{trigger:r.jsx(f.IconButton,{size:"small",className:"h-7 w-7",children:r.jsx(f.ArrowDropDownIcon,{})}),children:[r.jsx(f.MenuItem,{dense:!0,onClick:()=>h("string"),children:"string"}),r.jsx(f.MenuItem,{dense:!0,onClick:()=>h("number"),children:"number"}),r.jsx(f.MenuItem,{dense:!0,onClick:()=>h("boolean"),children:"boolean"}),r.jsx(f.MenuItem,{dense:!0,onClick:()=>h("date"),children:"date"}),r.jsx(f.MenuItem,{dense:!0,onClick:()=>h("map"),children:"map"}),r.jsx(f.MenuItem,{dense:!0,onClick:()=>h("array"),children:"array"})]}),r.jsx(f.IconButton,{"aria-label":"delete",size:"small",onClick:l,className:"h-7 w-7",children:r.jsx(f.RemoveIcon,{size:"small"})})]},e.toString()),(a==="map"||a==="array")&&p(s,t,a)]})}function ca({id:e,index:t,value:n,setValue:o}){const{locale:l}=X(),[i,s]=c.useState(dn(n)??"string");function a(A){s(A)}function d(A,g){return g==="string"||g==="number"?r.jsx(f.TextField,{value:A,type:g==="number"?"number":"text",size:"small",onChange:p=>{if(g==="number"){const h=p.target.value?parseFloat(p.target.value):void 0;h&&isNaN(h)?o(null):h!=null?o(h):o(null)}else o(p.target.value)}}):g==="date"?r.jsx(f.DateTimeField,{value:A,size:"small",locale:l,onChange:p=>{o(p)}}):g==="boolean"?r.jsx(f.BooleanSwitchWithLabel,{value:A,size:"small",position:"start",onValueChange:p=>{o(p)}}):g==="array"?r.jsx(f.Typography,{variant:"caption",children:"Arrays of arrays are not supported."}):g==="map"?r.jsx("div",{className:f.cn(f.defaultBorderMixin,"ml-2 pl-2 border-l border-solid"),children:r.jsx(an,{value:A,setValue:p=>{o(p)}})}):r.jsx(f.Typography,{variant:"caption",children:`Data type ${g} not supported yet`})}return r.jsxs(r.Fragment,{children:[r.jsxs(f.Typography,{component:"div",className:"font-mono flex min-h-12 flex-row gap-1 items-center",children:[r.jsx("div",{className:"flex-grow",children:i!=="map"&&d(n,i)}),r.jsxs(f.Menu,{trigger:r.jsx(f.IconButton,{size:"small",className:"h-7 w-7",children:r.jsx(f.ArrowDropDownIcon,{})}),children:[r.jsx(f.MenuItem,{dense:!0,onClick:()=>a("string"),children:"string"}),r.jsx(f.MenuItem,{dense:!0,onClick:()=>a("number"),children:"number"}),r.jsx(f.MenuItem,{dense:!0,onClick:()=>a("boolean"),children:"boolean"}),r.jsx(f.MenuItem,{dense:!0,onClick:()=>a("map"),children:"map"}),r.jsx(f.MenuItem,{dense:!0,onClick:()=>a("date"),children:"date"})]})]},e.toString()),i==="map"&&d(n,i)]})}function cn(){return Math.floor(Math.random()*Math.floor(Number.MAX_SAFE_INTEGER))}function dn(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 Me)return"reference";if(e instanceof Gt)return"geopoint";if(typeof e=="object")return"map"}function sl({propertyKey:e,value:t,error:n,showError:o,isSubmitting:l,setValue:i,setFieldValue:s,tableMode:a,property:d,includeDescription:A,underlyingValueHasChanged:g,context:p,disabled:h}){if(!d.of)throw Error("RepeatFieldBinding misconfiguration. Property `of` not set");if(!d.resolvedProperties||!Array.isArray(d.resolvedProperties))throw Error("RepeatFieldBinding - Internal error: Expected array in 'property.resolvedProperties'");const u=d.expanded===void 0?!0:d.expanded,m=d.of,[b,y]=c.useState();xe({property:d,value:t,setValue:i});const w=(k,S)=>{const x=d.resolvedProperties[k]??m,B={propertyKey:`${e}.${k}`,disabled:h,property:x,includeDescription:A,underlyingValueHasChanged:g,context:p,tableMode:!1,partOfArray:!0,partOfBlock:!1,autoFocus:S===b};return r.jsx(nt,{...B})},C=r.jsx(Rt,{value:t,addLabel:d.name?"Add entry to "+d.name:"Add entry",name:e,setFieldValue:s,buildEntry:w,onInternalIdAdded:y,disabled:l||!!d.disabled,includeAddButton:!d.disabled,newDefaultEntry:d.of.defaultValue}),E=r.jsx(be,{icon:pe(d,"small"),required:d.validation?.required,title:d.name,className:"text-text-secondary dark:text-text-secondary-dark"});return r.jsxs(r.Fragment,{children:[!a&&r.jsx(f.ExpandablePanel,{initiallyExpanded:u,className:"px-2 md:px-4 pb-2 md:pb-4 pt-1 md:pt-2",title:E,children:C}),a&&C,r.jsx(ye,{includeDescription:A,showError:o,error:n,disabled:h,property:d})]})}function al({propertyKey:e,value:t,error:n,showError:o,isSubmitting:l,setValue:i,setFieldValue:s,tableMode:a,property:d,includeDescription:A,underlyingValueHasChanged:g,context:p,disabled:h}){if(!d.oneOf)throw Error("ArrayOneOfField misconfiguration. Property `oneOf` not set");const u=d.expanded===void 0?!0:d.expanded;xe({property:d,value:t,setValue:i});const[m,b]=c.useState(),y=c.useCallback((k,S)=>r.jsx(da,{name:`${e}.${k}`,index:k,value:t[k],typeField:d.oneOf.typeField??yt,valueField:d.oneOf.valueField??zt,properties:d.oneOf.properties,autoFocus:S===m,context:p},`array_one_of_${k}`),[p,m,d.oneOf,e,t]),w=r.jsx(be,{icon:pe(d,"small"),required:d.validation?.required,title:d.name,className:"text-text-secondary dark:text-text-secondary-dark"}),C=Object.keys(d.oneOf.properties)[0],E=r.jsx(Rt,{value:t,name:e,addLabel:d.name?"Add entry to "+d.name:"Add entry",buildEntry:y,onInternalIdAdded:b,disabled:l||!!d.disabled,includeAddButton:!d.disabled,setFieldValue:s,newDefaultEntry:{[d.oneOf.typeField??yt]:C,[d.oneOf.valueField??zt]:Ut(d.oneOf.properties[C])}});return r.jsxs(r.Fragment,{children:[!a&&r.jsx(f.ExpandablePanel,{className:"px-2 md:px-4 pb-2 md:pb-4 pt-1 md:pt-2",initiallyExpanded:u,title:w,children:E}),a&&E,r.jsx(ye,{includeDescription:A,showError:o,error:n,disabled:h,property:d})]})}function da({name:e,index:t,value:n,typeField:o,valueField:l,properties:i,autoFocus:s,context:a}){const d=n&&n[o],[A,g]=c.useState(d??void 0),p=Ce.useFormikContext();c.useEffect(()=>{d||w(Object.keys(i)[0])},[]),c.useEffect(()=>{d!==A&&g(d)},[d]);const h=A?i[A]:void 0,u=Object.entries(i).map(([C,E])=>({id:C,label:E.name??C})),m=`${e}.${o}`,b=`${e}.${l}`,y=h?{propertyKey:b,property:h,context:a,autoFocus:s,partOfArray:!1,partOfBlock:!0,tableMode:!1}:void 0,w=C=>{const E=C?i[C]:void 0;g(C),p.setFieldTouched(m),p.setFieldValue(m,C),p.setFieldValue(b,E?Ut(E):null)};return r.jsxs("div",{className:f.cn(f.paperMixin,"bg-transparent p-4 my-4 py-8"),children:[r.jsx(Ce.FastField,{required:!0,name:m,children:C=>r.jsx(r.Fragment,{children:r.jsx(f.Select,{className:"mb-2",placeholder:r.jsx(f.Typography,{variant:"caption",className:"px-4 py-2 font-medium",children:"Type"}),size:"small",position:"item-aligned",value:C.field.value!==void 0&&C.field.value!==null?C.field.value:"",renderValue:E=>r.jsx(we,{enumKey:E,enumValues:u,size:"small"}),onValueChange:E=>{w(E)},children:u.map(E=>r.jsx(f.SelectItem,{value:String(E.id),children:r.jsx(we,{enumKey:E.id,enumValues:u,size:"small"})},E.id))})})}),y&&r.jsx(nt,{...y},`form_control_${e}_${A}`)]})}const Aa=new xl;try{Re.use(Re.Plugins.AutoResize,{min:100}),Re.unuse(Re.Plugins.FontUnderline),Re.unuse(Re.Plugins.Clear)}catch{}function cl({propertyKey:e,value:t,setValue:n,error:o,showError:l,disabled:i,autoFocus:s,touched:a,property:d,tableMode:A,includeDescription:g,context:p}){const[h,u]=c.useState(t),m=c.useRef(t);f.useInjectStyles("MarkdownFieldBinding",fa);const b=c.useDeferredValue({internalValue:h,value:t});return c.useEffect(()=>{m.current=t,u(t)},[t]),c.useEffect(()=>{b.internalValue!==m.current&&n(b.internalValue)},[b]),r.jsxs(r.Fragment,{children:[!A&&r.jsx(f.Typography,{variant:"caption",className:"flex-grow",children:r.jsx(be,{icon:pe(d,"small"),required:d.validation?.required,title:d.name,className:"text-text-secondary dark:text-text-secondary-dark ml-3.5"})}),r.jsx(Re,{value:h??"",className:f.cn(f.fieldBackgroundMixin,i?f.fieldBackgroundDisabledMixin:f.fieldBackgroundHoverMixin,"text-base"),readOnly:i,renderHTML:y=>Aa.render(y),view:{menu:!0,md:!0,html:!1},onChange:({html:y,text:w})=>{u(w??null)}}),r.jsx(ye,{includeDescription:g,showError:l,error:o,disabled:i,property:d})]})}const fa=`
126
6
  @font-face {
127
7
  font-family: rmel-iconfont;
128
8
  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=);
@@ -705,907 +585,5 @@
705
585
  .rc-md-editor .header-list .list-item:hover {
706
586
  }
707
587
 
708
- `;function ha({propertyKey:e,value:t,error:c,showError:i,isSubmitting:a,setValue:l,tableMode:s,property:d,includeDescription:u,underlyingValueHasChanged:A,context:g,disabled:h}){if(ee(),!Array.isArray(d.resolvedProperties))throw Error("ArrayCustomShapedFieldBinding misconfiguration. Property `of` not set");const _=d.expanded===void 0?!0:d.expanded;Le({property:d,value:t,setValue:l});const y=n.jsx(Ke,{icon:ve(d,"small"),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:h,property:b,includeDescription:u,underlyingValueHasChanged:A,context:g,tableMode:!1,partOfArray:!0,partOfBlock:!1,autoFocus:!1};return n.jsx("div",{className:"pb-4",children:n.jsx(Sn,{...w})},`custom_shaped_array_${p}`)});return n.jsxs(n.Fragment,{children:[!s&&n.jsx(hn,{initiallyExpanded:_,title:y,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:h,property:d})]})}const W3=({containerRef:e})=>{const{isSubmitting:t,isValidating:c,errors:i}=Pe.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=Ia(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},G3=e=>{const t=e&&e.scrollHeight>e.clientHeight,c=e?window.getComputedStyle(e).overflowY:null,i=c&&c.indexOf("hidden")!==-1;return t&&!i},Ia=e=>!e||e===document.body?document.body:G3(e)?e:Ia(e.parentNode);function z3({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 yn(e)},[e]),A=An(),{copy:g}=Ta({onSuccess:y=>A.open({type:"success",message:`Copied ${y}`})}),h=ee(),_={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(ye,{title:"Copy",children:n.jsx(R,{onClick:y=>g(l.id),"aria-label":"copy-id",children:n.jsx(xn,{size:"small"})})}),h?.entityLinkBuilder&&n.jsx(ye,{title:"Open in the console",children:n.jsx(R,{component:"a",href:h.entityLinkBuilder({entity:l}),rel:"noopener noreferrer",target:"_blank",onClick:y=>y.stopPropagation(),"aria-label":"go-to-datasource",children:n.jsx(Rn,{size:"small"})})})]}):void 0};return n.jsxs(n.Fragment,{children:[u&&n.jsx(xe,{error:a,onValueChange:y=>i(y),..._,renderValue:y=>{const I=u.find(b=>b.id===y);return I?`${I.id} - ${I.label}`:y},children:u.map(y=>n.jsx(Re,{value:String(y.id),children:n.jsx(Fe,{enumKey:y.id,enumValues:u,size:"medium"})},y.id))}),!u&&n.jsx(tn,{..._,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:y=>{let I=y.target.value;return I&&(I=I.trim()),i(I.length?I:void 0)}}),n.jsx(Pe.ErrorMessage,{name:"id",component:"div",children:y=>"You need to specify an ID"})]})}const ba=f.memo(H3,(e,t)=>e.status===t.status&&e.path===t.path&&se(e.entity?.values,t.entity?.values));function H3({status:e,path:t,collection:c,entity:i,onEntitySaveRequested:a,onDiscard:l,onModified:s,onValuesChanged:d,onIdChange:u,onFormContextChange:A,hideId:g,autoSave:h,onIdUpdateError:_}){const y=ee(),I=We(),b=y.plugins,p=f.useMemo(()=>Te({collection:c,path:t,values:i?.values,fields:y.propertyConfigs}),[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,[]),m=f.useRef(!1),v=f.useMemo(()=>{const O=p.properties;if((e==="existing"||e==="copy")&&i)return i.values??to(O);if(e==="new")return to(O);throw console.error({status:e,entity:i}),new Error("Form has not been initialised with the correct parameters")},[e,p,i]),[S,K]=f.useState(k),[C,P]=f.useState(!1),[E,T]=f.useState(),B=f.useRef(i?.values??v),D=B.current,[N,W]=f.useState(D),z=O=>{W(O),d&&d(O),h&&O&&!se(O,D)&&V(O)};f.useEffect(()=>{S&&u&&u(S)},[S,u]);const q=Te({collection:c,path:t,entityId:S,values:N,previousValues:D,fields:y.propertyConfigs}),ne=q.callbacks?.onIdUpdate;f.useEffect(()=>{if(ne&&N&&(e==="new"||e==="copy"))try{const O=ne({collection:q,path:t,entityId:S,values:N,context:y});K(O)}catch(O){_&&_(O),console.error(O)}},[S,N,e]);const H=f.useMemo(()=>D&&e==="existing"?Object.entries(q.properties).map(([O,$])=>{if(ro($))return{};const oe=D[O],j=v[O];return se(oe,j)?{}:{[O]:j}}).reduce((O,$)=>({...O,...$}),{}):{},[v,q.properties,D,e]),V=O=>a({collection:q,path:t,entityId:S,values:O,previousValues:i?.values,closeAfterSave:m.current,autoSave:h??!1}).then($=>{const oe=e==="new"?"new_entity_saved":e==="copy"?"entity_copied":e==="existing"?"entity_edited":"unmapped_event";y.onAnalyticsEvent?.(oe,{path:t}),B.current=O}).catch($=>{console.error($),T($)}).finally(()=>{m.current=!1}),te=(O,$)=>{if(w&&!S){console.error("Missing custom Id"),P(!0),$.setSubmitting(!1);return}if(T(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(q.customId&&q.customId!=="optional"&&!S)throw Error("Form misconfiguration when saving, entityId should be set")}else throw Error("New FormType added, check EntityForm");V(O)?.then(oe=>{$.resetForm({values:O,submitCount:0,touched:{}})}).finally(()=>{$.setSubmitting(!1)})},U=f.useCallback(({name:O,value:$,property:oe})=>I.checkUniqueField(t,O,$,S),[I,t,S]),J=f.useMemo(()=>S?Fi(S,q.properties,U):void 0,[S,q.properties,U]),de=un(),Y=f.useCallback(({entity:O,customEntityActions:$})=>{const oe=Un(q,de,ze(t),null),j=O?xo(q,de,ze(t),O):!0,M=[];return oe&&M.push(zi),j&&M.push(Hi),$&&M.push(...$),M},[de,q,t]);return n.jsx(Pe.Formik,{initialValues:v,onSubmit:te,validationSchema:J,validate:O=>console.debug("Validating",O),onReset:()=>l&&l(),children:O=>{const $=[],oe={setFieldValue:O.setFieldValue,values:O.values,collection:Te({collection:q,path:t,fields:y.propertyConfigs}),entityId:S,path:t,save:V};if(f.useEffect(()=>{A&&A(oe)},[A,oe]),b&&q){const j={entityId:S,path:t,status:e,collection:c,context:y,currentEntityId:S,formContext:oe};$.push(...b.map((M,L)=>M.form?.Actions?n.jsx(M.form.Actions,{...j},`actions_${M.name}`):null).filter(Boolean))}return n.jsxs("div",{className:"h-full overflow-auto",children:[$.length>0&&n.jsx("div",{className:F("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:$}),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+($?8:0)} lg:mt-${8+($?8:0)} mb-8`,children:n.jsx(Z,{className:"mt-4 flex-grow "+q.hideIdFromForm?"mb-2":"mb-0",variant:"h4",children:q.singularName??q.name})}),!g&&n.jsx(z3,{customId:q.customId,entityId:S,status:e,onChange:K,error:C,entity:i}),S&&n.jsx(U3,{...O,initialValues:D,onModified:s,onValuesChanged:z,underlyingChanges:H,entity:i,resolvedCollection:q,formContext:oe,status:e,savingError:E,closeAfterSaveRef:m,autoSave:h,entityActions:Y({entity:i,customEntityActions:q.entityActions})})]})]})}})}function U3(e){const{values:t,onModified:c,onValuesChanged:i,underlyingChanges:a,formContext:l,entity:s,touched:d,setFieldValue:u,resolvedCollection:A,isSubmitting:g,status:h,handleSubmit:_,savingError:y,dirty:I,closeAfterSaveRef:b,autoSave:p,entityActions:w}=e,k=ee(),m=w.filter(E=>E.includeInForm===void 0||E.includeInForm),v=fn(),S=I;f.useEffect(()=>{c&&c(S),i&&i(t)},[S,t]),f.useEffect(()=>{!p&&a&&s&&Object.entries(a).forEach(([E,T])=>{const B=t[E];!se(T,B)&&!d[E]&&(console.debug("Updated value from the datasource:",E,T),u(E,T!==void 0?T: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(E=>{const T=A.properties[E];if(!T)return console.warn(`Property ${E} not found in collection ${A.name}`),null;const B=!!a&&Object.keys(a).includes(E)&&!!d[E],D=!p&&g||On(T)||!!T.disabled;if(ro(T))return null;const W={propertyKey:E,disabled:D,property:T,includeDescription:T.description||T.longDescription,underlyingValueHasChanged:B&&!p,context:l,tableMode:!1,partOfArray:!1,partOfBlock:!1,autoFocus:!1};return n.jsx("div",{id:`form_field_${E}`,children:n.jsx(ae,{children:n.jsx(Sn,{...W})})},`field_${A.name}_${E}`)}).filter(Boolean)}),C=g||!S&&h==="existing",P=f.useRef(null);return n.jsxs(Pe.Form,{onSubmit:_,noValidate:!0,children:[n.jsxs("div",{className:"mt-12",ref:P,children:[K,n.jsx(W3,{containerRef:P})]}),n.jsx("div",{className:"h-14"}),!p&&n.jsxs(En,{position:"absolute",children:[y&&n.jsx("div",{className:"text-right",children:n.jsx(Z,{color:"error",children:y.message})}),s&&m.length>0&&n.jsx("div",{className:"flex-grow flex overflow-auto no-scrollbar",children:m.map(E=>n.jsx(R,{color:"primary",onClick:T=>{T.stopPropagation(),s&&E.onClick({entity:s,fullPath:A.path,collection:A,context:k,sideEntityController:v})},children:E.icon},E.name))}),n.jsx(ie,{variant:"text",disabled:C,type:"reset",children:h==="existing"?"Discard":"Clear"}),n.jsxs(ie,{variant:"text",color:"primary",type:"submit",disabled:C,onClick:()=>{b.current=!1},children:[h==="existing"&&"Save",h==="copy"&&"Create copy",h==="new"&&"Create"]}),n.jsxs(ie,{variant:"filled",color:"primary",type:"submit",disabled:C,onClick:()=>{b.current=!0},children:[h==="existing"&&"Save and close",h==="copy"&&"Create copy and close",h==="new"&&"Create and close"]})]})]})}function pa(e){return Object.keys(Ft).includes(e)}const Ft={text_field:{key:"text_field",name:"Text field",description:"Simple short text",Icon:Nc,color:"#2d7ff9",property:{dataType:"string",Field:Hn}},multiline:{key:"multiline",name:"Multiline",description:"Text with multiple lines",Icon:Tc,color:"#2d7ff9",property:{dataType:"string",multiline:!0,Field:Hn}},markdown:{key:"markdown",name:"Markdown",description:"Text with advanced markdown syntax",Icon:wc,color:"#2d7ff9",property:{dataType:"string",markdown:!0,Field:_a}},url:{key:"url",name:"Url",description:"Text with URL validation",Icon:mc,color:"#154fb3",property:{dataType:"string",url:!0,Field:Hn}},email:{key:"email",name:"Email",description:"Text with email validation",Icon:gc,color:"#154fb3",property:{dataType:"string",email:!0,Field:Hn}},select:{key:"select",name:"Select/enum",description:"Select one text value from within an enumeration",Icon:Sc,color:"#4223c9",property:{dataType:"string",enumValues:[],Field:pt}},multi_select:{key:"multi_select",name:"Multi select",description:"Select multiple text values from within an enumeration",Icon:Bc,color:"#4223c9",property:{dataType:"array",of:{dataType:"string",enumValues:[]},Field:vt}},number_input:{key:"number_input",name:"Number input",description:"Simple number field with validation",Icon:Fc,color:"#bec920",property:{dataType:"number",Field:Hn}},number_select:{key:"number_select",name:"Number select",description:"Select a number value from within an enumeration",Icon:mr,color:"#bec920",property:{dataType:"number",enumValues:[],Field:pt}},multi_number_select:{key:"multi_number_select",name:"Multiple number select",description:"Select multiple number values from within an enumeration",Icon:mr,color:"#bec920",property:{dataType:"array",of:{dataType:"number",enumValues:[]},Field:vt}},file_upload:{key:"file_upload",name:"File upload",description:"Input for uploading single files",Icon:Mc,color:"#f92d9a",property:{dataType:"string",storage:{storagePath:"{path}"},Field:Ct}},multi_file_upload:{key:"multi_file_upload",name:"Multiple file upload",description:"Input for uploading multiple files",Icon:Ac,color:"#f92d9a",property:{dataType:"array",of:{dataType:"string",storage:{storagePath:"{path}"}},Field:Ct}},reference:{key:"reference",name:"Reference",description:"The value refers to a different collection",Icon:Kc,color:"#ff0042",property:{dataType:"reference",Field:ua}},multi_references:{key:"multi_references",name:"Multiple references",description:"Multiple values that refer to a different collection",Icon:cc,color:"#ff0042",property:{dataType:"array",of:{dataType:"reference"},Field:aa}},switch:{key:"switch",name:"Switch",description:"Boolean true or false field (or yes or no, 0 or 1...)",Icon:pc,color:"#20d9d2",property:{dataType:"boolean",Field:sa}},date_time:{key:"date_time",name:"Date/time",description:"A date time select field",Icon:Dc,color:"#8b46ff",property:{dataType:"date",Field:da}},group:{key:"group",name:"Group",description:"Group of multiple fields",Icon:br,color:"#ff9408",property:{dataType:"map",properties:{},Field:fa}},key_value:{key:"key_value",name:"Key-value",description:"Flexible field that allows the user to add multiple key-value pairs",Icon:br,color:"#ff9408",property:{dataType:"map",keyValue:!0,Field:Aa}},repeat:{key:"repeat",name:"Repeat/list",description:"A field that gets repeated multiple times (e.g. multiple text fields)",Icon:Kr,color:"#ff9408",property:{dataType:"array",of:{dataType:"string"},Field:ya}},custom_array:{key:"custom_array",name:"Custom array",description:"A field that saved its value as an array of custom objects",Icon:Kr,color:"#ff9408",property:{dataType:"array",of:[],Field:ha}},block:{key:"block",name:"Block",description:"A complex field that allows the user to compose different fields together, with a key->value format",Icon:Oc,color:"#ff9408",property:{dataType:"array",oneOf:{properties:{}},Field:ga}}};function Zo(e,t){const c=Dt(e),i=Pt(e);if(!i){console.error("No field id found for property",e);return}const a=Ft[i],l=c?t[c]:void 0;return Ge(a??{},l??{})}function Pt(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":Ee(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.propertyConfig?e.propertyConfig:Pt(e)}const Te=({collection:e,path:t,entityId:c,values:i,previousValues:a,userConfigPersistence:l,fields:s})=>{const d=l?.getCollectionConfig(t),u=gn(d,"properties"),A=to(e.properties),g=i??A,h=a??i??A,_=Object.entries(e.properties).map(([b,p])=>{const w=g?Pe.getIn(g,b):void 0;return{[b]:Me({propertyKey:b,propertyOrBuilder:p,values:g,previousValues:h,path:t,propertyValue:w,entityId:c,fields:s})}}).filter(b=>b!==null).reduce((b,p)=>({...b,...p}),{}),y=Ge(_,u),I=Object.entries(y).filter(([b,p])=>!!p?.dataType).map(([b,p])=>({[b]:p})).reduce((b,p)=>({...b,...p}),{});return{...e,properties:I,originalCollection:e}};function Me({propertyOrBuilder:e,propertyValue:t,fromBuilder:c=!1,...i}){if(typeof e=="object"&&"resolved"in e)return e;let a=null;if(e)if(Ee(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=Me({...i,propertyValue:t,propertyOrBuilder:s,fromBuilder:!0})}else{const l=e;if(l.dataType==="map"&&l.properties){const s=Nt({...i,properties:l.properties,propertyValue:t});a={...l,resolved:!0,fromBuilder:c,properties:s}}else l.dataType==="array"?a=In({property:l,propertyValue:t,fromBuilder:c,...i}):(l.dataType==="string"||l.dataType==="number")&&l.enumValues&&(a=Tt(l,c))}else return null;if(a||(a={...e,resolved:!0,fromBuilder:c}),a.propertyConfig&&!pa(a.propertyConfig)){const l=i.fields;if(!l)throw Error(`Trying to resolve a property with key ${a.propertyConfig} that inherits from a custom property config but no custom property configs were provided. Use the property \`propertyConfigs\` in your app config to provide them`);const s=l[a.propertyConfig];if(!s)return console.warn(`Trying to resolve a property with key ${a.propertyConfig} that inherits from a custom property config but no custom property config with that key was found. Check the \`propertyConfigs\` in your app config`),console.warn("Available property configs",l),null;if(s.property){const d=s.property;"propertyConfig"in d&&delete d.propertyConfig;const u=Me({propertyOrBuilder:d,propertyValue:t,...i});u&&(a=Ge(u,a))}}return a?{...a,resolved:!0}:null}function In({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)=>Me({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)=>Me({propertyKey:`${e}.${u}`,propertyOrBuilder:a,propertyValue:d,...i,index:u})).filter(d=>!!d):[],s=Me({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??oo,l=Array.isArray(c)?c.map((d,u)=>{const A=d&&d[a],g=t.oneOf?.properties[A];return!A||!g?null:Me({propertyKey:`${e}.${u}`,propertyOrBuilder:g,propertyValue:c,...i})}).filter(d=>!!d):[],s=Nt({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 Nt({properties:e,propertyValue:t,...c}){return Object.entries(e).map(([i,a])=>({[i]:Me({propertyKey:i,propertyOrBuilder:a,propertyValue:t&&typeof t=="object"?gn(t,i):void 0,...c})})).filter(i=>i!==null).reduce((i,a)=>({...i,...a}),{})}function Tt(e,t){return typeof e.enumValues=="object"?{...e,resolved:!0,enumValues:yn(e.enumValues)?.filter(c=>c&&c.id&&c.label)??[],fromBuilder:t??!1}:e}function Y3(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 Mt(e,t){return typeof e=="string"?t?.find(c=>c.key===e):e}function wa(e,t){const c=Me({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 j3(e){return n.jsx(pr,{size:e})}function Ot(e,t){const c=e?.Icon??pr;return n.jsx(c,{size:t})}function ve(e,t="small",c={}){if(Ee(e))return n.jsx(kc,{size:t});{const i=Zo(e,c);return Ot(i,t)}}function $3(e,t){return Ee(e)?"#888":Zo(e,t)?.color??"#666"}function Bn(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 Bn(i.properties,c.slice(1).join("."))}}}function Lt(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 Lt(i.properties,c.slice(1).join("."))}}}function q3(e){return e.replace(/\.([^.]*)/g,"[$1]")}function ka(e,t){if(!t)return e;const c={};return t.filter(Boolean).forEach(i=>{const a=Bn(e,i);typeof a=="object"&&a.dataType==="map"&&a.properties&&(c[i]={...a,properties:ka(a.properties,a.propertiesOrder??[])}),a&&(c[i]=a)}),c}function J3(e){return e.propertiesOrder?e.propertiesOrder:[...Object.keys(e.properties),...(e.additionalFields??[]).map(t=>t.key)]}const Xo={read:!0,edit:!0,create:!0,delete:!0};function uo(e,t,c,i){const a=e.permissions;if(a===void 0)return Xo;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 Qt(e,t,c,i){return uo(e,t,c,i).edit??Xo.edit}function Un(e,t,c,i){return uo(e,t,c,i).create??Xo.create}function xo(e,t,c,i){return uo(e,t,c,i).delete??Xo.delete}function ma(e,t){if(e&&(e=No(e),e in er))return e in er?n.jsx(r,{iconKey:e,size:"medium",className:t}):void 0}function Ro(e,t){const c=ma(e.icon,t);if(e?.icon&&c)return c;let i=No(("singularName"in e?e.singularName:void 0)??e.name),a;i in er&&(a=i),a||(i=No(e.path),i in er&&(a=i));const l=_r.length;return a||(a=_r[Lc(e.path)%l]),n.jsx(r,{iconKey:a,size:"medium",className:t})}const er=tc.reduce((e,t)=>(e[t]=t,e),{});function Z3(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 X3(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 va(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&&!Ee(d)&&!wa(d,t)}).slice(0,i))}function Vt(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,Vt(l,`${a}[${s}]`))}):Object.assign(c,Vt(e[i],a)):c[a]=e[i],c},{})}function Ca(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=Ca([a]);Object.entries(l).forEach(([s,d])=>{const u=`${i}.${s}`;t[u]=Math.max(t[u]||0,d)})}}),t),{})}function Ka(e){return Object.keys(e).forEach(t=>{const c=e[t];c.editable=!0,c.dataType==="map"&&c.properties&&Ka(c.properties)}),e}function Sa(e){return Object.entries(e).reduce((t,[c,i])=>{if(!Ee(i)&&i.dataType==="map"&&i.properties){const a={...i,properties:Sa(i.properties)};t[c]=a}return Ee(i)?t[c]=i:t[c]={...i,editable:!1},t},{})}function Wt(e,t,c){if(e){const a=e({collection:t,parentPaths:c})??t;return a.subcollections&&(a.subcollections=a.subcollections.map(l=>Wt(e,l,[...c,t.path]))),a}else return t}function Ba(e,t,c=[],i){const a=(t??[]).map(s=>{const d=e?.find(u=>u.id===s.id);return d?Ea(d,s,c,i):Wt(i,s,c)}),l=e.filter(s=>!a.map(d=>d.id).includes(s.id)).map(s=>i?Wt(i,s,c):s);return[...a,...l]}function Ea(e,t,c=[],i){const a=Ba(e?.subcollections??[],t?.subcollections??[],[...c,e.path],i),l={...e.properties};Object.keys(t.properties).forEach(_=>{const y=e.properties[_];y?l[_]=Fa(y,t.properties[_]):l[_]=t.properties[_]});const s=Ge(e,t),d=Pa(e),u=Pa(t),A=[...new Set([...u,...d])],g=[...new Set([...e.entityViews??[],...t.entityViews??[]])];let h={...s,subcollections:a,properties:Or(l,A),propertiesOrder:A,entityViews:g};if(i){const _=i({collection:h,parentPaths:c});_&&(h=_)}return h}function Fa(e,t){if(Ee(t))return t;{const c=Ge(e,t),i=!!e.editable,a=!!t.editable;if(t.dataType==="map"&&t.properties){const l="properties"in e?e.properties:{},s="properties"in t?t.properties:{},d="propertiesOrder"in e&&e.propertiesOrder?e.propertiesOrder:Object.keys(l),u="propertiesOrder"in t&&t.propertiesOrder?t.propertiesOrder:"properties"in t?Object.keys(t.properties):[],A=[...new Set([...d,...u])],g={...l};return Object.keys(t.properties).forEach(h=>{const _=l[h];_&&(g[h]=Fa(_,s[h]))}),{...c,editable:i&&a,properties:g,propertiesOrder:A}}return{...c,editable:i&&a}}}function Pa(e){if(e.propertiesOrder&&e.propertiesOrder.length>0){const t=e.propertiesOrder;return e.additionalFields&&e.additionalFields.forEach(c=>{t.includes(c.key)||t.push(c.key)}),t}return[...Object.keys(e.properties),...(e.additionalFields??[])?.map(t=>t.key)]}function x3(e){return e}function R3(e){return e}function eU(e){return e}function nU(e){return e}function oU(e){return e}function rU(e){return e}function tU(e){return e}function cU(e){return e}function iU(e){return e}async function Gt({collection:e,path:t,entityId:c,values:i,previousValues:a,status:l,dataSource:s,context:d,onSaveSuccess:u,onSaveFailure:A,onPreSaveHookError:g,onSaveSuccessHookError:h}){let _;const y=d.navigation.resolveAliasesFrom(t),I=e.callbacks;if(I?.onPreSave)try{const b=Te({collection:e,path:t,values:a,entityId:c,fields:d.propertyConfigs});_=await I.onPreSave({collection:b,path:t,resolvedPath:y,entityId:c,values:i,previousValues:a,status:l,context:d})}catch(b){console.error(b),g&&g(b);return}else _=i;return s.saveEntity({collection:e,path:y,entityId:c,values:_,previousValues:a,status:l}).then(b=>{try{if(I?.onSaveSuccess){const p=Te({collection:e,path:t,values:_,entityId:c,fields:d.propertyConfigs});I.onSaveSuccess({collection:p,path:t,resolvedPath:y,entityId:b.id,values:_,previousValues:a,status:l,context:d})}}catch(p){h&&h(p)}u&&u(b)}).catch(b=>{if(I?.onSaveFailure){const p=Te({collection:e,path:t,values:_,entityId:c,fields:d.propertyConfigs});I.onSaveFailure({collection:p,path:t,resolvedPath:y,entityId:c,values:_,previousValues:a,status:l,context:d})}A&&A(b)})}async function Da({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(g){return console.error(g),s&&s(t,g),!1}return e.deleteEntity({entity:t}).then(()=>{a&&a(t);try{return i?.onDelete&&i.onDelete(A),!0}catch(g){return d&&d(t,g),!1}}).catch(g=>(l&&l(t,g),!1))}function Le({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 Na({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=At({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 aU({path:e}){const t=ee(),[c,i]=f.useState(),[a,l]=f.useState(!1),[s,d]=f.useState();return f.useEffect(()=>{t.navigation&&(l(!0),d(void 0),Na({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 zt=()=>f.useContext(zo),Ta=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 g=()=>navigator.clipboard!==void 0,h=f.useCallback(k=>{if(c)c(k);else throw new Error(k)},[c]),_=f.useCallback(k=>{t&&t(k),d(!0),A(k)},[t]),y=f.useCallback(k=>{navigator.clipboard.writeText(k).then(()=>_(k)).catch(m=>{h(m),d(!1)})},[h,_]),I=()=>{g()&&navigator.clipboard.writeText("")},b=k=>w("copy",typeof k=="object"?void 0:k),p=()=>w("cut"),w=f.useCallback((k="copy",m)=>{const v=l.current,S=v&&(v.tagName==="INPUT"||v.tagName==="TEXTAREA"),K=l.current;g()&&!i&&(m?y(m):v?S?(y(K.value),k==="cut"&&(K.value="")):y(v.innerText):h("Both the ref & text were undefined"))},[i,y,h]);return{ref:l,isCoppied:s,clipboard:u,clearClipboard:I,isSupported:g,copy:b,cut:p}},Ht=()=>f.useContext(Yi),lU={xs:0,sm:640,md:768,lg:1024,xl:1280,"2xl":1536,"3xl":1920},He=(e="lg")=>{const[t,c]=f.useState(!1);return f.useEffect(()=>{const i=()=>{const a=window.matchMedia(`(min-width: ${lU[e]+1}px)`).matches;c(a)};return i(),window.addEventListener("resize",i),()=>{window.removeEventListener("resize",i)}},[]),t};function fo(e){const t=Ae(),c=no(),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(Ri,{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 sU=`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=
709
- `;function dU(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??sU}},[e,t])}const Ut=le.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=F(s.root,{[s.shrink]:i,[s.expanded]:!i},a);return n.jsx("label",{"data-shrink":i,ref:c,className:d,...l})}),Yn=({value:e,label:t,onChange:c,disabled:i,clearable:a,mode:l="date",error:s,size:d,className:u,style:A,inputClassName:g,preventOpenOnFocus:h,invisible:_})=>{const y=f.useRef(null),{locale:I}=ee(),b=f.useRef(null),[p,w]=f.useState(document.activeElement===b.current),k=e!=null,m=e!=null&&!(e instanceof Date);vn("DateTimeField",uU);const v=S=>{S.preventDefault(),c(null)};return n.jsxs(n.Fragment,{children:[n.jsxs("div",{className:F("rounded-md relative max-w-full",!_&&Xe,i?nn:Ye,{"min-h-[48px]":d==="small","min-h-[64px]":d==="medium"},u),style:A,children:[t&&n.jsx(Ut,{className:F("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(cr,{ref:y,locale:I,selected:(m?null:e)??null,onChange:c,disabled:!1,popperClassName:F(je,"my-4 shadow"),onClick:S=>S.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:F("w-full outline-none bg-transparent leading-normal text-base px-3",a?"pr-14":"pr-12","rounded-md",!_&&Ie,d==="small"?"min-h-[48px]":"min-h-[64px]",t?"pt-[28px] pb-2":"py-2",g,i&&"border border-transparent outline-none opacity-50 dark:opacity-50 text-gray-600 dark:text-gray-500")}),n.jsx(R,{onClick:()=>y.current?.setOpen(!0),className:"absolute right-3 top-1/2 transform -translate-y-1/2 !text-gray-500 ",children:n.jsx(lc,{color:"disabled"})}),a&&e&&n.jsx(R,{onClick:v,className:"absolute right-14 top-1/2 transform -translate-y-1/2 text-gray-400 ",children:n.jsx(dn,{})})]}),m&&n.jsx(me,{title:"Invalid date value for this field",error:`The provided value is: ${JSON.stringify(e)}`})]})},uU=`
710
- .react-datepicker__year-read-view--down-arrow,
711
- .react-datepicker__month-read-view--down-arrow,
712
- .react-datepicker__month-year-read-view--down-arrow, .react-datepicker__navigation-icon::before {
713
- border-color: #ccc;
714
- border-style: solid;
715
- border-width: 3px 3px 0 0;
716
- content: "";
717
- display: block;
718
- height: 9px;
719
- position: absolute;
720
- top: 6px;
721
- width: 9px;
722
- }
723
-
724
- .react-datepicker-wrapper {
725
- width: 100%;
726
- height: 100%;
727
- display: flex;
728
- padding: 0;
729
- border: 0;
730
- }
731
-
732
- .react-datepicker {
733
- font-size: 0.875rem;
734
- color: #111;
735
- display: flex;
736
- position: relative;
737
- }
738
-
739
- .react-datepicker--time-only .react-datepicker__time-container {
740
- border-left: 0;
741
- }
742
- .react-datepicker--time-only .react-datepicker__time,
743
- .react-datepicker--time-only .react-datepicker__time-box {
744
- border-bottom-left-radius: 4px;
745
- border-bottom-right-radius: 4px;
746
- }
747
-
748
- .react-datepicker__triangle {
749
- display: none;
750
- }
751
-
752
- .react-datepicker-popper {
753
- z-index: 100;
754
- min-width: 348px;
755
- }
756
-
757
- .react-datepicker__header {
758
- text-align: center;
759
- background-color: #f0f0f0;
760
- border-bottom: 1px solid #e7e7e9;
761
- border-top-left-radius: 4px;
762
- padding: 16px;
763
- position: relative;
764
- }
765
- .react-datepicker__header--time {
766
- padding-bottom: 8px;
767
- padding-left: 5px;
768
- padding-right: 5px;
769
- }
770
- .react-datepicker__header--time:not(.react-datepicker__header--time--only) {
771
- border-top-left-radius: 0;
772
- }
773
- .react-datepicker__header:not(.react-datepicker__header--has-time-select) {
774
- border-top-right-radius: 4px;
775
- }
776
-
777
- .react-datepicker__year-dropdown-container--select,
778
- .react-datepicker__month-dropdown-container--select,
779
- .react-datepicker__month-year-dropdown-container--select,
780
- .react-datepicker__year-dropdown-container--scroll,
781
- .react-datepicker__month-dropdown-container--scroll,
782
- .react-datepicker__month-year-dropdown-container--scroll {
783
- display: inline-block;
784
- margin: 0 15px;
785
- }
786
-
787
- .react-datepicker__current-month,
788
- .react-datepicker-time__header,
789
- .react-datepicker-year-header {
790
- margin-top: 0;
791
- color: #000;
792
- font-weight: 500;
793
- font-size: 0.875rem;
794
- }
795
-
796
- .react-datepicker-time__header {
797
- text-overflow: ellipsis;
798
- white-space: nowrap;
799
- overflow: hidden;
800
- }
801
-
802
- .react-datepicker__navigation {
803
- align-items: center;
804
- background: none;
805
- display: flex;
806
- justify-content: center;
807
- text-align: center;
808
- cursor: pointer;
809
- position: absolute;
810
- top: 2px;
811
- padding: 0;
812
- border: none;
813
- z-index: 1;
814
- height: 32px;
815
- width: 32px;
816
- text-indent: -999em;
817
- overflow: hidden;
818
- }
819
- .react-datepicker__navigation--previous {
820
- top: 12px;
821
- left: 4px;
822
- }
823
- .react-datepicker__navigation--next {
824
- top: 12px;
825
- right: 4px;
826
- }
827
- .react-datepicker__navigation--next--with-time:not(.react-datepicker__navigation--next--with-today-button) {
828
- right: 85px;
829
- }
830
- .react-datepicker__navigation--years {
831
- position: relative;
832
- top: 0;
833
- display: block;
834
- margin-left: auto;
835
- margin-right: auto;
836
- }
837
- .react-datepicker__navigation--years-previous {
838
- top: 4px;
839
- }
840
- .react-datepicker__navigation--years-upcoming {
841
- top: -4px;
842
- }
843
- .react-datepicker__navigation:hover *::before {
844
- border-color: #a6a6a6;
845
- }
846
-
847
- .react-datepicker__navigation-icon {
848
- position: relative;
849
- top: -1px;
850
- font-size: 20px;
851
- width: 0;
852
- }
853
- .react-datepicker__navigation-icon--next {
854
- left: -2px;
855
- }
856
- .react-datepicker__navigation-icon--next::before {
857
- transform: rotate(45deg);
858
- left: -7px;
859
- }
860
- .react-datepicker__navigation-icon--previous {
861
- right: -2px;
862
- }
863
- .react-datepicker__navigation-icon--previous::before {
864
- transform: rotate(225deg);
865
- right: -7px;
866
- }
867
-
868
-
869
- .react-datepicker__year {
870
- margin: 0.4rem;
871
- text-align: center;
872
- }
873
- .react-datepicker__year-wrapper {
874
- display: flex;
875
- flex-wrap: wrap;
876
- max-width: 180px;
877
- }
878
- .react-datepicker__year .react-datepicker__year-text {
879
- display: inline-block;
880
- width: 4rem;
881
- margin: 2px;
882
- }
883
-
884
- .react-datepicker__month {
885
- margin: 16px;
886
- text-align: center;
887
- }
888
- .react-datepicker__month .react-datepicker__month-text,
889
- .react-datepicker__month .react-datepicker__quarter-text {
890
- display: inline-block;
891
- width: 4rem;
892
- margin: 2px;
893
- }
894
-
895
- .react-datepicker__input-time-container {
896
- display: flex;
897
- width: 100%;
898
- height: 100%;
899
- margin: 5px 0 10px 15px;
900
- text-align: left;
901
- }
902
- .react-datepicker__input-time-container .react-datepicker-time__caption {
903
- display: inline-block;
904
- }
905
- .react-datepicker__input-time-container .react-datepicker-time__input-container {
906
- display: inline-block;
907
- }
908
- .react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input {
909
- display: inline-block;
910
- margin-left: 10px;
911
- }
912
- .react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input {
913
- width: auto;
914
- }
915
- .react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]::-webkit-inner-spin-button,
916
- .react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]::-webkit-outer-spin-button {
917
- -webkit-appearance: none;
918
- margin: 0;
919
- }
920
- .react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time] {
921
- -moz-appearance: textfield;
922
- }
923
- .react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__delimiter {
924
- margin-left: 5px;
925
- display: inline-block;
926
- }
927
-
928
- .react-datepicker__time-container {
929
- float: right;
930
- border-left: 1px solid #e7e7e9;
931
- width: 85px;
932
- height: 320px;
933
- }
934
- .react-datepicker__time-container--with-today-button {
935
- display: inline;
936
- border: 1px solid #e7e7e9;
937
- border-radius: 4px;
938
- position: absolute;
939
- right: -87px;
940
- top: 0;
941
- }
942
- .react-datepicker__time-container .react-datepicker__time {
943
- position: relative;
944
- border-bottom-right-radius: 4px;
945
- }
946
- .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box {
947
- width: 85px;
948
- overflow-x: hidden;
949
- margin: 0 auto;
950
- text-align: center;
951
- border-bottom-right-radius: 4px;
952
- }
953
- .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list {
954
- list-style: none;
955
- margin: 0;
956
- height: calc(195px + (1.7rem / 2));
957
- overflow-y: scroll;
958
- padding-right: 0;
959
- padding-left: 0;
960
- width: 100%;
961
- height: 100%;
962
- box-sizing: content-box;
963
- }
964
- .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item {
965
- height: 28px;
966
- padding: 5px 10px;
967
- white-space: nowrap;
968
- }
969
- .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item:hover {
970
- cursor: pointer;
971
- }
972
- .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected {
973
- background-color: #5193f6;
974
- color: white;
975
- font-weight: 500;
976
- }
977
- .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected:hover {
978
- background-color: #5193f6;
979
- }
980
- .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled {
981
- color: #ccc;
982
- }
983
- .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled:hover {
984
- cursor: default;
985
- }
986
-
987
- .react-datepicker__week-number {
988
- color: #ccc;
989
- display: inline-block;
990
- width: 1.7rem;
991
- line-height: 1.7rem;
992
- text-align: center;
993
- padding: 2px;
994
- margin: 2px;
995
- }
996
- .react-datepicker__week-number.react-datepicker__week-number--clickable {
997
- cursor: pointer;
998
- }
999
- .react-datepicker__week-number.react-datepicker__week-number--clickable:hover {
1000
- border-radius: 4px;
1001
- background-color: #f0f0f0;
1002
- }
1003
-
1004
- .react-datepicker__day-names,
1005
- .react-datepicker__week {
1006
- white-space: nowrap;
1007
- }
1008
-
1009
- .react-datepicker__day-names {
1010
- margin-bottom: -8px;
1011
- }
1012
-
1013
- .react-datepicker__day-name,
1014
- .react-datepicker__day,
1015
- .react-datepicker__time-name {
1016
- color: #000;
1017
- display: inline-block;
1018
- width: 1.7rem;
1019
- line-height: 1.7rem;
1020
- text-align: center;
1021
- padding: 2px;
1022
- margin: 2px;
1023
- }
1024
-
1025
- .react-datepicker__month-container{
1026
- flex-grow: 1;
1027
- }
1028
-
1029
- .react-datepicker__day,
1030
- .react-datepicker__month-text,
1031
- .react-datepicker__quarter-text,
1032
- .react-datepicker__year-text {
1033
- width: 32px;
1034
- cursor: pointer;
1035
- }
1036
- .react-datepicker__day:hover,
1037
- .react-datepicker__month-text:hover,
1038
- .react-datepicker__quarter-text:hover,
1039
- .react-datepicker__year-text:hover {
1040
- border-radius: 100%;
1041
- background-color: #f0f0f0;
1042
- }
1043
- .react-datepicker__day--today,
1044
- .react-datepicker__month-text--today,
1045
- .react-datepicker__quarter-text--today,
1046
- .react-datepicker__year-text--today {
1047
- font-weight: 500;
1048
- }
1049
- .react-datepicker__day--highlighted,
1050
- .react-datepicker__month-text--highlighted,
1051
- .react-datepicker__quarter-text--highlighted,
1052
- .react-datepicker__year-text--highlighted {
1053
- border-radius: 100%;
1054
- background-color: #3dcc4a;
1055
- color: #fff;
1056
- }
1057
- .react-datepicker__day--highlighted:hover,
1058
- .react-datepicker__month-text--highlighted:hover,
1059
- .react-datepicker__quarter-text--highlighted:hover,
1060
- .react-datepicker__year-text--highlighted:hover {
1061
- background-color: #32be3f;
1062
- }
1063
- .react-datepicker__day--highlighted-custom-1,
1064
- .react-datepicker__month-text--highlighted-custom-1,
1065
- .react-datepicker__quarter-text--highlighted-custom-1,
1066
- .react-datepicker__year-text--highlighted-custom-1 {
1067
- color: magenta;
1068
- }
1069
- .react-datepicker__day--highlighted-custom-2,
1070
- .react-datepicker__month-text--highlighted-custom-2,
1071
- .react-datepicker__quarter-text--highlighted-custom-2,
1072
- .react-datepicker__year-text--highlighted-custom-2 {
1073
- color: green;
1074
- }
1075
- .react-datepicker__day--selected, .react-datepicker__day--in-selecting-range, .react-datepicker__day--in-range,
1076
- .react-datepicker__month-text--selected,
1077
- .react-datepicker__month-text--in-selecting-range,
1078
- .react-datepicker__month-text--in-range,
1079
- .react-datepicker__quarter-text--selected,
1080
- .react-datepicker__quarter-text--in-selecting-range,
1081
- .react-datepicker__quarter-text--in-range,
1082
- .react-datepicker__year-text--selected,
1083
- .react-datepicker__year-text--in-selecting-range,
1084
- .react-datepicker__year-text--in-range {
1085
- border-radius: 100%;
1086
- background-color: #5193f6;
1087
- color: #fff;
1088
- }
1089
- .react-datepicker__day--selected:hover, .react-datepicker__day--in-selecting-range:hover, .react-datepicker__day--in-range:hover,
1090
- .react-datepicker__month-text--selected:hover,
1091
- .react-datepicker__month-text--in-selecting-range:hover,
1092
- .react-datepicker__month-text--in-range:hover,
1093
- .react-datepicker__quarter-text--selected:hover,
1094
- .react-datepicker__quarter-text--in-selecting-range:hover,
1095
- .react-datepicker__quarter-text--in-range:hover,
1096
- .react-datepicker__year-text--selected:hover,
1097
- .react-datepicker__year-text--in-selecting-range:hover,
1098
- .react-datepicker__year-text--in-range:hover {
1099
- background-color: #186ef0;
1100
- }
1101
- .react-datepicker__day--keyboard-selected,
1102
- .react-datepicker__month-text--keyboard-selected,
1103
- .react-datepicker__quarter-text--keyboard-selected,
1104
- .react-datepicker__year-text--keyboard-selected {
1105
- border-radius: 100%;
1106
- background-color: #cee2ff;
1107
- color: rgb(0, 0, 0);
1108
- }
1109
- .react-datepicker__day--keyboard-selected:hover,
1110
- .react-datepicker__month-text--keyboard-selected:hover,
1111
- .react-datepicker__quarter-text--keyboard-selected:hover,
1112
- .react-datepicker__year-text--keyboard-selected:hover {
1113
- background-color: #186ef0;
1114
- }
1115
- .react-datepicker__day--in-selecting-range:not(.react-datepicker__day--in-range,
1116
- .react-datepicker__month-text--in-range,
1117
- .react-datepicker__quarter-text--in-range,
1118
- .react-datepicker__year-text--in-range),
1119
- .react-datepicker__month-text--in-selecting-range:not(.react-datepicker__day--in-range,
1120
- .react-datepicker__month-text--in-range,
1121
- .react-datepicker__quarter-text--in-range,
1122
- .react-datepicker__year-text--in-range),
1123
- .react-datepicker__quarter-text--in-selecting-range:not(.react-datepicker__day--in-range,
1124
- .react-datepicker__month-text--in-range,
1125
- .react-datepicker__quarter-text--in-range,
1126
- .react-datepicker__year-text--in-range),
1127
- .react-datepicker__year-text--in-selecting-range:not(.react-datepicker__day--in-range,
1128
- .react-datepicker__month-text--in-range,
1129
- .react-datepicker__quarter-text--in-range,
1130
- .react-datepicker__year-text--in-range) {
1131
- background-color: rgba(33, 107, 165, 0.5);
1132
- }
1133
- .react-datepicker__month--selecting-range .react-datepicker__day--in-range:not(.react-datepicker__day--in-selecting-range,
1134
- .react-datepicker__month-text--in-selecting-range,
1135
- .react-datepicker__quarter-text--in-selecting-range,
1136
- .react-datepicker__year-text--in-selecting-range), .react-datepicker__year--selecting-range .react-datepicker__day--in-range:not(.react-datepicker__day--in-selecting-range,
1137
- .react-datepicker__month-text--in-selecting-range,
1138
- .react-datepicker__quarter-text--in-selecting-range,
1139
- .react-datepicker__year-text--in-selecting-range),
1140
- .react-datepicker__month--selecting-range .react-datepicker__month-text--in-range:not(.react-datepicker__day--in-selecting-range,
1141
- .react-datepicker__month-text--in-selecting-range,
1142
- .react-datepicker__quarter-text--in-selecting-range,
1143
- .react-datepicker__year-text--in-selecting-range),
1144
- .react-datepicker__year--selecting-range .react-datepicker__month-text--in-range:not(.react-datepicker__day--in-selecting-range,
1145
- .react-datepicker__month-text--in-selecting-range,
1146
- .react-datepicker__quarter-text--in-selecting-range,
1147
- .react-datepicker__year-text--in-selecting-range),
1148
- .react-datepicker__month--selecting-range .react-datepicker__quarter-text--in-range:not(.react-datepicker__day--in-selecting-range,
1149
- .react-datepicker__month-text--in-selecting-range,
1150
- .react-datepicker__quarter-text--in-selecting-range,
1151
- .react-datepicker__year-text--in-selecting-range),
1152
- .react-datepicker__year--selecting-range .react-datepicker__quarter-text--in-range:not(.react-datepicker__day--in-selecting-range,
1153
- .react-datepicker__month-text--in-selecting-range,
1154
- .react-datepicker__quarter-text--in-selecting-range,
1155
- .react-datepicker__year-text--in-selecting-range),
1156
- .react-datepicker__month--selecting-range .react-datepicker__year-text--in-range:not(.react-datepicker__day--in-selecting-range,
1157
- .react-datepicker__month-text--in-selecting-range,
1158
- .react-datepicker__quarter-text--in-selecting-range,
1159
- .react-datepicker__year-text--in-selecting-range),
1160
- .react-datepicker__year--selecting-range .react-datepicker__year-text--in-range:not(.react-datepicker__day--in-selecting-range,
1161
- .react-datepicker__month-text--in-selecting-range,
1162
- .react-datepicker__quarter-text--in-selecting-range,
1163
- .react-datepicker__year-text--in-selecting-range) {
1164
- background-color: #f0f0f0;
1165
- color: #000;
1166
- }
1167
- .react-datepicker__day--disabled,
1168
- .react-datepicker__month-text--disabled,
1169
- .react-datepicker__quarter-text--disabled,
1170
- .react-datepicker__year-text--disabled {
1171
- cursor: default;
1172
- color: #ccc;
1173
- }
1174
- .react-datepicker__day--disabled:hover,
1175
- .react-datepicker__month-text--disabled:hover,
1176
- .react-datepicker__quarter-text--disabled:hover,
1177
- .react-datepicker__year-text--disabled:hover {
1178
- background-color: transparent;
1179
- }
1180
-
1181
- .react-datepicker__input-container {
1182
- position: relative;
1183
- display: inline-block;
1184
- width: 100%;
1185
- height: 100%;
1186
- }
1187
- .react-datepicker__input-container .react-datepicker__calendar-icon {
1188
- position: absolute;
1189
- padding: 0.5rem;
1190
- }
1191
-
1192
- .react-datepicker__view-calendar-icon input {
1193
- padding: 6px 10px 5px 25px;
1194
- }
1195
-
1196
- .react-datepicker__year-read-view,
1197
- .react-datepicker__month-read-view,
1198
- .react-datepicker__month-year-read-view {
1199
- border: 1px solid transparent;
1200
- border-radius: 4px;
1201
- position: relative;
1202
- }
1203
- .react-datepicker__year-read-view:hover,
1204
- .react-datepicker__month-read-view:hover,
1205
- .react-datepicker__month-year-read-view:hover {
1206
- cursor: pointer;
1207
- }
1208
- .react-datepicker__year-read-view:hover .react-datepicker__year-read-view--down-arrow,
1209
- .react-datepicker__year-read-view:hover .react-datepicker__month-read-view--down-arrow,
1210
- .react-datepicker__month-read-view:hover .react-datepicker__year-read-view--down-arrow,
1211
- .react-datepicker__month-read-view:hover .react-datepicker__month-read-view--down-arrow,
1212
- .react-datepicker__month-year-read-view:hover .react-datepicker__year-read-view--down-arrow,
1213
- .react-datepicker__month-year-read-view:hover .react-datepicker__month-read-view--down-arrow {
1214
- border-top-color: #e7e7e9;
1215
- }
1216
- .react-datepicker__year-read-view--down-arrow,
1217
- .react-datepicker__month-read-view--down-arrow,
1218
- .react-datepicker__month-year-read-view--down-arrow {
1219
- transform: rotate(135deg);
1220
- right: -16px;
1221
- top: 0;
1222
- }
1223
-
1224
- .react-datepicker__year-dropdown,
1225
- .react-datepicker__month-dropdown,
1226
- .react-datepicker__month-year-dropdown {
1227
- background-color: #f0f0f0;
1228
- position: absolute;
1229
- width: 50%;
1230
- left: 25%;
1231
- top: 30px;
1232
- z-index: 1;
1233
- text-align: center;
1234
- border-radius: 4px;
1235
- border: 1px solid #e7e7e9;
1236
- }
1237
- .react-datepicker__year-dropdown:hover,
1238
- .react-datepicker__month-dropdown:hover,
1239
- .react-datepicker__month-year-dropdown:hover {
1240
- cursor: pointer;
1241
- }
1242
- .react-datepicker__year-dropdown--scrollable,
1243
- .react-datepicker__month-dropdown--scrollable,
1244
- .react-datepicker__month-year-dropdown--scrollable {
1245
- height: 150px;
1246
- overflow-y: scroll;
1247
- }
1248
-
1249
- .react-datepicker__year-option,
1250
- .react-datepicker__month-option,
1251
- .react-datepicker__month-year-option {
1252
- line-height: 20px;
1253
- width: 100%;
1254
- display: block;
1255
- margin-left: auto;
1256
- margin-right: auto;
1257
- }
1258
- .react-datepicker__year-option:first-of-type,
1259
- .react-datepicker__month-option:first-of-type,
1260
- .react-datepicker__month-year-option:first-of-type {
1261
- border-top-left-radius: 4px;
1262
- border-top-right-radius: 4px;
1263
- }
1264
- .react-datepicker__year-option:last-of-type,
1265
- .react-datepicker__month-option:last-of-type,
1266
- .react-datepicker__month-year-option:last-of-type {
1267
- -webkit-user-select: none;
1268
- -moz-user-select: none;
1269
- -ms-user-select: none;
1270
- user-select: none;
1271
- border-bottom-left-radius: 4px;
1272
- border-bottom-right-radius: 4px;
1273
- }
1274
- .react-datepicker__year-option:hover,
1275
- .react-datepicker__month-option:hover,
1276
- .react-datepicker__month-year-option:hover {
1277
- background-color: #ccc;
1278
- }
1279
- .react-datepicker__year-option:hover .react-datepicker__navigation--years-upcoming,
1280
- .react-datepicker__month-option:hover .react-datepicker__navigation--years-upcoming,
1281
- .react-datepicker__month-year-option:hover .react-datepicker__navigation--years-upcoming {
1282
- border-bottom-color: #e7e7e9;
1283
- }
1284
- .react-datepicker__year-option:hover .react-datepicker__navigation--years-previous,
1285
- .react-datepicker__month-option:hover .react-datepicker__navigation--years-previous,
1286
- .react-datepicker__month-year-option:hover .react-datepicker__navigation--years-previous {
1287
- border-top-color: #e7e7e9;
1288
- }
1289
- .react-datepicker__year-option--selected,
1290
- .react-datepicker__month-option--selected,
1291
- .react-datepicker__month-year-option--selected {
1292
- position: absolute;
1293
- left: 15px;
1294
- }
1295
-
1296
- .react-datepicker__close-icon {
1297
- cursor: pointer;
1298
- background-color: transparent;
1299
- border: 0;
1300
- outline: 0;
1301
- padding: 0 6px 0 0;
1302
- position: absolute;
1303
- top: 0;
1304
- right: 0;
1305
- height: 100%;
1306
- display: table-cell;
1307
- vertical-align: middle;
1308
- }
1309
- .react-datepicker__close-icon::after {
1310
- cursor: pointer;
1311
- background-color: #5193f6;
1312
- color: #fff;
1313
- border-radius: 50%;
1314
- height: 16px;
1315
- width: 16px;
1316
- padding: 2px;
1317
- font-size: 12px;
1318
- line-height: 1;
1319
- text-align: center;
1320
- display: table-cell;
1321
- vertical-align: middle;
1322
- content: "×";
1323
- }
1324
-
1325
- .react-datepicker__today-button {
1326
- background: #f0f0f0;
1327
- border-top: 1px solid #e7e7e9;
1328
- cursor: pointer;
1329
- text-align: center;
1330
- font-weight: 500;
1331
- padding: 5px 0;
1332
- clear: left;
1333
- }
1334
-
1335
- .react-datepicker__portal {
1336
- position: fixed;
1337
- width: 100vw;
1338
- height: 100vh;
1339
- background-color: rgba(0, 0, 0, 0.8);
1340
- left: 0;
1341
- top: 0;
1342
- justify-content: center;
1343
- align-items: center;
1344
- display: flex;
1345
- z-index: 2147483647;
1346
- }
1347
- .react-datepicker__portal .react-datepicker__day-name,
1348
- .react-datepicker__portal .react-datepicker__day,
1349
- .react-datepicker__portal .react-datepicker__time-name {
1350
- width: 3rem;
1351
- line-height: 3rem;
1352
- }
1353
- @media (max-width: 400px), (max-height: 550px) {
1354
- .react-datepicker__portal .react-datepicker__day-name,
1355
- .react-datepicker__portal .react-datepicker__day,
1356
- .react-datepicker__portal .react-datepicker__time-name {
1357
- width: 2rem;
1358
- line-height: 2rem;
1359
- }
1360
- }
1361
- .react-datepicker__portal .react-datepicker__current-month,
1362
- .react-datepicker__portal .react-datepicker-time__header {
1363
- font-size: 0.875rem;
1364
- }
1365
-
1366
- .react-datepicker__children-container {
1367
- width: 13.8rem;
1368
- margin: 0.4rem;
1369
- padding-right: 0.2rem;
1370
- padding-left: 0.2rem;
1371
- height: auto;
1372
- }
1373
-
1374
- .react-datepicker__aria-live {
1375
- position: absolute;
1376
- clip-path: circle(0);
1377
- border: 0;
1378
- height: 1px;
1379
- margin: -1px;
1380
- overflow: hidden;
1381
- padding: 0;
1382
- width: 1px;
1383
- white-space: nowrap;
1384
- }
1385
-
1386
- .react-datepicker__calendar-icon {
1387
- width: 1em;
1388
- height: 1em;
1389
- vertical-align: -0.125em;
1390
- }
1391
-
1392
-
1393
- :is([data-theme="dark"]) .react-datepicker__year-read-view--down-arrow,
1394
- :is([data-theme="dark"]) .react-datepicker__month-read-view--down-arrow,
1395
- :is([data-theme="dark"]) .react-datepicker__month-year-read-view--down-arrow,
1396
- :is([data-theme="dark"]) .react-datepicker__navigation-icon::before {
1397
- border-color: #333;
1398
- }
1399
-
1400
-
1401
- :is([data-theme="dark"]) .react-datepicker-wrapper,
1402
- :is([data-theme="dark"]) .react-datepicker {
1403
- color: #ccc;
1404
- }
1405
-
1406
- :is([data-theme="dark"]) .react-datepicker__navigation:hover *::before {
1407
- border-color: #e7e7e9;
1408
- }
1409
-
1410
- :is([data-theme="dark"]) .react-datepicker__day-names,
1411
- :is([data-theme="dark"]) .react-datepicker__week {
1412
- color: #ccc;
1413
- }
1414
-
1415
- :is([data-theme="dark"]) .react-datepicker__day,
1416
- :is([data-theme="dark"]) .react-datepicker__month-text,
1417
- :is([data-theme="dark"]) .react-datepicker__quarter-text,
1418
- :is([data-theme="dark"]) .react-datepicker__year-text {
1419
- color: #ccc;
1420
- }
1421
-
1422
- :is([data-theme="dark"]) .react-datepicker__current-month,
1423
- :is([data-theme="dark"]) .react-datepicker-time__header,
1424
- :is([data-theme="dark"]) .react-datepicker-year-header,
1425
- :is([data-theme="dark"]) .react-datepicker__day-name,
1426
- :is([data-theme="dark"]) .react-datepicker__year-dropdown-container--select,
1427
- :is([data-theme="dark"]) .react-datepicker__month-dropdown-container--select,
1428
- :is([data-theme="dark"]) .react-datepicker__month-year-dropdown-container--select,
1429
- :is([data-theme="dark"]) .react-datepicker__year-dropdown-container--scroll,
1430
- :is([data-theme="dark"]) .react-datepicker__month-dropdown-container--scroll,
1431
- :is([data-theme="dark"]) .react-datepicker__month-year-dropdown-container--scroll {
1432
- color: #ccc;
1433
- }
1434
-
1435
- :is([data-theme="dark"]) .react-datepicker__header {
1436
- color: #fff;
1437
- }
1438
-
1439
- :is([data-theme="dark"]) .react-datepicker__day--disabled,
1440
- :is([data-theme="dark"]) .react-datepicker__month-text--disabled,
1441
- :is([data-theme="dark"]) .react-datepicker__quarter-text--disabled,
1442
- :is([data-theme="dark"]) .react-datepicker__year-text--disabled {
1443
- color: #666;
1444
- }
1445
-
1446
- :is([data-theme="dark"]) .react-datepicker__day--highlighted,
1447
- :is([data-theme="dark"]) .react-datepicker__month-text--highlighted,
1448
- :is([data-theme="dark"]) .react-datepicker__quarter-text--highlighted,
1449
- :is([data-theme="dark"]) .react-datepicker__year-text--highlighted {
1450
- background-color: #1a1a1a;
1451
- color: #fff;
1452
- }
1453
-
1454
- :is([data-theme="dark"]) .react-datepicker__day:hover,
1455
- :is([data-theme="dark"]) .react-datepicker__day--in-range:hover,
1456
- :is([data-theme="dark"]) .react-datepicker__day--selected:hover,
1457
- :is([data-theme="dark"]) .react-datepicker__month-text:hover,
1458
- :is([data-theme="dark"]) .react-datepicker__day:hover,
1459
- :is([data-theme="dark"]) .react-datepicker__month-text--in-range:hover,
1460
- :is([data-theme="dark"]) .react-datepicker__month-text--selected:hover,
1461
- :is([data-theme="dark"]) .react-datepicker__quarter-text:hover,
1462
- :is([data-theme="dark"]) .react-datepicker__day:hover,
1463
- :is([data-theme="dark"]) .react-datepicker__quarter-text--in-range:hover,
1464
- :is([data-theme="dark"]) .react-datepicker__quarter-text--selected:hover,
1465
- :is([data-theme="dark"]) .react-datepicker__year-text:hover,
1466
- :is([data-theme="dark"]) .react-datepicker__day:hover,
1467
- :is([data-theme="dark"]) .react-datepicker__year-text--in-range:hover,
1468
- :is([data-theme="dark"]) .react-datepicker__year-text--selected:hover,
1469
- :is([data-theme="dark"]) .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item:hover
1470
- {
1471
- background-color: #1a1a1a;
1472
- }
1473
-
1474
- :is([data-theme="dark"]) .react-datepicker__day--selected,
1475
- :is([data-theme="dark"]) .react-datepicker__day--in-range,
1476
- :is([data-theme="dark"]) .react-datepicker__day--in-selecting-range,
1477
- :is([data-theme="dark"]) .react-datepicker__month-text--selected,
1478
- :is([data-theme="dark"]) .react-datepicker__month-text--in-range,
1479
- :is([data-theme="dark"]) .react-datepicker__month-text--in-selecting-range,
1480
- :is([data-theme="dark"]) .react-datepicker__quarter-text--selected,
1481
- :is([data-theme="dark"]) .react-datepicker__quarter-text--in-range,
1482
- :is([data-theme="dark"]) .react-datepicker__quarter-text--in-selecting-range,
1483
- :is([data-theme="dark"]) .react-datepicker__year-text--selected,
1484
- :is([data-theme="dark"]) .react-datepicker__year-text--in-range,
1485
- :is([data-theme="dark"]) .react-datepicker__year-text--in-selecting-range {
1486
- background-color: #0e528f;
1487
- }
1488
-
1489
- :is([data-theme="dark"]) .react-datepicker__day--keyboard-selected,
1490
- :is([data-theme="dark"]) .react-datepicker__month-text--keyboard-selected,
1491
- :is([data-theme="dark"]) .react-datepicker__quarter-text--keyboard-selected,
1492
- :is([data-theme="dark"]) .react-datepicker__year-text--keyboard-selected {
1493
- background-color: #0e529f;
1494
- }
1495
-
1496
- :is([data-theme="dark"]) .react-datepicker__today-button {
1497
- background-color: #262626;
1498
- color: #ccc;
1499
- }
1500
-
1501
- :is([data-theme="dark"]) .react-datepicker__portal {
1502
- background-color: #191919;
1503
- }
1504
-
1505
- :is([data-theme="dark"]) .react-datepicker{
1506
- color: #fff;
1507
- }
1508
-
1509
- :is([data-theme="dark"]) .react-datepicker__time-list{
1510
- background-color: rgba(0, 0, 0, 0.0);
1511
- }
1512
-
1513
- :is([data-theme="dark"]) .react-datepicker__time-container--with-today-button {
1514
- border: 1px solid transparent;
1515
- }
1516
- :is([data-theme="dark"]) .react-datepicker__year-dropdown,
1517
- :is([data-theme="dark"]) .react-datepicker__month-dropdown,
1518
- :is([data-theme="dark"]) .react-datepicker__month-year-dropdown {
1519
- background-color: rgba(0, 0, 0, 0.9);
1520
- border: 1px solid transparent;
1521
- }
1522
-
1523
- :is([data-theme="dark"]) .react-datepicker__header {
1524
- background-color: #191919;
1525
- border-bottom: 1px solid transparent;
1526
- }
1527
-
1528
- :is([data-theme="dark"]) .react-datepicker__time-container {
1529
- border-left: 1px solid transparent;
1530
- }
1531
- :is([data-theme="dark"]) .react-datepicker__time-container .react-datepicker__time {
1532
- background-color: rgba(0, 0, 0, 0.9);
1533
- }
1534
-
1535
- :is([data-theme="dark"]) .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected,
1536
- :is([data-theme="dark"]) .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected {
1537
- background-color: #0e528f;
1538
- }
1539
-
1540
- .react-datepicker__day--outside-month{
1541
- color: #666 !important;
1542
- }
1543
- `,fU={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"},nr=({open:e,onOpenChange:t,children:c,className:i,fullWidth:a=!0,fullHeight:l,fullScreen:s,scrollable:d=!0,maxWidth:u="lg",modal:A=!0})=>{const[g,h]=f.useState(!1);return f.useEffect(()=>{if(e)return h(!0),()=>{};{const _=setTimeout(()=>{h(!1)},250);return()=>clearTimeout(_)}},[e]),n.jsx(Je.Root,{open:g||e,modal:A,onOpenChange:t,children:n.jsx(Je.Portal,{children:n.jsxs("div",{className:"fixed inset-0 z-30",children:[n.jsx(Je.Overlay,{className:F("fixed inset-0 transition-opacity z-20 ease-in-out duration-200 bg-black bg-opacity-50 dark:bg-opacity-60 backdrop-blur-sm ",g&&e?"opacity-100":"opacity-0","z-20 fixed top-0 left-0 w-full h-full flex justify-center items-center"),style:{pointerEvents:g?"auto":"none"}}),n.jsx(Je.Content,{className:F("h-full outline-none flex justify-center items-center z-40 opacity-100 transition-all duration-200 ease-in-out"),children:n.jsx("div",{className:F(je,"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",g&&e?"opacity-100":"opacity-0",u&&!s?fU[u]:void 0,i),children:c})})]})})})};function En({children:e,position:t="sticky",translucent:c=!0,className:i}){return n.jsx("div",{className:F(fe,"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 or({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:F("py-6 px-6 h-full flex-grow",t),children:e})}function AU({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:g}){const{getRootProps:h,getInputProps:_,isDragActive:y,isDragAccept:I,isDragReject:b}=ir.useDropzone({accept:e,noDragEventsBubbling:!0,maxSize:i,onDrop:t,onDropRejected:c,disabled:a,maxFiles:l,preventDropOnDocument:A});return n.jsxs("div",{...h(),className:F(Xe,Ye,Ie,"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":g==="medium","h-28":g==="small","cursor-pointer":!a,"hover:bg-field-hover dark:hover:bg-field-hover-dark":!y,"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(Z,{variant:"caption",color:"secondary",className:"absolute top-2 left-3.5 cursor-inherit",children:s}),n.jsx("input",{..._()}),u,n.jsx("div",{className:"flex-grow h-28 box-border flex flex-col items-center justify-center text-center",children:n.jsx(Z,{align:"center",variant:"label",children:d})})]})}const yU={info:"bg-sky-200 dark:bg-teal-900",warn:"bg-orange-200 dark:bg-yellow-950"};function gU({children:e,mode:t="info"}){return n.jsx("div",{className:F("my-3 py-2 px-4 rounded",yU[t]),children:e})}function Ma({children:e,loading:t,disabled:c,onClick:i,startIcon:a,...l}){return n.jsxs(ie,{disabled:t||c,onClick:i,component:l.component,...l,children:[t&&n.jsx(Nn,{size:"small"}),!t&&a,e]})}const _U=new Xt({html:!0}),Ao=f.memo(function({source:t,className:c}){const i=f.useMemo(()=>_U.render(typeof t=="string"?t:""),[t]);return n.jsx("div",{className:c,dangerouslySetInnerHTML:{__html:i}})},se);function jn({children:e,trigger:t,open:c,defaultOpen:i,onOpenChange:a}){return n.jsxs(Zn.Root,{open:c,defaultOpen:i,onOpenChange:a,children:[n.jsx(Zn.Trigger,{asChild:!0,children:t}),n.jsx(Zn.Portal,{children:n.jsx(Zn.Content,{className:F(je,"shadow py-2 z-30"),children:e})})]})}function Be({children:e,dense:t,onClick:c}){return n.jsx(Zn.Item,{className:F(Ie,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 hU({children:e,style:t,className:c}){return n.jsx("div",{className:F(je,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:g,placeholder:h,renderValue:_,renderValues:y,label:I,size:b="medium",includeFocusOutline:p=!0,error:w,disabled:k,padding:m=!0,position:v="item-aligned",endAdornment:S,multiple:K,invisible:C,children:P,...E}){const[T,B]=f.useState(!1);f.useEffect(()=>{B(t??!1)},[t]);const D=f.useCallback(N=>{K?Array.isArray(l)&&l.includes(N)?u?.(l.filter(W=>W!==N)):u?.([...l??[],N]):d?.(N),!K&&s&&s({target:{name:c,value:N}})},[K,s,l,u,d]);return n.jsxs(Ze.Root,{name:c,value:Array.isArray(l)?void 0:l,defaultOpen:t,open:T,disabled:k,onValueChange:D,onOpenChange:N=>{a?.(N),B(N)},...E,children:[typeof I=="string"?n.jsx(ia,{error:w,children:I}):I,n.jsxs("div",{className:F(b==="small"?"min-h-[42px]":"min-h-[64px]","select-none rounded-md text-sm",C?ur:Xe,k?nn:Ye,"relative flex items-center",A),children:[n.jsxs(Ze.Trigger,{ref:e,id:i,className:F("w-full h-full",b==="small"?"h-[42px]":"h-[64px]",m?"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?Ie:"",g),children:[n.jsx(Ze.Value,{asChild:!0,children:n.jsxs("div",{className:F("flex-grow w-full max-w-full flex flex-row gap-2 items-center","overflow-visible",b==="small"?"h-[42px]":"h-[64px]"),children:[_&&(l&&Array.isArray(l)?l.map((N,W)=>n.jsx("div",{className:"flex items-center gap-1 max-w-full",children:_?_(N,W):N},N)):typeof l=="string"?_?_(l,0):l:h),y&&(!l||Array.isArray(l))?y(l??[]):null,!_&&!y&&l]})}),n.jsx(Ze.Icon,{className:F("px-2 h-full flex items-center"),children:n.jsx(Co,{size:"small",className:F("transition",t?"rotate-180":"")})})]}),S&&n.jsx("div",{className:F("absolute h-full flex items-center",b==="small"?"right-10":"right-14"),onClick:N=>N.stopPropagation(),children:S})]}),n.jsx(Ze.Portal,{children:n.jsx(Ze.Content,{position:v,className:"z-50 relative overflow-hidden border border-gray-200 dark:border-gray-800 bg-white dark:bg-gray-800 p-2 rounded-lg shadow-lg",children:n.jsx(Ze.Viewport,{className:"p-1",style:{maxHeight:"var(--radix-select-content-available-height)"},children:P})})})]})}function Re({value:e,children:t,disabled:c,className:i}){return n.jsxs(Ze.Item,{value:e,disabled:c,onClick:a=>{a.preventDefault(),a.stopPropagation()},className:F("w-full","relative relative flex items-center p-2 rounded-md text-sm text-gray-700 dark:text-gray-300",Ie,"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(Ze.ItemText,{children:t}),n.jsx("div",{className:"absolute left-1 data-[state=checked]:block hidden",children:n.jsx(sc,{size:16})})]},e)}function IU({label:e,children:t,className:c}){return n.jsxs(n.Fragment,{children:[n.jsx(Ze.Group,{className:F("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 Yt({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),g=f.useDeferredValue(s);f.useEffect(()=>{e(g||void 0)},[g]);const h=f.useCallback(()=>{d(""),e(void 0)},[]);return n.jsxs("div",{className:F("relative",i?"h-14":"h-[42px]","bg-gray-50 dark:bg-gray-800 transition duration-150 ease-in-out border",fe,"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(hr,{className:"text-gray-500"})}),n.jsx("input",{placeholder:t,value:s,onChange:_=>{d(_.target.value)},autoFocus:l,onFocus:()=>A(!0),onBlur:()=>A(!1),className:F("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]":"",Ie,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(dn,{size:"small"})}):n.jsx("div",{style:{width:26}})]})}const jt=({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(Je.Root,{open:s||c,onOpenChange:i,children:n.jsxs(Je.Portal,{children:[n.jsx(Je.Overlay,{className:F("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(Je.Content,{...l,className:F("will-change-transform","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 bU(){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 tn({value:e,onChange:t,label:c,type:i="text",multiline:a=!1,invisible:l,rows:s,disabled:d,error:u,endAdornment:A,autoFocus:g,placeholder:h,size:_="medium",className:y,style:I,inputClassName:b,inputStyle:p,inputRef:w,...k}){const m=w??f.useRef(null),[v,S]=f.useState(document.activeElement===m.current),K=e!=null&&e!=="",C=f.useCallback(E=>{E.target.blur(),E.stopPropagation(),setTimeout(()=>{E.target.focus()},0)},[]),P=a?n.jsx(et,{...k,ref:m,placeholder:v||K||!c?h:void 0,autoFocus:g,rows:s,value:e??"",onChange:t,style:p,className:F(l?sr:Ie,"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:m,onWheel:i==="number"?C:void 0,disabled:d,style:p,className:F("w-full outline-none bg-transparent leading-normal px-3","rounded-md",l?sr:Ie,d?nn:Ye,_==="small"?"min-h-[48px]":"min-h-[64px]",c?_==="medium"?"pt-[28px] pb-2":"pt-4 pb-2":"py-2",v?"text-text-primary dark:text-text-primary-dark":"",A?"pr-10":"pr-3",d&&"border border-transparent outline-none opacity-50 dark:opacity-50 text-gray-800 dark:text-gray-200",b),placeholder:v||K||!c?h:void 0,autoFocus:g,onFocus:()=>S(!0),onBlur:()=>S(!1),type:i,value:Number.isNaN(e)?"":e??"",onChange:t});return n.jsxs("div",{className:F("rounded-md relative max-w-full",l?ur:Xe,d?nn:Ye,u?"border border-red-500 dark:border-red-600":"",{"min-h-[48px]":!l&&_==="small","min-h-[64px]":!l&&_==="medium"},y),style:I,children:[c&&n.jsx(Ut,{className:F("pointer-events-none absolute",_==="medium"?"top-1":"-top-1",u?"text-red-500 dark:text-red-600":v?"text-primary dark:text-primary":"text-text-secondary dark:text-text-secondary-dark",d?"opacity-50":""),shrink:K||v,children:c}),P,A&&n.jsx("div",{className:"flex absolute right-0 top-3 mr-3 ",children:A})]})}function Oa({value:e,onValueChange:t,className:c,children:i}){return n.jsx(lr.Root,{value:e,onValueChange:t,children:n.jsx(lr.List,{className:F("flex text-sm font-medium text-center text-gray-800 dark:text-gray-200",c),children:i})})}function rr({value:e,className:t,children:c,disabled:i}){return n.jsx(lr.Trigger,{value:e,disabled:i,className:F(Ie,"border-b-2 border-transparent","data-[state=active]:border-secondary",i?"text-gray-400 dark:text-gray-500":F("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:F("uppercase inline-block p-2 px-4 m-2 rounded","hover:bg-gray-100 dark:hover:bg-gray-800"),children:c})})}const pU=({children:e,className:t,style:c})=>n.jsx("table",{className:F("w-full text-left text-gray-800 dark:text-gray-200 rounded-md overflow-x-auto",t),style:c,children:e}),wU=({children:e,className:t})=>n.jsx("tbody",{className:F("bg-white text-sm dark:bg-gray-800 divide-y divide-gray-200 dark:divide-gray-700",t),children:e}),kU=({children:e,className:t})=>n.jsx("thead",{children:n.jsx("tr",{className:F(fe,"text-sm font-medium text-gray-700 dark:text-gray-300","bg-gray-50 border-b dark:bg-gray-900",t),children:e})}),mU=({children:e,className:t,onClick:c,style:i})=>n.jsx("tr",{onClick:c,style:i,className:F("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}),vU=({children:e,header:t=!1,scope:c="",align:i,className:a,style:l,colspan:s})=>{const d=f.useRef(null),u=t||CU(d.current)==="TableHeader"?"th":"td";return n.jsx(u,{scope:c,colSpan:s,ref:d,style:l,className:F("px-4 py-3 text-clip ",i==="center"?"text-center":i==="right"?"text-right":"text-left",a),children:e})};function CU(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}}function tr({trigger:e,children:t,open:c,onOpenChange:i,side:a,sideOffset:l=5,align:s,alignOffset:d,arrowPadding:u,sticky:A,hideWhenDetached:g,avoidCollisions:h,enabled:_=!0,modal:y=!1,className:I}){return vn("Popover",KU),_?n.jsxs(Xn.Root,{open:c,onOpenChange:i,modal:y,children:[n.jsx(Xn.Trigger,{asChild:!0,children:e}),n.jsx(Xn.Portal,{children:n.jsxs(Xn.Content,{className:F(je,"PopoverContent shadow z-40",I),side:a,sideOffset:l,align:s,alignOffset:d,arrowPadding:u,sticky:A,hideWhenDetached:g,avoidCollisions:h,children:[t,n.jsx(Xn.Arrow,{className:"fill-white dark:fill-gray-950"})]})})]}):n.jsx(n.Fragment,{children:e})}const KU=`
1544
-
1545
- .PopoverContent {
1546
- animation-duration: 400ms;
1547
- animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
1548
- will-change: transform, opacity;
1549
- }
1550
- .PopoverContent[data-state='open'][data-side='top'] {
1551
- animation-name: slideDownAndFade;
1552
- }
1553
- .PopoverContent[data-state='open'][data-side='right'] {
1554
- animation-name: slideLeftAndFade;
1555
- }
1556
- .PopoverContent[data-state='open'][data-side='bottom'] {
1557
- animation-name: slideUpAndFade;
1558
- }
1559
- .PopoverContent[data-state='open'][data-side='left'] {
1560
- animation-name: slideRightAndFade;
1561
- }
1562
-
1563
-
1564
- @keyframes slideUpAndFade {
1565
- from {
1566
- opacity: 0;
1567
- transform: translateY(2px);
1568
- }
1569
- to {
1570
- opacity: 1;
1571
- transform: translateY(0);
1572
- }
1573
- }
1574
-
1575
- @keyframes slideRightAndFade {
1576
- from {
1577
- opacity: 0;
1578
- transform: translateX(-2px);
1579
- }
1580
- to {
1581
- opacity: 1;
1582
- transform: translateX(0);
1583
- }
1584
- }
1585
-
1586
- @keyframes slideDownAndFade {
1587
- from {
1588
- opacity: 0;
1589
- transform: translateY(-2px);
1590
- }
1591
- to {
1592
- opacity: 1;
1593
- transform: translateY(0);
1594
- }
1595
- }
1596
-
1597
- @keyframes slideLeftAndFade {
1598
- from {
1599
- opacity: 0;
1600
- transform: translateX(2px);
1601
- }
1602
- to {
1603
- opacity: 1;
1604
- transform: translateX(0);
1605
- }
1606
- }
1607
- `,SU=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"}},$t=({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
1608
- ${SU(e)}
1609
- transition-all duration-200 ease-out
1610
- ${t?"w-0 h-0":"w-2 h-2"}`})]});o.AbcIcon=bs,o.AcUnitIcon=ps,o.AccessAlarmIcon=ws,o.AccessAlarmsIcon=ks,o.AccessTimeFilledIcon=vs,o.AccessTimeIcon=ms,o.AccessibilityIcon=Cs,o.AccessibilityNewIcon=Ks,o.AccessibleForwardIcon=Bs,o.AccessibleIcon=Ss,o.AccountBalanceIcon=Es,o.AccountBalanceWalletIcon=Fs,o.AccountBoxIcon=Ps,o.AccountCircleIcon=Ds,o.AccountTreeIcon=Ns,o.AdUnitsIcon=Ts,o.AdbIcon=Ms,o.AddAPhotoIcon=Os,o.AddAlarmIcon=Ls,o.AddAlertIcon=Qs,o.AddBoxIcon=Vs,o.AddBusinessIcon=Ws,o.AddCardIcon=Gs,o.AddChartIcon=zs,o.AddCircleIcon=Hs,o.AddCircleOutlineIcon=Us,o.AddCommentIcon=Ys,o.AddHomeIcon=js,o.AddHomeWorkIcon=$s,o.AddIcCallIcon=qs,o.AddIcon=sn,o.AddLinkIcon=cc,o.AddLocationAltIcon=Zs,o.AddLocationIcon=Js,o.AddModeratorIcon=Xs,o.AddPhotoAlternateIcon=xs,o.AddReactionIcon=Rs,o.AddRoadIcon=ed,o.AddShoppingCartIcon=nd,o.AddTaskIcon=od,o.AddToDriveIcon=rd,o.AddToHomeScreenIcon=td,o.AddToPhotosIcon=cd,o.AddToQueueIcon=id,o.AdfScannerIcon=ad,o.AdjustIcon=ld,o.AdminPanelSettingsIcon=sd,o.AdsClickIcon=dd,o.AgricultureIcon=ud,o.AirIcon=fd,o.AirlineSeatFlatAngledIcon=yd,o.AirlineSeatFlatIcon=Ad,o.AirlineSeatIndividualSuiteIcon=gd,o.AirlineSeatLegroomExtraIcon=_d,o.AirlineSeatLegroomNormalIcon=hd,o.AirlineSeatLegroomReducedIcon=Id,o.AirlineSeatReclineExtraIcon=bd,o.AirlineSeatReclineNormalIcon=pd,o.AirlineStopsIcon=wd,o.AirlinesIcon=kd,o.AirplaneTicketIcon=md,o.AirplanemodeActiveIcon=vd,o.AirplanemodeInactiveIcon=Cd,o.AirplayIcon=Kd,o.AirportShuttleIcon=Sd,o.AlarmAddIcon=Ed,o.AlarmIcon=Bd,o.AlarmOffIcon=Fd,o.AlarmOnIcon=Pd,o.AlbumIcon=Dd,o.Alert=dl,o.AlignHorizontalCenterIcon=Nd,o.AlignHorizontalLeftIcon=Td,o.AlignHorizontalRightIcon=Md,o.AlignVerticalBottomIcon=Od,o.AlignVerticalCenterIcon=Ld,o.AlignVerticalTopIcon=Qd,o.AllInboxIcon=Vd,o.AllInclusiveIcon=Wd,o.AllOutIcon=Gd,o.AltRouteIcon=zd,o.AlternateEmailIcon=Hd,o.AnalyticsIcon=Ud,o.AnchorIcon=Yd,o.AndroidIcon=jd,o.AnimationIcon=$d,o.AnnouncementIcon=qd,o.AodIcon=Jd,o.ApartmentIcon=Zd,o.ApiIcon=Xd,o.AppBlockingIcon=xd,o.AppRegistrationIcon=Rd,o.AppSettingsAltIcon=eu,o.AppShortcutIcon=nu,o.ApprovalIcon=ou,o.AppsIcon=ru,o.AppsOutageIcon=tu,o.ArchitectureIcon=cu,o.ArchiveIcon=iu,o.AreaChartIcon=au,o.ArrayContainer=It,o.ArrayContainerItem=bt,o.ArrayCustomShapedFieldBinding=ha,o.ArrayEnumPreview=Jr,o.ArrayItemOptions=ca,o.ArrayOfMapsPreview=vz,o.ArrayOfReferencesFieldBinding=aa,o.ArrayOfReferencesPreview=ui,o.ArrayOfStorageComponentsPreview=fi,o.ArrayOfStringsPreview=Ai,o.ArrayOneOfPreview=yi,o.ArrayPropertyEnumPreview=Zr,o.ArrayPropertyPreview=qr,o.ArrowBackIcon=lu,o.ArrowBackIosIcon=su,o.ArrowBackIosNewIcon=du,o.ArrowCircleDownIcon=uu,o.ArrowCircleLeftIcon=fu,o.ArrowCircleRightIcon=Au,o.ArrowCircleUpIcon=yu,o.ArrowDownwardIcon=gu,o.ArrowDropDownCircleIcon=_u,o.ArrowDropDownIcon=Ir,o.ArrowDropUpIcon=hu,o.ArrowForwardIcon=ic,o.ArrowForwardIosIcon=Iu,o.ArrowLeftIcon=bu,o.ArrowOutwardIcon=pu,o.ArrowRightAltIcon=ku,o.ArrowRightIcon=wu,o.ArrowUpwardIcon=mo,o.ArtTrackIcon=mu,o.ArticleIcon=vu,o.AspectRatioIcon=Cu,o.AssessmentIcon=Ku,o.AssignmentIcon=ac,o.AssignmentIndIcon=Su,o.AssignmentLateIcon=Bu,o.AssignmentReturnIcon=Eu,o.AssignmentReturnedIcon=Fu,o.AssignmentTurnedInIcon=Pu,o.AssistWalkerIcon=Du,o.AssistantDirectionIcon=Tu,o.AssistantIcon=Nu,o.AssistantPhotoIcon=Mu,o.AssuredWorkloadIcon=Ou,o.AsyncPreviewComponent=Cz,o.AtmIcon=Lu,o.AttachEmailIcon=Qu,o.AttachFileIcon=Vu,o.AttachMoneyIcon=Wu,o.AttachmentIcon=Gu,o.AttractionsIcon=zu,o.AttributionIcon=Hu,o.AudioFileIcon=Uu,o.AudiotrackIcon=Yu,o.AuthControllerContext=Fr,o.AutoAwesomeIcon=ju,o.AutoAwesomeMosaicIcon=$u,o.AutoAwesomeMotionIcon=qu,o.AutoDeleteIcon=Ju,o.AutoFixHighIcon=Zu,o.AutoFixNormalIcon=Xu,o.AutoFixOffIcon=xu,o.AutoGraphIcon=Ru,o.AutoModeIcon=ef,o.AutoStoriesIcon=nf,o.Autocomplete=al,o.AutocompleteItem=ll,o.AutofpsSelectIcon=of,o.AutorenewIcon=rf,o.AvTimerIcon=tf,o.Avatar=fr,o.BabyChangingStationIcon=cf,o.BackHandIcon=af,o.BackpackIcon=lf,o.BackspaceIcon=sf,o.BackupIcon=df,o.BackupTableIcon=uf,o.Badge=$t,o.BadgeIcon=ff,o.BakeryDiningIcon=Af,o.BalanceIcon=yf,o.BalconyIcon=gf,o.BallotIcon=br,o.BarChartIcon=_f,o.BatchPredictionIcon=hf,o.BathroomIcon=If,o.BathtubIcon=bf,o.Battery0BarIcon=pf,o.Battery1BarIcon=wf,o.Battery2BarIcon=kf,o.Battery3BarIcon=mf,o.Battery4BarIcon=vf,o.Battery5BarIcon=Cf,o.Battery6BarIcon=Kf,o.BatteryAlertIcon=Sf,o.BatteryChargingFullIcon=Bf,o.BatteryFullIcon=Ef,o.BatterySaverIcon=Ff,o.BatteryStdIcon=Pf,o.BatteryUnknownIcon=Df,o.BeachAccessIcon=Nf,o.BedIcon=Tf,o.BedroomBabyIcon=Mf,o.BedroomChildIcon=Of,o.BedroomParentIcon=Lf,o.BedtimeIcon=Qf,o.BedtimeOffIcon=Vf,o.BeenhereIcon=Wf,o.BentoIcon=Gf,o.BikeScooterIcon=zf,o.BiotechIcon=Hf,o.BlenderIcon=Uf,o.BlindIcon=Yf,o.BlindsClosedIcon=$f,o.BlindsIcon=jf,o.BlockFieldBinding=ga,o.BlockIcon=qf,o.BloodtypeIcon=Jf,o.BluetoothAudioIcon=Xf,o.BluetoothConnectedIcon=xf,o.BluetoothDisabledIcon=Rf,o.BluetoothDriveIcon=eA,o.BluetoothIcon=Zf,o.BluetoothSearchingIcon=nA,o.BlurCircularIcon=oA,o.BlurLinearIcon=rA,o.BlurOffIcon=tA,o.BlurOnIcon=cA,o.BoltIcon=iA,o.BookIcon=aA,o.BookOnlineIcon=lA,o.BookmarkAddIcon=dA,o.BookmarkAddedIcon=uA,o.BookmarkBorderIcon=fA,o.BookmarkIcon=sA,o.BookmarkRemoveIcon=AA,o.BookmarksIcon=yA,o.BooleanPreview=hi,o.BooleanSwitch=Ar,o.BooleanSwitchWithLabel=Dn,o.BorderAllIcon=gA,o.BorderBottomIcon=_A,o.BorderClearIcon=hA,o.BorderColorIcon=IA,o.BorderHorizontalIcon=bA,o.BorderInnerIcon=pA,o.BorderLeftIcon=wA,o.BorderOuterIcon=kA,o.BorderRightIcon=mA,o.BorderStyleIcon=vA,o.BorderTopIcon=CA,o.BorderVerticalIcon=KA,o.BoyIcon=SA,o.BrandingWatermarkIcon=BA,o.BreadcrumbUpdater=h3,o.BreakfastDiningIcon=EA,o.Brightness1Icon=FA,o.Brightness2Icon=PA,o.Brightness3Icon=DA,o.Brightness4Icon=NA,o.Brightness5Icon=TA,o.Brightness6Icon=MA,o.Brightness7Icon=OA,o.BrightnessAutoIcon=LA,o.BrightnessHighIcon=QA,o.BrightnessLowIcon=VA,o.BrightnessMediumIcon=WA,o.BroadcastOnHomeIcon=GA,o.BroadcastOnPersonalIcon=zA,o.BrokenImageIcon=HA,o.BrowseGalleryIcon=UA,o.BrowserNotSupportedIcon=YA,o.BrowserUpdatedIcon=jA,o.BrunchDiningIcon=$A,o.BrushIcon=qA,o.BubbleChartIcon=JA,o.BugReportIcon=ZA,o.BuildCircleIcon=xA,o.BuildIcon=XA,o.BungalowIcon=RA,o.BurstModeIcon=ey,o.BusAlertIcon=ny,o.BusinessCenterIcon=ry,o.BusinessIcon=oy,o.Button=ie,o.COLLECTION_PATH_SEPARATOR=Rc,o.CabinIcon=ty,o.CableIcon=cy,o.CachedIcon=iy,o.CakeIcon=ay,o.CalculateIcon=ly,o.CalendarMonthIcon=lc,o.CalendarTodayIcon=sy,o.CalendarViewDayIcon=dy,o.CalendarViewMonthIcon=uy,o.CalendarViewWeekIcon=fy,o.CallEndIcon=yy,o.CallIcon=Ay,o.CallMadeIcon=gy,o.CallMergeIcon=_y,o.CallMissedIcon=hy,o.CallMissedOutgoingIcon=Iy,o.CallReceivedIcon=by,o.CallSplitIcon=py,o.CallToActionIcon=wy,o.CameraAltIcon=my,o.CameraEnhanceIcon=vy,o.CameraFrontIcon=Cy,o.CameraIcon=ky,o.CameraIndoorIcon=Ky,o.CameraOutdoorIcon=Sy,o.CameraRearIcon=By,o.CameraRollIcon=Ey,o.CameraswitchIcon=Fy,o.CampaignIcon=Py,o.CancelIcon=Dy,o.CancelPresentationIcon=Ny,o.CancelScheduleSendIcon=Ty,o.CandlestickChartIcon=My,o.CarCrashIcon=Oy,o.CarRentalIcon=Ly,o.CarRepairIcon=Qy,o.Card=rc,o.CardGiftcardIcon=Vy,o.CardMembershipIcon=Wy,o.CardTravelIcon=Gy,o.CarpenterIcon=zy,o.CasesIcon=Hy,o.CasinoIcon=Uy,o.CastConnectedIcon=jy,o.CastForEducationIcon=$y,o.CastIcon=Yy,o.CastleIcon=qy,o.CatchingPokemonIcon=Jy,o.CategoryIcon=Zy,o.CelebrationIcon=Xy,o.CellTowerIcon=xy,o.CellWifiIcon=Ry,o.CenterFocusStrongIcon=eg,o.CenterFocusWeakIcon=ng,o.CenteredView=gr,o.ChairAltIcon=rg,o.ChairIcon=og,o.ChaletIcon=tg,o.ChangeCircleIcon=cg,o.ChangeHistoryIcon=ig,o.ChargingStationIcon=ag,o.ChatBubbleIcon=sg,o.ChatBubbleOutlineIcon=dg,o.ChatIcon=lg,o.CheckBoxIcon=ug,o.CheckBoxOutlineBlankIcon=fg,o.CheckCircleIcon=Ag,o.CheckCircleOutlineIcon=yg,o.CheckIcon=sc,o.Checkbox=Er,o.ChecklistIcon=gg,o.ChecklistRtlIcon=_g,o.CheckroomIcon=hg,o.ChevronLeftIcon=dc,o.ChevronRightIcon=Ig,o.ChildCareIcon=bg,o.ChildFriendlyIcon=pg,o.Chip=Bo,o.ChromeReaderModeIcon=wg,o.ChurchIcon=kg,o.CircleIcon=pr,o.CircleNotificationsIcon=mg,o.CircularProgress=Nn,o.CircularProgressCenter=lo,o.ClassIcon=vg,o.CleanHandsIcon=Cg,o.CleaningServicesIcon=Kg,o.ClearAllIcon=Sg,o.ClearIcon=dn,o.CloseFullscreenIcon=Bg,o.CloseIcon=wr,o.ClosedCaptionDisabledIcon=Fg,o.ClosedCaptionIcon=Eg,o.ClosedCaptionOffIcon=Pg,o.CloudCircleIcon=Ng,o.CloudDoneIcon=Tg,o.CloudDownloadIcon=Mg,o.CloudIcon=Dg,o.CloudOffIcon=Og,o.CloudQueueIcon=Lg,o.CloudSyncIcon=Qg,o.CloudUploadIcon=Vg,o.Co2Icon=Wg,o.CoPresentIcon=Gg,o.CodeIcon=zg,o.CodeOffIcon=Hg,o.CoffeeIcon=Ug,o.CoffeeMakerIcon=Yg,o.Collapse=wo,o.CollectionsBookmarkIcon=$g,o.CollectionsIcon=jg,o.ColorLensIcon=qg,o.ColorizeIcon=Jg,o.CommentBankIcon=Xg,o.CommentIcon=Zg,o.CommentsDisabledIcon=xg,o.CommitIcon=Rg,o.CommuteIcon=e_,o.CompareArrowsIcon=o_,o.CompareIcon=n_,o.CompassCalibrationIcon=r_,o.CompostIcon=t_,o.CompressIcon=c_,o.ComputerIcon=i_,o.ConfirmationNumberIcon=a_,o.ConnectWithoutContactIcon=l_,o.ConnectedTvIcon=s_,o.ConnectingAirportsIcon=d_,o.ConstructionIcon=u_,o.ContactEmergencyIcon=f_,o.ContactMailIcon=A_,o.ContactPageIcon=y_,o.ContactPhoneIcon=g_,o.ContactSupportIcon=__,o.ContactlessIcon=h_,o.ContactsIcon=I_,o.Container=yr,o.ContentCopyIcon=xn,o.ContentCutIcon=b_,o.ContentPasteGoIcon=w_,o.ContentPasteIcon=p_,o.ContentPasteOffIcon=k_,o.ContentPasteSearchIcon=m_,o.ContrastIcon=v_,o.ControlCameraIcon=C_,o.ControlPointDuplicateIcon=S_,o.ControlPointIcon=K_,o.CookieIcon=B_,o.CopyAllIcon=E_,o.CopyrightIcon=F_,o.CoronavirusIcon=P_,o.CorporateFareIcon=D_,o.CottageIcon=N_,o.CountertopsIcon=T_,o.CreateIcon=M_,o.CreateNewFolderIcon=O_,o.CreditCardIcon=L_,o.CreditCardOffIcon=Q_,o.CreditScoreIcon=V_,o.CribIcon=W_,o.CrisisAlertIcon=G_,o.Crop169Icon=H_,o.Crop32Icon=U_,o.Crop54Icon=Y_,o.Crop75Icon=j_,o.CropDinIcon=$_,o.CropFreeIcon=q_,o.CropIcon=z_,o.CropLandscapeIcon=J_,o.CropOriginalIcon=Z_,o.CropPortraitIcon=X_,o.CropRotateIcon=x_,o.CropSquareIcon=R_,o.CrueltyFreeIcon=eh,o.CssIcon=nh,o.CurrencyBitcoinIcon=oh,o.CurrencyExchangeIcon=rh,o.CurrencyFrancIcon=th,o.CurrencyLiraIcon=ch,o.CurrencyPoundIcon=ih,o.CurrencyRubleIcon=ah,o.CurrencyRupeeIcon=lh,o.CurrencyYenIcon=sh,o.CurrencyYuanIcon=dh,o.CurtainsClosedIcon=fh,o.CurtainsIcon=uh,o.CycloneIcon=Ah,o.DEFAULT_FIELD_CONFIGS=Ft,o.DangerousIcon=yh,o.DarkModeIcon=uc,o.DashboardCustomizeIcon=_h,o.DashboardIcon=gh,o.DataArrayIcon=hh,o.DataExplorationIcon=Ih,o.DataObjectIcon=bh,o.DataSaverOffIcon=ph,o.DataSaverOnIcon=wh,o.DataThresholdingIcon=kh,o.DataUsageIcon=mh,o.DatasetIcon=vh,o.DatasetLinkedIcon=Ch,o.DatePreview=_i,o.DateRangeIcon=Kh,o.DateTimeField=Yn,o.DateTimeFieldBinding=da,o.DeblurIcon=Sh,o.DebouncedTextField=w3,o.DeckIcon=Bh,o.DefaultHomePage=na,o.DehazeIcon=Eh,o.DeleteConfirmationDialog=I3,o.DeleteForeverIcon=Fh,o.DeleteIcon=vo,o.DeleteOutlineIcon=Ph,o.DeleteSweepIcon=Dh,o.DeliveryDiningIcon=Nh,o.DensityLargeIcon=Th,o.DensityMediumIcon=Mh,o.DensitySmallIcon=Oh,o.DepartureBoardIcon=Lh,o.DescriptionIcon=fc,o.DeselectIcon=Qh,o.DesignServicesIcon=Vh,o.DeskIcon=Wh,o.DesktopAccessDisabledIcon=Gh,o.DesktopMacIcon=zh,o.DesktopWindowsIcon=Hh,o.DetailsIcon=Uh,o.DeveloperBoardIcon=Yh,o.DeveloperBoardOffIcon=jh,o.DeveloperModeIcon=$h,o.DeviceHubIcon=qh,o.DeviceThermostatIcon=Jh,o.DeviceUnknownIcon=Zh,o.DevicesFoldIcon=xh,o.DevicesIcon=Xh,o.DevicesOtherIcon=Rh,o.DialerSipIcon=eI,o.Dialog=nr,o.DialogActions=En,o.DialogContent=or,o.DialpadIcon=nI,o.DiamondIcon=oI,o.DifferenceIcon=rI,o.DiningIcon=tI,o.DinnerDiningIcon=cI,o.DirectionsBikeIcon=aI,o.DirectionsBoatFilledIcon=sI,o.DirectionsBoatIcon=lI,o.DirectionsBusFilledIcon=uI,o.DirectionsBusIcon=dI,o.DirectionsCarFilledIcon=AI,o.DirectionsCarIcon=fI,o.DirectionsIcon=iI,o.DirectionsOffIcon=yI,o.DirectionsRailwayFilledIcon=_I,o.DirectionsRailwayIcon=gI,o.DirectionsRunIcon=hI,o.DirectionsSubwayFilledIcon=bI,o.DirectionsSubwayIcon=II,o.DirectionsTransitFilledIcon=wI,o.DirectionsTransitIcon=pI,o.DirectionsWalkIcon=kI,o.DirtyLensIcon=mI,o.DisabledByDefaultIcon=vI,o.DisabledVisibleIcon=CI,o.DiscFullIcon=KI,o.DiscountIcon=SI,o.DisplaySettingsIcon=BI,o.Diversity1Icon=EI,o.Diversity2Icon=FI,o.Diversity3Icon=PI,o.DnsIcon=DI,o.DoDisturbAltIcon=TI,o.DoDisturbIcon=NI,o.DoDisturbOffIcon=MI,o.DoDisturbOnIcon=OI,o.DoNotDisturbAltIcon=QI,o.DoNotDisturbIcon=LI,o.DoNotDisturbOffIcon=VI,o.DoNotDisturbOnIcon=WI,o.DoNotDisturbOnTotalSilenceIcon=GI,o.DoNotStepIcon=zI,o.DoNotTouchIcon=HI,o.DockIcon=UI,o.DocumentScannerIcon=YI,o.DomainAddIcon=$I,o.DomainDisabledIcon=qI,o.DomainIcon=jI,o.DomainVerificationIcon=JI,o.DoneAllIcon=XI,o.DoneIcon=ZI,o.DoneOutlineIcon=xI,o.DonutLargeIcon=RI,o.DonutSmallIcon=eb,o.DoorBackIcon=nb,o.DoorFrontIcon=ob,o.DoorSlidingIcon=rb,o.DoorbellIcon=tb,o.DoubleArrowIcon=cb,o.DownhillSkiingIcon=ib,o.DownloadDoneIcon=lb,o.DownloadForOfflineIcon=sb,o.DownloadIcon=ab,o.DownloadingIcon=db,o.DraftsIcon=ub,o.DragHandleIcon=fb,o.DragIndicatorIcon=Ab,o.DrawIcon=yb,o.Drawer=Xi,o.DrawerNavigationItem=gt,o.DriveEtaIcon=gb,o.DriveFileMoveIcon=_b,o.DriveFileMoveRtlIcon=hb,o.DriveFileRenameOutlineIcon=Ib,o.DriveFolderUploadIcon=Ac,o.DryCleaningIcon=pb,o.DryIcon=bb,o.DuoIcon=wb,o.DvrIcon=kb,o.DynamicFeedIcon=mb,o.DynamicFormIcon=vb,o.EMobiledataIcon=Cb,o.EarbudsBatteryIcon=Sb,o.EarbudsIcon=Kb,o.EastIcon=Bb,o.EdgesensorHighIcon=Eb,o.EdgesensorLowIcon=Fb,o.EditAttributesIcon=Pb,o.EditCalendarIcon=Db,o.EditIcon=yc,o.EditLocationAltIcon=Tb,o.EditLocationIcon=Nb,o.EditNoteIcon=Mb,o.EditNotificationsIcon=Ob,o.EditOffIcon=Lb,o.EditRoadIcon=Qb,o.EggAltIcon=Wb,o.EggIcon=Vb,o.EjectIcon=Gb,o.ElderlyIcon=zb,o.ElderlyWomanIcon=Hb,o.ElectricBikeIcon=Ub,o.ElectricBoltIcon=Yb,o.ElectricCarIcon=jb,o.ElectricMeterIcon=$b,o.ElectricMopedIcon=qb,o.ElectricRickshawIcon=Jb,o.ElectricScooterIcon=Zb,o.ElectricalServicesIcon=Xb,o.ElevatorIcon=xb,o.EmailIcon=gc,o.EmergencyIcon=Rb,o.EmergencyRecordingIcon=ep,o.EmergencyShareIcon=np,o.EmojiEmotionsIcon=op,o.EmojiEventsIcon=rp,o.EmojiFoodBeverageIcon=tp,o.EmojiNatureIcon=cp,o.EmojiObjectsIcon=ip,o.EmojiPeopleIcon=ap,o.EmojiSymbolsIcon=lp,o.EmojiTransportationIcon=sp,o.EmptyValue=Qn,o.EnergySavingsLeafIcon=dp,o.EngineeringIcon=up,o.EnhancedEncryptionIcon=fp,o.EntityCollectionTable=st,o.EntityCollectionView=ut,o.EntityForm=ba,o.EntityPreview=xr,o.EntityReference=$e,o.EnumValuesChip=Fe,o.EqualizerIcon=Ap,o.ErrorBoundary=ae,o.ErrorIcon=kr,o.ErrorOutlineIcon=_c,o.ErrorView=me,o.EscalatorIcon=yp,o.EscalatorWarningIcon=gp,o.EuroIcon=_p,o.EuroSymbolIcon=hp,o.EvStationIcon=Ip,o.EventAvailableIcon=pp,o.EventBusyIcon=wp,o.EventIcon=bp,o.EventNoteIcon=kp,o.EventRepeatIcon=mp,o.EventSeatIcon=vp,o.ExitToAppIcon=Cp,o.ExpandCircleDownIcon=Sp,o.ExpandIcon=Kp,o.ExpandLessIcon=Bp,o.ExpandMoreIcon=Co,o.ExpandablePanel=hn,o.ExplicitIcon=Ep,o.ExploreIcon=Fp,o.ExploreOffIcon=Pp,o.ExposureIcon=Dp,o.ExposureNeg1Icon=Np,o.ExposureNeg2Icon=Tp,o.ExposurePlus1Icon=Mp,o.ExposurePlus2Icon=Op,o.ExposureZeroIcon=Lp,o.ExtensionIcon=Qp,o.ExtensionOffIcon=Vp,o.Face2Icon=Gp,o.Face3Icon=zp,o.Face4Icon=Hp,o.Face5Icon=Up,o.Face6Icon=Yp,o.FaceIcon=Wp,o.FaceRetouchingNaturalIcon=jp,o.FaceRetouchingOffIcon=$p,o.FactCheckIcon=qp,o.FactoryIcon=Jp,o.FamilyRestroomIcon=Zp,o.FastForwardIcon=Xp,o.FastRewindIcon=xp,o.FastfoodIcon=Rp,o.FavoriteBorderIcon=nw,o.FavoriteIcon=ew,o.FaxIcon=ow,o.FeaturedPlayListIcon=rw,o.FeaturedVideoIcon=tw,o.FeedIcon=cw,o.FeedbackIcon=iw,o.FemaleIcon=aw,o.FenceIcon=lw,o.FestivalIcon=sw,o.FiberDvrIcon=dw,o.FiberManualRecordIcon=uw,o.FiberNewIcon=fw,o.FiberPinIcon=Aw,o.FiberSmartRecordIcon=yw,o.FieldConfigBadge=_3,o.FieldHelperText=Se,o.FileCopyIcon=hc,o.FileDownloadDoneIcon=_w,o.FileDownloadIcon=gw,o.FileDownloadOffIcon=hw,o.FileOpenIcon=Iw,o.FilePresentIcon=bw,o.FileUpload=AU,o.FileUploadIcon=pw,o.Filter1Icon=kw,o.Filter2Icon=mw,o.Filter3Icon=vw,o.Filter4Icon=Cw,o.Filter5Icon=Kw,o.Filter6Icon=Sw,o.Filter7Icon=Bw,o.Filter8Icon=Ew,o.Filter9Icon=Fw,o.Filter9PlusIcon=Pw,o.FilterAltIcon=Dw,o.FilterAltOffIcon=Nw,o.FilterBAndWIcon=Tw,o.FilterCenterFocusIcon=Mw,o.FilterDramaIcon=Ow,o.FilterFramesIcon=Lw,o.FilterHdrIcon=Qw,o.FilterIcon=ww,o.FilterListIcon=Ic,o.FilterListOffIcon=bc,o.FilterNoneIcon=Vw,o.FilterTiltShiftIcon=Ww,o.FilterVintageIcon=Gw,o.FindInPageIcon=zw,o.FindReplaceIcon=Hw,o.FingerprintIcon=Uw,o.FireCMS=r3,o.FireCMSAppBar=ta,o.FireCMSContextInstance=Pr,o.FireCMSLogo=ra,o.FireExtinguisherIcon=Yw,o.FireHydrantAltIcon=jw,o.FireTruckIcon=$w,o.FireplaceIcon=qw,o.FirstPageIcon=Jw,o.FitScreenIcon=Zw,o.FitbitIcon=Xw,o.FitnessCenterIcon=xw,o.FlagCircleIcon=Rw,o.FlagIcon=pc,o.FlakyIcon=ek,o.FlareIcon=nk,o.FlashAutoIcon=ok,o.FlashOffIcon=rk,o.FlashOnIcon=tk,o.FlashlightOffIcon=ck,o.FlashlightOnIcon=ik,o.FlatwareIcon=ak,o.FlightClassIcon=sk,o.FlightIcon=lk,o.FlightLandIcon=dk,o.FlightTakeoffIcon=uk,o.FlipCameraAndroidIcon=Ak,o.FlipCameraIosIcon=yk,o.FlipIcon=fk,o.FlipToBackIcon=gk,o.FlipToFrontIcon=_k,o.FloodIcon=hk,o.FluorescentIcon=Ik,o.FlutterDashIcon=bk,o.FmdBadIcon=pk,o.FmdGoodIcon=wk,o.FolderCopyIcon=mk,o.FolderDeleteIcon=vk,o.FolderIcon=kk,o.FolderOffIcon=Ck,o.FolderOpenIcon=Kk,o.FolderSharedIcon=Sk,o.FolderSpecialIcon=Bk,o.FolderZipIcon=Ek,o.FollowTheSignsIcon=Fk,o.FontDownloadIcon=Pk,o.FontDownloadOffIcon=Dk,o.FoodBankIcon=Nk,o.ForestIcon=Tk,o.ForkLeftIcon=Mk,o.ForkRightIcon=Ok,o.FormatAlignCenterIcon=Lk,o.FormatAlignJustifyIcon=Qk,o.FormatAlignLeftIcon=Vk,o.FormatAlignRightIcon=Wk,o.FormatBoldIcon=Gk,o.FormatClearIcon=zk,o.FormatColorFillIcon=Hk,o.FormatColorResetIcon=Uk,o.FormatColorTextIcon=Yk,o.FormatIndentDecreaseIcon=jk,o.FormatIndentIncreaseIcon=$k,o.FormatItalicIcon=qk,o.FormatLineSpacingIcon=Jk,o.FormatListBulletedIcon=Zk,o.FormatListNumberedIcon=mr,o.FormatListNumberedRtlIcon=Xk,o.FormatOverlineIcon=xk,o.FormatPaintIcon=Rk,o.FormatQuoteIcon=wc,o.FormatShapesIcon=em,o.FormatSizeIcon=nm,o.FormatStrikethroughIcon=om,o.FormatTextdirectionLToRIcon=rm,o.FormatTextdirectionRToLIcon=tm,o.FormatUnderlinedIcon=cm,o.FormikArrayContainer=qo,o.FortIcon=im,o.ForumIcon=am,o.Forward10Icon=sm,o.Forward30Icon=dm,o.Forward5Icon=um,o.ForwardIcon=lm,o.ForwardToInboxIcon=fm,o.FoundationIcon=Am,o.FreeBreakfastIcon=ym,o.FreeCancellationIcon=gm,o.FrontHandIcon=_m,o.FullscreenExitIcon=Im,o.FullscreenIcon=hm,o.FunctionsIcon=kc,o.GMobiledataIcon=bm,o.GTranslateIcon=pm,o.GamepadIcon=wm,o.GamesIcon=km,o.GarageIcon=mm,o.GasMeterIcon=vm,o.GavelIcon=Cm,o.GeneratingTokensIcon=Km,o.GeoPoint=Eo,o.GestureIcon=Sm,o.GetAppIcon=Bm,o.GifBoxIcon=Fm,o.GifIcon=Em,o.GirlIcon=Pm,o.GitHubIcon=gl,o.GiteIcon=Dm,o.GolfCourseIcon=Nm,o.GppBadIcon=Tm,o.GppGoodIcon=Mm,o.GppMaybeIcon=Om,o.GpsFixedIcon=Lm,o.GpsNotFixedIcon=Qm,o.GpsOffIcon=Vm,o.GradeIcon=Wm,o.GradientIcon=Gm,o.GradingIcon=zm,o.GrainIcon=Hm,o.GraphicEqIcon=Um,o.GrassIcon=Ym,o.Grid3x3Icon=jm,o.Grid4x4Icon=$m,o.GridGoldenratioIcon=qm,o.GridOffIcon=Jm,o.GridOnIcon=Zm,o.GridViewIcon=Xm,o.GroupAddIcon=Rm,o.GroupIcon=xm,o.GroupOffIcon=ev,o.GroupRemoveIcon=nv,o.GroupWorkIcon=ov,o.Groups2Icon=tv,o.Groups3Icon=cv,o.GroupsIcon=rv,o.HMobiledataIcon=iv,o.HPlusMobiledataIcon=av,o.HailIcon=lv,o.HandshakeIcon=sv,o.HandymanIcon=dv,o.HardwareIcon=uv,o.HdIcon=fv,o.HdrAutoIcon=Av,o.HdrAutoSelectIcon=yv,o.HdrEnhancedSelectIcon=gv,o.HdrOffIcon=_v,o.HdrOffSelectIcon=hv,o.HdrOnIcon=Iv,o.HdrOnSelectIcon=bv,o.HdrPlusIcon=pv,o.HdrStrongIcon=wv,o.HdrWeakIcon=kv,o.HeadphonesBatteryIcon=vv,o.HeadphonesIcon=mv,o.HeadsetIcon=Cv,o.HeadsetMicIcon=Kv,o.HeadsetOffIcon=Sv,o.HealingIcon=Bv,o.HealthAndSafetyIcon=Ev,o.HearingDisabledIcon=Pv,o.HearingIcon=Fv,o.HeartBrokenIcon=Dv,o.HeatPumpIcon=Nv,o.HeightIcon=Tv,o.HelpCenterIcon=Ov,o.HelpIcon=Mv,o.HelpOutlineIcon=Lv,o.HevcIcon=Qv,o.HexagonIcon=Vv,o.HideImageIcon=Wv,o.HideSourceIcon=Gv,o.HighQualityIcon=zv,o.HighlightAltIcon=Uv,o.HighlightIcon=Hv,o.HighlightOffIcon=Yv,o.HikingIcon=jv,o.HistoryEduIcon=qv,o.HistoryIcon=$v,o.HistoryToggleOffIcon=Jv,o.HiveIcon=Zv,o.HlsIcon=Xv,o.HlsOffIcon=xv,o.HolidayVillageIcon=Rv,o.HomeIcon=e0,o.HomeMaxIcon=n0,o.HomeMiniIcon=o0,o.HomeRepairServiceIcon=r0,o.HomeWorkIcon=t0,o.HorizontalDistributeIcon=c0,o.HorizontalRuleIcon=i0,o.HorizontalSplitIcon=a0,o.HotTubIcon=l0,o.HotelClassIcon=d0,o.HotelIcon=s0,o.HourglassBottomIcon=u0,o.HourglassDisabledIcon=f0,o.HourglassEmptyIcon=A0,o.HourglassFullIcon=y0,o.HourglassTopIcon=g0,o.HouseIcon=_0,o.HouseSidingIcon=h0,o.HouseboatIcon=I0,o.HowToRegIcon=b0,o.HowToVoteIcon=p0,o.HtmlIcon=w0,o.HttpIcon=mc,o.HttpsIcon=k0,o.HubIcon=m0,o.HvacIcon=v0,o.IceSkatingIcon=C0,o.IcecreamIcon=K0,o.Icon=r,o.IconButton=R,o.ImageAspectRatioIcon=B0,o.ImageIcon=S0,o.ImageNotSupportedIcon=E0,o.ImagePreview=ii,o.ImageSearchIcon=F0,o.ImagesearchRollerIcon=P0,o.ImportContactsIcon=D0,o.ImportExportIcon=N0,o.ImportantDevicesIcon=T0,o.InboxIcon=M0,o.IncompleteCircleIcon=O0,o.IndeterminateCheckBoxIcon=L0,o.InfoIcon=vc,o.InfoLabel=gU,o.InputIcon=Q0,o.InputLabel=Ut,o.InsertChartIcon=V0,o.InsertChartOutlinedIcon=W0,o.InsertCommentIcon=G0,o.InsertDriveFileIcon=z0,o.InsertEmoticonIcon=H0,o.InsertInvitationIcon=U0,o.InsertLinkIcon=Y0,o.InsertPageBreakIcon=j0,o.InsertPhotoIcon=$0,o.InsightsIcon=q0,o.InstallDesktopIcon=J0,o.InstallMobileIcon=Z0,o.IntegrationInstructionsIcon=X0,o.InterestsIcon=x0,o.InterpreterModeIcon=R0,o.Inventory2Icon=nC,o.InventoryIcon=eC,o.InvertColorsIcon=oC,o.InvertColorsOffIcon=rC,o.IosShareIcon=tC,o.IronIcon=cC,o.IsoIcon=iC,o.JavascriptIcon=aC,o.JoinFullIcon=lC,o.JoinInnerIcon=sC,o.JoinLeftIcon=dC,o.JoinRightIcon=uC,o.KayakingIcon=fC,o.KebabDiningIcon=AC,o.KeyIcon=yC,o.KeyOffIcon=gC,o.KeyValueFieldBinding=Aa,o.KeyValuePreview=Xr,o.KeyboardAltIcon=hC,o.KeyboardArrowDownIcon=IC,o.KeyboardArrowLeftIcon=bC,o.KeyboardArrowRightIcon=pC,o.KeyboardArrowUpIcon=wC,o.KeyboardBackspaceIcon=kC,o.KeyboardCapslockIcon=mC,o.KeyboardCommandKeyIcon=vC,o.KeyboardControlKeyIcon=CC,o.KeyboardDoubleArrowDownIcon=KC,o.KeyboardDoubleArrowLeftIcon=SC,o.KeyboardDoubleArrowRightIcon=BC,o.KeyboardDoubleArrowUpIcon=EC,o.KeyboardHideIcon=FC,o.KeyboardIcon=_C,o.KeyboardOptionKeyIcon=PC,o.KeyboardReturnIcon=DC,o.KeyboardTabIcon=Ko,o.KeyboardVoiceIcon=NC,o.KingBedIcon=TC,o.KitchenIcon=MC,o.KitesurfingIcon=OC,o.LabelIcon=LC,o.LabelImportantIcon=QC,o.LabelOffIcon=VC,o.LabelWithIcon=Ke,o.LanIcon=WC,o.LandscapeIcon=GC,o.LandslideIcon=zC,o.LanguageIcon=HC,o.LaptopChromebookIcon=YC,o.LaptopIcon=UC,o.LaptopMacIcon=jC,o.LaptopWindowsIcon=$C,o.LastPageIcon=qC,o.LaunchIcon=JC,o.LayersClearIcon=XC,o.LayersIcon=ZC,o.LeaderboardIcon=xC,o.LeakAddIcon=RC,o.LeakRemoveIcon=eK,o.LegendToggleIcon=nK,o.LensBlurIcon=rK,o.LensIcon=oK,o.LibraryAddCheckIcon=cK,o.LibraryAddIcon=tK,o.LibraryBooksIcon=iK,o.LibraryMusicIcon=aK,o.LightIcon=lK,o.LightModeIcon=Cc,o.LightbulbCircleIcon=dK,o.LightbulbIcon=sK,o.LineAxisIcon=uK,o.LineStyleIcon=fK,o.LineWeightIcon=AK,o.LinearScaleIcon=yK,o.LinkIcon=Kc,o.LinkOffIcon=gK,o.LinkedCameraIcon=_K,o.LiquorIcon=hK,o.ListAltIcon=Bc,o.ListIcon=Sc,o.LiveHelpIcon=IK,o.LiveTvIcon=bK,o.LivingIcon=pK,o.LoadingButton=Ma,o.LocalActivityIcon=wK,o.LocalAirportIcon=kK,o.LocalAtmIcon=mK,o.LocalBarIcon=vK,o.LocalCafeIcon=CK,o.LocalCarWashIcon=KK,o.LocalConvenienceStoreIcon=SK,o.LocalDiningIcon=BK,o.LocalDrinkIcon=EK,o.LocalFireDepartmentIcon=FK,o.LocalFloristIcon=PK,o.LocalGasStationIcon=DK,o.LocalGroceryStoreIcon=NK,o.LocalHospitalIcon=TK,o.LocalHotelIcon=MK,o.LocalLaundryServiceIcon=OK,o.LocalLibraryIcon=LK,o.LocalMallIcon=QK,o.LocalMoviesIcon=VK,o.LocalOfferIcon=WK,o.LocalParkingIcon=GK,o.LocalPharmacyIcon=zK,o.LocalPhoneIcon=HK,o.LocalPizzaIcon=UK,o.LocalPlayIcon=YK,o.LocalPoliceIcon=jK,o.LocalPostOfficeIcon=$K,o.LocalPrintshopIcon=qK,o.LocalSeeIcon=JK,o.LocalShippingIcon=ZK,o.LocalTaxiIcon=XK,o.LocationCityIcon=xK,o.LocationDisabledIcon=RK,o.LocationOffIcon=eS,o.LocationOnIcon=nS,o.LocationSearchingIcon=oS,o.LockClockIcon=tS,o.LockIcon=rS,o.LockOpenIcon=cS,o.LockPersonIcon=iS,o.LockResetIcon=aS,o.LoginIcon=lS,o.LogoDevIcon=sS,o.LogoutIcon=Ec,o.Looks3Icon=uS,o.Looks4Icon=fS,o.Looks5Icon=AS,o.Looks6Icon=yS,o.LooksIcon=dS,o.LooksOneIcon=gS,o.LooksTwoIcon=_S,o.LoopIcon=hS,o.LoupeIcon=IS,o.LowPriorityIcon=bS,o.LoyaltyIcon=pS,o.LteMobiledataIcon=wS,o.LtePlusMobiledataIcon=kS,o.LuggageIcon=mS,o.LunchDiningIcon=vS,o.LyricsIcon=CS,o.MacroOffIcon=KS,o.MailIcon=SS,o.MailLockIcon=BS,o.MailOutlineIcon=ES,o.MaleIcon=FS,o.Man2Icon=DS,o.Man3Icon=NS,o.Man4Icon=TS,o.ManIcon=PS,o.ManageAccountsIcon=MS,o.ManageHistoryIcon=OS,o.ManageSearchIcon=LS,o.MapFieldBinding=fa,o.MapIcon=QS,o.MapPropertyPreview=gi,o.MapsHomeWorkIcon=VS,o.MapsUgcIcon=WS,o.MarginIcon=GS,o.MarkAsUnreadIcon=zS,o.MarkChatReadIcon=HS,o.MarkChatUnreadIcon=US,o.MarkEmailReadIcon=YS,o.MarkEmailUnreadIcon=jS,o.MarkUnreadChatAltIcon=$S,o.Markdown=Ao,o.MarkdownFieldBinding=_a,o.MarkunreadIcon=qS,o.MarkunreadMailboxIcon=JS,o.MasksIcon=ZS,o.MaximizeIcon=XS,o.MediaBluetoothOffIcon=xS,o.MediaBluetoothOnIcon=RS,o.MediationIcon=eB,o.MedicalInformationIcon=nB,o.MedicalServicesIcon=oB,o.MedicationIcon=rB,o.MedicationLiquidIcon=tB,o.MeetingRoomIcon=cB,o.MemoryIcon=iB,o.Menu=jn,o.MenuBookIcon=aB,o.MenuIcon=vr,o.MenuItem=Be,o.MenuOpenIcon=lB,o.MergeIcon=sB,o.MergeTypeIcon=dB,o.MessageIcon=uB,o.MicExternalOffIcon=AB,o.MicExternalOnIcon=yB,o.MicIcon=fB,o.MicNoneIcon=gB,o.MicOffIcon=_B,o.MicrowaveIcon=hB,o.MilitaryTechIcon=IB,o.MinimizeIcon=bB,o.MinorCrashIcon=pB,o.MiscellaneousServicesIcon=wB,o.MissedVideoCallIcon=kB,o.MmsIcon=mB,o.MobileFriendlyIcon=vB,o.MobileOffIcon=CB,o.MobileScreenShareIcon=KB,o.MobiledataOffIcon=SB,o.ModeCommentIcon=EB,o.ModeControllerContext=zo,o.ModeControllerProvider=LH,o.ModeEditIcon=FB,o.ModeEditOutlineIcon=PB,o.ModeFanOffIcon=DB,o.ModeIcon=BB,o.ModeNightIcon=NB,o.ModeOfTravelIcon=TB,o.ModeStandbyIcon=MB,o.ModelTrainingIcon=OB,o.MonetizationOnIcon=LB,o.MoneyIcon=QB,o.MoneyOffCsredIcon=WB,o.MoneyOffIcon=VB,o.MonitorHeartIcon=zB,o.MonitorIcon=GB,o.MonitorWeightIcon=HB,o.MonochromePhotosIcon=UB,o.MoodBadIcon=jB,o.MoodIcon=YB,o.MopedIcon=$B,o.MoreHorizIcon=JB,o.MoreIcon=qB,o.MoreTimeIcon=ZB,o.MoreVertIcon=Cr,o.MosqueIcon=XB,o.MotionPhotosAutoIcon=xB,o.MotionPhotosOffIcon=RB,o.MotionPhotosOnIcon=eE,o.MotionPhotosPauseIcon=nE,o.MotionPhotosPausedIcon=oE,o.MouseIcon=rE,o.MoveDownIcon=tE,o.MoveToInboxIcon=cE,o.MoveUpIcon=iE,o.MovieCreationIcon=lE,o.MovieFilterIcon=sE,o.MovieIcon=aE,o.MovingIcon=dE,o.MpIcon=uE,o.MultiSelect=kt,o.MultiSelectBinding=vt,o.MultiSelectContext=wt,o.MultiSelectItem=mt,o.MultilineChartIcon=fE,o.MultipleStopIcon=AE,o.MuseumIcon=yE,o.MusicNoteIcon=gE,o.MusicOffIcon=_E,o.MusicVideoIcon=hE,o.MyLocationIcon=IE,o.NatIcon=bE,o.NatureIcon=pE,o.NaturePeopleIcon=wE,o.NavigateBeforeIcon=kE,o.NavigateNextIcon=mE,o.NavigationCollectionCard=ea,o.NavigationGroup=_t,o.NavigationIcon=vE,o.NavigationRoutes=s3,o.NearMeDisabledIcon=KE,o.NearMeIcon=CE,o.NearbyErrorIcon=SE,o.NearbyOffIcon=BE,o.NestCamWiredStandIcon=EE,o.NetworkCellIcon=FE,o.NetworkCheckIcon=PE,o.NetworkLockedIcon=DE,o.NetworkPingIcon=NE,o.NetworkWifi1BarIcon=ME,o.NetworkWifi2BarIcon=OE,o.NetworkWifi3BarIcon=LE,o.NetworkWifiIcon=TE,o.NewLabelIcon=QE,o.NewReleasesIcon=VE,o.NewspaperIcon=WE,o.NextPlanIcon=GE,o.NextWeekIcon=zE,o.NfcIcon=HE,o.NightShelterIcon=UE,o.NightlifeIcon=YE,o.NightlightIcon=jE,o.NightlightRoundIcon=$E,o.NightsStayIcon=qE,o.NoAccountsIcon=JE,o.NoAdultContentIcon=ZE,o.NoBackpackIcon=XE,o.NoCellIcon=xE,o.NoCrashIcon=RE,o.NoDrinksIcon=eF,o.NoEncryptionGmailerrorredIcon=oF,o.NoEncryptionIcon=nF,o.NoFlashIcon=rF,o.NoFoodIcon=tF,o.NoLuggageIcon=cF,o.NoMealsIcon=iF,o.NoMeetingRoomIcon=aF,o.NoPhotographyIcon=lF,o.NoSimIcon=sF,o.NoStrollerIcon=dF,o.NoTransferIcon=uF,o.NoiseAwareIcon=fF,o.NoiseControlOffIcon=AF,o.NordicWalkingIcon=yF,o.NorthEastIcon=_F,o.NorthIcon=gF,o.NorthWestIcon=hF,o.NotAccessibleIcon=IF,o.NotFoundPage=oa,o.NotInterestedIcon=bF,o.NotListedLocationIcon=pF,o.NotStartedIcon=wF,o.NoteAddIcon=mF,o.NoteAltIcon=vF,o.NoteIcon=kF,o.NotesIcon=CF,o.NotificationAddIcon=KF,o.NotificationImportantIcon=SF,o.NotificationsActiveIcon=EF,o.NotificationsIcon=BF,o.NotificationsNoneIcon=FF,o.NotificationsOffIcon=PF,o.NotificationsPausedIcon=DF,o.NumberPropertyPreview=Ii,o.NumbersIcon=Fc,o.OfflineBoltIcon=NF,o.OfflinePinIcon=TF,o.OfflineShareIcon=MF,o.OilBarrelIcon=OF,o.OnDeviceTrainingIcon=LF,o.OndemandVideoIcon=QF,o.OnlinePredictionIcon=VF,o.OpacityIcon=WF,o.OpenInBrowserIcon=GF,o.OpenInFullIcon=zF,o.OpenInNewIcon=Rn,o.OpenInNewOffIcon=HF,o.OpenWithIcon=UF,o.OtherHousesIcon=YF,o.OutboundIcon=jF,o.OutboxIcon=$F,o.OutdoorGrillIcon=qF,o.OutletIcon=JF,o.OutlinedFlagIcon=ZF,o.OutputIcon=XF,o.PaddingIcon=xF,o.PagesIcon=RF,o.PageviewIcon=eP,o.PaidIcon=nP,o.PaletteIcon=oP,o.PanToolAltIcon=tP,o.PanToolIcon=rP,o.PanoramaFishEyeIcon=iP,o.PanoramaHorizontalIcon=aP,o.PanoramaHorizontalSelectIcon=lP,o.PanoramaIcon=cP,o.PanoramaPhotosphereIcon=sP,o.PanoramaPhotosphereSelectIcon=dP,o.PanoramaVerticalIcon=uP,o.PanoramaVerticalSelectIcon=fP,o.PanoramaWideAngleIcon=AP,o.PanoramaWideAngleSelectIcon=yP,o.Paper=hU,o.ParaglidingIcon=gP,o.ParkIcon=_P,o.PartyModeIcon=hP,o.PasswordIcon=IP,o.PatternIcon=bP,o.PauseCircleFilledIcon=kP,o.PauseCircleIcon=wP,o.PauseCircleOutlineIcon=mP,o.PauseIcon=pP,o.PausePresentationIcon=vP,o.PaymentIcon=CP,o.PaymentsIcon=KP,o.PedalBikeIcon=SP,o.PendingActionsIcon=EP,o.PendingIcon=BP,o.PentagonIcon=FP,o.PeopleAltIcon=DP,o.PeopleIcon=PP,o.PeopleOutlineIcon=NP,o.PercentIcon=TP,o.PermCameraMicIcon=MP,o.PermContactCalendarIcon=OP,o.PermDataSettingIcon=LP,o.PermDeviceInformationIcon=QP,o.PermIdentityIcon=VP,o.PermMediaIcon=WP,o.PermPhoneMsgIcon=GP,o.PermScanWifiIcon=zP,o.Person2Icon=UP,o.Person3Icon=YP,o.Person4Icon=jP,o.PersonAddAlt1Icon=JP,o.PersonAddAltIcon=qP,o.PersonAddDisabledIcon=ZP,o.PersonAddIcon=$P,o.PersonIcon=HP,o.PersonOffIcon=XP,o.PersonOutlineIcon=xP,o.PersonPinCircleIcon=e1,o.PersonPinIcon=RP,o.PersonRemoveAlt1Icon=o1,o.PersonRemoveIcon=n1,o.PersonSearchIcon=r1,o.PersonalInjuryIcon=t1,o.PersonalVideoIcon=c1,o.PestControlIcon=i1,o.PestControlRodentIcon=a1,o.PetsIcon=l1,o.PhishingIcon=s1,o.PhoneAndroidIcon=u1,o.PhoneBluetoothSpeakerIcon=f1,o.PhoneCallbackIcon=A1,o.PhoneDisabledIcon=y1,o.PhoneEnabledIcon=g1,o.PhoneForwardedIcon=_1,o.PhoneIcon=d1,o.PhoneIphoneIcon=h1,o.PhoneLockedIcon=I1,o.PhoneMissedIcon=b1,o.PhonePausedIcon=p1,o.PhonelinkEraseIcon=k1,o.PhonelinkIcon=w1,o.PhonelinkLockIcon=m1,o.PhonelinkOffIcon=v1,o.PhonelinkRingIcon=C1,o.PhonelinkSetupIcon=K1,o.PhotoAlbumIcon=B1,o.PhotoCameraBackIcon=F1,o.PhotoCameraFrontIcon=P1,o.PhotoCameraIcon=E1,o.PhotoFilterIcon=D1,o.PhotoIcon=S1,o.PhotoLibraryIcon=N1,o.PhotoSizeSelectActualIcon=T1,o.PhotoSizeSelectLargeIcon=M1,o.PhotoSizeSelectSmallIcon=O1,o.PhpIcon=L1,o.PianoIcon=Q1,o.PianoOffIcon=V1,o.PictureAsPdfIcon=W1,o.PictureInPictureAltIcon=z1,o.PictureInPictureIcon=G1,o.PieChartIcon=H1,o.PieChartOutlineIcon=U1,o.PinDropIcon=j1,o.PinEndIcon=$1,o.PinIcon=Y1,o.PinInvokeIcon=q1,o.PinchIcon=J1,o.PivotTableChartIcon=Z1,o.PixIcon=X1,o.PlaceIcon=x1,o.PlagiarismIcon=R1,o.PlayArrowIcon=eD,o.PlayCircleFilledIcon=oD,o.PlayCircleIcon=nD,o.PlayCircleOutlineIcon=rD,o.PlayDisabledIcon=tD,o.PlayForWorkIcon=cD,o.PlayLessonIcon=iD,o.PlaylistAddCheckCircleIcon=sD,o.PlaylistAddCheckIcon=lD,o.PlaylistAddCircleIcon=dD,o.PlaylistAddIcon=aD,o.PlaylistPlayIcon=uD,o.PlaylistRemoveIcon=fD,o.PlumbingIcon=AD,o.PlusOneIcon=yD,o.PodcastsIcon=gD,o.PointOfSaleIcon=_D,o.PolicyIcon=hD,o.PollIcon=ID,o.PolylineIcon=bD,o.PolymerIcon=pD,o.PoolIcon=wD,o.Popover=tr,o.PortableWifiOffIcon=kD,o.PortraitIcon=mD,o.PostAddIcon=vD,o.PowerIcon=CD,o.PowerInputIcon=KD,o.PowerOffIcon=SD,o.PowerSettingsNewIcon=BD,o.PrecisionManufacturingIcon=ED,o.PregnantWomanIcon=FD,o.PresentToAllIcon=PD,o.PreviewIcon=DD,o.PriceChangeIcon=ND,o.PriceCheckIcon=TD,o.PrintDisabledIcon=OD,o.PrintIcon=MD,o.PriorityHighIcon=LD,o.PrivacyTipIcon=QD,o.PrivateConnectivityIcon=VD,o.ProductionQuantityLimitsIcon=WD,o.PropaneIcon=GD,o.PropaneTankIcon=zD,o.PropertyFieldBinding=Sn,o.PropertyPreview=Ce,o.PsychologyAltIcon=UD,o.PsychologyIcon=HD,o.PublicIcon=YD,o.PublicOffIcon=jD,o.PublishIcon=$D,o.PublishedWithChangesIcon=qD,o.PunchClockIcon=JD,o.PushPinIcon=ZD,o.QrCode2Icon=xD,o.QrCodeIcon=XD,o.QrCodeScannerIcon=RD,o.QueryBuilderIcon=eN,o.QueryStatsIcon=nN,o.QuestionAnswerIcon=oN,o.QuestionMarkIcon=rN,o.QueueIcon=tN,o.QueueMusicIcon=cN,o.QueuePlayNextIcon=iN,o.QuickreplyIcon=aN,o.QuizIcon=lN,o.RMobiledataIcon=sN,o.RadarIcon=dN,o.RadioButtonCheckedIcon=fN,o.RadioButtonUncheckedIcon=AN,o.RadioIcon=uN,o.RailwayAlertIcon=yN,o.RamenDiningIcon=gN,o.RampLeftIcon=_N,o.RampRightIcon=hN,o.RateReviewIcon=IN,o.RawOffIcon=bN,o.RawOnIcon=pN,o.ReadMoreIcon=wN,o.ReadOnlyFieldBinding=Kt,o.RealEstateAgentIcon=kN,o.ReceiptIcon=mN,o.ReceiptLongIcon=vN,o.RecentActorsIcon=CN,o.RecommendIcon=KN,o.RecordVoiceOverIcon=SN,o.RectangleIcon=BN,o.RecyclingIcon=EN,o.RedeemIcon=FN,o.RedoIcon=PN,o.ReduceCapacityIcon=DN,o.ReferenceFieldBinding=ua,o.ReferencePreview=rn,o.ReferencePreviewContainer=Vo,o.ReferenceSelectionInner=Ri,o.RefreshIcon=NN,o.RememberMeIcon=TN,o.RemoveCircleIcon=Pc,o.RemoveCircleOutlineIcon=MN,o.RemoveDoneIcon=ON,o.RemoveFromQueueIcon=LN,o.RemoveIcon=eo,o.RemoveModeratorIcon=QN,o.RemoveRedEyeIcon=VN,o.RemoveRoadIcon=WN,o.RemoveShoppingCartIcon=GN,o.ReorderIcon=zN,o.RepartitionIcon=HN,o.RepeatFieldBinding=ya,o.RepeatIcon=Kr,o.RepeatOnIcon=UN,o.RepeatOneIcon=YN,o.RepeatOneOnIcon=jN,o.Replay10Icon=qN,o.Replay30Icon=JN,o.Replay5Icon=ZN,o.ReplayCircleFilledIcon=XN,o.ReplayIcon=$N,o.ReplyAllIcon=RN,o.ReplyIcon=xN,o.ReportGmailerrorredIcon=nT,o.ReportIcon=eT,o.ReportOffIcon=oT,o.ReportProblemIcon=rT,o.RequestPageIcon=tT,o.RequestQuoteIcon=cT,o.ResetTvIcon=iT,o.RestartAltIcon=aT,o.RestaurantIcon=lT,o.RestaurantMenuIcon=sT,o.RestoreFromTrashIcon=uT,o.RestoreIcon=dT,o.RestorePageIcon=fT,o.ReviewsIcon=AT,o.RiceBowlIcon=yT,o.RingVolumeIcon=gT,o.RocketIcon=_T,o.RocketLaunchIcon=hT,o.RollerShadesClosedIcon=bT,o.RollerShadesIcon=IT,o.RollerSkatingIcon=pT,o.RoofingIcon=wT,o.RoomIcon=kT,o.RoomPreferencesIcon=mT,o.RoomServiceIcon=vT,o.Rotate90DegreesCcwIcon=CT,o.Rotate90DegreesCwIcon=KT,o.RotateLeftIcon=ST,o.RotateRightIcon=BT,o.RoundaboutLeftIcon=ET,o.RoundaboutRightIcon=FT,o.RoundedCornerIcon=PT,o.RouteIcon=DT,o.RouteWrapper=$o,o.RouterIcon=NT,o.RowingIcon=TT,o.RssFeedIcon=MT,o.RsvpIcon=OT,o.RttIcon=LT,o.RuleFolderIcon=VT,o.RuleIcon=QT,o.RunCircleIcon=WT,o.RunningWithErrorsIcon=GT,o.RvHookupIcon=zT,o.SafetyCheckIcon=HT,o.SafetyDividerIcon=UT,o.SailingIcon=YT,o.SanitizerIcon=jT,o.SatelliteAltIcon=qT,o.SatelliteIcon=$T,o.SaveAltIcon=ZT,o.SaveAsIcon=XT,o.SaveIcon=JT,o.SavedSearchIcon=xT,o.SavingsIcon=RT,o.Scaffold=i3,o.ScaleIcon=eM,o.ScannerIcon=nM,o.ScatterPlotIcon=oM,o.ScheduleIcon=Dc,o.ScheduleSendIcon=rM,o.SchemaIcon=tM,o.SchoolIcon=cM,o.ScienceIcon=iM,o.ScoreIcon=aM,o.ScoreboardIcon=lM,o.ScreenLockLandscapeIcon=sM,o.ScreenLockPortraitIcon=dM,o.ScreenLockRotationIcon=uM,o.ScreenRotationAltIcon=AM,o.ScreenRotationIcon=fM,o.ScreenSearchDesktopIcon=yM,o.ScreenShareIcon=gM,o.ScreenshotIcon=_M,o.ScreenshotMonitorIcon=hM,o.ScubaDivingIcon=IM,o.SdCardAlertIcon=wM,o.SdCardIcon=pM,o.SdIcon=bM,o.SdStorageIcon=kM,o.SearchBar=Yt,o.SearchIcon=hr,o.SearchOffIcon=mM,o.SecurityIcon=vM,o.SecurityUpdateGoodIcon=KM,o.SecurityUpdateIcon=CM,o.SecurityUpdateWarningIcon=SM,o.SegmentIcon=BM,o.Select=xe,o.SelectAllIcon=EM,o.SelectFieldBinding=pt,o.SelectGroup=IU,o.SelectItem=Re,o.SelfImprovementIcon=FM,o.SellIcon=PM,o.SendAndArchiveIcon=NM,o.SendIcon=DM,o.SendTimeExtensionIcon=TM,o.SendToMobileIcon=MM,o.SensorDoorIcon=OM,o.SensorOccupiedIcon=LM,o.SensorWindowIcon=QM,o.SensorsIcon=VM,o.SensorsOffIcon=WM,o.SentimentDissatisfiedIcon=GM,o.SentimentNeutralIcon=zM,o.SentimentSatisfiedAltIcon=UM,o.SentimentSatisfiedIcon=HM,o.SentimentVeryDissatisfiedIcon=YM,o.SentimentVerySatisfiedIcon=jM,o.SetMealIcon=$M,o.SettingsAccessibilityIcon=JM,o.SettingsApplicationsIcon=ZM,o.SettingsBackupRestoreIcon=XM,o.SettingsBluetoothIcon=xM,o.SettingsBrightnessIcon=RM,o.SettingsCellIcon=e2,o.SettingsEthernetIcon=n2,o.SettingsIcon=qM,o.SettingsInputAntennaIcon=o2,o.SettingsInputComponentIcon=r2,o.SettingsInputCompositeIcon=t2,o.SettingsInputHdmiIcon=c2,o.SettingsInputSvideoIcon=i2,o.SettingsOverscanIcon=a2,o.SettingsPhoneIcon=l2,o.SettingsPowerIcon=s2,o.SettingsRemoteIcon=d2,o.SettingsSuggestIcon=u2,o.SettingsSystemDaydreamIcon=f2,o.SettingsVoiceIcon=A2,o.SevereColdIcon=y2,o.ShapeLineIcon=g2,o.ShareIcon=_2,o.ShareLocationIcon=h2,o.Sheet=jt,o.ShieldIcon=I2,o.ShieldMoonIcon=b2,o.Shop2Icon=w2,o.ShopIcon=p2,o.ShopTwoIcon=k2,o.ShoppingBagIcon=m2,o.ShoppingBasketIcon=v2,o.ShoppingCartCheckoutIcon=K2,o.ShoppingCartIcon=C2,o.ShortTextIcon=Nc,o.ShortcutIcon=S2,o.ShowChartIcon=B2,o.ShowerIcon=E2,o.ShuffleIcon=F2,o.ShuffleOnIcon=P2,o.ShutterSpeedIcon=D2,o.SickIcon=N2,o.SideDialogs=HH,o.SignLanguageIcon=T2,o.SignalCellular0BarIcon=M2,o.SignalCellular4BarIcon=O2,o.SignalCellularAlt1BarIcon=Q2,o.SignalCellularAlt2BarIcon=V2,o.SignalCellularAltIcon=L2,o.SignalCellularConnectedNoInternet0BarIcon=W2,o.SignalCellularConnectedNoInternet4BarIcon=G2,o.SignalCellularNoSimIcon=z2,o.SignalCellularNodataIcon=H2,o.SignalCellularNullIcon=U2,o.SignalCellularOffIcon=Y2,o.SignalWifi0BarIcon=j2,o.SignalWifi4BarIcon=$2,o.SignalWifi4BarLockIcon=q2,o.SignalWifiBadIcon=J2,o.SignalWifiConnectedNoInternet4Icon=Z2,o.SignalWifiOffIcon=X2,o.SignalWifiStatusbar4BarIcon=x2,o.SignalWifiStatusbarConnectedNoInternet4Icon=R2,o.SignalWifiStatusbarNullIcon=eO,o.SignpostIcon=nO,o.SimCardAlertIcon=rO,o.SimCardDownloadIcon=tO,o.SimCardIcon=oO,o.SingleBedIcon=cO,o.SipIcon=iO,o.SkateboardingIcon=aO,o.Skeleton=Oe,o.SkeletonPropertyComponent=Wn,o.SkipNextIcon=lO,o.SkipPreviousIcon=sO,o.SleddingIcon=dO,o.SlideshowIcon=uO,o.SlowMotionVideoIcon=fO,o.SmartButtonIcon=AO,o.SmartDisplayIcon=yO,o.SmartScreenIcon=gO,o.SmartToyIcon=_O,o.SmartphoneIcon=hO,o.SmokeFreeIcon=IO,o.SmokingRoomsIcon=bO,o.SmsFailedIcon=wO,o.SmsIcon=pO,o.SnackbarProvider=MH,o.SnippetFolderIcon=kO,o.SnoozeIcon=mO,o.SnowboardingIcon=vO,o.SnowmobileIcon=CO,o.SnowshoeingIcon=KO,o.SoapIcon=SO,o.SocialDistanceIcon=BO,o.SolarPowerIcon=EO,o.SortByAlphaIcon=PO,o.SortIcon=FO,o.SosIcon=DO,o.SoupKitchenIcon=NO,o.SourceIcon=TO,o.SouthAmericaIcon=OO,o.SouthEastIcon=LO,o.SouthIcon=MO,o.SouthWestIcon=QO,o.SpaIcon=VO,o.SpaceBarIcon=WO,o.SpaceDashboardIcon=GO,o.SpatialAudioIcon=zO,o.SpatialAudioOffIcon=HO,o.SpatialTrackingIcon=UO,o.SpeakerGroupIcon=jO,o.SpeakerIcon=YO,o.SpeakerNotesIcon=$O,o.SpeakerNotesOffIcon=qO,o.SpeakerPhoneIcon=JO,o.SpeedIcon=ZO,o.SpellcheckIcon=XO,o.Spinner=bU,o.SplitscreenIcon=xO,o.SpokeIcon=RO,o.SportsBarIcon=nL,o.SportsBaseballIcon=oL,o.SportsBasketballIcon=rL,o.SportsCricketIcon=tL,o.SportsEsportsIcon=cL,o.SportsFootballIcon=iL,o.SportsGolfIcon=aL,o.SportsGymnasticsIcon=lL,o.SportsHandballIcon=sL,o.SportsHockeyIcon=dL,o.SportsIcon=eL,o.SportsKabaddiIcon=uL,o.SportsMartialArtsIcon=fL,o.SportsMmaIcon=AL,o.SportsMotorsportsIcon=yL,o.SportsRugbyIcon=gL,o.SportsScoreIcon=_L,o.SportsSoccerIcon=hL,o.SportsTennisIcon=IL,o.SportsVolleyballIcon=bL,o.SquareFootIcon=wL,o.SquareIcon=pL,o.SsidChartIcon=kL,o.StackedBarChartIcon=mL,o.StackedLineChartIcon=vL,o.StadiumIcon=CL,o.StairsIcon=KL,o.StarBorderIcon=Br,o.StarBorderPurple500Icon=SL,o.StarHalfIcon=BL,o.StarIcon=Sr,o.StarOutlineIcon=EL,o.StarPurple500Icon=FL,o.StarRateIcon=PL,o.StarsIcon=DL,o.StartIcon=NL,o.StayCurrentLandscapeIcon=TL,o.StayCurrentPortraitIcon=ML,o.StayPrimaryLandscapeIcon=OL,o.StayPrimaryPortraitIcon=LL,o.StickyNote2Icon=QL,o.StopCircleIcon=WL,o.StopIcon=VL,o.StopScreenShareIcon=GL,o.StorageIcon=zL,o.StorageThumbnail=ai,o.StorageThumbnailInternal=si,o.StorageUploadFieldBinding=Ct,o.StoreIcon=HL,o.StoreMallDirectoryIcon=UL,o.StorefrontIcon=YL,o.StormIcon=jL,o.StraightIcon=$L,o.StraightenIcon=qL,o.StreamIcon=JL,o.StreetviewIcon=ZL,o.StrikethroughSIcon=XL,o.StringPropertyPreview=$r,o.StrollerIcon=xL,o.StyleIcon=RL,o.SubdirectoryArrowLeftIcon=e4,o.SubdirectoryArrowRightIcon=n4,o.SubjectIcon=Tc,o.SubscriptIcon=o4,o.SubscriptionsIcon=r4,o.SubtitlesIcon=t4,o.SubtitlesOffIcon=c4,o.SubwayIcon=i4,o.SummarizeIcon=a4,o.SuperscriptIcon=l4,o.SupervisedUserCircleIcon=s4,o.SupervisorAccountIcon=d4,o.SupportAgentIcon=f4,o.SupportIcon=u4,o.SurfingIcon=A4,o.SurroundSoundIcon=y4,o.SwapCallsIcon=g4,o.SwapHorizIcon=_4,o.SwapHorizontalCircleIcon=h4,o.SwapVertIcon=I4,o.SwapVerticalCircleIcon=b4,o.SwipeDownAltIcon=k4,o.SwipeDownIcon=w4,o.SwipeIcon=p4,o.SwipeLeftAltIcon=v4,o.SwipeLeftIcon=m4,o.SwipeRightAltIcon=K4,o.SwipeRightIcon=C4,o.SwipeUpAltIcon=B4,o.SwipeUpIcon=S4,o.SwipeVerticalIcon=E4,o.SwitchAccessShortcutAddIcon=P4,o.SwitchAccessShortcutIcon=F4,o.SwitchAccountIcon=D4,o.SwitchCameraIcon=N4,o.SwitchControl=k3,o.SwitchFieldBinding=sa,o.SwitchLeftIcon=T4,o.SwitchRightIcon=M4,o.SwitchVideoIcon=O4,o.SynagogueIcon=L4,o.SyncAltIcon=V4,o.SyncDisabledIcon=W4,o.SyncIcon=Q4,o.SyncLockIcon=G4,o.SyncProblemIcon=z4,o.SystemSecurityUpdateGoodIcon=U4,o.SystemSecurityUpdateIcon=H4,o.SystemSecurityUpdateWarningIcon=Y4,o.SystemUpdateAltIcon=$4,o.SystemUpdateIcon=j4,o.Tab=rr,o.TabIcon=q4,o.TabUnselectedIcon=J4,o.Table=pU,o.TableBarIcon=Z4,o.TableBody=wU,o.TableCell=vU,o.TableChartIcon=X4,o.TableHeader=kU,o.TableRestaurantIcon=x4,o.TableRow=mU,o.TableRowsIcon=R4,o.TableViewIcon=eQ,o.TabletAndroidIcon=oQ,o.TabletIcon=nQ,o.TabletMacIcon=rQ,o.Tabs=Oa,o.TagFacesIcon=cQ,o.TagIcon=tQ,o.TakeoutDiningIcon=iQ,o.TapAndPlayIcon=aQ,o.TapasIcon=lQ,o.TaskAltIcon=dQ,o.TaskIcon=sQ,o.TaxiAlertIcon=uQ,o.TempleBuddhistIcon=fQ,o.TempleHinduIcon=AQ,o.TerminalIcon=yQ,o.TerrainIcon=gQ,o.TextDecreaseIcon=_Q,o.TextField=tn,o.TextFieldBinding=Hn,o.TextFieldsIcon=hQ,o.TextFormatIcon=IQ,o.TextIncreaseIcon=bQ,o.TextRotateUpIcon=pQ,o.TextRotateVerticalIcon=wQ,o.TextRotationAngledownIcon=kQ,o.TextRotationAngleupIcon=mQ,o.TextRotationDownIcon=vQ,o.TextRotationNoneIcon=CQ,o.TextSnippetIcon=KQ,o.TextareaAutosize=et,o.TextsmsIcon=SQ,o.TextureIcon=BQ,o.TheaterComedyIcon=EQ,o.TheatersIcon=FQ,o.ThermostatAutoIcon=DQ,o.ThermostatIcon=PQ,o.ThumbDownAltIcon=TQ,o.ThumbDownIcon=NQ,o.ThumbDownOffAltIcon=MQ,o.ThumbUpAltIcon=LQ,o.ThumbUpIcon=OQ,o.ThumbUpOffAltIcon=QQ,o.ThumbsUpDownIcon=VQ,o.ThunderstormIcon=WQ,o.TimeToLeaveIcon=GQ,o.TimelapseIcon=zQ,o.TimelineIcon=HQ,o.Timer10Icon=YQ,o.Timer10SelectIcon=jQ,o.Timer3Icon=$Q,o.Timer3SelectIcon=qQ,o.TimerIcon=UQ,o.TimerOffIcon=JQ,o.TipsAndUpdatesIcon=ZQ,o.TireRepairIcon=XQ,o.TitleIcon=xQ,o.TocIcon=RQ,o.TodayIcon=eV,o.ToggleOffIcon=nV,o.ToggleOnIcon=oV,o.TokenIcon=rV,o.TollIcon=tV,o.TonalityIcon=cV,o.Tooltip=ye,o.TopicIcon=iV,o.TornadoIcon=aV,o.TouchAppIcon=lV,o.TourIcon=sV,o.ToysIcon=dV,o.TrackChangesIcon=uV,o.TrafficIcon=fV,o.TrainIcon=AV,o.TramIcon=yV,o.TranscribeIcon=gV,o.TransferWithinAStationIcon=_V,o.TransformIcon=hV,o.TransgenderIcon=IV,o.TransitEnterexitIcon=bV,o.TranslateIcon=pV,o.TravelExploreIcon=wV,o.TrendingDownIcon=kV,o.TrendingFlatIcon=mV,o.TrendingUpIcon=vV,o.TripOriginIcon=CV,o.TroubleshootIcon=KV,o.TryIcon=SV,o.TsunamiIcon=BV,o.TtyIcon=EV,o.TuneIcon=FV,o.TungstenIcon=PV,o.TurnLeftIcon=DV,o.TurnRightIcon=NV,o.TurnSharpLeftIcon=TV,o.TurnSharpRightIcon=MV,o.TurnSlightLeftIcon=OV,o.TurnSlightRightIcon=LV,o.TurnedInIcon=QV,o.TurnedInNotIcon=VV,o.TvIcon=WV,o.TvOffIcon=GV,o.TwoWheelerIcon=zV,o.TypeSpecimenIcon=HV,o.Typography=Z,o.UTurnLeftIcon=UV,o.UTurnRightIcon=YV,o.UmbrellaIcon=jV,o.UnarchiveIcon=$V,o.UndoIcon=qV,o.UnfoldLessDoubleIcon=ZV,o.UnfoldLessIcon=JV,o.UnfoldMoreDoubleIcon=xV,o.UnfoldMoreIcon=XV,o.UnpublishedIcon=RV,o.UnsubscribeIcon=eW,o.UpcomingIcon=nW,o.UpdateDisabledIcon=rW,o.UpdateIcon=oW,o.UpgradeIcon=tW,o.UploadFileIcon=Mc,o.UploadIcon=cW,o.UrlComponentPreview=co,o.UsbIcon=iW,o.UsbOffIcon=aW,o.VaccinesIcon=lW,o.VapeFreeIcon=sW,o.VapingRoomsIcon=dW,o.VerifiedIcon=uW,o.VerifiedUserIcon=fW,o.VerticalAlignBottomIcon=AW,o.VerticalAlignCenterIcon=yW,o.VerticalAlignTopIcon=gW,o.VerticalDistributeIcon=_W,o.VerticalShadesClosedIcon=IW,o.VerticalShadesIcon=hW,o.VerticalSplitIcon=bW,o.VibrationIcon=pW,o.VideoCallIcon=wW,o.VideoCameraBackIcon=kW,o.VideoCameraFrontIcon=mW,o.VideoChatIcon=vW,o.VideoFileIcon=CW,o.VideoLabelIcon=KW,o.VideoLibraryIcon=SW,o.VideoSettingsIcon=BW,o.VideoStableIcon=EW,o.VideocamIcon=FW,o.VideocamOffIcon=PW,o.VideogameAssetIcon=DW,o.VideogameAssetOffIcon=NW,o.ViewAgendaIcon=TW,o.ViewArrayIcon=MW,o.ViewCarouselIcon=OW,o.ViewColumnIcon=LW,o.ViewComfyAltIcon=VW,o.ViewComfyIcon=QW,o.ViewCompactAltIcon=GW,o.ViewCompactIcon=WW,o.ViewCozyIcon=zW,o.ViewDayIcon=HW,o.ViewHeadlineIcon=UW,o.ViewInArIcon=YW,o.ViewKanbanIcon=jW,o.ViewListIcon=$W,o.ViewModuleIcon=qW,o.ViewQuiltIcon=JW,o.ViewSidebarIcon=ZW,o.ViewStreamIcon=Oc,o.ViewTimelineIcon=XW,o.ViewWeekIcon=xW,o.VignetteIcon=RW,o.VillaIcon=eG,o.VirtualTable=Pi,o.VisibilityIcon=nG,o.VisibilityOffIcon=oG,o.VoiceChatIcon=rG,o.VoiceOverOffIcon=tG,o.VoicemailIcon=cG,o.VolcanoIcon=iG,o.VolumeDownIcon=aG,o.VolumeMuteIcon=lG,o.VolumeOffIcon=sG,o.VolumeUpIcon=dG,o.VolunteerActivismIcon=uG,o.VpnKeyIcon=fG,o.VpnKeyOffIcon=AG,o.VpnLockIcon=yG,o.VrpanoIcon=gG,o.WalletIcon=_G,o.WallpaperIcon=hG,o.WarehouseIcon=IG,o.WarningAmberIcon=pG,o.WarningIcon=bG,o.WashIcon=wG,o.WatchIcon=kG,o.WatchLaterIcon=mG,o.WatchOffIcon=vG,o.WaterDamageIcon=KG,o.WaterDropIcon=SG,o.WaterIcon=CG,o.WaterfallChartIcon=BG,o.WavesIcon=EG,o.WavingHandIcon=FG,o.WbAutoIcon=PG,o.WbCloudyIcon=DG,o.WbIncandescentIcon=NG,o.WbIridescentIcon=TG,o.WbShadeIcon=MG,o.WbSunnyIcon=OG,o.WbTwilightIcon=LG,o.WcIcon=QG,o.WebAssetIcon=WG,o.WebAssetOffIcon=GG,o.WebIcon=VG,o.WebStoriesIcon=zG,o.WebhookIcon=HG,o.WeekendIcon=UG,o.WestIcon=YG,o.WhatshotIcon=jG,o.WheelchairPickupIcon=$G,o.WhereToVoteIcon=qG,o.WidgetsIcon=JG,o.WidthFullIcon=ZG,o.WidthNormalIcon=XG,o.WidthWideIcon=xG,o.Wifi1BarIcon=e5,o.Wifi2BarIcon=n5,o.WifiCalling3Icon=r5,o.WifiCallingIcon=o5,o.WifiChannelIcon=t5,o.WifiFindIcon=c5,o.WifiIcon=RG,o.WifiLockIcon=i5,o.WifiOffIcon=a5,o.WifiPasswordIcon=l5,o.WifiProtectedSetupIcon=s5,o.WifiTetheringErrorIcon=u5,o.WifiTetheringIcon=d5,o.WifiTetheringOffIcon=f5,o.WindPowerIcon=A5,o.WindowIcon=y5,o.WineBarIcon=g5,o.Woman2Icon=h5,o.WomanIcon=_5,o.WorkHistoryIcon=b5,o.WorkIcon=I5,o.WorkOffIcon=p5,o.WorkOutlineIcon=w5,o.WorkspacePremiumIcon=k5,o.WorkspacesIcon=m5,o.WrapTextIcon=v5,o.WrongLocationIcon=C5,o.WysiwygIcon=K5,o.YardIcon=S5,o.YoutubeSearchedForIcon=B5,o.ZoomInIcon=E5,o.ZoomInMapIcon=F5,o.ZoomOutIcon=P5,o.ZoomOutMapIcon=D5,o._10kIcon=Il,o._10mpIcon=bl,o._11mpIcon=pl,o._123Icon=_l,o._12mpIcon=wl,o._13mpIcon=kl,o._14mpIcon=ml,o._15mpIcon=vl,o._16mpIcon=Cl,o._17mpIcon=Kl,o._18UpRatingIcon=Sl,o._18mpIcon=Bl,o._19mpIcon=El,o._1kIcon=Fl,o._1kPlusIcon=Pl,o._1xMobiledataIcon=Dl,o._20mpIcon=Nl,o._21mpIcon=Tl,o._22mpIcon=Ml,o._23mpIcon=Ol,o._24mpIcon=Ll,o._2kIcon=Ql,o._2kPlusIcon=Vl,o._2mpIcon=Wl,o._30fpsIcon=Gl,o._30fpsSelectIcon=zl,o._360Icon=hl,o._3dRotationIcon=Hl,o._3gMobiledataIcon=Ul,o._3kIcon=Yl,o._3kPlusIcon=jl,o._3mpIcon=$l,o._3pIcon=ql,o._4gMobiledataIcon=Jl,o._4gPlusMobiledataIcon=Zl,o._4kIcon=Xl,o._4kPlusIcon=xl,o._4mpIcon=Rl,o._5gIcon=es,o._5kIcon=ns,o._5kPlusIcon=os,o._5mpIcon=rs,o._60fpsIcon=ts,o._60fpsSelectIcon=cs,o._6FtApartIcon=is,o._6kIcon=as,o._6kPlusIcon=ls,o._6mpIcon=ss,o._7kIcon=ds,o._7kPlusIcon=us,o._7mpIcon=fs,o._8kIcon=As,o._8kPlusIcon=ys,o._8mpIcon=gs,o._9kIcon=_s,o._9kPlusIcon=hs,o._9mpIcon=Is,o.addInitialSlash=oz,o.buildAdditionalFieldDelegate=cU,o.buildCollection=x3,o.buildEntityCallbacks=tU,o.buildEnumLabel=Zc,o.buildEnumValueConfig=rU,o.buildEnumValues=oU,o.buildFieldConfig=iU,o.buildProperties=eU,o.buildPropertiesOrBuilder=nU,o.buildProperty=R3,o.canCreateEntity=Un,o.canDeleteEntity=xo,o.canEditEntity=Qt,o.cardClickableMixin=nc,o.cardMixin=ec,o.cardSelectedMixin=cl,o.cn=F,o.coolIconKeys=_r,o.debounce=pi,o.defaultBorderMixin=fe,o.defaultDateFormat=qc,o.deleteEntityWithCallbacks=Da,o.enumToObjectEntries=yn,o.fieldBackgroundDisabledMixin=nn,o.fieldBackgroundHoverMixin=Ye,o.fieldBackgroundInvisibleMixin=ur,o.fieldBackgroundMixin=Xe,o.flattenObject=Vt,o.focusedClasses=dr,o.focusedInvisibleMixin=sr,o.focusedMixin=Ie,o.fullPathToCollectionSegments=ze,o.getArrayValuesCount=Ca,o.getBracketNotation=q3,o.getCollectionByPathOrAlias=Oo,o.getCollectionPathsCombinations=Lo,o.getColorForProperty=$3,o.getColorScheme=Jc,o.getDefaultFieldId=Pt,o.getDefaultPropertiesOrder=J3,o.getDefaultValueFor=Po,o.getDefaultValueForDataType=Tr,o.getDefaultValuesFor=to,o.getFieldConfig=Zo,o.getFieldId=Dt,o.getHashValue=Vr,o.getIcon=ma,o.getIconForProperty=ve,o.getIconForView=Ro,o.getIconForWidget=Ot,o.getIdIcon=j3,o.getLabelOrConfigFrom=To,o.getLastSegment=rz,o.getPropertiesWithPropertiesOrder=ka,o.getPropertyInPath=Bn,o.getRandomId=so,o.getReferenceFrom=Cn,o.getReferencePreviewKeys=va,o.getResolvedPropertyInPath=Lt,o.getValueInPath=gn,o.hydrateRegExp=ni,o.iconKeys=tc,o.isDefaultFieldConfigId=pa,o.isEmptyObject=Gr,o.isEnumValueDisabled=X5,o.isHidden=ro,o.isObject=Mo,o.isPropertyBuilder=Ee,o.isReadOnly=On,o.isReferenceProperty=wa,o.isValidRegExp=ez,o.joinCollectionLists=Ba,o.makePropertiesEditable=Ka,o.makePropertiesNonEditable=Sa,o.mergeCollection=Ea,o.mergeDeep=Ge,o.paperMixin=je,o.pick=Xc,o.plural=Z3,o.randomColor=Z5,o.randomString=Ln,o.removeFunctions=Qr,o.removeInPath=x5,o.removeInitialAndTrailingSlashes=we,o.removeInitialSlash=oi,o.removePropsIfExisting=xc,o.removeTrailingSlash=ri,o.removeUndefined=Wr,o.renderSkeletonCaptionText=Iz,o.renderSkeletonIcon=jr,o.renderSkeletonImageThumbnail=Yr,o.renderSkeletonText=on,o.resolveArrayProperty=In,o.resolveCollection=Te,o.resolveCollectionPathAliases=Hr,o.resolveDefaultSelectedView=Lr,o.resolveEntityView=Mt,o.resolveEnumValues=Y3,o.resolveNavigationFrom=Na,o.resolvePermissions=uo,o.resolveProperties=Nt,o.resolveProperty=Me,o.resolvePropertyEnum=Tt,o.sanitizeData=Y5,o.saveEntityWithCallbacks=Gt,o.segmentsToStrippedPath=ei,o.serializeRegExp=R5,o.singular=X3,o.slugify=No,o.sortProperties=Or,o.stripCollectionPath=zr,o.toKebabCase=$5,o.toSnakeCase=J5,o.traverseValueProperty=Do,o.traverseValuesProperties=Mr,o.unslugify=nz,o.updateDateAutoValues=$c,o.useAuthController=un,o.useAutoComplete=il,o.useBreadcrumbsContext=Ht,o.useBrowserTitleAndIcon=dU,o.useBuildLocalConfigurationPersistence=u3,o.useBuildModeController=d3,o.useClearRestoreValue=Le,o.useClipboard=Ta,o.useCollectionFetch=jc,o.useDataSource=We,o.useDebounce=Qo,o.useDebounceValue=tz,o.useEntityCollectionTableController=dt,o.useEntityFetch=Nr,o.useFireCMSContext=ee,o.useInjectStyles=vn,o.useLargeLayout=He,o.useModeController=zt,o.useNavigationController=Ae,o.useOutsideAlerter=ko,o.useReferenceDialog=fo,o.useResolvedNavigationFrom=aU,o.useSelectionController=ft,o.useSideDialogContext=Uo,o.useSideDialogsController=no,o.useSideEntityController=fn,o.useSnackbarController=An,o.useStorageSource=Tn,Object.defineProperty(o,Symbol.toStringTag,{value:"Module"})});
588
+ `;function dl({propertyKey:e,value:t,error:n,showError:o,isSubmitting:l,setValue:i,tableMode:s,property:a,includeDescription:d,underlyingValueHasChanged:A,context:g,disabled:p}){if(X(),!Array.isArray(a.resolvedProperties))throw Error("ArrayCustomShapedFieldBinding misconfiguration. Property `of` not set");const h=a.expanded===void 0?!0:a.expanded;xe({property:a,value:t,setValue:i});const u=r.jsx(be,{icon:pe(a,"small"),required:a.validation?.required,className:"text-text-secondary dark:text-text-secondary-dark",title:a.name}),m=a.resolvedProperties.map((b,y)=>{const w={propertyKey:`${e}[${y}]`,disabled:p,property:b,includeDescription:d,underlyingValueHasChanged:A,context:g,tableMode:!1,partOfArray:!0,partOfBlock:!1,autoFocus:!1};return r.jsx("div",{className:"pb-4",children:r.jsx(nt,{...w})},`custom_shaped_array_${y}`)});return r.jsxs(r.Fragment,{children:[!s&&r.jsx(f.ExpandablePanel,{initiallyExpanded:h,title:u,className:"px-2 md:px-4 pb-2 md:pb-4 pt-1 md:pt-2",children:m}),s&&m,r.jsx(ye,{includeDescription:d,showError:o,error:n,disabled:p,property:a})]})}const ua=({containerRef:e})=>{const{isSubmitting:t,isValidating:n,errors:o}=Ce.useFormikContext();return c.useEffect(()=>{const l=Object.keys(o);if(l.length>0&&t&&!n){const i=e?.current?.querySelector(`#form_field_${l[0]}`);if(i&&e?.current){const s=Al(e.current);if(s){const d=i.getBoundingClientRect().top;s.scrollTo({top:s.scrollTop+d-64,behavior:"smooth"})}const a=i.querySelector("input");a&&a.focus()}}},[t,n,o,e]),null},ga=e=>{const t=e&&e.scrollHeight>e.clientHeight,n=e?window.getComputedStyle(e).overflowY:null,o=n&&n.indexOf("hidden")!==-1;return t&&!o},Al=e=>!e||e===document.body?document.body:ga(e)?e:Al(e.parentNode);function ha({customId:e,entityId:t,status:n,onChange:o,error:l,entity:i}){const s=n==="existing"||!e,a=n!=="existing"&&!e,d=c.useMemo(()=>{if(!(!e||typeof e=="boolean"||e==="optional"))return $e(e)},[e]),A=je(),{copy:g}=ao({onSuccess:u=>A.open({type:"success",message:`Copied ${u}`})}),p=X(),h={label:a?"ID is set automatically":"ID",disabled:s,name:"id",value:(i&&n==="existing"?i.id:t)??"",endAdornment:i?r.jsxs(r.Fragment,{children:[r.jsx(f.Tooltip,{title:"Copy",children:r.jsx(f.IconButton,{onClick:u=>g(i.id),"aria-label":"copy-id",children:r.jsx(f.ContentCopyIcon,{size:"small"})})}),p?.entityLinkBuilder&&r.jsx(f.Tooltip,{title:"Open in the console",children:r.jsx(f.IconButton,{component:"a",href:p.entityLinkBuilder({entity:i}),rel:"noopener noreferrer",target:"_blank",onClick:u=>u.stopPropagation(),"aria-label":"go-to-datasource",children:r.jsx(f.OpenInNewIcon,{size:"small"})})})]}):void 0};return r.jsxs(r.Fragment,{children:[d&&r.jsx(f.Select,{error:l,onValueChange:u=>o(u),...h,renderValue:u=>{const m=d.find(b=>b.id===u);return m?`${m.id} - ${m.label}`:u},children:d.map(u=>r.jsx(f.SelectItem,{value:String(u.id),children:r.jsx(we,{enumKey:u.id,enumValues:d,size:"medium"})},u.id))}),!d&&r.jsx(f.TextField,{...h,error:l,placeholder:e==="optional"?"Autogenerated ID, it can be manually changed":n==="new"||n==="copy"?"ID of the new document":"ID of the document",onChange:u=>{let m=u.target.value;return m&&(m=m.trim()),o(m.length?m:void 0)}}),r.jsx(Ce.ErrorMessage,{name:"id",component:"div",children:u=>"You need to specify an ID"})]})}const fl=c.memo(pa,(e,t)=>e.status===t.status&&e.path===t.path&&oe(e.entity?.values,t.entity?.values));function pa({status:e,path:t,collection:n,entity:o,onEntitySaveRequested:l,onDiscard:i,onModified:s,onValuesChanged:a,onIdChange:d,onFormContextChange:A,hideId:g,autoSave:p,onIdUpdateError:h}){const u=X(),m=Te(),b=u.plugins,y=c.useMemo(()=>Be({collection:n,path:t,values:o?.values,fields:u.propertyConfigs}),[o?.values,t]),w=(e==="new"||e==="copy")&&!!y.customId&&y.customId!=="optional",C=c.useMemo(()=>e==="new"||e==="copy"?w?void 0:m.generateEntityId(t):o?.id,[]),E=c.useRef(!1),k=c.useMemo(()=>{const M=y.properties;if((e==="existing"||e==="copy")&&o)return o.values??wt(M);if(e==="new")return wt(M);throw console.error({status:e,entity:o}),new Error("Form has not been initialised with the correct parameters")},[e,y,o]),[S,x]=c.useState(C),[B,N]=c.useState(!1),[I,T]=c.useState(),F=c.useRef(o?.values??k),Q=F.current,[Y,J]=c.useState(Q),_=M=>{J(M),a&&a(M),p&&M&&!oe(M,Q)&&V(M)};c.useEffect(()=>{S&&d&&d(S)},[S,d]);const j=Be({collection:n,path:t,entityId:S,values:Y,previousValues:Q,fields:u.propertyConfigs}),te=j.callbacks?.onIdUpdate;c.useEffect(()=>{if(te&&Y&&(e==="new"||e==="copy"))try{const M=te({collection:j,path:t,entityId:S,values:Y,context:u});x(M)}catch(M){h&&h(M),console.error(M)}},[S,Y,e]);const z=c.useMemo(()=>Q&&e==="existing"?Object.entries(j.properties).map(([M,$])=>{if(vt($))return{};const K=Q[M],L=k[M];return oe(K,L)?{}:{[M]:L}}).reduce((M,$)=>({...M,...$}),{}):{},[k,j.properties,Q,e]),V=M=>l({collection:j,path:t,entityId:S,values:M,previousValues:o?.values,closeAfterSave:E.current,autoSave:p??!1}).then($=>{const K=e==="new"?"new_entity_saved":e==="copy"?"entity_copied":e==="existing"?"entity_edited":"unmapped_event";u.onAnalyticsEvent?.(K,{path:t}),F.current=M}).catch($=>{console.error($),T($)}).finally(()=>{E.current=!1}),re=(M,$)=>{if(w&&!S){console.error("Missing custom Id"),N(!0),$.setSubmitting(!1);return}if(T(void 0),N(!1),e==="existing"){if(!o?.id)throw Error("Form misconfiguration when saving, no id for existing entity")}else if(e==="new"||e==="copy"){if(j.customId&&j.customId!=="optional"&&!S)throw Error("Form misconfiguration when saving, entityId should be set")}else throw Error("New FormType added, check EntityForm");V(M)?.then(K=>{$.resetForm({values:M,submitCount:0,touched:{}})}).finally(()=>{$.setSubmitting(!1)})},W=c.useCallback(({name:M,value:$,property:K})=>m.checkUniqueField(t,M,$,S),[m,t,S]),q=c.useMemo(()=>S?Po(S,j.properties,W):void 0,[S,j.properties,W]),se=_e(),U=c.useCallback(({entity:M,customEntityActions:$})=>{const K=at(j,se,Ne(t),null),L=M?Ht(j,se,Ne(t),M):!0,P=[];return K&&P.push(_o),L&&P.push(Wo),$&&P.push(...$),P},[se,j,t]);return r.jsx(Ce.Formik,{initialValues:k,onSubmit:re,validationSchema:q,validate:M=>console.debug("Validating",M),onReset:()=>i&&i(),children:M=>{const $=[],K={setFieldValue:M.setFieldValue,values:M.values,collection:Be({collection:j,path:t,fields:u.propertyConfigs}),entityId:S,path:t,save:V};if(c.useEffect(()=>{A&&A(K)},[A,K]),b&&j){const L={entityId:S,path:t,status:e,collection:n,context:u,currentEntityId:S,formContext:K};$.push(...b.map((P,D)=>P.form?.Actions?r.jsx(P.form.Actions,{...L},`actions_${P.name}`):null).filter(Boolean))}return r.jsxs("div",{className:"h-full overflow-auto",children:[$.length>0&&r.jsx("div",{className:f.cn("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:$}),r.jsxs("div",{className:"pl-4 pr-4 pt-12 pb-16 md:pl-8",children:[r.jsx("div",{className:`w-full py-2 flex items-center mt-${4+($?8:0)} lg:mt-${8+($?8:0)} mb-8`,children:r.jsx(f.Typography,{className:"mt-4 flex-grow "+j.hideIdFromForm?"mb-2":"mb-0",variant:"h4",children:j.singularName??j.name})}),!g&&r.jsx(ha,{customId:j.customId,entityId:S,status:e,onChange:x,error:B,entity:o}),S&&r.jsx(ma,{...M,initialValues:Q,onModified:s,onValuesChanged:_,underlyingChanges:z,entity:o,resolvedCollection:j,formContext:K,status:e,savingError:I,closeAfterSaveRef:E,autoSave:p,entityActions:U({entity:o,customEntityActions:j.entityActions})})]})]})}})}function ma(e){const{values:t,onModified:n,onValuesChanged:o,underlyingChanges:l,formContext:i,entity:s,touched:a,setFieldValue:d,resolvedCollection:A,isSubmitting:g,status:p,handleSubmit:h,savingError:u,dirty:m,closeAfterSaveRef:b,autoSave:y,entityActions:w}=e,C=X(),E=w.filter(I=>I.includeInForm===void 0||I.includeInForm),k=We(),S=m;c.useEffect(()=>{n&&n(S),o&&o(t)},[S,t]),c.useEffect(()=>{!y&&l&&s&&Object.entries(l).forEach(([I,T])=>{const F=t[I];!oe(T,F)&&!a[I]&&(console.debug("Updated value from the datasource:",I,T),d(I,T!==void 0?T:null))})},[y,l,s,t,a,d]);const x=r.jsx("div",{className:"flex flex-col gap-8",children:(A.propertiesOrder??Object.keys(A.properties)).map(I=>{const T=A.properties[I];if(!T)return console.warn(`Property ${I} not found in collection ${A.name}`),null;const F=!!l&&Object.keys(l).includes(I)&&!!a[I],Q=!y&&g||it(T)||!!T.disabled;if(vt(T))return null;const J={propertyKey:I,disabled:Q,property:T,includeDescription:T.description||T.longDescription,underlyingValueHasChanged:F&&!y,context:i,tableMode:!1,partOfArray:!1,partOfBlock:!1,autoFocus:!1};return r.jsx("div",{id:`form_field_${I}`,children:r.jsx(ne,{children:r.jsx(nt,{...J})})},`field_${A.name}_${I}`)}).filter(Boolean)}),B=g||!S&&p==="existing",N=c.useRef(null);return r.jsxs(Ce.Form,{onSubmit:h,noValidate:!0,children:[r.jsxs("div",{className:"mt-12",ref:N,children:[x,r.jsx(ua,{containerRef:N})]}),r.jsx("div",{className:"h-14"}),!y&&r.jsxs(f.DialogActions,{position:"absolute",children:[u&&r.jsx("div",{className:"text-right",children:r.jsx(f.Typography,{color:"error",children:u.message})}),s&&E.length>0&&r.jsx("div",{className:"flex-grow flex overflow-auto no-scrollbar",children:E.map(I=>r.jsx(f.IconButton,{color:"primary",onClick:T=>{T.stopPropagation(),s&&I.onClick({entity:s,fullPath:A.path,collection:A,context:C,sideEntityController:k})},children:I.icon},I.name))}),r.jsx(f.Button,{variant:"text",disabled:B,type:"reset",children:p==="existing"?"Discard":"Clear"}),r.jsxs(f.Button,{variant:"text",color:"primary",type:"submit",disabled:B,onClick:()=>{b.current=!1},children:[p==="existing"&&"Save",p==="copy"&&"Create copy",p==="new"&&"Create"]}),r.jsxs(f.Button,{variant:"filled",color:"primary",type:"submit",disabled:B,onClick:()=>{b.current=!0},children:[p==="existing"&&"Save and close",p==="copy"&&"Create copy and close",p==="new"&&"Create and close"]})]})]})}function ul(e){return Object.keys(An).includes(e)}const An={text_field:{key:"text_field",name:"Text field",description:"Simple short text",Icon:f.ShortTextIcon,color:"#2d7ff9",property:{dataType:"string",Field:pt}},multiline:{key:"multiline",name:"Multiline",description:"Text with multiple lines",Icon:f.SubjectIcon,color:"#2d7ff9",property:{dataType:"string",multiline:!0,Field:pt}},markdown:{key:"markdown",name:"Markdown",description:"Text with advanced markdown syntax",Icon:f.FormatQuoteIcon,color:"#2d7ff9",property:{dataType:"string",markdown:!0,Field:cl}},url:{key:"url",name:"Url",description:"Text with URL validation",Icon:f.HttpIcon,color:"#154fb3",property:{dataType:"string",url:!0,Field:pt}},email:{key:"email",name:"Email",description:"Text with email validation",Icon:f.EmailIcon,color:"#154fb3",property:{dataType:"string",email:!0,Field:pt}},select:{key:"select",name:"Select/enum",description:"Select one text value from within an enumeration",Icon:f.ListIcon,color:"#4223c9",property:{dataType:"string",enumValues:[],Field:nn}},multi_select:{key:"multi_select",name:"Multi select",description:"Select multiple text values from within an enumeration",Icon:f.ListAltIcon,color:"#4223c9",property:{dataType:"array",of:{dataType:"string",enumValues:[]},Field:on}},number_input:{key:"number_input",name:"Number input",description:"Simple number field with validation",Icon:f.NumbersIcon,color:"#bec920",property:{dataType:"number",Field:pt}},number_select:{key:"number_select",name:"Number select",description:"Select a number value from within an enumeration",Icon:f.FormatListNumberedIcon,color:"#bec920",property:{dataType:"number",enumValues:[],Field:nn}},multi_number_select:{key:"multi_number_select",name:"Multiple number select",description:"Select multiple number values from within an enumeration",Icon:f.FormatListNumberedIcon,color:"#bec920",property:{dataType:"array",of:{dataType:"number",enumValues:[]},Field:on}},file_upload:{key:"file_upload",name:"File upload",description:"Input for uploading single files",Icon:f.UploadFileIcon,color:"#f92d9a",property:{dataType:"string",storage:{storagePath:"{path}"},Field:ln}},multi_file_upload:{key:"multi_file_upload",name:"Multiple file upload",description:"Input for uploading multiple files",Icon:f.DriveFolderUploadIcon,color:"#f92d9a",property:{dataType:"array",of:{dataType:"string",storage:{storagePath:"{path}"}},Field:ln}},reference:{key:"reference",name:"Reference",description:"The value refers to a different collection",Icon:f.LinkIcon,color:"#ff0042",property:{dataType:"reference",Field:ol}},multi_references:{key:"multi_references",name:"Multiple references",description:"Multiple values that refer to a different collection",Icon:f.AddLinkIcon,color:"#ff0042",property:{dataType:"array",of:{dataType:"reference"},Field:el}},switch:{key:"switch",name:"Switch",description:"Boolean true or false field (or yes or no, 0 or 1...)",Icon:f.FlagIcon,color:"#20d9d2",property:{dataType:"boolean",Field:rl}},date_time:{key:"date_time",name:"Date/time",description:"A date time select field",Icon:f.ScheduleIcon,color:"#8b46ff",property:{dataType:"date",Field:nl}},group:{key:"group",name:"Group",description:"Group of multiple fields",Icon:f.BallotIcon,color:"#ff9408",property:{dataType:"map",properties:{},Field:ll}},key_value:{key:"key_value",name:"Key-value",description:"Flexible field that allows the user to add multiple key-value pairs",Icon:f.BallotIcon,color:"#ff9408",property:{dataType:"map",keyValue:!0,Field:il}},repeat:{key:"repeat",name:"Repeat/list",description:"A field that gets repeated multiple times (e.g. multiple text fields)",Icon:f.RepeatIcon,color:"#ff9408",property:{dataType:"array",of:{dataType:"string"},Field:sl}},custom_array:{key:"custom_array",name:"Custom array",description:"A field that saved its value as an array of custom objects",Icon:f.RepeatIcon,color:"#ff9408",property:{dataType:"array",of:[],Field:dl}},block:{key:"block",name:"Block",description:"A complex field that allows the user to compose different fields together, with a key->value format",Icon:f.ViewStreamIcon,color:"#ff9408",property:{dataType:"array",oneOf:{properties:{}},Field:al}}};function tr(e,t){const n=un(e),o=fn(e);if(!o){console.error("No field id found for property",e);return}const l=An[o],i=n?t[n]:void 0;return Fe(l??{},i??{})}function fn(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":ve(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 un(e){return e.propertyConfig?e.propertyConfig:fn(e)}const Be=({collection:e,path:t,entityId:n,values:o,previousValues:l,userConfigPersistence:i,fields:s})=>{const a=i?.getCollectionConfig(t),d=Le(a,"properties"),A=wt(e.properties),g=o??A,p=l??o??A,h=Object.entries(e.properties).map(([b,y])=>{const w=g?Ce.getIn(g,b):void 0;return{[b]:ke({propertyKey:b,propertyOrBuilder:y,values:g,previousValues:p,path:t,propertyValue:w,entityId:n,fields:s})}}).filter(b=>b!==null).reduce((b,y)=>({...b,...y}),{}),u=Fe(h,d),m=Object.entries(u).filter(([b,y])=>!!y?.dataType).map(([b,y])=>({[b]:y})).reduce((b,y)=>({...b,...y}),{});return{...e,properties:m,originalCollection:e}};function ke({propertyOrBuilder:e,propertyValue:t,fromBuilder:n=!1,...o}){if(typeof e=="object"&&"resolved"in e)return e;let l=null;if(e)if(ve(e)){const i=o.path;if(!i)throw Error("Trying to resolve a property builder without specifying the entity path");const s=e({...o,path:i,propertyValue:t,values:o.values??{},previousValues:o.previousValues??o.values??{}});if(!s)return console.debug("Property builder not returning `Property` so it is not rendered",i,o.entityId,e),null;l=ke({...o,propertyValue:t,propertyOrBuilder:s,fromBuilder:!0})}else{const i=e;if(i.dataType==="map"&&i.properties){const s=gn({...o,properties:i.properties,propertyValue:t});l={...i,resolved:!0,fromBuilder:n,properties:s}}else i.dataType==="array"?l=Je({property:i,propertyValue:t,fromBuilder:n,...o}):(i.dataType==="string"||i.dataType==="number")&&i.enumValues&&(l=hn(i,n))}else return null;if(l||(l={...e,resolved:!0,fromBuilder:n}),l.propertyConfig&&!ul(l.propertyConfig)){const i=o.fields;if(!i)throw Error(`Trying to resolve a property with key ${l.propertyConfig} that inherits from a custom property config but no custom property configs were provided. Use the property \`propertyConfigs\` in your app config to provide them`);const s=i[l.propertyConfig];if(!s)return console.warn(`Trying to resolve a property with key ${l.propertyConfig} that inherits from a custom property config but no custom property config with that key was found. Check the \`propertyConfigs\` in your app config`),console.warn("Available property configs",i),null;if(s.property){const a=s.property;"propertyConfig"in a&&delete a.propertyConfig;const d=ke({propertyOrBuilder:a,propertyValue:t,...o});d&&(l=Fe(d,l))}}return l?{...l,resolved:!0}:null}function Je({propertyKey:e,property:t,propertyValue:n,...o}){if(t.of){if(Array.isArray(t.of))return{...t,resolved:!0,fromBuilder:o.fromBuilder,resolvedProperties:t.of.map((l,i)=>ke({propertyKey:`${e}.${i}`,propertyOrBuilder:l,propertyValue:Array.isArray(n)?n[i]:void 0,...o,index:i}))};{const l=t.of,i=Array.isArray(n)?n.map((a,d)=>ke({propertyKey:`${e}.${d}`,propertyOrBuilder:l,propertyValue:a,...o,index:d})).filter(a=>!!a):[],s=ke({propertyKey:`${e}`,propertyOrBuilder:l,propertyValue:void 0,...o});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:o.fromBuilder,of:s,resolvedProperties:i}}}else if(t.oneOf){const l=t.oneOf?.typeField??yt,i=Array.isArray(n)?n.map((a,d)=>{const A=a&&a[l],g=t.oneOf?.properties[A];return!A||!g?null:ke({propertyKey:`${e}.${d}`,propertyOrBuilder:g,propertyValue:n,...o})}).filter(a=>!!a):[],s=gn({properties:t.oneOf.properties,propertyValue:void 0,...o});return{...t,resolved:!0,oneOf:{...t.oneOf,properties:s},fromBuilder:o.fromBuilder,resolvedProperties:i}}else{if(t.Field)return{...t,resolved:!0,fromBuilder:o.fromBuilder};throw Error("The array property needs to declare an 'of' or a 'oneOf' property, or provide a custom `Field`")}}function gn({properties:e,propertyValue:t,...n}){return Object.entries(e).map(([o,l])=>({[o]:ke({propertyKey:o,propertyOrBuilder:l,propertyValue:t&&typeof t=="object"?Le(t,o):void 0,...n})})).filter(o=>o!==null).reduce((o,l)=>({...o,...l}),{})}function hn(e,t){return typeof e.enumValues=="object"?{...e,resolved:!0,enumValues:$e(e.enumValues)?.filter(n=>n&&n.id&&n.label)??[],fromBuilder:t??!1}:e}function ba(e){return typeof e=="object"?Object.entries(e).map(([t,n])=>typeof n=="string"?{id:t,label:n}:n):Array.isArray(e)?e:void 0}function pn(e,t){return typeof e=="string"?t?.find(n=>n.key===e):e}function mn(e){const{path:t,collections:n=[],currentFullPath:o}=e,l=ue(t).split("/"),i=Vt(l),s=[];for(let a=0;a<i.length;a++){const d=i[a],A=n&&n.find(g=>g.id===d||g.path===d);if(A){const g=A.id??A.path,p=o&&o.length>0?o+"/"+g:g;s.push({type:"collection",path:p,collection:A});const h=ue(ue(t).replace(d,"")),u=h.length>0?h.split("/"):[];if(u.length>0){const m=u[0],b=p+"/"+m;if(s.push({type:"entity",entityId:m,path:p,parentCollection:A}),u.length>1){const y=u.slice(1).join("/");if(!A)throw Error("collection not found resolving path: "+A);const w=A.entityViews,C=w&&w.map(E=>pn(E,e.contextEntityViews)).filter(Boolean).find(E=>E.key===y);if(C){const E=o&&o.length>0?o+"/"+C.key:C.key;s.push({type:"custom_view",path:E,view:C})}else A.subcollections&&s.push(...mn({path:y,collections:A.subcollections,currentFullPath:b,contextEntityViews:e.contextEntityViews}))}}break}}return s}const ya="100vw",va="55vw",gl="768px",rr="main_##Q$SC^#S6";function wa({path:e,entityId:t,selectedSubPath:n,copy:o,collection:l,parentCollectionIds:i,onValuesAreModified:s,formWidth:a,onUpdate:d,onClose:A}){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[g,p]=c.useState(!1),[h,u]=c.useState(void 0);Wt(h,()=>{h&&D({entityId:q?.id,collection:l,path:e,values:h,closeAfterSave:!1})},!1,2e3);const m=Te(),b=nr(),y=We(),w=je(),C=X(),E=_e(),[k,S]=c.useState(void 0),[x,B]=c.useState(o?"copy":t?"existing":"new"),N=c.useRef(void 0),I=N.current,T=(l.subcollections??[]).filter(G=>!G.hideFromNavigation),F=T?.length??0,Q=l.entityViews,Y=Q?.length??0,J=l.formAutoSave&&!l.customId,_=Y>0||F>0,j=n??br(l?l.defaultSelectedView:void 0,{status:x,entityId:t}),te=c.useRef(j??rr),z=te.current===rr,{entity:V,dataLoading:re,dataLoadingError:W}=Sr({path:e,entityId:t,collection:l,useCache:!1}),[q,se]=c.useState(V),[U,M]=c.useState(void 0);c.useEffect(()=>{V&&se(V)},[V]),c.useEffect(()=>{if(x==="new")M(!1);else{const G=q?Cr(l,E,Ne(e),q??null):!1;q&&M(!G)}},[E,q,x]);const $=c.useCallback(G=>{p(!1),w.open({type:"error",message:"Error before saving: "+G?.message}),console.error(G)},[w]),K=c.useCallback(G=>{p(!1),w.open({type:"error",message:"Error after saving (entity is saved): "+G?.message}),console.error(G)},[w]),L=(G,O)=>{p(!1),J||w.open({type:"success",message:`${l.singularName??l.name}: Saved correctly`}),se(G),B("existing"),s(!1),d&&d({entity:G}),O?(b.setBlocked(!1),b.close(!0),A?.()):x!=="existing"&&y.replace({path:e,entityId:G.id,selectedSubPath:te.current,updateUrl:!0,collection:l})},P=c.useCallback(G=>{p(!1),w.open({type:"error",message:"Error saving: "+G?.message}),console.error("Error saving entity",e,t),console.error(G)},[t,e,w]),D=({values:G,previousValues:O,closeAfterSave:Z,entityId:R,collection:ee,path:ce})=>{p(!0),Ir({path:ce,entityId:R,values:G,previousValues:O,collection:ee,status:x,dataSource:m,context:C,onSaveSuccess:De=>L(De,Z),onSaveFailure:P,onPreSaveHookError:$,onSaveSuccessHookError:K}).then()},Se=async({collection:G,path:O,entityId:Z,values:R,previousValues:ee,closeAfterSave:ce,autoSave:De})=>{x&&(De?u(R):D({collection:G,path:O,entityId:Z,values:R,previousValues:ee,closeAfterSave:ce}))},Ae=Q?Q.map(G=>pn(G,C.entityViews)).filter(Boolean):[],ae=Q&&Ae.map((G,O)=>{if(!G||te.current!==G.key)return null;const Z=G.Builder;return Z?r.jsx("div",{className:f.cn(f.defaultBorderMixin,"relative flex-grow w-full h-full overflow-auto "),role:"tabpanel",children:r.jsx(ne,{children:k&&r.jsx(Z,{collection:l,entity:q,modifiedValues:I??q?.values,formContext:k})})},`custom_view_${G.key}`):(console.error("customView.Builder is not defined"),null)}).filter(Boolean),Ie=re&&!q||(!q||U===void 0)&&(x==="existing"||x==="copy"),qe=Ie||g,Ye=T&&T.map((G,O)=>{const Z=G.id??G.path,R=q?`${e}/${q?.id}/${ue(Z)}`:void 0;return te.current!==Z?null:r.jsxs("div",{className:"relative flex-grow h-full overflow-auto w-full",role:"tabpanel",children:[qe&&r.jsx(St,{}),!Ie&&(q&&R?r.jsx(Xr,{fullPath:R,parentCollectionIds:[...i,l.id],isSubCollection:!0,...G}):r.jsx("div",{className:"flex items-center justify-center w-full h-full p-3",children:r.jsx(f.Typography,{variant:"label",children:"You need to save your entity before adding additional collections"})}))]},`subcol_${Z}`)}).filter(Boolean),Oe=c.useCallback(()=>{s(!1)},[]),Ft=G=>{te.current=G,y.replace({path:e,entityId:t,selectedSubPath:G===rr?void 0:G,updateUrl:!0,collection:l})},mt=c.useCallback(G=>{N.current=G},[]),Nt=c.useCallback(G=>{w.open({type:"error",message:"Error updating id, check the console"})},[]),Ze=c.useCallback(G=>{se(O=>O?{...O,id:G}:void 0)},[]),Xe=G=>{J||s(G)};function Tt(){const G=C.plugins;let O=r.jsx(fl,{status:x,path:e,collection:l,onEntitySaveRequested:Se,onDiscard:Oe,onValuesChanged:mt,onModified:Xe,entity:q,onIdChange:Ze,onFormContextChange:S,hideId:l.hideIdFromForm,autoSave:J,onIdUpdateError:Nt});return G&&G.forEach(Z=>{Z.form?.provider&&(O=r.jsx(Z.form.provider.Component,{status:x,path:e,collection:l,onDiscard:Oe,onValuesChanged:mt,onModified:Xe,entity:q,context:C,formContext:k,...Z.form.provider.props,children:O}))}),r.jsx(ne,{children:O})}const Ke=U===void 0?r.jsx(r.Fragment,{}):U?r.jsxs(r.Fragment,{children:[r.jsx(f.Typography,{className:"mt-16 mb-8 mx-8",variant:"h4",children:l.singularName??l.name}),r.jsx(Yr,{className:"px-12",entity:q,path:e,collection:l})]}):Tt(),Pt=T&&T.map(G=>r.jsx(f.Tab,{className:"text-sm min-w-[140px]",value:G.id,children:G.name},`entity_detail_collection_tab_${G.name}`)),Qt=Ae.map(G=>r.jsx(f.Tab,{className:"text-sm min-w-[140px]",value:G.key,children:G.name},`entity_detail_collection_tab_${G.name}`));return r.jsx("div",{className:"flex flex-col h-full w-full transition-width duration-250 ease-in-out",children:r.jsxs(r.Fragment,{children:[r.jsxs("div",{className:f.cn(f.defaultBorderMixin,"no-scrollbar border-b pl-2 pr-2 pt-1 flex items-end overflow-scroll bg-gray-50 dark:bg-gray-950"),children:[r.jsx("div",{className:"pb-1 self-center",children:r.jsx(f.IconButton,{onClick:()=>(A?.(),b.close(!1)),size:"large",children:r.jsx(f.CloseIcon,{})})}),r.jsx("div",{className:"flex-grow"}),Ie&&r.jsx("div",{className:"self-center",children:r.jsx(f.CircularProgress,{size:"small"})}),r.jsxs(f.Tabs,{value:te.current,onValueChange:G=>{Ft(G)},className:"pl-4 pr-4 pt-0",children:[r.jsx(f.Tab,{disabled:!_,value:rr,className:`${_?"":"hidden"} text-sm min-w-[140px]`,children:l.singularName??l.name}),Qt,Pt]})]}),r.jsxs("div",{className:"flex-grow h-full flex overflow-auto flex-row w-full ",style:{},children:[r.jsx("div",{role:"tabpanel",hidden:!z,id:`form_${e}`,className:" w-full",children:Ie?r.jsx(St,{}):Ke}),ae,Ye]})]})})}function Ca(e,t){const[n,o]=c.useState(),{navigator:l}=c.useContext(fe.UNSAFE_NavigationContext),i=fe.useNavigate(),s=()=>{o(void 0)},a=()=>{t(),o(void 0),i(-1)},d=c.useCallback(({action:A,location:g,retry:p})=>{switch(A){case"REPLACE":{p();return}case"POP":o(g)}},[]);return c.useEffect(()=>{if(!e||n||!("block"in l))return;const A=l.block(g=>{const p={...g,retry(){A(),g.retry()}};d(p)});return A},[l,d,e,n]),{navigationWasBlocked:!!n,handleCancel:s,handleOk:a}}function Ea({open:e,handleOk:t,handleCancel:n,body:o,title:l}){return r.jsxs(f.Dialog,{open:e,onOpenChange:i=>i?n():t(),children:[r.jsxs(f.DialogContent,{children:[r.jsx(f.Typography,{variant:"h6",children:l}),o,r.jsx(f.Typography,{children:"Are you sure you want to leave this page?"})]}),r.jsxs(f.DialogActions,{children:[r.jsx(f.Button,{variant:"text",onClick:n,autoFocus:!0,children:" Cancel "}),r.jsx(f.Button,{onClick:t,children:" Ok "})]})]})}const hl=c.createContext({width:"",blocked:!1,setBlocked:e=>{},setBlockedNavigationMessage:e=>{},close:()=>{}}),nr=()=>c.useContext(hl);function Ba(){const t=Et().sidePanels,n=[...t];return n.push(void 0),r.jsx(r.Fragment,{children:n.map((o,l)=>r.jsx(ka,{panel:o,offsetPosition:t.length-l-1},`side_dialog_${l}`))})}function ka({offsetPosition:e,panel:t}){const[n,o]=c.useState(!1),[l,i]=c.useState(!1),[s,a]=c.useState(),d=c.useRef(t?.width),A=d.current,g=Et(),{navigationWasBlocked:p,handleOk:h,handleCancel:u}=Ca(l&&!n,()=>i(!1));c.useEffect(()=>{t&&(d.current=t.width)},[t]);const m=()=>{i(!1),o(!1),g.close(),t?.onClose?.()},b=()=>{o(!1)},y=w=>{l&&!w?o(!0):(g.close(),t?.onClose?.())};return r.jsxs(hl.Provider,{value:{blocked:l,setBlocked:i,setBlockedNavigationMessage:a,width:A,close:y},children:[r.jsxs(f.Sheet,{open:!!t,onOpenChange:w=>!w&&y(),children:[t&&r.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:r.jsx(ne,{children:t.component})}),!t&&r.jsx("div",{style:{width:A}})]}),r.jsx(Ea,{open:p||n,handleOk:n?m:h,handleCancel:n?b:u,body:s})]})}function xa(e){const{blocked:t,setBlocked:n,setBlockedNavigationMessage:o}=nr(),l=ie(),i=c.useMemo(()=>l.getParentCollectionIds(e.path),[l,e.path]),s=c.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]);c.useEffect(()=>{function d(A){t&&s&&(A.preventDefault(),A.returnValue=`You have unsaved changes in this ${s.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,s]);const a=c.useCallback(d=>{n(d),o(d?r.jsxs(r.Fragment,{children:[" You have unsaved changes in this ",r.jsx("b",{children:s?.singularName??s?.name}),"."]}):void 0)},[s?.name,n,o]);return!e||!s?r.jsx("div",{className:"w-full"}):r.jsx(r.Fragment,{children:r.jsx(ne,{children:r.jsx(wa,{...e,formWidth:e.width,collection:s,parentCollectionIds:i,onValuesAreModified:a})})})}const pl="new";function Sa(e,t){if(t)return ya;const n=!e.selectedSubPath,o=typeof e.width=="number"?`${e.width}px`:e.width;return n?o??gl:`calc(${va} + ${o??gl})`}const Ia=(e,t)=>{const n=fe.useLocation(),o=c.useRef(!1),l=!Pe();c.useEffect(()=>{if(!e.loading&&!o.current){if(e.isUrlCollectionPath(n.pathname)){const d=n.hash===`#${pl}`,A=e.urlPathToDataPath(n.pathname),g=Fa(A,e.collections,d);for(let p=0;p<g.length;p++){const h=g[p];setTimeout(()=>{p===0?t.replace(or(h,e,l)):t.open(or(h,e,l))},1)}}o.current=!0}},[n,e,t,l]);const i=c.useCallback(()=>{t.close()},[t]),s=c.useCallback(d=>{if(d.copy&&!d.entityId)throw Error("If you want to copy an entity you need to provide an entityId");const A=br(d.collection?d.collection.defaultSelectedView:void 0,{status:d.copy?"copy":d.entityId?"existing":"new",entityId:d.entityId});t.open(or({selectedSubPath:A,...d},e,l))},[t,e,l]),a=c.useCallback(d=>{if(d.copy&&!d.entityId)throw Error("If you want to copy an entity you need to provide an entityId");t.replace(or(d,e,l))},[e,t,l]);return{close:i,open:s,replace:a}};function Fa(e,t,n){const o=mn({path:e,collections:t}),l=[];let i="";for(let s=0;s<o.length;s++){const a=o[s];if(a.type==="collection"&&(i=a.path),s>0){const d=o[s-1];if(a.type==="entity")l.push({path:a.path,entityId:a.entityId,copy:!1});else if(a.type==="custom_view"){if(d.type==="entity"){const A=l[l.length-1];A&&(A.selectedSubPath=a.view.key)}}else if(a.type==="collection"&&d.type==="entity"){const A=l[l.length-1];A&&(A.selectedSubPath=a.collection.id??a.collection.path)}}}return n&&l.push({path:i,copy:!1}),l}const or=(e,t,n)=>{const o=ue(e.path),l=e.entityId?t.buildUrlCollectionPath(`${o}/${e.entityId}/${e.selectedSubPath||""}`):t.buildUrlCollectionPath(`${o}#${pl}`);return{key:`${e.path}/${e.entityId}`,component:r.jsx(xa,{...e}),urlPath:l,parentUrlPath:t.buildUrlCollectionPath(o),width:Sa(e,n),onClose:e.onClose}};function Na(){const e=fe.useLocation(),t=fe.useNavigate(),[n,o]=c.useState([]),l=c.useRef(n),i=c.useRef({}),s=c.useRef(0),a=p=>{l.current=p,o(p)};c.useEffect(()=>{const u=(e.state?.panels??[]).map(m=>i.current[m]).filter(m=>!!m);oe(l.current.map(m=>m.key),u.map(m=>m.key))||a(u)},[e]);const d=c.useCallback(()=>{if(n.length===0)return;const p=n[n.length-1],h=[...n.slice(0,-1)];if(a(h),s.current>0)p.urlPath&&t(-1),s.current--;else if(p.parentUrlPath){const u=e.state?.base_location??e;t(p.parentUrlPath,{replace:!0,state:{base_location:u,panels:h.map(m=>m.key)}})}},[n,t,e]),A=c.useCallback(p=>{const h=Array.isArray(p)?p:[p];h.forEach(b=>{i.current[b.key]=b}),s.current=s.current+h.length;const u=e.state?.base_location??e,m=[...n,...h];a(m),h.forEach(b=>{b.urlPath&&t(b.urlPath,{state:{base_location:u,panels:m.map(y=>y.key)}})})},[e,t,n]),g=c.useCallback(p=>{const h=Array.isArray(p)?p:[p];h.forEach(b=>{i.current[b.key]=b});const u=e.state?.base_location??e,m=[...n.slice(0,-h.length),...h];a(m),h.forEach(b=>{b.urlPath&&t(b.urlPath,{replace:!0,state:{base_location:u,panels:m.map(y=>y.key)}})})},[e,t,n]);return{sidePanels:n,close:d,open:A,replace:g}}function Ta(e){c.useEffect(()=>{if(!e)return;const t=kn[e];t&&(En.registerLocale(e,t),En.setDefaultLocale(e))},[e])}function ml(e){const{path:t,collections:n=[],currentFullPath:o}=e,l=ue(t).split("/"),i=Vt(l),s=[];for(let a=0;a<i.length;a++){const d=i[a],A=n&&n.find(g=>g.id===d||g.path===d);if(A){const g=A.id??A.path,p=o&&o.length>0?o+"/"+g:g,h=ue(ue(t).replace(d,"")),u=h.length>0?h.split("/"):[];if(u.length>0){const m=u[0],b=p+"/"+m;if(s.push(new Me(m,p)),u.length>1){const y=u.slice(1).join("/");if(!A)throw Error("collection not found resolving path: "+A);A.subcollections&&s.push(...ml({path:y,collections:A.subcollections,currentFullPath:b}))}}break}}return s}const Pa="/",Qa="/c";function Ma({basePath:e=Pa,baseCollectionPath:t=Qa,authController:n,collections:o,views:l,userConfigPersistence:i,plugins:s,dataSource:a}){const d=fe.useLocation(),[A,g]=c.useState(),[p,h]=c.useState(),[u,m]=c.useState(!1),[b,y]=c.useState(void 0),[w,C]=c.useState(!0),[E,k]=c.useState(void 0),S=ue(e),x=ue(t),B=S?`/${S}`:"/",N=S?`/${S}/${x}`:`/${x}`,I=c.useCallback(U=>S?`/${S}/${lr(U)}`:`/${lr(U)}`,[S]),T=c.useCallback(U=>`${ue(t)}/${lr(U)}`,[t]),F=c.useCallback((U,M)=>{const $=[...(U??[]).map(L=>L.hideFromNavigation?void 0:{url:T(L.id??L.path),type:"collection",name:L.name.trim(),path:L.id??L.path,collection:L,description:L.description?.trim(),group:L.group?.trim()}).filter(Boolean),...(M??[]).map(L=>L.hideFromNavigation?void 0:{url:I(Array.isArray(L.path)?L.path[0]:L.path),name:L.name.trim(),type:"view",view:L,description:L.description?.trim(),group:L.group?.trim()}).filter(Boolean)],K=Object.values($).map(L=>L.group).filter(Boolean).filter((L,P,D)=>D.indexOf(L)===P);return{navigationEntries:$,groups:K}},[I,T]),Q=c.useCallback(async()=>{if(!n.initialLoading){try{const[U=[],M=[]]=await Promise.all([Da(o,n,a,s),Oa(l,n,a)]);g(U),h(M),y(F(U??[],M))}catch(U){console.error(U),k(U)}C(!1),m(!0)}},[o,n.user,n.initialLoading,s,l,F]);c.useEffect(()=>{Q()},[Q]);const Y=c.useCallback((U,M,$=!1)=>{if(!A)return;const K=Ot(ue(U),A),L=$?i?.getCollectionConfig(U):void 0,P=K?Fe(K,L):void 0;let D=P;if(P){const Se=P.subcollections,Ae=P.callbacks,ae=P.permissions;D={...D,subcollections:D?.subcollections??Se,callbacks:D?.callbacks??Ae,permissions:D?.permissions??ae}}if(D)return{...P,...D}},[e,t,A]),J=c.useCallback(U=>{let M=A;if(!M)throw Error("Collections have not been initialised yet");for(let $=0;$<U.length;$++){const K=U[$],L=M.find(P=>P.id===K||P.path===K);if(!L)return;if(M=L.subcollections,$===U.length-1)return L}},[A]),_=c.useCallback(U=>{let M=A;if(!M)throw Error("Collections have not been initialised yet");for(let $=0;$<U.length;$++){const K=U[$],L=M.find(P=>P.id===K);if(!L)return;if(M=L.subcollections,$===U.length-1)return L}},[A]),j=c.useCallback(U=>ue(U+"/").startsWith(ue(N)+"/"),[N]),te=c.useCallback(U=>{if(U.startsWith(N))return U.replace(N,"");throw Error("Expected path starting with "+N)},[N]),z=c.useCallback(({path:U})=>`s/edit/${lr(U)}`,[]),V=c.useCallback(U=>{if(!A)throw Error("Collections have not been initialised yet");return dr(U,A)},[A]),re=d.state,W=re&&re.base_location?re.base_location:d,q=c.useCallback(U=>ml({path:U,collections:A}),[A]),se=c.useCallback(U=>q(U).map(M=>M.id),[q]);return c.useMemo(()=>({collections:A??[],views:p??[],loading:!u||w,navigationLoadingError:E,homeUrl:B,basePath:e,baseCollectionPath:t,initialised:u,getCollection:Y,getCollectionFromPaths:J,getCollectionFromIds:_,isUrlCollectionPath:j,urlPathToDataPath:te,buildUrlCollectionPath:T,buildUrlEditCollectionPath:z,buildCMSUrlPath:I,resolveAliasesFrom:V,topLevelNavigation:b,baseLocation:W,refreshNavigation:Q,getParentReferencesFromPath:q,getParentCollectionIds:se}),[t,W,e,I,T,z,A,q,Y,J,B,u,j,w,E,Q,V,b,te,p])}function lr(e){return encodeURIComponent(ue(e)).replaceAll("%2F","/").replaceAll("%23","#")}function bl(e,t){return e.filter(n=>n.permissions?Ct(n,t,[n.path],null).read!==!1:!0).map(n=>n.subcollections?{...n,subcollections:bl(n.subcollections,t)}:n)}async function Da(e,t,n,o){let l=[];return typeof e=="function"?l=await e({user:t.user,authController:t,dataSource:n}):Array.isArray(e)&&(l=e),l=bl(l,t),o&&o.forEach(i=>{i.collections?.injectCollections&&(l=i.collections?.injectCollections(l??[]))}),l}async function Oa(e,t,n){let o=[];return typeof e=="function"?o=await e({user:t.user,authController:t,dataSource:n}):Array.isArray(e)&&(o=e),o}function Va({delegate:e,propertyConfigs:t,navigationController:n}){return{fetchCollection:c.useCallback(({path:o,collection:l,filter:i,limit:s,startAfter:a,searchString:d,orderBy:A,order:g})=>e.fetchCollection({path:o,filter:i,limit:s,startAfter:a,searchString:d,orderBy:A,order:g}),[e]),listenCollection:e.listenCollection?c.useCallback(({path:o,collection:l,filter:i,limit:s,startAfter:a,searchString:d,orderBy:A,order:g,onUpdate:p,onError:h})=>{const m=!!(l??n.getCollection(o))?.collectionGroup;if(!e.listenCollection)throw Error("useBuildDataSource delegate not initialised");return e.listenCollection({path:o,filter:i,limit:s,startAfter:a,searchString:d,orderBy:A,order:g,onUpdate:p,onError:h,isCollectionGroup:m})},[e,n.getCollection]):void 0,fetchEntity:c.useCallback(({path:o,entityId:l})=>e.fetchEntity({path:o,entityId:l}),[e]),listenEntity:e.listenEntity?c.useCallback(({path:o,entityId:l,collection:i,onUpdate:s,onError:a})=>{if(!e.listenEntity)throw Error("useBuildDataSource delegate not initialised");return e.listenEntity({path:o,entityId:l,onUpdate:s,onError:a})},[e.listenEntity]):void 0,saveEntity:c.useCallback(({path:o,entityId:l,values:i,collection:s,status:a})=>{const d=s??n.getCollection(o),g=(d?Be({collection:d,path:o,entityId:l,fields:t}):void 0)?.properties,p=bn(i,e.buildReference,e.buildGeoPoint,e.buildDate,e.buildDeleteFieldValue),h=g?Tn({inputValues:p,properties:g,status:a,timestampNowValue:e.currentTime(),setDateToMidnight:e.setDateToMidnight}):p;return console.debug("Saving entity",o,l,h),e.saveEntity({path:o,entityId:l,values:h,status:a}).then(u=>({id:u.id,path:u.path,values:e.delegateToCMSModel(h)}))},[e.saveEntity,n.getCollection]),deleteEntity:c.useCallback(({entity:o})=>e.deleteEntity({entity:o}),[e.deleteEntity]),checkUniqueField:c.useCallback((o,l,i,s)=>e.checkUniqueField(o,l,i,s),[e.checkUniqueField]),generateEntityId:c.useCallback(o=>e.generateEntityId(o),[e.generateEntityId]),countEntities:c.useCallback(async({path:o,collection:l,filter:i,order:s,orderBy:a})=>e.countEntities({path:o,filter:i,orderBy:a,order:s,isCollectionGroup:!!l.collectionGroup}),[e.countEntities]),isFilterCombinationValid:c.useCallback(({path:o,filterValues:l,sortBy:i})=>e.isFilterCombinationValid?e.isFilterCombinationValid({path:o,filterValues:l,sortBy:i}):!0,[e.isFilterCombinationValid])}}function bn(e,t,n,o,l){return e===void 0?l():Array.isArray(e)?e.map(i=>bn(i,t,n,o,l)):e instanceof Me?t(e):e instanceof Gt?n(e):e instanceof Date?o(e):e&&typeof e=="object"?Object.entries(e).map(([i,s])=>({[i]:bn(s,t,n,o,l)})).reduce((i,s)=>({...i,...s}),{}):e}function Ga(e){const t=Fr(),{children:n,entityLinkBuilder:o,userConfigPersistence:l,dateTimeFormat:i,locale:s,authController:a,storageSource:d,dataSourceDelegate:A,plugins:g,onAnalyticsEvent:p,propertyConfigs:h,entityViews:u,components:m,baseCollectionPath:b,basePath:y,collections:w,views:C}=e;Ta(s);const E=Ma({basePath:y,baseCollectionPath:b,authController:a,collections:w,views:C,userConfigPersistence:l,dataSource:A,plugins:g}),k=Va({delegate:A,propertyConfigs:h,navigationController:E}),S=Na(),x=Ia(E,S),B=g?.some(T=>T.loading)??!1,N=a.initialLoading||E.loading||B,I=c.useMemo(()=>({entityLinkBuilder:o,dateTimeFormat:i,locale:s,plugins:g,onAnalyticsEvent:p,entityViews:u??[],propertyConfigs:h??{},components:m}),[i,s,g,u,h,m]);return E.navigationLoadingError?r.jsx(f.CenteredView,{maxWidth:"md",fullScreen:!0,children:r.jsx(he,{title:"Error loading navigation",error:E.navigationLoadingError})}):a.authError?r.jsx(f.CenteredView,{maxWidth:"md",fullScreen:!0,children:r.jsx(he,{title:"Error loading auth",error:a.authError})}):r.jsx(Dt.Provider,{value:t,children:r.jsx(kr.Provider,{value:I,children:r.jsx(no.Provider,{value:l,children:r.jsx(ro.Provider,{value:d,children:r.jsx(Kn.Provider,{value:k,children:r.jsx(cr.Provider,{value:a,children:r.jsx(eo.Provider,{value:S,children:r.jsx(to.Provider,{value:x,children:r.jsx(Rn.Provider,{value:E,children:r.jsx(Ql,{children:r.jsx(fi,{children:r.jsx(Ya,{loading:N,children:n})})})})})})})})})})})})}function Ya({loading:e,children:t}){const n=X();let o=t({context:n,loading:e});const l=n.plugins;return!e&&l&&l.forEach(i=>{i.provider&&(o=r.jsx(i.provider.Component,{...i.provider.props,context:n,children:o}))}),r.jsx(r.Fragment,{children:o})}function yl({hovered:e,drawerOpen:t,closeDrawer:n}){const o=X(),l=ie(),i=e&&!t,s=Pe();if(!l.topLevelNavigation)throw Error("Navigation not ready in Drawer");const{navigationEntries:a,groups:d}=l.topLevelNavigation,A=Object.values(a).filter(h=>!h.group),g=c.useCallback(h=>t?r.jsx("div",{className:"pt-8 pl-6 pr-8 pb-2 flex flex-row items-center",children:r.jsx(f.Typography,{variant:"caption",color:"secondary",className:"font-medium flex-grow",children:h?h.toUpperCase():"Views".toUpperCase()})}):r.jsx("div",{className:"h-4"}),[t]),p=h=>{const u=h.type==="collection"?"drawer_navigate_to_collection":h.type==="view"?"drawer_navigate_to_view":"unmapped_event";o.onAnalyticsEvent?.(u,{url:h.url}),s||n()};return r.jsxs("div",{className:"flex-grow overflow-scroll no-scrollbar",children:[d.map(h=>r.jsxs(c.Fragment,{children:[g(h),Object.values(a).filter(u=>u.group===h).map((u,m)=>r.jsx(yn,{icon:Jt(u.collection??u.view),tooltipsOpen:i,drawerOpen:t,onClick:()=>p(u),url:u.url,name:u.name},`navigation_${m}`))]},`drawer_group_${h}`)),A.length>0&&g(),A.map((h,u)=>r.jsx(yn,{icon:Jt(h.collection??h.view),tooltipsOpen:i,onClick:()=>p(h),drawerOpen:t,url:h.url,name:h.name},`navigation_${u}`))]})}function yn({name:e,icon:t,drawerOpen:n,tooltipsOpen:o,url:l,onClick:i}){const s=r.jsx("div",{className:"text-gray-600 dark:text-gray-500",children:t}),a=r.jsxs(fe.NavLink,{onClick:i,className:({isActive:d})=>f.cn("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",n?"pl-8 h-12":"pl-6 h-11","font-medium text-sm",d?"bg-gray-100 dark:bg-gray-800":""),to:l,children:[s,r.jsx("div",{className:f.cn(n?"opacity-100":"opacity-0 hidden","ml-4 font-inherit text-inherit"),children:e.toUpperCase()})]});return n?a:r.jsx(f.Tooltip,{open:o,side:"right",title:e,children:a})}const za=280,Ua=c.memo(function(t){const{children:n,name:o,logo:l,includeDrawer:i=!0,autoOpenDrawer:s,Drawer:a=yl,drawerProps:d,FireCMSAppBarComponent:A=Ko,fireCMSAppBarComponentProps:g}=t,p=Pe(),h=ie(),[u,m]=c.useState(!1),[b,y]=c.useState(!1),w=c.useCallback(()=>y(!0),[]),C=c.useCallback(()=>y(!1),[]),E=c.useCallback(()=>{m(!1)},[]),k=u||!!(p&&s&&b);return r.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:[r.jsx(A,{title:o,includeDrawer:i,drawerOpen:k,...g}),r.jsx($a,{displayed:i,onMouseEnter:w,onMouseMove:w,onMouseLeave:C,open:k,logo:l,hovered:b,setDrawerOpen:m,children:i&&(h.loading?r.jsx(St,{}):r.jsx(a,{hovered:b,drawerOpen:k,closeDrawer:E,...d}))}),r.jsxs("main",{className:"flex flex-col flex-grow overflow-auto",children:[r.jsx(La,{}),r.jsx("div",{className:f.cn(f.defaultBorderMixin,"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:r.jsx(ne,{children:n})})]})]})},oe),La=()=>r.jsx("div",{className:"flex flex-col min-h-[68px]"});function $a(e){const t=ie(),n=e.displayed?e.open?za:72:0,o=r.jsxs("div",{className:"relative h-full no-scrollbar overflow-y-auto overflow-x-hidden",style:{width:n,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&&r.jsx(f.Tooltip,{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:r.jsx(f.IconButton,{color:"inherit","aria-label":"Open menu",className:"sticky top-2 left-3 ",onClick:()=>e.setDrawerOpen(!0),size:"large",children:r.jsx(f.MenuIcon,{})})}),r.jsxs("div",{className:"flex flex-col h-full",children:[r.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:f.cn("cursor-pointer"),children:r.jsx(f.Tooltip,{title:"Home",sideOffset:20,side:"right",children:r.jsx(fe.Link,{to:t.basePath,children:e.logo?r.jsx("img",{src:e.logo,alt:"Logo",className:f.cn("max-w-full max-h-full",e.open??"w-[160px] h-[160px]")}):r.jsx(Xo,{})})})}),e.children]})]});return Pe()?r.jsxs("div",{className:"relative",onMouseEnter:e.onMouseEnter,onMouseMove:e.onMouseMove,onMouseLeave:e.onMouseLeave,style:{width:n,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:[o,r.jsx("div",{className:`absolute right-0 top-4 ${e.open?"opacity-100":"opacity-0 invisible"} transition-opacity duration-1000 ease-in-out`,children:r.jsx(f.IconButton,{"aria-label":"Close drawer",onClick:()=>e.setDrawerOpen(!1),children:r.jsx(f.ChevronLeftIcon,{})})})]}):e.displayed?r.jsxs(r.Fragment,{children:[r.jsx(f.IconButton,{color:"inherit","aria-label":"Open drawer",onClick:()=>e.setDrawerOpen(!0),size:"large",className:"absolute top-2 left-6",children:r.jsx(f.MenuIcon,{})}),r.jsx(f.Sheet,{side:"left",transparent:!0,open:e.open,onOpenChange:e.setDrawerOpen,children:o})]}):null}const _a=c.memo(function({HomePage:t=qo,customRoutes:n}){const o=fe.useLocation(),l=ie();if(!l)return r.jsx(r.Fragment,{});const i=o.state,s=i&&i.base_location?i.base_location:o,a=[];l.views&&l.views.forEach(h=>{Array.isArray(h.path)?a.push(...h.path.map(u=>vl(u,h))):a.push(vl(h.path,h))});const A=[...l.collections??[]].sort((h,u)=>u.path.length-h.path.length).map(h=>{const u=l.buildUrlCollectionPath(h.id??h.path);return r.jsx(fe.Route,{path:u+"/*",element:r.jsx(ir,{path:u,title:h.name,type:"collection",children:r.jsx(Xr,{isSubCollection:!1,parentCollectionIds:[],fullPath:h.id??h.path,...h,Actions:Kt(h.Actions)},`collection_view_${h.id??h.path}`)})},`navigation_${h.id??h.path}`)}),g=r.jsx(fe.Route,{path:"/",element:r.jsx(ir,{path:l.homeUrl,title:"Home",type:"home",children:r.jsx(t,{})},"navigation_home")}),p=r.jsx(fe.Route,{path:"*",element:r.jsx(Zo,{})});return r.jsxs(fe.Routes,{location:s,children:[A,a,g,p,n]})}),vl=(e,t)=>r.jsx(fe.Route,{path:e,element:r.jsx(ir,{path:e,title:t.name,type:"view",children:t.view},`navigation_${e}`)},"navigation_view_"+e),ir=c.memo(function({children:t,title:n,path:o,type:l}){const i=Nr();return c.useEffect(()=>{i.set({breadcrumbs:[{title:n,url:o}]})},[o,n]),r.jsx(r.Fragment,{children:t})},oe);function Wa(){const e=typeof window<"u"&&window.matchMedia("(prefers-color-scheme: dark)"),n=(localStorage.getItem("prefers-dark-mode")!=null?localStorage.getItem("prefers-dark-mode")==="true":null)??e,[o,l]=c.useState(n?"dark":"light");c.useEffect(()=>{l(n?"dark":"light"),a(n?"dark":"light")},[n]);const i=c.useCallback(()=>{l("dark"),a("dark")},[e]),s=c.useCallback(()=>{l("light"),a("light")},[]),a=A=>{document.body.style.setProperty("color-scheme",A),document.documentElement.dataset.theme=A},d=c.useCallback(()=>{o==="light"?(e?localStorage.removeItem("prefers-dark-mode"):localStorage.setItem("prefers-dark-mode","true"),i()):(e?localStorage.setItem("prefers-dark-mode","false"):localStorage.removeItem("prefers-dark-mode"),s())},[o,e]);return{mode:o,setMode:l,toggleMode:d}}function ja(){const[e,t]=c.useState({}),n=c.useCallback(m=>{const b=localStorage.getItem(m);return b?JSON.parse(b):{}},[]),o=c.useCallback(m=>{const b=`collection_config::${yr(m)}`;return e[b]?e[b]:n(b)},[e,n]),l=c.useCallback((m,b)=>{const y=`collection_config::${yr(m)}`;localStorage.setItem(y,JSON.stringify(b)),t(w=>{const C=w[y],E=Fe(C??n(m),b);return Fe(w,E)})},[n]),[i,s]=c.useState([]),[a,d]=c.useState([]),[A,g]=c.useState([]);c.useEffect(()=>{s(localStorage.getItem("recently_visited_paths")?JSON.parse(localStorage.getItem("recently_visited_paths")):[]),d(localStorage.getItem("favourite_paths")?JSON.parse(localStorage.getItem("favourite_paths")):[]),g(localStorage.getItem("collapsed_groups")?JSON.parse(localStorage.getItem("collapsed_groups")):[])},[]);const p=c.useCallback(m=>{localStorage.setItem("recently_visited_paths",JSON.stringify(m)),s(m)},[]),h=c.useCallback(m=>{localStorage.setItem("favourite_paths",JSON.stringify(m)),d(m)},[]),u=c.useCallback(m=>{localStorage.setItem("collapsed_groups",JSON.stringify(m)),g(m)},[]);return{onCollectionModified:l,getCollectionConfig:o,recentlyVisitedPaths:i,setRecentlyVisitedPaths:p,favouritePaths:a,setFavouritePaths:h,collapsedGroups:A,setCollapsedGroups:u}}v.ArrayContainer=tn,v.ArrayContainerItem=rn,v.ArrayCustomShapedFieldBinding=dl,v.ArrayEnumPreview=Or,v.ArrayItemOptions=Ro,v.ArrayOfMapsPreview=Mi,v.ArrayOfReferencesFieldBinding=el,v.ArrayOfReferencesPreview=ho,v.ArrayOfStorageComponentsPreview=po,v.ArrayOfStringsPreview=mo,v.ArrayOneOfPreview=bo,v.ArrayPropertyEnumPreview=Vr,v.ArrayPropertyPreview=Dr,v.AsyncPreviewComponent=Di,v.AuthControllerContext=cr,v.BlockFieldBinding=al,v.BooleanPreview=wo,v.BreadcrumbUpdater=Ws,v.COLLECTION_PATH_SEPARATOR=Gn,v.CircularProgressCenter=St,v.DEFAULT_FIELD_CONFIGS=An,v.DatePreview=vo,v.DateTimeFieldBinding=nl,v.DefaultHomePage=qo,v.DeleteConfirmationDialog=js,v.Drawer=yl,v.DrawerNavigationItem=yn,v.EmptyValue=At,v.EntityCollectionTable=qr,v.EntityCollectionView=Xr,v.EntityForm=fl,v.EntityPreview=Yr,v.EntityReference=Me,v.EnumValuesChip=we,v.ErrorBoundary=ne,v.ErrorView=he,v.FieldConfigBadge=_s,v.FieldHelperText=ye,v.FireCMS=Ga,v.FireCMSAppBar=Ko,v.FireCMSContextInstance=kr,v.FireCMSLogo=Xo,v.FormikArrayContainer=Rt,v.GeoPoint=Gt,v.ImagePreview=co,v.KeyValueFieldBinding=il,v.KeyValuePreview=Gr,v.LabelWithIcon=be,v.MapFieldBinding=ll,v.MapPropertyPreview=yo,v.MarkdownFieldBinding=cl,v.ModeControllerContext=Dt,v.ModeControllerProvider=Ol,v.MultiSelectBinding=on,v.NavigationCollectionCard=Jo,v.NavigationGroup=Rr,v.NavigationRoutes=_a,v.NotFoundPage=Zo,v.NumberPropertyPreview=Co,v.PropertyFieldBinding=nt,v.PropertyPreview=me,v.ReadOnlyFieldBinding=sn,v.ReferenceFieldBinding=ol,v.ReferencePreview=Ge,v.ReferencePreviewContainer=Zt,v.ReferenceSelectionInner=Ho,v.RepeatFieldBinding=sl,v.RouteWrapper=ir,v.Scaffold=Ua,v.SelectFieldBinding=nn,v.SideDialogs=Ba,v.SkeletonPropertyComponent=ut,v.SnackbarProvider=Ml,v.StorageThumbnail=Ao,v.StorageThumbnailInternal=uo,v.StorageUploadFieldBinding=ln,v.StringPropertyPreview=Mr,v.SwitchControl=qs,v.SwitchFieldBinding=rl,v.TextFieldBinding=pt,v.UrlComponentPreview=kt,v.VirtualTable=Qo,v.addInitialSlash=Gl,v.buildAdditionalFieldDelegate=di,v.buildCollection=ni,v.buildEntityCallbacks=ci,v.buildEnumLabel=Dn,v.buildEnumValueConfig=ai,v.buildEnumValues=si,v.buildFieldConfig=Ai,v.buildProperties=li,v.buildPropertiesOrBuilder=ii,v.buildProperty=oi,v.canCreateEntity=at,v.canDeleteEntity=Ht,v.canEditEntity=Cr,v.defaultDateFormat=Vn,v.deleteEntityWithCallbacks=io,v.enumToObjectEntries=$e,v.flattenObject=Er,v.fullPathToCollectionSegments=Ne,v.getArrayValuesCount=Wn,v.getBracketNotation=Rl,v.getCollectionByPathOrAlias=Ot,v.getCollectionPathsCombinations=Vt,v.getColorForProperty=Kl,v.getColorScheme=Mn,v.getDefaultFieldId=fn,v.getDefaultPropertiesOrder=ei,v.getDefaultValueFor=Ut,v.getDefaultValueForDataType=hr,v.getDefaultValuesFor=wt,v.getFieldConfig=tr,v.getFieldId=un,v.getHashValue=fr,v.getIcon=$n,v.getIconForProperty=pe,v.getIconForView=Jt,v.getIconForWidget=vr,v.getIdIcon=Xl,v.getLabelOrConfigFrom=$t,v.getLastSegment=Yl,v.getPropertiesWithPropertiesOrder=Ln,v.getPropertyInPath=tt,v.getRandomId=It,v.getReferenceFrom=et,v.getReferencePreviewKeys=_n,v.getResolvedPropertyInPath=wr,v.getValueInPath=Le,v.hydrateRegExp=zn,v.isDefaultFieldConfigId=ul,v.isEmptyObject=gr,v.isEnumValueDisabled=Ll,v.isHidden=vt,v.isObject=Yt,v.isPropertyBuilder=ve,v.isReadOnly=it,v.isReferenceProperty=Un,v.isValidRegExp=ql,v.joinCollectionLists=Jn,v.makePropertiesEditable=jn,v.makePropertiesNonEditable=Hn,v.mergeCollection=qn,v.mergeDeep=Fe,v.pick=Fn,v.plural=ti,v.randomColor=Hl,v.randomString=st,v.removeFunctions=Ar,v.removeInPath=zl,v.removeInitialAndTrailingSlashes=ue,v.removeInitialSlash=Sn,v.removePropsIfExisting=Nn,v.removeTrailingSlash=In,v.removeUndefined=ur,v.renderSkeletonCaptionText=Ii,v.renderSkeletonIcon=Qr,v.renderSkeletonImageThumbnail=Pr,v.renderSkeletonText=Ve,v.resolveArrayProperty=Je,v.resolveCollection=Be,v.resolveCollectionPathAliases=dr,v.resolveDefaultSelectedView=br,v.resolveEntityView=pn,v.resolveEnumValues=ba,v.resolveNavigationFrom=so,v.resolvePermissions=Ct,v.resolveProperties=gn,v.resolveProperty=ke,v.resolvePropertyEnum=hn,v.sanitizeData=Ul,v.saveEntityWithCallbacks=Ir,v.segmentsToStrippedPath=Yn,v.serializeRegExp=Jl,v.singular=ri,v.slugify=_t,v.sortProperties=mr,v.stripCollectionPath=yr,v.toKebabCase=_l,v.toSnakeCase=jl,v.traverseValueProperty=Lt,v.traverseValuesProperties=pr,v.unslugify=Vl,v.updateDateAutoValues=Tn,v.useAuthController=_e,v.useBreadcrumbsContext=Nr,v.useBrowserTitleAndIcon=mi,v.useBuildLocalConfigurationPersistence=ja,v.useBuildModeController=Wa,v.useClearRestoreValue=xe,v.useClipboard=ao,v.useCollectionFetch=lo,v.useDataSource=Te,v.useDebounce=Wt,v.useDebounceValue=Zl,v.useEntityCollectionTableController=Zr,v.useEntityFetch=Sr,v.useFireCMSContext=X,v.useLargeLayout=Pe,v.useModeController=Fr,v.useNavigationController=ie,v.useReferenceDialog=Bt,v.useResolvedNavigationFrom=gi,v.useSelectionController=Kr,v.useSideDialogContext=nr,v.useSideDialogsController=Et,v.useSideEntityController=We,v.useSnackbarController=je,v.useStorageSource=ct,Object.keys(f).forEach(e=>{e!=="default"&&!Object.prototype.hasOwnProperty.call(v,e)&&Object.defineProperty(v,e,{enumerable:!0,get:()=>f[e]})}),Object.defineProperty(v,Symbol.toStringTag,{value:"Module"})});
1611
589
  //# sourceMappingURL=index.umd.js.map