mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-15 02:48:30 -05:00
Merge from vscode 073a24de05773f2261f89172987002dc0ae2f1cd (#9711)
This commit is contained in:
@@ -237,6 +237,14 @@ export interface IQuickPick<T extends IQuickPickItem> extends IQuickInput {
|
||||
|
||||
autoFocusOnList: boolean;
|
||||
|
||||
/**
|
||||
* If enabled, will try to select the second entry of the picks
|
||||
* once they appear instead of the first one. This is useful
|
||||
* e.g. when `quickNavigate` is enabled to be able to select
|
||||
* a previous entry by just releasing the quick nav keys.
|
||||
*/
|
||||
autoFocusSecondEntry: boolean;
|
||||
|
||||
quickNavigate: IQuickNavigateConfiguration | undefined;
|
||||
|
||||
activeItems: ReadonlyArray<T>;
|
||||
@@ -256,6 +264,13 @@ export interface IQuickPick<T extends IQuickPickItem> extends IQuickInput {
|
||||
inputHasFocus(): boolean;
|
||||
|
||||
focusOnInput(): void;
|
||||
|
||||
/**
|
||||
* Hides the input box from the picker UI. This is typically used
|
||||
* in combination with quick-navigation where no search UI should
|
||||
* be presented.
|
||||
*/
|
||||
hideInput: boolean;
|
||||
}
|
||||
|
||||
export interface IInputBox extends IQuickInput {
|
||||
|
||||
Reference in New Issue
Block a user