@codingame/monaco-vscode-editor-service-override 2.1.2 → 2.1.4

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 (2) hide show
  1. package/package.json +2 -2
  2. package/tools/editor.js +3 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codingame/monaco-vscode-editor-service-override",
3
- "version": "2.1.2",
3
+ "version": "2.1.4",
4
4
  "keywords": [],
5
5
  "author": {
6
6
  "name": "CodinGame",
@@ -18,7 +18,7 @@
18
18
  "module": "index.js",
19
19
  "types": "index.d.ts",
20
20
  "dependencies": {
21
- "vscode": "npm:@codingame/monaco-vscode-api@2.1.2",
21
+ "vscode": "npm:@codingame/monaco-vscode-api@2.1.4",
22
22
  "vscode-marked": "npm:marked@=3.0.2"
23
23
  }
24
24
  }
package/tools/editor.js CHANGED
@@ -298,7 +298,9 @@ let StandaloneEditorGroup = StandaloneEditorGroup_1 = class StandaloneEditorGrou
298
298
  setActive(isActive) {
299
299
  this.active = isActive;
300
300
  }
301
- get element() { return unsupported(); }
301
+ get element() {
302
+ return this.editor.getContainerDomNode();
303
+ }
302
304
  get activeEditorPane() {
303
305
  return this.pane;
304
306
  }