ng-ipa-library 1.4.11 → 1.4.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -883,6 +883,15 @@ class GenerateFormComponent {
883
883
  column.type === 'number'
884
884
  ? Validators.min(1)
885
885
  : Validators.nullValidator,
886
+ column.formControlName === 'email'
887
+ ? IPAFormService.email
888
+ : Validators.nullValidator,
889
+ column.formControlName === 'mobileNo'
890
+ ? IPAFormService.mobileNo
891
+ : Validators.nullValidator,
892
+ column.formControlName === 'userId'
893
+ ? IPAFormService.checkID
894
+ : Validators.nullValidator,
886
895
  ]));
887
896
  }
888
897
  });