This repository was archived by the owner on Jan 5, 2022. It is now read-only.

Description
The validSubmit attribute of FormValidationDirective is emitted based on FormGroup's current status, as shown here -
if (this.formGroup.valid) {
this.validSubmit.emit(this.formGroup.value);
}
So if we're using an async validator, this condition will be false until async validation is resolved.
PR coming up...