@atlaskit/icon-lab 5.10.0 → 5.12.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 (71) hide show
  1. package/CHANGELOG.md +51 -62
  2. package/build/index.tsx +1 -71
  3. package/core/block-synced.d.ts +13 -0
  4. package/core/block-synced.js +29 -0
  5. package/core/pipeline.d.ts +13 -0
  6. package/core/pipeline.js +29 -0
  7. package/core/plan.d.ts +13 -0
  8. package/core/plan.js +29 -0
  9. package/core/playlist-add.d.ts +13 -0
  10. package/core/playlist-add.js +29 -0
  11. package/core/playlist-added.d.ts +13 -0
  12. package/core/playlist-added.js +29 -0
  13. package/core/playlist-remove.d.ts +13 -0
  14. package/core/playlist-remove.js +29 -0
  15. package/core/playlist.d.ts +13 -0
  16. package/core/playlist.js +29 -0
  17. package/core/roadmaps-plan.d.ts +4 -1
  18. package/core/roadmaps-plan.js +2 -2
  19. package/core/roadmaps-service.d.ts +4 -1
  20. package/core/service.d.ts +13 -0
  21. package/core/service.js +29 -0
  22. package/core/status-workflow-cancelled.d.ts +13 -0
  23. package/core/status-workflow-cancelled.js +29 -0
  24. package/core/status-workflow-danger.d.ts +13 -0
  25. package/core/status-workflow-danger.js +29 -0
  26. package/core/status-workflow-in-progress.d.ts +13 -0
  27. package/core/status-workflow-in-progress.js +29 -0
  28. package/core/status-workflow-in-review.d.ts +13 -0
  29. package/core/status-workflow-in-review.js +29 -0
  30. package/core/status-workflow-inactive.d.ts +13 -0
  31. package/core/status-workflow-inactive.js +29 -0
  32. package/core/status-workflow-incomplete.d.ts +13 -0
  33. package/core/status-workflow-incomplete.js +29 -0
  34. package/core/status-workflow-paused.d.ts +13 -0
  35. package/core/status-workflow-paused.js +29 -0
  36. package/core/status-workflow-returned.d.ts +13 -0
  37. package/core/status-workflow-returned.js +29 -0
  38. package/core/status-workflow-scheduled.d.ts +13 -0
  39. package/core/status-workflow-scheduled.js +29 -0
  40. package/core/status-workflow-stopped.d.ts +13 -0
  41. package/core/status-workflow-stopped.js +29 -0
  42. package/core/status-workflow-success.d.ts +13 -0
  43. package/core/status-workflow-success.js +29 -0
  44. package/core/status-workflow-warning.d.ts +13 -0
  45. package/core/status-workflow-warning.js +29 -0
  46. package/dist/cjs/metadata-core.js +219 -5
  47. package/dist/es2019/metadata-core.js +219 -5
  48. package/dist/esm/metadata-core.js +219 -5
  49. package/dist/types/metadata-core.d.ts +2 -3
  50. package/dist/types-ts4.5/metadata-core.d.ts +2 -3
  51. package/package.json +10 -10
  52. package/svgs/core/block-synced.svg +1 -0
  53. package/svgs/core/pipeline.svg +1 -0
  54. package/svgs/core/plan.svg +1 -0
  55. package/svgs/core/playlist-add.svg +1 -0
  56. package/svgs/core/playlist-added.svg +1 -0
  57. package/svgs/core/playlist-remove.svg +1 -0
  58. package/svgs/core/playlist.svg +1 -0
  59. package/svgs/core/service.svg +1 -0
  60. package/svgs/core/status-workflow-cancelled.svg +1 -0
  61. package/svgs/core/status-workflow-danger.svg +1 -0
  62. package/svgs/core/status-workflow-in-progress.svg +1 -0
  63. package/svgs/core/status-workflow-in-review.svg +1 -0
  64. package/svgs/core/status-workflow-inactive.svg +1 -0
  65. package/svgs/core/status-workflow-incomplete.svg +1 -0
  66. package/svgs/core/status-workflow-paused.svg +1 -0
  67. package/svgs/core/status-workflow-returned.svg +1 -0
  68. package/svgs/core/status-workflow-scheduled.svg +1 -0
  69. package/svgs/core/status-workflow-stopped.svg +1 -0
  70. package/svgs/core/status-workflow-success.svg +1 -0
  71. package/svgs/core/status-workflow-warning.svg +1 -0
