@codingame/monaco-vscode-host-service-override 23.2.1 → 23.3.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-host-service-override",
3
- "version": "23.2.1",
3
+ "version": "23.3.0",
4
4
  "private": false,
5
5
  "description": "VSCode public API plugged on the monaco editor - host service-override",
6
6
  "keywords": [],
@@ -15,10 +15,10 @@
15
15
  },
16
16
  "type": "module",
17
17
  "dependencies": {
18
- "@codingame/monaco-vscode-158b9837-fc78-5d9c-86f5-9134e4358643-common": "23.2.1",
19
- "@codingame/monaco-vscode-4bf376c2-03c7-58cb-8303-c67aeefa3d3d-common": "23.2.1",
20
- "@codingame/monaco-vscode-60014c9d-b815-501d-83a9-4b08725c2ec2-common": "23.2.1",
21
- "@codingame/monaco-vscode-api": "23.2.1"
18
+ "@codingame/monaco-vscode-158b9837-fc78-5d9c-86f5-9134e4358643-common": "23.3.0",
19
+ "@codingame/monaco-vscode-4bf376c2-03c7-58cb-8303-c67aeefa3d3d-common": "23.3.0",
20
+ "@codingame/monaco-vscode-60014c9d-b815-501d-83a9-4b08725c2ec2-common": "23.3.0",
21
+ "@codingame/monaco-vscode-api": "23.3.0"
22
22
  },
23
23
  "main": "index.js",
24
24
  "module": "index.js",
@@ -447,7 +447,7 @@ let BrowserHostService = class BrowserHostService extends Disposable {
447
447
  store.add(toDisposable(() => video.remove()));
448
448
  let stream;
449
449
  try {
450
- stream = await navigator.mediaDevices.getDisplayMedia({
450
+ stream = await mainWindow.navigator.mediaDevices.getDisplayMedia({
451
451
  audio: false,
452
452
  video: true
453
453
  });