@vscode/codicons 0.0.35 → 0.0.38

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.
Files changed (105) hide show
  1. package/.fantasticonrc.js +17 -9
  2. package/.github/workflows/build.yml +42 -2
  3. package/.github/workflows/codeql-analysis.yml +4 -4
  4. package/.github/workflows/gh-pages.yml +61 -0
  5. package/.github/workflows/release.yml +65 -0
  6. package/.husky/pre-commit +1 -0
  7. package/.vscode/settings.json +4 -1
  8. package/README.md +6 -6
  9. package/build/pipeline.yml +36 -0
  10. package/dist/codicon.css +63 -2
  11. package/dist/codicon.csv +55 -3
  12. package/dist/codicon.html +424 -0
  13. package/dist/codicon.svg +1 -1
  14. package/dist/codicon.ttf +0 -0
  15. package/dist/codiconsLibrary.ts +612 -0
  16. package/package.json +19 -11
  17. package/scripts/export-to-ts.js +49 -0
  18. package/scripts/svg-sprite.js +60 -4
  19. package/scripts/version-bump.js +166 -0
  20. package/src/icons/attach.svg +1 -0
  21. package/src/icons/chat-sparkle.svg +1 -0
  22. package/src/icons/code-oss.svg +1 -0
  23. package/src/icons/code-review.svg +1 -0
  24. package/src/icons/copilot-blocked.svg +1 -0
  25. package/src/icons/copilot-error.svg +1 -0
  26. package/src/icons/copilot-in-progress.svg +1 -0
  27. package/src/icons/copilot-large.svg +1 -0
  28. package/src/icons/copilot-not-connected.svg +1 -0
  29. package/src/icons/copilot-snooze.svg +1 -0
  30. package/src/icons/copilot-success.svg +1 -0
  31. package/src/icons/copilot-unavailable.svg +1 -0
  32. package/src/icons/copilot-warning-large.svg +1 -0
  33. package/src/icons/copilot-warning.svg +1 -0
  34. package/src/icons/copilot.svg +1 -1
  35. package/src/icons/coverage.svg +1 -0
  36. package/src/icons/diff-multiple.svg +1 -0
  37. package/src/icons/diff-single.svg +1 -0
  38. package/src/icons/edit-session.svg +1 -0
  39. package/src/icons/edit-sparkle.svg +1 -0
  40. package/src/icons/extensions-large.svg +1 -0
  41. package/src/icons/extensions.svg +1 -1
  42. package/src/icons/file-binary.svg +1 -1
  43. package/src/icons/file-code.svg +1 -1
  44. package/src/icons/file-media.svg +1 -1
  45. package/src/icons/file-zip.svg +1 -1
  46. package/src/icons/file.svg +1 -1
  47. package/src/icons/flag.svg +1 -0
  48. package/src/icons/git-pull-request-done.svg +1 -0
  49. package/src/icons/git-pull-request-go-to-changes.svg +1 -1
  50. package/src/icons/git-pull-request-new-changes.svg +1 -1
  51. package/src/icons/git-stash-apply.svg +1 -0
  52. package/src/icons/git-stash-pop.svg +1 -0
  53. package/src/icons/git-stash.svg +1 -0
  54. package/src/icons/github-project.svg +1 -0
  55. package/src/icons/go-to-editing-session.svg +1 -0
  56. package/src/icons/go-to-file.svg +1 -1
  57. package/src/icons/go-to-search.svg +1 -0
  58. package/src/icons/keyboard-tab-above.svg +1 -0
  59. package/src/icons/keyboard-tab-below.svg +1 -0
  60. package/src/icons/keyboard-tab.svg +1 -0
  61. package/src/icons/layout-panel-dock.svg +1 -0
  62. package/src/icons/layout-sidebar-left-dock.svg +1 -0
  63. package/src/icons/layout-sidebar-right-dock.svg +1 -0
  64. package/src/icons/lightbulb-empty.svg +1 -0
  65. package/src/icons/lightbulb-sparkle.svg +1 -0
  66. package/src/icons/map-vertical-filled.svg +1 -0
  67. package/src/icons/map-vertical.svg +1 -0
  68. package/src/icons/mcp.svg +1 -0
  69. package/src/icons/mention.svg +1 -1
  70. package/src/icons/mic-filled.svg +1 -1
  71. package/src/icons/mic.svg +1 -1
  72. package/src/icons/new-file.svg +1 -1
  73. package/src/icons/percentage.svg +1 -0
  74. package/src/icons/python.svg +1 -0
  75. package/src/icons/repo-clone.svg +1 -1
  76. package/src/icons/repo-fetch.svg +1 -0
  77. package/src/icons/repo-force-push.svg +1 -1
  78. package/src/icons/repo-pinned.svg +1 -0
  79. package/src/icons/repo-pull.svg +1 -1
  80. package/src/icons/repo-push.svg +1 -1
  81. package/src/icons/repo.svg +1 -1
  82. package/src/icons/request-changes.svg +1 -1
  83. package/src/icons/robot.svg +1 -0
  84. package/src/icons/run-all-coverage.svg +1 -0
  85. package/src/icons/run-coverage.svg +1 -0
  86. package/src/icons/screen-full.svg +1 -1
  87. package/src/icons/screen-normal.svg +1 -1
  88. package/src/icons/search-sparkle.svg +1 -0
  89. package/src/icons/settings.svg +1 -1
  90. package/src/icons/share.svg +1 -0
  91. package/src/icons/sparkle-filled.svg +1 -0
  92. package/src/icons/star-empty.svg +1 -1
  93. package/src/icons/star-full.svg +1 -1
  94. package/src/icons/star-half.svg +1 -1
  95. package/src/icons/surround-with.svg +1 -0
  96. package/src/icons/symbol-method-arrow.svg +1 -0
  97. package/src/icons/sync-ignored.svg +1 -1
  98. package/src/icons/sync.svg +1 -1
  99. package/src/icons/thumbsdown-filled.svg +1 -1
  100. package/src/icons/thumbsdown.svg +1 -1
  101. package/src/icons/thumbsup-filled.svg +1 -1
  102. package/src/icons/thumbsup.svg +1 -1
  103. package/src/icons/vscode-insiders.svg +1 -0
  104. package/src/icons/vscode.svg +1 -0
  105. package/src/template/mapping.json +63 -3
