feat(multi-select): export inputRef prop

This commit is contained in:
Eric Y Liu 2021-04-01 16:23:39 -07:00
commit 93613bd9f5
4 changed files with 23 additions and 3 deletions

View file

@ -174,6 +174,12 @@ export interface MultiSelectProps
* Specify a name attribute for the select
*/
name?: string;
/**
* Obtain a reference to the input HTML element
* @default null
*/
inputRef?: null | HTMLInputElement;
}
export default class MultiSelect extends SvelteComponentTyped<