SCMActionButton overflow improvements

This commit is contained in:
Ladislau Szomoru
2022-01-07 22:34:12 +01:00
parent e4f4fab9f0
commit ab914793d5
8 changed files with 89 additions and 35 deletions

View File

@@ -1085,10 +1085,15 @@ export interface SCMProviderFeatures {
count?: number;
commitTemplate?: string;
acceptInputCommand?: modes.Command;
actionButton?: ICommandDto | null;
actionButton?: SCMActionButtonDto | null;
statusBarCommands?: ICommandDto[];
}
export interface SCMActionButtonDto {
command: ICommandDto;
description?: string;
}
export interface SCMGroupFeatures {
hideWhenEmpty?: boolean;
}