@vscode/codicons 0.0.40 → 0.0.41
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/README.md +1 -1
- package/dist/codicon.css +4 -1
- package/dist/codicon.csv +3 -0
- package/dist/codicon.html +24 -0
- package/dist/codicon.svg +1 -1
- package/dist/codicon.ttf +0 -0
- package/dist/codiconsLibrary.ts +3 -0
- package/package.json +2 -2
- package/src/icons/collection.svg +1 -0
- package/src/icons/new-collection.svg +1 -0
- package/src/icons/settings-gear.svg +1 -1
- package/src/icons/thinking.svg +1 -0
- package/src/template/mapping.json +4 -1
package/README.md
CHANGED
|
@@ -80,7 +80,7 @@ When needing to use the `codicon.svg` sprite file, you can reference icons using
|
|
|
80
80
|
|
|
81
81
|
# Contributing
|
|
82
82
|
|
|
83
|
-
This project welcomes contributions and suggestions.
|
|
83
|
+
This project welcomes contributions and suggestions. Most contributions require you to agree to a
|
|
84
84
|
Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us
|
|
85
85
|
the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.
|
|
86
86
|
|
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?eb10abb8b9291201e2c39eced5bd6993") format("truetype");
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
.codicon[class*='codicon-'] {
|
|
@@ -661,4 +661,7 @@
|
|
|
661
661
|
.codicon-comment-discussion-sparkle:before { content: "\ec54" }
|
|
662
662
|
.codicon-chat-sparkle-warning:before { content: "\ec55" }
|
|
663
663
|
.codicon-chat-sparkle-error:before { content: "\ec56" }
|
|
664
|
+
.codicon-collection:before { content: "\ec57" }
|
|
665
|
+
.codicon-new-collection:before { content: "\ec58" }
|
|
666
|
+
.codicon-thinking:before { content: "\ec59" }
|
|
664
667
|
.codicon-git-fetch:before { content: "\f101" }
|
package/dist/codicon.csv
CHANGED
|
@@ -75,6 +75,7 @@ code-review,,EC37
|
|
|
75
75
|
code,,EAC4
|
|
76
76
|
coffee,,EC15
|
|
77
77
|
collapse-all,,EAC5
|
|
78
|
+
collection,,EC57
|
|
78
79
|
color-mode,,EAC6
|
|
79
80
|
combine,,EBB6
|
|
80
81
|
comment-discussion-sparkle,,EC54
|
|
@@ -304,6 +305,7 @@ move,,EB22
|
|
|
304
305
|
multiple-windows,,EB23
|
|
305
306
|
music,,EC1B
|
|
306
307
|
mute,,EB24
|
|
308
|
+
new-collection,,EC58
|
|
307
309
|
new-file,,EA7F
|
|
308
310
|
new-folder,,EA80
|
|
309
311
|
newline,,EBEA
|
|
@@ -449,6 +451,7 @@ terminal-tmux,,EBC8
|
|
|
449
451
|
terminal-ubuntu,,EBC9
|
|
450
452
|
terminal,,EA85
|
|
451
453
|
text-size,,EB69
|
|
454
|
+
thinking,,EC59
|
|
452
455
|
three-bars,,EB6A
|
|
453
456
|
thumbsdown-filled,,EC13
|
|
454
457
|
thumbsdown,,EB6B
|
package/dist/codicon.html
CHANGED
|
@@ -761,6 +761,14 @@
|
|
|
761
761
|
<span class='label'>collapse-all</span>
|
|
762
762
|
<span class='description'></span>
|
|
763
763
|
</div>
|
|
764
|
+
<div class="icon" data-name="collection" title="collection">
|
|
765
|
+
<span class="inner">
|
|
766
|
+
<i class="codicon codicon-collection" aria-hidden="true"></i>
|
|
767
|
+
</span>
|
|
768
|
+
<br>
|
|
769
|
+
<span class='label'>collection</span>
|
|
770
|
+
<span class='description'></span>
|
|
771
|
+
</div>
|
|
764
772
|
<div class="icon" data-name="color-mode" title="color-mode">
|
|
765
773
|
<span class="inner">
|
|
766
774
|
<i class="codicon codicon-color-mode" aria-hidden="true"></i>
|
|
@@ -2593,6 +2601,14 @@
|
|
|
2593
2601
|
<span class='label'>mute</span>
|
|
2594
2602
|
<span class='description'></span>
|
|
2595
2603
|
</div>
|
|
2604
|
+
<div class="icon" data-name="new-collection" title="new-collection">
|
|
2605
|
+
<span class="inner">
|
|
2606
|
+
<i class="codicon codicon-new-collection" aria-hidden="true"></i>
|
|
2607
|
+
</span>
|
|
2608
|
+
<br>
|
|
2609
|
+
<span class='label'>new-collection</span>
|
|
2610
|
+
<span class='description'></span>
|
|
2611
|
+
</div>
|
|
2596
2612
|
<div class="icon" data-name="new-file" title="new-file">
|
|
2597
2613
|
<span class="inner">
|
|
2598
2614
|
<i class="codicon codicon-new-file" aria-hidden="true"></i>
|
|
@@ -3769,6 +3785,14 @@
|
|
|
3769
3785
|
<span class='label'>text-size</span>
|
|
3770
3786
|
<span class='description'></span>
|
|
3771
3787
|
</div>
|
|
3788
|
+
<div class="icon" data-name="thinking" title="thinking">
|
|
3789
|
+
<span class="inner">
|
|
3790
|
+
<i class="codicon codicon-thinking" aria-hidden="true"></i>
|
|
3791
|
+
</span>
|
|
3792
|
+
<br>
|
|
3793
|
+
<span class='label'>thinking</span>
|
|
3794
|
+
<span class='description'></span>
|
|
3795
|
+
</div>
|
|
3772
3796
|
<div class="icon" data-name="three-bars" title="three-bars">
|
|
3773
3797
|
<span class="inner">
|
|
3774
3798
|
<i class="codicon codicon-three-bars" aria-hidden="true"></i>
|