@rebasepro/core 0.0.1-canary.0

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 (570) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +174 -0
  3. package/dist/app/AppBar.d.ts +12 -0
  4. package/dist/app/Drawer.d.ts +19 -0
  5. package/dist/app/Scaffold.d.ts +34 -0
  6. package/dist/app/index.d.ts +4 -0
  7. package/dist/app/useApp.d.ts +17 -0
  8. package/dist/components/AIIcon.d.ts +16 -0
  9. package/dist/components/AdminModeSyncer.d.ts +17 -0
  10. package/dist/components/ArrayContainer.d.ts +59 -0
  11. package/dist/components/CircularProgressCenter.d.ts +11 -0
  12. package/dist/components/ClearFilterSortButton.d.ts +5 -0
  13. package/dist/components/ConfirmationDialog.d.ts +9 -0
  14. package/dist/components/Debug/UIReferenceView.d.ts +1 -0
  15. package/dist/components/Debug/UIStyleGuide.d.ts +1 -0
  16. package/dist/components/DeleteEntityDialog.d.ts +12 -0
  17. package/dist/components/EntityCollectionTable/EntityCollectionRowActions.d.ts +37 -0
  18. package/dist/components/EntityCollectionTable/EntityCollectionTable.d.ts +27 -0
  19. package/dist/components/EntityCollectionTable/EntityCollectionTableProps.d.ts +128 -0
  20. package/dist/components/EntityCollectionTable/PropertyTableCell.d.ts +25 -0
  21. package/dist/components/EntityCollectionTable/column_utils.d.ts +15 -0
  22. package/dist/components/EntityCollectionTable/fields/TableMultipleRelationField.d.ts +20 -0
  23. package/dist/components/EntityCollectionTable/fields/TableReferenceField.d.ts +21 -0
  24. package/dist/components/EntityCollectionTable/fields/TableRelationField.d.ts +21 -0
  25. package/dist/components/EntityCollectionTable/fields/TableRelationSelectorField.d.ts +20 -0
  26. package/dist/components/EntityCollectionTable/fields/TableStorageUpload.d.ts +32 -0
  27. package/dist/components/EntityCollectionTable/index.d.ts +6 -0
  28. package/dist/components/EntityCollectionTable/internal/CollectionTableToolbar.d.ts +16 -0
  29. package/dist/components/EntityCollectionTable/internal/EntityTableCell.d.ts +32 -0
  30. package/dist/components/EntityCollectionTable/internal/EntityTableCellActions.d.ts +9 -0
  31. package/dist/components/EntityCollectionTable/internal/common.d.ts +4 -0
  32. package/dist/components/EntityCollectionTable/internal/popup_field/PopupFormField.d.ts +26 -0
  33. package/dist/components/EntityCollectionTable/internal/popup_field/useDraggable.d.ts +13 -0
  34. package/dist/components/EntityCollectionTable/internal/popup_field/useWindowSize.d.ts +6 -0
  35. package/dist/components/EntityCollectionView/Board.d.ts +2 -0
  36. package/dist/components/EntityCollectionView/BoardColumn.d.ts +42 -0
  37. package/dist/components/EntityCollectionView/BoardColumnTitle.d.ts +9 -0
  38. package/dist/components/EntityCollectionView/BoardSortableList.d.ts +14 -0
  39. package/dist/components/EntityCollectionView/EntityBoardCard.d.ts +26 -0
  40. package/dist/components/EntityCollectionView/EntityCard.d.ts +19 -0
  41. package/dist/components/EntityCollectionView/EntityCollectionBoardView.d.ts +20 -0
  42. package/dist/components/EntityCollectionView/EntityCollectionCardView.d.ts +31 -0
  43. package/dist/components/EntityCollectionView/EntityCollectionView.d.ts +54 -0
  44. package/dist/components/EntityCollectionView/EntityCollectionViewActions.d.ts +14 -0
  45. package/dist/components/EntityCollectionView/EntityCollectionViewStartActions.d.ts +15 -0
  46. package/dist/components/EntityCollectionView/FiltersDialog.d.ts +14 -0
  47. package/dist/components/EntityCollectionView/ViewModeToggle.d.ts +44 -0
  48. package/dist/components/EntityCollectionView/board_types.d.ts +105 -0
  49. package/dist/components/EntityCollectionView/useBoardDataController.d.ts +60 -0
  50. package/dist/components/EntityCollectionView/useSelectionController.d.ts +2 -0
  51. package/dist/components/EntityCollectionView/utils.d.ts +3 -0
  52. package/dist/components/EntityJsonPreview.d.ts +3 -0
  53. package/dist/components/EntityPreview.d.ts +54 -0
  54. package/dist/components/EntityView.d.ts +11 -0
  55. package/dist/components/ErrorBoundary.d.ts +11 -0
  56. package/dist/components/ErrorTooltip.d.ts +2 -0
  57. package/dist/components/ErrorView.d.ts +21 -0
  58. package/dist/components/FieldCaption.d.ts +5 -0
  59. package/dist/components/HomePage/ContentHomePage.d.ts +11 -0
  60. package/dist/components/HomePage/FavouritesView.d.ts +3 -0
  61. package/dist/components/HomePage/HomePageDnD.d.ts +77 -0
  62. package/dist/components/HomePage/NavigationCard.d.ts +10 -0
  63. package/dist/components/HomePage/NavigationCardBinding.d.ts +18 -0
  64. package/dist/components/HomePage/NavigationGroup.d.ts +11 -0
  65. package/dist/components/HomePage/RenameGroupDialog.d.ts +9 -0
  66. package/dist/components/HomePage/SmallNavigationCard.d.ts +6 -0
  67. package/dist/components/HomePage/StudioHomePage.d.ts +9 -0
  68. package/dist/components/HomePage/index.d.ts +5 -0
  69. package/dist/components/NotFoundPage.d.ts +1 -0
  70. package/dist/components/PropertyCollectionView.d.ts +22 -0
  71. package/dist/components/PropertyConfigBadge.d.ts +6 -0
  72. package/dist/components/PropertyIdCopyTooltip.d.ts +8 -0
  73. package/dist/components/RebaseLogo.d.ts +7 -0
  74. package/dist/components/ReferenceTable/EntitySelectionTable.d.ts +58 -0
  75. package/dist/components/ReferenceWidget.d.ts +29 -0
  76. package/dist/components/RelationSelector.d.ts +32 -0
  77. package/dist/components/SearchIconsView.d.ts +5 -0
  78. package/dist/components/SelectableTable/SelectableTable.d.ts +89 -0
  79. package/dist/components/SelectableTable/SelectableTableContext.d.ts +4 -0
  80. package/dist/components/SelectableTable/filters/BooleanFilterField.d.ts +9 -0
  81. package/dist/components/SelectableTable/filters/DateTimeFilterField.d.ts +12 -0
  82. package/dist/components/SelectableTable/filters/ReferenceFilterField.d.ts +15 -0
  83. package/dist/components/SelectableTable/filters/RelationFilterField.d.ts +12 -0
  84. package/dist/components/SelectableTable/filters/StringNumberFilterField.d.ts +13 -0
  85. package/dist/components/UnsavedChangesDialog.d.ts +9 -0
  86. package/dist/components/UserDisplay.d.ts +7 -0
  87. package/dist/components/UserSettingsView.d.ts +1 -0
  88. package/dist/components/VirtualTable/VirtualTable.d.ts +11 -0
  89. package/dist/components/VirtualTable/VirtualTableCell.d.ts +20 -0
  90. package/dist/components/VirtualTable/VirtualTableHeader.d.ts +29 -0
  91. package/dist/components/VirtualTable/VirtualTableHeaderRow.d.ts +2 -0
  92. package/dist/components/VirtualTable/VirtualTableProps.d.ts +239 -0
  93. package/dist/components/VirtualTable/VirtualTableRow.d.ts +3 -0
  94. package/dist/components/VirtualTable/fields/VirtualTableDateField.d.ts +12 -0
  95. package/dist/components/VirtualTable/fields/VirtualTableInput.d.ts +9 -0
  96. package/dist/components/VirtualTable/fields/VirtualTableNumberInput.d.ts +8 -0
  97. package/dist/components/VirtualTable/fields/VirtualTableSelect.d.ts +15 -0
  98. package/dist/components/VirtualTable/fields/VirtualTableSwitch.d.ts +7 -0
  99. package/dist/components/VirtualTable/fields/VirtualTableUserSelect.d.ts +12 -0
  100. package/dist/components/VirtualTable/index.d.ts +3 -0
  101. package/dist/components/VirtualTable/types.d.ts +37 -0
  102. package/dist/components/admin/RoleChip.d.ts +4 -0
  103. package/dist/components/admin/RolesView.d.ts +4 -0
  104. package/dist/components/admin/UsersView.d.ts +4 -0
  105. package/dist/components/admin/index.d.ts +3 -0
  106. package/dist/components/common/default_entity_actions.d.ts +4 -0
  107. package/dist/components/common/index.d.ts +6 -0
  108. package/dist/components/common/table_height.d.ts +5 -0
  109. package/dist/components/common/types.d.ts +58 -0
  110. package/dist/components/common/useColumnsIds.d.ts +6 -0
  111. package/dist/components/common/useDataSourceTableController.d.ts +44 -0
  112. package/dist/components/common/useDebouncedCallback.d.ts +1 -0
  113. package/dist/components/common/useDebouncedData.d.ts +9 -0
  114. package/dist/components/common/useScrollRestoration.d.ts +14 -0
  115. package/dist/components/common/useTableSearchHelper.d.ts +11 -0
  116. package/dist/components/index.d.ts +35 -0
  117. package/dist/contexts/AdminModeController.d.ts +4 -0
  118. package/dist/contexts/AnalyticsContext.d.ts +3 -0
  119. package/dist/contexts/AuthControllerContext.d.ts +3 -0
  120. package/dist/contexts/BreacrumbsContext.d.ts +8 -0
  121. package/dist/contexts/CustomizationControllerContext.d.ts +3 -0
  122. package/dist/contexts/DataSourceContext.d.ts +3 -0
  123. package/dist/contexts/DialogsProvider.d.ts +4 -0
  124. package/dist/contexts/EffectiveRoleController.d.ts +4 -0
  125. package/dist/contexts/InternalUserManagementContext.d.ts +3 -0
  126. package/dist/contexts/ModeController.d.ts +4 -0
  127. package/dist/contexts/NavigationContext.d.ts +3 -0
  128. package/dist/contexts/SideDialogsControllerContext.d.ts +3 -0
  129. package/dist/contexts/SideEntityControllerContext.d.ts +3 -0
  130. package/dist/contexts/SnackbarProvider.d.ts +2 -0
  131. package/dist/contexts/StorageSourceContext.d.ts +3 -0
  132. package/dist/contexts/UserConfigurationPersistenceContext.d.ts +3 -0
  133. package/dist/contexts/index.d.ts +15 -0
  134. package/dist/core/DefaultAppBar.d.ts +29 -0
  135. package/dist/core/DefaultDrawer.d.ts +29 -0
  136. package/dist/core/DrawerNavigationGroup.d.ts +45 -0
  137. package/dist/core/DrawerNavigationItem.d.ts +10 -0
  138. package/dist/core/EntityEditView.d.ts +47 -0
  139. package/dist/core/EntityEditViewFormActions.d.ts +2 -0
  140. package/dist/core/EntitySidePanel.d.ts +10 -0
  141. package/dist/core/Rebase.d.ts +13 -0
  142. package/dist/core/RebaseRouter.d.ts +4 -0
  143. package/dist/core/RebaseRoutes.d.ts +17 -0
  144. package/dist/core/SideDialogs.d.ts +25 -0
  145. package/dist/core/field_configs.d.ts +6 -0
  146. package/dist/core/index.d.ts +9 -0
  147. package/dist/form/EntityForm.d.ts +7 -0
  148. package/dist/form/EntityFormActions.d.ts +2 -0
  149. package/dist/form/PropertyFieldBinding.d.ts +30 -0
  150. package/dist/form/components/ErrorFocus.d.ts +4 -0
  151. package/dist/form/components/FieldHelperText.d.ts +12 -0
  152. package/dist/form/components/FormEntry.d.ts +6 -0
  153. package/dist/form/components/FormLayout.d.ts +5 -0
  154. package/dist/form/components/LabelWithIcon.d.ts +14 -0
  155. package/dist/form/components/LabelWithIconAndTooltip.d.ts +15 -0
  156. package/dist/form/components/LocalChangesMenu.d.ts +11 -0
  157. package/dist/form/components/StorageItemPreview.d.ts +13 -0
  158. package/dist/form/components/StorageUploadProgress.d.ts +10 -0
  159. package/dist/form/components/index.d.ts +5 -0
  160. package/dist/form/field_bindings/ArrayCustomShapedFieldBinding.d.ts +9 -0
  161. package/dist/form/field_bindings/ArrayOfReferencesFieldBinding.d.ts +11 -0
  162. package/dist/form/field_bindings/BlockFieldBinding.d.ts +10 -0
  163. package/dist/form/field_bindings/DateTimeFieldBinding.d.ts +11 -0
  164. package/dist/form/field_bindings/KeyValueFieldBinding.d.ts +7 -0
  165. package/dist/form/field_bindings/MapFieldBinding.d.ts +9 -0
  166. package/dist/form/field_bindings/MarkdownEditorFieldBinding.d.ts +11 -0
  167. package/dist/form/field_bindings/MultiSelectFieldBinding.d.ts +9 -0
  168. package/dist/form/field_bindings/MultipleRelationFieldBinding.d.ts +9 -0
  169. package/dist/form/field_bindings/ReadOnlyFieldBinding.d.ts +10 -0
  170. package/dist/form/field_bindings/ReferenceAsStringFieldBinding.d.ts +9 -0
  171. package/dist/form/field_bindings/ReferenceFieldBinding.d.ts +9 -0
  172. package/dist/form/field_bindings/RelationFieldBinding.d.ts +2 -0
  173. package/dist/form/field_bindings/RepeatFieldBinding.d.ts +10 -0
  174. package/dist/form/field_bindings/SelectFieldBinding.d.ts +10 -0
  175. package/dist/form/field_bindings/StorageUploadFieldBinding.d.ts +19 -0
  176. package/dist/form/field_bindings/SwitchFieldBinding.d.ts +9 -0
  177. package/dist/form/field_bindings/TextFieldBinding.d.ts +8 -0
  178. package/dist/form/field_bindings/UserSelectFieldBinding.d.ts +12 -0
  179. package/dist/form/index.d.ts +20 -0
  180. package/dist/form/useClearRestoreValue.d.ts +13 -0
  181. package/dist/form/validation.d.ts +26 -0
  182. package/dist/hooks/ApiConfigContext.d.ts +24 -0
  183. package/dist/hooks/data/delete.d.ts +33 -0
  184. package/dist/hooks/data/save.d.ts +37 -0
  185. package/dist/hooks/data/useCollectionFetch.d.ts +50 -0
  186. package/dist/hooks/data/useDataOrder.d.ts +12 -0
  187. package/dist/hooks/data/useDataSource.d.ts +6 -0
  188. package/dist/hooks/data/useEntityFetch.d.ts +29 -0
  189. package/dist/hooks/data/useRelationSelector.d.ts +45 -0
  190. package/dist/hooks/index.d.ts +41 -0
  191. package/dist/hooks/navigation/contexts/CMSUrlContext.d.ts +4 -0
  192. package/dist/hooks/navigation/contexts/CollectionRegistryContext.d.ts +4 -0
  193. package/dist/hooks/navigation/contexts/NavigationStateContext.d.ts +4 -0
  194. package/dist/hooks/navigation/contexts/index.d.ts +3 -0
  195. package/dist/hooks/navigation/useBuildCMSUrlController.d.ts +6 -0
  196. package/dist/hooks/navigation/useBuildCollectionRegistryController.d.ts +7 -0
  197. package/dist/hooks/navigation/useBuildNavigationStateController.d.ts +32 -0
  198. package/dist/hooks/navigation/useNavigationRegistry.d.ts +10 -0
  199. package/dist/hooks/navigation/useNavigationResolution.d.ts +5 -0
  200. package/dist/hooks/navigation/useNavigationURLs.d.ts +11 -0
  201. package/dist/hooks/navigation/useResolvedCollections.d.ts +26 -0
  202. package/dist/hooks/navigation/useResolvedViews.d.ts +28 -0
  203. package/dist/hooks/navigation/useTopLevelNavigation.d.ts +26 -0
  204. package/dist/hooks/navigation/utils.d.ts +12 -0
  205. package/dist/hooks/useAdminModeController.d.ts +19 -0
  206. package/dist/hooks/useAnalyticsController.d.ts +5 -0
  207. package/dist/hooks/useAuthController.d.ts +11 -0
  208. package/dist/hooks/useBackendStorageSource.d.ts +30 -0
  209. package/dist/hooks/useBreadcrumbsController.d.ts +42 -0
  210. package/dist/hooks/useBrowserTitleAndIcon.d.ts +6 -0
  211. package/dist/hooks/useBuildAdminModeController.d.ts +6 -0
  212. package/dist/hooks/useBuildEffectiveRoleController.d.ts +8 -0
  213. package/dist/hooks/useBuildLocalConfigurationPersistence.d.ts +2 -0
  214. package/dist/hooks/useBuildModeController.d.ts +6 -0
  215. package/dist/hooks/useBuildNavigationController.d.ts +16 -0
  216. package/dist/hooks/useClipboard.d.ts +57 -0
  217. package/dist/hooks/useCollapsedGroups.d.ts +12 -0
  218. package/dist/hooks/useCustomizationController.d.ts +11 -0
  219. package/dist/hooks/useDialogsController.d.ts +11 -0
  220. package/dist/hooks/useEffectiveRoleController.d.ts +7 -0
  221. package/dist/hooks/useEntitySelectionDialog.d.ts +18 -0
  222. package/dist/hooks/useInternalUserManagementController.d.ts +12 -0
  223. package/dist/hooks/useLargeLayout.d.ts +1 -0
  224. package/dist/hooks/useModeController.d.ts +19 -0
  225. package/dist/hooks/usePermissions.d.ts +11 -0
  226. package/dist/hooks/useRebaseContext.d.ts +11 -0
  227. package/dist/hooks/useResolvedNavigationFrom.d.ts +72 -0
  228. package/dist/hooks/useSideDialogsController.d.ts +18 -0
  229. package/dist/hooks/useSideEntityController.d.ts +12 -0
  230. package/dist/hooks/useSnackbarController.d.ts +20 -0
  231. package/dist/hooks/useStorageSource.d.ts +6 -0
  232. package/dist/hooks/useUnsavedChangesDialog.d.ts +12 -0
  233. package/dist/hooks/useUserConfigurationPersistence.d.ts +8 -0
  234. package/dist/hooks/useValidateAuthenticator.d.ts +21 -0
  235. package/dist/index.d.ts +15 -0
  236. package/dist/index.es.js +34745 -0
  237. package/dist/index.es.js.map +1 -0
  238. package/dist/index.umd.js +34751 -0
  239. package/dist/index.umd.js.map +1 -0
  240. package/dist/internal/common.d.ts +3 -0
  241. package/dist/internal/useBuildDataSource.d.ts +12 -0
  242. package/dist/internal/useBuildSideDialogsController.d.ts +2 -0
  243. package/dist/internal/useBuildSideEntityController.d.ts +4 -0
  244. package/dist/internal/useRestoreScroll.d.ts +6 -0
  245. package/dist/preview/PropertyPreview.d.ts +6 -0
  246. package/dist/preview/components/ArrayEnumPreview.d.ts +10 -0
  247. package/dist/preview/components/AsyncPreviewComponent.d.ts +11 -0
  248. package/dist/preview/components/BooleanPreview.d.ts +10 -0
  249. package/dist/preview/components/DatePreview.d.ts +17 -0
  250. package/dist/preview/components/EmptyValue.d.ts +6 -0
  251. package/dist/preview/components/EnumValuesChip.d.ts +13 -0
  252. package/dist/preview/components/ImagePreview.d.ts +16 -0
  253. package/dist/preview/components/ReferencePreview.d.ts +16 -0
  254. package/dist/preview/components/RelationPreview.d.ts +16 -0
  255. package/dist/preview/components/StorageThumbnail.d.ts +15 -0
  256. package/dist/preview/components/UrlComponentPreview.d.ts +13 -0
  257. package/dist/preview/components/UserPreview.d.ts +8 -0
  258. package/dist/preview/index.d.ts +24 -0
  259. package/dist/preview/property_previews/ArrayOfMapsPreview.d.ts +5 -0
  260. package/dist/preview/property_previews/ArrayOfReferencesPreview.d.ts +5 -0
  261. package/dist/preview/property_previews/ArrayOfRelationsPreview.d.ts +5 -0
  262. package/dist/preview/property_previews/ArrayOfStorageComponentsPreview.d.ts +5 -0
  263. package/dist/preview/property_previews/ArrayOfStringsPreview.d.ts +5 -0
  264. package/dist/preview/property_previews/ArrayOneOfPreview.d.ts +5 -0
  265. package/dist/preview/property_previews/ArrayPropertyEnumPreview.d.ts +5 -0
  266. package/dist/preview/property_previews/ArrayPropertyPreview.d.ts +5 -0
  267. package/dist/preview/property_previews/MapPropertyPreview.d.ts +8 -0
  268. package/dist/preview/property_previews/NumberPropertyPreview.d.ts +6 -0
  269. package/dist/preview/property_previews/SkeletonPropertyComponent.d.ts +13 -0
  270. package/dist/preview/property_previews/StringPropertyPreview.d.ts +6 -0
  271. package/dist/preview/util.d.ts +6 -0
  272. package/dist/routes/CustomCMSRoute.d.ts +4 -0
  273. package/dist/routes/RebaseRoute.d.ts +1 -0
  274. package/dist/routes/index.d.ts +2 -0
  275. package/dist/util/createFormexStub.d.ts +2 -0
  276. package/dist/util/entity_cache.d.ts +27 -0
  277. package/dist/util/enums.d.ts +5 -0
  278. package/dist/util/icon_list.d.ts +5 -0
  279. package/dist/util/icon_synonyms.d.ts +1853 -0
  280. package/dist/util/icons.d.ts +16 -0
  281. package/dist/util/index.d.ts +11 -0
  282. package/dist/util/previews.d.ts +3 -0
  283. package/dist/util/property_utils.d.ts +23 -0
  284. package/dist/util/useDebouncedCallback.d.ts +1 -0
  285. package/dist/util/useStorageUploadController.d.ts +36 -0
  286. package/dist/util/useTraceUpdate.d.ts +2 -0
  287. package/dist/vitePlugin.d.ts +16 -0
  288. package/package.json +165 -0
  289. package/src/app/AppBar.tsx +18 -0
  290. package/src/app/Drawer.tsx +30 -0
  291. package/src/app/Scaffold.tsx +238 -0
  292. package/src/app/index.ts +4 -0
  293. package/src/app/useApp.tsx +36 -0
  294. package/src/components/AIIcon.tsx +39 -0
  295. package/src/components/AdminModeSyncer.tsx +47 -0
  296. package/src/components/ArrayContainer.tsx +549 -0
  297. package/src/components/CircularProgressCenter.tsx +26 -0
  298. package/src/components/ClearFilterSortButton.tsx +44 -0
  299. package/src/components/ConfirmationDialog.tsx +46 -0
  300. package/src/components/Debug/UIReferenceView.tsx +710 -0
  301. package/src/components/Debug/UIStyleGuide.tsx +164 -0
  302. package/src/components/DeleteEntityDialog.tsx +181 -0
  303. package/src/components/EntityCollectionTable/EntityCollectionRowActions.tsx +225 -0
  304. package/src/components/EntityCollectionTable/EntityCollectionTable.tsx +383 -0
  305. package/src/components/EntityCollectionTable/EntityCollectionTableProps.tsx +180 -0
  306. package/src/components/EntityCollectionTable/PropertyTableCell.tsx +561 -0
  307. package/src/components/EntityCollectionTable/column_utils.tsx +74 -0
  308. package/src/components/EntityCollectionTable/fields/TableMultipleRelationField.tsx +122 -0
  309. package/src/components/EntityCollectionTable/fields/TableReferenceField.tsx +169 -0
  310. package/src/components/EntityCollectionTable/fields/TableRelationField.tsx +177 -0
  311. package/src/components/EntityCollectionTable/fields/TableRelationSelectorField.tsx +42 -0
  312. package/src/components/EntityCollectionTable/fields/TableStorageUpload.tsx +315 -0
  313. package/src/components/EntityCollectionTable/index.tsx +12 -0
  314. package/src/components/EntityCollectionTable/internal/CollectionTableToolbar.tsx +90 -0
  315. package/src/components/EntityCollectionTable/internal/EntityTableCell.tsx +311 -0
  316. package/src/components/EntityCollectionTable/internal/EntityTableCellActions.tsx +82 -0
  317. package/src/components/EntityCollectionTable/internal/common.tsx +72 -0
  318. package/src/components/EntityCollectionTable/internal/popup_field/PopupFormField.tsx +425 -0
  319. package/src/components/EntityCollectionTable/internal/popup_field/useDraggable.tsx +96 -0
  320. package/src/components/EntityCollectionTable/internal/popup_field/useWindowSize.tsx +20 -0
  321. package/src/components/EntityCollectionView/Board.tsx +324 -0
  322. package/src/components/EntityCollectionView/BoardColumn.tsx +158 -0
  323. package/src/components/EntityCollectionView/BoardColumnTitle.tsx +45 -0
  324. package/src/components/EntityCollectionView/BoardSortableList.tsx +172 -0
  325. package/src/components/EntityCollectionView/EntityBoardCard.tsx +200 -0
  326. package/src/components/EntityCollectionView/EntityCard.tsx +225 -0
  327. package/src/components/EntityCollectionView/EntityCollectionBoardView.tsx +746 -0
  328. package/src/components/EntityCollectionView/EntityCollectionCardView.tsx +254 -0
  329. package/src/components/EntityCollectionView/EntityCollectionView.tsx +1220 -0
  330. package/src/components/EntityCollectionView/EntityCollectionViewActions.tsx +142 -0
  331. package/src/components/EntityCollectionView/EntityCollectionViewStartActions.tsx +131 -0
  332. package/src/components/EntityCollectionView/FiltersDialog.tsx +249 -0
  333. package/src/components/EntityCollectionView/ViewModeToggle.tsx +194 -0
  334. package/src/components/EntityCollectionView/board_types.ts +113 -0
  335. package/src/components/EntityCollectionView/useBoardDataController.tsx +490 -0
  336. package/src/components/EntityCollectionView/useSelectionController.tsx +43 -0
  337. package/src/components/EntityCollectionView/utils.ts +19 -0
  338. package/src/components/EntityJsonPreview.tsx +66 -0
  339. package/src/components/EntityPreview.tsx +367 -0
  340. package/src/components/EntityView.tsx +66 -0
  341. package/src/components/ErrorBoundary.tsx +40 -0
  342. package/src/components/ErrorTooltip.tsx +12 -0
  343. package/src/components/ErrorView.tsx +69 -0
  344. package/src/components/FieldCaption.tsx +14 -0
  345. package/src/components/HomePage/ContentHomePage.tsx +634 -0
  346. package/src/components/HomePage/FavouritesView.tsx +59 -0
  347. package/src/components/HomePage/HomePageDnD.tsx +702 -0
  348. package/src/components/HomePage/NavigationCard.tsx +80 -0
  349. package/src/components/HomePage/NavigationCardBinding.tsx +111 -0
  350. package/src/components/HomePage/NavigationGroup.tsx +154 -0
  351. package/src/components/HomePage/RenameGroupDialog.tsx +121 -0
  352. package/src/components/HomePage/SmallNavigationCard.tsx +45 -0
  353. package/src/components/HomePage/StudioHomePage.tsx +231 -0
  354. package/src/components/HomePage/index.tsx +6 -0
  355. package/src/components/NotFoundPage.tsx +25 -0
  356. package/src/components/PropertyCollectionView.tsx +333 -0
  357. package/src/components/PropertyConfigBadge.tsx +27 -0
  358. package/src/components/PropertyIdCopyTooltip.tsx +47 -0
  359. package/src/components/RebaseLogo.tsx +29 -0
  360. package/src/components/ReferenceTable/EntitySelectionTable.tsx +371 -0
  361. package/src/components/ReferenceWidget.tsx +152 -0
  362. package/src/components/RelationSelector.tsx +518 -0
  363. package/src/components/SearchIconsView.tsx +78 -0
  364. package/src/components/SelectableTable/SelectableTable.tsx +344 -0
  365. package/src/components/SelectableTable/SelectableTableContext.tsx +6 -0
  366. package/src/components/SelectableTable/filters/BooleanFilterField.tsx +49 -0
  367. package/src/components/SelectableTable/filters/DateTimeFilterField.tsx +126 -0
  368. package/src/components/SelectableTable/filters/ReferenceFilterField.tsx +203 -0
  369. package/src/components/SelectableTable/filters/RelationFilterField.tsx +138 -0
  370. package/src/components/SelectableTable/filters/StringNumberFilterField.tsx +217 -0
  371. package/src/components/UnsavedChangesDialog.tsx +45 -0
  372. package/src/components/UserDisplay.tsx +55 -0
  373. package/src/components/UserSettingsView.tsx +220 -0
  374. package/src/components/VirtualTable/VirtualTable.performance.test.tsx +386 -0
  375. package/src/components/VirtualTable/VirtualTable.tsx +625 -0
  376. package/src/components/VirtualTable/VirtualTableCell.tsx +58 -0
  377. package/src/components/VirtualTable/VirtualTableHeader.tsx +275 -0
  378. package/src/components/VirtualTable/VirtualTableHeaderRow.tsx +249 -0
  379. package/src/components/VirtualTable/VirtualTableProps.tsx +298 -0
  380. package/src/components/VirtualTable/VirtualTableRow.tsx +52 -0
  381. package/src/components/VirtualTable/fields/VirtualTableDateField.tsx +39 -0
  382. package/src/components/VirtualTable/fields/VirtualTableInput.tsx +93 -0
  383. package/src/components/VirtualTable/fields/VirtualTableNumberInput.tsx +83 -0
  384. package/src/components/VirtualTable/fields/VirtualTableSelect.tsx +133 -0
  385. package/src/components/VirtualTable/fields/VirtualTableSwitch.tsx +32 -0
  386. package/src/components/VirtualTable/fields/VirtualTableUserSelect.tsx +111 -0
  387. package/src/components/VirtualTable/index.tsx +3 -0
  388. package/src/components/VirtualTable/types.tsx +46 -0
  389. package/src/components/admin/RoleChip.tsx +23 -0
  390. package/src/components/admin/RolesView.tsx +408 -0
  391. package/src/components/admin/UsersView.tsx +353 -0
  392. package/src/components/admin/index.ts +3 -0
  393. package/src/components/common/default_entity_actions.tsx +144 -0
  394. package/src/components/common/index.ts +6 -0
  395. package/src/components/common/table_height.tsx +21 -0
  396. package/src/components/common/types.tsx +61 -0
  397. package/src/components/common/useColumnsIds.tsx +210 -0
  398. package/src/components/common/useDataSourceTableController.tsx +480 -0
  399. package/src/components/common/useDebouncedCallback.tsx +20 -0
  400. package/src/components/common/useDebouncedData.ts +49 -0
  401. package/src/components/common/useScrollRestoration.tsx +68 -0
  402. package/src/components/common/useTableSearchHelper.ts +75 -0
  403. package/src/components/index.tsx +49 -0
  404. package/src/contexts/AdminModeController.tsx +11 -0
  405. package/src/contexts/AnalyticsContext.tsx +4 -0
  406. package/src/contexts/AuthControllerContext.tsx +4 -0
  407. package/src/contexts/BreacrumbsContext.tsx +45 -0
  408. package/src/contexts/CustomizationControllerContext.tsx +4 -0
  409. package/src/contexts/DataSourceContext.tsx +4 -0
  410. package/src/contexts/DialogsProvider.tsx +53 -0
  411. package/src/contexts/EffectiveRoleController.tsx +11 -0
  412. package/src/contexts/InternalUserManagementContext.tsx +4 -0
  413. package/src/contexts/ModeController.tsx +11 -0
  414. package/src/contexts/NavigationContext.tsx +4 -0
  415. package/src/contexts/SideDialogsControllerContext.tsx +4 -0
  416. package/src/contexts/SideEntityControllerContext.tsx +4 -0
  417. package/src/contexts/SnackbarProvider.tsx +14 -0
  418. package/src/contexts/StorageSourceContext.tsx +4 -0
  419. package/src/contexts/UserConfigurationPersistenceContext.tsx +4 -0
  420. package/src/contexts/index.ts +15 -0
  421. package/src/core/DefaultAppBar.tsx +274 -0
  422. package/src/core/DefaultDrawer.tsx +267 -0
  423. package/src/core/DrawerNavigationGroup.tsx +117 -0
  424. package/src/core/DrawerNavigationItem.tsx +65 -0
  425. package/src/core/EntityEditView.tsx +590 -0
  426. package/src/core/EntityEditViewFormActions.tsx +343 -0
  427. package/src/core/EntitySidePanel.tsx +173 -0
  428. package/src/core/Rebase.tsx +229 -0
  429. package/src/core/RebaseRouter.tsx +17 -0
  430. package/src/core/RebaseRoutes.tsx +47 -0
  431. package/src/core/SideDialogs.tsx +200 -0
  432. package/src/core/field_configs.tsx +443 -0
  433. package/src/core/index.tsx +14 -0
  434. package/src/form/EntityForm.tsx +820 -0
  435. package/src/form/EntityFormActions.tsx +201 -0
  436. package/src/form/PropertyFieldBinding.tsx +348 -0
  437. package/src/form/components/ErrorFocus.tsx +44 -0
  438. package/src/form/components/FieldHelperText.tsx +45 -0
  439. package/src/form/components/FormEntry.tsx +22 -0
  440. package/src/form/components/FormLayout.tsx +16 -0
  441. package/src/form/components/LabelWithIcon.tsx +43 -0
  442. package/src/form/components/LabelWithIconAndTooltip.tsx +28 -0
  443. package/src/form/components/LocalChangesMenu.tsx +144 -0
  444. package/src/form/components/StorageItemPreview.tsx +79 -0
  445. package/src/form/components/StorageUploadProgress.tsx +105 -0
  446. package/src/form/components/index.tsx +5 -0
  447. package/src/form/field_bindings/ArrayCustomShapedFieldBinding.tsx +105 -0
  448. package/src/form/field_bindings/ArrayOfReferencesFieldBinding.tsx +163 -0
  449. package/src/form/field_bindings/BlockFieldBinding.tsx +268 -0
  450. package/src/form/field_bindings/DateTimeFieldBinding.tsx +70 -0
  451. package/src/form/field_bindings/KeyValueFieldBinding.tsx +567 -0
  452. package/src/form/field_bindings/MapFieldBinding.tsx +156 -0
  453. package/src/form/field_bindings/MarkdownEditorFieldBinding.tsx +146 -0
  454. package/src/form/field_bindings/MultiSelectFieldBinding.tsx +120 -0
  455. package/src/form/field_bindings/MultipleRelationFieldBinding.tsx +151 -0
  456. package/src/form/field_bindings/ReadOnlyFieldBinding.tsx +64 -0
  457. package/src/form/field_bindings/ReferenceAsStringFieldBinding.tsx +135 -0
  458. package/src/form/field_bindings/ReferenceFieldBinding.tsx +134 -0
  459. package/src/form/field_bindings/RelationFieldBinding.tsx +176 -0
  460. package/src/form/field_bindings/RepeatFieldBinding.tsx +136 -0
  461. package/src/form/field_bindings/SelectFieldBinding.tsx +107 -0
  462. package/src/form/field_bindings/StorageUploadFieldBinding.tsx +490 -0
  463. package/src/form/field_bindings/SwitchFieldBinding.tsx +64 -0
  464. package/src/form/field_bindings/TextFieldBinding.tsx +153 -0
  465. package/src/form/field_bindings/UserSelectFieldBinding.tsx +96 -0
  466. package/src/form/index.tsx +27 -0
  467. package/src/form/useClearRestoreValue.tsx +35 -0
  468. package/src/form/validation.ts +532 -0
  469. package/src/hooks/ApiConfigContext.tsx +40 -0
  470. package/src/hooks/data/delete.ts +77 -0
  471. package/src/hooks/data/save.ts +75 -0
  472. package/src/hooks/data/useCollectionFetch.tsx +148 -0
  473. package/src/hooks/data/useDataOrder.ts +26 -0
  474. package/src/hooks/data/useDataSource.tsx +22 -0
  475. package/src/hooks/data/useEntityFetch.tsx +121 -0
  476. package/src/hooks/data/useRelationSelector.tsx +205 -0
  477. package/src/hooks/index.tsx +51 -0
  478. package/src/hooks/navigation/contexts/CMSUrlContext.tsx +24 -0
  479. package/src/hooks/navigation/contexts/CollectionRegistryContext.tsx +19 -0
  480. package/src/hooks/navigation/contexts/NavigationStateContext.tsx +15 -0
  481. package/src/hooks/navigation/contexts/index.ts +14 -0
  482. package/src/hooks/navigation/useBuildCMSUrlController.tsx +68 -0
  483. package/src/hooks/navigation/useBuildCollectionRegistryController.tsx +150 -0
  484. package/src/hooks/navigation/useBuildNavigationStateController.tsx +135 -0
  485. package/src/hooks/navigation/useNavigationRegistry.ts +142 -0
  486. package/src/hooks/navigation/useNavigationResolution.ts +98 -0
  487. package/src/hooks/navigation/useNavigationURLs.ts +56 -0
  488. package/src/hooks/navigation/useResolvedCollections.ts +139 -0
  489. package/src/hooks/navigation/useResolvedViews.tsx +204 -0
  490. package/src/hooks/navigation/useTopLevelNavigation.ts +265 -0
  491. package/src/hooks/navigation/utils.ts +177 -0
  492. package/src/hooks/useAdminModeController.tsx +23 -0
  493. package/src/hooks/useAnalyticsController.tsx +8 -0
  494. package/src/hooks/useAuthController.tsx +14 -0
  495. package/src/hooks/useBackendStorageSource.ts +276 -0
  496. package/src/hooks/useBreadcrumbsController.tsx +49 -0
  497. package/src/hooks/useBrowserTitleAndIcon.tsx +25 -0
  498. package/src/hooks/useBuildAdminModeController.tsx +24 -0
  499. package/src/hooks/useBuildEffectiveRoleController.tsx +30 -0
  500. package/src/hooks/useBuildLocalConfigurationPersistence.tsx +65 -0
  501. package/src/hooks/useBuildModeController.tsx +71 -0
  502. package/src/hooks/useBuildNavigationController.tsx +341 -0
  503. package/src/hooks/useClipboard.tsx +158 -0
  504. package/src/hooks/useCollapsedGroups.ts +72 -0
  505. package/src/hooks/useCustomizationController.tsx +14 -0
  506. package/src/hooks/useDialogsController.tsx +14 -0
  507. package/src/hooks/useEffectiveRoleController.tsx +10 -0
  508. package/src/hooks/useEntitySelectionDialog.tsx +56 -0
  509. package/src/hooks/useInternalUserManagementController.tsx +17 -0
  510. package/src/hooks/useLargeLayout.tsx +65 -0
  511. package/src/hooks/useModeController.tsx +23 -0
  512. package/src/hooks/usePermissions.ts +43 -0
  513. package/src/hooks/useRebaseContext.tsx +86 -0
  514. package/src/hooks/useResolvedNavigationFrom.tsx +158 -0
  515. package/src/hooks/useSideDialogsController.tsx +21 -0
  516. package/src/hooks/useSideEntityController.tsx +15 -0
  517. package/src/hooks/useSnackbarController.tsx +52 -0
  518. package/src/hooks/useStorageSource.tsx +14 -0
  519. package/src/hooks/useUnsavedChangesDialog.tsx +62 -0
  520. package/src/hooks/useUserConfigurationPersistence.tsx +11 -0
  521. package/src/hooks/useValidateAuthenticator.tsx +115 -0
  522. package/src/index.ts +17 -0
  523. package/src/internal/common.tsx +5 -0
  524. package/src/internal/useBuildDataSource.ts +380 -0
  525. package/src/internal/useBuildSideDialogsController.tsx +135 -0
  526. package/src/internal/useBuildSideEntityController.tsx +309 -0
  527. package/src/internal/useRestoreScroll.tsx +60 -0
  528. package/src/preview/PropertyPreview.tsx +308 -0
  529. package/src/preview/components/ArrayEnumPreview.tsx +38 -0
  530. package/src/preview/components/AsyncPreviewComponent.tsx +47 -0
  531. package/src/preview/components/BooleanPreview.tsx +25 -0
  532. package/src/preview/components/DatePreview.tsx +94 -0
  533. package/src/preview/components/EmptyValue.tsx +10 -0
  534. package/src/preview/components/EnumValuesChip.tsx +39 -0
  535. package/src/preview/components/ImagePreview.tsx +111 -0
  536. package/src/preview/components/ReferencePreview.tsx +162 -0
  537. package/src/preview/components/RelationPreview.tsx +153 -0
  538. package/src/preview/components/StorageThumbnail.tsx +91 -0
  539. package/src/preview/components/UrlComponentPreview.tsx +113 -0
  540. package/src/preview/components/UserPreview.tsx +27 -0
  541. package/src/preview/index.ts +26 -0
  542. package/src/preview/property_previews/ArrayOfMapsPreview.tsx +72 -0
  543. package/src/preview/property_previews/ArrayOfReferencesPreview.tsx +43 -0
  544. package/src/preview/property_previews/ArrayOfRelationsPreview.tsx +52 -0
  545. package/src/preview/property_previews/ArrayOfStorageComponentsPreview.tsx +49 -0
  546. package/src/preview/property_previews/ArrayOfStringsPreview.tsx +44 -0
  547. package/src/preview/property_previews/ArrayOneOfPreview.tsx +67 -0
  548. package/src/preview/property_previews/ArrayPropertyEnumPreview.tsx +34 -0
  549. package/src/preview/property_previews/ArrayPropertyPreview.tsx +69 -0
  550. package/src/preview/property_previews/MapPropertyPreview.tsx +145 -0
  551. package/src/preview/property_previews/NumberPropertyPreview.tsx +28 -0
  552. package/src/preview/property_previews/SkeletonPropertyComponent.tsx +275 -0
  553. package/src/preview/property_previews/StringPropertyPreview.tsx +57 -0
  554. package/src/preview/util.ts +30 -0
  555. package/src/routes/CustomCMSRoute.tsx +21 -0
  556. package/src/routes/RebaseRoute.tsx +255 -0
  557. package/src/routes/index.ts +2 -0
  558. package/src/util/createFormexStub.tsx +66 -0
  559. package/src/util/entity_cache.ts +267 -0
  560. package/src/util/enums.ts +32 -0
  561. package/src/util/icon_list.ts +23 -0
  562. package/src/util/icon_synonyms.ts +1853 -0
  563. package/src/util/icons.tsx +87 -0
  564. package/src/util/index.ts +11 -0
  565. package/src/util/previews.ts +50 -0
  566. package/src/util/property_utils.tsx +152 -0
  567. package/src/util/useDebouncedCallback.ts +25 -0
  568. package/src/util/useStorageUploadController.tsx +342 -0
  569. package/src/util/useTraceUpdate.tsx +24 -0
  570. package/src/vitePlugin.ts +47 -0