package/.fantasticonrc.js CHANGED
@@ -1,24 +1,32 @@
1
- const package = require('./package.json');
2
- const codepoints = require('./src/template/mapping.json');
1
+ /* eslint-disable */
2
+ var pkg = require('./package.json');
3
+ var path = require('path');
4
+ var codepoints = require('./src/template/mapping.json');
5
+
6
+ // Ensure paths are platform-agnostic for Windows CI
7
+ var inputDir = path.resolve(__dirname, 'src', 'icons');
8
+ var outputDir = path.resolve(__dirname, 'dist');
9
+ var templateHtml = path.resolve(__dirname, 'src', 'template', 'preview.hbs');
10
+ var templateCss = path.resolve(__dirname, 'src', 'template', 'styles.hbs');
3
11
 
4
12
  module.exports = {
5
13
  name: 'codicon',
6
14
  prefix: 'codicon',
7
15
  codepoints: codepoints,
8
- inputDir: './src/icons',
9
- outputDir: './dist',
16
+ inputDir: inputDir,
17
+ outputDir: outputDir,
10
18
  fontTypes: ['ttf'],
11
19
  normalize: true,
12
20
  assetTypes: ['css', 'html'],
13
21
  templates: {
14
- html: './src/template/preview.hbs',
15
- css: './src/template/styles.hbs'
22
+ html: templateHtml,
23
+ css: templateCss
16
24
  },
17
25
  formatOptions: {
18
26
  ttf: {
19
- url: package.url,
20
- description: package.description,
21
- version: package.fontVersion
27
+ url: pkg.url,
28
+ description: pkg.description,
29
+ version: pkg.fontVersion
22
30
  }
23
31
  }
24
32
  };
@@ -3,6 +3,8 @@ name: Codicons Build
3
3
  on:
4
4
  push:
5
5
  branches: [ main ]
6
+ tags:
7
+ - '*' # Only runs on annotated tags
6
8
  pull_request:
7
9
  branches: [ main ]
8
10
  workflow_dispatch:
@@ -12,8 +14,8 @@ jobs:
12
14
  runs-on: ubuntu-latest
13
15
 
14
16
  steps:
15
- - uses: actions/checkout@v2
16
- - uses: actions/setup-node@v2
17
+ - uses: actions/checkout@v4
18
+ - uses: actions/setup-node@v4
17
19
  with:
18
20
  node-version: '16'
19
21
 
@@ -22,3 +24,41 @@ jobs:
22
24
 
23
25
  - name: Build font
24
26
  run: npm run build
