UNPKG

antd-mini

Version:

antd-mini 是支付宝小程序 UI 组件库,遵循 Ant Design 规范。

49 lines (48 loc) 1.15 kB
import { IBaseProps } from '../_util/base'; interface ISenderProps extends IBaseProps { /** * @description 输入框的值 */ value?: string; /** * @description 输入框占位符 * @default "可以问我任何问题~" */ placeholder?: string; /** * @description 是否禁用 * @default false */ disabled?: boolean; /** * @description 是否发送中 * @default false */ loading?: boolean; /** * @description 输入框内容变化时触发 */ onChange?: (value: string) => void; /** * @description 点击发送按钮时触发 */ onSubmit?: (value: string) => void; /** * @description 点击取消按钮时触发 */ onCancel?: () => void; /** * @description 点击输入法中的确认按钮时触发 */ onConfirm?: (value: string) => void; /** * @description 输入框聚焦时触发 */ onFocus?: () => void; /** * @description 输入框失焦时触发 */ onBlur?: () => void; } export declare const SenderProps: ISenderProps; export type { ISenderProps };