@codingame/monaco-vscode-host-service-override 24.2.0 → 25.0.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": "24.2.0",
3
+ "version": "25.0.0",
4
4
  "private": false,
5
5
  "description": "VSCode public API plugged on the monaco editor - host service-override",
6
6
  "keywords": [],
@@ -15,7 +15,7 @@
15
15
  },
16
16
  "type": "module",
17
17
  "dependencies": {
18
- "@codingame/monaco-vscode-api": "24.2.0"
18
+ "@codingame/monaco-vscode-api": "25.0.0"
19
19
  },
20
20
  "main": "index.js",
21
21
  "module": "index.js",
@@ -350,24 +350,24 @@ let BrowserHostService = class BrowserHostService extends Disposable {
350
350
  type: Severity.Warning,
351
351
  message: workspace ?
352
352
  ( localize(
353
- 14056,
353
+ 14111,
354
354
  "The browser blocked opening a new tab or window for '{0}'. Press 'Retry' to try again.",
355
355
  this.getRecentLabel(workspace)
356
356
  )) :
357
357
  ( localize(
358
- 14057,
358
+ 14112,
359
359
  "The browser blocked opening a new tab or window. Press 'Retry' to try again."
360
360
  )),
361
361
  custom: {
362
362
  markdownDetails: [{ markdown: ( new MarkdownString(( localize(
363
- 14058,
363
+ 14113,
364
364
  "Please allow pop-ups for this website in your [browser settings]({0}).",
365
365
  'https://aka.ms/allow-vscode-popup'
366
366
  )), true)) }]
367
367
  },
368
368
  buttons: [
369
369
  {
370
- label: ( localize(14059, "&&Retry")),
370
+ label: ( localize(14114, "&&Retry")),
371
371
  run: () => this.workspaceProvider.open(workspace, options)
372
372
  }
373
373
  ],