UNPKG

adou-ui

Version:

feat:修复了TagInput无法清空的问题

30 lines (29 loc) 833 B
import React from "react"; import "./index.scss"; interface TextareaProps { rows?: number; suffixContentType?: string; suffixContent?: any; name?: string; inline?: boolean; isFormItem?: boolean; errMsg?: string; labelWidth?: any; commonSuffixIcon?: string; readOnly?: boolean; externalClassName?: string; width?: any; inputGroup?: boolean; labelPosition?: "left-top" | "center" | "top" | "input-group"; labelColor?: string; required?: boolean; ref?: any; defaultValue?: string; label?: any; placeholder?: string; disabled?: boolean; onChangeOK?: (value: any, ...args: any) => void; onFormDataChange?: (key: string, value: any) => void; } declare const Textarea: React.FC<TextareaProps>; export default Textarea;