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