You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-`FormBuilderValidators.compose()` - runs each validator against the value provided.
55
55
-`FormBuilderValidators.conditional()` - conditionally runs a validator against the value provided.
@@ -60,7 +60,7 @@ Available built-in helper validators:
60
60
-`FormBuilderValidators.skipWhen()` - runs the validator and skips the validation when a certain condition is met.
61
61
-`FormBuilderValidators.defaultValue()` - runs the validator using the default value when the provided value is null.
62
62
63
-
Available built-in type validators include:
63
+
### Type validators
64
64
65
65
-`FormBuilderValidators.equal()` - requires the field's value to be equal to the provided object.
66
66
-`FormBuilderValidators.integer()` - requires the field's value to be an integer.
@@ -95,7 +95,7 @@ Available built-in type validators include:
95
95
-`FormBuilderValidators.unique()` - requires the field's to be unique in the provided list.
96
96
-`FormBuilderValidators.singleLine()` - requires the field's string to be a single line of text.
97
97
98
-
Available built-in use-case validators include:
98
+
### Use-case validators
99
99
100
100
-`FormBuilderValidators.creditCard()` - requires the field's value to be a valid credit card number.
101
101
-`FormBuilderValidators.creditCardExpirationDate()` - requires the field's value to be a valid credit card expiration date and can check if not expired yet.
@@ -119,7 +119,7 @@ Available built-in use-case validators include:
119
119
-`FormBuilderValidators.bic()` - requires the field's to be an valid BIC.
120
120
-`FormBuilderValidators.isbn()` - requires the field's to be an valid ISBN.
121
121
122
-
Available extension methods used for chaining validators:
122
+
## Extension methods used for chaining validators
123
123
124
124
-`FormBuilderValidator.and()` - Combines the current validator with another validator using logical AND.
125
125
-`FormBuilderValidator.or()` - Combines the current validator with another validator using logical OR.
0 commit comments