@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,256 @@
|
|
|
1
|
+
import { Component, EventEmitter, Input, Output, ViewChild } from '@angular/core';
|
|
2
|
+
import { first } from 'rxjs/operators';
|
|
3
|
+
import { BasePage } from '../../../pages/BasePage';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
import * as i1 from "../../../services/util/util.service";
|
|
6
|
+
import * as i2 from "../../../services/logger/logger.service";
|
|
7
|
+
import * as i3 from "../../questionnaire/question.service";
|
|
8
|
+
import * as i4 from "@angular/router";
|
|
9
|
+
import * as i5 from "@ionic/angular";
|
|
10
|
+
import * as i6 from "@angular/platform-browser";
|
|
11
|
+
import * as i7 from "../../../services/login/login.service";
|
|
12
|
+
const _c0 = ["questionnaire"];
|
|
13
|
+
function FormBuilderPage_ion_header_0_Template(rf, ctx) { if (rf & 1) {
|
|
14
|
+
i0.ɵɵelementStart(0, "ion-header");
|
|
15
|
+
i0.ɵɵelement(1, "app-header", 3);
|
|
16
|
+
i0.ɵɵelementEnd();
|
|
17
|
+
} if (rf & 2) {
|
|
18
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
|
19
|
+
i0.ɵɵadvance(1);
|
|
20
|
+
i0.ɵɵproperty("secondToolbar", false)("displayLogo", !ctx_r0.loginService.getUser());
|
|
21
|
+
} }
|
|
22
|
+
function FormBuilderPage_ion_content_1_app_questionnaire_2_Template(rf, ctx) { if (rf & 1) {
|
|
23
|
+
const _r7 = i0.ɵɵgetCurrentView();
|
|
24
|
+
i0.ɵɵelementStart(0, "app-questionnaire", 6, 7);
|
|
25
|
+
i0.ɵɵlistener("modelCancel", function FormBuilderPage_ion_content_1_app_questionnaire_2_Template_app_questionnaire_modelCancel_0_listener($event) { i0.ɵɵrestoreView(_r7); const ctx_r6 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r6.onModelCancel($event)); })("onComplete", function FormBuilderPage_ion_content_1_app_questionnaire_2_Template_app_questionnaire_onComplete_0_listener($event) { i0.ɵɵrestoreView(_r7); const ctx_r8 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r8.complete($event)); })("onError", function FormBuilderPage_ion_content_1_app_questionnaire_2_Template_app_questionnaire_onError_0_listener($event) { i0.ɵɵrestoreView(_r7); const ctx_r9 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r9.handleError($event)); })("onLoadComplete", function FormBuilderPage_ion_content_1_app_questionnaire_2_Template_app_questionnaire_onLoadComplete_0_listener($event) { i0.ɵɵrestoreView(_r7); const ctx_r10 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r10.loadComplete($event)); });
|
|
26
|
+
i0.ɵɵelementEnd();
|
|
27
|
+
} if (rf & 2) {
|
|
28
|
+
const ctx_r4 = i0.ɵɵnextContext(2);
|
|
29
|
+
i0.ɵɵproperty("backButtonPage", ctx_r4.backButtonPage)("nextButtonPage", ctx_r4.nextButtonPage)("loaderService", ctx_r4.loaderService)("pageType", ctx_r4.pageType)("queryModel", ctx_r4.queryModel)("data", ctx_r4.data)("hideHeader", ctx_r4.hideHeader)("autoSave", ctx_r4.autoSave)("hideFooter", ctx_r4.hideFooter)("sizeXs", ctx_r4.sizeXs)("sizeSm", ctx_r4.sizeSm)("sizeMd", ctx_r4.sizeMd)("sizeLg", ctx_r4.sizeLg)("sizeXl", ctx_r4.sizeXl)("offsetXs", ctx_r4.offsetXs)("offsetSm", ctx_r4.offsetSm)("offsetMd", ctx_r4.offsetMd)("offsetLg", ctx_r4.offsetLg)("offsetXl", ctx_r4.offsetXl)("dynamicParam", ctx_r4.dynamicParam)("mfaRequired", ctx_r4.model.isMfaRequired)("readonly", ctx_r4.readonly)("multiMode", ctx_r4.multiMode)("readOnlyFields", ctx_r4.readOnlyFields);
|
|
30
|
+
} }
|
|
31
|
+
function FormBuilderPage_ion_content_1_Template(rf, ctx) { if (rf & 1) {
|
|
32
|
+
i0.ɵɵelementStart(0, "ion-content")(1, "app-content", 4);
|
|
33
|
+
i0.ɵɵtemplate(2, FormBuilderPage_ion_content_1_app_questionnaire_2_Template, 2, 24, "app-questionnaire", 5);
|
|
34
|
+
i0.ɵɵelementEnd()();
|
|
35
|
+
} if (rf & 2) {
|
|
36
|
+
const ctx_r1 = i0.ɵɵnextContext();
|
|
37
|
+
i0.ɵɵadvance(1);
|
|
38
|
+
i0.ɵɵproperty("showHelp", false)("hideFooter", true);
|
|
39
|
+
i0.ɵɵadvance(1);
|
|
40
|
+
i0.ɵɵproperty("ngIf", !ctx_r1.showLoaderTheme12);
|
|
41
|
+
} }
|
|
42
|
+
function FormBuilderPage_app_questionnaire_2_Template(rf, ctx) { if (rf & 1) {
|
|
43
|
+
const _r13 = i0.ɵɵgetCurrentView();
|
|
44
|
+
i0.ɵɵelementStart(0, "app-questionnaire", 8, 7);
|
|
45
|
+
i0.ɵɵlistener("modelCancel", function FormBuilderPage_app_questionnaire_2_Template_app_questionnaire_modelCancel_0_listener($event) { i0.ɵɵrestoreView(_r13); const ctx_r12 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r12.onModelCancel($event)); })("onComplete", function FormBuilderPage_app_questionnaire_2_Template_app_questionnaire_onComplete_0_listener($event) { i0.ɵɵrestoreView(_r13); const ctx_r14 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r14.complete($event)); })("onError", function FormBuilderPage_app_questionnaire_2_Template_app_questionnaire_onError_0_listener($event) { i0.ɵɵrestoreView(_r13); const ctx_r15 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r15.handleError($event)); })("onLoadComplete", function FormBuilderPage_app_questionnaire_2_Template_app_questionnaire_onLoadComplete_0_listener($event) { i0.ɵɵrestoreView(_r13); const ctx_r16 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r16.loadComplete($event)); });
|
|
46
|
+
i0.ɵɵelementEnd();
|
|
47
|
+
} if (rf & 2) {
|
|
48
|
+
const ctx_r2 = i0.ɵɵnextContext();
|
|
49
|
+
i0.ɵɵproperty("backButtonPage", ctx_r2.backButtonPage)("nextButtonPage", ctx_r2.nextButtonPage)("loaderService", ctx_r2.loaderService)("pageType", ctx_r2.pageType)("queryModel", ctx_r2.queryModel)("formData", ctx_r2.data)("hideHeader", ctx_r2.hideHeader)("autoSave", ctx_r2.autoSave)("hideFooter", ctx_r2.hideFooter)("sizeXs", ctx_r2.sizeXs)("sizeSm", ctx_r2.sizeSm)("sizeMd", ctx_r2.sizeMd)("sizeLg", ctx_r2.sizeLg)("sizeXl", ctx_r2.sizeXl)("offsetXs", ctx_r2.offsetXs)("offsetSm", ctx_r2.offsetSm)("offsetMd", ctx_r2.offsetMd)("offsetLg", ctx_r2.offsetLg)("offsetXl", ctx_r2.offsetXl)("dynamicParam", ctx_r2.dynamicParam)("mfaRequired", ctx_r2.model.isMfaRequired)("readonly", ctx_r2.readonly)("multiMode", ctx_r2.multiMode)("readOnlyFields", ctx_r2.readOnlyFields);
|
|
50
|
+
} }
|
|
51
|
+
function FormBuilderPage_div_3_Template(rf, ctx) { if (rf & 1) {
|
|
52
|
+
i0.ɵɵelementStart(0, "div", 9);
|
|
53
|
+
i0.ɵɵelement(1, "ion-spinner", 10);
|
|
54
|
+
i0.ɵɵelementEnd();
|
|
55
|
+
} }
|
|
56
|
+
export class FormBuilderPage extends BasePage {
|
|
57
|
+
get invalid() {
|
|
58
|
+
return this.questionnaire.invalid;
|
|
59
|
+
}
|
|
60
|
+
constructor(util, logger, service, activatedRoute, nav, titleService, loginService) {
|
|
61
|
+
super();
|
|
62
|
+
this.util = util;
|
|
63
|
+
this.logger = logger;
|
|
64
|
+
this.service = service;
|
|
65
|
+
this.activatedRoute = activatedRoute;
|
|
66
|
+
this.nav = nav;
|
|
67
|
+
this.titleService = titleService;
|
|
68
|
+
this.loginService = loginService;
|
|
69
|
+
this.showLoaderTheme12 = true;
|
|
70
|
+
this.autoSave = true;
|
|
71
|
+
this.hideHeader = false;
|
|
72
|
+
this.hideFooter = false;
|
|
73
|
+
this.showOnlyQuestion = false;
|
|
74
|
+
this.modelCancel = new EventEmitter();
|
|
75
|
+
this.onComplete = new EventEmitter();
|
|
76
|
+
this.onError = new EventEmitter();
|
|
77
|
+
this.showError = true;
|
|
78
|
+
this.readonly = false;
|
|
79
|
+
this.multiMode = false;
|
|
80
|
+
this.onLoadComplete = new EventEmitter();
|
|
81
|
+
}
|
|
82
|
+
submitQuestionnaire() {
|
|
83
|
+
this.questionnaire.submit();
|
|
84
|
+
}
|
|
85
|
+
getDirtyItems() {
|
|
86
|
+
return this.questionnaire.getDirtyItems();
|
|
87
|
+
}
|
|
88
|
+
getDirtyItemsWithValues() {
|
|
89
|
+
return this.questionnaire.getDirtyItemsWithValues();
|
|
90
|
+
}
|
|
91
|
+
paymentDetailsChangeError() {
|
|
92
|
+
return this.questionnaire.paymentDetailsChangeError();
|
|
93
|
+
}
|
|
94
|
+
loadComplete(event) {
|
|
95
|
+
this.onLoadComplete.emit(event);
|
|
96
|
+
}
|
|
97
|
+
complete(event) {
|
|
98
|
+
this.onComplete.emit(event);
|
|
99
|
+
}
|
|
100
|
+
ngOnInit() {
|
|
101
|
+
let data = this.activatedRoute.snapshot.queryParamMap.get('data');
|
|
102
|
+
if (data) {
|
|
103
|
+
this.dynamicParam = JSON.parse(atob(data));
|
|
104
|
+
}
|
|
105
|
+
if (this.flowKey) {
|
|
106
|
+
this.getFlowData(this.flowKey);
|
|
107
|
+
}
|
|
108
|
+
else {
|
|
109
|
+
this.activatedRoute
|
|
110
|
+
.params
|
|
111
|
+
.pipe(first())
|
|
112
|
+
.subscribe(params => {
|
|
113
|
+
let key = params['key'];
|
|
114
|
+
this.getFlowData(key);
|
|
115
|
+
});
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
getFlowData(key) {
|
|
119
|
+
this.service.getFlowData(key).subscribe(res => {
|
|
120
|
+
if (!res || !res.flowId) {
|
|
121
|
+
this.nav.navigateRoot('not-found');
|
|
122
|
+
}
|
|
123
|
+
this.model = res;
|
|
124
|
+
if (this.model.authenticationRequired === 'Y' && !this.loginService.isLoggedIn()) {
|
|
125
|
+
this.nav.navigateRoot('login').then(() => {
|
|
126
|
+
this.util.showError("User not logged in.");
|
|
127
|
+
});
|
|
128
|
+
return;
|
|
129
|
+
}
|
|
130
|
+
this.queryModel = JSON.parse(this.model.flowId);
|
|
131
|
+
this.queryModel.isScreenQuestionnaire = true;
|
|
132
|
+
this.model.isMfaRequired = this.queryModel.isMfaRequired ? this.queryModel.isMfaRequired : false;
|
|
133
|
+
this.nextButtonPage = this.model.nextPage;
|
|
134
|
+
this.titleService.setTitle(this.model.pageTitle);
|
|
135
|
+
this.backButtonPage = this.model.backPage;
|
|
136
|
+
if (this.model.type) {
|
|
137
|
+
this.pageType = this.model.type;
|
|
138
|
+
}
|
|
139
|
+
this.setSizes();
|
|
140
|
+
this.loaderService = this.model.loaderService;
|
|
141
|
+
this.showLoaderTheme12 = false;
|
|
142
|
+
}, err => {
|
|
143
|
+
this.util.hideLoader();
|
|
144
|
+
this.util.errorHandler(err);
|
|
145
|
+
});
|
|
146
|
+
}
|
|
147
|
+
setSizes() {
|
|
148
|
+
if (!this.sizeXs) {
|
|
149
|
+
this.sizeXs = 12;
|
|
150
|
+
this.offsetXs = 0;
|
|
151
|
+
}
|
|
152
|
+
if (!this.sizeSm) {
|
|
153
|
+
this.sizeSm = 12;
|
|
154
|
+
this.offsetSm = 0;
|
|
155
|
+
}
|
|
156
|
+
if (!this.sizeMd) {
|
|
157
|
+
this.sizeMd = 12;
|
|
158
|
+
this.offsetMd = 0;
|
|
159
|
+
}
|
|
160
|
+
if (!this.sizeLg) {
|
|
161
|
+
this.sizeLg = 10;
|
|
162
|
+
this.offsetLg = 1;
|
|
163
|
+
}
|
|
164
|
+
if (!this.sizeXl) {
|
|
165
|
+
this.sizeXl = 8;
|
|
166
|
+
this.offsetXl = 2;
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
onModelCancel(cancel) {
|
|
170
|
+
this.modelCancel.emit(cancel);
|
|
171
|
+
}
|
|
172
|
+
handleError(error) {
|
|
173
|
+
if (this.showError) {
|
|
174
|
+
this.util.errorHandler(error);
|
|
175
|
+
}
|
|
176
|
+
this.onError.emit(error);
|
|
177
|
+
}
|
|
178
|
+
static { this.ɵfac = function FormBuilderPage_Factory(t) { return new (t || FormBuilderPage)(i0.ɵɵdirectiveInject(i1.UtilService), i0.ɵɵdirectiveInject(i2.LoggerService), i0.ɵɵdirectiveInject(i3.QuestionService), i0.ɵɵdirectiveInject(i4.ActivatedRoute), i0.ɵɵdirectiveInject(i5.NavController), i0.ɵɵdirectiveInject(i6.Title), i0.ɵɵdirectiveInject(i7.LoginService)); }; }
|
|
179
|
+
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: FormBuilderPage, selectors: [["app-form-builder"]], viewQuery: function FormBuilderPage_Query(rf, ctx) { if (rf & 1) {
|
|
180
|
+
i0.ɵɵviewQuery(_c0, 5);
|
|
181
|
+
} if (rf & 2) {
|
|
182
|
+
let _t;
|
|
183
|
+
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.questionnaire = _t.first);
|
|
184
|
+
} }, inputs: { autoSave: "autoSave", pageType: "pageType", hideHeader: "hideHeader", hideFooter: "hideFooter", flowKey: "flowKey", showOnlyQuestion: "showOnlyQuestion", dynamicParam: "dynamicParam", sizeXs: "sizeXs", sizeSm: "sizeSm", sizeMd: "sizeMd", sizeLg: "sizeLg", sizeXl: "sizeXl", offsetXs: "offsetXs", offsetSm: "offsetSm", offsetMd: "offsetMd", offsetLg: "offsetLg", offsetXl: "offsetXl", data: "data", showError: "showError", readonly: "readonly", multiMode: "multiMode", readOnlyFields: "readOnlyFields" }, outputs: { modelCancel: "modelCancel", onComplete: "onComplete", onError: "onError", onLoadComplete: "onLoadComplete" }, features: [i0.ɵɵInheritDefinitionFeature], decls: 4, vars: 4, consts: [[4, "ngIf"], ["style", "display: contents;", 3, "backButtonPage", "nextButtonPage", "loaderService", "pageType", "queryModel", "formData", "hideHeader", "autoSave", "hideFooter", "sizeXs", "sizeSm", "sizeMd", "sizeLg", "sizeXl", "offsetXs", "offsetSm", "offsetMd", "offsetLg", "offsetXl", "dynamicParam", "mfaRequired", "readonly", "multiMode", "readOnlyFields", "modelCancel", "onComplete", "onError", "onLoadComplete", 4, "ngIf"], ["class", "ion-text-center ion-padding", 4, "ngIf"], [3, "secondToolbar", "displayLogo"], [3, "showHelp", "hideFooter"], ["style", "display: contents;", 3, "backButtonPage", "nextButtonPage", "loaderService", "pageType", "queryModel", "data", "hideHeader", "autoSave", "hideFooter", "sizeXs", "sizeSm", "sizeMd", "sizeLg", "sizeXl", "offsetXs", "offsetSm", "offsetMd", "offsetLg", "offsetXl", "dynamicParam", "mfaRequired", "readonly", "multiMode", "readOnlyFields", "modelCancel", "onComplete", "onError", "onLoadComplete", 4, "ngIf"], [2, "display", "contents", 3, "backButtonPage", "nextButtonPage", "loaderService", "pageType", "queryModel", "data", "hideHeader", "autoSave", "hideFooter", "sizeXs", "sizeSm", "sizeMd", "sizeLg", "sizeXl", "offsetXs", "offsetSm", "offsetMd", "offsetLg", "offsetXl", "dynamicParam", "mfaRequired", "readonly", "multiMode", "readOnlyFields", "modelCancel", "onComplete", "onError", "onLoadComplete"], ["questionnaire", ""], [2, "display", "contents", 3, "backButtonPage", "nextButtonPage", "loaderService", "pageType", "queryModel", "formData", "hideHeader", "autoSave", "hideFooter", "sizeXs", "sizeSm", "sizeMd", "sizeLg", "sizeXl", "offsetXs", "offsetSm", "offsetMd", "offsetLg", "offsetXl", "dynamicParam", "mfaRequired", "readonly", "multiMode", "readOnlyFields", "modelCancel", "onComplete", "onError", "onLoadComplete"], [1, "ion-text-center", "ion-padding"], ["name", "dots"]], template: function FormBuilderPage_Template(rf, ctx) { if (rf & 1) {
|
|
185
|
+
i0.ɵɵtemplate(0, FormBuilderPage_ion_header_0_Template, 2, 2, "ion-header", 0)(1, FormBuilderPage_ion_content_1_Template, 3, 3, "ion-content", 0)(2, FormBuilderPage_app_questionnaire_2_Template, 2, 24, "app-questionnaire", 1)(3, FormBuilderPage_div_3_Template, 2, 0, "div", 2);
|
|
186
|
+
} if (rf & 2) {
|
|
187
|
+
i0.ɵɵproperty("ngIf", ctx.pageType != "POPUP" && !ctx.hideHeader);
|
|
188
|
+
i0.ɵɵadvance(1);
|
|
189
|
+
i0.ɵɵproperty("ngIf", !ctx.showOnlyQuestion);
|
|
190
|
+
i0.ɵɵadvance(1);
|
|
191
|
+
i0.ɵɵproperty("ngIf", !ctx.showLoaderTheme12 && ctx.showOnlyQuestion);
|
|
192
|
+
i0.ɵɵadvance(1);
|
|
193
|
+
i0.ɵɵproperty("ngIf", ctx.showLoaderTheme12);
|
|
194
|
+
} }, styles: ["[_nghost-%COMP%] .p-dialog-header{display:none}"] }); }
|
|
195
|
+
}
|
|
196
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(FormBuilderPage, [{
|
|
197
|
+
type: Component,
|
|
198
|
+
args: [{ selector: 'app-form-builder', template: "<ion-header *ngIf=\"pageType!='POPUP' && !hideHeader\">\r\n <app-header [secondToolbar]=\"false\" [displayLogo]=\"!loginService.getUser()\"></app-header>\r\n</ion-header>\r\n<ion-content *ngIf=\"!showOnlyQuestion\">\r\n <app-content [showHelp]=\"false\" [hideFooter]=\"true\">\r\n <app-questionnaire #questionnaire style=\"display: contents;\" [backButtonPage]=\"backButtonPage\" \r\n [nextButtonPage]=\"nextButtonPage\" [loaderService]=\"loaderService\" [pageType]=\"pageType\" *ngIf=\"!showLoaderTheme12\" (modelCancel)=\"onModelCancel($event)\"\r\n [queryModel]=\"queryModel\" [data]=\"data\" (onComplete)=\"complete($event)\" [hideHeader]=\"hideHeader\" [autoSave]=\"autoSave\" [hideFooter]=\"hideFooter\"\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)\" [dynamicParam]=\"dynamicParam\" [mfaRequired]=\"model.isMfaRequired\" [readonly]=\"readonly\" [multiMode]=\"multiMode\"\r\n [readOnlyFields]=\"readOnlyFields\" (onLoadComplete)=\"loadComplete($event)\"></app-questionnaire>\r\n </app-content>\r\n</ion-content>\r\n<app-questionnaire #questionnaire style=\"display: contents;\" [backButtonPage]=\"backButtonPage\" \r\n [nextButtonPage]=\"nextButtonPage\" [loaderService]=\"loaderService\" [pageType]=\"pageType\" *ngIf=\"!showLoaderTheme12 && showOnlyQuestion\" (modelCancel)=\"onModelCancel($event)\"\r\n [queryModel]=\"queryModel\" [formData]=\"data\" (onComplete)=\"complete($event)\" [hideHeader]=\"hideHeader\" [autoSave]=\"autoSave\" [hideFooter]=\"hideFooter\"\r\n [sizeXs]=\"sizeXs\" [sizeSm]=\"sizeSm\" [sizeMd]=\"sizeMd\" [sizeLg]=\"sizeLg\" [sizeXl]=\"sizeXl\" \r\n [offsetXs]=\"offsetXs\" [offsetSm]=\"offsetSm\" [offsetMd]=\"offsetMd\" [offsetLg]=\"offsetLg\" [offsetXl]=\"offsetXl\" (onError)=\"handleError($event)\"\r\n [dynamicParam]=\"dynamicParam\" [mfaRequired]=\"model.isMfaRequired\" [readonly]=\"readonly\" [multiMode]=\"multiMode\" [readOnlyFields]=\"readOnlyFields\"\r\n (onLoadComplete)=\"loadComplete($event)\"></app-questionnaire>\r\n\r\n<div class=\"ion-text-center ion-padding\" *ngIf=\"showLoaderTheme12\">\r\n <ion-spinner name=\"dots\"></ion-spinner>\r\n</div>\r\n", styles: [":host ::ng-deep .p-dialog-header{display:none}\n"] }]
|
|
199
|
+
}], () => [{ type: i1.UtilService }, { type: i2.LoggerService }, { type: i3.QuestionService }, { type: i4.ActivatedRoute }, { type: i5.NavController }, { type: i6.Title }, { type: i7.LoginService }], { questionnaire: [{
|
|
200
|
+
type: ViewChild,
|
|
201
|
+
args: ['questionnaire']
|
|
202
|
+
}], autoSave: [{
|
|
203
|
+
type: Input
|
|
204
|
+
}], pageType: [{
|
|
205
|
+
type: Input
|
|
206
|
+
}], hideHeader: [{
|
|
207
|
+
type: Input
|
|
208
|
+
}], hideFooter: [{
|
|
209
|
+
type: Input
|
|
210
|
+
}], flowKey: [{
|
|
211
|
+
type: Input
|
|
212
|
+
}], showOnlyQuestion: [{
|
|
213
|
+
type: Input
|
|
214
|
+
}], dynamicParam: [{
|
|
215
|
+
type: Input
|
|
216
|
+
}], modelCancel: [{
|
|
217
|
+
type: Output
|
|
218
|
+
}], onComplete: [{
|
|
219
|
+
type: Output
|
|
220
|
+
}], onError: [{
|
|
221
|
+
type: Output
|
|
222
|
+
}], sizeXs: [{
|
|
223
|
+
type: Input
|
|
224
|
+
}], sizeSm: [{
|
|
225
|
+
type: Input
|
|
226
|
+
}], sizeMd: [{
|
|
227
|
+
type: Input
|
|
228
|
+
}], sizeLg: [{
|
|
229
|
+
type: Input
|
|
230
|
+
}], sizeXl: [{
|
|
231
|
+
type: Input
|
|
232
|
+
}], offsetXs: [{
|
|
233
|
+
type: Input
|
|
234
|
+
}], offsetSm: [{
|
|
235
|
+
type: Input
|
|
236
|
+
}], offsetMd: [{
|
|
237
|
+
type: Input
|
|
238
|
+
}], offsetLg: [{
|
|
239
|
+
type: Input
|
|
240
|
+
}], offsetXl: [{
|
|
241
|
+
type: Input
|
|
242
|
+
}], data: [{
|
|
243
|
+
type: Input
|
|
244
|
+
}], showError: [{
|
|
245
|
+
type: Input
|
|
246
|
+
}], readonly: [{
|
|
247
|
+
type: Input
|
|
248
|
+
}], multiMode: [{
|
|
249
|
+
type: Input
|
|
250
|
+
}], readOnlyFields: [{
|
|
251
|
+
type: Input
|
|
252
|
+
}], onLoadComplete: [{
|
|
253
|
+
type: Output
|
|
254
|
+
}] }); })();
|
|
255
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(FormBuilderPage, { className: "FormBuilderPage", filePath: "lib\\components\\questionnaire\\form-builder\\form-builder.page.ts", lineNumber: 21 }); })();
|
|
256
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm9ybS1idWlsZGVyLnBhZ2UuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9uZ3gtcmV1c2EtYXBwLWxpYi9zcmMvbGliL2NvbXBvbmVudHMvcXVlc3Rpb25uYWlyZS9mb3JtLWJ1aWxkZXIvZm9ybS1idWlsZGVyLnBhZ2UudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9uZ3gtcmV1c2EtYXBwLWxpYi9zcmMvbGliL2NvbXBvbmVudHMvcXVlc3Rpb25uYWlyZS9mb3JtLWJ1aWxkZXIvZm9ybS1idWlsZGVyLnBhZ2UuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLFlBQVksRUFBRSxLQUFLLEVBQVUsTUFBTSxFQUFFLFNBQVMsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUsxRixPQUFPLEVBQUUsS0FBSyxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFHdkMsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLHlCQUF5QixDQUFDOzs7Ozs7Ozs7OztJQ1JuRCxrQ0FBcUQ7SUFDakQsZ0NBQXlGO0lBQzdGLGlCQUFhOzs7SUFERyxlQUF1QjtJQUF2QixxQ0FBdUIsK0NBQUE7Ozs7SUFJL0IsK0NBTTBFO0lBTHlDLHNOQUFlLGVBQUEsNEJBQXFCLENBQUEsSUFBQyx1TUFDbEcsZUFBQSx1QkFBZ0IsQ0FBQSxJQURrRixpTUFJN0ksZUFBQSwwQkFBbUIsQ0FBQSxJQUowSCxnTkFLcEcsZUFBQSw0QkFBb0IsQ0FBQSxJQUxnRjtJQUs5RSxpQkFBb0I7OztJQU5qQyxzREFBaUMseUNBQUEsdUNBQUEsNkJBQUEsaUNBQUEscUJBQUEsaUNBQUEsNkJBQUEsaUNBQUEseUJBQUEseUJBQUEseUJBQUEseUJBQUEseUJBQUEsNkJBQUEsNkJBQUEsNkJBQUEsNkJBQUEsNkJBQUEscUNBQUEsMkNBQUEsNkJBQUEsK0JBQUEseUNBQUE7OztJQUZ0RyxtQ0FBdUMscUJB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QyxlQUFlO1lBY2pCLFFBQVE7a0JBQWhCLEtBQUs7WUFFVSxRQUFRO2tCQUF2QixLQUFLO1lBRUcsVUFBVTtrQkFBbEIsS0FBSztZQUVHLFVBQVU7a0JBQWxCLEtBQUs7WUFFSSxPQUFPO2tCQUFoQixLQUFLO1lBRUksZ0JBQWdCO2tCQUF6QixLQUFLO1lBRUcsWUFBWTtrQkFBcEIsS0FBSztZQUVLLFdBQVc7a0JBQXJCLE1BQU07WUFFRyxVQUFVO2tCQUFuQixNQUFNO1lBRUcsT0FBTztrQkFBaEIsTUFBTTtZQUVFLE1BQU07a0JBQWQsS0FBSztZQUNHLE1BQU07a0JBQWQsS0FBSztZQUNHLE1BQU07a0JBQWQsS0FBSztZQUNHLE1BQU07a0JBQWQsS0FBSztZQUNHLE1BQU07a0JBQWQsS0FBSztZQUVHLFFBQVE7a0JBQWhCLEtBQUs7WUFDRyxRQUFRO2tCQUFoQixLQUFLO1lBQ0csUUFBUTtrQkFBaEIsS0FBSztZQUNHLFFBQVE7a0JBQWhCLEtBQUs7WUFDRyxRQUFRO2tCQUFoQixLQUFLO1lBR04sSUFBSTtrQkFESCxLQUFLO1lBR0csU0FBUztrQkFBakIsS0FBSztZQUVHLFFBQVE7a0JBQWhCLEtBQUs7WUFFRyxTQUFTO2tCQUFqQixLQUFLO1lBRUcsY0FBYztrQkFBdEIsS0FBSztZQUVJLGNBQWM7a0JBQXZCLE1BQU07O2tGQTNESSxlQUFlIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBFdmVudEVtaXR0ZXIsIElucHV0LCBPbkluaXQsIE91dHB1dCwgVmlld0NoaWxkIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IFRpdGxlIH0gZnJvbSAnQGFuZ3VsYXIvcGxhdGZvcm0tYnJvd3Nlcic7XHJcbmltcG9ydCB7IEFjdGl2YXRlZFJvdXRlIH0gZnJvbSAnQGFuZ3VsYXIvcm91dGVyJztcclxuaW1wb3J0IHsgTmF2Q29udHJvbGxlciB9IGZyb20gJ0Bpb25pYy9hbmd1bGFyJztcclxuXHJcbmltcG9ydCB7IGZpcnN0IH0gZnJvbSAncnhqcy9vcGVyYXRvcnMnO1xyXG5pbXBvcnQgeyBGQkNvbmZpZ01vZGVsIH0gZnJvbSAnLi4vLi4vLi4vbW9kZWxzL3F1ZXN0aW9ubmFpcmUvRkJDb25maWdNb2RlbCc7XHJcbmltcG9ydCB7IFF1ZXN0aW9ubmFpcmVRdWVyeU1vZGVsIH0gZnJvbSAnLi4vLi4vLi4vbW9kZWxzL3F1ZXN0aW9ubmFpcmUvUXVlc3Rpb25uYWlyZVF1ZXJ5TW9kZWwnO1xyXG5pbXBvcnQgeyBCYXNlUGFnZSB9IGZyb20gJy4uLy4uLy4uL3BhZ2VzL0Jhc2VQYWdlJztcclxuaW1wb3J0IHsgTG9nZ2VyU2VydmljZSB9IGZyb20gJy4uLy4uLy4uL3NlcnZpY2VzL2xvZ2dlci9sb2dnZXIuc2VydmljZSc7XHJcbmltcG9ydCB7IExvZ2luU2VydmljZSB9IGZyb20gJy4uLy4uLy4uL3NlcnZpY2VzL2xvZ2luL2xvZ2luLnNlcnZpY2UnO1xyXG5pbXBvcnQgeyBVdGlsU2VydmljZSB9IGZyb20gJy4uLy4uLy4uL3NlcnZpY2VzL3V0aWwvdXRpbC5zZXJ2aWNlJztcclxuXHJcbmltcG9ydCB7IFF1ZXN0aW9uU2VydmljZSB9IGZyb20gJy4uLy4uL3F1ZXN0aW9ubmFpcmUvcXVlc3Rpb24uc2VydmljZSc7XHJcbmltcG9ydCB7IFJlbmRlclF1ZXN0aW9ubmFpcmVQYWdlIH0gZnJvbSAnLi4vcmVuZGVyLXF1ZXN0aW9ubmFpcmUvcmVuZGVyLXF1ZXN0aW9ubmFpcmUucGFnZSc7XHJcbkBDb21wb25lbnQoe1xyXG4gIHNlbGVjdG9yOiAnYXBwLWZvcm0tYnVpbGRlcicsXHJcbiAgdGVtcGxhdGVVcmw6ICcuL2Zvcm0tYnVpbGRlci5wYWdlLmh0bWwnLFxyXG4gIHN0eWxlVXJsczogWycuL2Zvcm0tYnVpbGRlci5wYWdlLnNjc3MnXSxcclxufSlcclxuZXhwb3J0IGNsYXNzIEZvcm1CdWlsZGVyUGFnZSBleHRlbmRzIEJhc2VQYWdlIGltcGxlbWVudHMgT25Jbml0IHtcclxuXHJcbiAgQFZpZXdDaGlsZCgncXVlc3Rpb25uYWlyZScpIHF1ZXN0aW9ubmFpcmUgOiBSZW5kZXJRdWVzdGlvbm5haXJlUGFnZTtcclxuICBnZXQgaW52YWxpZCgpIHtcclxuICAgIHJldHVybiB0aGlzLnF1ZXN0aW9ubmFpcmUuaW52YWxpZDtcclxuICB9XHJcbiAgcHVibGljIHNob3dMb2FkZXJUaGVtZTEyOiBib29sZWFuID0gdHJ1ZTtcclxuICBwdWJsaWMgYmFja0J1dHRvblBhZ2U6IHN0cmluZztcclxuICBwdWJsaWMgbmV4dEJ1dHRvblBhZ2U6IHN0cmluZztcclxuXHJcbiAgcHVibGljIGxvYWRlclNlcnZpY2U6c3RyaW5nO1xyXG4gIFxyXG4gIHB1YmxpYyBxdWVyeU1vZGVsOiBRdWVzdGlvbm5haXJlUXVlcnlNb2RlbDtcclxuXHJcbiAgbW9kZWw6IEZCQ29uZmlnTW9kZWw7XHJcblxyXG4gIEBJbnB1dCgpIGF1dG9TYXZlOiBib29sZWFuID0gdHJ1ZTtcclxuXHJcbiAgQElucHV0KCkgcHVibGljIHBhZ2VUeXBlOiBzdHJpbmc7XHJcblxyXG4gIEBJbnB1dCgpIGhpZGVIZWFkZXIgOiBib29sZWFuID0gZmFsc2U7XHJcblxyXG4gIEBJbnB1dCgpIGhpZGVGb290ZXIgOiBib29sZWFuID0gZmFsc2U7XHJcbiAgXHJcbiAgQElucHV0KCkgIGZsb3dLZXk6IHN0cmluZztcclxuXHJcbiAgQElucHV0KCkgIHNob3dPbmx5UXVlc3Rpb246IGJvb2xlYW4gPSBmYWxzZTtcclxuXHJcbiAgQElucHV0KCkgZHluYW1pY1BhcmFtOmFueTtcclxuICBcclxuICBAT3V0cHV0KCkgIG1vZGVsQ2FuY2VsID0gbmV3IEV2ZW50RW1pdHRlcjxib29sZWFuPigpO1xyXG5cclxuICBAT3V0cHV0KCkgb25Db21wbGV0ZSA9IG5ldyBFdmVudEVtaXR0ZXIoKTtcclxuXHJcbiAgQE91dHB1dCgpIG9uRXJyb3IgPSBuZXcgRXZlbnRFbWl0dGVyKCk7XHJcblxyXG4gIEBJbnB1dCgpIHNpemVYcyA6IG51bWJlcjtcclxuICBASW5wdXQoKSBzaXplU20gOiBudW1iZXI7XHJcbiAgQElucHV0KCkgc2l6ZU1kIDogbnVtYmVyO1xyXG4gIEBJbnB1dCgpIHNpemVMZyA6IG51bWJlcjtcclxuICBASW5wdXQoKSBzaXplWGwgOiBudW1iZXI7XHJcblxyXG4gIEBJbnB1dCgpIG9mZnNldFhzIDogbnVtYmVyO1xyXG4gIEBJbnB1dCgpIG9mZnNldFNtIDogbnVtYmVyO1xyXG4gIEBJbnB1dCgpIG9mZnNldE1kIDogbnVtYmVyO1xyXG4gIEBJbnB1dCgpIG9mZnNldExnIDogbnVtYmVyO1xyXG4gIEBJbnB1dCgpIG9mZnNldFhsIDogbnVtYmVyO1xyXG5cclxuICBASW5wdXQoKVxyXG4gIGRhdGE6IGFueTtcclxuXHJcbiAgQElucHV0KCkgc2hvd0Vycm9yOiBib29sZWFuID0gdHJ1ZTtcclxuXHJcbiAgQElucHV0KCkgcmVhZG9ubHk6IEJvb2xlYW4gPSBmYWxzZTtcclxuXHJcbiAgQElucHV0KCkgbXVsdGlNb2RlOiBib29sZWFuID0gZmFsc2U7XHJcbiAgXHJcbiAgQElucHV0KCkgcmVhZE9ubHlGaWVsZHM6IHN0cmluZ1tdO1xyXG5cclxuICBAT3V0cHV0KCkgb25Mb2FkQ29tcGxldGUgPSBuZXcgRXZlbnRFbWl0dGVyKCk7XHJcblxyXG4gIGNvbnN0cnVjdG9yKHB1YmxpYyB1dGlsOiBVdGlsU2VydmljZSwgcHVibGljIGxvZ2dlcjogTG9nZ2VyU2VydmljZSwgcHVibGljIHNlcnZpY2U6IFF1ZXN0aW9uU2VydmljZSwgXHJcbiAgICAgICAgICAgICAgcHJpdmF0ZSBhY3RpdmF0ZWRSb3V0ZTogQWN0aXZhdGVkUm91dGUsIHByaXZhdGUgbmF2OiBOYXZDb250cm9sbGVyLCBwdWJsaWMgdGl0bGVTZXJ2aWNlOiBUaXRsZSxcclxuICAgICAgICAgICAgICBwdWJsaWMgbG9naW5TZXJ2aWNlOkxvZ2luU2VydmljZSkge1xyXG4gICAgc3VwZXIoKTtcclxuICB9XHJcblxyXG4gIHB1YmxpYyBzdWJtaXRRdWVzdGlvbm5haXJlKCl7XHJcbiAgICB0aGlzLnF1ZXN0aW9ubmFpcmUuc3VibWl0KCk7XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgZ2V0RGlydHlJdGVtcygpIDogc3RyaW5nW117XHJcbiAgICByZXR1cm4gdGhpcy5xdWVzdGlvbm5haXJlLmdldERpcnR5SXRlbXMoKTtcclxuICB9XHJcblxyXG4gIHB1YmxpYyBnZXREaXJ0eUl0ZW1zV2l0aFZhbHVlcygpOiBBcnJheTx7IGNvbnRyb2xOYW1lOiBzdHJpbmcsIGNvbnRyb2xWYWx1ZTogYW55IH0+ICB7XHJcbiAgICByZXR1cm4gdGhpcy5xdWVzdGlvbm5haXJlLmdldERpcnR5SXRlbXNXaXRoVmFsdWVzKCk7XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgcGF5bWVudERldGFpbHNDaGFuZ2VFcnJvcigpe1xyXG4gICAgcmV0dXJuIHRoaXMucXVlc3Rpb25uYWlyZS5wYXltZW50RGV0YWlsc0NoYW5nZUVycm9yKCk7XHJcbiAgfVxyXG5cclxuICBsb2FkQ29tcGxldGUoZXZlbnQpIHtcclxuICAgIHRoaXMub25Mb2FkQ29tcGxldGUuZW1pdChldmVudCk7XHJcbiAgfVxyXG5cclxuICBjb21wbGV0ZShldmVudCl7XHJcbiAgICB0aGlzLm9uQ29tcGxldGUuZW1pdChldmVudCk7XHJcbiAgfVxyXG5cclxuICBuZ09uSW5pdCgpIHtcclxuICAgIGxldCBkYXRhID0gdGhpcy5hY3RpdmF0ZWRSb3V0ZS5zbmFwc2hvdC5xdWVyeVBhcmFtTWFwLmdldCgnZGF0YScpO1xyXG4gICAgaWYoZGF0YSl7XHJcbiAgICAgIHRoaXMuZHluYW1pY1BhcmFtID0gSlNPTi5wYXJzZShhdG9iKGRhdGEpKTtcclxuICAgIH1cclxuICAgIGlmICh0aGlzLmZsb3dLZXkpIHtcclxuICAgICAgdGhpcy5nZXRGbG93RGF0YSh0aGlzLmZsb3dLZXkpO1xyXG4gICAgfSBlbHNlIHtcclxuICAgICAgdGhpcy5hY3RpdmF0ZWRSb3V0ZVxyXG4gICAgICAgIC5wYXJhbXNcclxuICAgICAgICAucGlwZShmaXJzdCgpKVxyXG4gICAgICAgIC5zdWJzY3JpYmUocGFyYW1zID0+IHtcclxuICAgICAgICAgIGxldCBrZXkgPSBwYXJhbXNbJ2tleSddO1xyXG4gICAgICAgIFxyXG4gICAgICAgICAgdGhpcy5nZXRGbG93RGF0YShrZXkpO1xyXG4gICAgICAgIH0pO1xyXG4gICAgfVxyXG4gIH1cclxuXHJcbiAgZ2V0Rmxvd0RhdGEoa2V5OiBzdHJpbmcpIHtcclxuICAgIHRoaXMuc2VydmljZS5nZXRGbG93RGF0YShrZXkpLnN1YnNjcmliZShcclxuICAgICAgcmVzID0+IHtcclxuICAgICAgICBpZiAoIXJlcyB8fCAhcmVzLmZsb3dJZCkge1xyXG4gICAgICAgICAgdGhpcy5uYXYubmF2aWdhdGVSb290KCdub3QtZm91bmQnKTtcclxuICAgICAgICB9XHJcblxyXG4gICAgICAgIHRoaXMubW9kZWwgPSByZXM7XHJcbiAgICAgICAgaWYgKHRoaXMubW9kZWwuYXV0aGVudGljYXRpb25SZXF1aXJlZCA9PT0gJ1knICYmICF0aGlzLmxvZ2luU2VydmljZS5pc0xvZ2dlZEluKCkpIHtcclxuICAgICAgICAgIHRoaXMubmF2Lm5hdmlnYXRlUm9vdCgnbG9naW4nKS50aGVuKCgpID0+IHsgXHJcbiAgICAgICAgICAgIHRoaXMudXRpbC5zaG93RXJyb3IoXCJVc2VyIG5vdCBsb2dnZWQgaW4uXCIpO1xyXG4gICAgICAgICAgfSk7XHJcbiAgICAgICAgICByZXR1cm47XHJcbiAgICAgICAgfVxyXG5cclxuICAgICAgICB0aGlzLnF1ZXJ5TW9kZWwgPSBKU09OLnBhcnNlKHRoaXMubW9kZWwuZmxvd0lkKTtcclxuICAgICAgICB0aGlzLnF1ZXJ5TW9kZWwuaXNTY3JlZW5RdWVzdGlvbm5haXJlID0gdHJ1ZTtcclxuICAgICAgICB0aGlzLm1vZGVsLmlzTWZhUmVxdWlyZWQgPSB0aGlzLnF1ZXJ5TW9kZWwuaXNNZmFSZXF1aXJlZCA/IHRoaXMucXVlcnlNb2RlbC5pc01mYVJlcXVpcmVkIDogZmFsc2U7XHJcbiAgICAgICAgdGhpcy5uZXh0QnV0dG9uUGFnZSA9IHRoaXMubW9kZWwubmV4dFBhZ2U7XHJcbiAgICAgICAgdGhpcy50aXRsZVNlcnZpY2Uuc2V0VGl0bGUodGhpcy5tb2RlbC5wYWdlVGl0bGUpO1xyXG4gICAgICAgIHRoaXMuYmFja0J1dHRvblBhZ2UgPSB0aGlzLm1vZGVsLmJhY2tQYWdlO1xyXG4gICAgICAgIGlmKHRoaXMubW9kZWwudHlwZSl7XHJcbiAgICAgICAgICB0aGlzLnBhZ2VUeXBlID0gdGhpcy5tb2RlbC50eXBlO1xyXG4gICAgICAgIH1cclxuXHJcbiAgICAgICAgdGhpcy5zZXRTaXplcygpO1xyXG4gICAgICAgIHRoaXMubG9hZGVyU2VydmljZSA9dGhpcy5tb2RlbC5sb2FkZXJTZXJ2aWNlO1xyXG4gICAgICAgIHRoaXMuc2hvd0xvYWRlclRoZW1lMTIgPSBmYWxzZTtcclxuICAgICAgfVxyXG4gICAgICAsXHJcbiAgICAgIGVyciA9PiB7XHJcbiAgICAgICAgdGhpcy51dGlsLmhpZGVMb2FkZXIoKTtcclxuICAgICAgICB0aGlzLnV0aWwuZXJyb3JIYW5kbGVyKGVycik7XHJcbiAgICAgIH1cclxuXHJcbiAgICApO1xyXG4gIH1cclxuXHJcbiAgcHJpdmF0ZSBzZXRTaXplcygpIHtcclxuICAgIGlmICghdGhpcy5zaXplWHMpIHtcclxuICAgICAgdGhpcy5zaXplWHMgPSAxMjtcclxuICAgICAgdGhpcy5vZmZzZXRYcyA9IDA7XHJcbiAgICB9XHJcblxyXG4gICAgaWYgKCF0aGlzLnNpemVTbSkge1xyXG4gICAgICB0aGlzLnNpemVTbSA9IDEyO1xyXG4gICAgICB0aGlzLm9mZnNldFNtID0gMDtcclxuICAgIH1cclxuXHJcbiAgICBpZiAoIXRoaXMuc2l6ZU1kKSB7XHJcbiAgICAgIHRoaXMuc2l6ZU1kID0gMTI7XHJcbiAgICAgIHRoaXMub2Zmc2V0TWQgPSAwO1xyXG4gICAgfVxyXG5cclxuICAgIGlmICghdGhpcy5zaXplTGcpIHtcclxuICAgICAgdGhpcy5zaXplTGcgPSAxMDtcclxuICAgICAgdGhpcy5vZmZzZXRMZyA9IDE7XHJcbiAgICB9XHJcblxyXG4gICAgaWYgKCF0aGlzLnNpemVYbCkge1xyXG4gICAgICB0aGlzLnNpemVYbCA9IDg7XHJcbiAgICAgIHRoaXMub2Zmc2V0WGwgPSAyO1xyXG4gICAgfVxyXG4gIH1cclxuXHJcbiAgb25Nb2RlbENhbmNlbChjYW5jZWw6IGJvb2xlYW4pIHtcclxuICAgIHRoaXMubW9kZWxDYW5jZWwuZW1pdChjYW5jZWwpO1xyXG4gIH1cclxuXHJcbiAgaGFuZGxlRXJyb3IoZXJyb3IpIHtcclxuICAgIGlmKHRoaXMuc2hvd0Vycm9yKXtcclxuICAgICAgdGhpcy51dGlsLmVycm9ySGFuZGxlcihlcnJvcik7XHJcbiAgICB9XHJcbiAgICB0aGlzLm9uRXJyb3IuZW1pdChlcnJvcik7XHJcbiAgfVxyXG59XHJcbiIsIjxpb24taGVhZGVyICpuZ0lmPVwicGFnZVR5cGUhPSdQT1BVUCcgJiYgIWhpZGVIZWFkZXJcIj5cclxuICAgIDxhcHAtaGVhZGVyIFtzZWNvbmRUb29sYmFyXT1cImZhbHNlXCIgW2Rpc3BsYXlMb2dvXT1cIiFsb2dpblNlcnZpY2UuZ2V0VXNlcigpXCI+PC9hcHAtaGVhZGVyPlxyXG48L2lvbi1oZWFkZXI+XHJcbjxpb24tY29udGVudCAqbmdJZj1cIiFzaG93T25seVF1ZXN0aW9uXCI+XHJcbiAgICA8YXBwLWNvbnRlbnQgW3Nob3dIZWxwXT1cImZhbHNlXCIgW2hpZGVGb290ZXJdPVwidHJ1ZVwiPlxyXG4gICAgICAgIDxhcHAtcXVlc3Rpb25uYWlyZSAjcXVlc3Rpb25uYWlyZSBzdHlsZT1cImRpc3BsYXk6IGNvbnRlbnRzO1wiIFtiYWNrQnV0dG9uUGFnZV09XCJiYWNrQnV0dG9uUGFnZVwiIFxyXG4gICAgICAgIFtuZXh0QnV0dG9uUGFnZV09XCJuZXh0QnV0dG9uUGFnZVwiIFtsb2FkZXJTZXJ2aWNlXT1cImxvYWRlclNlcnZpY2VcIiBbcGFnZVR5cGVdPVwicGFnZVR5cGVcIiAqbmdJZj1cIiFzaG93TG9hZGVyVGhlbWUxMlwiIChtb2RlbENhbmNlbCk9XCJvbk1vZGVsQ2FuY2VsKCRldmVudClcIlxyXG4gICAgICAgIFtxdWVyeU1vZGVsXT1cInF1ZXJ5TW9kZWxcIiBbZGF0YV09XCJkYXRhXCIgKG9uQ29tcGxldGUpPVwiY29tcGxldGUoJGV2ZW50KVwiIFtoaWRlSGVhZGVyXT1cImhpZGVIZWFkZXJcIiBbYXV0b1NhdmVdPVwiYXV0b1NhdmVcIiBbaGlkZUZvb3Rlcl09XCJoaWRlRm9vdGVyXCJcclxuICAgICAgICBbc2l6ZVhzXT1cInNpemVYc1wiIFtzaXplU21dPVwic2l6ZVNtXCIgW3NpemVNZF09XCJzaXplTWRcIiBbc2l6ZUxnXT1cInNpemVMZ1wiIFtzaXplWGxdPVwic2l6ZVhsXCIgXHJcbiAgICAgICAgW29mZnNldFhzXT1cIm9mZnNldFhzXCIgW29mZnNldFNtXT1cIm9mZnNldFNtXCIgW29mZnNldE1kXT1cIm9mZnNldE1kXCIgW29mZnNldExnXT1cIm9mZnNldExnXCIgW29mZnNldFhsXT1cIm9mZnNldFhsXCJcclxuICAgICAgICAob25FcnJvcik9XCJoYW5kbGVFcnJvcigkZXZlbnQpXCIgW2R5bmFtaWNQYXJhbV09XCJkeW5hbWljUGFyYW1cIiBbbWZhUmVxdWlyZWRdPVwibW9kZWwuaXNNZmFSZXF1aXJlZFwiIFtyZWFkb25seV09XCJyZWFkb25seVwiIFttdWx0aU1vZGVdPVwibXVsdGlNb2RlXCJcclxuICAgICAgICBbcmVhZE9ubHlGaWVsZHNdPVwicmVhZE9ubHlGaWVsZHNcIiAob25Mb2FkQ29tcGxldGUpPVwibG9hZENvbXBsZXRlKCRldmVudClcIj48L2FwcC1xdWVzdGlvbm5haXJlPlxyXG4gICAgPC9hcHAtY29udGVudD5cclxuPC9pb24tY29udGVudD5cclxuPGFwcC1xdWVzdGlvbm5haXJlICNxdWVzdGlvbm5haXJlIHN0eWxlPVwiZGlzcGxheTogY29udGVudHM7XCIgW2JhY2tCdXR0b25QYWdlXT1cImJhY2tCdXR0b25QYWdlXCIgXHJcbiAgICAgICAgW25leHRCdXR0b25QYWdlXT1cIm5leHRCdXR0b25QYWdlXCIgW2xvYWRlclNlcnZpY2VdPVwibG9hZGVyU2VydmljZVwiIFtwYWdlVHlwZV09XCJwYWdlVHlwZVwiICpuZ0lmPVwiIXNob3dMb2FkZXJUaGVtZTEyICYmIHNob3dPbmx5UXVlc3Rpb25cIiAobW9kZWxDYW5jZWwpPVwib25Nb2RlbENhbmNlbCgkZXZlbnQpXCJcclxuICAgICAgICBbcXVlcnlNb2RlbF09XCJxdWVyeU1vZGVsXCIgW2Zvcm1EYXRhXT1cImRhdGFcIiAob25Db21wbGV0ZSk9XCJjb21wbGV0ZSgkZXZlbnQpXCIgW2hpZGVIZWFkZXJdPVwiaGlkZUhlYWRlclwiIFthdXRvU2F2ZV09XCJhdXRvU2F2ZVwiIFtoaWRlRm9vdGVyXT1cImhpZGVGb290ZXJcIlxyXG4gICAgICAgIFtzaXplWHNdPVwic2l6ZVhzXCIgW3NpemVTbV09XCJzaXplU21cIiBbc2l6ZU1kXT1cInNpemVNZFwiIFtzaXplTGddPVwic2l6ZUxnXCIgW3NpemVYbF09XCJzaXplWGxcIiBcclxuICAgICAgICBbb2Zmc2V0WHNdPVwib2Zmc2V0WHNcIiBbb2Zmc2V0U21dPVwib2Zmc2V0U21cIiBbb2Zmc2V0TWRdPVwib2Zmc2V0TWRcIiBbb2Zmc2V0TGddPVwib2Zmc2V0TGdcIiBbb2Zmc2V0WGxdPVwib2Zmc2V0WGxcIiAob25FcnJvcik9XCJoYW5kbGVFcnJvcigkZXZlbnQpXCJcclxuICAgICAgICBbZHluYW1pY1BhcmFtXT1cImR5bmFtaWNQYXJhbVwiIFttZmFSZXF1aXJlZF09XCJtb2RlbC5pc01mYVJlcXVpcmVkXCIgW3JlYWRvbmx5XT1cInJlYWRvbmx5XCIgW211bHRpTW9kZV09XCJtdWx0aU1vZGVcIiBbcmVhZE9ubHlGaWVsZHNdPVwicmVhZE9ubHlGaWVsZHNcIlxyXG4gICAgICAgIChvbkxvYWRDb21wbGV0ZSk9XCJsb2FkQ29tcGxldGUoJGV2ZW50KVwiPjwvYXBwLXF1ZXN0aW9ubmFpcmU+XHJcblxyXG48ZGl2IGNsYXNzPVwiaW9uLXRleHQtY2VudGVyIGlvbi1wYWRkaW5nXCIgKm5nSWY9XCJzaG93TG9hZGVyVGhlbWUxMlwiPlxyXG4gICAgPGlvbi1zcGlubmVyIG5hbWU9XCJkb3RzXCI+PC9pb24tc3Bpbm5lcj5cclxuPC9kaXY+XHJcbiJdfQ==
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { Directive, HostListener } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export class InputFocus {
|
|
4
|
+
constructor(el, renderer) {
|
|
5
|
+
this.el = el;
|
|
6
|
+
this.renderer = renderer;
|
|
7
|
+
this.focusables = ["pinputtext", "p-inputmask", "input", "select", "textarea", "p-calendar", "radio", "p-dropdown", "p-selectButton", "p-autocomplete", "p-password", "p-checkbox", "p-inputtextarea"];
|
|
8
|
+
}
|
|
9
|
+
onFormSubmit() {
|
|
10
|
+
var element = this.el.nativeElement.querySelector(this.focusables.map(x => `${x}.ng-invalid`).join(","));
|
|
11
|
+
if (element) {
|
|
12
|
+
var primeNgComponent = element.querySelector(this.focusables.map(x => `${x}.p-component`).join(","));
|
|
13
|
+
if (primeNgComponent) {
|
|
14
|
+
primeNgComponent.focus();
|
|
15
|
+
}
|
|
16
|
+
else {
|
|
17
|
+
element.focus();
|
|
18
|
+
}
|
|
19
|
+
//Block for Radio Button Start
|
|
20
|
+
var primeNgComponent1 = element.querySelector("div.p-selectbutton");
|
|
21
|
+
if (primeNgComponent1) {
|
|
22
|
+
var primeNgComponent2 = primeNgComponent1.querySelector("div.p-component");
|
|
23
|
+
if (primeNgComponent2) {
|
|
24
|
+
primeNgComponent2.focus();
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
//Block for Radio Button End
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
static { this.ɵfac = function InputFocus_Factory(t) { return new (t || InputFocus)(i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.Renderer2)); }; }
|
|
31
|
+
static { this.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: InputFocus, selectors: [["", "focusInvalidInput", ""]], hostBindings: function InputFocus_HostBindings(rf, ctx) { if (rf & 1) {
|
|
32
|
+
i0.ɵɵlistener("submit", function InputFocus_submit_HostBindingHandler() { return ctx.onFormSubmit(); });
|
|
33
|
+
} } }); }
|
|
34
|
+
}
|
|
35
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(InputFocus, [{
|
|
36
|
+
type: Directive,
|
|
37
|
+
args: [{
|
|
38
|
+
selector: '[focusInvalidInput]'
|
|
39
|
+
}]
|
|
40
|
+
}], () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }], { onFormSubmit: [{
|
|
41
|
+
type: HostListener,
|
|
42
|
+
args: ['submit']
|
|
43
|
+
}] }); })();
|
|
44
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5wdXQtZm9jdXMuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbmd4LXJldXNhLWFwcC1saWIvc3JjL2xpYi9jb21wb25lbnRzL3F1ZXN0aW9ubmFpcmUvaW5wdXQtZm9jdXMuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsWUFBWSxFQUF5QixNQUFNLGVBQWUsQ0FBQzs7QUFPL0UsTUFBTSxPQUFPLFVBQVU7SUFFckIsWUFBb0IsRUFBYyxFQUFVLFFBQW1CO1FBQTNDLE9BQUUsR0FBRixFQUFFLENBQVk7UUFBVSxhQUFRLEdBQVIsUUFBUSxDQUFXO1FBQy9ELGVBQVUsR0FBRyxDQUFDLFlBQVksRUFBRSxhQUFhLEVBQUUsT0FBTyxFQUFFLFFBQVEsRUFBRSxVQUFVLEVBQUUsWUFBWSxFQUFFLE9BQU8sRUFBRSxZQUFZLEVBQUUsZ0JBQWdCLEVBQUUsZ0JBQWdCLEVBQUUsWUFBWSxFQUFDLFlBQVksRUFBRSxpQkFBaUIsQ0FBQyxDQUFDO0lBRDlILENBQUM7SUFJcEUsWUFBWTtRQUNWLElBQUksT0FBTyxHQUFHLElBQUksQ0FBQyxFQUFFLENBQUMsYUFBYSxDQUFDLGFBQWEsQ0FDL0MsSUFBSSxDQUFDLFVBQVUsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxHQUFHLENBQUMsYUFBYSxDQUFDLENBQUMsSUFBSSxDQUFDLEdBQUcsQ0FBQyxDQUN0RCxDQUFDO1FBRUYsSUFBSSxPQUFPLEVBQUU7WUFDWCxJQUFJLGdCQUFnQixHQUFHLE9BQU8sQ0FBQyxhQUFhLENBQzFDLElBQUksQ0FBQyxVQUFVLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQyxFQUFFLENBQUMsR0FBRyxDQUFDLGNBQWMsQ0FBQyxDQUFDLElBQUksQ0FBQyxHQUFHLENBQUMsQ0FDdkQsQ0FBQztZQUNGLElBQUksZ0JBQWdCLEVBQUU7Z0JBQ3BCLGdCQUFnQixDQUFDLEtBQUssRUFBRSxDQUFDO2FBQzFCO2lCQUFNO2dCQUNMLE9BQU8sQ0FBQyxLQUFLLEVBQUUsQ0FBQzthQUNqQjtZQUdELDhCQUE4QjtZQUU5QixJQUFJLGlCQUFpQixHQUFHLE9BQU8sQ0FBQyxhQUFhLENBQUMsb0JBQW9CLENBQUMsQ0FBQztZQUVwRSxJQUFJLGlCQUFpQixFQUFFO2dCQUNyQixJQUFJLGlCQUFpQixHQUFHLGlCQUFpQixDQUFDLGFBQWEsQ0FBQyxpQkFBaUIsQ0FBQyxDQUFDO2dCQUMzRSxJQUFJLGlCQUFpQixFQUFFO29CQUNyQixpQkFBaUIsQ0FBQyxLQUFLLEVBQUUsQ0FBQztpQkFDM0I7YUFDRjtZQUNELDRCQUE0QjtTQUk3QjtJQUlILENBQUM7MkVBeENVLFVBQVU7b0VBQVYsVUFBVTs2RkFBVixrQkFDYjs7O2lGQURhLFVBQVU7Y0FIdEIsU0FBUztlQUFDO2dCQUNULFFBQVEsRUFBRSxxQkFBcUI7YUFDaEM7bUVBT0MsWUFBWTtrQkFEWCxZQUFZO21CQUFDLFFBQVEiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBEaXJlY3RpdmUsIEhvc3RMaXN0ZW5lciwgRWxlbWVudFJlZiwgUmVuZGVyZXIyIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IElucHV0TWFzayB9IGZyb20gJ3ByaW1lbmcvaW5wdXRtYXNrJztcclxuXHJcblxyXG5ARGlyZWN0aXZlKHtcclxuICBzZWxlY3RvcjogJ1tmb2N1c0ludmFsaWRJbnB1dF0nXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBJbnB1dEZvY3VzIHtcclxuXHJcbiAgY29uc3RydWN0b3IocHJpdmF0ZSBlbDogRWxlbWVudFJlZiwgcHJpdmF0ZSByZW5kZXJlcjogUmVuZGVyZXIyKSB7IH1cclxuICBmb2N1c2FibGVzID0gW1wicGlucHV0dGV4dFwiLCBcInAtaW5wdXRtYXNrXCIsIFwiaW5wdXRcIiwgXCJzZWxlY3RcIiwgXCJ0ZXh0YXJlYVwiLCBcInAtY2FsZW5kYXJcIiwgXCJyYWRpb1wiLCBcInAtZHJvcGRvd25cIiwgXCJwLXNlbGVjdEJ1dHRvblwiLCBcInAtYXV0b2NvbXBsZXRlXCIsIFwicC1wYXNzd29yZFwiLFwicC1jaGVja2JveFwiLCBcInAtaW5wdXR0ZXh0YXJlYVwiXTtcclxuXHJcbiAgQEhvc3RMaXN0ZW5lcignc3VibWl0JylcclxuICBvbkZvcm1TdWJtaXQoKSB7XHJcbiAgICB2YXIgZWxlbWVudCA9IHRoaXMuZWwubmF0aXZlRWxlbWVudC5xdWVyeVNlbGVjdG9yKFxyXG4gICAgICB0aGlzLmZvY3VzYWJsZXMubWFwKHggPT4gYCR7eH0ubmctaW52YWxpZGApLmpvaW4oXCIsXCIpXHJcbiAgICApO1xyXG5cclxuICAgIGlmIChlbGVtZW50KSB7XHJcbiAgICAgIHZhciBwcmltZU5nQ29tcG9uZW50ID0gZWxlbWVudC5xdWVyeVNlbGVjdG9yKFxyXG4gICAgICAgIHRoaXMuZm9jdXNhYmxlcy5tYXAoeCA9PiBgJHt4fS5wLWNvbXBvbmVudGApLmpvaW4oXCIsXCIpXHJcbiAgICAgICk7XHJcbiAgICAgIGlmIChwcmltZU5nQ29tcG9uZW50KSB7XHJcbiAgICAgICAgcHJpbWVOZ0NvbXBvbmVudC5mb2N1cygpO1xyXG4gICAgICB9IGVsc2Uge1xyXG4gICAgICAgIGVsZW1lbnQuZm9jdXMoKTtcclxuICAgICAgfVxyXG5cclxuXHJcbiAgICAgIC8vQmxvY2sgZm9yIFJhZGlvIEJ1dHRvbiBTdGFydFxyXG5cclxuICAgICAgdmFyIHByaW1lTmdDb21wb25lbnQxID0gZWxlbWVudC5xdWVyeVNlbGVjdG9yKFwiZGl2LnAtc2VsZWN0YnV0dG9uXCIpO1xyXG5cclxuICAgICAgaWYgKHByaW1lTmdDb21wb25lbnQxKSB7XHJcbiAgICAgICAgdmFyIHByaW1lTmdDb21wb25lbnQyID0gcHJpbWVOZ0NvbXBvbmVudDEucXVlcnlTZWxlY3RvcihcImRpdi5wLWNvbXBvbmVudFwiKTtcclxuICAgICAgICBpZiAocHJpbWVOZ0NvbXBvbmVudDIpIHtcclxuICAgICAgICAgIHByaW1lTmdDb21wb25lbnQyLmZvY3VzKCk7XHJcbiAgICAgICAgfVxyXG4gICAgICB9XHJcbiAgICAgIC8vQmxvY2sgZm9yIFJhZGlvIEJ1dHRvbiBFbmRcclxuXHJcblxyXG5cclxuICAgIH1cclxuXHJcblxyXG5cclxuICB9XHJcbn0iXX0=
|