@codingame/monaco-vscode-layout-service-override 18.4.0 → 19.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/index.d.ts +4 -0
- package/index.js +4 -0
- package/package.json +4 -4
package/index.d.ts
CHANGED
|
@@ -25,6 +25,10 @@ export declare class LayoutService extends Disposable implements ILayoutService,
|
|
|
25
25
|
private sideBarPosition;
|
|
26
26
|
private panelPosition;
|
|
27
27
|
constructor(mainContainer?: HTMLElement);
|
|
28
|
+
onDidChangeAuxiliaryBarMaximized: Event<any>;
|
|
29
|
+
toggleMaximizedAuxiliaryBar: typeof unsupported;
|
|
30
|
+
setAuxiliaryBarMaximized: typeof unsupported;
|
|
31
|
+
isAuxiliaryBarMaximized: () => boolean;
|
|
28
32
|
getSize(part: Parts): IViewSize;
|
|
29
33
|
setSize: typeof unsupported;
|
|
30
34
|
whenContainerStylesLoaded(): undefined;
|
package/index.js
CHANGED
|
@@ -30,6 +30,10 @@ class LayoutService extends Disposable {
|
|
|
30
30
|
constructor(mainContainer = getWorkbenchContainer()) {
|
|
31
31
|
super();
|
|
32
32
|
this.mainContainer = mainContainer;
|
|
33
|
+
this.onDidChangeAuxiliaryBarMaximized = Event.None;
|
|
34
|
+
this.toggleMaximizedAuxiliaryBar = unsupported;
|
|
35
|
+
this.setAuxiliaryBarMaximized = unsupported;
|
|
36
|
+
this.isAuxiliaryBarMaximized = () => false;
|
|
33
37
|
this.setSize = unsupported;
|
|
34
38
|
this.onDidChangeMainEditorCenteredLayout = Event.None;
|
|
35
39
|
this.whenActiveContainerStylesLoaded = Promise.resolve();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-layout-service-override",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "19.0.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "VSCode public API plugged on the monaco editor - layout service-override",
|
|
6
6
|
"keywords": [],
|
|
@@ -15,9 +15,9 @@
|
|
|
15
15
|
},
|
|
16
16
|
"type": "module",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@codingame/monaco-vscode-6bf85d7b-e6e3-54e9-9bc1-7e08d663f0f6-common": "
|
|
19
|
-
"@codingame/monaco-vscode-85886bdb-61c5-52f1-8eb7-d1d32f6f8cbd-common": "
|
|
20
|
-
"@codingame/monaco-vscode-api": "
|
|
18
|
+
"@codingame/monaco-vscode-6bf85d7b-e6e3-54e9-9bc1-7e08d663f0f6-common": "19.0.0",
|
|
19
|
+
"@codingame/monaco-vscode-85886bdb-61c5-52f1-8eb7-d1d32f6f8cbd-common": "19.0.0",
|
|
20
|
+
"@codingame/monaco-vscode-api": "19.0.0"
|
|
21
21
|
},
|
|
22
22
|
"main": "index.js",
|
|
23
23
|
"module": "index.js",
|