package/CHANGELOG.md CHANGED
@@ -1,5 +1,56 @@
1
1
  # @atlaskit/icon-lab
2
2
 
3
+ ## 5.12.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`35c97ff8e4633`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/35c97ff8e4633) -
8
+ This release deprecates icons in `@atlaskit/icon-lab`.
9
+
10
+ ### Deprecated:
11
+
12
+ **`@atlaskit/icon-lab/core`**
13
+ - `roadmaps-plan`
14
+ - `roadmaps-service`
15
+
16
+ - [`35c97ff8e4633`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/35c97ff8e4633) -
17
+ This release adds icons in `@atlaskit/icon-lab`.
18
+
19
+ ### Added:
20
+
21
+ **`@atlaskit/icon-lab/core`**
22
+ - `pipeline`
23
+ - `plan`
24
+ - `playlist-add`
25
+ - `playlist-added`
26
+ - `playlist-remove`
27
+ - `playlist`
28
+ - `service`
29
+ - `status-workflow-cancelled`
30
+ - `status-workflow-danger`
31
+ - `status-workflow-in-progress`
32
+ - `status-workflow-in-review`
33
+ - `status-workflow-inactive`
34
+ - `status-workflow-incomplete`
35
+ - `status-workflow-paused`
36
+ - `status-workflow-returned`
37
+ - `status-workflow-scheduled`
38
+ - `status-workflow-stopped`
39
+ - `status-workflow-success`
40
+ - `status-workflow-warning`
41
+
42
+ ## 5.11.0
43
+
44
+ ### Minor Changes
45
+
46
+ - [`9e825008e94fe`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/9e825008e94fe) -
47
+ This release adds icons in `@atlaskit/icon-lab`.
48
+
49
+ ### Added:
50
+
51
+ **`@atlaskit/icon-lab/core`**
52
+ - `block-synced`
53
+
3
54
  ## 5.10.0
4
55
 
5
56
  ### Minor Changes
@@ -10,7 +61,6 @@
10
61
  ### Added:
11
62
 
12
63
  **`@atlaskit/icon-lab/core`**
13
-
14
64
  - `arrow-end`
15
65
  - `arrow-start`
16
66
  - `dash-double`
@@ -25,7 +75,6 @@
25
75
  ### Updated:
26
76
 
27
77
  **`@atlaskit/icon-lab/core`**
28
-
29
78
  - `assets-data-manager`
30
79
  - `assets-graph`
31
80
 
@@ -43,7 +92,6 @@
43
92
  ### Added:
44
93
 
45
94
  **`@atlaskit/icon-lab/core`**
46
-
47
95
  - `assets-object-type`
48
96
  - `assets-object`
49
97
  - `blast-radius`
@@ -69,7 +117,6 @@
69
117
  ### Updated:
70
118
 
71
119
  **`@atlaskit/icon-lab/core`**
72
-
73
120
  - `ai-generative-text`
74
121
  - `assets-schema`
75
122
  - `template`
@@ -88,7 +135,6 @@
88
135
  ### Added:
89
136
 
90
137
  **`@atlaskit/icon-lab/core`**
91
-
92
138
  - `merge-queue`
93
139
  - `missed-call`
94
140
  - `text-density-compress`
@@ -131,7 +177,6 @@
131
177
  ### Added:
132
178
 
133
179
  **`@atlaskit/icon-lab/core`**
134
-
135
180
  - `arrow-curved-down-left`
136
181
  - `arrow-curved-down-right`
137
182
  - `arrow-curved-left-down`
