UNPKG

@aliretail/react-materials-components

Version:
17 lines (16 loc) 574 B
import * as React from 'react'; import { FormProps, ItemProps as FormItemProps } from '@alifd/next/types/form'; export interface InputDialogProps { /** 弹框标题 */ title?: React.ReactNode; /** 弹框内容 */ content?: React.ReactNode; /** 透传表单的props */ formProps?: FormProps; /** 透传form item的props */ formItemProps?: FormItemProps; /** 点击确定回调,返回Promise 自带loading */ onOk?: (value: string) => Promise<any>; } declare const InputDialog: React.FC<InputDialogProps>; export default InputDialog;