fix(Form): match error-pattern on input validation (#2606)

This commit is contained in:
Romain Hamel
2024-11-11 22:50:22 +01:00
committed by GitHub
parent 6d3dbdbee5
commit 3584a3328b
5 changed files with 19 additions and 10 deletions

View File

@@ -82,6 +82,7 @@ export interface FormFieldInjectedOptions<T> {
error?: string | boolean
eagerValidation?: boolean
validateOnInputDelay?: number
errorPattern?: RegExp
}
export class FormValidationException extends Error {