@@ -152,7 +197,6 @@
152
197
  ### Updated:
153
198
 
154
199
  **`@atlaskit/icon-lab/core`**
155
-
156
200
  - `reply-left`
157
201
  - `reply-right`
158
202
 
@@ -171,7 +215,6 @@
171
215
  ### Updated:
172
216
 
173
217
  **`@atlaskit/icon-lab/core`**
174
-
175
218
  - `atom`
176
219
  - `diagram-symbol-display`
177
220
  - `diagram-symbol-manual-operation`
@@ -186,7 +229,6 @@
186
229
  ### Added:
187
230
 
188
231
  **`@atlaskit/icon-lab/core`**
189
-
190
232
  - `rovo`
191
233
  - `rss-feed`
192
234
 
@@ -214,7 +256,6 @@
214
256
  ### Added:
215
257
 
216
258
  **`@atlaskit/icon-lab/core`**
217
-
218
259
  - `chart-area`
219
260
  - `chart-bar-line`
220
261
  - `chart-box-plot`
@@ -237,7 +278,6 @@
237
278
  ### Added:
238
279
 
239
280
  **`@atlaskit/icon-lab/core`**
240
-
241
281
  - `boolean`
242
282
 
243
283
  ## 5.1.0
@@ -251,7 +291,6 @@
251
291
  ### Added:
252
292
 
253
293
  **`@atlaskit/icon-lab/core`**
254
-
255
294
  - `ai-generative-audio-briefing`
256
295
  - `teamwork-graph`
257
296
 
@@ -278,7 +317,6 @@
278
317
  ### Removed:
279
318
 
280
319
  **`@atlaskit/icon-lab/core`**
281
-
282
320
  - `hand-clenched`
283
321
  - `hand`
284
322
  - `recur`
@@ -319,7 +357,6 @@
319
357
  ### Updated:
320
358
 
321
359
  **`@atlaskit/icon-lab/core`**
322
-
323
360
  - `incognito`
324
361
  - `milestone-complete`
325
362
  - `shape-triangle-inverted`
@@ -328,7 +365,6 @@
328
365
  ### Deprecated:
329
366
 
330
367
  **`@atlaskit/icon-lab/core`**
331
-
332
368
  - `hand`
333
369
 
334
370
  ## 4.18.0
@@ -342,7 +378,6 @@
342
378
  ### Added:
343
379
 
344
380
  **`@atlaskit/icon-lab/core`**
345
-
346
381
  - `diagram-symbol-action`
347
382
  - `diagram-symbol-alternate-process`
348
383
  - `diagram-symbol-collate`
@@ -380,7 +415,6 @@
380
415
  ### Deprecated:
381
416
 
382
417
  **`@atlaskit/icon-lab/core`**
383
-
384
418
  - `hand-clenched`
385
419
  - `shape-comment-left`
386
420
  - `shape-comment-right`
@@ -413,7 +447,6 @@
413
447
  ### Deprecated:
414
448
 
415
449
  **`@atlaskit/icon-lab/core`**
416
-
417
450
  - `space`
418
451
 
419
452
  ### Patch Changes
@@ -431,7 +464,6 @@
431
464
  ### Added:
432
465
 
433
466
  **`@atlaskit/icon-lab/core`**
434
-
435
467
  - `compare`
436
468
  - `generative-date`
437
469
  - `generative-indicator`
@@ -456,7 +488,6 @@
456
488
  ### Updated:
457
489
 
458
490
  **`@atlaskit/icon-lab/core`**
459
-
460
491
  - `initiative`
461
492
  - `space`
462
493
  - `speedometer-up`
@@ -477,7 +508,6 @@
477
508
  ### Added:
478
509
 
479
510
  **`@atlaskit/icon-lab/core`**
480
-
481
511
  - `spaces`
482
512
 
483
513
  ## 4.13.0
@@ -509,7 +539,6 @@
509
539
  ### Added:
510
540
 
511
541
  **`@atlaskit/icon-lab/core`**
512
-
513
542
  - `hand-clenched`
