@codingame/monaco-vscode-layout-service-override 1.83.7 → 1.83.8
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/layout.d.ts +5 -1
- package/package.json +2 -2
package/layout.d.ts
CHANGED
|
@@ -13,7 +13,7 @@ declare class LayoutService implements ILayoutService, IWorkbenchLayoutService {
|
|
|
13
13
|
private editorGroupService;
|
|
14
14
|
private statusBarService;
|
|
15
15
|
private viewDescriptorService;
|
|
16
|
-
constructor(container
|
|
16
|
+
constructor(container?: HTMLElement);
|
|
17
17
|
onDidChangeFullscreen: Event<any>;
|
|
18
18
|
onDidChangeZenMode: Event<any>;
|
|
19
19
|
onDidChangeWindowMaximized: Event<any>;
|
|
@@ -66,6 +66,10 @@ declare class LayoutService implements ILayoutService, IWorkbenchLayoutService {
|
|
|
66
66
|
get hasContainer(): boolean;
|
|
67
67
|
focus(): void;
|
|
68
68
|
}
|
|
69
|
+
declare function getServiceOverride(): IEditorOverrideServices;
|
|
70
|
+
/**
|
|
71
|
+
* @deprecated Provide container via the services `initialize` function
|
|
72
|
+
*/
|
|
69
73
|
declare function getServiceOverride(container?: HTMLElement): IEditorOverrideServices;
|
|
70
74
|
|
|
71
75
|
export { LayoutService, getServiceOverride as default };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-layout-service-override",
|
|
3
|
-
"version": "1.83.
|
|
3
|
+
"version": "1.83.8",
|
|
4
4
|
"keywords": [],
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "CodinGame",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"module": "index.js",
|
|
19
19
|
"types": "index.d.ts",
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"vscode": "npm:@codingame/monaco-vscode-api@1.83.
|
|
21
|
+
"vscode": "npm:@codingame/monaco-vscode-api@1.83.8",
|
|
22
22
|
"monaco-editor": "0.44.0"
|
|
23
23
|
}
|
|
24
24
|
}
|