@firecms/core 3.0.0-canary.51 → 3.0.0-canary.53

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.
@@ -1,6 +1,6 @@
1
- import { EntityAction } from "../../../types";
2
1
  import { ArchiveIcon, DeleteIcon, FileCopyIcon, KeyboardTabIcon, OpenInNewIcon } from "@firecms/ui";
3
- import { DeleteEntityDialog } from "../../DeleteEntityDialog";
2
+ import { EntityAction } from "../../types";
3
+ import { DeleteEntityDialog } from "../DeleteEntityDialog";
4
4
 
5
5
  export const editEntityAction: EntityAction = {
6
6
  icon: <KeyboardTabIcon/>,
@@ -3,3 +3,4 @@ export * from "./useDebouncedData";
3
3
  export * from "./useColumnsIds";
4
4
  export * from "./useDataSourceEntityCollectionTableController";
5
5
  export * from "./useTableSearchHelper";
6
+ export * from "./default_entity_actions";
@@ -7,8 +7,16 @@ const COLLECTION_GROUP_PARENT_ID = "collectionGroupParent";
7
7
 
8
8
  export function useColumnIds<M extends Record<string, any>>(collection: ResolvedEntityCollection<M>, includeSubcollections: boolean): PropertyColumnConfig[] {
9
9
  return useMemo(() => {
10
- if (collection.propertiesOrder)
11
- return hideAndExpandKeys(collection, collection.propertiesOrder);
10
+ if (collection.propertiesOrder) {
11
+ const propertyColumnConfigs = hideAndExpandKeys(collection, collection.propertiesOrder);
12
+ if (collection.collectionGroup) {
13
+ propertyColumnConfigs.push({
14
+ key: COLLECTION_GROUP_PARENT_ID,
15
+ disabled: true
16
+ });
17
+ }
18
+ return propertyColumnConfigs;
19
+ }
12
20
  return getDefaultColumnKeys(collection, includeSubcollections);
13
21
  }, [collection, includeSubcollections]);
14
22
  }
@@ -33,7 +33,7 @@ export function EntitySidePanel(props: EntitySidePanelProps) {
33
33
  if (!props) return undefined;
34
34
  let usedCollection = props.collection;
35
35
 
36
- const registryCollection = navigationController.getCollection(props.path, props.entityId);
36
+ const registryCollection = navigationController.getCollection(props.path);
37
37
  if (registryCollection) {
38
38
  usedCollection = registryCollection;
39
39
  }
@@ -53,7 +53,6 @@ export function FireCMS<UserType extends User, EC extends EntityCollection>(prop
53
53
 
54
54
  useLocaleConfig(locale);
55
55
 
56
- console.debug("FireCMS propertyConfigs", propertyConfigs);
57
56
  /**
58
57
  * Controller in charge of fetching and persisting data
59
58
  */
@@ -40,7 +40,7 @@ import { ErrorBoundary } from "../components";
40
40
  import {
41
41
  copyEntityAction,
42
42
  deleteEntityAction
43
- } from "../components/EntityCollectionTable/internal/default_entity_actions";
43
+ } from "../components/common/default_entity_actions";
44
44
  import { useAnalyticsController } from "../hooks/useAnalyticsController";
45
45
  import { ValidationError } from "yup";
46
46
  import { PropertyIdCopyTooltipContent } from "../components/PropertyIdCopyTooltipContent";
@@ -179,7 +179,6 @@ function EntityFormInternal<M extends Record<string, any>>({
179
179
  const analyticsController = useAnalyticsController();
180
180
 
181
181
  const customizationController = useCustomizationController();
182
- console.log("EntityFormInternal propertyConfigs", customizationController.propertyConfigs);
183
182
 
184
183
  const context = useFireCMSContext();
185
184
  const dataSource = useDataSource(inputCollection);
@@ -30,6 +30,8 @@ export function SelectFieldBinding<T extends EnumType>({
30
30
  includeDescription
31
31
  }: SelectProps<T>) {
32
32
 
33
+ console.log("SelectFieldBinding", propertyKey, value,)
34
+
33
35
  const enumValues = property.enumValues;
34
36
 
35
37
  useClearRestoreValue({
@@ -48,7 +50,7 @@ export function SelectFieldBinding<T extends EnumType>({
48
50
  <>
49
51
 
50
52
  <Select
51
- value={value ? value.toString() : ""}
53
+ value={value !== undefined && value != null ? value.toString() : ""}
52
54
  disabled={disabled}
53
55
  position="item-aligned"
54
56
  inputClassName={cn("w-full")}
@@ -70,6 +72,7 @@ export function SelectFieldBinding<T extends EnumType>({
70
72
  return setValue(newValue as T);
71
73
  }}
72
74
  renderValue={(enumKey: any) => {
75
+ console.log("renderValue", enumKey)
73
76
  return <EnumValuesChip
74
77
  enumKey={enumKey}
75
78
  enumValues={enumValues}
@@ -241,7 +241,6 @@ export function useBuildNavigationController<EC extends EntityCollection, UserTy
241
241
 
242
242
  const getCollection = useCallback((
243
243
  idOrPath: string,
244
- entityId?: string,
245
244
  includeUserOverride = false
246
245
  ): EC | undefined => {
247
246
  const collections = collectionsRef.current;
@@ -80,7 +80,7 @@ export function resolveNavigationFrom<M extends Record<string, any>, UserType ex
80
80
  if (entry.type === "collection") {
81
81
  return Promise.resolve(entry);
82
82
  } else if (entry.type === "entity") {
83
- const collection = navigation.getCollection(entry.path, entry.entityId);
83
+ const collection = navigation.getCollection(entry.path);
84
84
  if (!collection) {
85
85
  throw Error(`No collection defined in the navigation for the entity with path ${entry.path}`);
86
86
  }
@@ -2,7 +2,7 @@ import { useCallback, useEffect, useRef } from "react";
2
2
  import {
3
3
  EntityCollection,
4
4
  EntitySidePanelProps,
5
- NavigationController,
5
+ NavigationController, PropertyConfig,
6
6
  ResolvedProperty,
7
7
  SideDialogPanelProps,
8
8
  SideDialogsController,
@@ -48,7 +48,8 @@ function calculateCollectionDesiredWidth(collection: EntityCollection<any>): str
48
48
  }
49
49
  const resolvedCollection = resolveCollection({
50
50
  collection,
51
- path: "__ignored"
51
+ path: "__ignored",
52
+ ignoreMissingFields: true
52
53
  });
53
54
 
54
55
  let result = FORM_CONTAINER_WIDTH
@@ -1,7 +1,7 @@
1
1
  import React from "react";
2
+ import { Chip } from "@firecms/ui";
2
3
  import { EnumValues } from "../../types";
3
4
  import { buildEnumLabel, enumToObjectEntries, getColorScheme, getLabelOrConfigFrom } from "../../util/enums";
4
- import { Chip } from "@firecms/ui";
5
5
 
6
6
  export interface EnumValuesChipProps {
7
7
  enumValues?: EnumValues;
@@ -15,6 +15,7 @@ export function NumberPropertyPreview({
15
15
  if (property.enumValues) {
16
16
  const enumKey = value;
17
17
  const enumValues = enumToObjectEntries(property.enumValues);
18
+ console.log("NumberPropertyPreview", enumValues)
18
19
  if (!enumValues)
19
20
  return <>{value}</>;
20
21
  return <EnumValuesChip
@@ -57,10 +57,9 @@ export type NavigationController<EC extends EntityCollection = EntityCollection<
57
57
  * The collection is resolved from the given path or alias.
58
58
  */
59
59
  getCollection: (pathOrId: string,
60
- entityId?: string,
61
60
  includeUserOverride?: boolean) => EC | undefined;
62
61
  /**
63
- * Get the collection configuration from its parent path segments.
62
+ * Get the collection configuration from its parent ids.
64
63
  */
65
64
  getCollectionFromIds: (ids: string[]) => EC | undefined;
66
65
 
package/src/util/enums.ts CHANGED
@@ -22,7 +22,7 @@ export function enumToObjectEntries(enumValues: EnumValues): EnumValueConfig[] {
22
22
  }
23
23
 
24
24
  export function getLabelOrConfigFrom(enumValues: EnumValueConfig[], key?: string | number): EnumValueConfig | undefined {
25
- if (!key) return undefined;
25
+ if (key === null || key === undefined) return undefined;
26
26
  return enumValues.find((entry) => String(entry.id) === String(key));
27
27
  }
28
28
 
@@ -144,7 +144,6 @@ export const iconSynonyms = {
144
144
  auto_stories: "audiobook flipping pages reading story",
145
145
  av_timer: "clock countdown duration minutes seconds stopwatch",
146
146
  baby_changing_station: "babies bathroom body children father human infant kids mother newborn people person toddler wc young",
147
- back: "arrow_back",
148
147
  backpack: "bookbag knapsack storage travel",
149
148
  backspace: "arrow cancel clear correct delete erase remove",
150
149
  backup: "arrow cloud data drive files folders point storage submit upload",
@@ -281,7 +280,6 @@ export const iconSynonyms = {
281
280
  cast: "Android airplay chromecast connect desktop device display hardware iOS mac monitor screencast streaming television tv web window wireless",
282
281
  cast_connected: "Android airplay chromecast desktop device display hardware iOS mac monitor screencast streaming television tv web window wireless",
283
282
  cast_for_education: "Android airplay chrome connect desktop device display hardware iOS learning lessons mac monitor screencast streaming teaching television tv web window wireless",
284
- catching_pokemon: "go pokestop travel",
285
283
  category: "categories circle collection items product sort square triangle",
286
284
  celebration: "activity birthday event fun party",
287
285
  cell_tower: "broadcast casting network signal transmitting wireless",
@@ -382,10 +380,6 @@ export const iconSynonyms = {
382
380
  credit_score: "approve bill card cash check coin commerce complete cost currency dollars done finance loan mark money ok online payment select symbol tick validate verified yes",
383
381
  crib: "babies baby bassinet bed children cradle infant kid newborn sleeping toddler",
384
382
  crop: "adjustments area editing frame images photos rectangle settings size square",
385
- crop_169: "adjustments area by editing frame images photos picture rectangle settings size square",
386
- crop_32: "adjustments area by editing frame images photos picture rectangle settings size square",
387
- crop_54: "adjustments area by editing frame images photos picture rectangle settings size square",
388
- crop_75: "adjustments area by editing frame images photos picture rectangle settings size square",
389
383
  crop_din: "adjustments area editing frame images photos picture rectangle settings size square",
390
384
  crop_free: "adjustments barcode editing focus frame image photos qrcode settings size square zoom",
391
385
  crop_landscape: "adjustments area editing frame images photos picture settings size square",
@@ -420,7 +414,6 @@ export const iconSynonyms = {
420
414
  delete_forever: "bin cancel exit garbage junk recycle remove trashcan",
421
415
  delete_outline: "bin can garbage remove trash",
422
416
  delete_sweep: "bin garbage junk recycle remove trashcan",
423
- delivery_dining: "food meal restaurant scooter takeout transportation vehicle vespa",
424
417
  density_large: "horizontal lines rules",
425
418
  density_medium: "horizontal lines rules",
426
419
  density_small: "horizontal lines rules",
@@ -525,10 +518,6 @@ export const iconSynonyms = {
525
518
  edit_road: "destination direction highway maps pencil street traffic",
526
519
  egg: "breakfast brunch food",
527
520
  egg_alt: "breakfast brunch food",
528
- eighteen_mp: "camera digits font image letters megapixels numbers quality resolution symbol text type",
529
- eight_k: "8000 8K alphabet character digit display font letter number pixels resolution symbol text type video",
530
- eight_mp: "camera digit font image letters megapixels number quality resolution symbol text type",
531
- eightteen_mp: "camera digits font image letters megapixels numbers quality resolution symbol text type",
532
521
  eject: "arrow disc drive dvd player remove triangle up usb",
533
522
  elderly: "body cane human old people person senior",
534
523
  elderly_woman: "body cane female gender girl human lady old people person senior social symbol women",
@@ -541,7 +530,6 @@ export const iconSynonyms = {
541
530
  electric_rickshaw: "automobile cars india maps transportation truck vehicle",
542
531
  electric_scooter: "automobile bike cars maps transportation vehicle vespa",
543
532
  elevator: "body down human people person up",
544
- eleven_mp: "camera digits font image letters megapixels numbers quality resolution symbol text type",
545
533
  email: "envelope letter message note post receive send write",
546
534
  e_mobiledata: "alphabet font letter text type",
547
535
  emoji_emotions: "emoticon expressions face feelings glad happiness happy like mood person pleased smiley smiling social survey",
@@ -581,7 +569,6 @@ export const iconSynonyms = {
581
569
  extension: "add-ons app extended game item jigsaw piece plugin puzzle shape",
582
570
  extension_off: "disabled enabled extended jigsaw piece puzzle shape slash",
583
571
  face: "account avatar emoji eyes human login logout people person profile recognition security social thumbnail unlock user",
584
- facebook: "brand logo social",
585
572
  face_retouching_natural: "editing effect emoji emotion faces image photography settings star tag",
586
573
  face_retouching_off: "disabled editing effect emoji emotion enabled faces image natural photography settings slash tag",
587
574
  fact_check: "approve complete done list mark ok select tick validate verified yes",
@@ -605,7 +592,6 @@ export const iconSynonyms = {
605
592
  fiber_new: "alphabet character font letter network symbol text type",
606
593
  fiber_pin: "alphabet character font letter network symbol text type",
607
594
  fiber_smart_record: "circle dot play watch",
608
- fifteen_mp: "camera digits font image letters megapixels numbers quality resolution symbol text type",
609
595
  file_copy: "bill clone content cut document duplicate invoice item multiple page past",
610
596
  file_download: "arrows downloads drive export install upload",
611
597
  file_download_done: "arrows check downloads drive installed tick upload",
@@ -642,14 +628,8 @@ export const iconSynonyms = {
642
628
  fire_extinguisher: "emergency water",
643
629
  fireplace: "chimney flame home house living pit room warm winter",
644
630
  first_page: "arrow back chevron left rewind",
645
- fitbit: "athlete athletic exercise fitness hobby",
646
631
  fitness_center: "athlete dumbbell exercise gym health hobby places sport weights workout",
647
632
  fit_screen: "enlarge format layout reduce scale size",
648
- five_g: "5g alphabet cellular character data digit font letter mobile network number phone signal speed symbol text type wifi",
649
- five_k: "5000 5K alphabet character digit display font letter number pixels resolution symbol text type video",
650
- five_k_plus: "+ 5000 5K alphabet character digit display font letter number pixels resolution symbol text type video",
651
- five_mp: "camera digit font image letters megapixels number quality resolution symbol text type",
652
- fivteen_mp: "camera digits font image letters megapixels numbers quality resolution symbol text type",
653
633
  flag: "country goal mark nation report start",
654
634
  flag_circle: "country goal mark nation report round start",
655
635
  flaky: "approve check close complete contrast done exit mark no ok options select stop tick verified yes",
@@ -718,11 +698,6 @@ export const iconSynonyms = {
718
698
  forward_5: "10 arrow circle controls digit fast music number rotate seconds speed symbol time video",
719
699
  forward_to_inbox: "arrow email envelop letter message send",
720
700
  foundation: "architecture base basis building construction estate home house real residential",
721
- four_g_mobiledata: "alphabet cellular character digit font letter network number phone signal speed symbol text type wifi",
722
- four_g_plus_mobiledata: "alphabet cellular character digit font letter network number phone signal speed symbol text type wifi",
723
- four_k: "4000 4K alphabet character digit display font letter number pixels resolution symbol text type video",
724
- four_mp: "camera digit font image letters megapixels number quality resolution symbol text type",
725
- fourteen_mp: "camera digits font image letters megapixels numbers quality resolution symbol text type",
726
701
  free_breakfast: "beverage cafe coffee cup drink mug tea",
727
702
  fullscreen: "adjust application components interface size ui ux view website",
728
703
  fullscreen_exit: "adjust application components interface size ui ux view website",
@@ -738,10 +713,8 @@ export const iconSynonyms = {
738
713
  gif_box: "alphabet animated animation bitmap character font format graphics interchange letter symbol text type",
739
714
  girl: "body female gender human lady people person social symbol woman women",
740
715
  gite: "architecture estate home hostel house maps place real residence residential stay traveling",
741
- git_hub: "brand code",
742
716
  g_mobiledata: "alphabet character font letter network service symbol text type",
743
717
  golf_course: "athlete athletic ball club entertainment flag golfer golfing hobby hole places putt sports",
744
- google: "brand logo",
745
718
  gpp_bad: "cancel certified close error exit no privacy private protection remove security shield sim stop verified",
746
719
  gpp_good: "certified check ok pass security shield sim tick",
747
720
  gpp_maybe: "! alert attention caution certified danger error exclamation important mark notification privacy private protection security shield sim symbol verified warning",
@@ -754,8 +727,6 @@ export const iconSynonyms = {
754
727
  grain: "dots editing effect filter images photography pictures",
755
728
  graphic_eq: "audio equalizer music recording sound voice",
756
729
  grass: "backyard fodder ground home lawn plant turf",
757
- grid3x3: "layout line space",
758
- grid4x4: "by layout lines space",
759
730
  grid_goldenratio: "layout lines space",
760
731
  grid_off: "collage disabled enabled image layout on slash view",
761
732
  grid_on: "collage disabled enabled image layout off sheet slash view",
@@ -800,7 +771,6 @@ export const iconSynonyms = {
800
771
  hide_image: "disabled enabled landscape mountains off on photography picture slash",
801
772
  hide_source: "circle disabled enabled offline on shape slash",
802
773
  highlight: "color doc editing editor emphasize fill flashlight format marker paint spreadsheet style text type writing",
803
- highlight_alt: "arrow box click cursor draw focus pointer selection target",
804
774
  highlight_off: "cancel circle clear click close delete disable exit focus no quit remove stop target times",
805
775
  high_quality: "alphabet character definition display font hq letter movies resolution screen symbol text tv type",
806
776
  hiking: "backpacking bag climbing duffle mountain social sports stick trail travel walking",
@@ -860,14 +830,12 @@ export const iconSynonyms = {
860
830
  insert_page_break: "document file paper",
861
831
  insert_photo: "image landscape mountains photography picture wallpaper",
862
832
  insights: "analytics bars chart data diagram infographic measure metrics stars statistics tracking",
863
- instagram: "brand logo social",
864
833
  install_desktop: "Android chrome device display fix hardware iOS mac monitor place pwa screen web window",
865
834
  install_mobile: "Android cell device hardware iOS phone pwa tablet",
866
835
  integration_instructions: "brackets clipboard code css developer document engineering html platform",
867
836
  interests: "circle heart shapes social square triangle",
868
837
  interpreter_mode: "language microphone person speaking symbol",
869
838
  inventory: "archive box buy check clipboard document e-commerce file list organize packages product purchase shop stock store supply",
870
- inventory2: "archive box file organize packages product stock storage supply",
871
839
  invert_colors: "droplet editing hue inverted liquid palette tone water",
872
840
  invert_colors_off: "disabled droplet enabled hue inverted liquid offline opacity palette slash tone water",
873
841
  ios_share: "arrows button direction export internet link send sharing social up website",
@@ -937,7 +905,6 @@ export const iconSynonyms = {
937
905
  line_weight: "editor height size spacing style thickness",
938
906
  link: "anchor chain clip connection external hyperlink linked links multimedia unlisted url",
939
907
  linked_camera: "connection lens network photography picture signals sync wireless",
940
- linked_in: "brand logo social",
941
908
  link_off: "anchor attached chain clip connection disabled enabled linked links multimedia slash unlink url",
942
909
  liquor: "alcohol bar bottle club cocktail drink food party store wine",
943
910
  list: "editor file format index menu options playlist task todo",
@@ -1066,7 +1033,6 @@ export const iconSynonyms = {
1066
1033
  monochrome_photos: "black camera image photography picture white",
1067
1034
  mood: "emoji emoticon emotions expressions face feelings glad happiness happy like person pleased smiley smiling social survey",
1068
1035
  mood_bad: "disappointment dislike emoji emoticon emotions expressions face feelings person rating smiley social survey unhappiness unhappy unpleased unsmile unsmiling",
1069
- moped: "automobile bike cars direction maps motorized public scooter transportation vehicle vespa",
1070
1036
  more: "3 archive badge bookmark dots etc favorite indent label remember save stamp sticker tab tag three",
1071
1037
  more_horiz: "3 application components dots etc horizontal interface ios pending screen status three ui ux website",
1072
1038
  more_time: "+ add clock date new plus schedule symbol",
@@ -1114,13 +1080,8 @@ export const iconSynonyms = {
1114
1080
  nightlight_round: "dark half mode moon",
1115
1081
  night_shelter: "architecture bed building estate homeless house place real sleep",
1116
1082
  nights_stay: "cloud crescent dark mode moon phases silence silent sky time weather",
1117
- nine_k: "9000 9K alphabet character digit display font letter number pixels resolution symbol text type video",
1118
- nine_k_plus: "+ 9000 9K alphabet character digit display font letter number pixels resolution symbol text type video",
1119
- nine_mp: "camera digit font image letters megapixels number quality resolution symbol text type",
1120
- nineteen_mp: "camera digits font image letters megapixels numbers quality resolution symbol text type",
1121
1083
  no_accounts: "avatar disabled enabled face human offline people person profile slash thumbnail unavailable unidentifiable unknown user",
1122
1084
  no_backpack: "accessory bookbag knapsack travel",
1123
- no_cell: "Android device disabled enabled hardware iOS mobile off phone slash tablet",
1124
1085
  no_drinks: "alcohol beverage bottle cocktail food liquor wine",
1125
1086
  no_encryption: "disabled enabled lock off password safety security slash",
1126
1087
  no_encryption_gmailerrorred: "disabled enabled locked off slash",
@@ -1158,9 +1119,6 @@ export const iconSynonyms = {
1158
1119
  oil_barrel: "droplet gasoline nest water",
1159
1120
  ondemand_video: "Android chrome desktop device hardware iOS mac monitor play television tv web window",
1160
1121
  on_device_training: "arrow bulb call cell contact hardware idea inprogress light loading mobile model refresh renew restore reverse rotate telephone",
1161
- one_k: "1000 1K alphabet character digit display font letter number pixels resolution symbol text type video",
1162
- one_kk: "10000 10K alphabet character digit display font letter number pixels resolution symbol text type video",
1163
- one_k_plus: "+ 1000 1K alphabet character digit display font letter number pixels resolution symbol text type video",
1164
1122
  online_prediction: "bulb connection idea light network signal wireless",
1165
1123
  opacity: "color droplet hue inverted liquid palette tone water",
1166
1124
  open_in_browser: "arrow box new up website window",
@@ -1182,13 +1140,9 @@ export const iconSynonyms = {
1182
1140
  panorama: "angle image mountains photography picture view wide",
1183
1141
  panorama_fish_eye: "angle circle image photography picture wide",
1184
1142
  panorama_horizontal: "angle image photography picture wide",
1185
- panorama_horizontal_select: "angle image photography picture wide",
1186
1143
  panorama_photosphere: "angle horizontal image photography picture wide",
1187
- panorama_photosphere_select: "angle horizontal image photography picture wide",
1188
1144
  panorama_vertical: "angle image photography picture wide",
1189
- panorama_vertical_select: "angle image photography picture wide",
1190
1145
  panorama_wide_angle: "image photography picture",
1191
- panorama_wide_angle_select: "image photography picture",
1192
1146
  pan_tool: "drag fingers gesture hands human move scan stop touch wait",
1193
1147
  paragliding: "athlete athletic body entertainment exercise fly hobby human parachute people person skydiving social sports travel",
1194
1148
  park: "attraction fresh local nature outside plant tree",
@@ -1272,16 +1226,11 @@ export const iconSynonyms = {
1272
1226
  pin: "1 2 3 digit key login logout number password pattern security star symbol unlock",
1273
1227
  pinch: "arrows compress direction finger grasp hand navigation nip squeeze tweak",
1274
1228
  pin_drop: "destination direction gps location maps navigation place stop",
1275
- pinterest: "brand logo social",
1276
1229
  pivot_table_chart: "analytics arrows bars data diagram direction drive editing grid infographic measure metrics rotate sheet statistics tracking",
1277
- pix: "bill brazil card cash commerce credit currency finance money payment",
1278
1230
  place: "destination direction location maps navigation pin point stop",
1279
1231
  plagiarism: "document find glass look magnifying page paper search see",
1280
1232
  play_arrow: "controls media music player start video",
1281
1233
  play_circle: "arrow controls media music video",
1282
- play_circle_filled: "arrow controls media music start video",
1283
- play_circle_filled_white: "start",
1284
- play_circle_outline: "arrow controls media music start video",
1285
1234
  play_disabled: "controls enabled media music off slash video",
1286
1235
  play_for_work: "arrow circle down google half",
1287
1236
  play_lesson: "audio bookmark digital ebook lesson multimedia play reading ribbon",
@@ -1354,7 +1303,6 @@ export const iconSynonyms = {
1354
1303
  recommend: "approved circle confirm favorite gesture hand like reaction social support thumbs well",
1355
1304
  record_voice_over: "account face human people person profile recording sound speaking speech transcript user",
1356
1305
  rectangle: "four parallelograms polygons quadrilaterals recangle shape sides",
1357
- reddit: "brand logo social",
1358
1306
  redeem: "bill cart cash certificate coin commerce credit currency dollars giftcard money online payment present shopping",
1359
1307
  redo: "arrow backward forward next repeat rotate undo",
1360
1308
  reduce_capacity: "arrow body covid decrease down human people person social",
@@ -1497,10 +1445,6 @@ export const iconSynonyms = {
1497
1445
  settings_suggest: "change details gear options recommendation service suggestion system",
1498
1446
  settings_system_daydream: "backup cloud drive storage",
1499
1447
  settings_voice: "microphone recorder speaker",
1500
- seven_k: "7000 7K alphabet character digit display font letter number pixels resolution symbol text type video",
1501
- seven_k_plus: "+ 7000 7K alphabet character digit display font letter number pixels resolution symbol text type video",
1502
- seven_mp: "camera digit font image letters megapixels number quality resolution symbol text type",
1503
- seventeen_mp: "camera digits font image letters megapixels numbers quality resolution symbol text type",
1504
1448
  share: "android connect contect link multimedia multiple network options send shared sharing social",
1505
1449
  share_location: "destination direction gps maps pin place stop tracking",
1506
1450
  shield: "certified privacy private protection secure security verified",
@@ -1523,19 +1467,13 @@ export const iconSynonyms = {
1523
1467
  signal_cellular_4_bar: "data internet mobile network phone speed wifi wireless",
1524
1468
  signal_cellular_alt: "analytics bar chart data diagram infographic internet measure metrics mobile network phone statistics tracking wifi wireless",
1525
1469
  signal_cellular_connected_no_internet_0_bar: "! alert attention caution danger data error exclamation important mark mobile network notification phone symbol warning wifi wireless",
1526
- signal_cellular_connected_no_internet_1_bar: "network",
1527
- signal_cellular_connected_no_internet_2_bar: "network",
1528
- signal_cellular_connected_no_internet_3_bar: "network",
1529
1470
  signal_cellular_connected_no_internet_4_bar: "! alert attention caution danger data error exclamation important mark mobile network notification phone symbol warning wifi wireless",
1530
1471
  signal_cellular_nodata: "internet mobile network offline phone quit wifi wireless x",
1531
1472
  signal_cellular_no_sim: "camera card chip device disabled enabled memory network offline phone slash storage",
1532
1473
  signal_cellular_null: "data internet mobile network phone wifi wireless",
1533
1474
  signal_cellular_off: "data disabled enabled internet mobile network offline phone slash wifi wireless",
1534
1475
  signal_wifi_bad: "bar cancel cellular close data exit internet mobile network no phone quit remove stop wireless",
1535
- signal_wifi_connected_no_internet4: "cellular data mobile network offline phone wireless x",
1536
1476
  signal_wifi_off: "cellular data disabled enabled internet mobile network phone slash speed wireless",
1537
- signal_wifi_statusbar4_bar: "cellular data internet mobile network phone speed wireless",
1538
- signal_wifi_statusbar_connected_no_internet4: "! alert attention caution cellular danger data error exclamation important mark mobile network notification phone speed symbol warning wireless",
1539
1477
  signal_wifi_statusbar_null: "cellular data internet mobile network phone speed wireless",
1540
1478
  signpost: "arrow direction left maps right signal signs street traffic",
1541
1479
  sim_card: "camera chip device memory network phone storage",
@@ -1543,12 +1481,6 @@ export const iconSynonyms = {
1543
1481
  sim_card_download: "arrow camera chip device memory phone storage",
1544
1482
  single_bed: "bedroom double furniture home hotel house king night pillows queen rest sleep twin",
1545
1483
  sip: "alphabet call character dialer font initiation internet letter over phone protocol routing session symbol text type voice",
1546
- six_k: "6000 6K alphabet character digit display font letter number pixels resolution symbol text type video",
1547
- six_k_plus: "+ 6000 6K alphabet character digit display font letter number pixels resolution symbol text type video",
1548
- six_mp: "camera digit font image letters megapixels number quality resolution symbol text type",
1549
- sixteen_mp: "camera digits font image letters megapixels numbers quality resolution symbol text type",
1550
- sixty_fps: "camera digit frames number symbol video",
1551
- sixty_fps_select: "camera digits frame frequency numbers per rate seconds video",
1552
1484
  skateboarding: "athlete athletic body entertainment exercise hobby human people person skateboarder social sports",
1553
1485
  skip_next: "arrow back controls forward music play previous transport video",
1554
1486
  skip_previous: "arrow backward controls forward music next play transport video",
@@ -1619,10 +1551,8 @@ export const iconSynonyms = {
1619
1551
  stairs: "down staircase up",
1620
1552
  star: "best bookmark favorite highlight ranking rate rating save toggle",
1621
1553
  star_border: "best bookmark favorite highlight outline ranking rate rating save toggle",
1622
- star_border_purple_500: "best bookmark favorite highlight outline ranking rate rating save toggle",
1623
1554
  star_half: "0.5 1/2 achievement bookmark favorite highlight important marked ranking rate rating reward saved shape special toggle",
1624
1555
  star_outline: "bookmark favorite half highlight ranking rate rating save toggle",
1625
- star_purple_500: "best bookmark favorite highlight ranking rate rating save toggle",
1626
1556
  star_rate: "achievement bookmark favorite highlight important marked ranking rating reward saved shape special",
1627
1557
  stars: "achievement bookmark circle favorite highlight important like love marked ranking rate rating reward saved shape special",
1628
1558
  start: "arrow keyboard next right",
@@ -1710,8 +1640,6 @@ export const iconSynonyms = {
1710
1640
  task: "approve check complete data document done drive file folders mark ok page paper select sheet slide tick validate verified writing yes",
1711
1641
  task_alt: "approve check circle complete done mark ok select tick validate verified yes",
1712
1642
  taxi_alert: "! attention automobile cab cars caution danger direction error exclamation important lyft maps mark notification public symbol transportation uber vehicle warning yellow",
1713
- telegram: "brand call chat logo messaging voice",
1714
- ten_mp: "camera digits font image letters megapixels numbers quality resolution symbol text type",
1715
1643
  terminal: "application code emulator program software",
1716
1644
  terrain: "geography landscape mountain",
1717
1645
  text_decrease: "- alphabet character font letter minus remove resize subtract symbol type",
@@ -1731,16 +1659,6 @@ export const iconSynonyms = {
1731
1659
  theaters: "film media movies photography showtimes video watch",
1732
1660
  thermostat: "forecast temperature weather",
1733
1661
  thermostat_auto: "A celsius fahrenheit temperature thermometer",
1734
- thirteen_mp: "camera digits font image letters megapixels numbers quality resolution symbol text type",
1735
- thirty_fps: "alphabet camera character digit font frames letter number symbol text type video",
1736
- thirty_fps_select: "camera digits frame frequency image numbers per rate seconds video",
1737
- three_d_rotation: "3d D alphabet arrows av camera character digit font letter number symbol text type vr",
1738
- three_g_mobiledata: "alphabet cellular character digit font letter network number phone signal speed symbol text type wifi",
1739
- three_k: "3000 3K alphabet character digit display font letter number pixels resolution symbol text type video",
1740
- three_k_plus: "+ 3000 3K alphabet character digit display font letter number pixels resolution symbol text type video",
1741
- three_mp: "camera digit font image letters megapixels number quality resolution symbol text type",
1742
- three_p: "account avatar bubble chat comment communicate face human message party people person profile speech user",
1743
- three_sixty: "arrow av camera direction rotate rotation vr",
1744
1662
  thumb_down: "dislike downvote favorite fingers gesture hands ranking rate rating reject up",
1745
1663
  thumb_down_alt: "bad decline disapprove dislike feedback hand hate negative no reject social veto vote",
1746
1664
  thumb_down_off_alt: "bad decline disapprove dislike favorite feedback filled fingers gesture hands hate negative no ranking rate rating reject sad social veto vote",
@@ -1756,7 +1674,6 @@ export const iconSynonyms = {
1756
1674
  timer_3: "digits duration numbers seconds",
1757
1675
  timer_3_select: "alphabet camera character digit font letter number seconds symbol text type",
1758
1676
  timer_off: "alarm alart bell clock disabled duration enabled notification slash stopwatch",
1759
- times_one_mobiledata: "alphabet cellular character digit font letter network number phone signal speed symbol text type wifi",
1760
1677
  time_to_leave: "automobile cars destination direction drive estimate eta maps public transportation travel trip vehicle",
1761
1678
  tips_and_updates: "alert announcement electricity idea information lamp lightbulb stars",
1762
1679
  title: "T alphabet character font header letter subject symbol text type",
@@ -1800,16 +1717,6 @@ export const iconSynonyms = {
1800
1717
  turn_slight_right: "arrows directions maps navigation path route sharp sign traffic",
1801
1718
  tv: "device display linear living monitor room screencast stream television video wireless",
1802
1719
  tv_off: "Android chrome desktop device disabled enabled hardware iOS mac monitor slash television web window",
1803
- twelve_mp: "camera digits font image letters megapixels numbers quality resolution symbol text type",
1804
- twenty_four_mp: "camera digits font image letters megapixels numbers quality resolution symbol text type",
1805
- twenty_one_mp: "camera digits font image letters megapixels numbers quality resolution symbol text type",
1806
- twenty_three_mp: "camera digits font image letters megapixels numbers quality resolution symbol text type",
1807
- twenty_two_mp: "camera digits font image letters megapixels numbers quality resolution symbol text type",
1808
- twenty_zero_mp: "camera digits font image letters megapixels numbers quality resolution symbol text type",
1809
- twitter: "brand logo social",
1810
- two_k: "2000 2K alphabet character digit display font letter number pixels resolution symbol text type video",
1811
- two_k_plus: "+ alphabet character digit font letter number symbol text type",
1812
- two_mp: "camera digit font image letters megapixels number quality resolution symbol text type",
1813
1720
  two_wheeler: "automobile bicycle cars direction maps moped motorbike motorcycle public ride riding scooter transportation travel twom vehicle wheeler wheels",
1814
1721
  umbrella: "beach protection rain sunny",
1815
1722
  unarchive: "arrow inbox mail store undo up",
@@ -1939,7 +1846,6 @@ export const iconSynonyms = {
1939
1846
  wrong_location: "cancel close destination direction exit maps no pin place quit remove stop",
1940
1847
  wysiwyg: "composer mode screen software system text view visibility website window",
1941
1848
  yard: "backyard flower garden home house nature pettle plants",
1942
- you_tube: "brand logo social video",
1943
1849
  youtube_searched_for: "arrow backwards find glass history inprogress loading look magnifying refresh renew restore reverse rotate see yt",
1944
1850
  zoom_in: "bigger find glass grow look magnifier magnifying plus scale search see size",
1945
1851
  zoom_in_map: "arrows destination location maps move place stop",