514
543
  - `shape-comment-left`
515
544
  - `shape-comment-right`
@@ -538,7 +567,6 @@
538
567
  ### Updated:
539
568
 
540
569
  **`@atlaskit/icon-lab/core`**
541
-
542
570
  - `book-open`
543
571
  - `cloud-saved`
544
572
  - `speedometer-up`
@@ -558,7 +586,6 @@
558
586
  ### Added:
559
587
 
560
588
  **`@atlaskit/icon-lab/core`**
561
-
562
589
  - `hourglass`
563
590
  - `text-subscript`
564
591
  - `text-superscript`
@@ -578,7 +605,6 @@
578
605
  ### Added:
579
606
 
580
607
  **`@atlaskit/icon-lab/core`**
581
-
582
608
  - `ai-generative-cleanup`
583
609
  - `atom`
584
610
  - `bluetooth`
@@ -600,7 +626,6 @@
600
626
  ### Added:
601
627
 
602
628
  **`@atlaskit/icon-lab/core`**
603
-
604
629
  - `layout-three-columns-sidebars-left`
605
630
  - `layout-three-columns-sidebars-right`
606
631
  - `studio`
@@ -621,7 +646,6 @@
621
646
  ### Updated:
622
647
 
623
648
  **`@atlaskit/icon-lab/core`**
624
-
625
649
  - `cloud-offline`
626
650
  - `colour-none`
627
651
  - `cursor-strikethrough`
@@ -639,7 +663,6 @@
639
663
  ### Deprecated:
640
664
 
641
665
  **`@atlaskit/icon-lab/core`**
642
-
643
666
  - `recur`
644
667
  - `speedometer`
645
668
 
@@ -658,7 +681,6 @@
658
681
  ### Updated:
659
682
 
660
683
  **`@atlaskit/icon-lab/core`**
661
-
662
684
  - `page-live-doc`
663
685
 
664
686
  ## 4.6.0
@@ -672,7 +694,6 @@
672
694
  ### Added:
673
695
 
674
696
  **`@atlaskit/icon/core`**
675
-
676
697
  - `ai-generative-chapters`
677
698
  - `ai-generative-remove`
678
699
  - `ai-generative-remove-silence`
@@ -750,7 +771,6 @@
750
771
  ### Updated:
751
772
 
752
773
  **`@atlaskit/icon-lab/core`**
753
-
754
774
  - `calculate`
755
775
  - `colour-none`
756
776
  - `sort-options`
@@ -773,7 +793,6 @@
773
793
  ### Added:
774
794
 
775
795
  **`@atlaskit/icon-lab/core`**
776
-
777
796
  - `arrows-diagonal-up-right-down-left`
778
797
  - `assets-graph`
779
798
  - `image-alt-text`
@@ -810,7 +829,6 @@
810
829
  ### Added:
811
830
 
812
831
  **`@atlaskit/icon-lab/core`**
813
-
814
832
  - `colour-none`
815
833
  - `distribute-spacing-horizontal`
816
834
  - `distribute-spacing-vertical`
@@ -837,7 +855,6 @@
837
855
  ### Updated:
838
856
 
839
857
  **`@atlaskit/icon-lab/core`**
840
-
841
858
  - `tidy`
842
859
 
843
860
  ## 4.2.1
@@ -860,7 +877,6 @@
860
877
  ### Added:
861
878
 
862
879
  **`@atlaskit/icon-lab/core`**
863
-
864
880
  - `dock-toolbar-top`
865
881
 
866
882
  ## 4.1.0
@@ -872,7 +888,6 @@
872
888
  [ux] This release adds icons in `@atlaskit/icon-lab`.
873
889
 
874
890
  **`@atlaskit/icon-lab/core`**
875
-
876
891
  - `calculate`
877
892
  - `sort-options`
878
893
 
@@ -881,7 +896,6 @@
881
896
  This release adds icons in `@atlaskit/icon-lab`.
882
897
 
883
898
  **`@atlaskit/icon-lab/core`**
