From 40f746e3e20b19f6ee58e550c717ea2bc7c2ace1 Mon Sep 17 00:00:00 2001 From: tangjinzhou <415800467@qq.com> Date: Wed, 18 Aug 2021 20:57:51 +0800 Subject: [PATCH] style: add warning form validateField #4536 close #4536 --- components/form/useForm.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/form/useForm.ts b/components/form/useForm.ts index a8c82f65c..e168b69de 100644 --- a/components/form/useForm.ts +++ b/components/form/useForm.ts @@ -107,6 +107,8 @@ function useForm( validateInfos: validateInfos; resetFields: (newValues?: Props) => void; validate: (names?: namesType, option?: validateOptions) => Promise; + + /** This is an internal usage. Do not use in your prod */ validateField: ( name: string, value: any,