/// import * as React from 'react'; import PropTypes from 'prop-types'; import FormItem from './FormItem'; export interface FormCreateOption { onFieldsChange?: (props: T, fields: Array) => void; onValuesChange?: (props: T, values: any) => void; mapPropsToFields?: (props: T) => void; withRef?: boolean; } export interface FormProps { layout?: 'horizontal' | 'inline' | 'vertical'; form?: WrappedFormUtils; onSubmit?: React.FormEventHandler; style?: React.CSSProperties; className?: string; prefixCls?: string; hideRequiredMark?: boolean; } export declare type ValidationRule = { /** validation error message */ message?: string; /** built-in validation type, available options: https://github.com/yiminghe/async-validator#type */ type?: string; /** indicates whether field is required */ required?: boolean; /** treat required fields that only contain whitespace as errors */ whitespace?: boolean; /** validate the exact length of a field */ len?: number; /** validate the min length of a field */ min?: number; /** validate the max length of a field */ max?: number; /** validate the value from a list of possible values */ enum?: string | string[]; /** validate from a regular expression */ pattern?: RegExp; /** transform a value before validation */ transform?: (value: any) => any; /** custom validate function (Note: callback must be called) */ validator?: (rule: any, value: any, callback: any, source?: any, options?: any) => any; }; export declare type ValidateCallback = (errors: any, values: any, modify?: boolean) => void; export declare type GetFieldDecoratorOptions = { /** 子节点的值的属性,如 Checkbox 的是 'checked' */ valuePropName?: string; /** 子节点的初始值,类型、可选值均由子节点决定 */ initialValue?: any; /** 收集子节点的值的时机 */ trigger?: string; /** 可以把 onChange 的参数转化为控件的值,例如 DatePicker 可设为:(date, dateString) => dateString */ getValueFromEvent?: (...args: any[]) => any; /** 校验子节点值的时机 */ validateTrigger?: string | string[]; /** 校验规则,参见 [async-validator](https://github.com/yiminghe/async-validator) */ rules?: ValidationRule[]; /** 是否和其他控件互斥,特别用于 Radio 单选控件 */ exclusive?: boolean; /** Normalize value to form component */ normalize?: (value: any, prevValue: any, allValues: any) => any; /** Whether stop validate on first rule of error for this field. */ validateFirst?: boolean; }; export declare type WrappedFormUtils = { /** 获取一组输入控件的值,如不传入参数,则获取全部组件的值 */ getFieldsValue(fieldNames?: Array): Object; /** 获取一个输入控件的值*/ getFieldValue(fieldName: string): any; /** 设置一组输入控件的值*/ setFieldsValue(obj: Object): void; /** 设置一组输入控件的值*/ setFields(obj: Object): void; /** 校验并获取一组输入域的值与 Error */ validateFields(fieldNames: Array, options: Object, callback: ValidateCallback): void; validateFields(fieldNames: Array, callback: ValidateCallback): void; validateFields(options: Object, callback: ValidateCallback): void; validateFields(callback: ValidateCallback): void; validateFields(): void; /** 与 `validateFields` 相似,但校验完后,如果校验不通过的菜单域不在可见范围内,则自动滚动进可见范围 */ validateFieldsAndScroll(fieldNames?: Array, options?: Object, callback?: ValidateCallback): void; validateFieldsAndScroll(fieldNames?: Array, callback?: ValidateCallback): void; validateFieldsAndScroll(options?: Object, callback?: ValidateCallback): void; validateFieldsAndScroll(callback?: ValidateCallback): void; validateFieldsAndScroll(): void; /** 获取某个输入控件的 Error */ getFieldError(name: string): Object[]; getFieldsError(names?: Array): Object; /** 判断一个输入控件是否在校验状态*/ isFieldValidating(name: string): boolean; isFieldTouched(name: string): boolean; isFieldsTouched(names?: Array): boolean; /** 重置一组输入控件的值与状态,如不传入参数,则重置所有组件 */ resetFields(names?: Array): void; isModifiedFields(names?: Array): boolean; isModifiedField(name: string): boolean; getFieldDecorator(id: string, options?: GetFieldDecoratorOptions): (node: React.ReactNode) => React.ReactNode; }; export interface FormComponentProps { form: WrappedFormUtils; } export declare type Diff = ({ [P in T]: P; } & { [P in U]: never; } & { [x: string]: never; })[T]; export declare type Omit = Pick>; export interface ComponentDecorator {

(component: React.ComponentClass

| React.SFC

): React.ComponentClass>; } export default class Form extends React.Component { static defaultProps: { prefixCls: string; layout: string; hideRequiredMark: boolean; onSubmit(e: React.FormEvent): void; }; static propTypes: { prefixCls: PropTypes.Requireable; layout: PropTypes.Requireable; children: PropTypes.Requireable; onSubmit: PropTypes.Requireable<(...args: any[]) => any>; hideRequiredMark: PropTypes.Requireable; }; static childContextTypes: { vertical: PropTypes.Requireable; }; static Item: typeof FormItem; static createFormField: Function; static create: (options?: FormCreateOption) => ComponentDecorator; constructor(props: FormProps); shouldComponentUpdate(...args: any[]): any; getChildContext(): { vertical: boolean; }; render(): JSX.Element; }