rsuite
Version:
A suite of react components
24 lines (17 loc) • 647 B
TypeScript
import * as React from 'react';
import { FormControlPickerProps } from '../@types/common';
import { SelectProps } from '../SelectPicker/SelectPicker.d';
import { TagProps } from '../Tag/Tag.d';
export interface TagPickerProps extends FormControlPickerProps, SelectProps<any[]> {
/** Option to cache value when searching asynchronously */
cacheData?: any[];
/** Settings can create new options */
creatable?: boolean;
/**
* Tag related props.
* https://github.com/rsuite/rsuite/blob/master/src/Tag/Tag.d.ts
*/
tagProps?: TagProps;
}
declare const TagPicker: React.ComponentType<TagPickerProps>;
export default TagPicker;