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
| `IBANValidationRule` | Validates that a string is a valid IBAN (International Bank Account Number) | `IBANValidationRule(error: "Invalid IBAN")`
318
318
| `IPAddressValidationRule` | Validates that a string is a valid IPv4 or IPv6 address | `IPAddressValidationRule(version: .v4, error: ValidationError("Invalid IPv4"))`
319
319
| `PostalCodeValidationRule` | Validates postal/ZIP codes for different countries | `PostalCodeValidationRule(country: .uk, error: "Invalid post code")`
320
-
| `Base64ValidationRule` | | `Base64ValidationRule(error: "The input is not valid Base64.")`
320
+
| `Base64ValidationRule` | Validates that a string represents valid Base64-encoded data. | `Base64ValidationRule(error: "The input is not valid Base64.")`
321
321
|`UUIDValidationRule`| Validates UUID format |`UUIDValidationRule(error: "Please enter a valid UUID")`|
322
322
| `JSONValidationRule` | Validates that a string represents valid JSON | `JSONValidationRule(error: "Invalid JSON")`
0 commit comments