@codingame/monaco-vscode-a3eaa464-944c-5b8f-8886-213068ba4897-common 19.0.2 → 19.1.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codingame/monaco-vscode-a3eaa464-944c-5b8f-8886-213068ba4897-common",
3
- "version": "19.0.2",
3
+ "version": "19.1.0",
4
4
  "private": false,
5
5
  "description": "VSCode public API plugged on the monaco editor - common package (keybindings, preferences)",
6
6
  "keywords": [],
@@ -15,7 +15,7 @@
15
15
  },
16
16
  "type": "module",
17
17
  "dependencies": {
18
- "@codingame/monaco-vscode-api": "19.0.2"
18
+ "@codingame/monaco-vscode-api": "19.1.0"
19
19
  },
20
20
  "exports": {
21
21
  ".": {
@@ -9,7 +9,7 @@ import { Emitter } from '@codingame/monaco-vscode-api/vscode/vs/base/common/even
9
9
  import { KeybindingLabel } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/keybindingLabel/keybindingLabel';
10
10
  import { Widget } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/widget';
11
11
  import { KeyCode } from '@codingame/monaco-vscode-api/vscode/vs/base/common/keyCodes';
12
- import { addDisposableListener, EventType, append, $, clearNode, Dimension } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/dom';
12
+ import { addDisposableListener, EventType, createElement, append, $, clearNode, Dimension } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/dom';
13
13
  import { alert } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/aria/aria';
14
14
  import { StandardKeyboardEvent } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/keyboardEvent';
15
15
  import { createFastDomNode } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/fastDomNode';
@@ -128,7 +128,7 @@ let DefineKeybindingWidget = class DefineKeybindingWidget extends Widget {
128
128
  this.onDidChange = this._onDidChange.event;
129
129
  this._onShowExistingKeybindings = this._register(( new Emitter()));
130
130
  this.onShowExistingKeybidings = this._onShowExistingKeybindings.event;
131
- this._domNode = createFastDomNode(document.createElement('div'));
131
+ this._domNode = createFastDomNode(createElement('div'));
132
132
  this._domNode.setDisplay('none');
133
133
  this._domNode.setClassName('defineKeybindingWidget');
134
134
  this._domNode.setWidth(DefineKeybindingWidget_1.WIDTH);