mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 19:19:57 +08:00
38474628fd
* fix: prepend use-client directive for with Next.js App Router * Update components/affix/index.tsx Co-authored-by: MadCcc <1075746765@qq.com> Signed-off-by: lijianan <574980606@qq.com> * Update components/badge/index.tsx Co-authored-by: MadCcc <1075746765@qq.com> Signed-off-by: lijianan <574980606@qq.com> * Update components/divider/index.tsx Co-authored-by: MadCcc <1075746765@qq.com> Signed-off-by: lijianan <574980606@qq.com> * Update components/cascader/index.tsx Signed-off-by: lijianan <574980606@qq.com> * Update components/list/index.tsx Signed-off-by: lijianan <574980606@qq.com> * Update components/mentions/index.tsx Signed-off-by: lijianan <574980606@qq.com> * Update components/mentions/index.tsx Signed-off-by: lijianan <574980606@qq.com> * Update components/mentions/index.tsx Signed-off-by: lijianan <574980606@qq.com> * Update components/mentions/index.tsx Signed-off-by: lijianan <574980606@qq.com> * Update components/qrcode/index.tsx Signed-off-by: lijianan <574980606@qq.com> * Update components/spin/index.tsx Signed-off-by: lijianan <574980606@qq.com> * Update components/select/index.tsx Signed-off-by: lijianan <574980606@qq.com> * Update components/spin/index.tsx Signed-off-by: lijianan <574980606@qq.com> * Update components/spin/index.tsx Signed-off-by: lijianan <574980606@qq.com> * Update components/steps/index.tsx Signed-off-by: lijianan <574980606@qq.com> * Update components/time-picker/index.tsx Signed-off-by: lijianan <574980606@qq.com> * Update components/transfer/index.tsx Signed-off-by: lijianan <574980606@qq.com> * Update components/tree-select/index.tsx Signed-off-by: lijianan <574980606@qq.com> --------- Signed-off-by: lijianan <574980606@qq.com> Co-authored-by: MadCcc <1075746765@qq.com>
62 lines
1.5 KiB
TypeScript
62 lines
1.5 KiB
TypeScript
'use client';
|
|
|
|
import type { Rule, RuleObject, RuleRender } from 'rc-field-form/lib/interface';
|
|
import warning from '../_util/warning';
|
|
import ErrorList, { type ErrorListProps } from './ErrorList';
|
|
import InternalForm, { useForm, useWatch, type FormInstance, type FormProps } from './Form';
|
|
import Item, { type FormItemProps } from './FormItem';
|
|
import List, {
|
|
type FormListFieldData,
|
|
type FormListOperation,
|
|
type FormListProps,
|
|
} from './FormList';
|
|
import { FormProvider } from './context';
|
|
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;
|
|
|
|
/** @deprecated Only for warning usage. Do not use. */
|
|
create: () => void;
|
|
};
|
|
|
|
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;
|
|
Form.create = () => {
|
|
warning(
|
|
false,
|
|
'Form',
|
|
'antd v4 removed `Form.create`. Please remove or use `@ant-design/compatible` instead.',
|
|
);
|
|
};
|
|
|
|
export type {
|
|
ErrorListProps,
|
|
FormInstance,
|
|
FormItemProps,
|
|
FormListFieldData,
|
|
FormListOperation,
|
|
FormListProps,
|
|
FormProps,
|
|
Rule,
|
|
RuleObject,
|
|
RuleRender,
|
|
};
|
|
|
|
export default Form;
|