27
+
28
+ - name: Upload codicon.ttf as artifact
29
+ uses: actions/upload-artifact@v4
30
+ with:
31
+ name: codicon-font-${{ github.sha }}.ttf
32
+ path: dist/codicon.ttf
33
+
34
+ - name: PR to microsoft/vscode # TODO: Separate "deploy:" step?
35
+ env:
36
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
37
+ run: |
38
+ BRANCH="update-codicons"
39
+ MESSAGE="chore: Update codicons to ${{ github.sha }}"
40
+
41
+ git clone --depth=1 https://github.com/microsoft/vscode.git
42
+ cd vscode
43
+ git checkout -b $BRANCH
44
+
45
+ cp ../dist/codicon.ttf src/vs/base/browser/ui/codicons/codicon/
46
+ cp ../dist/codiconsLibrary.ts src/vs/base/common/
47
+ git add .
48
+
49
+ git config user.name "${{ github.actor }}"
50
+ git config user.email "${{ github.actor_id }}+${{ github.actor }}@users.noreply.github.com"
51
+ git commit -m "$MESSAGE"
52
+
53
+ # TODO: This doesn't work yet due to permissions
54
+ #
55
+ # git push -f origin $BRANCH
56
+
57
+ # echo "${{ secrets.ACCESS_TOKEN }}" > token.txt
58
+ # gh auth login --with-token < token.txt
59
+
60
+ # gh pr create \
61
+ # --title "$MESSAGE" \
62
+ # --body "" \
63
+ # --base "main" \
64
+ # --head "$BRANCH"
@@ -39,11 +39,11 @@ jobs:
39
39
 
40
40
  steps:
41
41
  - name: Checkout repository
42
- uses: actions/checkout@v2
42
+ uses: actions/checkout@v4
43
43
 
44
44
  # Initializes the CodeQL tools for scanning.
45
45
  - name: Initialize CodeQL
46
- uses: github/codeql-action/init@v1
46
+ uses: github/codeql-action/init@v3
47
47
  with:
48
48
  languages: ${{ matrix.language }}
49
49
  # If you wish to specify custom queries, you can do so here or in a config file.
@@ -54,7 +54,7 @@ jobs:
54
54
  # Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
55
55
  # If this step fails, then you should remove it and run the build manually (see below)
56
56
  - name: Autobuild
57
- uses: github/codeql-action/autobuild@v1
57
+ uses: github/codeql-action/autobuild@v3
58
58
 
59
59
  # ℹ️ Command-line programs to run using the OS shell.
60
60
  # 📚 https://git.io/JvXDl
@@ -68,4 +68,4 @@ jobs:
68
68
  # make release
69
69
 
70
70
  - name: Perform CodeQL Analysis
