@vscode/codicons 0.0.46-0 → 0.0.46-10
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/.github/prompts/build-new-icons.prompt.md +32 -0
- package/dist/codicon.css +26 -1
- package/dist/codicon.csv +25 -1
- package/dist/codicon.html +5224 -1143
- package/dist/codicon.svg +1 -1
- package/dist/codicon.ttf +0 -0
- package/dist/codiconsLibrary.ts +25 -0
- package/dist/metadata.json +4806 -1125
- package/package.json +1 -1
- package/src/icons/account.svg +1 -1
- package/src/icons/add-small.svg +1 -1
- package/src/icons/agent.svg +1 -1
- package/src/icons/chat-export.svg +1 -0
- package/src/icons/chat-import.svg +1 -0
- 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/important-compact.svg +1 -0
- package/src/icons/important.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/pass-compact.svg +1 -0
- 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/rocket-compact.svg +1 -0
- package/src/icons/rocket.svg +1 -1
- package/src/icons/share-window.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/unpin.svg +1 -0
- package/src/icons/warning-compact.svg +1 -0
- package/src/icons/window-compact.svg +1 -0
- package/src/template/mapping.json +75 -0
- package/src/template/metadata.json +4806 -1125
package/dist/codicon.ttf
CHANGED
|
Binary file
|
package/dist/codiconsLibrary.ts
CHANGED
|
@@ -657,4 +657,29 @@ export const codiconsLibrary = {
|
|
|
657
657
|
openInWindow: register('open-in-window', 0xec83),
|
|
658
658
|
newSession: register('new-session', 0xec84),
|
|
659
659
|
terminalSecure: register('terminal-secure', 0xec85),
|
|
660
|
+
chatImport: register('chat-import', 0xec86),
|
|
661
|
+
chatExport: register('chat-export', 0xec87),
|
|
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),
|
|
679
|
+
warningCompact: register('warning-compact', 0xec99),
|
|
680
|
+
passCompact: register('pass-compact', 0xec9a),
|
|
681
|
+
important: register('important', 0xec9b),
|
|
682
|
+
importantCompact: register('important-compact', 0xec9c),
|
|
683
|
+
rocketCompact: register('rocket-compact', 0xec9d),
|
|
684
|
+
unpin: register('unpin', 0xec9e),
|
|
660
685
|
} as const;
|