@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,49 @@
|
|
|
1
|
+
import { Component, Input } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "@ionic/angular";
|
|
4
|
+
import * as i2 from "primeng/button";
|
|
5
|
+
import * as i3 from "primeng/api";
|
|
6
|
+
import * as i4 from "primeng/tooltip";
|
|
7
|
+
import * as i5 from "primeng/overlaypanel";
|
|
8
|
+
import * as i6 from "primeng/ripple";
|
|
9
|
+
import * as i7 from "@ngx-translate/core";
|
|
10
|
+
function HelpComponent_ng_template_2_Template(rf, ctx) { if (rf & 1) {
|
|
11
|
+
i0.ɵɵelementStart(0, "ion-label", 4);
|
|
12
|
+
i0.ɵɵelement(1, "span", 5);
|
|
13
|
+
i0.ɵɵpipe(2, "translate");
|
|
14
|
+
i0.ɵɵelementEnd();
|
|
15
|
+
} if (rf & 2) {
|
|
16
|
+
const ctx_r1 = i0.ɵɵnextContext();
|
|
17
|
+
i0.ɵɵadvance(1);
|
|
18
|
+
i0.ɵɵproperty("innerHTML", i0.ɵɵpipeBind1(2, 1, ctx_r1.msg), i0.ɵɵsanitizeHtml);
|
|
19
|
+
} }
|
|
20
|
+
export class HelpComponent {
|
|
21
|
+
constructor() { }
|
|
22
|
+
ngOnInit() {
|
|
23
|
+
}
|
|
24
|
+
static { this.ɵfac = function HelpComponent_Factory(t) { return new (t || HelpComponent)(); }; }
|
|
25
|
+
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: HelpComponent, selectors: [["app-help"]], inputs: { msg: "msg", tooltip: "tooltip" }, decls: 4, vars: 1, consts: [["showCloseIcon", "true"], ["op", ""], ["pTemplate", "", "style", "background: cornsilk;"], ["type", "button", "pButton", "", "pRipple", "", "icon", "pi pi-question-circle", 1, "p-button-raised", 3, "pTooltip", "click"], ["color", "dark"], [2, "font-size", "small", 3, "innerHTML"]], template: function HelpComponent_Template(rf, ctx) { if (rf & 1) {
|
|
26
|
+
const _r2 = i0.ɵɵgetCurrentView();
|
|
27
|
+
i0.ɵɵelementStart(0, "p-overlayPanel", 0, 1);
|
|
28
|
+
i0.ɵɵtemplate(2, HelpComponent_ng_template_2_Template, 3, 3, "ng-template", 2);
|
|
29
|
+
i0.ɵɵelementEnd();
|
|
30
|
+
i0.ɵɵelementStart(3, "button", 3);
|
|
31
|
+
i0.ɵɵlistener("click", function HelpComponent_Template_button_click_3_listener($event) { i0.ɵɵrestoreView(_r2); const _r0 = i0.ɵɵreference(1); return i0.ɵɵresetView(_r0.toggle($event)); });
|
|
32
|
+
i0.ɵɵelementEnd();
|
|
33
|
+
} if (rf & 2) {
|
|
34
|
+
i0.ɵɵadvance(3);
|
|
35
|
+
i0.ɵɵproperty("pTooltip", ctx.tooltip ? ctx.tooltip : "What is this?");
|
|
36
|
+
} }, dependencies: [i1.IonLabel, i2.ButtonDirective, i3.PrimeTemplate, i4.Tooltip, i5.OverlayPanel, i6.Ripple, i7.TranslatePipe], styles: ["button[_ngcontent-%COMP%]{border-top-left-radius:0!important;border-bottom-left-radius:0!important}button[_ngcontent-%COMP%] > span[_ngcontent-%COMP%]{font-size:1.5rem!important}"] }); }
|
|
37
|
+
}
|
|
38
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(HelpComponent, [{
|
|
39
|
+
type: Component,
|
|
40
|
+
args: [{ selector: 'app-help', template: "<p-overlayPanel #op showCloseIcon=\"true\">\r\n <ng-template pTemplate style=\"background: cornsilk;\">\r\n <ion-label color=\"dark\">\r\n <span [innerHTML]=\"msg | translate\" style=\"font-size: small;\"></span>\r\n </ion-label>\r\n </ng-template>\r\n</p-overlayPanel>\r\n<button type=\"button\" pButton pRipple icon=\"pi pi-question-circle\" \r\n (click)=\"op.toggle($event)\" class=\"p-button-raised\"\r\n [pTooltip]=\"tooltip ? tooltip : 'What is this?'\"></button>", styles: ["button{border-top-left-radius:0!important;border-bottom-left-radius:0!important}button>span{font-size:1.5rem!important}\n"] }]
|
|
41
|
+
}], () => [], { msg: [{
|
|
42
|
+
type: Input,
|
|
43
|
+
args: ["msg"]
|
|
44
|
+
}], tooltip: [{
|
|
45
|
+
type: Input,
|
|
46
|
+
args: ["tooltip"]
|
|
47
|
+
}] }); })();
|
|
48
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(HelpComponent, { className: "HelpComponent", filePath: "lib\\components\\help\\help.component.ts", lineNumber: 8 }); })();
|
|
49
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaGVscC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9uZ3gtcmV1c2EtYXBwLWxpYi9zcmMvbGliL2NvbXBvbmVudHMvaGVscC9oZWxwLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL25neC1yZXVzYS1hcHAtbGliL3NyYy9saWIvY29tcG9uZW50cy9oZWxwL2hlbHAuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQVUsTUFBTSxlQUFlLENBQUM7Ozs7Ozs7Ozs7SUNFbkQsb0NBQXdCO0lBQ3RCLDBCQUFxRTs7SUFDdkUsaUJBQVk7OztJQURKLGVBQTZCO0lBQTdCLCtFQUE2Qjs7QURJM0MsTUFBTSxPQUFPLGFBQWE7SUFReEIsZ0JBQWdCLENBQUM7SUFFakIsUUFBUTtJQUNSLENBQUM7OEVBWFUsYUFBYTtvRUFBYixhQUFhOztZQ1AxQiw0Q0FBeUM7WUFDckMsOEVBSWM7WUFDbEIsaUJBQWlCO1lBQ2pCLGlDQUV5RDtZQURoRCxzSkFBUyxlQUFBLGtCQUFpQixDQUFBLElBQUM7WUFDcUIsaUJBQVM7O1lBQTFELGVBQWdEO1lBQWhELHNFQUFnRDs7O2lGREYzQyxhQUFhO2NBTHpCLFNBQVM7MkJBQ0UsVUFBVTtvQkFPcEIsR0FBRztrQkFERixLQUFLO21CQUFDLEtBQUs7WUFJWixPQUFPO2tCQUROLEtBQUs7bUJBQUMsU0FBUzs7a0ZBTEwsYUFBYSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgSW5wdXQsIE9uSW5pdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdhcHAtaGVscCcsXG4gIHRlbXBsYXRlVXJsOiAnLi9oZWxwLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vaGVscC5jb21wb25lbnQuY3NzJ11cbn0pXG5leHBvcnQgY2xhc3MgSGVscENvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XG5cbiAgQElucHV0KFwibXNnXCIpXG4gIG1zZyA6IHN0cmluZztcblxuICBASW5wdXQoXCJ0b29sdGlwXCIpXG4gIHRvb2x0aXAgOiBzdHJpbmc7XG4gIFxuICBjb25zdHJ1Y3RvcigpIHsgfVxuXG4gIG5nT25Jbml0KCk6IHZvaWQge1xuICB9XG5cbn1cbiIsIjxwLW92ZXJsYXlQYW5lbCAjb3Agc2hvd0Nsb3NlSWNvbj1cInRydWVcIj5cclxuICAgIDxuZy10ZW1wbGF0ZSBwVGVtcGxhdGUgc3R5bGU9XCJiYWNrZ3JvdW5kOiBjb3Juc2lsaztcIj5cclxuICAgICAgPGlvbi1sYWJlbCBjb2xvcj1cImRhcmtcIj5cclxuICAgICAgICA8c3BhbiBbaW5uZXJIVE1MXT1cIm1zZyB8IHRyYW5zbGF0ZVwiIHN0eWxlPVwiZm9udC1zaXplOiBzbWFsbDtcIj48L3NwYW4+XHJcbiAgICAgIDwvaW9uLWxhYmVsPlxyXG4gICAgPC9uZy10ZW1wbGF0ZT5cclxuPC9wLW92ZXJsYXlQYW5lbD5cclxuPGJ1dHRvbiB0eXBlPVwiYnV0dG9uXCIgcEJ1dHRvbiBwUmlwcGxlIGljb249XCJwaSBwaS1xdWVzdGlvbi1jaXJjbGVcIiBcclxuICAgICAgICAgKGNsaWNrKT1cIm9wLnRvZ2dsZSgkZXZlbnQpXCIgY2xhc3M9XCJwLWJ1dHRvbi1yYWlzZWRcIlxyXG4gICAgICAgIFtwVG9vbHRpcF09XCJ0b29sdGlwID8gdG9vbHRpcCA6ICdXaGF0IGlzIHRoaXM/J1wiPjwvYnV0dG9uPiJdfQ==
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
import { Component } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "../../services/idle/idle.service";
|
|
4
|
+
import * as i2 from "../../services/login/login.service";
|
|
5
|
+
import * as i3 from "@angular/router";
|
|
6
|
+
import * as i4 from "@ionic/angular";
|
|
7
|
+
import * as i5 from "primeng/api";
|
|
8
|
+
import * as i6 from "primeng/dialog";
|
|
9
|
+
import * as i7 from "@ngx-translate/core";
|
|
10
|
+
function IdleDetectorComponent_ng_template_1_Template(rf, ctx) { if (rf & 1) {
|
|
11
|
+
i0.ɵɵelementStart(0, "ion-grid")(1, "ion-row")(2, "ion-col", 9);
|
|
12
|
+
i0.ɵɵtext(3);
|
|
13
|
+
i0.ɵɵpipe(4, "translate");
|
|
14
|
+
i0.ɵɵelementEnd()()();
|
|
15
|
+
} if (rf & 2) {
|
|
16
|
+
i0.ɵɵadvance(3);
|
|
17
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(4, 1, "idle.session.title"), " ");
|
|
18
|
+
} }
|
|
19
|
+
export class IdleDetectorComponent {
|
|
20
|
+
constructor(is, ls, r) {
|
|
21
|
+
this.is = is;
|
|
22
|
+
this.ls = ls;
|
|
23
|
+
this.r = r;
|
|
24
|
+
}
|
|
25
|
+
ngOnInit() {
|
|
26
|
+
this.is.setupIdalTimeout();
|
|
27
|
+
this.is.setupSessionTimeoutObserver();
|
|
28
|
+
}
|
|
29
|
+
logout() {
|
|
30
|
+
this.ls.logout();
|
|
31
|
+
this.r.navigateByUrl('login');
|
|
32
|
+
this.is.reset();
|
|
33
|
+
}
|
|
34
|
+
static { this.ɵfac = function IdleDetectorComponent_Factory(t) { return new (t || IdleDetectorComponent)(i0.ɵɵdirectiveInject(i1.IdleService), i0.ɵɵdirectiveInject(i2.LoginService), i0.ɵɵdirectiveInject(i3.Router)); }; }
|
|
35
|
+
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: IdleDetectorComponent, selectors: [["app-idle-detector"]], decls: 23, vars: 17, consts: [["modal", "true", "showHeader", "false", "closable", "false", "styleClass", "app-box", 3, "visible"], ["pTemplate", "header"], [1, "ion-padding", "full-height"], [1, "ion-text-justify"], [1, "ion-text-center"], ["tabindex", "0", "shape", "round", "type", "submit", "color", "success", 1, "ion-paddight-right", 3, "click", "keydown.enter"], ["slot", "start", "name", "log-in-outline"], ["tabindex", "0", "shape", "round", "type", "reset", "color", "medium", 1, "ion-paddight-left", 3, "click", "keydown.enter"], ["slot", "start", "name", "log-out-outline"], [1, "ion-text-left", "heading"]], template: function IdleDetectorComponent_Template(rf, ctx) { if (rf & 1) {
|
|
36
|
+
i0.ɵɵelementStart(0, "p-dialog", 0);
|
|
37
|
+
i0.ɵɵtemplate(1, IdleDetectorComponent_ng_template_1_Template, 5, 3, "ng-template", 1);
|
|
38
|
+
i0.ɵɵelementStart(2, "div", 2)(3, "div", 3);
|
|
39
|
+
i0.ɵɵtext(4);
|
|
40
|
+
i0.ɵɵpipe(5, "translate");
|
|
41
|
+
i0.ɵɵelement(6, "br")(7, "br");
|
|
42
|
+
i0.ɵɵtext(8);
|
|
43
|
+
i0.ɵɵpipe(9, "translate");
|
|
44
|
+
i0.ɵɵpipe(10, "translate");
|
|
45
|
+
i0.ɵɵelementEnd()();
|
|
46
|
+
i0.ɵɵelementStart(11, "p-footer")(12, "ion-row")(13, "ion-col", 4)(14, "ion-button", 5);
|
|
47
|
+
i0.ɵɵlistener("click", function IdleDetectorComponent_Template_ion_button_click_14_listener() { return ctx.is.stay(); })("keydown.enter", function IdleDetectorComponent_Template_ion_button_keydown_enter_14_listener() { return ctx.is.stay(); });
|
|
48
|
+
i0.ɵɵelement(15, "ion-icon", 6);
|
|
49
|
+
i0.ɵɵtext(16);
|
|
50
|
+
i0.ɵɵpipe(17, "translate");
|
|
51
|
+
i0.ɵɵelementEnd();
|
|
52
|
+
i0.ɵɵtext(18, " \u00A0 ");
|
|
53
|
+
i0.ɵɵelementStart(19, "ion-button", 7);
|
|
54
|
+
i0.ɵɵlistener("click", function IdleDetectorComponent_Template_ion_button_click_19_listener() { return ctx.logout(); })("keydown.enter", function IdleDetectorComponent_Template_ion_button_keydown_enter_19_listener() { return ctx.logout(); });
|
|
55
|
+
i0.ɵɵelement(20, "ion-icon", 8);
|
|
56
|
+
i0.ɵɵtext(21);
|
|
57
|
+
i0.ɵɵpipe(22, "translate");
|
|
58
|
+
i0.ɵɵelementEnd()()()()();
|
|
59
|
+
} if (rf & 2) {
|
|
60
|
+
i0.ɵɵproperty("visible", ctx.is.showSessionTimeoutWarning.getValue());
|
|
61
|
+
i0.ɵɵadvance(4);
|
|
62
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(5, 7, "idle.session.no-recent-activity"), " ");
|
|
63
|
+
i0.ɵɵadvance(4);
|
|
64
|
+
i0.ɵɵtextInterpolate3(" ", i0.ɵɵpipeBind1(9, 9, "idle.session.select.continue"), " ", ctx.is.counter.getValue(), " ", i0.ɵɵpipeBind1(10, 11, "idle.session.seconds"), ". ");
|
|
65
|
+
i0.ɵɵadvance(8);
|
|
66
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(17, 13, "idle.session.continue"), " ");
|
|
67
|
+
i0.ɵɵadvance(5);
|
|
68
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(22, 15, "idle.session.logout"), " ");
|
|
69
|
+
} }, dependencies: [i4.IonButton, i4.IonCol, i4.IonGrid, i4.IonIcon, i4.IonRow, i5.Footer, i5.PrimeTemplate, i6.Dialog, i7.TranslatePipe], styles: [".heading[_ngcontent-%COMP%]{font-family:var(--app-font-light);color:var(--ion-color-medium-gray);font-size:23px}ion-button[_ngcontent-%COMP%]:focus{outline:none}"] }); }
|
|
70
|
+
}
|
|
71
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IdleDetectorComponent, [{
|
|
72
|
+
type: Component,
|
|
73
|
+
args: [{ selector: 'app-idle-detector', template: "<p-dialog [visible]=\"is.showSessionTimeoutWarning.getValue()\" modal=\"true\"\r\n showHeader=\"false\" closable=\"false\" styleClass=\"app-box\">\r\n \r\n <ng-template pTemplate=\"header\">\r\n <ion-grid>\r\n <ion-row>\r\n <ion-col class=\"ion-text-left heading\">\r\n {{'idle.session.title' | translate}}\r\n </ion-col>\r\n </ion-row>\r\n </ion-grid>\r\n </ng-template>\r\n \r\n <div class=\"ion-padding full-height\">\r\n <div class=\"ion-text-justify\">\r\n {{'idle.session.no-recent-activity' | translate}}\r\n <br /> <br />\r\n {{'idle.session.select.continue' | translate}} {{is.counter.getValue()}} {{'idle.session.seconds' | translate}}.\r\n </div>\r\n </div>\r\n <p-footer>\r\n <ion-row>\r\n <ion-col class=\"ion-text-center\">\r\n <ion-button tabindex=\"0\" shape=\"round\" type=\"submit\" (click)=\"is.stay()\" (keydown.enter)=\"is.stay()\" color=\"success\" class=\"ion-paddight-right\">\r\n <ion-icon slot=\"start\" name=\"log-in-outline\"></ion-icon>\r\n {{'idle.session.continue' | translate}}\r\n </ion-button>\r\n \r\n <ion-button tabindex=\"0\" shape=\"round\" type=\"reset\" (click)=\"logout()\" (keydown.enter)=\"logout()\" color=\"medium\"\r\n class=\"ion-paddight-left\">\r\n <ion-icon slot=\"start\" name=\"log-out-outline\"></ion-icon>\r\n {{'idle.session.logout' | translate}}\r\n </ion-button>\r\n </ion-col>\r\n </ion-row>\r\n </p-footer>\r\n</p-dialog>", styles: [".heading{font-family:var(--app-font-light);color:var(--ion-color-medium-gray);font-size:23px}ion-button:focus{outline:none}\n"] }]
|
|
74
|
+
}], () => [{ type: i1.IdleService }, { type: i2.LoginService }, { type: i3.Router }], null); })();
|
|
75
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(IdleDetectorComponent, { className: "IdleDetectorComponent", filePath: "lib\\components\\idle-detector\\idle-detector.component.ts", lineNumber: 11 }); })();
|
|
76
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaWRsZS1kZXRlY3Rvci5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9uZ3gtcmV1c2EtYXBwLWxpYi9zcmMvbGliL2NvbXBvbmVudHMvaWRsZS1kZXRlY3Rvci9pZGxlLWRldGVjdG9yLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL25neC1yZXVzYS1hcHAtbGliL3NyYy9saWIvY29tcG9uZW50cy9pZGxlLWRldGVjdG9yL2lkbGUtZGV0ZWN0b3IuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBVSxNQUFNLGVBQWUsQ0FBQzs7Ozs7Ozs7OztJQ0k5QyxnQ0FBVSxjQUFBLGlCQUFBO0lBR0osWUFDRjs7SUFBQSxpQkFBVSxFQUFBLEVBQUE7O0lBRFIsZUFDRjtJQURFLDJFQUNGOztBREVSLE1BQU0sT0FBTyxxQkFBcUI7SUFFaEMsWUFBbUIsRUFBZ0IsRUFBVSxFQUFnQixFQUFVLENBQVM7UUFBN0QsT0FBRSxHQUFGLEVBQUUsQ0FBYztRQUFVLE9BQUUsR0FBRixFQUFFLENBQWM7UUFBVSxNQUFDLEdBQUQsQ0FBQyxDQUFRO0lBQUksQ0FBQztJQUVyRixRQUFRO1FBQ04sSUFBSSxDQUFDLEVBQUUsQ0FBQyxnQkFBZ0IsRUFBRSxDQUFDO1FBQzNCLElBQUksQ0FBQyxFQUFFLENBQUMsMkJBQTJCLEVBQUUsQ0FBQztJQUN4QyxDQUFDO0lBRUQsTUFBTTtRQUNKLElBQUksQ0FBQyxFQUFFLENBQUMsTUFBTSxFQUFFLENBQUM7UUFDakIsSUFBSSxDQUFDLENBQUMsQ0FBQyxhQUFhLENBQUMsT0FBTyxDQUFDLENBQUM7UUFDOUIsSUFBSSxDQUFDLEVBQUUsQ0FBQyxLQUFLLEVBQUUsQ0FBQztJQUNsQixDQUFDO3NGQWJVLHFCQUFxQjtvRUFBckIscUJBQXFCO1lDVmxDLG1DQUMyRDtZQUV6RCxzRkFRYztZQUVkLDhCQUFxQyxhQUFBO1lBRWpDLFlBQ0E7O1lBQUEscUJBQU0sU0FBQTtZQUNOLFlBQ0Y7OztZQUFBLGlCQUFNLEVBQUE7WUFFUixpQ0FBVSxlQUFBLGtCQUFBLHFCQUFBO1lBR2lELHVHQUFTLGFBQVMsSUFBQywwR0FBa0IsYUFBUyxJQUEzQjtZQUN0RSwrQkFBd0Q7WUFDeEQsYUFDRjs7WUFBQSxpQkFBYTtZQUNiLHlCQUNBO1lBQUEsc0NBQzRCO1lBRHdCLHVHQUFTLFlBQVEsSUFBQywwR0FBa0IsWUFBUSxJQUExQjtZQUVwRSwrQkFBeUQ7WUFDekQsYUFDRjs7WUFBQSxpQkFBYSxFQUFBLEVBQUEsRUFBQSxFQUFBOztZQWhDWCxxRUFBbUQ7WUFldkQsZUFDQTtZQURBLHdGQUNBO1lBQ0EsZUFDRjtZQURFLDJLQUNGO1lBT00sZUFDRjtZQURFLGdGQUNGO1lBS0UsZUFDRjtZQURFLDhFQUNGOzs7aUZEdEJLLHFCQUFxQjtjQUxqQyxTQUFTOzJCQUNFLG1CQUFtQjs7a0ZBSWxCLHFCQUFxQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgT25Jbml0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBSb3V0ZXIgfSBmcm9tICdAYW5ndWxhci9yb3V0ZXInO1xuaW1wb3J0IHsgSWRsZVNlcnZpY2UgfSBmcm9tICcuLi8uLi9zZXJ2aWNlcy9pZGxlL2lkbGUuc2VydmljZSc7XG5pbXBvcnQgeyBMb2dpblNlcnZpY2UgfSBmcm9tICcuLi8uLi9zZXJ2aWNlcy9sb2dpbi9sb2dpbi5zZXJ2aWNlJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnYXBwLWlkbGUtZGV0ZWN0b3InLFxuICB0ZW1wbGF0ZVVybDogJy4vaWRsZS1kZXRlY3Rvci5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL2lkbGUtZGV0ZWN0b3IuY29tcG9uZW50LnNjc3MnXSxcbn0pXG5leHBvcnQgY2xhc3MgSWRsZURldGVjdG9yQ29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0IHtcblxuICBjb25zdHJ1Y3RvcihwdWJsaWMgaXMgOiBJZGxlU2VydmljZSwgcHJpdmF0ZSBsczogTG9naW5TZXJ2aWNlLCBwcml2YXRlIHI6IFJvdXRlcikgeyB9XG5cbiAgbmdPbkluaXQoKSB7XG4gICAgdGhpcy5pcy5zZXR1cElkYWxUaW1lb3V0KCk7XG4gICAgdGhpcy5pcy5zZXR1cFNlc3Npb25UaW1lb3V0T2JzZXJ2ZXIoKTtcbiAgfVxuXG4gIGxvZ291dCgpIHtcbiAgICB0aGlzLmxzLmxvZ291dCgpO1xuICAgIHRoaXMuci5uYXZpZ2F0ZUJ5VXJsKCdsb2dpbicpO1xuICAgIHRoaXMuaXMucmVzZXQoKTtcbiAgfVxuXG59XG4iLCI8cC1kaWFsb2cgW3Zpc2libGVdPVwiaXMuc2hvd1Nlc3Npb25UaW1lb3V0V2FybmluZy5nZXRWYWx1ZSgpXCIgbW9kYWw9XCJ0cnVlXCJcclxuICBzaG93SGVhZGVyPVwiZmFsc2VcIiBjbG9zYWJsZT1cImZhbHNlXCIgc3R5bGVDbGFzcz1cImFwcC1ib3hcIj5cclxuICBcclxuICA8bmctdGVtcGxhdGUgcFRlbXBsYXRlPVwiaGVhZGVyXCI+XHJcbiAgICA8aW9uLWdyaWQ+XHJcbiAgICAgIDxpb24tcm93PlxyXG4gICAgICAgIDxpb24tY29sIGNsYXNzPVwiaW9uLXRleHQtbGVmdCBoZWFkaW5nXCI+XHJcbiAgICAgICAgICB7eydpZGxlLnNlc3Npb24udGl0bGUnIHwgdHJhbnNsYXRlfX1cclxuICAgICAgICA8L2lvbi1jb2w+XHJcbiAgICAgIDwvaW9uLXJvdz5cclxuICAgIDwvaW9uLWdyaWQ+XHJcbiAgPC9uZy10ZW1wbGF0ZT5cclxuICBcclxuICA8ZGl2IGNsYXNzPVwiaW9uLXBhZGRpbmcgZnVsbC1oZWlnaHRcIj5cclxuICAgIDxkaXYgY2xhc3M9XCJpb24tdGV4dC1qdXN0aWZ5XCI+XHJcbiAgICAgIHt7J2lkbGUuc2Vzc2lvbi5uby1yZWNlbnQtYWN0aXZpdHknIHwgdHJhbnNsYXRlfX1cclxuICAgICAgPGJyIC8+IDxiciAvPlxyXG4gICAgICB7eydpZGxlLnNlc3Npb24uc2VsZWN0LmNvbnRpbnVlJyB8IHRyYW5zbGF0ZX19IHt7aXMuY291bnRlci5nZXRWYWx1ZSgpfX0ge3snaWRsZS5zZXNzaW9uLnNlY29uZHMnIHwgdHJhbnNsYXRlfX0uXHJcbiAgICA8L2Rpdj5cclxuICA8L2Rpdj5cclxuICA8cC1mb290ZXI+XHJcbiAgICA8aW9uLXJvdz5cclxuICAgICAgPGlvbi1jb2wgY2xhc3M9XCJpb24tdGV4dC1jZW50ZXJcIj5cclxuICAgICAgICA8aW9uLWJ1dHRvbiB0YWJpbmRleD1cIjBcIiBzaGFwZT1cInJvdW5kXCIgdHlwZT1cInN1Ym1pdFwiIChjbGljayk9XCJpcy5zdGF5KClcIiAoa2V5ZG93bi5lbnRlcik9XCJpcy5zdGF5KClcIiBjb2xvcj1cInN1Y2Nlc3NcIiBjbGFzcz1cImlvbi1wYWRkaWdodC1yaWdodFwiPlxyXG4gICAgICAgICAgPGlvbi1pY29uIHNsb3Q9XCJzdGFydFwiIG5hbWU9XCJsb2ctaW4tb3V0bGluZVwiPjwvaW9uLWljb24+XHJcbiAgICAgICAgICB7eydpZGxlLnNlc3Npb24uY29udGludWUnIHwgdHJhbnNsYXRlfX1cclxuICAgICAgICA8L2lvbi1idXR0b24+XHJcbiAgICAgICAgJm5ic3A7XHJcbiAgICAgICAgPGlvbi1idXR0b24gdGFiaW5kZXg9XCIwXCIgc2hhcGU9XCJyb3VuZFwiIHR5cGU9XCJyZXNldFwiIChjbGljayk9XCJsb2dvdXQoKVwiIChrZXlkb3duLmVudGVyKT1cImxvZ291dCgpXCIgY29sb3I9XCJtZWRpdW1cIlxyXG4gICAgICAgICAgY2xhc3M9XCJpb24tcGFkZGlnaHQtbGVmdFwiPlxyXG4gICAgICAgICAgPGlvbi1pY29uIHNsb3Q9XCJzdGFydFwiIG5hbWU9XCJsb2ctb3V0LW91dGxpbmVcIj48L2lvbi1pY29uPlxyXG4gICAgICAgICAge3snaWRsZS5zZXNzaW9uLmxvZ291dCcgfCB0cmFuc2xhdGV9fVxyXG4gICAgICAgIDwvaW9uLWJ1dHRvbj5cclxuICAgICAgPC9pb24tY29sPlxyXG4gICAgPC9pb24tcm93PlxyXG4gIDwvcC1mb290ZXI+XHJcbjwvcC1kaWFsb2c+Il19
|
|
@@ -0,0 +1,187 @@
|
|
|
1
|
+
import { Component, EventEmitter, Input, Output } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "../../services/notification/notification.service";
|
|
4
|
+
import * as i2 from "@ionic/angular";
|
|
5
|
+
import * as i3 from "@angular/common";
|
|
6
|
+
import * as i4 from "primeng/api";
|
|
7
|
+
import * as i5 from "primeng/carousel";
|
|
8
|
+
import * as i6 from "primeng/divider";
|
|
9
|
+
import * as i7 from "@fortawesome/angular-fontawesome";
|
|
10
|
+
function InfoComponent_div_0_Template(rf, ctx) { if (rf & 1) {
|
|
11
|
+
i0.ɵɵelementStart(0, "div", 3)(1, "h1");
|
|
12
|
+
i0.ɵɵtext(2);
|
|
13
|
+
i0.ɵɵelementEnd();
|
|
14
|
+
i0.ɵɵelement(3, "p-divider");
|
|
15
|
+
i0.ɵɵelementEnd();
|
|
16
|
+
} if (rf & 2) {
|
|
17
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
|
18
|
+
i0.ɵɵadvance(2);
|
|
19
|
+
i0.ɵɵtextInterpolate(ctx_r0.heading);
|
|
20
|
+
} }
|
|
21
|
+
function InfoComponent_div_1_ion_col_6_ion_button_11_Template(rf, ctx) { if (rf & 1) {
|
|
22
|
+
const _r10 = i0.ɵɵgetCurrentView();
|
|
23
|
+
i0.ɵɵelementStart(0, "ion-button", 17);
|
|
24
|
+
i0.ɵɵlistener("click", function InfoComponent_div_1_ion_col_6_ion_button_11_Template_ion_button_click_0_listener() { const restoredCtx = i0.ɵɵrestoreView(_r10); const link_r8 = restoredCtx.$implicit; const ctx_r9 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r9.open(link_r8)); });
|
|
25
|
+
i0.ɵɵtext(1);
|
|
26
|
+
i0.ɵɵelementEnd();
|
|
27
|
+
} if (rf & 2) {
|
|
28
|
+
const link_r8 = ctx.$implicit;
|
|
29
|
+
i0.ɵɵadvance(1);
|
|
30
|
+
i0.ɵɵtextInterpolate1("", link_r8.linkDesc, " ");
|
|
31
|
+
} }
|
|
32
|
+
function InfoComponent_div_1_ion_col_6_p_divider_12_Template(rf, ctx) { if (rf & 1) {
|
|
33
|
+
i0.ɵɵelement(0, "p-divider", 18);
|
|
34
|
+
} }
|
|
35
|
+
const _c0 = a1 => ["far", a1];
|
|
36
|
+
function InfoComponent_div_1_ion_col_6_Template(rf, ctx) { if (rf & 1) {
|
|
37
|
+
i0.ɵɵelementStart(0, "ion-col", 7)(1, "div", 8)(2, "div")(3, "p", 9);
|
|
38
|
+
i0.ɵɵtext(4);
|
|
39
|
+
i0.ɵɵelementEnd();
|
|
40
|
+
i0.ɵɵelementStart(5, "ion-label");
|
|
41
|
+
i0.ɵɵelement(6, "span", 10);
|
|
42
|
+
i0.ɵɵelementEnd();
|
|
43
|
+
i0.ɵɵelementStart(7, "div", 11)(8, "div", 12);
|
|
44
|
+
i0.ɵɵelement(9, "fa-icon", 13);
|
|
45
|
+
i0.ɵɵelementEnd();
|
|
46
|
+
i0.ɵɵelementStart(10, "div", 14);
|
|
47
|
+
i0.ɵɵtemplate(11, InfoComponent_div_1_ion_col_6_ion_button_11_Template, 2, 1, "ion-button", 15);
|
|
48
|
+
i0.ɵɵelementEnd()()();
|
|
49
|
+
i0.ɵɵtemplate(12, InfoComponent_div_1_ion_col_6_p_divider_12_Template, 1, 0, "p-divider", 16);
|
|
50
|
+
i0.ɵɵelementEnd()();
|
|
51
|
+
} if (rf & 2) {
|
|
52
|
+
const trend_r4 = ctx.$implicit;
|
|
53
|
+
const isLast_r5 = ctx.last;
|
|
54
|
+
i0.ɵɵadvance(4);
|
|
55
|
+
i0.ɵɵtextInterpolate(trend_r4.header);
|
|
56
|
+
i0.ɵɵadvance(2);
|
|
57
|
+
i0.ɵɵproperty("innerHTML", trend_r4.subHeader, i0.ɵɵsanitizeHtml);
|
|
58
|
+
i0.ɵɵadvance(3);
|
|
59
|
+
i0.ɵɵproperty("icon", i0.ɵɵpureFunction1(5, _c0, trend_r4.image));
|
|
60
|
+
i0.ɵɵadvance(2);
|
|
61
|
+
i0.ɵɵproperty("ngForOf", trend_r4.links);
|
|
62
|
+
i0.ɵɵadvance(1);
|
|
63
|
+
i0.ɵɵproperty("ngIf", !isLast_r5);
|
|
64
|
+
} }
|
|
65
|
+
function InfoComponent_div_1_Template(rf, ctx) { if (rf & 1) {
|
|
66
|
+
i0.ɵɵelementStart(0, "div", 4)(1, "ion-grid")(2, "ion-row")(3, "ion-col", 5)(4, "ion-grid")(5, "ion-row");
|
|
67
|
+
i0.ɵɵtemplate(6, InfoComponent_div_1_ion_col_6_Template, 13, 7, "ion-col", 6);
|
|
68
|
+
i0.ɵɵelementEnd()()()()();
|
|
69
|
+
i0.ɵɵelement(7, "br");
|
|
70
|
+
i0.ɵɵelementEnd();
|
|
71
|
+
} if (rf & 2) {
|
|
72
|
+
const ctx_r1 = i0.ɵɵnextContext();
|
|
73
|
+
i0.ɵɵadvance(6);
|
|
74
|
+
i0.ɵɵproperty("ngForOf", ctx_r1.trendingLinks);
|
|
75
|
+
} }
|
|
76
|
+
function InfoComponent_p_carousel_2_ng_template_1_a_4_Template(rf, ctx) { if (rf & 1) {
|
|
77
|
+
const _r16 = i0.ɵɵgetCurrentView();
|
|
78
|
+
i0.ɵɵelementStart(0, "a", 22);
|
|
79
|
+
i0.ɵɵlistener("click", function InfoComponent_p_carousel_2_ng_template_1_a_4_Template_a_click_0_listener() { const restoredCtx = i0.ɵɵrestoreView(_r16); const link_r14 = restoredCtx.$implicit; const ctx_r15 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r15.open(link_r14)); });
|
|
80
|
+
i0.ɵɵtext(1);
|
|
81
|
+
i0.ɵɵelementEnd();
|
|
82
|
+
} if (rf & 2) {
|
|
83
|
+
const link_r14 = ctx.$implicit;
|
|
84
|
+
i0.ɵɵattribute("aria-label", link_r14.linkDesc);
|
|
85
|
+
i0.ɵɵadvance(1);
|
|
86
|
+
i0.ɵɵtextInterpolate(link_r14.linkDesc);
|
|
87
|
+
} }
|
|
88
|
+
function InfoComponent_p_carousel_2_ng_template_1_Template(rf, ctx) { if (rf & 1) {
|
|
89
|
+
i0.ɵɵelementStart(0, "h3");
|
|
90
|
+
i0.ɵɵtext(1);
|
|
91
|
+
i0.ɵɵelementEnd();
|
|
92
|
+
i0.ɵɵelementStart(2, "p");
|
|
93
|
+
i0.ɵɵtext(3);
|
|
94
|
+
i0.ɵɵelementEnd();
|
|
95
|
+
i0.ɵɵtemplate(4, InfoComponent_p_carousel_2_ng_template_1_a_4_Template, 2, 2, "a", 21);
|
|
96
|
+
} if (rf & 2) {
|
|
97
|
+
const trend_r12 = ctx.$implicit;
|
|
98
|
+
i0.ɵɵadvance(1);
|
|
99
|
+
i0.ɵɵtextInterpolate(trend_r12.header);
|
|
100
|
+
i0.ɵɵadvance(2);
|
|
101
|
+
i0.ɵɵtextInterpolate(trend_r12.subHeader);
|
|
102
|
+
i0.ɵɵadvance(1);
|
|
103
|
+
i0.ɵɵproperty("ngForOf", trend_r12.links);
|
|
104
|
+
} }
|
|
105
|
+
function InfoComponent_p_carousel_2_Template(rf, ctx) { if (rf & 1) {
|
|
106
|
+
i0.ɵɵelementStart(0, "p-carousel", 19);
|
|
107
|
+
i0.ɵɵtemplate(1, InfoComponent_p_carousel_2_ng_template_1_Template, 5, 3, "ng-template", 20);
|
|
108
|
+
i0.ɵɵelementEnd();
|
|
109
|
+
} if (rf & 2) {
|
|
110
|
+
const ctx_r2 = i0.ɵɵnextContext();
|
|
111
|
+
i0.ɵɵproperty("value", ctx_r2.trendingLinks)("numScroll", 1)("responsiveOptions", ctx_r2.responsiveOptions)("autoplayInterval", 10000)("circular", true);
|
|
112
|
+
} }
|
|
113
|
+
export class InfoComponent {
|
|
114
|
+
constructor(ns) {
|
|
115
|
+
this.ns = ns;
|
|
116
|
+
this.display = "tile";
|
|
117
|
+
this.type = "MRKT";
|
|
118
|
+
this.onLinkClick = new EventEmitter();
|
|
119
|
+
this.trendingLinks = [];
|
|
120
|
+
this.responsiveOptions = [
|
|
121
|
+
{
|
|
122
|
+
breakpoint: '1024px',
|
|
123
|
+
numVisible: 1,
|
|
124
|
+
numScroll: 1
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
breakpoint: '768px',
|
|
128
|
+
numVisible: 1,
|
|
129
|
+
numScroll: 1
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
breakpoint: '560px',
|
|
133
|
+
numVisible: 1,
|
|
134
|
+
numScroll: 1
|
|
135
|
+
}
|
|
136
|
+
];
|
|
137
|
+
}
|
|
138
|
+
ngOnInit() {
|
|
139
|
+
this.trendingLinks = [];
|
|
140
|
+
this.ns
|
|
141
|
+
.fetchTrends()
|
|
142
|
+
.subscribe(res => {
|
|
143
|
+
this.trendingLinks = res.filter(trend => {
|
|
144
|
+
if (this.userType) {
|
|
145
|
+
return trend.userType == this.userType;
|
|
146
|
+
}
|
|
147
|
+
else {
|
|
148
|
+
return trend.type == this.type;
|
|
149
|
+
}
|
|
150
|
+
});
|
|
151
|
+
});
|
|
152
|
+
}
|
|
153
|
+
open(link) {
|
|
154
|
+
if (link.linkType == 'LINK') {
|
|
155
|
+
window.open(link.linkUrl, 'blank');
|
|
156
|
+
}
|
|
157
|
+
else {
|
|
158
|
+
this.onLinkClick.emit(link);
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
static { this.ɵfac = function InfoComponent_Factory(t) { return new (t || InfoComponent)(i0.ɵɵdirectiveInject(i1.NotificationService)); }; }
|
|
162
|
+
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: InfoComponent, selectors: [["app-info"]], inputs: { heading: "heading", display: "display", type: "type", userType: "userType" }, outputs: { onLinkClick: "onLinkClick" }, decls: 3, vars: 3, consts: [["class", "ion-padding-start ion-padding-end", 4, "ngIf"], ["class", "grid p-jc-left ion-padding-start ion-padding-end", 4, "ngIf"], [3, "value", "numScroll", "responsiveOptions", "autoplayInterval", "circular", 4, "ngIf"], [1, "ion-padding-start", "ion-padding-end"], [1, "grid", "p-jc-left", "ion-padding-start", "ion-padding-end"], ["size", "12", "sizeSm", "12", "sizeXs", "12", "sizeMd", "12", "sizeLg", "12", "sizeXl", "10", "offsetXl", "1"], ["class", "full-height", "size", "12", "sizeSm", "12", "sizeXs", "12", "sizeMd", "6", "sizeLg", "3", "sizeXl", "3", "style", "width: 320px !important;", 4, "ngFor", "ngForOf"], ["size", "12", "sizeSm", "12", "sizeXs", "12", "sizeMd", "6", "sizeLg", "3", "sizeXl", "3", 1, "full-height", 2, "width", "320px !important"], [1, "flex"], [1, "heading"], [2, "color", "var(--ion-color-medium-gray)", 3, "innerHTML"], [1, "grid"], [1, "col-3"], [1, "app-tile-img", 3, "icon"], [1, "col-9"], ["shape", "round", "fill", "outline", "target", "blank", "size", "small", "class", "app-tile-button", 3, "click", 4, "ngFor", "ngForOf"], ["layout", "vertical", "class", "ion-hide-sm-down ion-hide-md-down", 4, "ngIf"], ["shape", "round", "fill", "outline", "target", "blank", "size", "small", 1, "app-tile-button", 3, "click"], ["layout", "vertical", 1, "ion-hide-sm-down", "ion-hide-md-down"], [3, "value", "numScroll", "responsiveOptions", "autoplayInterval", "circular"], ["pTemplate", "item"], ["class", "link", "target", "_blank", "rel", "noopener", 3, "click", 4, "ngFor", "ngForOf"], ["target", "_blank", "rel", "noopener", 1, "link", 3, "click"]], template: function InfoComponent_Template(rf, ctx) { if (rf & 1) {
|
|
163
|
+
i0.ɵɵtemplate(0, InfoComponent_div_0_Template, 4, 1, "div", 0)(1, InfoComponent_div_1_Template, 8, 1, "div", 1)(2, InfoComponent_p_carousel_2_Template, 2, 5, "p-carousel", 2);
|
|
164
|
+
} if (rf & 2) {
|
|
165
|
+
i0.ɵɵproperty("ngIf", ctx.trendingLinks && ctx.trendingLinks.length > 0 && ctx.display == "tile" && ctx.heading);
|
|
166
|
+
i0.ɵɵadvance(1);
|
|
167
|
+
i0.ɵɵproperty("ngIf", ctx.display == "tile");
|
|
168
|
+
i0.ɵɵadvance(1);
|
|
169
|
+
i0.ɵɵproperty("ngIf", ctx.display == "slider" && ctx.trendingLinks && ctx.trendingLinks.length > 0);
|
|
170
|
+
} }, dependencies: [i2.IonButton, i2.IonCol, i2.IonGrid, i2.IonLabel, i2.IonRow, i3.NgForOf, i3.NgIf, i4.PrimeTemplate, i5.Carousel, i6.Divider, i7.FaIconComponent], styles: [".heading[_ngcontent-%COMP%]{font-size:26px;font-family:var(--app-font-light);margin-bottom:5px;color:var(--ion-color-medium-gray)}.app-tile-img[_ngcontent-%COMP%]{font-size:40px;color:var(--ion-color-primary)}.app-tile-button[_ngcontent-%COMP%]{position:absolute;bottom:15px}"] }); }
|
|
171
|
+
}
|
|
172
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(InfoComponent, [{
|
|
173
|
+
type: Component,
|
|
174
|
+
args: [{ selector: 'app-info', template: "<div class=\"ion-padding-start ion-padding-end\"\r\n *ngIf=\"trendingLinks && trendingLinks.length > 0 && display=='tile' && heading\">\r\n <h1>{{heading}}</h1>\r\n <p-divider></p-divider>\r\n</div>\r\n<div class=\"grid p-jc-left ion-padding-start ion-padding-end\" *ngIf=\"display=='tile'\">\r\n <ion-grid>\r\n <ion-row>\r\n <ion-col size=\"12\" sizeSm=\"12\" sizeXs=\"12\" sizeMd=\"12\" sizeLg=\"12\" sizeXl=\"10\" offsetXl=\"1\">\r\n <ion-grid>\r\n <ion-row>\r\n <ion-col *ngFor=\"let trend of trendingLinks; let isLast = last\" class=\"full-height\" size=\"12\" sizeSm=\"12\"\r\n sizeXs=\"12\" sizeMd=\"6\" sizeLg=\"3\" sizeXl=\"3\" style=\"width: 320px !important;\">\r\n <div class=\"flex\">\r\n <div>\r\n <p class=\"heading\">{{trend.header}}</p>\r\n <ion-label><span [innerHTML]=\"trend.subHeader\" style=\"color: var(--ion-color-medium-gray);\"></span>\r\n </ion-label>\r\n <div class=\"grid\">\r\n <div class=\"col-3\">\r\n <fa-icon [icon]=\"['far', trend.image]\" class=\"app-tile-img\"></fa-icon>\r\n </div>\r\n <div class=\"col-9\">\r\n <ion-button shape=\"round\" fill=\"outline\" (click)=\"open(link)\" target=\"blank\"\r\n *ngFor=\"let link of trend.links\" size=\"small\" class=\"app-tile-button\">{{link.linkDesc}}\r\n </ion-button>\r\n </div>\r\n </div>\r\n </div>\r\n <p-divider layout=\"vertical\" *ngIf=\"!isLast\" class=\"ion-hide-sm-down ion-hide-md-down\"></p-divider>\r\n </div>\r\n </ion-col>\r\n </ion-row>\r\n </ion-grid>\r\n </ion-col>\r\n </ion-row>\r\n </ion-grid>\r\n\r\n <br />\r\n</div>\r\n\r\n<p-carousel [value]=\"trendingLinks\" [numScroll]=\"1\" [responsiveOptions]=\"responsiveOptions\" [autoplayInterval]=\"10000\"\r\n [circular]=\"true\" *ngIf=\"display=='slider' && trendingLinks && trendingLinks.length > 0\">\r\n <ng-template let-trend pTemplate=\"item\">\r\n <h3>{{trend.header}}</h3>\r\n <p>{{trend.subHeader}}</p>\r\n <a class=\"link\" target=\"_blank\" *ngFor=\"let link of trend.links\" [attr.aria-label]=\"link.linkDesc\" rel=\"noopener\"\r\n (click)=\"open(link)\">{{link.linkDesc}}</a>\r\n </ng-template>\r\n</p-carousel>", styles: [".heading{font-size:26px;font-family:var(--app-font-light);margin-bottom:5px;color:var(--ion-color-medium-gray)}.app-tile-img{font-size:40px;color:var(--ion-color-primary)}.app-tile-button{position:absolute;bottom:15px}\n"] }]
|
|
175
|
+
}], () => [{ type: i1.NotificationService }], { heading: [{
|
|
176
|
+
type: Input
|
|
177
|
+
}], display: [{
|
|
178
|
+
type: Input
|
|
179
|
+
}], type: [{
|
|
180
|
+
type: Input
|
|
181
|
+
}], userType: [{
|
|
182
|
+
type: Input
|
|
183
|
+
}], onLinkClick: [{
|
|
184
|
+
type: Output
|
|
185
|
+
}] }); })();
|
|
186
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(InfoComponent, { className: "InfoComponent", filePath: "lib\\components\\info\\info.component.ts", lineNumber: 9 }); })();
|
|
187
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5mby5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9uZ3gtcmV1c2EtYXBwLWxpYi9zcmMvbGliL2NvbXBvbmVudHMvaW5mby9pbmZvLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL25neC1yZXVzYS1hcHAtbGliL3NyYy9saWIvY29tcG9uZW50cy9pbmZvL2luZm8uY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxZQUFZLEVBQUUsS0FBSyxFQUFVLE1BQU0sRUFBRSxNQUFNLGVBQWUsQ0FBQzs7Ozs7Ozs7OztJQ0EvRSw4QkFDa0YsU0FBQTtJQUM1RSxZQUFXO0lBQUEsaUJBQUs7SUFDcEIsNEJBQXVCO0lBQ3pCLGlCQUFNOzs7SUFGQSxlQUFXO0lBQVgsb0NBQVc7Ozs7SUFxQkssc0NBQ3dFO0lBRC9CLG1QQUFTLGVBQUEsb0JBQVUsQ0FBQSxJQUFDO0lBQ1csWUFDeEU7SUFBQSxpQkFBYTs7O0lBRDJELGVBQ3hFO0lBRHdFLGdEQUN4RTs7O0lBSU4sZ0NBQW1HOzs7O0lBbEJ2RyxrQ0FDZ0YsYUFBQSxVQUFBLFdBQUE7SUFHdkQsWUFBZ0I7SUFBQSxpQkFBSTtJQUN2QyxpQ0FBVztJQUFBLDJCQUF3RjtJQUNuRyxpQkFBWTtJQUNaLCtCQUFrQixjQUFBO0lBRWQsOEJBQXNFO0lBQ3hFLGlCQUFNO0lBQ04sZ0NBQW1CO0lBQ2pCLCtGQUVhO0lBQ2YsaUJBQU0sRUFBQSxFQUFBO0lBR1YsNkZBQW1HO0lBQ3JHLGlCQUFNLEVBQUE7Ozs7SUFmaUIsZUFBZ0I7SUFBaEIscUNBQWdCO0lBQ2xCLGVBQTZCO0lBQTdCLGlFQUE2QjtJQUlqQyxlQUE2QjtJQUE3QixpRUFBNkI7SUFJbkIsZUFBYztJQUFkLHdDQUFjO0lBS1QsZUFBYTtJQUFiLGlDQUFhOzs7SUF4QjNELDhCQUFzRixlQUFBLGNB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dGVyLCBJbnB1dCwgT25Jbml0LCBPdXRwdXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IE5vdGlmaWNhdGlvblNlcnZpY2UgfSBmcm9tICcuLi8uLi9zZXJ2aWNlcy9ub3RpZmljYXRpb24vbm90aWZpY2F0aW9uLnNlcnZpY2UnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdhcHAtaW5mbycsXG4gIHRlbXBsYXRlVXJsOiAnLi9pbmZvLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vaW5mby5jb21wb25lbnQuY3NzJ11cbn0pXG5leHBvcnQgY2xhc3MgSW5mb0NvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XG5cbiAgQElucHV0KClcbiAgcHVibGljIGhlYWRpbmcgOiBzdHJpbmcgO1xuXG4gIEBJbnB1dCgpXG4gIHB1YmxpYyBkaXNwbGF5IDogc3RyaW5nID0gXCJ0aWxlXCI7XG5cbiAgQElucHV0KClcbiAgcHVibGljIHR5cGUgOiBzdHJpbmcgPSBcIk1SS1RcIjtcblxuICBASW5wdXQoKVxuICBwdWJsaWMgdXNlclR5cGUgOiBzdHJpbmc7XG5cbiAgQE91dHB1dCgpXG4gIHB1YmxpYyBvbkxpbmtDbGljayA6IEV2ZW50RW1pdHRlcjxhbnk+ID0gbmV3IEV2ZW50RW1pdHRlcigpO1xuXG4gIHB1YmxpYyB0cmVuZGluZ0xpbmtzID0gW107XG5cbiAgcHVibGljIHJlc3BvbnNpdmVPcHRpb25zID0gW1xuICAgIHtcbiAgICAgICAgYnJlYWtwb2ludDogJzEwMjRweCcsXG4gICAgICAgIG51bVZpc2libGU6IDEsXG4gICAgICAgIG51bVNjcm9sbDogMVxuICAgIH0sXG4gICAge1xuICAgICAgICBicmVha3BvaW50OiAnNzY4cHgnLFxuICAgICAgICBudW1WaXNpYmxlOiAxLFxuICAgICAgICBudW1TY3JvbGw6IDFcbiAgICB9LFxuICAgIHtcbiAgICAgICAgYnJlYWtwb2ludDogJzU2MHB4JyxcbiAgICAgICAgbnVtVmlzaWJsZTogMSxcbiAgICAgICAgbnVtU2Nyb2xsOiAxXG4gICAgfVxuXTtcblxuICBjb25zdHJ1Y3RvcihwdWJsaWMgbnM6IE5vdGlmaWNhdGlvblNlcnZpY2UpIHsgfVxuXG4gIG5nT25Jbml0KCkge1xuICAgIHRoaXMudHJlbmRpbmdMaW5rcyA9IFtdO1xuICAgIHRoaXMubnNcbiAgICAgICAgLmZldGNoVHJlbmRzKClcbiAgICAgICAgLnN1YnNjcmliZShyZXMgPT4ge1xuICAgICAgICAgdGhpcy50cmVuZGluZ0xpbmtzID0gcmVzLmZpbHRlcih0cmVuZCA9PiB7XG4gICAgICAgICAgaWYodGhpcy51c2VyVHlwZSl7XG4gICAgICAgICAgICByZXR1cm4gdHJlbmQudXNlclR5cGUgPT0gdGhpcy51c2VyVHlwZTtcbiAgICAgICAgICB9ZWxzZXtcbiAgICAgICAgICAgIHJldHVybiB0cmVuZC50eXBlID09IHRoaXMudHlwZTtcbiAgICAgICAgICB9XG4gICAgICAgICB9KTsgXG4gICAgICAgIH0pO1xuICB9XG5cblxuXG4gIG9wZW4obGluayA6IGFueSl7XG4gICAgaWYobGluay5saW5rVHlwZSA9PSAnTElOSycpe1xuICAgICAgd2luZG93Lm9wZW4obGluay5saW5rVXJsLCAnYmxhbmsnKTtcbiAgICB9ZWxzZXtcbiAgICAgIHRoaXMub25MaW5rQ2xpY2suZW1pdChsaW5rKTtcbiAgICB9XG4gIH1cblxufVxuIiwiPGRpdiBjbGFzcz1cImlvbi1wYWRkaW5nLXN0YXJ0IGlvbi1wYWRkaW5nLWVuZFwiXHJcbiAgKm5nSWY9XCJ0cmVuZGluZ0xpbmtzICYmIHRyZW5kaW5nTGlua3MubGVuZ3RoID4gMCAmJiBkaXNwbGF5PT0ndGlsZScgJiYgaGVhZGluZ1wiPlxyXG4gIDxoMT57e2hlYWRpbmd9fTwvaDE+XHJcbiAgPHAtZGl2aWRlcj48L3AtZGl2aWRlcj5cclxuPC9kaXY+XHJcbjxkaXYgY2xhc3M9XCJncmlkIHAtamMtbGVmdCBpb24tcGFkZGluZy1zdGFydCBpb24tcGFkZGluZy1lbmRcIiAqbmdJZj1cImRpc3BsYXk9PSd0aWxlJ1wiPlxyXG4gIDxpb24tZ3JpZD5cclxuICAgIDxpb24tcm93PlxyXG4gICAgICA8aW9uLWNvbCBzaXplPVwiMTJcIiBzaXplU209XCIxMlwiIHNpemVYcz1cIjEyXCIgc2l6ZU1kPVwiMTJcIiBzaXplTGc9XCIxMlwiIHNpemVYbD1cIjEwXCIgb2Zmc2V0WGw9XCIxXCI+XHJcbiAgICAgICAgPGlvbi1ncmlkPlxyXG4gICAgICAgICAgPGlvbi1yb3c+XHJcbiAgICAgICAgICAgIDxpb24tY29sICpuZ0Zvcj1cImxldCB0cmVuZCBvZiB0cmVuZGluZ0xpbmtzOyBsZXQgaXNMYXN0ID0gbGFzdFwiIGNsYXNzPVwiZnVsbC1oZWlnaHRcIiBzaXplPVwiMTJcIiBzaXplU209XCIxMlwiXHJcbiAgICAgICAgICAgICAgc2l6ZVhzPVwiMTJcIiBzaXplTWQ9XCI2XCIgc2l6ZUxnPVwiM1wiIHNpemVYbD1cIjNcIiBzdHlsZT1cIndpZHRoOiAzMjBweCAhaW1wb3J0YW50O1wiPlxyXG4gICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJmbGV4XCI+XHJcbiAgICAgICAgICAgICAgICA8ZGl2PlxyXG4gICAgICAgICAgICAgICAgICA8cCBjbGFzcz1cImhlYWRpbmdcIj57e3RyZW5kLmhlYWRlcn19PC9wPlxyXG4gICAgICAgICAgICAgICAgICA8aW9uLWxhYmVsPjxzcGFuIFtpbm5lckhUTUxdPVwidHJlbmQuc3ViSGVhZGVyXCIgc3R5bGU9XCJjb2xvcjogdmFyKC0taW9uLWNvbG9yLW1lZGl1bS1ncmF5KTtcIj48L3NwYW4+XHJcbiAgICAgICAgICAgICAgICAgIDwvaW9uLWxhYmVsPlxyXG4gICAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiZ3JpZFwiPlxyXG4gICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJjb2wtM1wiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgPGZhLWljb24gW2ljb25dPVwiWydmYXInLCB0cmVuZC5pbWFnZV1cIiBjbGFzcz1cImFwcC10aWxlLWltZ1wiPjwvZmEtaWNvbj5cclxuICAgICAgICAgICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiY29sLTlcIj5cclxuICAgICAgICAgICAgICAgICAgICAgIDxpb24tYnV0dG9uIHNoYXBlPVwicm91bmRcIiBmaWxsPVwib3V0bGluZVwiIChjbGljayk9XCJvcGVuKGxpbmspXCIgdGFyZ2V0PVwiYmxhbmtcIlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAqbmdGb3I9XCJsZXQgbGluayBvZiB0cmVuZC5saW5rc1wiIHNpemU9XCJzbWFsbFwiIGNsYXNzPVwiYXBwLXRpbGUtYnV0dG9uXCI+e3tsaW5rLmxpbmtEZXNjfX1cclxuICAgICAgICAgICAgICAgICAgICAgIDwvaW9uLWJ1dHRvbj5cclxuICAgICAgICAgICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgICAgIDxwLWRpdmlkZXIgbGF5b3V0PVwidmVydGljYWxcIiAqbmdJZj1cIiFpc0xhc3RcIiBjbGFzcz1cImlvbi1oaWRlLXNtLWRvd24gaW9uLWhpZGUtbWQtZG93blwiPjwvcC1kaXZpZGVyPlxyXG4gICAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgICA8L2lvbi1jb2w+XHJcbiAgICAgICAgICA8L2lvbi1yb3c+XHJcbiAgICAgICAgPC9pb24tZ3JpZD5cclxuICAgICAgPC9pb24tY29sPlxyXG4gICAgPC9pb24tcm93PlxyXG4gIDwvaW9uLWdyaWQ+XHJcblxyXG4gIDxiciAvPlxyXG48L2Rpdj5cclxuXHJcbjxwLWNhcm91c2VsIFt2YWx1ZV09XCJ0cmVuZGluZ0xpbmtzXCIgW251bVNjcm9sbF09XCIxXCIgW3Jlc3BvbnNpdmVPcHRpb25zXT1cInJlc3BvbnNpdmVPcHRpb25zXCIgW2F1dG9wbGF5SW50ZXJ2YWxdPVwiMTAwMDBcIlxyXG4gIFtjaXJjdWxhcl09XCJ0cnVlXCIgKm5nSWY9XCJkaXNwbGF5PT0nc2xpZGVyJyAmJiB0cmVuZGluZ0xpbmtzICYmIHRyZW5kaW5nTGlua3MubGVuZ3RoID4gMFwiPlxyXG4gIDxuZy10ZW1wbGF0ZSBsZXQtdHJlbmQgcFRlbXBsYXRlPVwiaXRlbVwiPlxyXG4gICAgPGgzPnt7dHJlbmQuaGVhZGVyfX08L2gzPlxyXG4gICAgPHA+e3t0cmVuZC5zdWJIZWFkZXJ9fTwvcD5cclxuICAgIDxhIGNsYXNzPVwibGlua1wiIHRhcmdldD1cIl9ibGFua1wiICpuZ0Zvcj1cImxldCBsaW5rIG9mIHRyZW5kLmxpbmtzXCIgW2F0dHIuYXJpYS1sYWJlbF09XCJsaW5rLmxpbmtEZXNjXCIgcmVsPVwibm9vcGVuZXJcIlxyXG4gICAgICAoY2xpY2spPVwib3BlbihsaW5rKVwiPnt7bGluay5saW5rRGVzY319PC9hPlxyXG4gIDwvbmctdGVtcGxhdGU+XHJcbjwvcC1jYXJvdXNlbD4iXX0=
|
|
@@ -0,0 +1,212 @@
|
|
|
1
|
+
import { Component, EventEmitter, Output } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "../../services/claimant-service/claimant.service";
|
|
4
|
+
import * as i2 from "../../services/logger/logger.service";
|
|
5
|
+
import * as i3 from "@ngx-translate/core";
|
|
6
|
+
import * as i4 from "@ionic/angular";
|
|
7
|
+
import * as i5 from "@angular/common";
|
|
8
|
+
import * as i6 from "primeng/api";
|
|
9
|
+
import * as i7 from "primeng/dialog";
|
|
10
|
+
import * as i8 from "primeng/table";
|
|
11
|
+
import * as i9 from "@fortawesome/angular-fontawesome";
|
|
12
|
+
function JobSearchResultPageComponent_ng_template_1_Template(rf, ctx) { if (rf & 1) {
|
|
13
|
+
i0.ɵɵelementStart(0, "ion-grid");
|
|
14
|
+
i0.ɵɵelement(1, "ion-row");
|
|
15
|
+
i0.ɵɵelementStart(2, "ion-row");
|
|
16
|
+
i0.ɵɵelement(3, "ion-col");
|
|
17
|
+
i0.ɵɵelementEnd()();
|
|
18
|
+
} }
|
|
19
|
+
function JobSearchResultPageComponent_h3_5_Template(rf, ctx) { if (rf & 1) {
|
|
20
|
+
i0.ɵɵelementStart(0, "h3");
|
|
21
|
+
i0.ɵɵtext(1);
|
|
22
|
+
i0.ɵɵpipe(2, "translate");
|
|
23
|
+
i0.ɵɵelementEnd();
|
|
24
|
+
} if (rf & 2) {
|
|
25
|
+
i0.ɵɵadvance(1);
|
|
26
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(2, 1, "job.search.results.popup.messages.noJobs"));
|
|
27
|
+
} }
|
|
28
|
+
function JobSearchResultPageComponent_h3_6_Template(rf, ctx) { if (rf & 1) {
|
|
29
|
+
i0.ɵɵelementStart(0, "h3");
|
|
30
|
+
i0.ɵɵtext(1);
|
|
31
|
+
i0.ɵɵpipe(2, "translate");
|
|
32
|
+
i0.ɵɵelementEnd();
|
|
33
|
+
} if (rf & 2) {
|
|
34
|
+
i0.ɵɵadvance(1);
|
|
35
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(2, 1, "job.search.results.popup.messages.title"));
|
|
36
|
+
} }
|
|
37
|
+
function JobSearchResultPageComponent_p_7_Template(rf, ctx) { if (rf & 1) {
|
|
38
|
+
i0.ɵɵelementStart(0, "p");
|
|
39
|
+
i0.ɵɵtext(1);
|
|
40
|
+
i0.ɵɵpipe(2, "translate");
|
|
41
|
+
i0.ɵɵelementStart(3, "b");
|
|
42
|
+
i0.ɵɵtext(4);
|
|
43
|
+
i0.ɵɵelementEnd();
|
|
44
|
+
i0.ɵɵtext(5);
|
|
45
|
+
i0.ɵɵpipe(6, "translate");
|
|
46
|
+
i0.ɵɵelementStart(7, "b");
|
|
47
|
+
i0.ɵɵtext(8);
|
|
48
|
+
i0.ɵɵelementEnd();
|
|
49
|
+
i0.ɵɵtext(9);
|
|
50
|
+
i0.ɵɵpipe(10, "translate");
|
|
51
|
+
i0.ɵɵelementStart(11, "b");
|
|
52
|
+
i0.ɵɵtext(12);
|
|
53
|
+
i0.ɵɵelementEnd()();
|
|
54
|
+
} if (rf & 2) {
|
|
55
|
+
const ctx_r3 = i0.ɵɵnextContext();
|
|
56
|
+
i0.ɵɵadvance(1);
|
|
57
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(2, 6, "job.search.results.popup.messages.search.criteria"));
|
|
58
|
+
i0.ɵɵadvance(3);
|
|
59
|
+
i0.ɵɵtextInterpolate(ctx_r3.jobResultsData == null ? null : ctx_r3.jobResultsData.zipCode);
|
|
60
|
+
i0.ɵɵadvance(1);
|
|
61
|
+
i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind1(6, 8, "job.search.results.popup.messages.radius"), " ");
|
|
62
|
+
i0.ɵɵadvance(3);
|
|
63
|
+
i0.ɵɵtextInterpolate1("", ctx_r3.jobResultsData == null ? null : ctx_r3.jobResultsData.geographicalRange, " ");
|
|
64
|
+
i0.ɵɵadvance(1);
|
|
65
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(10, 10, "job.search.results.popup.messages.keywords"));
|
|
66
|
+
i0.ɵɵadvance(3);
|
|
67
|
+
i0.ɵɵtextInterpolate(ctx_r3.jobResultsData == null ? null : ctx_r3.jobResultsData.keyWord);
|
|
68
|
+
} }
|
|
69
|
+
function JobSearchResultPageComponent_p_table_8_ng_template_1_Template(rf, ctx) { if (rf & 1) {
|
|
70
|
+
i0.ɵɵelementStart(0, "tr")(1, "th", 7);
|
|
71
|
+
i0.ɵɵtext(2);
|
|
72
|
+
i0.ɵɵpipe(3, "translate");
|
|
73
|
+
i0.ɵɵelementEnd();
|
|
74
|
+
i0.ɵɵelementStart(4, "th", 7);
|
|
75
|
+
i0.ɵɵtext(5);
|
|
76
|
+
i0.ɵɵpipe(6, "translate");
|
|
77
|
+
i0.ɵɵelementEnd();
|
|
78
|
+
i0.ɵɵelementStart(7, "th", 7);
|
|
79
|
+
i0.ɵɵtext(8);
|
|
80
|
+
i0.ɵɵpipe(9, "translate");
|
|
81
|
+
i0.ɵɵelementEnd();
|
|
82
|
+
i0.ɵɵelementStart(10, "th", 7);
|
|
83
|
+
i0.ɵɵtext(11);
|
|
84
|
+
i0.ɵɵpipe(12, "translate");
|
|
85
|
+
i0.ɵɵelementEnd();
|
|
86
|
+
i0.ɵɵelementStart(13, "th", 7);
|
|
87
|
+
i0.ɵɵtext(14);
|
|
88
|
+
i0.ɵɵpipe(15, "translate");
|
|
89
|
+
i0.ɵɵelementEnd()();
|
|
90
|
+
} if (rf & 2) {
|
|
91
|
+
i0.ɵɵadvance(2);
|
|
92
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(3, 5, "job.search.results.table.header.Posted"));
|
|
93
|
+
i0.ɵɵadvance(3);
|
|
94
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(6, 7, "job.search.results.table.header.Position"));
|
|
95
|
+
i0.ɵɵadvance(3);
|
|
96
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(9, 9, "job.search.results.table.header.Employer"));
|
|
97
|
+
i0.ɵɵadvance(3);
|
|
98
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(12, 11, "job.search.results.table.header.ZipCode"));
|
|
99
|
+
i0.ɵɵadvance(3);
|
|
100
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(15, 13, "job.search.results.table.header.View"));
|
|
101
|
+
} }
|
|
102
|
+
const _c0 = () => ["far", "angle-right"];
|
|
103
|
+
function JobSearchResultPageComponent_p_table_8_ng_template_2_Template(rf, ctx) { if (rf & 1) {
|
|
104
|
+
i0.ɵɵelementStart(0, "tr", 8)(1, "td", 7);
|
|
105
|
+
i0.ɵɵtext(2);
|
|
106
|
+
i0.ɵɵelementEnd();
|
|
107
|
+
i0.ɵɵelementStart(3, "td", 7);
|
|
108
|
+
i0.ɵɵtext(4);
|
|
109
|
+
i0.ɵɵelementEnd();
|
|
110
|
+
i0.ɵɵelementStart(5, "td", 7);
|
|
111
|
+
i0.ɵɵtext(6);
|
|
112
|
+
i0.ɵɵelementEnd();
|
|
113
|
+
i0.ɵɵelementStart(7, "td", 7);
|
|
114
|
+
i0.ɵɵtext(8);
|
|
115
|
+
i0.ɵɵelementEnd();
|
|
116
|
+
i0.ɵɵelementStart(9, "td", 7)(10, "ion-button", 9);
|
|
117
|
+
i0.ɵɵelement(11, "fa-icon", 10);
|
|
118
|
+
i0.ɵɵelementEnd()()();
|
|
119
|
+
} if (rf & 2) {
|
|
120
|
+
const matchingJobs_r9 = ctx.$implicit;
|
|
121
|
+
i0.ɵɵadvance(2);
|
|
122
|
+
i0.ɵɵtextInterpolate1(" ", matchingJobs_r9.jobOrderCreateDate ? matchingJobs_r9.jobOrderCreateDate : "N/A", " ");
|
|
123
|
+
i0.ɵɵadvance(2);
|
|
124
|
+
i0.ɵɵtextInterpolate1(" ", matchingJobs_r9.jobTitle ? matchingJobs_r9.jobTitle : "N/A", " ");
|
|
125
|
+
i0.ɵɵadvance(2);
|
|
126
|
+
i0.ɵɵtextInterpolate1(" ", matchingJobs_r9.employerName ? matchingJobs_r9.employerName : "N/A", " ");
|
|
127
|
+
i0.ɵɵadvance(2);
|
|
128
|
+
i0.ɵɵtextInterpolate1(" ", matchingJobs_r9.zipCode ? matchingJobs_r9.zipCode : "N/A", " ");
|
|
129
|
+
i0.ɵɵadvance(2);
|
|
130
|
+
i0.ɵɵpropertyInterpolate("href", matchingJobs_r9.jobOrderURL ? matchingJobs_r9.jobOrderURL : "N/A");
|
|
131
|
+
i0.ɵɵadvance(1);
|
|
132
|
+
i0.ɵɵproperty("icon", i0.ɵɵpureFunction0(6, _c0));
|
|
133
|
+
} }
|
|
134
|
+
function JobSearchResultPageComponent_p_table_8_Template(rf, ctx) { if (rf & 1) {
|
|
135
|
+
i0.ɵɵelementStart(0, "p-table", 5);
|
|
136
|
+
i0.ɵɵtemplate(1, JobSearchResultPageComponent_p_table_8_ng_template_1_Template, 16, 15, "ng-template", 1)(2, JobSearchResultPageComponent_p_table_8_ng_template_2_Template, 12, 7, "ng-template", 6);
|
|
137
|
+
i0.ɵɵelementEnd();
|
|
138
|
+
} if (rf & 2) {
|
|
139
|
+
const ctx_r4 = i0.ɵɵnextContext();
|
|
140
|
+
i0.ɵɵproperty("value", ctx_r4.matchingJobs)("rowHover", true);
|
|
141
|
+
} }
|
|
142
|
+
function JobSearchResultPageComponent_ng_template_9_Template(rf, ctx) { if (rf & 1) {
|
|
143
|
+
const _r11 = i0.ɵɵgetCurrentView();
|
|
144
|
+
i0.ɵɵelementStart(0, "ion-grid")(1, "ion-row");
|
|
145
|
+
i0.ɵɵelement(2, "ion-col", 11);
|
|
146
|
+
i0.ɵɵelementStart(3, "ion-col", 12)(4, "ion-button", 13);
|
|
147
|
+
i0.ɵɵlistener("click", function JobSearchResultPageComponent_ng_template_9_Template_ion_button_click_4_listener() { i0.ɵɵrestoreView(_r11); const ctx_r10 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r10.cancel()); });
|
|
148
|
+
i0.ɵɵtext(5);
|
|
149
|
+
i0.ɵɵpipe(6, "translate");
|
|
150
|
+
i0.ɵɵelementEnd()()()();
|
|
151
|
+
} if (rf & 2) {
|
|
152
|
+
i0.ɵɵadvance(5);
|
|
153
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(6, 1, "common.close"));
|
|
154
|
+
} }
|
|
155
|
+
const _c1 = () => ({ width: "60vw" });
|
|
156
|
+
const _c2 = () => ({ "1024px": "75vw", "768px": "85vw", "640px": "100vw" });
|
|
157
|
+
export class JobSearchResultPageComponent {
|
|
158
|
+
constructor(cs, loggerService, translateService) {
|
|
159
|
+
this.cs = cs;
|
|
160
|
+
this.loggerService = loggerService;
|
|
161
|
+
this.translateService = translateService;
|
|
162
|
+
this.areJobsFetched = true;
|
|
163
|
+
this.onCancel = new EventEmitter();
|
|
164
|
+
}
|
|
165
|
+
ngOnInit() {
|
|
166
|
+
this.getClaimantJobResults();
|
|
167
|
+
this.translateService.use(localStorage.getItem("language"));
|
|
168
|
+
}
|
|
169
|
+
getClaimantJobResults() {
|
|
170
|
+
this.cs.getJobResults()
|
|
171
|
+
.subscribe(res => {
|
|
172
|
+
this.jobResultsData = res;
|
|
173
|
+
this.loggerService.info(res);
|
|
174
|
+
this.matchingJobs = res.availableJobModel;
|
|
175
|
+
}, err => {
|
|
176
|
+
this.areJobsFetched = false;
|
|
177
|
+
this.loggerService.info('error while calling job result', err);
|
|
178
|
+
});
|
|
179
|
+
}
|
|
180
|
+
cancel() {
|
|
181
|
+
this.onCancel.emit();
|
|
182
|
+
}
|
|
183
|
+
static { this.ɵfac = function JobSearchResultPageComponent_Factory(t) { return new (t || JobSearchResultPageComponent)(i0.ɵɵdirectiveInject(i1.ClaimantService), i0.ɵɵdirectiveInject(i2.LoggerService), i0.ɵɵdirectiveInject(i3.TranslateService)); }; }
|
|
184
|
+
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: JobSearchResultPageComponent, selectors: [["app-job-search-result-page"]], outputs: { onCancel: "onCancel" }, decls: 10, vars: 9, consts: [["visible", "true", "modal", "true", "appendTo", "body", "position", "top", 3, "breakpoints"], ["pTemplate", "header"], [4, "ngIf"], ["styleClass", "p-datatable-striped p-datatable-worksearch ion-padding-top", 3, "value", "rowHover", 4, "ngIf"], ["pTemplate", "footer"], ["styleClass", "p-datatable-striped p-datatable-worksearch ion-padding-top", 3, "value", "rowHover"], ["pTemplate", "body"], ["colspan", "2"], [1, "ui-selectable-row"], ["fill", "outline", "shape", "round", "size", "small", "target", "blank", 1, "small-button", 2, "--border-color", "#4478AA", "--border-width", "2px", "--color", "#4478AA", 3, "href"], [1, "button-icon", 3, "icon"], [1, "ion-text-left"], [1, "ion-text-right"], ["shape", "round", "fill", "outline", "type", "reset", 3, "click"]], template: function JobSearchResultPageComponent_Template(rf, ctx) { if (rf & 1) {
|
|
185
|
+
i0.ɵɵelementStart(0, "p-dialog", 0);
|
|
186
|
+
i0.ɵɵtemplate(1, JobSearchResultPageComponent_ng_template_1_Template, 4, 0, "ng-template", 1);
|
|
187
|
+
i0.ɵɵelementStart(2, "ion-grid")(3, "ion-row")(4, "ion-col");
|
|
188
|
+
i0.ɵɵtemplate(5, JobSearchResultPageComponent_h3_5_Template, 3, 3, "h3", 2)(6, JobSearchResultPageComponent_h3_6_Template, 3, 3, "h3", 2)(7, JobSearchResultPageComponent_p_7_Template, 13, 12, "p", 2)(8, JobSearchResultPageComponent_p_table_8_Template, 3, 2, "p-table", 3);
|
|
189
|
+
i0.ɵɵelementEnd()()();
|
|
190
|
+
i0.ɵɵtemplate(9, JobSearchResultPageComponent_ng_template_9_Template, 7, 3, "ng-template", 4);
|
|
191
|
+
i0.ɵɵelementEnd();
|
|
192
|
+
} if (rf & 2) {
|
|
193
|
+
i0.ɵɵstyleMap(i0.ɵɵpureFunction0(7, _c1));
|
|
194
|
+
i0.ɵɵproperty("breakpoints", i0.ɵɵpureFunction0(8, _c2));
|
|
195
|
+
i0.ɵɵadvance(5);
|
|
196
|
+
i0.ɵɵproperty("ngIf", ctx.matchingJobs == null && ctx.areJobsFetched == false);
|
|
197
|
+
i0.ɵɵadvance(1);
|
|
198
|
+
i0.ɵɵproperty("ngIf", ctx.matchingJobs != null);
|
|
199
|
+
i0.ɵɵadvance(1);
|
|
200
|
+
i0.ɵɵproperty("ngIf", ctx.matchingJobs != null);
|
|
201
|
+
i0.ɵɵadvance(1);
|
|
202
|
+
i0.ɵɵproperty("ngIf", ctx.matchingJobs != null);
|
|
203
|
+
} }, dependencies: [i4.IonButton, i4.IonCol, i4.IonGrid, i4.IonRow, i5.NgIf, i6.PrimeTemplate, i7.Dialog, i8.Table, i9.FaIconComponent, i3.TranslatePipe], styles: ["ion-col[_ngcontent-%COMP%]{margin-left:0!important}.button-icon[_ngcontent-%COMP%]{font-size:18px;color:var(--ion-color-primary)}"] }); }
|
|
204
|
+
}
|
|
205
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(JobSearchResultPageComponent, [{
|
|
206
|
+
type: Component,
|
|
207
|
+
args: [{ selector: 'app-job-search-result-page', template: "<p-dialog visible=\"true\" modal=\"true\" appendTo=\"body\"\r\n [breakpoints]=\"{'1024px': '75vw', '768px': '85vw', '640px': '100vw'}\" [style]=\"{width: '60vw'}\" position=\"top\">\r\n <ng-template pTemplate=\"header\">\r\n <ion-grid>\r\n <ion-row>\r\n\r\n </ion-row>\r\n <ion-row>\r\n <ion-col>\r\n\r\n </ion-col>\r\n </ion-row>\r\n </ion-grid>\r\n </ng-template>\r\n <ion-grid>\r\n <ion-row>\r\n <ion-col>\r\n <h3 *ngIf=\"matchingJobs == null && areJobsFetched== false\">{{'job.search.results.popup.messages.noJobs' | translate}}</h3>\r\n <h3 *ngIf=\"matchingJobs != null\">{{'job.search.results.popup.messages.title' | translate}}</h3>\r\n <p *ngIf=\"matchingJobs != null\">{{'job.search.results.popup.messages.search.criteria' | translate}}<b>{{jobResultsData?.zipCode}}</b>{{'job.search.results.popup.messages.radius' | translate}} <b>{{jobResultsData?.geographicalRange}} </b>{{'job.search.results.popup.messages.keywords' | translate}}<b>{{jobResultsData?.keyWord}}</b></p>\r\n \r\n <p-table [value]=\"matchingJobs\" [rowHover]=\"true\" *ngIf=\"matchingJobs != null\"\r\n styleClass=\"p-datatable-striped p-datatable-worksearch ion-padding-top\">\r\n <ng-template pTemplate=\"header\" let-columns>\r\n <tr>\r\n <th colspan=\"2\">{{'job.search.results.table.header.Posted' | translate}}</th>\r\n <th colspan=\"2\">{{'job.search.results.table.header.Position' | translate}}</th>\r\n <th colspan=\"2\">{{'job.search.results.table.header.Employer' | translate}}</th>\r\n <th colspan=\"2\">{{'job.search.results.table.header.ZipCode' | translate}}</th>\r\n <th colspan=\"2\">{{'job.search.results.table.header.View' | translate}}</th>\r\n </tr>\r\n </ng-template>\r\n \r\n <ng-template pTemplate=\"body\" let-matchingJobs >\r\n <tr class=\"ui-selectable-row\">\r\n <td colspan=\"2\">\r\n {{matchingJobs.jobOrderCreateDate?matchingJobs.jobOrderCreateDate:'N/A' }}\r\n </td>\r\n <td colspan=\"2\">\r\n {{matchingJobs.jobTitle?matchingJobs.jobTitle:'N/A'}}\r\n </td>\r\n <td colspan=\"2\">\r\n {{matchingJobs.employerName?matchingJobs.employerName:'N/A'}}\r\n </td>\r\n <td colspan=\"2\">\r\n {{matchingJobs.zipCode?matchingJobs.zipCode:'N/A'}}\r\n </td>\r\n <td colspan=\"2\">\r\n <ion-button href=\"{{matchingJobs.jobOrderURL?matchingJobs.jobOrderURL:'N/A'}}\" fill=\"outline\" shape=\"round\" \r\n class=\"small-button\" size=\"small\" target=\"blank\"\r\n style=\"--border-color:#4478AA; --border-width:2px; --color:#4478AA;\">\r\n \r\n <fa-icon [icon]=\"['far', 'angle-right']\" class=\"button-icon\"></fa-icon>\r\n </ion-button>\r\n </td>\r\n </tr>\r\n </ng-template>\r\n </p-table>\r\n </ion-col>\r\n </ion-row>\r\n </ion-grid>\r\n\r\n\r\n\r\n <ng-template pTemplate=\"footer\">\r\n <ion-grid>\r\n <ion-row>\r\n <ion-col class=\"ion-text-left\">\r\n\r\n </ion-col>\r\n <ion-col class=\"ion-text-right\">\r\n <ion-button shape=\"round\" fill=\"outline\" type=\"reset\" (click)=\"cancel()\">{{'common.close'| translate}}</ion-button>\r\n </ion-col>\r\n </ion-row>\r\n </ion-grid>\r\n </ng-template>\r\n</p-dialog>", styles: ["ion-col{margin-left:0!important}.button-icon{font-size:18px;color:var(--ion-color-primary)}\n"] }]
|
|
208
|
+
}], () => [{ type: i1.ClaimantService }, { type: i2.LoggerService }, { type: i3.TranslateService }], { onCancel: [{
|
|
209
|
+
type: Output
|
|
210
|
+
}] }); })();
|
|
211
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(JobSearchResultPageComponent, { className: "JobSearchResultPageComponent", filePath: "lib\\components\\job-search-result-page\\job-search-result-page.component.ts", lineNumber: 14 }); })();
|
|
212
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiam9iLXNlYXJjaC1yZXN1bHQtcGFnZS5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9uZ3gtcmV1c2EtYXBwLWxpYi9zcmMvbGliL2NvbXBvbmVudHMvam9iLXNlYXJjaC1yZXN1bHQtcGFnZS9qb2Itc2VhcmNoLXJlc3VsdC1wYWdlLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL25neC1yZXVzYS1hcHAtbGliL3NyYy9saWIvY29tcG9uZW50cy9qb2Itc2VhcmNoLXJlc3VsdC1wYWdlL2pvYi1zZWFyY2gtcmVzdWx0LXBhZ2UuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBVSxZQUFZLEVBQUUsTUFBTSxFQUFnQyxNQUFNLGVBQWUsQ0FBQzs7Ozs7Ozs7Ozs7O0lDRzlGLGdDQUFVO0lBQ04sMEJBRVU7SUFDViwrQkFBUztJQUNMLDBCQUVVO0lBQ2QsaUJBQVUsRUFBQTs7O0lBTU4sMEJBQTJEO0lBQUEsWUFBMEQ7O0lBQUEsaUJBQUs7O0lBQS9ELGVBQTBEO0lBQTFELHNGQUEwRDs7O0lBQ3JILDBCQUFpQztJQUFBLFlBQXlEOztJQUFBLGlCQUFLOztJQUE5RCxlQUF5RDtJQUF6RCxxRkFBeUQ7OztJQUMxRix5QkFBZ0M7SUFBQSxZQUFtRTs7SUFBQSx5QkFBRztJQUFBLFlBQTJCO0lBQUEsaUJBQUk7SUFBQSxZQUEyRDs7SUFBQSx5QkFBRztJQUFBLFlBQXNDO0lBQUEsaUJBQUk7SUFBQSxZQUE0RDs7SUFBQSwwQkFBRztJQUFBLGFBQTJCO0lBQUEsaUJBQUksRUFBQTs7O0lBQTNTLGVBQW1FO0lBQW5FLCtGQUFtRTtJQUFHLGVBQTJCO0lBQTNCLDBGQUEyQjtJQUFJLGVBQTJEO0lBQTNELGdHQUEyRDtJQUFHLGVBQXNDO0lBQXRDLDhHQUFzQztJQUFJLGVBQTREO0lBQTVELDBGQUE0RDtJ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QUFBLEVBQUE7WUFNbEIsNkZBV2M7WUFDbEIsaUJBQVc7O1lBM0UrRCx5Q0FBeUI7WUFBL0Ysd0RBQXFFO1lBZ0JwRCxlQUFvRDtZQUFwRCw4RUFBb0Q7WUFDcEQsZUFBMEI7WUFBMUIsK0NBQTBCO1lBQzNCLGVBQTBCO1lBQTFCLCtDQUEwQjtZQUVxQixlQUEwQjtZQUExQiwrQ0FBMEI7OztpRkRSaEYsNEJBQTRCO2NBTHhDLFNBQVM7MkJBQ0UsNEJBQTRCOzJHQXFDdEMsUUFBUTtrQkFEUCxNQUFNOztrRkFoQ0ksNEJBQTRCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBPbkluaXQsIEV2ZW50RW1pdHRlciwgT3V0cHV0LCBWaWV3Q2hpbGQsIEluamVjdGFibGUsIElucHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IExvZ2dlclNlcnZpY2UgfSBmcm9tICcuLi8uLi9zZXJ2aWNlcy9sb2dnZXIvbG9nZ2VyLnNlcnZpY2UnO1xyXG5pbXBvcnQgeyBKb2JSZXN1bHRzRGF0YSB9IGZyb20gJy4uLy4uL21vZGVscy9jbGFpbWFudC9Kb2JSZXN1bHRzRGF0YSc7XHJcbmltcG9ydCB7IE1hdGNoaW5nSm9icyB9IGZyb20gJy4uLy4uL21vZGVscy9jbGFpbWFudC9NYXRjaGluZ0pvYnMnO1xyXG5pbXBvcnQgeyBDbGFpbWFudFNlcnZpY2UgfSBmcm9tICcuLi8uLi9zZXJ2aWNlcy9jbGFpbWFudC1zZXJ2aWNlL2NsYWltYW50LnNlcnZpY2UnO1xyXG5pbXBvcnQgeyBUcmFuc2xhdGVTZXJ2aWNlIH0gZnJvbSAnQG5neC10cmFuc2xhdGUvY29yZSc7XHJcblxyXG5cclxuQENvbXBvbmVudCh7XHJcbiAgc2VsZWN0b3I6ICdhcHAtam9iLXNlYXJjaC1yZXN1bHQtcGFnZScsXHJcbiAgdGVtcGxhdGVVcmw6ICcuL2pvYi1zZWFyY2gtcmVzdWx0LXBhZ2UuY29tcG9uZW50Lmh0bWwnLFxyXG4gIHN0eWxlVXJsczogWycuL2pvYi1zZWFyY2gtcmVzdWx0LXBhZ2UuY29tcG9uZW50LmNzcyddXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBKb2JTZWFyY2hSZXN1bHRQYWdlQ29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0IHtcclxuXHJcbiAgam9iUmVzdWx0c0RhdGEgOkpvYlJlc3VsdHNEYXRhO1xyXG4gIG1hdGNoaW5nSm9icyA6TWF0Y2hpbmdKb2JzW107XHJcbiAgYXJlSm9ic0ZldGNoZWQgOkJvb2xlYW4gPSB0cnVlO1xyXG5cclxuICBjb25zdHJ1Y3RvcihwdWJsaWMgY3M6IENsYWltYW50U2VydmljZSwgcHVibGljIGxvZ2dlclNlcnZpY2UgOiBMb2dnZXJTZXJ2aWNlLCBwdWJsaWMgdHJhbnNsYXRlU2VydmljZSA6IFRyYW5zbGF0ZVNlcnZpY2UpIHtcclxuXHJcbiAgfVxyXG5cclxuICBuZ09uSW5pdCgpOiB2b2lkIHsgICBcclxuICAgIHRoaXMuZ2V0Q2xhaW1hbnRKb2JSZXN1bHRzKCk7XHJcbiAgICB0aGlzLnRyYW5zbGF0ZVNlcnZpY2UudXNlKGxvY2FsU3RvcmFnZS5nZXRJdGVtKFwibGFuZ3VhZ2VcIikpO1xyXG4gIH1cclxuXHJcbiBcclxuICBcclxuICBnZXRDbGFpbWFudEpvYlJlc3VsdHMoKSB7XHJcbiAgICBcclxuICAgIHRoaXMuY3MuZ2V0Sm9iUmVzdWx0cygpXHJcbiAgICAgIC5zdWJzY3JpYmUoXHJcbiAgICAgICAgcmVzID0+IHtcclxuICAgICAgICAgIHRoaXMuam9iUmVzdWx0c0RhdGEgPSByZXM7XHJcbiAgICAgICAgICB0aGlzLmxvZ2dlclNlcnZpY2UuaW5mbyhyZXMpO1xyXG4gICAgICAgICAgdGhpcy5tYXRjaGluZ0pvYnMgPSByZXMuYXZhaWxhYmxlSm9iTW9kZWw7ICAgICAgICBcclxuICAgICAgICB9LCBlcnIgPT4ge1xyXG4gICAgICAgICAgdGhpcy5hcmVKb2JzRmV0Y2hlZCA9IGZhbHNlO1xyXG4gICAgICAgICAgdGhpcy5sb2dnZXJTZXJ2aWNlLmluZm8oJ2Vycm9yIHdoaWxlIGNhbGxpbmcgam9iIHJlc3VsdCcsIGVycik7XHJcbiAgICAgICAgfVxyXG4gICAgICApOyAgICAgXHJcbiAgfVxyXG5cclxuICBAT3V0cHV0KClcclxuICBvbkNhbmNlbDogRXZlbnRFbWl0dGVyPGFueT4gPSBuZXcgRXZlbnRFbWl0dGVyKCk7XHJcbiAgcHVibGljIHNob3dqb2JTZWFyY2hSZXN1bHRQb3B1cDogYm9vbGVhbjtcclxuXHJcblxyXG4gIGNhbmNlbCgpIHtcclxuICAgIHRoaXMub25DYW5jZWwuZW1pdCgpO1xyXG4gIH1cclxuXHJcbn1cclxuIiwiPHAtZGlhbG9nIHZpc2libGU9XCJ0cnVlXCIgbW9kYWw9XCJ0cnVlXCIgYXBwZW5kVG89XCJib2R5XCJcclxuICAgIFticmVha3BvaW50c109XCJ7JzEwMjRweCc6ICc3NXZ3JywgJzc2OHB4JzogJzg1dncnLCAnNjQwcHgnOiAnMTAwdncnfVwiIFtzdHlsZV09XCJ7d2lkdGg6ICc2MHZ3J31cIiBwb3NpdGlvbj1cInRvcFwiPlxyXG4gICAgPG5nLXRlbXBsYXRlIHBUZW1wbGF0ZT1cImhlYWRlclwiPlxyXG4gICAgICAgIDxpb24tZ3JpZD5cclxuICAgICAgICAgICAgPGlvbi1yb3c+XHJcblxyXG4gICAgICAgICAgICA8L2lvbi1yb3c+XHJcbiAgICAgICAgICAgIDxpb24tcm93PlxyXG4gICAgICAgICAgICAgICAgPGlvbi1jb2w+XHJcblxyXG4gICAgICAgICAgICAgICAgPC9pb24tY29sPlxyXG4gICAgICAgICAgICA8L2lvbi1yb3c+XHJcbiAgICAgICAgPC9pb24tZ3JpZD5cclxuICAgIDwvbmctdGVtcGxhdGU+XHJcbiAgICA8aW9uLWdyaWQ+XHJcbiAgICAgICAgPGlvbi1yb3c+XHJcbiAgICAgICAgICAgIDxpb24tY29sPlxyXG4gICAgICAgICAgICAgICAgPGgzICpuZ0lmPVwibWF0Y2hpbmdKb2JzID09IG51bGwgJiYgYXJlSm9ic0ZldGNoZWQ9PSBmYWxzZVwiPnt7J2pvYi5zZWFyY2gucmVzdWx0cy5wb3B1cC5tZXNzYWdlcy5ub0pvYnMnIHwgdHJhbnNsYXRlfX08L2gzPlxyXG4gICAgICAgICAgICAgICAgPGgzICpuZ0lmPVwibWF0Y2hpbmdKb2JzICE9IG51bGxcIj57eydqb2Iuc2VhcmNoLnJlc3VsdHMucG9wdXAubWVzc2FnZXMudGl0bGUnIHwgdHJhbnNsYXRlfX08L2gzPlxyXG4gICAgICAgICAgICAgICAgPHAgKm5nSWY9XCJtYXRjaGluZ0pvYnMgIT0gbnVsbFwiPnt7J2pvYi5zZWFyY2gucmVzdWx0cy5wb3B1cC5tZXNzYWdlcy5zZWFyY2guY3JpdGVyaWEnIHwgdHJhbnNsYXRlfX08Yj57e2pvYlJlc3VsdHNEYXRhPy56aXBDb2RlfX08L2I+e3snam9iLnNlYXJjaC5yZXN1bHRzLnBvcHVwLm1lc3NhZ2VzLnJhZGl1cycgfCB0cmFuc2xhdGV9fSA8Yj57e2pvYlJlc3VsdHNEYXRhPy5nZW9ncmFwaGljYWxSYW5nZX19IDwvYj57eydqb2Iuc2VhcmNoLnJlc3VsdHMucG9wdXAubWVzc2FnZXMua2V5d29yZHMnIHwgdHJhbnNsYXRlfX08Yj57e2pvYlJlc3VsdHNEYXRhPy5rZXlXb3JkfX08L2I+PC9wPlxyXG4gICAgICAgICAgICAgICAgXHJcbiAgICAgICAgICAgICAgICA8cC10YWJsZSBbdmFsdWVdPVwibWF0Y2hpbmdKb2JzXCIgW3Jvd0hvdmVyXT1cInRydWVcIiAqbmdJZj1cIm1hdGNoaW5nSm9icyAhPSBudWxsXCJcclxuICAgICAgICAgICAgICAgICAgICBzdHlsZUNsYXNzPVwicC1kYXRhdGFibGUtc3RyaXBlZCBwLWRhdGF0YWJsZS13b3Jrc2VhcmNoIGlvbi1wYWRkaW5nLXRvcFwiPlxyXG4gICAgICAgICAgICAgICAgICAgIDxuZy10ZW1wbGF0ZSBwVGVtcGxhdGU9XCJoZWFkZXJcIiBsZXQtY29sdW1ucz5cclxuICAgICAgICAgICAgICAgICAgICAgICAgPHRyPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRoIGNvbHNwYW49XCIyXCI+e3snam9iLnNlYXJjaC5yZXN1bHRzLnRhYmxlLmhlYWRlci5Qb3N0ZWQnIHwgdHJhbnNsYXRlfX08L3RoPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRoIGNvbHNwYW49XCIyXCI+e3snam9iLnNlYXJjaC5yZXN1bHRzLnRhYmxlLmhlYWRlci5Qb3NpdGlvbicgfCB0cmFuc2xhdGV9fTwvdGg+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGggY29sc3Bhbj1cIjJcIj57eydqb2Iuc2VhcmNoLnJlc3VsdHMudGFibGUuaGVhZGVyLkVtcGxveWVyJyB8IHRyYW5zbGF0ZX19PC90aD5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0aCBjb2xzcGFuPVwiMlwiPnt7J2pvYi5zZWFyY2gucmVzdWx0cy50YWJsZS5oZWFkZXIuWmlwQ29kZScgfCB0cmFuc2xhdGV9fTwvdGg+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGggY29sc3Bhbj1cIjJcIj57eydqb2Iuc2VhcmNoLnJlc3VsdHMudGFibGUuaGVhZGVyLlZpZXcnIHwgdHJhbnNsYXRlfX08L3RoPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICA8L3RyPlxyXG4gICAgICAgICAgICAgICAgICAgIDwvbmctdGVtcGxhdGU+XHJcbiAgICAgICAgICAgICAgICAgICAgXHJcbiAgICAgICAgICAgICAgICAgICAgPG5nLXRlbXBsYXRlIHBUZW1wbGF0ZT1cImJvZHlcIiBsZXQtbWF0Y2hpbmdKb2JzICA+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDx0ciBjbGFzcz1cInVpLXNlbGVjdGFibGUtcm93XCI+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dGQgY29sc3Bhbj1cIjJcIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB7e21hdGNoaW5nSm9icy5qb2JPcmRlckNyZWF0ZURhdGU/bWF0Y2hpbmdKb2JzLmpvYk9yZGVyQ3JlYXRlRGF0ZTonTi9BJyB9fVxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90ZD5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0ZCBjb2xzcGFuPVwiMlwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHt7bWF0Y2hpbmdKb2JzLmpvYlRpdGxlP21hdGNoaW5nSm9icy5qb2JUaXRsZTonTi9BJ319XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3RkPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRkIGNvbHNwYW49XCIyXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAge3ttYXRjaGluZ0pvYnMuZW1wbG95ZXJOYW1lP21hdGNoaW5nSm9icy5lbXBsb3llck5hbWU6J04vQSd9fVxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90ZD5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0ZCBjb2xzcGFuPVwiMlwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHt7bWF0Y2hpbmdKb2JzLnppcENvZGU/bWF0Y2hpbmdKb2JzLnppcENvZGU6J04vQSd9fVxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPC90ZD5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx0ZCBjb2xzcGFuPVwiMlwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxpb24tYnV0dG9uIGhyZWY9XCJ7e21hdGNoaW5nSm9icy5qb2JPcmRlclVSTD9tYXRjaGluZ0pvYnMuam9iT3JkZXJVUkw6J04vQSd9fVwiICBmaWxsPVwib3V0bGluZVwiICBzaGFwZT1cInJvdW5kXCIgXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgY2xhc3M9XCJzbWFsbC1idXR0b25cIiBzaXplPVwic21hbGxcIiB0YXJnZXQ9XCJibGFua1wiXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgc3R5bGU9XCItLWJvcmRlci1jb2xvcjojNDQ3OEFBOyAtLWJvcmRlci13aWR0aDoycHg7IC0tY29sb3I6IzQ0NzhBQTtcIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxmYS1pY29uIFtpY29uXT1cIlsnZmFyJywgJ2FuZ2xlLXJpZ2h0J11cIiBjbGFzcz1cImJ1dHRvbi1pY29uXCI+PC9mYS1pY29uPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvaW9uLWJ1dHRvbj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGQ+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDwvdHI+XHJcbiAgICAgICAgICAgICAgICAgICAgPC9uZy10ZW1wbGF0ZT5cclxuICAgICAgICAgICAgICAgIDwvcC10YWJsZT5cclxuICAgICAgICAgICAgPC9pb24tY29sPlxyXG4gICAgICAgIDwvaW9uLXJvdz5cclxuICAgIDwvaW9uLWdyaWQ+XHJcblxyXG5cclxuXHJcbiAgICA8bmctdGVtcGxhdGUgcFRlbXBsYXRlPVwiZm9vdGVyXCI+XHJcbiAgICAgICAgPGlvbi1ncmlkPlxyXG4gICAgICAgICAgICA8aW9uLXJvdz5cclxuICAgICAgICAgICAgICAgIDxpb24tY29sIGNsYXNzPVwiaW9uLXRleHQtbGVmdFwiPlxyXG5cclxuICAgICAgICAgICAgICAgIDwvaW9uLWNvbD5cclxuICAgICAgICAgICAgICAgIDxpb24tY29sIGNsYXNzPVwiaW9uLXRleHQtcmlnaHRcIj5cclxuICAgICAgICAgICAgICAgICAgICA8aW9uLWJ1dHRvbiBzaGFwZT1cInJvdW5kXCIgZmlsbD1cIm91dGxpbmVcIiB0eXBlPVwicmVzZXRcIiAoY2xpY2spPVwiY2FuY2VsKClcIj57eydjb21tb24uY2xvc2UnfCB0cmFuc2xhdGV9fTwvaW9uLWJ1dHRvbj5cclxuICAgICAgICAgICAgICAgIDwvaW9uLWNvbD5cclxuICAgICAgICAgICAgPC9pb24tcm93PlxyXG4gICAgICAgIDwvaW9uLWdyaWQ+XHJcbiAgICA8L25nLXRlbXBsYXRlPlxyXG48L3AtZGlhbG9nPiJdfQ==
|