mirror of
https://github.com/ant-design/ant-design.git
synced 2025-01-23 01:45:05 +08:00
50bee02aa0
* feat: Retire deprecated api for form * feat: Retire deprecated api for form * feat: Retire deprecated api for form * feat: Retire deprecated api for form * feat: opt code * feat: opt code * feat: opt code * feat: opt code
49 lines
1.3 KiB
TypeScript
49 lines
1.3 KiB
TypeScript
import type { Rule, RuleObject, RuleRender } from 'rc-field-form/lib/interface';
|
|
import { FormProvider } from './context';
|
|
import ErrorList from './ErrorList';
|
|
import type { ErrorListProps } from './ErrorList';
|
|
import InternalForm, { useForm, useWatch } from './Form';
|
|
import type { FormInstance, FormProps } from './Form';
|
|
import Item from './FormItem';
|
|
import type { FormItemProps } from './FormItem';
|
|
import List from './FormList';
|
|
import type { FormListFieldData, FormListOperation, FormListProps } from './FormList';
|
|
import useFormInstance from './hooks/useFormInstance';
|
|
|
|
type InternalFormType = typeof InternalForm;
|
|
|
|
type CompoundedComponent = InternalFormType & {
|
|
useForm: typeof useForm;
|
|
useFormInstance: typeof useFormInstance;
|
|
useWatch: typeof useWatch;
|
|
Item: typeof Item;
|
|
List: typeof List;
|
|
ErrorList: typeof ErrorList;
|
|
Provider: typeof FormProvider;
|
|
};
|
|
|
|
const Form = InternalForm as CompoundedComponent;
|
|
|
|
Form.Item = Item;
|
|
Form.List = List;
|
|
Form.ErrorList = ErrorList;
|
|
Form.useForm = useForm;
|
|
Form.useFormInstance = useFormInstance;
|
|
Form.useWatch = useWatch;
|
|
Form.Provider = FormProvider;
|
|
|
|
export type {
|
|
ErrorListProps,
|
|
FormInstance,
|
|
FormItemProps,
|
|
FormListFieldData,
|
|
FormListOperation,
|
|
FormListProps,
|
|
FormProps,
|
|
Rule,
|
|
RuleObject,
|
|
RuleRender,
|
|
};
|
|
|
|
export default Form;
|