@atlaskit/icon 22.9.0 → 22.11.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (58) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/core/migration/{edit--editor-add.d.ts → add--editor-add.d.ts} +2 -2
  3. package/core/migration/{edit--editor-add.js → add--editor-add.js} +9 -9
  4. package/core/migration/angle-brackets--bitbucket-repos.d.ts +9 -0
  5. package/core/migration/angle-brackets--bitbucket-repos.js +29 -0
  6. package/core/migration/download.d.ts +9 -0
  7. package/core/migration/download.js +29 -0
  8. package/core/migration/{audio--vid-audio-on.d.ts → emoji--emoji-people.d.ts} +2 -2
  9. package/core/migration/emoji--emoji-people.js +29 -0
  10. package/core/migration/flag--emoji-flags.d.ts +9 -0
  11. package/core/migration/flag--emoji-flags.js +29 -0
  12. package/core/migration/grid--editor-table.d.ts +9 -0
  13. package/core/migration/grid--editor-table.js +29 -0
  14. package/core/migration/lightbulb--lightbulb-filled.d.ts +9 -0
  15. package/core/migration/lightbulb--lightbulb-filled.js +29 -0
  16. package/core/migration/link--link-filled.d.ts +9 -0
  17. package/core/migration/link--link-filled.js +29 -0
  18. package/core/migration/microphone--vid-audio-on.d.ts +9 -0
  19. package/core/migration/{audio--vid-audio-on.js → microphone--vid-audio-on.js} +8 -7
  20. package/core/migration/minimize--media-services-fit-to-page.d.ts +9 -0
  21. package/core/migration/minimize--media-services-fit-to-page.js +29 -0
  22. package/core/migration/minimize--vid-full-screen-off.d.ts +9 -0
  23. package/core/migration/minimize--vid-full-screen-off.js +29 -0
  24. package/core/migration/upload--export.d.ts +9 -0
  25. package/core/migration/upload--export.js +29 -0
  26. package/dist/cjs/entry-points/migration-map.js +10 -2
  27. package/dist/cjs/metadata-core.js +13 -8
  28. package/dist/cjs/metadata-utility.js +1 -1
  29. package/dist/cjs/migration-map.js +100 -35
  30. package/dist/es2019/entry-points/migration-map.js +1 -1
  31. package/dist/es2019/metadata-core.js +13 -8
  32. package/dist/es2019/metadata-utility.js +1 -1
  33. package/dist/es2019/migration-map.js +99 -34
  34. package/dist/esm/entry-points/migration-map.js +1 -1
  35. package/dist/esm/metadata-core.js +13 -8
  36. package/dist/esm/metadata-utility.js +1 -1
  37. package/dist/esm/migration-map.js +99 -34
  38. package/dist/types/entry-points/migration-map.d.ts +2 -1
  39. package/dist/types/migration-map.d.ts +2 -1
  40. package/dist/types/types.d.ts +22 -6
  41. package/dist/types-ts4.5/entry-points/migration-map.d.ts +2 -1
  42. package/dist/types-ts4.5/migration-map.d.ts +2 -1
  43. package/dist/types-ts4.5/types.d.ts +22 -6
  44. package/glyph/bitbucket/repos.js +4 -1
  45. package/glyph/download.js +4 -1
  46. package/glyph/editor/add.js +2 -2
  47. package/glyph/editor/table.js +4 -1
  48. package/glyph/emoji/flags.js +4 -1
  49. package/glyph/emoji/people.js +4 -1
  50. package/glyph/export.js +4 -1
  51. package/glyph/lightbulb-filled.js +4 -1
  52. package/glyph/link-filled.js +4 -1
  53. package/glyph/media-services/fit-to-page.js +4 -1
  54. package/glyph/vid-audio-on.js +2 -2
  55. package/glyph/vid-full-screen-off.js +2 -2
  56. package/package.json +4 -5
  57. package/utility/migration/add--editor-add.d.ts +9 -0
  58. package/utility/migration/add--editor-add.js +29 -0
