💄 SourceControlInputBox.visible API

This commit is contained in:
Joao Moreno
2018-10-23 16:49:23 -07:00
parent 4925df27eb
commit f1f5385a68
9 changed files with 125 additions and 71 deletions

View File

@@ -535,7 +535,6 @@ export interface SCMProviderFeatures {
commitTemplate?: string;
acceptInputCommand?: modes.Command;
statusBarCommands?: modes.Command[];
hideInputBox?: boolean;
}
export interface SCMGroupFeatures {
@@ -580,6 +579,7 @@ export interface MainThreadSCMShape extends IDisposable {
$setInputBoxValue(sourceControlHandle: number, value: string): void;
$setInputBoxPlaceholder(sourceControlHandle: number, placeholder: string): void;
$setInputBoxVisibility(sourceControlHandle: number, visible: boolean): void;
$setValidationProviderIsEnabled(sourceControlHandle: number, enabled: boolean): void;
}