@codingame/monaco-vscode-accessibility-service-override 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-accessibility-service-override",
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 - accessibility service-override",
6
6
  "keywords": [],
@@ -15,8 +15,8 @@
15
15
  },
16
16
  "type": "module",
17
17
  "dependencies": {
18
- "@codingame/monaco-vscode-262ed59d-4f76-57cd-9e9f-1877f26ae049-common": "19.0.2",
19
- "@codingame/monaco-vscode-api": "19.0.2",
18
+ "@codingame/monaco-vscode-262ed59d-4f76-57cd-9e9f-1877f26ae049-common": "19.1.0",
19
+ "@codingame/monaco-vscode-api": "19.1.0",
20
20
  "marked": "14.0.0"
21
21
  },
22
22
  "main": "index.js",
@@ -1,6 +1,6 @@
1
1
 
2
2
  import { __decorate, __param } from '@codingame/monaco-vscode-api/external/tslib/tslib.es6';
3
- import { getActiveWindow, addDisposableListener, EventType, isActiveElement } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/dom';
3
+ import { createElement, getActiveWindow, addDisposableListener, EventType, isActiveElement } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/dom';
4
4
  import { StandardKeyboardEvent } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/keyboardEvent';
5
5
  import { ActionsOrientation } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/actionbar/actionbar';
6
6
  import { alert } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/aria/aria';
@@ -84,7 +84,7 @@ let AccessibleView = class AccessibleView extends Disposable {
84
84
  this._onLastLine = accessibleViewOnLastLine.bindTo(this._contextKeyService);
85
85
  this._hasUnassignedKeybindings = accessibleViewHasUnassignedKeybindings.bindTo(this._contextKeyService);
86
86
  this._hasAssignedKeybindings = accessibleViewHasAssignedKeybindings.bindTo(this._contextKeyService);
87
- this._container = document.createElement('div');
87
+ this._container = createElement('div');
88
88
  this._container.classList.add('accessible-view');
89
89
  if (this._configurationService.getValue(AccessibilityWorkbenchSettingId.HideAccessibleView)) {
90
90
  this._container.classList.add('hide');
@@ -92,12 +92,12 @@ let AccessibleView = class AccessibleView extends Disposable {
92
92
  const codeEditorWidgetOptions = {
93
93
  contributions: EditorExtensionsRegistry.getEditorContributions().filter(c => c.id !== CodeActionController.ID && c.id !== FloatingEditorClickMenu.ID)
94
94
  };
95
- const titleBar = document.createElement('div');
95
+ const titleBar = createElement('div');
96
96
  titleBar.classList.add('accessible-view-title-bar');
97
- this._title = document.createElement('div');
97
+ this._title = createElement('div');
98
98
  this._title.classList.add('accessible-view-title');
99
99
  titleBar.appendChild(this._title);
100
- const actionBar = document.createElement('div');
100
+ const actionBar = createElement('div');
101
101
  actionBar.classList.add('accessible-view-action-bar');
102
102
  titleBar.appendChild(actionBar);
103
103
  this._container.appendChild(titleBar);