@uiapplib/ngx-ui-web-lib 0.0.14 → 0.0.15

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.
@@ -25799,7 +25799,8 @@ class AddEmployerComponent {
25799
25799
  wageAmountArray: this.formBuilder.array([]),
25800
25800
  testEmp: [esm.employerProvidedWages && esm.employerProvidedWages.wagesListQtrWise != null ? esm.employerProvidedWages.wagesListQtrWise : null],
25801
25801
  'osaBpEmployerFlag': [esm.osaBpEmployerFlag != null ? esm.osaBpEmployerFlag : "0"],
25802
- 'displaySeasonalEmp': [esm.displaySeasonalEmp != null ? esm.displaySeasonalEmp : true]
25802
+ 'displaySeasonalEmp': [esm.displaySeasonalEmp != null ? esm.displaySeasonalEmp : true],
25803
+ 'schoolFlagEmp': [esm.employerData != null && esm.employerData.schoolFlag != null ? esm.employerData.schoolFlag : "0"]
25803
25804
  });
25804
25805
  if (esm.address?.state?.value === null && esm.address?.state?.text === null) {
25805
25806
  esm.address.state = null;
@@ -26721,6 +26722,9 @@ class AddEmployerComponent {
26721
26722
  get displaySeasonalEmp() {
26722
26723
  return this.addEmployerForm.controls['displaySeasonalEmp'];
26723
26724
  }
26725
+ get schoolFlagEmp() {
26726
+ return this.addEmployerForm.controls['schoolFlagEmp'];
26727
+ }
26724
26728
  onToggleChangeEmployerType(obj) {
26725
26729
  if (this.employerType.value === 'FED') {
26726
26730
  this.address.disable();