feat(combo-box): add direction prop

This commit is contained in:
Eric Liu 2021-02-19 15:47:28 -08:00
commit 2fc2767acd
6 changed files with 39 additions and 4 deletions

View file

@ -32,6 +32,12 @@ export interface ComboBoxProps
*/
value?: string;
/**
* Specify the direction of the combobox dropdown menu
* @default "bottom"
*/
direction?: "bottom" | "top";
/**
* Set the size of the combobox
*/