adou-ui
Version:
feat:修复了TagInput无法清空的问题
25 lines (24 loc) • 689 B
TypeScript
import React from 'react';
import FormItem from "./FormItem";
export { FormItem };
export declare const FormContext: React.Context<{}>;
export interface FormContextProps {
handleChange?: any;
name?: string;
formData?: any;
handleValidate?: any;
checkValidate?: any;
registerFormItem?: any;
}
interface FormProps {
children?: any;
name?: string;
labelWidth?: number;
labelAlignX?: "left" | "right";
inline?: boolean;
errorInline?: boolean;
commonSuffixContent?: any;
onSuffixIconClick?: any;
}
declare const Form: React.ForwardRefExoticComponent<FormProps & React.RefAttributes<unknown>>;
export default Form;