chore(Form): improve TSDoc (#3619)

This commit is contained in:
Romain Hamel
2025-03-19 12:17:52 +01:00
committed by GitHub
parent 57efc78a3b
commit 02184b016a
2 changed files with 26 additions and 1 deletions

View File

@@ -31,7 +31,12 @@ export interface FormFieldProps {
*/
size?: FormFieldVariants['size']
required?: boolean
/** If true, validation on input will be active immediately instead of waiting for a blur event. */
eagerValidation?: boolean
/**
* Delay in milliseconds before validating the form on input events.
* @defaultValue `300`
*/
validateOnInputDelay?: number
class?: any
ui?: Partial<typeof formField.slots>