@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,90 @@
|
|
|
1
|
+
import { Component } from '@angular/core';
|
|
2
|
+
import { BasePage } from '../../pages/BasePage';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "../../services/notification/notification.service";
|
|
5
|
+
import * as i2 from "@ionic/angular";
|
|
6
|
+
import * as i3 from "@angular/common";
|
|
7
|
+
import * as i4 from "primeng/accordion";
|
|
8
|
+
import * as i5 from "primeng/card";
|
|
9
|
+
import * as i6 from "primeng/badge";
|
|
10
|
+
import * as i7 from "@ngx-translate/core";
|
|
11
|
+
function NewsComponent_div_0_div_6_Template(rf, ctx) { if (rf & 1) {
|
|
12
|
+
i0.ɵɵelementStart(0, "div", 6);
|
|
13
|
+
i0.ɵɵelement(1, "ion-spinner", 7);
|
|
14
|
+
i0.ɵɵelementEnd();
|
|
15
|
+
} }
|
|
16
|
+
function NewsComponent_div_0_p_accordionTab_8_p_badge_2_Template(rf, ctx) { if (rf & 1) {
|
|
17
|
+
i0.ɵɵelement(0, "p-badge", 10);
|
|
18
|
+
} }
|
|
19
|
+
function NewsComponent_div_0_p_accordionTab_8_Template(rf, ctx) { if (rf & 1) {
|
|
20
|
+
i0.ɵɵelementStart(0, "p-accordionTab", 8)(1, "div");
|
|
21
|
+
i0.ɵɵtemplate(2, NewsComponent_div_0_p_accordionTab_8_p_badge_2_Template, 1, 0, "p-badge", 9);
|
|
22
|
+
i0.ɵɵelementStart(3, "b");
|
|
23
|
+
i0.ɵɵtext(4);
|
|
24
|
+
i0.ɵɵelementEnd()();
|
|
25
|
+
i0.ɵɵelementStart(5, "p");
|
|
26
|
+
i0.ɵɵtext(6);
|
|
27
|
+
i0.ɵɵelementEnd()();
|
|
28
|
+
} if (rf & 2) {
|
|
29
|
+
const n_r3 = ctx.$implicit;
|
|
30
|
+
const i_r4 = ctx.index;
|
|
31
|
+
i0.ɵɵpropertyInterpolate("header", n_r3.heading);
|
|
32
|
+
i0.ɵɵproperty("selected", i_r4 == 0);
|
|
33
|
+
i0.ɵɵadvance(2);
|
|
34
|
+
i0.ɵɵproperty("ngIf", i_r4 == 0);
|
|
35
|
+
i0.ɵɵadvance(2);
|
|
36
|
+
i0.ɵɵtextInterpolate(n_r3.startDate);
|
|
37
|
+
i0.ɵɵadvance(2);
|
|
38
|
+
i0.ɵɵtextInterpolate(n_r3.description);
|
|
39
|
+
} }
|
|
40
|
+
function NewsComponent_div_0_Template(rf, ctx) { if (rf & 1) {
|
|
41
|
+
i0.ɵɵelementStart(0, "div")(1, "p-card", 1)(2, "div", 2)(3, "ion-label", 3);
|
|
42
|
+
i0.ɵɵtext(4);
|
|
43
|
+
i0.ɵɵpipe(5, "translate");
|
|
44
|
+
i0.ɵɵelementEnd()();
|
|
45
|
+
i0.ɵɵtemplate(6, NewsComponent_div_0_div_6_Template, 2, 0, "div", 4);
|
|
46
|
+
i0.ɵɵelementStart(7, "p-accordion");
|
|
47
|
+
i0.ɵɵtemplate(8, NewsComponent_div_0_p_accordionTab_8_Template, 7, 5, "p-accordionTab", 5);
|
|
48
|
+
i0.ɵɵelementEnd()()();
|
|
49
|
+
} if (rf & 2) {
|
|
50
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
|
51
|
+
i0.ɵɵadvance(4);
|
|
52
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(5, 3, "claimant.dashbaord.form.newsinfo"));
|
|
53
|
+
i0.ɵɵadvance(2);
|
|
54
|
+
i0.ɵɵproperty("ngIf", ctx_r0.loading);
|
|
55
|
+
i0.ɵɵadvance(2);
|
|
56
|
+
i0.ɵɵproperty("ngForOf", ctx_r0.news);
|
|
57
|
+
} }
|
|
58
|
+
export class NewsComponent extends BasePage {
|
|
59
|
+
constructor(ns) {
|
|
60
|
+
super();
|
|
61
|
+
this.ns = ns;
|
|
62
|
+
this.news = [];
|
|
63
|
+
}
|
|
64
|
+
ngOnInit() {
|
|
65
|
+
this.fetchNewsAndAnnouncementInfo();
|
|
66
|
+
}
|
|
67
|
+
fetchNewsAndAnnouncementInfo() {
|
|
68
|
+
this.showLoader();
|
|
69
|
+
this.ns.fetchNewsAnnouncementsInformation()
|
|
70
|
+
.subscribe(resNews => {
|
|
71
|
+
this.news = resNews;
|
|
72
|
+
this.hideLoader();
|
|
73
|
+
}, err => {
|
|
74
|
+
this.news = [];
|
|
75
|
+
this.hideLoader();
|
|
76
|
+
});
|
|
77
|
+
}
|
|
78
|
+
static { this.ɵfac = function NewsComponent_Factory(t) { return new (t || NewsComponent)(i0.ɵɵdirectiveInject(i1.NotificationService)); }; }
|
|
79
|
+
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: NewsComponent, selectors: [["app-news"]], features: [i0.ɵɵInheritDefinitionFeature], decls: 1, vars: 1, consts: [[4, "ngIf"], ["styleClass", " app-box"], [1, "ion-text-center", "app-card-heading"], ["color", "dark"], ["class", "ion-text-center", 4, "ngIf"], [3, "header", "selected", 4, "ngFor", "ngForOf"], [1, "ion-text-center"], ["name", "dots"], [3, "header", "selected"], ["style", "padding-right: 1rem;", "value", "New", 4, "ngIf"], ["value", "New", 2, "padding-right", "1rem"]], template: function NewsComponent_Template(rf, ctx) { if (rf & 1) {
|
|
80
|
+
i0.ɵɵtemplate(0, NewsComponent_div_0_Template, 9, 5, "div", 0);
|
|
81
|
+
} if (rf & 2) {
|
|
82
|
+
i0.ɵɵproperty("ngIf", ctx.news.length != 0);
|
|
83
|
+
} }, dependencies: [i2.IonLabel, i2.IonSpinner, i3.NgForOf, i3.NgIf, i4.Accordion, i4.AccordionTab, i5.Card, i6.Badge, i7.TranslatePipe] }); }
|
|
84
|
+
}
|
|
85
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(NewsComponent, [{
|
|
86
|
+
type: Component,
|
|
87
|
+
args: [{ selector: 'app-news', template: "<div *ngIf=\"(news.length != 0)\">\r\n <p-card styleClass=\" app-box\">\r\n <div class=\"ion-text-center app-card-heading\">\r\n <ion-label color=\"dark\">{{'claimant.dashbaord.form.newsinfo'|translate}}</ion-label>\r\n </div>\r\n <div *ngIf=\"loading\" class=\"ion-text-center\">\r\n <ion-spinner name=\"dots\"></ion-spinner>\r\n </div>\r\n <p-accordion>\r\n <p-accordionTab header=\"{{n.heading}}\" *ngFor=\"let n of news; let i = index\" [selected]=\"i == 0\">\r\n <div>\r\n <p-badge style=\"padding-right: 1rem;\" value=\"New\" *ngIf=\"i == 0\"></p-badge> <b>{{n.startDate}}</b>\r\n </div>\r\n <p>{{n.description}}</p>\r\n </p-accordionTab>\r\n </p-accordion>\r\n </p-card>\r\n</div>" }]
|
|
88
|
+
}], () => [{ type: i1.NotificationService }], null); })();
|
|
89
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(NewsComponent, { className: "NewsComponent", filePath: "lib\\components\\news\\news.component.ts", lineNumber: 11 }); })();
|
|
90
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmV3cy5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9uZ3gtcmV1c2EtYXBwLWxpYi9zcmMvbGliL2NvbXBvbmVudHMvbmV3cy9uZXdzLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL25neC1yZXVzYS1hcHAtbGliL3NyYy9saWIvY29tcG9uZW50cy9uZXdzL25ld3MuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBVSxNQUFNLGVBQWUsQ0FBQztBQUVsRCxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sc0JBQXNCLENBQUM7Ozs7Ozs7Ozs7SUNHeEMsOEJBQTZDO0lBQ3pDLGlDQUF1QztJQUMzQyxpQkFBTTs7O0lBSU0sOEJBQTJFOzs7SUFGbkYseUNBQWlHLFVBQUE7SUFFekYsNkZBQTJFO0lBQUMseUJBQUc7SUFBQSxZQUFlO0lBQUEsaUJBQUksRUFBQTtJQUV0Ryx5QkFBRztJQUFBLFlBQWlCO0lBQUEsaUJBQUksRUFBQTs7OztJQUpaLGdEQUFzQjtJQUF1QyxvQ0FBbUI7SUFFckMsZUFBWTtJQUFaLGdDQUFZO0lBQWdCLGVBQWU7SUFBZixvQ0FBZTtJQUUvRixlQUFpQjtJQUFqQixzQ0FBaUI7OztJQWJwQywyQkFBZ0MsZ0JBQUEsYUFBQSxtQkFBQTtJQUdJLFlBQWdEOztJQUFBLGlCQUFZLEVBQUE7SUFFeEYsb0VBRU07SUFDTixtQ0FBYTtJQUNULDBGQUtpQjtJQUNyQixpQkFBYyxFQUFBLEVBQUE7OztJQVpjLGVBQWdEO0lBQWhELDhFQUFnRDtJQUV0RSxlQUFhO0lBQWIscUNBQWE7SUFJc0MsZUFBUztJQUFULHFDQUFTOztBREMxRSxNQUFNLE9BQU8sYUFBYyxTQUFRLFFBQVE7SUFJekMsWUFBbUIsRUFBd0I7UUFDekMsS0FBSyxFQUFFLENBQUM7UUFEUyxPQUFFLEdBQUYsRUFBRSxDQUFzQjtRQUZwQyxTQUFJLEdBQWdDLEVBQUUsQ0FBQztJQUk5QyxDQUFDO0lBRUQsUUFBUTtRQUNOLElBQUksQ0FBQyw0QkFBNEIsRUFBRSxDQUFBO0lBQ3JDLENBQUM7SUFFTSw0QkFBNEI7UUFDakMsSUFBSSxDQUFDLFVBQVUsRUFBRSxDQUFDO1FBQ2xCLElBQUksQ0FBQyxFQUFFLENBQUMsaUNBQWlDLEVBQUU7YUFDbkMsU0FBUyxDQUFDLE9BQU8sQ0FBQyxFQUFFO1lBQ25CLElBQUksQ0FBQyxJQUFJLEdBQUcsT0FBTyxDQUFDO1lBQ3BCLElBQUksQ0FBQyxVQUFVLEVBQUUsQ0FBQztRQUNwQixDQUFDLEVBQ0QsR0FBRyxDQUFDLEVBQUU7WUFDSixJQUFJLENBQUMsSUFBSSxHQUFHLEVBQUUsQ0FBQztZQUNmLElBQUksQ0FBQyxVQUFVLEVBQUUsQ0FBQztRQUNwQixDQUFDLENBQUMsQ0FBQztJQUNaLENBQUM7OEVBdkJVLGFBQWE7b0VBQWIsYUFBYTtZQ1YxQiw4REFpQk07O1lBakJBLDJDQUF3Qjs7O2lGRFVqQixhQUFhO2NBTHpCLFNBQVM7MkJBQ0UsVUFBVTs7a0ZBSVQsYUFBYSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgT25Jbml0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBOZXdzQW5kQW5ub3VuY2VtZW50TW9kZWwgfSBmcm9tICcuLi8uLi9tb2RlbHMvTmV3c0FuZEFubm91bmNlbWVudE1vZGVsJztcbmltcG9ydCB7IEJhc2VQYWdlIH0gZnJvbSAnLi4vLi4vcGFnZXMvQmFzZVBhZ2UnO1xuaW1wb3J0IHsgTm90aWZpY2F0aW9uU2VydmljZSB9IGZyb20gJy4uLy4uL3NlcnZpY2VzL25vdGlmaWNhdGlvbi9ub3RpZmljYXRpb24uc2VydmljZSc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2FwcC1uZXdzJyxcbiAgdGVtcGxhdGVVcmw6ICcuL25ld3MuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9uZXdzLmNvbXBvbmVudC5jc3MnXVxufSlcbmV4cG9ydCBjbGFzcyBOZXdzQ29tcG9uZW50IGV4dGVuZHMgQmFzZVBhZ2UgaW1wbGVtZW50cyBPbkluaXQge1xuXG4gIHB1YmxpYyBuZXdzIDogTmV3c0FuZEFubm91bmNlbWVudE1vZGVsW10gPSBbXTtcbiAgXG4gIGNvbnN0cnVjdG9yKHB1YmxpYyBucyA6IE5vdGlmaWNhdGlvblNlcnZpY2UpIHsgXG4gICAgc3VwZXIoKTtcbiAgfVxuXG4gIG5nT25Jbml0KCkge1xuICAgIHRoaXMuZmV0Y2hOZXdzQW5kQW5ub3VuY2VtZW50SW5mbygpXG4gIH1cblxuICBwdWJsaWMgZmV0Y2hOZXdzQW5kQW5ub3VuY2VtZW50SW5mbygpe1xuICAgIHRoaXMuc2hvd0xvYWRlcigpO1xuICAgIHRoaXMubnMuZmV0Y2hOZXdzQW5ub3VuY2VtZW50c0luZm9ybWF0aW9uKClcbiAgICAgICAgICAgLnN1YnNjcmliZShyZXNOZXdzID0+IHtcbiAgICAgICAgICAgICB0aGlzLm5ld3MgPSByZXNOZXdzO1xuICAgICAgICAgICAgIHRoaXMuaGlkZUxvYWRlcigpO1xuICAgICAgICAgICB9LFxuICAgICAgICAgICBlcnIgPT4ge1xuICAgICAgICAgICAgIHRoaXMubmV3cyA9IFtdO1xuICAgICAgICAgICAgIHRoaXMuaGlkZUxvYWRlcigpO1xuICAgICAgICAgICB9KTtcbiAgfVxuXG59XG4iLCI8ZGl2ICpuZ0lmPVwiKG5ld3MubGVuZ3RoICE9IDApXCI+XHJcbiAgICA8cC1jYXJkIHN0eWxlQ2xhc3M9XCIgYXBwLWJveFwiPlxyXG4gICAgICAgIDxkaXYgY2xhc3M9XCJpb24tdGV4dC1jZW50ZXIgYXBwLWNhcmQtaGVhZGluZ1wiPlxyXG4gICAgICAgICAgICA8aW9uLWxhYmVsIGNvbG9yPVwiZGFya1wiPnt7J2NsYWltYW50LmRhc2hiYW9yZC5mb3JtLm5ld3NpbmZvJ3x0cmFuc2xhdGV9fTwvaW9uLWxhYmVsPlxyXG4gICAgICAgIDwvZGl2PlxyXG4gICAgICAgIDxkaXYgKm5nSWY9XCJsb2FkaW5nXCIgY2xhc3M9XCJpb24tdGV4dC1jZW50ZXJcIj5cclxuICAgICAgICAgICAgPGlvbi1zcGlubmVyIG5hbWU9XCJkb3RzXCI+PC9pb24tc3Bpbm5lcj5cclxuICAgICAgICA8L2Rpdj5cclxuICAgICAgICA8cC1hY2NvcmRpb24+XHJcbiAgICAgICAgICAgIDxwLWFjY29yZGlvblRhYiBoZWFkZXI9XCJ7e24uaGVhZGluZ319XCIgKm5nRm9yPVwibGV0IG4gb2YgbmV3czsgbGV0IGkgPSBpbmRleFwiIFtzZWxlY3RlZF09XCJpID09IDBcIj5cclxuICAgICAgICAgICAgICAgIDxkaXY+XHJcbiAgICAgICAgICAgICAgICAgICAgPHAtYmFkZ2Ugc3R5bGU9XCJwYWRkaW5nLXJpZ2h0OiAxcmVtO1wiIHZhbHVlPVwiTmV3XCIgKm5nSWY9XCJpID09IDBcIj48L3AtYmFkZ2U+IDxiPnt7bi5zdGFydERhdGV9fTwvYj5cclxuICAgICAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgICAgICAgPHA+e3tuLmRlc2NyaXB0aW9ufX08L3A+XHJcbiAgICAgICAgICAgIDwvcC1hY2NvcmRpb25UYWI+XHJcbiAgICAgICAgPC9wLWFjY29yZGlvbj5cclxuICAgIDwvcC1jYXJkPlxyXG48L2Rpdj4iXX0=
|
|
@@ -0,0 +1,213 @@
|
|
|
1
|
+
import { Component, Input, ViewChild } from '@angular/core';
|
|
2
|
+
import { NG_VALIDATORS, NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "@angular/forms";
|
|
5
|
+
import * as i2 from "@ionic/angular";
|
|
6
|
+
import * as i3 from "@angular/common";
|
|
7
|
+
import * as i4 from "primeng/api";
|
|
8
|
+
import * as i5 from "primeng/dialog";
|
|
9
|
+
import * as i6 from "primeng/overlaypanel";
|
|
10
|
+
import * as i7 from "../../pipes/translate/dynamic-translate.pipe";
|
|
11
|
+
import * as i8 from "../../pipes/trust-html/trust-html.pipe";
|
|
12
|
+
const _c0 = ["op1"];
|
|
13
|
+
const _c1 = ["popup"];
|
|
14
|
+
function OverlayInfoComponent_ng_template_2_div_0_Template(rf, ctx) { if (rf & 1) {
|
|
15
|
+
i0.ɵɵelement(0, "div", 8);
|
|
16
|
+
i0.ɵɵpipe(1, "dynamicTranslate");
|
|
17
|
+
} if (rf & 2) {
|
|
18
|
+
const ctx_r7 = i0.ɵɵnextContext(2);
|
|
19
|
+
i0.ɵɵproperty("innerHTML", i0.ɵɵpipeBind2(1, 1, ctx_r7.overlayText, ctx_r7.param), i0.ɵɵsanitizeHtml);
|
|
20
|
+
} }
|
|
21
|
+
function OverlayInfoComponent_ng_template_2_Template(rf, ctx) { if (rf & 1) {
|
|
22
|
+
i0.ɵɵtemplate(0, OverlayInfoComponent_ng_template_2_div_0_Template, 2, 4, "div", 7);
|
|
23
|
+
i0.ɵɵprojection(1, 1);
|
|
24
|
+
} if (rf & 2) {
|
|
25
|
+
const ctx_r1 = i0.ɵɵnextContext();
|
|
26
|
+
i0.ɵɵproperty("ngIf", ctx_r1.overlayText);
|
|
27
|
+
} }
|
|
28
|
+
function OverlayInfoComponent_ion_button_3_Template(rf, ctx) { if (rf & 1) {
|
|
29
|
+
const _r9 = i0.ɵɵgetCurrentView();
|
|
30
|
+
i0.ɵɵelementStart(0, "ion-button", 9);
|
|
31
|
+
i0.ɵɵlistener("click", function OverlayInfoComponent_ion_button_3_Template_ion_button_click_0_listener($event) { i0.ɵɵrestoreView(_r9); i0.ɵɵnextContext(); const _r0 = i0.ɵɵreference(1); return i0.ɵɵresetView(_r0.toggle($event)); });
|
|
32
|
+
i0.ɵɵelement(1, "ion-icon", 10);
|
|
33
|
+
i0.ɵɵelementEnd();
|
|
34
|
+
} }
|
|
35
|
+
function OverlayInfoComponent_div_4_Template(rf, ctx) { if (rf & 1) {
|
|
36
|
+
i0.ɵɵelement(0, "div", 11);
|
|
37
|
+
i0.ɵɵpipe(1, "trustHtml");
|
|
38
|
+
i0.ɵɵpipe(2, "dynamicTranslate");
|
|
39
|
+
} if (rf & 2) {
|
|
40
|
+
const ctx_r3 = i0.ɵɵnextContext();
|
|
41
|
+
i0.ɵɵproperty("innerHTML", i0.ɵɵpipeBind1(1, 1, i0.ɵɵpipeBind2(2, 3, ctx_r3.displayText, ctx_r3.param)), i0.ɵɵsanitizeHtml);
|
|
42
|
+
} }
|
|
43
|
+
function OverlayInfoComponent_div_5_Template(rf, ctx) { if (rf & 1) {
|
|
44
|
+
i0.ɵɵelement(0, "div", 11);
|
|
45
|
+
i0.ɵɵpipe(1, "trustHtml");
|
|
46
|
+
i0.ɵɵpipe(2, "dynamicTranslate");
|
|
47
|
+
} if (rf & 2) {
|
|
48
|
+
const ctx_r4 = i0.ɵɵnextContext();
|
|
49
|
+
i0.ɵɵproperty("innerHTML", i0.ɵɵpipeBind1(1, 1, i0.ɵɵpipeBind2(2, 3, ctx_r4.displayText, ctx_r4.param)), i0.ɵɵsanitizeHtml);
|
|
50
|
+
} }
|
|
51
|
+
function OverlayInfoComponent_div_6_Template(rf, ctx) { if (rf & 1) {
|
|
52
|
+
i0.ɵɵelement(0, "div", 11);
|
|
53
|
+
i0.ɵɵpipe(1, "trustHtml");
|
|
54
|
+
i0.ɵɵpipe(2, "dynamicTranslate");
|
|
55
|
+
} if (rf & 2) {
|
|
56
|
+
const ctx_r5 = i0.ɵɵnextContext();
|
|
57
|
+
i0.ɵɵproperty("innerHTML", i0.ɵɵpipeBind1(1, 1, i0.ɵɵpipeBind2(2, 3, ctx_r5.displayText, ctx_r5.param)), i0.ɵɵsanitizeHtml);
|
|
58
|
+
} }
|
|
59
|
+
function OverlayInfoComponent_div_8_Template(rf, ctx) { if (rf & 1) {
|
|
60
|
+
i0.ɵɵelement(0, "div", 11);
|
|
61
|
+
i0.ɵɵpipe(1, "trustHtml");
|
|
62
|
+
i0.ɵɵpipe(2, "dynamicTranslate");
|
|
63
|
+
} if (rf & 2) {
|
|
64
|
+
const ctx_r6 = i0.ɵɵnextContext();
|
|
65
|
+
i0.ɵɵproperty("innerHTML", i0.ɵɵpipeBind1(1, 1, i0.ɵɵpipeBind2(2, 3, ctx_r6.overlayText, ctx_r6.param)), i0.ɵɵsanitizeHtml);
|
|
66
|
+
} }
|
|
67
|
+
const _c2 = ["*", "*"];
|
|
68
|
+
const _c3 = () => ({ "width": "279px" });
|
|
69
|
+
const _c4 = () => ({ width: "50vw" });
|
|
70
|
+
const _c5 = () => ({ "960px": "40vw", "640px": "100vw" });
|
|
71
|
+
export class OverlayInfoComponent {
|
|
72
|
+
constructor(elementRef, formBuilder) {
|
|
73
|
+
this.elementRef = elementRef;
|
|
74
|
+
this.formBuilder = formBuilder;
|
|
75
|
+
this.displayAsLabel = false;
|
|
76
|
+
this.labelWithLink = false;
|
|
77
|
+
this.labelWithPopup = false;
|
|
78
|
+
this.showPopup = false;
|
|
79
|
+
this.onChange = (value) => {
|
|
80
|
+
};
|
|
81
|
+
this.onTouch = () => {
|
|
82
|
+
};
|
|
83
|
+
}
|
|
84
|
+
ngOnChanges(changes) {
|
|
85
|
+
}
|
|
86
|
+
writeValue(obj) {
|
|
87
|
+
}
|
|
88
|
+
registerOnChange(fn) {
|
|
89
|
+
this.onChange = fn;
|
|
90
|
+
}
|
|
91
|
+
registerOnTouched(fn) {
|
|
92
|
+
this.onTouch = fn;
|
|
93
|
+
}
|
|
94
|
+
setDisabledState(isDisabled) {
|
|
95
|
+
}
|
|
96
|
+
ngOnInit() {
|
|
97
|
+
this.concentForm = this.formBuilder.group({
|
|
98
|
+
'concent': [false]
|
|
99
|
+
});
|
|
100
|
+
this.concent.valueChanges.subscribe(val => {
|
|
101
|
+
this.onChange(val);
|
|
102
|
+
});
|
|
103
|
+
}
|
|
104
|
+
get concent() {
|
|
105
|
+
return this.concentForm.controls['concent'];
|
|
106
|
+
}
|
|
107
|
+
ngAfterViewInit() {
|
|
108
|
+
if (this.displayAsLabel) {
|
|
109
|
+
if (this.elementRef.nativeElement.querySelector('a')) {
|
|
110
|
+
this.elementRef.nativeElement
|
|
111
|
+
.querySelector('a')
|
|
112
|
+
.addEventListener('click', this.openOverlay.bind(this));
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
if (this.labelWithPopup) {
|
|
116
|
+
if (this.elementRef.nativeElement.querySelector('a')) {
|
|
117
|
+
this.elementRef.nativeElement
|
|
118
|
+
.querySelector('a')
|
|
119
|
+
.addEventListener('click', this.openPopup.bind(this));
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
openOverlay(event) {
|
|
124
|
+
if (this.op1) {
|
|
125
|
+
this.op1.show(event);
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
openPopup(event) {
|
|
129
|
+
this.showPopup = true;
|
|
130
|
+
}
|
|
131
|
+
static { this.ɵfac = function OverlayInfoComponent_Factory(t) { return new (t || OverlayInfoComponent)(i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i1.UntypedFormBuilder)); }; }
|
|
132
|
+
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: OverlayInfoComponent, selectors: [["app-overlay-info"]], viewQuery: function OverlayInfoComponent_Query(rf, ctx) { if (rf & 1) {
|
|
133
|
+
i0.ɵɵviewQuery(_c0, 5);
|
|
134
|
+
i0.ɵɵviewQuery(_c1, 5);
|
|
135
|
+
} if (rf & 2) {
|
|
136
|
+
let _t;
|
|
137
|
+
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.op1 = _t.first);
|
|
138
|
+
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.popup = _t.first);
|
|
139
|
+
} }, inputs: { displayText: "displayText", overlayText: "overlayText", param: "param", displayAsLabel: "displayAsLabel", labelWithLink: "labelWithLink", labelWithPopup: "labelWithPopup" }, features: [i0.ɵɵProvidersFeature([{
|
|
140
|
+
provide: NG_VALUE_ACCESSOR,
|
|
141
|
+
useExisting: OverlayInfoComponent,
|
|
142
|
+
multi: true
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
provide: NG_VALIDATORS,
|
|
146
|
+
multi: true,
|
|
147
|
+
useExisting: OverlayInfoComponent
|
|
148
|
+
}
|
|
149
|
+
]), i0.ɵɵNgOnChangesFeature], ngContentSelectors: _c2, decls: 13, vars: 16, consts: [[3, "appendTo"], ["op1", ""], ["pTemplate", ""], ["fill", "outline", "size", "small", "shape", "round", "class", "small-button", "aria-label", "info button", 3, "click", 4, "ngIf"], [3, "innerHTML", 4, "ngIf"], ["appendTo", "body", "position", "top", 3, "visible", "modal", "breakpoints"], ["shape", "round", "type", "reset", "color", "success", "fill", "outline", 3, "click"], ["class", "overlay-desc", 3, "innerHTML", 4, "ngIf"], [1, "overlay-desc", 3, "innerHTML"], ["fill", "outline", "size", "small", "shape", "round", "aria-label", "info button", 1, "small-button", 3, "click"], ["slot", "icon-only", "name", "information-outline", "aria-hidden", "true", 1, "button-icon"], [3, "innerHTML"]], template: function OverlayInfoComponent_Template(rf, ctx) { if (rf & 1) {
|
|
150
|
+
i0.ɵɵprojectionDef(_c2);
|
|
151
|
+
i0.ɵɵelementStart(0, "p-overlayPanel", 0, 1);
|
|
152
|
+
i0.ɵɵtemplate(2, OverlayInfoComponent_ng_template_2_Template, 2, 1, "ng-template", 2);
|
|
153
|
+
i0.ɵɵelementEnd();
|
|
154
|
+
i0.ɵɵtemplate(3, OverlayInfoComponent_ion_button_3_Template, 2, 0, "ion-button", 3)(4, OverlayInfoComponent_div_4_Template, 3, 6, "div", 4)(5, OverlayInfoComponent_div_5_Template, 3, 6, "div", 4)(6, OverlayInfoComponent_div_6_Template, 3, 6, "div", 4);
|
|
155
|
+
i0.ɵɵelementStart(7, "p-dialog", 5);
|
|
156
|
+
i0.ɵɵtemplate(8, OverlayInfoComponent_div_8_Template, 3, 6, "div", 4);
|
|
157
|
+
i0.ɵɵprojection(9);
|
|
158
|
+
i0.ɵɵelementStart(10, "p-footer")(11, "ion-button", 6);
|
|
159
|
+
i0.ɵɵlistener("click", function OverlayInfoComponent_Template_ion_button_click_11_listener() { return ctx.showPopup = false; });
|
|
160
|
+
i0.ɵɵtext(12, " Close ");
|
|
161
|
+
i0.ɵɵelementEnd()()();
|
|
162
|
+
} if (rf & 2) {
|
|
163
|
+
i0.ɵɵstyleMap(i0.ɵɵpureFunction0(13, _c3));
|
|
164
|
+
i0.ɵɵproperty("appendTo", "body");
|
|
165
|
+
i0.ɵɵadvance(3);
|
|
166
|
+
i0.ɵɵproperty("ngIf", !ctx.displayAsLabel && !ctx.labelWithLink && !ctx.labelWithPopup);
|
|
167
|
+
i0.ɵɵadvance(1);
|
|
168
|
+
i0.ɵɵproperty("ngIf", ctx.displayAsLabel);
|
|
169
|
+
i0.ɵɵadvance(1);
|
|
170
|
+
i0.ɵɵproperty("ngIf", ctx.labelWithLink);
|
|
171
|
+
i0.ɵɵadvance(1);
|
|
172
|
+
i0.ɵɵproperty("ngIf", ctx.labelWithPopup);
|
|
173
|
+
i0.ɵɵadvance(1);
|
|
174
|
+
i0.ɵɵstyleMap(i0.ɵɵpureFunction0(14, _c4));
|
|
175
|
+
i0.ɵɵproperty("visible", ctx.showPopup)("modal", true)("breakpoints", i0.ɵɵpureFunction0(15, _c5));
|
|
176
|
+
i0.ɵɵadvance(1);
|
|
177
|
+
i0.ɵɵproperty("ngIf", ctx.overlayText);
|
|
178
|
+
} }, dependencies: [i2.IonButton, i2.IonIcon, i3.NgIf, i4.Footer, i4.PrimeTemplate, i5.Dialog, i6.OverlayPanel, i7.DynamicTranslatePipe, i8.TrustHtmlPipe], styles: ["[_nghost-%COMP%] .p-overlaypanel{width:279px!important}[_nghost-%COMP%] .p-button.p-button-icon-only{background-color:transparent!important}[_nghost-%COMP%] .p-button.p-button-icon-only.p-button-rounded{border-radius:50%;height:-moz-fit-content!important;height:fit-content!important}[_nghost-%COMP%] .p-overlaypanel .p-overlaypanel-content{padding:24px 24px 12px}[_nghost-%COMP%] a{cursor:pointer;color:var(--ion-color-primary)!important;text-decoration:none}[_nghost-%COMP%] a:hover{text-decoration:underline;text-underline-offset:3px}[_nghost-%COMP%] ol, [_nghost-%COMP%] ul{list-style:none!important}[_nghost-%COMP%] ul{list-style-type:square!important}[_nghost-%COMP%] li{font-family:var(--app-font-light)!important}.small-button[_ngcontent-%COMP%]{--padding-start: 0px;--padding-end: 0px;--background: white;--border: none !important;margin-top:1px;--color: var(--ion-color-primary);--border-color: var(--ion-color-primary);--border-width: 2px }ion-button.small-button[_ngcontent-%COMP%]::part(native){padding:3px}.button-icon[_ngcontent-%COMP%]{font-size:18px;color:var(--ion-color-primary)}"] }); }
|
|
179
|
+
}
|
|
180
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(OverlayInfoComponent, [{
|
|
181
|
+
type: Component,
|
|
182
|
+
args: [{ selector: 'app-overlay-info', providers: [{
|
|
183
|
+
provide: NG_VALUE_ACCESSOR,
|
|
184
|
+
useExisting: OverlayInfoComponent,
|
|
185
|
+
multi: true
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
provide: NG_VALIDATORS,
|
|
189
|
+
multi: true,
|
|
190
|
+
useExisting: OverlayInfoComponent
|
|
191
|
+
}
|
|
192
|
+
], template: "\r\n<p-overlayPanel #op1 [appendTo]=\"'body'\" [style]=\"{'width': '279px'}\">\r\n <ng-template pTemplate>\r\n <div [innerHTML]=\"overlayText | dynamicTranslate:param\" class=\"overlay-desc\" *ngIf=\"overlayText\"></div>\r\n <ng-content></ng-content>\r\n </ng-template>\r\n</p-overlayPanel>\r\n\r\n<ion-button fill=\"outline\" size=\"small\" shape=\"round\" class=\"small-button\" *ngIf=\"!displayAsLabel && !labelWithLink && !labelWithPopup\" aria-label=\"info button\" (click)=\"op1.toggle($event)\">\r\n <ion-icon slot=\"icon-only\" name=\"information-outline\" class=\"button-icon\" aria-hidden=\"true\"></ion-icon>\r\n</ion-button>\r\n<div *ngIf=\"displayAsLabel\" [innerHTML]=\"displayText | dynamicTranslate:param | trustHtml\"></div>\r\n<div *ngIf=\"labelWithLink\" [innerHTML]=\"displayText | dynamicTranslate:param | trustHtml\"></div>\r\n<div *ngIf=\"labelWithPopup\" [innerHTML]=\"displayText | dynamicTranslate:param | trustHtml\"></div>\r\n\r\n<p-dialog [visible]=\"showPopup\" [modal]=\"true\" appendTo=\"body\" [breakpoints]=\"{'960px': '40vw', '640px': '100vw'}\" [style]=\"{width: '50vw'}\" position=\"top\">\r\n <div [innerHTML]=\"overlayText | dynamicTranslate:param | trustHtml\" *ngIf=\"overlayText\"></div>\r\n <ng-content></ng-content>\r\n <p-footer>\r\n <ion-button shape=\"round\" type=\"reset\" (click)=\"showPopup = false\" color=\"success\" fill=\"outline\">\r\n Close\r\n </ion-button>\r\n </p-footer>\r\n</p-dialog>", styles: [":host ::ng-deep .p-overlaypanel{width:279px!important}:host ::ng-deep .p-button.p-button-icon-only{background-color:transparent!important}:host ::ng-deep .p-button.p-button-icon-only.p-button-rounded{border-radius:50%;height:-moz-fit-content!important;height:fit-content!important}:host ::ng-deep .p-overlaypanel .p-overlaypanel-content{padding:24px 24px 12px}:host ::ng-deep a{cursor:pointer;color:var(--ion-color-primary)!important;text-decoration:none}:host ::ng-deep a:hover{text-decoration:underline;text-underline-offset:3px}:host ::ng-deep ol,:host ::ng-deep ul{list-style:none!important}:host ::ng-deep ul{list-style-type:square!important}:host ::ng-deep li{font-family:var(--app-font-light)!important}.small-button{--padding-start: 0px;--padding-end: 0px;--background: white;--border: none !important;margin-top:1px;--color: var(--ion-color-primary);--border-color: var(--ion-color-primary);--border-width: 2px }ion-button.small-button::part(native){padding:3px}.button-icon{font-size:18px;color:var(--ion-color-primary)}\n"] }]
|
|
193
|
+
}], () => [{ type: i0.ElementRef }, { type: i1.UntypedFormBuilder }], { op1: [{
|
|
194
|
+
type: ViewChild,
|
|
195
|
+
args: ['op1', { static: false }]
|
|
196
|
+
}], popup: [{
|
|
197
|
+
type: ViewChild,
|
|
198
|
+
args: ['popup', { static: false }]
|
|
199
|
+
}], displayText: [{
|
|
200
|
+
type: Input
|
|
201
|
+
}], overlayText: [{
|
|
202
|
+
type: Input
|
|
203
|
+
}], param: [{
|
|
204
|
+
type: Input
|
|
205
|
+
}], displayAsLabel: [{
|
|
206
|
+
type: Input
|
|
207
|
+
}], labelWithLink: [{
|
|
208
|
+
type: Input
|
|
209
|
+
}], labelWithPopup: [{
|
|
210
|
+
type: Input
|
|
211
|
+
}] }); })();
|
|
212
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(OverlayInfoComponent, { className: "OverlayInfoComponent", filePath: "lib\\components\\overlay-info\\overlay-info.component.ts", lineNumber: 23 }); })();
|
|
213
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoib3ZlcmxheS1pbmZvLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL25neC1yZXVzYS1hcHAtbGliL3NyYy9saWIvY29tcG9uZW50cy9vdmVybGF5LWluZm8vb3ZlcmxheS1pbmZvLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL25neC1yZXVzYS1hcHAtbGliL3NyYy9saWIvY29tcG9uZW50cy9vdmVybGF5LWluZm8vb3ZlcmxheS1pbmZvLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUNBLE9BQU8sRUFBRSxTQUFTLEVBQWMsS0FBSyxFQUFvQyxTQUFTLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDMUcsT0FBTyxFQUFnQyxhQUFhLEVBQUUsaUJBQWlCLEVBQW9ELE1BQU0sZ0JBQWdCLENBQUM7Ozs7Ozs7Ozs7Ozs7SUNDOUkseUJBQXVHOzs7O0lBQWxHLHFHQUFrRDs7O0lBQXZELG1GQUF1RztJQUN2RyxxQkFBeUI7OztJQURxRCx5Q0FBaUI7Ozs7SUFLbkcscUNBQThMO0lBQTdCLGtNQUFTLGVBQUEsa0JBQWtCLENBQUEsSUFBQztJQUMzTCwrQkFBd0c7SUFDMUcsaUJBQWE7OztJQUNiLDBCQUFpRzs7Ozs7SUFBckUsMkhBQThEOzs7SUFDMUYsMEJBQWdHOzs7OztJQUFyRSwySEFBOEQ7OztJQUN6RiwwQkFBaUc7Ozs7O0lBQXJFLDJIQUE4RDs7O0lBR3hGLDBCQUE4Rjs7Ozs7SUFBekYsMkhBQThEOzs7Ozs7QURNckUsTUFBTSxPQUFPLG9CQUFvQjtJQXFDL0IsWUFBb0IsVUFBc0IsRUFBUyxXQUErQjtRQUE5RCxlQUFVLEdBQVYsVUFBVSxDQUFZO1FBQVMsZ0JBQVcsR0FBWCxXQUFXLENBQW9CO1FBakJsRixtQkFBYyxHQUFhLEtBQUssQ0FBQztRQUdqQyxrQkFBYSxHQUFhLEtBQUssQ0FBQztRQUdoQyxtQkFBYyxHQUFhLEtBQUssQ0FBQztRQUUxQixjQUFTLEdBQUcsS0FBSyxDQUFDO1FBRWpCLGFBQVEsR0FBYSxDQUFDLEtBQWMsRUFBRSxFQUFFO1FBRWhELENBQUMsQ0FBQztRQUNNLFlBQU8sR0FBYSxHQUFHLEVBQUU7UUFFakMsQ0FBQyxDQUFDO0lBRW9GLENBQUM7SUFDdkYsV0FBVyxDQUFDLE9BQXNCO0lBQ2xDLENBQUM7SUFFRCxVQUFVLENBQUMsR0FBUTtJQUNuQixDQUFDO0lBRUQsZ0JBQWdCLENBQUMsRUFBTztRQUN0QixJQUFJLENBQUMsUUFBUSxHQUFHLEVBQUUsQ0FBQztJQUNyQixDQUFDO0lBQ0QsaUJBQWlCLENBQUMsRUFBTztRQUN2QixJQUFJLENBQUMsT0FBTyxHQUFHLEVBQUUsQ0FBQztJQUNwQixDQUFDO0lBQ0QsZ0JBQWdCLENBQUUsVUFBbUI7SUFDckMsQ0FBQztJQUVELFFBQVE7UUFDTixJQUFJLENBQUMsV0FBVyxHQUFHLElBQUksQ0FBQyxXQUFXLENBQUMsS0FBSyxDQUFDO1lBQ3hDLFNBQVMsRUFBRSxDQUFDLEtBQUssQ0FBQztTQUNuQixDQUFDLENBQUM7UUFFSCxJQUFJLENBQUMsT0FBTyxDQUFDLFlBQVksQ0FBQyxTQUFTLENBQUMsR0FBRyxDQUFDLEVBQUU7WUFDdEMsSUFBSSxDQUFDLFFBQVEsQ0FBQyxHQUFHLENBQUMsQ0FBQTtRQUN0QixDQUFDLENBQUMsQ0FBQTtJQUNKLENBQUM7SUFFRCxJQUFJLE9BQU87UUFDVCxPQUFPLElBQUksQ0FBQyxXQUFXLENBQUMsUUFBUSxDQUFDLFNBQVMsQ0FBQyxDQUFDO0lBQzlDLENBQUM7SUFFRCxlQUFlO1FBQ2IsSUFBRyxJQUFJLENBQUMsY0FBYyxFQUFDO1lBQ3JCLElBQUksSUFBSSxDQUFDLFVBQVUsQ0FBQyxhQUFhLENBQUMsYUFBYSxDQUFDLEdBQUcsQ0FBQyxFQUFFO2dCQUNwRCxJQUFJLENBQUMsVUFBVSxDQUFDLGFBQWE7cUJBQzFCLGFBQWEsQ0FBQyxHQUFHLENBQUM7cUJBQ2xCLGdCQUFnQixDQUNmLE9BQU8sRUFDUCxJQUFJLENBQUMsV0FBVyxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FDNUIsQ0FBQzthQUNMO1NBQ0Y7UUFDRCxJQUFHLElBQUksQ0FBQyxjQUFjLEVBQUM7WUFDckIsSUFBSSxJQUFJLENBQUMsVUFBVSxDQUFDLGFBQWEsQ0FBQyxhQUFhLENBQUMsR0FBRyxDQUFDLEVBQUU7Z0JBQ3BELElBQUksQ0FBQyxVQUFVLENBQUMsYUFBYTtxQkFDMUIsYUFBYSxDQUFDLEdBQUcsQ0FBQztxQkFDbEIsZ0JBQWdCLENBQ2YsT0FBTyxFQUNQLElBQUksQ0FBQyxTQUFTLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUMxQixDQUFDO2FBQ0w7U0FDRjtJQUNILENBQUM7SUFFRCxXQUFXLENBQUMsS0FBSztRQUNmLElBQUcsSUFBSSxDQUFDLEdBQUcsRUFBQztZQUNWLElBQUksQ0FBQyxHQUFHLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDO1NBQ3RCO0lBQ0gsQ0FBQztJQUVELFNBQVMsQ0FBQyxLQUFLO1FBQ2IsSUFBSSxDQUFDLFNBQVMsR0FBRyxJQUFJLENBQUM7SUFDeEIsQ0FBQztxRkFsR1Usb0JBQW9CO29FQUFwQixvQkFBb0I7Ozs7Ozs7c09BWnBCLENBQUM7b0JBQ1YsT0FBTyxFQUFFLGlCQUFpQjtvQkFDMUIsV0FBVyxFQUFFLG9CQUFvQjtvQkFDakMsS0FBSyxFQUFFLElBQUk7aUJBQ1o7Z0JBQ0Q7b0JBQ0UsT0FBTyxFQUFFLGFBQWE7b0JBQ3RCLEtBQUssRUFBRSxJQUFJO29CQUNYLFdBQVcsRUFBRSxvQkFBb0I7aUJBQ2xDO2FBQ0E7O1lDbkJILDRDQUFzRTtZQUNwRSxxRkFHYztZQUNoQixpQkFBaUI7WUFFakIsbUZBRWEsd0RBQUEsd0RBQUEsd0RBQUE7WUFLYixtQ0FBNEo7WUFDMUoscUVBQThGO1lBQzlGLGtCQUF5QjtZQUN6QixpQ0FBVSxxQkFBQTtZQUMrQixzSEFBcUIsS0FBSyxJQUFDO1lBQ2hFLHdCQUNGO1lBQUEsaUJBQWEsRUFBQSxFQUFBOztZQXBCd0IsMENBQTRCO1lBQWhELGlDQUFtQjtZQU9vQyxlQUEwRDtZQUExRCx1RkFBMEQ7WUFHaEksZUFBb0I7WUFBcEIseUNBQW9CO1lBQ3BCLGVBQW1CO1lBQW5CLHdDQUFtQjtZQUNuQixlQUFvQjtZQUFwQix5Q0FBb0I7WUFFeUYsZUFBeUI7WUFBekIsMENBQXlCO1lBQWxJLHVDQUFxQixlQUFBLDRDQUFBO1lBQ3dDLGVBQWlCO1lBQWpCLHNDQUFpQjs7O2lGRE0zRSxvQkFBb0I7Y0FoQmhDLFNBQVM7MkJBQ0Usa0JBQWtCLGFBR2pCLENBQUM7d0JBQ1YsT0FBTyxFQUFFLGlCQUFpQjt3QkFDMUIsV0FBVyxzQkFBc0I7d0JBQ2pDLEtBQUssRUFBRSxJQUFJO3FCQUNaO29CQUNEO3dCQUNFLE9BQU8sRUFBRSxhQUFhO3dCQUN0QixLQUFLLEVBQUUsSUFBSTt3QkFDWCxXQUFXLHNCQUFzQjtxQkFDbEM7aUJBQ0E7NEVBT0QsR0FBRztrQkFERixTQUFTO21CQUFDLEtBQUssRUFBRSxFQUFFLE1BQU0sRUFBRSxLQUFLLEVBQUU7WUFJbkMsS0FBSztrQkFESixTQUFTO21CQUFDLE9BQU8sRUFBRSxFQUFFLE1BQU0sRUFBRSxLQUFLLEVBQUU7WUFJckMsV0FBVztrQkFEVixLQUFLO1lBSU4sV0FBVztrQkFEVixLQUFLO1lBSU4sS0FBSztrQkFESixLQUFLO1lBSU4sY0FBYztrQkFEYixLQUFLO1lBSU4sYUFBYTtrQkFEWixLQUFLO1lBSU4sY0FBYztrQkFEYixLQUFLOztrRkF6Qkssb0JBQW9CIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIFZpZXdFbmNhcHN1bGF0aW9uIH0gZnJvbSAnQGFuZ3VsYXIvY29tcGlsZXInO1xuaW1wb3J0IHsgQ29tcG9uZW50LCBFbGVtZW50UmVmLCBJbnB1dCwgT25DaGFuZ2VzLCBPbkluaXQsIFNpbXBsZUNoYW5nZXMsIFZpZXdDaGlsZCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQ29udHJvbFZhbHVlQWNjZXNzb3IsIE5nRm9ybSwgTkdfVkFMSURBVE9SUywgTkdfVkFMVUVfQUNDRVNTT1IsIFVudHlwZWRGb3JtQnVpbGRlciwgVW50eXBlZEZvcm1Hcm91cCwgVmFsaWRhdG9ycyB9IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJztcbmltcG9ydCB7IERpYWxvZyB9IGZyb20gJ3ByaW1lbmcvZGlhbG9nJztcbmltcG9ydCB7IE92ZXJsYXlQYW5lbCB9IGZyb20gJ3ByaW1lbmcvb3ZlcmxheXBhbmVsJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnYXBwLW92ZXJsYXktaW5mbycsXG4gIHRlbXBsYXRlVXJsOiAnLi9vdmVybGF5LWluZm8uY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9vdmVybGF5LWluZm8uY29tcG9uZW50LnNjc3MnXSxcbiAgcHJvdmlkZXJzOiBbe1xuICAgIHByb3ZpZGU6IE5HX1ZBTFVFX0FDQ0VTU09SLFxuICAgIHVzZUV4aXN0aW5nOiBPdmVybGF5SW5mb0NvbXBvbmVudCxcbiAgICBtdWx0aTogdHJ1ZVxuICB9LFxuICB7XG4gICAgcHJvdmlkZTogTkdfVkFMSURBVE9SUyxcbiAgICBtdWx0aTogdHJ1ZSxcbiAgICB1c2VFeGlzdGluZzogT3ZlcmxheUluZm9Db21wb25lbnRcbiAgfVxuICBdXG59KVxuZXhwb3J0IGNsYXNzIE92ZXJsYXlJbmZvQ29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0LCBDb250cm9sVmFsdWVBY2Nlc3NvciwgT25DaGFuZ2VzIHtcblxuICBwdWJsaWMgY29uY2VudEZvcm06IFVudHlwZWRGb3JtR3JvdXA7XG5cbiAgQFZpZXdDaGlsZCgnb3AxJywgeyBzdGF0aWM6IGZhbHNlIH0pXG4gIG9wMSA6IE92ZXJsYXlQYW5lbDtcblxuICBAVmlld0NoaWxkKCdwb3B1cCcsIHsgc3RhdGljOiBmYWxzZSB9KVxuICBwb3B1cCA6IERpYWxvZztcblxuICBASW5wdXQoKVxuICBkaXNwbGF5VGV4dCA6IHN0cmluZztcblxuICBASW5wdXQoKVxuICBvdmVybGF5VGV4dCA6IHN0cmluZztcblxuICBASW5wdXQoKVxuICBwYXJhbSA6IGFueTtcblxuICBASW5wdXQoKVxuICBkaXNwbGF5QXNMYWJlbCA6IGJvb2xlYW4gPSBmYWxzZTtcblxuICBASW5wdXQoKVxuICBsYWJlbFdpdGhMaW5rIDogYm9vbGVhbiA9IGZhbHNlO1xuXG4gIEBJbnB1dCgpXG4gIGxhYmVsV2l0aFBvcHVwIDogYm9vbGVhbiA9IGZhbHNlO1xuXG4gIHB1YmxpYyBzaG93UG9wdXAgPSBmYWxzZTtcblxuICBwcml2YXRlIG9uQ2hhbmdlOiBGdW5jdGlvbiA9ICh2YWx1ZSA6IFN0cmluZykgPT4ge1xuICBcbiAgfTtcbiAgcHJpdmF0ZSBvblRvdWNoOiBGdW5jdGlvbiA9ICgpID0+IHtcblxuICB9O1xuXG4gIGNvbnN0cnVjdG9yKHByaXZhdGUgZWxlbWVudFJlZjogRWxlbWVudFJlZiwgcHVibGljIGZvcm1CdWlsZGVyOiBVbnR5cGVkRm9ybUJ1aWxkZXIpIHsgfVxuICBuZ09uQ2hhbmdlcyhjaGFuZ2VzOiBTaW1wbGVDaGFuZ2VzKTogdm9pZCB7XG4gIH1cblxuICB3cml0ZVZhbHVlKG9iajogYW55KTogdm9pZCB7XG4gIH1cblxuICByZWdpc3Rlck9uQ2hhbmdlKGZuOiBhbnkpOiB2b2lkIHtcbiAgICB0aGlzLm9uQ2hhbmdlID0gZm47XG4gIH1cbiAgcmVnaXN0ZXJPblRvdWNoZWQoZm46IGFueSk6IHZvaWQge1xuICAgIHRoaXMub25Ub3VjaCA9IGZuOyAgXG4gIH1cbiAgc2V0RGlzYWJsZWRTdGF0ZT8oaXNEaXNhYmxlZDogYm9vbGVhbik6IHZvaWQge1xuICB9XG5cbiAgbmdPbkluaXQoKXtcbiAgICB0aGlzLmNvbmNlbnRGb3JtID0gdGhpcy5mb3JtQnVpbGRlci5ncm91cCh7XG4gICAgICAnY29uY2VudCc6IFtmYWxzZV1cbiAgICB9KTtcblxuICAgIHRoaXMuY29uY2VudC52YWx1ZUNoYW5nZXMuc3Vic2NyaWJlKHZhbCA9PiB7XG4gICAgICAgIHRoaXMub25DaGFuZ2UodmFsKVxuICAgIH0pXG4gIH1cblxuICBnZXQgY29uY2VudCgpIHtcbiAgICByZXR1cm4gdGhpcy5jb25jZW50Rm9ybS5jb250cm9sc1snY29uY2VudCddO1xuICB9XG5cbiAgbmdBZnRlclZpZXdJbml0KCkge1xuICAgIGlmKHRoaXMuZGlzcGxheUFzTGFiZWwpe1xuICAgICAgaWYgKHRoaXMuZWxlbWVudFJlZi5uYXRpdmVFbGVtZW50LnF1ZXJ5U2VsZWN0b3IoJ2EnKSkge1xuICAgICAgICB0aGlzLmVsZW1lbnRSZWYubmF0aXZlRWxlbWVudFxuICAgICAgICAgIC5xdWVyeVNlbGVjdG9yKCdhJylcbiAgICAgICAgICAuYWRkRXZlbnRMaXN0ZW5lcihcbiAgICAgICAgICAgICdjbGljaycsXG4gICAgICAgICAgICB0aGlzLm9wZW5PdmVybGF5LmJpbmQodGhpcylcbiAgICAgICAgICApO1xuICAgICAgfVxuICAgIH1cbiAgICBpZih0aGlzLmxhYmVsV2l0aFBvcHVwKXtcbiAgICAgIGlmICh0aGlzLmVsZW1lbnRSZWYubmF0aXZlRWxlbWVudC5xdWVyeVNlbGVjdG9yKCdhJykpIHtcbiAgICAgICAgdGhpcy5lbGVtZW50UmVmLm5hdGl2ZUVsZW1lbnRcbiAgICAgICAgICAucXVlcnlTZWxlY3RvcignYScpXG4gICAgICAgICAgLmFkZEV2ZW50TGlzdGVuZXIoXG4gICAgICAgICAgICAnY2xpY2snLFxuICAgICAgICAgICAgdGhpcy5vcGVuUG9wdXAuYmluZCh0aGlzKVxuICAgICAgICAgICk7XG4gICAgICB9XG4gICAgfVxuICB9XG5cbiAgb3Blbk92ZXJsYXkoZXZlbnQpe1xuICAgIGlmKHRoaXMub3AxKXtcbiAgICAgIHRoaXMub3AxLnNob3coZXZlbnQpO1xuICAgIH1cbiAgfVxuXG4gIG9wZW5Qb3B1cChldmVudCl7XG4gICAgdGhpcy5zaG93UG9wdXAgPSB0cnVlO1xuICB9XG5cbn1cbiIsIlxyXG48cC1vdmVybGF5UGFuZWwgI29wMSBbYXBwZW5kVG9dPVwiJ2JvZHknXCIgW3N0eWxlXT1cInsnd2lkdGgnOiAnMjc5cHgnfVwiPlxyXG4gIDxuZy10ZW1wbGF0ZSBwVGVtcGxhdGU+XHJcbiAgICA8ZGl2IFtpbm5lckhUTUxdPVwib3ZlcmxheVRleHQgfCBkeW5hbWljVHJhbnNsYXRlOnBhcmFtXCIgY2xhc3M9XCJvdmVybGF5LWRlc2NcIiAqbmdJZj1cIm92ZXJsYXlUZXh0XCI+PC9kaXY+XHJcbiAgICA8bmctY29udGVudD48L25nLWNvbnRlbnQ+XHJcbiAgPC9uZy10ZW1wbGF0ZT5cclxuPC9wLW92ZXJsYXlQYW5lbD5cclxuXHJcbjxpb24tYnV0dG9uIGZpbGw9XCJvdXRsaW5lXCIgc2l6ZT1cInNtYWxsXCIgc2hhcGU9XCJyb3VuZFwiIGNsYXNzPVwic21hbGwtYnV0dG9uXCIgKm5nSWY9XCIhZGlzcGxheUFzTGFiZWwgJiYgIWxhYmVsV2l0aExpbmsgJiYgIWxhYmVsV2l0aFBvcHVwXCIgYXJpYS1sYWJlbD1cImluZm8gYnV0dG9uXCIgKGNsaWNrKT1cIm9wMS50b2dnbGUoJGV2ZW50KVwiPlxyXG4gIDxpb24taWNvbiBzbG90PVwiaWNvbi1vbmx5XCIgbmFtZT1cImluZm9ybWF0aW9uLW91dGxpbmVcIiBjbGFzcz1cImJ1dHRvbi1pY29uXCIgYXJpYS1oaWRkZW49XCJ0cnVlXCI+PC9pb24taWNvbj5cclxuPC9pb24tYnV0dG9uPlxyXG48ZGl2ICpuZ0lmPVwiZGlzcGxheUFzTGFiZWxcIiBbaW5uZXJIVE1MXT1cImRpc3BsYXlUZXh0IHwgZHluYW1pY1RyYW5zbGF0ZTpwYXJhbSB8IHRydXN0SHRtbFwiPjwvZGl2PlxyXG48ZGl2ICpuZ0lmPVwibGFiZWxXaXRoTGlua1wiIFtpbm5lckhUTUxdPVwiZGlzcGxheVRleHQgfCBkeW5hbWljVHJhbnNsYXRlOnBhcmFtIHwgdHJ1c3RIdG1sXCI+PC9kaXY+XHJcbjxkaXYgKm5nSWY9XCJsYWJlbFdpdGhQb3B1cFwiIFtpbm5lckhUTUxdPVwiZGlzcGxheVRleHQgfCBkeW5hbWljVHJhbnNsYXRlOnBhcmFtIHwgdHJ1c3RIdG1sXCI+PC9kaXY+XHJcblxyXG48cC1kaWFsb2cgW3Zpc2libGVdPVwic2hvd1BvcHVwXCIgW21vZGFsXT1cInRydWVcIiBhcHBlbmRUbz1cImJvZHlcIiBbYnJlYWtwb2ludHNdPVwieyc5NjBweCc6ICc0MHZ3JywgJzY0MHB4JzogJzEwMHZ3J31cIiBbc3R5bGVdPVwie3dpZHRoOiAnNTB2dyd9XCIgcG9zaXRpb249XCJ0b3BcIj5cclxuICA8ZGl2IFtpbm5lckhUTUxdPVwib3ZlcmxheVRleHQgfCBkeW5hbWljVHJhbnNsYXRlOnBhcmFtIHwgdHJ1c3RIdG1sXCIgKm5nSWY9XCJvdmVybGF5VGV4dFwiPjwvZGl2PlxyXG4gIDxuZy1jb250ZW50PjwvbmctY29udGVudD5cclxuICA8cC1mb290ZXI+XHJcbiAgICA8aW9uLWJ1dHRvbiBzaGFwZT1cInJvdW5kXCIgdHlwZT1cInJlc2V0XCIgKGNsaWNrKT1cInNob3dQb3B1cCA9IGZhbHNlXCIgY29sb3I9XCJzdWNjZXNzXCIgZmlsbD1cIm91dGxpbmVcIj5cclxuICAgICAgQ2xvc2VcclxuICAgIDwvaW9uLWJ1dHRvbj5cclxuICA8L3AtZm9vdGVyPlxyXG48L3AtZGlhbG9nPiJdfQ==
|
|
@@ -0,0 +1,136 @@
|
|
|
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 "../../services/login/login.service";
|
|
5
|
+
import * as i3 from "../../services/util/util.service";
|
|
6
|
+
import * as i4 from "@angular/common";
|
|
7
|
+
import * as i5 from "primeng/messages";
|
|
8
|
+
function PageComponent_div_6_h1_3_Template(rf, ctx) { if (rf & 1) {
|
|
9
|
+
i0.ɵɵelementStart(0, "h1");
|
|
10
|
+
i0.ɵɵtext(1);
|
|
11
|
+
i0.ɵɵelementEnd();
|
|
12
|
+
} if (rf & 2) {
|
|
13
|
+
const ctx_r2 = i0.ɵɵnextContext(2);
|
|
14
|
+
i0.ɵɵadvance(1);
|
|
15
|
+
i0.ɵɵtextInterpolate(ctx_r2.headingText);
|
|
16
|
+
} }
|
|
17
|
+
function PageComponent_div_6_div_4_Template(rf, ctx) { if (rf & 1) {
|
|
18
|
+
i0.ɵɵelementStart(0, "div", 11);
|
|
19
|
+
i0.ɵɵtext(1);
|
|
20
|
+
i0.ɵɵelementEnd();
|
|
21
|
+
} if (rf & 2) {
|
|
22
|
+
const ctx_r3 = i0.ɵɵnextContext(2);
|
|
23
|
+
i0.ɵɵadvance(1);
|
|
24
|
+
i0.ɵɵtextInterpolate(ctx_r3.detailText);
|
|
25
|
+
} }
|
|
26
|
+
function PageComponent_div_6_ion_button_5_Template(rf, ctx) { if (rf & 1) {
|
|
27
|
+
const _r6 = i0.ɵɵgetCurrentView();
|
|
28
|
+
i0.ɵɵelementStart(0, "ion-button", 12);
|
|
29
|
+
i0.ɵɵlistener("click", function PageComponent_div_6_ion_button_5_Template_ion_button_click_0_listener() { i0.ɵɵrestoreView(_r6); const ctx_r5 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r5.openHome()); });
|
|
30
|
+
i0.ɵɵelement(1, "ion-icon", 13);
|
|
31
|
+
i0.ɵɵtext(2, " Home ");
|
|
32
|
+
i0.ɵɵelementEnd();
|
|
33
|
+
} }
|
|
34
|
+
function PageComponent_div_6_Template(rf, ctx) { if (rf & 1) {
|
|
35
|
+
i0.ɵɵelementStart(0, "div", 6);
|
|
36
|
+
i0.ɵɵelement(1, "p-messages", 7)(2, "i");
|
|
37
|
+
i0.ɵɵtemplate(3, PageComponent_div_6_h1_3_Template, 2, 1, "h1", 8)(4, PageComponent_div_6_div_4_Template, 2, 1, "div", 9)(5, PageComponent_div_6_ion_button_5_Template, 3, 0, "ion-button", 10);
|
|
38
|
+
i0.ɵɵelementEnd();
|
|
39
|
+
} if (rf & 2) {
|
|
40
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
|
41
|
+
i0.ɵɵadvance(1);
|
|
42
|
+
i0.ɵɵproperty("value", ctx_r0.util.msgs);
|
|
43
|
+
i0.ɵɵadvance(1);
|
|
44
|
+
i0.ɵɵclassMap(ctx_r0.icon);
|
|
45
|
+
i0.ɵɵadvance(1);
|
|
46
|
+
i0.ɵɵproperty("ngIf", ctx_r0.headingText);
|
|
47
|
+
i0.ɵɵadvance(1);
|
|
48
|
+
i0.ɵɵproperty("ngIf", ctx_r0.detailText);
|
|
49
|
+
i0.ɵɵadvance(1);
|
|
50
|
+
i0.ɵɵproperty("ngIf", ctx_r0.homeButton);
|
|
51
|
+
} }
|
|
52
|
+
function PageComponent_div_7_Template(rf, ctx) { if (rf & 1) {
|
|
53
|
+
i0.ɵɵelementStart(0, "div", 14);
|
|
54
|
+
i0.ɵɵprojection(1);
|
|
55
|
+
i0.ɵɵelementEnd();
|
|
56
|
+
} }
|
|
57
|
+
const _c0 = ["*"];
|
|
58
|
+
export class PageComponent {
|
|
59
|
+
constructor(nav, ls, util) {
|
|
60
|
+
this.nav = nav;
|
|
61
|
+
this.ls = ls;
|
|
62
|
+
this.util = util;
|
|
63
|
+
this.homeButton = false;
|
|
64
|
+
this.hideCard = false;
|
|
65
|
+
}
|
|
66
|
+
ngOnInit() { }
|
|
67
|
+
openHome() {
|
|
68
|
+
if (this.ls.getUser()) {
|
|
69
|
+
if (this.ls.isClaimant()) {
|
|
70
|
+
this.util.openPageByContextRoot('cp', "welcome");
|
|
71
|
+
this.util.hideLoader();
|
|
72
|
+
}
|
|
73
|
+
else if (this.ls.isEmployer() || this.ls.isTpa()) {
|
|
74
|
+
//this.util.openPageByContextRoot('cp',"employer-dashboard");
|
|
75
|
+
this.util.openPageByContextRoot('ss', "welcome");
|
|
76
|
+
this.util.hideLoader();
|
|
77
|
+
}
|
|
78
|
+
else {
|
|
79
|
+
//this.util.openPageByContextRoot('cp',"csr-dashboard");
|
|
80
|
+
this.util.openPageByContextRoot('ss', "welcome");
|
|
81
|
+
this.util.hideLoader();
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
else {
|
|
85
|
+
this.nav.navigateRoot('/login');
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
static { this.ɵfac = function PageComponent_Factory(t) { return new (t || PageComponent)(i0.ɵɵdirectiveInject(i1.NavController), i0.ɵɵdirectiveInject(i2.LoginService), i0.ɵɵdirectiveInject(i3.UtilService)); }; }
|
|
89
|
+
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: PageComponent, selectors: [["app-page"]], inputs: { src: "src", style: "style", alt: "alt", icon: "icon", headingText: "headingText", detailText: "detailText", homeButton: "homeButton", hideCard: "hideCard" }, ngContentSelectors: _c0, decls: 8, vars: 6, consts: [[1, "page-body", "notfound-page"], [1, "page-type"], [3, "src", "alt"], ["size", "12", "size-xl", "6", "size-lg", "8", "size-md", "10", "size-sm", "12", "offset-lg", "3", "offset-md", "3", "offset-xl", "3"], ["class", "card page-panel", 4, "ngIf"], ["style", "margin: -13% auto 0 auto;", 4, "ngIf"], [1, "card", "page-panel"], [3, "value"], [4, "ngIf"], ["class", "page-detail", 4, "ngIf"], ["color", "dark", "shape", "round", "value", "Home", 3, "click", 4, "ngIf"], [1, "page-detail"], ["color", "dark", "shape", "round", "value", "Home", 3, "click"], ["name", "home", "slot", "start"], [2, "margin", "-13% auto 0 auto"]], template: function PageComponent_Template(rf, ctx) { if (rf & 1) {
|
|
90
|
+
i0.ɵɵprojectionDef();
|
|
91
|
+
i0.ɵɵelementStart(0, "div", 0)(1, "div", 1);
|
|
92
|
+
i0.ɵɵelement(2, "img", 2);
|
|
93
|
+
i0.ɵɵelementEnd();
|
|
94
|
+
i0.ɵɵelementStart(3, "ion-grid")(4, "ion-row")(5, "ion-col", 3);
|
|
95
|
+
i0.ɵɵtemplate(6, PageComponent_div_6_Template, 6, 6, "div", 4)(7, PageComponent_div_7_Template, 2, 0, "div", 5);
|
|
96
|
+
i0.ɵɵelementEnd()()()();
|
|
97
|
+
} if (rf & 2) {
|
|
98
|
+
i0.ɵɵstyleMap(ctx.style);
|
|
99
|
+
i0.ɵɵadvance(2);
|
|
100
|
+
i0.ɵɵproperty("src", ctx.src, i0.ɵɵsanitizeUrl)("alt", ctx.alt ? ctx.alt : "image");
|
|
101
|
+
i0.ɵɵadvance(4);
|
|
102
|
+
i0.ɵɵproperty("ngIf", !ctx.hideCard);
|
|
103
|
+
i0.ɵɵadvance(1);
|
|
104
|
+
i0.ɵɵproperty("ngIf", ctx.hideCard);
|
|
105
|
+
} }, dependencies: [i1.IonButton, i1.IonCol, i1.IonGrid, i1.IonIcon, i1.IonRow, i4.NgIf, i5.Messages], styles: [".page-body[_ngcontent-%COMP%]{height:auto}.page-body.notfound-page[_ngcontent-%COMP%] .page-type[_ngcontent-%COMP%]{background:var(--ion-color-primary)}.page-body[_ngcontent-%COMP%] .page-type[_ngcontent-%COMP%]{width:100%;height:50%;padding:50px 100px 100px;box-sizing:border-box;text-align:center}.page-type[_ngcontent-%COMP%] img[_ngcontent-%COMP%]{width:15%}@media (max-width: 576px){.page-type[_ngcontent-%COMP%] img[_ngcontent-%COMP%]{width:100%}}.page-body[_ngcontent-%COMP%] .page-panel[_ngcontent-%COMP%]{text-align:center;padding:35px;margin:-15% auto 0;z-index:100}.card[_ngcontent-%COMP%]{box-shadow:0 1px 3px #0003,0 1px 1px #00000024,0 2px 1px -1px #0000001f;-webkit-box-shadow:0 1px 3px 0 rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 2px 1px -1px rgba(0,0,0,.12);-moz-box-shadow:0 1px 3px 0 rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 2px 1px -1px rgba(0,0,0,.12);border-radius:2px;background:#fff;padding:1em;margin-bottom:1em;box-sizing:border-box}.page-body.notfound-page[_ngcontent-%COMP%] .page-panel[_ngcontent-%COMP%] i[_ngcontent-%COMP%]{color:var(--ion-color-dark)}.page-body[_ngcontent-%COMP%] .page-panel[_ngcontent-%COMP%] i[_ngcontent-%COMP%]{font-size:72px}.page-body[_ngcontent-%COMP%] .page-panel[_ngcontent-%COMP%] h1[_ngcontent-%COMP%]{font-size:36px;line-height:36px;color:#757575}.card[_ngcontent-%COMP%] h1[_ngcontent-%COMP%]{font-size:1.5em;font-weight:400;margin:1em 0}.page-body[_ngcontent-%COMP%] .page-panel[_ngcontent-%COMP%] .page-detail[_ngcontent-%COMP%]{margin:20px 0 100px;color:#757575}"] }); }
|
|
106
|
+
}
|
|
107
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(PageComponent, [{
|
|
108
|
+
type: Component,
|
|
109
|
+
args: [{ selector: 'app-page', template: "<div class=\"page-body notfound-page\" [style]=\"style\">\r\n \r\n<div class=\"page-type\"><img [src]=\"src\" [alt]=\"alt ? alt : 'image'\"></div>\r\n<ion-grid>\r\n <ion-row>\r\n <ion-col size=\"12\" size-xl=\"6\" size-lg=\"8\" size-md=\"10\" size-sm=\"12\" offset-lg=\"3\" offset-md=\"3\" offset-xl=\"3\">\r\n <div class=\"card page-panel\" *ngIf=\"!hideCard\">\r\n <p-messages [value]=\"util.msgs\"></p-messages>\r\n <i [class]=\"icon\"></i>\r\n <h1 *ngIf=\"headingText\">{{headingText}}</h1>\r\n <div class=\"page-detail\" *ngIf=\"detailText\">{{detailText}}</div>\r\n <ion-button color=\"dark\" shape=\"round\" (click)=\"openHome()\" *ngIf=\"homeButton\" value=\"Home\"> \r\n <ion-icon name=\"home\" slot=\"start\"></ion-icon>\r\n Home \r\n </ion-button>\r\n </div>\r\n <div *ngIf=\"hideCard\" style=\"margin: -13% auto 0 auto;\">\r\n <ng-content></ng-content>\r\n </div>\r\n </ion-col>\r\n </ion-row>\r\n</ion-grid>\r\n</div>", styles: [".page-body{height:auto}.page-body.notfound-page .page-type{background:var(--ion-color-primary)}.page-body .page-type{width:100%;height:50%;padding:50px 100px 100px;box-sizing:border-box;text-align:center}.page-type img{width:15%}@media (max-width: 576px){.page-type img{width:100%}}.page-body .page-panel{text-align:center;padding:35px;margin:-15% auto 0;z-index:100}.card{box-shadow:0 1px 3px #0003,0 1px 1px #00000024,0 2px 1px -1px #0000001f;-webkit-box-shadow:0 1px 3px 0 rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 2px 1px -1px rgba(0,0,0,.12);-moz-box-shadow:0 1px 3px 0 rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 2px 1px -1px rgba(0,0,0,.12);border-radius:2px;background:#fff;padding:1em;margin-bottom:1em;box-sizing:border-box}.page-body.notfound-page .page-panel i{color:var(--ion-color-dark)}.page-body .page-panel i{font-size:72px}.page-body .page-panel h1{font-size:36px;line-height:36px;color:#757575}.card h1{font-size:1.5em;font-weight:400;margin:1em 0}.page-body .page-panel .page-detail{margin:20px 0 100px;color:#757575}\n"] }]
|
|
110
|
+
}], () => [{ type: i1.NavController }, { type: i2.LoginService }, { type: i3.UtilService }], { src: [{
|
|
111
|
+
type: Input,
|
|
112
|
+
args: ['src']
|
|
113
|
+
}], style: [{
|
|
114
|
+
type: Input,
|
|
115
|
+
args: ['style']
|
|
116
|
+
}], alt: [{
|
|
117
|
+
type: Input,
|
|
118
|
+
args: ['alt']
|
|
119
|
+
}], icon: [{
|
|
120
|
+
type: Input,
|
|
121
|
+
args: ['icon']
|
|
122
|
+
}], headingText: [{
|
|
123
|
+
type: Input,
|
|
124
|
+
args: ['headingText']
|
|
125
|
+
}], detailText: [{
|
|
126
|
+
type: Input,
|
|
127
|
+
args: ['detailText']
|
|
128
|
+
}], homeButton: [{
|
|
129
|
+
type: Input,
|
|
130
|
+
args: ['homeButton']
|
|
131
|
+
}], hideCard: [{
|
|
132
|
+
type: Input,
|
|
133
|
+
args: ['hideCard']
|
|
134
|
+
}] }); })();
|
|
135
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(PageComponent, { className: "PageComponent", filePath: "lib\\components\\page\\page.component.ts", lineNumber: 11 }); })();
|
|
136
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFnZS5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9uZ3gtcmV1c2EtYXBwLWxpYi9zcmMvbGliL2NvbXBvbmVudHMvcGFnZS9wYWdlLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL25neC1yZXVzYS1hcHAtbGliL3NyYy9saWIvY29tcG9uZW50cy9wYWdlL3BhZ2UuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQVUsTUFBTSxlQUFlLENBQUM7Ozs7Ozs7O0lDU2pELDBCQUF3QjtJQUFBLFlBQWU7SUFBQSxpQkFBSzs7O0lBQXBCLGVBQWU7SUFBZix3Q0FBZTs7O0lBQ3ZDLCtCQUE0QztJQUFBLFlBQWM7SUFBQSxpQkFBTTs7O0lBQXBCLGVBQWM7SUFBZCx1Q0FBYzs7OztJQUMxRCxzQ0FBNEY7SUFBckQsNEtBQVMsZUFBQSxpQkFBVSxDQUFBLElBQUM7SUFDdkQsK0JBQThDO0lBQzlDLHNCQUNKO0lBQUEsaUJBQWE7OztJQVJiLDhCQUErQztJQUMvQyxnQ0FBNkMsUUFBQTtJQUU3QyxrRUFBNEMsdURBQUEsc0VBQUE7SUFNNUMsaUJBQU07OztJQVJNLGVBQW1CO0lBQW5CLHdDQUFtQjtJQUM1QixlQUFjO0lBQWQsMEJBQWM7SUFDWixlQUFpQjtJQUFqQix5Q0FBaUI7SUFDSSxlQUFnQjtJQUFoQix3Q0FBZ0I7SUFDbUIsZUFBZ0I7SUFBaEIsd0NBQWdCOzs7SUFLN0UsK0JBQXdEO0lBQ3hELGtCQUF5QjtJQUN6QixpQkFBTTs7O0FEUmQsTUFBTSxPQUFPLGFBQWE7SUFrQnhCLFlBQW9CLEdBQW1CLEVBQVUsRUFBaUIsRUFBUyxJQUFrQjtRQUF6RSxRQUFHLEdBQUgsR0FBRyxDQUFnQjtRQUFVLE9BQUUsR0FBRixFQUFFLENBQWU7UUFBUyxTQUFJLEdBQUosSUFBSSxDQUFjO1FBSnhFLGVBQVUsR0FBYSxLQUFLLENBQUM7UUFFL0IsYUFBUSxHQUFjLEtBQUssQ0FBQztJQUVrRCxDQUFDO0lBRWxHLFFBQVEsS0FBSSxDQUFDO0lBRWIsUUFBUTtRQUNOLElBQUcsSUFBSSxDQUFDLEVBQUUsQ0FBQyxPQUFPLEVBQUUsRUFBQztZQUNuQixJQUFHLElBQUksQ0FBQyxFQUFFLENBQUMsVUFBVSxFQUFFLEVBQUM7Z0JBQ3RCLElBQUksQ0FBQyxJQUFJLENBQUMscUJBQXFCLENBQUMsSUFBSSxFQUFDLFNBQVMsQ0FBQyxDQUFDO2dCQUNoRCxJQUFJLENBQUMsSUFBSSxDQUFDLFVBQVUsRUFBRSxDQUFDO2FBQ3hCO2lCQUFNLElBQUcsSUFBSSxDQUFDLEVBQUUsQ0FBQyxVQUFVLEVBQUUsSUFBSSxJQUFJLENBQUMsRUFBRSxDQUFDLEtBQUssRUFBRSxFQUFDO2dCQUNoRCw2REFBNkQ7Z0JBQzdELElBQUksQ0FBQyxJQUFJLENBQUMscUJBQXFCLENBQUMsSUFBSSxFQUFDLFNBQVMsQ0FBQyxDQUFDO2dCQUNoRCxJQUFJLENBQUMsSUFBSSxDQUFDLFVBQVUsRUFBRSxDQUFDO2FBQ3hCO2lCQUFNO2dCQUNMLHdEQUF3RDtnQkFDeEQsSUFBSSxDQUFDLElBQUksQ0FBQyxxQkFBcUIsQ0FBQyxJQUFJLEVBQUMsU0FBUyxDQUFDLENBQUM7Z0JBQ2hELElBQUksQ0FBQyxJQUFJLENBQUMsVUFBVSxFQUFFLENBQUM7YUFDeEI7U0FDRjthQUFJO1lBQ0gsSUFBSSxDQUFDLEdBQUcsQ0FBQyxZQUFZLENBQUMsUUFBUSxDQUFDLENBQUM7U0FDakM7SUFDSCxDQUFDOzhFQXZDVSxhQUFhO29FQUFiLGFBQWE7O1lDVjFCLDhCQUFxRCxhQUFBO1lBRTlCLHlCQUE2QztZQUFBLGlCQUFNO1lBQzFFLGdDQUFVLGNBQUEsaUJBQUE7WUFHRiw4REFTTSxpREFBQTtZQUlWLGlCQUFVLEVBQUEsRUFBQSxFQUFBOztZQW5CdUIsd0JBQWU7WUFFeEIsZUFBVztZQUFYLCtDQUFXLG9DQUFBO1lBSUQsZUFBZTtZQUFmLG9DQUFlO1lBVXZDLGVBQWM7WUFBZCxtQ0FBYzs7O2lGRE5mLGFBQWE7Y0FMekIsU0FBUzsyQkFDRSxVQUFVO21HQU1OLEdBQUc7a0JBQWhCLEtBQUs7bUJBQUMsS0FBSztZQUVJLEtBQUs7a0JBQXBCLEtBQUs7bUJBQUMsT0FBTztZQUVBLEdBQUc7a0JBQWhCLEtBQUs7bUJBQUMsS0FBSztZQUVHLElBQUk7a0JBQWxCLEtBQUs7bUJBQUMsTUFBTTtZQUVTLFdBQVc7a0JBQWhDLEtBQUs7bUJBQUMsYUFBYTtZQUVDLFVBQVU7a0JBQTlCLEtBQUs7bUJBQUMsWUFBWTtZQUVFLFVBQVU7a0JBQTlCLEtBQUs7bUJBQUMsWUFBWTtZQUVBLFFBQVE7a0JBQTFCLEtBQUs7bUJBQUMsVUFBVTs7a0ZBaEJOLGFBQWEiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIElucHV0LCBPbkluaXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IE5hdkNvbnRyb2xsZXIgfSBmcm9tICdAaW9uaWMvYW5ndWxhcic7XG5pbXBvcnQgeyBMb2dpblNlcnZpY2UgfSBmcm9tICcuLi8uLi9zZXJ2aWNlcy9sb2dpbi9sb2dpbi5zZXJ2aWNlJztcbmltcG9ydCB7IFV0aWxTZXJ2aWNlIH0gZnJvbSAnLi4vLi4vc2VydmljZXMvdXRpbC91dGlsLnNlcnZpY2UnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdhcHAtcGFnZScsXG4gIHRlbXBsYXRlVXJsOiAnLi9wYWdlLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vcGFnZS5jb21wb25lbnQuY3NzJ11cbn0pXG5leHBvcnQgY2xhc3MgUGFnZUNvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XG5cbiAgQElucHV0KCdzcmMnKSBzcmMgOiBzdHJpbmc7XG5cbiAgQElucHV0KCdzdHlsZScpIHN0eWxlIDogc3RyaW5nO1xuXG4gIEBJbnB1dCgnYWx0JykgYWx0IDogc3RyaW5nO1xuICBcbiAgQElucHV0KCdpY29uJykgaWNvbiA6IHN0cmluZztcblxuICBASW5wdXQoJ2hlYWRpbmdUZXh0JykgaGVhZGluZ1RleHQgOiBzdHJpbmc7XG5cbiAgQElucHV0KCdkZXRhaWxUZXh0JykgZGV0YWlsVGV4dCA6IHN0cmluZztcblxuICBASW5wdXQoJ2hvbWVCdXR0b24nKSBob21lQnV0dG9uIDogYm9vbGVhbiA9IGZhbHNlO1xuXG4gIEBJbnB1dCgnaGlkZUNhcmQnKSBoaWRlQ2FyZCAgOiBib29sZWFuID0gZmFsc2U7XG5cbiAgY29uc3RydWN0b3IocHJpdmF0ZSBuYXYgOiBOYXZDb250cm9sbGVyLCBwcml2YXRlIGxzIDogTG9naW5TZXJ2aWNlLCBwdWJsaWMgdXRpbCA6IFV0aWxTZXJ2aWNlKSB7IH1cblxuICBuZ09uSW5pdCgpIHt9XG5cbiAgb3BlbkhvbWUoKXtcbiAgICBpZih0aGlzLmxzLmdldFVzZXIoKSl7XG4gICAgICBpZih0aGlzLmxzLmlzQ2xhaW1hbnQoKSl7XG4gICAgICAgIHRoaXMudXRpbC5vcGVuUGFnZUJ5Q29udGV4dFJvb3QoJ2NwJyxcIndlbGNvbWVcIik7XG4gICAgICAgIHRoaXMudXRpbC5oaWRlTG9hZGVyKCk7XG4gICAgICB9IGVsc2UgaWYodGhpcy5scy5pc0VtcGxveWVyKCkgfHwgdGhpcy5scy5pc1RwYSgpKXtcbiAgICAgICAgLy90aGlzLnV0aWwub3BlblBhZ2VCeUNvbnRleHRSb290KCdjcCcsXCJlbXBsb3llci1kYXNoYm9hcmRcIik7XG4gICAgICAgIHRoaXMudXRpbC5vcGVuUGFnZUJ5Q29udGV4dFJvb3QoJ3NzJyxcIndlbGNvbWVcIik7XG4gICAgICAgIHRoaXMudXRpbC5oaWRlTG9hZGVyKCk7XG4gICAgICB9IGVsc2Uge1xuICAgICAgICAvL3RoaXMudXRpbC5vcGVuUGFnZUJ5Q29udGV4dFJvb3QoJ2NwJyxcImNzci1kYXNoYm9hcmRcIik7XG4gICAgICAgIHRoaXMudXRpbC5vcGVuUGFnZUJ5Q29udGV4dFJvb3QoJ3NzJyxcIndlbGNvbWVcIik7XG4gICAgICAgIHRoaXMudXRpbC5oaWRlTG9hZGVyKCk7XG4gICAgICB9XG4gICAgfWVsc2V7XG4gICAgICB0aGlzLm5hdi5uYXZpZ2F0ZVJvb3QoJy9sb2dpbicpO1xuICAgIH1cbiAgfVxuXG59XG4iLCI8ZGl2IGNsYXNzPVwicGFnZS1ib2R5IG5vdGZvdW5kLXBhZ2VcIiBbc3R5bGVdPVwic3R5bGVcIj5cclxuICBcclxuPGRpdiBjbGFzcz1cInBhZ2UtdHlwZVwiPjxpbWcgW3NyY109XCJzcmNcIiBbYWx0XT1cImFsdCA/IGFsdCA6ICdpbWFnZSdcIj48L2Rpdj5cclxuPGlvbi1ncmlkPlxyXG4gICAgPGlvbi1yb3c+XHJcbiAgICA8aW9uLWNvbCBzaXplPVwiMTJcIiBzaXplLXhsPVwiNlwiIHNpemUtbGc9XCI4XCIgc2l6ZS1tZD1cIjEwXCIgc2l6ZS1zbT1cIjEyXCIgb2Zmc2V0LWxnPVwiM1wiIG9mZnNldC1tZD1cIjNcIiBvZmZzZXQteGw9XCIzXCI+XHJcbiAgICAgICAgPGRpdiBjbGFzcz1cImNhcmQgcGFnZS1wYW5lbFwiICpuZ0lmPVwiIWhpZGVDYXJkXCI+XHJcbiAgICAgICAgPHAtbWVzc2FnZXMgW3ZhbHVlXT1cInV0aWwubXNnc1wiPjwvcC1tZXNzYWdlcz5cclxuICAgICAgICA8aSBbY2xhc3NdPVwiaWNvblwiPjwvaT5cclxuICAgICAgICA8aDEgKm5nSWY9XCJoZWFkaW5nVGV4dFwiPnt7aGVhZGluZ1RleHR9fTwvaDE+XHJcbiAgICAgICAgPGRpdiBjbGFzcz1cInBhZ2UtZGV0YWlsXCIgKm5nSWY9XCJkZXRhaWxUZXh0XCI+e3tkZXRhaWxUZXh0fX08L2Rpdj5cclxuICAgICAgICA8aW9uLWJ1dHRvbiBjb2xvcj1cImRhcmtcIiBzaGFwZT1cInJvdW5kXCIgKGNsaWNrKT1cIm9wZW5Ib21lKClcIiAqbmdJZj1cImhvbWVCdXR0b25cIiB2YWx1ZT1cIkhvbWVcIj4gXHJcbiAgICAgICAgICAgIDxpb24taWNvbiBuYW1lPVwiaG9tZVwiIHNsb3Q9XCJzdGFydFwiPjwvaW9uLWljb24+XHJcbiAgICAgICAgICAgIEhvbWUgXHJcbiAgICAgICAgPC9pb24tYnV0dG9uPlxyXG4gICAgICAgIDwvZGl2PlxyXG4gICAgICAgIDxkaXYgKm5nSWY9XCJoaWRlQ2FyZFwiIHN0eWxlPVwibWFyZ2luOiAtMTMlIGF1dG8gMCBhdXRvO1wiPlxyXG4gICAgICAgIDxuZy1jb250ZW50PjwvbmctY29udGVudD5cclxuICAgICAgICA8L2Rpdj5cclxuICAgIDwvaW9uLWNvbD5cclxuICAgIDwvaW9uLXJvdz5cclxuPC9pb24tZ3JpZD5cclxuPC9kaXY+Il19
|