@codingame/monaco-vscode-host-service-override 15.0.3 → 16.0.1

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": "15.0.3",
3
+ "version": "16.0.1",
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-12c5f9eb-72d3-57ca-babd-5bef7aa9de3b-common": "15.0.3",
19
- "@codingame/monaco-vscode-411e0589-fa79-504b-b32c-80a88847b23a-common": "15.0.3",
20
- "@codingame/monaco-vscode-7559b0be-bfa5-5fe6-b731-1973fe9fffa1-common": "15.0.3",
21
- "@codingame/monaco-vscode-api": "15.0.3"
18
+ "@codingame/monaco-vscode-12c5f9eb-72d3-57ca-babd-5bef7aa9de3b-common": "16.0.1",
19
+ "@codingame/monaco-vscode-411e0589-fa79-504b-b32c-80a88847b23a-common": "16.0.1",
20
+ "@codingame/monaco-vscode-7559b0be-bfa5-5fe6-b731-1973fe9fffa1-common": "16.0.1",
21
+ "@codingame/monaco-vscode-api": "16.0.1"
22
22
  },
23
23
  "main": "index.js",
24
24
  "module": "index.js",
@@ -27,6 +27,9 @@
27
27
  ".": {
28
28
  "default": "./index.js"
29
29
  },
30
+ "./vscode/*.css": {
31
+ "default": "./vscode/src/*.css"
32
+ },
30
33
  "./vscode/*": {
31
34
  "types": "./vscode/src/*.d.ts",
32
35
  "default": "./vscode/src/*.js"
@@ -340,10 +340,10 @@ let BrowserHostService = class BrowserHostService extends Disposable {
340
340
  const { confirmed } = await this.dialogService.confirm({
341
341
  type: Severity.Warning,
342
342
  message: ( localize(
343
- 11946,
343
+ 12279,
344
344
  "The browser interrupted the opening of a new tab or window. Press 'Open' to open it anyway."
345
345
  )),
346
- primaryButton: ( localize(11947, "&&Open"))
346
+ primaryButton: ( localize(12280, "&&Open"))
347
347
  });
348
348
  if (confirmed) {
349
349
  await this.workspaceProvider.open(workspace, options);