@reusa/ngx-reusa-app-lib 0.0.1301 → 0.0.1303

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.
Files changed (98) hide show
  1. package/esm2022/lib/components/add-participant/add-participant.component.mjs +10 -9
  2. package/esm2022/lib/components/address/address.component.mjs +34 -15
  3. package/esm2022/lib/components/address-suggestion/address-suggestion.component.mjs +11 -5
  4. package/esm2022/lib/components/weekly-acknowledgement-ms/acknowledgement-ms.component.mjs +147 -0
  5. package/esm2022/lib/components/weekly-acknowledgement-v2/acknowledgement.component-v2.mjs +167 -0
  6. package/esm2022/lib/components/weekly-certification/weekly-certification.component.mjs +804 -0
  7. package/esm2022/lib/components/weekly-confirmation/confirmation.component.mjs +129 -0
  8. package/esm2022/lib/components/weekly-interim-confirmation/interim-confirmation.component.mjs +136 -0
  9. package/esm2022/lib/components/weekly-summary-v2/summary.component-v2.mjs +72 -0
  10. package/esm2022/lib/components/weekly-work-search-counter/work-search-counter.component.mjs +92 -0
  11. package/esm2022/lib/components/weekly-work-search-employer-me/work-search-employer.component-me.mjs +1190 -0
  12. package/esm2022/lib/components/weekly-work-search-employer-ms/work-search-employer-ms.component.mjs +683 -0
  13. package/esm2022/lib/components/weekly-work-search-employer-v2/work-search-employer.component-v2.mjs +524 -0
  14. package/esm2022/lib/components/weekly-work-search-journal/weekly-work-search-journal.component.mjs +394 -0
  15. package/esm2022/lib/components/weekly-work-search-question-v2/work-search-question.component-v2.mjs +640 -0
  16. package/esm2022/lib/models/HelpConstants.mjs +5 -0
  17. package/esm2022/lib/models/combo-model.mjs +343 -0
  18. package/esm2022/lib/models/weekly-cert/WorkSearchWaiverModel.mjs +3 -0
  19. package/esm2022/lib/models/weekly-cert/address-detail-model.mjs +2 -0
  20. package/esm2022/lib/models/weekly-cert/admin-leave-details-model.mjs +7 -0
  21. package/esm2022/lib/models/weekly-cert/employer-info-v2-model.mjs +7 -0
  22. package/esm2022/lib/models/weekly-cert/weekly-cert-eligibility-v2-model.mjs +6 -0
  23. package/esm2022/lib/models/weekly-cert/weekly-certification-v2-model.mjs +34 -0
  24. package/esm2022/lib/models/weekly-cert/work-search-record-v2-model.mjs +15 -0
  25. package/esm2022/lib/models/weekly-cert/work-search-v2-model.mjs +11 -0
  26. package/esm2022/lib/ngx-reusa-app-lib.module.mjs +30 -8
  27. package/esm2022/lib/pipes/format-worksearch/format-worksearch.pipe.mjs +101 -0
  28. package/esm2022/lib/services/weekly-cert/review.service.mjs +101 -0
  29. package/esm2022/lib/services/weekly-cert/weekly-cert-v2.service.mjs +214 -0
  30. package/esm2022/lib/services/weekly-cert/work-search.service.mjs +58 -0
  31. package/esm2022/lib/validations/AppValidators.mjs +36 -1
  32. package/esm2022/public-api.mjs +15 -1
  33. package/fesm2022/reusa-ngx-reusa-app-lib.mjs +6651 -921
  34. package/fesm2022/reusa-ngx-reusa-app-lib.mjs.map +1 -1
  35. package/lib/components/add-participant/add-participant.component.d.ts.map +1 -1
  36. package/lib/components/address/address.component.d.ts +4 -1
  37. package/lib/components/address/address.component.d.ts.map +1 -1
  38. package/lib/components/address-suggestion/address-suggestion.component.d.ts +2 -1
  39. package/lib/components/address-suggestion/address-suggestion.component.d.ts.map +1 -1
  40. package/lib/components/weekly-acknowledgement-ms/acknowledgement-ms.component.d.ts +28 -0
  41. package/lib/components/weekly-acknowledgement-ms/acknowledgement-ms.component.d.ts.map +1 -0
  42. package/lib/components/weekly-acknowledgement-v2/acknowledgement.component-v2.d.ts +28 -0
  43. package/lib/components/weekly-acknowledgement-v2/acknowledgement.component-v2.d.ts.map +1 -0
  44. package/lib/components/weekly-certification/weekly-certification.component.d.ts +99 -0
  45. package/lib/components/weekly-certification/weekly-certification.component.d.ts.map +1 -0
  46. package/lib/components/weekly-confirmation/confirmation.component.d.ts +21 -0
  47. package/lib/components/weekly-confirmation/confirmation.component.d.ts.map +1 -0
  48. package/lib/components/weekly-interim-confirmation/interim-confirmation.component.d.ts +34 -0
  49. package/lib/components/weekly-interim-confirmation/interim-confirmation.component.d.ts.map +1 -0
  50. package/lib/components/weekly-summary-v2/summary.component-v2.d.ts +17 -0
  51. package/lib/components/weekly-summary-v2/summary.component-v2.d.ts.map +1 -0
  52. package/lib/components/weekly-work-search-counter/work-search-counter.component.d.ts +17 -0
  53. package/lib/components/weekly-work-search-counter/work-search-counter.component.d.ts.map +1 -0
  54. package/lib/components/weekly-work-search-employer-me/work-search-employer.component-me.d.ts +105 -0
  55. package/lib/components/weekly-work-search-employer-me/work-search-employer.component-me.d.ts.map +1 -0
  56. package/lib/components/weekly-work-search-employer-ms/work-search-employer-ms.component.d.ts +69 -0
  57. package/lib/components/weekly-work-search-employer-ms/work-search-employer-ms.component.d.ts.map +1 -0
  58. package/lib/components/weekly-work-search-employer-v2/work-search-employer.component-v2.d.ts +59 -0
  59. package/lib/components/weekly-work-search-employer-v2/work-search-employer.component-v2.d.ts.map +1 -0
  60. package/lib/components/weekly-work-search-journal/weekly-work-search-journal.component.d.ts +47 -0
  61. package/lib/components/weekly-work-search-journal/weekly-work-search-journal.component.d.ts.map +1 -0
  62. package/lib/components/weekly-work-search-question-v2/work-search-question.component-v2.d.ts +78 -0
  63. package/lib/components/weekly-work-search-question-v2/work-search-question.component-v2.d.ts.map +1 -0
  64. package/lib/models/HelpConstants.d.ts +5 -0
  65. package/lib/models/HelpConstants.d.ts.map +1 -0
  66. package/lib/models/combo-model.d.ts +42 -0
  67. package/lib/models/combo-model.d.ts.map +1 -0
  68. package/lib/models/weekly-cert/WorkSearchWaiverModel.d.ts +9 -0
  69. package/lib/models/weekly-cert/WorkSearchWaiverModel.d.ts.map +1 -0
  70. package/lib/models/weekly-cert/address-detail-model.d.ts +14 -0
  71. package/lib/models/weekly-cert/address-detail-model.d.ts.map +1 -0
  72. package/lib/models/weekly-cert/admin-leave-details-model.d.ts +15 -0
  73. package/lib/models/weekly-cert/admin-leave-details-model.d.ts.map +1 -0
  74. package/lib/models/weekly-cert/employer-info-v2-model.d.ts +27 -0
  75. package/lib/models/weekly-cert/employer-info-v2-model.d.ts.map +1 -0
  76. package/lib/models/weekly-cert/weekly-cert-eligibility-v2-model.d.ts +57 -0
  77. package/lib/models/weekly-cert/weekly-cert-eligibility-v2-model.d.ts.map +1 -0
  78. package/lib/models/weekly-cert/weekly-certification-v2-model.d.ts +59 -0
  79. package/lib/models/weekly-cert/weekly-certification-v2-model.d.ts.map +1 -0
  80. package/lib/models/weekly-cert/work-search-record-v2-model.d.ts +66 -0
  81. package/lib/models/weekly-cert/work-search-record-v2-model.d.ts.map +1 -0
  82. package/lib/models/weekly-cert/work-search-v2-model.d.ts +18 -0
  83. package/lib/models/weekly-cert/work-search-v2-model.d.ts.map +1 -0
  84. package/lib/ngx-reusa-app-lib.module.d.ts +74 -61
  85. package/lib/ngx-reusa-app-lib.module.d.ts.map +1 -1
  86. package/lib/pipes/format-worksearch/format-worksearch.pipe.d.ts +14 -0
  87. package/lib/pipes/format-worksearch/format-worksearch.pipe.d.ts.map +1 -0
  88. package/lib/services/weekly-cert/review.service.d.ts +23 -0
  89. package/lib/services/weekly-cert/review.service.d.ts.map +1 -0
  90. package/lib/services/weekly-cert/weekly-cert-v2.service.d.ts +59 -0
  91. package/lib/services/weekly-cert/weekly-cert-v2.service.d.ts.map +1 -0
  92. package/lib/services/weekly-cert/work-search.service.d.ts +26 -0
  93. package/lib/services/weekly-cert/work-search.service.d.ts.map +1 -0
  94. package/lib/validations/AppValidators.d.ts +11 -0
  95. package/lib/validations/AppValidators.d.ts.map +1 -1
  96. package/package.json +1 -1
  97. package/public-api.d.ts +14 -0
  98. package/public-api.d.ts.map +1 -1
