This repository was archived by the owner on Apr 9, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
docs/api/use-form-handler Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ Coming soon...
39
39
| disabled | ` boolean ` | Disabled state binding for the field |
40
40
| isDirty | ` boolean ` | Dirty state binding for the field. Only returned if ` withDetails ` is true |
41
41
| isTouched | ` boolean ` | Touched state binding for the field. Only returned if ` withDetails ` is true |
42
+ | isValidating | ` boolean ` | Validating state binding for the field. Only returned if ` withDetails ` is true |
42
43
| onChange | ` (el: any) => Promise<void> ` | Value update handler for native inputs |
43
44
| required | ` boolean \| string ` | Native required validation. Only returned if ` useNativeValidations ` is set to true and ` required ` is set. |
44
45
| min | ` number \| Object ` | Native min validation. Only returned if ` useNativeValidations ` is set to true and ` min ` is set. |
@@ -243,7 +244,6 @@ Custom validations are kept very simple, can be synchronous or asynchronous. We
243
244
## Type Declarations
244
245
245
246
``` ts
246
-
247
247
interface ValidationWithMessage {
248
248
value: number | string | RegExp
249
249
message: string
@@ -281,6 +281,7 @@ export type Register = (
281
281
onChange? : (() => Promise <void >) | undefined
282
282
isDirty? : boolean | undefined
283
283
isTouched? : boolean | undefined
284
+ isValidating? : boolean | undefined
284
285
disabled? : boolean | undefined
285
286
name: keyof T
286
287
modelValue: T [keyof T ]
You can’t perform that action at this time.
0 commit comments