@vscode/codicons 0.0.46-6 → 0.0.46-8
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 +17 -1
- package/dist/codicon.csv +16 -1
- package/dist/codicon.html +4982 -1131
- package/dist/codicon.svg +1 -1
- package/dist/codicon.ttf +0 -0
- package/dist/codiconsLibrary.ts +16 -0
- package/dist/metadata.json +4725 -1130
- package/package.json +1 -1
- package/src/icons/add-small.svg +1 -1
- package/src/icons/agent.svg +1 -1
- package/src/icons/circle-slash-compact.svg +1 -0
- package/src/icons/copilot-compact.svg +1 -0
- package/src/icons/error-compact.svg +1 -0
- package/src/icons/folder-compact.svg +1 -0
- package/src/icons/folder-opened-compact.svg +1 -0
- package/src/icons/gear-compact.svg +1 -0
- package/src/icons/git-branch-compact.svg +1 -0
- package/src/icons/library-compact.svg +1 -0
- package/src/icons/lightbulb-autofix.svg +1 -1
- package/src/icons/lightbulb-empty.svg +1 -1
- package/src/icons/lightbulb-sparkle.svg +1 -1
- package/src/icons/lightbulb.svg +1 -1
- package/src/icons/preview.svg +1 -1
- package/src/icons/record-keys-compact.svg +1 -0
- package/src/icons/remote-compact.svg +1 -0
- package/src/icons/repo-compact.svg +1 -0
- package/src/icons/repo-forked-compact.svg +1 -0
- package/src/icons/shield-compact.svg +1 -0
- package/src/icons/sparkle-compact.svg +1 -0
- package/src/icons/symbol-color-compact.svg +1 -0
- package/src/icons/window-compact.svg +1 -0
- package/src/template/mapping.json +48 -0
- package/src/template/metadata.json +4725 -1130
package/dist/codicon.ttf
CHANGED
|
Binary file
|
package/dist/codiconsLibrary.ts
CHANGED
|
@@ -660,4 +660,20 @@ export const codiconsLibrary = {
|
|
|
660
660
|
chatImport: register('chat-import', 0xec86),
|
|
661
661
|
chatExport: register('chat-export', 0xec87),
|
|
662
662
|
shareWindow: register('share-window', 0xec88),
|
|
663
|
+
circleSlashCompact: register('circle-slash-compact', 0xec89),
|
|
664
|
+
copilotCompact: register('copilot-compact', 0xec8a),
|
|
665
|
+
folderOpenedCompact: register('folder-opened-compact', 0xec8b),
|
|
666
|
+
folderCompact: register('folder-compact', 0xec8c),
|
|
667
|
+
gearCompact: register('gear-compact', 0xec8d),
|
|
668
|
+
gitBranchCompact: register('git-branch-compact', 0xec8e),
|
|
669
|
+
libraryCompact: register('library-compact', 0xec8f),
|
|
670
|
+
recordKeysCompact: register('record-keys-compact', 0xec90),
|
|
671
|
+
remoteCompact: register('remote-compact', 0xec91),
|
|
672
|
+
repoForkedCompact: register('repo-forked-compact', 0xec92),
|
|
673
|
+
repoCompact: register('repo-compact', 0xec93),
|
|
674
|
+
shieldCompact: register('shield-compact', 0xec94),
|
|
675
|
+
sparkleCompact: register('sparkle-compact', 0xec95),
|
|
676
|
+
symbolColorCompact: register('symbol-color-compact', 0xec96),
|
|
677
|
+
windowCompact: register('window-compact', 0xec97),
|
|
678
|
+
errorCompact: register('error-compact', 0xec98),
|
|
663
679
|
} as const;
|