@@ -111,70 +111,83 @@ import * as i107 from "./components/proof-of-document-upload/proof-of-document-u
111
111
  import * as i108 from "./components/claim-info/claim-info.component";
112
112
  import * as i109 from "./components/history-page/history-page.component";
113
113
  import * as i110 from "./components/dua-request-page/dua-request-page.component";
114
- import * as i111 from "@ionic/angular";
115
- import * as i112 from "@angular/common";
116
- import * as i113 from "ngx-joyride";
117
- import * as i114 from "@ngx-loading-bar/http-client";
118
- import * as i115 from "primeng/inplace";
119
- import * as i116 from "primeng/tooltip";
120
- import * as i117 from "@ngx-loading-bar/router";
121
- import * as i118 from "@ngx-loading-bar/core";
122
- import * as i119 from "ngx-spinner";
123
- import * as i120 from "@ionic/storage-angular";
124
- import * as i121 from "primeng/messages";
125
- import * as i122 from "primeng/message";
126
- import * as i123 from "@angular/material/progress-bar";
127
- import * as i124 from "@ngx-translate/core";
128
- import * as i125 from "@angular/material/form-field";
129
- import * as i126 from "ngx-mat-select-search";
130
- import * as i127 from "@angular/material/select";
131
- import * as i128 from "primeng/tabview";
132
- import * as i129 from "@angular/material/expansion";
133
- import * as i130 from "@angular/forms";
134
- import * as i131 from "primeng/autocomplete";
135
- import * as i132 from "@angular/material/icon";
136
- import * as i133 from "primeng/dialog";
137
- import * as i134 from "primeng/carousel";
138
- import * as i135 from "@angular/material/input";
139
- import * as i136 from "@angular/material/stepper";
140
- import * as i137 from "primeng/toast";
141
- import * as i138 from "primeng/table";
142
- import * as i139 from "primeng/accordion";
143
- import * as i140 from "primeng/card";
144
- import * as i141 from "primeng/badge";
145
- import * as i142 from "primeng/password";
146
- import * as i143 from "primeng/inputtext";
147
- import * as i144 from "primeng/inputmask";
148
- import * as i145 from "primeng/divider";
149
- import * as i146 from "primeng/calendar";
150
- import * as i147 from "primeng/radiobutton";
151
- import * as i148 from "primeng/checkbox";
152
- import * as i149 from "primeng/steps";
153
- import * as i150 from "primeng/selectbutton";
154
- import * as i151 from "primeng/fileupload";
155
- import * as i152 from "@angular/material/button";
156
- import * as i153 from "primeng/overlaypanel";
157
- import * as i154 from "primeng/inputnumber";
158
- import * as i155 from "primeng/inputtextarea";
159
- import * as i156 from "@fortawesome/angular-fontawesome";
160
- import * as i157 from "primeng/panel";
161
- import * as i158 from "primeng/blockui";
162
- import * as i159 from "primeng/menu";
163
- import * as i160 from "primeng/dropdown";
164
- import * as i161 from "primeng/overlay";
165
- import * as i162 from "primeng/api";
166
- import * as i163 from "primeng/ripple";
167
- import * as i164 from "primeng/scroller";
168
- import * as i165 from "primeng/autofocus";
169
- import * as i166 from "primeng/sidebar";
170
- import * as i167 from "primeng/icons/chevrondown";
171
- import * as i168 from "primeng/icons/search";
172
- import * as i169 from "primeng/icons/times";
173
- import * as i170 from "primeng/timeline";
114
+ import * as i111 from "./pipes/format-worksearch/format-worksearch.pipe";
115
+ import * as i112 from "./components/weekly-certification/weekly-certification.component";
116
+ import * as i113 from "./components/weekly-work-search-journal/weekly-work-search-journal.component";
117
+ import * as i114 from "./components/weekly-work-search-question-v2/work-search-question.component-v2";
118
+ import * as i115 from "./components/weekly-acknowledgement-ms/acknowledgement-ms.component";
119
+ import * as i116 from "./components/weekly-acknowledgement-v2/acknowledgement.component-v2";
120
+ import * as i117 from "./components/weekly-confirmation/confirmation.component";
121
+ import * as i118 from "./components/weekly-interim-confirmation/interim-confirmation.component";
122
+ import * as i119 from "./components/weekly-summary-v2/summary.component-v2";
123
+ import * as i120 from "./components/weekly-work-search-counter/work-search-counter.component";
124
+ import * as i121 from "./components/weekly-work-search-employer-me/work-search-employer.component-me";
125
+ import * as i122 from "./components/weekly-work-search-employer-ms/work-search-employer-ms.component";
126
+ import * as i123 from "./components/weekly-work-search-employer-v2/work-search-employer.component-v2";
127
+ import * as i124 from "@ionic/angular";
128
+ import * as i125 from "@angular/common";
129
+ import * as i126 from "ngx-joyride";
130
+ import * as i127 from "@ngx-loading-bar/http-client";
131
+ import * as i128 from "primeng/inplace";
132
+ import * as i129 from "primeng/tooltip";
133
+ import * as i130 from "@ngx-loading-bar/router";
134
+ import * as i131 from "@ngx-loading-bar/core";
135
+ import * as i132 from "ngx-spinner";
136
+ import * as i133 from "@ionic/storage-angular";
137
+ import * as i134 from "primeng/messages";
138
+ import * as i135 from "primeng/message";
139
+ import * as i136 from "@angular/material/progress-bar";
140
+ import * as i137 from "@ngx-translate/core";
141
+ import * as i138 from "@angular/material/form-field";
142
+ import * as i139 from "ngx-mat-select-search";
143
+ import * as i140 from "@angular/material/select";
144
+ import * as i141 from "primeng/tabview";
145
+ import * as i142 from "@angular/material/expansion";
146
+ import * as i143 from "@angular/forms";
147
+ import * as i144 from "primeng/autocomplete";
148
+ import * as i145 from "@angular/material/icon";
149
+ import * as i146 from "primeng/dialog";
150
+ import * as i147 from "primeng/carousel";
151
+ import * as i148 from "@angular/material/input";
152
+ import * as i149 from "@angular/material/stepper";
153
+ import * as i150 from "primeng/toast";
154
+ import * as i151 from "primeng/table";
155
+ import * as i152 from "primeng/accordion";
156
+ import * as i153 from "primeng/card";
157
+ import * as i154 from "primeng/badge";
158
+ import * as i155 from "primeng/password";
159
+ import * as i156 from "primeng/inputtext";
160
+ import * as i157 from "primeng/inputmask";
161
+ import * as i158 from "primeng/divider";
162
+ import * as i159 from "primeng/calendar";
163
+ import * as i160 from "primeng/radiobutton";
164
+ import * as i161 from "primeng/checkbox";
165
+ import * as i162 from "primeng/steps";
166
+ import * as i163 from "primeng/selectbutton";
167
+ import * as i164 from "primeng/fileupload";
168
+ import * as i165 from "@angular/material/button";
169
+ import * as i166 from "primeng/overlaypanel";
170
+ import * as i167 from "primeng/inputnumber";
171
+ import * as i168 from "primeng/inputtextarea";
172
+ import * as i169 from "@fortawesome/angular-fontawesome";
173
+ import * as i170 from "primeng/panel";
174
+ import * as i171 from "primeng/blockui";
175
+ import * as i172 from "primeng/menu";
176
+ import * as i173 from "primeng/dropdown";
177
+ import * as i174 from "primeng/overlay";
178
+ import * as i175 from "primeng/api";
179
+ import * as i176 from "primeng/ripple";
180
+ import * as i177 from "primeng/scroller";
181
+ import * as i178 from "primeng/autofocus";
182
+ import * as i179 from "primeng/sidebar";
183
+ import * as i180 from "primeng/icons/chevrondown";
184
+ import * as i181 from "primeng/icons/search";
185
+ import * as i182 from "primeng/icons/times";
186
+ import * as i183 from "primeng/timeline";
174
187
  export declare function createTranslateLoader(http: HttpClient): MultiTranslateHttpLoader;
