@codingame/monaco-vscode-ipynb-default-extension 26.2.2 → 27.0.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,19 +1,19 @@
1
1
  import { registerExtension } from '@codingame/monaco-vscode-api/extensions';
2
2
 
3
- var manifest = {name:"ipynb",displayName:"%displayName%",description:"%description%",publisher:"vscode",version:"1.0.0",license:"MIT",icon:"media/icon.png",engines:{vscode:"^1.57.0"},enabledApiProposals:["diffContentOptions"],activationEvents:["onNotebook:jupyter-notebook","onNotebookSerializer:interactive","onNotebookSerializer:repl"],extensionKind:["workspace","ui"],main:undefined,browser:"./dist/browser/ipynbMain.browser.js",capabilities:{virtualWorkspaces:true,untrustedWorkspaces:{supported:true}},contributes:{configuration:[{properties:{"ipynb.pasteImagesAsAttachments.enabled":{type:"boolean",scope:"resource",markdownDescription:"%ipynb.pasteImagesAsAttachments.enabled%","default":true},"ipynb.experimental.serialization":{type:"boolean",scope:"resource",markdownDescription:"%ipynb.experimental.serialization%","default":true,tags:["experimental"]}}}],commands:[{command:"ipynb.newUntitledIpynb",title:"%newUntitledIpynb.title%",shortTitle:"%newUntitledIpynb.shortTitle%",category:"Create"},{command:"ipynb.openIpynbInNotebookEditor",title:"%openIpynbInNotebookEditor.title%"},{command:"ipynb.cleanInvalidImageAttachment",title:"%cleanInvalidImageAttachment.title%"},{command:"notebook.cellOutput.copy",title:"%copyCellOutput.title%",category:"Notebook"},{command:"notebook.cellOutput.addToChat",title:"%addCellOutputToChat.title%",category:"Notebook",enablement:"chatIsEnabled"},{command:"notebook.cellOutput.openInTextEditor",title:"%openCellOutput.title%",category:"Notebook"}],notebooks:[{type:"jupyter-notebook",displayName:"Jupyter Notebook",selector:[{filenamePattern:"*.ipynb"}],priority:"default"}],notebookRenderer:[{id:"vscode.markdown-it-cell-attachment-renderer",displayName:"%markdownAttachmentRenderer.displayName%",entrypoint:{"extends":"vscode.markdown-it-renderer",path:"./notebook-out/cellAttachmentRenderer.js"}}],menus:{"file/newFile":[{command:"ipynb.newUntitledIpynb",group:"notebook"}],commandPalette:[{command:"ipynb.newUntitledIpynb"},{command:"ipynb.openIpynbInNotebookEditor",when:"false"},{command:"ipynb.cleanInvalidImageAttachment",when:"false"},{command:"notebook.cellOutput.copy",when:"notebookCellHasOutputs"},{command:"notebook.cellOutput.openInTextEditor",when:"false"}],"webview/context":[{command:"notebook.cellOutput.copy",when:"webviewId == 'notebook.output' && webviewSection == 'image'",group:"context@1"},{command:"notebook.cellOutput.copy",when:"webviewId == 'notebook.output' && webviewSection == 'text'"},{command:"notebook.cellOutput.addToChat",when:"webviewId == 'notebook.output' && (webviewSection == 'text' || webviewSection == 'image')",group:"context@2"},{command:"notebook.cellOutput.openInTextEditor",when:"webviewId == 'notebook.output' && webviewSection == 'text'"}]}},repository:{type:"git",url:"https://github.com/microsoft/vscode.git"}};
3
+ var manifest = {name:"ipynb",displayName:"%displayName%",description:"%description%",publisher:"vscode",version:"10.0.0",license:"MIT",icon:"media/icon.png",engines:{vscode:"^1.57.0"},enabledApiProposals:["diffContentOptions"],activationEvents:["onNotebook:jupyter-notebook","onNotebookSerializer:interactive","onNotebookSerializer:repl"],extensionKind:["workspace","ui"],main:undefined,browser:"./dist/browser/ipynbMain.browser.js",capabilities:{virtualWorkspaces:true,untrustedWorkspaces:{supported:true}},contributes:{configuration:[{properties:{"ipynb.pasteImagesAsAttachments.enabled":{type:"boolean",scope:"resource",markdownDescription:"%ipynb.pasteImagesAsAttachments.enabled%","default":true},"ipynb.experimental.serialization":{type:"boolean",scope:"resource",markdownDescription:"%ipynb.experimental.serialization%","default":true,tags:["experimental"]}}}],commands:[{command:"ipynb.newUntitledIpynb",title:"%newUntitledIpynb.title%",shortTitle:"%newUntitledIpynb.shortTitle%",category:"Create"},{command:"ipynb.openIpynbInNotebookEditor",title:"%openIpynbInNotebookEditor.title%"},{command:"ipynb.cleanInvalidImageAttachment",title:"%cleanInvalidImageAttachment.title%"},{command:"notebook.cellOutput.copy",title:"%copyCellOutput.title%",category:"Notebook"},{command:"notebook.cellOutput.addToChat",title:"%addCellOutputToChat.title%",category:"Notebook",enablement:"chatIsEnabled"},{command:"notebook.cellOutput.openInTextEditor",title:"%openCellOutput.title%",category:"Notebook"}],notebooks:[{type:"jupyter-notebook",displayName:"Jupyter Notebook",selector:[{filenamePattern:"*.ipynb"}],priority:"default"}],notebookRenderer:[{id:"vscode.markdown-it-cell-attachment-renderer",displayName:"%markdownAttachmentRenderer.displayName%",entrypoint:{"extends":"vscode.markdown-it-renderer",path:"./notebook-out/cellAttachmentRenderer.js"}}],menus:{"file/newFile":[{command:"ipynb.newUntitledIpynb",group:"notebook"}],commandPalette:[{command:"ipynb.newUntitledIpynb"},{command:"ipynb.openIpynbInNotebookEditor",when:"false"},{command:"ipynb.cleanInvalidImageAttachment",when:"false"},{command:"notebook.cellOutput.copy",when:"notebookCellHasOutputs"},{command:"notebook.cellOutput.openInTextEditor",when:"false"}],"webview/context":[{command:"notebook.cellOutput.copy",when:"webviewId == 'notebook.output' && webviewSection == 'image'",group:"context@1"},{command:"notebook.cellOutput.copy",when:"webviewId == 'notebook.output' && webviewSection == 'text'"},{command:"notebook.cellOutput.addToChat",when:"webviewId == 'notebook.output' && (webviewSection == 'text' || webviewSection == 'image')",group:"context@2"},{command:"notebook.cellOutput.openInTextEditor",when:"webviewId == 'notebook.output' && webviewSection == 'text'"}]}},repository:{type:"git",url:"https://github.com/microsoft/vscode.git"}};
4
4
 
