Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@codingame/monaco-vscode-layout-service-override

Package Overview
Dependencies
Maintainers
0
Versions
132
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@codingame/monaco-vscode-layout-service-override - npm Package Compare versions

Comparing version 9.0.3 to 10.0.0

44

layout.js

@@ -87,5 +87,6 @@ import { StandaloneServices } from 'vscode/vscode/vs/editor/standalone/browser/standaloneServices';

}
centerMainEditorLayout() {
centerMainEditorLayout() { }
get activeContainer() {
return this.getContainerFromDocument(getActiveDocument());
}
get activeContainer() { return this.getContainerFromDocument(getActiveDocument()); }
get containers() {

@@ -131,7 +132,11 @@ const containers = [];

this.sideBarPosition = positionFromString(this.configurationService.getValue('workbench.sideBar.location') ?? 'left');
this.panelPosition = positionFromString(this.configurationService.getValue('workbench.panel.defaultLocation') ?? 'bottom');
this.panelPosition = positionFromString(this.configurationService.getValue('workbench.panel.defaultLocation') ??
'bottom');
this._register(this.hostService.onDidChangeActiveWindow(() => this.onActiveWindowChanged()));
this._register(this.auxiliaryWindowService.onDidOpenAuxiliaryWindow(({ window, disposables }) => {
this._onDidAddContainer.fire({ container: window.container, disposables: new DisposableStore() });
disposables.add(window.onDidLayout(dimension => this.handleContainerDidLayout(window.container, dimension)));
this._onDidAddContainer.fire({
container: window.container,
disposables: new DisposableStore()
});
disposables.add(window.onDidLayout((dimension) => this.handleContainerDidLayout(window.container, dimension)));
disposables.add(toDisposable(() => this._onDidRemoveContainer.fire(window.container)));

@@ -164,3 +169,3 @@ }));

}
return this.configurationService.getValue("workbench.activityBar.location" ) !== "default" ;
return (this.configurationService.getValue("workbench.activityBar.location" ) !== "default") ;
}

@@ -197,4 +202,3 @@ focusPart(part) {

}
toggleMaximizedPanel() {
}
toggleMaximizedPanel() { }
toggleMenuBar() {

@@ -207,3 +211,4 @@ let currentVisibilityValue = getMenuBarVisibility(this.configurationService);

if (currentVisibilityValue === 'visible' || currentVisibilityValue === 'classic') {
newVisibilityValue = getTitleBarStyle(this.configurationService) === 'native' ? 'toggle' : 'compact';
newVisibilityValue =
getTitleBarStyle(this.configurationService) === 'native' ? 'toggle' : 'compact';
}

@@ -224,18 +229,13 @@ else {

}
setPanelAlignment() {
}
toggleZenMode() {
}
setPanelAlignment() { }
toggleZenMode() { }
isEditorLayoutCentered() {
return false;
}
centerEditorLayout() {
}
resizePart() {
}
centerEditorLayout() { }
resizePart() { }
isWindowMaximized() {
return false;
}
updateWindowMaximizedState() {
}
updateWindowMaximizedState() { }
getVisibleNeighborPart() {

@@ -314,3 +314,3 @@ return undefined;

.getViewContainersByLocation(location)
.find(viewContainer => this.hasViews(viewContainer.id))?.id;
.find((viewContainer) => this.hasViews(viewContainer.id))?.id;
}

@@ -348,3 +348,5 @@ if (panelToOpen != null) {

}
get mainContainerDimension() { return this._mainContainerDimension; }
get mainContainerDimension() {
return this._mainContainerDimension;
}
get activeContainerDimension() {

@@ -351,0 +353,0 @@ const activeContainer = this.activeContainer;

{
"name": "@codingame/monaco-vscode-layout-service-override",
"version": "9.0.3",
"version": "10.0.0",
"keywords": [],

@@ -29,4 +29,4 @@ "author": {

"dependencies": {
"vscode": "npm:@codingame/monaco-vscode-api@9.0.3"
"vscode": "npm:@codingame/monaco-vscode-api@10.0.0"
}
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc