mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Merge from vscode c58aaab8a1cc22a7139b761166a0d4f37d41e998 (#7880)
* Merge from vscode c58aaab8a1cc22a7139b761166a0d4f37d41e998 * fix pipelines * fix strict-null-checks * add missing files
This commit is contained in:
@@ -31,11 +31,6 @@ export interface IWorkbenchLayoutService extends ILayoutService {
|
||||
|
||||
_serviceBrand: undefined;
|
||||
|
||||
/**
|
||||
* Emits when the visibility of the title bar changes.
|
||||
*/
|
||||
readonly onTitleBarVisibilityChange: Event<void>;
|
||||
|
||||
/**
|
||||
* Emits when the zen mode is enabled or disabled.
|
||||
*/
|
||||
@@ -56,6 +51,11 @@ export interface IWorkbenchLayoutService extends ILayoutService {
|
||||
*/
|
||||
readonly onPanelPositionChange: Event<string>;
|
||||
|
||||
/**
|
||||
* Emit when part visibility changes
|
||||
*/
|
||||
readonly onPartVisibilityChange: Event<void>;
|
||||
|
||||
/**
|
||||
* Asks the part service if all parts have been fully restored. For editor part
|
||||
* this means that the contents of editors have loaded.
|
||||
@@ -70,7 +70,7 @@ export interface IWorkbenchLayoutService extends ILayoutService {
|
||||
/**
|
||||
* Returns the parts HTML element, if there is one.
|
||||
*/
|
||||
getContainer(part: Parts): HTMLElement;
|
||||
getContainer(part: Parts): HTMLElement | undefined;
|
||||
|
||||
/**
|
||||
* Returns if the part is visible.
|
||||
@@ -80,7 +80,7 @@ export interface IWorkbenchLayoutService extends ILayoutService {
|
||||
/**
|
||||
* Returns if the part is visible.
|
||||
*/
|
||||
getDimension(part: Parts): Dimension;
|
||||
getDimension(part: Parts): Dimension | undefined;
|
||||
|
||||
/**
|
||||
* Set activity bar hidden or not
|
||||
|
||||
Reference in New Issue
Block a user