@codingame/monaco-vscode-host-service-override 3.2.3 → 4.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": "4.0.0",
|
|
4
4
|
"keywords": [],
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "CodinGame",
|
|
@@ -18,6 +18,6 @@
|
|
|
18
18
|
"module": "index.js",
|
|
19
19
|
"types": "index.d.ts",
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"vscode": "npm:@codingame/monaco-vscode-api@
|
|
21
|
+
"vscode": "npm:@codingame/monaco-vscode-api@4.0.0"
|
|
22
22
|
}
|
|
23
23
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { __decorate, __param } from '../../../../../../../external/tslib/tslib.es6.js';
|
|
2
2
|
import { Emitter, Event } from 'vscode/vscode/vs/base/common/event';
|
|
3
|
+
import { IInstantiationService } from 'vscode/vscode/vs/platform/instantiation/common/instantiation';
|
|
3
4
|
import { ILayoutService } from 'vscode/vscode/vs/platform/layout/browser/layoutService';
|
|
4
5
|
import { IEditorService } from 'vscode/vscode/vs/workbench/services/editor/common/editorService';
|
|
5
6
|
import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration';
|
|
@@ -14,12 +15,11 @@ import { IBrowserWorkbenchEnvironmentService } from 'vscode/vscode/vs/workbench/
|
|
|
14
15
|
import { memoize } from 'vscode/vscode/vs/base/common/decorators';
|
|
15
16
|
import { parseLineAndColumnAware } from 'vscode/vscode/vs/base/common/extpath';
|
|
16
17
|
import { IWorkspaceEditingService } from 'vscode/vscode/vs/workbench/services/workspaces/common/workspaceEditing';
|
|
17
|
-
import { IInstantiationService } from 'vscode/vscode/vs/platform/instantiation/common/instantiation';
|
|
18
18
|
import { ILifecycleService } from 'vscode/vscode/vs/workbench/services/lifecycle/common/lifecycle';
|
|
19
19
|
import { ILogService } from 'vscode/vscode/vs/platform/log/common/log';
|
|
20
20
|
import { getWorkspaceIdentifier } from 'vscode/vscode/vs/workbench/services/workspaces/browser/workspaces';
|
|
21
21
|
import { localizeWithPath } from 'vscode/vscode/vs/nls';
|
|
22
|
-
import Severity from 'vscode/vscode/vs/base/common/severity';
|
|
22
|
+
import Severity$1 from 'vscode/vscode/vs/base/common/severity';
|
|
23
23
|
import '../../../../../../../override/vs/platform/dialogs/common/dialogs.js';
|
|
24
24
|
import { DomEmitter } from 'vscode/vscode/vs/base/browser/event';
|
|
25
25
|
import { isUndefined } from 'vscode/vscode/vs/base/common/types';
|
|
@@ -322,7 +322,7 @@ let BrowserHostService = class BrowserHostService extends Disposable {
|
|
|
322
322
|
const opened = await this.workspaceProvider.open(workspace, options);
|
|
323
323
|
if (!opened) {
|
|
324
324
|
const { confirmed } = await this.dialogService.confirm({
|
|
325
|
-
type: Severity.Warning,
|
|
325
|
+
type: Severity$1.Warning,
|
|
326
326
|
message: ( localizeWithPath(
|
|
327
327
|
'vs/workbench/services/host/browser/browserHostService',
|
|
328
328
|
'unableToOpenExternal',
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Emitter } from 'vscode/vscode/vs/base/common/event';
|
|
2
2
|
import { addMatchMediaChangeListener } from 'vscode/vscode/vs/base/browser/browser';
|
|
3
3
|
import { Disposable } from 'vscode/vscode/vs/base/common/lifecycle';
|
|
4
|
+
import 'vscode/vscode/vs/platform/instantiation/common/instantiation';
|
|
4
5
|
import { mainWindow } from 'vscode/vscode/vs/base/browser/window';
|
|
5
6
|
|
|
6
7
|
class BrowserHostColorSchemeService extends Disposable {
|