@vscode/codicons 0.0.39 → 0.0.40
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/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 +1 -1
- package/src/icons/chat-sparkle-error.svg +1 -0
- package/src/icons/chat-sparkle-warning.svg +1 -0
- package/src/icons/comment-discussion-sparkle.svg +1 -0
- package/src/icons/go-to-file.svg +1 -1
- package/src/icons/go-to-search.svg +1 -1
- package/src/icons/open-preview.svg +1 -1
- package/src/icons/search-fuzzy.svg +1 -1
- package/src/icons/search-sparkle.svg +1 -1
- package/src/icons/search-stop.svg +1 -1
- package/src/icons/search.svg +1 -1
- package/src/icons/split-horizontal.svg +1 -1
- package/src/icons/split-vertical.svg +1 -1
- package/src/icons/trash.svg +1 -1
- package/src/template/mapping.json +4 -1
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?0a3cacc32b1287fa99b52a31880127dd") format("truetype");
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
.codicon[class*='codicon-'] {
|
|
@@ -658,4 +658,7 @@
|
|
|
658
658
|
.codicon-edit-sparkle:before { content: "\ec51" }
|
|
659
659
|
.codicon-copilot-snooze:before { content: "\ec52" }
|
|
660
660
|
.codicon-send-to-remote-agent:before { content: "\ec53" }
|
|
661
|
+
.codicon-comment-discussion-sparkle:before { content: "\ec54" }
|
|
662
|
+
.codicon-chat-sparkle-warning:before { content: "\ec55" }
|
|
663
|
+
.codicon-chat-sparkle-error:before { content: "\ec56" }
|
|
661
664
|
.codicon-git-fetch:before { content: "\f101" }
|
package/dist/codicon.csv
CHANGED
|
@@ -40,6 +40,8 @@ calendar,,EAB0
|
|
|
40
40
|
call-incoming,,EB92
|
|
41
41
|
call-outgoing,,EB93
|
|
42
42
|
case-sensitive,,EAB1
|
|
43
|
+
chat-sparkle-error,,EC56
|
|
44
|
+
chat-sparkle-warning,,EC55
|
|
43
45
|
chat-sparkle,,EC4F
|
|
44
46
|
check-all,,EBB1
|
|
45
47
|
check,,EAB2
|
|
@@ -75,6 +77,7 @@ coffee,,EC15
|
|
|
75
77
|
collapse-all,,EAC5
|
|
76
78
|
color-mode,,EAC6
|
|
77
79
|
combine,,EBB6
|
|
80
|
+
comment-discussion-sparkle,,EC54
|
|
78
81
|
comment-discussion,,EAC7
|
|
79
82
|
comment-draft,,EC0E
|
|
80
83
|
comment-unresolved,,EC0A
|
package/dist/codicon.html
CHANGED
|
@@ -481,6 +481,22 @@
|
|
|
481
481
|
<span class='label'>case-sensitive</span>
|
|
482
482
|
<span class='description'></span>
|
|
483
483
|
</div>
|
|
484
|
+
<div class="icon" data-name="chat-sparkle-error" title="chat-sparkle-error">
|
|
485
|
+
<span class="inner">
|
|
486
|
+
<i class="codicon codicon-chat-sparkle-error" aria-hidden="true"></i>
|
|
487
|
+
</span>
|
|
488
|
+
<br>
|
|
489
|
+
<span class='label'>chat-sparkle-error</span>
|
|
490
|
+
<span class='description'></span>
|
|
491
|
+
</div>
|
|
492
|
+
<div class="icon" data-name="chat-sparkle-warning" title="chat-sparkle-warning">
|
|
493
|
+
<span class="inner">
|
|
494
|
+
<i class="codicon codicon-chat-sparkle-warning" aria-hidden="true"></i>
|
|
495
|
+
</span>
|
|
496
|
+
<br>
|
|
497
|
+
<span class='label'>chat-sparkle-warning</span>
|
|
498
|
+
<span class='description'></span>
|
|
499
|
+
</div>
|
|
484
500
|
<div class="icon" data-name="chat-sparkle" title="chat-sparkle">
|
|
485
501
|
<span class="inner">
|
|
486
502
|
<i class="codicon codicon-chat-sparkle" aria-hidden="true"></i>
|
|
@@ -761,6 +777,14 @@
|
|
|
761
777
|
<span class='label'>combine</span>
|
|
762
778
|
<span class='description'></span>
|
|
763
779
|
</div>
|
|
780
|
+
<div class="icon" data-name="comment-discussion-sparkle" title="comment-discussion-sparkle">
|
|
781
|
+
<span class="inner">
|
|
782
|
+
<i class="codicon codicon-comment-discussion-sparkle" aria-hidden="true"></i>
|
|
783
|
+
</span>
|
|
784
|
+
<br>
|
|
785
|
+
<span class='label'>comment-discussion-sparkle</span>
|
|
786
|
+
<span class='description'></span>
|
|
787
|
+
</div>
|
|
764
788
|
<div class="icon" data-name="comment-discussion" title="comment-discussion">
|
|
765
789
|
<span class="inner">
|
|
766
790
|
<i class="codicon codicon-comment-discussion" aria-hidden="true"></i>
|