71
- uses: github/codeql-action/analyze@v1
71
+ uses: github/codeql-action/analyze@v3
@@ -0,0 +1,61 @@
1
+ name: Publish GitHub Pages
2
+
3
+ on:
4
+ push:
5
+ branches: ["main"]
6
+ workflow_dispatch:
7
+
8
+ # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
9
+ permissions:
10
+ contents: read
11
+ pages: write
12
+ id-token: write
13
+
14
+ # Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
15
+ # However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
16
+ concurrency:
17
+ group: "pages"
18
+ cancel-in-progress: false
19
+
20
+ jobs:
21
+ # Build job
22
+ build:
23
+ runs-on: ubuntu-latest
24
+ steps:
25
+ - name: Checkout
26
+ uses: actions/checkout@v4
27
+
28
+ - uses: actions/setup-node@v4
29
+ with:
30
+ node-version: '16'
31
+
32
+ - name: Install dependencies
33
+ run: npm install
34
+
35
+ # Build so we can publish the dist/ folder
36
+ - name: Build font
37
+ run: npm run build
38
+
39
+ - name: Setup Pages
40
+ uses: actions/configure-pages@v4
41
+
42
+ - name: Build with Jekyll
43
+ uses: actions/jekyll-build-pages@v1
44
+ with:
45
+ source: ./
46
+ destination: ./_site
47
+ - name: Upload artifact
48
+
49
+ uses: actions/upload-pages-artifact@v3
50
+
51
+ # Deployment job
52
+ deploy:
53
+ environment:
54
+ name: github-pages
55
+ url: ${{ steps.deployment.outputs.page_url }}
56
+ runs-on: ubuntu-latest
57
+ needs: build
58
+ steps:
59
+ - name: Deploy to GitHub Pages
60
+ id: deployment
61
+ uses: actions/deploy-pages@v4
@@ -0,0 +1,65 @@
1
+ # Create a release when a new tag is pushed
2
+ name: Codicons Release
3
+
4
+ on:
5
+ push:
6
+ branches: [ main ]
7
+ tags:
8
+ - '*' # Only runs on annotated tags
9
+ pull_request:
10
+ branches: [ main ]
11
+ workflow_dispatch:
12
+
13
+ jobs:
14
+ publish:
15
+ runs-on: ubuntu-latest
16
+
17
+ steps:
18
+ - uses: actions/checkout@v4
19
+ with:
20
+ fetch-depth: 0 # All history
21
+ - uses: actions/setup-node@v4
22
+ with:
23
+ node-version: '16'
24
+
25
+ - name: Install dependencies
26
+ run: npm install
27
+
28
+ - name: Build font
29
+ run: npm run build
30
+
31
+ - name: Write release notes
32
+ if: startsWith(github.ref, 'refs/tags/')
33
+ run: | # List all commits since last tag
34
+ commits=$(git log --pretty=format:"* %s (%h)" $(git describe --abbrev=0 --tags `git rev-list --tags --skip=1 --max-count=1`)...)
35
+ echo -e "This release includes:\n${commits}" > release_notes.txt
36
+
37
+ {
38
+ echo 'release_notes<<EOF'
39
+ cat release_notes.txt
40
+ echo EOF
41
+ } >> "$GITHUB_ENV"
42
+
43
+ - name: Create Release
44
+ if: startsWith(github.ref, 'refs/tags/')
45
+ id: create_release
46
+ uses: actions/create-release@v1
47
+ env:
48
+ GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
49
+ with:
50
+ tag_name: ${{ github.ref }}
51
+ release_name: ${{ github.ref }}
52
+ draft: true
53
+ prerelease: false
54
+ body: ${{ env.release_notes }}
55
+
56
+ - name: Upload Release Asset
57
+ if: startsWith(github.ref, 'refs/tags/')
58
+ uses: actions/upload-release-asset@v1
59
+ env:
60
+ GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
61
+ with:
62
+ upload_url: ${{ steps.create_release.outputs.upload_url }}
63
+ asset_path: ./dist/codicon.ttf
64
+ asset_name: codicon-font-${{ github.ref_name }}.ttf
65
+ asset_content_type: application/x-font-ttf
@@ -0,0 +1 @@
1
+ npm i && npm run svgo
@@ -1,3 +1,6 @@
1
1
  {
2
- "livePreview.defaultPreviewPath": "/dist/codicon.html"
2
+ "livePreview.defaultPreviewPath": "/dist/codicon.html",
3
+ "git.branchProtection": [
4
+ "main"
5
+ ]
3
6
  }
package/README.md CHANGED
@@ -7,7 +7,7 @@
7
7
 