884
-
885
899
  - `view-type-board-home`
886
900
  - `view-type-card-home`
887
901
  - `view-type-table-home`
@@ -910,7 +924,6 @@
910
924
  ### Added:
911
925
 
912
926
  **`@atlaskit/icon-lab/core`**
913
-
914
927
  - `beach-umbrella`
915
928
  - `gift`
916
929
  - `party-popper`
@@ -936,7 +949,6 @@
936
949
  ### Added:
937
950
 
938
951
  **`@atlaskit/icon-lab/core`**
939
-
940
952
  - `queue-pop-in`
941
953
  - `queue-pop-out`
942
954
 
@@ -951,7 +963,6 @@
951
963
  ### Added:
952
964
 
953
965
  **`@atlaskit/icon-lab/core`**
954
-
955
966
  - `continue-when`
956
967
  - `split-parallel`
957
968
  - `switch-case`
@@ -968,7 +979,6 @@
968
979
  ### Added:
969
980
 
970
981
  **`@atlaskit/icon-lab/core`**
971
-
972
982
  - `if-else`
973
983
  - `webhook`
974
984
 
@@ -983,14 +993,12 @@
983
993
  ### Added:
984
994
 
985
995
  **`@atlaskit/icon-lab/core`**
986
-
987
996
  - `divider-element`
988
997
  - `expand-element`
989
998
 
990
999
  ### Updated:
991
1000
 
992
1001
  **`@atlaskit/icon/core`**
993
-
994
1002
  - `cloud-offline`
995
1003
  - `cloud-saved`
996
1004
  - `cursor-strikethrough`
@@ -1030,7 +1038,6 @@
1030
1038
  ### Updated:
1031
1039
 
1032
1040
  **`@atlaskit/icon-lab/core`**
1033
-
1034
1041
  - `cloud-offline`
1035
1042
  - `cloud-saved`
1036
1043
  - `cursor-strikethrough`
@@ -1083,7 +1090,6 @@
1083
1090
  ### Added:
1084
1091
 
1085
1092
  **`@atlaskit/icon-lab/core`**
1086
-
1087
1093
  - `align-content-bottom`
1088
1094
  - `align-content-center-horizontal`
1089
1095
  - `align-content-center-vertical`
@@ -1127,7 +1133,6 @@
1127
1133
  ### Updated:
1128
1134
 
1129
1135
  **`@atlaskit/icon-lab/core`**
1130
-
1131
1136
  - `cloud-offline`
1132
1137
  - `cloud-saved`
1133
1138
  - `database-storage-cache`
@@ -1147,13 +1152,11 @@
1147
1152
  ### Updated:
1148
1153
 
1149
1154
  **`@atlaskit/icon-lab/core`**
1150
-
1151
1155
  - `page-live-doc`: Updated usage guidance
1152
1156
 
1153
1157
  ### Added:
1154
1158
 
1155
1159
  **`@atlaskit/icon-lab/core`**
1156
-
1157
1160
  - `cloud-offline`
1158
1161
  - `cloud-saved`
1159
1162
  - `database-storage-cache`
@@ -1195,7 +1198,6 @@
1195
1198
  [ux] This release adds icons in `@atlaskit/icon-lab`.
1196
1199
 
1197
1200
  **`@atlaskit/icon-lab/core`**
1198
-
1199
1201
  - `page-live-doc`
1200
1202
 
1201
1203
  ## 2.1.1
@@ -1215,7 +1217,6 @@
1215
1217
  This release updates icons in `@atlaskit/icon-lab`.
1216
1218
 
1217
1219
  **`@atlaskit/icon-lab/core`**
1218
-
1219
1220
  - 'initiative'
1220
1221
  - 'qr-code'
1221
1222
 
@@ -1233,7 +1234,6 @@
1233
1234
  to UNSAFE types and entrypoints being renamed in the `@atlaskit/icon` package.
1234
1235
 
1235
1236
  ### Renamed entrypoints:
