ngx-custom-validators
ngx-custom-validators copied to clipboard
Angular custom directives for validation
**IMPORTANT:** _Please be specific with an example. An issue with_ **Steps to reproduce and a minimal demo** Inject a date validator to a date formcontrol and manually enter leap dates,...
Similar to #12 Let's say we define a "password" validation like this: ````typescript password: ["", [Validators.required, CustomValidators.notEqualTo(email)]], ```` The `notEqualTo` validator's metadata includes the invalid value, so we can show...
When this module is imported in a project that is used with Mat components, a problem happens with the material date component as it uses min and max validations ```html...