@codingame/monaco-vscode-layout-service-override 34.1.1 → 35.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 +1 -0
- package/index.js +3 -0
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -37,6 +37,7 @@ export declare class LayoutService extends Disposable implements ILayoutService,
|
|
|
37
37
|
hasMainWindowBorder(): boolean;
|
|
38
38
|
getMainWindowBorderRadius(): string | undefined;
|
|
39
39
|
isMainEditorLayoutCentered(): boolean;
|
|
40
|
+
isFloatingPanelsEnabled(): boolean;
|
|
40
41
|
centerMainEditorLayout(): void;
|
|
41
42
|
private readonly _onDidLayoutContainer;
|
|
42
43
|
readonly onDidLayoutContainer: Event<{
|
package/index.js
CHANGED
|
@@ -99,6 +99,9 @@ class LayoutService extends Disposable {
|
|
|
99
99
|
isMainEditorLayoutCentered() {
|
|
100
100
|
return false;
|
|
101
101
|
}
|
|
102
|
+
isFloatingPanelsEnabled() {
|
|
103
|
+
return false;
|
|
104
|
+
}
|
|
102
105
|
centerMainEditorLayout() { }
|
|
103
106
|
get activeContainer() {
|
|
104
107
|
return this.getContainerFromDocument(getActiveDocument());
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-layout-service-override",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "35.0.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "VSCode public API plugged on the monaco editor - layout 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": "35.0.0"
|
|
19
19
|
},
|
|
20
20
|
"main": "index.js",
|
|
21
21
|
"module": "index.js",
|