You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.4 KiB
53 lines
1.4 KiB
import { Rule, RuleObject, RuleRender } from 'rc-field-form/lib/interface';
|
|
import InternalForm, { useForm, FormInstance, FormProps, useWatch } from './Form';
|
|
import Item, { FormItemProps } from './FormItem';
|
|
import ErrorList, { ErrorListProps } from './ErrorList';
|
|
import List, { FormListProps } from './FormList';
|
|
import { FormProvider } from './context';
|
|
import devWarning from '../_util/devWarning';
|
|
import useFormInstance from './hooks/useFormInstance';
|
|
|
|
type InternalFormType = typeof InternalForm;
|
|
|
|
interface FormInterface extends InternalFormType {
|
|
useForm: typeof useForm;
|
|
useFormInstance: typeof useFormInstance;
|
|
useWatch: typeof useWatch;
|
|
Item: typeof Item;
|
|
List: typeof List;
|
|
ErrorList: typeof ErrorList;
|
|
Provider: typeof FormProvider;
|
|
|
|
/** @deprecated Only for warning usage. Do not use. */
|
|
create: () => void;
|
|
}
|
|
|
|
const Form = InternalForm as FormInterface;
|
|
|
|
Form.Item = Item;
|
|
Form.List = List;
|
|
Form.ErrorList = ErrorList;
|
|
Form.useForm = useForm;
|
|
Form.useFormInstance = useFormInstance;
|
|
Form.useWatch = useWatch;
|
|
Form.Provider = FormProvider;
|
|
Form.create = () => {
|
|
devWarning(
|
|
false,
|
|
'Form',
|
|
'antd v4 removed `Form.create`. Please remove or use `@ant-design/compatible` instead.',
|
|
);
|
|
};
|
|
|
|
export {
|
|
FormInstance,
|
|
FormProps,
|
|
FormItemProps,
|
|
ErrorListProps,
|
|
Rule,
|
|
RuleObject,
|
|
RuleRender,
|
|
FormListProps,
|
|
};
|
|
|
|
export default Form;
|
|
|