@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
package/esm2022/lib/components/questionnaire/render-questionnaire/render-questionnaire.page.mjs
ADDED
|
@@ -0,0 +1,282 @@
|
|
|
1
|
+
import { Component, EventEmitter, Input, Output, ViewChild, ViewEncapsulation } from '@angular/core';
|
|
2
|
+
import { BehaviorSubject } from 'rxjs';
|
|
3
|
+
import { BasePage } from '../../../pages/BasePage';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
import * as i1 from "./../question.service";
|
|
6
|
+
import * as i2 from "../../../services/util/util.service";
|
|
7
|
+
import * as i3 from "../../../services/logger/logger.service";
|
|
8
|
+
import * as i4 from "../../../services/questionnaire/questionnaire.service";
|
|
9
|
+
import * as i5 from "../../../services/login/login.service";
|
|
10
|
+
import * as i6 from "../../../services/questionnaire/validation.service";
|
|
11
|
+
import * as i7 from "@angular/router";
|
|
12
|
+
import * as i8 from "@ionic/angular";
|
|
13
|
+
import * as i9 from "@angular/common";
|
|
14
|
+
import * as i10 from "primeng/dialog";
|
|
15
|
+
import * as i11 from "primeng/blockui";
|
|
16
|
+
import * as i12 from "../dynamic-form.component";
|
|
17
|
+
const _c0 = ["questionnaire"];
|
|
18
|
+
function RenderQuestionnairePage_div_3_Template(rf, ctx) { if (rf & 1) {
|
|
19
|
+
i0.ɵɵelementStart(0, "div", 4);
|
|
20
|
+
i0.ɵɵelement(1, "ion-spinner", 5);
|
|
21
|
+
i0.ɵɵelementEnd();
|
|
22
|
+
} }
|
|
23
|
+
function RenderQuestionnairePage_ng_container_4_div_2_Template(rf, ctx) { if (rf & 1) {
|
|
24
|
+
i0.ɵɵelementStart(0, "div", 4);
|
|
25
|
+
i0.ɵɵelement(1, "ion-spinner", 5);
|
|
26
|
+
i0.ɵɵelementEnd();
|
|
27
|
+
} }
|
|
28
|
+
function RenderQuestionnairePage_ng_container_4_div_3_Template(rf, ctx) { if (rf & 1) {
|
|
29
|
+
const _r6 = i0.ɵɵgetCurrentView();
|
|
30
|
+
i0.ɵɵelementStart(0, "div")(1, "app-dynamic-form", 7);
|
|
31
|
+
i0.ɵɵlistener("modelCancel", function RenderQuestionnairePage_ng_container_4_div_3_Template_app_dynamic_form_modelCancel_1_listener($event) { i0.ɵɵrestoreView(_r6); const ctx_r5 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r5.onModelCancel($event)); })("onComplete", function RenderQuestionnairePage_ng_container_4_div_3_Template_app_dynamic_form_onComplete_1_listener($event) { i0.ɵɵrestoreView(_r6); const ctx_r7 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r7.complete($event)); })("onError", function RenderQuestionnairePage_ng_container_4_div_3_Template_app_dynamic_form_onError_1_listener($event) { i0.ɵɵrestoreView(_r6); const ctx_r8 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r8.handleError($event)); });
|
|
32
|
+
i0.ɵɵpipe(2, "async");
|
|
33
|
+
i0.ɵɵpipe(3, "async");
|
|
34
|
+
i0.ɵɵelementEnd()();
|
|
35
|
+
} if (rf & 2) {
|
|
36
|
+
const ctx_r4 = i0.ɵɵnextContext(2);
|
|
37
|
+
i0.ɵɵadvance(1);
|
|
38
|
+
i0.ɵɵproperty("questions", i0.ɵɵpipeBind1(2, 14, ctx_r4.questions$))("forScreenQuestionnaire", i0.ɵɵpipeBind1(3, 16, ctx_r4.forScreenQuestionnaireBs))("backButtonPage", ctx_r4.backButtonPage)("pageType", ctx_r4.pageType)("nextButtonPage", ctx_r4.nextButtonPage)("data", ctx_r4.data)("autoSave", ctx_r4.autoSave)("queryModel", ctx_r4.queryModel)("hideFooter", ctx_r4.hideFooter)("dynamicParam", ctx_r4.dynamicParam)("formData", ctx_r4.formData)("formReadOnly", ctx_r4.readonly)("multiMode", ctx_r4.multiMode)("questionNumber", ctx_r4.questionNumber);
|
|
39
|
+
} }
|
|
40
|
+
function RenderQuestionnairePage_ng_container_4_Template(rf, ctx) { if (rf & 1) {
|
|
41
|
+
i0.ɵɵelementContainerStart(0);
|
|
42
|
+
i0.ɵɵelementStart(1, "p-dialog", 6);
|
|
43
|
+
i0.ɵɵtemplate(2, RenderQuestionnairePage_ng_container_4_div_2_Template, 2, 0, "div", 2)(3, RenderQuestionnairePage_ng_container_4_div_3_Template, 4, 18, "div", 3);
|
|
44
|
+
i0.ɵɵelementEnd();
|
|
45
|
+
i0.ɵɵelementContainerEnd();
|
|
46
|
+
} if (rf & 2) {
|
|
47
|
+
const ctx_r1 = i0.ɵɵnextContext();
|
|
48
|
+
i0.ɵɵadvance(1);
|
|
49
|
+
i0.ɵɵproperty("showHeader", false);
|
|
50
|
+
i0.ɵɵadvance(1);
|
|
51
|
+
i0.ɵɵproperty("ngIf", ctx_r1.showLoaderTheme);
|
|
52
|
+
i0.ɵɵadvance(1);
|
|
53
|
+
i0.ɵɵproperty("ngIf", !ctx_r1.showLoaderTheme && ctx_r1.questions$.getValue());
|
|
54
|
+
} }
|
|
55
|
+
function RenderQuestionnairePage_ng_container_5_div_1_Template(rf, ctx) { if (rf & 1) {
|
|
56
|
+
const _r12 = i0.ɵɵgetCurrentView();
|
|
57
|
+
i0.ɵɵelementStart(0, "div")(1, "app-dynamic-form", 8, 9);
|
|
58
|
+
i0.ɵɵlistener("modelCancel", function RenderQuestionnairePage_ng_container_5_div_1_Template_app_dynamic_form_modelCancel_1_listener($event) { i0.ɵɵrestoreView(_r12); const ctx_r11 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r11.onModelCancel($event)); })("onComplete", function RenderQuestionnairePage_ng_container_5_div_1_Template_app_dynamic_form_onComplete_1_listener($event) { i0.ɵɵrestoreView(_r12); const ctx_r13 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r13.complete($event)); })("onError", function RenderQuestionnairePage_ng_container_5_div_1_Template_app_dynamic_form_onError_1_listener($event) { i0.ɵɵrestoreView(_r12); const ctx_r14 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r14.handleError($event)); });
|
|
59
|
+
i0.ɵɵpipe(3, "async");
|
|
60
|
+
i0.ɵɵpipe(4, "async");
|
|
61
|
+
i0.ɵɵpipe(5, "async");
|
|
62
|
+
i0.ɵɵelementEnd()();
|
|
63
|
+
} if (rf & 2) {
|
|
64
|
+
const ctx_r9 = i0.ɵɵnextContext(2);
|
|
65
|
+
i0.ɵɵadvance(1);
|
|
66
|
+
i0.ɵɵproperty("questions", i0.ɵɵpipeBind1(3, 27, ctx_r9.questions$))("forScreenQuestionnaire", i0.ɵɵpipeBind1(4, 29, ctx_r9.forScreenQuestionnaireBs))("backButtonPage", ctx_r9.backButtonPage)("pageType", ctx_r9.pageType)("nextButtonPage", ctx_r9.nextButtonPage)("formData", ctx_r9.loaderModel ? ctx_r9.loaderModel.data : ctx_r9.formData)("readOnlyFields", ctx_r9.loaderModel ? ctx_r9.loaderModel.disableControlNames : ctx_r9.readOnlyFields)("autoSave", ctx_r9.autoSave)("queryModel", ctx_r9.queryModel)("hideFooter", ctx_r9.hideFooter)("dynamicParam", ctx_r9.dynamicParam)("sizeXs", ctx_r9.sizeXs)("sizeSm", ctx_r9.sizeSm)("sizeMd", ctx_r9.sizeMd)("sizeLg", ctx_r9.sizeLg)("sizeXl", ctx_r9.sizeXl)("offsetXs", ctx_r9.offsetXs)("offsetSm", ctx_r9.offsetSm)("offsetMd", ctx_r9.offsetMd)("offsetLg", ctx_r9.offsetLg)("offsetXl", ctx_r9.offsetXl)("mfaRequired", ctx_r9.mfaRequired)("formReadOnly", ctx_r9.readonly)("multiMode", ctx_r9.multiMode)("questionNumber", ctx_r9.questionNumber)("loaderService", ctx_r9.loaderService)("isEnableBackButton", i0.ɵɵpipeBind1(5, 31, ctx_r9.enableBackButtonBs));
|
|
67
|
+
} }
|
|
68
|
+
function RenderQuestionnairePage_ng_container_5_Template(rf, ctx) { if (rf & 1) {
|
|
69
|
+
i0.ɵɵelementContainerStart(0);
|
|
70
|
+
i0.ɵɵtemplate(1, RenderQuestionnairePage_ng_container_5_div_1_Template, 6, 33, "div", 3);
|
|
71
|
+
i0.ɵɵelementContainerEnd();
|
|
72
|
+
} if (rf & 2) {
|
|
73
|
+
const ctx_r2 = i0.ɵɵnextContext();
|
|
74
|
+
i0.ɵɵadvance(1);
|
|
75
|
+
i0.ɵɵproperty("ngIf", !ctx_r2.showLoaderTheme && ctx_r2.questions$.getValue());
|
|
76
|
+
} }
|
|
77
|
+
export class RenderQuestionnairePage extends BasePage {
|
|
78
|
+
get invalid() {
|
|
79
|
+
return this.questionnaire.invalid;
|
|
80
|
+
}
|
|
81
|
+
constructor(service, util, logger, questionnaireService, ls, validationService, activatedRoute) {
|
|
82
|
+
super();
|
|
83
|
+
this.service = service;
|
|
84
|
+
this.util = util;
|
|
85
|
+
this.logger = logger;
|
|
86
|
+
this.questionnaireService = questionnaireService;
|
|
87
|
+
this.ls = ls;
|
|
88
|
+
this.validationService = validationService;
|
|
89
|
+
this.activatedRoute = activatedRoute;
|
|
90
|
+
this.questions$ = new BehaviorSubject(null);
|
|
91
|
+
this.forScreenQuestionnaireBs = new BehaviorSubject(null);
|
|
92
|
+
this.enableBackButtonBs = new BehaviorSubject(null);
|
|
93
|
+
this.showLoaderTheme = false;
|
|
94
|
+
this.calledLoaderService = false;
|
|
95
|
+
this.blockUi = false;
|
|
96
|
+
this.autoSave = true;
|
|
97
|
+
this.mfaRequired = false;
|
|
98
|
+
this.modelCancel = new EventEmitter();
|
|
99
|
+
this.onComplete = new EventEmitter();
|
|
100
|
+
this.onError = new EventEmitter();
|
|
101
|
+
this.onLoadComplete = new EventEmitter();
|
|
102
|
+
this.hideHeader = false;
|
|
103
|
+
this.hideFooter = false;
|
|
104
|
+
this.questionNumber = null;
|
|
105
|
+
this.readonly = false;
|
|
106
|
+
this.multiMode = false;
|
|
107
|
+
this.identifier = "";
|
|
108
|
+
this.ssn = "";
|
|
109
|
+
}
|
|
110
|
+
ngOnChanges(changes) {
|
|
111
|
+
if (changes.readOnlyFields?.currentValue) {
|
|
112
|
+
this.readOnlyFields = changes.readOnlyFields.currentValue;
|
|
113
|
+
}
|
|
114
|
+
else if (changes.readOnlyFields?.previousValue && changes.readOnlyFields.currentValue == null) {
|
|
115
|
+
this.readOnlyFields = changes.readOnlyFields.currentValue;
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
complete(event) {
|
|
119
|
+
this.onComplete.emit(event);
|
|
120
|
+
}
|
|
121
|
+
ngOnInit() {
|
|
122
|
+
let strKey = [];
|
|
123
|
+
this.activatedRoute.queryParamMap.subscribe(params => {
|
|
124
|
+
strKey = [] = params.keys;
|
|
125
|
+
this.identifier = params.get('identifier');
|
|
126
|
+
});
|
|
127
|
+
this.setupQeLoader();
|
|
128
|
+
}
|
|
129
|
+
setupQeLoader() {
|
|
130
|
+
if (this.queryModel && this.pageType == 'POPUP') {
|
|
131
|
+
this.loadQuestionnaire(this.queryModel);
|
|
132
|
+
}
|
|
133
|
+
else if (this.queryModel && !this.autoSave) {
|
|
134
|
+
this.loadQuestionnaire(this.queryModel);
|
|
135
|
+
}
|
|
136
|
+
else {
|
|
137
|
+
this.service.searchBs.next(this.queryModel);
|
|
138
|
+
this.loadQuestionnaire(this.queryModel);
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
loadQuestionnaire(queryModel) {
|
|
142
|
+
this.showLoaderTheme = true;
|
|
143
|
+
if (queryModel.isScreenQuestionnaire) {
|
|
144
|
+
queryModel.uuid = this.identifier;
|
|
145
|
+
}
|
|
146
|
+
let subscription = queryModel.isScreenQuestionnaire
|
|
147
|
+
? this.service.getScreenQuestions(queryModel)
|
|
148
|
+
: this.service.getQuestions(queryModel);
|
|
149
|
+
subscription.subscribe(res => {
|
|
150
|
+
if (res['responseJson'] && Object.keys(res['responseJson']).length > 0) {
|
|
151
|
+
this.formData = res['responseJson'];
|
|
152
|
+
}
|
|
153
|
+
this.questions$.next([res['questionnaireJson']]);
|
|
154
|
+
this.forScreenQuestionnaireBs.next(queryModel.isScreenQuestionnaire);
|
|
155
|
+
this.enableBackButtonBs.next(res['enableBackButton']);
|
|
156
|
+
this.logger.debug(' Render Questionnaire Page ', res['questionnaireJson']);
|
|
157
|
+
this.showLoaderTheme = false;
|
|
158
|
+
localStorage.setItem("flowKey", res['questionnaireId']);
|
|
159
|
+
console.log(localStorage.getItem("flowKey"));
|
|
160
|
+
if (localStorage.getItem("flowKey") == '345') {
|
|
161
|
+
localStorage.setItem('disableFieldsOnSignup', 'true');
|
|
162
|
+
}
|
|
163
|
+
else {
|
|
164
|
+
localStorage.setItem('disableFieldsOnSignup', 'false');
|
|
165
|
+
}
|
|
166
|
+
this.onLoadComplete.emit(true);
|
|
167
|
+
}, err => {
|
|
168
|
+
this.showLoaderTheme = false;
|
|
169
|
+
this.util.errorHandler(err);
|
|
170
|
+
this.logger.error('Render Questionnaire Page Error', err);
|
|
171
|
+
this.onLoadComplete.emit(false);
|
|
172
|
+
});
|
|
173
|
+
}
|
|
174
|
+
onModelCancel(cancel) {
|
|
175
|
+
this.modelCancel.emit(cancel);
|
|
176
|
+
}
|
|
177
|
+
submit() {
|
|
178
|
+
this.questionnaire.complete();
|
|
179
|
+
}
|
|
180
|
+
getDirtyItems() {
|
|
181
|
+
return this.questionnaire.getDirtyItems();
|
|
182
|
+
}
|
|
183
|
+
getDirtyItemsWithValues() {
|
|
184
|
+
return this.questionnaire.getDirtyItemsWithValues();
|
|
185
|
+
}
|
|
186
|
+
paymentDetailsChangeError() {
|
|
187
|
+
return this.questionnaire.paymentDetailsChangeError();
|
|
188
|
+
}
|
|
189
|
+
handleError(error) {
|
|
190
|
+
this.onError.emit(error);
|
|
191
|
+
}
|
|
192
|
+
static { this.ɵfac = function RenderQuestionnairePage_Factory(t) { return new (t || RenderQuestionnairePage)(i0.ɵɵdirectiveInject(i1.QuestionService), i0.ɵɵdirectiveInject(i2.UtilService), i0.ɵɵdirectiveInject(i3.LoggerService), i0.ɵɵdirectiveInject(i4.QuestionnaireService), i0.ɵɵdirectiveInject(i5.LoginService), i0.ɵɵdirectiveInject(i6.ValidationService), i0.ɵɵdirectiveInject(i7.ActivatedRoute)); }; }
|
|
193
|
+
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: RenderQuestionnairePage, selectors: [["app-questionnaire"]], viewQuery: function RenderQuestionnairePage_Query(rf, ctx) { if (rf & 1) {
|
|
194
|
+
i0.ɵɵviewQuery(_c0, 5);
|
|
195
|
+
} if (rf & 2) {
|
|
196
|
+
let _t;
|
|
197
|
+
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.questionnaire = _t.first);
|
|
198
|
+
} }, inputs: { autoSave: "autoSave", mfaRequired: "mfaRequired", backButtonPage: "backButtonPage", nextButtonPage: "nextButtonPage", pageType: "pageType", queryModel: "queryModel", loaderService: "loaderService", data: "data", formData: "formData", dynamicParam: "dynamicParam", hideHeader: "hideHeader", hideFooter: "hideFooter", questionNumber: "questionNumber", sizeXs: "sizeXs", sizeSm: "sizeSm", sizeMd: "sizeMd", sizeLg: "sizeLg", sizeXl: "sizeXl", offsetXs: "offsetXs", offsetSm: "offsetSm", offsetMd: "offsetMd", offsetLg: "offsetLg", offsetXl: "offsetXl", readonly: "readonly", multiMode: "multiMode", readOnlyFields: "readOnlyFields" }, outputs: { modelCancel: "modelCancel", onComplete: "onComplete", onError: "onError", onLoadComplete: "onLoadComplete" }, features: [i0.ɵɵInheritDefinitionFeature, i0.ɵɵNgOnChangesFeature], decls: 6, vars: 4, consts: [[3, "blocked"], ["name", "crescent"], ["class", "ion-text-center", 4, "ngIf"], [4, "ngIf"], [1, "ion-text-center"], ["name", "dots"], ["visible", "true", "appendTo", "body", "modal", "true", 3, "showHeader"], [3, "questions", "forScreenQuestionnaire", "backButtonPage", "pageType", "nextButtonPage", "data", "autoSave", "queryModel", "hideFooter", "dynamicParam", "formData", "formReadOnly", "multiMode", "questionNumber", "modelCancel", "onComplete", "onError"], [3, "questions", "forScreenQuestionnaire", "backButtonPage", "pageType", "nextButtonPage", "formData", "readOnlyFields", "autoSave", "queryModel", "hideFooter", "dynamicParam", "sizeXs", "sizeSm", "sizeMd", "sizeLg", "sizeXl", "offsetXs", "offsetSm", "offsetMd", "offsetLg", "offsetXl", "mfaRequired", "formReadOnly", "multiMode", "questionNumber", "loaderService", "isEnableBackButton", "modelCancel", "onComplete", "onError"], ["questionnaire", ""]], template: function RenderQuestionnairePage_Template(rf, ctx) { if (rf & 1) {
|
|
199
|
+
i0.ɵɵelementStart(0, "p-blockUI", 0);
|
|
200
|
+
i0.ɵɵelement(1, "ion-spinner", 1);
|
|
201
|
+
i0.ɵɵtext(2, " Loading...\n");
|
|
202
|
+
i0.ɵɵelementEnd();
|
|
203
|
+
i0.ɵɵtemplate(3, RenderQuestionnairePage_div_3_Template, 2, 0, "div", 2)(4, RenderQuestionnairePage_ng_container_4_Template, 4, 3, "ng-container", 3)(5, RenderQuestionnairePage_ng_container_5_Template, 2, 1, "ng-container", 3);
|
|
204
|
+
} if (rf & 2) {
|
|
205
|
+
i0.ɵɵproperty("blocked", ctx.blockUi);
|
|
206
|
+
i0.ɵɵadvance(3);
|
|
207
|
+
i0.ɵɵproperty("ngIf", ctx.showLoaderTheme);
|
|
208
|
+
i0.ɵɵadvance(1);
|
|
209
|
+
i0.ɵɵproperty("ngIf", ctx.pageType === "POPUP");
|
|
210
|
+
i0.ɵɵadvance(1);
|
|
211
|
+
i0.ɵɵproperty("ngIf", ctx.pageType != "POPUP");
|
|
212
|
+
} }, dependencies: [i8.IonSpinner, i9.NgIf, i10.Dialog, i11.BlockUI, i12.DynamicFormComponent, i9.AsyncPipe], styles: [":host ::ng-deep form{counter-reset:section 0}:host ::ng-deep label:before{counter-increment:section 1;content:counter(section) \". \"}:host ::ng-deep .p-col{flex-grow:1;flex-basis:0;padding:0rem}:host ::ng-deep .p-button.p-button-icon-only{width:3rem;padding:0rem}:host ::ng-deep .p-grid{margin-right:1em;margin-left:0;margin-top:0;grid-gap:10px;flex-wrap:nowrap}:host ::ng-deep .field{margin-bottom:1px;margin-top:0}:host ::ng-deep .p-md-offset-1{margin-left:3.333333%}:host ::ng-deep .p-autocomplete-panel{width:400px!important}:host ::ng-deep ion-button{text-transform:none}:host ::ng-deep .flex-container{display:inline-flex;width:-moz-fit-content;width:fit-content}:host ::ng-deep .flex-child:first-child{margin-top:3px}:host ::ng-deep .p-button.p-button-icon-only.p-button-rounded{border-radius:50%;height:2rem}:host ::ng-deep .p-autocomplete-dd .p-autocomplete-input{flex:1 1 auto}:host ::ng-deep p-selectbutton.ng-dirty.ng-invalid>.p-selectbutton>.p-button{border:.5px solid red!important}:host ::ng-deep .p-calendar .p-inputtext{width:100%!important}.p-autocomplete-panel{width:-moz-fit-content!important;width:fit-content!important}ion-button{text-transform:none}h5{font-size:22px!important}.mat-error{color:#b00020!important}\n"], encapsulation: 2 }); }
|
|
213
|
+
}
|
|
214
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(RenderQuestionnairePage, [{
|
|
215
|
+
type: Component,
|
|
216
|
+
args: [{ encapsulation: ViewEncapsulation.None, selector: 'app-questionnaire', template: "<p-blockUI [blocked]=\"blockUi\">\r\n <ion-spinner name=\"crescent\"></ion-spinner>\r\n Loading...\r\n</p-blockUI>\r\n<div *ngIf=\"showLoaderTheme\" class=\"ion-text-center\">\r\n <ion-spinner name=\"dots\"></ion-spinner>\r\n</div>\r\n<ng-container *ngIf=\"pageType==='POPUP'\">\r\n\r\n <p-dialog visible=\"true\" appendTo=\"body\" modal=\"true\" [showHeader]=\"false\">\r\n <div *ngIf=\"showLoaderTheme\" class=\"ion-text-center\">\r\n <ion-spinner name=\"dots\"></ion-spinner>\r\n </div>\r\n <div *ngIf=\"!showLoaderTheme && questions$.getValue()\">\r\n <app-dynamic-form [questions]=\"questions$ | async\"\r\n [forScreenQuestionnaire]=\"forScreenQuestionnaireBs | async\" [backButtonPage]=\"backButtonPage\"\r\n [pageType]=\"pageType\" [nextButtonPage]=\"nextButtonPage\" (modelCancel)=\"onModelCancel($event)\"\r\n (onComplete)=\"complete($event)\" [data]=\"data\" [autoSave]=\"autoSave\" [queryModel]=\"queryModel\"\r\n [hideFooter]=\"hideFooter\" [dynamicParam]=\"dynamicParam\" [formData]=\"formData\"\r\n (onError)=\"handleError($event)\" [formReadOnly]=\"readonly\" [multiMode]=\"multiMode\" \r\n [questionNumber]=\"questionNumber\">\r\n </app-dynamic-form>\r\n </div>\r\n\r\n </p-dialog>\r\n</ng-container>\r\n\r\n<ng-container *ngIf=\"pageType!='POPUP'\">\r\n <div *ngIf=\"!showLoaderTheme && questions$.getValue()\">\r\n <app-dynamic-form #questionnaire [questions]=\"questions$ | async\" (modelCancel)=\"onModelCancel($event)\"\r\n [forScreenQuestionnaire]=\"forScreenQuestionnaireBs | async\" [backButtonPage]=\"backButtonPage\"\r\n [pageType]=\"pageType\" [nextButtonPage]=\"nextButtonPage\" [formData]=\"loaderModel ? loaderModel.data : formData\"\r\n [readOnlyFields]=\"loaderModel ? loaderModel.disableControlNames : readOnlyFields\" (onComplete)=\"complete($event)\" [autoSave]=\"autoSave\" \r\n [queryModel]=\"queryModel\" [hideFooter]=\"hideFooter\" [dynamicParam]=\"dynamicParam\"\r\n [sizeXs]=\"sizeXs\" [sizeSm]=\"sizeSm\" [sizeMd]=\"sizeMd\" [sizeLg]=\"sizeLg\" [sizeXl]=\"sizeXl\" \r\n [offsetXs]=\"offsetXs\" [offsetSm]=\"offsetSm\" [offsetMd]=\"offsetMd\" [offsetLg]=\"offsetLg\" [offsetXl]=\"offsetXl\"\r\n (onError)=\"handleError($event)\" [mfaRequired]=\"mfaRequired\" [formReadOnly]=\"readonly\" [multiMode]=\"multiMode\" \r\n [questionNumber]=\"questionNumber\" [loaderService]=\"loaderService\" [isEnableBackButton]=\"enableBackButtonBs | async\">\r\n </app-dynamic-form>\r\n </div>\r\n</ng-container>", styles: [":host ::ng-deep form{counter-reset:section 0}:host ::ng-deep label:before{counter-increment:section 1;content:counter(section) \". \"}:host ::ng-deep .p-col{flex-grow:1;flex-basis:0;padding:0rem}:host ::ng-deep .p-button.p-button-icon-only{width:3rem;padding:0rem}:host ::ng-deep .p-grid{margin-right:1em;margin-left:0;margin-top:0;grid-gap:10px;flex-wrap:nowrap}:host ::ng-deep .field{margin-bottom:1px;margin-top:0}:host ::ng-deep .p-md-offset-1{margin-left:3.333333%}:host ::ng-deep .p-autocomplete-panel{width:400px!important}:host ::ng-deep ion-button{text-transform:none}:host ::ng-deep .flex-container{display:inline-flex;width:-moz-fit-content;width:fit-content}:host ::ng-deep .flex-child:first-child{margin-top:3px}:host ::ng-deep .p-button.p-button-icon-only.p-button-rounded{border-radius:50%;height:2rem}:host ::ng-deep .p-autocomplete-dd .p-autocomplete-input{flex:1 1 auto}:host ::ng-deep p-selectbutton.ng-dirty.ng-invalid>.p-selectbutton>.p-button{border:.5px solid red!important}:host ::ng-deep .p-calendar .p-inputtext{width:100%!important}.p-autocomplete-panel{width:-moz-fit-content!important;width:fit-content!important}ion-button{text-transform:none}h5{font-size:22px!important}.mat-error{color:#b00020!important}\n"] }]
|
|
217
|
+
}], () => [{ type: i1.QuestionService }, { type: i2.UtilService }, { type: i3.LoggerService }, { type: i4.QuestionnaireService }, { type: i5.LoginService }, { type: i6.ValidationService }, { type: i7.ActivatedRoute }], { questionnaire: [{
|
|
218
|
+
type: ViewChild,
|
|
219
|
+
args: ['questionnaire']
|
|
220
|
+
}], autoSave: [{
|
|
221
|
+
type: Input
|
|
222
|
+
}], mfaRequired: [{
|
|
223
|
+
type: Input
|
|
224
|
+
}], backButtonPage: [{
|
|
225
|
+
type: Input
|
|
226
|
+
}], nextButtonPage: [{
|
|
227
|
+
type: Input
|
|
228
|
+
}], pageType: [{
|
|
229
|
+
type: Input
|
|
230
|
+
}], queryModel: [{
|
|
231
|
+
type: Input
|
|
232
|
+
}], loaderService: [{
|
|
233
|
+
type: Input
|
|
234
|
+
}], modelCancel: [{
|
|
235
|
+
type: Output
|
|
236
|
+
}], onComplete: [{
|
|
237
|
+
type: Output
|
|
238
|
+
}], onError: [{
|
|
239
|
+
type: Output
|
|
240
|
+
}], onLoadComplete: [{
|
|
241
|
+
type: Output
|
|
242
|
+
}], data: [{
|
|
243
|
+
type: Input
|
|
244
|
+
}], formData: [{
|
|
245
|
+
type: Input
|
|
246
|
+
}], dynamicParam: [{
|
|
247
|
+
type: Input
|
|
248
|
+
}], hideHeader: [{
|
|
249
|
+
type: Input
|
|
250
|
+
}], hideFooter: [{
|
|
251
|
+
type: Input
|
|
252
|
+
}], questionNumber: [{
|
|
253
|
+
type: Input
|
|
254
|
+
}], sizeXs: [{
|
|
255
|
+
type: Input
|
|
256
|
+
}], sizeSm: [{
|
|
257
|
+
type: Input
|
|
258
|
+
}], sizeMd: [{
|
|
259
|
+
type: Input
|
|
260
|
+
}], sizeLg: [{
|
|
261
|
+
type: Input
|
|
262
|
+
}], sizeXl: [{
|
|
263
|
+
type: Input
|
|
264
|
+
}], offsetXs: [{
|
|
265
|
+
type: Input
|
|
266
|
+
}], offsetSm: [{
|
|
267
|
+
type: Input
|
|
268
|
+
}], offsetMd: [{
|
|
269
|
+
type: Input
|
|
270
|
+
}], offsetLg: [{
|
|
271
|
+
type: Input
|
|
272
|
+
}], offsetXl: [{
|
|
273
|
+
type: Input
|
|
274
|
+
}], readonly: [{
|
|
275
|
+
type: Input
|
|
276
|
+
}], multiMode: [{
|
|
277
|
+
type: Input
|
|
278
|
+
}], readOnlyFields: [{
|
|
279
|
+
type: Input
|
|
280
|
+
}] }); })();
|
|
281
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(RenderQuestionnairePage, { className: "RenderQuestionnairePage", filePath: "lib\\components\\questionnaire\\render-questionnaire\\render-questionnaire.page.ts", lineNumber: 22 }); })();
|
|
282
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVuZGVyLXF1ZXN0aW9ubmFpcmUucGFnZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL25neC1yZXVzYS1hcHAtbGliL3NyYy9saWIvY29tcG9uZW50cy9xdWVzdGlvbm5haXJlL3JlbmRlci1xdWVzdGlvbm5haXJlL3JlbmRlci1xdWVzdGlvbm5haXJlLnBhZ2UudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9uZ3gtcmV1c2EtYXBwLWxpYi9zcmMvbGliL2NvbXBvbmVudHMvcXVlc3Rpb25uYWlyZS9yZW5kZXItcXVlc3Rpb25uYWlyZS9yZW5kZXItcXVlc3Rpb25uYWlyZS5wYWdlLmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxZQUFZLEVBQUUsS0FBSyxFQUFxQixNQUFNLEVBQTRCLFNBQVMsRUFBZ0IsaUJBQWlCLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDaEssT0FBTyxFQUFFLGVBQWUsRUFBaUIsTUFBTSxNQUFNLENBQUM7QUFLdEQsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLHlCQUF5QixDQUFDOzs7Ozs7Ozs7Ozs7Ozs7O0lDRm5ELDhCQUFxRDtJQUNqRCxpQ0FBdUM7SUFDM0MsaUJBQU07OztJQUlFLDhCQUFxRDtJQUNqRCxpQ0FBdUM7SUFDM0MsaUJBQU07Ozs7SUFDTiwyQkFBdUQsMEJBQUE7SUFHUyxnTkFBZSxlQUFBLDRCQUFxQixDQUFBLElBQUMsaU1BQy9FLGVBQUEsdUJBQWdCLENBQUEsSUFEK0QsMkxBR2xGLGVBQUEsMEJBQW1CLENBQUEsSUFIK0Q7OztJQUtqRyxpQkFBbUIsRUFBQTs7O0lBUEQsZUFBZ0M7SUFBaEMsb0VBQWdDLGtGQUFBLHlDQUFBLDZCQUFBLHlDQUFBLHFCQUFBLDZCQUFBLGlDQUFBLGlDQUFBLHFDQUFBLDZCQUFBLGlDQUFBLCtCQUFBLHlDQUFBOzs7SUFQOUQsNkJBQXlDO0lBRXJD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ZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgRXZlbnRFbWl0dGVyLCBJbnB1dCwgT25DaGFuZ2VzLCBPbkluaXQsIE91dHB1dCwgUXVlcnlMaXN0LCBTaW1wbGVDaGFuZ2VzLCBWaWV3Q2hpbGQsIFZpZXdDaGlsZHJlbiwgVmlld0VuY2Fwc3VsYXRpb24gfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHsgQmVoYXZpb3JTdWJqZWN0LCBjb21iaW5lTGF0ZXN0IH0gZnJvbSAncnhqcyc7XHJcbmltcG9ydCB7IFF1ZXN0aW9uU2VydmljZSB9IGZyb20gJy4vLi4vcXVlc3Rpb24uc2VydmljZSc7XHJcbmltcG9ydCB7IFF1ZXN0aW9uQmFzZSB9IGZyb20gJy4vLi4vcXVlc3Rpb24tYmFzZSc7XHJcbmltcG9ydCB7IFF1ZXN0aW9ubmFpcmVRdWVyeU1vZGVsIH0gZnJvbSAnLi4vLi4vLi4vbW9kZWxzL3F1ZXN0aW9ubmFpcmUvUXVlc3Rpb25uYWlyZVF1ZXJ5TW9kZWwnO1xyXG5pbXBvcnQgeyBRdWVzdGlvbm5haXJlU2VydmljZSB9IGZyb20gJy4uLy4uLy4uL3NlcnZpY2VzL3F1ZXN0aW9ubmFpcmUvcXVlc3Rpb25uYWlyZS5zZXJ2aWNlJztcclxuaW1wb3J0IHsgQmFzZVBhZ2UgfSBmcm9tICcuLi8uLi8uLi9wYWdlcy9CYXNlUGFnZSc7XHJcbmltcG9ydCB7IFV0aWxTZXJ2aWNlIH0gZnJvbSAnLi4vLi4vLi4vc2VydmljZXMvdXRpbC91dGlsLnNlcnZpY2UnO1xyXG5pbXBvcnQgeyBMb2dnZXJTZXJ2aWNlIH0gZnJvbSAnLi4vLi4vLi4vc2VydmljZXMvbG9nZ2VyL2xvZ2dlci5zZXJ2aWNlJztcclxuaW1wb3J0IHsgTG9naW5TZXJ2aWNlIH0gZnJvbSAnLi4vLi4vLi4vc2VydmljZXMvbG9naW4vbG9naW4uc2VydmljZSc7XHJcbmltcG9ydCB7IFZhbGlkYXRpb25TZXJ2aWNlIH0gZnJvbSAnLi4vLi4vLi4vc2VydmljZXMvcXVlc3Rpb25uYWlyZS92YWxpZGF0aW9uLnNlcnZpY2UnO1xyXG5pbXBvcnQgeyBMb2FkZXJNb2RlbCB9IGZyb20gJy4uLy4uLy4uL21vZGVscy9xdWVzdGlvbm5haXJlL0xvYWRlck1vZGVsJztcclxuaW1wb3J0IHsgRHluYW1pY0Zvcm1Db21wb25lbnQgfSBmcm9tICcuLy4uL2R5bmFtaWMtZm9ybS5jb21wb25lbnQnO1xyXG5pbXBvcnQgeyBBY3RpdmF0ZWRSb3V0ZSB9IGZyb20gJ0Bhbmd1bGFyL3JvdXRlcic7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICB0ZW1wbGF0ZVVybDogJ3JlbmRlci1xdWVzdGlvbm5haXJlLnBhZ2UuaHRtbCcsXHJcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcclxuICBzZWxlY3RvcjogJ2FwcC1xdWVzdGlvbm5haXJlJyxcclxuICBzdHlsZVVybHM6IFsnLi9yZW5kZXItcXVlc3Rpb25uYWlyZS5wYWdlLnNjc3MnXVxyXG59KVxyXG5leHBvcnQgY2xhc3MgUmVuZGVyUXVlc3Rpb25uYWlyZVBhZ2UgZXh0ZW5kcyBCYXNlUGFnZSBpbXBsZW1lbnRzIE9uSW5pdCwgT25DaGFuZ2VzIHtcclxuXHJcbiAgQFZpZXdDaGlsZCgncXVlc3Rpb25uYWlyZScpIHF1ZXN0aW9ubmFpcmUgOiBEeW5hbWljRm9ybUNvbXBvbmVudDsgXHJcbiAgZ2V0IGludmFsaWQoKSB7XHJcbiAgICByZXR1cm4gdGhpcy5xdWVzdGlvbm5haXJlLmludmFsaWQ7XHJcbiAgfVxyXG5cclxuICBxdWVzdGlvbnMkOiBCZWhhdmlvclN1YmplY3Q8UXVlc3Rpb25CYXNlPGFueT5bXT4gPSBuZXcgQmVoYXZpb3JTdWJqZWN0KG51bGwpO1xyXG4gIGZvclNjcmVlblF1ZXN0aW9ubmFpcmVCczogQmVoYXZpb3JTdWJqZWN0PGJvb2xlYW4+ID0gbmV3IEJlaGF2aW9yU3ViamVjdChudWxsKTtcclxuICBlbmFibGVCYWNrQnV0dG9uQnM6IEJlaGF2aW9yU3ViamVjdDxib29sZWFuPiA9IG5ldyBCZWhhdmlvclN1YmplY3QobnVsbCk7XHJcbiAgXHJcbiAgcHVibGljIHNob3dMb2FkZXJUaGVtZSA9IGZhbHNlO1xyXG4gIHB1YmxpYyBsb2FkZXJNb2RlbCA6IExvYWRlck1vZGVsO1xyXG4gIHB1YmxpYyBjYWxsZWRMb2FkZXJTZXJ2aWNlPWZhbHNlO1xyXG4gIHB1YmxpYyBibG9ja1VpIDogYm9vbGVhbiA9IGZhbHNlO1xyXG4gIEBJbnB1dCgpIGF1dG9TYXZlOiBib29sZWFuID0gdHJ1ZTtcclxuICBASW5wdXQoKSBtZmFSZXF1aXJlZCA6IGJvb2xlYW4gPSBmYWxzZTtcclxuICBASW5wdXQoKSBiYWNrQnV0dG9uUGFnZTogc3RyaW5nO1xyXG4gIEBJbnB1dCgpIG5leHRCdXR0b25QYWdlOiBzdHJpbmc7XHJcbiAgQElucHV0KCkgcGFnZVR5cGU6IHN0cmluZztcclxuICBASW5wdXQoKSBxdWVyeU1vZGVsOiBRdWVzdGlvbm5haXJlUXVlcnlNb2RlbDtcclxuICBASW5wdXQoKSBsb2FkZXJTZXJ2aWNlOnN0cmluZztcclxuICBAT3V0cHV0KCkgbW9kZWxDYW5jZWwgPSBuZXcgRXZlbnRFbWl0dGVyPGJvb2xlYW4+KCk7XHJcbiAgQE91dHB1dCgpIG9uQ29tcGxldGUgPSBuZXcgRXZlbnRFbWl0dGVyKCk7XHJcbiAgQE91dHB1dCgpIG9uRXJyb3IgPSBuZXcgRXZlbnRFbWl0dGVyKCk7XHJcbiAgQE91dHB1dCgpIG9uTG9hZENvbXBsZXRlID0gbmV3IEV2ZW50RW1pdHRlcigpO1xyXG4gIEBJbnB1dCgpIGRhdGE6IGFueTtcclxuICBASW5wdXQoKSBmb3JtRGF0YTogYW55O1xyXG4gIEBJbnB1dCgpIGR5bmFtaWNQYXJhbTogYW55O1xyXG4gIEBJbnB1dCgpIGhpZGVIZWFkZXIgOiBib29sZWFuID0gZmFsc2U7XHJcbiAgQElucHV0KCkgaGlkZUZvb3RlcjogYm9vbGVhbiA9IGZhbHNlO1xyXG4gIEBJbnB1dCgpIHF1ZXN0aW9uTnVtYmVyOiBudW1iZXIgPSBudWxsO1xyXG5cclxuICBASW5wdXQoKSBzaXplWHMgOiBudW1iZXI7XHJcbiAgQElucHV0KCkgc2l6ZVNtIDogbnVtYmVyO1xyXG4gIEBJbnB1dCgpIHNpemVNZCA6IG51bWJlcjtcclxuICBASW5wdXQoKSBzaXplTGcgOiBudW1iZXI7XHJcbiAgQElucHV0KCkgc2l6ZVhsIDogbnVtYmVyO1xyXG5cclxuICBASW5wdXQoKSBvZmZzZXRYcyA6IG51bWJlcjtcclxuICBASW5wdXQoKSBvZmZzZXRTbSA6IG51bWJlcjtcclxuICBASW5wdXQoKSBvZmZzZXRNZCA6IG51bWJlcjtcclxuICBASW5wdXQoKSBvZmZzZXRMZyA6IG51bWJlcjtcclxuICBASW5wdXQoKSBvZmZzZXRYbCA6IG51bWJlcjtcclxuXHJcbiAgQElucHV0KCkgcmVhZG9ubHk6IEJvb2xlYW4gPSBmYWxzZTtcclxuICBASW5wdXQoKSBtdWx0aU1vZGU6IGJvb2xlYW4gPSBmYWxzZTtcclxuICBASW5wdXQoKSByZWFkT25seUZpZWxkczogc3RyaW5nW107XHJcbiAgIFxyXG4gIGlkZW50aWZpZXI6IHN0cmluZyA9IFwiXCI7XHJcbiAgc3NuOiBzdHJpbmcgPVwiXCI7XHJcblxyXG4gIGNvbnN0cnVjdG9yKHB1YmxpYyBzZXJ2aWNlOiBRdWVzdGlvblNlcnZpY2UsIHB1YmxpYyB1dGlsOiBVdGlsU2VydmljZSwgcHVibGljIGxvZ2dlcjogTG9nZ2VyU2VydmljZSxcclxuICAgIHB1YmxpYyBxdWVzdGlvbm5haXJlU2VydmljZTogUXVlc3Rpb25uYWlyZVNlcnZpY2UsIHB1YmxpYyBsczogTG9naW5TZXJ2aWNlLCBwdWJsaWMgdmFsaWRhdGlvblNlcnZpY2U6IFZhbGlkYXRpb25TZXJ2aWNlLHByaXZhdGUgYWN0aXZhdGVkUm91dGU6IEFjdGl2YXRlZFJvdXRlKSB7XHJcbiAgICBzdXBlcigpO1xyXG4gIH1cclxuICBuZ09uQ2hhbmdlcyhjaGFuZ2VzOiBTaW1wbGVDaGFuZ2VzKTogdm9pZCB7XHJcbiAgICBpZihjaGFuZ2VzLnJlYWRPbmx5RmllbGRzPy5jdXJyZW50VmFsdWUpe1xyXG4gICAgICB0aGlzLnJlYWRPbmx5RmllbGRzID0gY2hhbmdlcy5yZWFkT25seUZpZWxkcy5jdXJyZW50VmFsdWU7XHJcbiAgICB9IGVsc2UgaWYoY2hhbmdlcy5yZWFkT25seUZpZWxkcz8ucHJldmlvdXNWYWx1ZSAmJiBjaGFuZ2VzLnJlYWRPbmx5RmllbGRzLmN1cnJlbnRWYWx1ZSA9PSBudWxsKSB7XHJcbiAgICAgIHRoaXMucmVhZE9ubHlGaWVsZHMgPSBjaGFuZ2VzLnJlYWRPbmx5RmllbGRzLmN1cnJlbnRWYWx1ZTtcclxuICAgIH1cclxuICB9XHJcblxyXG4gIGNvbXBsZXRlKGV2ZW50KXtcclxuICAgIHRoaXMub25Db21wbGV0ZS5lbWl0KGV2ZW50KTtcclxuICB9XHJcblxyXG4gIG5nT25Jbml0KCkge1xyXG4gICAgbGV0IHN0cktleSA9IFtdO1xyXG4gICAgdGhpcy5hY3RpdmF0ZWRSb3V0ZS5xdWVyeVBhcmFtTWFwLnN1YnNjcmliZShwYXJhbXMgPT4ge1xyXG4gICAgICBzdHJLZXkgPSBbXSA9IHBhcmFtcy5rZXlzO1xyXG4gICAgICB0aGlzLmlkZW50aWZpZXIgPSBwYXJhbXMuZ2V0KCdpZGVudGlmaWVyJylcclxuICAgIH0pO1xyXG4gICAgdGhpcy5zZXR1cFFlTG9hZGVyKCk7XHJcbiAgfVxyXG5cclxuICBzZXR1cFFlTG9hZGVyKCkge1xyXG4gICAgaWYgKHRoaXMucXVlcnlNb2RlbCAmJiB0aGlzLnBhZ2VUeXBlID09ICdQT1BVUCcpIHtcclxuICAgICAgdGhpcy5sb2FkUXVlc3Rpb25uYWlyZSh0aGlzLnF1ZXJ5TW9kZWwpO1xyXG4gICAgfSBlbHNlIGlmICh0aGlzLnF1ZXJ5TW9kZWwgJiYgIXRoaXMuYXV0b1NhdmUpIHtcclxuICAgICAgdGhpcy5sb2FkUXVlc3Rpb25uYWlyZSh0aGlzLnF1ZXJ5TW9kZWwpO1xyXG4gICAgfWVsc2Uge1xyXG4gICAgICB0aGlzLnNlcnZpY2Uuc2VhcmNoQnMubmV4dCh0aGlzLnF1ZXJ5TW9kZWwpO1xyXG4gICAgICB0aGlzLmxvYWRRdWVzdGlvbm5haXJlKHRoaXMucXVlcnlNb2RlbCk7XHJcbiAgICB9XHJcbiAgfVxyXG5cclxuICBsb2FkUXVlc3Rpb25uYWlyZShxdWVyeU1vZGVsOiBRdWVzdGlvbm5haXJlUXVlcnlNb2RlbCkge1xyXG4gICAgdGhpcy5zaG93TG9hZGVyVGhlbWUgPSB0cnVlO1xyXG5cclxuICAgIGlmKHF1ZXJ5TW9kZWwuaXNTY3JlZW5RdWVzdGlvbm5haXJlKXtcclxuICAgICAgcXVlcnlNb2RlbC51dWlkID0gdGhpcy5pZGVudGlmaWVyO1xyXG4gICAgfVxyXG5cclxuICAgIGxldCBzdWJzY3JpcHRpb24gPSBxdWVyeU1vZGVsLmlzU2NyZWVuUXVlc3Rpb25uYWlyZSBcclxuICAgICAgICAgICAgICAgICAgICAgICA/IHRoaXMuc2VydmljZS5nZXRTY3JlZW5RdWVzdGlvbnMocXVlcnlNb2RlbCkgXHJcbiAgICAgICAgICAgICAgICAgICAgICAgOiB0aGlzLnNlcnZpY2UuZ2V0UXVlc3Rpb25zKHF1ZXJ5TW9kZWwpO1xyXG5cclxuICAgIHN1YnNjcmlwdGlvbi5zdWJzY3JpYmUoXHJcbiAgICAgIHJlcyA9PiB7XHJcbiAgICAgICAgaWYocmVzWydyZXNwb25zZUpzb24nXSAmJiBPYmplY3Qua2V5cyhyZXNbJ3Jlc3BvbnNlSnNvbiddKS5sZW5ndGggPiAwKXtcclxuICAgICAgICAgIHRoaXMuZm9ybURhdGEgPSByZXNbJ3Jlc3BvbnNlSnNvbiddO1xyXG4gICAgICAgIH1cclxuICAgICAgICB0aGlzLnF1ZXN0aW9ucyQubmV4dChbcmVzWydxdWVzdGlvbm5haXJlSnNvbiddXSk7XHJcbiAgICAgICAgdGhpcy5mb3JTY3JlZW5RdWVzdGlvbm5haXJlQnMubmV4dChxdWVyeU1vZGVsLmlzU2NyZWVuUXVlc3Rpb25uYWlyZSk7XHJcbiAgICAgICAgdGhpcy5lbmFibGVCYWNrQnV0dG9uQnMubmV4dChyZXNbJ2VuYWJsZUJhY2tCdXR0b24nXSk7XHJcbiAgICAgICAgdGhpcy5sb2dnZXIuZGVidWcoJyBSZW5kZXIgUXVlc3Rpb25uYWlyZSBQYWdlICAgICAnLCByZXNbJ3F1ZXN0aW9ubmFpcmVKc29uJ10pO1xyXG4gICAgICAgIHRoaXMuc2hvd0xvYWRlclRoZW1lID0gZmFsc2U7XHJcblxyXG4gICAgICAgIGxvY2FsU3RvcmFnZS5zZXRJdGVtKFwiZmxvd0tleVwiLCByZXNbJ3F1ZXN0aW9ubmFpcmVJZCddKVxyXG4gICAgICAgIGNvbnNvbGUubG9nKGxvY2FsU3RvcmFnZS5nZXRJdGVtKFwiZmxvd0tleVwiKSk7XHJcbiAgICAgICAgaWYobG9jYWxTdG9yYWdlLmdldEl0ZW0oXCJmbG93S2V5XCIpID09ICczNDUnKXtcclxuICAgICAgICAgIGxvY2FsU3RvcmFnZS5zZXRJdGVtKCdkaXNhYmxlRmllbGRzT25TaWdudXAnLCAndHJ1ZScpO1xyXG4gICAgICAgIH0gZWxzZSB7XHJcbiAgICAgICAgICBsb2NhbFN0b3JhZ2Uuc2V0SXRlbSgnZGlzYWJsZUZpZWxkc09uU2lnbnVwJywgJ2ZhbHNlJyk7XHJcbiAgICAgICAgfVxyXG5cclxuICAgICAgICB0aGlzLm9uTG9hZENvbXBsZXRlLmVtaXQodHJ1ZSk7XHJcbiAgICAgIH0sIGVyciA9PiB7XHJcbiAgICAgICAgdGhpcy5zaG93TG9hZGVyVGhlbWUgPSBmYWxzZTtcclxuICAgICAgICB0aGlzLnV0aWwuZXJyb3JIYW5kbGVyKGVycik7XHJcbiAgICAgICAgdGhpcy5sb2dnZXIuZXJyb3IoJ1JlbmRlciBRdWVzdGlvbm5haXJlIFBhZ2UgRXJyb3InLCBlcnIpO1xyXG4gICAgICAgIHRoaXMub25Mb2FkQ29tcGxldGUuZW1pdChmYWxzZSk7XHJcbiAgICAgIH1cclxuICAgICk7XHJcbiAgfVxyXG5cclxuXHJcbiAgb25Nb2RlbENhbmNlbChjYW5jZWw6IGJvb2xlYW4pIHtcclxuICAgIHRoaXMubW9kZWxDYW5jZWwuZW1pdChjYW5jZWwpO1xyXG4gIH1cclxuXHJcbiAgc3VibWl0KCl7XHJcbiAgICB0aGlzLnF1ZXN0aW9ubmFpcmUuY29tcGxldGUoKTtcclxuICB9XHJcblxyXG4gIGdldERpcnR5SXRlbXMoKXtcclxuICAgIHJldHVybiB0aGlzLnF1ZXN0aW9ubmFpcmUuZ2V0RGlydHlJdGVtcygpO1xyXG4gIH1cclxuXHJcbiAgZ2V0RGlydHlJdGVtc1dpdGhWYWx1ZXMoKXtcclxuICAgIHJldHVybiB0aGlzLnF1ZXN0aW9ubmFpcmUuZ2V0RGlydHlJdGVtc1dpdGhWYWx1ZXMoKTtcclxuICB9XHJcblxyXG4gIHBheW1lbnREZXRhaWxzQ2hhbmdlRXJyb3IoKXtcclxuICAgIHJldHVybiB0aGlzLnF1ZXN0aW9ubmFpcmUucGF5bWVudERldGFpbHNDaGFuZ2VFcnJvcigpO1xyXG4gIH1cclxuXHJcbiAgaGFuZGxlRXJyb3IoZXJyb3Ipe1xyXG4gICAgdGhpcy5vbkVycm9yLmVtaXQoZXJyb3IpO1xyXG4gIH1cclxufSIsIjxwLWJsb2NrVUkgW2Jsb2NrZWRdPVwiYmxvY2tVaVwiPlxyXG4gICAgPGlvbi1zcGlubmVyIG5hbWU9XCJjcmVzY2VudFwiPjwvaW9uLXNwaW5uZXI+XHJcbiAgICBMb2FkaW5nLi4uXHJcbjwvcC1ibG9ja1VJPlxyXG48ZGl2ICpuZ0lmPVwic2hvd0xvYWRlclRoZW1lXCIgY2xhc3M9XCJpb24tdGV4dC1jZW50ZXJcIj5cclxuICAgIDxpb24tc3Bpbm5lciBuYW1lPVwiZG90c1wiPjwvaW9uLXNwaW5uZXI+XHJcbjwvZGl2PlxyXG48bmctY29udGFpbmVyICpuZ0lmPVwicGFnZVR5cGU9PT0nUE9QVVAnXCI+XHJcblxyXG4gICAgPHAtZGlhbG9nIHZpc2libGU9XCJ0cnVlXCIgYXBwZW5kVG89XCJib2R5XCIgbW9kYWw9XCJ0cnVlXCIgW3Nob3dIZWFkZXJdPVwiZmFsc2VcIj5cclxuICAgICAgICA8ZGl2ICpuZ0lmPVwic2hvd0xvYWRlclRoZW1lXCIgY2xhc3M9XCJpb24tdGV4dC1jZW50ZXJcIj5cclxuICAgICAgICAgICAgPGlvbi1zcGlubmVyIG5hbWU9XCJkb3RzXCI+PC9pb24tc3Bpbm5lcj5cclxuICAgICAgICA8L2Rpdj5cclxuICAgICAgICA8ZGl2ICpuZ0lmPVwiIXNob3dMb2FkZXJUaGVtZSAmJiBxdWVzdGlvbnMkLmdldFZhbHVlKClcIj5cclxuICAgICAgICAgICAgPGFwcC1keW5hbWljLWZvcm0gW3F1ZXN0aW9uc109XCJxdWVzdGlvbnMkIHwgYXN5bmNcIlxyXG4gICAgICAgICAgICAgICAgW2ZvclNjcmVlblF1ZXN0aW9ubmFpcmVdPVwiZm9yU2NyZWVuUXVlc3Rpb25uYWlyZUJzIHwgYXN5bmNcIiBbYmFja0J1dHRvblBhZ2VdPVwiYmFja0J1dHRvblBhZ2VcIlxyXG4gICAgICAgICAgICAgICAgW3BhZ2VUeXBlXT1cInBhZ2VUeXBlXCIgW25leHRCdXR0b25QYWdlXT1cIm5leHRCdXR0b25QYWdlXCIgKG1vZGVsQ2FuY2VsKT1cIm9uTW9kZWxDYW5jZWwoJGV2ZW50KVwiXHJcbiAgICAgICAgICAgICAgICAob25Db21wbGV0ZSk9XCJjb21wbGV0ZSgkZXZlbnQpXCIgW2RhdGFdPVwiZGF0YVwiIFthdXRvU2F2ZV09XCJhdXRvU2F2ZVwiIFtxdWVyeU1vZGVsXT1cInF1ZXJ5TW9kZWxcIlxyXG4gICAgICAgICAgICAgICAgW2hpZGVGb290ZXJdPVwiaGlkZUZvb3RlclwiIFtkeW5hbWljUGFyYW1dPVwiZHluYW1pY1BhcmFtXCIgW2Zvcm1EYXRhXT1cImZvcm1EYXRhXCJcclxuICAgICAgICAgICAgICAgIChvbkVycm9yKT1cImhhbmRsZUVycm9yKCRldmVudClcIiBbZm9ybVJlYWRPbmx5XT1cInJlYWRvbmx5XCIgW211bHRpTW9kZV09XCJtdWx0aU1vZGVcIiBcclxuICAgICAgICAgICAgICAgIFtxdWVzdGlvbk51bWJlcl09XCJxdWVzdGlvbk51bWJlclwiPlxyXG4gICAgICAgICAgICA8L2FwcC1keW5hbWljLWZvcm0+XHJcbiAgICAgICAgPC9kaXY+XHJcblxyXG4gICAgPC9wLWRpYWxvZz5cclxuPC9uZy1jb250YWluZXI+XHJcblxyXG48bmctY29udGFpbmVyICpuZ0lmPVwicGFnZVR5cGUhPSdQT1BVUCdcIj5cclxuICAgIDxkaXYgKm5nSWY9XCIhc2hvd0xvYWRlclRoZW1lICYmIHF1ZXN0aW9ucyQuZ2V0VmFsdWUoKVwiPlxyXG4gICAgICAgIDxhcHAtZHluYW1pYy1mb3JtICNxdWVzdGlvbm5haXJlIFtxdWVzdGlvbnNdPVwicXVlc3Rpb25zJCB8IGFzeW5jXCIgKG1vZGVsQ2FuY2VsKT1cIm9uTW9kZWxDYW5jZWwoJGV2ZW50KVwiXHJcbiAgICAgICAgICAgIFtmb3JTY3JlZW5RdWVzdGlvbm5haXJlXT1cImZvclNjcmVlblF1ZXN0aW9ubmFpcmVCcyB8IGFzeW5jXCIgW2JhY2tCdXR0b25QYWdlXT1cImJhY2tCdXR0b25QYWdlXCJcclxuICAgICAgICAgICAgW3BhZ2VUeXBlXT1cInBhZ2VUeXBlXCIgW25leHRCdXR0b25QYWdlXT1cIm5leHRCdXR0b25QYWdlXCIgW2Zvcm1EYXRhXT1cImxvYWRlck1vZGVsID8gbG9hZGVyTW9kZWwuZGF0YSA6IGZvcm1EYXRhXCJcclxuICAgICAgICAgICAgW3JlYWRPbmx5RmllbGRzXT1cImxvYWRlck1vZGVsID8gbG9hZGVyTW9kZWwuZGlzYWJsZUNvbnRyb2xOYW1lcyA6IHJlYWRPbmx5RmllbGRzXCIgKG9uQ29tcGxldGUpPVwiY29tcGxldGUoJGV2ZW50KVwiIFthdXRvU2F2ZV09XCJhdXRvU2F2ZVwiIFxyXG4gICAgICAgICAgICBbcXVlcnlNb2RlbF09XCJxdWVyeU1vZGVsXCIgW2hpZGVGb290ZXJdPVwiaGlkZUZvb3RlclwiIFtkeW5hbWljUGFyYW1dPVwiZHluYW1pY1BhcmFtXCJcclxuICAgICAgICAgICAgW3NpemVYc109XCJzaXplWHNcIiBbc2l6ZVNtXT1cInNpemVTbVwiIFtzaXplTWRdPVwic2l6ZU1kXCIgW3NpemVMZ109XCJzaXplTGdcIiBbc2l6ZVhsXT1cInNpemVYbFwiIFxyXG4gICAgICAgICAgICBbb2Zmc2V0WHNdPVwib2Zmc2V0WHNcIiBbb2Zmc2V0U21dPVwib2Zmc2V0U21cIiBbb2Zmc2V0TWRdPVwib2Zmc2V0TWRcIiBbb2Zmc2V0TGddPVwib2Zmc2V0TGdcIiBbb2Zmc2V0WGxdPVwib2Zmc2V0WGxcIlxyXG4gICAgICAgICAgICAob25FcnJvcik9XCJoYW5kbGVFcnJvcigkZXZlbnQpXCIgW21mYVJlcXVpcmVkXT1cIm1mYVJlcXVpcmVkXCIgW2Zvcm1SZWFkT25seV09XCJyZWFkb25seVwiIFttdWx0aU1vZGVdPVwibXVsdGlNb2RlXCIgXHJcbiAgICAgICAgICAgIFtxdWVzdGlvbk51bWJlcl09XCJxdWVzdGlvbk51bWJlclwiIFtsb2FkZXJTZXJ2aWNlXT1cImxvYWRlclNlcnZpY2VcIiBbaXNFbmFibGVCYWNrQnV0dG9uXT1cImVuYWJsZUJhY2tCdXR0b25CcyB8IGFzeW5jXCI+XHJcbiAgICAgICAgPC9hcHAtZHluYW1pYy1mb3JtPlxyXG4gICAgPC9kaXY+XHJcbjwvbmctY29udGFpbmVyPiJdfQ==
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import { Component, Input } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "@angular/common";
|
|
4
|
+
import * as i2 from "../../pipes/trust-html/trust-html.pipe";
|
|
5
|
+
function ReadMoreComponent_a_2_Template(rf, ctx) { if (rf & 1) {
|
|
6
|
+
const _r3 = i0.ɵɵgetCurrentView();
|
|
7
|
+
i0.ɵɵelementStart(0, "a", 2);
|
|
8
|
+
i0.ɵɵlistener("click", function ReadMoreComponent_a_2_Template_a_click_0_listener() { i0.ɵɵrestoreView(_r3); const ctx_r2 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r2.readMore(false)); });
|
|
9
|
+
i0.ɵɵtext(1, "...read more");
|
|
10
|
+
i0.ɵɵelementEnd();
|
|
11
|
+
} }
|
|
12
|
+
function ReadMoreComponent_a_3_Template(rf, ctx) { if (rf & 1) {
|
|
13
|
+
const _r5 = i0.ɵɵgetCurrentView();
|
|
14
|
+
i0.ɵɵelementStart(0, "a", 2);
|
|
15
|
+
i0.ɵɵlistener("click", function ReadMoreComponent_a_3_Template_a_click_0_listener() { i0.ɵɵrestoreView(_r5); const ctx_r4 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r4.readMore(true)); });
|
|
16
|
+
i0.ɵɵtext(1, "...read less");
|
|
17
|
+
i0.ɵɵelementEnd();
|
|
18
|
+
} }
|
|
19
|
+
export class ReadMoreComponent {
|
|
20
|
+
constructor() {
|
|
21
|
+
this.isCollapsed = true;
|
|
22
|
+
this.text = '';
|
|
23
|
+
this.hideAfter = 150;
|
|
24
|
+
this.hideReadMore = false;
|
|
25
|
+
}
|
|
26
|
+
ngOnInit() {
|
|
27
|
+
console.log('ngOnInit');
|
|
28
|
+
this.readMore(true);
|
|
29
|
+
}
|
|
30
|
+
readMore(more) {
|
|
31
|
+
if (this.text?.length <= this.hideAfter) {
|
|
32
|
+
this.hideReadMore = true;
|
|
33
|
+
}
|
|
34
|
+
if (this.text?.length > this.hideAfter && more) {
|
|
35
|
+
this.value = this.text.substring(0, this.hideAfter);
|
|
36
|
+
this.isCollapsed = false;
|
|
37
|
+
}
|
|
38
|
+
else {
|
|
39
|
+
this.value = this.text;
|
|
40
|
+
this.isCollapsed = true;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
static { this.ɵfac = function ReadMoreComponent_Factory(t) { return new (t || ReadMoreComponent)(); }; }
|
|
44
|
+
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: ReadMoreComponent, selectors: [["app-read-more"]], inputs: { isCollapsed: "isCollapsed", text: "text", hideAfter: "hideAfter" }, decls: 4, vars: 5, consts: [[3, "innerHtml"], ["class", "link", 3, "click", 4, "ngIf"], [1, "link", 3, "click"]], template: function ReadMoreComponent_Template(rf, ctx) { if (rf & 1) {
|
|
45
|
+
i0.ɵɵelement(0, "span", 0);
|
|
46
|
+
i0.ɵɵpipe(1, "trustHtml");
|
|
47
|
+
i0.ɵɵtemplate(2, ReadMoreComponent_a_2_Template, 2, 0, "a", 1)(3, ReadMoreComponent_a_3_Template, 2, 0, "a", 1);
|
|
48
|
+
} if (rf & 2) {
|
|
49
|
+
i0.ɵɵproperty("innerHtml", i0.ɵɵpipeBind1(1, 3, ctx.value), i0.ɵɵsanitizeHtml);
|
|
50
|
+
i0.ɵɵadvance(2);
|
|
51
|
+
i0.ɵɵproperty("ngIf", !ctx.isCollapsed && !ctx.hideReadMore);
|
|
52
|
+
i0.ɵɵadvance(1);
|
|
53
|
+
i0.ɵɵproperty("ngIf", ctx.isCollapsed && !ctx.hideReadMore);
|
|
54
|
+
} }, dependencies: [i1.NgIf, i2.TrustHtmlPipe], styles: ["div.collapsed[_ngcontent-%COMP%]{height:250px;overflow:hidden}"] }); }
|
|
55
|
+
}
|
|
56
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ReadMoreComponent, [{
|
|
57
|
+
type: Component,
|
|
58
|
+
args: [{ selector: 'app-read-more', template: `
|
|
59
|
+
<span [innerHtml]="value | trustHtml">
|
|
60
|
+
</span>
|
|
61
|
+
<a (click)="readMore(false)" class="link" *ngIf="!isCollapsed && !hideReadMore">...read more</a>
|
|
62
|
+
<a (click)="readMore(true)" class="link" *ngIf="isCollapsed && !hideReadMore">...read less</a>
|
|
63
|
+
`, styles: ["div.collapsed{height:250px;overflow:hidden}\n"] }]
|
|
64
|
+
}], () => [], { isCollapsed: [{
|
|
65
|
+
type: Input
|
|
66
|
+
}], text: [{
|
|
67
|
+
type: Input
|
|
68
|
+
}], hideAfter: [{
|
|
69
|
+
type: Input
|
|
70
|
+
}] }); })();
|
|
71
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ReadMoreComponent, { className: "ReadMoreComponent", filePath: "lib\\components\\read-more\\read-more.component.ts", lineNumber: 13 }); })();
|
|
72
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVhZC1tb3JlLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL25neC1yZXVzYS1hcHAtbGliL3NyYy9saWIvY29tcG9uZW50cy9yZWFkLW1vcmUvcmVhZC1tb3JlLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBVSxNQUFNLGVBQWUsQ0FBQzs7Ozs7O0lBT3JELDRCQUFnRjtJQUE3RSx1SkFBUyxlQUFBLGdCQUFTLEtBQUssQ0FBQyxDQUFBLElBQUM7SUFBb0QsNEJBQVk7SUFBQSxpQkFBSTs7OztJQUNoRyw0QkFBOEU7SUFBM0UsdUpBQVMsZUFBQSxnQkFBUyxJQUFJLENBQUMsQ0FBQSxJQUFDO0lBQW1ELDRCQUFZO0lBQUEsaUJBQUk7O0FBSWxHLE1BQU0sT0FBTyxpQkFBaUI7SUFlNUI7UUFaQSxnQkFBVyxHQUFhLElBQUksQ0FBQztRQUc3QixTQUFJLEdBQVksRUFBRSxDQUFDO1FBR25CLGNBQVMsR0FBWSxHQUFHLENBQUM7UUFJekIsaUJBQVksR0FBRyxLQUFLLENBQUM7SUFFTCxDQUFDO0lBRWpCLFFBQVE7UUFDTixPQUFPLENBQUMsR0FBRyxDQUFDLFVBQVUsQ0FBQyxDQUFDO1FBQ3hCLElBQUksQ0FBQyxRQUFRLENBQUMsSUFBSSxDQUFDLENBQUM7SUFDdEIsQ0FBQztJQUVELFFBQVEsQ0FBQyxJQUFjO1FBQ3JCLElBQUcsSUFBSSxDQUFDLElBQUksRUFBRSxNQUFNLElBQUksSUFBSSxDQUFDLFNBQVMsRUFBQztZQUNyQyxJQUFJLENBQUMsWUFBWSxHQUFHLElBQUksQ0FBQztTQUMxQjtRQUNELElBQUcsSUFBSSxDQUFDLElBQUksRUFBRSxNQUFNLEdBQUcsSUFBSSxDQUFDLFNBQVMsSUFBSSxJQUFJLEVBQUM7WUFDNUMsSUFBSSxDQUFDLEtBQUssR0FBRyxJQUFJLENBQUMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxDQUFDLEVBQUMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxDQUFDO1lBQ25ELElBQUksQ0FBQyxXQUFXLEdBQUcsS0FBSyxDQUFDO1NBQzFCO2FBQU07WUFDTCxJQUFJLENBQUMsS0FBSyxHQUFHLElBQUksQ0FBQyxJQUFJLENBQUM7WUFDdkIsSUFBSSxDQUFDLFdBQVcsR0FBRyxJQUFJLENBQUM7U0FDekI7SUFDSCxDQUFDO2tGQWpDVSxpQkFBaUI7b0VBQWpCLGlCQUFpQjtZQVAxQiwwQkFDTzs7WUFDUCw4REFBZ0csaURBQUE7O1lBRjFGLDhFQUErQjtZQUVNLGVBQW1DO1lBQW5DLDREQUFtQztZQUNwQyxlQUFrQztZQUFsQywyREFBa0M7OztpRkFJbkUsaUJBQWlCO2NBVjdCLFNBQVM7MkJBQ0UsZUFBZSxZQUNmOzs7OztDQUtYO29CQU1DLFdBQVc7a0JBRFYsS0FBSztZQUlOLElBQUk7a0JBREgsS0FBSztZQUlOLFNBQVM7a0JBRFIsS0FBSzs7a0ZBUkssaUJBQWlCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBJbnB1dCwgT25Jbml0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2FwcC1yZWFkLW1vcmUnLFxuICB0ZW1wbGF0ZTogYFxuICAgIDxzcGFuIFtpbm5lckh0bWxdPVwidmFsdWUgfCB0cnVzdEh0bWxcIj5cbiAgICA8L3NwYW4+XG4gICAgPGEgKGNsaWNrKT1cInJlYWRNb3JlKGZhbHNlKVwiIGNsYXNzPVwibGlua1wiICpuZ0lmPVwiIWlzQ29sbGFwc2VkICYmICFoaWRlUmVhZE1vcmVcIj4uLi5yZWFkIG1vcmU8L2E+XG4gICAgPGEgKGNsaWNrKT1cInJlYWRNb3JlKHRydWUpXCIgY2xhc3M9XCJsaW5rXCIgKm5nSWY9XCJpc0NvbGxhcHNlZCAmJiAhaGlkZVJlYWRNb3JlXCI+Li4ucmVhZCBsZXNzPC9hPlxuYCxcbiAgc3R5bGVVcmxzOiBbJy4vcmVhZC1tb3JlLmNvbXBvbmVudC5jc3MnXVxufSlcbmV4cG9ydCBjbGFzcyBSZWFkTW9yZUNvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XG5cbiAgQElucHV0KClcbiAgaXNDb2xsYXBzZWQgOiBib29sZWFuID0gdHJ1ZTtcblxuICBASW5wdXQoKVxuICB0ZXh0IDogc3RyaW5nID0gJyc7XG5cbiAgQElucHV0KClcbiAgaGlkZUFmdGVyIDogbnVtYmVyID0gMTUwO1xuXG4gIHZhbHVlO1xuXG4gIGhpZGVSZWFkTW9yZSA9IGZhbHNlO1xuXG4gIGNvbnN0cnVjdG9yKCkgeyB9XG5cbiAgbmdPbkluaXQoKTogdm9pZCB7XG4gICAgY29uc29sZS5sb2coJ25nT25Jbml0Jyk7XG4gICAgdGhpcy5yZWFkTW9yZSh0cnVlKTtcbiAgfVxuXG4gIHJlYWRNb3JlKG1vcmUgOiBib29sZWFuKXtcbiAgICBpZih0aGlzLnRleHQ/Lmxlbmd0aCA8PSB0aGlzLmhpZGVBZnRlcil7XG4gICAgICB0aGlzLmhpZGVSZWFkTW9yZSA9IHRydWU7XG4gICAgfVxuICAgIGlmKHRoaXMudGV4dD8ubGVuZ3RoID4gdGhpcy5oaWRlQWZ0ZXIgJiYgbW9yZSl7XG4gICAgICB0aGlzLnZhbHVlID0gdGhpcy50ZXh0LnN1YnN0cmluZygwLHRoaXMuaGlkZUFmdGVyKTtcbiAgICAgIHRoaXMuaXNDb2xsYXBzZWQgPSBmYWxzZTtcbiAgICB9IGVsc2Uge1xuICAgICAgdGhpcy52YWx1ZSA9IHRoaXMudGV4dDtcbiAgICAgIHRoaXMuaXNDb2xsYXBzZWQgPSB0cnVlO1xuICAgIH1cbiAgfVxuXG59XG4iXX0=
|