175
188
  export declare class NgxReusaAppLibModule {
176
189
  static ɵfac: i0.ɵɵFactoryDeclaration<NgxReusaAppLibModule, never>;
177
- static ɵmod: i0.ɵɵNgModuleDeclaration<NgxReusaAppLibModule, [typeof i1.NgxReusaAppLibComponent, typeof i2.SsnComponent, typeof i3.MaskComponent, typeof i4.FooterComponent, typeof i5.TestComponent, typeof i6.PrivacyDisclaimerPage, typeof i7.AccessibilityPolicyPage, typeof i8.SecurityPolicyPage, typeof i9.PageComponent, typeof i10.NotFoundPage, typeof i11.CapsLockDirective, typeof i12.UnauthorizedPage, typeof i13.ContentComponent, typeof i13.ContentComponent, typeof i14.FilterPipe, typeof i15.HeaderComponent, typeof i16.SelectComponent, typeof i17.MyNotificationsPage, typeof i18.MyProfilePage, typeof i19.LanguagePage, typeof i20.LandingComponent, typeof i21.Landing2Component, typeof i22.MsgComponent, typeof i23.CardComponent, typeof i24.LoginComponent, typeof i25.UserSearchComponent, typeof i26.MenuComponent, typeof i27.DisclosureComponent, typeof i28.IdleDetectorComponent, typeof i29.AutofocusDirective, typeof i30.CorrespondenceDownloadComponent, typeof i31.ErrorComponent, typeof i32.HelpComponent, typeof i33.FavMenuComponent, typeof i34.NewsComponent, typeof i35.InfoComponent, typeof i36.CaptchaComponent, typeof i37.MfaComponent, typeof i38.UserLoginComponent, typeof i39.FileUploaderComponent, typeof i40.DynamicFormPanelComponent, typeof i41.DynamicFormQuestionComponent, typeof i42.DynamicFormComponent, typeof i43.RenderQuestionnairePage, typeof i44.FormBuilderPage, typeof i45.InputFocus, typeof i46.CommonSuccessPage, typeof i47.AccountSuccessPage, typeof i48.OverlayInfoComponent, typeof i49.EmployerGridComponent, typeof i50.LegalDisclaimarComponent, typeof i51.MoneyExpectComponent, typeof i52.SearchEmployerComponent, typeof i53.AddEmployerComponent, typeof i54.AddressComponent, typeof i55.MultiQuestionnaireComponent, typeof i56.BankDetailsComponent, typeof i57.ProfileComponent, typeof i58.EmailUpdateComponent, typeof i59.MfaPopupComponent, typeof i60.MaintenanceDetectorComponent, typeof i61.RequiredRolesDirective, typeof i62.JobSearchResultPageComponent, typeof i63.MaskEmailPipe, typeof i64.ProperCasePipe, typeof i65.DependentGridComponent, typeof i66.WeeklyCertEmployerComponentQe, typeof i67.WeeklyCertEmployerGridComponent, typeof i68.DynamicTranslatePipe, typeof i69.TrustHtmlPipe, typeof i70.AddParticipantComponent, typeof i71.ProfileRedirectComponent, typeof i72.Dropdown, typeof i72.DropdownItem, typeof i73.DashboardCardComponent, typeof i74.ChangePasswordPage, typeof i75.RequalifyLiftPreviousIssuesComponent, typeof i76.ContactUsComponent, typeof i77.ReadMoreComponent, typeof i78.FileDownloadComponent, typeof i79.SsnReverifyComponent, typeof i80.AddPaymentComponent, typeof i81.LinkComponent, typeof i82.SignSsnComponent, typeof i83.EmployerPayComponent, typeof i84.EmployerPayGridComponent, typeof i85.FarmUsageComponent, typeof i86.SmsComponent, typeof i87.AddWageComponent, typeof i88.WageGridComponent, typeof i89.GrossEarningsComponent, typeof i90.ScrollableTextComponent, typeof i91.JobTitleComponent, typeof i92.AssociateSsnComponent, typeof i93.EmployerInfoComponent, typeof i94.IdmeComponent, typeof i95.DuaRequestPopupComponent, typeof i96.ProofOfAnythingComponent, typeof i97.WageCalculatorComponent, typeof i98.WeeklyWorkPerformedPopupComponent, typeof i99.AppointmentSelfSchedulerComponent, typeof i100.StripInvisibleCharsDirective, typeof i101.OfflineEmployerGridComponent, typeof i102.OfflineAddEmployerComponent, typeof i103.OfflineLegalDisclaimarComponent, typeof i104.OfflineBankDetailsComponent, typeof i105.AddressPopupComponent, typeof i106.AddressSuggestionComponent, typeof i107.ProofOfDocumentUploadComponent, typeof i108.ClaimInfoComponent, typeof i109.HistoryPageComponent, typeof i110.DuaRequestPageComponent], [typeof i111.IonicModule, typeof i112.CommonModule, typeof i113.JoyrideModule, typeof i114.LoadingBarHttpClientModule, typeof i115.InplaceModule, typeof i116.TooltipModule, typeof i117.LoadingBarRouterModule, typeof i118.LoadingBarModule, typeof i119.NgxSpinnerModule, typeof i120.IonicStorageModule, typeof i121.MessagesModule, typeof i122.MessageModule, typeof i123.MatProgressBarModule, typeof i124.TranslateModule, typeof i125.MatFormFieldModule, typeof i126.NgxMatSelectSearchModule, typeof i127.MatSelectModule, typeof i128.TabViewModule, typeof i129.MatExpansionModule, typeof i130.ReactiveFormsModule, typeof i130.FormsModule, typeof i131.AutoCompleteModule, typeof i132.MatIconModule, typeof i133.DialogModule, typeof i134.CarouselModule, typeof i135.MatInputModule, typeof i136.MatStepperModule, typeof i137.ToastModule, typeof i138.TableModule, typeof i139.AccordionModule, typeof i140.CardModule, typeof i141.BadgeModule, typeof i142.PasswordModule, typeof i143.InputTextModule, typeof i144.InputMaskModule, typeof i145.DividerModule, typeof i146.CalendarModule, typeof i147.RadioButtonModule, typeof i148.CheckboxModule, typeof i149.StepsModule, typeof i150.SelectButtonModule, typeof i151.FileUploadModule, typeof i152.MatButtonModule, typeof i153.OverlayPanelModule, typeof i154.InputNumberModule, typeof i155.InputTextareaModule, typeof i156.FontAwesomeModule, typeof i157.PanelModule, typeof i158.BlockUIModule, typeof i159.MenuModule, typeof i160.DropdownModule, typeof i161.OverlayModule, typeof i162.SharedModule, typeof i116.TooltipModule, typeof i163.RippleModule, typeof i164.ScrollerModule, typeof i165.AutoFocusModule, typeof i166.SidebarModule, typeof i167.ChevronDownIcon, typeof i168.SearchIcon, typeof i169.TimesIcon, typeof i170.TimelineModule], [typeof i1.NgxReusaAppLibComponent, typeof i2.SsnComponent, typeof i3.MaskComponent, typeof i4.FooterComponent, typeof i5.TestComponent, typeof i9.PageComponent, typeof i7.AccessibilityPolicyPage, typeof i10.NotFoundPage, typeof i11.CapsLockDirective, typeof i12.UnauthorizedPage, typeof i13.ContentComponent, typeof i15.HeaderComponent, typeof i16.SelectComponent, typeof i70.AddParticipantComponent, typeof i21.Landing2Component, typeof i22.MsgComponent, typeof i23.CardComponent, typeof i24.LoginComponent, typeof i25.UserSearchComponent, typeof i26.MenuComponent, typeof i27.DisclosureComponent, typeof i28.IdleDetectorComponent, typeof i29.AutofocusDirective, typeof i30.CorrespondenceDownloadComponent, typeof i31.ErrorComponent, typeof i32.HelpComponent, typeof i33.FavMenuComponent, typeof i34.NewsComponent, typeof i35.InfoComponent, typeof i36.CaptchaComponent, typeof i37.MfaComponent, typeof i38.UserLoginComponent, typeof i39.FileUploaderComponent, typeof i40.DynamicFormPanelComponent, typeof i41.DynamicFormQuestionComponent, typeof i42.DynamicFormComponent, typeof i43.RenderQuestionnairePage, typeof i44.FormBuilderPage, typeof i45.InputFocus, typeof i46.CommonSuccessPage, typeof i47.AccountSuccessPage, typeof i48.OverlayInfoComponent, typeof i49.EmployerGridComponent, typeof i50.LegalDisclaimarComponent, typeof i51.MoneyExpectComponent, typeof i52.SearchEmployerComponent, typeof i53.AddEmployerComponent, typeof i54.AddressComponent, typeof i55.MultiQuestionnaireComponent, typeof i17.MyNotificationsPage, typeof i18.MyProfilePage, typeof i56.BankDetailsComponent, typeof i58.EmailUpdateComponent, typeof i59.MfaPopupComponent, typeof i60.MaintenanceDetectorComponent, typeof i61.RequiredRolesDirective, typeof i62.JobSearchResultPageComponent, typeof i63.MaskEmailPipe, typeof i65.DependentGridComponent, typeof i66.WeeklyCertEmployerComponentQe, typeof i67.WeeklyCertEmployerGridComponent, typeof i68.DynamicTranslatePipe, typeof i70.AddParticipantComponent, typeof i161.OverlayModule, typeof i162.SharedModule, typeof i164.ScrollerModule, typeof i73.DashboardCardComponent, typeof i74.ChangePasswordPage, typeof i75.RequalifyLiftPreviousIssuesComponent, typeof i72.Dropdown, typeof i72.DropdownItem, typeof i76.ContactUsComponent, typeof i166.SidebarModule, typeof i77.ReadMoreComponent, typeof i78.FileDownloadComponent, typeof i80.AddPaymentComponent, typeof i64.ProperCasePipe, typeof i69.TrustHtmlPipe, typeof i81.LinkComponent, typeof i82.SignSsnComponent, typeof i83.EmployerPayComponent, typeof i84.EmployerPayGridComponent, typeof i85.FarmUsageComponent, typeof i86.SmsComponent, typeof i87.AddWageComponent, typeof i88.WageGridComponent, typeof i89.GrossEarningsComponent, typeof i90.ScrollableTextComponent, typeof i91.JobTitleComponent, typeof i92.AssociateSsnComponent, typeof i71.ProfileRedirectComponent, typeof i93.EmployerInfoComponent, typeof i94.IdmeComponent, typeof i95.DuaRequestPopupComponent, typeof i96.ProofOfAnythingComponent, typeof i97.WageCalculatorComponent, typeof i98.WeeklyWorkPerformedPopupComponent, typeof i99.AppointmentSelfSchedulerComponent, typeof i100.StripInvisibleCharsDirective, typeof i101.OfflineEmployerGridComponent, typeof i102.OfflineAddEmployerComponent, typeof i103.OfflineLegalDisclaimarComponent, typeof i104.OfflineBankDetailsComponent, typeof i105.AddressPopupComponent, typeof i106.AddressSuggestionComponent, typeof i109.HistoryPageComponent, typeof i170.TimelineModule, typeof i110.DuaRequestPageComponent, typeof i108.ClaimInfoComponent]>;
190
+ static ɵmod: i0.ɵɵNgModuleDeclaration<NgxReusaAppLibModule, [typeof i1.NgxReusaAppLibComponent, typeof i2.SsnComponent, typeof i3.MaskComponent, typeof i4.FooterComponent, typeof i5.TestComponent, typeof i6.PrivacyDisclaimerPage, typeof i7.AccessibilityPolicyPage, typeof i8.SecurityPolicyPage, typeof i9.PageComponent, typeof i10.NotFoundPage, typeof i11.CapsLockDirective, typeof i12.UnauthorizedPage, typeof i13.ContentComponent, typeof i13.ContentComponent, typeof i14.FilterPipe, typeof i15.HeaderComponent, typeof i16.SelectComponent, typeof i17.MyNotificationsPage, typeof i18.MyProfilePage, typeof i19.LanguagePage, typeof i20.LandingComponent, typeof i21.Landing2Component, typeof i22.MsgComponent, typeof i23.CardComponent, typeof i24.LoginComponent, typeof i25.UserSearchComponent, typeof i26.MenuComponent, typeof i27.DisclosureComponent, typeof i28.IdleDetectorComponent, typeof i29.AutofocusDirective, typeof i30.CorrespondenceDownloadComponent, typeof i31.ErrorComponent, typeof i32.HelpComponent, typeof i33.FavMenuComponent, typeof i34.NewsComponent, typeof i35.InfoComponent, typeof i36.CaptchaComponent, typeof i37.MfaComponent, typeof i38.UserLoginComponent, typeof i39.FileUploaderComponent, typeof i40.DynamicFormPanelComponent, typeof i41.DynamicFormQuestionComponent, typeof i42.DynamicFormComponent, typeof i43.RenderQuestionnairePage, typeof i44.FormBuilderPage, typeof i45.InputFocus, typeof i46.CommonSuccessPage, typeof i47.AccountSuccessPage, typeof i48.OverlayInfoComponent, typeof i49.EmployerGridComponent, typeof i50.LegalDisclaimarComponent, typeof i51.MoneyExpectComponent, typeof i52.SearchEmployerComponent, typeof i53.AddEmployerComponent, typeof i54.AddressComponent, typeof i55.MultiQuestionnaireComponent, typeof i56.BankDetailsComponent, typeof i57.ProfileComponent, typeof i58.EmailUpdateComponent, typeof i59.MfaPopupComponent, typeof i60.MaintenanceDetectorComponent, typeof i61.RequiredRolesDirective, typeof i62.JobSearchResultPageComponent, typeof i63.MaskEmailPipe, typeof i64.ProperCasePipe, typeof i65.DependentGridComponent, typeof i66.WeeklyCertEmployerComponentQe, typeof i67.WeeklyCertEmployerGridComponent, typeof i68.DynamicTranslatePipe, typeof i69.TrustHtmlPipe, typeof i70.AddParticipantComponent, typeof i71.ProfileRedirectComponent, typeof i72.Dropdown, typeof i72.DropdownItem, typeof i73.DashboardCardComponent, typeof i74.ChangePasswordPage, typeof i75.RequalifyLiftPreviousIssuesComponent, typeof i76.ContactUsComponent, typeof i77.ReadMoreComponent, typeof i78.FileDownloadComponent, typeof i79.SsnReverifyComponent, typeof i80.AddPaymentComponent, typeof i81.LinkComponent, typeof i82.SignSsnComponent, typeof i83.EmployerPayComponent, typeof i84.EmployerPayGridComponent, typeof i85.FarmUsageComponent, typeof i86.SmsComponent, typeof i87.AddWageComponent, typeof i88.WageGridComponent, typeof i89.GrossEarningsComponent, typeof i90.ScrollableTextComponent, typeof i91.JobTitleComponent, typeof i92.AssociateSsnComponent, typeof i93.EmployerInfoComponent, typeof i94.IdmeComponent, typeof i95.DuaRequestPopupComponent, typeof i96.ProofOfAnythingComponent, typeof i97.WageCalculatorComponent, typeof i98.WeeklyWorkPerformedPopupComponent, typeof i99.AppointmentSelfSchedulerComponent, typeof i100.StripInvisibleCharsDirective, typeof i101.OfflineEmployerGridComponent, typeof i102.OfflineAddEmployerComponent, typeof i103.OfflineLegalDisclaimarComponent, typeof i104.OfflineBankDetailsComponent, typeof i105.AddressPopupComponent, typeof i106.AddressSuggestionComponent, typeof i107.ProofOfDocumentUploadComponent, typeof i108.ClaimInfoComponent, typeof i109.HistoryPageComponent, typeof i110.DuaRequestPageComponent, typeof i111.FormatWorksearchPipe, typeof i112.WeeklyCertificationComponent, typeof i113.WeeklyWorkSearchJournalComponent, typeof i114.WorkSearchQuestionComponentV2, typeof i115.AcknowledgementMsComponent, typeof i116.AcknowledgementComponentV2, typeof i117.ConfirmationComponent, typeof i118.InterimConfirmationComponent, typeof i119.SummaryComponentV2, typeof i120.WorkSearchCounterComponent, typeof i121.WorkSearchEmployerComponentME, typeof i122.WorkSearchEmployerComponentMS, typeof i123.WorkSearchEmployerComponentV2], [typeof i124.IonicModule, typeof i125.CommonModule, typeof i126.JoyrideModule, typeof i127.LoadingBarHttpClientModule, typeof i128.InplaceModule, typeof i129.TooltipModule, typeof i130.LoadingBarRouterModule, typeof i131.LoadingBarModule, typeof i132.NgxSpinnerModule, typeof i133.IonicStorageModule, typeof i134.MessagesModule, typeof i135.MessageModule, typeof i136.MatProgressBarModule, typeof i137.TranslateModule, typeof i138.MatFormFieldModule, typeof i139.NgxMatSelectSearchModule, typeof i140.MatSelectModule, typeof i141.TabViewModule, typeof i142.MatExpansionModule, typeof i143.ReactiveFormsModule, typeof i143.FormsModule, typeof i144.AutoCompleteModule, typeof i145.MatIconModule, typeof i146.DialogModule, typeof i147.CarouselModule, typeof i148.MatInputModule, typeof i149.MatStepperModule, typeof i150.ToastModule, typeof i151.TableModule, typeof i152.AccordionModule, typeof i153.CardModule, typeof i154.BadgeModule, typeof i155.PasswordModule, typeof i156.InputTextModule, typeof i157.InputMaskModule, typeof i158.DividerModule, typeof i159.CalendarModule, typeof i160.RadioButtonModule, typeof i161.CheckboxModule, typeof i162.StepsModule, typeof i163.SelectButtonModule, typeof i164.FileUploadModule, typeof i165.MatButtonModule, typeof i166.OverlayPanelModule, typeof i167.InputNumberModule, typeof i168.InputTextareaModule, typeof i169.FontAwesomeModule, typeof i170.PanelModule, typeof i171.BlockUIModule, typeof i172.MenuModule, typeof i173.DropdownModule, typeof i174.OverlayModule, typeof i175.SharedModule, typeof i129.TooltipModule, typeof i176.RippleModule, typeof i177.ScrollerModule, typeof i178.AutoFocusModule, typeof i179.SidebarModule, typeof i180.ChevronDownIcon, typeof i181.SearchIcon, typeof i182.TimesIcon, typeof i183.TimelineModule], [typeof i1.NgxReusaAppLibComponent, typeof i143.FormsModule, typeof i143.ReactiveFormsModule, typeof i124.IonicModule, typeof i137.TranslateModule, typeof i2.SsnComponent, typeof i3.MaskComponent, typeof i4.FooterComponent, typeof i5.TestComponent, typeof i9.PageComponent, typeof i7.AccessibilityPolicyPage, typeof i10.NotFoundPage, typeof i11.CapsLockDirective, typeof i12.UnauthorizedPage, typeof i13.ContentComponent, typeof i15.HeaderComponent, typeof i16.SelectComponent, typeof i70.AddParticipantComponent, typeof i21.Landing2Component, typeof i22.MsgComponent, typeof i23.CardComponent, typeof i24.LoginComponent, typeof i25.UserSearchComponent, typeof i26.MenuComponent, typeof i27.DisclosureComponent, typeof i28.IdleDetectorComponent, typeof i29.AutofocusDirective, typeof i30.CorrespondenceDownloadComponent, typeof i31.ErrorComponent, typeof i32.HelpComponent, typeof i33.FavMenuComponent, typeof i34.NewsComponent, typeof i35.InfoComponent, typeof i36.CaptchaComponent, typeof i37.MfaComponent, typeof i38.UserLoginComponent, typeof i39.FileUploaderComponent, typeof i40.DynamicFormPanelComponent, typeof i41.DynamicFormQuestionComponent, typeof i42.DynamicFormComponent, typeof i43.RenderQuestionnairePage, typeof i44.FormBuilderPage, typeof i45.InputFocus, typeof i46.CommonSuccessPage, typeof i47.AccountSuccessPage, typeof i48.OverlayInfoComponent, typeof i49.EmployerGridComponent, typeof i50.LegalDisclaimarComponent, typeof i51.MoneyExpectComponent, typeof i52.SearchEmployerComponent, typeof i53.AddEmployerComponent, typeof i54.AddressComponent, typeof i55.MultiQuestionnaireComponent, typeof i17.MyNotificationsPage, typeof i18.MyProfilePage, typeof i56.BankDetailsComponent, typeof i58.EmailUpdateComponent, typeof i59.MfaPopupComponent, typeof i60.MaintenanceDetectorComponent, typeof i61.RequiredRolesDirective, typeof i62.JobSearchResultPageComponent, typeof i63.MaskEmailPipe, typeof i65.DependentGridComponent, typeof i66.WeeklyCertEmployerComponentQe, typeof i67.WeeklyCertEmployerGridComponent, typeof i68.DynamicTranslatePipe, typeof i70.AddParticipantComponent, typeof i174.OverlayModule, typeof i175.SharedModule, typeof i177.ScrollerModule, typeof i73.DashboardCardComponent, typeof i74.ChangePasswordPage, typeof i75.RequalifyLiftPreviousIssuesComponent, typeof i72.Dropdown, typeof i72.DropdownItem, typeof i76.ContactUsComponent, typeof i179.SidebarModule, typeof i77.ReadMoreComponent, typeof i78.FileDownloadComponent, typeof i80.AddPaymentComponent, typeof i64.ProperCasePipe, typeof i69.TrustHtmlPipe, typeof i81.LinkComponent, typeof i82.SignSsnComponent, typeof i83.EmployerPayComponent, typeof i84.EmployerPayGridComponent, typeof i85.FarmUsageComponent, typeof i86.SmsComponent, typeof i87.AddWageComponent, typeof i88.WageGridComponent, typeof i89.GrossEarningsComponent, typeof i90.ScrollableTextComponent, typeof i91.JobTitleComponent, typeof i92.AssociateSsnComponent, typeof i71.ProfileRedirectComponent, typeof i93.EmployerInfoComponent, typeof i94.IdmeComponent, typeof i95.DuaRequestPopupComponent, typeof i96.ProofOfAnythingComponent, typeof i97.WageCalculatorComponent, typeof i98.WeeklyWorkPerformedPopupComponent, typeof i99.AppointmentSelfSchedulerComponent, typeof i100.StripInvisibleCharsDirective, typeof i101.OfflineEmployerGridComponent, typeof i102.OfflineAddEmployerComponent, typeof i103.OfflineLegalDisclaimarComponent, typeof i104.OfflineBankDetailsComponent, typeof i105.AddressPopupComponent, typeof i106.AddressSuggestionComponent, typeof i109.HistoryPageComponent, typeof i183.TimelineModule, typeof i110.DuaRequestPageComponent, typeof i108.ClaimInfoComponent, typeof i111.FormatWorksearchPipe, typeof i112.WeeklyCertificationComponent, typeof i113.WeeklyWorkSearchJournalComponent, typeof i114.WorkSearchQuestionComponentV2, typeof i115.AcknowledgementMsComponent, typeof i116.AcknowledgementComponentV2, typeof i117.ConfirmationComponent, typeof i118.InterimConfirmationComponent, typeof i119.SummaryComponentV2, typeof i120.WorkSearchCounterComponent, typeof i121.WorkSearchEmployerComponentME, typeof i122.WorkSearchEmployerComponentMS, typeof i123.WorkSearchEmployerComponentV2]>;
178
191
  static ɵinj: i0.ɵɵInjectorDeclaration<NgxReusaAppLibModule>;
179
192
  }
