UNPKG

@tabula/ui-multi-selector

Version:

A MultiSelector allows users to select one or more items from a list of choices, or suggest own item.

9 lines (8 loc) 252 B
import { UpdateHandler } from '../../../types'; import { Item } from '../../Dropdown.types'; type Options = { onUpdate: UpdateHandler; search: string; }; export declare function buildCustomValue({ onUpdate, search }: Options): Item; export {};