8
8
  ![codicons preview of the icons](https://raw.githubusercontent.com/microsoft/vscode-codicons/main/preview.png)
9
9
 
10
- This tool takes the [Visual Studio Code icons](https://microsoft.github.io/vscode-codicons/dist/codicon.html) and converts them into an icon font using [fantasticon](https://github.com/tancredi/fantasticon).
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
12
  ## Install
13
13
  You can use the [npm package](https://www.npmjs.com/package/@vscode/codicons) and install into your project via:
@@ -37,8 +37,6 @@ npm install
37
37
  npm run build
38
38
  ```
39
39
 
40
- Output will be exported to a `dist` folder. We track this folder so that we can see the updated changes to the unicode characters.
41
-
42
40
  ## Update packages
43
41
 
44
42
  You can run `npm outdated` to see if there are any package updates. To update packages, run:
@@ -51,14 +49,16 @@ npm update
51
49
 
52
50
  Export your icons (svg) to the `src/icons` folder and add an entry into `src/template/mapping.json` with a new codepoint key (this gets converted into a unicode key) and run the the build command. The build command will also remove any subfolders in the `icons` folder to keep the folder structure consistent.
53
51
 
54
- Next, update the [codicons file](https://github.com/microsoft/vscode/blob/master/src/vs/base/common/codicons.ts) on the vscode repository, ensuring that the unicode characters are the same (you can reference the [css file](https://github.com/microsoft/vscode-codicons/blob/master/dist/codicon.css)).
52
+ Next, update the [codicons file](https://github.com/microsoft/vscode/blob/main/src/vs/base/browser/ui/codicons/codicon/codicon.ttf) on the vscode repository.
55
53
 
54
+ > **Note:** If your icons look broken after converting into fonts (happens often when exporting as SVG from Figma), you might need to sanitize them using a tool
55
+ > like [svg-reorient](https://github.com/bigtimebuddy/svg-reorient).
56
56
 
57
57
  ## Using CSS Classes
58
58
 
59
- If you're building a VS Code extension, see this [webview extension sample](https://github.com/microsoft/vscode-extension-samples/tree/master/webview-codicons-sample) on how to integrate.
59
+ If you're building a VS Code extension, see this [webview extension sample](https://github.com/microsoft/vscode-extension-samples/tree/main/webview-codicons-sample) on how to integrate.
60
60
 
61
- When needing to reference an icon in the [Visual Studio Code source code](https://github.com/microsoft/vscode) via CSS classes, simply create a dom element/container that contains `codicon` and the [icon name](https://microsoft.github.io/vscode-codicons/dist/codicon.html) like:
61
+ When needing to reference an icon in the [Visual Studio Code source code](https://github.com/microsoft/vscode) via CSS classes, simply create a dom element/container that contains `codicon` and the icon name like:
62
62
 
63
63
  ```html
64
64
  <div class='codicon codicon-add'></div>
@@ -0,0 +1,36 @@
1
+ name: $(Date:yyyyMMdd)$(Rev:.r)
2
+
3
+ trigger:
4
+ branches:
5
+ include:
6
+ - main
7
+ pr: none
8
+
9
+ resources:
10
+ repositories:
11
+ - repository: templates
12
+ type: github
13
+ name: microsoft/vscode-engineering
14
+ ref: main
15
+ endpoint: Monaco
16
+
17
+ parameters:
18
+ - name: publishPackage
19
+ displayName: 🚀 Publish codicons
20
+ type: boolean
21
+ default: false
22
+
23
+ extends:
24
+ template: azure-pipelines/npm-package/pipeline.yml@templates
25
+ parameters:
26
+ npmPackages:
27
+ - name: codicons
28
+
29
+ buildSteps:
30
+ - script: npm ci
31
+ displayName: Install dependencies
32
+
33
+ - script: npm run build
34
+ displayName: Build npm package
35
+
36
+ publishPackage: ${{ parameters.publishPackage }}
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?79130123c9d3674a686cf03962523e8a") format("truetype");
9
+ src: url("./codicon.ttf?f9c301c2f5e58775bba0951a589eef77") format("truetype");
10
10
  }
11
11
 
12
12
  .codicon[class*='codicon-'] {
@@ -265,6 +265,7 @@
265
265
  .codicon-diff-removed:before { content: "\eadf" }
266
266
  .codicon-diff-renamed:before { content: "\eae0" }
267
267
  .codicon-diff:before { content: "\eae1" }
268
+ .codicon-diff-sidebyside:before { content: "\eae1" }
268
269
  .codicon-discard:before { content: "\eae2" }
269
270
  .codicon-editor-layout:before { content: "\eae3" }
270
271
  .codicon-empty-window:before { content: "\eae4" }
@@ -572,7 +573,11 @@
572
573
  .codicon-blank:before { content: "\ec03" }
573
574
  .codicon-heart-filled:before { content: "\ec04" }
574
575
  .codicon-map:before { content: "\ec05" }
576
+ .codicon-map-horizontal:before { content: "\ec05" }
577
+ .codicon-fold-horizontal:before { content: "\ec05" }
575
578
  .codicon-map-filled:before { content: "\ec06" }
579
+ .codicon-map-horizontal-filled:before { content: "\ec06" }
580
+ .codicon-fold-horizontal-filled:before { content: "\ec06" }
576
581
  .codicon-circle-small:before { content: "\ec07" }
577
582
  .codicon-bell-slash:before { content: "\ec08" }
578
583
  .codicon-bell-slash-dot:before { content: "\ec09" }
@@ -595,5 +600,61 @@
595
600
  .codicon-piano:before { content: "\ec1a" }
596
601
  .codicon-music:before { content: "\ec1b" }
597
602
  .codicon-mic-filled:before { content: "\ec1c" }
598
- .codicon-git-fetch:before { content: "\ec1d" }
603
+ .codicon-repo-fetch:before { content: "\ec1d" }
599
604
  .codicon-copilot:before { content: "\ec1e" }
605
+ .codicon-lightbulb-sparkle:before { content: "\ec1f" }
606
+ .codicon-robot:before { content: "\ec20" }
607
+ .codicon-sparkle-filled:before { content: "\ec21" }
608
+ .codicon-diff-single:before { content: "\ec22" }
609
+ .codicon-diff-multiple:before { content: "\ec23" }
610
+ .codicon-surround-with:before { content: "\ec24" }
611
+ .codicon-share:before { content: "\ec25" }
612
+ .codicon-git-stash:before { content: "\ec26" }
613
+ .codicon-git-stash-apply:before { content: "\ec27" }
614
+ .codicon-git-stash-pop:before { content: "\ec28" }
615
+ .codicon-vscode:before { content: "\ec29" }
616
+ .codicon-vscode-insiders:before { content: "\ec2a" }
617
+ .codicon-code-oss:before { content: "\ec2b" }
618
+ .codicon-run-coverage:before { content: "\ec2c" }
619
+ .codicon-run-all-coverage:before { content: "\ec2d" }
620
+ .codicon-coverage:before { content: "\ec2e" }
621
+ .codicon-github-project:before { content: "\ec2f" }
622
+ .codicon-map-vertical:before { content: "\ec30" }
623
+ .codicon-fold-vertical:before { content: "\ec30" }
624
+ .codicon-map-vertical-filled:before { content: "\ec31" }
625
+ .codicon-fold-vertical-filled:before { content: "\ec31" }
626
+ .codicon-go-to-search:before { content: "\ec32" }
627
+ .codicon-percentage:before { content: "\ec33" }
628
+ .codicon-sort-percentage:before { content: "\ec33" }
629
+ .codicon-attach:before { content: "\ec34" }
630
+ .codicon-go-to-editing-session:before { content: "\ec35" }
631
+ .codicon-edit-session:before { content: "\ec36" }
632
+ .codicon-code-review:before { content: "\ec37" }
633
+ .codicon-copilot-warning:before { content: "\ec38" }
634
+ .codicon-python:before { content: "\ec39" }
635
+ .codicon-copilot-large:before { content: "\ec3a" }
636
+ .codicon-copilot-warning-large:before { content: "\ec3b" }
637
+ .codicon-keyboard-tab:before { content: "\ec3c" }
638
+ .codicon-copilot-blocked:before { content: "\ec3d" }
639
+ .codicon-copilot-not-connected:before { content: "\ec3e" }
640
+ .codicon-flag:before { content: "\ec3f" }
641
+ .codicon-lightbulb-empty:before { content: "\ec40" }
642
+ .codicon-symbol-method-arrow:before { content: "\ec41" }
643
+ .codicon-copilot-unavailable:before { content: "\ec42" }
644
+ .codicon-repo-pinned:before { content: "\ec43" }
645
+ .codicon-keyboard-tab-above:before { content: "\ec44" }
646
+ .codicon-keyboard-tab-below:before { content: "\ec45" }
647
+ .codicon-git-pull-request-done:before { content: "\ec46" }
648
+ .codicon-mcp:before { content: "\ec47" }
649
+ .codicon-extensions-large:before { content: "\ec48" }
650
+ .codicon-layout-panel-dock:before { content: "\ec49" }
651
+ .codicon-layout-sidebar-left-dock:before { content: "\ec4a" }
652
+ .codicon-layout-sidebar-right-dock:before { content: "\ec4b" }
653
+ .codicon-copilot-in-progress:before { content: "\ec4c" }
654
+ .codicon-copilot-error:before { content: "\ec4d" }
655
+ .codicon-copilot-success:before { content: "\ec4e" }
656
+ .codicon-chat-sparkle:before { content: "\ec4f" }
657
+ .codicon-search-sparkle:before { content: "\ec50" }
658
+ .codicon-edit-sparkle:before { content: "\ec51" }
659
+ .codicon-copilot-snooze:before { content: "\ec52" }
660
+ .codicon-git-fetch:before { content: "\f101" }
package/dist/codicon.csv CHANGED
@@ -17,6 +17,7 @@ arrow-small-right,,EA9F
17
17
  arrow-small-up,,EAA0
18
18
  arrow-swap,,EBCB
19
19
  arrow-up,,EAA1
20
+ attach,,EC34
20
21
  azure-devops,,EBE8
21
22
  azure,,EBD8
22
23
  beaker-stop,,EBE1
@@ -39,6 +40,7 @@ calendar,,EAB0
39
40
  call-incoming,,EB92
40
41
  call-outgoing,,EB93
41
42
  case-sensitive,,EAB1
43
+ chat-sparkle,,EC4F
42
44
  check-all,,EBB1
43
45
  check,,EAB2
44
46
  checklist,,EAB3
@@ -66,6 +68,8 @@ close,,EA76
66
68
  cloud-download,,EAC2
67
69
  cloud-upload,,EAC3
68
70
  cloud,,EBAA
71
+ code-oss,,EC2B
72
+ code-review,,EC37
69
73
  code,,EAC4
70
74
  coffee,,EC15
71
75
  collapse-all,,EAC5
@@ -78,8 +82,19 @@ comment,,EA6B
78
82
  compass-active,,EBD7
79
83
  compass-dot,,EBD6
80
84
  compass,,EBD5
85
+ copilot-blocked,,EC3D
86
+ copilot-error,,EC4D
87
+ copilot-in-progress,,EC4C
88
+ copilot-large,,EC3A
89
+ copilot-not-connected,,EC3E
90
+ copilot-snooze,,EC52
91
+ copilot-success,,EC4E
92
+ copilot-unavailable,,EC42
93
+ copilot-warning-large,,EC3B
94
+ copilot-warning,,EC38
81
95
  copilot,,EC1E
82
96
  copy,,EBCC
97
+ coverage,,EC2E
83
98
  credit-card,,EAC9
84
99
  dash,,EACC
85
100
  dashboard,,EACD
@@ -123,10 +138,14 @@ device-mobile,,EADB
123
138
  diff-added,,EADC
124
139
  diff-ignored,,EADD
125
140
  diff-modified,,EADE
141
+ diff-multiple,,EC23
126
142
  diff-removed,,EADF
127
143
  diff-renamed,,EAE0
144
+ diff-single,,EB43
128
145
  diff,,EAE1
129
146
  discard,,EAE2
147
+ edit-session,,EC36
148
+ edit-sparkle,,EC51
130
149
  edit,,EA73
131
150
  editor-layout,,EAE3
132
151
  ellipsis,,EA7C
@@ -136,6 +155,7 @@ error,,EA87
136
155
  exclude,,EAE5
137
156
  expand-all,,EB95
138
157
  export,,EBAC
158
+ extensions-large,,EC48
139
159
  extensions,,EAE6
140
160
  eye-closed,,EAE7
141
161
  eye,,EA70
@@ -152,6 +172,7 @@ file,,EA7B
152
172
  files,,EAF0
153
173
  filter-filled,,EBCE
154
174
  filter,,EAF1
175
+ flag,,EC3F
155
176
  flame,,EAF2
156
177
  fold-down,,EAF3
157
178
  fold-up,,EAF4
@@ -164,22 +185,30 @@ game,,EC17
164
185
  gear,,EAF8
165
186
  gift,,EAF9
166
187
  gist-secret,,EAFA
188
+ gist,,EAFB
167
189
  git-commit,,EAFC
168
190
  git-compare,,EAFD
169
- git-fetch,,EC1D
191
+ git-fetch,,F101
170
192
  git-merge,,EAFE
171
193
  git-pull-request-closed,,EBDA
172
194
  git-pull-request-create,,EBBC
195
+ git-pull-request-done,,EC46
173
196
  git-pull-request-draft,,EBDB
174
197
  git-pull-request-go-to-changes,,EC0B
175
198
  git-pull-request-new-changes,,EC0C
176
199
  git-pull-request,,EA64
200
+ git-stash-apply,,EC27
201
+ git-stash-pop,,EC28
202
+ git-stash,,EC26
177
203
  github-action,,EAFF
178
204
  github-alt,,EB00
179
205
  github-inverted,,EBA1
206
+ github-project,,EC2F
180
207
  github,,EA84
181
208
  globe,,EB01
209
+ go-to-editing-session,,EC35
182
210
  go-to-file,,EA94
211
+ go-to-search,,EC32
183
212
  grabber,,EB02
184
213
  graph-left,,EBAD
185
214
  graph-line,,EBE2
@@ -206,6 +235,9 @@ jersey,,EB0E
206
235
  json,,EB0F
207
236
  kebab-vertical,,EB10
208
237
  key,,EB11
238
+ keyboard-tab-above,,EC44
239
+ keyboard-tab-below,,EC45
240
+ keyboard-tab,,EC3C
209
241
  law,,EB12
210
242
  layers-active,,EBD4
211
243
  layers-dot,,EBD3
@@ -215,19 +247,24 @@ layout-activitybar-right,,EBED
215
247
  layout-centered,,EBF7
216
248
  layout-menubar,,EBF6
217
249
  layout-panel-center,,EBEF
250
+ layout-panel-dock,,EC49
218
251
  layout-panel-justify,,EBF0
219
252
  layout-panel-left,,EBEE
220
253
  layout-panel-off,,EC01
221
254
  layout-panel-right,,EBF1
222
255
  layout-panel,,EBF2
256
+ layout-sidebar-left-dock,,EC4A
223
257
  layout-sidebar-left-off,,EC02
224
258
  layout-sidebar-left,,EBF3
259
+ layout-sidebar-right-dock,,EC4B
225
260
  layout-sidebar-right-off,,EC00
226
261
  layout-sidebar-right,,EBF4
227
262
  layout-statusbar,,EBF5
228
263
  layout,,EBEB
229
264
  library,,EB9C
230
265
  lightbulb-autofix,,EB13
266
+ lightbulb-empty,,EC40
267
+ lightbulb-sparkle,,EC1F
231
268
  lightbulb,,EA61
232
269
  link-external,,EB14
233
270
  link,,EB15
@@ -246,8 +283,11 @@ magnet,,EBAE
246
283
  mail-read,,EB1B
247
284
  mail,,EB1C
248
285
  map-filled,,EC06
286
+ map-vertical-filled,,EC31
287
+ map-vertical,,EC30
249
288
  map,,EC05
250
289
  markdown,,EB1D
290
+ mcp,,EC47
251
291
  megaphone,,EB1E
252
292
  mention,,EB1F
253
293
  menu,,EB94
@@ -276,6 +316,7 @@ package,,EB29
276
316
  paintcan,,EB2A
277
317
  pass-filled,,EBB3
278
318
  pass,,EBA4
319
+ percentage,,EC33
279
320
  person-add,,EBCD
280
321
  person,,EA67
281
322
  piano,,EC1A
@@ -291,6 +332,7 @@ preview,,EB2F
291
332
  primitive-square,,EA72
292
333
  project,,EB30
293
334
  pulse,,EB31
335
+ python,,EC39
294
336
  question,,EB32
295
337
  quote,,EB33
296
338
  radio-tower,,EB34
@@ -309,21 +351,25 @@ replace-all,,EB3C
309
351
  replace,,EB3D
310
352
  reply,,EA7D
311
353
  repo-clone,,EB3E
354
+ repo-fetch,,EC1D
312
355
  repo-force-push,,EB3F
313
356
  repo-forked,,EA63
357
+ repo-pinned,,EC43
314
358
  repo-pull,,EB40
315
359
  repo-push,,EB41
316
360
  repo,,EA62
317
361
  report,,EB42
318
- request-changes,,EB43
362
+ robot,,EC20
319
363
  rocket,,EB44
320
364
  root-folder-opened,,EB45
321
365
  root-folder,,EB46
322
366
  rss,,EB47
323
367
  ruby,,EB48
324
368
  run-above,,EBBD
369
+ run-all-coverage,,EC2D
325
370
  run-all,,EB9E
326
371
  run-below,,EBBE
372
+ run-coverage,,EC2C
327
373
  run-errors,,EBDE
328
374
  save-all,,EB49
329
375
  save-as,,EB4A
@@ -331,6 +377,7 @@ save,,EB4B
331
377
  screen-full,,EB4C
332
378
  screen-normal,,EB4D
333
379
  search-fuzzy,,EC0D
380
+ search-sparkle,,EC50
334
381
  search-stop,,EB4E
335
382
  search,,EA6D
336
383
  send,,EC0F
@@ -339,6 +386,7 @@ server-process,,EBA2
339
386
  server,,EB50
340
387
  settings-gear,,EB51
341
388
  settings,,EB52
389
+ share,,EC25
342
390
  shield,,EB53
343
391
  sign-in,,EA6F
344
392
  sign-out,,EA6E
@@ -346,6 +394,7 @@ smiley,,EB54
346
394
  snake,,EC16
347
395
  sort-precedence,,EB55
348
396
  source-control,,EA68
397
+ sparkle-filled,,EC21
349
398
  sparkle,,EC10
350
399
  split-horizontal,,EB56
351
400
  split-vertical,,EB57
@@ -354,6 +403,7 @@ star-empty,,EA6A
354
403
  star-full,,EB59
355
404
  star-half,,EB5A
356
405
  stop-circle,,EBA5
406
+ surround-with,,EC24
357
407
  symbol-array,,EA8A
358
408
  symbol-boolean,,EA8F
359
409
  symbol-class,,EB5B
@@ -363,10 +413,10 @@ symbol-enum-member,,EB5E
363
413
  symbol-enum,,EA95
364
414
  symbol-event,,EA86
365
415
  symbol-field,,EB5F
366
- symbol-file,,EB60
367
416
  symbol-interface,,EB61
368
417
  symbol-key,,EA93
369
418
  symbol-keyword,,EB62
419
+ symbol-method-arrow,,EC41
370
420
  symbol-method,,EA8C
371
421
  symbol-misc,,EB63
372
422
  symbol-namespace,,EA8B
@@ -425,6 +475,8 @@ vm-outline,,EB7A
425
475
  vm-running,,EB7B
426
476
  vm,,EA7A
427
477
  vr,,EC18
478
+ vscode-insiders,,EC2A
479
+ vscode,,EC29
428
480
  wand,,EBCF
429
481
  warning,,EA6C
430
482
  watch,,EB7C