From 447530101527a2ce9badbd51cea469e70782fa2a Mon Sep 17 00:00:00 2001 From: dfedoryshchev Date: Fri, 1 May 2026 23:35:57 +0100 Subject: [PATCH] docs: sync UseFormProps type with current source (add validate, formControl) --- src/content/ts.mdx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/content/ts.mdx b/src/content/ts.mdx index 337519c81..81c4848bc 100644 --- a/src/content/ts.mdx +++ b/src/content/ts.mdx @@ -285,6 +285,11 @@ export type UseFormProps< progressive: boolean criteriaMode: CriteriaMode delayError: number + formControl?: Omit< + UseFormReturn, + "formState" + > + validate: ValidateForm }> ```