@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/multi-questionnaire/multi-questionnaire.component.mjs
ADDED
|
@@ -0,0 +1,255 @@
|
|
|
1
|
+
import { Component, EventEmitter, Input, Output, ViewChildren } from "@angular/core";
|
|
2
|
+
import { combineLatest } from "rxjs";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "../../../services/questionnaire/questionnaire.service";
|
|
5
|
+
import * as i2 from "@ionic/angular";
|
|
6
|
+
import * as i3 from "@angular/common";
|
|
7
|
+
import * as i4 from "primeng/api";
|
|
8
|
+
import * as i5 from "primeng/dialog";
|
|
9
|
+
import * as i6 from "../render-questionnaire/render-questionnaire.page";
|
|
10
|
+
import * as i7 from "@ngx-translate/core";
|
|
11
|
+
const _c0 = ["fbs"];
|
|
12
|
+
function MultiQuestionnaireComponent_1_ng_template_0_Template(rf, ctx) { if (rf & 1) {
|
|
13
|
+
i0.ɵɵelementStart(0, "span", 3);
|
|
14
|
+
i0.ɵɵtext(1);
|
|
15
|
+
i0.ɵɵelementEnd();
|
|
16
|
+
} if (rf & 2) {
|
|
17
|
+
const ctx_r5 = i0.ɵɵnextContext(2);
|
|
18
|
+
i0.ɵɵadvance(1);
|
|
19
|
+
i0.ɵɵtextInterpolate(ctx_r5.header);
|
|
20
|
+
} }
|
|
21
|
+
function MultiQuestionnaireComponent_1_Template(rf, ctx) { if (rf & 1) {
|
|
22
|
+
i0.ɵɵtemplate(0, MultiQuestionnaireComponent_1_ng_template_0_Template, 2, 1, "ng-template", 2);
|
|
23
|
+
} }
|
|
24
|
+
function MultiQuestionnaireComponent_div_2_div_1_Template(rf, ctx) { if (rf & 1) {
|
|
25
|
+
const _r12 = i0.ɵɵgetCurrentView();
|
|
26
|
+
i0.ɵɵelementStart(0, "div")(1, "app-questionnaire", 5, 6);
|
|
27
|
+
i0.ɵɵlistener("modelCancel", function MultiQuestionnaireComponent_div_2_div_1_Template_app_questionnaire_modelCancel_1_listener() { i0.ɵɵrestoreView(_r12); const ctx_r11 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r11.close()); })("onComplete", function MultiQuestionnaireComponent_div_2_div_1_Template_app_questionnaire_onComplete_1_listener($event) { i0.ɵɵrestoreView(_r12); const ctx_r13 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r13.complete($event)); });
|
|
28
|
+
i0.ɵɵelementEnd()();
|
|
29
|
+
} if (rf & 2) {
|
|
30
|
+
const model_r7 = ctx.$implicit;
|
|
31
|
+
const i_r9 = ctx.index;
|
|
32
|
+
const ctx_r6 = i0.ɵɵnextContext(2);
|
|
33
|
+
i0.ɵɵadvance(1);
|
|
34
|
+
i0.ɵɵproperty("queryModel", model_r7)("hideHeader", true)("autoSave", ctx_r6.autoSave ? model_r7.autoSave == true ? true : false : model_r7.autoSave == true ? true : false)("pageType", null)("hideFooter", true)("dynamicParam", model_r7.dynamicParam)("formData", ctx_r6.formData ? ctx_r6.formData : model_r7.data)("readonly", ctx_r6.readonly)("multiMode", true)("questionNumber", ctx_r6.showQuestionNumber ? i_r9 + 1 : null);
|
|
35
|
+
} }
|
|
36
|
+
function MultiQuestionnaireComponent_div_2_Template(rf, ctx) { if (rf & 1) {
|
|
37
|
+
i0.ɵɵelementStart(0, "div");
|
|
38
|
+
i0.ɵɵtemplate(1, MultiQuestionnaireComponent_div_2_div_1_Template, 3, 10, "div", 4);
|
|
39
|
+
i0.ɵɵelementEnd();
|
|
40
|
+
} if (rf & 2) {
|
|
41
|
+
const ctx_r1 = i0.ɵɵnextContext();
|
|
42
|
+
i0.ɵɵadvance(1);
|
|
43
|
+
i0.ɵɵproperty("ngForOf", ctx_r1.qeQueryModels);
|
|
44
|
+
} }
|
|
45
|
+
function MultiQuestionnaireComponent_div_3_Template(rf, ctx) { if (rf & 1) {
|
|
46
|
+
const _r15 = i0.ɵɵgetCurrentView();
|
|
47
|
+
i0.ɵɵelementStart(0, "div")(1, "div", 7);
|
|
48
|
+
i0.ɵɵelement(2, "ion-icon", 8);
|
|
49
|
+
i0.ɵɵelementStart(3, "h1");
|
|
50
|
+
i0.ɵɵtext(4);
|
|
51
|
+
i0.ɵɵpipe(5, "translate");
|
|
52
|
+
i0.ɵɵelementEnd()();
|
|
53
|
+
i0.ɵɵelementStart(6, "ion-row", 9)(7, "ion-col", 10)(8, "ion-button", 11);
|
|
54
|
+
i0.ɵɵlistener("click", function MultiQuestionnaireComponent_div_3_Template_ion_button_click_8_listener() { i0.ɵɵrestoreView(_r15); const ctx_r14 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r14.close()); });
|
|
55
|
+
i0.ɵɵtext(9);
|
|
56
|
+
i0.ɵɵpipe(10, "translate");
|
|
57
|
+
i0.ɵɵelementEnd()()()();
|
|
58
|
+
} if (rf & 2) {
|
|
59
|
+
i0.ɵɵadvance(4);
|
|
60
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(5, 2, "common.response.saved"));
|
|
61
|
+
i0.ɵɵadvance(5);
|
|
62
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(10, 4, "Close"));
|
|
63
|
+
} }
|
|
64
|
+
function MultiQuestionnaireComponent_div_4_Template(rf, ctx) { if (rf & 1) {
|
|
65
|
+
const _r17 = i0.ɵɵgetCurrentView();
|
|
66
|
+
i0.ɵɵelementStart(0, "div")(1, "div", 7);
|
|
67
|
+
i0.ɵɵelement(2, "ion-icon", 12);
|
|
68
|
+
i0.ɵɵelementStart(3, "h1");
|
|
69
|
+
i0.ɵɵtext(4);
|
|
70
|
+
i0.ɵɵpipe(5, "translate");
|
|
71
|
+
i0.ɵɵelementEnd()();
|
|
72
|
+
i0.ɵɵelementStart(6, "ion-row", 9)(7, "ion-col", 10)(8, "ion-button", 11);
|
|
73
|
+
i0.ɵɵlistener("click", function MultiQuestionnaireComponent_div_4_Template_ion_button_click_8_listener() { i0.ɵɵrestoreView(_r17); const ctx_r16 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r16.close()); });
|
|
74
|
+
i0.ɵɵtext(9);
|
|
75
|
+
i0.ɵɵpipe(10, "translate");
|
|
76
|
+
i0.ɵɵelementEnd()()()();
|
|
77
|
+
} if (rf & 2) {
|
|
78
|
+
i0.ɵɵadvance(4);
|
|
79
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(5, 2, "common.response.not.saved"));
|
|
80
|
+
i0.ɵɵadvance(5);
|
|
81
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(10, 4, "common.close"));
|
|
82
|
+
} }
|
|
83
|
+
function MultiQuestionnaireComponent_p_footer_5_ion_button_3_Template(rf, ctx) { if (rf & 1) {
|
|
84
|
+
const _r20 = i0.ɵɵgetCurrentView();
|
|
85
|
+
i0.ɵɵelementStart(0, "ion-button", 11);
|
|
86
|
+
i0.ɵɵlistener("click", function MultiQuestionnaireComponent_p_footer_5_ion_button_3_Template_ion_button_click_0_listener() { i0.ɵɵrestoreView(_r20); const ctx_r19 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r19.close()); });
|
|
87
|
+
i0.ɵɵtext(1);
|
|
88
|
+
i0.ɵɵpipe(2, "translate");
|
|
89
|
+
i0.ɵɵelementEnd();
|
|
90
|
+
} if (rf & 2) {
|
|
91
|
+
i0.ɵɵadvance(1);
|
|
92
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(2, 1, "common.close"));
|
|
93
|
+
} }
|
|
94
|
+
function MultiQuestionnaireComponent_p_footer_5_Template(rf, ctx) { if (rf & 1) {
|
|
95
|
+
const _r22 = i0.ɵɵgetCurrentView();
|
|
96
|
+
i0.ɵɵelementStart(0, "p-footer")(1, "ion-row")(2, "ion-col", 10);
|
|
97
|
+
i0.ɵɵtemplate(3, MultiQuestionnaireComponent_p_footer_5_ion_button_3_Template, 3, 3, "ion-button", 13);
|
|
98
|
+
i0.ɵɵelementStart(4, "ion-button", 14);
|
|
99
|
+
i0.ɵɵlistener("click", function MultiQuestionnaireComponent_p_footer_5_Template_ion_button_click_4_listener() { i0.ɵɵrestoreView(_r22); const ctx_r21 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r21.submit()); });
|
|
100
|
+
i0.ɵɵtext(5);
|
|
101
|
+
i0.ɵɵpipe(6, "translate");
|
|
102
|
+
i0.ɵɵelementEnd()()()();
|
|
103
|
+
} if (rf & 2) {
|
|
104
|
+
const ctx_r4 = i0.ɵɵnextContext();
|
|
105
|
+
i0.ɵɵadvance(3);
|
|
106
|
+
i0.ɵɵproperty("ngIf", ctx_r4.showClose);
|
|
107
|
+
i0.ɵɵadvance(2);
|
|
108
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(6, 2, "common.submit"));
|
|
109
|
+
} }
|
|
110
|
+
const _c1 = () => ({ width: "45vw", height: "inherit" });
|
|
111
|
+
const _c2 = () => ({ "1200px": "660px", "992px": "660px", "768px": "660px", "576px": "100vw" });
|
|
112
|
+
export class MultiQuestionnaireComponent {
|
|
113
|
+
constructor(questionnaireService) {
|
|
114
|
+
this.questionnaireService = questionnaireService;
|
|
115
|
+
this.showClose = true;
|
|
116
|
+
this.autoSave = false;
|
|
117
|
+
this.modelCancel = new EventEmitter();
|
|
118
|
+
this.onComplete = new EventEmitter();
|
|
119
|
+
this.readonly = false;
|
|
120
|
+
this.showQuestionNumber = false;
|
|
121
|
+
this.qeDatas = [];
|
|
122
|
+
this.isVisible = true;
|
|
123
|
+
this.showResponse = false;
|
|
124
|
+
this.showError = false;
|
|
125
|
+
this.qeResponse = new Map();
|
|
126
|
+
this.qeResponseSaveModel = new Map();
|
|
127
|
+
}
|
|
128
|
+
ngOnInit() {
|
|
129
|
+
}
|
|
130
|
+
submit() {
|
|
131
|
+
this.fbs.forEach(fb => {
|
|
132
|
+
fb.submit();
|
|
133
|
+
});
|
|
134
|
+
}
|
|
135
|
+
complete(event) {
|
|
136
|
+
let qId = event.potentialIssueId || event.questionnaireId || event.questionnaireIds[0];
|
|
137
|
+
this.qeResponseSaveModel.set(qId, event);
|
|
138
|
+
if (event.isScreenQuestionnaire) {
|
|
139
|
+
this.qeResponse.set(qId, JSON.parse(event.screenQuestionnaireData[0]));
|
|
140
|
+
}
|
|
141
|
+
else {
|
|
142
|
+
this.qeResponse.set(qId, JSON.parse(event.data));
|
|
143
|
+
}
|
|
144
|
+
if (this.qeResponseSaveModel.size == this.fbs.length) {
|
|
145
|
+
this.qeDatas = [];
|
|
146
|
+
this.qeResponseSaveModel.forEach(r => this.qeDatas.push(r));
|
|
147
|
+
let screenQuestionnaire = this.qeDatas.filter(q => q.isScreenQuestionnaire === true);
|
|
148
|
+
let questionnaire = this.qeDatas.filter(q => q.isScreenQuestionnaire != true);
|
|
149
|
+
let hasScreenQuestionnaire = screenQuestionnaire.length > 0;
|
|
150
|
+
let hasQuestionnaire = questionnaire.length > 0;
|
|
151
|
+
if (hasScreenQuestionnaire && hasQuestionnaire) {
|
|
152
|
+
combineLatest(this.saveQuestionnaires(questionnaire))
|
|
153
|
+
.subscribe(res => {
|
|
154
|
+
this.showResponse = true;
|
|
155
|
+
this.closeAfterSuccess();
|
|
156
|
+
}, err => {
|
|
157
|
+
this.showError = true;
|
|
158
|
+
});
|
|
159
|
+
}
|
|
160
|
+
else if (hasScreenQuestionnaire) {
|
|
161
|
+
screenQuestionnaire.forEach(q => this.saveScreenQuestionnaire(q));
|
|
162
|
+
if (this.autoSave == false) {
|
|
163
|
+
this.closeAfterSuccess();
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
else if (hasQuestionnaire) {
|
|
167
|
+
combineLatest(this.saveQuestionnaires(questionnaire))
|
|
168
|
+
.subscribe(res => {
|
|
169
|
+
this.showResponse = true;
|
|
170
|
+
this.closeAfterSuccess();
|
|
171
|
+
}, err => {
|
|
172
|
+
this.showError = true;
|
|
173
|
+
});
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
saveScreenQuestionnaire(qeScreenData) {
|
|
178
|
+
if (this.autoSave) {
|
|
179
|
+
this.questionnaireService.saveScreenQuestionnaire(qeScreenData)
|
|
180
|
+
.subscribe(res => {
|
|
181
|
+
this.showResponse = true;
|
|
182
|
+
}, err => {
|
|
183
|
+
this.showError = true;
|
|
184
|
+
});
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
handleError(error) {
|
|
188
|
+
this.showError = true;
|
|
189
|
+
}
|
|
190
|
+
close() {
|
|
191
|
+
this.modelCancel.emit();
|
|
192
|
+
}
|
|
193
|
+
saveQuestionnaires(questionnaires) {
|
|
194
|
+
let subscriptions = [];
|
|
195
|
+
questionnaires.forEach(q => {
|
|
196
|
+
this.qeResponse.set(this.qId, JSON.parse(q.data));
|
|
197
|
+
subscriptions.push(this.questionnaireService.saveQuestionnaire(q));
|
|
198
|
+
});
|
|
199
|
+
return subscriptions;
|
|
200
|
+
}
|
|
201
|
+
closeAfterSuccess() {
|
|
202
|
+
this.onComplete.emit(this.qeResponse);
|
|
203
|
+
}
|
|
204
|
+
static { this.ɵfac = function MultiQuestionnaireComponent_Factory(t) { return new (t || MultiQuestionnaireComponent)(i0.ɵɵdirectiveInject(i1.QuestionnaireService)); }; }
|
|
205
|
+
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: MultiQuestionnaireComponent, selectors: [["app-multi-questionnaire"]], viewQuery: function MultiQuestionnaireComponent_Query(rf, ctx) { if (rf & 1) {
|
|
206
|
+
i0.ɵɵviewQuery(_c0, 5);
|
|
207
|
+
} if (rf & 2) {
|
|
208
|
+
let _t;
|
|
209
|
+
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.fbs = _t);
|
|
210
|
+
} }, inputs: { qeQueryModels: "qeQueryModels", showClose: "showClose", autoSave: "autoSave", formData: "formData", readonly: "readonly", header: "header", showQuestionNumber: "showQuestionNumber" }, outputs: { modelCancel: "modelCancel", onComplete: "onComplete" }, decls: 6, vars: 12, consts: [["appendTo", "body", "modal", "true", 3, "visible", "breakpoints", "showHeader"], [4, "ngIf"], ["pTemplate", "header"], [1, "fb-heading"], [4, "ngFor", "ngForOf"], [2, "display", "contents", 3, "queryModel", "hideHeader", "autoSave", "pageType", "hideFooter", "dynamicParam", "formData", "readonly", "multiMode", "questionNumber", "modelCancel", "onComplete"], ["fbs", ""], [1, "ion-text-center", "ion-padding-top"], ["name", "checkmark-circle", 2, "font-size", "80px", "color", "var(--ion-color-green)"], [1, "ion-padding"], [1, "ion-text-right"], ["shape", "round", "fill", "outline", "type", "reset", 3, "click"], ["name", "close-circle-outline", 2, "font-size", "80px", "color", "var(--ion-color-danger)"], ["shape", "round", "fill", "outline", "type", "reset", 3, "click", 4, "ngIf"], ["shape", "round", "fill", "solid", "type", "submit", 3, "click"]], template: function MultiQuestionnaireComponent_Template(rf, ctx) { if (rf & 1) {
|
|
211
|
+
i0.ɵɵelementStart(0, "p-dialog", 0);
|
|
212
|
+
i0.ɵɵtemplate(1, MultiQuestionnaireComponent_1_Template, 1, 0, null, 1)(2, MultiQuestionnaireComponent_div_2_Template, 2, 1, "div", 1)(3, MultiQuestionnaireComponent_div_3_Template, 11, 6, "div", 1)(4, MultiQuestionnaireComponent_div_4_Template, 11, 6, "div", 1)(5, MultiQuestionnaireComponent_p_footer_5_Template, 7, 4, "p-footer", 1);
|
|
213
|
+
i0.ɵɵelementEnd();
|
|
214
|
+
} if (rf & 2) {
|
|
215
|
+
i0.ɵɵstyleMap(i0.ɵɵpureFunction0(10, _c1));
|
|
216
|
+
i0.ɵɵproperty("visible", ctx.isVisible)("breakpoints", i0.ɵɵpureFunction0(11, _c2))("showHeader", ctx.header != null && ctx.header != undefined);
|
|
217
|
+
i0.ɵɵadvance(1);
|
|
218
|
+
i0.ɵɵproperty("ngIf", ctx.header);
|
|
219
|
+
i0.ɵɵadvance(1);
|
|
220
|
+
i0.ɵɵproperty("ngIf", !ctx.showResponse);
|
|
221
|
+
i0.ɵɵadvance(1);
|
|
222
|
+
i0.ɵɵproperty("ngIf", ctx.showResponse);
|
|
223
|
+
i0.ɵɵadvance(1);
|
|
224
|
+
i0.ɵɵproperty("ngIf", ctx.showError);
|
|
225
|
+
i0.ɵɵadvance(1);
|
|
226
|
+
i0.ɵɵproperty("ngIf", !ctx.showResponse);
|
|
227
|
+
} }, dependencies: [i2.IonButton, i2.IonCol, i2.IonIcon, i2.IonRow, i3.NgForOf, i3.NgIf, i4.Footer, i4.PrimeTemplate, i5.Dialog, i6.RenderQuestionnairePage, i7.TranslatePipe], styles: [".fb-heading[_ngcontent-%COMP%]{font-family:var(--app-font-light);color:var(--ion-color-medium-gray);font-size:36px;padding:10px 33px}"] }); }
|
|
228
|
+
}
|
|
229
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(MultiQuestionnaireComponent, [{
|
|
230
|
+
type: Component,
|
|
231
|
+
args: [{ selector: 'app-multi-questionnaire', template: "<p-dialog [visible]=\"isVisible\" appendTo=\"body\" [breakpoints]=\"{'1200px': '660px', '992px': '660px', '768px': '660px', '576px': '100vw'}\"\r\n [style]=\"{width: '45vw', height : 'inherit'}\" modal=\"true\" [showHeader]=\"header != null && header != undefined\">\r\n \r\n <ng-template pTemplate=\"header\" *ngIf=\"header\">\r\n <span class=\"fb-heading\">{{header}}</span>\r\n </ng-template>\r\n \r\n <div *ngIf=\"!showResponse\">\r\n <div *ngFor=\"let model of qeQueryModels; let isLast = last; index as i\">\r\n <app-questionnaire #fbs style=\"display: contents;\" (modelCancel)=\"close()\" \r\n [queryModel]=\"model\" (onComplete)=\"complete($event)\" [hideHeader]=\"true\" [autoSave]=\"autoSave ? (model.autoSave == true ? true : false) : (model.autoSave == true ? true : false)\" [pageType]=\"null\"\r\n [hideFooter]=\"true\" [dynamicParam]=\"model.dynamicParam\" [formData]=\"formData ? formData : model.data\" [readonly]=\"readonly\" [multiMode]=\"true\" [questionNumber]=\"showQuestionNumber ? (i+1) : null\"></app-questionnaire>\r\n </div>\r\n </div>\r\n\r\n <div *ngIf=\"showResponse\">\r\n <div class=\"ion-text-center ion-padding-top\">\r\n <ion-icon name=\"checkmark-circle\" style=\"font-size: 80px; color: var(--ion-color-green);\"></ion-icon>\r\n <h1>{{'common.response.saved' | translate}}</h1>\r\n </div>\r\n <ion-row class=\"ion-padding\">\r\n <ion-col class=\"ion-text-right\">\r\n <ion-button shape=\"round\" fill=\"outline\" (click)=\"close()\" type=\"reset\">{{'Close' | translate}}</ion-button>\r\n </ion-col>\r\n </ion-row>\r\n </div>\r\n\r\n <div *ngIf=\"showError\">\r\n <div class=\"ion-text-center ion-padding-top\">\r\n <ion-icon name=\"close-circle-outline\" style=\"font-size: 80px; color: var(--ion-color-danger);\"></ion-icon>\r\n <h1>{{'common.response.not.saved' | translate}}</h1>\r\n </div>\r\n <ion-row class=\"ion-padding\">\r\n <ion-col class=\"ion-text-right\">\r\n <ion-button shape=\"round\" fill=\"outline\" (click)=\"close()\" type=\"reset\">{{'common.close'| translate}}</ion-button>\r\n </ion-col>\r\n </ion-row>\r\n </div>\r\n <p-footer *ngIf=\"!showResponse\">\r\n <ion-row>\r\n <ion-col class=\"ion-text-right\">\r\n <ion-button shape=\"round\" fill=\"outline\" (click)=\"close()\" type=\"reset\" *ngIf=\"showClose\">{{'common.close'| translate}}</ion-button>\r\n <ion-button shape=\"round\" fill=\"solid\" type=\"submit\" (click)=\"submit()\">{{'common.submit'| translate}}</ion-button>\r\n </ion-col>\r\n </ion-row>\r\n </p-footer>\r\n</p-dialog>", styles: [".fb-heading{font-family:var(--app-font-light);color:var(--ion-color-medium-gray);font-size:36px;padding:10px 33px}\n"] }]
|
|
232
|
+
}], () => [{ type: i1.QuestionnaireService }], { fbs: [{
|
|
233
|
+
type: ViewChildren,
|
|
234
|
+
args: ['fbs']
|
|
235
|
+
}], qeQueryModels: [{
|
|
236
|
+
type: Input
|
|
237
|
+
}], showClose: [{
|
|
238
|
+
type: Input
|
|
239
|
+
}], autoSave: [{
|
|
240
|
+
type: Input
|
|
241
|
+
}], formData: [{
|
|
242
|
+
type: Input
|
|
243
|
+
}], modelCancel: [{
|
|
244
|
+
type: Output
|
|
245
|
+
}], onComplete: [{
|
|
246
|
+
type: Output
|
|
247
|
+
}], readonly: [{
|
|
248
|
+
type: Input
|
|
249
|
+
}], header: [{
|
|
250
|
+
type: Input
|
|
251
|
+
}], showQuestionNumber: [{
|
|
252
|
+
type: Input
|
|
253
|
+
}] }); })();
|
|
254
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(MultiQuestionnaireComponent, { className: "MultiQuestionnaireComponent", filePath: "lib\\components\\questionnaire\\multi-questionnaire\\multi-questionnaire.component.ts", lineNumber: 13 }); })();
|
|
255
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibXVsdGktcXVlc3Rpb25uYWlyZS5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9uZ3gtcmV1c2EtYXBwLWxpYi9zcmMvbGliL2NvbXBvbmVudHMvcXVlc3Rpb25uYWlyZS9tdWx0aS1xdWVzdGlvbm5haXJlL211bHRpLXF1ZXN0aW9ubmFpcmUuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbmd4LXJldXNhLWFwcC1saWIvc3JjL2xpYi9jb21wb25lbnRzL3F1ZXN0aW9ubmFpcmUvbXVsdGktcXVlc3Rpb25uYWlyZS9tdWx0aS1xdWVzdGlvbm5haXJlLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsWUFBWSxFQUFFLEtBQUssRUFBVSxNQUFNLEVBQWEsWUFBWSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3hHLE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSxNQUFNLENBQUM7Ozs7Ozs7Ozs7O0lDRzdCLCtCQUF5QjtJQUFBLFlBQVU7SUFBQSxpQkFBTzs7O0lBQWpCLGVBQVU7SUFBVixtQ0FBVTs7O0lBRHZDLDhGQUVjOzs7O0lBR1YsMkJBQXdFLDhCQUFBO0lBQ2pCLHdNQUFlLGVBQUEsZUFBTyxDQUFBLElBQUMsK0xBQ3ZDLGVBQUEsd0JBQWdCLENBQUEsSUFEdUI7SUFFMEgsaUJBQW9CLEVBQUE7Ozs7O0lBRHhOLGVBQW9CO0lBQXBCLHFDQUFvQixvQkFBQSxtSEFBQSxrQkFBQSxvQkFBQSx1Q0FBQSwrREFBQSw2QkFBQSxtQkFBQSwrREFBQTs7O0lBSDVCLDJCQUEyQjtJQUN2QixtRkFJTTtJQUNWLGlCQUFNOzs7SUFMcUIsZUFBa0I7SUFBbEIsOENBQWtCOzs7O0lBTzdDLDJCQUEwQixhQUFBO0lBRWxCLDhCQUFxRztJQUNyRywwQkFBSTtJQUFBLFlBQXVDOztJQUFBLGlCQUFL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Q2pELGFBQWEsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLG9CQUFvQixDQUFDLGlCQUFpQixDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUM7UUFDckUsQ0FBQyxDQUFDLENBQUM7UUFDSCxPQUFPLGFBQWEsQ0FBQztJQUN2QixDQUFDO0lBRUQsaUJBQWlCO1FBQ2YsSUFBSSxDQUFDLFVBQVUsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLFVBQVUsQ0FBQyxDQUFDO0lBQ3hDLENBQUM7NEZBL0hVLDJCQUEyQjtvRUFBM0IsMkJBQTJCOzs7Ozs7WUNaMUMsbUNBQ29IO1lBRWhILHVFQUVjLCtEQUFBLGdFQUFBLGdFQUFBLHlFQUFBO1lBeUNsQixpQkFBVzs7WUE3Q1AsMENBQTZDO1lBRHZDLHVDQUFxQiw0Q0FBQSw2REFBQTtZQUdNLGVBQVk7WUFBWixpQ0FBWTtZQUl2QyxlQUFtQjtZQUFuQix3Q0FBbUI7WUFRbkIsZUFBa0I7WUFBbEIsdUNBQWtCO1lBWWxCLGVBQWU7WUFBZixvQ0FBZTtZQVdWLGVBQW1CO1lBQW5CLHdDQUFtQjs7O2lGRDFCbkIsMkJBQTJCO2NBTHpDLFNBQVM7MkJBQ0kseUJBQXlCO3FEQU1kLEdBQUc7a0JBQXZCLFlBQVk7bUJBQUMsS0FBSztZQUVWLGFBQWE7a0JBQXJCLEtBQUs7WUFFRyxTQUFTO2tCQUFqQixLQUFLO1lBRUcsUUFBUTtrQkFBaEIsS0FBSztZQUVHLFFBQVE7a0JBQWhCLEtBQUs7WUFFSyxXQUFXO2tCQUFyQixNQUFNO1lBRUcsVUFBVTtrQkFBbkIsTUFBTTtZQUVFLFFBQVE7a0JBQWhCLEtBQUs7WUFFRyxNQUFNO2tCQUFkLEtBQUs7WUFFRyxrQkFBa0I7a0JBQTFCLEtBQUs7O2tGQXBCSywyQkFBMkIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIEV2ZW50RW1pdHRlciwgSW5wdXQsIE9uSW5pdCwgT3V0cHV0LCBRdWVyeUxpc3QsIFZpZXdDaGlsZHJlbiB9IGZyb20gXCJAYW5ndWxhci9jb3JlXCI7XHJcbmltcG9ydCB7IGNvbWJpbmVMYXRlc3QgfSBmcm9tIFwicnhqc1wiO1xyXG5pbXBvcnQgeyBRdWVzdGlvbm5haXJlUXVlcnlNb2RlbCB9IGZyb20gXCIuLi8uLi8uLi9tb2RlbHMvcXVlc3Rpb25uYWlyZS9RdWVzdGlvbm5haXJlUXVlcnlNb2RlbFwiO1xyXG5pbXBvcnQgeyBRdWVzdGlvbm5haXJlU2F2ZU1vZGVsIH0gZnJvbSBcIi4uLy4uLy4uL21vZGVscy9xdWVzdGlvbm5haXJlL1F1ZXN0aW9ubmFpcmVTYXZlTW9kZWxcIjtcclxuaW1wb3J0IHsgUXVlc3Rpb25uYWlyZVNlcnZpY2UgfSBmcm9tIFwiLi4vLi4vLi4vc2VydmljZXMvcXVlc3Rpb25uYWlyZS9xdWVzdGlvbm5haXJlLnNlcnZpY2VcIjtcclxuaW1wb3J0IHsgUmVuZGVyUXVlc3Rpb25uYWlyZVBhZ2UgfSBmcm9tIFwiLi4vcmVuZGVyLXF1ZXN0aW9ubmFpcmUvcmVuZGVyLXF1ZXN0aW9ubmFpcmUucGFnZVwiO1xyXG5cclxuQENvbXBvbmVudCh7XHJcbiAgICBzZWxlY3RvcjogJ2FwcC1tdWx0aS1xdWVzdGlvbm5haXJlJyxcclxuICAgIHRlbXBsYXRlVXJsOiAnLi9tdWx0aS1xdWVzdGlvbm5haXJlLmNvbXBvbmVudC5odG1sJyxcclxuICAgIHN0eWxlVXJsczogWycuL211bHRpLXF1ZXN0aW9ubmFpcmUuY29tcG9uZW50LnNjc3MnXVxyXG4gIH0pXHJcbiAgZXhwb3J0IGNsYXNzIE11bHRpUXVlc3Rpb25uYWlyZUNvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XHJcbiAgXHJcbiAgICBAVmlld0NoaWxkcmVuKCdmYnMnKSBmYnM6IFF1ZXJ5TGlzdDxSZW5kZXJRdWVzdGlvbm5haXJlUGFnZT47XHJcbiAgXHJcbiAgICBASW5wdXQoKSBxZVF1ZXJ5TW9kZWxzIDogUXVlc3Rpb25uYWlyZVF1ZXJ5TW9kZWxbXTtcclxuICBcclxuICAgIEBJbnB1dCgpIHNob3dDbG9zZSA6IGJvb2xlYW4gPSB0cnVlO1xyXG4gIFxyXG4gICAgQElucHV0KCkgYXV0b1NhdmUgOiBib29sZWFuID0gZmFsc2U7XHJcbiAgXHJcbiAgICBASW5wdXQoKSBmb3JtRGF0YTogYW55O1xyXG4gIFxyXG4gICAgQE91dHB1dCgpICBtb2RlbENhbmNlbCA9IG5ldyBFdmVudEVtaXR0ZXI8Ym9vbGVhbj4oKTtcclxuICBcclxuICAgIEBPdXRwdXQoKSBvbkNvbXBsZXRlID0gbmV3IEV2ZW50RW1pdHRlcigpO1xyXG4gIFxyXG4gICAgQElucHV0KCkgcmVhZG9ubHk6IEJvb2xlYW4gPSBmYWxzZTtcclxuXHJcbiAgICBASW5wdXQoKSBoZWFkZXI6IHN0cmluZztcclxuXHJcbiAgICBASW5wdXQoKSBzaG93UXVlc3Rpb25OdW1iZXI6IGJvb2xlYW4gPSBmYWxzZTtcclxuXHJcbiAgICBcclxuICBcclxuICAgIHFlRGF0YXMgOiBRdWVzdGlvbm5haXJlU2F2ZU1vZGVsW10gPSBbXTtcclxuICBcclxuICAgIGlzVmlzaWJsZSA6IGJvb2xlYW4gPSB0cnVlO1xyXG4gIFxyXG4gICAgc2hvd1Jlc3BvbnNlIDogYm9vbGVhbiA9IGZhbHNlO1xyXG4gIFxyXG4gICAgc2hvd0Vycm9yIDogYm9vbGVhbiA9IGZhbHNlO1xyXG4gIFxyXG4gICAgZHluYW1pY1BhcmFtOmFueTtcclxuXHJcbiAgICBxZVJlc3BvbnNlIDogTWFwPG51bWJlciwgYW55PiA9IG5ldyBNYXAoKTtcclxuXHJcbiAgICBxZVJlc3BvbnNlU2F2ZU1vZGVsIDogTWFwPG51bWJlciwgUXVlc3Rpb25uYWlyZVNhdmVNb2RlbD4gPSBuZXcgTWFwKCk7XHJcblxyXG4gICAgcUlkIDogYW55O1xyXG4gICBcclxuICAgIGNvbnN0cnVjdG9yKHB1YmxpYyBxdWVzdGlvbm5haXJlU2VydmljZSA6IFF1ZXN0aW9ubmFpcmVTZXJ2aWNlKSB7IFxyXG5cclxuICAgICBcclxuICAgIH1cclxuICBcclxuICAgIG5nT25Jbml0KCk6IHZvaWQge1xyXG4gICAgfVxyXG4gIFxyXG4gICAgc3VibWl0KCl7XHJcbiAgICAgIHRoaXMuZmJzLmZvckVhY2goZmIgPT4ge1xyXG4gICAgICAgIGZiLnN1Ym1pdCgpXHJcbiAgICAgIH0pO1xyXG4gICAgICBcclxuICAgIH1cclxuICBcclxuICAgIGNvbXBsZXRlKGV2ZW50IDogUXVlc3Rpb25uYWlyZVNhdmVNb2RlbCl7XHJcbiAgICAgIGxldCBxSWQgPSBldmVudC5wb3RlbnRpYWxJc3N1ZUlkIHx8IGV2ZW50LnF1ZXN0aW9ubmFpcmVJZCB8fCBldmVudC5xdWVzdGlvbm5haXJlSWRzWzBdO1xyXG5cclxuICAgICAgdGhpcy5xZVJlc3BvbnNlU2F2ZU1vZGVsLnNldChxSWQsIGV2ZW50KTtcclxuICAgICAgaWYoZXZlbnQuaXNTY3JlZW5RdWVzdGlvbm5haXJlKXtcclxuICAgICAgICB0aGlzLnFlUmVzcG9uc2Uuc2V0KHFJZCwgSlNPTi5wYXJzZShldmVudC5zY3JlZW5RdWVzdGlvbm5haXJlRGF0YVswXSkpO1xyXG4gICAgICB9ZWxzZSB7XHJcbiAgICAgICAgdGhpcy5xZVJlc3BvbnNlLnNldChxSWQsIEpTT04ucGFyc2UoZXZlbnQuZGF0YSkpO1xyXG4gICAgICB9XHJcbiAgICAgIGlmKHRoaXMucWVSZXNwb25zZVNhdmVNb2RlbC5zaXplID09IHRoaXMuZmJzLmxlbmd0aCl7XHJcbiAgICAgICAgdGhpcy5xZURhdGFzID0gW107XHJcbiAgICAgICAgdGhpcy5xZVJlc3BvbnNlU2F2ZU1vZGVsLmZvckVhY2gociA9PiB0aGlzLnFlRGF0YXMucHVzaChyKSk7XHJcbiAgICAgICAgbGV0IHNjcmVlblF1ZXN0aW9ubmFpcmUgPSB0aGlzLnFlRGF0YXMuZmlsdGVyKHEgPT4gcS5pc1NjcmVlblF1ZXN0aW9ubmFpcmUgPT09IHRydWUpO1xyXG4gICAgICAgIGxldCBxdWVzdGlvbm5haXJlID0gdGhpcy5xZURhdGFzLmZpbHRlcihxID0+IHEuaXNTY3JlZW5RdWVzdGlvbm5haXJlICE9IHRydWUpO1xyXG4gICAgICAgIGxldCBoYXNTY3JlZW5RdWVzdGlvbm5haXJlID0gc2NyZWVuUXVlc3Rpb25uYWlyZS5sZW5ndGggPiAwO1xyXG4gICAgICAgIGxldCBoYXNRdWVzdGlvbm5haXJlID0gcXVlc3Rpb25uYWlyZS5sZW5ndGggPiAwO1xyXG5cclxuICAgICAgICBpZihoYXNTY3JlZW5RdWVzdGlvbm5haXJlICYmIGhhc1F1ZXN0aW9ubmFpcmUpe1xyXG4gICAgICAgICAgY29tYmluZUxhdGVzdCh0aGlzLnNhdmVRdWVzdGlvbm5haXJlcyhxdWVzdGlvbm5haXJlKSlcclxuICAgICAgICAgIC5zdWJzY3JpYmUocmVzID0+IHtcclxuICAgICAgICAgICAgdGhpcy5zaG93UmVzcG9uc2UgPSB0cnVlO1xyXG4gICAgICAgICAgICB0aGlzLmNsb3NlQWZ0ZXJTdWNjZXNzKCk7XHJcbiAgICAgICAgICB9LCBlcnIgPT4ge1xyXG4gICAgICAgICAgICB0aGlzLnNob3dFcnJvciA9IHRydWU7XHJcbiAgICAgICAgICB9KVxyXG4gICAgICAgIH0gZWxzZSBpZihoYXNTY3JlZW5RdWVzdGlvbm5haXJlKSB7XHJcbiAgICAgICAgICBzY3JlZW5RdWVzdGlvbm5haXJlLmZvckVhY2gocSA9PiB0aGlzLnNhdmVTY3JlZW5RdWVzdGlvbm5haXJlKHEpKVxyXG4gICAgICAgICAgaWYodGhpcy5hdXRvU2F2ZSA9PSBmYWxzZSl7XHJcbiAgICAgICAgICAgIHRoaXMuY2xvc2VBZnRlclN1Y2Nlc3MoKTtcclxuICAgICAgICAgIH1cclxuICAgICAgICB9IGVsc2UgaWYoaGFzUXVlc3Rpb25uYWlyZSkge1xyXG4gICAgICAgICAgY29tYmluZUxhdGVzdCh0aGlzLnNhdmVRdWVzdGlvbm5haXJlcyhxdWVzdGlvbm5haXJlKSlcclxuICAgICAgICAgIC5zdWJzY3JpYmUocmVzID0+IHtcclxuICAgICAgICAgICAgdGhpcy5zaG93UmVzcG9uc2UgPSB0cnVlO1xyXG4gICAgICAgICAgICB0aGlzLmNsb3NlQWZ0ZXJTdWNjZXNzKCk7XHJcbiAgICAgICAgICB9LCBlcnIgPT4ge1xyXG4gICAgICAgICAgICB0aGlzLnNob3dFcnJvciA9IHRydWU7XHJcbiAgICAgICAgICB9KVxyXG4gICAgICAgIH1cclxuICAgICAgfVxyXG4gICAgfVxyXG4gIFxyXG4gICAgc2F2ZVNjcmVlblF1ZXN0aW9ubmFpcmUocWVTY3JlZW5EYXRhOiBRdWVzdGlvbm5haXJlU2F2ZU1vZGVsKSB7XHJcbiAgICAgIGlmKHRoaXMuYXV0b1NhdmUpe1xyXG4gICAgICAgIHRoaXMucXVlc3Rpb25uYWlyZVNlcnZpY2Uuc2F2ZVNjcmVlblF1ZXN0aW9ubmFpcmUocWVTY3JlZW5EYXRhKVxyXG4gICAgICAgICAgICAuc3Vic2NyaWJlKHJlcyA9PiB7XHJcbiAgICAgICAgICAgICAgdGhpcy5zaG93UmVzcG9uc2UgPSB0cnVlO1xyXG4gICAgICAgICAgICB9LCBlcnIgPT4ge1xyXG4gICAgICAgICAgICAgIHRoaXMuc2hvd0Vycm9yID0gdHJ1ZTtcclxuICAgICAgICAgICAgfSk7XHJcbiAgICAgIH1cclxuICAgIH1cclxuICBcclxuICAgIGhhbmRsZUVycm9yKGVycm9yKSB7XHJcbiAgICAgIHRoaXMuc2hvd0Vycm9yID0gdHJ1ZTtcclxuICAgIH1cclxuICBcclxuICAgIGNsb3NlKCl7XHJcbiAgICAgIHRoaXMubW9kZWxDYW5jZWwuZW1pdCgpO1xyXG4gICAgfVxyXG4gIFxyXG4gICAgc2F2ZVF1ZXN0aW9ubmFpcmVzKHF1ZXN0aW9ubmFpcmVzIDogUXVlc3Rpb25uYWlyZVNhdmVNb2RlbFtdKXtcclxuICAgICAgbGV0IHN1YnNjcmlwdGlvbnMgPSBbXTtcclxuICAgICAgcXVlc3Rpb25uYWlyZXMuZm9yRWFjaCAocSA9PiB7XHJcbiAgICAgICAgdGhpcy5xZVJlc3BvbnNlLnNldCh0aGlzLnFJZCwgSlNPTi5wYXJzZShxLmRhdGEpKVxyXG4gICAgICAgIHN1YnNjcmlwdGlvbnMucHVzaCh0aGlzLnF1ZXN0aW9ubmFpcmVTZXJ2aWNlLnNhdmVRdWVzdGlvbm5haXJlKHEpKTtcclxuICAgICAgfSk7XHJcbiAgICAgIHJldHVybiBzdWJzY3JpcHRpb25zO1xyXG4gICAgfVxyXG4gIFxyXG4gICAgY2xvc2VBZnRlclN1Y2Nlc3MoKXtcclxuICAgICAgdGhpcy5vbkNvbXBsZXRlLmVtaXQodGhpcy5xZVJlc3BvbnNlKTtcclxuICAgIH1cclxuICBcclxuICB9IiwiPHAtZGlhbG9nIFt2aXNpYmxlXT1cImlzVmlzaWJsZVwiIGFwcGVuZFRvPVwiYm9keVwiIFticmVha3BvaW50c109XCJ7JzEyMDBweCc6ICc2NjBweCcsICc5OTJweCc6ICc2NjBweCcsICc3NjhweCc6ICc2NjBweCcsICc1NzZweCc6ICcxMDB2dyd9XCJcclxuICAgIFtzdHlsZV09XCJ7d2lkdGg6ICc0NXZ3JywgaGVpZ2h0IDogJ2luaGVyaXQnfVwiIG1vZGFsPVwidHJ1ZVwiIFtzaG93SGVhZGVyXT1cImhlYWRlciAhPSBudWxsICYmIGhlYWRlciAhPSB1bmRlZmluZWRcIj5cclxuICAgIFxyXG4gICAgPG5nLXRlbXBsYXRlIHBUZW1wbGF0ZT1cImhlYWRlclwiICpuZ0lmPVwiaGVhZGVyXCI+XHJcbiAgICAgICAgPHNwYW4gY2xhc3M9XCJmYi1oZWFkaW5nXCI+e3toZWFkZXJ9fTwvc3Bhbj5cclxuICAgIDwvbmctdGVtcGxhdGU+XHJcbiAgICBcclxuICAgIDxkaXYgKm5nSWY9XCIhc2hvd1Jlc3BvbnNlXCI+XHJcbiAgICAgICAgPGRpdiAqbmdGb3I9XCJsZXQgbW9kZWwgb2YgcWVRdWVyeU1vZGVsczsgbGV0IGlzTGFzdCA9IGxhc3Q7IGluZGV4IGFzIGlcIj5cclxuICAgICAgICAgICAgPGFwcC1xdWVzdGlvbm5haXJlICNmYnMgc3R5bGU9XCJkaXNwbGF5OiBjb250ZW50cztcIiAobW9kZWxDYW5jZWwpPVwiY2xvc2UoKVwiIFxyXG4gICAgICAgICAgICBbcXVlcnlNb2RlbF09XCJtb2RlbFwiIChvbkNvbXBsZXRlKT1cImNvbXBsZXRlKCRldmVudClcIiBbaGlkZUhlYWRlcl09XCJ0cnVlXCIgW2F1dG9TYXZlXT1cImF1dG9TYXZlID8gKG1vZGVsLmF1dG9TYXZlID09IHRydWUgPyB0cnVlIDogZmFsc2UpIDogKG1vZGVsLmF1dG9TYXZlID09IHRydWUgPyB0cnVlIDogZmFsc2UpXCIgW3BhZ2VUeXBlXT1cIm51bGxcIlxyXG4gICAgICAgICAgICBbaGlkZUZvb3Rlcl09XCJ0cnVlXCIgW2R5bmFtaWNQYXJhbV09XCJtb2RlbC5keW5hbWljUGFyYW1cIiBbZm9ybURhdGFdPVwiZm9ybURhdGEgPyBmb3JtRGF0YSA6IG1vZGVsLmRhdGFcIiBbcmVhZG9ubHldPVwicmVhZG9ubHlcIiBbbXVsdGlNb2RlXT1cInRydWVcIiBbcXVlc3Rpb25OdW1iZXJdPVwic2hvd1F1ZXN0aW9uTnVtYmVyID8gKGkrMSkgOiBudWxsXCI+PC9hcHAtcXVlc3Rpb25uYWlyZT5cclxuICAgICAgICA8L2Rpdj5cclxuICAgIDwvZGl2PlxyXG5cclxuICAgIDxkaXYgKm5nSWY9XCJzaG93UmVzcG9uc2VcIj5cclxuICAgICAgICA8ZGl2IGNsYXNzPVwiaW9uLXRleHQtY2VudGVyIGlvbi1wYWRkaW5nLXRvcFwiPlxyXG4gICAgICAgICAgICA8aW9uLWljb24gbmFtZT1cImNoZWNrbWFyay1jaXJjbGVcIiBzdHlsZT1cImZvbnQtc2l6ZTogODBweDsgY29sb3I6IHZhcigtLWlvbi1jb2xvci1ncmVlbik7XCI+PC9pb24taWNvbj5cclxuICAgICAgICAgICAgPGgxPnt7J2NvbW1vbi5yZXNwb25zZS5zYXZlZCcgfCB0cmFuc2xhdGV9fTwvaDE+XHJcbiAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgPGlvbi1yb3cgY2xhc3M9XCJpb24tcGFkZGluZ1wiPlxyXG4gICAgICAgICAgICA8aW9uLWNvbCBjbGFzcz1cImlvbi10ZXh0LXJpZ2h0XCI+XHJcbiAgICAgICAgICAgICAgICA8aW9uLWJ1dHRvbiBzaGFwZT1cInJvdW5kXCIgZmlsbD1cIm91dGxpbmVcIiAoY2xpY2spPVwiY2xvc2UoKVwiIHR5cGU9XCJyZXNldFwiPnt7J0Nsb3NlJyB8IHRyYW5zbGF0ZX19PC9pb24tYnV0dG9uPlxyXG4gICAgICAgICAgICA8L2lvbi1jb2w+XHJcbiAgICAgICAgPC9pb24tcm93PlxyXG4gICAgPC9kaXY+XHJcblxyXG4gICAgPGRpdiAqbmdJZj1cInNob3dFcnJvclwiPlxyXG4gICAgICAgIDxkaXYgY2xhc3M9XCJpb24tdGV4dC1jZW50ZXIgaW9uLXBhZGRpbmctdG9wXCI+XHJcbiAgICAgICAgICAgIDxpb24taWNvbiBuYW1lPVwiY2xvc2UtY2lyY2xlLW91dGxpbmVcIiBzdHlsZT1cImZvbnQtc2l6ZTogODBweDsgY29sb3I6IHZhcigtLWlvbi1jb2xvci1kYW5nZXIpO1wiPjwvaW9uLWljb24+XHJcbiAgICAgICAgICAgIDxoMT57eydjb21tb24ucmVzcG9uc2Uubm90LnNhdmVkJyB8IHRyYW5zbGF0ZX19PC9oMT5cclxuICAgICAgICA8L2Rpdj5cclxuICAgICAgICA8aW9uLXJvdyBjbGFzcz1cImlvbi1wYWRkaW5nXCI+XHJcbiAgICAgICAgICAgIDxpb24tY29sIGNsYXNzPVwiaW9uLXRleHQtcmlnaHRcIj5cclxuICAgICAgICAgICAgICAgIDxpb24tYnV0dG9uIHNoYXBlPVwicm91bmRcIiBmaWxsPVwib3V0bGluZVwiIChjbGljayk9XCJjbG9zZSgpXCIgdHlwZT1cInJlc2V0XCI+e3snY29tbW9uLmNsb3NlJ3wgdHJhbnNsYXRlfX08L2lvbi1idXR0b24+XHJcbiAgICAgICAgICAgIDwvaW9uLWNvbD5cclxuICAgICAgICA8L2lvbi1yb3c+XHJcbiAgICA8L2Rpdj5cclxuICAgIDxwLWZvb3RlciAqbmdJZj1cIiFzaG93UmVzcG9uc2VcIj5cclxuICAgICAgICA8aW9uLXJvdz5cclxuICAgICAgICAgICAgPGlvbi1jb2wgY2xhc3M9XCJpb24tdGV4dC1yaWdodFwiPlxyXG4gICAgICAgICAgICAgICAgPGlvbi1idXR0b24gc2hhcGU9XCJyb3VuZFwiIGZpbGw9XCJvdXRsaW5lXCIgKGNsaWNrKT1cImNsb3NlKClcIiB0eXBlPVwicmVzZXRcIiAqbmdJZj1cInNob3dDbG9zZVwiPnt7J2NvbW1vbi5jbG9zZSd8IHRyYW5zbGF0ZX19PC9pb24tYnV0dG9uPlxyXG4gICAgICAgICAgICAgICAgPGlvbi1idXR0b24gc2hhcGU9XCJyb3VuZFwiIGZpbGw9XCJzb2xpZFwiIHR5cGU9XCJzdWJtaXRcIiAoY2xpY2spPVwic3VibWl0KClcIj57eydjb21tb24uc3VibWl0J3wgdHJhbnNsYXRlfX08L2lvbi1idXR0b24+XHJcbiAgICAgICAgICAgIDwvaW9uLWNvbD5cclxuICAgICAgICA8L2lvbi1yb3c+XHJcbiAgICA8L3AtZm9vdGVyPlxyXG48L3AtZGlhbG9nPiJdfQ==
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
export class QuestionBase {
|
|
2
|
+
}
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicXVlc3Rpb24tYmFzZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL25neC1yZXVzYS1hcHAtbGliL3NyYy9saWIvY29tcG9uZW50cy9xdWVzdGlvbm5haXJlL3F1ZXN0aW9uLWJhc2UudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBRUEsTUFBTSxPQUFPLFlBQVk7Q0FjeEIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBFbGVtZW50c01vZGVsIH0gZnJvbSBcIi4uLy4uL21vZGVscy9xdWVzdGlvbm5haXJlL0VsZW1lbnRzTW9kZWxcIjtcblxuZXhwb3J0IGNsYXNzIFF1ZXN0aW9uQmFzZTxUPiB7XG4gIHRpdGxlOiBzdHJpbmc7XG4gIHNob3dQcm9ncmVzc0Jhcj86IHN0cmluZztcbiAgcHJvZ3Jlc3NCYXJUeXBlPzogc3RyaW5nO1xuICBzdGVwQ291bnRlcj86bnVtYmVyO1xuICBpc0ZpcnN0UGFnZVN1Ym1pdD86Ym9vbGVhbjtcbiAgcGFnZXM/OiB7XG4gICAgbmF2aWdhdGlvblRpdGxlOiBzdHJpbmc7XG4gICAgbmF2aWdhdGlvbkRlc2NyaXB0aW9uOiBzdHJpbmc7XG4gICAgbmFtZTogc3RyaW5nO1xuICAgIHF1ZXN0aW9ubm5haXJlSWQ/Om51bWJlcjtcbiAgICBpc1BsYWNlSG9sZGVyOmJvb2xlYW47XG4gICAgZWxlbWVudHM6IEVsZW1lbnRzTW9kZWxbXTtcbiAgfVtdO1xufVxuIl19
|