ng-bootstrap-form-validation
ng-bootstrap-form-validation copied to clipboard
Make FormControl directive work as well as FormControlName
Currently the validation only works if you write code like:
<input formControlName="foo" />
This PR allows you to do:
<input [formControl]="fooControl" />
I have not tested if this works as I'm not entirely sure how to build the package!