1236
-
1237
1237
  - `@atlaskit/icon-lab/UNSAFE_migration-map` → `@atlaskit/icon-lab/migration-map`
1238
1238
 
1239
1239
  ### Patch Changes
@@ -1251,7 +1251,6 @@
1251
1251
  ### Added:
1252
1252
 
1253
1253
  **`@atlaskit/icon-lab/core`**
1254
-
1255
1254
  - `assets-data-manager`
1256
1255
  - `assets-schema`
1257
1256
  - `initiative`
@@ -1260,7 +1259,6 @@
1260
1259
  ### Updated:
1261
1260
 
1262
1261
  **`@atlaskit/icon-lab/core`**
1263
-
1264
1262
  - `vulnerability`
1265
1263
 
1266
1264
  ### Patch Changes
@@ -1309,19 +1307,16 @@
1309
1307
  ### Added:
1310
1308
 
1311
1309
  **`@atlaskit/icon-lab/core`**
1312
-
1313
1310
  - `book-open`
1314
1311
  - `lozenge`
1315
1312
  - `vulnerability`
1316
1313
 
1317
1314
  ### Renamed:
1318
-
1319
1315
  - `status → lozenge`
1320
1316
 
1321
1317
  ### Removed entrypoints:
1322
1318
 
1323
1319
  **`@atlaskit/icon-lab/core`**
1324
-
1325
1320
  - `highlight`
1326
1321
 
1327
1322
  ### Patch Changes