180
193
  //# sourceMappingURL=ngx-reusa-app-lib.module.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"ngx-reusa-app-lib.module.d.ts","sourceRoot":"","sources":["../../../projects/ngx-reusa-app-lib/src/lib/ngx-reusa-app-lib.module.ts"],"names":[],"mappings":"AAmCA,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAElD,OAAO,EAAE,wBAAwB,EAAE,MAAM,iCAAiC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA2I3E,wBAAgB,qBAAqB,CAAC,IAAI,EAAE,UAAU,4BAMrD;AAED,qBAmGa,oBAAoB;yCAApB,oBAAoB;0CAApB,oBAAoB;0CAApB,oBAAoB;CAAI"}
1
+ {"version":3,"file":"ngx-reusa-app-lib.module.d.ts","sourceRoot":"","sources":["../../../projects/ngx-reusa-app-lib/src/lib/ngx-reusa-app-lib.module.ts"],"names":[],"mappings":"AAmCA,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAElD,OAAO,EAAE,wBAAwB,EAAE,MAAM,iCAAiC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA0J3E,wBAAgB,qBAAqB,CAAC,IAAI,EAAE,UAAU,4BAMrD;AAED,qBAuGa,oBAAoB;yCAApB,oBAAoB;0CAApB,oBAAoB;0CAApB,oBAAoB;CAAI"}
@@ -0,0 +1,14 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import { WorkSearchRecordModel } from '../../models/weekly-cert/work-search-record-v2-model';
3
+ import * as i0 from "@angular/core";
4
+ export declare class FormatWorksearchPipe implements PipeTransform {
5
+ private properCase;
6
+ transform(record: WorkSearchRecordModel): string;
7
+ getDesc(value: string): any;
8
+ getActivityDesc(value: string): any;
9
+ getUnionDesc(value: string): "contacted" | "not contacted";
10
+ getEmploymentServiceDesc(value: string): any;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<FormatWorksearchPipe, never>;
12
+ static ɵpipe: i0.ɵɵPipeDeclaration<FormatWorksearchPipe, "formatWorksearchRecord", false>;
13
+ }
14
+ //# sourceMappingURL=format-worksearch.pipe.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"format-worksearch.pipe.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/pipes/format-worksearch/format-worksearch.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,aAAa,EAAE,MAAM,eAAe,CAAC;AAGpD,OAAO,EAAE,qBAAqB,EAAE,MAAM,sDAAsD,CAAC;;AAE7F,qBAGa,oBAAqB,YAAW,aAAa;IACxD,OAAO,CAAC,UAAU,CAAyC;IAE3D,SAAS,CAAC,MAAM,EAAE,qBAAqB,GAAG,MAAM;IA6DhD,OAAO,CAAC,KAAK,EAAG,MAAM;IAOtB,eAAe,CAAC,KAAK,EAAG,MAAM;IAO9B,YAAY,CAAC,KAAK,EAAE,MAAM;IAW1B,wBAAwB,CAAC,KAAK,EAAE,MAAM;yCAzF3B,oBAAoB;uCAApB,oBAAoB;CAgGhC"}
@@ -0,0 +1,23 @@
1
+ import { AlertController } from '@ionic/angular';
2
+ import { Storage } from '@ionic/storage-angular';
3
+ import { Platform } from '@ionic/angular';
4
+ import * as i0 from "@angular/core";
5
+ export declare class ReviewService {
6
+ private storage;
7
+ alertCtrl: AlertController;
8
+ private platform;
9
+ private REVIEW_KEY;
10
+ private SHOULD_DISPLAY_APP_REVIEW_DIALOG;
11
+ constructor(storage: Storage, alertCtrl: AlertController, platform: Platform);
12
+ private getShouldReviewApp;
13
+ setReviewApp(value: boolean): Promise<void>;
14
+ private saveUserPreferenceForAppReview;
15
+ private openExternamUrl;
16
+ private showDialog;
17
+ private defaultOK;
18
+ private doesUserPrefrenceAllowAppReview;
19
+ showAppReviewDialog(): Promise<void>;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<ReviewService, never>;
21
+ static ɵprov: i0.ɵɵInjectableDeclaration<ReviewService>;
22
+ }
23
+ //# sourceMappingURL=review.service.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"review.service.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/services/weekly-cert/review.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,MAAM,gBAAgB,CAAC;AACjD,OAAO,EAAE,OAAO,EAAE,MAAM,wBAAwB,CAAC;AACjD,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;;AAG1C,qBAGa,aAAa;IAKZ,OAAO,CAAC,OAAO;IAAmB,SAAS,EAAE,eAAe;IAAE,OAAO,CAAC,QAAQ;IAH1F,OAAO,CAAC,UAAU,CAAsC;IACxD,OAAO,CAAC,gCAAgC,CAAQ;gBAE5B,OAAO,EAAG,OAAO,EAAS,SAAS,EAAE,eAAe,EAAU,QAAQ,EAAG,QAAQ;IAErG,OAAO,CAAC,kBAAkB;IAIpB,YAAY,CAAC,KAAK,EAAG,OAAO;YAgCpB,8BAA8B;IAI5C,OAAO,CAAC,eAAe;YAIX,UAAU;IAwBtB,OAAO,CAAC,SAAS;YAEH,+BAA+B;IAevC,mBAAmB;yCA5Fd,aAAa;6CAAb,aAAa;CAiGzB"}
@@ -0,0 +1,59 @@
1
+ import { HttpClient } from '@angular/common/http';
2
+ import { BaseService } from '../../services/base-service';
3
+ import { UtilService } from '../../services/util/util.service';
4
+ import { EmployerInfoModel } from '../../models/weekly-cert/employer-info-v2-model';
5
+ import { WeeklyCertEligibilityModelV2 } from '../../models/weekly-cert/weekly-cert-eligibility-v2-model';
6
+ import { WeeklyCertificationModel } from '../../models/weekly-cert/weekly-certification-v2-model';
7
+ import { WorkSearchModel } from '../../models/weekly-cert/work-search-v2-model';
8
+ import { WorkSearchJournalModel, WorkSearchRecordModel } from '../../models/weekly-cert/work-search-record-v2-model';
9
+ import { StatusModel } from '../../models/questionnaire/StatusModel';
10
+ import { AdminLeaveDetailsModel } from '../../models/weekly-cert/admin-leave-details-model';
11
+ import * as i0 from "@angular/core";
12
+ export declare class WeeklyCertServiceV2 extends BaseService {
13
+ util: UtilService;
14
+ http: HttpClient;
15
+ setServiceContext(): void;
16
+ setServicePort(): void;
17
+ setServiceProtocol(): void;
18
+ setServiceHost(): void;
19
+ weeklyCertData: WeeklyCertificationModel;
20
+ weeklyCertServerData: WeeklyCertEligibilityModelV2;
21
+ workSearchJournal: WorkSearchJournalModel;
22
+ adminLeaveDetailsModel: AdminLeaveDetailsModel;
23
+ employerData: EmployerInfoModel;
24
+ qeStatusModel: StatusModel;
25
+ constructor(util: UtilService, http: HttpClient);
26
+ checkWeeklyEligibility(): import("rxjs").Observable<WeeklyCertEligibilityModelV2>;
27
+ submitWeeklyCertification(last4OfSsn: string): import("rxjs").Observable<any>;
28
+ getClaimantWorkSearchJournalRecords(weekToCertify: string): import("rxjs").Observable<WorkSearchJournalModel>;
29
+ determineQuestionniareToOpen(): import("rxjs").Observable<any>;
30
+ getSundayDateAsString(): string;
31
+ getSaturdayDateAsString(): string;
32
+ getSaturdayDate(): Date;
33
+ getSundayDate(): Date;
34
+ getDisplayWorkSearchScreen(): boolean;
35
+ getEmployerRecords(): EmployerInfoModel[];
36
+ getWorkSearchData(): WorkSearchModel;
37
+ setWorkSearchData(workSearchData: WorkSearchModel): void;
38
+ setAdminLeaveDetails(adminLeaveDetails: AdminLeaveDetailsModel): void;
39
+ getClaimTypeFlag(): any;
40
+ getWorkSearchRecordsCount(): number;
41
+ getWorkSearchRecords(): WorkSearchRecordModel[];
42
+ removeWorkSearchRecord(index: number): void;
43
+ removeEmployerRecord(index: number): void;
44
+ getEmployerRecordsCount(): number;
45
+ getTotalEarningAmount(): number;
46
+ resetWeeklyCertData(): void;
47
+ getWorkSearchRecordsCountWithNotHiredStatus(): number;
48
+ getWorkSearchRecordsCountWithHiredStatus(): number;
49
+ checkIfInadequateWorkSearchQuestionnaireShouldBeOpened(): boolean;
50
+ hasReferralRecords(): boolean;
51
+ convertNumberToBoolean(value: any): boolean;
52
+ setNullIfEmpty(value: any): any;
53
+ getWorkSearchWaived(): boolean;
54
+ getWaitingWeekServed(): boolean;
55
+ getHidIsSeapParticipant(): string;
56
+ static ɵfac: i0.ɵɵFactoryDeclaration<WeeklyCertServiceV2, never>;
57
+ static ɵprov: i0.ɵɵInjectableDeclaration<WeeklyCertServiceV2>;
58
+ }
59
+ //# sourceMappingURL=weekly-cert-v2.service.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"weekly-cert-v2.service.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/services/weekly-cert/weekly-cert-v2.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAElD,OAAO,EAAE,WAAW,EAAE,MAAM,6BAA6B,CAAC;AAC1D,OAAO,EAAE,WAAW,EAAE,MAAM,kCAAkC,CAAC;AAG/D,OAAO,EAAE,iBAAiB,EAAE,MAAM,iDAAiD,CAAC;AACpF,OAAO,EAAE,4BAA4B,EAAE,MAAM,2DAA2D,CAAC;AACzG,OAAO,EAAkB,wBAAwB,EAAE,MAAM,wDAAwD,CAAC;AAClH,OAAO,EAAE,eAAe,EAAE,MAAM,+CAA+C,CAAC;AAChF,OAAO,EAAE,sBAAsB,EAAE,qBAAqB,EAAE,MAAM,sDAAsD,CAAC;AACrH,OAAO,EAAE,WAAW,EAAE,MAAM,wCAAwC,CAAC;AACrE,OAAO,EAAE,sBAAsB,EAAE,MAAM,oDAAoD,CAAC;;AAG5F,qBAGa,mBAAoB,SAAQ,WAAW;IA2B/B,IAAI,EAAE,WAAW;IAAS,IAAI,EAAE,UAAU;IAzB7D,iBAAiB;IAGjB,cAAc;IAGd,kBAAkB;IAGlB,cAAc;IAIP,cAAc,EAAE,wBAAwB,CAAkC;IAE1E,oBAAoB,EAAE,4BAA4B,CAAsC;IAExF,iBAAiB,EAAE,sBAAsB,CAAgC;IAEzE,sBAAsB,EAAE,sBAAsB,CAAgC;IAE9E,YAAY,EAAE,iBAAiB,CAA2B;IAE1D,aAAa,EAAE,WAAW,CAAC;gBAEf,IAAI,EAAE,WAAW,EAAS,IAAI,EAAE,UAAU;IAI7D,sBAAsB;IAItB,yBAAyB,CAAC,UAAU,EAAE,MAAM;IAK5C,mCAAmC,CAAC,aAAa,EAAE,MAAM;IAIzD,4BAA4B;IAI5B,qBAAqB,IAAI,MAAM;IAI/B,uBAAuB,IAAI,MAAM;IAIjC,eAAe;IAIf,aAAa;IAIb,0BAA0B;IAI1B,kBAAkB,IAAI,iBAAiB,EAAE;IAIzC,iBAAiB,IAAI,eAAe;IAIpC,iBAAiB,CAAC,cAAc,EAAE,eAAe;IAIjD,oBAAoB,CAAC,iBAAiB,EAAE,sBAAsB;IAI9D,gBAAgB;IAKhB,yBAAyB,IAAI,MAAM;IAQnC,oBAAoB,IAAI,qBAAqB,EAAE;IAI/C,sBAAsB,CAAC,KAAK,EAAE,MAAM;IAIpC,oBAAoB,CAAC,KAAK,EAAE,MAAM;IAIlC,uBAAuB,IAAI,MAAM;IAQjC,qBAAqB,IAAI,MAAM;IAU/B,mBAAmB;IAInB,2CAA2C;IAe3C,wCAAwC,IAAI,MAAM;IAelD,sDAAsD,IAAI,OAAO;IAqBjE,kBAAkB,IAAI,OAAO;IAc7B,sBAAsB,CAAC,KAAK,KAAA;IAU5B,cAAc,CAAC,KAAK,KAAA;IAOpB,mBAAmB;IAInB,oBAAoB;IAIpB,uBAAuB;yCA7NZ,mBAAmB;6CAAnB,mBAAmB;CAgO/B"}
@@ -0,0 +1,26 @@
1
+ import { HttpClient } from '@angular/common/http';
2
+ import { BaseService } from '../../services/base-service';
3
+ import { UtilService } from '../../services/util/util.service';
4
+ import { WorkSearchJournalModel, WorkSearchRecordModel } from '../../models/weekly-cert/work-search-record-v2-model';
5
+ import * as i0 from "@angular/core";
6
+ export declare class WorkSearchService extends BaseService {
7
+ util: UtilService;
8
+ http: HttpClient;
9
+ workSearchJournal: WorkSearchJournalModel;
10
+ setServiceContext(): void;
11
+ setServicePort(): void;
12
+ setServiceProtocol(): void;
13
+ setServiceHost(): void;
14
+ constructor(util: UtilService, http: HttpClient);
15
+ getSundayDateAsString(): string;
16
+ getSaturdayDateAsString(): string;
17
+ getSaturdayDate(): Date;
18
+ getSundayDate(): Date;
19
+ fetchWorkSearchJournals(): import("rxjs").Observable<WorkSearchJournalModel>;
20
+ saveWorkSearchJournal(journal: WorkSearchRecordModel): import("rxjs").Observable<unknown>;
21
+ deleteWorkSearchJournal(journalId: any): import("rxjs").Observable<unknown>;
22
+ getWaitingWeekServed(): boolean;
23
+ static ɵfac: i0.ɵɵFactoryDeclaration<WorkSearchService, never>;
24
+ static ɵprov: i0.ɵɵInjectableDeclaration<WorkSearchService>;
25
+ }
26
+ //# sourceMappingURL=work-search.service.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"work-search.service.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/services/weekly-cert/work-search.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAElD,OAAO,EAAE,WAAW,EAAE,MAAM,6BAA6B,CAAC;AAC1D,OAAO,EAAE,WAAW,EAAE,MAAM,kCAAkC,CAAC;AAE/D,OAAO,EAAE,sBAAsB,EAAE,qBAAqB,EAAE,MAAM,sDAAsD,CAAC;;AAErH,qBAGa,iBAAkB,SAAQ,WAAW;IAiB7B,IAAI,EAAE,WAAW;IAAS,IAAI,EAAE,UAAU;IAf7D,iBAAiB,EAAG,sBAAsB,CAAC;IAE3C,iBAAiB;IAGjB,cAAc;IAGd,kBAAkB;IAGlB,cAAc;gBAIK,IAAI,EAAE,WAAW,EAAS,IAAI,EAAE,UAAU;IAI7D,qBAAqB,IAAI,MAAM;IAI/B,uBAAuB,IAAI,MAAM;IAIjC,eAAe;IAIf,aAAa;IAIb,uBAAuB;IAIvB,qBAAqB,CAAC,OAAO,EAAG,qBAAqB;IAIrD,uBAAuB,CAAC,SAAS,KAAA;IAIjC,oBAAoB;yCAjDT,iBAAiB;6CAAjB,iBAAiB;CAoD7B"}
@@ -63,5 +63,16 @@ export declare class AppValidators {
63
63
  [key: string]: any;
64
64
  } | null;
