import { BaseProps } from '.' /** * 输入框的属性 */ export interface InputProps extends BaseProps { /** * 带标签的 input,设置后置标签 */ addonAfter?: string /** * 带标签的 input,设置前置标签 */ addonBefore?: string /** * 是否有边框 */ bordered?: boolean /** * 输入框的id */ id?: string /** * 最大长度 */ maxlength?: number /** * 带有前缀图标的 input */ prefix?: string /** * 控件大小。注:标准表单内的输入框大小限制为 large。可选 large default small */ size?: 'large' | 'default' | 'small' /** * 带有后缀图标的 input */ suffix?: string /** * 声明 input 类型,同原生 input 标签的 type 属性,见:MDN(请直接使用 代替 type="textarea")。 * https://developer.mozilla.org/zh-CN/docs/Web/HTML/Element/input#属性 */ type?: string /** * 可以点击清除图标删除内容可以点击清除图标删除内容 */ allowClear?: boolean }