@@ -1338,20 +1333,17 @@
1338
1333
  - [#140548](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/140548)
1339
1334
  [`c66b92f724af1`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c66b92f724af1) - ###
1340
1335
  Summary:
1341
-
1342
1336
  - Fixes issue where icons with arrows sometimes rendered incorrectly.
1343
1337
  - Adds `status` icon.
1344
1338
 
1345
1339
  ### Added:
1346
1340
 
1347
1341
  **`@atlaskit/icon-lab/core`**
1348
-
1349
1342
  - `status`
1350
1343
 
1351
1344
  ### Updated:
1352
1345
 
1353
1346
  **`@atlaskit/icon-lab/core`**
1354
-
1355
1347
  - `highlight`: now feature smaller icon with room for a color indicator underneath.
1356
1348
  - Icons containing arrows have corrected paths
1357
1349
 
@@ -1373,7 +1365,6 @@
1373
1365
  ### Added:
1374
1366
 
1375
1367
  **`@atlaskit/icon-lab/core`**
1376
-
1377
1368
  - `coins`
1378
1369
  - `cross-octagon`
1379
1370
  - `editions`
@@ -1391,13 +1382,11 @@
1391
1382
  ### Renamed:
1392
1383
 
1393
1384
  **`@atlaskit/icon-lab/core`**
1394
-
1395
1385
  - `roadmaps-code → roadmaps-plan`
1396
1386
 
1397
1387
  ### Removed entrypoints:
1398
1388
 
1399
1389
  **`@atlaskit/icon-lab/core`**
1400
-
1401
1390
  - `flag-filled`
1402
1391
  - `headphones`
1403
1392
  - `library`
package/build/index.tsx CHANGED
@@ -12,7 +12,6 @@ import {
12
12
  } from '@af/icon-build-process';
13
13
 
14
14
  import coreIconMetadata from '../icons_raw/metadata-core';
15
- import utilityIconMetadata from '../icons_raw/metadata-utility';
16
15
  import migrationMap from '../src/migration-map';
17
16
 
18
17
  async function main() {
@@ -32,7 +31,6 @@ async function main() {
32
31
  maxWidth: 24,
33
32
  maxHeight: 24,
34
33
  glob: '**/*.svg',
35
- iconType: 'core',
36
34
  packageName: '@atlaskit/icon-lab',
37
35
  baseIconEntryPoint: '@atlaskit/icon/base-new',
38
36
  metadata: coreIconMetadata,
@@ -43,7 +41,6 @@ async function main() {
43
41
  const iconDocs = createIconDocsNew(
44
42
  icons,
45
43
  '@atlaskit/icon-lab',
46
- 'core',
47
44
  {},
48
45
  ['icon', 'icon-lab'],
49
46
  coreIconMetadata,
@@ -55,7 +52,6 @@ async function main() {
55
52
  const deprecatedDocs = createDeprecatedIconDocs(
56
53
  icons,
57
54
  '@atlaskit/icon-lab',
58
- 'core',
59
55
  coreIconMetadata,
60
56
  migrationMap,
61
57
  );
@@ -63,13 +59,7 @@ async function main() {
63
59
  fs.outputFile(path.resolve(root, 'src/deprecated-core.tsx'), deprecatedDocs);
64
60
 
65
61
  // Generate VR tests
66
- const [vrExampleCore, vrTestCore] = createVRTest(
67
- coreIconMetadata,
68
- '../../../..',
69
- 50,
70
- 'core',
71
- true,
72
- );
62
+ const [vrExampleCore, vrTestCore] = createVRTest(coreIconMetadata, '../../../..', 50, true);
73
63
  fs.outputFile(
74
64
  path.resolve(root, 'src/__tests__/vr-tests/examples/all-core-icons.tsx'),
75
65
  vrExampleCore,
@@ -79,66 +69,6 @@ async function main() {
79
69
  vrTestCore,
80
70
  );
81
71
  });
82
-
83
- /**
84
- * The updated icon build process for the new icons under `@atlaskit/icon/core/*`
85
- */
86
- const configUtility: NewIconBuildConfig = {
87
- srcDir: path.resolve(root, 'icons_raw/utility'),
88
- processedDir: path.resolve(root, 'svgs/utility'),
89
- destDir: path.resolve(root, 'utility'),
90
- maxWidth: 24,
91
- maxHeight: 24,
92
- glob: '**/*.svg',
93
- iconType: 'utility',
94
- packageName: '@atlaskit/icon-lab',
95
- baseIconEntryPoint: '@atlaskit/icon/base-new',
96
- metadata: utilityIconMetadata,
97
- migrationMap: migrationMap,
98
- };
99
-
100
- await buildIconsNew(configUtility).then((icons) => {
101
- const iconDocs = createIconDocsNew(
102
- icons,
103
- '@atlaskit/icon-lab',
104
- 'utility',
105
- {},
106
- ['icon', 'icon-lab', 'utility'],
107
- utilityIconMetadata,
108
- migrationMap,
109
- );
110
-
111
- fs.outputFile(path.resolve(root, 'src/metadata-utility.tsx'), iconDocs);
112
-
113
- const deprecatedDocs = createDeprecatedIconDocs(
114
- icons,
115
- '@atlaskit/icon-lab',
116
- 'utility',
117
- utilityIconMetadata,
118
- migrationMap,
119
- );
120
-
121
- fs.outputFile(path.resolve(root, 'src/deprecated-utility.tsx'), deprecatedDocs);
122
-
123
- // Generate VR tests
124
- if (Object.entries(utilityIconMetadata).length > 0) {
125
- const [vrExampleUtility, vrTestUtility] = createVRTest(
126
- utilityIconMetadata,
127
- '../../../..',
128
- 50,
129
- 'utility',
130
- true,
131
- );
132
- fs.outputFile(
133
- path.resolve(root, 'src/__tests__/vr-tests/examples/all-utility-icons.tsx'),
134
- vrExampleUtility,
135
- );
136
- fs.outputFile(
137
- path.resolve(root, 'src/__tests__/vr-tests/all-utility-icons.test.vr.tsx'),
138
- vrTestUtility,
139
- );
140
- }
141
- });
142
72
  }
143
73
 
144
74
  main().catch((error) => {
@@ -0,0 +1,13 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::8c9468024e2c9734cc84adf4f1f2bc21>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const BlockSyncedIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default BlockSyncedIcon;
@@ -0,0 +1,29 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::527f33e0573e8027a3e6df8a9b12f86d>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+ "use strict";
7
+
8
+ Object.defineProperty(exports, "__esModule", {
9
+ value: true
10
+ });
11
+ exports.default = void 0;
12
+ var _react = _interopRequireDefault(require("react"));
13
+ var _baseNew = _interopRequireDefault(require("@atlaskit/icon/base-new"));
14
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
15
+ /**
16
+ * Icon: "BlockSynced".
17
+ * Category: single-purpose
18
+ * Location: @atlaskit/icon-lab
19
+ * Usage guidance: Reserved for syncing content blocks in Editor experiences.
20
+ * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
21
+ * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
+ */
23
+ const BlockSyncedIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
+ name: "BlockSyncedIcon",
25
+ dangerouslySetGlyph: `<path fill="currentcolor" d="M13.5 3a.5.5 0 0 0-.5-.5H3a.5.5 0 0 0-.5.5v10a.5.5 0 0 0 .5.5h3V15H3a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v2h-1.5z"/><path fill="currentcolor" d="M14.9 8.71a3.75 3.75 0 0 1 0 5.303l-.024.026.439.146a.75.75 0 0 1-.13 1.454l-2.476.354a.75.75 0 0 1-.848-.849l.353-2.474.029-.125a.75.75 0 0 1 1.425-.006l.147.44.025-.026a2.25 2.25 0 0 0 0-3.183l-.707-.707 1.06-1.06zm-3.818-1.98a.75.75 0 0 1 .85.849l-.354 2.475a.75.75 0 0 1-1.454.13l-.147-.44-.025.026a2.25 2.25 0 0 0 0 3.183l.707.707-1.06 1.06-.708-.707a3.75 3.75 0 0 1 0-5.303l.026-.026-.44-.146a.75.75 0 0 1 .13-1.454z"/>`
26
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
27
+ }, props));
28
+ BlockSyncedIcon.displayName = 'BlockSyncedIcon';
29
+ var _default = exports.default = BlockSyncedIcon;
@@ -0,0 +1,13 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::fc18974cdb9bc587b4293e0779cedc72>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const PipelineIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default PipelineIcon;
@@ -0,0 +1,29 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::81ce8ac78802c961dc11edc765b6e875>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+ "use strict";
7
+
8
+ Object.defineProperty(exports, "__esModule", {
9
+ value: true
10
+ });
11
+ exports.default = void 0;
12
+ var _react = _interopRequireDefault(require("react"));
13
+ var _baseNew = _interopRequireDefault(require("@atlaskit/icon/base-new"));
14
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
15
+ /**
16
+ * Icon: "Pipeline".
17
+ * Category: single-purpose
18
+ * Location: @atlaskit/icon-lab
19
+ * Usage guidance: Reserved for representing pipelines
20
+ * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
21
+ * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
+ */
23
+ const PipelineIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
+ name: "PipelineIcon",
25
+ dangerouslySetGlyph: `<path fill="currentcolor" d="M14.5 8A2.5 2.5 0 0 0 12 5.5c-.763 0-1.334.298-1.852.803-.546.532-.998 1.26-1.51 2.09-.488.794-1.036 1.692-1.74 2.379C6.166 11.485 5.238 12 4 12a4 4 0 0 1-.082-7.999l-.37-.987a.75.75 0 0 1 1.17-.85l2.5 2a.75.75 0 0 1 0 1.172l-2.5 2a.75.75 0 0 1-1.17-.85l.368-.982A2.498 2.498 0 0 0 4 10.5c.763 0 1.334-.297 1.852-.802.545-.533.998-1.26 1.51-2.091.488-.794 1.036-1.692 1.74-2.378C9.834 4.515 10.762 4 12 4a4 4 0 0 1 0 8c-1.313 0-2.275-.58-3.023-1.354l1.079-1.041c.545.564 1.14.895 1.944.895A2.5 2.5 0 0 0 14.5 8"/>`
26
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
27
+ }, props));
28
+ PipelineIcon.displayName = 'PipelineIcon';
29
+ var _default = exports.default = PipelineIcon;