@@ -19,7 +19,7 @@ var metadata = {
19
19
  keywords: ['add', 'plus', 'create', 'new', 'icon', 'core', 'create', 'plus'],
20
20
  componentName: 'AddIcon',
21
21
  package: '@atlaskit/icon/core/add',
22
- oldName: ['add-circle', 'add', 'emoji/custom'],
22
+ oldName: ['add-circle', 'add', 'editor/add', 'emoji/custom'],
23
23
  categorization: 'Single-purpose',
24
24
  location: 'ADS',
25
25
  team: 'ADS',
@@ -93,7 +93,7 @@ var metadata = {
93
93
  keywords: ['angle-brackets', 'anglebrackets', 'icon', 'core', 'code', '<>', '</>', 'syntax'],
94
94
  componentName: 'AngleBracketsIcon',
95
95
  package: '@atlaskit/icon/core/angle-brackets',
96
- oldName: ['bitbucket/source', 'code', 'editor/code', 'media-services/code'],
96
+ oldName: ['bitbucket/repos', 'bitbucket/source', 'code', 'editor/code', 'media-services/code'],
97
97
  categorization: 'Multi-purpose',
98
98
  location: 'Icon contributions',
99
99
  team: 'Jira',
@@ -233,7 +233,7 @@ var metadata = {
233
233
  keywords: ['audio', 'music', 'note', 'sound', 'icon', 'core', 'music', 'musical note'],
234
234
  componentName: 'AudioIcon',
235
235
  package: '@atlaskit/icon/core/audio',
236
- oldName: ['audio-circle', 'audio', 'media-services/audio', 'vid-audio-on'],
236
+ oldName: ['audio-circle', 'audio', 'media-services/audio'],
237
237
  categorization: 'Single-purpose',
238
238
  location: 'Icon contributions',
239
239
  team: 'Media',
@@ -696,6 +696,7 @@ var metadata = {
696
696
  keywords: ['download', 'cloud', 'icon', 'core', 'down arrow', 'file download'],
697
697
  componentName: 'DownloadIcon',
698
698
  package: '@atlaskit/icon/core/download',
699
+ oldName: ['download'],
699
700
  categorization: 'Single-purpose',
700
701
  location: 'ADS',
701
702
  team: 'ADS',
@@ -717,7 +718,7 @@ var metadata = {
717
718
  keywords: ['edit', 'pencil', 'write', 'icon', 'core', 'pencil', 'pencil on page'],
718
719
  componentName: 'EditIcon',
719
720
  package: '@atlaskit/icon/core/edit',
720
- oldName: ['edit-filled', 'edit', 'editor/add', 'editor/edit'],
721
+ oldName: ['edit-filled', 'edit', 'editor/edit'],
721
722
  categorization: 'Single-purpose',
722
723
  location: 'ADS',
723
724
  team: 'ADS',
@@ -739,7 +740,7 @@ var metadata = {
739
740
  keywords: ['emoji', 'emoticon', 'smiley', 'icon', 'core', 'smiley face', 'emoticon'],
740
741
  componentName: 'EmojiIcon',
741
742
  package: '@atlaskit/icon/core/emoji',
742
- oldName: ['editor/emoji', 'emoji/emoji', 'emoji'],
743
+ oldName: ['editor/emoji', 'emoji/emoji', 'emoji', 'emoji/people'],
743
744
  categorization: 'Single-purpose',
744
745
  location: 'Icon contributions',
745
746
  team: 'Editor',
@@ -847,6 +848,7 @@ var metadata = {
847
848
  keywords: ['flag', 'icon', 'core', 'important', 'emoji category'],
848
849
  componentName: 'FlagIcon',
849
850
  package: '@atlaskit/icon/core/flag',
851
+ oldName: ['emoji/flags'],
850
852
  categorization: 'Multi-purpose',
851
853
  location: 'Icon contributions',
852
854
  team: 'Editor',
@@ -932,7 +934,7 @@ var metadata = {
932
934
  keywords: ['grid', 'icon', 'core', 'view all content', 'tile view', 'layout', 'grid', 'tiles'],
933
935
  componentName: 'GridIcon',
934
936
  package: '@atlaskit/icon/core/grid',
935
- oldName: ['media-services/grid', 'table'],
937
+ oldName: ['editor/table', 'media-services/grid', 'table'],
936
938
  categorization: 'Multi-purpose',
937
939
  location: 'ADS',
938
940
  team: 'ADS',
@@ -1040,7 +1042,7 @@ var metadata = {
1040
1042
  keywords: ['lightbulb', 'idea', 'hint', 'icon', 'core', 'idea', 'initiative', 'tip', 'learnings'],
1041
1043
  componentName: 'LightbulbIcon',
1042
1044
  package: '@atlaskit/icon/core/lightbulb',
1043
- oldName: ['editor/hint', 'emoji/objects', 'lightbulb'],
1045
+ oldName: ['editor/hint', 'emoji/objects', 'lightbulb-filled', 'lightbulb'],
1044
1046
  categorization: 'Multi-purpose',
1045
1047
  location: 'ADS',
1046
1048
  team: 'ADS',
@@ -1051,7 +1053,7 @@ var metadata = {
1051
1053
  keywords: ['link', 'icon', 'core', 'url', 'hyperlink', 'website', 'www', 'http'],
1052
1054
  componentName: 'LinkIcon',
1053
1055
  package: '@atlaskit/icon/core/link',
1054
- oldName: ['editor/link', 'link'],
1056
+ oldName: ['editor/link', 'link-filled', 'link'],
1055
1057
  categorization: 'Single-purpose',
1056
1058
  location: 'ADS',
1057
1059
  team: 'ADS',
@@ -1204,6 +1206,7 @@ var metadata = {
1204
1206
  keywords: ['microphone', 'icon', 'core', 'mic', 'mic on', 'voice', 'speak'],
1205
1207
  componentName: 'MicrophoneIcon',
1206
1208
  package: '@atlaskit/icon/core/microphone',
1209
+ oldName: ['vid-audio-on'],
1207
1210
  categorization: 'Multi-purpose',
1208
1211
  location: 'Icon contributions',
1209
1212
  team: 'Media',
@@ -1214,6 +1217,7 @@ var metadata = {
1214
1217
  keywords: ['minimize', 'icon', 'core', 'minimise', 'resize', 'diagonal arrows'],
1215
1218
  componentName: 'MinimizeIcon',
1216
1219
  package: '@atlaskit/icon/core/minimize',
1220
+ oldName: ['media-services/fit-to-page', 'vid-full-screen-off'],
1217
1221
  categorization: 'Single-purpose',
1218
1222
  location: 'ADS',
1219
1223
  team: 'ADS',
@@ -1932,6 +1936,7 @@ var metadata = {
1932
1936
  keywords: ['upload', 'cloud', 'icon', 'core', 'stream', 'file'],
1933
1937
  componentName: 'UploadIcon',
1934
1938
  package: '@atlaskit/icon/core/upload',
1939
+ oldName: ['export'],
1935
1940
  categorization: 'Single-purpose',
1936
1941
  location: 'ADS',
1937
1942
  team: 'ADS',
@@ -19,7 +19,7 @@ var metadata = {
19
19
  keywords: ['add', 'plus', 'create', 'new', 'icon', 'utility', 'create', 'plus'],
20
20
  componentName: 'AddIcon',
21
21
  package: '@atlaskit/icon/utility/add',
22
- oldName: ['add-circle', 'add', 'emoji/custom'],
22
+ oldName: ['add-circle', 'add', 'editor/add', 'emoji/custom'],
23
23
  categorization: 'Multi-purpose',
24
24
  location: 'ADS',
25
25
  team: 'ADS',
@@ -3,7 +3,23 @@
3
3
  Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
- exports.default = void 0;
6
+ exports.migrationOutcomeDescriptionMap = exports.default = void 0;
7
+ var migrationOutcomeDescriptionMap = exports.migrationOutcomeDescriptionMap = {
8
+ swap: 'Swap icon',
9
+ 'swap-slight-visual-change': 'Swap icon for an equivalent in the new set; there will be some slight visual change.',
10
+ 'swap-visual-change': 'Swap icon for an equivalent in the new set; there will be a noticeable visual change.',
11
+ 'swap-size-shift-utility': 'Swap icon for a 12px utility icon; expect some size shift.',
12
+ 'no-larger-size': 'This icon should not be used with a larger size; please shift to a smaller size.',
13
+ 'not-recommended': 'No equivalent icon in new set. This icon is not recommended.',
14
+ 'product-icon': 'Product icons are not supported; please use the custom SVG component from `@atlaskit/icon/svg`.',
15
+ 'icon-lab': 'Find an alternative icon, or create an updated icon in the new style, and contribute it to `@atlassian/icon-lab`.',
16
+ 'top-nav': 'This icon is only for use for top navigation; please choose a different icon if used elsewhere.',
17
+ 'icon-tile': 'Switch to Icon Tile, use a smaller size or remove.',
18
+ '16-icon-tile': "This icon can be re-created using an Icon tile with size='16'.",
19
+ '24-icon-tile': "This icon can be re-created using an Icon tile with size='24'.",
20
+ '32-icon-tile': "This icon can be re-created using an Icon tile with size='32'.",
21
+ '48-icon-tile': "This icon can be re-created using an Icon tile with size='48'."
22
+ };
7
23
  var migrationMap = {
8
24
  activity: {
9
25
  newIcon: {
@@ -421,11 +437,16 @@ var migrationMap = {
421
437
  }
422
438
  },
423
439
  'bitbucket/repos': {
440
+ newIcon: {
441
+ name: 'angle-brackets',
442
+ type: 'core',
443
+ package: '@atlaskit/icon'
444
+ },
424
445
  sizeGuidance: {
425
- small: 'icon-lab',
426
- medium: 'icon-lab',
427
- large: 'icon-lab',
428
- xlarge: 'icon-lab'
446
+ small: 'swap-visual-change',
447
+ medium: 'swap-visual-change',
448
+ large: '32-icon-tile',
449
+ xlarge: '48-icon-tile'
429
450
  }
430
451
  },
431
452
  'bitbucket/snippets': {
@@ -1043,15 +1064,19 @@ var migrationMap = {
1043
1064
  xlarge: 'icon-tile'
1044
1065
  }
1045
1066
  },
1046
- // download: {
1047
- // newIcon: { name: 'cloud-arrow-down', type: 'core', package: '@atlaskit/icon' },
1048
- // sizeGuidance: {
1049
- // small: 'swap',
1050
- // medium: 'swap',
1051
- // large: 'icon-tile',
1052
- // xlarge: 'icon-tile',
1053
- // },
1054
- // },
1067
+ download: {
1068
+ newIcon: {
1069
+ name: 'download',
1070
+ type: 'core',
1071
+ package: '@atlaskit/icon'
1072
+ },
1073
+ sizeGuidance: {
1074
+ small: 'swap-visual-change',
1075
+ medium: 'swap-visual-change',
1076
+ large: 'icon-tile',
1077
+ xlarge: 'icon-tile'
1078
+ }
1079
+ },
1055
1080
  'drag-handler': {
1056
1081
  newIcon: {
1057
1082
  name: 'drag-handle',
@@ -1101,7 +1126,7 @@ var migrationMap = {
1101
1126
  },
1102
1127
  'editor/add': {
1103
1128
  newIcon: {
1104
- name: 'edit',
1129
+ name: 'add',
1105
1130
  type: 'core',
1106
1131
  package: '@atlaskit/icon'
1107
1132
  },
@@ -1769,11 +1794,16 @@ var migrationMap = {
1769
1794
  }
1770
1795
  },
1771
1796
  'editor/table': {
1797
+ newIcon: {
1798
+ name: 'grid',
1799
+ type: 'core',
1800
+ package: '@atlaskit/icon'
1801
+ },
1772
1802
  sizeGuidance: {
1773
- small: 'icon-lab',
1774
- medium: 'icon-lab',
1775
- large: 'icon-lab',
1776
- xlarge: 'icon-lab'
1803
+ small: 'swap',
1804
+ medium: 'swap',
1805
+ large: 'icon-tile',
1806
+ xlarge: 'icon-tile'
1777
1807
  }
1778
1808
  },
1779
1809
  'editor/task': {
@@ -1926,6 +1956,11 @@ var migrationMap = {
1926
1956
  }
1927
1957
  },
1928
1958
  'emoji/flags': {
1959
+ newIcon: {
1960
+ name: 'flag',
1961
+ type: 'core',
1962
+ package: '@atlaskit/icon'
1963
+ },
1929
1964
  sizeGuidance: {
1930
1965
  small: 'icon-lab',
1931
1966
  medium: 'icon-lab',
@@ -2002,6 +2037,11 @@ var migrationMap = {
2002
2037
  }
2003
2038
  },
2004
2039
  'emoji/people': {
2040
+ newIcon: {
2041
+ name: 'emoji',
2042
+ type: 'core',
2043
+ package: '@atlaskit/icon'
2044
+ },
2005
2045
  sizeGuidance: {
2006
2046
  small: 'icon-lab',
2007
2047
  medium: 'icon-lab',
@@ -2052,6 +2092,11 @@ var migrationMap = {
2052
2092
  }
2053
2093
  },
2054
2094
  export: {
2095
+ newIcon: {
2096
+ name: 'upload',
2097
+ type: 'core',
2098
+ package: '@atlaskit/icon'
2099
+ },
2055
2100
  sizeGuidance: {
2056
2101
  small: 'icon-lab',
2057
2102
  medium: 'icon-lab',
@@ -2374,11 +2419,16 @@ var migrationMap = {
2374
2419
  }
2375
2420
  },
2376
2421
  'lightbulb-filled': {
2422
+ newIcon: {
2423
+ name: 'lightbulb',
2424
+ type: 'core',
2425
+ package: '@atlaskit/icon'
2426
+ },
2377
2427
  sizeGuidance: {
2378
- small: 'icon-lab',
2379
- medium: 'icon-lab',
2380
- large: 'icon-lab',
2381
- xlarge: 'icon-lab'
2428
+ small: 'swap-visual-change',
2429
+ medium: 'swap-visual-change',
2430
+ large: 'icon-tile',
2431
+ xlarge: 'icon-tile'
2382
2432
  }
2383
2433
  },
2384
2434
  lightbulb: {
@@ -2408,9 +2458,14 @@ var migrationMap = {
2408
2458
  }
2409
2459
  },
2410
2460
  'link-filled': {
2461
+ newIcon: {
2462
+ name: 'link',
2463
+ type: 'core',
2464
+ package: '@atlaskit/icon'
2465
+ },
2411
2466
  sizeGuidance: {
2412
- small: '16-icon-tile',
2413
- medium: '24-icon-tile',
2467
+ small: 'swap-visual-change',
2468
+ medium: 'swap-visual-change',
2414
2469
  large: '32-icon-tile',
2415
2470
  xlarge: '48-icon-tile'
2416
2471
  }
@@ -2482,10 +2537,10 @@ var migrationMap = {
2482
2537
  package: '@atlaskit/icon'
2483
2538
  },
2484
2539
  sizeGuidance: {
2485
- small: 'icon-lab',
2486
- medium: 'icon-lab',
2487
- large: 'icon-lab',
2488
- xlarge: 'icon-lab'
2540
+ small: '16-icon-tile',
2541
+ medium: '24-icon-tile',
2542
+ large: '32-icon-tile',
2543
+ xlarge: '48-icon-tile'
2489
2544
  }
2490
2545
  },
2491
2546
  lock: {
@@ -2641,11 +2696,16 @@ var migrationMap = {
2641
2696
  }
2642
2697
  },
2643
2698
  'media-services/fit-to-page': {
2699
+ newIcon: {
2700
+ name: 'minimize',
2701
+ type: 'core',
2702
+ package: '@atlaskit/icon'
2703
+ },
2644
2704
  sizeGuidance: {
2645
- small: 'icon-lab',
2646
- medium: 'icon-lab',
2647
- large: 'icon-lab',
2648
- xlarge: 'icon-lab'
2705
+ small: 'swap',
2706
+ medium: 'swap',
2707
+ large: 'icon-tile',
2708
+ xlarge: 'icon-tile'
2649
2709
  }
2650
2710
  },
2651
2711
  'media-services/full-screen': {
@@ -3779,7 +3839,7 @@ var migrationMap = {
3779
3839
  },
3780
3840
  'vid-audio-on': {
3781
3841
  newIcon: {
3782
- name: 'audio',
3842
+ name: 'microphone',
3783
3843
  type: 'core',
3784
3844
  package: '@atlaskit/icon'
3785
3845
  },
@@ -3863,10 +3923,15 @@ var migrationMap = {
3863
3923
  },
3864
3924
  'vid-full-screen-off': {
3865
3925
  newIcon: {
3866
- name: 'fullscreen-exit',
3926
+ name: 'minimize',
3867
3927
  type: 'core',
3868
3928
  package: '@atlaskit/icon'
3869
3929
  },
3930
+ additionalIcons: [{
3931
+ name: 'fullscreen-exit',
3932
+ type: 'core',
3933
+ package: '@atlaskit/icon'
3934
+ }],
3870
3935
  sizeGuidance: {
3871
3936
  small: 'swap-visual-change',
3872
3937
  medium: 'swap-visual-change',
@@ -1 +1 @@
1
- export { default } from '../../src/migration-map';
1
+ export { default, migrationOutcomeDescriptionMap } from '../../src/migration-map';
@@ -13,7 +13,7 @@ const metadata = {
13
13
  keywords: ['add', 'plus', 'create', 'new', 'icon', 'core', 'create', 'plus'],
14
14
  componentName: 'AddIcon',
15
15
  package: '@atlaskit/icon/core/add',
16
- oldName: ['add-circle', 'add', 'emoji/custom'],
16
+ oldName: ['add-circle', 'add', 'editor/add', 'emoji/custom'],
17
17
  categorization: 'Single-purpose',
18
18
  location: 'ADS',
19
19
  team: 'ADS',
@@ -87,7 +87,7 @@ const metadata = {
87
87
  keywords: ['angle-brackets', 'anglebrackets', 'icon', 'core', 'code', '<>', '</>', 'syntax'],
88
88
  componentName: 'AngleBracketsIcon',
89
89
  package: '@atlaskit/icon/core/angle-brackets',
90
- oldName: ['bitbucket/source', 'code', 'editor/code', 'media-services/code'],
90
+ oldName: ['bitbucket/repos', 'bitbucket/source', 'code', 'editor/code', 'media-services/code'],
91
91
  categorization: 'Multi-purpose',
92
92
  location: 'Icon contributions',
93
93
  team: 'Jira',
@@ -227,7 +227,7 @@ const metadata = {
227
227
  keywords: ['audio', 'music', 'note', 'sound', 'icon', 'core', 'music', 'musical note'],
228
228
  componentName: 'AudioIcon',
229
229
  package: '@atlaskit/icon/core/audio',
230
- oldName: ['audio-circle', 'audio', 'media-services/audio', 'vid-audio-on'],
230
+ oldName: ['audio-circle', 'audio', 'media-services/audio'],
231
231
  categorization: 'Single-purpose',
232
232
  location: 'Icon contributions',
233
233
  team: 'Media',
@@ -690,6 +690,7 @@ const metadata = {
690
690
  keywords: ['download', 'cloud', 'icon', 'core', 'down arrow', 'file download'],
691
691
  componentName: 'DownloadIcon',
692
692
  package: '@atlaskit/icon/core/download',
693
+ oldName: ['download'],
693
694
  categorization: 'Single-purpose',
694
695
  location: 'ADS',
695
696
  team: 'ADS',
@@ -711,7 +712,7 @@ const metadata = {
711
712
  keywords: ['edit', 'pencil', 'write', 'icon', 'core', 'pencil', 'pencil on page'],
712
713
  componentName: 'EditIcon',
713
714
  package: '@atlaskit/icon/core/edit',
714
- oldName: ['edit-filled', 'edit', 'editor/add', 'editor/edit'],
715
+ oldName: ['edit-filled', 'edit', 'editor/edit'],
715
716
  categorization: 'Single-purpose',
716
717
  location: 'ADS',
717
718
  team: 'ADS',
@@ -733,7 +734,7 @@ const metadata = {
733
734
  keywords: ['emoji', 'emoticon', 'smiley', 'icon', 'core', 'smiley face', 'emoticon'],
734
735
  componentName: 'EmojiIcon',
735
736
  package: '@atlaskit/icon/core/emoji',
736
- oldName: ['editor/emoji', 'emoji/emoji', 'emoji'],
737
+ oldName: ['editor/emoji', 'emoji/emoji', 'emoji', 'emoji/people'],
737
738
  categorization: 'Single-purpose',
738
739
  location: 'Icon contributions',
739
740
  team: 'Editor',
@@ -841,6 +842,7 @@ const metadata = {
841
842
  keywords: ['flag', 'icon', 'core', 'important', 'emoji category'],
842
843
  componentName: 'FlagIcon',
843
844
  package: '@atlaskit/icon/core/flag',
845
+ oldName: ['emoji/flags'],
844
846
  categorization: 'Multi-purpose',
845
847
  location: 'Icon contributions',
846
848
  team: 'Editor',
@@ -926,7 +928,7 @@ const metadata = {
926
928
  keywords: ['grid', 'icon', 'core', 'view all content', 'tile view', 'layout', 'grid', 'tiles'],
927
929
  componentName: 'GridIcon',
928
930
  package: '@atlaskit/icon/core/grid',
929
- oldName: ['media-services/grid', 'table'],
931
+ oldName: ['editor/table', 'media-services/grid', 'table'],
930
932
  categorization: 'Multi-purpose',
931
933
  location: 'ADS',
932
934
  team: 'ADS',
@@ -1034,7 +1036,7 @@ const metadata = {
1034
1036
  keywords: ['lightbulb', 'idea', 'hint', 'icon', 'core', 'idea', 'initiative', 'tip', 'learnings'],
1035
1037
  componentName: 'LightbulbIcon',
1036
1038
  package: '@atlaskit/icon/core/lightbulb',
1037
- oldName: ['editor/hint', 'emoji/objects', 'lightbulb'],
1039
+ oldName: ['editor/hint', 'emoji/objects', 'lightbulb-filled', 'lightbulb'],
1038
1040
  categorization: 'Multi-purpose',
1039
1041
  location: 'ADS',
1040
1042
  team: 'ADS',
@@ -1045,7 +1047,7 @@ const metadata = {
1045
1047
  keywords: ['link', 'icon', 'core', 'url', 'hyperlink', 'website', 'www', 'http'],
1046
1048
  componentName: 'LinkIcon',
1047
1049
  package: '@atlaskit/icon/core/link',
1048
- oldName: ['editor/link', 'link'],
1050
+ oldName: ['editor/link', 'link-filled', 'link'],
1049
1051
  categorization: 'Single-purpose',
1050
1052
  location: 'ADS',
1051
1053
  team: 'ADS',
@@ -1198,6 +1200,7 @@ const metadata = {
1198
1200
  keywords: ['microphone', 'icon', 'core', 'mic', 'mic on', 'voice', 'speak'],
1199
1201
  componentName: 'MicrophoneIcon',
1200
1202
  package: '@atlaskit/icon/core/microphone',
1203
+ oldName: ['vid-audio-on'],
1201
1204
  categorization: 'Multi-purpose',
1202
1205
  location: 'Icon contributions',
1203
1206
  team: 'Media',
@@ -1208,6 +1211,7 @@ const metadata = {
1208
1211
  keywords: ['minimize', 'icon', 'core', 'minimise', 'resize', 'diagonal arrows'],
1209
1212
  componentName: 'MinimizeIcon',
1210
1213
  package: '@atlaskit/icon/core/minimize',
1214
+ oldName: ['media-services/fit-to-page', 'vid-full-screen-off'],
1211
1215
  categorization: 'Single-purpose',
1212
1216
  location: 'ADS',
1213
1217
  team: 'ADS',
@@ -1926,6 +1930,7 @@ const metadata = {
1926
1930
  keywords: ['upload', 'cloud', 'icon', 'core', 'stream', 'file'],
1927
1931
  componentName: 'UploadIcon',
1928
1932
  package: '@atlaskit/icon/core/upload',
1933
+ oldName: ['export'],
1929
1934
  categorization: 'Single-purpose',
1930
1935
  location: 'ADS',
1931
1936
  team: 'ADS',
@@ -13,7 +13,7 @@ const metadata = {
13
13
  keywords: ['add', 'plus', 'create', 'new', 'icon', 'utility', 'create', 'plus'],
14
14
  componentName: 'AddIcon',
15
15
  package: '@atlaskit/icon/utility/add',
16
- oldName: ['add-circle', 'add', 'emoji/custom'],
16
+ oldName: ['add-circle', 'add', 'editor/add', 'emoji/custom'],
17
17
  categorization: 'Multi-purpose',
18
18
  location: 'ADS',
19
19
  team: 'ADS',