65
65
  static areAllDigitsSame(str: string): boolean;
66
+ static amountLessThanOne(control: AbstractControl): {
67
+ [s: string]: boolean;
68
+ };
69
+ /***
70
+ * This method checks if the entered city has length<=30
71
+ */
72
+ static isValidWsCity(control: AbstractControl): {
73
+ [s: string]: boolean;
74
+ };
75
+ static isEqual(value: any): ValidatorFn;
76
+ static isValidWebsite(control: AbstractControl): ValidationErrors | null;
66
77
  }
67
78
  //# sourceMappingURL=AppValidators.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"AppValidators.d.ts","sourceRoot":"","sources":["../../../../projects/ngx-reusa-app-lib/src/lib/validations/AppValidators.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAa,gBAAgB,EAAE,gBAAgB,EAAE,WAAW,EAAc,MAAM,gBAAgB,CAAC;AACzH;;;;GAIG;AACH,qBAAa,aAAa;IAExB,MAAM,CAAC,wBAAwB,CAAC,CAAC,EAAE,eAAe,GAAG;QAAE,OAAO,EAAE,OAAO,CAAA;KAAE;IAMzE,MAAM,CAAC,mCAAmC,CAAC,SAAS,EAAE,gBAAgB;;;IAOtE,MAAM,CAAC,gBAAgB,CAAC,WAAW,EAAE,MAAM,EAAE,mBAAmB,EAAE,MAAM,eAC7C,gBAAgB;IAgB3C,MAAM,CAAC,gBAAgB,CAAC,SAAS,EAAE,WAAW,WACvB,gBAAgB,KAAG,gBAAgB,GAAG,IAAI;IAQjE,MAAM,CAAC,+BAA+B,CAAC,WAAW,GAAE,MAAU,EAAE,IAAI,CAAC,EAAE,MAAM,GAAG,WAAW;IAoB3F,MAAM,CAAC,mBAAmB,CAAC,SAAS,KAAA;IAcpC;;;;;;;;OAQG;IACF,MAAM,CAAC,KAAK,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,gBAAgB,GAAG,WAAW;IAehE;;;;;;MAME;IACJ,MAAM,CAAC,oBAAoB,CAAC,OAAO,EAAE,eAAe,GAAG;QAAE,CAAC,CAAC,EAAE,MAAM,GAAG,OAAO,CAAA;KAAE;IAiB/E,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,eAAe,GAAG;QAAE,CAAC,CAAC,EAAE,MAAM,GAAG,OAAO,CAAA;KAAE;IAUzE,MAAM,CAAC,sBAAsB,CAAC,OAAO,EAAE,eAAe,GAAG;QAAE,CAAC,CAAC,EAAE,MAAM,GAAG,OAAO,CAAA;KAAE;IAMjF,MAAM,CAAC,eAAe,CAAC,MAAM,KAAA;IAK7B,MAAM,CAAC,QAAQ,CAAC,MAAM,KAAA;IAKtB,MAAM,CAAC,SAAS,CAAC,IAAI,EAAG,IAAI,EAAE,EAAE,EAAE,IAAI,GAAI,WAAW;IAarD,MAAM,CAAC,aAAa,CAAC,IAAI,EAAE,IAAI,EAAE,EAAE,EAAC,IAAI,GAAI,WAAW;IAavD,MAAM,CAAC,KAAK,CAAC,mBAAmB,EAAE,MAAM,EAAE,KAAK,EAAE,gBAAgB,GAAG,WAAW;IAkB/E;;;;;;;;OAQG;IACH,MAAM,CAAC,QAAQ,CAAC,mBAAmB,EAAE,MAAM,EAAE,KAAK,EAAE,gBAAgB,GAAG,WAAW;IAkBlF,MAAM,CAAC,OAAO,CAAC,KAAK,EAAG,IAAI,aAGR,eAAe;;;IAelC,MAAM,CAAC,IAAI,CAAC,OAAO,EAAE,eAAe,GAAG;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAA;KAAE,GAAE,IAAI;IAUnE,MAAM,CAAC,gBAAgB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO;CAI9C"}
