@vscode/codicons 0.0.38 → 0.0.39
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 +2 -0
- package/dist/codicon.css +2 -1
- package/dist/codicon.csv +1 -0
- package/dist/codicon.html +8 -0
- package/dist/codicon.svg +1 -1
- package/dist/codicon.ttf +0 -0
- package/dist/codiconsLibrary.ts +1 -0
- package/package.json +2 -2
- package/src/icons/archive.svg +1 -1
- package/src/icons/send-to-remote-agent.svg +1 -0
- package/src/template/mapping.json +2 -1
package/README.md
CHANGED
|
@@ -9,6 +9,8 @@
|
|
|
9
9
|
|
|
10
10
|
This tool takes the [Visual Studio Code icons](https://github.com/microsoft/vscode-codicons/tree/main/src/icons) and converts them into an icon font using [fantasticon](https://github.com/tancredi/fantasticon).
|
|
11
11
|
|
|
12
|
+
Using the [Visual Studio Codicon Lookup](https://microsoft.github.io/vscode-codicons/dist/codicon.html) you can preview and search for icons.
|
|
13
|
+
|
|
12
14
|
## Install
|
|
13
15
|
You can use the [npm package](https://www.npmjs.com/package/@vscode/codicons) and install into your project via:
|
|
14
16
|
|
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?9548aa74ff94830c1d540ed047a49e18") format("truetype");
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
.codicon[class*='codicon-'] {
|
|
@@ -657,4 +657,5 @@
|
|
|
657
657
|
.codicon-search-sparkle:before { content: "\ec50" }
|
|
658
658
|
.codicon-edit-sparkle:before { content: "\ec51" }
|
|
659
659
|
.codicon-copilot-snooze:before { content: "\ec52" }
|
|
660
|
+
.codicon-send-to-remote-agent:before { content: "\ec53" }
|
|
660
661
|
.codicon-git-fetch:before { content: "\f101" }
|
package/dist/codicon.csv
CHANGED
package/dist/codicon.html
CHANGED
|
@@ -3209,6 +3209,14 @@
|
|
|
3209
3209
|
<span class='label'>search</span>
|
|
3210
3210
|
<span class='description'></span>
|
|
3211
3211
|
</div>
|
|
3212
|
+
<div class="icon" data-name="send-to-remote-agent" title="send-to-remote-agent">
|
|
3213
|
+
<span class="inner">
|
|
3214
|
+
<i class="codicon codicon-send-to-remote-agent" aria-hidden="true"></i>
|
|
3215
|
+
</span>
|
|
3216
|
+
<br>
|
|
3217
|
+
<span class='label'>send-to-remote-agent</span>
|
|
3218
|
+
<span class='description'></span>
|
|
3219
|
+
</div>
|
|
3212
3220
|
<div class="icon" data-name="send" title="send">
|
|
3213
3221
|
<span class="inner">
|
|
3214
3222
|
<i class="codicon codicon-send" aria-hidden="true"></i>
|