@codingame/monaco-vscode-host-service-override 36.2.7 → 37.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": "
|
|
3
|
+
"version": "37.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": "
|
|
18
|
+
"@codingame/monaco-vscode-api": "37.0.0"
|
|
19
19
|
},
|
|
20
20
|
"main": "index.js",
|
|
21
21
|
"module": "index.js",
|
|
@@ -453,24 +453,24 @@ let BrowserHostService = class BrowserHostService extends Disposable {
|
|
|
453
453
|
await this.dialogService.prompt({
|
|
454
454
|
type: Severity.Warning,
|
|
455
455
|
message: workspace ? ( localize(
|
|
456
|
-
|
|
456
|
+
19530,
|
|
457
457
|
"The browser blocked opening a new tab or window for '{0}'. Press 'Retry' to try again.",
|
|
458
458
|
this.getRecentLabel(workspace)
|
|
459
459
|
)) : ( localize(
|
|
460
|
-
|
|
460
|
+
19531,
|
|
461
461
|
"The browser blocked opening a new tab or window. Press 'Retry' to try again."
|
|
462
462
|
)),
|
|
463
463
|
custom: {
|
|
464
464
|
markdownDetails: [{
|
|
465
465
|
markdown: ( new MarkdownString(( localize(
|
|
466
|
-
|
|
466
|
+
19532,
|
|
467
467
|
"Please allow pop-ups for this website in your [browser settings]({0}).",
|
|
468
468
|
"https://aka.ms/allow-vscode-popup"
|
|
469
469
|
)), true))
|
|
470
470
|
}]
|
|
471
471
|
},
|
|
472
472
|
buttons: [{
|
|
473
|
-
label: ( localize(
|
|
473
|
+
label: ( localize(19533, "&&Retry")),
|
|
474
474
|
run: () => this.workspaceProvider.open(workspace, options)
|
|
475
475
|
}],
|
|
476
476
|
cancelButton: true
|