@codingame/monaco-vscode-theme-defaults-default-extension 1.83.2 → 1.83.3-next.0

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/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import { registerExtension } from 'vscode/extensions';
2
2
 
3
- var manifest = {name:"theme-defaults",displayName:"Default Themes",description:"The default Visual Studio light and dark themes",categories:["Themes"],version:"1.0.0",publisher:"vscode",license:"MIT",engines:{vscode:"*"},contributes:{themes:[{id:"Default Dark+",label:"Dark+",uiTheme:"vs-dark",path:"./themes/dark_plus.json"},{id:"Default Dark Modern",label:"Dark Modern",uiTheme:"vs-dark",path:"./themes/dark_modern.json"},{id:"Default Light+",label:"Light+",uiTheme:"vs",path:"./themes/light_plus.json"},{id:"Default Light Modern",label:"Light Modern",uiTheme:"vs",path:"./themes/light_modern.json"},{id:"Visual Studio Dark",label:"Dark (Visual Studio)",uiTheme:"vs-dark",path:"./themes/dark_vs.json"},{id:"Visual Studio Light",label:"Light (Visual Studio)",uiTheme:"vs",path:"./themes/light_vs.json"},{id:"Default High Contrast",label:"Dark High Contrast",uiTheme:"hc-black",path:"./themes/hc_black.json"},{id:"Default High Contrast Light",label:"Light High Contrast",uiTheme:"hc-light",path:"./themes/hc_light.json"}],iconThemes:[{id:"vs-minimal",label:"Minimal (Visual Studio Code)",path:"./fileicons/vs_minimal-icon-theme.json"}]},repository:{type:"git",url:"https://github.com/microsoft/vscode.git"},main:undefined};
3
+ var manifest = {name:"theme-defaults",displayName:"%displayName%",description:"%description%",categories:["Themes"],version:"1.0.0",publisher:"vscode",license:"MIT",engines:{vscode:"*"},contributes:{themes:[{id:"Default Dark+",label:"%darkPlusColorThemeLabel%",uiTheme:"vs-dark",path:"./themes/dark_plus.json"},{id:"Default Dark Modern",label:"%darkModernThemeLabel%",uiTheme:"vs-dark",path:"./themes/dark_modern.json"},{id:"Default Light+",label:"%lightPlusColorThemeLabel%",uiTheme:"vs",path:"./themes/light_plus.json"},{id:"Default Light Modern",label:"%lightModernThemeLabel%",uiTheme:"vs",path:"./themes/light_modern.json"},{id:"Visual Studio Dark",label:"%darkColorThemeLabel%",uiTheme:"vs-dark",path:"./themes/dark_vs.json"},{id:"Visual Studio Light",label:"%lightColorThemeLabel%",uiTheme:"vs",path:"./themes/light_vs.json"},{id:"Default High Contrast",label:"%hcColorThemeLabel%",uiTheme:"hc-black",path:"./themes/hc_black.json"},{id:"Default High Contrast Light",label:"%lightHcColorThemeLabel%",uiTheme:"hc-light",path:"./themes/hc_light.json"}],iconThemes:[{id:"vs-minimal",label:"%minimalIconThemeLabel%",path:"./fileicons/vs_minimal-icon-theme.json"}]},repository:{type:"git",url:"https://github.com/microsoft/vscode.git"},main:undefined};
4
4
 
5
5
  const { registerFileUrl, whenReady } = registerExtension(manifest);
6
6
  registerFileUrl('./themes/dark_plus.json', new URL('./dark_plus.json', import.meta.url).toString(), 'application/json');
@@ -22,5 +22,6 @@ registerFileUrl('fileicons/images/root-folder-open-light.svg', new URL('./root-f
22
22
  registerFileUrl('fileicons/images/folder-light.svg', new URL('./folder-light.svg', import.meta.url).toString(), 'image/svg+xml');
23
23
  registerFileUrl('fileicons/images/folder-open-light.svg', new URL('./folder-open-light.svg', import.meta.url).toString(), 'image/svg+xml');
24
24
  registerFileUrl('fileicons/images/document-light.svg', new URL('./document-light.svg', import.meta.url).toString(), 'image/svg+xml');
25
+ registerFileUrl('package.nls.json', new URL('./package.nls.json', import.meta.url).toString(), 'application/json');
25
26
 
26
27
  export { whenReady };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codingame/monaco-vscode-theme-defaults-default-extension",
3
- "version": "1.83.2",
3
+ "version": "1.83.3-next.0",
4
4
  "keywords": [],
5
5
  "author": {
6
6
  "name": "CodinGame",
@@ -18,6 +18,6 @@
18
18
  "module": "index.js",
19
19
  "types": "index.d.ts",
20
20
  "dependencies": {
21
- "vscode": "npm:@codingame/monaco-vscode-api@1.83.2"
21
+ "vscode": "npm:@codingame/monaco-vscode-api@1.83.3-next.0"
22
22
  }
23
23
  }
@@ -0,0 +1,13 @@
1
+ {
2
+ "displayName": "Default Themes",
3
+ "description": "The default Visual Studio light and dark themes",
4
+ "darkPlusColorThemeLabel": "Dark+",
5
+ "darkModernThemeLabel": "Dark Modern",
6
+ "lightPlusColorThemeLabel": "Light+",
7
+ "lightModernThemeLabel": "Light Modern",
8
+ "darkColorThemeLabel": "Dark (Visual Studio)",
9
+ "lightColorThemeLabel": "Light (Visual Studio)",
10
+ "hcColorThemeLabel": "Dark High Contrast",
11
+ "lightHcColorThemeLabel": "Light High Contrast",
12
+ "minimalIconThemeLabel": "Minimal (Visual Studio Code)"
13
+ }