@firecms/collection_editor 3.0.0-alpha.9 → 3.0.0-beta.2-pre.1

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