@@ -0,0 +1,1853 @@
1
+ export declare const iconSynonyms: {
2
+ abc: string;
3
+ access_alarm: string;
4
+ access_alarms: string;
5
+ accessibility: string;
6
+ accessibility_new: string;
7
+ accessible: string;
8
+ accessible_forward: string;
9
+ access_time: string;
10
+ account_balance: string;
11
+ account_balance_wallet: string;
12
+ account_box: string;
13
+ account_circle: string;
14
+ account_tree: string;
15
+ ac_unit: string;
16
+ adb: string;
17
+ add: string;
18
+ add_alarm: string;
19
+ add_alert: string;
20
+ add_a_photo: string;
21
+ add_box: string;
22
+ add_business: string;
23
+ add_card: string;
24
+ add_chart: string;
25
+ add_circle: string;
26
+ add_circle_outline: string;
27
+ add_comment: string;
28
+ add_ic_call: string;
29
+ add_link: string;
30
+ add_location: string;
31
+ add_location_alt: string;
32
+ add_moderator: string;
33
+ add_photo_alternate: string;
34
+ add_road: string;
35
+ add_shopping_cart: string;
36
+ add_task: string;
37
+ add_to_drive: string;
38
+ add_to_home_screen: string;
39
+ add_to_photos: string;
40
+ add_to_queue: string;
41
+ adf_scanner: string;
42
+ adjust: string;
43
+ admin_panel_settings: string;
44
+ ad_units: string;
45
+ agriculture: string;
46
+ air: string;
47
+ airlines: string;
48
+ airline_seat_flat: string;
49
+ airline_seat_flat_angled: string;
50
+ airline_seat_individual_suite: string;
51
+ airline_seat_legroom_extra: string;
52
+ airline_seat_legroom_normal: string;
53
+ airline_seat_legroom_reduced: string;
54
+ airline_seat_recline_extra: string;
55
+ airline_seat_recline_normal: string;
56
+ airline_stops: string;
57
+ airplanemode_active: string;
58
+ airplanemode_inactive: string;
59
+ airplane_ticket: string;
60
+ airplay: string;
61
+ airport_shuttle: string;
62
+ alarm: string;
63
+ alarm_add: string;
64
+ alarm_off: string;
65
+ alarm_on: string;
66
+ album: string;
67
+ align_horizontal_center: string;
68
+ align_horizontal_left: string;
69
+ align_horizontal_right: string;
70
+ align_vertical_bottom: string;
71
+ align_vertical_center: string;
72
+ align_vertical_top: string;
73
+ all_inbox: string;
74
+ all_inclusive: string;
75
+ all_out: string;
76
+ alternate_email: string;
77
+ alt_route: string;
78
+ analytics: string;
79
+ anchor: string;
80
+ android: string;
81
+ animation: string;
82
+ announcement: string;
83
+ aod: string;
84
+ apartment: string;
85
+ api: string;
86
+ app_blocking: string;
87
+ app_registration: string;
88
+ approval: string;
89
+ apps: string;
90
+ app_settings_alt: string;
91
+ app_shortcut: string;
92
+ apps_outage: string;
93
+ architecture: string;
94
+ archive: string;
95
+ arrow_back: string;
96
+ arrow_back_ios: string;
97
+ arrow_back_ios_new: string;
98
+ arrow_circle_down: string;
99
+ arrow_circle_up: string;
100
+ arrow_downward: string;
101
+ arrow_drop_down: string;
102
+ arrow_drop_down_circle: string;
103
+ arrow_drop_up: string;
104
+ arrow_forward: string;
105
+ arrow_forward_ios: string;
106
+ arrow_left: string;
107
+ arrow_right: string;
108
+ arrow_right_alt: string;
109
+ arrow_upward: string;
110
+ article: string;
111
+ art_track: string;
112
+ aspect_ratio: string;
113
+ assessment: string;
114
+ assignment: string;
115
+ assignment_ind: string;
116
+ assignment_late: string;
117
+ assignment_return: string;
118
+ assignment_returned: string;
119
+ assignment_turned_in: string;
120
+ assistant: string;
121
+ assistant_direction: string;
122
+ assistant_photo: string;
123
+ assured_workload: string;
124
+ atm: string;
125
+ attach_email: string;
126
+ attach_file: string;
127
+ attachment: string;
128
+ attach_money: string;
129
+ attractions: string;
130
+ attribution: string;
131
+ audio_file: string;
132
+ audiotrack: string;
133
+ auto_awesome: string;
134
+ auto_awesome_mosaic: string;
135
+ auto_awesome_motion: string;
136
+ auto_delete: string;
137
+ auto_fix_high: string;
138
+ auto_fix_normal: string;
139
+ auto_fix_off: string;
140
+ autofps_select: string;
141
+ auto_graph: string;
142
+ auto_mode: string;
143
+ autorenew: string;
144
+ auto_stories: string;
145
+ av_timer: string;
146
+ baby_changing_station: string;
147
+ backpack: string;
148
+ backspace: string;
149
+ backup: string;
150
+ backup_table: string;
151
+ badge: string;
152
+ bakery_dining: string;
153
+ balance: string;
154
+ balcony: string;
155
+ ballot: string;
156
+ bar_chart: string;
157
+ batch_prediction: string;
158
+ bathroom: string;
159
+ bathtub: string;
160
+ battery_alert: string;
161
+ battery_charging_full: string;
162
+ battery_full: string;
163
+ battery_saver: string;
164
+ battery_std: string;
165
+ battery_unknown: string;
166
+ beach_access: string;
167
+ bed: string;
168
+ bedroom_baby: string;
169
+ bedroom_child: string;
170
+ bedroom_parent: string;
171
+ bedtime: string;
172
+ bedtime_off: string;
173
+ beenhere: string;
174
+ bento: string;
175
+ bike_scooter: string;
176
+ biotech: string;
177
+ blender: string;
178
+ blinds_closed: string;
179
+ block: string;
180
+ bloodtype: string;
181
+ bluetooth: string;
182
+ bluetooth_audio: string;
183
+ bluetooth_connected: string;
184
+ bluetooth_disabled: string;
185
+ bluetooth_drive: string;
186
+ bluetooth_searching: string;
187
+ blur_circular: string;
188
+ blur_linear: string;
189
+ blur_off: string;
190
+ blur_on: string;
191
+ bolt: string;
192
+ book: string;
193
+ bookmark: string;
194
+ bookmark_add: string;
195
+ bookmark_added: string;
196
+ bookmark_border: string;
197
+ bookmark_remove: string;
198
+ bookmarks: string;
199
+ book_online: string;
200
+ border_all: string;
201
+ border_bottom: string;
202
+ border_clear: string;
203
+ border_color: string;
204
+ border_horizontal: string;
205
+ border_inner: string;
206
+ border_left: string;
207
+ border_outer: string;
208
+ border_right: string;
209
+ border_style: string;
210
+ border_top: string;
211
+ border_vertical: string;
212
+ boy: string;
213
+ branding_watermark: string;
214
+ breakfast_dining: string;
215
+ brightness_1: string;
216
+ brightness_2: string;
217
+ brightness_3: string;
218
+ brightness_4: string;
219
+ brightness_5: string;
220
+ brightness_6: string;
221
+ brightness_7: string;
222
+ brightness_auto: string;
223
+ brightness_high: string;
224
+ brightness_low: string;
225
+ brightness_medium: string;
226
+ broken_image: string;
227
+ browser_not_supported: string;
228
+ browser_updated: string;
229
+ brunch_dining: string;
230
+ brush: string;
231
+ bubble_chart: string;
232
+ bug_report: string;
233
+ build: string;
234
+ build_circle: string;
235
+ bungalow: string;
236
+ burst_mode: string;
237
+ bus_alert: string;
238
+ business: string;
239
+ business_center: string;
240
+ cabin: string;
241
+ cable: string;
242
+ cached: string;
243
+ cake: string;
244
+ calculate: string;
245
+ calendar_today: string;
246
+ calendar_view_day: string;
247
+ calendar_view_month: string;
248
+ calendar_view_week: string;
249
+ call: string;
250
+ call_end: string;
251
+ call_made: string;
252
+ call_merge: string;
253
+ call_missed: string;
254
+ call_missed_outgoing: string;
255
+ call_received: string;
256
+ call_split: string;
257
+ call_to_action: string;
258
+ camera: string;
259
+ camera_alt: string;
260
+ camera_enhance: string;
261
+ camera_front: string;
262
+ camera_indoor: string;
263
+ camera_outdoor: string;
264
+ camera_rear: string;
265
+ camera_roll: string;
266
+ cameraswitch: string;
267
+ campaign: string;
268
+ cancel: string;
269
+ cancel_presentation: string;
270
+ cancel_schedule_send: string;
271
+ candlestick_chart: string;
272
+ card_giftcard: string;
273
+ card_membership: string;
274
+ card_travel: string;
275
+ carpenter: string;
276
+ car_rental: string;
277
+ car_repair: string;
278
+ cases: string;
279
+ casino: string;
280
+ cast: string;
281
+ cast_connected: string;
282
+ cast_for_education: string;
283
+ category: string;
284
+ celebration: string;
285
+ cell_tower: string;
286
+ cell_wifi: string;
287
+ center_focus_strong: string;
288
+ center_focus_weak: string;
289
+ chair: string;
290
+ chair_alt: string;
291
+ chalet: string;
292
+ change_circle: string;
293
+ change_history: string;
294
+ charging_station: string;
295
+ chat: string;
296
+ chat_bubble: string;
297
+ chat_bubble_outline: string;
298
+ check: string;
299
+ check_box: string;
300
+ check_box_outline_blank: string;
301
+ check_circle: string;
302
+ check_circle_outline: string;
303
+ checkroom: string;
304
+ chevron_left: string;
305
+ chevron_right: string;
306
+ child_care: string;
307
+ child_friendly: string;
308
+ chrome_reader_mode: string;
309
+ circle: string;
310
+ circle_notifications: string;
311
+ class: string;
312
+ clean_hands: string;
313
+ cleaning_services: string;
314
+ clear: string;
315
+ clear_all: string;
316
+ close: string;
317
+ closed_caption: string;
318
+ closed_caption_disabled: string;
319
+ closed_caption_off: string;
320
+ close_fullscreen: string;
321
+ cloud: string;
322
+ cloud_circle: string;
323
+ cloud_done: string;
324
+ cloud_download: string;
325
+ cloud_off: string;
326
+ cloud_queue: string;
327
+ cloud_sync: string;
328
+ cloud_upload: string;
329
+ co2: string;
330
+ code: string;
331
+ code_off: string;
332
+ coffee: string;
333
+ coffee_maker: string;
334
+ collections: string;
335
+ collections_bookmark: string;
336
+ colorize: string;
337
+ color_lens: string;
338
+ comment: string;
339
+ comment_bank: string;
340
+ comments_disabled: string;
341
+ commit: string;
342
+ commute: string;
343
+ compare: string;
344
+ compare_arrows: string;
345
+ compass_calibration: string;
346
+ compress: string;
347
+ computer: string;
348
+ confirmation_number: string;
349
+ connected_tv: string;
350
+ connecting_airports: string;
351
+ connect_without_contact: string;
352
+ construction: string;
353
+ contactless: string;
354
+ contact_mail: string;
355
+ contact_page: string;
356
+ contact_phone: string;
357
+ contacts: string;
358
+ contact_support: string;
359
+ content_copy: string;
360
+ content_cut: string;
361
+ content_paste: string;
362
+ content_paste_go: string;
363
+ content_paste_off: string;
364
+ content_paste_search: string;
365
+ contrast: string;
366
+ control_camera: string;
367
+ control_point: string;
368
+ control_point_duplicate: string;
369
+ co_present: string;
370
+ copy_all: string;
371
+ copyright: string;
372
+ coronavirus: string;
373
+ corporate_fare: string;
374
+ cottage: string;
375
+ countertops: string;
376
+ create: string;
377
+ create_new_folder: string;
378
+ credit_card: string;
379
+ credit_card_off: string;
380
+ credit_score: string;
381
+ crib: string;
382
+ crop: string;
383
+ crop_din: string;
384
+ crop_free: string;
385
+ crop_landscape: string;
386
+ crop_original: string;
387
+ crop_portrait: string;
388
+ crop_rotate: string;
389
+ crop_square: string;
390
+ css: string;
391
+ currency_exchange: string;
392
+ currency_franc: string;
393
+ currency_lira: string;
394
+ currency_pound: string;
395
+ currency_ruble: string;
396
+ currency_rupee: string;
397
+ currency_yen: string;
398
+ currency_yuan: string;
399
+ curtains: string;
400
+ curtains_closed: string;
401
+ dangerous: string;
402
+ dark_mode: string;
403
+ dashboard: string;
404
+ dashboard_customize: string;
405
+ data_saver_off: string;
406
+ data_saver_on: string;
407
+ data_thresholding: string;
408
+ data_usage: string;
409
+ date_range: string;
410
+ deblur: string;
411
+ deck: string;
412
+ dehaze: string;
413
+ delete: string;
414
+ delete_forever: string;
415
+ delete_outline: string;
416
+ delete_sweep: string;
417
+ density_large: string;
418
+ density_medium: string;
419
+ density_small: string;
420
+ departure_board: string;
421
+ description: string;
422
+ desktop_access_disabled: string;
423
+ desktop_mac: string;
424
+ desktop_windows: string;
425
+ details: string;
426
+ developer_board: string;
427
+ developer_board_off: string;
428
+ developer_mode: string;
429
+ device_hub: string;
430
+ devices: string;
431
+ devices_other: string;
432
+ device_thermostat: string;
433
+ device_unknown: string;
434
+ dialer_sip: string;
435
+ dialpad: string;
436
+ diamond: string;
437
+ difference: string;
438
+ dining: string;
439
+ dinner_dining: string;
440
+ directions: string;
441
+ directions_bike: string;
442
+ directions_boat: string;
443
+ directions_boat_filled: string;
444
+ directions_bus: string;
445
+ directions_bus_filled: string;
446
+ directions_car: string;
447
+ directions_car_filled: string;
448
+ directions_off: string;
449
+ directions_railway: string;
450
+ directions_railway_filled: string;
451
+ directions_run: string;
452
+ directions_subway: string;
453
+ directions_subway_filled: string;
454
+ directions_transit: string;
455
+ directions_transit_filled: string;
456
+ directions_walk: string;
457
+ dirty_lens: string;
458
+ disabled_by_default: string;
459
+ disc_full: string;
460
+ display_settings: string;
461
+ dns: string;
462
+ dock: string;
463
+ document_scanner: string;
464
+ do_disturb: string;
465
+ do_disturb_alt: string;
466
+ do_disturb_off: string;
467
+ do_disturb_on: string;
468
+ domain: string;
469
+ domain_add: string;
470
+ domain_disabled: string;
471
+ domain_verification: string;
472
+ done: string;
473
+ done_all: string;
474
+ done_outline: string;
475
+ do_not_disturb: string;
476
+ do_not_disturb_alt: string;
477
+ do_not_disturb_off: string;
478
+ do_not_disturb_on: string;
479
+ do_not_disturb_on_total_silence: string;
480
+ do_not_step: string;
481
+ do_not_touch: string;
482
+ donut_large: string;
483
+ donut_small: string;
484
+ door_back: string;
485
+ doorbell: string;
486
+ door_front: string;
487
+ door_sliding: string;
488
+ double_arrow: string;
489
+ downhill_skiing: string;
490
+ download: string;
491
+ download_done: string;
492
+ download_for_offline: string;
493
+ downloading: string;
494
+ drafts: string;
495
+ drag_handle: string;
496
+ drag_indicator: string;
497
+ drive_eta: string;
498
+ drive_file_move: string;
499
+ drive_file_rename_outline: string;
500
+ drive_folder_upload: string;
501
+ dry: string;
502
+ dry_cleaning: string;
503
+ duo: string;
504
+ dvr: string;
505
+ dynamic_feed: string;
506
+ dynamic_form: string;
507
+ earbuds: string;
508
+ earbuds_battery: string;
509
+ east: string;
510
+ edgesensor_high: string;
511
+ edgesensor_low: string;
512
+ edit: string;
513
+ edit_attributes: string;
514
+ edit_location: string;
515
+ edit_location_alt: string;
516
+ edit_notifications: string;
517
+ edit_off: string;
518
+ edit_road: string;
519
+ egg: string;
520
+ egg_alt: string;
521
+ eject: string;
522
+ elderly: string;
523
+ elderly_woman: string;
524
+ electrical_services: string;
525
+ electric_bike: string;
526
+ electric_bolt: string;
527
+ electric_car: string;
528
+ electric_meter: string;
529
+ electric_moped: string;
530
+ electric_rickshaw: string;
531
+ electric_scooter: string;
532
+ elevator: string;
533
+ email: string;
534
+ e_mobiledata: string;
535
+ emoji_emotions: string;
536
+ emoji_events: string;
537
+ emoji_food_beverage: string;
538
+ emoji_nature: string;
539
+ emoji_objects: string;
540
+ emoji_people: string;
541
+ emoji_symbols: string;
542
+ emoji_transportation: string;
543
+ energy_savings_leaf: string;
544
+ engineering: string;
545
+ enhanced_encryption: string;
546
+ equalizer: string;
547
+ error: string;
548
+ error_outline: string;
549
+ escalator: string;
550
+ escalator_warning: string;
551
+ euro: string;
552
+ euro_symbol: string;
553
+ event: string;
554
+ event_available: string;
555
+ event_busy: string;
556
+ event_note: string;
557
+ event_repeat: string;
558
+ event_seat: string;
559
+ ev_station: string;
560
+ exit_to_app: string;
561
+ expand: string;
562
+ expand_circle_down: string;
563
+ expand_less: string;
564
+ expand_more: string;
565
+ explicit: string;
566
+ explore: string;
567
+ explore_off: string;
568
+ exposure: string;
569
+ extension: string;
570
+ extension_off: string;
571
+ face: string;
572
+ face_retouching_natural: string;
573
+ face_retouching_off: string;
574
+ fact_check: string;
575
+ factory: string;
576
+ family_restroom: string;
577
+ fastfood: string;
578
+ fast_forward: string;
579
+ fast_rewind: string;
580
+ favorite: string;
581
+ favorite_border: string;
582
+ fax: string;
583
+ featured_play_list: string;
584
+ featured_video: string;
585
+ feed: string;
586
+ feedback: string;
587
+ female: string;
588
+ fence: string;
589
+ festival: string;
590
+ fiber_dvr: string;
591
+ fiber_manual_record: string;
592
+ fiber_new: string;
593
+ fiber_pin: string;
594
+ fiber_smart_record: string;
595
+ file_copy: string;
596
+ file_download: string;
597
+ file_download_done: string;
598
+ file_download_off: string;
599
+ file_open: string;
600
+ file_present: string;
601
+ file_upload: string;
602
+ filter: string;
603
+ filter_1: string;
604
+ filter_2: string;
605
+ filter_3: string;
606
+ filter_4: string;
607
+ filter_5: string;
608
+ filter_6: string;
609
+ filter_7: string;
610
+ filter_8: string;
611
+ filter_9: string;
612
+ filter_9_plus: string;
613
+ filter_alt: string;
614
+ filter_alt_off: string;
615
+ filter_b_and_w: string;
616
+ filter_center_focus: string;
617
+ filter_drama: string;
618
+ filter_frames: string;
619
+ filter_hdr: string;
620
+ filter_list: string;
621
+ filter_list_off: string;
622
+ filter_none: string;
623
+ filter_tilt_shift: string;
624
+ filter_vintage: string;
625
+ find_in_page: string;
626
+ find_replace: string;
627
+ fingerprint: string;
628
+ fire_extinguisher: string;
629
+ fireplace: string;
630
+ first_page: string;
631
+ fitness_center: string;
632
+ fit_screen: string;
633
+ flag: string;
634
+ flag_circle: string;
635
+ flaky: string;
636
+ flare: string;
637
+ flash_auto: string;
638
+ flashlight_off: string;
639
+ flashlight_on: string;
640
+ flash_off: string;
641
+ flash_on: string;
642
+ flatware: string;
643
+ flight: string;
644
+ flight_class: string;
645
+ flight_land: string;
646
+ flight_takeoff: string;
647
+ flip: string;
648
+ flip_camera_android: string;
649
+ flip_camera_ios: string;
650
+ flip_to_back: string;
651
+ flip_to_front: string;
652
+ flutter_dash: string;
653
+ fmd_bad: string;
654
+ fmd_good: string;
655
+ folder: string;
656
+ folder_delete: string;
657
+ folder_off: string;
658
+ folder_open: string;
659
+ folder_shared: string;
660
+ folder_special: string;
661
+ folder_zip: string;
662
+ follow_the_signs: string;
663
+ font_download: string;
664
+ font_download_off: string;
665
+ food_bank: string;
666
+ forest: string;
667
+ fork_left: string;
668
+ fork_right: string;
669
+ format_align_center: string;
670
+ format_align_justify: string;
671
+ format_align_left: string;
672
+ format_align_right: string;
673
+ format_bold: string;
674
+ format_clear: string;
675
+ format_color_fill: string;
676
+ format_color_reset: string;
677
+ format_color_text: string;
678
+ format_indent_decrease: string;
679
+ format_indent_increase: string;
680
+ format_italic: string;
681
+ format_line_spacing: string;
682
+ format_list_bulleted: string;
683
+ format_list_numbered: string;
684
+ format_list_numbered_rtl: string;
685
+ format_overline: string;
686
+ format_paint: string;
687
+ format_quote: string;
688
+ format_shapes: string;
689
+ format_size: string;
690
+ format_strikethrough: string;
691
+ format_textdirection_l_to_r: string;
692
+ format_textdirection_r_to_l: string;
693
+ format_underlined: string;
694
+ forum: string;
695
+ forward: string;
696
+ forward_10: string;
697
+ forward_30: string;
698
+ forward_5: string;
699
+ forward_to_inbox: string;
700
+ foundation: string;
701
+ free_breakfast: string;
702
+ fullscreen: string;
703
+ fullscreen_exit: string;
704
+ functions: string;
705
+ gamepad: string;
706
+ games: string;
707
+ garage: string;
708
+ gas_meter: string;
709
+ gavel: string;
710
+ gesture: string;
711
+ get_app: string;
712
+ gif: string;
713
+ gif_box: string;
714
+ girl: string;
715
+ gite: string;
716
+ g_mobiledata: string;
717
+ golf_course: string;
718
+ gpp_bad: string;
719
+ gpp_good: string;
720
+ gpp_maybe: string;
721
+ gps_fixed: string;
722
+ gps_not_fixed: string;
723
+ gps_off: string;
724
+ grade: string;
725
+ gradient: string;
726
+ grading: string;
727
+ grain: string;
728
+ graphic_eq: string;
729
+ grass: string;
730
+ grid_goldenratio: string;
731
+ grid_off: string;
732
+ grid_on: string;
733
+ grid_view: string;
734
+ group: string;
735
+ group_add: string;
736
+ group_remove: string;
737
+ groups: string;
738
+ group_work: string;
739
+ g_translate: string;
740
+ hail: string;
741
+ handyman: string;
742
+ hardware: string;
743
+ hd: string;
744
+ hdr_auto: string;
745
+ hdr_auto_select: string;
746
+ hdr_enhanced_select: string;
747
+ hdr_off: string;
748
+ hdr_off_select: string;
749
+ hdr_on: string;
750
+ hdr_on_select: string;
751
+ hdr_plus: string;
752
+ hdr_strong: string;
753
+ hdr_weak: string;
754
+ headphones: string;
755
+ headphones_battery: string;
756
+ headset: string;
757
+ headset_mic: string;
758
+ headset_off: string;
759
+ healing: string;
760
+ health_and_safety: string;
761
+ hearing: string;
762
+ hearing_disabled: string;
763
+ heart_broken: string;
764
+ heat_pump: string;
765
+ height: string;
766
+ help: string;
767
+ help_center: string;
768
+ help_outline: string;
769
+ hevc: string;
770
+ hexagon: string;
771
+ hide_image: string;
772
+ hide_source: string;
773
+ highlight: string;
774
+ highlight_off: string;
775
+ high_quality: string;
776
+ hiking: string;
777
+ history: string;
778
+ history_edu: string;
779
+ history_toggle_off: string;
780
+ hls: string;
781
+ hls_off: string;
782
+ h_mobiledata: string;
783
+ holiday_village: string;
784
+ home: string;
785
+ home_max: string;
786
+ home_mini: string;
787
+ home_repair_service: string;
788
+ home_work: string;
789
+ horizontal_rule: string;
790
+ horizontal_split: string;
791
+ hotel: string;
792
+ hot_tub: string;
793
+ hourglass_bottom: string;
794
+ hourglass_disabled: string;
795
+ hourglass_empty: string;
796
+ hourglass_full: string;
797
+ hourglass_top: string;
798
+ house: string;
799
+ houseboat: string;
800
+ house_siding: string;
801
+ how_to_reg: string;
802
+ how_to_vote: string;
803
+ h_plus_mobiledata: string;
804
+ html: string;
805
+ http: string;
806
+ https: string;
807
+ hub: string;
808
+ hvac: string;
809
+ icecream: string;
810
+ ice_skating: string;
811
+ image: string;
812
+ image_aspect_ratio: string;
813
+ image_not_supported: string;
814
+ image_search: string;
815
+ imagesearch_roller: string;
816
+ important_devices: string;
817
+ import_contacts: string;
818
+ import_export: string;
819
+ inbox: string;
820
+ indeterminate_check_box: string;
821
+ info: string;
822
+ input: string;
823
+ insert_chart: string;
824
+ insert_chart_outlined: string;
825
+ insert_comment: string;
826
+ insert_drive_file: string;
827
+ insert_emoticon: string;
828
+ insert_invitation: string;
829
+ insert_link: string;
830
+ insert_page_break: string;
831
+ insert_photo: string;
832
+ insights: string;
833
+ install_desktop: string;
834
+ install_mobile: string;
835
+ integration_instructions: string;
836
+ interests: string;
837
+ interpreter_mode: string;
838
+ inventory: string;
839
+ invert_colors: string;
840
+ invert_colors_off: string;
841
+ ios_share: string;
842
+ iron: string;
843
+ iso: string;
844
+ javascript: string;
845
+ join_full: string;
846
+ join_inner: string;
847
+ join_left: string;
848
+ join_right: string;
849
+ kayaking: string;
850
+ key: string;
851
+ keyboard: string;
852
+ keyboard_alt: string;
853
+ keyboard_arrow_down: string;
854
+ keyboard_arrow_left: string;
855
+ keyboard_arrow_right: string;
856
+ keyboard_arrow_up: string;
857
+ keyboard_backspace: string;
858
+ keyboard_capslock: string;
859
+ keyboard_command_key: string;
860
+ keyboard_control_key: string;
861
+ keyboard_double_arrow_down: string;
862
+ keyboard_double_arrow_left: string;
863
+ keyboard_double_arrow_right: string;
864
+ keyboard_double_arrow_up: string;
865
+ keyboard_hide: string;
866
+ keyboard_option_key: string;
867
+ keyboard_return: string;
868
+ keyboard_tab: string;
869
+ keyboard_voice: string;
870
+ key_off: string;
871
+ king_bed: string;
872
+ kitchen: string;
873
+ kitesurfing: string;
874
+ label: string;
875
+ label_important: string;
876
+ label_off: string;
877
+ lan: string;
878
+ landscape: string;
879
+ language: string;
880
+ laptop: string;
881
+ laptop_chromebook: string;
882
+ laptop_mac: string;
883
+ laptop_windows: string;
884
+ last_page: string;
885
+ launch: string;
886
+ layers: string;
887
+ layers_clear: string;
888
+ leaderboard: string;
889
+ leak_add: string;
890
+ leak_remove: string;
891
+ legend_toggle: string;
892
+ lens: string;
893
+ lens_blur: string;
894
+ library_add: string;
895
+ library_add_check: string;
896
+ library_books: string;
897
+ library_music: string;
898
+ light: string;
899
+ lightbulb: string;
900
+ lightbulb_circle: string;
901
+ light_mode: string;
902
+ linear_scale: string;
903
+ line_axis: string;
904
+ line_style: string;
905
+ line_weight: string;
906
+ link: string;
907
+ linked_camera: string;
908
+ link_off: string;
909
+ liquor: string;
910
+ list: string;
911
+ list_alt: string;
912
+ live_help: string;
913
+ live_tv: string;
914
+ living: string;
915
+ local_activity: string;
916
+ local_airport: string;
917
+ local_atm: string;
918
+ local_bar: string;
919
+ local_cafe: string;
920
+ local_car_wash: string;
921
+ local_convenience_store: string;
922
+ local_dining: string;
923
+ local_drink: string;
924
+ local_fire_department: string;
925
+ local_florist: string;
926
+ local_gas_station: string;
927
+ local_grocery_store: string;
928
+ local_hospital: string;
929
+ local_hotel: string;
930
+ local_laundry_service: string;
931
+ local_library: string;
932
+ local_mall: string;
933
+ local_offer: string;
934
+ local_parking: string;
935
+ local_pharmacy: string;
936
+ local_phone: string;
937
+ local_pizza: string;
938
+ local_police: string;
939
+ local_post_office: string;
940
+ local_printshop: string;
941
+ local_see: string;
942
+ local_shipping: string;
943
+ local_taxi: string;
944
+ location_city: string;
945
+ location_disabled: string;
946
+ location_off: string;
947
+ location_on: string;
948
+ location_searching: string;
949
+ lock: string;
950
+ lock_clock: string;
951
+ lock_open: string;
952
+ lock_reset: string;
953
+ login: string;
954
+ logo_dev: string;
955
+ logout: string;
956
+ looks: string;
957
+ looks_3: string;
958
+ looks_4: string;
959
+ looks_5: string;
960
+ looks_6: string;
961
+ looks_one: string;
962
+ looks_two: string;
963
+ loop: string;
964
+ loupe: string;
965
+ low_priority: string;
966
+ loyalty: string;
967
+ lte_mobiledata: string;
968
+ lte_plus_mobiledata: string;
969
+ luggage: string;
970
+ lunch_dining: string;
971
+ lyrics: string;
972
+ mail: string;
973
+ mail_lock: string;
974
+ mail_outline: string;
975
+ male: string;
976
+ man: string;
977
+ manage_accounts: string;
978
+ manage_search: string;
979
+ map: string;
980
+ maps_home_work: string;
981
+ maps_ugc: string;
982
+ margin: string;
983
+ mark_as_unread: string;
984
+ mark_chat_read: string;
985
+ mark_chat_unread: string;
986
+ mark_email_read: string;
987
+ mark_email_unread: string;
988
+ markunread: string;
989
+ markunread_mailbox: string;
990
+ masks: string;
991
+ maximize: string;
992
+ media_bluetooth_off: string;
993
+ media_bluetooth_on: string;
994
+ mediation: string;
995
+ medical_services: string;
996
+ medication: string;
997
+ meeting_room: string;
998
+ memory: string;
999
+ menu: string;
1000
+ menu_book: string;
1001
+ menu_open: string;
1002
+ merge: string;
1003
+ merge_type: string;
1004
+ message: string;
1005
+ mic: string;
1006
+ mic_external_off: string;
1007
+ mic_external_on: string;
1008
+ mic_none: string;
1009
+ mic_off: string;
1010
+ microwave: string;
1011
+ military_tech: string;
1012
+ minimize: string;
1013
+ missed_video_call: string;
1014
+ mms: string;
1015
+ mobiledata_off: string;
1016
+ mobile_friendly: string;
1017
+ mobile_off: string;
1018
+ mobile_screen_share: string;
1019
+ mode: string;
1020
+ mode_comment: string;
1021
+ mode_edit: string;
1022
+ mode_edit_outline: string;
1023
+ model_training: string;
1024
+ mode_night: string;
1025
+ mode_of_travel: string;
1026
+ mode_standby: string;
1027
+ monetization_on: string;
1028
+ money: string;
1029
+ money_off: string;
1030
+ money_off_csred: string;
1031
+ monitor: string;
1032
+ monitor_weight: string;
1033
+ monochrome_photos: string;
1034
+ mood: string;
1035
+ mood_bad: string;
1036
+ more: string;
1037
+ more_horiz: string;
1038
+ more_time: string;
1039
+ more_vert: string;
1040
+ motion_photos_auto: string;
1041
+ motion_photos_off: string;
1042
+ mouse: string;
1043
+ move_down: string;
1044
+ move_to_inbox: string;
1045
+ move_up: string;
1046
+ movie: string;
1047
+ movie_creation: string;
1048
+ movie_filter: string;
1049
+ moving: string;
1050
+ mp: string;
1051
+ multiline_chart: string;
1052
+ multiple_stop: string;
1053
+ museum: string;
1054
+ music_note: string;
1055
+ music_off: string;
1056
+ music_video: string;
1057
+ my_location: string;
1058
+ nat: string;
1059
+ nature: string;
1060
+ nature_people: string;
1061
+ navigate_before: string;
1062
+ navigate_next: string;
1063
+ navigation: string;
1064
+ nearby_error: string;
1065
+ nearby_off: string;
1066
+ near_me: string;
1067
+ near_me_disabled: string;
1068
+ nest_cam_wired_stand: string;
1069
+ network_cell: string;
1070
+ network_check: string;
1071
+ network_locked: string;
1072
+ network_wifi: string;
1073
+ new_releases: string;
1074
+ newspaper: string;
1075
+ next_plan: string;
1076
+ next_week: string;
1077
+ nfc: string;
1078
+ nightlife: string;
1079
+ nightlight: string;
1080
+ nightlight_round: string;
1081
+ night_shelter: string;
1082
+ nights_stay: string;
1083
+ no_accounts: string;
1084
+ no_backpack: string;
1085
+ no_drinks: string;
1086
+ no_encryption: string;
1087
+ no_encryption_gmailerrorred: string;
1088
+ no_flash: string;
1089
+ no_food: string;
1090
+ no_luggage: string;
1091
+ no_meals: string;
1092
+ no_meeting_room: string;
1093
+ no_photography: string;
1094
+ nordic_walking: string;
1095
+ north: string;
1096
+ north_east: string;
1097
+ north_west: string;
1098
+ no_sim: string;
1099
+ no_stroller: string;
1100
+ not_accessible: string;
1101
+ note: string;
1102
+ note_add: string;
1103
+ note_alt: string;
1104
+ notes: string;
1105
+ notification_add: string;
1106
+ notification_important: string;
1107
+ notifications: string;
1108
+ notifications_active: string;
1109
+ notifications_none: string;
1110
+ notifications_off: string;
1111
+ notifications_paused: string;
1112
+ not_interested: string;
1113
+ not_listed_location: string;
1114
+ no_transfer: string;
1115
+ not_started: string;
1116
+ offline_bolt: string;
1117
+ offline_pin: string;
1118
+ offline_share: string;
1119
+ oil_barrel: string;
1120
+ ondemand_video: string;
1121
+ on_device_training: string;
1122
+ online_prediction: string;
1123
+ opacity: string;
1124
+ open_in_browser: string;
1125
+ open_in_full: string;
1126
+ open_in_new: string;
1127
+ open_in_new_off: string;
1128
+ open_with: string;
1129
+ other_houses: string;
1130
+ outbound: string;
1131
+ outbox: string;
1132
+ outdoor_grill: string;
1133
+ outlet: string;
1134
+ outlined_flag: string;
1135
+ padding: string;
1136
+ pages: string;
1137
+ pageview: string;
1138
+ paid: string;
1139
+ palette: string;
1140
+ panorama: string;
1141
+ panorama_fish_eye: string;
1142
+ panorama_horizontal: string;
1143
+ panorama_photosphere: string;
1144
+ panorama_vertical: string;
1145
+ panorama_wide_angle: string;
1146
+ pan_tool: string;
1147
+ paragliding: string;
1148
+ park: string;
1149
+ party_mode: string;
1150
+ password: string;
1151
+ pattern: string;
1152
+ pause: string;
1153
+ pause_circle: string;
1154
+ pause_circle_filled: string;
1155
+ pause_circle_outline: string;
1156
+ pause_presentation: string;
1157
+ payment: string;
1158
+ payments: string;
1159
+ pedal_bike: string;
1160
+ pending: string;
1161
+ pending_actions: string;
1162
+ pentagon: string;
1163
+ people: string;
1164
+ people_alt: string;
1165
+ people_outline: string;
1166
+ percent: string;
1167
+ perm_camera_mic: string;
1168
+ perm_contact_calendar: string;
1169
+ perm_data_setting: string;
1170
+ perm_device_information: string;
1171
+ perm_identity: string;
1172
+ perm_media: string;
1173
+ perm_phone_msg: string;
1174
+ perm_scan_wifi: string;
1175
+ person: string;
1176
+ person_add: string;
1177
+ person_add_alt: string;
1178
+ person_add_disabled: string;
1179
+ personal_video: string;
1180
+ person_off: string;
1181
+ person_outline: string;
1182
+ person_pin: string;
1183
+ person_pin_circle: string;
1184
+ person_remove: string;
1185
+ person_search: string;
1186
+ pest_control: string;
1187
+ pest_control_rodent: string;
1188
+ pets: string;
1189
+ phishing: string;
1190
+ phone: string;
1191
+ phone_android: string;
1192
+ phone_bluetooth_speaker: string;
1193
+ phone_callback: string;
1194
+ phone_disabled: string;
1195
+ phone_enabled: string;
1196
+ phone_forwarded: string;
1197
+ phone_iphone: string;
1198
+ phonelink: string;
1199
+ phonelink_erase: string;
1200
+ phonelink_lock: string;
1201
+ phonelink_off: string;
1202
+ phonelink_ring: string;
1203
+ phonelink_setup: string;
1204
+ phone_locked: string;
1205
+ phone_missed: string;
1206
+ phone_paused: string;
1207
+ photo: string;
1208
+ photo_album: string;
1209
+ photo_camera: string;
1210
+ photo_camera_back: string;
1211
+ photo_camera_front: string;
1212
+ photo_filter: string;
1213
+ photo_library: string;
1214
+ photo_size_select_actual: string;
1215
+ photo_size_select_large: string;
1216
+ photo_size_select_small: string;
1217
+ php: string;
1218
+ piano: string;
1219
+ piano_off: string;
1220
+ picture_as_pdf: string;
1221
+ picture_in_picture: string;
1222
+ picture_in_picture_alt: string;
1223
+ pie_chart: string;
1224
+ pie_chart_outline: string;
1225
+ pin: string;
1226
+ pinch: string;
1227
+ pin_drop: string;
1228
+ pivot_table_chart: string;
1229
+ place: string;
1230
+ plagiarism: string;
1231
+ play_arrow: string;
1232
+ play_circle: string;
1233
+ play_disabled: string;
1234
+ play_for_work: string;
1235
+ play_lesson: string;
1236
+ playlist_add: string;
1237
+ playlist_add_check: string;
1238
+ playlist_add_check_circle: string;
1239
+ playlist_add_circle: string;
1240
+ playlist_play: string;
1241
+ playlist_remove: string;
1242
+ plumbing: string;
1243
+ plus_one: string;
1244
+ podcasts: string;
1245
+ point_of_sale: string;
1246
+ policy: string;
1247
+ poll: string;
1248
+ pool: string;
1249
+ portable_wifi_off: string;
1250
+ portrait: string;
1251
+ post_add: string;
1252
+ power: string;
1253
+ power_input: string;
1254
+ power_off: string;
1255
+ power_settings_new: string;
1256
+ precision_manufacturing: string;
1257
+ pregnant_woman: string;
1258
+ present_to_all: string;
1259
+ preview: string;
1260
+ price_change: string;
1261
+ price_check: string;
1262
+ print: string;
1263
+ print_disabled: string;
1264
+ priority_high: string;
1265
+ privacy_tip: string;
1266
+ production_quantity_limits: string;
1267
+ propane: string;
1268
+ propane_tank: string;
1269
+ psychology: string;
1270
+ public: string;
1271
+ public_off: string;
1272
+ publish: string;
1273
+ published_with_changes: string;
1274
+ push_pin: string;
1275
+ qr_code: string;
1276
+ qr_code_2: string;
1277
+ qr_code_scanner: string;
1278
+ query_builder: string;
1279
+ query_stats: string;
1280
+ question_answer: string;
1281
+ question_mark: string;
1282
+ queue: string;
1283
+ queue_music: string;
1284
+ queue_play_next: string;
1285
+ quickreply: string;
1286
+ quiz: string;
1287
+ radar: string;
1288
+ radio: string;
1289
+ radio_button_checked: string;
1290
+ radio_button_unchecked: string;
1291
+ railway_alert: string;
1292
+ ramen_dining: string;
1293
+ ramp_left: string;
1294
+ ramp_right: string;
1295
+ rate_review: string;
1296
+ raw_off: string;
1297
+ raw_on: string;
1298
+ read_more: string;
1299
+ receipt: string;
1300
+ receipt_long: string;
1301
+ recent_actors: string;
1302
+ recommend: string;
1303
+ record_voice_over: string;
1304
+ rectangle: string;
1305
+ redeem: string;
1306
+ redo: string;
1307
+ reduce_capacity: string;
1308
+ refresh: string;
1309
+ remember_me: string;
1310
+ remove: string;
1311
+ remove_circle: string;
1312
+ remove_circle_outline: string;
1313
+ remove_done: string;
1314
+ remove_from_queue: string;
1315
+ remove_moderator: string;
1316
+ remove_red_eye: string;
1317
+ remove_road: string;
1318
+ remove_shopping_cart: string;
1319
+ reorder: string;
1320
+ repeat: string;
1321
+ repeat_on: string;
1322
+ repeat_one: string;
1323
+ repeat_one_on: string;
1324
+ replay: string;
1325
+ replay_10: string;
1326
+ replay_30: string;
1327
+ replay_5: string;
1328
+ replay_circle_filled: string;
1329
+ reply: string;
1330
+ reply_all: string;
1331
+ report: string;
1332
+ report_gmailerrorred: string;
1333
+ report_off: string;
1334
+ report_problem: string;
1335
+ request_quote: string;
1336
+ reset_tv: string;
1337
+ restart_alt: string;
1338
+ restaurant: string;
1339
+ restaurant_menu: string;
1340
+ restore: string;
1341
+ restore_from_trash: string;
1342
+ restore_page: string;
1343
+ reviews: string;
1344
+ rice_bowl: string;
1345
+ ring_volume: string;
1346
+ r_mobiledata: string;
1347
+ rocket: string;
1348
+ rocket_launch: string;
1349
+ roller_shades: string;
1350
+ roller_shades_closed: string;
1351
+ roofing: string;
1352
+ room: string;
1353
+ room_preferences: string;
1354
+ room_service: string;
1355
+ rotate_90_degrees_ccw: string;
1356
+ rotate_90_degrees_cw: string;
1357
+ rotate_left: string;
1358
+ rotate_right: string;
1359
+ roundabout_left: string;
1360
+ roundabout_right: string;
1361
+ rounded_corner: string;
1362
+ route: string;
1363
+ router: string;
1364
+ rowing: string;
1365
+ rss_feed: string;
1366
+ rsvp: string;
1367
+ rtt: string;
1368
+ rule: string;
1369
+ rule_folder: string;
1370
+ run_circle: string;
1371
+ running_with_errors: string;
1372
+ rv_hookup: string;
1373
+ safety_divider: string;
1374
+ sailing: string;
1375
+ sanitizer: string;
1376
+ satellite: string;
1377
+ satellite_alt: string;
1378
+ save: string;
1379
+ save_alt: string;
1380
+ save_as: string;
1381
+ saved_search: string;
1382
+ savings: string;
1383
+ scale: string;
1384
+ scanner: string;
1385
+ scatter_plot: string;
1386
+ schedule: string;
1387
+ schedule_send: string;
1388
+ schema: string;
1389
+ school: string;
1390
+ science: string;
1391
+ score: string;
1392
+ screen_lock_landscape: string;
1393
+ screen_lock_portrait: string;
1394
+ screen_lock_rotation: string;
1395
+ screen_rotation: string;
1396
+ screen_search_desktop: string;
1397
+ screen_share: string;
1398
+ screenshot: string;
1399
+ screenshot_monitor: string;
1400
+ sd: string;
1401
+ sd_card: string;
1402
+ sd_card_alert: string;
1403
+ sd_storage: string;
1404
+ search: string;
1405
+ search_off: string;
1406
+ security: string;
1407
+ security_update: string;
1408
+ security_update_good: string;
1409
+ security_update_warning: string;
1410
+ segment: string;
1411
+ select_all: string;
1412
+ self_improvement: string;
1413
+ sell: string;
1414
+ send: string;
1415
+ send_and_archive: string;
1416
+ send_time_extension: string;
1417
+ send_to_mobile: string;
1418
+ sensors: string;
1419
+ sensors_off: string;
1420
+ sentiment_dissatisfied: string;
1421
+ sentiment_neutral: string;
1422
+ sentiment_satisfied: string;
1423
+ sentiment_satisfied_alt: string;
1424
+ sentiment_very_dissatisfied: string;
1425
+ sentiment_very_satisfied: string;
1426
+ set_meal: string;
1427
+ settings: string;
1428
+ settings_accessibility: string;
1429
+ settings_applications: string;
1430
+ settings_backup_restore: string;
1431
+ settings_bluetooth: string;
1432
+ settings_brightness: string;
1433
+ settings_cell: string;
1434
+ settings_ethernet: string;
1435
+ settings_input_antenna: string;
1436
+ settings_input_component: string;
1437
+ settings_input_composite: string;
1438
+ settings_input_hdmi: string;
1439
+ settings_input_svideo: string;
1440
+ settings_overscan: string;
1441
+ settings_phone: string;
1442
+ settings_power: string;
1443
+ settings_remote: string;
1444
+ settings_suggest: string;
1445
+ settings_system_daydream: string;
1446
+ settings_voice: string;
1447
+ share: string;
1448
+ share_location: string;
1449
+ shield: string;
1450
+ shop: string;
1451
+ shop_2: string;
1452
+ shopping_bag: string;
1453
+ shopping_basket: string;
1454
+ shopping_cart: string;
1455
+ shopping_cart_checkout: string;
1456
+ shop_two: string;
1457
+ shortcut: string;
1458
+ short_text: string;
1459
+ show_chart: string;
1460
+ shower: string;
1461
+ shuffle: string;
1462
+ shuffle_on: string;
1463
+ shutter_speed: string;
1464
+ sick: string;
1465
+ signal_cellular_0_bar: string;
1466
+ signal_cellular_4_bar: string;
1467
+ signal_cellular_alt: string;
1468
+ signal_cellular_connected_no_internet_0_bar: string;
1469
+ signal_cellular_connected_no_internet_4_bar: string;
1470
+ signal_cellular_nodata: string;
1471
+ signal_cellular_no_sim: string;
1472
+ signal_cellular_null: string;
1473
+ signal_cellular_off: string;
1474
+ signal_wifi_bad: string;
1475
+ signal_wifi_off: string;
1476
+ signal_wifi_statusbar_null: string;
1477
+ signpost: string;
1478
+ sim_card: string;
1479
+ sim_card_alert: string;
1480
+ sim_card_download: string;
1481
+ single_bed: string;
1482
+ sip: string;
1483
+ skateboarding: string;
1484
+ skip_next: string;
1485
+ skip_previous: string;
1486
+ sledding: string;
1487
+ slideshow: string;
1488
+ slow_motion_video: string;
1489
+ smart_button: string;
1490
+ smart_display: string;
1491
+ smartphone: string;
1492
+ smart_screen: string;
1493
+ smart_toy: string;
1494
+ smoke_free: string;
1495
+ smoking_rooms: string;
1496
+ sms: string;
1497
+ sms_failed: string;
1498
+ snippet_folder: string;
1499
+ snooze: string;
1500
+ snowboarding: string;
1501
+ snowmobile: string;
1502
+ snowshoeing: string;
1503
+ soap: string;
1504
+ social_distance: string;
1505
+ solar_power: string;
1506
+ sort: string;
1507
+ sort_by_alpha: string;
1508
+ soup_kitchen: string;
1509
+ source: string;
1510
+ south: string;
1511
+ south_america: string;
1512
+ south_east: string;
1513
+ south_west: string;
1514
+ spa: string;
1515
+ space_bar: string;
1516
+ speaker: string;
1517
+ speaker_group: string;
1518
+ speaker_notes: string;
1519
+ speaker_notes_off: string;
1520
+ speaker_phone: string;
1521
+ speed: string;
1522
+ spellcheck: string;
1523
+ splitscreen: string;
1524
+ spoke: string;
1525
+ sports: string;
1526
+ sports_bar: string;
1527
+ sports_baseball: string;
1528
+ sports_basketball: string;
1529
+ sports_cricket: string;
1530
+ sports_esports: string;
1531
+ sports_football: string;
1532
+ sports_golf: string;
1533
+ sports_handball: string;
1534
+ sports_hockey: string;
1535
+ sports_kabaddi: string;
1536
+ sports_martial_arts: string;
1537
+ sports_mma: string;
1538
+ sports_motorsports: string;
1539
+ sports_rugby: string;
1540
+ sports_score: string;
1541
+ sports_soccer: string;
1542
+ sports_tennis: string;
1543
+ sports_volleyball: string;
1544
+ square: string;
1545
+ square_foot: string;
1546
+ ssid_chart: string;
1547
+ stacked_bar_chart: string;
1548
+ stacked_line_chart: string;
1549
+ stadium: string;
1550
+ stairs: string;
1551
+ star: string;
1552
+ star_border: string;
1553
+ star_half: string;
1554
+ star_outline: string;
1555
+ star_rate: string;
1556
+ stars: string;
1557
+ start: string;
1558
+ stay_current_landscape: string;
1559
+ stay_current_portrait: string;
1560
+ stay_primary_landscape: string;
1561
+ stay_primary_portrait: string;
1562
+ sticky_note_2: string;
1563
+ stop: string;
1564
+ stop_circle: string;
1565
+ stop_screen_share: string;
1566
+ storage: string;
1567
+ store: string;
1568
+ storefront: string;
1569
+ store_mall_directory: string;
1570
+ storm: string;
1571
+ straight: string;
1572
+ straighten: string;
1573
+ stream: string;
1574
+ streetview: string;
1575
+ strikethrough_s: string;
1576
+ stroller: string;
1577
+ style: string;
1578
+ subdirectory_arrow_left: string;
1579
+ subdirectory_arrow_right: string;
1580
+ subject: string;
1581
+ subscript: string;
1582
+ subscriptions: string;
1583
+ subtitles: string;
1584
+ subtitles_off: string;
1585
+ subway: string;
1586
+ summarize: string;
1587
+ superscript: string;
1588
+ supervised_user_circle: string;
1589
+ supervisor_account: string;
1590
+ support: string;
1591
+ support_agent: string;
1592
+ surfing: string;
1593
+ surround_sound: string;
1594
+ swap_calls: string;
1595
+ swap_horiz: string;
1596
+ swap_horizontal_circle: string;
1597
+ swap_vert: string;
1598
+ swap_vertical_circle: string;
1599
+ swipe: string;
1600
+ swipe_down: string;
1601
+ swipe_down_alt: string;
1602
+ swipe_left: string;
1603
+ swipe_left_alt: string;
1604
+ swipe_right: string;
1605
+ swipe_right_alt: string;
1606
+ swipe_up: string;
1607
+ swipe_up_alt: string;
1608
+ swipe_vertical: string;
1609
+ switch_access_shortcut: string;
1610
+ switch_access_shortcut_add: string;
1611
+ switch_account: string;
1612
+ switch_camera: string;
1613
+ switch_left: string;
1614
+ switch_right: string;
1615
+ switch_video: string;
1616
+ sync: string;
1617
+ sync_alt: string;
1618
+ sync_disabled: string;
1619
+ sync_lock: string;
1620
+ sync_problem: string;
1621
+ system_security_update: string;
1622
+ system_security_update_good: string;
1623
+ system_security_update_warning: string;
1624
+ system_update: string;
1625
+ system_update_alt: string;
1626
+ tab: string;
1627
+ table_chart: string;
1628
+ table_rows: string;
1629
+ tablet: string;
1630
+ tablet_android: string;
1631
+ tablet_mac: string;
1632
+ table_view: string;
1633
+ tab_unselected: string;
1634
+ tag: string;
1635
+ tag_faces: string;
1636
+ takeout_dining: string;
1637
+ tap_and_play: string;
1638
+ tapas: string;
1639
+ task: string;
1640
+ task_alt: string;
1641
+ taxi_alert: string;
1642
+ terminal: string;
1643
+ terrain: string;
1644
+ text_decrease: string;
1645
+ text_fields: string;
1646
+ text_format: string;
1647
+ text_increase: string;
1648
+ text_rotate_up: string;
1649
+ text_rotate_vertical: string;
1650
+ text_rotation_angledown: string;
1651
+ text_rotation_angleup: string;
1652
+ text_rotation_down: string;
1653
+ text_rotation_none: string;
1654
+ textsms: string;
1655
+ text_snippet: string;
1656
+ texture: string;
1657
+ theater_comedy: string;
1658
+ theaters: string;
1659
+ thermostat: string;
1660
+ thermostat_auto: string;
1661
+ thumb_down: string;
1662
+ thumb_down_alt: string;
1663
+ thumb_down_off_alt: string;
1664
+ thumbs_up_down: string;
1665
+ thumb_up: string;
1666
+ thumb_up_alt: string;
1667
+ thumb_up_off_alt: string;
1668
+ timelapse: string;
1669
+ timeline: string;
1670
+ timer: string;
1671
+ timer_10: string;
1672
+ timer_10_select: string;
1673
+ timer_3: string;
1674
+ timer_3_select: string;
1675
+ timer_off: string;
1676
+ time_to_leave: string;
1677
+ tips_and_updates: string;
1678
+ title: string;
1679
+ toc: string;
1680
+ today: string;
1681
+ toggle_off: string;
1682
+ toggle_on: string;
1683
+ token: string;
1684
+ toll: string;
1685
+ tonality: string;
1686
+ topic: string;
1687
+ tornado: string;
1688
+ touch_app: string;
1689
+ tour: string;
1690
+ toys: string;
1691
+ track_changes: string;
1692
+ traffic: string;
1693
+ train: string;
1694
+ tram: string;
1695
+ transfer_within_a_station: string;
1696
+ transform: string;
1697
+ transgender: string;
1698
+ transit_enterexit: string;
1699
+ translate: string;
1700
+ travel_explore: string;
1701
+ trending_down: string;
1702
+ trending_flat: string;
1703
+ trending_up: string;
1704
+ trip_origin: string;
1705
+ try: string;
1706
+ tty: string;
1707
+ tune: string;
1708
+ tungsten: string;
1709
+ turned_in: string;
1710
+ turned_in_not: string;
1711
+ turn_left: string;
1712
+ turn_right: string;
1713
+ turn_sharp_left: string;
1714
+ turn_sharp_right: string;
1715
+ turn_slight_left: string;
1716
+ turn_slight_right: string;
1717
+ tv: string;
1718
+ tv_off: string;
1719
+ two_wheeler: string;
1720
+ umbrella: string;
1721
+ unarchive: string;
1722
+ undo: string;
1723
+ unfold_less: string;
1724
+ unfold_more: string;
1725
+ unpublished: string;
1726
+ unsubscribe: string;
1727
+ upcoming: string;
1728
+ update: string;
1729
+ update_disabled: string;
1730
+ upgrade: string;
1731
+ upload: string;
1732
+ upload_file: string;
1733
+ usb: string;
1734
+ usb_off: string;
1735
+ u_turn_left: string;
1736
+ u_turn_right: string;
1737
+ vaccines: string;
1738
+ verified: string;
1739
+ verified_user: string;
1740
+ vertical_align_bottom: string;
1741
+ vertical_align_center: string;
1742
+ vertical_align_top: string;
1743
+ vertical_shades: string;
1744
+ vertical_shades_closed: string;
1745
+ vertical_split: string;
1746
+ vibration: string;
1747
+ video_call: string;
1748
+ videocam: string;
1749
+ video_camera_back: string;
1750
+ video_camera_front: string;
1751
+ videocam_off: string;
1752
+ video_file: string;
1753
+ videogame_asset: string;
1754
+ videogame_asset_off: string;
1755
+ video_label: string;
1756
+ video_library: string;
1757
+ video_settings: string;
1758
+ video_stable: string;
1759
+ view_agenda: string;
1760
+ view_array: string;
1761
+ view_carousel: string;
1762
+ view_column: string;
1763
+ view_comfy: string;
1764
+ view_comfy_alt: string;
1765
+ view_compact: string;
1766
+ view_compact_alt: string;
1767
+ view_cozy: string;
1768
+ view_day: string;
1769
+ view_headline: string;
1770
+ view_in_ar: string;
1771
+ view_kanban: string;
1772
+ view_list: string;
1773
+ view_module: string;
1774
+ view_quilt: string;
1775
+ view_sidebar: string;
1776
+ view_stream: string;
1777
+ view_timeline: string;
1778
+ view_week: string;
1779
+ vignette: string;
1780
+ villa: string;
1781
+ visibility: string;
1782
+ visibility_off: string;
1783
+ voice_chat: string;
1784
+ voicemail: string;
1785
+ voice_over_off: string;
1786
+ volume_down: string;
1787
+ volume_mute: string;
1788
+ volume_off: string;
1789
+ volume_up: string;
1790
+ volunteer_activism: string;
1791
+ vpn_key: string;
1792
+ vpn_key_off: string;
1793
+ vpn_lock: string;
1794
+ vrpano: string;
1795
+ wallpaper: string;
1796
+ warehouse: string;
1797
+ warning: string;
1798
+ warning_amber: string;
1799
+ wash: string;
1800
+ watch: string;
1801
+ watch_later: string;
1802
+ watch_off: string;
1803
+ water: string;
1804
+ water_damage: string;
1805
+ waterfall_chart: string;
1806
+ waves: string;
1807
+ wb_auto: string;
1808
+ wb_cloudy: string;
1809
+ wb_incandescent: string;
1810
+ wb_iridescent: string;
1811
+ wb_shade: string;
1812
+ wb_sunny: string;
1813
+ wc: string;
1814
+ web: string;
1815
+ web_asset: string;
1816
+ web_asset_off: string;
1817
+ webhook: string;
1818
+ weekend: string;
1819
+ west: string;
1820
+ whatshot: string;
1821
+ wheelchair_pickup: string;
1822
+ where_to_vote: string;
1823
+ widgets: string;
1824
+ wifi: string;
1825
+ wifi_calling: string;
1826
+ wifi_calling_3: string;
1827
+ wifi_channel: string;
1828
+ wifi_find: string;
1829
+ wifi_lock: string;
1830
+ wifi_off: string;
1831
+ wifi_password: string;
1832
+ wifi_protected_setup: string;
1833
+ wifi_tethering: string;
1834
+ wifi_tethering_off: string;
1835
+ window: string;
1836
+ wind_power: string;
1837
+ wine_bar: string;
1838
+ work: string;
1839
+ work_history: string;
1840
+ work_off: string;
1841
+ work_outline: string;
1842
+ workspace_premium: string;
1843
+ workspaces: string;
1844
+ wrap_text: string;
1845
+ wrong_location: string;
1846
+ wysiwyg: string;
1847
+ yard: string;
1848
+ youtube_searched_for: string;
1849
+ zoom_in: string;
1850
+ zoom_in_map: string;
1851
+ zoom_out: string;
1852
+ zoom_out_map: string;
1853
+ };