I'm using Angular and Angular Material. When validating input length using the minlength validator, empty input slips through. Is there a built-in support to validate "empty or shorter than"?
I could use required in combination with minlength, however, Angular Material styles such input and that's not desirable.
Should I implement custom validator?
required?