@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,155 @@
|
|
|
1
|
+
import { TemplateRef } from '@angular/core';
|
|
2
|
+
import { ScrollerOptions } from 'primeng/api';
|
|
3
|
+
/**
|
|
4
|
+
* Filter callbacks of the dropdown.
|
|
5
|
+
* @group Interface
|
|
6
|
+
*/
|
|
7
|
+
export interface DropdownFilterOptions {
|
|
8
|
+
/**
|
|
9
|
+
* Filter function.
|
|
10
|
+
*/
|
|
11
|
+
filter?: (value?: any) => void;
|
|
12
|
+
/**
|
|
13
|
+
* Reset function.
|
|
14
|
+
*/
|
|
15
|
+
reset?: () => void;
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* Custom change event.
|
|
19
|
+
* @see {@link Dropdown.onChange}
|
|
20
|
+
* @group Events
|
|
21
|
+
*/
|
|
22
|
+
export interface DropdownChangeEvent {
|
|
23
|
+
/**
|
|
24
|
+
* Browser event.
|
|
25
|
+
*/
|
|
26
|
+
originalEvent: Event;
|
|
27
|
+
/**
|
|
28
|
+
* Selected option value
|
|
29
|
+
*/
|
|
30
|
+
value: any;
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Custom filter event.
|
|
34
|
+
* @see {@link Dropdown.onFilter}
|
|
35
|
+
* @group Events
|
|
36
|
+
*/
|
|
37
|
+
export interface DropdownFilterEvent {
|
|
38
|
+
/**
|
|
39
|
+
* Browser event.
|
|
40
|
+
*/
|
|
41
|
+
originalEvent: Event;
|
|
42
|
+
/**
|
|
43
|
+
* Filter value.
|
|
44
|
+
*/
|
|
45
|
+
filter: any;
|
|
46
|
+
}
|
|
47
|
+
/**
|
|
48
|
+
* Custom lazy load event.
|
|
49
|
+
* @see {@link Dropdown.onLazyLoad}
|
|
50
|
+
* @group Events
|
|
51
|
+
*/
|
|
52
|
+
export interface DropdownLazyLoadEvent {
|
|
53
|
+
/**
|
|
54
|
+
* Index of the first element in viewport.
|
|
55
|
+
*/
|
|
56
|
+
first: number;
|
|
57
|
+
/**
|
|
58
|
+
* Index of the last element in viewport.
|
|
59
|
+
*/
|
|
60
|
+
last: number;
|
|
61
|
+
}
|
|
62
|
+
/**
|
|
63
|
+
* Defines valid templates in Dropdown.
|
|
64
|
+
* @group Templates
|
|
65
|
+
*/
|
|
66
|
+
export interface DropdownTemplates {
|
|
67
|
+
/**
|
|
68
|
+
* Custom header template.
|
|
69
|
+
* @param {Object} context - item data.
|
|
70
|
+
*/
|
|
71
|
+
item(context: {
|
|
72
|
+
/**
|
|
73
|
+
* Data of the option.
|
|
74
|
+
*/
|
|
75
|
+
$implicit: any;
|
|
76
|
+
}): TemplateRef<{
|
|
77
|
+
$implicit: any;
|
|
78
|
+
}>;
|
|
79
|
+
/**
|
|
80
|
+
* Custom selected item template.
|
|
81
|
+
* @param {Object} context - selected item data.
|
|
82
|
+
*/
|
|
83
|
+
selectedItem(context: {
|
|
84
|
+
/**
|
|
85
|
+
* Selected option value.
|
|
86
|
+
*/
|
|
87
|
+
$implicit: any;
|
|
88
|
+
}): TemplateRef<{
|
|
89
|
+
$implicit: any;
|
|
90
|
+
}>;
|
|
91
|
+
/**
|
|
92
|
+
* Custom header template.
|
|
93
|
+
*/
|
|
94
|
+
header(): TemplateRef<any>;
|
|
95
|
+
/**
|
|
96
|
+
* Custom filter template.
|
|
97
|
+
* @param {DropdownFilterOptions} options - filter options.
|
|
98
|
+
*/
|
|
99
|
+
filter(context: {
|
|
100
|
+
/**
|
|
101
|
+
* Filter options.
|
|
102
|
+
*/
|
|
103
|
+
options: DropdownFilterOptions;
|
|
104
|
+
}): TemplateRef<{
|
|
105
|
+
options: DropdownFilterOptions;
|
|
106
|
+
}>;
|
|
107
|
+
/**
|
|
108
|
+
* Custom footer template.
|
|
109
|
+
*/
|
|
110
|
+
footer(): TemplateRef<any>;
|
|
111
|
+
/**
|
|
112
|
+
* Custom empty filter template.
|
|
113
|
+
*/
|
|
114
|
+
emptyfilter(): TemplateRef<any>;
|
|
115
|
+
/**
|
|
116
|
+
* Custom empty template.
|
|
117
|
+
*/
|
|
118
|
+
empty(): TemplateRef<any>;
|
|
119
|
+
/**
|
|
120
|
+
* Custom group template.
|
|
121
|
+
*/
|
|
122
|
+
group(context: {
|
|
123
|
+
/**
|
|
124
|
+
* Group option.
|
|
125
|
+
*/
|
|
126
|
+
$implicit: any;
|
|
127
|
+
}): TemplateRef<{
|
|
128
|
+
$implicit: any;
|
|
129
|
+
}>;
|
|
130
|
+
/**
|
|
131
|
+
* Custom loader template. This template can be used with virtualScroll.
|
|
132
|
+
* @param {ScrollerOptions} options - virtual scroller options.
|
|
133
|
+
*/
|
|
134
|
+
loader(context: {
|
|
135
|
+
/**
|
|
136
|
+
* Virtual scroller options.
|
|
137
|
+
*/
|
|
138
|
+
options: ScrollerOptions;
|
|
139
|
+
}): TemplateRef<{
|
|
140
|
+
options: ScrollerOptions;
|
|
141
|
+
}>;
|
|
142
|
+
/**
|
|
143
|
+
* Custom dropdown trigger icon template.
|
|
144
|
+
*/
|
|
145
|
+
dropdownicon(): TemplateRef<any>;
|
|
146
|
+
/**
|
|
147
|
+
* Custom clear icon template.
|
|
148
|
+
*/
|
|
149
|
+
clearicon(): TemplateRef<any>;
|
|
150
|
+
/**
|
|
151
|
+
* Custom filter icon template.
|
|
152
|
+
*/
|
|
153
|
+
filtericon(): TemplateRef<any>;
|
|
154
|
+
}
|
|
155
|
+
//# sourceMappingURL=dropdown.interface.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dropdown.interface.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/components/dropdown/dropdown.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,eAAe,EAAE,MAAM,aAAa,CAAC;AAE9C;;;GAGG;AACH,MAAM,WAAW,qBAAqB;IAClC;;OAEG;IACH,MAAM,CAAC,EAAE,CAAC,KAAK,CAAC,EAAE,GAAG,KAAK,IAAI,CAAC;IAC/B;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,IAAI,CAAC;CACtB;AACD;;;;GAIG;AACH,MAAM,WAAW,mBAAmB;IAChC;;OAEG;IACH,aAAa,EAAE,KAAK,CAAC;IACrB;;OAEG;IACH,KAAK,EAAE,GAAG,CAAC;CACd;AACD;;;;GAIG;AACH,MAAM,WAAW,mBAAmB;IAChC;;OAEG;IACH,aAAa,EAAE,KAAK,CAAC;IACrB;;OAEG;IACH,MAAM,EAAE,GAAG,CAAC;CACf;AACD;;;;GAIG;AACH,MAAM,WAAW,qBAAqB;IAClC;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;CAChB;AACD;;;GAGG;AACH,MAAM,WAAW,iBAAiB;IAC9B;;;OAGG;IACH,IAAI,CAAC,OAAO,EAAE;QACV;;WAEG;QACH,SAAS,EAAE,GAAG,CAAC;KAClB,GAAG,WAAW,CAAC;QAAE,SAAS,EAAE,GAAG,CAAA;KAAE,CAAC,CAAC;IACpC;;;OAGG;IACH,YAAY,CAAC,OAAO,EAAE;QAClB;;WAEG;QACH,SAAS,EAAE,GAAG,CAAC;KAClB,GAAG,WAAW,CAAC;QAAE,SAAS,EAAE,GAAG,CAAA;KAAE,CAAC,CAAC;IACpC;;OAEG;IACH,MAAM,IAAI,WAAW,CAAC,GAAG,CAAC,CAAC;IAC3B;;;OAGG;IACH,MAAM,CAAC,OAAO,EAAE;QACZ;;WAEG;QACH,OAAO,EAAE,qBAAqB,CAAC;KAClC,GAAG,WAAW,CAAC;QAAE,OAAO,EAAE,qBAAqB,CAAA;KAAE,CAAC,CAAC;IACpD;;OAEG;IACH,MAAM,IAAI,WAAW,CAAC,GAAG,CAAC,CAAC;IAC3B;;OAEG;IACH,WAAW,IAAI,WAAW,CAAC,GAAG,CAAC,CAAC;IAChC;;OAEG;IACH,KAAK,IAAI,WAAW,CAAC,GAAG,CAAC,CAAC;IAC1B;;OAEG;IACH,KAAK,CAAC,OAAO,EAAE;QACX;;WAEG;QACH,SAAS,EAAE,GAAG,CAAC;KAClB,GAAG,WAAW,CAAC;QAAE,SAAS,EAAE,GAAG,CAAA;KAAE,CAAC,CAAC;IACpC;;;OAGG;IACH,MAAM,CAAC,OAAO,EAAE;QACZ;;WAEG;QACH,OAAO,EAAE,eAAe,CAAC;KAC5B,GAAG,WAAW,CAAC;QAAE,OAAO,EAAE,eAAe,CAAA;KAAE,CAAC,CAAC;IAC9C;;OAEG;IACH,YAAY,IAAI,WAAW,CAAC,GAAG,CAAC,CAAC;IACjC;;OAEG;IACH,SAAS,IAAI,WAAW,CAAC,GAAG,CAAC,CAAC;IAC9B;;OAEG;IACH,UAAU,IAAI,WAAW,CAAC,GAAG,CAAC,CAAC;CAClC"}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { UntypedFormBuilder, UntypedFormGroup, NgForm } from '@angular/forms';
|
|
3
|
+
import { LoginService } from '../../services/login/login.service';
|
|
4
|
+
import { UtilService } from '../../services/util/util.service';
|
|
5
|
+
import { UserModel } from '../../models/UserModel';
|
|
6
|
+
import { WeeklyCertServiceV2 } from '../../services/weekly-cert/weekly-cert-v2.service';
|
|
7
|
+
import { OvpService } from '../../services/ovp/ovp.service';
|
|
8
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
export declare class EmailUpdateComponent implements OnInit {
|
|
11
|
+
fb: UntypedFormBuilder;
|
|
12
|
+
util: UtilService;
|
|
13
|
+
ls: LoginService;
|
|
14
|
+
private wcService;
|
|
15
|
+
private ovpService;
|
|
16
|
+
translateService: TranslateService;
|
|
17
|
+
errorDtls: any;
|
|
18
|
+
successDtls: any;
|
|
19
|
+
mode: string;
|
|
20
|
+
blocked: boolean;
|
|
21
|
+
authCodeForm: UntypedFormGroup;
|
|
22
|
+
userModel: UserModel;
|
|
23
|
+
authCodeFormDirective: NgForm;
|
|
24
|
+
onSuccess: EventEmitter<any>;
|
|
25
|
+
onClose: EventEmitter<any>;
|
|
26
|
+
email: string;
|
|
27
|
+
constructor(fb: UntypedFormBuilder, util: UtilService, ls: LoginService, wcService: WeeklyCertServiceV2, ovpService: OvpService, translateService: TranslateService);
|
|
28
|
+
ngOnInit(): void;
|
|
29
|
+
get authCode(): import("@angular/forms").AbstractControl<any, any>;
|
|
30
|
+
get newEmail(): import("@angular/forms").AbstractControl<any, any>;
|
|
31
|
+
close(): void;
|
|
32
|
+
setMode(mode: string): void;
|
|
33
|
+
verifyEmail(): void;
|
|
34
|
+
resetMsg(): void;
|
|
35
|
+
getNewCode(): void;
|
|
36
|
+
updateEmailAndGetNewCode(): void;
|
|
37
|
+
get codeRequired(): any;
|
|
38
|
+
get newEmailIsRequired(): any;
|
|
39
|
+
get invalidEmail(): any;
|
|
40
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EmailUpdateComponent, never>;
|
|
41
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EmailUpdateComponent, "app-email-update", never, { "email": { "alias": "email"; "required": false; }; }, { "onSuccess": "onSuccess"; "onClose": "onClose"; }, never, never, false, never>;
|
|
42
|
+
}
|
|
43
|
+
//# sourceMappingURL=email-update.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"email-update.component.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/components/email-update/email-update.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAS,MAAM,EAAqB,MAAM,eAAe,CAAC;AAC1F,OAAO,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,MAAM,EAAc,MAAM,gBAAgB,CAAC;AAC1F,OAAO,EAAE,YAAY,EAAE,MAAM,oCAAoC,CAAC;AAClE,OAAO,EAAE,WAAW,EAAE,MAAM,kCAAkC,CAAC;AAG/D,OAAO,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAA;AAElD,OAAO,EAAE,mBAAmB,EAAE,MAAM,mDAAmD,CAAC;AACxF,OAAO,EAAE,UAAU,EAAE,MAAM,gCAAgC,CAAC;AAC5D,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;;AAEvD,qBAKa,oBAAqB,YAAW,MAAM;IAwB9B,EAAE,EAAG,kBAAkB;IAAS,IAAI,EAAG,WAAW;IAAS,EAAE,EAAE,YAAY;IAAC,OAAO,CAAC,SAAS;IAAsB,OAAO,CAAC,UAAU;IAAoB,gBAAgB,EAAE,gBAAgB;IAtBvM,SAAS,MAAC;IACV,WAAW,MAAC;IAGnB,IAAI,EAAG,MAAM,CAAO;IAEb,OAAO,EAAE,OAAO,CAAC;IAEjB,YAAY,EAAG,gBAAgB,CAAC;IAChC,SAAS,EAAE,SAAS,CAAC;IAGrB,qBAAqB,EAAE,MAAM,CAAC;IAGrC,SAAS,EAAE,YAAY,CAAC,GAAG,CAAC,CAAsB;IAGlD,OAAO,EAAE,YAAY,CAAC,GAAG,CAAC,CAAsB;IAEhC,KAAK,EAAG,MAAM,CAAC;gBAEZ,EAAE,EAAG,kBAAkB,EAAS,IAAI,EAAG,WAAW,EAAS,EAAE,EAAE,YAAY,EAAS,SAAS,EAAE,mBAAmB,EAAS,UAAU,EAAE,UAAU,EAAQ,gBAAgB,EAAE,gBAAgB;IAE9M,QAAQ,IAAI,IAAI;IAOhB,IAAI,QAAQ,uDAEX;IAED,IAAI,QAAQ,uDAEX;IAED,KAAK;IAIL,OAAO,CAAC,IAAI,EAAG,MAAM;IAarB,WAAW;IA4CX,QAAQ;IAMR,UAAU;IAaV,wBAAwB;IAiBxB,IAAI,YAAY,QAEf;IAED,IAAI,kBAAkB,QAErB;IAED,IAAI,YAAY,QAEf;yCApJU,oBAAoB;2CAApB,oBAAoB;CAqJhC"}
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { NavController, PopoverController } from '@ionic/angular';
|
|
3
|
+
import { ControlValueAccessor, UntypedFormGroup } from '@angular/forms';
|
|
4
|
+
import { LoggerService } from '../../services/logger/logger.service';
|
|
5
|
+
import { ClaimAppEmpResponseModel } from '../../models/questionnaire/ClaimAppEmpResponseModel';
|
|
6
|
+
import { ClaimAppEmployerDetailsModel } from '../../models/questionnaire/ClaimAppEmployerDetailsModel';
|
|
7
|
+
import { ClaimAppEmpRequestModel } from '../../models/questionnaire/ClaimAppEmpRequestModel';
|
|
8
|
+
import { ValidationService } from '../../services/questionnaire/validation.service';
|
|
9
|
+
import { UtilService } from '../../services/util/util.service';
|
|
10
|
+
import { LoginService } from '../../services/login/login.service';
|
|
11
|
+
import { ActivatedRoute } from '@angular/router';
|
|
12
|
+
import { ClaimService } from '../../services/claims/claims.service';
|
|
13
|
+
import { ChoicesModel } from '../../models/AddressComponentModel';
|
|
14
|
+
import { Storage } from '@ionic/storage-angular';
|
|
15
|
+
import * as i0 from "@angular/core";
|
|
16
|
+
export declare class EmployerGridComponent implements OnInit, ControlValueAccessor {
|
|
17
|
+
popup: PopoverController;
|
|
18
|
+
logger: LoggerService;
|
|
19
|
+
validationService: ValidationService;
|
|
20
|
+
navController: NavController;
|
|
21
|
+
util: UtilService;
|
|
22
|
+
ls: LoginService;
|
|
23
|
+
activatedRoute: ActivatedRoute;
|
|
24
|
+
claimsService: ClaimService;
|
|
25
|
+
private storage;
|
|
26
|
+
constructor(popup: PopoverController, logger: LoggerService, validationService: ValidationService, navController: NavController, util: UtilService, ls: LoginService, activatedRoute: ActivatedRoute, claimsService: ClaimService, storage: Storage);
|
|
27
|
+
claimAppEmpResponseModelFromService: ClaimAppEmpResponseModel;
|
|
28
|
+
cols: any[];
|
|
29
|
+
form: UntypedFormGroup;
|
|
30
|
+
dynamicParam: any;
|
|
31
|
+
display: boolean;
|
|
32
|
+
noEditMode: boolean;
|
|
33
|
+
basePerioddisplay: boolean;
|
|
34
|
+
modelDisplay: EventEmitter<boolean>;
|
|
35
|
+
onComplete: EventEmitter<any>;
|
|
36
|
+
modelDataPass: EventEmitter<any>;
|
|
37
|
+
claimdetailModel: ClaimAppEmployerDetailsModel;
|
|
38
|
+
caimAppEmpResponseModel: ClaimAppEmpResponseModel;
|
|
39
|
+
selectedEmployer: ClaimAppEmployerDetailsModel;
|
|
40
|
+
selectedBasePeriodEmployer: ClaimAppEmployerDetailsModel;
|
|
41
|
+
indexToEdit: any;
|
|
42
|
+
isBasePeriodEmployer: boolean;
|
|
43
|
+
isNewClaim: boolean;
|
|
44
|
+
showConfirmPopup: boolean;
|
|
45
|
+
showbpEmpDelPopup: boolean;
|
|
46
|
+
ssnForCSR: string;
|
|
47
|
+
showProgressBar: boolean;
|
|
48
|
+
uuid: string;
|
|
49
|
+
dischargeReasonOptionsAll: ChoicesModel[];
|
|
50
|
+
volQuitReasonOptionsAll: ChoicesModel[];
|
|
51
|
+
employmentStatusOptionsAll: ChoicesModel[];
|
|
52
|
+
payRateOptions: any;
|
|
53
|
+
countryOptions: any;
|
|
54
|
+
workCountryOptions: any;
|
|
55
|
+
statesOptions: any;
|
|
56
|
+
militaryServiceOptions: any;
|
|
57
|
+
claimantDob: Date;
|
|
58
|
+
selectedOption: string;
|
|
59
|
+
showCommentBox: boolean;
|
|
60
|
+
bpEmpDelOptions: any;
|
|
61
|
+
loadMasterData(): void;
|
|
62
|
+
ngOnInit(): void;
|
|
63
|
+
onDropdownChange(event: any): void;
|
|
64
|
+
addNewEmpDetails(): Promise<void>;
|
|
65
|
+
private onChange;
|
|
66
|
+
private onTouch;
|
|
67
|
+
writeValue(value: any): void;
|
|
68
|
+
registerOnChange(fn: any): void;
|
|
69
|
+
registerOnTouched(fn: any): void;
|
|
70
|
+
getIdentifier(): Promise<any>;
|
|
71
|
+
setupEmployer(): Promise<void>;
|
|
72
|
+
fetchEmployersFromBackEnd(model: ClaimAppEmpRequestModel, url: string): void;
|
|
73
|
+
deleteBpEmpl(event: number): void;
|
|
74
|
+
deleteEmployer(elementIndex: any): void;
|
|
75
|
+
deleteEmployerBasePeriod(elementIndex: any): void;
|
|
76
|
+
editEmployer(employer: any): void;
|
|
77
|
+
finish(employer: any): void;
|
|
78
|
+
editBasePeriodEmployer(employer: any): void;
|
|
79
|
+
onModelCancel(cancel: boolean): void;
|
|
80
|
+
addEmployer(event: ClaimAppEmployerDetailsModel): void;
|
|
81
|
+
removeEmployment(selectedEmployer: ClaimAppEmployerDetailsModel, index: any): void;
|
|
82
|
+
displayBpEmpConfirmation(): void;
|
|
83
|
+
removeBasePeriodEmployer(): void;
|
|
84
|
+
restoreEmployment(selectedEmployer: ClaimAppEmployerDetailsModel, index: any): void;
|
|
85
|
+
close(): void;
|
|
86
|
+
setChoiseModels(emp: ClaimAppEmployerDetailsModel): void;
|
|
87
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EmployerGridComponent, never>;
|
|
88
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EmployerGridComponent, "app-employer-grid", never, { "form": { "alias": "form"; "required": false; }; "dynamicParam": { "alias": "dynamicParam"; "required": false; }; }, { "modelDisplay": "modelDisplay"; "onComplete": "onComplete"; "modelDataPass": "modelDataPass"; }, never, never, false, never>;
|
|
89
|
+
}
|
|
90
|
+
//# sourceMappingURL=employer-grid.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"employer-grid.component.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/components/employer-grid/employer-grid.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAqF,YAAY,EAAmB,MAAM,EAAqB,MAAM,eAAe,CAAC;AAC5K,OAAO,EAAE,aAAa,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AAClE,OAAO,EAAE,oBAAoB,EAAE,gBAAgB,EAAsE,MAAM,gBAAgB,CAAC;AAC5I,OAAO,EAAE,aAAa,EAAE,MAAM,sCAAsC,CAAC;AACrE,OAAO,EAAE,wBAAwB,EAAE,MAAM,qDAAqD,CAAC;AAC/F,OAAO,EAAE,4BAA4B,EAAE,MAAM,yDAAyD,CAAC;AACvG,OAAO,EAAE,uBAAuB,EAAE,MAAM,oDAAoD,CAAC;AAE7F,OAAO,EAAE,iBAAiB,EAAE,MAAM,iDAAiD,CAAC;AACpF,OAAO,EAAE,WAAW,EAAE,MAAM,kCAAkC,CAAC;AAC/D,OAAO,EAAE,YAAY,EAAE,MAAM,oCAAoC,CAAC;AAClE,OAAO,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AAEjD,OAAO,EAAE,YAAY,EAAE,MAAM,sCAAsC,CAAC;AACpE,OAAO,EAAE,YAAY,EAAE,MAAM,oCAAoC,CAAC;AAGlE,OAAO,EAAE,OAAO,EAAE,MAAM,wBAAwB,CAAC;;AAEjD,qBAYa,qBAAsB,YAAW,MAAM,EAAE,oBAAoB;IAErD,KAAK,EAAE,iBAAiB;IAAS,MAAM,EAAE,aAAa;IAChE,iBAAiB,EAAE,iBAAiB;IAAS,aAAa,EAAE,aAAa;IAAS,IAAI,EAAE,WAAW;IACnG,EAAE,EAAE,YAAY;IAAS,cAAc,EAAG,cAAc;IAAS,aAAa,EAAG,YAAY;IACpG,OAAO,CAAC,OAAO;gBAHE,KAAK,EAAE,iBAAiB,EAAS,MAAM,EAAE,aAAa,EAChE,iBAAiB,EAAE,iBAAiB,EAAS,aAAa,EAAE,aAAa,EAAS,IAAI,EAAE,WAAW,EACnG,EAAE,EAAE,YAAY,EAAS,cAAc,EAAG,cAAc,EAAS,aAAa,EAAG,YAAY,EAC5F,OAAO,EAAG,OAAO;IAY3B,mCAAmC,EAAG,wBAAwB,CAAkC;IAChG,IAAI,EAAE,GAAG,EAAE,CAAC;IACH,IAAI,EAAE,gBAAgB,CAAC;IACvB,YAAY,EAAG,GAAG,CAAC;IAC5B,OAAO,EAAE,OAAO,CAAC;IACjB,UAAU,EAAE,OAAO,CAAC;IACpB,iBAAiB,EAAE,OAAO,CAAC;IACjB,YAAY,wBAA+B;IAC3C,UAAU,oBAAsB;IAChC,aAAa,oBAAsB;IAC7C,gBAAgB,+BAAsC;IACtD,uBAAuB,2BAAkC;IACzD,gBAAgB,EAAE,4BAA4B,CAAC;IAC/C,0BAA0B,EAAE,4BAA4B,CAAC;IAClD,WAAW,MAAC;IACZ,oBAAoB,EAAE,OAAO,CAAS;IACtC,UAAU,EAAE,OAAO,CAAS;IAC5B,gBAAgB,EAAG,OAAO,CAAS;IACnC,iBAAiB,EAAG,OAAO,CAAS;IAC3C,SAAS,EAAG,MAAM,CAAC;IACZ,eAAe,UAAS;IAC/B,IAAI,EAAE,MAAM,CAAQ;IAEb,yBAAyB,EAAE,YAAY,EAAE,CAAM;IAC/C,uBAAuB,EAAE,YAAY,EAAE,CAAM;IAC7C,0BAA0B,EAAE,YAAY,EAAE,CAAM;IAChD,cAAc,EAAG,GAAG,CAAM;IAC1B,cAAc,EAAG,GAAG,CAAM;IAC1B,kBAAkB,EAAG,GAAG,CAAM;IAC9B,aAAa,EAAG,GAAG,CAAM;IACzB,sBAAsB,EAAG,GAAG,CAAM;IAClC,WAAW,EAAG,IAAI,CAAC;IACnB,cAAc,EAAE,MAAM,CAAC;IACvB,cAAc,EAAE,OAAO,CAAS;IAChC,eAAe,EAAG,GAAG,CAAM;IAElC,cAAc;IAqBd,QAAQ;IA6CR,gBAAgB,CAAC,KAAK,EAAE,GAAG,GAAG,IAAI;IAW5B,gBAAgB;IAOtB,OAAO,CAAC,QAAQ,CACd;IAEF,OAAO,CAAC,OAAO,CACb;IAEF,UAAU,CAAC,KAAK,EAAE,GAAG;IAQrB,gBAAgB,CAAC,EAAE,EAAE,GAAG;IAKxB,iBAAiB,CAAC,EAAE,EAAE,GAAG;IAInB,aAAa;IAWb,aAAa;IAoCnB,yBAAyB,CAAC,KAAK,EAAE,uBAAuB,EAAE,GAAG,EAAE,MAAM;IAqBrE,YAAY,CAAC,KAAK,EAAC,MAAM;IAKzB,cAAc,CAAC,YAAY,KAAA;IAQ3B,wBAAwB,CAAC,YAAY,KAAA;IASrC,YAAY,CAAC,QAAQ,KAAA;IAQrB,MAAM,CAAC,QAAQ,KAAA;IASf,sBAAsB,CAAC,QAAQ,KAAA;IAQ/B,aAAa,CAAC,MAAM,EAAE,OAAO;IAS7B,WAAW,CAAC,KAAK,EAAE,4BAA4B;IAuF/C,gBAAgB,CAAC,gBAAgB,EAAE,4BAA4B,EAAE,KAAK,KAAA;IAMtE,wBAAwB;IAGxB,wBAAwB;IAQxB,iBAAiB,CAAC,gBAAgB,EAAE,4BAA4B,EAAE,KAAK,KAAA;IAQvE,KAAK;IAOL,eAAe,CAAC,GAAG,EAAE,4BAA4B,GAAG,IAAI;yCAnZ7C,qBAAqB;2CAArB,qBAAqB;CAwbjC"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { UntypedFormControl, NgForm } from '@angular/forms';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ErrorComponent implements OnInit {
|
|
5
|
+
formControl: UntypedFormControl;
|
|
6
|
+
ngForm: NgForm;
|
|
7
|
+
errDef: any;
|
|
8
|
+
class: string;
|
|
9
|
+
constructor();
|
|
10
|
+
ngOnInit(): void;
|
|
11
|
+
isError(): boolean;
|
|
12
|
+
errorMessages: any[];
|
|
13
|
+
errorMessage: string;
|
|
14
|
+
buildErrors(): boolean;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ErrorComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ErrorComponent, "app-error", never, { "formControl": { "alias": "field"; "required": false; }; "ngForm": { "alias": "form"; "required": false; }; "errDef": { "alias": "errDef"; "required": false; }; "class": { "alias": "class"; "required": false; }; }, {}, never, never, false, never>;
|
|
17
|
+
}
|
|
18
|
+
//# sourceMappingURL=error.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"error.component.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/components/error/error.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoB,MAAM,EAAE,MAAM,eAAe,CAAC;AACzD,OAAO,EAAE,kBAAkB,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;;AAG5D,qBAMa,cAAe,YAAW,MAAM;IAG3C,WAAW,EAAG,kBAAkB,CAAC;IAGjC,MAAM,EAAG,MAAM,CAAC;IAGhB,MAAM,EAAE,GAAG,CAAC;IAGZ,KAAK,EAAG,MAAM,CAAC;;IAIf,QAAQ;IAER,OAAO;IAYP,aAAa,QAAM;IACnB,YAAY,SAAM;IAElB,WAAW,IAAI,OAAO;yCAjCX,cAAc;2CAAd,cAAc;CAyD1B"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { Router } from '@angular/router';
|
|
3
|
+
import { MenuItem } from 'primeng/api';
|
|
4
|
+
import { LoginService } from '../../services/login/login.service';
|
|
5
|
+
import { UtilService } from '../../services/util/util.service';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class FavMenuComponent implements OnInit {
|
|
8
|
+
ls: LoginService;
|
|
9
|
+
util: UtilService;
|
|
10
|
+
r: Router;
|
|
11
|
+
favs: MenuItem[];
|
|
12
|
+
trendingLinks: MenuItem[];
|
|
13
|
+
activeIndex: number;
|
|
14
|
+
constructor(ls: LoginService, util: UtilService, r: Router);
|
|
15
|
+
ngOnInit(): void;
|
|
16
|
+
removeFav(item: any): void;
|
|
17
|
+
openPage(menu: MenuItem): void;
|
|
18
|
+
getContextRoot(): string;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FavMenuComponent, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FavMenuComponent, "app-fav-menu", never, {}, {}, never, never, false, never>;
|
|
21
|
+
}
|
|
22
|
+
//# sourceMappingURL=fav-menu.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"fav-menu.component.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/components/fav-menu/fav-menu.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,MAAM,EAAE,MAAM,eAAe,CAAC;AAClD,OAAO,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AACzC,OAAO,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAC;AACvC,OAAO,EAAE,YAAY,EAAE,MAAM,oCAAoC,CAAC;AAClE,OAAO,EAAE,WAAW,EAAE,MAAM,kCAAkC,CAAC;;AAE/D,qBAKa,gBAAiB,YAAW,MAAM;IAM1B,EAAE,EAAE,YAAY;IAAS,IAAI,EAAE,WAAW;IAAS,CAAC,EAAE,MAAM;IAJ/E,IAAI,EAAG,QAAQ,EAAE,CAAM;IACvB,aAAa,EAAG,QAAQ,EAAE,CAAM;IAChC,WAAW,SAAK;gBAEG,EAAE,EAAE,YAAY,EAAS,IAAI,EAAE,WAAW,EAAS,CAAC,EAAE,MAAM;IAE/E,QAAQ,IAAI,IAAI;IA6BhB,SAAS,CAAC,IAAI,KAAA;IASd,QAAQ,CAAC,IAAI,EAAE,QAAQ;IAevB,cAAc;yCA7DH,gBAAgB;2CAAhB,gBAAgB;CAiE5B"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { DomSanitizer } from '@angular/platform-browser';
|
|
3
|
+
import { LoggerService } from '../../services/logger/logger.service';
|
|
4
|
+
import { UtilService } from '../../services/util/util.service';
|
|
5
|
+
import { Platform } from '@ionic/angular';
|
|
6
|
+
import { ValidationService } from '../../services/questionnaire/validation.service';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class FileDownloadComponent implements OnInit {
|
|
9
|
+
vs: ValidationService;
|
|
10
|
+
private sanitizer;
|
|
11
|
+
private log;
|
|
12
|
+
private util;
|
|
13
|
+
private platform;
|
|
14
|
+
uri: string;
|
|
15
|
+
name: string;
|
|
16
|
+
button: boolean;
|
|
17
|
+
constructor(vs: ValidationService, sanitizer: DomSanitizer, log: LoggerService, util: UtilService, platform: Platform);
|
|
18
|
+
ngOnInit(): void;
|
|
19
|
+
downloadFile(): void;
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FileDownloadComponent, never>;
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FileDownloadComponent, "app-file-download", never, { "uri": { "alias": "uri"; "required": false; }; "name": { "alias": "name"; "required": false; }; "button": { "alias": "button"; "required": false; }; }, {}, never, never, false, never>;
|
|
22
|
+
}
|
|
23
|
+
//# sourceMappingURL=file-download.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"file-download.component.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/components/file-download/file-download.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoB,MAAM,EAAmB,MAAM,eAAe,CAAC;AAE1E,OAAO,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAC;AACzD,OAAO,EAAE,aAAa,EAAE,MAAM,sCAAsC,CAAC;AACrE,OAAO,EAAE,WAAW,EAAE,MAAM,kCAAkC,CAAC;AAC/D,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAE1C,OAAO,EAAE,iBAAiB,EAAE,MAAM,iDAAiD,CAAC;;AAEpF,qBAKa,qBAAsB,YAAW,MAAM;IAW/B,EAAE,EAAE,iBAAiB;IAAE,OAAO,CAAC,SAAS;IAAgB,OAAO,CAAC,GAAG;IAAiB,OAAO,CAAC,IAAI;IACjH,OAAO,CAAC,QAAQ;IATlB,GAAG,EAAG,MAAM,CAAQ;IAGpB,IAAI,EAAG,MAAM,CAAC;IAGd,MAAM,EAAG,OAAO,CAAS;gBAEN,EAAE,EAAE,iBAAiB,EAAU,SAAS,EAAE,YAAY,EAAU,GAAG,EAAE,aAAa,EAAU,IAAI,EAAG,WAAW,EACvH,QAAQ,EAAE,QAAQ;IAE5B,QAAQ,IAAI,IAAI;IAGhB,YAAY;yCAjBD,qBAAqB;2CAArB,qBAAqB;CA4DjC"}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { EventEmitter, OnInit, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { ControlValueAccessor, UntypedFormBuilder, UntypedFormGroup, NgForm } from '@angular/forms';
|
|
3
|
+
import { ToastController } from '@ionic/angular';
|
|
4
|
+
import { UtilService } from '../../services/util/util.service';
|
|
5
|
+
import { CaptchaService } from '../../services/captcha/captcha.service';
|
|
6
|
+
import { DmsService } from '../../services/dms-service/dms.service';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class FileUploaderComponent implements OnInit, ControlValueAccessor, OnChanges {
|
|
9
|
+
formBuilder: UntypedFormBuilder;
|
|
10
|
+
private util;
|
|
11
|
+
private fs;
|
|
12
|
+
toastController: ToastController;
|
|
13
|
+
private cs;
|
|
14
|
+
private DEFAULT_SINGLE_FILE_LIMIT;
|
|
15
|
+
private DEFAULT_FILE_SIZE_IN_MB;
|
|
16
|
+
private FILE_UPLOAD_ACTION_NAME;
|
|
17
|
+
showProgress: boolean;
|
|
18
|
+
uploadFileFormDirective: NgForm;
|
|
19
|
+
upload: EventEmitter<any>;
|
|
20
|
+
files: EventEmitter<Map<File, string>>;
|
|
21
|
+
fileInput: any;
|
|
22
|
+
queue: File[];
|
|
23
|
+
mapOfFiles: Map<File, string>;
|
|
24
|
+
allowedFileType: string;
|
|
25
|
+
multiple: boolean;
|
|
26
|
+
showSeparateAttachButton: boolean;
|
|
27
|
+
noOfFilesToUpload: number;
|
|
28
|
+
maxSizeInMB: number;
|
|
29
|
+
uploadFileForm: UntypedFormGroup;
|
|
30
|
+
constructor(formBuilder: UntypedFormBuilder, util: UtilService, fs: DmsService, toastController: ToastController, cs: CaptchaService);
|
|
31
|
+
get uploadFileCtrl(): import("@angular/forms").AbstractControl<any, any>;
|
|
32
|
+
ngOnInit(): void;
|
|
33
|
+
private onChange;
|
|
34
|
+
private onTouch;
|
|
35
|
+
writeValue(obj: any): void;
|
|
36
|
+
registerOnChange(fn: any): void;
|
|
37
|
+
registerOnTouched(fn: any): void;
|
|
38
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
39
|
+
addToQueue(event: any): void;
|
|
40
|
+
removeFromQueue(fileToRemove: any): void;
|
|
41
|
+
getSizeInMB(num: number): number;
|
|
42
|
+
presentToast(msg: any, color: any): Promise<void>;
|
|
43
|
+
success(msg: any): void;
|
|
44
|
+
error(msg: any): void;
|
|
45
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FileUploaderComponent, never>;
|
|
46
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FileUploaderComponent, "app-file-uploader", never, { "allowedFileType": { "alias": "allowedFileType"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "showSeparateAttachButton": { "alias": "showSeparateAttachButton"; "required": false; }; "noOfFilesToUpload": { "alias": "noOfFilesToUpload"; "required": false; }; "maxSizeInMB": { "alias": "maxSizeInMB"; "required": false; }; }, { "upload": "upload"; "files": "files"; }, never, never, false, never>;
|
|
47
|
+
}
|
|
48
|
+
//# sourceMappingURL=file-uploader.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"file-uploader.component.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/components/file-uploader/file-uploader.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAE,MAAM,EAA+B,SAAS,EAAE,aAAa,EAAa,MAAM,eAAe,CAAC;AAClI,OAAO,EAAE,oBAAoB,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,MAAM,EAAiC,MAAM,gBAAgB,CAAC;AACnI,OAAO,EAAE,eAAe,EAAE,MAAM,gBAAgB,CAAC;AACjD,OAAO,EAAE,WAAW,EAAE,MAAM,kCAAkC,CAAC;AAC/D,OAAO,EAAE,cAAc,EAAE,MAAM,wCAAwC,CAAC;AACxE,OAAO,EAAE,UAAU,EAAE,MAAM,wCAAwC,CAAC;;AAIpE,qBAUa,qBAAsB,YAAW,MAAM,EAAE,oBAAoB,EAAE,SAAS;IA2ChE,WAAW,EAAE,kBAAkB;IAAE,OAAO,CAAC,IAAI;IAAe,OAAO,CAAC,EAAE;IAChF,eAAe,EAAE,eAAe;IAAE,OAAO,CAAC,EAAE;IA1CrD,OAAO,CAAC,yBAAyB,CAAK;IAEtC,OAAO,CAAC,uBAAuB,CAAK;IAEpC,OAAO,CAAC,uBAAuB,CAAiB;IAEzC,YAAY,UAAS;IAGrB,uBAAuB,EAAE,MAAM,CAAC;IAGvC,MAAM,EAAE,YAAY,CAAC,GAAG,CAAC,CAAsB;IAG/C,KAAK,EAAE,YAAY,CAAC,GAAG,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC,CAAsB;IAEjC,SAAS,MAAC;IAErC,KAAK,EAAE,IAAI,EAAE,CAAM;IAEnB,UAAU,EAAE,GAAG,CAAC,IAAI,EAAE,MAAM,CAAC,CAAa;IAG1C,eAAe,EAAE,MAAM,CAAC;IAGxB,QAAQ,EAAE,OAAO,CAAS;IAG1B,wBAAwB,EAAE,OAAO,CAAS;IAG1C,iBAAiB,EAAE,MAAM,CAAkC;IAG3D,WAAW,EAAE,MAAM,CAAgC;IAG5C,cAAc,EAAE,gBAAgB,CAAC;gBAErB,WAAW,EAAE,kBAAkB,EAAU,IAAI,EAAE,WAAW,EAAU,EAAE,EAAE,UAAU,EAC5F,eAAe,EAAE,eAAe,EAAU,EAAE,EAAE,cAAc;IAMrE,IAAI,cAAc,uDAEjB;IAGD,QAAQ;IAGR,OAAO,CAAC,QAAQ,CAEd;IACF,OAAO,CAAC,OAAO,CAEb;IACF,UAAU,CAAC,GAAG,EAAE,GAAG,GAAG,IAAI;IAG1B,gBAAgB,CAAC,EAAE,EAAE,GAAG,GAAG,IAAI;IAI/B,iBAAiB,CAAC,EAAE,EAAE,GAAG,GAAG,IAAI;IAKhC,WAAW,CAAC,OAAO,EAAE,aAAa,GAAG,IAAI;IAIzC,UAAU,CAAC,KAAK,KAAA;IAiEhB,eAAe,CAAC,YAAY,KAAA;IAiC5B,WAAW,CAAC,GAAG,EAAE,MAAM;IAIjB,YAAY,CAAC,GAAG,KAAA,EAAE,KAAK,KAAA;IAU7B,OAAO,CAAC,GAAG,KAAA;IAIX,KAAK,CAAC,GAAG,KAAA;yCApME,qBAAqB;2CAArB,qBAAqB;CAwMjC"}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { PopoverController } from '@ionic/angular';
|
|
3
|
+
import { JoyrideService } from 'ngx-joyride';
|
|
4
|
+
import { ChatbotService } from '../../services/chatbot/chatbot.service';
|
|
5
|
+
import { LoggerService } from '../../services/logger/logger.service';
|
|
6
|
+
import { LoginService } from '../../services/login/login.service';
|
|
7
|
+
import { TourService } from '../../services/tour/tour.service';
|
|
8
|
+
import { UtilService } from '../../services/util/util.service';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
export declare class FooterComponent implements OnInit {
|
|
11
|
+
popup: PopoverController;
|
|
12
|
+
private joyride;
|
|
13
|
+
util: UtilService;
|
|
14
|
+
tourService: TourService;
|
|
15
|
+
private ls;
|
|
16
|
+
private cs;
|
|
17
|
+
private log;
|
|
18
|
+
showHelp: boolean;
|
|
19
|
+
stepCounts: any;
|
|
20
|
+
appVersion: any;
|
|
21
|
+
showChatbot: boolean;
|
|
22
|
+
footerLinks: Array<{
|
|
23
|
+
name: string;
|
|
24
|
+
url: string;
|
|
25
|
+
}>;
|
|
26
|
+
constructor(popup: PopoverController, joyride: JoyrideService, util: UtilService, tourService: TourService, ls: LoginService, cs: ChatbotService, log: LoggerService);
|
|
27
|
+
ngOnInit(): void;
|
|
28
|
+
tour(): void;
|
|
29
|
+
openPrivacyDisclaimer(event: any): Promise<void>;
|
|
30
|
+
openSecurityDisclaimer(event: any): Promise<void>;
|
|
31
|
+
openAccessibilityDisclaimer(event: any): Promise<void>;
|
|
32
|
+
openPopup(footerLink: any): void;
|
|
33
|
+
initializeChatbot(): void;
|
|
34
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FooterComponent, never>;
|
|
35
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FooterComponent, "app-footer", never, { "showHelp": { "alias": "showHelp"; "required": false; }; }, {}, never, never, false, never>;
|
|
36
|
+
}
|
|
37
|
+
//# sourceMappingURL=footer.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"footer.component.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/components/footer/footer.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoB,MAAM,EAAE,MAAM,eAAe,CAAC;AACzD,OAAO,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AACnD,OAAO,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAK7C,OAAO,EAAE,cAAc,EAAE,MAAM,wCAAwC,CAAC;AACxE,OAAO,EAAE,aAAa,EAAE,MAAM,sCAAsC,CAAC;AACrE,OAAO,EAAE,YAAY,EAAE,MAAM,oCAAoC,CAAC;AAClE,OAAO,EAAE,WAAW,EAAE,MAAM,kCAAkC,CAAC;AAC/D,OAAO,EAAE,WAAW,EAAE,MAAM,kCAAkC,CAAC;;AAE/D,qBAKa,eAAgB,YAAW,MAAM;IAUzB,KAAK,EAAE,iBAAiB;IAAE,OAAO,CAAC,OAAO;IACzC,IAAI,EAAE,WAAW;IAAS,WAAW,EAAE,WAAW;IAAE,OAAO,CAAC,EAAE;IACrE,OAAO,CAAC,EAAE;IAAmB,OAAO,CAAC,GAAG;IAT7C,QAAQ,EAAG,OAAO,CAAS;IAE3B,UAAU,MAAC;IAEX,UAAU,MAA2B;IACrC,WAAW,EAAG,OAAO,CAA0C;IAC/D,WAAW,EAAE,KAAK,CAAC;QAAC,IAAI,EAAE,MAAM,CAAC;QAAC,GAAG,EAAE,MAAM,CAAA;KAAC,CAAC,CAAA;gBACnC,KAAK,EAAE,iBAAiB,EAAU,OAAO,EAAE,cAAc,EACzD,IAAI,EAAE,WAAW,EAAS,WAAW,EAAE,WAAW,EAAU,EAAE,EAAE,YAAY,EAC3E,EAAE,EAAG,cAAc,EAAU,GAAG,EAAE,aAAa;IAEnE,QAAQ;IAyBR,IAAI;IAYE,qBAAqB,CAAC,KAAK,KAAA;IAW3B,sBAAsB,CAAC,KAAK,KAAA;IAW5B,2BAA2B,CAAC,KAAK,KAAA;IAWvC,SAAS,CAAC,UAAU,KAAA;IAIpB,iBAAiB;yCAxFN,eAAe;2CAAf,eAAe;CA4F3B"}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { Router } from '@angular/router';
|
|
3
|
+
import { ModalController, NavController, PopoverController } from '@ionic/angular';
|
|
4
|
+
import { ClaimantModel } from '../../models/claimant/ClaimantModel';
|
|
5
|
+
import { ClaimantService } from '../../services/claimant/claimant.service';
|
|
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 { HelpService } from '../../services/help/help.service';
|
|
10
|
+
import { MenuItem } from 'primeng/api';
|
|
11
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
12
|
+
import { BasePage } from '../../pages/BasePage';
|
|
13
|
+
import { AutoCompleteSelectEvent } from 'primeng/autocomplete';
|
|
14
|
+
import * as i0 from "@angular/core";
|
|
15
|
+
export declare class HeaderComponent extends BasePage implements OnInit {
|
|
16
|
+
ls: LoginService;
|
|
17
|
+
util: UtilService;
|
|
18
|
+
r: Router;
|
|
19
|
+
popup: PopoverController;
|
|
20
|
+
cs: ClaimantService;
|
|
21
|
+
private nav;
|
|
22
|
+
modalController: ModalController;
|
|
23
|
+
ns: NotificationService;
|
|
24
|
+
hs: HelpService;
|
|
25
|
+
translateService: TranslateService;
|
|
26
|
+
items: MenuItem[];
|
|
27
|
+
searchText: any;
|
|
28
|
+
results: ClaimantModel[];
|
|
29
|
+
title: string;
|
|
30
|
+
pageId: string;
|
|
31
|
+
secondToolbar: boolean;
|
|
32
|
+
displayLogo: boolean;
|
|
33
|
+
showHistory: boolean;
|
|
34
|
+
backPage: string;
|
|
35
|
+
showNotificationLoader: boolean;
|
|
36
|
+
legacyMenu: any;
|
|
37
|
+
showProfilePopup: boolean;
|
|
38
|
+
showjobSearchResultPopup: boolean;
|
|
39
|
+
constructor(ls: LoginService, util: UtilService, r: Router, popup: PopoverController, cs: ClaimantService, nav: NavController, modalController: ModalController, ns: NotificationService, hs: HelpService, translateService: TranslateService);
|
|
40
|
+
ngOnInit(): void;
|
|
41
|
+
presentJobSearchResultPopup(): void;
|
|
42
|
+
setMenuItems(language: string): void;
|
|
43
|
+
getIcon(selectedLang: string, language: string): string;
|
|
44
|
+
setLanguage(language: string, name: string): void;
|
|
45
|
+
presentMyProfilePopover(event: any): Promise<void>;
|
|
46
|
+
presentMyNotificationPopover(event: any): Promise<void>;
|
|
47
|
+
logout(): void;
|
|
48
|
+
openWeeklies(): void;
|
|
49
|
+
openHome(): void;
|
|
50
|
+
search(event: any): void;
|
|
51
|
+
private isNumber;
|
|
52
|
+
onSelectAction(event: AutoCompleteSelectEvent): void;
|
|
53
|
+
openBenefitsApp(): void;
|
|
54
|
+
openPage(contextRoot: any, uri: any): void;
|
|
55
|
+
getClass(name: any): "" | "header-button";
|
|
56
|
+
openContextHelp(): void;
|
|
57
|
+
changeLanguage(event: any): Promise<void>;
|
|
58
|
+
get homeLabel(): any;
|
|
59
|
+
get weeklyLabel(): any;
|
|
60
|
+
get historyLabel(): any;
|
|
61
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HeaderComponent, never>;
|
|
62
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HeaderComponent, "app-header", never, { "title": { "alias": "title"; "required": false; }; "pageId": { "alias": "pageId"; "required": false; }; "secondToolbar": { "alias": "secondToolbar"; "required": false; }; "displayLogo": { "alias": "displayLogo"; "required": false; }; "showHistory": { "alias": "showHistory"; "required": false; }; "backPage": { "alias": "backPage"; "required": false; }; }, {}, never, ["*", "*"], false, never>;
|
|
63
|
+
}
|
|
64
|
+
//# sourceMappingURL=header.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"header.component.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/components/header/header.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoB,MAAM,EAAE,MAAM,eAAe,CAAC;AACzD,OAAO,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AACzC,OAAO,EAAE,eAAe,EAAE,aAAa,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AAEnF,OAAO,EAAE,aAAa,EAAE,MAAM,qCAAqC,CAAC;AAGpE,OAAO,EAAE,eAAe,EAAE,MAAM,0CAA0C,CAAC;AAC3E,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,WAAW,EAAE,MAAM,kCAAkC,CAAC;AAC/D,OAAO,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAC;AACvC,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AACvD,OAAO,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAChD,OAAO,EAAE,uBAAuB,EAAE,MAAM,sBAAsB,CAAC;;AAE/D,qBAKa,eAAgB,SAAQ,QAAS,YAAW,MAAM;IA4B1C,EAAE,EAAG,YAAY;IAAS,IAAI,EAAG,WAAW;IAAS,CAAC,EAAG,MAAM;IAAS,KAAK,EAAE,iBAAiB;IAChG,EAAE,EAAG,eAAe;IAAE,OAAO,CAAC,GAAG;IAAyB,eAAe,EAAE,eAAe;IAC1F,EAAE,EAAG,mBAAmB;IAAS,EAAE,EAAE,WAAW;IAAS,gBAAgB,EAAG,gBAAgB;IA5B/G,KAAK,EAAE,QAAQ,EAAE,CAAC;IAElB,UAAU,MAAC;IAEX,OAAO,EAAE,aAAa,EAAE,CAAC;IAET,KAAK,EAAE,MAAM,CAAC;IAEb,MAAM,EAAE,MAAM,CAAC;IAER,aAAa,EAAE,OAAO,CAAS;IAEjC,WAAW,EAAE,OAAO,CAAS;IAE7B,WAAW,EAAE,OAAO,CAAS;IAEhC,QAAQ,EAAE,MAAM,CAAC;IAE7B,sBAAsB,UAAS;IAE/B,UAAU,MAA2B;IAErC,gBAAgB,EAAG,OAAO,CAAS;IAEnC,wBAAwB,EAAG,OAAO,CAAS;gBAE/B,EAAE,EAAG,YAAY,EAAS,IAAI,EAAG,WAAW,EAAS,CAAC,EAAG,MAAM,EAAS,KAAK,EAAE,iBAAiB,EAChG,EAAE,EAAG,eAAe,EAAU,GAAG,EAAG,aAAa,EAAS,eAAe,EAAE,eAAe,EAC1F,EAAE,EAAG,mBAAmB,EAAS,EAAE,EAAE,WAAW,EAAS,gBAAgB,EAAG,gBAAgB;IAI/G,QAAQ;IAMP,2BAA2B;IAO5B,YAAY,CAAC,QAAQ,EAAG,MAAM;IAoB9B,OAAO,CAAC,YAAY,EAAG,MAAM,EAAE,QAAQ,EAAG,MAAM;IAQhD,WAAW,CAAC,QAAQ,EAAG,MAAM,EAAE,IAAI,EAAG,MAAM;IAOtC,uBAAuB,CAAC,KAAK,KAAA;IAkB7B,4BAA4B,CAAC,KAAK,KAAA;IAgBxC,MAAM;IAKN,YAAY;IAQZ,QAAQ;IAYR,MAAM,CAAC,KAAK,KAAA;IA2BZ,OAAO,CAAC,QAAQ;IAIhB,cAAc,CAAC,KAAK,EAAG,uBAAuB;IAU9C,eAAe;IAMf,QAAQ,CAAC,WAAW,KAAA,EAAE,GAAG,KAAA;IAWzB,QAAQ,CAAC,IAAI,KAAA;IAMb,eAAe;IAIT,cAAc,CAAC,KAAK,KAAA;IAI1B,IAAI,SAAS,QAEZ;IAED,IAAI,WAAW,QAEd;IAED,IAAI,YAAY,QAEf;yCA/NU,eAAe;2CAAf,eAAe;CAiO3B"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class HelpComponent implements OnInit {
|
|
4
|
+
msg: string;
|
|
5
|
+
tooltip: string;
|
|
6
|
+
constructor();
|
|
7
|
+
ngOnInit(): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HelpComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HelpComponent, "app-help", never, { "msg": { "alias": "msg"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; }, {}, never, never, false, never>;
|
|
10
|
+
}
|
|
11
|
+
//# sourceMappingURL=help.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"help.component.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/components/help/help.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoB,MAAM,EAAE,MAAM,eAAe,CAAC;;AAEzD,qBAKa,aAAc,YAAW,MAAM;IAG1C,GAAG,EAAG,MAAM,CAAC;IAGb,OAAO,EAAG,MAAM,CAAC;;IAIjB,QAAQ,IAAI,IAAI;yCAVL,aAAa;2CAAb,aAAa;CAazB"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { Router } from '@angular/router';
|
|
3
|
+
import { IdleService } from '../../services/idle/idle.service';
|
|
4
|
+
import { LoginService } from '../../services/login/login.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class IdleDetectorComponent implements OnInit {
|
|
7
|
+
is: IdleService;
|
|
8
|
+
private ls;
|
|
9
|
+
private r;
|
|
10
|
+
constructor(is: IdleService, ls: LoginService, r: Router);
|
|
11
|
+
ngOnInit(): void;
|
|
12
|
+
logout(): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IdleDetectorComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IdleDetectorComponent, "app-idle-detector", never, {}, {}, never, never, false, never>;
|
|
15
|
+
}
|
|
16
|
+
//# sourceMappingURL=idle-detector.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"idle-detector.component.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/components/idle-detector/idle-detector.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,MAAM,EAAE,MAAM,eAAe,CAAC;AAClD,OAAO,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AACzC,OAAO,EAAE,WAAW,EAAE,MAAM,kCAAkC,CAAC;AAC/D,OAAO,EAAE,YAAY,EAAE,MAAM,oCAAoC,CAAC;;AAElE,qBAKa,qBAAsB,YAAW,MAAM;IAE/B,EAAE,EAAG,WAAW;IAAE,OAAO,CAAC,EAAE;IAAgB,OAAO,CAAC,CAAC;gBAArD,EAAE,EAAG,WAAW,EAAU,EAAE,EAAE,YAAY,EAAU,CAAC,EAAE,MAAM;IAEhF,QAAQ;IAKR,MAAM;yCATK,qBAAqB;2CAArB,qBAAqB;CAejC"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { NotificationService } from '../../services/notification/notification.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class InfoComponent implements OnInit {
|
|
5
|
+
ns: NotificationService;
|
|
6
|
+
heading: string;
|
|
7
|
+
display: string;
|
|
8
|
+
type: string;
|
|
9
|
+
userType: string;
|
|
10
|
+
onLinkClick: EventEmitter<any>;
|
|
11
|
+
trendingLinks: any[];
|
|
12
|
+
responsiveOptions: {
|
|
13
|
+
breakpoint: string;
|
|
14
|
+
numVisible: number;
|
|
15
|
+
numScroll: number;
|
|
16
|
+
}[];
|
|
17
|
+
constructor(ns: NotificationService);
|
|
18
|
+
ngOnInit(): void;
|
|
19
|
+
open(link: any): void;
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InfoComponent, never>;
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InfoComponent, "app-info", never, { "heading": { "alias": "heading"; "required": false; }; "display": { "alias": "display"; "required": false; }; "type": { "alias": "type"; "required": false; }; "userType": { "alias": "userType"; "required": false; }; }, { "onLinkClick": "onLinkClick"; }, never, never, false, never>;
|
|
22
|
+
}
|
|
23
|
+
//# sourceMappingURL=info.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"info.component.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/components/info/info.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAS,MAAM,EAAU,MAAM,eAAe,CAAC;AAC/E,OAAO,EAAE,mBAAmB,EAAE,MAAM,kDAAkD,CAAC;;AAEvF,qBAKa,aAAc,YAAW,MAAM;IAqCvB,EAAE,EAAE,mBAAmB;IAlCnC,OAAO,EAAG,MAAM,CAAE;IAGlB,OAAO,EAAG,MAAM,CAAU;IAG1B,IAAI,EAAG,MAAM,CAAU;IAGvB,QAAQ,EAAG,MAAM,CAAC;IAGlB,WAAW,EAAG,YAAY,CAAC,GAAG,CAAC,CAAsB;IAErD,aAAa,QAAM;IAEnB,iBAAiB;;;;QAgBxB;gBAEmB,EAAE,EAAE,mBAAmB;IAE1C,QAAQ;IAiBR,IAAI,CAAC,IAAI,EAAG,GAAG;yCAxDJ,aAAa;2CAAb,aAAa;CAgEzB"}
|