@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,399 @@
|
|
|
1
|
+
import { Component, ViewChild } from '@angular/core';
|
|
2
|
+
import { FormGroup, Validators, FormControl, NG_VALUE_ACCESSOR, } from '@angular/forms';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "@angular/forms";
|
|
5
|
+
import * as i2 from "../../services/util/util.service";
|
|
6
|
+
import * as i3 from "../../services/questionnaire/validation.service";
|
|
7
|
+
import * as i4 from "@ngx-translate/core";
|
|
8
|
+
import * as i5 from "@ionic/angular";
|
|
9
|
+
import * as i6 from "@angular/common";
|
|
10
|
+
import * as i7 from "primeng/api";
|
|
11
|
+
import * as i8 from "primeng/table";
|
|
12
|
+
import * as i9 from "primeng/inputtext";
|
|
13
|
+
import * as i10 from "primeng/inputmask";
|
|
14
|
+
import * as i11 from "primeng/selectbutton";
|
|
15
|
+
import * as i12 from "@fortawesome/angular-fontawesome";
|
|
16
|
+
import * as i13 from "../error/error.component";
|
|
17
|
+
import * as i14 from "../address/address.component";
|
|
18
|
+
const _c0 = ["participantAddress"];
|
|
19
|
+
const _c1 = ["participantForm"];
|
|
20
|
+
function AddParticipantComponent_ng_template_2_Template(rf, ctx) { if (rf & 1) {
|
|
21
|
+
i0.ɵɵelementStart(0, "tr")(1, "th");
|
|
22
|
+
i0.ɵɵtext(2);
|
|
23
|
+
i0.ɵɵpipe(3, "translate");
|
|
24
|
+
i0.ɵɵelementEnd();
|
|
25
|
+
i0.ɵɵelementStart(4, "th");
|
|
26
|
+
i0.ɵɵtext(5);
|
|
27
|
+
i0.ɵɵpipe(6, "translate");
|
|
28
|
+
i0.ɵɵelementEnd();
|
|
29
|
+
i0.ɵɵelementStart(7, "th");
|
|
30
|
+
i0.ɵɵtext(8);
|
|
31
|
+
i0.ɵɵpipe(9, "translate");
|
|
32
|
+
i0.ɵɵelementEnd();
|
|
33
|
+
i0.ɵɵelement(10, "th");
|
|
34
|
+
i0.ɵɵelementEnd();
|
|
35
|
+
} if (rf & 2) {
|
|
36
|
+
i0.ɵɵadvance(2);
|
|
37
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(3, 3, "add.participant.header.participantRole"), "");
|
|
38
|
+
i0.ɵɵadvance(3);
|
|
39
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(6, 5, "add.participant.header.name"));
|
|
40
|
+
i0.ɵɵadvance(3);
|
|
41
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(9, 7, "add.participant.header.phone"), "");
|
|
42
|
+
} }
|
|
43
|
+
const _c2 = () => ["fal", "edit"];
|
|
44
|
+
const _c3 = () => ["fal", "trash-alt"];
|
|
45
|
+
function AddParticipantComponent_ng_template_3_Template(rf, ctx) { if (rf & 1) {
|
|
46
|
+
const _r9 = i0.ɵɵgetCurrentView();
|
|
47
|
+
i0.ɵɵelementStart(0, "tr")(1, "td")(2, "span");
|
|
48
|
+
i0.ɵɵtext(3);
|
|
49
|
+
i0.ɵɵelementEnd()();
|
|
50
|
+
i0.ɵɵelementStart(4, "td")(5, "span");
|
|
51
|
+
i0.ɵɵtext(6);
|
|
52
|
+
i0.ɵɵelementEnd()();
|
|
53
|
+
i0.ɵɵelementStart(7, "td")(8, "span");
|
|
54
|
+
i0.ɵɵtext(9);
|
|
55
|
+
i0.ɵɵelementEnd()();
|
|
56
|
+
i0.ɵɵelementStart(10, "td")(11, "ion-button", 7);
|
|
57
|
+
i0.ɵɵlistener("click", function AddParticipantComponent_ng_template_3_Template_ion_button_click_11_listener() { const restoredCtx = i0.ɵɵrestoreView(_r9); const participant_r6 = restoredCtx.$implicit; const ctx_r8 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r8.editItem(participant_r6)); });
|
|
58
|
+
i0.ɵɵelement(12, "fa-icon", 8);
|
|
59
|
+
i0.ɵɵelementEnd();
|
|
60
|
+
i0.ɵɵelementStart(13, "ion-button", 7);
|
|
61
|
+
i0.ɵɵlistener("click", function AddParticipantComponent_ng_template_3_Template_ion_button_click_13_listener() { const restoredCtx = i0.ɵɵrestoreView(_r9); const participant_r6 = restoredCtx.$implicit; const ctx_r10 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r10.removeItem(participant_r6)); });
|
|
62
|
+
i0.ɵɵelement(14, "fa-icon", 8);
|
|
63
|
+
i0.ɵɵelementEnd()()();
|
|
64
|
+
} if (rf & 2) {
|
|
65
|
+
const participant_r6 = ctx.$implicit;
|
|
66
|
+
i0.ɵɵadvance(3);
|
|
67
|
+
i0.ɵɵtextInterpolate(participant_r6.role.name);
|
|
68
|
+
i0.ɵɵadvance(3);
|
|
69
|
+
i0.ɵɵtextInterpolate(participant_r6.name);
|
|
70
|
+
i0.ɵɵadvance(3);
|
|
71
|
+
i0.ɵɵtextInterpolate(participant_r6.phone);
|
|
72
|
+
i0.ɵɵadvance(3);
|
|
73
|
+
i0.ɵɵproperty("icon", i0.ɵɵpureFunction0(5, _c2));
|
|
74
|
+
i0.ɵɵadvance(2);
|
|
75
|
+
i0.ɵɵproperty("icon", i0.ɵɵpureFunction0(6, _c3));
|
|
76
|
+
} }
|
|
77
|
+
const _c4 = () => ["fal", "plus"];
|
|
78
|
+
function AddParticipantComponent_ng_template_4_Template(rf, ctx) { if (rf & 1) {
|
|
79
|
+
const _r13 = i0.ɵɵgetCurrentView();
|
|
80
|
+
i0.ɵɵelementStart(0, "tr")(1, "td");
|
|
81
|
+
i0.ɵɵtext(2);
|
|
82
|
+
i0.ɵɵpipe(3, "translate");
|
|
83
|
+
i0.ɵɵelementEnd();
|
|
84
|
+
i0.ɵɵelement(4, "td")(5, "td");
|
|
85
|
+
i0.ɵɵelementStart(6, "td", 9)(7, "ion-button", 10);
|
|
86
|
+
i0.ɵɵlistener("click", function AddParticipantComponent_ng_template_4_Template_ion_button_click_7_listener() { i0.ɵɵrestoreView(_r13); const ctx_r12 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r12.addRole()); });
|
|
87
|
+
i0.ɵɵelement(8, "fa-icon", 8);
|
|
88
|
+
i0.ɵɵelementEnd()()();
|
|
89
|
+
} if (rf & 2) {
|
|
90
|
+
i0.ɵɵadvance(2);
|
|
91
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(3, 2, "add.participant.footer.addElement"));
|
|
92
|
+
i0.ɵɵadvance(6);
|
|
93
|
+
i0.ɵɵproperty("icon", i0.ɵɵpureFunction0(4, _c4));
|
|
94
|
+
} }
|
|
95
|
+
function AddParticipantComponent_form_6_span_14_Template(rf, ctx) { if (rf & 1) {
|
|
96
|
+
i0.ɵɵelementStart(0, "span", 20);
|
|
97
|
+
i0.ɵɵtext(1);
|
|
98
|
+
i0.ɵɵpipe(2, "translate");
|
|
99
|
+
i0.ɵɵelementEnd();
|
|
100
|
+
} if (rf & 2) {
|
|
101
|
+
i0.ɵɵadvance(1);
|
|
102
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(2, 1, "induction.required"));
|
|
103
|
+
} }
|
|
104
|
+
const _c5 = a0 => ({ required: a0 });
|
|
105
|
+
function AddParticipantComponent_form_6_div_15_Template(rf, ctx) { if (rf & 1) {
|
|
106
|
+
const _r20 = i0.ɵɵgetCurrentView();
|
|
107
|
+
i0.ɵɵelementStart(0, "div", 21)(1, "div", 22)(2, "label", 23);
|
|
108
|
+
i0.ɵɵtext(3);
|
|
109
|
+
i0.ɵɵpipe(4, "translate");
|
|
110
|
+
i0.ɵɵelementEnd();
|
|
111
|
+
i0.ɵɵelement(5, "input", 24)(6, "app-error", 25);
|
|
112
|
+
i0.ɵɵelementEnd();
|
|
113
|
+
i0.ɵɵelementStart(7, "div", 26)(8, "span", 27);
|
|
114
|
+
i0.ɵɵtext(9);
|
|
115
|
+
i0.ɵɵpipe(10, "translate");
|
|
116
|
+
i0.ɵɵelementEnd();
|
|
117
|
+
i0.ɵɵelement(11, "p-inputMask", 28)(12, "app-error", 25);
|
|
118
|
+
i0.ɵɵelementEnd();
|
|
119
|
+
i0.ɵɵelementStart(13, "div", 29)(14, "label", 30);
|
|
120
|
+
i0.ɵɵtext(15);
|
|
121
|
+
i0.ɵɵpipe(16, "translate");
|
|
122
|
+
i0.ɵɵelementEnd()();
|
|
123
|
+
i0.ɵɵelement(17, "br");
|
|
124
|
+
i0.ɵɵelementStart(18, "div", 29);
|
|
125
|
+
i0.ɵɵelement(19, "app-address", 31, 32);
|
|
126
|
+
i0.ɵɵelementEnd();
|
|
127
|
+
i0.ɵɵelementStart(21, "div", 26)(22, "ion-button", 33);
|
|
128
|
+
i0.ɵɵlistener("click", function AddParticipantComponent_form_6_div_15_Template_ion_button_click_22_listener() { i0.ɵɵrestoreView(_r20); const ctx_r19 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r19.close()); });
|
|
129
|
+
i0.ɵɵtext(23, "Clear");
|
|
130
|
+
i0.ɵɵelementEnd();
|
|
131
|
+
i0.ɵɵelementStart(24, "ion-button", 34);
|
|
132
|
+
i0.ɵɵlistener("click", function AddParticipantComponent_form_6_div_15_Template_ion_button_click_24_listener() { i0.ɵɵrestoreView(_r20); const ctx_r21 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r21.onSubmit()); });
|
|
133
|
+
i0.ɵɵtext(25, "Save");
|
|
134
|
+
i0.ɵɵelementEnd()()();
|
|
135
|
+
} if (rf & 2) {
|
|
136
|
+
const ctx_r16 = i0.ɵɵnextContext(2);
|
|
137
|
+
i0.ɵɵadvance(3);
|
|
138
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(4, 13, "add.participant.lawyer.name"));
|
|
139
|
+
i0.ɵɵadvance(3);
|
|
140
|
+
i0.ɵɵclassMap("app-grid");
|
|
141
|
+
i0.ɵɵproperty("field", ctx_r16.name)("form", ctx_r16.userForm)("errDef", i0.ɵɵpureFunction1(19, _c5, ctx_r16.required));
|
|
142
|
+
i0.ɵɵadvance(3);
|
|
143
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(10, 15, "add.participant.lawyer.phone"));
|
|
144
|
+
i0.ɵɵadvance(3);
|
|
145
|
+
i0.ɵɵclassMap("app-grid block mb-2");
|
|
146
|
+
i0.ɵɵproperty("field", ctx_r16.phone)("form", ctx_r16.userForm)("errDef", i0.ɵɵpureFunction1(21, _c5, ctx_r16.required));
|
|
147
|
+
i0.ɵɵadvance(3);
|
|
148
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(16, 17, "add.participant.lawyer.declaration"));
|
|
149
|
+
} }
|
|
150
|
+
function AddParticipantComponent_form_6_div_16_Template(rf, ctx) { if (rf & 1) {
|
|
151
|
+
const _r23 = i0.ɵɵgetCurrentView();
|
|
152
|
+
i0.ɵɵelementStart(0, "div", 35)(1, "div", 22)(2, "label", 36);
|
|
153
|
+
i0.ɵɵtext(3);
|
|
154
|
+
i0.ɵɵpipe(4, "translate");
|
|
155
|
+
i0.ɵɵelementEnd();
|
|
156
|
+
i0.ɵɵelement(5, "input", 37)(6, "app-error", 25);
|
|
157
|
+
i0.ɵɵelementEnd();
|
|
158
|
+
i0.ɵɵelementStart(7, "div", 38)(8, "span", 27);
|
|
159
|
+
i0.ɵɵtext(9);
|
|
160
|
+
i0.ɵɵpipe(10, "translate");
|
|
161
|
+
i0.ɵɵelementEnd();
|
|
162
|
+
i0.ɵɵelement(11, "p-inputMask", 28)(12, "app-error", 25);
|
|
163
|
+
i0.ɵɵelementEnd();
|
|
164
|
+
i0.ɵɵelementStart(13, "div", 13)(14, "label", 39);
|
|
165
|
+
i0.ɵɵtext(15);
|
|
166
|
+
i0.ɵɵpipe(16, "translate");
|
|
167
|
+
i0.ɵɵelementEnd()();
|
|
168
|
+
i0.ɵɵelementStart(17, "div", 40)(18, "ion-button", 33);
|
|
169
|
+
i0.ɵɵlistener("click", function AddParticipantComponent_form_6_div_16_Template_ion_button_click_18_listener() { i0.ɵɵrestoreView(_r23); const ctx_r22 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r22.close()); });
|
|
170
|
+
i0.ɵɵtext(19, "Clear");
|
|
171
|
+
i0.ɵɵelementEnd();
|
|
172
|
+
i0.ɵɵelementStart(20, "ion-button", 41);
|
|
173
|
+
i0.ɵɵlistener("click", function AddParticipantComponent_form_6_div_16_Template_ion_button_click_20_listener() { i0.ɵɵrestoreView(_r23); const ctx_r24 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r24.onSubmit()); });
|
|
174
|
+
i0.ɵɵtext(21, "Save");
|
|
175
|
+
i0.ɵɵelementEnd()()();
|
|
176
|
+
} if (rf & 2) {
|
|
177
|
+
const ctx_r17 = i0.ɵɵnextContext(2);
|
|
178
|
+
i0.ɵɵadvance(3);
|
|
179
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(4, 13, "add.participant.observer.name"));
|
|
180
|
+
i0.ɵɵadvance(3);
|
|
181
|
+
i0.ɵɵclassMap("app-grid");
|
|
182
|
+
i0.ɵɵproperty("field", ctx_r17.name)("form", ctx_r17.userForm)("errDef", i0.ɵɵpureFunction1(19, _c5, ctx_r17.required));
|
|
183
|
+
i0.ɵɵadvance(3);
|
|
184
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(10, 15, "add.participant.observer.phone"));
|
|
185
|
+
i0.ɵɵadvance(3);
|
|
186
|
+
i0.ɵɵclassMap("app-grid block mb-2");
|
|
187
|
+
i0.ɵɵproperty("field", ctx_r17.phone)("form", ctx_r17.userForm)("errDef", i0.ɵɵpureFunction1(21, _c5, ctx_r17.required));
|
|
188
|
+
i0.ɵɵadvance(3);
|
|
189
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(16, 17, "add.participant.observer.declaration"));
|
|
190
|
+
} }
|
|
191
|
+
function AddParticipantComponent_form_6_Template(rf, ctx) { if (rf & 1) {
|
|
192
|
+
const _r26 = i0.ɵɵgetCurrentView();
|
|
193
|
+
i0.ɵɵelementStart(0, "form", 11, 12);
|
|
194
|
+
i0.ɵɵlistener("ngSubmit", function AddParticipantComponent_form_6_Template_form_ngSubmit_0_listener() { i0.ɵɵrestoreView(_r26); const ctx_r25 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r25.onSubmit()); });
|
|
195
|
+
i0.ɵɵelementStart(2, "div", 13);
|
|
196
|
+
i0.ɵɵelement(3, "br");
|
|
197
|
+
i0.ɵɵelementStart(4, "h1", 14);
|
|
198
|
+
i0.ɵɵtext(5);
|
|
199
|
+
i0.ɵɵpipe(6, "translate");
|
|
200
|
+
i0.ɵɵelementEnd();
|
|
201
|
+
i0.ɵɵelement(7, "br");
|
|
202
|
+
i0.ɵɵelementEnd();
|
|
203
|
+
i0.ɵɵelementStart(8, "div", 13)(9, "label");
|
|
204
|
+
i0.ɵɵtext(10);
|
|
205
|
+
i0.ɵɵpipe(11, "translate");
|
|
206
|
+
i0.ɵɵelementEnd()();
|
|
207
|
+
i0.ɵɵelementStart(12, "div", 15);
|
|
208
|
+
i0.ɵɵelement(13, "p-selectButton", 16);
|
|
209
|
+
i0.ɵɵtemplate(14, AddParticipantComponent_form_6_span_14_Template, 3, 3, "span", 17);
|
|
210
|
+
i0.ɵɵelementEnd();
|
|
211
|
+
i0.ɵɵtemplate(15, AddParticipantComponent_form_6_div_15_Template, 26, 23, "div", 18)(16, AddParticipantComponent_form_6_div_16_Template, 22, 23, "div", 19);
|
|
212
|
+
i0.ɵɵelementEnd();
|
|
213
|
+
} if (rf & 2) {
|
|
214
|
+
const ctx_r4 = i0.ɵɵnextContext();
|
|
215
|
+
i0.ɵɵproperty("formGroup", ctx_r4.userForm);
|
|
216
|
+
i0.ɵɵadvance(5);
|
|
217
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(6, 9, "add.participant.header.heading"));
|
|
218
|
+
i0.ɵɵadvance(5);
|
|
219
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(11, 11, "add.participant.header.question"));
|
|
220
|
+
i0.ɵɵadvance(3);
|
|
221
|
+
i0.ɵɵclassProp("has-error", ctx_r4.role.dirty && ctx_r4.role.invalid);
|
|
222
|
+
i0.ɵɵproperty("options", ctx_r4.roles);
|
|
223
|
+
i0.ɵɵadvance(1);
|
|
224
|
+
i0.ɵɵproperty("ngIf", ctx_r4.role.dirty && ctx_r4.role.invalid);
|
|
225
|
+
i0.ɵɵadvance(1);
|
|
226
|
+
i0.ɵɵproperty("ngIf", (ctx_r4.role.value == null ? null : ctx_r4.role.value.value) == "a");
|
|
227
|
+
i0.ɵɵadvance(1);
|
|
228
|
+
i0.ɵɵproperty("ngIf", (ctx_r4.role.value == null ? null : ctx_r4.role.value.value) == "o");
|
|
229
|
+
} }
|
|
230
|
+
export class AddParticipantComponent {
|
|
231
|
+
constructor(fb, util, vs, translateService) {
|
|
232
|
+
this.fb = fb;
|
|
233
|
+
this.util = util;
|
|
234
|
+
this.vs = vs;
|
|
235
|
+
this.translateService = translateService;
|
|
236
|
+
this.formControlName = '';
|
|
237
|
+
this.onTouched = () => { };
|
|
238
|
+
this.onChangeSubs = [];
|
|
239
|
+
this.visible = false;
|
|
240
|
+
this.roles = [
|
|
241
|
+
{ name: 'attorney', value: 'a' },
|
|
242
|
+
{ name: 'observer', value: 'o' },
|
|
243
|
+
];
|
|
244
|
+
this.translateService.use(localStorage.getItem("language"));
|
|
245
|
+
this.participantList = [];
|
|
246
|
+
this.userForm = this.fb.group({
|
|
247
|
+
name: new FormControl(null, Validators.required),
|
|
248
|
+
phone: new FormControl(null, Validators.required),
|
|
249
|
+
role: new FormControl(null, Validators.required),
|
|
250
|
+
address: new FormControl(null),
|
|
251
|
+
});
|
|
252
|
+
this.selectButtonValidation();
|
|
253
|
+
}
|
|
254
|
+
ngOnDestroy() {
|
|
255
|
+
for (let sub of this.onChangeSubs)
|
|
256
|
+
sub.unsubscribe();
|
|
257
|
+
}
|
|
258
|
+
writeValue(value) {
|
|
259
|
+
if (value) {
|
|
260
|
+
this.userForm.setValue(value);
|
|
261
|
+
}
|
|
262
|
+
}
|
|
263
|
+
registerOnChange(fn) {
|
|
264
|
+
let sub = this.vs.participants.subscribe(fn);
|
|
265
|
+
this.onChangeSubs.push(sub);
|
|
266
|
+
}
|
|
267
|
+
registerOnTouched(onTouched) {
|
|
268
|
+
this.onTouched = onTouched;
|
|
269
|
+
}
|
|
270
|
+
setvalue() {
|
|
271
|
+
this.onChange();
|
|
272
|
+
this.onTouched();
|
|
273
|
+
}
|
|
274
|
+
addItem() {
|
|
275
|
+
if (this.userForm.valid) {
|
|
276
|
+
this.participantList.push(this.userForm.value);
|
|
277
|
+
}
|
|
278
|
+
else {
|
|
279
|
+
this.userForm.invalid;
|
|
280
|
+
}
|
|
281
|
+
}
|
|
282
|
+
selectButtonValidation() {
|
|
283
|
+
this.role.valueChanges.subscribe(val => {
|
|
284
|
+
if (val.value == 'a') {
|
|
285
|
+
this.util.setRequiredValidator(this.address);
|
|
286
|
+
}
|
|
287
|
+
if (val.value == 'o') {
|
|
288
|
+
this.util.clearValidation(this.address);
|
|
289
|
+
}
|
|
290
|
+
});
|
|
291
|
+
}
|
|
292
|
+
editItem(participant) {
|
|
293
|
+
this.visible = !this.visible;
|
|
294
|
+
let index = this.participantList.indexOf(participant);
|
|
295
|
+
this.participantList[index] = this.userForm.patchValue(participant);
|
|
296
|
+
}
|
|
297
|
+
reset() {
|
|
298
|
+
this.userForm.reset();
|
|
299
|
+
}
|
|
300
|
+
removeItem(participant) {
|
|
301
|
+
let index = this.participantList.indexOf(participant);
|
|
302
|
+
this.participantList.splice(index, 1);
|
|
303
|
+
this.publishParticipant();
|
|
304
|
+
}
|
|
305
|
+
addRole() {
|
|
306
|
+
this.visible = !this.visible;
|
|
307
|
+
}
|
|
308
|
+
onSubmit() {
|
|
309
|
+
if (this.participantAddress) {
|
|
310
|
+
this.participantAddress.submit();
|
|
311
|
+
}
|
|
312
|
+
if (!this.userForm.valid) {
|
|
313
|
+
this.userForm.markAsDirty();
|
|
314
|
+
this.validateAllFormFields(this.userForm);
|
|
315
|
+
}
|
|
316
|
+
else {
|
|
317
|
+
this.userForm.valid;
|
|
318
|
+
this.participantList.push(this.userForm.value);
|
|
319
|
+
this.publishParticipant();
|
|
320
|
+
this.userForm.reset();
|
|
321
|
+
this.visible = !this.visible;
|
|
322
|
+
}
|
|
323
|
+
}
|
|
324
|
+
publishParticipant() {
|
|
325
|
+
this.vs.participants.next(this.participantList.length > 0 ? this.participantList : null);
|
|
326
|
+
}
|
|
327
|
+
validateAllFormFields(formGroup) {
|
|
328
|
+
Object.keys(formGroup.controls).forEach(field => {
|
|
329
|
+
const control = formGroup.get(field);
|
|
330
|
+
if (control instanceof FormControl) {
|
|
331
|
+
control.markAsDirty({ onlySelf: true });
|
|
332
|
+
}
|
|
333
|
+
else if (control instanceof FormGroup) {
|
|
334
|
+
this.validateAllFormFields(control);
|
|
335
|
+
}
|
|
336
|
+
});
|
|
337
|
+
}
|
|
338
|
+
get role() {
|
|
339
|
+
return this.userForm.controls['role'];
|
|
340
|
+
}
|
|
341
|
+
get name() {
|
|
342
|
+
return this.userForm.controls['name'];
|
|
343
|
+
}
|
|
344
|
+
get address() {
|
|
345
|
+
return this.userForm.controls['address'];
|
|
346
|
+
}
|
|
347
|
+
get phone() {
|
|
348
|
+
return this.userForm.controls['phone'];
|
|
349
|
+
}
|
|
350
|
+
get required() {
|
|
351
|
+
return this.translateService.instant('common.required');
|
|
352
|
+
}
|
|
353
|
+
close() {
|
|
354
|
+
this.userForm.reset();
|
|
355
|
+
this.close;
|
|
356
|
+
}
|
|
357
|
+
ngOnInit() {
|
|
358
|
+
}
|
|
359
|
+
static { this.ɵfac = function AddParticipantComponent_Factory(t) { return new (t || AddParticipantComponent)(i0.ɵɵdirectiveInject(i1.FormBuilder), i0.ɵɵdirectiveInject(i2.UtilService), i0.ɵɵdirectiveInject(i3.ValidationService), i0.ɵɵdirectiveInject(i4.TranslateService)); }; }
|
|
360
|
+
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: AddParticipantComponent, selectors: [["app-add-participant"]], viewQuery: function AddParticipantComponent_Query(rf, ctx) { if (rf & 1) {
|
|
361
|
+
i0.ɵɵviewQuery(_c0, 5);
|
|
362
|
+
i0.ɵɵviewQuery(_c1, 5);
|
|
363
|
+
} if (rf & 2) {
|
|
364
|
+
let _t;
|
|
365
|
+
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.participantAddress = _t.first);
|
|
366
|
+
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.participantForm = _t.first);
|
|
367
|
+
} }, features: [i0.ɵɵProvidersFeature([{
|
|
368
|
+
provide: NG_VALUE_ACCESSOR,
|
|
369
|
+
useExisting: AddParticipantComponent,
|
|
370
|
+
multi: true
|
|
371
|
+
}])], decls: 7, vars: 3, consts: [[3, "rowHover", "value"], ["dt", ""], ["pTemplate", "header"], ["pTemplate", "body"], ["pTemplate", "footer"], [1, "align"], ["style", "margin-left:16px", 3, "formGroup", "ngSubmit", 4, "ngIf"], ["fill", "outline", "size", "small", 1, "action-button", 3, "click"], [1, "action-icon", 3, "icon"], [1, "col-offset-4", "action-button"], ["fill", "outline", "size", "small", "shape", "square", 1, "action-button", 3, "click"], [2, "margin-left", "16px", 3, "formGroup", "ngSubmit"], ["participantForm", "ngForm"], [1, "field-grid"], [1, "heading"], [2, "padding-left", "0px"], ["optionLabel", "name", "formControlName", "role", "required", "", 3, "options"], ["class", "help-block", 4, "ngIf"], ["class", "formgrid grid", "style", "margin-top:10px", 4, "ngIf"], ["class", "formgrid grid", 4, "ngIf"], [1, "help-block"], [1, "formgrid", "grid", 2, "margin-top", "10px"], [1, "field", "col-4", "md:col-2"], [2, "margin", "4px"], ["type", "text", "pInputText", "", "formControlName", "name", "placeholder", "Attorney Name", 1, "text-base", "text-color", "surface-overlay", "p-2", "border-1", "border-solid", "surface-border", "border-round", "appearance-none", "outline-none", "focus:border-primary", "w-full"], [3, "field", "form", "errDef"], [1, "field", "col-4", "md:col-9"], [1, "block", "mb-2"], ["mask", "999-999-9999", "placeholder", "999-999-9999", "formControlName", "phone"], [1, "field", "col-4", "md:col-9", "field-grid"], [2, "padding-left", "2px"], ["formControlName", "address"], ["participantAddress", ""], ["fill", "outline", "shape", "round", 1, "col-offset-3", 3, "click"], ["fill", "outline", "shape", "round", "type", "submit", 1, "col-offset-1", 3, "click"], [1, "formgrid", "grid"], [2, "margin", "10px 0px"], ["type", "text", "pInputText", "", "formControlName", "name", "placeholder", "Observer Name", 1, "text-base", "text-color", "surface-overlay", "p-2", "border-1", "border-solid", "surface-border", "border-round", "appearance-none", "outline-none", "focus:border-primary", "w-full"], [1, "field", "col-4", "md:col-9", 2, "padding-top", "12px"], [2, "margin-left", "10px"], [1, "field", "col-12", "md:col-9", 2, "margin-top", "20px"], ["type", "submit", "fill", "outline", "shape", "round", 1, "col-offset-1", 3, "click"]], template: function AddParticipantComponent_Template(rf, ctx) { if (rf & 1) {
|
|
372
|
+
i0.ɵɵelementStart(0, "p-table", 0, 1);
|
|
373
|
+
i0.ɵɵtemplate(2, AddParticipantComponent_ng_template_2_Template, 11, 9, "ng-template", 2)(3, AddParticipantComponent_ng_template_3_Template, 15, 7, "ng-template", 3)(4, AddParticipantComponent_ng_template_4_Template, 9, 5, "ng-template", 4);
|
|
374
|
+
i0.ɵɵelementEnd();
|
|
375
|
+
i0.ɵɵelementStart(5, "div", 5);
|
|
376
|
+
i0.ɵɵtemplate(6, AddParticipantComponent_form_6_Template, 17, 13, "form", 6);
|
|
377
|
+
i0.ɵɵelementEnd();
|
|
378
|
+
} if (rf & 2) {
|
|
379
|
+
i0.ɵɵproperty("rowHover", true)("value", ctx.participantList);
|
|
380
|
+
i0.ɵɵadvance(6);
|
|
381
|
+
i0.ɵɵproperty("ngIf", ctx.visible);
|
|
382
|
+
} }, dependencies: [i5.IonButton, i6.NgIf, i7.PrimeTemplate, i1.ɵNgNoValidate, i1.DefaultValueAccessor, i1.NgControlStatus, i1.NgControlStatusGroup, i1.RequiredValidator, i1.FormGroupDirective, i1.FormControlName, i8.Table, i9.InputText, i10.InputMask, i11.SelectButton, i12.FaIconComponent, i13.ErrorComponent, i14.AddressComponent, i4.TranslatePipe], styles: [".help-block[_ngcontent-%COMP%]{color:red}p-table[_ngcontent-%COMP%]{margin:0 -16px}.align[_ngcontent-%COMP%]{margin:0 -16px}[_nghost-%COMP%] p-selectbutton.ng-dirty.ng-invalid>.p-selectbutton>.p-button{border:1px solid red!important;color:red!important}[_nghost-%COMP%] .p-selectbutton .p-button{margin-top:15px!important}[_nghost-%COMP%] .p-datatable.app-datatable .p-datatable-thead>tr>th, [_nghost-%COMP%] .p-datatable.app-datatable .p-datatable-tfoot>tr>td{padding-left:17px!important}[_nghost-%COMP%] th{width:300px}"] }); }
|
|
383
|
+
}
|
|
384
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AddParticipantComponent, [{
|
|
385
|
+
type: Component,
|
|
386
|
+
args: [{ selector: 'app-add-participant', providers: [{
|
|
387
|
+
provide: NG_VALUE_ACCESSOR,
|
|
388
|
+
useExisting: AddParticipantComponent,
|
|
389
|
+
multi: true
|
|
390
|
+
}], template: "<p-table #dt [rowHover]=\"true\" [value]=\"participantList\" >\r\n <ng-template pTemplate=\"header\" let-columns >\r\n <tr >\r\n <th> {{\"add.participant.header.participantRole\"|translate}}</th>\r\n <th>{{\"add.participant.header.name\"|translate}}</th>\r\n <th> {{\"add.participant.header.phone\"|translate}}</th>\r\n <th></th>\r\n </tr>\r\n </ng-template>\r\n <ng-template pTemplate=\"body\" let-participant let-rowIndex=\"rowIndex\">\r\n <tr >\r\n\r\n <td ><span>{{participant.role.name}}</span></td>\r\n <td><span>{{participant.name}}</span></td>\r\n <td><span>{{participant.phone}}</span></td>\r\n <td>\r\n <ion-button fill=\"outline\" (click)=\"editItem(participant)\" size=\"small\" class=\"action-button\">\r\n <fa-icon [icon]=\"['fal', 'edit']\" class=\"action-icon\"></fa-icon>\r\n </ion-button>\r\n <ion-button (click)=\"removeItem(participant)\" fill=\"outline\" size=\"small\" class=\"action-button\">\r\n <fa-icon [icon]=\"['fal', 'trash-alt']\" class=\"action-icon\"></fa-icon>\r\n </ion-button>\r\n </td>\r\n </tr>\r\n </ng-template>\r\n <ng-template pTemplate=\"footer\" let-columns>\r\n <tr>\r\n <td>{{\"add.participant.footer.addElement\"|translate}}</td>\r\n <td></td>\r\n <td></td>\r\n <td class=\"col-offset-4 action-button\">\r\n <ion-button (click)=\"addRole()\" fill=\"outline\" size=\"small\" shape=\"square\" class=\"action-button\">\r\n <fa-icon [icon]=\"['fal', 'plus']\" class=\"action-icon\"></fa-icon>\r\n </ion-button>\r\n </td>\r\n </tr>\r\n </ng-template>\r\n</p-table>\r\n<div class=\"align\">\r\n<form [formGroup]=\"userForm\" *ngIf=\"visible\" (ngSubmit)=\"onSubmit()\" #participantForm=\"ngForm\" style=\"margin-left:16px\">\r\n <div class=\"field-grid\">\r\n <br>\r\n <h1 class=\"heading\">{{\"add.participant.header.heading\"|translate}}</h1>\r\n <br>\r\n </div>\r\n <div class=\"field-grid\"><label>{{\"add.participant.header.question\"|translate}}</label></div>\r\n <div style=\"padding-left: 0px;\">\r\n <p-selectButton [options]=\"roles\" optionLabel=\"name\" formControlName=\"role\" required\r\n [class.has-error]=\"role.dirty && role.invalid\">\r\n </p-selectButton>\r\n <span class=\"help-block\" *ngIf=\"role.dirty && role.invalid\">{{\"induction.required\"| translate}}</span>\r\n </div>\r\n\r\n\r\n <div class=\"formgrid grid\" *ngIf=\"role.value?.value =='a'\" style=\"margin-top:10px\">\r\n <div class=\"field col-4 md:col-2\"><label style=\"margin:4px\">{{\"add.participant.lawyer.name\"|translate}}</label>\r\n <input type=\"text\" pInputText formControlName=\"name\" placeholder=\"Attorney Name\"\r\n class=\"text-base text-color surface-overlay p-2 border-1 border-solid surface-border border-round appearance-none outline-none focus:border-primary w-full\" />\r\n <app-error [class]=\"'app-grid'\" [field]='name' [form]=\"userForm\" [errDef]=\"{ \r\n required: required}\">\r\n </app-error>\r\n </div>\r\n\r\n <div class=\"field col-4 md:col-9\"><span\r\n class=\"block mb-2\">{{\"add.participant.lawyer.phone\"|translate}}</span>\r\n <p-inputMask mask=\"999-999-9999\" placeholder=\"999-999-9999\" formControlName=\"phone\"></p-inputMask>\r\n <app-error [class]=\"'app-grid block mb-2'\" [field]='phone' [form]=\"userForm\" [errDef]=\"{ \r\n required: required}\">\r\n </app-error>\r\n </div>\r\n <div class=\"field col-4 md:col-9 field-grid\"><label style=\"padding-left:2px\">{{\"add.participant.lawyer.declaration\"|translate}}</label></div>\r\n <br />\r\n\r\n <div class=\"field col-4 md:col-9 field-grid\">\r\n <app-address #participantAddress formControlName=\"address\"></app-address>\r\n </div>\r\n <div class=\"field col-4 md:col-9\">\r\n <ion-button (click)=\"close()\" fill=\"outline\" shape=\"round\" class=\"col-offset-3\">Clear</ion-button>\r\n <ion-button (click)=\"onSubmit()\" fill=\"outline\" shape=\"round\" type=\"submit\" class=\"col-offset-1\">Save</ion-button>\r\n </div>\r\n </div>\r\n\r\n <div class=\"formgrid grid\" *ngIf=\"role.value?.value =='o'\">\r\n <div class=\"field col-4 md:col-2\"><label style=\"margin:10px 0px\">{{\"add.participant.observer.name\"|translate}}</label>\r\n <input type=\"text\" pInputText formControlName=\"name\" placeholder=\"Observer Name\"\r\n class=\"text-base text-color surface-overlay p-2 border-1 border-solid surface-border border-round appearance-none outline-none focus:border-primary w-full\">\r\n <app-error [class]=\"'app-grid'\" [field]='name' [form]=\"userForm\" [errDef]=\"{ \r\n required: required}\">\r\n </app-error>\r\n </div>\r\n\r\n <div class=\"field col-4 md:col-9\" style=\"padding-top:12px\">\r\n <span class=\"block mb-2\">{{\"add.participant.observer.phone\"|translate}}</span>\r\n <p-inputMask mask=\"999-999-9999\" placeholder=\"999-999-9999\" formControlName=\"phone\"></p-inputMask>\r\n <app-error [class]=\"'app-grid block mb-2'\" [field]='phone' [form]=\"userForm\" [errDef]=\"{ \r\n required: required}\">\r\n </app-error>\r\n </div>\r\n <div class=\"field-grid\"><label \r\n style=\"margin-left:10px\">{{\"add.participant.observer.declaration\"|translate}}</label></div>\r\n <div class=\"field col-12 md:col-9\" style=\"margin-top: 20px;\">\r\n <ion-button (click)=\"close()\" fill=\"outline\" shape=\"round\" class=\"col-offset-3\">Clear</ion-button>\r\n\r\n <ion-button (click)=\"onSubmit()\" type=\"submit\" fill=\"outline\" shape=\"round\" class=\"col-offset-1\">Save</ion-button>\r\n </div>\r\n </div>\r\n</form>\r\n</div>", styles: [".help-block{color:red}p-table{margin:0 -16px}.align{margin:0 -16px}:host ::ng-deep p-selectbutton.ng-dirty.ng-invalid>.p-selectbutton>.p-button{border:1px solid red!important;color:red!important}:host ::ng-deep .p-selectbutton .p-button{margin-top:15px!important}:host ::ng-deep .p-datatable.app-datatable .p-datatable-thead>tr>th,:host ::ng-deep .p-datatable.app-datatable .p-datatable-tfoot>tr>td{padding-left:17px!important}:host ::ng-deep th{width:300px}\n"] }]
|
|
391
|
+
}], () => [{ type: i1.FormBuilder }, { type: i2.UtilService }, { type: i3.ValidationService }, { type: i4.TranslateService }], { participantAddress: [{
|
|
392
|
+
type: ViewChild,
|
|
393
|
+
args: ['participantAddress', { static: false }]
|
|
394
|
+
}], participantForm: [{
|
|
395
|
+
type: ViewChild,
|
|
396
|
+
args: ['participantForm', { static: false }]
|
|
397
|
+
}] }); })();
|
|
398
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(AddParticipantComponent, { className: "AddParticipantComponent", filePath: "lib\\components\\add-participant\\add-participant.component.ts", lineNumber: 27 }); })();
|
|
399
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWRkLXBhcnRpY2lwYW50LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL25neC1yZXVzYS1hcHAtbGliL3NyYy9saWIvY29tcG9uZW50cy9hZGQtcGFydGljaXBhbnQvYWRkLXBhcnRpY2lwYW50LmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL25neC1yZXVzYS1hcHAtbGliL3NyYy9saWIvY29tcG9uZW50cy9hZGQtcGFydGljaXBhbnQvYWRkLXBhcnRpY2lwYW50LmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQXFCLFNBQVMsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN4RSxPQUFPLEVBQWUsU0FBUyxFQUFFLFVBQVUsRUFBRSxXQUFXLEVBQWdDLGlCQUFpQixHQUFHLE1BQU0sZ0JBQWdCLENBQUM7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7SUNDL0gsMEJBQUssU0FBQTtJQUNFLFlBQXNEOztJQUFBLGlCQUFLO0lBQ2hFLDBCQUFJO0lBQUEsWUFBMkM7O0lBQUEsaUJBQUs7SUFDcEQsMEJBQUk7SUFBQyxZQUE0Qzs7SUFBQSxpQkFBSztJQUN0RCxzQkFBUztJQUNYLGlCQUFLOztJQUpFLGVBQXNEO0lBQXRELDhGQUFzRDtJQUN2RCxlQUEyQztJQUEzQyx5RUFBMkM7SUFDMUMsZUFBNEM7SUFBNUMsb0ZBQTRDOzs7Ozs7SUFLbkQsMEJBQUssU0FBQSxXQUFBO0lBRVEsWUFBeUI7SUFBQSxpQkFBTyxFQUFBO0lBQzNDLDBCQUFJLFdBQUE7SUFBTSxZQUFvQjtJQUFBLGlCQUFPLEVBQUE7SUFDckMsMEJBQUksV0FBQTtJQUFNLFlBQXFCO0lBQUEsaUJBQU8sRUFBQTtJQUN0QywyQkFBSSxxQkFBQTtJQUN5QixtUEFBUyxlQUFBLCtCQUFxQixDQUFBLElBQUM7SUFDeEQsOEJBQWdFO0lBQ2xFLGlCQUFhO0lB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LENBQUM7d0JBQ1QsT0FBTyxFQUFFLGlCQUFpQjt3QkFDMUIsV0FBVyx5QkFBeUI7d0JBQ3BDLEtBQUssRUFBRSxJQUFJO3FCQUNaLENBQUM7cUlBYUcsa0JBQWtCO2tCQUR4QixTQUFTO21CQUFDLG9CQUFvQixFQUFFLEVBQUUsTUFBTSxFQUFFLEtBQUssRUFBRTtZQUkzQyxlQUFlO2tCQURyQixTQUFTO21CQUFDLGlCQUFpQixFQUFFLEVBQUUsTUFBTSxFQUFFLEtBQUssRUFBRTs7a0ZBWnBDLHVCQUF1QiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgT25EZXN0cm95LCBPbkluaXQsIFZpZXdDaGlsZCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBGb3JtQnVpbGRlciwgRm9ybUdyb3VwLCBWYWxpZGF0b3JzLCBGb3JtQ29udHJvbCwgTmdGb3JtLCBDb250cm9sVmFsdWVBY2Nlc3NvciwgTkdfVkFMVUVfQUNDRVNTT1IsIH0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnO1xyXG5pbXBvcnQgeyBTZWxlY3RWYWx1ZUFjY2Vzc29yIH0gZnJvbSAnQGlvbmljL2FuZ3VsYXInO1xyXG5pbXBvcnQgeyBTdWJzY3JpcHRpb24gfSBmcm9tICdyeGpzJztcclxuaW1wb3J0IHsgIFV0aWxTZXJ2aWNlIH0gZnJvbSAnLi4vLi4vc2VydmljZXMvdXRpbC91dGlsLnNlcnZpY2UnO1xyXG5pbXBvcnQgeyBBZGRyZXNzQ29tcG9uZW50IH0gZnJvbSAnLi4vYWRkcmVzcy9hZGRyZXNzLmNvbXBvbmVudCc7XHJcbmltcG9ydCB7IFZhbGlkYXRpb25TZXJ2aWNlIH0gZnJvbSAnLi4vLi4vc2VydmljZXMvcXVlc3Rpb25uYWlyZS92YWxpZGF0aW9uLnNlcnZpY2UnXHJcbmltcG9ydCB7IFRyYW5zbGF0ZVNlcnZpY2UgfSBmcm9tICdAbmd4LXRyYW5zbGF0ZS9jb3JlJztcclxuXHJcblxyXG5pbnRlcmZhY2UgUm9sZSB7XHJcbiAgbmFtZTogc3RyaW5nLFxyXG4gIGNvZGU6IHN0cmluZyxcclxufVxyXG5cclxuQENvbXBvbmVudCh7XHJcbiAgc2VsZWN0b3I6ICdhcHAtYWRkLXBhcnRpY2lwYW50JyxcclxuICB0ZW1wbGF0ZVVybDogJy4vYWRkLXBhcnRpY2lwYW50LmNvbXBvbmVudC5odG1sJyxcclxuICBzdHlsZVVybHM6IFsnLi9hZGQtcGFydGljaXBhbnQuY29tcG9uZW50LnNjc3MnXSxcclxuICAgIHByb3ZpZGVyczpbe1xyXG4gICAgICBwcm92aWRlOiBOR19WQUxVRV9BQ0NFU1NPUixcclxuICAgICAgdXNlRXhpc3Rpbmc6IEFkZFBhcnRpY2lwYW50Q29tcG9uZW50LFxyXG4gICAgICBtdWx0aTogdHJ1ZVxyXG4gICAgfV1cclxufSlcclxuXHJcbmV4cG9ydCBjbGFzcyBBZGRQYXJ0aWNpcGFudENvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCwgQ29udHJvbFZhbHVlQWNjZXNzb3IsIE9uRGVzdHJveSB7XHJcbiAgZm9ybUNvbnRyb2xOYW1lID0gJyc7XHJcblxyXG4gIG9uQ2hhbmdlOiBGdW5jdGlvbjtcclxuXHJcbiAgb25Ub3VjaGVkID0gKCkgPT57fVxyXG5cclxuICBvbkNoYW5nZVN1YnM6IFN1YnNjcmlwdGlvbltdID0gW107XHJcblxyXG4gIEBWaWV3Q2hpbGQoJ3BhcnRpY2lwYW50QWRkcmVzcycsIHsgc3RhdGljOiBmYWxzZSB9KVxyXG4gIHB1YmxpYyBwYXJ0aWNpcGFudEFkZHJlc3M6IEFkZHJlc3NDb21wb25lbnQ7XHJcblxyXG4gIEBWaWV3Q2hpbGQoJ3BhcnRpY2lwYW50Rm9ybScsIHsgc3RhdGljOiBmYWxzZSB9KVxyXG4gIHB1YmxpYyBwYXJ0aWNpcGFudEZvcm06IE5nRm9ybTtcclxuXHJcbiAgdmlzaWJsZTogYm9vbGVhbiA9IGZhbHNlO1xyXG5cclxuICByb2xlczogYW55W10gPSBbXHJcbiAgICB7IG5hbWU6ICdhdHRvcm5leScsIHZhbHVlOiAnYScgfSxcclxuICAgIHsgbmFtZTogJ29ic2VydmVyJywgdmFsdWU6ICdvJyB9LF1cclxuXHJcblxyXG4gIHVzZXJGb3JtOiBGb3JtR3JvdXA7XHJcbiAgcGFydGljaXBhbnRMaXN0OiBhbnlbXTtcclxuXHJcbiAgY29uc3RydWN0b3IoXHJcbiAgICBwcml2YXRlIGZiOiBGb3JtQnVpbGRlciwgXHJcbiAgICBwdWJsaWMgdXRpbDogVXRpbFNlcnZpY2UsIFxyXG4gICAgcHVibGljIHZzOiBWYWxpZGF0aW9uU2VydmljZSxcclxuICAgIHB1YmxpYyB0cmFuc2xhdGVTZXJ2aWNlOiBUcmFuc2xhdGVTZXJ2aWNlXHJcbiAgKSB7XHJcblxyXG4gICAgdGhpcy50cmFuc2xhdGVTZXJ2aWNlLnVzZShsb2NhbFN0b3JhZ2UuZ2V0SXRlbShcImxhbmd1YWdlXCIpKTtcclxuXHJcbiAgICB0aGlzLnBhcnRpY2lwYW50TGlzdCA9IFtdO1xyXG5cclxuICAgIHRoaXMudXNlckZvcm0gPSB0aGlzLmZiLmdyb3VwKHtcclxuICAgICAgbmFtZTogbmV3IEZvcm1Db250cm9sKG51bGwsIFZhbGlkYXRvcnMucmVxdWlyZWQpLFxyXG4gICAgICBwaG9uZTogbmV3IEZvcm1Db250cm9sKG51bGwsIFZhbGlkYXRvcnMucmVxdWlyZWQpLFxyXG4gICAgICByb2xlOiBuZXcgRm9ybUNvbnRyb2wobnVsbCwgVmFsaWRhdG9ycy5yZXF1aXJlZCksXHJcbiAgICAgIGFkZHJlc3M6IG5ldyBGb3JtQ29udHJvbChudWxsKSxcclxuICAgIH0pO1xyXG4gICAgdGhpcy5zZWxlY3RCdXR0b25WYWxpZGF0aW9uKCk7XHJcbiAgfVxyXG4gIG5nT25EZXN0cm95KCl7XHJcbiAgICBmb3IobGV0IHN1YiBvZiB0aGlzLm9uQ2hhbmdlU3VicylcclxuICAgIHN1Yi51bnN1YnNjcmliZSgpO1xyXG4gIH1cclxuXHJcbiAgd3JpdGVWYWx1ZSh2YWx1ZTogYW55KXtcclxuICAgaWYgKHZhbHVlKXtcclxuICAgIHRoaXMudXNlckZvcm0uc2V0VmFsdWUodmFsdWUpO1xyXG4gICB9XHJcbiAgfVxyXG4gIHJlZ2lzdGVyT25DaGFuZ2UoZm46IGFueSl7XHJcbiAgIGxldCBzdWIgPSB0aGlzLnZzLnBhcnRpY2lwYW50cy5zdWJzY3JpYmUoZm4pXHJcbiAgIHRoaXMub25DaGFuZ2VTdWJzLnB1c2goc3ViKVxyXG4gIH1cclxuICByZWdpc3Rlck9uVG91Y2hlZChvblRvdWNoZWQ6IGFueSl7XHJcbiAgICB0aGlzLm9uVG91Y2hlZCA9IG9uVG91Y2hlZDtcclxuICB9XHJcbiAgc2V0dmFsdWUoKXtcclxuICAgIHRoaXMub25DaGFuZ2UoKVxyXG4gICAgdGhpcy5vblRvdWNoZWQoKTtcclxuICB9XHJcbiAgXHJcblxyXG4gIHB1YmxpYyBhZGRJdGVtKCk6IHZvaWQge1xyXG4gICAgaWYgKHRoaXMudXNlckZvcm0udmFsaWQpIHtcclxuICAgICAgdGhpcy5wYXJ0aWNpcGFudExpc3QucHVzaCh0aGlzLnVzZXJGb3JtLnZhbHVlKTtcclxuICAgIH0gZWxzZSB7XHJcbiAgICAgIHRoaXMudXNlckZvcm0uaW52YWxpZFxyXG4gICAgfVxyXG5cclxuICB9XHJcbiAgc2VsZWN0QnV0dG9uVmFsaWRhdGlvbigpe1xyXG4gIHRoaXMucm9sZS52YWx1ZUNoYW5nZXMuc3Vic2NyaWJlKHZhbD0+e1xyXG4gICAgaWYodmFsLnZhbHVlID09ICdhJyl7XHJcbiAgICAgIHRoaXMudXRpbC5zZXRSZXF1aXJlZFZhbGlkYXRvcih0aGlzLmFkZHJlc3MpO1xyXG4gICAgfVxyXG4gICAgaWYodmFsLnZhbHVlID09ICdvJyl7XHJcbiAgICAgIHRoaXMudXRpbC5jbGVhclZhbGlkYXRpb24odGhpcy5hZGRyZXNzKTtcclxuICAgIH1cclxuICB9KVxyXG59XHJcbiAgZWRpdEl0ZW0ocGFydGljaXBhbnQpIHtcclxuICAgIHRoaXMudmlzaWJsZSA9ICF0aGlzLnZpc2libGU7XHJcbiAgICBsZXQgaW5kZXggPSB0aGlzLnBhcnRpY2lwYW50TGlzdC5pbmRleE9mKHBhcnRpY2lwYW50KTtcclxuICAgIHRoaXMucGFydGljaXBhbnRMaXN0W2luZGV4XSA9IHRoaXMudXNlckZvcm0ucGF0Y2hWYWx1ZShwYXJ0aWNpcGFudCk7XHJcbiAgfVxyXG4gIHJlc2V0KCkge1xyXG4gICAgdGhpcy51c2VyRm9ybS5yZXNldCgpO1xyXG5cclxuICB9XHJcbiAgcmVtb3ZlSXRlbShwYXJ0aWNpcGFudCkge1xyXG4gICAgbGV0IGluZGV4ID0gdGhpcy5wYXJ0aWNpcGFudExpc3QuaW5kZXhPZihwYXJ0aWNpcGFudCk7XHJcbiAgICB0aGlzLnBhcnRpY2lwYW50TGlzdC5zcGxpY2UoaW5kZXgsIDEpO1xyXG4gICAgdGhpcy5wdWJsaXNoUGFydGljaXBhbnQoKTtcclxuICB9XHJcbiAgYWRkUm9sZSgpIHtcclxuICAgIHRoaXMudmlzaWJsZSA9ICF0aGlzLnZpc2libGU7XHJcbiAgfVxyXG5cclxuICBvblN1Ym1pdCgpIHtcclxuICAgIGlmKHRoaXMucGFydGljaXBhbnRBZGRyZXNzKXtcclxuICAgICAgdGhpcy5wYXJ0aWNpcGFudEFkZHJlc3Muc3VibWl0KCk7XHJcbiAgICB9XHJcbiAgICBpZiAoIXRoaXMudXNlckZvcm0udmFsaWQpIHtcclxuICAgICAgdGhpcy51c2VyRm9ybS5tYXJrQXNEaXJ0eSgpXHJcbiAgICAgIHRoaXMudmFsaWRhdGVBbGxGb3JtRmllbGRzKHRoaXMudXNlckZvcm0pXHJcblxyXG4gICAgfSBlbHNlIHtcclxuICAgICAgdGhpcy51c2VyRm9ybS52YWxpZFxyXG4gICAgICB0aGlzLnBhcnRpY2lwYW50TGlzdC5wdXNoKHRoaXMudXNlckZvcm0udmFsdWUpO1xyXG4gICAgICB0aGlzLnB1Ymxpc2hQYXJ0aWNpcGFudCgpXHJcbiAgICAgIHRoaXMudXNlckZvcm0ucmVzZXQoKTtcclxuICAgICAgdGhpcy52aXNpYmxlID0gIXRoaXMudmlzaWJsZTtcclxuICAgIH1cclxuICB9XHJcblxyXG4gIHB1Ymxpc2hQYXJ0aWNpcGFudCgpe1xyXG4gICAgdGhpcy52cy5wYXJ0aWNpcGFudHMubmV4dCh0aGlzLnBhcnRpY2lwYW50TGlzdC5sZW5ndGggPiAwID8gdGhpcy5wYXJ0aWNpcGFudExpc3QgOiBudWxsKTtcclxuICB9XHJcblxyXG4gIHZhbGlkYXRlQWxsRm9ybUZpZWxkcyhmb3JtR3JvdXA6IEZvcm1Hcm91cCkge1xyXG4gICAgT2JqZWN0LmtleXMoZm9ybUdyb3VwLmNvbnRyb2xzKS5mb3JFYWNoKGZpZWxkID0+IHtcclxuICAgICAgY29uc3QgY29udHJvbCA9IGZvcm1Hcm91cC5nZXQoZmllbGQpO1xyXG4gICAgICBpZiAoY29udHJvbCBpbnN0YW5jZW9mIEZvcm1Db250cm9sKSB7XHJcbiAgICAgICAgY29udHJvbC5tYXJrQXNEaXJ0eSh7IG9ubHlTZWxmOiB0cnVlIH0pO1xyXG4gICAgICB9IGVsc2UgaWYgKGNvbnRyb2wgaW5zdGFuY2VvZiBGb3JtR3JvdXApIHtcclxuICAgICAgICB0aGlzLnZhbGlkYXRlQWxsRm9ybUZpZWxkcyhjb250cm9sKTtcclxuICAgICAgfVxyXG4gICAgfSlcclxuICB9XHJcblxyXG4gIGdldCByb2xlKCkge1xyXG4gICAgcmV0dXJuIHRoaXMudXNlckZvcm0uY29udHJvbHNbJ3JvbGUnXTtcclxuICB9XHJcblxyXG4gIGdldCBuYW1lKCkge1xyXG4gICAgcmV0dXJuIHRoaXMudXNlckZvcm0uY29udHJvbHNbJ25hbWUnXTtcclxuICB9XHJcbiAgZ2V0IGFkZHJlc3MoKSB7XHJcbiAgICByZXR1cm4gdGhpcy51c2VyRm9ybS5jb250cm9sc1snYWRkcmVzcyddO1xyXG4gIH1cclxuXHJcbiAgZ2V0IHBob25lKCkge1xyXG4gICAgcmV0dXJuIHRoaXMudXNlckZvcm0uY29udHJvbHNbJ3Bob25lJ107XHJcbiAgfVxyXG5cclxuICBnZXQgcmVxdWlyZWQoKXtcclxuICAgIHJldHVybiB0aGlzLnRyYW5zbGF0ZVNlcnZpY2UuaW5zdGFudCgnY29tbW9uLnJlcXVpcmVkJyk7XHJcbiAgfVxyXG5cclxuICBjbG9zZSgpIHtcclxuICAgIHRoaXMudXNlckZvcm0ucmVzZXQoKTtcclxuICAgIHRoaXMuY2xvc2VcclxuICB9XHJcblxyXG4gIG5nT25Jbml0KCkge1xyXG5cclxuICB9XHJcbn1cclxuIiwiPHAtdGFibGUgI2R0IFtyb3dIb3Zlcl09XCJ0cnVlXCIgW3ZhbHVlXT1cInBhcnRpY2lwYW50TGlzdFwiID5cclxuICA8bmctdGVtcGxhdGUgcFRlbXBsYXRlPVwiaGVhZGVyXCIgbGV0LWNvbHVtbnMgPlxyXG4gICAgPHRyID5cclxuICAgICAgPHRoPiB7e1wiYWRkLnBhcnRpY2lwYW50LmhlYWRlci5wYXJ0aWNpcGFudFJvbGVcInx0cmFuc2xhdGV9fTwvdGg+XHJcbiAgICAgIDx0aD57e1wiYWRkLnBhcnRpY2lwYW50LmhlYWRlci5uYW1lXCJ8dHJhbnNsYXRlfX08L3RoPlxyXG4gICAgICA8dGg+IHt7XCJhZGQucGFydGljaXBhbnQuaGVhZGVyLnBob25lXCJ8dHJhbnNsYXRlfX08L3RoPlxyXG4gICAgICA8dGg+PC90aD5cclxuICAgIDwvdHI+XHJcbiAgPC9uZy10ZW1wbGF0ZT5cclxuICA8bmctdGVtcGxhdGUgcFRlbXBsYXRlPVwiYm9keVwiIGxldC1wYXJ0aWNpcGFudCBsZXQtcm93SW5kZXg9XCJyb3dJbmRleFwiPlxyXG4gICAgPHRyID5cclxuXHJcbiAgICAgIDx0ZCA+PHNwYW4+e3twYXJ0aWNpcGFudC5yb2xlLm5hbWV9fTwvc3Bhbj48L3RkPlxyXG4gICAgICA8dGQ+PHNwYW4+e3twYXJ0aWNpcGFudC5uYW1lfX08L3NwYW4+PC90ZD5cclxuICAgICAgPHRkPjxzcGFuPnt7cGFydGljaXBhbnQucGhvbmV9fTwvc3Bhbj48L3RkPlxyXG4gICAgICA8dGQ+XHJcbiAgICAgICAgPGlvbi1idXR0b24gZmlsbD1cIm91dGxpbmVcIiAoY2xpY2spPVwiZWRpdEl0ZW0ocGFydGljaXBhbnQpXCIgIHNpemU9XCJzbWFsbFwiIGNsYXNzPVwiYWN0aW9uLWJ1dHRvblwiPlxyXG4gICAgICAgICAgPGZhLWljb24gW2ljb25dPVwiWydmYWwnLCAnZWRpdCddXCIgY2xhc3M9XCJhY3Rpb24taWNvblwiPjwvZmEtaWNvbj5cclxuICAgICAgICA8L2lvbi1idXR0b24+XHJcbiAgICAgICAgPGlvbi1idXR0b24gKGNsaWNrKT1cInJlbW92ZUl0ZW0ocGFydGljaXBhbnQpXCIgZmlsbD1cIm91dGxpbmVcIiAgc2l6ZT1cInNtYWxsXCIgY2xhc3M9XCJhY3Rpb24tYnV0dG9uXCI+XHJcbiAgICAgICAgICA8ZmEtaWNvbiBbaWNvbl09XCJbJ2ZhbCcsICd0cmFzaC1hbHQnXVwiIGNsYXNzPVwiYWN0aW9uLWljb25cIj48L2ZhLWljb24+XHJcbiAgICAgICAgPC9pb24tYnV0dG9uPlxyXG4gICAgICA8L3RkPlxyXG4gICAgPC90cj5cclxuICA8L25nLXRlbXBsYXRlPlxyXG4gIDxuZy10ZW1wbGF0ZSBwVGVtcGxhdGU9XCJmb290ZXJcIiBsZXQtY29sdW1ucz5cclxuICAgIDx0cj5cclxuICAgICAgPHRkPnt7XCJhZGQucGFydGljaXBhbnQuZm9vdGVyLmFkZEVsZW1lbnRcInx0cmFuc2xhdGV9fTwvdGQ+XHJcbiAgICAgIDx0ZD48L3RkPlxyXG4gICAgICA8dGQ+PC90ZD5cclxuICAgICAgPHRkIGNsYXNzPVwiY29sLW9mZnNldC00IGFjdGlvbi1idXR0b25cIj5cclxuICAgICAgICA8aW9uLWJ1dHRvbiAoY2xpY2spPVwiYWRkUm9sZSgpXCIgZmlsbD1cIm91dGxpbmVcIiBzaXplPVwic21hbGxcIiBzaGFwZT1cInNxdWFyZVwiIGNsYXNzPVwiYWN0aW9uLWJ1dHRvblwiPlxyXG4gICAgICAgICAgPGZhLWljb24gW2ljb25dPVwiWydmYWwnLCAncGx1cyddXCIgY2xhc3M9XCJhY3Rpb24taWNvblwiPjwvZmEtaWNvbj5cclxuICAgICAgICA8L2lvbi1idXR0b24+XHJcbiAgICAgIDwvdGQ+XHJcbiAgICA8L3RyPlxyXG4gIDwvbmctdGVtcGxhdGU+XHJcbjwvcC10YWJsZT5cclxuPGRpdiBjbGFzcz1cImFsaWduXCI+XHJcbjxmb3JtIFtmb3JtR3JvdXBdPVwidXNlckZvcm1cIiAqbmdJZj1cInZpc2libGVcIiAobmdTdWJtaXQpPVwib25TdWJtaXQoKVwiICNwYXJ0aWNpcGFudEZvcm09XCJuZ0Zvcm1cIiBzdHlsZT1cIm1hcmdpbi1sZWZ0OjE2cHhcIj5cclxuICA8ZGl2IGNsYXNzPVwiZmllbGQtZ3JpZFwiPlxyXG4gICAgPGJyPlxyXG4gICAgPGgxIGNsYXNzPVwiaGVhZGluZ1wiPnt7XCJhZGQucGFydGljaXBhbnQuaGVhZGVyLmhlYWRpbmdcInx0cmFuc2xhdGV9fTwvaDE+XHJcbiAgICA8YnI+XHJcbiAgPC9kaXY+XHJcbiAgPGRpdiBjbGFzcz1cImZpZWxkLWdyaWRcIj48bGFiZWw+e3tcImFkZC5wYXJ0aWNpcGFudC5oZWFkZXIucXVlc3Rpb25cInx0cmFuc2xhdGV9fTwvbGFiZWw+PC9kaXY+XHJcbiAgPGRpdiBzdHlsZT1cInBhZGRpbmctbGVmdDogMHB4O1wiPlxyXG4gICAgPHAtc2VsZWN0QnV0dG9uIFtvcHRpb25zXT1cInJvbGVzXCIgb3B0aW9uTGFiZWw9XCJuYW1lXCIgZm9ybUNvbnRyb2xOYW1lPVwicm9sZVwiIHJlcXVpcmVkXHJcbiAgICAgIFtjbGFzcy5oYXMtZXJyb3JdPVwicm9sZS5kaXJ0eSAmJiByb2xlLmludmFsaWRcIj5cclxuICAgIDwvcC1zZWxlY3RCdXR0b24+XHJcbiAgICA8c3BhbiBjbGFzcz1cImhlbHAtYmxvY2tcIiAqbmdJZj1cInJvbGUuZGlydHkgJiYgcm9sZS5pbnZhbGlkXCI+e3tcImluZHVjdGlvbi5yZXF1aXJlZFwifCB0cmFuc2xhdGV9fTwvc3Bhbj5cclxuICA8L2Rpdj5cclxuXHJcblxyXG4gIDxkaXYgY2xhc3M9XCJmb3JtZ3JpZCBncmlkXCIgKm5nSWY9XCJyb2xlLnZhbHVlPy52YWx1ZSA9PSdhJ1wiIHN0eWxlPVwibWFyZ2luLXRvcDoxMHB4XCI+XHJcbiAgICA8ZGl2IGNsYXNzPVwiZmllbGQgY29sLTQgbWQ6Y29sLTJcIj48bGFiZWwgc3R5bGU9XCJtYXJnaW46NHB4XCI+e3tcImFkZC5wYXJ0aWNpcGFudC5sYXd5ZXIubmFtZVwifHRyYW5zbGF0ZX19PC9sYWJlbD5cclxuICAgICAgPGlucHV0IHR5cGU9XCJ0ZXh0XCIgcElucHV0VGV4dCBmb3JtQ29udHJvbE5hbWU9XCJuYW1lXCIgcGxhY2Vob2xkZXI9XCJBdHRvcm5leSBOYW1lXCJcclxuICAgICAgICBjbGFzcz1cInRleHQtYmFzZSB0ZXh0LWNvbG9yIHN1cmZhY2Utb3ZlcmxheSBwLTIgYm9yZGVyLTEgYm9yZGVyLXNvbGlkIHN1cmZhY2UtYm9yZGVyIGJvcmRlci1yb3VuZCBhcHBlYXJhbmNlLW5vbmUgb3V0bGluZS1ub25lIGZvY3VzOmJvcmRlci1wcmltYXJ5IHctZnVsbFwiIC8+XHJcbiAgICAgIDxhcHAtZXJyb3IgW2NsYXNzXT1cIidhcHAtZ3JpZCdcIiBbZmllbGRdPSduYW1lJyBbZm9ybV09XCJ1c2VyRm9ybVwiIFtlcnJEZWZdPVwieyBcclxuICAgICAgICAgIHJlcXVpcmVkOiAgcmVxdWlyZWR9XCI+XHJcbiAgICAgIDwvYXBwLWVycm9yPlxyXG4gICAgPC9kaXY+XHJcblxyXG4gICAgPGRpdiBjbGFzcz1cImZpZWxkIGNvbC00IG1kOmNvbC05XCI+PHNwYW5cclxuICAgICAgICBjbGFzcz1cImJsb2NrIG1iLTJcIj57e1wiYWRkLnBhcnRpY2lwYW50Lmxhd3llci5waG9uZVwifHRyYW5zbGF0ZX19PC9zcGFuPlxyXG4gICAgICA8cC1pbnB1dE1hc2sgbWFzaz1cIjk5OS05OTktOTk5OVwiIHBsYWNlaG9sZGVyPVwiOTk5LTk5OS05OTk5XCIgZm9ybUNvbnRyb2xOYW1lPVwicGhvbmVcIj48L3AtaW5wdXRNYXNrPlxyXG4gICAgICA8YXBwLWVycm9yIFtjbGFzc109XCInYXBwLWdyaWQgYmxvY2sgbWItMidcIiBbZmllbGRdPSdwaG9uZScgW2Zvcm1dPVwidXNlckZvcm1cIiBbZXJyRGVmXT1cInsgXHJcbiAgICAgICAgcmVxdWlyZWQ6ICByZXF1aXJlZH1cIj5cclxuICAgICAgPC9hcHAtZXJyb3I+XHJcbiAgICA8L2Rpdj5cclxuICAgIDxkaXYgY2xhc3M9XCJmaWVsZCBjb2wtNCBtZDpjb2wtOSBmaWVsZC1ncmlkXCI+PGxhYmVsIHN0eWxlPVwicGFkZGluZy1sZWZ0OjJweFwiPnt7XCJhZGQucGFydGljaXBhbnQubGF3eWVyLmRlY2xhcmF0aW9uXCJ8dHJhbnNsYXRlfX08L2xhYmVsPjwvZGl2PlxyXG4gICAgPGJyIC8+XHJcblxyXG4gICAgPGRpdiBjbGFzcz1cImZpZWxkIGNvbC00IG1kOmNvbC05IGZpZWxkLWdyaWRcIj5cclxuICAgICAgPGFwcC1hZGRyZXNzICNwYXJ0aWNpcGFudEFkZHJlc3MgZm9ybUNvbnRyb2xOYW1lPVwiYWRkcmVzc1wiPjwvYXBwLWFkZHJlc3M+XHJcbiAgICA8L2Rpdj5cclxuICAgIDxkaXYgY2xhc3M9XCJmaWVsZCBjb2wtNCBtZDpjb2wtOVwiPlxyXG4gICAgICA8aW9uLWJ1dHRvbiAoY2xpY2spPVwiY2xvc2UoKVwiIGZpbGw9XCJvdXRsaW5lXCIgc2hhcGU9XCJyb3VuZFwiIGNsYXNzPVwiY29sLW9mZnNldC0zXCI+Q2xlYXI8L2lvbi1idXR0b24+XHJcbiAgICAgIDxpb24tYnV0dG9uIChjbGljayk9XCJvblN1Ym1pdCgpXCIgZmlsbD1cIm91dGxpbmVcIiBzaGFwZT1cInJvdW5kXCIgdHlwZT1cInN1Ym1pdFwiIGNsYXNzPVwiY29sLW9mZnNldC0xXCI+U2F2ZTwvaW9uLWJ1dHRvbj5cclxuICAgIDwvZGl2PlxyXG4gIDwvZGl2PlxyXG5cclxuICA8ZGl2IGNsYXNzPVwiZm9ybWdyaWQgZ3JpZFwiICpuZ0lmPVwicm9sZS52YWx1ZT8udmFsdWUgPT0nbydcIj5cclxuICAgIDxkaXYgY2xhc3M9XCJmaWVsZCBjb2wtNCBtZDpjb2wtMlwiPjxsYWJlbCBzdHlsZT1cIm1hcmdpbjoxMHB4IDBweFwiPnt7XCJhZGQucGFydGljaXBhbnQub2JzZXJ2ZXIubmFtZVwifHRyYW5zbGF0ZX19PC9sYWJlbD5cclxuICAgICAgPGlucHV0IHR5cGU9XCJ0ZXh0XCIgcElucHV0VGV4dCBmb3JtQ29udHJvbE5hbWU9XCJuYW1lXCIgcGxhY2Vob2xkZXI9XCJPYnNlcnZlciBOYW1lXCJcclxuICAgICAgICBjbGFzcz1cInRleHQtYmFzZSB0ZXh0LWNvbG9yIHN1cmZhY2Utb3ZlcmxheSBwLTIgYm9yZGVyLTEgYm9yZGVyLXNvbGlkIHN1cmZhY2UtYm9yZGVyIGJvcmRlci1yb3VuZCBhcHBlYXJhbmNlLW5vbmUgb3V0bGluZS1ub25lIGZvY3VzOmJvcmRlci1wcmltYXJ5IHctZnVsbFwiPlxyXG4gICAgICA8YXBwLWVycm9yIFtjbGFzc109XCInYXBwLWdyaWQnXCIgW2ZpZWxkXT0nbmFtZScgW2Zvcm1dPVwidXNlckZvcm1cIiBbZXJyRGVmXT1cInsgXHJcbiAgICAgICAgICByZXF1aXJlZDogIHJlcXVpcmVkfVwiPlxyXG4gICAgICA8L2FwcC1lcnJvcj5cclxuICAgIDwvZGl2PlxyXG5cclxuICAgIDxkaXYgY2xhc3M9XCJmaWVsZCBjb2wtNCBtZDpjb2wtOVwiIHN0eWxlPVwicGFkZGluZy10b3A6MTJweFwiPlxyXG4gICAgICA8c3BhbiBjbGFzcz1cImJsb2NrIG1iLTJcIj57e1wiYWRkLnBhcnRpY2lwYW50Lm9ic2VydmVyLnBob25lXCJ8dHJhbnNsYXRlfX08L3NwYW4+XHJcbiAgICAgIDxwLWlucHV0TWFzayBtYXNrPVwiOTk5LTk5OS05OTk5XCIgcGxhY2Vob2xkZXI9XCI5OTktOTk5LTk5OTlcIiBmb3JtQ29udHJvbE5hbWU9XCJwaG9uZVwiPjwvcC1pbnB1dE1hc2s+XHJcbiAgICAgIDxhcHAtZXJyb3IgW2NsYXNzXT1cIidhcHAtZ3JpZCBibG9jayBtYi0yJ1wiIFtmaWVsZF09J3Bob25lJyBbZm9ybV09XCJ1c2VyRm9ybVwiIFtlcnJEZWZdPVwieyBcclxuICAgICAgICByZXF1aXJlZDogIHJlcXVpcmVkfVwiPlxyXG4gICAgICA8L2FwcC1lcnJvcj5cclxuICAgIDwvZGl2PlxyXG4gICAgPGRpdiBjbGFzcz1cImZpZWxkLWdyaWRcIj48bGFiZWwgXHJcbiAgICAgICAgc3R5bGU9XCJtYXJnaW4tbGVmdDoxMHB4XCI+e3tcImFkZC5wYXJ0aWNpcGFudC5vYnNlcnZlci5kZWNsYXJhdGlvblwifHRyYW5zbGF0ZX19PC9sYWJlbD48L2Rpdj5cclxuICAgIDxkaXYgY2xhc3M9XCJmaWVsZCBjb2wtMTIgbWQ6Y29sLTlcIiBzdHlsZT1cIm1hcmdpbi10b3A6IDIwcHg7XCI+XHJcbiAgICAgIDxpb24tYnV0dG9uIChjbGljayk9XCJjbG9zZSgpXCIgZmlsbD1cIm91dGxpbmVcIiBzaGFwZT1cInJvdW5kXCIgY2xhc3M9XCJjb2wtb2Zmc2V0LTNcIj5DbGVhcjwvaW9uLWJ1dHRvbj5cclxuXHJcbiAgICAgIDxpb24tYnV0dG9uIChjbGljayk9XCJvblN1Ym1pdCgpXCIgdHlwZT1cInN1Ym1pdFwiIGZpbGw9XCJvdXRsaW5lXCIgc2hhcGU9XCJyb3VuZFwiIGNsYXNzPVwiY29sLW9mZnNldC0xXCI+U2F2ZTwvaW9uLWJ1dHRvbj5cclxuICAgIDwvZGl2PlxyXG4gIDwvZGl2PlxyXG48L2Zvcm0+XHJcbjwvZGl2PiJdfQ==
|