@vscode/codicons 0.0.43 → 0.0.45-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/.fantasticonrc.js +12 -1
- package/.github/workflows/build.yml +17 -14
- package/RELEASING.md +32 -0
- package/_iconCloud/categories.csv +533 -0
- package/_iconCloud/categories.transforms.json +92 -0
- package/_iconCloud/categories.variables.json +48 -0
- package/_iconCloud/descriptions.csv +533 -0
- package/_iconCloud/descriptions.transforms.json +83 -0
- package/_iconCloud/descriptions.variables.json +47 -0
- package/_iconCloud/keywords.csv +533 -1
- package/_iconCloud/keywords.transforms.json +22 -13
- package/_iconCloud/keywords.variables.json +19 -18
- package/_iconCloud/manifest.json +11 -1
- package/_iconCloud/manifest.transforms.json +2 -2
- package/_iconCloud/metaphors.csv +533 -0
- package/_iconCloud/metaphors.transforms.json +92 -0
- package/_iconCloud/metaphors.variables.json +48 -0
- package/build/pipeline.yml +18 -7
- package/dist/codicon.css +14 -3
- package/dist/codicon.csv +16 -2
- package/dist/codicon.html +8171 -853
- package/dist/codicon.svg +1 -1
- package/dist/codicon.ttf +0 -0
- package/dist/codiconsLibrary.ts +13 -2
- package/dist/metadata.json +2672 -0
- package/package.json +6 -2
- package/scripts/check-metadata.js +126 -0
- package/scripts/embed-metadata.js +25 -0
- package/scripts/embed-svg-data.js +31 -0
- package/scripts/export-to-ts.js +9 -2
- package/scripts/svg-sprite.js +34 -6
- package/src/icons/add-small.svg +1 -0
- package/src/icons/ask.svg +1 -0
- package/src/icons/chat-sparkle-error.svg +1 -1
- package/src/icons/chat-sparkle-warning.svg +1 -1
- package/src/icons/chat-sparkle.svg +1 -1
- package/src/icons/clockface.svg +1 -0
- package/src/icons/cloud-download.svg +1 -1
- package/src/icons/cloud-small.svg +1 -0
- package/src/icons/cloud-upload.svg +1 -1
- package/src/icons/cloud.svg +1 -1
- package/src/icons/collection-small.svg +1 -0
- package/src/icons/copilot-blocked.svg +1 -1
- package/src/icons/copilot-error.svg +1 -1
- package/src/icons/copilot-in-progress.svg +1 -1
- package/src/icons/copilot-success.svg +1 -1
- package/src/icons/copilot-warning.svg +1 -1
- package/src/icons/debug-continue.svg +1 -1
- package/src/icons/debug-pause.svg +1 -1
- package/src/icons/debug-restart.svg +1 -1
- package/src/icons/debug-reverse-continue.svg +1 -1
- package/src/icons/debug-start.svg +1 -1
- package/src/icons/debug-step-back.svg +1 -1
- package/src/icons/debug-step-into.svg +1 -1
- package/src/icons/debug-step-out.svg +1 -1
- package/src/icons/debug-step-over.svg +1 -1
- package/src/icons/debug-stop.svg +1 -1
- package/src/icons/empty-window.svg +1 -1
- package/src/icons/exclude.svg +1 -1
- package/src/icons/extensions-large.svg +1 -1
- package/src/icons/extensions.svg +1 -1
- package/src/icons/filter-filled.svg +1 -1
- package/src/icons/filter.svg +1 -1
- package/src/icons/folder-active.svg +1 -1
- package/src/icons/git-branch-changes.svg +1 -1
- package/src/icons/git-branch-conflicts.svg +1 -1
- package/src/icons/git-branch-staged-changes.svg +1 -1
- package/src/icons/git-pull-request-create.svg +1 -1
- package/src/icons/git-pull-request-done.svg +1 -1
- package/src/icons/git-stash-apply.svg +1 -1
- package/src/icons/git-stash-pop.svg +1 -1
- package/src/icons/git-stash.svg +1 -1
- package/src/icons/index-zero.svg +1 -1
- package/src/icons/keyboard-tab-above.svg +1 -1
- package/src/icons/new-collection.svg +1 -1
- package/src/icons/new-file.svg +1 -1
- package/src/icons/new-folder.svg +1 -1
- package/src/icons/person-add.svg +1 -1
- package/src/icons/remove-small.svg +1 -0
- package/src/icons/report.svg +1 -1
- package/src/icons/run-all-coverage.svg +1 -1
- package/src/icons/run-coverage.svg +1 -1
- package/src/icons/run-errors.svg +1 -1
- package/src/icons/screen-cut.svg +1 -0
- package/src/icons/session-in-progress.svg +1 -0
- package/src/icons/unarchive.svg +1 -0
- package/src/icons/unfold.svg +1 -1
- package/src/icons/vm-active.svg +1 -1
- package/src/icons/vm-pending.svg +1 -1
- package/src/icons/vm-small.svg +1 -0
- package/src/icons/window-active.svg +1 -1
- package/src/icons/worktree-small.svg +1 -0
- package/src/icons/worktree.svg +1 -0
- package/src/template/mapping.json +1716 -633
- package/src/template/metadata.json +2672 -0
- package/src/template/preview.hbs +583 -321
- package/src/icons/git-lens.svg +0 -1
package/build/pipeline.yml
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
name: $(Date:yyyyMMdd)$(Rev:.r)
|
|
2
|
-
|
|
3
1
|
trigger:
|
|
4
2
|
branches:
|
|
5
3
|
include:
|
|
@@ -15,10 +13,12 @@ resources:
|
|
|
15
13
|
endpoint: Monaco
|
|
16
14
|
|
|
17
15
|
parameters:
|
|
18
|
-
- name:
|
|
19
|
-
displayName: 🚀
|
|
20
|
-
type:
|
|
21
|
-
default:
|
|
16
|
+
- name: nextVersion
|
|
17
|
+
displayName: '🚀 Release Version (eg: none, major, minor, patch, prerelease, or X.X.X)'
|
|
18
|
+
type: string
|
|
19
|
+
default: 'none'
|
|
20
|
+
|
|
21
|
+
name: "$(Date:yyyyMMdd).$(Rev:r)${{ replace(format(' (🚀 {0})', parameters.nextVersion), ' (🚀 none)', '') }}"
|
|
22
22
|
|
|
23
23
|
extends:
|
|
24
24
|
template: azure-pipelines/npm-package/pipeline.yml@templates
|
|
@@ -33,4 +33,15 @@ extends:
|
|
|
33
33
|
- script: npm run build
|
|
34
34
|
displayName: Build npm package
|
|
35
35
|
|
|
36
|
-
|
|
36
|
+
${{ if or(eq(parameters.nextVersion, 'prerelease'), and(in(variables['Build.Reason'], 'IndividualCI', 'BatchedCI'), eq(variables['Build.SourceBranch'], 'refs/heads/main'))) }}:
|
|
37
|
+
publishPackage: true
|
|
38
|
+
publishRequiresApproval: false
|
|
39
|
+
nextVersion: prerelease
|
|
40
|
+
tag: next
|
|
41
|
+
${{ elseif eq(parameters.nextVersion, 'none') }}:
|
|
42
|
+
publishPackage: false
|
|
43
|
+
${{ else }}:
|
|
44
|
+
publishPackage: true
|
|
45
|
+
nextVersion: ${{ parameters.nextVersion }}
|
|
46
|
+
ghCreateRelease: true
|
|
47
|
+
ghReleaseAddChangeLog: true
|
package/dist/codicon.css
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
@font-face {
|
|
7
7
|
font-family: "codicon";
|
|
8
8
|
font-display: block;
|
|
9
|
-
src: url("./codicon.ttf?
|
|
9
|
+
src: url("./codicon.ttf?6ccea1c836e4cf1b223f46a3c1b1f498") format("truetype");
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
.codicon[class*='codicon-'] {
|
|
@@ -308,6 +308,7 @@
|
|
|
308
308
|
.codicon-italic:before { content: "\eb0d" }
|
|
309
309
|
.codicon-jersey:before { content: "\eb0e" }
|
|
310
310
|
.codicon-json:before { content: "\eb0f" }
|
|
311
|
+
.codicon-bracket:before { content: "\eb0f" }
|
|
311
312
|
.codicon-kebab-vertical:before { content: "\eb10" }
|
|
312
313
|
.codicon-key:before { content: "\eb11" }
|
|
313
314
|
.codicon-law:before { content: "\eb12" }
|
|
@@ -534,7 +535,6 @@
|
|
|
534
535
|
.codicon-graph-line:before { content: "\ebe2" }
|
|
535
536
|
.codicon-graph-scatter:before { content: "\ebe3" }
|
|
536
537
|
.codicon-pie-chart:before { content: "\ebe4" }
|
|
537
|
-
.codicon-bracket:before { content: "\eb0f" }
|
|
538
538
|
.codicon-bracket-dot:before { content: "\ebe5" }
|
|
539
539
|
.codicon-bracket-error:before { content: "\ebe6" }
|
|
540
540
|
.codicon-lock-small:before { content: "\ebe7" }
|
|
@@ -665,7 +665,6 @@
|
|
|
665
665
|
.codicon-cursor:before { content: "\ec5c" }
|
|
666
666
|
.codicon-eraser:before { content: "\ec5d" }
|
|
667
667
|
.codicon-file-text:before { content: "\ec5e" }
|
|
668
|
-
.codicon-git-lens:before { content: "\ec5f" }
|
|
669
668
|
.codicon-quotes:before { content: "\ec60" }
|
|
670
669
|
.codicon-rename:before { content: "\ec61" }
|
|
671
670
|
.codicon-run-with-deps:before { content: "\ec62" }
|
|
@@ -689,5 +688,17 @@
|
|
|
689
688
|
.codicon-window-active:before { content: "\ec72" }
|
|
690
689
|
.codicon-forward:before { content: "\ec73" }
|
|
691
690
|
.codicon-download:before { content: "\ec74" }
|
|
691
|
+
.codicon-clockface:before { content: "\ec75" }
|
|
692
|
+
.codicon-unarchive:before { content: "\ec76" }
|
|
693
|
+
.codicon-session-in-progress:before { content: "\ec77" }
|
|
694
|
+
.codicon-collection-small:before { content: "\ec78" }
|
|
695
|
+
.codicon-vm-small:before { content: "\ec79" }
|
|
696
|
+
.codicon-cloud-small:before { content: "\ec7a" }
|
|
697
|
+
.codicon-add-small:before { content: "\ec7b" }
|
|
698
|
+
.codicon-remove-small:before { content: "\ec7c" }
|
|
699
|
+
.codicon-worktree-small:before { content: "\ec7d" }
|
|
700
|
+
.codicon-worktree:before { content: "\ec7e" }
|
|
701
|
+
.codicon-screen-cut:before { content: "\ec7f" }
|
|
702
|
+
.codicon-ask:before { content: "\ec80" }
|
|
692
703
|
.codicon-git-fetch:before { content: "\f101" }
|
|
693
704
|
.codicon-vm-pending:before { content: "\f102" }
|
package/dist/codicon.csv
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
short_name,character,unicode
|
|
2
2
|
account,,EB99
|
|
3
3
|
activate-breakpoints,,EA97
|
|
4
|
+
add-small,,EC7B
|
|
4
5
|
add,,EA60
|
|
5
6
|
agent,,EC67
|
|
6
7
|
archive,,EA98
|
|
@@ -18,6 +19,7 @@ arrow-small-right,,EA9F
|
|
|
18
19
|
arrow-small-up,,EAA0
|
|
19
20
|
arrow-swap,,EBCB
|
|
20
21
|
arrow-up,,EAA1
|
|
22
|
+
ask,,EC80
|
|
21
23
|
attach,,EC34
|
|
22
24
|
azure-devops,,EBE8
|
|
23
25
|
azure,,EBD8
|
|
@@ -67,9 +69,11 @@ circle,,EABC
|
|
|
67
69
|
circuit-board,,EABE
|
|
68
70
|
clear-all,,EABF
|
|
69
71
|
clippy,,EAC0
|
|
72
|
+
clockface,,EC75
|
|
70
73
|
close-all,,EAC1
|
|
71
74
|
close,,EA76
|
|
72
75
|
cloud-download,,EAC2
|
|
76
|
+
cloud-small,,EC7A
|
|
73
77
|
cloud-upload,,EAC3
|
|
74
78
|
cloud,,EBAA
|
|
75
79
|
code-oss,,EC2B
|
|
@@ -77,6 +81,7 @@ code-review,,EC37
|
|
|
77
81
|
code,,EAC4
|
|
78
82
|
coffee,,EC15
|
|
79
83
|
collapse-all,,EAC5
|
|
84
|
+
collection-small,,EC78
|
|
80
85
|
collection,,EC57
|
|
81
86
|
color-mode,,EAC6
|
|
82
87
|
combine,,EBB6
|
|
@@ -121,7 +126,8 @@ debug-breakpoint-log,,EAAB
|
|
|
121
126
|
debug-breakpoint-unsupported,,EB8C
|
|
122
127
|
debug-connected,,EC63
|
|
123
128
|
debug-console,,EB9B
|
|
124
|
-
debug-continue-small
|
|
129
|
+
debug-continue-small,,EBE0
|
|
130
|
+
debug-continue,,EACF
|
|
125
131
|
debug-coverage,,EBDD
|
|
126
132
|
debug-disconnect,,EAD0
|
|
127
133
|
debug-line-by-line,,EBD0
|
|
@@ -206,7 +212,6 @@ git-branch,,EA68
|
|
|
206
212
|
git-commit,,EAFC
|
|
207
213
|
git-compare,,EAFD
|
|
208
214
|
git-fetch,,F101
|
|
209
|
-
git-lens,,EC5F
|
|
210
215
|
git-merge,,EAFE
|
|
211
216
|
git-pull-request-closed,,EBDA
|
|
212
217
|
git-pull-request-create,,EBBC
|
|
@@ -287,6 +292,7 @@ lightbulb-sparkle,,EC1F
|
|
|
287
292
|
lightbulb,,EA61
|
|
288
293
|
link-external,,EB14
|
|
289
294
|
link,,EB15
|
|
295
|
+
list-filter,,EB83
|
|
290
296
|
list-flat,,EB84
|
|
291
297
|
list-ordered,,EB16
|
|
292
298
|
list-selection,,EB85
|
|
@@ -346,6 +352,7 @@ pin,,EB2B
|
|
|
346
352
|
pinned-dirty,,EBB2
|
|
347
353
|
pinned,,EBA0
|
|
348
354
|
play-circle,,EBA6
|
|
355
|
+
play,,EB2C
|
|
349
356
|
plug,,EB2D
|
|
350
357
|
preserve-case,,EB2E
|
|
351
358
|
preview,,EB2F
|
|
@@ -367,6 +374,7 @@ refresh,,EB37
|
|
|
367
374
|
regex,,EB38
|
|
368
375
|
remote-explorer,,EB39
|
|
369
376
|
remote,,EB3A
|
|
377
|
+
remove-small,,EC7C
|
|
370
378
|
remove,,EB3B
|
|
371
379
|
rename,,EC61
|
|
372
380
|
replace-all,,EB3C
|
|
@@ -398,6 +406,7 @@ run-with-deps,,EC62
|
|
|
398
406
|
save-all,,EB49
|
|
399
407
|
save-as,,EB4A
|
|
400
408
|
save,,EB4B
|
|
409
|
+
screen-cut,,EC7F
|
|
401
410
|
screen-full,,EB4C
|
|
402
411
|
screen-normal,,EB4D
|
|
403
412
|
search-fuzzy,,EC0D
|
|
@@ -410,6 +419,7 @@ send,,EC0F
|
|
|
410
419
|
server-environment,,EBA3
|
|
411
420
|
server-process,,EBA2
|
|
412
421
|
server,,EB50
|
|
422
|
+
session-in-progress,,EC77
|
|
413
423
|
settings-gear,,EB51
|
|
414
424
|
settings,,EB52
|
|
415
425
|
share,,EC25
|
|
@@ -487,6 +497,7 @@ twitter,,EB72
|
|
|
487
497
|
type-hierarchy-sub,,EBBA
|
|
488
498
|
type-hierarchy-super,,EBBB
|
|
489
499
|
type-hierarchy,,EBB9
|
|
500
|
+
unarchive,,EC76
|
|
490
501
|
unfold,,EB73
|
|
491
502
|
ungroup-by-ref-type,,EB98
|
|
492
503
|
unlock,,EB74
|
|
@@ -500,6 +511,7 @@ vm-connect,,EBA9
|
|
|
500
511
|
vm-outline,,EB7A
|
|
501
512
|
vm-pending,,F102
|
|
502
513
|
vm-running,,EB7B
|
|
514
|
+
vm-small,,EC79
|
|
503
515
|
vm,,EA7A
|
|
504
516
|
vr,,EC18
|
|
505
517
|
vscode-insiders,,EC2A
|
|
@@ -514,5 +526,7 @@ word-wrap,,EB80
|
|
|
514
526
|
workspace-trusted,,EBC1
|
|
515
527
|
workspace-unknown,,EBC3
|
|
516
528
|
workspace-untrusted,,EBC2
|
|
529
|
+
worktree-small,,EC7D
|
|
530
|
+
worktree,,EC7E
|
|
517
531
|
zoom-in,,EB81
|
|
518
532
|
zoom-out,,EB82
|