mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-04 04:58:55 +08:00
338ec7dad7
* pref: better code style for production * refactor `devWarning` * don't use `useEffect` only wrap `devWarning` * chore: add 'noop' to coverage * chore: add test cases for devWarning * chore: add test case * chore: update test cases for devWarning * chore: restore test script command * fix: remove 'throw new Error' * should not use `throw` for browser * chore: update test case for AutoComplete * perf: add prefix for `devWarning` * update RegExp for UMD * add prefix for ES and CJS * chore: better code style * perf: * upgrade antd-tools * remove `injectWarningCondition` * rename `devWarning` to `warning` * chore: better code style * chore: better code style * chore: restore hasValidName
54 lines
1.3 KiB
TypeScript
54 lines
1.3 KiB
TypeScript
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 warning from '../_util/warning';
|
|
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 = () => {
|
|
warning(
|
|
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;
|