@ksremp/ngx-ksremp-app-lib 1.0.0
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.
- package/README.md +46 -0
- package/esm2022/ksremp-ngx-ksremp-app-lib.mjs +5 -0
- package/esm2022/lib/annimations/app-animations.mjs +37 -0
- package/esm2022/lib/components/add-employer/add-employer.component.mjs +2655 -0
- package/esm2022/lib/components/add-participant/add-participant.component.mjs +399 -0
- package/esm2022/lib/components/add-payment/add-payment.component.mjs +201 -0
- package/esm2022/lib/components/address/address.component.mjs +565 -0
- package/esm2022/lib/components/bank-details/bank-details.component.mjs +416 -0
- package/esm2022/lib/components/captcha/captcha.component.mjs +181 -0
- package/esm2022/lib/components/card/card.component.mjs +55 -0
- package/esm2022/lib/components/contact-us/contact-us.component.mjs +984 -0
- package/esm2022/lib/components/content/content.component.mjs +61 -0
- package/esm2022/lib/components/correspondence-download/correspondence-download.component.mjs +89 -0
- package/esm2022/lib/components/dashboard-card/dashboard-card.component.mjs +223 -0
- package/esm2022/lib/components/dependent-grid/dependent-grid.component.mjs +301 -0
- package/esm2022/lib/components/disclosure/disclosure.component.mjs +60 -0
- package/esm2022/lib/components/dropdown/dropdown.component.mjs +1974 -0
- package/esm2022/lib/components/dropdown/dropdown.interface.mjs +2 -0
- package/esm2022/lib/components/email-update/email-update.component.mjs +376 -0
- package/esm2022/lib/components/employer-grid/employer-grid.component.mjs +1102 -0
- package/esm2022/lib/components/error/error.component.mjs +86 -0
- package/esm2022/lib/components/fav-menu/fav-menu.component.mjs +163 -0
- package/esm2022/lib/components/file-download/file-download.component.mjs +104 -0
- package/esm2022/lib/components/file-uploader/file-uploader.component.mjs +315 -0
- package/esm2022/lib/components/footer/footer.component.mjs +350 -0
- package/esm2022/lib/components/header/header.component.mjs +535 -0
- package/esm2022/lib/components/help/help.component.mjs +49 -0
- package/esm2022/lib/components/idle-detector/idle-detector.component.mjs +76 -0
- package/esm2022/lib/components/info/info.component.mjs +187 -0
- package/esm2022/lib/components/job-search-result-page/job-search-result-page.component.mjs +212 -0
- package/esm2022/lib/components/job-title/job-title.component.mjs +162 -0
- package/esm2022/lib/components/legal-disclaimar/legal-disclaimar.component.mjs +617 -0
- package/esm2022/lib/components/lexis-nexis/lexis-nexis.component.mjs +402 -0
- package/esm2022/lib/components/link/link.component.mjs +131 -0
- package/esm2022/lib/components/maintenance-detector/maintenance-detector.component.mjs +43 -0
- package/esm2022/lib/components/mask/mask.component.mjs +48 -0
- package/esm2022/lib/components/menu/menu.component.mjs +452 -0
- package/esm2022/lib/components/mfa/mfa.component.mjs +574 -0
- package/esm2022/lib/components/mfa-popup/mfa-popup.component.mjs +57 -0
- package/esm2022/lib/components/mfa2/mfa2.component.mjs +285 -0
- package/esm2022/lib/components/money-expect/money-expect.component.mjs +98 -0
- package/esm2022/lib/components/msg/msg.component.mjs +48 -0
- package/esm2022/lib/components/news/news.component.mjs +90 -0
- package/esm2022/lib/components/overlay-info/overlay-info.component.mjs +213 -0
- package/esm2022/lib/components/page/page.component.mjs +136 -0
- package/esm2022/lib/components/profile/profile.component.mjs +505 -0
- package/esm2022/lib/components/profile-redirect/profile-redirect.component.mjs +70 -0
- package/esm2022/lib/components/questionnaire/AppValidators.mjs +541 -0
- package/esm2022/lib/components/questionnaire/FbConstants.mjs +8 -0
- package/esm2022/lib/components/questionnaire/SelectItem.mjs +2 -0
- package/esm2022/lib/components/questionnaire/account-success/account-success.page.mjs +310 -0
- package/esm2022/lib/components/questionnaire/common-success/common-success.page.mjs +528 -0
- package/esm2022/lib/components/questionnaire/dynamic-form-panel.component.mjs +1115 -0
- package/esm2022/lib/components/questionnaire/dynamic-form-question.component.mjs +2521 -0
- package/esm2022/lib/components/questionnaire/dynamic-form.component.mjs +1788 -0
- package/esm2022/lib/components/questionnaire/form-builder/form-builder.page.mjs +256 -0
- package/esm2022/lib/components/questionnaire/input-focus.directive.mjs +44 -0
- package/esm2022/lib/components/questionnaire/multi-questionnaire/multi-questionnaire.component.mjs +255 -0
- package/esm2022/lib/components/questionnaire/question-base.mjs +3 -0
- package/esm2022/lib/components/questionnaire/question-control.service.mjs +408 -0
- package/esm2022/lib/components/questionnaire/question.service.mjs +33 -0
- package/esm2022/lib/components/questionnaire/render-questionnaire/render-questionnaire.page.mjs +282 -0
- package/esm2022/lib/components/read-more/read-more.component.mjs +72 -0
- package/esm2022/lib/components/requalify-lift-previous-issues/requalify-lift-previous-issues.component.mjs +690 -0
- package/esm2022/lib/components/search-employer/search-employer.component.mjs +132 -0
- package/esm2022/lib/components/security-question/security-question.component.mjs +199 -0
- package/esm2022/lib/components/select/select.component.mjs +159 -0
- package/esm2022/lib/components/sign-ssn/sign-ssn.component.mjs +141 -0
- package/esm2022/lib/components/ssn/ssn.component.mjs +44 -0
- package/esm2022/lib/components/ssn-reverify/ssn-reverify.component.mjs +171 -0
- package/esm2022/lib/components/test/test.component.mjs +19 -0
- package/esm2022/lib/components/user-login/user-login.component.mjs +619 -0
- package/esm2022/lib/components/weekly-cert-employer/weekly-cert-employer.component.mjs +772 -0
- package/esm2022/lib/components/weekly-cert-employer-grid/weekly-cert-employer-grid.component.mjs +356 -0
- package/esm2022/lib/directives/auto-focus/auto-focus.directive.mjs +31 -0
- package/esm2022/lib/directives/caps-lock.directive.mjs +38 -0
- package/esm2022/lib/directives/required-roles/required-roles.directive.mjs +30 -0
- package/esm2022/lib/enums/EmailStatusEnum.mjs +9 -0
- package/esm2022/lib/guards/auth.guard.mjs +138 -0
- package/esm2022/lib/guards/no-login/no-login.guard.mjs +21 -0
- package/esm2022/lib/interceptors/error-interceptor/http-error-interceptor.mjs +107 -0
- package/esm2022/lib/interceptors/header-interceptor/http-header.interceptor.mjs +99 -0
- package/esm2022/lib/models/AddressComponentModel.mjs +3 -0
- package/esm2022/lib/models/BankDetailsComponentModel.mjs +3 -0
- package/esm2022/lib/models/BankDetailsModel.mjs +3 -0
- package/esm2022/lib/models/CinRequalificationCriteriaModel.mjs +3 -0
- package/esm2022/lib/models/EmployerDetailSearchResult.mjs +6 -0
- package/esm2022/lib/models/ErrorModel.mjs +6 -0
- package/esm2022/lib/models/FileModel.mjs +2 -0
- package/esm2022/lib/models/LexisNexisAccountCreationModel.mjs +2 -0
- package/esm2022/lib/models/LexisNexisAuthSelectionRequestModel.mjs +2 -0
- package/esm2022/lib/models/LexisNexisAuthSelectionResponseModel.mjs +2 -0
- package/esm2022/lib/models/LexisNexisEnabledResponseModel.mjs +2 -0
- package/esm2022/lib/models/LexisNexisResponseModel.mjs +3 -0
- package/esm2022/lib/models/LibConstants.mjs +132 -0
- package/esm2022/lib/models/NewsAndAnnouncementModel.mjs +3 -0
- package/esm2022/lib/models/NotificationModel.mjs +6 -0
- package/esm2022/lib/models/OtpAuthModel.mjs +3 -0
- package/esm2022/lib/models/PartialEmploymentModel.mjs +3 -0
- package/esm2022/lib/models/PaymentComponentModel.mjs +2 -0
- package/esm2022/lib/models/RequalifyLiftPageModel.mjs +11 -0
- package/esm2022/lib/models/SecurityQuestionModel.mjs +3 -0
- package/esm2022/lib/models/SsaVerificationModel.mjs +3 -0
- package/esm2022/lib/models/TrendModel.mjs +3 -0
- package/esm2022/lib/models/UserDetailsModel.mjs +3 -0
- package/esm2022/lib/models/UserModel.mjs +6 -0
- package/esm2022/lib/models/case/CaseAttachmentModel.mjs +3 -0
- package/esm2022/lib/models/claimant/ClaimantModel.mjs +3 -0
- package/esm2022/lib/models/claimant/JobResultsData.mjs +3 -0
- package/esm2022/lib/models/claimant/MatchingJobs.mjs +3 -0
- package/esm2022/lib/models/claimant/ResetPasswordModel.mjs +3 -0
- package/esm2022/lib/models/cmp/CaseCoreModel.mjs +3 -0
- package/esm2022/lib/models/cmp/ComplaintCategoryModel.mjs +3 -0
- package/esm2022/lib/models/cmp/ComplaintCategoryOutputModel.mjs +5 -0
- package/esm2022/lib/models/cmp/ContactUsModel.mjs +3 -0
- package/esm2022/lib/models/cmp/EmailTemplateModel.mjs +3 -0
- package/esm2022/lib/models/cmp/contactUsInqueryModel.mjs +7 -0
- package/esm2022/lib/models/cmp/messageRourceModel.mjs +3 -0
- package/esm2022/lib/models/dashboard-model.mjs +3 -0
- package/esm2022/lib/models/dependent.model.mjs +8 -0
- package/esm2022/lib/models/questionnaire/AutocoderModel.mjs +3 -0
- package/esm2022/lib/models/questionnaire/ClaimAppEmpRequestModel.mjs +3 -0
- package/esm2022/lib/models/questionnaire/ClaimAppEmpResponseModel.mjs +8 -0
- package/esm2022/lib/models/questionnaire/ClaimAppEmployerDetailsModel.mjs +6 -0
- package/esm2022/lib/models/questionnaire/ClaimOnlyEmployerDataModel.mjs +3 -0
- package/esm2022/lib/models/questionnaire/ComboModel.mjs +1010 -0
- package/esm2022/lib/models/questionnaire/ElementsModel.mjs +8 -0
- package/esm2022/lib/models/questionnaire/EmployerDetailSearchResult.mjs +3 -0
- package/esm2022/lib/models/questionnaire/EmployerWagesModel.mjs +3 -0
- package/esm2022/lib/models/questionnaire/FBConfigModel.mjs +6 -0
- package/esm2022/lib/models/questionnaire/KeyValueModel.mjs +3 -0
- package/esm2022/lib/models/questionnaire/LegalDiscaimarModel.mjs +3 -0
- package/esm2022/lib/models/questionnaire/LoaderModel.mjs +3 -0
- package/esm2022/lib/models/questionnaire/PollingStatusModel.mjs +3 -0
- package/esm2022/lib/models/questionnaire/QtrYearEmployerWageModel.mjs +3 -0
- package/esm2022/lib/models/questionnaire/QuestionnaireQueryModel.mjs +8 -0
- package/esm2022/lib/models/questionnaire/QuestionnaireReturnModel.mjs +11 -0
- package/esm2022/lib/models/questionnaire/QuestionnaireSaveModel.mjs +3 -0
- package/esm2022/lib/models/questionnaire/RequalifyLiftIssuesModel.mjs +3 -0
- package/esm2022/lib/models/questionnaire/ServiceActionResponseModel.mjs +3 -0
- package/esm2022/lib/models/questionnaire/StatusModel.mjs +6 -0
- package/esm2022/lib/models/questionnaire/SuccessPageElement.mjs +3 -0
- package/esm2022/lib/models/questionnaire/UI512AResponseModel.mjs +3 -0
- package/esm2022/lib/models/questionnaire/ValidationModel.mjs +3 -0
- package/esm2022/lib/ngx-reusa-app-lib.component.mjs +23 -0
- package/esm2022/lib/ngx-reusa-app-lib.module.mjs +410 -0
- package/esm2022/lib/ngx-reusa-app-lib.service.mjs +14 -0
- package/esm2022/lib/pages/BasePage.mjs +98 -0
- package/esm2022/lib/pages/common/accessibility-policy/accessibility-policy.page.mjs +77 -0
- package/esm2022/lib/pages/common/change-password/change-password.page.mjs +471 -0
- package/esm2022/lib/pages/common/landing/landing.component.mjs +209 -0
- package/esm2022/lib/pages/common/landing2/landing2.component.mjs +244 -0
- package/esm2022/lib/pages/common/login/login.component.mjs +533 -0
- package/esm2022/lib/pages/common/not-found/not-found.page.mjs +24 -0
- package/esm2022/lib/pages/common/privacy-disclaimer/privacy-disclaimer.page.mjs +306 -0
- package/esm2022/lib/pages/common/security-policy/security-policy.page.mjs +61 -0
- package/esm2022/lib/pages/common/unauthorized/unauthorized.page.mjs +24 -0
- package/esm2022/lib/pages/popovers/language/language.page.mjs +62 -0
- package/esm2022/lib/pages/popovers/my-notifications/my-notifications.page.mjs +204 -0
- package/esm2022/lib/pages/popovers/my-profile/my-profile.page.mjs +129 -0
- package/esm2022/lib/pages/popovers/user-search/user-search.component.mjs +251 -0
- package/esm2022/lib/pipes/filter.pipe.mjs +30 -0
- package/esm2022/lib/pipes/mask/mask.email.pipe.mjs +23 -0
- package/esm2022/lib/pipes/proper-case/proper-case.pipe.mjs +27 -0
- package/esm2022/lib/pipes/translate/dynamic-translate.pipe.mjs +44 -0
- package/esm2022/lib/pipes/trust-html/trust-html.pipe.mjs +20 -0
- package/esm2022/lib/services/base-service.mjs +50 -0
- package/esm2022/lib/services/captcha/captcha.service.mjs +46 -0
- package/esm2022/lib/services/case-service/case.service.mjs +47 -0
- package/esm2022/lib/services/chatbot/chatbot.service.mjs +258 -0
- package/esm2022/lib/services/chatbot/script.const.mjs +42 -0
- package/esm2022/lib/services/claimant/claimant.service.mjs +31 -0
- package/esm2022/lib/services/claimant-context/claimant-context.service.mjs +48 -0
- package/esm2022/lib/services/claimant-service/claimant-usps-redirect.service.mjs +36 -0
- package/esm2022/lib/services/claimant-service/claimant.service.mjs +62 -0
- package/esm2022/lib/services/claims/claims.service.mjs +102 -0
- package/esm2022/lib/services/cmp-service/cmp.service.mjs +84 -0
- package/esm2022/lib/services/dms-service/dms.service.mjs +60 -0
- package/esm2022/lib/services/fpjs/fingerprint.service.mjs +70 -0
- package/esm2022/lib/services/google-analytics/google-analytics.service.mjs +29 -0
- package/esm2022/lib/services/help/help.service.mjs +63 -0
- package/esm2022/lib/services/idle/idle.service.mjs +159 -0
- package/esm2022/lib/services/lexis-nexis/lexis.nexis.service.mjs +60 -0
- package/esm2022/lib/services/logger/logger.service.mjs +67 -0
- package/esm2022/lib/services/login/login.service.mjs +343 -0
- package/esm2022/lib/services/maintenance/maintenance.service.mjs +21 -0
- package/esm2022/lib/services/notification/notification.service.mjs +113 -0
- package/esm2022/lib/services/ovp/ovp.service.mjs +43 -0
- package/esm2022/lib/services/questionnaire/questionnaire.service.mjs +69 -0
- package/esm2022/lib/services/questionnaire/validation.service.mjs +59 -0
- package/esm2022/lib/services/security-service/security.service.mjs +42 -0
- package/esm2022/lib/services/tour/tour.service.mjs +60 -0
- package/esm2022/lib/services/util/util.service.mjs +450 -0
- package/esm2022/lib/services/weekly-cert/weekly-cert-v2.service.mjs +42 -0
- package/esm2022/lib/validations/AppRegex.mjs +51 -0
- package/esm2022/lib/validations/AppValidators.mjs +253 -0
- package/esm2022/public-api.mjs +138 -0
- package/fesm2022/ksremp-ngx-ksremp-app-lib.mjs +33786 -0
- package/fesm2022/ksremp-ngx-ksremp-app-lib.mjs.map +1 -0
- package/index.d.ts +6 -0
- package/ksremp-ngx-ksremp-app-lib.d.ts.map +1 -0
- package/lib/annimations/app-animations.d.ts +4 -0
- package/lib/annimations/app-animations.d.ts.map +1 -0
- package/lib/components/add-employer/add-employer.component.d.ts +234 -0
- package/lib/components/add-employer/add-employer.component.d.ts.map +1 -0
- package/lib/components/add-participant/add-participant.component.d.ts +49 -0
- package/lib/components/add-participant/add-participant.component.d.ts.map +1 -0
- package/lib/components/add-payment/add-payment.component.d.ts +33 -0
- package/lib/components/add-payment/add-payment.component.d.ts.map +1 -0
- package/lib/components/address/address.component.d.ts +81 -0
- package/lib/components/address/address.component.d.ts.map +1 -0
- package/lib/components/bank-details/bank-details.component.d.ts +62 -0
- package/lib/components/bank-details/bank-details.component.d.ts.map +1 -0
- package/lib/components/captcha/captcha.component.d.ts +45 -0
- package/lib/components/captcha/captcha.component.d.ts.map +1 -0
- package/lib/components/card/card.component.d.ts +12 -0
- package/lib/components/card/card.component.d.ts.map +1 -0
- package/lib/components/contact-us/contact-us.component.d.ts +109 -0
- package/lib/components/contact-us/contact-us.component.d.ts.map +1 -0
- package/lib/components/content/content.component.d.ts +14 -0
- package/lib/components/content/content.component.d.ts.map +1 -0
- package/lib/components/correspondence-download/correspondence-download.component.d.ts +22 -0
- package/lib/components/correspondence-download/correspondence-download.component.d.ts.map +1 -0
- package/lib/components/dashboard-card/dashboard-card.component.d.ts +26 -0
- package/lib/components/dashboard-card/dashboard-card.component.d.ts.map +1 -0
- package/lib/components/dependent-grid/dependent-grid.component.d.ts +36 -0
- package/lib/components/dependent-grid/dependent-grid.component.d.ts.map +1 -0
- package/lib/components/disclosure/disclosure.component.d.ts +13 -0
- package/lib/components/disclosure/disclosure.component.d.ts.map +1 -0
- package/lib/components/dropdown/dropdown.component.d.ts +582 -0
- package/lib/components/dropdown/dropdown.component.d.ts.map +1 -0
- package/lib/components/dropdown/dropdown.interface.d.ts +155 -0
- package/lib/components/dropdown/dropdown.interface.d.ts.map +1 -0
- package/lib/components/email-update/email-update.component.d.ts +43 -0
- package/lib/components/email-update/email-update.component.d.ts.map +1 -0
- package/lib/components/employer-grid/employer-grid.component.d.ts +90 -0
- package/lib/components/employer-grid/employer-grid.component.d.ts.map +1 -0
- package/lib/components/error/error.component.d.ts +18 -0
- package/lib/components/error/error.component.d.ts.map +1 -0
- package/lib/components/fav-menu/fav-menu.component.d.ts +22 -0
- package/lib/components/fav-menu/fav-menu.component.d.ts.map +1 -0
- package/lib/components/file-download/file-download.component.d.ts +23 -0
- package/lib/components/file-download/file-download.component.d.ts.map +1 -0
- package/lib/components/file-uploader/file-uploader.component.d.ts +48 -0
- package/lib/components/file-uploader/file-uploader.component.d.ts.map +1 -0
- package/lib/components/footer/footer.component.d.ts +37 -0
- package/lib/components/footer/footer.component.d.ts.map +1 -0
- package/lib/components/header/header.component.d.ts +64 -0
- package/lib/components/header/header.component.d.ts.map +1 -0
- package/lib/components/help/help.component.d.ts +11 -0
- package/lib/components/help/help.component.d.ts.map +1 -0
- package/lib/components/idle-detector/idle-detector.component.d.ts +16 -0
- package/lib/components/idle-detector/idle-detector.component.d.ts.map +1 -0
- package/lib/components/info/info.component.d.ts +23 -0
- package/lib/components/info/info.component.d.ts.map +1 -0
- package/lib/components/job-search-result-page/job-search-result-page.component.d.ts +24 -0
- package/lib/components/job-search-result-page/job-search-result-page.component.d.ts.map +1 -0
- package/lib/components/job-title/job-title.component.d.ts +38 -0
- package/lib/components/job-title/job-title.component.d.ts.map +1 -0
- package/lib/components/legal-disclaimar/legal-disclaimar.component.d.ts +39 -0
- package/lib/components/legal-disclaimar/legal-disclaimar.component.d.ts.map +1 -0
- package/lib/components/lexis-nexis/lexis-nexis.component.d.ts +59 -0
- package/lib/components/lexis-nexis/lexis-nexis.component.d.ts.map +1 -0
- package/lib/components/link/link.component.d.ts +35 -0
- package/lib/components/link/link.component.d.ts.map +1 -0
- package/lib/components/maintenance-detector/maintenance-detector.component.d.ts +16 -0
- package/lib/components/maintenance-detector/maintenance-detector.component.d.ts.map +1 -0
- package/lib/components/mask/mask.component.d.ts +12 -0
- package/lib/components/mask/mask.component.d.ts.map +1 -0
- package/lib/components/menu/menu.component.d.ts +54 -0
- package/lib/components/menu/menu.component.d.ts.map +1 -0
- package/lib/components/mfa/mfa.component.d.ts +72 -0
- package/lib/components/mfa/mfa.component.d.ts.map +1 -0
- package/lib/components/mfa-popup/mfa-popup.component.d.ts +19 -0
- package/lib/components/mfa-popup/mfa-popup.component.d.ts.map +1 -0
- package/lib/components/mfa2/mfa2.component.d.ts +48 -0
- package/lib/components/mfa2/mfa2.component.d.ts.map +1 -0
- package/lib/components/money-expect/money-expect.component.d.ts +19 -0
- package/lib/components/money-expect/money-expect.component.d.ts.map +1 -0
- package/lib/components/msg/msg.component.d.ts +11 -0
- package/lib/components/msg/msg.component.d.ts.map +1 -0
- package/lib/components/news/news.component.d.ts +15 -0
- package/lib/components/news/news.component.d.ts.map +1 -0
- package/lib/components/overlay-info/overlay-info.component.d.ts +35 -0
- package/lib/components/overlay-info/overlay-info.component.d.ts.map +1 -0
- package/lib/components/page/page.component.d.ts +24 -0
- package/lib/components/page/page.component.d.ts.map +1 -0
- package/lib/components/profile/profile.component.d.ts +74 -0
- package/lib/components/profile/profile.component.d.ts.map +1 -0
- package/lib/components/profile-redirect/profile-redirect.component.d.ts +14 -0
- package/lib/components/profile-redirect/profile-redirect.component.d.ts.map +1 -0
- package/lib/components/questionnaire/AppValidators.d.ts +16 -0
- package/lib/components/questionnaire/AppValidators.d.ts.map +1 -0
- package/lib/components/questionnaire/FbConstants.d.ts +8 -0
- package/lib/components/questionnaire/FbConstants.d.ts.map +1 -0
- package/lib/components/questionnaire/SelectItem.d.ts +5 -0
- package/lib/components/questionnaire/SelectItem.d.ts.map +1 -0
- package/lib/components/questionnaire/account-success/account-success.page.d.ts +61 -0
- package/lib/components/questionnaire/account-success/account-success.page.d.ts.map +1 -0
- package/lib/components/questionnaire/common-success/common-success.page.d.ts +77 -0
- package/lib/components/questionnaire/common-success/common-success.page.d.ts.map +1 -0
- package/lib/components/questionnaire/dynamic-form-panel.component.d.ts +47 -0
- package/lib/components/questionnaire/dynamic-form-panel.component.d.ts.map +1 -0
- package/lib/components/questionnaire/dynamic-form-question.component.d.ts +128 -0
- package/lib/components/questionnaire/dynamic-form-question.component.d.ts.map +1 -0
- package/lib/components/questionnaire/dynamic-form.component.d.ts +161 -0
- package/lib/components/questionnaire/dynamic-form.component.d.ts.map +1 -0
- package/lib/components/questionnaire/form-builder/form-builder.page.d.ts +74 -0
- package/lib/components/questionnaire/form-builder/form-builder.page.d.ts.map +1 -0
- package/lib/components/questionnaire/input-focus.directive.d.ts +12 -0
- package/lib/components/questionnaire/input-focus.directive.d.ts.map +1 -0
- package/lib/components/questionnaire/multi-questionnaire/multi-questionnaire.component.d.ts +39 -0
- package/lib/components/questionnaire/multi-questionnaire/multi-questionnaire.component.d.ts.map +1 -0
- package/lib/components/questionnaire/question-base.d.ts +17 -0
- package/lib/components/questionnaire/question-base.d.ts.map +1 -0
- package/lib/components/questionnaire/question-control.service.d.ts +21 -0
- package/lib/components/questionnaire/question-control.service.d.ts.map +1 -0
- package/lib/components/questionnaire/question.service.d.ts +19 -0
- package/lib/components/questionnaire/question.service.d.ts.map +1 -0
- package/lib/components/questionnaire/render-questionnaire/render-questionnaire.page.d.ts +83 -0
- package/lib/components/questionnaire/render-questionnaire/render-questionnaire.page.d.ts.map +1 -0
- package/lib/components/read-more/read-more.component.d.ts +15 -0
- package/lib/components/read-more/read-more.component.d.ts.map +1 -0
- package/lib/components/requalify-lift-previous-issues/requalify-lift-previous-issues.component.d.ts +68 -0
- package/lib/components/requalify-lift-previous-issues/requalify-lift-previous-issues.component.d.ts.map +1 -0
- package/lib/components/search-employer/search-employer.component.d.ts +40 -0
- package/lib/components/search-employer/search-employer.component.d.ts.map +1 -0
- package/lib/components/security-question/security-question.component.d.ts +37 -0
- package/lib/components/security-question/security-question.component.d.ts.map +1 -0
- package/lib/components/select/select.component.d.ts +56 -0
- package/lib/components/select/select.component.d.ts.map +1 -0
- package/lib/components/sign-ssn/sign-ssn.component.d.ts +34 -0
- package/lib/components/sign-ssn/sign-ssn.component.d.ts.map +1 -0
- package/lib/components/ssn/ssn.component.d.ts +12 -0
- package/lib/components/ssn/ssn.component.d.ts.map +1 -0
- package/lib/components/ssn-reverify/ssn-reverify.component.d.ts +27 -0
- package/lib/components/ssn-reverify/ssn-reverify.component.d.ts.map +1 -0
- package/lib/components/test/test.component.d.ts +9 -0
- package/lib/components/test/test.component.d.ts.map +1 -0
- package/lib/components/user-login/user-login.component.d.ts +82 -0
- package/lib/components/user-login/user-login.component.d.ts.map +1 -0
- package/lib/components/weekly-cert-employer/weekly-cert-employer.component.d.ts +67 -0
- package/lib/components/weekly-cert-employer/weekly-cert-employer.component.d.ts.map +1 -0
- package/lib/components/weekly-cert-employer-grid/weekly-cert-employer-grid.component.d.ts +47 -0
- package/lib/components/weekly-cert-employer-grid/weekly-cert-employer-grid.component.d.ts.map +1 -0
- package/lib/directives/auto-focus/auto-focus.directive.d.ts +13 -0
- package/lib/directives/auto-focus/auto-focus.directive.d.ts.map +1 -0
- package/lib/directives/caps-lock.directive.d.ts +12 -0
- package/lib/directives/caps-lock.directive.d.ts.map +1 -0
- package/lib/directives/required-roles/required-roles.directive.d.ts +15 -0
- package/lib/directives/required-roles/required-roles.directive.d.ts.map +1 -0
- package/lib/enums/EmailStatusEnum.d.ts +8 -0
- package/lib/enums/EmailStatusEnum.d.ts.map +1 -0
- package/lib/guards/auth.guard.d.ts +29 -0
- package/lib/guards/auth.guard.d.ts.map +1 -0
- package/lib/guards/no-login/no-login.guard.d.ts +12 -0
- package/lib/guards/no-login/no-login.guard.d.ts.map +1 -0
- package/lib/interceptors/error-interceptor/http-error-interceptor.d.ts +23 -0
- package/lib/interceptors/error-interceptor/http-error-interceptor.d.ts.map +1 -0
- package/lib/interceptors/header-interceptor/http-header.interceptor.d.ts +22 -0
- package/lib/interceptors/header-interceptor/http-header.interceptor.d.ts.map +1 -0
- package/lib/models/AddressComponentModel.d.ts +14 -0
- package/lib/models/AddressComponentModel.d.ts.map +1 -0
- package/lib/models/BankDetailsComponentModel.d.ts +12 -0
- package/lib/models/BankDetailsComponentModel.d.ts.map +1 -0
- package/lib/models/BankDetailsModel.d.ts +5 -0
- package/lib/models/BankDetailsModel.d.ts.map +1 -0
- package/lib/models/CinRequalificationCriteriaModel.d.ts +11 -0
- package/lib/models/CinRequalificationCriteriaModel.d.ts.map +1 -0
- package/lib/models/EmployerDetailSearchResult.d.ts +51 -0
- package/lib/models/EmployerDetailSearchResult.d.ts.map +1 -0
- package/lib/models/ErrorModel.d.ts +7 -0
- package/lib/models/ErrorModel.d.ts.map +1 -0
- package/lib/models/FileModel.d.ts +5 -0
- package/lib/models/FileModel.d.ts.map +1 -0
- package/lib/models/LexisNexisAccountCreationModel.d.ts +15 -0
- package/lib/models/LexisNexisAccountCreationModel.d.ts.map +1 -0
- package/lib/models/LexisNexisAuthSelectionRequestModel.d.ts +16 -0
- package/lib/models/LexisNexisAuthSelectionRequestModel.d.ts.map +1 -0
- package/lib/models/LexisNexisAuthSelectionResponseModel.d.ts +39 -0
- package/lib/models/LexisNexisAuthSelectionResponseModel.d.ts.map +1 -0
- package/lib/models/LexisNexisEnabledResponseModel.d.ts +5 -0
- package/lib/models/LexisNexisEnabledResponseModel.d.ts.map +1 -0
- package/lib/models/LexisNexisResponseModel.d.ts +7 -0
- package/lib/models/LexisNexisResponseModel.d.ts.map +1 -0
- package/lib/models/LibConstants.d.ts +125 -0
- package/lib/models/LibConstants.d.ts.map +1 -0
- package/lib/models/NewsAndAnnouncementModel.d.ts +6 -0
- package/lib/models/NewsAndAnnouncementModel.d.ts.map +1 -0
- package/lib/models/NotificationModel.d.ts +11 -0
- package/lib/models/NotificationModel.d.ts.map +1 -0
- package/lib/models/OtpAuthModel.d.ts +8 -0
- package/lib/models/OtpAuthModel.d.ts.map +1 -0
- package/lib/models/PartialEmploymentModel.d.ts +6 -0
- package/lib/models/PartialEmploymentModel.d.ts.map +1 -0
- package/lib/models/PaymentComponentModel.d.ts +8 -0
- package/lib/models/PaymentComponentModel.d.ts.map +1 -0
- package/lib/models/RequalifyLiftPageModel.d.ts +12 -0
- package/lib/models/RequalifyLiftPageModel.d.ts.map +1 -0
- package/lib/models/SecurityQuestionModel.d.ts +7 -0
- package/lib/models/SecurityQuestionModel.d.ts.map +1 -0
- package/lib/models/SsaVerificationModel.d.ts +9 -0
- package/lib/models/SsaVerificationModel.d.ts.map +1 -0
- package/lib/models/TrendModel.d.ts +14 -0
- package/lib/models/TrendModel.d.ts.map +1 -0
- package/lib/models/UserDetailsModel.d.ts +10 -0
- package/lib/models/UserDetailsModel.d.ts.map +1 -0
- package/lib/models/UserModel.d.ts +48 -0
- package/lib/models/UserModel.d.ts.map +1 -0
- package/lib/models/case/CaseAttachmentModel.d.ts +6 -0
- package/lib/models/case/CaseAttachmentModel.d.ts.map +1 -0
- package/lib/models/claimant/ClaimantModel.d.ts +23 -0
- package/lib/models/claimant/ClaimantModel.d.ts.map +1 -0
- package/lib/models/claimant/JobResultsData.d.ts +8 -0
- package/lib/models/claimant/JobResultsData.d.ts.map +1 -0
- package/lib/models/claimant/MatchingJobs.d.ts +13 -0
- package/lib/models/claimant/MatchingJobs.d.ts.map +1 -0
- package/lib/models/claimant/ResetPasswordModel.d.ts +9 -0
- package/lib/models/claimant/ResetPasswordModel.d.ts.map +1 -0
- package/lib/models/cmp/CaseCoreModel.d.ts +21 -0
- package/lib/models/cmp/CaseCoreModel.d.ts.map +1 -0
- package/lib/models/cmp/ComplaintCategoryModel.d.ts +9 -0
- package/lib/models/cmp/ComplaintCategoryModel.d.ts.map +1 -0
- package/lib/models/cmp/ComplaintCategoryOutputModel.d.ts +6 -0
- package/lib/models/cmp/ComplaintCategoryOutputModel.d.ts.map +1 -0
- package/lib/models/cmp/ContactUsModel.d.ts +23 -0
- package/lib/models/cmp/ContactUsModel.d.ts.map +1 -0
- package/lib/models/cmp/EmailTemplateModel.d.ts +7 -0
- package/lib/models/cmp/EmailTemplateModel.d.ts.map +1 -0
- package/lib/models/cmp/contactUsInqueryModel.d.ts +47 -0
- package/lib/models/cmp/contactUsInqueryModel.d.ts.map +1 -0
- package/lib/models/cmp/messageRourceModel.d.ts +6 -0
- package/lib/models/cmp/messageRourceModel.d.ts.map +1 -0
- package/lib/models/dashboard-model.d.ts +44 -0
- package/lib/models/dashboard-model.d.ts.map +1 -0
- package/lib/models/dependent.model.d.ts +20 -0
- package/lib/models/dependent.model.d.ts.map +1 -0
- package/lib/models/questionnaire/AutocoderModel.d.ts +9 -0
- package/lib/models/questionnaire/AutocoderModel.d.ts.map +1 -0
- package/lib/models/questionnaire/ClaimAppEmpRequestModel.d.ts +9 -0
- package/lib/models/questionnaire/ClaimAppEmpRequestModel.d.ts.map +1 -0
- package/lib/models/questionnaire/ClaimAppEmpResponseModel.d.ts +18 -0
- package/lib/models/questionnaire/ClaimAppEmpResponseModel.d.ts.map +1 -0
- package/lib/models/questionnaire/ClaimAppEmployerDetailsModel.d.ts +156 -0
- package/lib/models/questionnaire/ClaimAppEmployerDetailsModel.d.ts.map +1 -0
- package/lib/models/questionnaire/ClaimOnlyEmployerDataModel.d.ts +18 -0
- package/lib/models/questionnaire/ClaimOnlyEmployerDataModel.d.ts.map +1 -0
- package/lib/models/questionnaire/ComboModel.d.ts +178 -0
- package/lib/models/questionnaire/ComboModel.d.ts.map +1 -0
- package/lib/models/questionnaire/ElementsModel.d.ts +71 -0
- package/lib/models/questionnaire/ElementsModel.d.ts.map +1 -0
- package/lib/models/questionnaire/EmployerDetailSearchResult.d.ts +18 -0
- package/lib/models/questionnaire/EmployerDetailSearchResult.d.ts.map +1 -0
- package/lib/models/questionnaire/EmployerWagesModel.d.ts +5 -0
- package/lib/models/questionnaire/EmployerWagesModel.d.ts.map +1 -0
- package/lib/models/questionnaire/FBConfigModel.d.ts +12 -0
- package/lib/models/questionnaire/FBConfigModel.d.ts.map +1 -0
- package/lib/models/questionnaire/KeyValueModel.d.ts +11 -0
- package/lib/models/questionnaire/KeyValueModel.d.ts.map +1 -0
- package/lib/models/questionnaire/LegalDiscaimarModel.d.ts +11 -0
- package/lib/models/questionnaire/LegalDiscaimarModel.d.ts.map +1 -0
- package/lib/models/questionnaire/LoaderModel.d.ts +5 -0
- package/lib/models/questionnaire/LoaderModel.d.ts.map +1 -0
- package/lib/models/questionnaire/PollingStatusModel.d.ts +7 -0
- package/lib/models/questionnaire/PollingStatusModel.d.ts.map +1 -0
- package/lib/models/questionnaire/QtrYearEmployerWageModel.d.ts +9 -0
- package/lib/models/questionnaire/QtrYearEmployerWageModel.d.ts.map +1 -0
- package/lib/models/questionnaire/QuestionnaireQueryModel.d.ts +24 -0
- package/lib/models/questionnaire/QuestionnaireQueryModel.d.ts.map +1 -0
- package/lib/models/questionnaire/QuestionnaireReturnModel.d.ts +21 -0
- package/lib/models/questionnaire/QuestionnaireReturnModel.d.ts.map +1 -0
- package/lib/models/questionnaire/QuestionnaireSaveModel.d.ts +26 -0
- package/lib/models/questionnaire/QuestionnaireSaveModel.d.ts.map +1 -0
- package/lib/models/questionnaire/RequalifyLiftIssuesModel.d.ts +14 -0
- package/lib/models/questionnaire/RequalifyLiftIssuesModel.d.ts.map +1 -0
- package/lib/models/questionnaire/ServiceActionResponseModel.d.ts +7 -0
- package/lib/models/questionnaire/ServiceActionResponseModel.d.ts.map +1 -0
- package/lib/models/questionnaire/StatusModel.d.ts +16 -0
- package/lib/models/questionnaire/StatusModel.d.ts.map +1 -0
- package/lib/models/questionnaire/SuccessPageElement.d.ts +9 -0
- package/lib/models/questionnaire/SuccessPageElement.d.ts.map +1 -0
- package/lib/models/questionnaire/UI512AResponseModel.d.ts +13 -0
- package/lib/models/questionnaire/UI512AResponseModel.d.ts.map +1 -0
- package/lib/models/questionnaire/ValidationModel.d.ts +18 -0
- package/lib/models/questionnaire/ValidationModel.d.ts.map +1 -0
- package/lib/ngx-reusa-app-lib.component.d.ts +9 -0
- package/lib/ngx-reusa-app-lib.component.d.ts.map +1 -0
- package/lib/ngx-reusa-app-lib.module.d.ts +155 -0
- package/lib/ngx-reusa-app-lib.module.d.ts.map +1 -0
- package/lib/ngx-reusa-app-lib.service.d.ts +7 -0
- package/lib/ngx-reusa-app-lib.service.d.ts.map +1 -0
- package/lib/pages/BasePage.d.ts +32 -0
- package/lib/pages/BasePage.d.ts.map +1 -0
- package/lib/pages/common/accessibility-policy/accessibility-policy.page.d.ts +12 -0
- package/lib/pages/common/accessibility-policy/accessibility-policy.page.d.ts.map +1 -0
- package/lib/pages/common/change-password/change-password.page.d.ts +41 -0
- package/lib/pages/common/change-password/change-password.page.d.ts.map +1 -0
- package/lib/pages/common/landing/landing.component.d.ts +25 -0
- package/lib/pages/common/landing/landing.component.d.ts.map +1 -0
- package/lib/pages/common/landing2/landing2.component.d.ts +31 -0
- package/lib/pages/common/landing2/landing2.component.d.ts.map +1 -0
- package/lib/pages/common/login/login.component.d.ts +65 -0
- package/lib/pages/common/login/login.component.d.ts.map +1 -0
- package/lib/pages/common/not-found/not-found.page.d.ts +9 -0
- package/lib/pages/common/not-found/not-found.page.d.ts.map +1 -0
- package/lib/pages/common/privacy-disclaimer/privacy-disclaimer.page.d.ts +12 -0
- package/lib/pages/common/privacy-disclaimer/privacy-disclaimer.page.d.ts.map +1 -0
- package/lib/pages/common/security-policy/security-policy.page.d.ts +12 -0
- package/lib/pages/common/security-policy/security-policy.page.d.ts.map +1 -0
- package/lib/pages/common/unauthorized/unauthorized.page.d.ts +9 -0
- package/lib/pages/common/unauthorized/unauthorized.page.d.ts.map +1 -0
- package/lib/pages/popovers/language/language.page.d.ts +17 -0
- package/lib/pages/popovers/language/language.page.d.ts.map +1 -0
- package/lib/pages/popovers/my-notifications/my-notifications.page.d.ts +22 -0
- package/lib/pages/popovers/my-notifications/my-notifications.page.d.ts.map +1 -0
- package/lib/pages/popovers/my-profile/my-profile.page.d.ts +21 -0
- package/lib/pages/popovers/my-profile/my-profile.page.d.ts.map +1 -0
- package/lib/pages/popovers/user-search/user-search.component.d.ts +32 -0
- package/lib/pages/popovers/user-search/user-search.component.d.ts.map +1 -0
- package/lib/pipes/filter.pipe.d.ts +8 -0
- package/lib/pipes/filter.pipe.d.ts.map +1 -0
- package/lib/pipes/mask/mask.email.pipe.d.ts +11 -0
- package/lib/pipes/mask/mask.email.pipe.d.ts.map +1 -0
- package/lib/pipes/proper-case/proper-case.pipe.d.ts +9 -0
- package/lib/pipes/proper-case/proper-case.pipe.d.ts.map +1 -0
- package/lib/pipes/translate/dynamic-translate.pipe.d.ts +11 -0
- package/lib/pipes/translate/dynamic-translate.pipe.d.ts.map +1 -0
- package/lib/pipes/trust-html/trust-html.pipe.d.ts +11 -0
- package/lib/pipes/trust-html/trust-html.pipe.d.ts.map +1 -0
- package/lib/services/base-service.d.ts +93 -0
- package/lib/services/base-service.d.ts.map +1 -0
- package/lib/services/captcha/captcha.service.d.ts +16 -0
- package/lib/services/captcha/captcha.service.d.ts.map +1 -0
- package/lib/services/case-service/case.service.d.ts +20 -0
- package/lib/services/case-service/case.service.d.ts.map +1 -0
- package/lib/services/chatbot/chatbot.service.d.ts +61 -0
- package/lib/services/chatbot/chatbot.service.d.ts.map +1 -0
- package/lib/services/chatbot/script.const.d.ts +16 -0
- package/lib/services/chatbot/script.const.d.ts.map +1 -0
- package/lib/services/claimant/claimant.service.d.ts +18 -0
- package/lib/services/claimant/claimant.service.d.ts.map +1 -0
- package/lib/services/claimant-context/claimant-context.service.d.ts +19 -0
- package/lib/services/claimant-context/claimant-context.service.d.ts.map +1 -0
- package/lib/services/claimant-service/claimant-usps-redirect.service.d.ts +16 -0
- package/lib/services/claimant-service/claimant-usps-redirect.service.d.ts.map +1 -0
- package/lib/services/claimant-service/claimant.service.d.ts +26 -0
- package/lib/services/claimant-service/claimant.service.d.ts.map +1 -0
- package/lib/services/claims/claims.service.d.ts +42 -0
- package/lib/services/claims/claims.service.d.ts.map +1 -0
- package/lib/services/cmp-service/cmp.service.d.ts +34 -0
- package/lib/services/cmp-service/cmp.service.d.ts.map +1 -0
- package/lib/services/dms-service/dms.service.d.ts +24 -0
- package/lib/services/dms-service/dms.service.d.ts.map +1 -0
- package/lib/services/fpjs/fingerprint.service.d.ts +19 -0
- package/lib/services/fpjs/fingerprint.service.d.ts.map +1 -0
- package/lib/services/google-analytics/google-analytics.service.d.ts +9 -0
- package/lib/services/google-analytics/google-analytics.service.d.ts.map +1 -0
- package/lib/services/help/help.service.d.ts +26 -0
- package/lib/services/help/help.service.d.ts.map +1 -0
- package/lib/services/idle/idle.service.d.ts +44 -0
- package/lib/services/idle/idle.service.d.ts.map +1 -0
- package/lib/services/lexis-nexis/lexis.nexis.service.d.ts +26 -0
- package/lib/services/lexis-nexis/lexis.nexis.service.d.ts.map +1 -0
- package/lib/services/logger/logger.service.d.ts +32 -0
- package/lib/services/logger/logger.service.d.ts.map +1 -0
- package/lib/services/login/login.service.d.ts +79 -0
- package/lib/services/login/login.service.d.ts.map +1 -0
- package/lib/services/maintenance/maintenance.service.d.ts +16 -0
- package/lib/services/maintenance/maintenance.service.d.ts.map +1 -0
- package/lib/services/notification/notification.service.d.ts +39 -0
- package/lib/services/notification/notification.service.d.ts.map +1 -0
- package/lib/services/ovp/ovp.service.d.ts +17 -0
- package/lib/services/ovp/ovp.service.d.ts.map +1 -0
- package/lib/services/questionnaire/questionnaire.service.d.ts +36 -0
- package/lib/services/questionnaire/questionnaire.service.d.ts.map +1 -0
- package/lib/services/questionnaire/validation.service.d.ts +82 -0
- package/lib/services/questionnaire/validation.service.d.ts.map +1 -0
- package/lib/services/security-service/security.service.d.ts +18 -0
- package/lib/services/security-service/security.service.d.ts.map +1 -0
- package/lib/services/tour/tour.service.d.ts +25 -0
- package/lib/services/tour/tour.service.d.ts.map +1 -0
- package/lib/services/util/util.service.d.ts +194 -0
- package/lib/services/util/util.service.d.ts.map +1 -0
- package/lib/services/weekly-cert/weekly-cert-v2.service.d.ts +17 -0
- package/lib/services/weekly-cert/weekly-cert-v2.service.d.ts.map +1 -0
- package/lib/validations/AppRegex.d.ts +50 -0
- package/lib/validations/AppRegex.d.ts.map +1 -0
- package/lib/validations/AppValidators.d.ts +82 -0
- package/lib/validations/AppValidators.d.ts.map +1 -0
- package/package.json +28 -0
- package/public-api.d.ts +128 -0
- package/public-api.d.ts.map +1 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { OnInit, EventEmitter } from '@angular/core';
|
|
2
|
+
import { LoggerService } from '../../services/logger/logger.service';
|
|
3
|
+
import { JobResultsData } from '../../models/claimant/JobResultsData';
|
|
4
|
+
import { MatchingJobs } from '../../models/claimant/MatchingJobs';
|
|
5
|
+
import { ClaimantService } from '../../services/claimant-service/claimant.service';
|
|
6
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class JobSearchResultPageComponent implements OnInit {
|
|
9
|
+
cs: ClaimantService;
|
|
10
|
+
loggerService: LoggerService;
|
|
11
|
+
translateService: TranslateService;
|
|
12
|
+
jobResultsData: JobResultsData;
|
|
13
|
+
matchingJobs: MatchingJobs[];
|
|
14
|
+
areJobsFetched: Boolean;
|
|
15
|
+
constructor(cs: ClaimantService, loggerService: LoggerService, translateService: TranslateService);
|
|
16
|
+
ngOnInit(): void;
|
|
17
|
+
getClaimantJobResults(): void;
|
|
18
|
+
onCancel: EventEmitter<any>;
|
|
19
|
+
showjobSearchResultPopup: boolean;
|
|
20
|
+
cancel(): void;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<JobSearchResultPageComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<JobSearchResultPageComponent, "app-job-search-result-page", never, {}, { "onCancel": "onCancel"; }, never, never, false, never>;
|
|
23
|
+
}
|
|
24
|
+
//# sourceMappingURL=job-search-result-page.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"job-search-result-page.component.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/components/job-search-result-page/job-search-result-page.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,MAAM,EAAE,YAAY,EAAwC,MAAM,eAAe,CAAC;AACtG,OAAO,EAAE,aAAa,EAAE,MAAM,sCAAsC,CAAC;AACrE,OAAO,EAAE,cAAc,EAAE,MAAM,sCAAsC,CAAC;AACtE,OAAO,EAAE,YAAY,EAAE,MAAM,oCAAoC,CAAC;AAClE,OAAO,EAAE,eAAe,EAAE,MAAM,kDAAkD,CAAC;AACnF,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;;AAGvD,qBAKa,4BAA6B,YAAW,MAAM;IAMtC,EAAE,EAAE,eAAe;IAAS,aAAa,EAAG,aAAa;IAAS,gBAAgB,EAAG,gBAAgB;IAJxH,cAAc,EAAE,cAAc,CAAC;IAC/B,YAAY,EAAE,YAAY,EAAE,CAAC;IAC7B,cAAc,EAAE,OAAO,CAAQ;gBAEZ,EAAE,EAAE,eAAe,EAAS,aAAa,EAAG,aAAa,EAAS,gBAAgB,EAAG,gBAAgB;IAIxH,QAAQ,IAAI,IAAI;IAOhB,qBAAqB;IAgBrB,QAAQ,EAAE,YAAY,CAAC,GAAG,CAAC,CAAsB;IAC1C,wBAAwB,EAAE,OAAO,CAAC;IAGzC,MAAM;yCArCK,4BAA4B;2CAA5B,4BAA4B;CAyCxC"}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { AbstractControl, ControlValueAccessor, UntypedFormBuilder, UntypedFormGroup, NgForm, Validator, FormControl } from '@angular/forms';
|
|
3
|
+
import { Subscription } from 'rxjs';
|
|
4
|
+
import { AutocoderModel } from '../../models/questionnaire/AutocoderModel';
|
|
5
|
+
import { ClaimService } from '../../services/claims/claims.service';
|
|
6
|
+
import { LoggerService } from '../../services/logger/logger.service';
|
|
7
|
+
import { QuestionnaireService } from '../../services/questionnaire/questionnaire.service';
|
|
8
|
+
import { UtilService } from '../../services/util/util.service';
|
|
9
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
11
|
+
export declare class JobTitleComponent implements OnInit, ControlValueAccessor, OnDestroy, Validator {
|
|
12
|
+
formBuilder: UntypedFormBuilder;
|
|
13
|
+
util: UtilService;
|
|
14
|
+
questionnaireService: QuestionnaireService;
|
|
15
|
+
private logger;
|
|
16
|
+
private claim;
|
|
17
|
+
translateService: TranslateService;
|
|
18
|
+
jobTitleFormDirective: NgForm;
|
|
19
|
+
jobTitleForm: UntypedFormGroup;
|
|
20
|
+
jobTitleData: AutocoderModel;
|
|
21
|
+
control: FormControl;
|
|
22
|
+
constructor(formBuilder: UntypedFormBuilder, util: UtilService, questionnaireService: QuestionnaireService, logger: LoggerService, claim: ClaimService, translateService: TranslateService);
|
|
23
|
+
ngOnInit(): void;
|
|
24
|
+
filterJobTileOrPosition(event: any): void;
|
|
25
|
+
get JobTitle(): AbstractControl<any, any>;
|
|
26
|
+
setWidthStyle(): object;
|
|
27
|
+
onTouched: Function;
|
|
28
|
+
onChangeSubs: Subscription[];
|
|
29
|
+
ngOnDestroy(): void;
|
|
30
|
+
registerOnChange(onChange: any): void;
|
|
31
|
+
registerOnTouched(onTouched: Function): void;
|
|
32
|
+
setDisabledState(disabled: boolean): void;
|
|
33
|
+
writeValue(value: any): void;
|
|
34
|
+
validate(control: AbstractControl): any;
|
|
35
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<JobTitleComponent, never>;
|
|
36
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<JobTitleComponent, "app-job-title", never, { "control": { "alias": "control"; "required": false; }; }, {}, never, never, false, never>;
|
|
37
|
+
}
|
|
38
|
+
//# sourceMappingURL=job-title.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"job-title.component.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/components/job-title/job-title.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoB,SAAS,EAAE,MAAM,EAAa,MAAM,eAAe,CAAC;AAC/E,OAAO,EAAE,eAAe,EAAE,oBAAoB,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,MAAM,EAAoC,SAAS,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAC/K,OAAO,EAAE,YAAY,EAAE,MAAM,MAAM,CAAC;AACpC,OAAO,EAAC,cAAc,EAAC,MAAM,2CAA2C,CAAC;AACzE,OAAO,EAAE,YAAY,EAAE,MAAM,sCAAsC,CAAC;AACpE,OAAO,EAAE,aAAa,EAAE,MAAM,sCAAsC,CAAC;AACrE,OAAO,EAAE,oBAAoB,EAAE,MAAM,oDAAoD,CAAC;AAC1F,OAAO,EAAE,WAAW,EAAE,MAAM,kCAAkC,CAAC;AAC/D,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;;AAEvD,qBAiBa,iBAAkB,YAAW,MAAM,EAAE,oBAAoB,EAAE,SAAS,EAAE,SAAS;IAWvE,WAAW,EAAE,kBAAkB;IAAS,IAAI,EAAE,WAAW;IAAS,oBAAoB,EAAE,oBAAoB;IAC7H,OAAO,CAAC,MAAM;IAAiB,OAAO,CAAC,KAAK;IAAuB,gBAAgB,EAAG,gBAAgB;IATjG,qBAAqB,EAAE,MAAM,CAAC;IAE9B,YAAY,EAAE,gBAAgB,CAAC;IAC/B,YAAY,EAAE,cAAc,CAAwB;IAGlD,OAAO,EAAE,WAAW,CAAC;gBAEX,WAAW,EAAE,kBAAkB,EAAS,IAAI,EAAE,WAAW,EAAS,oBAAoB,EAAE,oBAAoB,EACrH,MAAM,EAAE,aAAa,EAAU,KAAK,EAAE,YAAY,EAAS,gBAAgB,EAAG,gBAAgB;IAGxG,QAAQ;IAIR,uBAAuB,CAAC,KAAK,KAAA;IAe7B,IAAI,QAAQ,8BAEX;IAED,aAAa,IAAI,MAAM;IAcvB,SAAS,EAAE,QAAQ,CAAa;IAEhC,YAAY,EAAE,YAAY,EAAE,CAAM;IAElC,WAAW;IAMX,gBAAgB,CAAC,QAAQ,EAAE,GAAG;IAK9B,iBAAiB,CAAC,SAAS,EAAE,QAAQ;IAIrC,gBAAgB,CAAC,QAAQ,EAAE,OAAO;IAUlC,UAAU,CAAC,KAAK,EAAE,GAAG;IAYrB,QAAQ,CAAC,OAAO,EAAE,eAAe;yCA7FtB,iBAAiB;2CAAjB,iBAAiB;CAmG7B"}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { UntypedFormBuilder, UntypedFormGroup, NgForm } from '@angular/forms';
|
|
3
|
+
import { ActivatedRoute } from '@angular/router';
|
|
4
|
+
import { ElementsModel } from '../../models/questionnaire/ElementsModel';
|
|
5
|
+
import { LegalDisclaimarModel } from '../../models/questionnaire/LegalDiscaimarModel';
|
|
6
|
+
import { LoggerService } from '../../services/logger/logger.service';
|
|
7
|
+
import { LoginService } from '../../services/login/login.service';
|
|
8
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
export declare class LegalDisclaimarComponent {
|
|
11
|
+
logger: LoggerService;
|
|
12
|
+
fb: UntypedFormBuilder;
|
|
13
|
+
ls: LoginService;
|
|
14
|
+
activatedRoute: ActivatedRoute;
|
|
15
|
+
translateService: TranslateService;
|
|
16
|
+
displayPosition: boolean;
|
|
17
|
+
position: string;
|
|
18
|
+
displayCheckBox: boolean;
|
|
19
|
+
legalDisclaimar: LegalDisclaimarModel;
|
|
20
|
+
qeFormDirective: NgForm;
|
|
21
|
+
accepted: EventEmitter<boolean>;
|
|
22
|
+
form: UntypedFormGroup;
|
|
23
|
+
question: ElementsModel;
|
|
24
|
+
componentData: string;
|
|
25
|
+
isSubmitted: boolean;
|
|
26
|
+
constructor(logger: LoggerService, fb: UntypedFormBuilder, ls: LoginService, activatedRoute: ActivatedRoute, translateService: TranslateService);
|
|
27
|
+
showPositionDialog(position: string): void;
|
|
28
|
+
acceptDisclaimar(): void;
|
|
29
|
+
cancelDisclaimar(): void;
|
|
30
|
+
get legalHidden(): import("@angular/forms").AbstractControl<any, any>;
|
|
31
|
+
get lastfourssn(): import("@angular/forms").AbstractControl<any, any>;
|
|
32
|
+
ngOnInit(): void;
|
|
33
|
+
addDialogAttribute(): void;
|
|
34
|
+
get required(): any;
|
|
35
|
+
get ssnNotMatched(): any;
|
|
36
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LegalDisclaimarComponent, never>;
|
|
37
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LegalDisclaimarComponent, "app-legal-disclaimar", never, { "form": { "alias": "form"; "required": false; }; "question": { "alias": "question"; "required": false; }; "componentData": { "alias": "componentData"; "required": false; }; }, { "accepted": "accepted"; }, never, never, false, never>;
|
|
38
|
+
}
|
|
39
|
+
//# sourceMappingURL=legal-disclaimar.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"legal-disclaimar.component.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/components/legal-disclaimar/legal-disclaimar.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAsC,YAAY,EAAY,MAAM,eAAe,CAAC;AAC3F,OAAO,EAAE,kBAAkB,EAAsB,gBAAgB,EAAE,MAAM,EAAc,MAAM,gBAAgB,CAAC;AAC9G,OAAO,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AACjD,OAAO,EAAE,aAAa,EAAE,MAAM,0CAA0C,CAAC;AACzE,OAAO,EAAE,oBAAoB,EAAE,MAAM,gDAAgD,CAAC;AACtF,OAAO,EAAE,aAAa,EAAE,MAAM,sCAAsC,CAAC;AACrE,OAAO,EAAE,YAAY,EAAE,MAAM,oCAAoC,CAAC;AAElE,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;;AAGvD,qBAMa,wBAAwB;IAcxB,MAAM,EAAC,aAAa;IACpB,EAAE,EAAE,kBAAkB;IACtB,EAAE,EAAE,YAAY;IAChB,cAAc,EAAE,cAAc;IAC9B,gBAAgB,EAAE,gBAAgB;IAhB3C,eAAe,EAAE,OAAO,CAAC;IACzB,QAAQ,EAAE,MAAM,CAAC;IACjB,eAAe,EAAC,OAAO,CAAO;IACvB,eAAe,EAAG,oBAAoB,CAAC;IAEvC,eAAe,EAAE,MAAM,CAAC;IACrB,QAAQ,wBAA+B;IACxC,IAAI,EAAE,gBAAgB,CAAC;IACvB,QAAQ,EAAE,aAAa,CAAC;IACzB,aAAa,EAAC,MAAM,CAAC;IAC7B,WAAW,EAAG,OAAO,CAAS;gBAErB,MAAM,EAAC,aAAa,EACpB,EAAE,EAAE,kBAAkB,EACtB,EAAE,EAAE,YAAY,EAChB,cAAc,EAAE,cAAc,EAC9B,gBAAgB,EAAE,gBAAgB;IAG3C,kBAAkB,CAAC,QAAQ,EAAE,MAAM;IASrC,gBAAgB;IAUhB,gBAAgB;IAQhB,IAAI,WAAW,uDAEd;IAED,IAAI,WAAW,uDAEd;IAED,QAAQ;IAmBR,kBAAkB,IAAI,IAAI;IAW1B,IAAI,QAAQ,QAEX;IAED,IAAI,aAAa,QAEhB;yCA5FU,wBAAwB;2CAAxB,wBAAwB;CA6FpC"}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import { EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { UtilService } from '../../services/util/util.service';
|
|
3
|
+
import { LexisNexisService } from '../../services/lexis-nexis/lexis.nexis.service';
|
|
4
|
+
import { Observable } from 'rxjs';
|
|
5
|
+
import { LexisNexisAuthSelectionRequestModel } from '../../models/LexisNexisAuthSelectionRequestModel';
|
|
6
|
+
import { LexisNexisAccountCreationModel } from '../../models/LexisNexisAccountCreationModel';
|
|
7
|
+
import { LexisNexisAuthSelectionResponseModel } from '../../models/LexisNexisAuthSelectionResponseModel';
|
|
8
|
+
import { UserModel } from '../../models/UserModel';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
/**
|
|
11
|
+
* To Activate this modal assign display=true, this will work as many times as needed
|
|
12
|
+
*/
|
|
13
|
+
export declare class LexisNexisComponent implements OnChanges {
|
|
14
|
+
util: UtilService;
|
|
15
|
+
ln: LexisNexisService;
|
|
16
|
+
display: boolean;
|
|
17
|
+
userDetails: LexisNexisAccountCreationModel;
|
|
18
|
+
page: number;
|
|
19
|
+
userModel: UserModel;
|
|
20
|
+
userName: string;
|
|
21
|
+
customerEventType: string;
|
|
22
|
+
success: EventEmitter<any>;
|
|
23
|
+
close: EventEmitter<any>;
|
|
24
|
+
error: EventEmitter<any>;
|
|
25
|
+
usps: EventEmitter<any>;
|
|
26
|
+
questionLength: number;
|
|
27
|
+
submitted: boolean;
|
|
28
|
+
authSelectionRequest: LexisNexisAuthSelectionRequestModel;
|
|
29
|
+
get blankAnswers(): LexisNexisAuthSelectionRequestModel;
|
|
30
|
+
answers: LexisNexisAuthSelectionRequestModel;
|
|
31
|
+
data: Observable<LexisNexisAuthSelectionResponseModel>;
|
|
32
|
+
answerArray: string[];
|
|
33
|
+
constructor(util: UtilService, ln: LexisNexisService);
|
|
34
|
+
/**
|
|
35
|
+
* will call api when display is set to true
|
|
36
|
+
* @param changes
|
|
37
|
+
* @returns
|
|
38
|
+
*/
|
|
39
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
40
|
+
lnQueryApi(): void;
|
|
41
|
+
lnQueryApiPI(): void;
|
|
42
|
+
/**
|
|
43
|
+
* submit button and get new question in the beginning
|
|
44
|
+
* @param authSelectionRequest
|
|
45
|
+
*/
|
|
46
|
+
lnAuthenticationQA(authSelectionRequest: LexisNexisAuthSelectionRequestModel): void;
|
|
47
|
+
/**
|
|
48
|
+
* The submit button press
|
|
49
|
+
*/
|
|
50
|
+
submit(): void;
|
|
51
|
+
/**
|
|
52
|
+
*
|
|
53
|
+
* @returns is form valid
|
|
54
|
+
*/
|
|
55
|
+
checkForm(): boolean;
|
|
56
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LexisNexisComponent, never>;
|
|
57
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LexisNexisComponent, "app-lexis-nexis", never, { "display": { "alias": "display"; "required": false; }; "userDetails": { "alias": "userDetails"; "required": false; }; "page": { "alias": "page"; "required": false; }; "userModel": { "alias": "userModel"; "required": false; }; "userName": { "alias": "userName"; "required": false; }; "customerEventType": { "alias": "customerEventType"; "required": false; }; }, { "success": "success"; "close": "close"; "error": "error"; "usps": "usps"; }, never, never, false, never>;
|
|
58
|
+
}
|
|
59
|
+
//# sourceMappingURL=lexis-nexis.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"lexis-nexis.component.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/components/lexis-nexis/lexis-nexis.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAS,SAAS,EAAU,aAAa,EAAE,MAAM,eAAe,CAAC;AACjG,OAAO,EAAE,WAAW,EAAE,MAAM,kCAAkC,CAAC;AAC/D,OAAO,EAAE,iBAAiB,EAAE,MAAM,gDAAgD,CAAC;AACnF,OAAO,EAAc,UAAU,EAAuB,MAAM,MAAM,CAAC;AACnE,OAAO,EAAE,mCAAmC,EAAE,MAAM,kDAAkD,CAAC;AACvG,OAAO,EAAE,8BAA8B,EAAE,MAAM,6CAA6C,CAAC;AAC7F,OAAO,EAAE,oCAAoC,EAAE,MAAM,mDAAmD,CAAC;AACzG,OAAO,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAC;;AAEnD;;GAEG;AACH,qBAKa,mBAAoB,YAAW,SAAS;IAyC1C,IAAI,EAAE,WAAW;IACjB,EAAE,EAAE,iBAAiB;IAxCd,OAAO,UAAS;IAGhB,WAAW,EAAG,8BAA8B,CAAQ;IAGpD,IAAI,EAAG,MAAM,CAAQ;IAErB,SAAS,EAAG,SAAS,CAAC;IAEtB,QAAQ,EAAG,MAAM,CAAC;IAElB,iBAAiB,EAAG,MAAM,CAAC;IAEjC,OAAO,EAAE,YAAY,CAAC,GAAG,CAAC,CAAsB;IAEhD,KAAK,EAAE,YAAY,CAAC,GAAG,CAAC,CAAsB;IAE9C,KAAK,EAAE,YAAY,CAAC,GAAG,CAAC,CAAsB;IAE9C,IAAI,EAAE,YAAY,CAAC,GAAG,CAAC,CAAsB;IAEvD,cAAc,EAAE,MAAM,CAAC;IAChB,SAAS,UAAS;IAClB,oBAAoB,EAAG,mCAAmC,CAAC;IAElE,IAAI,YAAY,IAAI,mCAAmC,CAKlD;IAEE,OAAO,EAAE,mCAAmC,CAAqB;IAEjE,IAAI,EAAG,UAAU,CAAC,oCAAoC,CAAC,CAAC;IACxD,WAAW,EAAE,MAAM,EAAE,CAAO;gBAG1B,IAAI,EAAE,WAAW,EACjB,EAAE,EAAE,iBAAiB;IAE9B;;;;OAIG;IACH,WAAW,CAAC,OAAO,EAAE,aAAa,GAAG,IAAI;IAYzC,UAAU;IA4DV,YAAY;IAuDZ;;;OAGG;IACH,kBAAkB,CAAC,oBAAoB,EAAG,mCAAmC;IAmE7E;;OAEG;IACH,MAAM;IAQN;;;OAGG;IACH,SAAS,IAAI,OAAO;yCAtQT,mBAAmB;2CAAnB,mBAAmB;CA8Q/B"}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { AbstractControl, ControlValueAccessor, NgForm, UntypedFormBuilder, UntypedFormGroup, ValidationErrors, Validator } from '@angular/forms';
|
|
3
|
+
import { Subscription } from 'rxjs';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class LinkComponent implements OnInit, ControlValueAccessor, Validator {
|
|
6
|
+
fb: UntypedFormBuilder;
|
|
7
|
+
formDirective: NgForm;
|
|
8
|
+
form: UntypedFormGroup;
|
|
9
|
+
/** denote if the control is required or not*/
|
|
10
|
+
isRequired: boolean;
|
|
11
|
+
/** Text to be displayed in link or button*/
|
|
12
|
+
text: string;
|
|
13
|
+
/** URI of the page to be opened */
|
|
14
|
+
uri: string;
|
|
15
|
+
/** URL of the external page to be opened */
|
|
16
|
+
externalUrl: string;
|
|
17
|
+
/** Render text as link*/
|
|
18
|
+
link: boolean;
|
|
19
|
+
onTouched: Function;
|
|
20
|
+
onChangeSubs: Subscription[];
|
|
21
|
+
private onChange;
|
|
22
|
+
constructor(fb: UntypedFormBuilder);
|
|
23
|
+
ngOnInit(): void;
|
|
24
|
+
get isClicked(): AbstractControl<any, any>;
|
|
25
|
+
ngOnDestroy(): void;
|
|
26
|
+
registerOnChange(onChange: any): void;
|
|
27
|
+
registerOnTouched(onTouched: Function): void;
|
|
28
|
+
writeValue(value: string): void;
|
|
29
|
+
setDisabledState?(isDisabled: boolean): void;
|
|
30
|
+
validate(control: AbstractControl<any, any>): ValidationErrors;
|
|
31
|
+
openLink(): void;
|
|
32
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LinkComponent, never>;
|
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LinkComponent, "app-link", never, { "isRequired": { "alias": "isRequired"; "required": false; }; "text": { "alias": "text"; "required": false; }; "uri": { "alias": "uri"; "required": false; }; "externalUrl": { "alias": "externalUrl"; "required": false; }; "link": { "alias": "link"; "required": false; }; }, {}, never, never, false, never>;
|
|
34
|
+
}
|
|
35
|
+
//# sourceMappingURL=link.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"link.component.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/components/link/link.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoB,MAAM,EAAa,MAAM,eAAe,CAAC;AACpE,OAAO,EAAE,eAAe,EAAE,oBAAoB,EAAoC,MAAM,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,gBAAgB,EAAE,SAAS,EAAc,MAAM,gBAAgB,CAAC;AAChM,OAAO,EAAE,YAAY,EAAE,MAAM,MAAM,CAAC;;AAGpC,qBAea,aAAc,YAAW,MAAM,EAAE,oBAAoB,EAAE,SAAS;IA8BxD,EAAE,EAAE,kBAAkB;IA3BlC,aAAa,EAAE,MAAM,CAAC;IAE7B,IAAI,EAAE,gBAAgB,CAAC;IAEvB,8CAA8C;IACrC,UAAU,EAAG,OAAO,CAAS;IAEtC,4CAA4C;IACnC,IAAI,EAAG,MAAM,CAAC;IAEvB,mCAAmC;IAC1B,GAAG,EAAG,MAAM,CAAC;IAEtB,4CAA4C;IACnC,WAAW,EAAG,MAAM,CAAC;IAE9B,yBAAyB;IAChB,IAAI,EAAG,OAAO,CAAC;IAExB,SAAS,EAAE,QAAQ,CAAa;IAEhC,YAAY,EAAE,YAAY,EAAE,CAAM;IAElC,OAAO,CAAC,QAAQ,CAEd;gBAEiB,EAAE,EAAE,kBAAkB;IAIzC,QAAQ,IAAI,IAAI;IAYhB,IAAI,SAAS,8BAEZ;IAED,WAAW;IAMX,gBAAgB,CAAC,QAAQ,EAAE,GAAG;IAI9B,iBAAiB,CAAC,SAAS,EAAE,QAAQ;IAIrC,UAAU,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI;IAI/B,gBAAgB,CAAC,CAAC,UAAU,EAAE,OAAO,GAAG,IAAI;IAS5C,QAAQ,CAAC,OAAO,EAAE,eAAe,CAAC,GAAG,EAAE,GAAG,CAAC,GAAG,gBAAgB;IAI9D,QAAQ;yCAjFG,aAAa;2CAAb,aAAa;CAyFzB"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { NavController } from '@ionic/angular';
|
|
3
|
+
import { MaintenanceService } from '../../services/maintenance/maintenance.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class MaintenanceDetectorComponent implements OnInit {
|
|
6
|
+
ms: MaintenanceService;
|
|
7
|
+
nav: NavController;
|
|
8
|
+
blockUi: boolean;
|
|
9
|
+
constructor(ms: MaintenanceService, nav: NavController);
|
|
10
|
+
ngOnInit(): void;
|
|
11
|
+
checkForMaintenance(): void;
|
|
12
|
+
ionViewDidEnter(): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MaintenanceDetectorComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MaintenanceDetectorComponent, "app-maintenance-detector", never, {}, {}, never, never, false, never>;
|
|
15
|
+
}
|
|
16
|
+
//# sourceMappingURL=maintenance-detector.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"maintenance-detector.component.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/components/maintenance-detector/maintenance-detector.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,MAAM,EAAC,MAAM,eAAe,CAAC;AAEjD,OAAO,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAC;AAC/C,OAAO,EAAE,kBAAkB,EAAE,MAAM,gDAAgD,CAAC;;AAGpF,qBAKa,4BAA6B,YAAW,MAAM;IAGtC,EAAE,EAAG,kBAAkB;IAAS,GAAG,EAAG,aAAa;IAD/D,OAAO,EAAG,OAAO,CAAQ;gBACb,EAAE,EAAG,kBAAkB,EAAS,GAAG,EAAG,aAAa;IAEtE,QAAQ,IAAI,IAAI;IAIhB,mBAAmB;IAYnB,eAAe;yCArBJ,4BAA4B;2CAA5B,4BAA4B;CAyBxC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { UtilService } from '../../services/util/util.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MaskComponent implements OnInit {
|
|
5
|
+
util: UtilService;
|
|
6
|
+
value: string;
|
|
7
|
+
constructor(util: UtilService);
|
|
8
|
+
ngOnInit(): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MaskComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MaskComponent, "app-mask", never, { "value": { "alias": "value"; "required": false; }; }, {}, never, never, false, never>;
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=mask.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mask.component.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/components/mask/mask.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoB,MAAM,EAAE,MAAM,eAAe,CAAC;AACzD,OAAO,EAAE,WAAW,EAAE,MAAM,kCAAkC,CAAC;;AAE/D,qBAKa,aAAc,YAAW,MAAM;IAIvB,IAAI,EAAG,WAAW;IAFrB,KAAK,EAAG,MAAM,CAAC;gBAEZ,IAAI,EAAG,WAAW;IAErC,QAAQ,IAAI,IAAI;yCANL,aAAa;2CAAb,aAAa;CAQzB"}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { ActivatedRoute, Router } from '@angular/router';
|
|
3
|
+
import { MenuController, NavController, PopoverController } from '@ionic/angular';
|
|
4
|
+
import { MenuItem } from 'primeng/api';
|
|
5
|
+
import { UserModel } from '../../models/UserModel';
|
|
6
|
+
import { LoginService } from '../../services/login/login.service';
|
|
7
|
+
import { NotificationService } from '../../services/notification/notification.service';
|
|
8
|
+
import { UtilService } from '../../services/util/util.service';
|
|
9
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
11
|
+
export declare class MenuComponent implements OnInit {
|
|
12
|
+
private nav;
|
|
13
|
+
popup: PopoverController;
|
|
14
|
+
ls: LoginService;
|
|
15
|
+
ns: NotificationService;
|
|
16
|
+
r: Router;
|
|
17
|
+
menu: MenuController;
|
|
18
|
+
util: UtilService;
|
|
19
|
+
ar: ActivatedRoute;
|
|
20
|
+
translateService: TranslateService;
|
|
21
|
+
menus: MenuItem[];
|
|
22
|
+
appVersion: any;
|
|
23
|
+
showFavButton: boolean;
|
|
24
|
+
reRenderMenu: boolean;
|
|
25
|
+
legacyMenu: any;
|
|
26
|
+
showProfilePopup: boolean;
|
|
27
|
+
constructor(nav: NavController, popup: PopoverController, ls: LoginService, ns: NotificationService, r: Router, menu: MenuController, util: UtilService, ar: ActivatedRoute, translateService: TranslateService);
|
|
28
|
+
ngOnInit(): void;
|
|
29
|
+
setMenu(user: UserModel): void;
|
|
30
|
+
setClaimantMenu(): void;
|
|
31
|
+
loadMenu(): void;
|
|
32
|
+
fetchNotifications(): void;
|
|
33
|
+
private setupUserMenu;
|
|
34
|
+
openPage(menu: MenuItem): void;
|
|
35
|
+
markFavourite(item: any): void;
|
|
36
|
+
openHome(): void;
|
|
37
|
+
menuOpened(): void;
|
|
38
|
+
showIcon(item: any): boolean;
|
|
39
|
+
navigate(contextRoot: any, uri: any): void;
|
|
40
|
+
presentMyNotificationPopover(event: any): Promise<void>;
|
|
41
|
+
presentMyProfilePopover(event: any): Promise<void>;
|
|
42
|
+
logout(): void;
|
|
43
|
+
get userProfileLabel(): any;
|
|
44
|
+
get userDocumentsLabel(): any;
|
|
45
|
+
get userLogoutLabel(): any;
|
|
46
|
+
getHomeLabel(): any;
|
|
47
|
+
getClaimsLabel(): any;
|
|
48
|
+
getWeeklyLabel(): any;
|
|
49
|
+
getHistoryLabel(): any;
|
|
50
|
+
getWorkSearchLabel(): any;
|
|
51
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MenuComponent, never>;
|
|
52
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MenuComponent, "app-menu", never, {}, {}, never, never, false, never>;
|
|
53
|
+
}
|
|
54
|
+
//# sourceMappingURL=menu.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"menu.component.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/components/menu/menu.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,MAAM,EAAE,MAAM,eAAe,CAAC;AAClD,OAAO,EAAE,cAAc,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AACzD,OAAO,EAAE,cAAc,EAAE,aAAa,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AAClF,OAAO,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAC;AAEvC,OAAO,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAC;AAGnD,OAAO,EAAE,YAAY,EAAE,MAAM,oCAAoC,CAAC;AAClE,OAAO,EAAE,mBAAmB,EAAE,MAAM,kDAAkD,CAAC;AACvF,OAAO,EAAE,WAAW,EAAE,MAAM,kCAAkC,CAAC;AAC/D,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;;AAEvD,qBAKa,aAAc,YAAW,MAAM;IAS9B,OAAO,CAAC,GAAG;IAAwB,KAAK,EAAE,iBAAiB;IAAS,EAAE,EAAE,YAAY;IAAS,EAAE,EAAE,mBAAmB;IAC7G,CAAC,EAAE,MAAM;IAAS,IAAI,EAAE,cAAc;IAAS,IAAI,EAAE,WAAW;IAAS,EAAE,EAAG,cAAc;IAAS,gBAAgB,EAAG,gBAAgB;IARpJ,KAAK,EAAE,QAAQ,EAAE,CAAC;IAClB,UAAU,MAA2B;IACrC,aAAa,UAAS;IACtB,YAAY,UAAQ;IACpB,UAAU,MAA2B;IACrC,gBAAgB,EAAG,OAAO,CAAS;gBAEtB,GAAG,EAAE,aAAa,EAAS,KAAK,EAAE,iBAAiB,EAAS,EAAE,EAAE,YAAY,EAAS,EAAE,EAAE,mBAAmB,EAC7G,CAAC,EAAE,MAAM,EAAS,IAAI,EAAE,cAAc,EAAS,IAAI,EAAE,WAAW,EAAS,EAAE,EAAG,cAAc,EAAS,gBAAgB,EAAG,gBAAgB;IAI3J,QAAQ;IAMR,OAAO,CAAC,IAAI,EAAE,SAAS;IAevB,eAAe;IA2Df,QAAQ;IAgBR,kBAAkB;IAelB,OAAO,CAAC,aAAa;IAarB,QAAQ,CAAC,IAAI,EAAE,QAAQ;IA4BvB,aAAa,CAAC,IAAI,KAAA;IAoBlB,QAAQ;IAIR,UAAU;IAKV,QAAQ,CAAC,IAAI,KAAA;IAKb,QAAQ,CAAC,WAAW,KAAA,EAAE,GAAG,KAAA;IAYnB,4BAA4B,CAAC,KAAK,KAAA;IAelC,uBAAuB,CAAC,KAAK,KAAA;IAkBnC,MAAM;IAMN,IAAI,gBAAgB,QAEnB;IAED,IAAI,kBAAkB,QAErB;IAED,IAAI,eAAe,QAElB;IAED,YAAY;IAIZ,cAAc;IAId,cAAc;IAId,eAAe;IAIf,kBAAkB;yCAvRP,aAAa;2CAAb,aAAa;CA0RzB"}
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import { EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { UntypedFormBuilder, UntypedFormGroup } from '@angular/forms';
|
|
3
|
+
import { NavController } from '@ionic/angular';
|
|
4
|
+
import { BehaviorSubject, Subscription } from 'rxjs';
|
|
5
|
+
import { ErrorModel } from '../../models/ErrorModel';
|
|
6
|
+
import { ComboOption } from '../../models/questionnaire/ComboModel';
|
|
7
|
+
import { UserModel } from '../../models/UserModel';
|
|
8
|
+
import { CaptchaService } from '../../services/captcha/captcha.service';
|
|
9
|
+
import { LoginService } from '../../services/login/login.service';
|
|
10
|
+
import { UtilService } from '../../services/util/util.service';
|
|
11
|
+
import { SecurityService } from '../../services/security-service/security.service';
|
|
12
|
+
import { Router } from '@angular/router';
|
|
13
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
14
|
+
import * as i0 from "@angular/core";
|
|
15
|
+
export declare class MfaComponent implements OnDestroy, OnChanges, OnInit {
|
|
16
|
+
ls: LoginService;
|
|
17
|
+
fb: UntypedFormBuilder;
|
|
18
|
+
private util;
|
|
19
|
+
nav: NavController;
|
|
20
|
+
private cs;
|
|
21
|
+
private ss;
|
|
22
|
+
private router;
|
|
23
|
+
translateService: TranslateService;
|
|
24
|
+
otpField: any;
|
|
25
|
+
private RESEND_CODE_ACTION_NAME;
|
|
26
|
+
successDtls: any;
|
|
27
|
+
blocked: boolean;
|
|
28
|
+
isChecked: boolean;
|
|
29
|
+
showHelp: boolean;
|
|
30
|
+
hideOptValidator: boolean;
|
|
31
|
+
user: UserModel;
|
|
32
|
+
heading: string;
|
|
33
|
+
requestCode: boolean;
|
|
34
|
+
data: any;
|
|
35
|
+
mfaError: ErrorModel;
|
|
36
|
+
hideButtons: boolean;
|
|
37
|
+
returningUser: boolean;
|
|
38
|
+
display: boolean;
|
|
39
|
+
clear: EventEmitter<any>;
|
|
40
|
+
success: EventEmitter<any>;
|
|
41
|
+
error: EventEmitter<any>;
|
|
42
|
+
otpForm: UntypedFormGroup;
|
|
43
|
+
errorDtls: any;
|
|
44
|
+
time: number;
|
|
45
|
+
timerInterval: import("rxjs").Observable<number>;
|
|
46
|
+
timer: import("rxjs").Observable<0>;
|
|
47
|
+
countDown: import("rxjs").Observable<number>;
|
|
48
|
+
counter: BehaviorSubject<number>;
|
|
49
|
+
counterSubscription: Subscription;
|
|
50
|
+
options: ComboOption[];
|
|
51
|
+
constructor(ls: LoginService, fb: UntypedFormBuilder, util: UtilService, nav: NavController, cs: CaptchaService, ss: SecurityService, router: Router, translateService: TranslateService);
|
|
52
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
53
|
+
ngOnDestroy(): void;
|
|
54
|
+
ngOnInit(): void;
|
|
55
|
+
requestNewAuthCode(otpType: string): void;
|
|
56
|
+
setCountdown(): void;
|
|
57
|
+
initilizeForm(): void;
|
|
58
|
+
get otp(): import("@angular/forms").AbstractControl<any, any>;
|
|
59
|
+
get option(): import("@angular/forms").AbstractControl<any, any>;
|
|
60
|
+
get checked(): import("@angular/forms").AbstractControl<any, any>;
|
|
61
|
+
close(triggerExitAPI?: boolean): void;
|
|
62
|
+
submit(): void;
|
|
63
|
+
signIn(): void;
|
|
64
|
+
sendOtp(event: any): void;
|
|
65
|
+
get AccessVerify(): any;
|
|
66
|
+
get AccessRequired(): any;
|
|
67
|
+
get AccessConfirm(): any;
|
|
68
|
+
resendAuthCode(otpType: string): void;
|
|
69
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MfaComponent, never>;
|
|
70
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MfaComponent, "app-mfa", never, { "user": { "alias": "user"; "required": false; }; "heading": { "alias": "heading"; "required": false; }; "requestCode": { "alias": "requestCode"; "required": false; }; "data": { "alias": "data"; "required": false; }; "mfaError": { "alias": "mfaError"; "required": false; }; "hideButtons": { "alias": "hideButtons"; "required": false; }; "returningUser": { "alias": "returningUser"; "required": false; }; "display": { "alias": "display"; "required": false; }; }, { "clear": "clear"; "success": "success"; "error": "error"; }, never, never, false, never>;
|
|
71
|
+
}
|
|
72
|
+
//# sourceMappingURL=mfa.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mfa.component.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/components/mfa/mfa.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAS,SAAS,EAAE,SAAS,EAAE,MAAM,EAAU,aAAa,EAAa,MAAM,eAAe,CAAC;AAC/H,OAAO,EAAE,kBAAkB,EAAE,gBAAgB,EAAc,MAAM,gBAAgB,CAAC;AAClF,OAAO,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAC;AAC/C,OAAO,EAAE,eAAe,EAAY,YAAY,EAAS,MAAM,MAAM,CAAC;AAEtE,OAAO,EAAE,UAAU,EAAE,MAAM,yBAAyB,CAAC;AACrD,OAAO,EAAE,WAAW,EAAE,MAAM,uCAAuC,CAAC;AACpE,OAAO,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAC;AACnD,OAAO,EAAE,cAAc,EAAE,MAAM,wCAAwC,CAAC;AACxE,OAAO,EAAE,YAAY,EAAE,MAAM,oCAAoC,CAAC;AAClE,OAAO,EAAE,WAAW,EAAE,MAAM,kCAAkC,CAAC;AAC/D,OAAO,EAAE,eAAe,EAAE,MAAM,kDAAkD,CAAC;AACnF,OAAO,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AACzC,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;;AAEvD,qBAKa,YAAa,YAAW,SAAS,EAAE,SAAS,EAAE,MAAM;IA8D5C,EAAE,EAAE,YAAY;IAAS,EAAE,EAAG,kBAAkB;IACvD,OAAO,CAAC,IAAI;IAAsB,GAAG,EAAG,aAAa;IAAE,OAAO,CAAC,EAAE;IAChE,OAAO,CAAC,EAAE;IAAmB,OAAO,CAAC,MAAM;IACpC,gBAAgB,EAAE,gBAAgB;IA/D/B,QAAQ,MAAC;IAChC,OAAO,CAAC,uBAAuB,CAAqB;IAE7C,WAAW,MAAC;IAEZ,OAAO,EAAE,OAAO,CAAC;IAEjB,SAAS,EAAE,OAAO,CAAS;IAE3B,QAAQ,EAAE,OAAO,CAAS;IAE1B,gBAAgB,UAAQ;IAE/B,IAAI,EAAG,SAAS,CAAC;IAGR,OAAO,EAAG,MAAM,CAAC;IAI1B,WAAW,EAAG,OAAO,CAAC;IAItB,IAAI,EAAG,GAAG,CAAC;IAGX,QAAQ,EAAG,UAAU,CAAC;IAGtB,WAAW,EAAG,OAAO,CAAS;IAG9B,aAAa,EAAE,OAAO,CAAC;IAEvB,OAAO,UAAS;IAEN,KAAK,EAAE,YAAY,CAAC,GAAG,CAAC,CAAsB;IAE9C,OAAO,EAAE,YAAY,CAAC,GAAG,CAAC,CAAsB;IAEhD,KAAK,EAAE,YAAY,CAAC,GAAG,CAAC,CAAsB;IAEjD,OAAO,EAAG,gBAAgB,CAAC;IAE3B,SAAS,MAAC;IAEV,IAAI,SAAK;IACT,aAAa,oCAAkB;IAC/B,KAAK,+BAAgB;IACrB,SAAS,oCAA4C;IACrD,OAAO,EAAG,eAAe,CAAC,MAAM,CAAC,CAA0B;IAClE,mBAAmB,EAAG,YAAY,CAAC;IAE5B,OAAO,EAAG,WAAW,EAAE,CAG5B;gBAGiB,EAAE,EAAE,YAAY,EAAS,EAAE,EAAG,kBAAkB,EAC/C,IAAI,EAAE,WAAW,EAAS,GAAG,EAAG,aAAa,EAAU,EAAE,EAAE,cAAc,EACxE,EAAE,EAAE,eAAe,EAAU,MAAM,EAAE,MAAM,EAC5C,gBAAgB,EAAE,gBAAgB;IAItD,WAAW,CAAC,OAAO,EAAE,aAAa,GAAG,IAAI;IAWzC,WAAW,IAAI,IAAI;IAMnB,QAAQ;IAmBR,kBAAkB,CAAC,OAAO,EAAG,MAAM;IAenC,YAAY;IAUZ,aAAa;IASb,IAAI,GAAG,uDAEN;IAED,IAAI,MAAM,uDAET;IAED,IAAI,OAAO,uDAEV;IAED,KAAK,CAAC,cAAc,UAAO;IAK3B,MAAM;IAUN,MAAM;IAgDN,OAAO,CAAC,KAAK,KAAA;IAIb,IAAI,YAAY,QAEf;IACD,IAAI,cAAc,QAEjB;IAED,IAAI,aAAa,QAEhB;IACD,cAAc,CAAC,OAAO,EAAG,MAAM;yCApOpB,YAAY;2CAAZ,YAAY;CAsPxB"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { UserModel } from '../../models/UserModel';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MfaPopupComponent {
|
|
5
|
+
user: UserModel;
|
|
6
|
+
returningUser: boolean;
|
|
7
|
+
display: boolean;
|
|
8
|
+
heading: string;
|
|
9
|
+
clear: EventEmitter<boolean>;
|
|
10
|
+
success: EventEmitter<any>;
|
|
11
|
+
error: EventEmitter<any>;
|
|
12
|
+
constructor();
|
|
13
|
+
close(triggerExitAPI?: boolean): void;
|
|
14
|
+
loginSuccess(event: any): void;
|
|
15
|
+
reset(event: any): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MfaPopupComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MfaPopupComponent, "app-mfa-popup", never, { "user": { "alias": "user"; "required": false; }; "returningUser": { "alias": "returningUser"; "required": false; }; "display": { "alias": "display"; "required": false; }; "heading": { "alias": "heading"; "required": false; }; }, { "clear": "clear"; "success": "success"; "error": "error"; }, never, never, false, never>;
|
|
18
|
+
}
|
|
19
|
+
//# sourceMappingURL=mfa-popup.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mfa-popup.component.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/components/mfa-popup/mfa-popup.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAiB,MAAM,eAAe,CAAC;AACvE,OAAO,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAC;;AAEnD,qBAKa,iBAAiB;IAG5B,IAAI,EAAG,SAAS,CAAC;IAGjB,aAAa,EAAE,OAAO,CAAC;IAGvB,OAAO,EAAE,OAAO,CAAC;IAGR,OAAO,EAAG,MAAM,CAAC;IAEhB,KAAK,EAAE,YAAY,CAAC,OAAO,CAAC,CAAsB;IAElD,OAAO,EAAE,YAAY,CAAC,GAAG,CAAC,CAAsB;IAEhD,KAAK,EAAE,YAAY,CAAC,GAAG,CAAC,CAAsB;;IAIxD,KAAK,CAAC,cAAc,UAAO;IAM3B,YAAY,CAAC,KAAK,KAAA;IAIlB,KAAK,CAAC,KAAK,KAAA;yCAhCA,iBAAiB;2CAAjB,iBAAiB;CAoC7B"}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { UntypedFormBuilder, UntypedFormGroup } from '@angular/forms';
|
|
3
|
+
import { NavController } from '@ionic/angular';
|
|
4
|
+
import { UserModel } from '../../models/UserModel';
|
|
5
|
+
import { LoginService } from '../../services/login/login.service';
|
|
6
|
+
import { UtilService } from '../../services/util/util.service';
|
|
7
|
+
import { Router } from '@angular/router';
|
|
8
|
+
import { ClaimantService } from '../../services/claimant-service/claimant.service';
|
|
9
|
+
import { ClaimantUspsRedirectService } from '../../services/claimant-service/claimant-usps-redirect.service';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
11
|
+
export declare class Mfa2Component implements OnInit {
|
|
12
|
+
ls: LoginService;
|
|
13
|
+
fb: UntypedFormBuilder;
|
|
14
|
+
private util;
|
|
15
|
+
nav: NavController;
|
|
16
|
+
private document;
|
|
17
|
+
private router;
|
|
18
|
+
private cs;
|
|
19
|
+
private ur;
|
|
20
|
+
returningUser: boolean;
|
|
21
|
+
user: UserModel;
|
|
22
|
+
form: any;
|
|
23
|
+
display: boolean;
|
|
24
|
+
verificationPreference: any;
|
|
25
|
+
ssn: any;
|
|
26
|
+
clear: EventEmitter<any>;
|
|
27
|
+
success: EventEmitter<any>;
|
|
28
|
+
error: EventEmitter<any>;
|
|
29
|
+
vCodeForm: UntypedFormGroup;
|
|
30
|
+
otpAttemptCount: number;
|
|
31
|
+
incorrectGuess: boolean;
|
|
32
|
+
uspsRedirectUrl: string;
|
|
33
|
+
constructor(ls: LoginService, fb: UntypedFormBuilder, util: UtilService, nav: NavController, document: Document, router: Router, cs: ClaimantService, ur: ClaimantUspsRedirectService);
|
|
34
|
+
ngOnInit(): void;
|
|
35
|
+
ngOnDestroy(): void;
|
|
36
|
+
initilizeForm(): void;
|
|
37
|
+
get vCode(): import("@angular/forms").AbstractControl<any, any>;
|
|
38
|
+
close(): void;
|
|
39
|
+
aboutUs(): void;
|
|
40
|
+
signIn(): void;
|
|
41
|
+
uspsRedirectWithoutLogout(err: any): void;
|
|
42
|
+
uspsRedirect(err: any): void;
|
|
43
|
+
regenerateOtp(): void;
|
|
44
|
+
logout(): void;
|
|
45
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Mfa2Component, never>;
|
|
46
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<Mfa2Component, "app-mfa2", never, { "returningUser": { "alias": "returningUser"; "required": false; }; "user": { "alias": "user"; "required": false; }; "form": { "alias": "form"; "required": false; }; "display": { "alias": "display"; "required": false; }; "verificationPreference": { "alias": "verificationPreference"; "required": false; }; "ssn": { "alias": "ssn"; "required": false; }; }, { "clear": "clear"; "success": "success"; "error": "error"; }, never, never, false, never>;
|
|
47
|
+
}
|
|
48
|
+
//# sourceMappingURL=mfa2.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mfa2.component.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/components/mfa2/mfa2.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAiB,MAAM,EAAU,MAAM,eAAe,CAAC;AACvF,OAAO,EAAE,kBAAkB,EAAE,gBAAgB,EAAc,MAAM,gBAAgB,CAAC;AAClF,OAAO,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAC;AAC/C,OAAO,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAC;AACnD,OAAO,EAAE,YAAY,EAAE,MAAM,oCAAoC,CAAC;AAClE,OAAO,EAAE,WAAW,EAAE,MAAM,kCAAkC,CAAC;AAE/D,OAAO,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AACzC,OAAO,EAAE,eAAe,EAAE,MAAM,kDAAkD,CAAC;AACnF,OAAO,EAAE,2BAA2B,EAAE,MAAM,gEAAgE,CAAC;;AAG7G,qBAKa,aAAc,YAAW,MAAM;IA2BjC,EAAE,EAAE,YAAY;IAChB,EAAE,EAAE,kBAAkB;IAC7B,OAAO,CAAC,IAAI;IACL,GAAG,EAAE,aAAa;IACP,OAAO,CAAC,QAAQ;IAClC,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,EAAE;IACV,OAAO,CAAC,EAAE;IAhCL,aAAa,EAAE,OAAO,CAAS;IAE7B,IAAI,EAAE,SAAS,CAAC;IAEhB,IAAI,MAAC;IAEL,OAAO,EAAE,OAAO,CAAS;IAEzB,sBAAsB,MAAC;IAEvB,GAAG,MAAC;IAEH,KAAK,EAAE,YAAY,CAAC,GAAG,CAAC,CAAsB;IAE9C,OAAO,EAAE,YAAY,CAAC,GAAG,CAAC,CAAsB;IAEhD,KAAK,EAAE,YAAY,CAAC,GAAG,CAAC,CAAsB;IAEjD,SAAS,EAAE,gBAAgB,CAAC;IAE5B,eAAe,EAAE,MAAM,CAAC;IACxB,cAAc,EAAE,OAAO,CAAS;IAChC,eAAe,EAAE,MAAM,CAAC;gBAGtB,EAAE,EAAE,YAAY,EAChB,EAAE,EAAE,kBAAkB,EACrB,IAAI,EAAE,WAAW,EAClB,GAAG,EAAE,aAAa,EACC,QAAQ,EAAE,QAAQ,EACpC,MAAM,EAAE,MAAM,EACd,EAAE,EAAE,eAAe,EACnB,EAAE,EAAE,2BAA2B;IAGzC,QAAQ;IAIR,WAAW;IAIX,aAAa;IAOb,IAAI,KAAK,uDAER;IAED,KAAK;IAQL,OAAO;IAKP,MAAM;IAmDN,yBAAyB,CAAC,GAAG,KAAA;IA2B7B,YAAY,CAAC,GAAG,KAAA;IAuChB,aAAa;IAmBb,MAAM;yCA7MK,aAAa;2CAAb,aAAa;CAiNzB"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { ActivatedRoute } from '@angular/router';
|
|
2
|
+
import { ClaimAppEmpResponseModel } from '../../models/questionnaire/ClaimAppEmpResponseModel';
|
|
3
|
+
import { LoggerService } from '../../services/logger/logger.service';
|
|
4
|
+
import { LoginService } from '../../services/login/login.service';
|
|
5
|
+
import { ValidationService } from '../../services/questionnaire/validation.service';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class MoneyExpectComponent {
|
|
8
|
+
logger: LoggerService;
|
|
9
|
+
validationService: ValidationService;
|
|
10
|
+
ls: LoginService;
|
|
11
|
+
activatedRoute: ActivatedRoute;
|
|
12
|
+
moneyResponse: ClaimAppEmpResponseModel;
|
|
13
|
+
ssnForCSR: string;
|
|
14
|
+
constructor(logger: LoggerService, validationService: ValidationService, ls: LoginService, activatedRoute: ActivatedRoute);
|
|
15
|
+
ngOnInit(): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MoneyExpectComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MoneyExpectComponent, "money-expect", never, {}, {}, never, never, false, never>;
|
|
18
|
+
}
|
|
19
|
+
//# sourceMappingURL=money-expect.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"money-expect.component.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/components/money-expect/money-expect.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AAEjD,OAAO,EAAE,wBAAwB,EAAE,MAAM,qDAAqD,CAAC;AAC/F,OAAO,EAAE,aAAa,EAAE,MAAM,sCAAsC,CAAC;AACrE,OAAO,EAAE,YAAY,EAAE,MAAM,oCAAoC,CAAC;AAClE,OAAO,EAAE,iBAAiB,EAAE,MAAM,iDAAiD,CAAC;;AAEpF,qBAMa,oBAAoB;IAGZ,MAAM,EAAE,aAAa;IAAQ,iBAAiB,EAAE,iBAAiB;IAC3E,EAAE,EAAE,YAAY;IAAS,cAAc,EAAG,cAAc;IAH1D,aAAa,2BAAkC;IACtD,SAAS,EAAG,MAAM,CAAC;gBACA,MAAM,EAAE,aAAa,EAAQ,iBAAiB,EAAE,iBAAiB,EAC3E,EAAE,EAAE,YAAY,EAAS,cAAc,EAAG,cAAc;IAGjE,QAAQ;yCAPG,oBAAoB;2CAApB,oBAAoB;CA+BhC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class MsgComponent implements OnInit {
|
|
4
|
+
key: string;
|
|
5
|
+
value: string;
|
|
6
|
+
constructor();
|
|
7
|
+
ngOnInit(): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MsgComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MsgComponent, "app-msg", never, { "key": { "alias": "key"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, never, false, never>;
|
|
10
|
+
}
|
|
11
|
+
//# sourceMappingURL=msg.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"msg.component.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/components/msg/msg.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoB,MAAM,EAAE,MAAM,eAAe,CAAC;;AAEzD,qBAKa,YAAa,YAAW,MAAM;IAE3B,GAAG,EAAE,MAAM,CAAC;IAEV,KAAK,EAAE,MAAM,CAAC;;IAI9B,QAAQ,IAAI,IAAI;yCARL,YAAY;2CAAZ,YAAY;CAWxB"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { NewsAndAnnouncementModel } from '../../models/NewsAndAnnouncementModel';
|
|
3
|
+
import { BasePage } from '../../pages/BasePage';
|
|
4
|
+
import { NotificationService } from '../../services/notification/notification.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class NewsComponent extends BasePage implements OnInit {
|
|
7
|
+
ns: NotificationService;
|
|
8
|
+
news: NewsAndAnnouncementModel[];
|
|
9
|
+
constructor(ns: NotificationService);
|
|
10
|
+
ngOnInit(): void;
|
|
11
|
+
fetchNewsAndAnnouncementInfo(): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NewsComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NewsComponent, "app-news", never, {}, {}, never, never, false, never>;
|
|
14
|
+
}
|
|
15
|
+
//# sourceMappingURL=news.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"news.component.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/components/news/news.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,MAAM,EAAE,MAAM,eAAe,CAAC;AAClD,OAAO,EAAE,wBAAwB,EAAE,MAAM,uCAAuC,CAAC;AACjF,OAAO,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAChD,OAAO,EAAE,mBAAmB,EAAE,MAAM,kDAAkD,CAAC;;AAEvF,qBAKa,aAAc,SAAQ,QAAS,YAAW,MAAM;IAIxC,EAAE,EAAG,mBAAmB;IAFpC,IAAI,EAAG,wBAAwB,EAAE,CAAM;gBAE3B,EAAE,EAAG,mBAAmB;IAI3C,QAAQ;IAID,4BAA4B;yCAZxB,aAAa;2CAAb,aAAa;CAyBzB"}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { ElementRef, OnChanges, OnInit, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { ControlValueAccessor, UntypedFormBuilder, UntypedFormGroup } from '@angular/forms';
|
|
3
|
+
import { Dialog } from 'primeng/dialog';
|
|
4
|
+
import { OverlayPanel } from 'primeng/overlaypanel';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class OverlayInfoComponent implements OnInit, ControlValueAccessor, OnChanges {
|
|
7
|
+
private elementRef;
|
|
8
|
+
formBuilder: UntypedFormBuilder;
|
|
9
|
+
concentForm: UntypedFormGroup;
|
|
10
|
+
op1: OverlayPanel;
|
|
11
|
+
popup: Dialog;
|
|
12
|
+
displayText: string;
|
|
13
|
+
overlayText: string;
|
|
14
|
+
param: any;
|
|
15
|
+
displayAsLabel: boolean;
|
|
16
|
+
labelWithLink: boolean;
|
|
17
|
+
labelWithPopup: boolean;
|
|
18
|
+
showPopup: boolean;
|
|
19
|
+
private onChange;
|
|
20
|
+
private onTouch;
|
|
21
|
+
constructor(elementRef: ElementRef, formBuilder: UntypedFormBuilder);
|
|
22
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
23
|
+
writeValue(obj: any): void;
|
|
24
|
+
registerOnChange(fn: any): void;
|
|
25
|
+
registerOnTouched(fn: any): void;
|
|
26
|
+
setDisabledState?(isDisabled: boolean): void;
|
|
27
|
+
ngOnInit(): void;
|
|
28
|
+
get concent(): import("@angular/forms").AbstractControl<any, any>;
|
|
29
|
+
ngAfterViewInit(): void;
|
|
30
|
+
openOverlay(event: any): void;
|
|
31
|
+
openPopup(event: any): void;
|
|
32
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OverlayInfoComponent, never>;
|
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OverlayInfoComponent, "app-overlay-info", never, { "displayText": { "alias": "displayText"; "required": false; }; "overlayText": { "alias": "overlayText"; "required": false; }; "param": { "alias": "param"; "required": false; }; "displayAsLabel": { "alias": "displayAsLabel"; "required": false; }; "labelWithLink": { "alias": "labelWithLink"; "required": false; }; "labelWithPopup": { "alias": "labelWithPopup"; "required": false; }; }, {}, never, ["*", "*"], false, never>;
|
|
34
|
+
}
|
|
35
|
+
//# sourceMappingURL=overlay-info.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"overlay-info.component.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/components/overlay-info/overlay-info.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAa,UAAU,EAAS,SAAS,EAAE,MAAM,EAAE,aAAa,EAAa,MAAM,eAAe,CAAC;AAC1G,OAAO,EAAE,oBAAoB,EAA4C,kBAAkB,EAAE,gBAAgB,EAAc,MAAM,gBAAgB,CAAC;AAClJ,OAAO,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AACxC,OAAO,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;;AAEpD,qBAgBa,oBAAqB,YAAW,MAAM,EAAE,oBAAoB,EAAE,SAAS;IAqCtE,OAAO,CAAC,UAAU;IAAqB,WAAW,EAAE,kBAAkB;IAnC3E,WAAW,EAAE,gBAAgB,CAAC;IAGrC,GAAG,EAAG,YAAY,CAAC;IAGnB,KAAK,EAAG,MAAM,CAAC;IAGf,WAAW,EAAG,MAAM,CAAC;IAGrB,WAAW,EAAG,MAAM,CAAC;IAGrB,KAAK,EAAG,GAAG,CAAC;IAGZ,cAAc,EAAG,OAAO,CAAS;IAGjC,aAAa,EAAG,OAAO,CAAS;IAGhC,cAAc,EAAG,OAAO,CAAS;IAE1B,SAAS,UAAS;IAEzB,OAAO,CAAC,QAAQ,CAEd;IACF,OAAO,CAAC,OAAO,CAEb;gBAEkB,UAAU,EAAE,UAAU,EAAS,WAAW,EAAE,kBAAkB;IAClF,WAAW,CAAC,OAAO,EAAE,aAAa,GAAG,IAAI;IAGzC,UAAU,CAAC,GAAG,EAAE,GAAG,GAAG,IAAI;IAG1B,gBAAgB,CAAC,EAAE,EAAE,GAAG,GAAG,IAAI;IAG/B,iBAAiB,CAAC,EAAE,EAAE,GAAG,GAAG,IAAI;IAGhC,gBAAgB,CAAC,CAAC,UAAU,EAAE,OAAO,GAAG,IAAI;IAG5C,QAAQ;IAUR,IAAI,OAAO,uDAEV;IAED,eAAe;IAuBf,WAAW,CAAC,KAAK,KAAA;IAMjB,SAAS,CAAC,KAAK,KAAA;yCAhGJ,oBAAoB;2CAApB,oBAAoB;CAoGhC"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { NavController } from '@ionic/angular';
|
|
3
|
+
import { LoginService } from '../../services/login/login.service';
|
|
4
|
+
import { UtilService } from '../../services/util/util.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class PageComponent implements OnInit {
|
|
7
|
+
private nav;
|
|
8
|
+
private ls;
|
|
9
|
+
util: UtilService;
|
|
10
|
+
src: string;
|
|
11
|
+
style: string;
|
|
12
|
+
alt: string;
|
|
13
|
+
icon: string;
|
|
14
|
+
headingText: string;
|
|
15
|
+
detailText: string;
|
|
16
|
+
homeButton: boolean;
|
|
17
|
+
hideCard: boolean;
|
|
18
|
+
constructor(nav: NavController, ls: LoginService, util: UtilService);
|
|
19
|
+
ngOnInit(): void;
|
|
20
|
+
openHome(): void;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PageComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PageComponent, "app-page", never, { "src": { "alias": "src"; "required": false; }; "style": { "alias": "style"; "required": false; }; "alt": { "alias": "alt"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "headingText": { "alias": "headingText"; "required": false; }; "detailText": { "alias": "detailText"; "required": false; }; "homeButton": { "alias": "homeButton"; "required": false; }; "hideCard": { "alias": "hideCard"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
23
|
+
}
|
|
24
|
+
//# sourceMappingURL=page.component.d.ts.map
|