Run "yarn build:docs"

This commit is contained in:
Eric Liu 2022-02-08 20:08:50 -08:00
commit c42aea86fa
3 changed files with 53 additions and 34 deletions

View file

@ -24,6 +24,13 @@ export interface MultiSelectProps
*/
itemToString?: (item: MultiSelectItem) => any;
/**
* Override the input name attribute of a multiselect item.
* Defaults to using the item id
* @default (item) => item.id
*/
itemToName?: (item: MultiSelectItem) => any;
/**
* Set the selected ids
* @default []