5
5
  const { registerFileUrl, whenReady } = registerExtension(manifest, undefined, {"system":true,"readmePath":"README.md"});
6
6
  registerFileUrl('README.md', new URL('./resources/README.md', import.meta.url).toString(), {"mimeType":"text/markdown","size":263});
7
- registerFileUrl('dist/browser/ipynbMain.browser', new URL('./resources/ipynbMain.browser.js', import.meta.url).toString(), {"mimeType":"text/javascript","size":179339});
8
- registerFileUrl('dist/browser/ipynbMain.browser.js', new URL('./resources/ipynbMain.browser.js', import.meta.url).toString(), {"mimeType":"text/javascript","size":179339});
9
- registerFileUrl('dist/browser/ipynbMain.browser.js.map', new URL('./resources/ipynbMain.browser.js.map', import.meta.url).toString(), {"mimeType":"application/json","size":587315});
10
- registerFileUrl('dist/browser/notebookSerializerWorker', new URL('./resources/notebookSerializerWorker.js', import.meta.url).toString(), {"mimeType":"text/javascript","size":7104});
11
- registerFileUrl('dist/browser/notebookSerializerWorker.js', new URL('./resources/notebookSerializerWorker.js', import.meta.url).toString(), {"mimeType":"text/javascript","size":7104});
12
- registerFileUrl('dist/browser/notebookSerializerWorker.js.map', new URL('./resources/notebookSerializerWorker.js.map', import.meta.url).toString(), {"mimeType":"application/json","size":34343});
7
+ registerFileUrl('dist/browser/ipynbMain.browser', new URL('./resources/ipynbMain.browser.js', import.meta.url).toString(), {"mimeType":"text/javascript","size":174599});
8
+ registerFileUrl('dist/browser/ipynbMain.browser.js', new URL('./resources/ipynbMain.browser.js', import.meta.url).toString(), {"mimeType":"text/javascript","size":174599});
9
+ registerFileUrl('dist/browser/ipynbMain.browser.js.map', new URL('./resources/ipynbMain.browser.js.map', import.meta.url).toString(), {"mimeType":"application/json","size":614201});
10
+ registerFileUrl('dist/browser/notebookSerializerWorker', new URL('./resources/notebookSerializerWorker.js', import.meta.url).toString(), {"mimeType":"text/javascript","size":5646});
11
+ registerFileUrl('dist/browser/notebookSerializerWorker.js', new URL('./resources/notebookSerializerWorker.js', import.meta.url).toString(), {"mimeType":"text/javascript","size":5646});
12
+ registerFileUrl('dist/browser/notebookSerializerWorker.js.map', new URL('./resources/notebookSerializerWorker.js.map', import.meta.url).toString(), {"mimeType":"application/json","size":33107});
13
13
  registerFileUrl('media/icon.png', new URL('./resources/icon.png', import.meta.url).toString(), {"mimeType":"image/png","size":29977});
14
14
  registerFileUrl('notebook-out/cellAttachmentRenderer', new URL('./resources/cellAttachmentRenderer.js', import.meta.url).toString(), {"mimeType":"text/javascript","size":616});
15
15
  registerFileUrl('notebook-out/cellAttachmentRenderer.js', new URL('./resources/cellAttachmentRenderer.js', import.meta.url).toString(), {"mimeType":"text/javascript","size":616});
16
- registerFileUrl('package.json', new URL('./resources/package.json', import.meta.url).toString(), {"mimeType":"application/json","size":2981});
16
+ registerFileUrl('package.json', new URL('./resources/package.json', import.meta.url).toString(), {"mimeType":"application/json","size":2982});
17
17
  registerFileUrl('package.nls.json', new URL('./resources/package.nls.json', import.meta.url).toString(), {"mimeType":"application/json","size":986});
18
18
 
19
19
  export { whenReady };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codingame/monaco-vscode-ipynb-default-extension",
3
- "version": "26.2.2",
3
+ "version": "27.0.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
- "@codingame/monaco-vscode-api": "26.2.2"
21
+ "@codingame/monaco-vscode-api": "27.0.0"
22
22
  }
23
23
  }