@atlaskit/icon 22.8.0 → 22.10.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.
- package/CHANGELOG.md +18 -0
- package/core/app-switcher-legacy.d.ts +9 -0
- package/core/app-switcher-legacy.js +26 -0
- package/core/app-switcher.d.ts +9 -0
- package/core/app-switcher.js +26 -0
- package/core/menu.d.ts +9 -0
- package/core/{migration/edit--editor-add.js → menu.js} +7 -10
- package/core/migration/{edit--editor-add.d.ts → add--editor-add.d.ts} +2 -2
- package/core/migration/add--editor-add.js +29 -0
- package/core/migration/angle-brackets--bitbucket-repos.d.ts +9 -0
- package/core/migration/angle-brackets--bitbucket-repos.js +29 -0
- package/core/migration/app-switcher--switcher.d.ts +9 -0
- package/core/migration/app-switcher--switcher.js +29 -0
- package/core/migration/app-switcher.d.ts +9 -0
- package/core/migration/app-switcher.js +29 -0
- package/core/migration/download.d.ts +9 -0
- package/core/migration/download.js +29 -0
- package/core/migration/{audio--vid-audio-on.d.ts → emoji--emoji-people.d.ts} +2 -2
- package/core/migration/emoji--emoji-people.js +29 -0
- package/core/migration/flag--emoji-flags.d.ts +9 -0
- package/core/migration/flag--emoji-flags.js +29 -0
- package/core/migration/grid--editor-table.d.ts +9 -0
- package/core/migration/grid--editor-table.js +29 -0
- package/core/migration/lightbulb--lightbulb-filled.d.ts +9 -0
- package/core/migration/lightbulb--lightbulb-filled.js +29 -0
- package/core/migration/link--link-filled.d.ts +9 -0
- package/core/migration/link--link-filled.js +29 -0
- package/core/migration/menu--menu-expand.d.ts +9 -0
- package/core/migration/menu--menu-expand.js +29 -0
- package/core/migration/menu.d.ts +9 -0
- package/core/migration/menu.js +29 -0
- package/core/migration/microphone--vid-audio-on.d.ts +9 -0
- package/core/migration/{audio--vid-audio-on.js → microphone--vid-audio-on.js} +8 -7
- package/core/migration/minimize--media-services-fit-to-page.d.ts +9 -0
- package/core/migration/minimize--media-services-fit-to-page.js +29 -0
- package/core/migration/minimize--vid-full-screen-off.d.ts +9 -0
- package/core/migration/minimize--vid-full-screen-off.js +29 -0
- package/core/migration/notification--notification-direct.d.ts +9 -0
- package/core/migration/notification--notification-direct.js +29 -0
- package/core/migration/notification.d.ts +9 -0
- package/core/migration/notification.js +29 -0
- package/core/migration/upload--export.d.ts +9 -0
- package/core/migration/upload--export.js +29 -0
- package/core/notification.d.ts +9 -0
- package/core/notification.js +26 -0
- package/dist/cjs/entry-points/migration-map.js +10 -2
- package/dist/cjs/metadata-core.js +56 -8
- package/dist/cjs/metadata-utility.js +1 -1
- package/dist/cjs/migration-map.js +178 -89
- package/dist/es2019/entry-points/migration-map.js +1 -1
- package/dist/es2019/metadata-core.js +56 -8
- package/dist/es2019/metadata-utility.js +1 -1
- package/dist/es2019/migration-map.js +177 -88
- package/dist/esm/entry-points/migration-map.js +1 -1
- package/dist/esm/metadata-core.js +56 -8
- package/dist/esm/metadata-utility.js +1 -1
- package/dist/esm/migration-map.js +177 -88
- package/dist/types/entry-points/migration-map.d.ts +2 -1
- package/dist/types/migration-map.d.ts +2 -1
- package/dist/types/types.d.ts +19 -3
- package/dist/types-ts4.5/entry-points/migration-map.d.ts +2 -1
- package/dist/types-ts4.5/migration-map.d.ts +2 -1
- package/dist/types-ts4.5/types.d.ts +19 -3
- package/glyph/app-switcher.js +4 -1
- package/glyph/bitbucket/repos.js +4 -1
- package/glyph/download.js +4 -1
- package/glyph/editor/add.js +2 -2
- package/glyph/editor/table.js +4 -1
- package/glyph/emoji/flags.js +4 -1
- package/glyph/emoji/people.js +4 -1
- package/glyph/export.js +4 -1
- package/glyph/lightbulb-filled.js +4 -1
- package/glyph/link-filled.js +4 -1
- package/glyph/media-services/fit-to-page.js +4 -1
- package/glyph/menu-expand.js +4 -1
- package/glyph/menu.js +4 -1
- package/glyph/notification-direct.js +4 -1
- package/glyph/notification.js +4 -1
- package/glyph/switcher.js +4 -1
- package/glyph/vid-audio-on.js +2 -2
- package/glyph/vid-full-screen-off.js +2 -2
- package/package.json +2 -3
- package/utility/migration/add--editor-add.d.ts +9 -0
- package/utility/migration/add--editor-add.js +29 -0
|
@@ -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: {
|
|
@@ -122,15 +138,19 @@ var migrationMap = {
|
|
|
122
138
|
xlarge: 'icon-tile'
|
|
123
139
|
}
|
|
124
140
|
},
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
141
|
+
'app-switcher': {
|
|
142
|
+
newIcon: {
|
|
143
|
+
name: 'app-switcher',
|
|
144
|
+
type: 'core',
|
|
145
|
+
package: '@atlaskit/icon'
|
|
146
|
+
},
|
|
147
|
+
sizeGuidance: {
|
|
148
|
+
small: 'top-nav',
|
|
149
|
+
medium: 'top-nav',
|
|
150
|
+
large: 'top-nav',
|
|
151
|
+
xlarge: 'top-nav'
|
|
152
|
+
}
|
|
153
|
+
},
|
|
134
154
|
archive: {
|
|
135
155
|
newIcon: {
|
|
136
156
|
name: 'archive-box',
|
|
@@ -417,11 +437,16 @@ var migrationMap = {
|
|
|
417
437
|
}
|
|
418
438
|
},
|
|
419
439
|
'bitbucket/repos': {
|
|
440
|
+
newIcon: {
|
|
441
|
+
name: 'angle-brackets',
|
|
442
|
+
type: 'core',
|
|
443
|
+
package: '@atlaskit/icon'
|
|
444
|
+
},
|
|
420
445
|
sizeGuidance: {
|
|
421
|
-
small: '
|
|
422
|
-
medium: '
|
|
423
|
-
large: 'icon-
|
|
424
|
-
xlarge: 'icon-
|
|
446
|
+
small: 'swap-visual-change',
|
|
447
|
+
medium: 'swap-visual-change',
|
|
448
|
+
large: '32-icon-tile',
|
|
449
|
+
xlarge: '48-icon-tile'
|
|
425
450
|
}
|
|
426
451
|
},
|
|
427
452
|
'bitbucket/snippets': {
|
|
@@ -1039,15 +1064,19 @@ var migrationMap = {
|
|
|
1039
1064
|
xlarge: 'icon-tile'
|
|
1040
1065
|
}
|
|
1041
1066
|
},
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
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
|
+
},
|
|
1051
1080
|
'drag-handler': {
|
|
1052
1081
|
newIcon: {
|
|
1053
1082
|
name: 'drag-handle',
|
|
@@ -1097,7 +1126,7 @@ var migrationMap = {
|
|
|
1097
1126
|
},
|
|
1098
1127
|
'editor/add': {
|
|
1099
1128
|
newIcon: {
|
|
1100
|
-
name: '
|
|
1129
|
+
name: 'add',
|
|
1101
1130
|
type: 'core',
|
|
1102
1131
|
package: '@atlaskit/icon'
|
|
1103
1132
|
},
|
|
@@ -1765,11 +1794,16 @@ var migrationMap = {
|
|
|
1765
1794
|
}
|
|
1766
1795
|
},
|
|
1767
1796
|
'editor/table': {
|
|
1797
|
+
newIcon: {
|
|
1798
|
+
name: 'grid',
|
|
1799
|
+
type: 'core',
|
|
1800
|
+
package: '@atlaskit/icon'
|
|
1801
|
+
},
|
|
1768
1802
|
sizeGuidance: {
|
|
1769
|
-
small: '
|
|
1770
|
-
medium: '
|
|
1771
|
-
large: 'icon-
|
|
1772
|
-
xlarge: 'icon-
|
|
1803
|
+
small: 'swap',
|
|
1804
|
+
medium: 'swap',
|
|
1805
|
+
large: 'icon-tile',
|
|
1806
|
+
xlarge: 'icon-tile'
|
|
1773
1807
|
}
|
|
1774
1808
|
},
|
|
1775
1809
|
'editor/task': {
|
|
@@ -1922,6 +1956,11 @@ var migrationMap = {
|
|
|
1922
1956
|
}
|
|
1923
1957
|
},
|
|
1924
1958
|
'emoji/flags': {
|
|
1959
|
+
newIcon: {
|
|
1960
|
+
name: 'flag',
|
|
1961
|
+
type: 'core',
|
|
1962
|
+
package: '@atlaskit/icon'
|
|
1963
|
+
},
|
|
1925
1964
|
sizeGuidance: {
|
|
1926
1965
|
small: 'icon-lab',
|
|
1927
1966
|
medium: 'icon-lab',
|
|
@@ -1998,6 +2037,11 @@ var migrationMap = {
|
|
|
1998
2037
|
}
|
|
1999
2038
|
},
|
|
2000
2039
|
'emoji/people': {
|
|
2040
|
+
newIcon: {
|
|
2041
|
+
name: 'emoji',
|
|
2042
|
+
type: 'core',
|
|
2043
|
+
package: '@atlaskit/icon'
|
|
2044
|
+
},
|
|
2001
2045
|
sizeGuidance: {
|
|
2002
2046
|
small: 'icon-lab',
|
|
2003
2047
|
medium: 'icon-lab',
|
|
@@ -2048,6 +2092,11 @@ var migrationMap = {
|
|
|
2048
2092
|
}
|
|
2049
2093
|
},
|
|
2050
2094
|
export: {
|
|
2095
|
+
newIcon: {
|
|
2096
|
+
name: 'upload',
|
|
2097
|
+
type: 'core',
|
|
2098
|
+
package: '@atlaskit/icon'
|
|
2099
|
+
},
|
|
2051
2100
|
sizeGuidance: {
|
|
2052
2101
|
small: 'icon-lab',
|
|
2053
2102
|
medium: 'icon-lab',
|
|
@@ -2370,11 +2419,16 @@ var migrationMap = {
|
|
|
2370
2419
|
}
|
|
2371
2420
|
},
|
|
2372
2421
|
'lightbulb-filled': {
|
|
2422
|
+
newIcon: {
|
|
2423
|
+
name: 'lightbulb',
|
|
2424
|
+
type: 'core',
|
|
2425
|
+
package: '@atlaskit/icon'
|
|
2426
|
+
},
|
|
2373
2427
|
sizeGuidance: {
|
|
2374
|
-
small: '
|
|
2375
|
-
medium: '
|
|
2376
|
-
large: 'icon-
|
|
2377
|
-
xlarge: 'icon-
|
|
2428
|
+
small: 'swap-visual-change',
|
|
2429
|
+
medium: 'swap-visual-change',
|
|
2430
|
+
large: 'icon-tile',
|
|
2431
|
+
xlarge: 'icon-tile'
|
|
2378
2432
|
}
|
|
2379
2433
|
},
|
|
2380
2434
|
lightbulb: {
|
|
@@ -2404,9 +2458,14 @@ var migrationMap = {
|
|
|
2404
2458
|
}
|
|
2405
2459
|
},
|
|
2406
2460
|
'link-filled': {
|
|
2461
|
+
newIcon: {
|
|
2462
|
+
name: 'link',
|
|
2463
|
+
type: 'core',
|
|
2464
|
+
package: '@atlaskit/icon'
|
|
2465
|
+
},
|
|
2407
2466
|
sizeGuidance: {
|
|
2408
|
-
small: '
|
|
2409
|
-
medium: '
|
|
2467
|
+
small: 'swap-visual-change',
|
|
2468
|
+
medium: 'swap-visual-change',
|
|
2410
2469
|
large: '32-icon-tile',
|
|
2411
2470
|
xlarge: '48-icon-tile'
|
|
2412
2471
|
}
|
|
@@ -2478,10 +2537,10 @@ var migrationMap = {
|
|
|
2478
2537
|
package: '@atlaskit/icon'
|
|
2479
2538
|
},
|
|
2480
2539
|
sizeGuidance: {
|
|
2481
|
-
small: 'icon-
|
|
2482
|
-
medium: 'icon-
|
|
2483
|
-
large: 'icon-
|
|
2484
|
-
xlarge: 'icon-
|
|
2540
|
+
small: '16-icon-tile',
|
|
2541
|
+
medium: '24-icon-tile',
|
|
2542
|
+
large: '32-icon-tile',
|
|
2543
|
+
xlarge: '48-icon-tile'
|
|
2485
2544
|
}
|
|
2486
2545
|
},
|
|
2487
2546
|
lock: {
|
|
@@ -2637,11 +2696,16 @@ var migrationMap = {
|
|
|
2637
2696
|
}
|
|
2638
2697
|
},
|
|
2639
2698
|
'media-services/fit-to-page': {
|
|
2699
|
+
newIcon: {
|
|
2700
|
+
name: 'minimize',
|
|
2701
|
+
type: 'core',
|
|
2702
|
+
package: '@atlaskit/icon'
|
|
2703
|
+
},
|
|
2640
2704
|
sizeGuidance: {
|
|
2641
|
-
small: '
|
|
2642
|
-
medium: '
|
|
2643
|
-
large: 'icon-
|
|
2644
|
-
xlarge: 'icon-
|
|
2705
|
+
small: 'swap',
|
|
2706
|
+
medium: 'swap',
|
|
2707
|
+
large: 'icon-tile',
|
|
2708
|
+
xlarge: 'icon-tile'
|
|
2645
2709
|
}
|
|
2646
2710
|
},
|
|
2647
2711
|
'media-services/full-screen': {
|
|
@@ -2870,24 +2934,32 @@ var migrationMap = {
|
|
|
2870
2934
|
xlarge: 'icon-lab'
|
|
2871
2935
|
}
|
|
2872
2936
|
},
|
|
2873
|
-
|
|
2874
|
-
|
|
2875
|
-
|
|
2876
|
-
|
|
2877
|
-
|
|
2878
|
-
|
|
2879
|
-
|
|
2880
|
-
|
|
2881
|
-
|
|
2882
|
-
|
|
2883
|
-
|
|
2884
|
-
|
|
2885
|
-
|
|
2886
|
-
|
|
2887
|
-
|
|
2888
|
-
|
|
2889
|
-
|
|
2890
|
-
|
|
2937
|
+
'menu-expand': {
|
|
2938
|
+
newIcon: {
|
|
2939
|
+
name: 'menu',
|
|
2940
|
+
type: 'core',
|
|
2941
|
+
package: '@atlaskit/icon'
|
|
2942
|
+
},
|
|
2943
|
+
sizeGuidance: {
|
|
2944
|
+
small: 'swap',
|
|
2945
|
+
medium: 'swap',
|
|
2946
|
+
large: 'icon-tile',
|
|
2947
|
+
xlarge: 'icon-tile'
|
|
2948
|
+
}
|
|
2949
|
+
},
|
|
2950
|
+
menu: {
|
|
2951
|
+
newIcon: {
|
|
2952
|
+
name: 'menu',
|
|
2953
|
+
type: 'core',
|
|
2954
|
+
package: '@atlaskit/icon'
|
|
2955
|
+
},
|
|
2956
|
+
sizeGuidance: {
|
|
2957
|
+
small: 'swap',
|
|
2958
|
+
medium: 'swap',
|
|
2959
|
+
large: 'icon-tile',
|
|
2960
|
+
xlarge: 'icon-tile'
|
|
2961
|
+
}
|
|
2962
|
+
},
|
|
2891
2963
|
mobile: {
|
|
2892
2964
|
newIcon: {
|
|
2893
2965
|
name: 'device-mobile',
|
|
@@ -2935,24 +3007,32 @@ var migrationMap = {
|
|
|
2935
3007
|
xlarge: 'icon-lab'
|
|
2936
3008
|
}
|
|
2937
3009
|
},
|
|
2938
|
-
|
|
2939
|
-
|
|
2940
|
-
|
|
2941
|
-
|
|
2942
|
-
|
|
2943
|
-
|
|
2944
|
-
|
|
2945
|
-
|
|
2946
|
-
|
|
2947
|
-
|
|
2948
|
-
|
|
2949
|
-
|
|
2950
|
-
|
|
2951
|
-
|
|
2952
|
-
|
|
2953
|
-
|
|
2954
|
-
|
|
2955
|
-
|
|
3010
|
+
'notification-direct': {
|
|
3011
|
+
newIcon: {
|
|
3012
|
+
name: 'notification',
|
|
3013
|
+
type: 'core',
|
|
3014
|
+
package: '@atlaskit/icon'
|
|
3015
|
+
},
|
|
3016
|
+
sizeGuidance: {
|
|
3017
|
+
small: 'swap-slight-visual-change',
|
|
3018
|
+
medium: 'swap-slight-visual-change',
|
|
3019
|
+
large: 'icon-tile',
|
|
3020
|
+
xlarge: 'icon-tile'
|
|
3021
|
+
}
|
|
3022
|
+
},
|
|
3023
|
+
notification: {
|
|
3024
|
+
newIcon: {
|
|
3025
|
+
name: 'notification',
|
|
3026
|
+
type: 'core',
|
|
3027
|
+
package: '@atlaskit/icon'
|
|
3028
|
+
},
|
|
3029
|
+
sizeGuidance: {
|
|
3030
|
+
small: 'swap-visual-change',
|
|
3031
|
+
medium: 'swap-visual-change',
|
|
3032
|
+
large: 'icon-tile',
|
|
3033
|
+
xlarge: 'icon-tile'
|
|
3034
|
+
}
|
|
3035
|
+
},
|
|
2956
3036
|
'office-building-filled': {
|
|
2957
3037
|
newIcon: {
|
|
2958
3038
|
name: 'office-building',
|
|
@@ -3580,15 +3660,19 @@ var migrationMap = {
|
|
|
3580
3660
|
xlarge: 'icon-tile'
|
|
3581
3661
|
}
|
|
3582
3662
|
},
|
|
3583
|
-
|
|
3584
|
-
|
|
3585
|
-
|
|
3586
|
-
|
|
3587
|
-
|
|
3588
|
-
|
|
3589
|
-
|
|
3590
|
-
|
|
3591
|
-
|
|
3663
|
+
switcher: {
|
|
3664
|
+
newIcon: {
|
|
3665
|
+
name: 'app-switcher',
|
|
3666
|
+
type: 'core',
|
|
3667
|
+
package: '@atlaskit/icon'
|
|
3668
|
+
},
|
|
3669
|
+
sizeGuidance: {
|
|
3670
|
+
small: 'swap-visual-change',
|
|
3671
|
+
medium: 'swap-visual-change',
|
|
3672
|
+
large: 'not-recommended',
|
|
3673
|
+
xlarge: 'not-recommended'
|
|
3674
|
+
}
|
|
3675
|
+
},
|
|
3592
3676
|
table: {
|
|
3593
3677
|
newIcon: {
|
|
3594
3678
|
name: 'grid',
|
|
@@ -3755,7 +3839,7 @@ var migrationMap = {
|
|
|
3755
3839
|
},
|
|
3756
3840
|
'vid-audio-on': {
|
|
3757
3841
|
newIcon: {
|
|
3758
|
-
name: '
|
|
3842
|
+
name: 'microphone',
|
|
3759
3843
|
type: 'core',
|
|
3760
3844
|
package: '@atlaskit/icon'
|
|
3761
3845
|
},
|
|
@@ -3839,10 +3923,15 @@ var migrationMap = {
|
|
|
3839
3923
|
},
|
|
3840
3924
|
'vid-full-screen-off': {
|
|
3841
3925
|
newIcon: {
|
|
3842
|
-
name: '
|
|
3926
|
+
name: 'minimize',
|
|
3843
3927
|
type: 'core',
|
|
3844
3928
|
package: '@atlaskit/icon'
|
|
3845
3929
|
},
|
|
3930
|
+
additionalIcons: [{
|
|
3931
|
+
name: 'fullscreen-exit',
|
|
3932
|
+
type: 'core',
|
|
3933
|
+
package: '@atlaskit/icon'
|
|
3934
|
+
}],
|
|
3846
3935
|
sizeGuidance: {
|
|
3847
3936
|
small: 'swap-visual-change',
|
|
3848
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',
|
|
@@ -105,6 +105,27 @@ const metadata = {
|
|
|
105
105
|
type: 'Global noun',
|
|
106
106
|
usage: 'Reserved for marketplace apps and integrations across products.'
|
|
107
107
|
},
|
|
108
|
+
'app-switcher': {
|
|
109
|
+
keywords: ['app-switcher', 'appswitcher', 'icon', 'core', 'application switcher', 'change product', 'switch product', 'product switcher', 'top navigation'],
|
|
110
|
+
componentName: 'AppSwitcherIcon',
|
|
111
|
+
package: '@atlaskit/icon/core/app-switcher',
|
|
112
|
+
oldName: ['app-switcher', 'switcher'],
|
|
113
|
+
categorization: 'Single-purpose',
|
|
114
|
+
location: 'ADS',
|
|
115
|
+
team: 'ADS',
|
|
116
|
+
type: 'Core',
|
|
117
|
+
usage: 'Reserved for app switcher in global product navigation.'
|
|
118
|
+
},
|
|
119
|
+
'app-switcher-legacy': {
|
|
120
|
+
keywords: ['app-switcher-legacy', 'appswitcherlegacy', 'icon', 'core', 'application switcher', 'change product', 'switch product', 'product switcher', 'top navigation'],
|
|
121
|
+
componentName: 'AppSwitcherLegacyIcon',
|
|
122
|
+
package: '@atlaskit/icon/core/app-switcher-legacy',
|
|
123
|
+
categorization: 'Single-purpose',
|
|
124
|
+
location: 'ADS',
|
|
125
|
+
team: 'ADS',
|
|
126
|
+
type: 'Core',
|
|
127
|
+
usage: 'Reserved for the legacy app switcher in global product navigation.'
|
|
128
|
+
},
|
|
108
129
|
apps: {
|
|
109
130
|
keywords: ['apps', 'icon', 'core', 'third-party', 'applications'],
|
|
110
131
|
componentName: 'AppsIcon',
|
|
@@ -206,7 +227,7 @@ const metadata = {
|
|
|
206
227
|
keywords: ['audio', 'music', 'note', 'sound', 'icon', 'core', 'music', 'musical note'],
|
|
207
228
|
componentName: 'AudioIcon',
|
|
208
229
|
package: '@atlaskit/icon/core/audio',
|
|
209
|
-
oldName: ['audio-circle', 'audio', 'media-services/audio'
|
|
230
|
+
oldName: ['audio-circle', 'audio', 'media-services/audio'],
|
|
210
231
|
categorization: 'Single-purpose',
|
|
211
232
|
location: 'Icon contributions',
|
|
212
233
|
team: 'Media',
|
|
@@ -669,6 +690,7 @@ const metadata = {
|
|
|
669
690
|
keywords: ['download', 'cloud', 'icon', 'core', 'down arrow', 'file download'],
|
|
670
691
|
componentName: 'DownloadIcon',
|
|
671
692
|
package: '@atlaskit/icon/core/download',
|
|
693
|
+
oldName: ['download'],
|
|
672
694
|
categorization: 'Single-purpose',
|
|
673
695
|
location: 'ADS',
|
|
674
696
|
team: 'ADS',
|
|
@@ -690,7 +712,7 @@ const metadata = {
|
|
|
690
712
|
keywords: ['edit', 'pencil', 'write', 'icon', 'core', 'pencil', 'pencil on page'],
|
|
691
713
|
componentName: 'EditIcon',
|
|
692
714
|
package: '@atlaskit/icon/core/edit',
|
|
693
|
-
oldName: ['edit-filled', 'edit', 'editor/
|
|
715
|
+
oldName: ['edit-filled', 'edit', 'editor/edit'],
|
|
694
716
|
categorization: 'Single-purpose',
|
|
695
717
|
location: 'ADS',
|
|
696
718
|
team: 'ADS',
|
|
@@ -712,7 +734,7 @@ const metadata = {
|
|
|
712
734
|
keywords: ['emoji', 'emoticon', 'smiley', 'icon', 'core', 'smiley face', 'emoticon'],
|
|
713
735
|
componentName: 'EmojiIcon',
|
|
714
736
|
package: '@atlaskit/icon/core/emoji',
|
|
715
|
-
oldName: ['editor/emoji', 'emoji/emoji', 'emoji'],
|
|
737
|
+
oldName: ['editor/emoji', 'emoji/emoji', 'emoji', 'emoji/people'],
|
|
716
738
|
categorization: 'Single-purpose',
|
|
717
739
|
location: 'Icon contributions',
|
|
718
740
|
team: 'Editor',
|
|
@@ -820,6 +842,7 @@ const metadata = {
|
|
|
820
842
|
keywords: ['flag', 'icon', 'core', 'important', 'emoji category'],
|
|
821
843
|
componentName: 'FlagIcon',
|
|
822
844
|
package: '@atlaskit/icon/core/flag',
|
|
845
|
+
oldName: ['emoji/flags'],
|
|
823
846
|
categorization: 'Multi-purpose',
|
|
824
847
|
location: 'Icon contributions',
|
|
825
848
|
team: 'Editor',
|
|
@@ -905,7 +928,7 @@ const metadata = {
|
|
|
905
928
|
keywords: ['grid', 'icon', 'core', 'view all content', 'tile view', 'layout', 'grid', 'tiles'],
|
|
906
929
|
componentName: 'GridIcon',
|
|
907
930
|
package: '@atlaskit/icon/core/grid',
|
|
908
|
-
oldName: ['media-services/grid', 'table'],
|
|
931
|
+
oldName: ['editor/table', 'media-services/grid', 'table'],
|
|
909
932
|
categorization: 'Multi-purpose',
|
|
910
933
|
location: 'ADS',
|
|
911
934
|
team: 'ADS',
|
|
@@ -1013,7 +1036,7 @@ const metadata = {
|
|
|
1013
1036
|
keywords: ['lightbulb', 'idea', 'hint', 'icon', 'core', 'idea', 'initiative', 'tip', 'learnings'],
|
|
1014
1037
|
componentName: 'LightbulbIcon',
|
|
1015
1038
|
package: '@atlaskit/icon/core/lightbulb',
|
|
1016
|
-
oldName: ['editor/hint', 'emoji/objects', 'lightbulb'],
|
|
1039
|
+
oldName: ['editor/hint', 'emoji/objects', 'lightbulb-filled', 'lightbulb'],
|
|
1017
1040
|
categorization: 'Multi-purpose',
|
|
1018
1041
|
location: 'ADS',
|
|
1019
1042
|
team: 'ADS',
|
|
@@ -1024,7 +1047,7 @@ const metadata = {
|
|
|
1024
1047
|
keywords: ['link', 'icon', 'core', 'url', 'hyperlink', 'website', 'www', 'http'],
|
|
1025
1048
|
componentName: 'LinkIcon',
|
|
1026
1049
|
package: '@atlaskit/icon/core/link',
|
|
1027
|
-
oldName: ['editor/link', 'link'],
|
|
1050
|
+
oldName: ['editor/link', 'link-filled', 'link'],
|
|
1028
1051
|
categorization: 'Single-purpose',
|
|
1029
1052
|
location: 'ADS',
|
|
1030
1053
|
team: 'ADS',
|
|
@@ -1162,10 +1185,22 @@ const metadata = {
|
|
|
1162
1185
|
type: 'Core',
|
|
1163
1186
|
usage: 'Reserved for user mentions.'
|
|
1164
1187
|
},
|
|
1188
|
+
menu: {
|
|
1189
|
+
keywords: ['menu', 'hamburger', 'navigation', 'switcher', 'app switcher', 'icon', 'core', 'menu', 'top navigation', '3 lines', 'hamburger'],
|
|
1190
|
+
componentName: 'MenuIcon',
|
|
1191
|
+
package: '@atlaskit/icon/core/menu',
|
|
1192
|
+
oldName: ['menu-expand', 'menu'],
|
|
1193
|
+
categorization: 'Single-purpose',
|
|
1194
|
+
location: 'ADS',
|
|
1195
|
+
team: 'ADS',
|
|
1196
|
+
type: 'Core',
|
|
1197
|
+
usage: 'Reserved for accessing the menu in global product navigation.'
|
|
1198
|
+
},
|
|
1165
1199
|
microphone: {
|
|
1166
1200
|
keywords: ['microphone', 'icon', 'core', 'mic', 'mic on', 'voice', 'speak'],
|
|
1167
1201
|
componentName: 'MicrophoneIcon',
|
|
1168
1202
|
package: '@atlaskit/icon/core/microphone',
|
|
1203
|
+
oldName: ['vid-audio-on'],
|
|
1169
1204
|
categorization: 'Multi-purpose',
|
|
1170
1205
|
location: 'Icon contributions',
|
|
1171
1206
|
team: 'Media',
|
|
@@ -1176,6 +1211,7 @@ const metadata = {
|
|
|
1176
1211
|
keywords: ['minimize', 'icon', 'core', 'minimise', 'resize', 'diagonal arrows'],
|
|
1177
1212
|
componentName: 'MinimizeIcon',
|
|
1178
1213
|
package: '@atlaskit/icon/core/minimize',
|
|
1214
|
+
oldName: ['media-services/fit-to-page', 'vid-full-screen-off'],
|
|
1179
1215
|
categorization: 'Single-purpose',
|
|
1180
1216
|
location: 'ADS',
|
|
1181
1217
|
team: 'ADS',
|
|
@@ -1192,6 +1228,17 @@ const metadata = {
|
|
|
1192
1228
|
type: 'Core',
|
|
1193
1229
|
usage: 'Reserved for a non-expandable item in a page tree.'
|
|
1194
1230
|
},
|
|
1231
|
+
notification: {
|
|
1232
|
+
keywords: ['notification', 'bell', 'alarm', 'icon', 'core', 'bell', 'alert', 'top navigation'],
|
|
1233
|
+
componentName: 'NotificationIcon',
|
|
1234
|
+
package: '@atlaskit/icon/core/notification',
|
|
1235
|
+
oldName: ['notification-direct', 'notification'],
|
|
1236
|
+
categorization: 'Single-purpose',
|
|
1237
|
+
location: 'ADS',
|
|
1238
|
+
team: 'ADS',
|
|
1239
|
+
type: 'Core',
|
|
1240
|
+
usage: 'Reserved for notifications within global product navigation and within product screens.'
|
|
1241
|
+
},
|
|
1195
1242
|
'office-building': {
|
|
1196
1243
|
keywords: ['office-building', 'officebuilding', 'icon', 'core', 'organization', 'organisation', 'business'],
|
|
1197
1244
|
componentName: 'OfficeBuildingIcon',
|
|
@@ -1883,6 +1930,7 @@ const metadata = {
|
|
|
1883
1930
|
keywords: ['upload', 'cloud', 'icon', 'core', 'stream', 'file'],
|
|
1884
1931
|
componentName: 'UploadIcon',
|
|
1885
1932
|
package: '@atlaskit/icon/core/upload',
|
|
1933
|
+
oldName: ['export'],
|
|
1886
1934
|
categorization: 'Single-purpose',
|
|
1887
1935
|
location: 'ADS',
|
|
1888
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',
|