25 lines
1.2 KiB
TypeScript
25 lines
1.2 KiB
TypeScript
import type { Rule, RuleObject, RuleRender } from '@rc-component/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, FormSemanticClassNames, FormSemanticName, FormSemanticStyles } 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;
|
|
};
|
|
declare const Form: CompoundedComponent;
|
|
export type { ErrorListProps, FormInstance, FormItemProps, FormListFieldData, FormListOperation, FormListProps, FormProps, FormSemanticClassNames, FormSemanticName, FormSemanticStyles, Rule, RuleObject, RuleRender, };
|
|
export default Form;
|