1
+ {"version":3,"file":"AppValidators.d.ts","sourceRoot":"","sources":["../../../../projects/ngx-reusa-app-lib/src/lib/validations/AppValidators.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAa,gBAAgB,EAAE,gBAAgB,EAAE,WAAW,EAAc,MAAM,gBAAgB,CAAC;AACzH;;;;GAIG;AACH,qBAAa,aAAa;IAExB,MAAM,CAAC,wBAAwB,CAAC,CAAC,EAAE,eAAe,GAAG;QAAE,OAAO,EAAE,OAAO,CAAA;KAAE;IAMzE,MAAM,CAAC,mCAAmC,CAAC,SAAS,EAAE,gBAAgB;;;IAOtE,MAAM,CAAC,gBAAgB,CAAC,WAAW,EAAE,MAAM,EAAE,mBAAmB,EAAE,MAAM,eAC7C,gBAAgB;IAgB3C,MAAM,CAAC,gBAAgB,CAAC,SAAS,EAAE,WAAW,WACvB,gBAAgB,KAAG,gBAAgB,GAAG,IAAI;IAQjE,MAAM,CAAC,+BAA+B,CAAC,WAAW,GAAE,MAAU,EAAE,IAAI,CAAC,EAAE,MAAM,GAAG,WAAW;IAoB3F,MAAM,CAAC,mBAAmB,CAAC,SAAS,KAAA;IAcpC;;;;;;;;OAQG;IACF,MAAM,CAAC,KAAK,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,gBAAgB,GAAG,WAAW;IAehE;;;;;;MAME;IACJ,MAAM,CAAC,oBAAoB,CAAC,OAAO,EAAE,eAAe,GAAG;QAAE,CAAC,CAAC,EAAE,MAAM,GAAG,OAAO,CAAA;KAAE;IAiB/E,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,eAAe,GAAG;QAAE,CAAC,CAAC,EAAE,MAAM,GAAG,OAAO,CAAA;KAAE;IAUzE,MAAM,CAAC,sBAAsB,CAAC,OAAO,EAAE,eAAe,GAAG;QAAE,CAAC,CAAC,EAAE,MAAM,GAAG,OAAO,CAAA;KAAE;IAMjF,MAAM,CAAC,eAAe,CAAC,MAAM,KAAA;IAK7B,MAAM,CAAC,QAAQ,CAAC,MAAM,KAAA;IAKtB,MAAM,CAAC,SAAS,CAAC,IAAI,EAAG,IAAI,EAAE,EAAE,EAAE,IAAI,GAAI,WAAW;IAarD,MAAM,CAAC,aAAa,CAAC,IAAI,EAAE,IAAI,EAAE,EAAE,EAAC,IAAI,GAAI,WAAW;IAavD,MAAM,CAAC,KAAK,CAAC,mBAAmB,EAAE,MAAM,EAAE,KAAK,EAAE,gBAAgB,GAAG,WAAW;IAkB/E;;;;;;;;OAQG;IACH,MAAM,CAAC,QAAQ,CAAC,mBAAmB,EAAE,MAAM,EAAE,KAAK,EAAE,gBAAgB,GAAG,WAAW;IAkBlF,MAAM,CAAC,OAAO,CAAC,KAAK,EAAG,IAAI,aAGR,eAAe;;;IAelC,MAAM,CAAC,IAAI,CAAC,OAAO,EAAE,eAAe,GAAG;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAA;KAAE,GAAE,IAAI;IAUnE,MAAM,CAAC,gBAAgB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO;IAI7C,MAAM,CAAC,iBAAiB,CAAC,OAAO,EAAE,eAAe,GAAG;QAAE,CAAC,CAAC,EAAE,MAAM,GAAG,OAAO,CAAA;KAAE;IAO5E;;QAEI;IACJ,MAAM,CAAC,aAAa,CAAC,OAAO,EAAE,eAAe,GAAG;QAAE,CAAC,CAAC,EAAE,MAAM,GAAG,OAAO,CAAA;KAAE;IAQxE,MAAM,CAAC,OAAO,CAAC,KAAK,KAAA,GAAI,WAAW;IASnC,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,eAAe,GAAG,gBAAgB,GAAG,IAAI;CASzE"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reusa/ngx-reusa-app-lib",
3
- "version": "0.0.1301",
3
+ "version": "0.0.1303",
4
4
  "peerDependencies": {},
5
5
  "dependencies": {
6
6
  "tslib": "^2.0.0"
package/public-api.d.ts CHANGED
@@ -21,6 +21,7 @@ export * from './lib/services/cmp-service/cmp.service';
21
21
  export * from './lib/services/claimant-context/claimant-context.service';
22
22
  export * from './lib/services/claims/claims.service';
23
23
  export * from './lib/services/offline-claims/offline-claims.service';
24
+ export * from './lib/services/weekly-cert/weekly-cert-v2.service';
24
25
  export * from './lib/components/ssn/ssn.component';
25
26
  export * from './lib/components/test/test.component';
26
27
  export * from './lib/components/footer/footer.component';
@@ -98,6 +99,18 @@ export * from './lib/components/address-suggestion/address-suggestion.component'
98
99
  export * from './lib/components/claim-info/claim-info.component';
99
100
  export * from './lib/components/history-page/history-page.component';
100
101
  export * from './lib/components/dua-request-page/dua-request-page.component';
102
+ export * from './lib/components/weekly-certification/weekly-certification.component';
103
+ export * from './lib/components/weekly-work-search-journal/weekly-work-search-journal.component';
104
+ export * from './lib/components/weekly-acknowledgement-ms/acknowledgement-ms.component';
105
+ export * from './lib/components/weekly-acknowledgement-v2/acknowledgement.component-v2';
106
+ export * from './lib/components/weekly-confirmation/confirmation.component';
107
+ export * from './lib/components/weekly-interim-confirmation/interim-confirmation.component';
108
+ export * from './lib/components/weekly-summary-v2/summary.component-v2';
109
+ export * from './lib/components/weekly-work-search-counter/work-search-counter.component';
110
+ export * from './lib/components/weekly-work-search-employer-me/work-search-employer.component-me';
111
+ export * from './lib/components/weekly-work-search-employer-ms/work-search-employer-ms.component';
112
+ export * from './lib/components/weekly-work-search-employer-v2/work-search-employer.component-v2';
113
+ export * from './lib/components/weekly-work-search-question-v2/work-search-question.component-v2';
101
114
  export * from './lib/pages/common/accessibility-policy/accessibility-policy.page';
102
115
  export * from './lib/pages/common/privacy-disclaimer/privacy-disclaimer.page';
103
116
  export * from './lib/pages/common/security-policy/security-policy.page';
@@ -132,6 +145,7 @@ export * from './lib/components/questionnaire/input-focus.directive';
132
145
  export * from './lib/pipes/translate/dynamic-translate.pipe';
133
146
  export * from './lib/pipes/trust-html/trust-html.pipe';
134
147
  export * from './lib/directives/strip-invisible-characters/strip-invisible-characters.directive';
148
+ export * from './lib/pipes/format-worksearch/format-worksearch.pipe';
135
149
  export * from './lib/models/ErrorModel';
136
150
  export * from './lib/models/UserModel';
137
151
  export * from './lib/pages/BasePage';
@@ -1 +1 @@
1
- {"version":3,"file":"public-api.d.ts","sourceRoot":"","sources":["../../projects/ngx-reusa-app-lib/src/public-api.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"public-api.d.ts","sourceRoot":"","sources":["../../projects/ngx-reusa-app-lib/src/public-api.ts"],"names":[],"mappings":"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"}