@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,617 @@
|
|
|
1
|
+
import { Component, Input, Output, EventEmitter, ViewChild } from '@angular/core';
|
|
2
|
+
import { UntypedFormControl, Validators } from '@angular/forms';
|
|
3
|
+
import { AppValidators } from '../questionnaire/AppValidators';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
import * as i1 from "../../services/logger/logger.service";
|
|
6
|
+
import * as i2 from "@angular/forms";
|
|
7
|
+
import * as i3 from "../../services/login/login.service";
|
|
8
|
+
import * as i4 from "@angular/router";
|
|
9
|
+
import * as i5 from "@ngx-translate/core";
|
|
10
|
+
import * as i6 from "@ionic/angular";
|
|
11
|
+
import * as i7 from "@angular/common";
|
|
12
|
+
import * as i8 from "primeng/api";
|
|
13
|
+
import * as i9 from "primeng/dialog";
|
|
14
|
+
import * as i10 from "primeng/inputtext";
|
|
15
|
+
import * as i11 from "../error/error.component";
|
|
16
|
+
const _c0 = ["qeFormDirective"];
|
|
17
|
+
const _c1 = (a0, a1) => ({ required: a0, notEqual: a1 });
|
|
18
|
+
function LegalDisclaimarComponent_div_2_ng_template_268_app_error_9_Template(rf, ctx) { if (rf & 1) {
|
|
19
|
+
i0.ɵɵelement(0, "app-error", 35);
|
|
20
|
+
} if (rf & 2) {
|
|
21
|
+
const ctx_r3 = i0.ɵɵnextContext(3);
|
|
22
|
+
const _r0 = i0.ɵɵreference(1);
|
|
23
|
+
i0.ɵɵclassMap("app-grid");
|
|
24
|
+
i0.ɵɵproperty("field", ctx_r3.lastfourssn)("form", _r0)("errDef", i0.ɵɵpureFunction2(5, _c1, ctx_r3.required, ctx_r3.ssnNotMatched));
|
|
25
|
+
} }
|
|
26
|
+
function LegalDisclaimarComponent_div_2_ng_template_268_Template(rf, ctx) { if (rf & 1) {
|
|
27
|
+
const _r5 = i0.ɵɵgetCurrentView();
|
|
28
|
+
i0.ɵɵelementStart(0, "ion-row")(1, "ion-col", 36);
|
|
29
|
+
i0.ɵɵtext(2);
|
|
30
|
+
i0.ɵɵpipe(3, "translate");
|
|
31
|
+
i0.ɵɵelement(4, "br");
|
|
32
|
+
i0.ɵɵelementEnd()();
|
|
33
|
+
i0.ɵɵelementStart(5, "ion-row")(6, "ion-col", 37);
|
|
34
|
+
i0.ɵɵelement(7, "input", 38)(8, "br");
|
|
35
|
+
i0.ɵɵtemplate(9, LegalDisclaimarComponent_div_2_ng_template_268_app_error_9_Template, 1, 8, "app-error", 39);
|
|
36
|
+
i0.ɵɵelementEnd();
|
|
37
|
+
i0.ɵɵelementStart(10, "ion-col", 40)(11, "ion-button", 41);
|
|
38
|
+
i0.ɵɵlistener("keydown.enter", function LegalDisclaimarComponent_div_2_ng_template_268_Template_ion_button_keydown_enter_11_listener() { i0.ɵɵrestoreView(_r5); const ctx_r4 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r4.cancelDisclaimar()); })("click", function LegalDisclaimarComponent_div_2_ng_template_268_Template_ion_button_click_11_listener() { i0.ɵɵrestoreView(_r5); const ctx_r6 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r6.cancelDisclaimar()); });
|
|
39
|
+
i0.ɵɵtext(12);
|
|
40
|
+
i0.ɵɵelementEnd();
|
|
41
|
+
i0.ɵɵelementStart(13, "ion-button", 42);
|
|
42
|
+
i0.ɵɵlistener("keydown.enter", function LegalDisclaimarComponent_div_2_ng_template_268_Template_ion_button_keydown_enter_13_listener() { i0.ɵɵrestoreView(_r5); const ctx_r7 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r7.acceptDisclaimar()); })("click", function LegalDisclaimarComponent_div_2_ng_template_268_Template_ion_button_click_13_listener() { i0.ɵɵrestoreView(_r5); const ctx_r8 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r8.acceptDisclaimar()); });
|
|
43
|
+
i0.ɵɵtext(14);
|
|
44
|
+
i0.ɵɵelementEnd()()();
|
|
45
|
+
} if (rf & 2) {
|
|
46
|
+
const ctx_r2 = i0.ɵɵnextContext(2);
|
|
47
|
+
const _r0 = i0.ɵɵreference(1);
|
|
48
|
+
i0.ɵɵadvance(2);
|
|
49
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(3, 5, "access.legal.readandsign"), "");
|
|
50
|
+
i0.ɵɵadvance(5);
|
|
51
|
+
i0.ɵɵproperty("formControl", ctx_r2.lastfourssn);
|
|
52
|
+
i0.ɵɵadvance(2);
|
|
53
|
+
i0.ɵɵproperty("ngIf", _r0.touched || ctx_r2.isSubmitted);
|
|
54
|
+
i0.ɵɵadvance(3);
|
|
55
|
+
i0.ɵɵtextInterpolate1(" ", ctx_r2.legalDisclaimar.cancelButton, " ");
|
|
56
|
+
i0.ɵɵadvance(2);
|
|
57
|
+
i0.ɵɵtextInterpolate1(" ", ctx_r2.legalDisclaimar.acceptButton, " ");
|
|
58
|
+
} }
|
|
59
|
+
const _c2 = () => ({ width: "60vw" });
|
|
60
|
+
const _c3 = () => ({ "960px": "80vw", "640px": "100vw" });
|
|
61
|
+
const _c4 = a0 => ({ required: a0 });
|
|
62
|
+
function LegalDisclaimarComponent_div_2_Template(rf, ctx) { if (rf & 1) {
|
|
63
|
+
const _r10 = i0.ɵɵgetCurrentView();
|
|
64
|
+
i0.ɵɵelementStart(0, "div")(1, "p-dialog", 3);
|
|
65
|
+
i0.ɵɵlistener("visibleChange", function LegalDisclaimarComponent_div_2_Template_p_dialog_visibleChange_1_listener($event) { i0.ɵɵrestoreView(_r10); const ctx_r9 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r9.displayPosition = $event); });
|
|
66
|
+
i0.ɵɵelementStart(2, "h1");
|
|
67
|
+
i0.ɵɵtext(3);
|
|
68
|
+
i0.ɵɵelementEnd();
|
|
69
|
+
i0.ɵɵelement(4, "div", 4);
|
|
70
|
+
i0.ɵɵelementStart(5, "h1", 5);
|
|
71
|
+
i0.ɵɵtext(6);
|
|
72
|
+
i0.ɵɵelementEnd();
|
|
73
|
+
i0.ɵɵelement(7, "div", 6);
|
|
74
|
+
i0.ɵɵelementStart(8, "div", 7)(9, "div", 8)(10, "h4");
|
|
75
|
+
i0.ɵɵtext(11);
|
|
76
|
+
i0.ɵɵpipe(12, "translate");
|
|
77
|
+
i0.ɵɵelementEnd();
|
|
78
|
+
i0.ɵɵelementStart(13, "p")(14, "strong");
|
|
79
|
+
i0.ɵɵtext(15);
|
|
80
|
+
i0.ɵɵpipe(16, "translate");
|
|
81
|
+
i0.ɵɵelementEnd();
|
|
82
|
+
i0.ɵɵtext(17);
|
|
83
|
+
i0.ɵɵpipe(18, "translate");
|
|
84
|
+
i0.ɵɵelementEnd()();
|
|
85
|
+
i0.ɵɵelementStart(19, "div", 9)(20, "div", 10)(21, "div", 11);
|
|
86
|
+
i0.ɵɵtext(22);
|
|
87
|
+
i0.ɵɵpipe(23, "translate");
|
|
88
|
+
i0.ɵɵelementEnd()();
|
|
89
|
+
i0.ɵɵelementStart(24, "div", 12)(25, "table")(26, "thead")(27, "tr")(28, "th");
|
|
90
|
+
i0.ɵɵtext(29);
|
|
91
|
+
i0.ɵɵpipe(30, "translate");
|
|
92
|
+
i0.ɵɵelementEnd();
|
|
93
|
+
i0.ɵɵelementStart(31, "th");
|
|
94
|
+
i0.ɵɵtext(32);
|
|
95
|
+
i0.ɵɵpipe(33, "translate");
|
|
96
|
+
i0.ɵɵelementEnd();
|
|
97
|
+
i0.ɵɵelementStart(34, "th");
|
|
98
|
+
i0.ɵɵtext(35);
|
|
99
|
+
i0.ɵɵpipe(36, "translate");
|
|
100
|
+
i0.ɵɵelementEnd();
|
|
101
|
+
i0.ɵɵelementStart(37, "th");
|
|
102
|
+
i0.ɵɵtext(38);
|
|
103
|
+
i0.ɵɵpipe(39, "translate");
|
|
104
|
+
i0.ɵɵelementEnd()()();
|
|
105
|
+
i0.ɵɵelementStart(40, "tbody")(41, "tr")(42, "td")(43, "b");
|
|
106
|
+
i0.ɵɵtext(44, "$0");
|
|
107
|
+
i0.ɵɵelementEnd()();
|
|
108
|
+
i0.ɵɵelementStart(45, "td")(46, "b");
|
|
109
|
+
i0.ɵɵtext(47, "$0");
|
|
110
|
+
i0.ɵɵelementEnd()();
|
|
111
|
+
i0.ɵɵelementStart(48, "td")(49, "b");
|
|
112
|
+
i0.ɵɵtext(50, "$0");
|
|
113
|
+
i0.ɵɵelementEnd();
|
|
114
|
+
i0.ɵɵtext(51);
|
|
115
|
+
i0.ɵɵpipe(52, "translate");
|
|
116
|
+
i0.ɵɵelement(53, "br");
|
|
117
|
+
i0.ɵɵelementStart(54, "b");
|
|
118
|
+
i0.ɵɵtext(55, "$1.50");
|
|
119
|
+
i0.ɵɵelementEnd();
|
|
120
|
+
i0.ɵɵtext(56);
|
|
121
|
+
i0.ɵɵpipe(57, "translate");
|
|
122
|
+
i0.ɵɵelementEnd();
|
|
123
|
+
i0.ɵɵelementStart(58, "td")(59, "b");
|
|
124
|
+
i0.ɵɵtext(60, "N/A");
|
|
125
|
+
i0.ɵɵelementEnd()()()()()();
|
|
126
|
+
i0.ɵɵelementStart(61, "div", 13)(62, "table")(63, "tr")(64, "td");
|
|
127
|
+
i0.ɵɵtext(65);
|
|
128
|
+
i0.ɵɵpipe(66, "translate");
|
|
129
|
+
i0.ɵɵelementEnd();
|
|
130
|
+
i0.ɵɵelementStart(67, "td");
|
|
131
|
+
i0.ɵɵtext(68, "$0");
|
|
132
|
+
i0.ɵɵelementEnd()();
|
|
133
|
+
i0.ɵɵelementStart(69, "tr")(70, "td");
|
|
134
|
+
i0.ɵɵtext(71);
|
|
135
|
+
i0.ɵɵpipe(72, "translate");
|
|
136
|
+
i0.ɵɵelementEnd();
|
|
137
|
+
i0.ɵɵelementStart(73, "td");
|
|
138
|
+
i0.ɵɵtext(74);
|
|
139
|
+
i0.ɵɵpipe(75, "translate");
|
|
140
|
+
i0.ɵɵelementEnd()();
|
|
141
|
+
i0.ɵɵelementStart(76, "tr")(77, "td");
|
|
142
|
+
i0.ɵɵtext(78);
|
|
143
|
+
i0.ɵɵpipe(79, "translate");
|
|
144
|
+
i0.ɵɵelementEnd();
|
|
145
|
+
i0.ɵɵelementStart(80, "td");
|
|
146
|
+
i0.ɵɵtext(81);
|
|
147
|
+
i0.ɵɵpipe(82, "translate");
|
|
148
|
+
i0.ɵɵelementEnd()()();
|
|
149
|
+
i0.ɵɵelementStart(83, "div", 14)(84, "b");
|
|
150
|
+
i0.ɵɵtext(85);
|
|
151
|
+
i0.ɵɵpipe(86, "translate");
|
|
152
|
+
i0.ɵɵelementEnd();
|
|
153
|
+
i0.ɵɵelement(87, "hr", 15);
|
|
154
|
+
i0.ɵɵelementEnd();
|
|
155
|
+
i0.ɵɵelementStart(88, "p");
|
|
156
|
+
i0.ɵɵtext(89);
|
|
157
|
+
i0.ɵɵpipe(90, "translate");
|
|
158
|
+
i0.ɵɵelementEnd();
|
|
159
|
+
i0.ɵɵelementStart(91, "p")(92, "b");
|
|
160
|
+
i0.ɵɵtext(93);
|
|
161
|
+
i0.ɵɵpipe(94, "translate");
|
|
162
|
+
i0.ɵɵelementEnd();
|
|
163
|
+
i0.ɵɵelement(95, "br");
|
|
164
|
+
i0.ɵɵtext(96);
|
|
165
|
+
i0.ɵɵpipe(97, "translate");
|
|
166
|
+
i0.ɵɵelementEnd();
|
|
167
|
+
i0.ɵɵelementStart(98, "p");
|
|
168
|
+
i0.ɵɵtext(99);
|
|
169
|
+
i0.ɵɵpipe(100, "translate");
|
|
170
|
+
i0.ɵɵelementStart(101, "a", 16)(102, "i");
|
|
171
|
+
i0.ɵɵtext(103, "cfpb.gov/prepaid");
|
|
172
|
+
i0.ɵɵelementEnd()();
|
|
173
|
+
i0.ɵɵtext(104, ".");
|
|
174
|
+
i0.ɵɵelement(105, "br");
|
|
175
|
+
i0.ɵɵtext(106);
|
|
176
|
+
i0.ɵɵpipe(107, "translate");
|
|
177
|
+
i0.ɵɵelementStart(108, "b");
|
|
178
|
+
i0.ɵɵtext(109, "1-866-335-1653");
|
|
179
|
+
i0.ɵɵelementEnd();
|
|
180
|
+
i0.ɵɵtext(110);
|
|
181
|
+
i0.ɵɵpipe(111, "translate");
|
|
182
|
+
i0.ɵɵelementStart(112, "a", 17)(113, "b");
|
|
183
|
+
i0.ɵɵtext(114, "usbankreliacard.com");
|
|
184
|
+
i0.ɵɵelementEnd()();
|
|
185
|
+
i0.ɵɵtext(115, ".");
|
|
186
|
+
i0.ɵɵelementEnd()()();
|
|
187
|
+
i0.ɵɵelementStart(116, "div", 18);
|
|
188
|
+
i0.ɵɵelement(117, "hr");
|
|
189
|
+
i0.ɵɵelementEnd();
|
|
190
|
+
i0.ɵɵelementStart(118, "div", 19)(119, "h3");
|
|
191
|
+
i0.ɵɵtext(120);
|
|
192
|
+
i0.ɵɵpipe(121, "translate");
|
|
193
|
+
i0.ɵɵelementEnd();
|
|
194
|
+
i0.ɵɵelementStart(122, "p")(123, "strong");
|
|
195
|
+
i0.ɵɵtext(124);
|
|
196
|
+
i0.ɵɵpipe(125, "translate");
|
|
197
|
+
i0.ɵɵelementEnd();
|
|
198
|
+
i0.ɵɵtext(126);
|
|
199
|
+
i0.ɵɵpipe(127, "translate");
|
|
200
|
+
i0.ɵɵelementEnd();
|
|
201
|
+
i0.ɵɵelementStart(128, "div", 20)(129, "table")(130, "thead")(131, "tr")(132, "th");
|
|
202
|
+
i0.ɵɵtext(133);
|
|
203
|
+
i0.ɵɵpipe(134, "translate");
|
|
204
|
+
i0.ɵɵelementEnd();
|
|
205
|
+
i0.ɵɵelementStart(135, "th");
|
|
206
|
+
i0.ɵɵtext(136);
|
|
207
|
+
i0.ɵɵpipe(137, "translate");
|
|
208
|
+
i0.ɵɵelementEnd();
|
|
209
|
+
i0.ɵɵelementStart(138, "th");
|
|
210
|
+
i0.ɵɵtext(139);
|
|
211
|
+
i0.ɵɵpipe(140, "translate");
|
|
212
|
+
i0.ɵɵelementEnd()()();
|
|
213
|
+
i0.ɵɵelementStart(141, "tbody")(142, "tr", 21)(143, "td", 22)(144, "b");
|
|
214
|
+
i0.ɵɵtext(145);
|
|
215
|
+
i0.ɵɵpipe(146, "translate");
|
|
216
|
+
i0.ɵɵelementEnd()()();
|
|
217
|
+
i0.ɵɵelementStart(147, "tr")(148, "td");
|
|
218
|
+
i0.ɵɵtext(149);
|
|
219
|
+
i0.ɵɵpipe(150, "translate");
|
|
220
|
+
i0.ɵɵpipe(151, "translate");
|
|
221
|
+
i0.ɵɵelementEnd();
|
|
222
|
+
i0.ɵɵelementStart(152, "td");
|
|
223
|
+
i0.ɵɵtext(153, "$0");
|
|
224
|
+
i0.ɵɵelementEnd();
|
|
225
|
+
i0.ɵɵelementStart(154, "td");
|
|
226
|
+
i0.ɵɵtext(155);
|
|
227
|
+
i0.ɵɵpipe(156, "translate");
|
|
228
|
+
i0.ɵɵelementStart(157, "a", 23);
|
|
229
|
+
i0.ɵɵtext(158, "usbank.com/locations");
|
|
230
|
+
i0.ɵɵelementEnd();
|
|
231
|
+
i0.ɵɵtext(159);
|
|
232
|
+
i0.ɵɵpipe(160, "translate");
|
|
233
|
+
i0.ɵɵelementStart(161, "a", 24);
|
|
234
|
+
i0.ɵɵtext(162, "moneypass.com/atm-locator.html");
|
|
235
|
+
i0.ɵɵelementEnd();
|
|
236
|
+
i0.ɵɵtext(163, ".");
|
|
237
|
+
i0.ɵɵelementEnd()();
|
|
238
|
+
i0.ɵɵelementStart(164, "tr")(165, "td");
|
|
239
|
+
i0.ɵɵtext(166);
|
|
240
|
+
i0.ɵɵpipe(167, "translate");
|
|
241
|
+
i0.ɵɵpipe(168, "translate");
|
|
242
|
+
i0.ɵɵelementEnd();
|
|
243
|
+
i0.ɵɵelementStart(169, "td");
|
|
244
|
+
i0.ɵɵtext(170, "$1.50");
|
|
245
|
+
i0.ɵɵelementEnd();
|
|
246
|
+
i0.ɵɵelementStart(171, "td");
|
|
247
|
+
i0.ɵɵtext(172);
|
|
248
|
+
i0.ɵɵpipe(173, "translate");
|
|
249
|
+
i0.ɵɵelementEnd()();
|
|
250
|
+
i0.ɵɵelementStart(174, "tr")(175, "td");
|
|
251
|
+
i0.ɵɵtext(176);
|
|
252
|
+
i0.ɵɵpipe(177, "translate");
|
|
253
|
+
i0.ɵɵelementEnd();
|
|
254
|
+
i0.ɵɵelementStart(178, "td");
|
|
255
|
+
i0.ɵɵtext(179, "$0");
|
|
256
|
+
i0.ɵɵelementEnd();
|
|
257
|
+
i0.ɵɵelementStart(180, "td");
|
|
258
|
+
i0.ɵɵtext(181);
|
|
259
|
+
i0.ɵɵpipe(182, "translate");
|
|
260
|
+
i0.ɵɵelementEnd()();
|
|
261
|
+
i0.ɵɵelementStart(183, "tr", 21)(184, "td", 22)(185, "b");
|
|
262
|
+
i0.ɵɵtext(186);
|
|
263
|
+
i0.ɵɵpipe(187, "translate");
|
|
264
|
+
i0.ɵɵelementEnd()()();
|
|
265
|
+
i0.ɵɵelementStart(188, "tr")(189, "td");
|
|
266
|
+
i0.ɵɵtext(190);
|
|
267
|
+
i0.ɵɵpipe(191, "translate");
|
|
268
|
+
i0.ɵɵelementEnd();
|
|
269
|
+
i0.ɵɵelementStart(192, "td");
|
|
270
|
+
i0.ɵɵtext(193, "3%");
|
|
271
|
+
i0.ɵɵelementEnd();
|
|
272
|
+
i0.ɵɵelementStart(194, "td");
|
|
273
|
+
i0.ɵɵtext(195);
|
|
274
|
+
i0.ɵɵpipe(196, "translate");
|
|
275
|
+
i0.ɵɵelementEnd()();
|
|
276
|
+
i0.ɵɵelementStart(197, "tr")(198, "td");
|
|
277
|
+
i0.ɵɵtext(199);
|
|
278
|
+
i0.ɵɵpipe(200, "translate");
|
|
279
|
+
i0.ɵɵelementEnd();
|
|
280
|
+
i0.ɵɵelementStart(201, "td");
|
|
281
|
+
i0.ɵɵtext(202, "$1.50");
|
|
282
|
+
i0.ɵɵelementEnd();
|
|
283
|
+
i0.ɵɵelementStart(203, "td");
|
|
284
|
+
i0.ɵɵtext(204);
|
|
285
|
+
i0.ɵɵpipe(205, "translate");
|
|
286
|
+
i0.ɵɵelementEnd()();
|
|
287
|
+
i0.ɵɵelementStart(206, "tr", 21)(207, "td", 22)(208, "b");
|
|
288
|
+
i0.ɵɵtext(209);
|
|
289
|
+
i0.ɵɵpipe(210, "translate");
|
|
290
|
+
i0.ɵɵelementEnd()()();
|
|
291
|
+
i0.ɵɵelementStart(211, "tr")(212, "td");
|
|
292
|
+
i0.ɵɵtext(213);
|
|
293
|
+
i0.ɵɵpipe(214, "translate");
|
|
294
|
+
i0.ɵɵelementEnd();
|
|
295
|
+
i0.ɵɵelementStart(215, "td");
|
|
296
|
+
i0.ɵɵtext(216, "$0");
|
|
297
|
+
i0.ɵɵelementEnd();
|
|
298
|
+
i0.ɵɵelementStart(217, "td");
|
|
299
|
+
i0.ɵɵtext(218);
|
|
300
|
+
i0.ɵɵpipe(219, "translate");
|
|
301
|
+
i0.ɵɵelementEnd()();
|
|
302
|
+
i0.ɵɵelementStart(220, "tr")(221, "td");
|
|
303
|
+
i0.ɵɵtext(222);
|
|
304
|
+
i0.ɵɵpipe(223, "translate");
|
|
305
|
+
i0.ɵɵelementEnd();
|
|
306
|
+
i0.ɵɵelementStart(224, "td");
|
|
307
|
+
i0.ɵɵtext(225, "$10.00");
|
|
308
|
+
i0.ɵɵelementEnd();
|
|
309
|
+
i0.ɵɵelementStart(226, "td");
|
|
310
|
+
i0.ɵɵtext(227);
|
|
311
|
+
i0.ɵɵpipe(228, "translate");
|
|
312
|
+
i0.ɵɵelementEnd()();
|
|
313
|
+
i0.ɵɵelementStart(229, "tr")(230, "td");
|
|
314
|
+
i0.ɵɵtext(231);
|
|
315
|
+
i0.ɵɵpipe(232, "translate");
|
|
316
|
+
i0.ɵɵelementEnd();
|
|
317
|
+
i0.ɵɵelementStart(233, "td");
|
|
318
|
+
i0.ɵɵtext(234, "$1.50");
|
|
319
|
+
i0.ɵɵelementEnd();
|
|
320
|
+
i0.ɵɵelementStart(235, "td");
|
|
321
|
+
i0.ɵɵtext(236);
|
|
322
|
+
i0.ɵɵpipe(237, "translate");
|
|
323
|
+
i0.ɵɵelementEnd()()()()()();
|
|
324
|
+
i0.ɵɵelementStart(238, "div", 25)(239, "p");
|
|
325
|
+
i0.ɵɵtext(240);
|
|
326
|
+
i0.ɵɵpipe(241, "translate");
|
|
327
|
+
i0.ɵɵelementStart(242, "a", 26);
|
|
328
|
+
i0.ɵɵtext(243, "fdic.gov/deposit/deposits/prepaid.html");
|
|
329
|
+
i0.ɵɵelementEnd();
|
|
330
|
+
i0.ɵɵtext(244);
|
|
331
|
+
i0.ɵɵpipe(245, "translate");
|
|
332
|
+
i0.ɵɵelementEnd();
|
|
333
|
+
i0.ɵɵelementStart(246, "p");
|
|
334
|
+
i0.ɵɵtext(247);
|
|
335
|
+
i0.ɵɵpipe(248, "translate");
|
|
336
|
+
i0.ɵɵelementEnd();
|
|
337
|
+
i0.ɵɵelementStart(249, "p");
|
|
338
|
+
i0.ɵɵtext(250);
|
|
339
|
+
i0.ɵɵpipe(251, "translate");
|
|
340
|
+
i0.ɵɵelementStart(252, "b");
|
|
341
|
+
i0.ɵɵtext(253, "1-866-335-1653");
|
|
342
|
+
i0.ɵɵelementEnd();
|
|
343
|
+
i0.ɵɵtext(254);
|
|
344
|
+
i0.ɵɵpipe(255, "translate");
|
|
345
|
+
i0.ɵɵelementStart(256, "a", 17);
|
|
346
|
+
i0.ɵɵtext(257, "usbankreliacard.com");
|
|
347
|
+
i0.ɵɵelementEnd()();
|
|
348
|
+
i0.ɵɵelementStart(258, "p");
|
|
349
|
+
i0.ɵɵtext(259);
|
|
350
|
+
i0.ɵɵpipe(260, "translate");
|
|
351
|
+
i0.ɵɵelementStart(261, "a", 27);
|
|
352
|
+
i0.ɵɵtext(262, "cfpb.gov/complaint");
|
|
353
|
+
i0.ɵɵelementEnd()();
|
|
354
|
+
i0.ɵɵelementStart(263, "p");
|
|
355
|
+
i0.ɵɵtext(264, "CR-54928343");
|
|
356
|
+
i0.ɵɵelementEnd();
|
|
357
|
+
i0.ɵɵelementStart(265, "p");
|
|
358
|
+
i0.ɵɵtext(266);
|
|
359
|
+
i0.ɵɵpipe(267, "translate");
|
|
360
|
+
i0.ɵɵelementEnd()()();
|
|
361
|
+
i0.ɵɵtemplate(268, LegalDisclaimarComponent_div_2_ng_template_268_Template, 15, 7, "ng-template", 28);
|
|
362
|
+
i0.ɵɵelementEnd();
|
|
363
|
+
i0.ɵɵelementStart(269, "p", 29);
|
|
364
|
+
i0.ɵɵtext(270);
|
|
365
|
+
i0.ɵɵelementEnd();
|
|
366
|
+
i0.ɵɵelementStart(271, "div", 30)(272, "div", 31);
|
|
367
|
+
i0.ɵɵelement(273, "input", 32);
|
|
368
|
+
i0.ɵɵelementStart(274, "ion-button", 33);
|
|
369
|
+
i0.ɵɵlistener("click", function LegalDisclaimarComponent_div_2_Template_ion_button_click_274_listener() { i0.ɵɵrestoreView(_r10); const ctx_r11 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r11.showPositionDialog("top")); });
|
|
370
|
+
i0.ɵɵelement(275, "ion-icon", 34);
|
|
371
|
+
i0.ɵɵtext(276);
|
|
372
|
+
i0.ɵɵpipe(277, "translate");
|
|
373
|
+
i0.ɵɵelementEnd();
|
|
374
|
+
i0.ɵɵelement(278, "app-error", 35);
|
|
375
|
+
i0.ɵɵelementEnd()()();
|
|
376
|
+
} if (rf & 2) {
|
|
377
|
+
const ctx_r1 = i0.ɵɵnextContext();
|
|
378
|
+
const _r0 = i0.ɵɵreference(1);
|
|
379
|
+
i0.ɵɵadvance(1);
|
|
380
|
+
i0.ɵɵstyleMap(i0.ɵɵpureFunction0(189, _c2));
|
|
381
|
+
i0.ɵɵproperty("visible", ctx_r1.displayPosition)("position", ctx_r1.position)("showHeader", false)("breakpoints", i0.ɵɵpureFunction0(190, _c3));
|
|
382
|
+
i0.ɵɵadvance(2);
|
|
383
|
+
i0.ɵɵtextInterpolate(ctx_r1.legalDisclaimar.privacyStatementTitle);
|
|
384
|
+
i0.ɵɵadvance(1);
|
|
385
|
+
i0.ɵɵproperty("innerHTML", ctx_r1.legalDisclaimar.privacyStatement, i0.ɵɵsanitizeHtml);
|
|
386
|
+
i0.ɵɵadvance(2);
|
|
387
|
+
i0.ɵɵtextInterpolate(ctx_r1.legalDisclaimar.benefitRightsTitle);
|
|
388
|
+
i0.ɵɵadvance(1);
|
|
389
|
+
i0.ɵɵproperty("innerHTML", ctx_r1.legalDisclaimar.benefitRights, i0.ɵɵsanitizeHtml);
|
|
390
|
+
i0.ɵɵadvance(4);
|
|
391
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(12, 73, "legal.disclaimar.Usbank.realCard"));
|
|
392
|
+
i0.ɵɵadvance(4);
|
|
393
|
+
i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind1(16, 75, "legal.disclaimar.programName"), ":");
|
|
394
|
+
i0.ɵɵadvance(2);
|
|
395
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(18, 77, "legal.disclaimar.description"), "");
|
|
396
|
+
i0.ɵɵadvance(5);
|
|
397
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(23, 79, "legal.disclaimar.agency"), " ");
|
|
398
|
+
i0.ɵɵadvance(7);
|
|
399
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(30, 81, "legal.disclaimar.monthelyFee"), "");
|
|
400
|
+
i0.ɵɵadvance(3);
|
|
401
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(33, 83, "legal.disclaimar.perPurchase"), "");
|
|
402
|
+
i0.ɵɵadvance(3);
|
|
403
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(36, 85, "legal.disclaimar.ATMWithdrawal"), "");
|
|
404
|
+
i0.ɵɵadvance(3);
|
|
405
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(39, 87, "legal.disclaimar.cashReload"), "");
|
|
406
|
+
i0.ɵɵadvance(13);
|
|
407
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(52, 89, "legal.disclaimar.inNetwork"), "");
|
|
408
|
+
i0.ɵɵadvance(5);
|
|
409
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(57, 91, "legal.disclaimar.outOfNetwork"), " ");
|
|
410
|
+
i0.ɵɵadvance(9);
|
|
411
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(66, 93, "legal.disclaimar.atmBalance"), "");
|
|
412
|
+
i0.ɵɵadvance(6);
|
|
413
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(72, 95, "legal.disclaimar.customerService"));
|
|
414
|
+
i0.ɵɵadvance(3);
|
|
415
|
+
i0.ɵɵtextInterpolate1("$0 ", i0.ɵɵpipeBind1(75, 97, "legal.disclaimar.perCall"), "");
|
|
416
|
+
i0.ɵɵadvance(4);
|
|
417
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(79, 99, "legal.disclaimar.inactivity"));
|
|
418
|
+
i0.ɵɵadvance(3);
|
|
419
|
+
i0.ɵɵtextInterpolate1("$1.50 ", i0.ɵɵpipeBind1(82, 101, "legal.disclaimar.perMonth"), "");
|
|
420
|
+
i0.ɵɵadvance(4);
|
|
421
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(86, 103, "legal.disclaimar.otherTypesOfFees"));
|
|
422
|
+
i0.ɵɵadvance(4);
|
|
423
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(90, 105, "legal.disclaimar.accompanyingFeeSchedule"));
|
|
424
|
+
i0.ɵɵadvance(4);
|
|
425
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(94, 107, "legal.disclaimar.noOverdraft/credit"));
|
|
426
|
+
i0.ɵɵadvance(3);
|
|
427
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(97, 109, "legal.disclaimar.eligibleForFDIC"));
|
|
428
|
+
i0.ɵɵadvance(3);
|
|
429
|
+
i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind1(100, 111, "legal.disclaimar.prepaidAccounts"), " ");
|
|
430
|
+
i0.ɵɵadvance(7);
|
|
431
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(107, 113, "legal.disclaimar.findDetails"), " ");
|
|
432
|
+
i0.ɵɵadvance(4);
|
|
433
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(111, 115, "legal.disclaimar.orVisit"), " ");
|
|
434
|
+
i0.ɵɵadvance(10);
|
|
435
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(121, 117, "legal.disclaimar.usBankFeeSchedule"), " ");
|
|
436
|
+
i0.ɵɵadvance(4);
|
|
437
|
+
i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind1(125, 119, "legal.disclaimar.programName"), ":");
|
|
438
|
+
i0.ɵɵadvance(2);
|
|
439
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(127, 121, "legal.disclaimar.description"), "");
|
|
440
|
+
i0.ɵɵadvance(7);
|
|
441
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(134, 123, "legal.disclaimar.allfees"));
|
|
442
|
+
i0.ɵɵadvance(3);
|
|
443
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(137, 125, "legal.disclaimar.amount"));
|
|
444
|
+
i0.ɵɵadvance(3);
|
|
445
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(140, 127, "legal.disclaimar.details"));
|
|
446
|
+
i0.ɵɵadvance(6);
|
|
447
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(146, 129, "legal.disclaimar.getCash"));
|
|
448
|
+
i0.ɵɵadvance(4);
|
|
449
|
+
i0.ɵɵtextInterpolate2("", i0.ɵɵpipeBind1(150, 131, "legal.disclaimar.ATMWithdrawal"), " (", i0.ɵɵpipeBind1(151, 133, "legal.disclaimar.inNetwork"), ")");
|
|
450
|
+
i0.ɵɵadvance(6);
|
|
451
|
+
i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind1(156, 135, "legal.disclaimar.moneyPass"), " ");
|
|
452
|
+
i0.ɵɵadvance(4);
|
|
453
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(160, 137, "legal.disclaimar.or"), "");
|
|
454
|
+
i0.ɵɵadvance(7);
|
|
455
|
+
i0.ɵɵtextInterpolate2("", i0.ɵɵpipeBind1(167, 139, "legal.disclaimar.ATMWithdrawal"), " (", i0.ɵɵpipeBind1(168, 141, "legal.disclaimar.outOfNetwork"), ")");
|
|
456
|
+
i0.ɵɵadvance(6);
|
|
457
|
+
i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind1(173, 143, "legal.disclaimar.withdrawalOut-of-network"), " ");
|
|
458
|
+
i0.ɵɵadvance(4);
|
|
459
|
+
i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind1(177, 145, "legal.disclaimar.tellerCash"), " ");
|
|
460
|
+
i0.ɵɵadvance(5);
|
|
461
|
+
i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind1(182, 147, "legal.disclaimar.acceptsVisa"), " \u00AE.");
|
|
462
|
+
i0.ɵɵadvance(5);
|
|
463
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(187, 149, "legal.disclaimar.outsidetheU.S"));
|
|
464
|
+
i0.ɵɵadvance(4);
|
|
465
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(191, 151, "legal.disclaimar.inTransaction"));
|
|
466
|
+
i0.ɵɵadvance(5);
|
|
467
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(196, 153, "legal.disclaimar.foreignMerchants"));
|
|
468
|
+
i0.ɵɵadvance(4);
|
|
469
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(200, 155, "legal.disclaimar.international"));
|
|
470
|
+
i0.ɵɵadvance(5);
|
|
471
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(205, 157, "legal.disclaimar.ATMOperator"));
|
|
472
|
+
i0.ɵɵadvance(5);
|
|
473
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(210, 159, "legal.disclaimar.other"));
|
|
474
|
+
i0.ɵɵadvance(4);
|
|
475
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(214, 161, "legal.disclaimar.cardReplacement"));
|
|
476
|
+
i0.ɵɵadvance(5);
|
|
477
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(219, 163, "legal.disclaimar.standardDelivery"));
|
|
478
|
+
i0.ɵɵadvance(4);
|
|
479
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(223, 165, "legal.disclaimar.expeditedDelivery"));
|
|
480
|
+
i0.ɵɵadvance(5);
|
|
481
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(228, 167, "legal.disclaimar.chargedInAddition"));
|
|
482
|
+
i0.ɵɵadvance(4);
|
|
483
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(232, 169, "legal.disclaimar.inactivity1"));
|
|
484
|
+
i0.ɵɵadvance(5);
|
|
485
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(237, 171, "legal.disclaimar.365ConsecutiveDays"));
|
|
486
|
+
i0.ɵɵadvance(4);
|
|
487
|
+
i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind1(241, 173, "legal.disclaimar.FDICInsurance"), " ");
|
|
488
|
+
i0.ɵɵadvance(4);
|
|
489
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(245, 175, "legal.disclaimar.forDetails"), "");
|
|
490
|
+
i0.ɵɵadvance(3);
|
|
491
|
+
i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind1(248, 177, "legal.disclaimar.overdraft/credit"), " ");
|
|
492
|
+
i0.ɵɵadvance(3);
|
|
493
|
+
i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind1(251, 179, "legal.disclaimar.cardholder"), " ");
|
|
494
|
+
i0.ɵɵadvance(4);
|
|
495
|
+
i0.ɵɵtextInterpolate1(", ", i0.ɵɵpipeBind1(255, 181, "legal.disclaimar.byMail"), " ");
|
|
496
|
+
i0.ɵɵadvance(5);
|
|
497
|
+
i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind1(260, 183, "legal.disclaimar.generalinformation"), " ");
|
|
498
|
+
i0.ɵɵadvance(7);
|
|
499
|
+
i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind1(267, 185, "legal.disclaimar.reliaCard"), " ");
|
|
500
|
+
i0.ɵɵadvance(4);
|
|
501
|
+
i0.ɵɵtextInterpolate1(" ", ctx_r1.legalDisclaimar.plsRead, "");
|
|
502
|
+
i0.ɵɵadvance(5);
|
|
503
|
+
i0.ɵɵproperty("name", ctx_r1.displayCheckBox ? "checkmark-circle-outline" : "ellipse-outline");
|
|
504
|
+
i0.ɵɵadvance(1);
|
|
505
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(277, 187, "access.legal.disclaimers"), " ");
|
|
506
|
+
i0.ɵɵadvance(2);
|
|
507
|
+
i0.ɵɵproperty("field", ctx_r1.legalHidden)("form", _r0)("errDef", i0.ɵɵpureFunction1(191, _c4, ctx_r1.required));
|
|
508
|
+
} }
|
|
509
|
+
export class LegalDisclaimarComponent {
|
|
510
|
+
constructor(logger, fb, ls, activatedRoute, translateService) {
|
|
511
|
+
this.logger = logger;
|
|
512
|
+
this.fb = fb;
|
|
513
|
+
this.ls = ls;
|
|
514
|
+
this.activatedRoute = activatedRoute;
|
|
515
|
+
this.translateService = translateService;
|
|
516
|
+
this.displayCheckBox = false;
|
|
517
|
+
this.accepted = new EventEmitter();
|
|
518
|
+
this.isSubmitted = false;
|
|
519
|
+
this.translateService.use(localStorage.getItem("language"));
|
|
520
|
+
}
|
|
521
|
+
showPositionDialog(position) {
|
|
522
|
+
this.position = position;
|
|
523
|
+
this.displayPosition = true;
|
|
524
|
+
setTimeout(() => {
|
|
525
|
+
this.addDialogAttribute();
|
|
526
|
+
}, 3000);
|
|
527
|
+
}
|
|
528
|
+
acceptDisclaimar() {
|
|
529
|
+
this.isSubmitted = true;
|
|
530
|
+
if (this.lastfourssn.valid) {
|
|
531
|
+
this.displayCheckBox = true;
|
|
532
|
+
this.accepted.emit(true);
|
|
533
|
+
this.displayPosition = false;
|
|
534
|
+
this.legalHidden.setValue(true);
|
|
535
|
+
}
|
|
536
|
+
}
|
|
537
|
+
cancelDisclaimar() {
|
|
538
|
+
this.isSubmitted = false;
|
|
539
|
+
this.displayCheckBox = false;
|
|
540
|
+
this.accepted.emit(false);
|
|
541
|
+
this.legalHidden.setValue(null);
|
|
542
|
+
this.displayPosition = false;
|
|
543
|
+
}
|
|
544
|
+
get legalHidden() {
|
|
545
|
+
return this.form.get('legalHidden');
|
|
546
|
+
}
|
|
547
|
+
get lastfourssn() {
|
|
548
|
+
return this.form.get('lastfourssn');
|
|
549
|
+
}
|
|
550
|
+
ngOnInit() {
|
|
551
|
+
let ssnLastFourFromDb;
|
|
552
|
+
if (this.ls.isClaimant() === true) {
|
|
553
|
+
ssnLastFourFromDb = this.ls.getUser().ssn.substring(5, 9);
|
|
554
|
+
}
|
|
555
|
+
else {
|
|
556
|
+
let data = this.activatedRoute.snapshot.queryParamMap.get('key');
|
|
557
|
+
if (data) {
|
|
558
|
+
let ssnForCSR;
|
|
559
|
+
ssnForCSR = atob(data);
|
|
560
|
+
ssnLastFourFromDb = ssnForCSR.substring(5, 9);
|
|
561
|
+
}
|
|
562
|
+
}
|
|
563
|
+
this.form.addControl('legalHidden', new UntypedFormControl(null, [Validators.requiredTrue, Validators.required]));
|
|
564
|
+
this.form.addControl('lastfourssn', new UntypedFormControl(null, [Validators.compose([Validators.required, AppValidators.isEqual(ssnLastFourFromDb)])]));
|
|
565
|
+
this.question.name = "legalHidden";
|
|
566
|
+
const obj = JSON.parse(this.componentData);
|
|
567
|
+
this.legalDisclaimar = obj;
|
|
568
|
+
}
|
|
569
|
+
addDialogAttribute() {
|
|
570
|
+
const dialog = document.querySelector('div[role=dialog]');
|
|
571
|
+
if (dialog) {
|
|
572
|
+
dialog.setAttribute('aria-labelledby', 'legalDisclaimarTitle');
|
|
573
|
+
dialog.setAttribute('aria-describedby', 'legalDisclaimarContent');
|
|
574
|
+
document.querySelectorAll('div .ionButton').forEach(element => {
|
|
575
|
+
element.setAttribute('role', 'button');
|
|
576
|
+
});
|
|
577
|
+
}
|
|
578
|
+
}
|
|
579
|
+
get required() {
|
|
580
|
+
return this.translateService.instant('common.required');
|
|
581
|
+
}
|
|
582
|
+
get ssnNotMatched() {
|
|
583
|
+
return this.translateService.instant('access.legal.ssn.not.matched');
|
|
584
|
+
}
|
|
585
|
+
static { this.ɵfac = function LegalDisclaimarComponent_Factory(t) { return new (t || LegalDisclaimarComponent)(i0.ɵɵdirectiveInject(i1.LoggerService), i0.ɵɵdirectiveInject(i2.UntypedFormBuilder), i0.ɵɵdirectiveInject(i3.LoginService), i0.ɵɵdirectiveInject(i4.ActivatedRoute), i0.ɵɵdirectiveInject(i5.TranslateService)); }; }
|
|
586
|
+
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: LegalDisclaimarComponent, selectors: [["app-legal-disclaimar"]], viewQuery: function LegalDisclaimarComponent_Query(rf, ctx) { if (rf & 1) {
|
|
587
|
+
i0.ɵɵviewQuery(_c0, 5);
|
|
588
|
+
} if (rf & 2) {
|
|
589
|
+
let _t;
|
|
590
|
+
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.qeFormDirective = _t.first);
|
|
591
|
+
} }, inputs: { form: "form", question: "question", componentData: "componentData" }, outputs: { accepted: "accepted" }, decls: 3, vars: 2, consts: [[3, "formGroup"], ["qeFormDirective", "ngForm"], [4, "ngIf"], ["modal", "true", "appendTo", "body", 3, "visible", "position", "showHeader", "breakpoints", "visibleChange"], [3, "innerHTML"], ["id", "legalDisclaimarTitle"], ["id", "legalDisclaimarContent", 3, "innerHTML"], [1, "relia-card-section"], [1, "header"], [1, "info-box"], [1, "options-info"], [1, "options-message"], [1, "fees-summary"], [1, "other-fees-info"], [1, "other-fees-note"], [1, "other-fees-line"], ["href", "cfpb.gov/prepaid"], ["href", "usbankreliacard.com"], [1, "divider"], [1, "relia-card-fee-schedule"], [1, "fee-table-wrapper"], [1, "category-row"], ["colspan", "3"], ["href", "usbank.com/locations"], ["href", "moneypass.com/atm-locator.html"], [1, "fdic-info"], ["href", "fdic.gov/deposit/deposits/prepaid.html"], ["href", "cfpb.gov/complaint"], ["pTemplate", "footer"], [1, "form-label"], [1, "grid", "p-nogutter"], [1, "col-12"], ["type", "text", "id", "legalHidden", "pInputText", "", "formControlName", "legalHidden", "hidden", ""], ["shape", "round", "type", "submit", "fill", "outline", 3, "click"], ["slot", "start", 2, "font-size", "25px", "font-weight", "bold", 3, "name"], [3, "field", "form", "errDef"], [1, "ion-text-left", "ion-padding-top"], [1, "ion-text-left"], ["id", "ssn", "type", "input", "pInputText", "", "size", "5", "maxlength", "4", "minlength", "4", 3, "formControl"], [3, "class", "field", "form", "errDef", 4, "ngIf"], [1, "ion-text-right"], ["tabindex", "0", "shape", "round", "type", "reset", "fill", "outline", 1, "ionButton", 3, "keydown.enter", "click"], ["tabindex", "0", "shape", "round", "type", "submit", "fill", "solid", 1, "ionButton", 3, "keydown.enter", "click"]], template: function LegalDisclaimarComponent_Template(rf, ctx) { if (rf & 1) {
|
|
592
|
+
i0.ɵɵelementStart(0, "form", 0, 1);
|
|
593
|
+
i0.ɵɵtemplate(2, LegalDisclaimarComponent_div_2_Template, 279, 193, "div", 2);
|
|
594
|
+
i0.ɵɵelementEnd();
|
|
595
|
+
} if (rf & 2) {
|
|
596
|
+
i0.ɵɵproperty("formGroup", ctx.form);
|
|
597
|
+
i0.ɵɵadvance(2);
|
|
598
|
+
i0.ɵɵproperty("ngIf", ctx.legalDisclaimar);
|
|
599
|
+
} }, dependencies: [i6.IonButton, i6.IonCol, i6.IonIcon, i6.IonRow, i7.NgIf, i8.PrimeTemplate, i2.ɵNgNoValidate, i2.DefaultValueAccessor, i2.NgControlStatus, i2.NgControlStatusGroup, i2.MinLengthValidator, i2.MaxLengthValidator, i2.FormControlDirective, i2.FormGroupDirective, i2.FormControlName, i9.Dialog, i10.InputText, i11.ErrorComponent, i5.TranslatePipe], styles: [".form-label[_ngcontent-%COMP%]{display:inline-block;margin-bottom:6px;margin-top:20px}ion-button[_ngcontent-%COMP%]{outline:none}.relia-card-section[_ngcontent-%COMP%]{max-width:800px;margin:28px auto;background:#fff;padding:28px 22px;border-radius:12px;box-shadow:0 2px 16px #0000000f;font-family:Segoe UI,Arial,sans-serif;font-size:1rem;color:#222}.relia-card-section[_ngcontent-%COMP%] .header[_ngcontent-%COMP%] h2[_ngcontent-%COMP%]{margin-top:0;font-size:1.45em;font-weight:600;border-bottom:2px solid #3376be;padding-bottom:6px;margin-bottom:10px}.relia-card-section[_ngcontent-%COMP%] .header[_ngcontent-%COMP%] p[_ngcontent-%COMP%]{margin:0 0 12px;font-size:1.06em}.relia-card-section[_ngcontent-%COMP%] .info-box[_ngcontent-%COMP%]{background:#f6faff;border:2px solid #3376be;border-radius:12px;box-shadow:0 1px 8px #3376be14;padding:18px 22px 22px;max-width:550px;margin:26px auto 32px}.relia-card-section[_ngcontent-%COMP%] .info-box[_ngcontent-%COMP%] .options-message[_ngcontent-%COMP%]{text-align:center;font-weight:500;font-size:1.09em;margin:0 auto 18px;position:relative;display:inline-block;width:100%}.relia-card-section[_ngcontent-%COMP%] .info-box[_ngcontent-%COMP%] .options-message[_ngcontent-%COMP%]:after{content:\"\";display:block;margin:11px auto 0;width:88%;border-bottom:2.5px solid #3376be;border-radius:2px}.relia-card-section[_ngcontent-%COMP%] .info-box[_ngcontent-%COMP%] .fees-summary[_ngcontent-%COMP%] table[_ngcontent-%COMP%]{width:100%;border-collapse:collapse;margin-bottom:10px}.relia-card-section[_ngcontent-%COMP%] .info-box[_ngcontent-%COMP%] .fees-summary[_ngcontent-%COMP%] table[_ngcontent-%COMP%] th[_ngcontent-%COMP%], .relia-card-section[_ngcontent-%COMP%] .info-box[_ngcontent-%COMP%] .fees-summary[_ngcontent-%COMP%] table[_ngcontent-%COMP%] td[_ngcontent-%COMP%]{border:1px solid #bcd1e6;padding:10px;text-align:center;font-size:1em}.relia-card-section[_ngcontent-%COMP%] .info-box[_ngcontent-%COMP%] .fees-summary[_ngcontent-%COMP%] table[_ngcontent-%COMP%] thead[_ngcontent-%COMP%] th[_ngcontent-%COMP%]{background:#f0f7fb;font-weight:600;border-bottom:2px solid #3376be;color:#225587}.relia-card-section[_ngcontent-%COMP%] .info-box[_ngcontent-%COMP%] .fees-summary[_ngcontent-%COMP%] table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] td[_ngcontent-%COMP%]{background:#fff}.relia-card-section[_ngcontent-%COMP%] .info-box[_ngcontent-%COMP%] .other-fees-info[_ngcontent-%COMP%]{margin:24px 0 0}.relia-card-section[_ngcontent-%COMP%] .info-box[_ngcontent-%COMP%] .other-fees-info[_ngcontent-%COMP%] table[_ngcontent-%COMP%]{width:100%;border-collapse:collapse;background:#fff;margin-bottom:10px}.relia-card-section[_ngcontent-%COMP%] .info-box[_ngcontent-%COMP%] .other-fees-info[_ngcontent-%COMP%] table[_ngcontent-%COMP%] td[_ngcontent-%COMP%]{border:1px solid #bcd1e6;padding:7px 10px;text-align:left;font-size:1em}.relia-card-section[_ngcontent-%COMP%] .info-box[_ngcontent-%COMP%] .other-fees-info[_ngcontent-%COMP%] table[_ngcontent-%COMP%] tr[_ngcontent-%COMP%]:first-child td[_ngcontent-%COMP%]{border-top:2px solid #3376be}.relia-card-section[_ngcontent-%COMP%] .info-box[_ngcontent-%COMP%] .other-fees-info[_ngcontent-%COMP%] p[_ngcontent-%COMP%]{margin-top:10px;margin-bottom:4px;font-size:.99em}.relia-card-section[_ngcontent-%COMP%] .info-box[_ngcontent-%COMP%] .other-fees-info[_ngcontent-%COMP%] b[_ngcontent-%COMP%]{font-weight:600}.relia-card-section[_ngcontent-%COMP%] .info-box[_ngcontent-%COMP%] .other-fees-info[_ngcontent-%COMP%] .nowrap[_ngcontent-%COMP%]{white-space:nowrap}.relia-card-section[_ngcontent-%COMP%] .info-box[_ngcontent-%COMP%] .other-fees-info[_ngcontent-%COMP%] .other-fees-note[_ngcontent-%COMP%]{font-weight:500;font-size:1.06em;margin-bottom:10px;text-align:left;position:relative}.relia-card-section[_ngcontent-%COMP%] .info-box[_ngcontent-%COMP%] .other-fees-info[_ngcontent-%COMP%] .other-fees-line[_ngcontent-%COMP%]{border:none;border-top:2px solid #3376be;margin:8px 0 0;width:80%}.relia-card-section[_ngcontent-%COMP%] .divider[_ngcontent-%COMP%]{margin-top:32px;margin-bottom:26px}.relia-card-section[_ngcontent-%COMP%] .divider[_ngcontent-%COMP%] hr[_ngcontent-%COMP%]{border:none;border-top:2px solid #3376be;margin:0}.relia-card-section[_ngcontent-%COMP%] .relia-card-fee-schedule[_ngcontent-%COMP%] h3[_ngcontent-%COMP%]{margin-top:0;font-size:1.25em;font-weight:700;margin-bottom:10px;color:#225587;border-bottom:1px solid #3376be;padding-bottom:6px}.relia-card-section[_ngcontent-%COMP%] .relia-card-fee-schedule[_ngcontent-%COMP%] .fee-table-wrapper[_ngcontent-%COMP%]{margin-bottom:0;margin-top:14px}.relia-card-section[_ngcontent-%COMP%] .relia-card-fee-schedule[_ngcontent-%COMP%] .fee-table-wrapper[_ngcontent-%COMP%] table[_ngcontent-%COMP%]{width:100%;border-collapse:collapse;margin-bottom:30px}.relia-card-section[_ngcontent-%COMP%] .relia-card-fee-schedule[_ngcontent-%COMP%] .fee-table-wrapper[_ngcontent-%COMP%] table[_ngcontent-%COMP%] thead[_ngcontent-%COMP%] th[_ngcontent-%COMP%]{background-color:#e3f0fd;color:#225587;font-weight:600;border:2px solid #3376be;padding:10px;text-align:left}.relia-card-section[_ngcontent-%COMP%] .relia-card-fee-schedule[_ngcontent-%COMP%] .fee-table-wrapper[_ngcontent-%COMP%] table[_ngcontent-%COMP%] td[_ngcontent-%COMP%]{border:1px solid #ddd;padding:8px 10px;text-align:left}.relia-card-section[_ngcontent-%COMP%] .relia-card-fee-schedule[_ngcontent-%COMP%] .fee-table-wrapper[_ngcontent-%COMP%] table[_ngcontent-%COMP%] td.indent[_ngcontent-%COMP%]{padding-left:28px;font-weight:500}.relia-card-section[_ngcontent-%COMP%] .relia-card-fee-schedule[_ngcontent-%COMP%] .fee-table-wrapper[_ngcontent-%COMP%] table[_ngcontent-%COMP%] .category-row[_ngcontent-%COMP%]{background-color:#d4e6fb;font-weight:700;font-size:1.1rem;border:none}.relia-card-section[_ngcontent-%COMP%] .relia-card-fee-schedule[_ngcontent-%COMP%] .fee-table-wrapper[_ngcontent-%COMP%] table[_ngcontent-%COMP%] .category-row[_ngcontent-%COMP%] td[_ngcontent-%COMP%]{border:none;padding:12px 10px 6px}.relia-card-section[_ngcontent-%COMP%] .relia-card-fee-schedule[_ngcontent-%COMP%] .fee-table-wrapper[_ngcontent-%COMP%] table[_ngcontent-%COMP%] th[_ngcontent-%COMP%]{background:#f4f8fb;font-weight:500;border:1px solid #3376be}.relia-card-section[_ngcontent-%COMP%] .relia-card-fee-schedule[_ngcontent-%COMP%] .fee-table-wrapper[_ngcontent-%COMP%] table[_ngcontent-%COMP%] thead[_ngcontent-%COMP%] tr[_ngcontent-%COMP%]{border-bottom:2px solid #3376be}.relia-card-section[_ngcontent-%COMP%] .relia-card-fee-schedule[_ngcontent-%COMP%] .fee-table-wrapper[_ngcontent-%COMP%] table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] tr[_ngcontent-%COMP%]{border-bottom:1px solid #eee}.relia-card-section[_ngcontent-%COMP%] .fdic-info[_ngcontent-%COMP%]{margin-top:22px;padding-top:14px;border-top:1px solid #bbb;font-size:.98em;color:#444}.relia-card-section[_ngcontent-%COMP%] .nowrap[_ngcontent-%COMP%]{white-space:nowrap}"] }); }
|
|
600
|
+
}
|
|
601
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(LegalDisclaimarComponent, [{
|
|
602
|
+
type: Component,
|
|
603
|
+
args: [{ selector: 'app-legal-disclaimar', template: "<form [formGroup]=\"form\" #qeFormDirective=\"ngForm\">\r\n <div *ngIf=\"legalDisclaimar\">\r\n <p-dialog [(visible)]=\"displayPosition\" [position]=\"position\" modal=\"true\" [showHeader]=\"false\" appendTo=\"body\" [breakpoints]=\"{'960px': '80vw', '640px': '100vw'}\" [style]=\"{width: '60vw'}\">\r\n <h1>{{legalDisclaimar.privacyStatementTitle}}</h1>\r\n <div [innerHTML]=\"legalDisclaimar.privacyStatement\">\r\n \r\n </div>\r\n <h1 id=\"legalDisclaimarTitle\">{{legalDisclaimar.benefitRightsTitle}}</h1>\r\n <div [innerHTML]=\"legalDisclaimar.benefitRights\" id=\"legalDisclaimarContent\"></div>\r\n \r\n <div class=\"relia-card-section\">\r\n <div class=\"header\">\r\n <h4>{{'legal.disclaimar.Usbank.realCard' | translate}}</h4>\r\n <p><strong>{{'legal.disclaimar.programName' | translate}}:</strong> {{'legal.disclaimar.description' | translate}}</p>\r\n </div>\r\n \r\n <div class = \"info-box\">\r\n <div class=\"options-info\">\r\n <div class=\"options-message\">\r\n {{'legal.disclaimar.agency' | translate}}\r\n </div>\r\n </div>\r\n \r\n <div class=\"fees-summary\">\r\n <table>\r\n <thead>\r\n <tr>\r\n <th> {{'legal.disclaimar.monthelyFee' | translate}}</th>\r\n <th> {{'legal.disclaimar.perPurchase' | translate}}</th>\r\n <th> {{'legal.disclaimar.ATMWithdrawal' | translate}}</th>\r\n <th> {{'legal.disclaimar.cashReload' | translate}}</th>\r\n </tr>\r\n </thead>\r\n <tbody>\r\n <tr>\r\n <td><b>$0</b></td>\r\n <td><b>$0</b></td>\r\n <td>\r\n <b>$0</b> {{'legal.disclaimar.inNetwork' | translate}}<br>\r\n <b>$1.50</b> {{'legal.disclaimar.outOfNetwork' | translate}}\r\n </td>\r\n <td><b>N/A</b></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </div> \r\n \r\n <div class=\"other-fees-info\">\r\n <table>\r\n <tr>\r\n <td> {{'legal.disclaimar.atmBalance' | translate}}</td>\r\n <td>$0</td>\r\n </tr>\r\n <tr>\r\n <td>{{'legal.disclaimar.customerService' | translate}}</td>\r\n <td>$0 {{'legal.disclaimar.perCall' | translate}}</td>\r\n </tr>\r\n <tr>\r\n <td>{{'legal.disclaimar.inactivity' | translate}}</td>\r\n <td>$1.50 {{'legal.disclaimar.perMonth' | translate}}</td>\r\n </tr>\r\n </table>\r\n <div class=\"other-fees-note\">\r\n <b>{{'legal.disclaimar.otherTypesOfFees' | translate}}</b>\r\n <hr class=\"other-fees-line\"/>\r\n </div>\r\n <p>{{'legal.disclaimar.accompanyingFeeSchedule' | translate}}</p>\r\n <p><b>{{'legal.disclaimar.noOverdraft/credit' | translate}}</b><br>{{'legal.disclaimar.eligibleForFDIC' | translate}}</p>\r\n <p>{{'legal.disclaimar.prepaidAccounts' | translate}} <a href=\"cfpb.gov/prepaid\"><i>cfpb.gov/prepaid</i></a>.<br>\r\n {{'legal.disclaimar.findDetails' | translate}} <b>1-866-335-1653</b> {{'legal.disclaimar.orVisit' | translate}} <a href=\"usbankreliacard.com\"><b>usbankreliacard.com</b></a>.</p>\r\n </div>\r\n </div>\r\n \r\n <div class=\"divider\">\r\n <hr>\r\n </div>\r\n \r\n <div class=\"relia-card-fee-schedule\">\r\n <h3> {{'legal.disclaimar.usBankFeeSchedule' | translate}} </h3>\r\n <p><strong>{{'legal.disclaimar.programName' | translate}}:</strong> {{'legal.disclaimar.description' | translate}}</p>\r\n <div class=\"fee-table-wrapper\">\r\n <table>\r\n <thead>\r\n <tr>\r\n <th>{{'legal.disclaimar.allfees' | translate}}</th>\r\n <th>{{'legal.disclaimar.amount' | translate}}</th>\r\n <th>{{'legal.disclaimar.details' | translate}}</th>\r\n </tr>\r\n </thead>\r\n <tbody>\r\n <tr class=\"category-row\">\r\n <td colspan=\"3\"><b>{{'legal.disclaimar.getCash' | translate}}</b></td>\r\n </tr>\r\n <tr>\r\n <td>{{'legal.disclaimar.ATMWithdrawal' | translate}} ({{'legal.disclaimar.inNetwork' | translate}})</td>\r\n <td>$0</td>\r\n <td>{{'legal.disclaimar.moneyPass' | translate}} <a href=\"usbank.com/locations\">usbank.com/locations</a> {{'legal.disclaimar.or' | translate}}<a href=\"moneypass.com/atm-locator.html\">moneypass.com/atm-locator.html</a>.</td>\r\n </tr>\r\n <tr>\r\n <td>{{'legal.disclaimar.ATMWithdrawal' | translate}} ({{'legal.disclaimar.outOfNetwork' | translate}})</td>\r\n <td>$1.50</td>\r\n <td>{{'legal.disclaimar.withdrawalOut-of-network' | translate}} </td>\r\n </tr>\r\n <tr>\r\n <td>{{'legal.disclaimar.tellerCash' | translate}} </td>\r\n <td>$0</td>\r\n <td>{{'legal.disclaimar.acceptsVisa' | translate}} ®.</td>\r\n </tr>\r\n <tr class=\"category-row\">\r\n <td colspan=\"3\"><b>{{'legal.disclaimar.outsidetheU.S' | translate}}</b></td>\r\n </tr>\r\n <tr>\r\n <td>{{'legal.disclaimar.inTransaction' | translate}}</td>\r\n <td>3%</td>\r\n <td>{{'legal.disclaimar.foreignMerchants' | translate}}</td>\r\n </tr>\r\n <tr>\r\n <td>{{'legal.disclaimar.international' | translate}}</td>\r\n <td>$1.50</td>\r\n <td>{{'legal.disclaimar.ATMOperator' | translate}}</td>\r\n </tr>\r\n <tr class=\"category-row\">\r\n <td colspan=\"3\"><b>{{'legal.disclaimar.other' | translate}}</b></td>\r\n </tr>\r\n <tr>\r\n <td>{{'legal.disclaimar.cardReplacement' | translate}}</td>\r\n <td>$0</td>\r\n <td>{{'legal.disclaimar.standardDelivery' | translate}}</td>\r\n </tr>\r\n <tr>\r\n <td>{{'legal.disclaimar.expeditedDelivery' | translate}}</td>\r\n <td>$10.00</td>\r\n <td>{{'legal.disclaimar.chargedInAddition' | translate}}</td>\r\n </tr>\r\n <tr>\r\n <td>{{'legal.disclaimar.inactivity1' | translate}}</td>\r\n <td>$1.50</td>\r\n <td>{{'legal.disclaimar.365ConsecutiveDays' | translate}}</td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </div>\r\n </div>\r\n \r\n <div class=\"fdic-info\">\r\n <p>{{'legal.disclaimar.FDICInsurance' | translate}} <a href=\"fdic.gov/deposit/deposits/prepaid.html\">fdic.gov/deposit/deposits/prepaid.html</a> {{'legal.disclaimar.forDetails' | translate}}</p>\r\n <p>{{'legal.disclaimar.overdraft/credit' | translate}} </p>\r\n <p>{{'legal.disclaimar.cardholder' | translate}} <b>1-866-335-1653</b>, {{'legal.disclaimar.byMail' | translate}} <a href=\"usbankreliacard.com\">usbankreliacard.com</a></p>\r\n <p>{{'legal.disclaimar.generalinformation' | translate}} <a href=\"cfpb.gov/complaint\">cfpb.gov/complaint</a></p>\r\n <p>CR-54928343</p>\r\n <p>{{'legal.disclaimar.reliaCard' | translate}} </p>\r\n </div>\r\n </div>\r\n \r\n <ng-template pTemplate=\"footer\">\r\n <ion-row>\r\n <ion-col class=\"ion-text-left ion-padding-top\" >\r\n {{\"access.legal.readandsign\" | translate}}<br/>\r\n </ion-col>\r\n </ion-row>\r\n <ion-row>\r\n <ion-col class=\"ion-text-left\">\r\n <input id=\"ssn\" type=\"input\" pInputText size=\"5\" [formControl]=\"lastfourssn\" maxlength=\"4\"\r\n minlength=\"4\"/>\r\n <br/>\r\n <app-error [class]=\"'app-grid'\" [field]='lastfourssn' [form]=\"qeFormDirective\" [errDef]=\"{\r\n required: required,\r\n notEqual: ssnNotMatched\r\n }\" *ngIf=\"this.qeFormDirective.touched || isSubmitted\"></app-error>\r\n </ion-col>\r\n <ion-col class=\"ion-text-right\">\r\n <ion-button tabindex=\"0\" (keydown.enter) =\"cancelDisclaimar()\" shape=\"round\" (click)=\"cancelDisclaimar()\" type=\"reset\" fill=\"outline\" class=\"ionButton\">\r\n {{legalDisclaimar.cancelButton}}\r\n </ion-button>\r\n <ion-button tabindex=\"0\" (keydown.enter) =\"acceptDisclaimar()\" shape=\"round\" type=\"submit\" (click)=\"acceptDisclaimar()\" fill=\"solid\" class=\"ionButton\">\r\n {{legalDisclaimar.acceptButton}}\r\n </ion-button>\r\n </ion-col>\r\n </ion-row>\r\n </ng-template>\r\n </p-dialog>\r\n <p class=\"form-label\"> {{legalDisclaimar.plsRead}}</p>\r\n <div class=\"grid p-nogutter\">\r\n <div class=\"col-12\">\r\n <input type=\"text\" id=\"legalHidden\" pInputText formControlName=\"legalHidden\" hidden />\r\n <ion-button shape=\"round\" (click)=\"showPositionDialog('top')\" type=\"submit\" fill=\"outline\">\r\n <ion-icon slot=\"start\" [name]=\"displayCheckBox ? 'checkmark-circle-outline' : 'ellipse-outline'\"\r\n style=\"font-size: 25px; font-weight: bold;\"></ion-icon>\r\n {{\"access.legal.disclaimers\" | translate}}\r\n </ion-button>\r\n <app-error [field]='legalHidden' [form]=\"qeFormDirective\" [errDef]=\"{\r\n required: required\r\n }\"></app-error>\r\n </div>\r\n </div>\r\n </div>\r\n</form>\r\n", styles: [".form-label{display:inline-block;margin-bottom:6px;margin-top:20px}ion-button{outline:none}.relia-card-section{max-width:800px;margin:28px auto;background:#fff;padding:28px 22px;border-radius:12px;box-shadow:0 2px 16px #0000000f;font-family:Segoe UI,Arial,sans-serif;font-size:1rem;color:#222}.relia-card-section .header h2{margin-top:0;font-size:1.45em;font-weight:600;border-bottom:2px solid #3376be;padding-bottom:6px;margin-bottom:10px}.relia-card-section .header p{margin:0 0 12px;font-size:1.06em}.relia-card-section .info-box{background:#f6faff;border:2px solid #3376be;border-radius:12px;box-shadow:0 1px 8px #3376be14;padding:18px 22px 22px;max-width:550px;margin:26px auto 32px}.relia-card-section .info-box .options-message{text-align:center;font-weight:500;font-size:1.09em;margin:0 auto 18px;position:relative;display:inline-block;width:100%}.relia-card-section .info-box .options-message:after{content:\"\";display:block;margin:11px auto 0;width:88%;border-bottom:2.5px solid #3376be;border-radius:2px}.relia-card-section .info-box .fees-summary table{width:100%;border-collapse:collapse;margin-bottom:10px}.relia-card-section .info-box .fees-summary table th,.relia-card-section .info-box .fees-summary table td{border:1px solid #bcd1e6;padding:10px;text-align:center;font-size:1em}.relia-card-section .info-box .fees-summary table thead th{background:#f0f7fb;font-weight:600;border-bottom:2px solid #3376be;color:#225587}.relia-card-section .info-box .fees-summary table tbody td{background:#fff}.relia-card-section .info-box .other-fees-info{margin:24px 0 0}.relia-card-section .info-box .other-fees-info table{width:100%;border-collapse:collapse;background:#fff;margin-bottom:10px}.relia-card-section .info-box .other-fees-info table td{border:1px solid #bcd1e6;padding:7px 10px;text-align:left;font-size:1em}.relia-card-section .info-box .other-fees-info table tr:first-child td{border-top:2px solid #3376be}.relia-card-section .info-box .other-fees-info p{margin-top:10px;margin-bottom:4px;font-size:.99em}.relia-card-section .info-box .other-fees-info b{font-weight:600}.relia-card-section .info-box .other-fees-info .nowrap{white-space:nowrap}.relia-card-section .info-box .other-fees-info .other-fees-note{font-weight:500;font-size:1.06em;margin-bottom:10px;text-align:left;position:relative}.relia-card-section .info-box .other-fees-info .other-fees-line{border:none;border-top:2px solid #3376be;margin:8px 0 0;width:80%}.relia-card-section .divider{margin-top:32px;margin-bottom:26px}.relia-card-section .divider hr{border:none;border-top:2px solid #3376be;margin:0}.relia-card-section .relia-card-fee-schedule h3{margin-top:0;font-size:1.25em;font-weight:700;margin-bottom:10px;color:#225587;border-bottom:1px solid #3376be;padding-bottom:6px}.relia-card-section .relia-card-fee-schedule .fee-table-wrapper{margin-bottom:0;margin-top:14px}.relia-card-section .relia-card-fee-schedule .fee-table-wrapper table{width:100%;border-collapse:collapse;margin-bottom:30px}.relia-card-section .relia-card-fee-schedule .fee-table-wrapper table thead th{background-color:#e3f0fd;color:#225587;font-weight:600;border:2px solid #3376be;padding:10px;text-align:left}.relia-card-section .relia-card-fee-schedule .fee-table-wrapper table td{border:1px solid #ddd;padding:8px 10px;text-align:left}.relia-card-section .relia-card-fee-schedule .fee-table-wrapper table td.indent{padding-left:28px;font-weight:500}.relia-card-section .relia-card-fee-schedule .fee-table-wrapper table .category-row{background-color:#d4e6fb;font-weight:700;font-size:1.1rem;border:none}.relia-card-section .relia-card-fee-schedule .fee-table-wrapper table .category-row td{border:none;padding:12px 10px 6px}.relia-card-section .relia-card-fee-schedule .fee-table-wrapper table th{background:#f4f8fb;font-weight:500;border:1px solid #3376be}.relia-card-section .relia-card-fee-schedule .fee-table-wrapper table thead tr{border-bottom:2px solid #3376be}.relia-card-section .relia-card-fee-schedule .fee-table-wrapper table tbody tr{border-bottom:1px solid #eee}.relia-card-section .fdic-info{margin-top:22px;padding-top:14px;border-top:1px solid #bbb;font-size:.98em;color:#444}.relia-card-section .nowrap{white-space:nowrap}\n"] }]
|
|
604
|
+
}], () => [{ type: i1.LoggerService }, { type: i2.UntypedFormBuilder }, { type: i3.LoginService }, { type: i4.ActivatedRoute }, { type: i5.TranslateService }], { qeFormDirective: [{
|
|
605
|
+
type: ViewChild,
|
|
606
|
+
args: ['qeFormDirective', { static: false }]
|
|
607
|
+
}], accepted: [{
|
|
608
|
+
type: Output
|
|
609
|
+
}], form: [{
|
|
610
|
+
type: Input
|
|
611
|
+
}], question: [{
|
|
612
|
+
type: Input
|
|
613
|
+
}], componentData: [{
|
|
614
|
+
type: Input
|
|
615
|
+
}] }); })();
|
|
616
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(LegalDisclaimarComponent, { className: "LegalDisclaimarComponent", filePath: "lib\\components\\legal-disclaimar\\legal-disclaimar.component.ts", lineNumber: 18 }); })();
|
|
617
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGVnYWwtZGlzY2xhaW1hci5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9uZ3gtcmV1c2EtYXBwLWxpYi9zcmMvbGliL2NvbXBvbmVudHMvbGVnYWwtZGlzY2xhaW1hci9sZWdhbC1kaXNjbGFpbWFyLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL25neC1yZXVzYS1hcHAtbGliL3NyYy9saWIvY29tcG9uZW50cy9sZWdhbC1kaXNjbGFpbWFyL2xlZ2FsLWRpc2NsYWltYXIuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFZLFNBQVMsRUFBRSxLQUFLLEVBQUUsTUFBTSxFQUFFLFlBQVksRUFBRSxTQUFTLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFDM0YsT0FBTyxFQUFzQixrQkFBa0IsRUFBNEIsVUFBVSxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFNOUcsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLGdDQUFnQyxDQUFDOzs7Ozs7Ozs7Ozs7Ozs7O0lDOEpuRCxnQ0FHbUU7Ozs7SUFIeEQseUJBQW9CO0lBQUMsMENBQXFCLGFBQUEsNkVBQUE7Ozs7SUFWekQsK0JBQVMsa0JBQUE7SUFFTixZQUEwQzs7SUFBQSxxQkFBSztJQUNoRCxpQkFBVSxFQUFBO0lBRVosK0JBQVMsa0JBQUE7SUFFTCw0QkFDaUIsU0FBQTtJQUVqQiw0R0FHbUU7SUFDckUsaUJBQVU7SUFDVixvQ0FBZ0Msc0JBQUE7SUFDTCwyTUFBa0IsZUFBQSx5QkFBa0IsQ0FBQSxJQUFDLDhLQUF3QixlQUFBLHlCQUFrQixDQUFBLElBQTFDO0lBQzVELGFBQ0Y7SUFBQSxpQkFBYTtJQUNiLHVDQUF1SjtJQUE5SCwyTUFBa0IsZUFBQSx5QkFBa0IsQ0FBQSxJQUFDLDhLQUFzQyxlQUFBLHlCQUFrQixDQUFBLElBQXhEO0lBQzVELGFBQ0Y7SUFBQSxpQkFB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S0FZdkIsZUFBZTtrQkFEckIsU0FBUzttQkFBQyxpQkFBaUIsRUFBRSxFQUFDLE1BQU0sRUFBRyxLQUFLLEVBQUM7WUFFcEMsUUFBUTtrQkFBakIsTUFBTTtZQUNFLElBQUk7a0JBQVosS0FBSztZQUNHLFFBQVE7a0JBQWhCLEtBQUs7WUFDRSxhQUFhO2tCQUFwQixLQUFLOztrRkFYRyx3QkFBd0IiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBOZ01vZHVsZSwgQ29tcG9uZW50LCBJbnB1dCwgT3V0cHV0LCBFdmVudEVtaXR0ZXIsIFZpZXdDaGlsZH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IFVudHlwZWRGb3JtQnVpbGRlciwgVW50eXBlZEZvcm1Db250cm9sLCBVbnR5cGVkRm9ybUdyb3VwLCBOZ0Zvcm0sIFZhbGlkYXRvcnMgfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XHJcbmltcG9ydCB7IEFjdGl2YXRlZFJvdXRlIH0gZnJvbSAnQGFuZ3VsYXIvcm91dGVyJztcclxuaW1wb3J0IHsgRWxlbWVudHNNb2RlbCB9IGZyb20gJy4uLy4uL21vZGVscy9xdWVzdGlvbm5haXJlL0VsZW1lbnRzTW9kZWwnO1xyXG5pbXBvcnQgeyBMZWdhbERpc2NsYWltYXJNb2RlbCB9IGZyb20gJy4uLy4uL21vZGVscy9xdWVzdGlvbm5haXJlL0xlZ2FsRGlzY2FpbWFyTW9kZWwnO1xyXG5pbXBvcnQgeyBMb2dnZXJTZXJ2aWNlIH0gZnJvbSAnLi4vLi4vc2VydmljZXMvbG9nZ2VyL2xvZ2dlci5zZXJ2aWNlJztcclxuaW1wb3J0IHsgTG9naW5TZXJ2aWNlIH0gZnJvbSAnLi4vLi4vc2VydmljZXMvbG9naW4vbG9naW4uc2VydmljZSc7XHJcbmltcG9ydCB7IEFwcFZhbGlkYXRvcnMgfSBmcm9tICcuLi9xdWVzdGlvbm5haXJlL0FwcFZhbGlkYXRvcnMnO1xyXG5pbXBvcnQgeyBUcmFuc2xhdGVTZXJ2aWNlIH0gZnJvbSAnQG5neC10cmFuc2xhdGUvY29yZSc7XHJcblxyXG5cclxuQENvbXBvbmVudCh7XHJcbiAgc2VsZWN0b3I6ICdhcHAtbGVnYWwtZGlzY2xhaW1hcicsXHJcbiAgdGVtcGxhdGVVcmw6ICcuL2xlZ2FsLWRpc2NsYWltYXIuY29tcG9uZW50Lmh0bWwnLFxyXG4gIHN0eWxlVXJsczogWycuL2xlZ2FsLWRpc2NsYWltYXIuY29tcG9uZW50LnNjc3MnXSxcclxuICBcclxufSlcclxuZXhwb3J0IGNsYXNzIExlZ2FsRGlzY2xhaW1hckNvbXBvbmVudCB7XHJcblxyXG4gICAgZGlzcGxheVBvc2l0aW9uOiBib29sZWFuO1xyXG4gICAgcG9zaXRpb246IHN0cmluZztcclxuICAgIGRpc3BsYXlDaGVja0JveDpib29sZWFuPWZhbHNlO1xyXG4gICAgcHVibGljIGxlZ2FsRGlzY2xhaW1hciA6IExlZ2FsRGlzY2xhaW1hck1vZGVsO1xyXG4gICAgQFZpZXdDaGlsZCgncWVGb3JtRGlyZWN0aXZlJywge3N0YXRpYyA6IGZhbHNlfSkgXHJcbiAgICBwdWJsaWMgcWVGb3JtRGlyZWN0aXZlOiBOZ0Zvcm07XHJcbiAgICBAT3V0cHV0KCkgYWNjZXB0ZWQgPSBuZXcgRXZlbnRFbWl0dGVyPGJvb2xlYW4+KCk7XHJcbiAgICBASW5wdXQoKSBmb3JtOiBVbnR5cGVkRm9ybUdyb3VwO1xyXG4gICAgQElucHV0KCkgcXVlc3Rpb246IEVsZW1lbnRzTW9kZWw7XHJcbiAgICBASW5wdXQoKWNvbXBvbmVudERhdGE6c3RyaW5nO1xyXG4gICAgaXNTdWJtaXR0ZWQgOiBib29sZWFuID0gZmFsc2U7XHJcbiAgICBjb25zdHJ1Y3RvcihcclxuICAgICAgcHVibGljIGxvZ2dlcjpMb2dnZXJTZXJ2aWNlLFxyXG4gICAgICBwdWJsaWMgZmI6IFVudHlwZWRGb3JtQnVpbGRlciwgXHJcbiAgICAgIHB1YmxpYyBsczogTG9naW5TZXJ2aWNlLCBcclxuICAgICAgcHVibGljIGFjdGl2YXRlZFJvdXRlOiBBY3RpdmF0ZWRSb3V0ZSxcclxuICAgICAgcHVibGljIHRyYW5zbGF0ZVNlcnZpY2U6IFRyYW5zbGF0ZVNlcnZpY2VcclxuICAgICkge3RoaXMudHJhbnNsYXRlU2VydmljZS51c2UobG9jYWxTdG9yYWdlLmdldEl0ZW0oXCJsYW5ndWFnZVwiKSk7IH1cclxuXHJcbiAgICBzaG93UG9zaXRpb25EaWFsb2cocG9zaXRpb246IHN0cmluZykge1xyXG4gICAgICB0aGlzLnBvc2l0aW9uID0gcG9zaXRpb247XHJcbiAgICAgIHRoaXMuZGlzcGxheVBvc2l0aW9uID0gdHJ1ZTsgICAgXHJcblxyXG4gICAgICBzZXRUaW1lb3V0KCgpID0+IHtcclxuICAgICAgICB0aGlzLmFkZERpYWxvZ0F0dHJpYnV0ZSgpO1xyXG4gICAgICB9LCAzMDAwKVxyXG4gIH1cclxuXHJcbiAgYWNjZXB0RGlzY2xhaW1hcigpe1xyXG4gICAgdGhpcy5pc1N1Ym1pdHRlZCA9IHRydWU7XHJcbiAgICBpZih0aGlzLmxhc3Rmb3Vyc3NuLnZhbGlkKXtcclxuICAgICAgdGhpcy5kaXNwbGF5Q2hlY2tCb3g9dHJ1ZTtcclxuICAgICAgdGhpcy5hY2NlcHRlZC5lbWl0KHRydWUpO1xyXG4gICAgICB0aGlzLmRpc3BsYXlQb3NpdGlvbj1mYWxzZTtcclxuICAgICAgdGhpcy5sZWdhbEhpZGRlbi5zZXRWYWx1ZSh0cnVlKTtcclxuICAgIH1cclxuICB9XHJcblxyXG4gIGNhbmNlbERpc2NsYWltYXIoKXtcclxuICAgIHRoaXMuaXNTdWJtaXR0ZWQgPSBmYWxzZTtcclxuICAgIHRoaXMuZGlzcGxheUNoZWNrQm94PWZhbHNlO1xyXG4gICAgdGhpcy5hY2NlcHRlZC5lbWl0KGZhbHNlKTtcclxuICAgIHRoaXMubGVnYWxIaWRkZW4uc2V0VmFsdWUobnVsbCk7XHJcbiAgICB0aGlzLmRpc3BsYXlQb3NpdGlvbj1mYWxzZTtcclxuICB9XHJcblxyXG4gIGdldCBsZWdhbEhpZGRlbigpIHtcclxuICAgIHJldHVybiB0aGlzLmZvcm0uZ2V0KCdsZWdhbEhpZGRlbicpXHJcbiAgfVxyXG5cclxuICBnZXQgbGFzdGZvdXJzc24oKSB7XHJcbiAgICByZXR1cm4gdGhpcy5mb3JtLmdldCgnbGFzdGZvdXJzc24nKVxyXG4gIH1cclxuXHJcbiAgbmdPbkluaXQoKXtcclxuICAgIGxldCBzc25MYXN0Rm91ckZyb21EYjogc3RyaW5nO1xyXG4gICAgaWYodGhpcy5scy5pc0NsYWltYW50KCkgPT09IHRydWUpe1xyXG4gICAgICBzc25MYXN0Rm91ckZyb21EYiA9IHRoaXMubHMuZ2V0VXNlcigpLnNzbi5zdWJzdHJpbmcoNSw5KVxyXG4gICAgfSBlbHNle1xyXG4gICAgICBsZXQgZGF0YSA9IHRoaXMuYWN0aXZhdGVkUm91dGUuc25hcHNob3QucXVlcnlQYXJhbU1hcC5nZXQoJ2tleScpO1xyXG4gICAgICAgIGlmKGRhdGEpe1xyXG4gICAgICAgICAgbGV0IHNzbkZvckNTUjogc3RyaW5nO1xyXG4gICAgICAgICAgc3NuRm9yQ1NSID0gYXRvYihkYXRhKTtcclxuICAgICAgICAgIHNzbkxhc3RGb3VyRnJvbURiID0gc3NuRm9yQ1NSLnN1YnN0cmluZyg1LDkpO1xyXG4gICAgICAgIH0gICBcclxuICAgIH1cclxuICAgIHRoaXMuZm9ybS5hZGRDb250cm9sKCdsZWdhbEhpZGRlbicsIG5ldyBVbnR5cGVkRm9ybUNvbnRyb2wobnVsbCxbVmFsaWRhdG9ycy5yZXF1aXJlZFRydWUsVmFsaWRhdG9ycy5yZXF1aXJlZF0pKTtcclxuICAgIHRoaXMuZm9ybS5hZGRDb250cm9sKCdsYXN0Zm91cnNzbicsIG5ldyBVbnR5cGVkRm9ybUNvbnRyb2wobnVsbCxbVmFsaWRhdG9ycy5jb21wb3NlKFtWYWxpZGF0b3JzLnJlcXVpcmVkLCBBcHBWYWxpZGF0b3JzLmlzRXF1YWwoc3NuTGFzdEZvdXJGcm9tRGIpXSldKSk7XHJcbiAgICB0aGlzLnF1ZXN0aW9uLm5hbWU9XCJsZWdhbEhpZGRlblwiO1xyXG4gICAgY29uc3Qgb2JqID0gSlNPTi5wYXJzZSh0aGlzLmNvbXBvbmVudERhdGEpO1xyXG4gICAgdGhpcy5sZWdhbERpc2NsYWltYXI9b2JqO1xyXG4gIH1cclxuXHJcbiAgYWRkRGlhbG9nQXR0cmlidXRlKCk6IHZvaWQge1xyXG4gICAgICBjb25zdCBkaWFsb2cgPSBkb2N1bWVudC5xdWVyeVNlbGVjdG9yKCdkaXZbcm9sZT1kaWFsb2ddJyk7XHJcbiAgICAgIGlmKGRpYWxvZyl7XHJcbiAgICAgICAgZGlhbG9nLnNldEF0dHJpYnV0ZSgnYXJpYS1sYWJlbGxlZGJ5JywgJ2xlZ2FsRGlzY2xhaW1hclRpdGxlJyk7XHJcbiAgICAgICAgZGlhbG9nLnNldEF0dHJpYnV0ZSgnYXJpYS1kZXNjcmliZWRieScsICdsZWdhbERpc2NsYWltYXJDb250ZW50Jyk7XHJcblxyXG4gICAgICAgIGRvY3VtZW50LnF1ZXJ5U2VsZWN0b3JBbGwoJ2RpdiAuaW9uQnV0dG9uJykuZm9yRWFjaChlbGVtZW50ID0+IHtcclxuICAgICAgICAgIGVsZW1lbnQuc2V0QXR0cmlidXRlKCdyb2xlJywgJ2J1dHRvbicpO1xyXG4gICAgICAgIH0pXHJcbiAgICAgIH1cclxuICB9XHJcbiAgZ2V0IHJlcXVpcmVkKCl7XHJcbiAgICByZXR1cm4gdGhpcy50cmFuc2xhdGVTZXJ2aWNlLmluc3RhbnQoJ2NvbW1vbi5yZXF1aXJlZCcpO1xyXG4gIH1cclxuXHJcbiAgZ2V0IHNzbk5vdE1hdGNoZWQoKXtcclxuICAgIHJldHVybiB0aGlzLnRyYW5zbGF0ZVNlcnZpY2UuaW5zdGFudCgnYWNjZXNzLmxlZ2FsLnNzbi5ub3QubWF0Y2hlZCcpO1xyXG4gIH1cclxufVxyXG5cclxuXHJcblxyXG4iLCI8Zm9ybSBbZm9ybUdyb3VwXT1cImZvcm1cIiAjcWVGb3JtRGlyZWN0aXZlPVwibmdGb3JtXCI+XHJcbiAgPGRpdiAqbmdJZj1cImxlZ2FsRGlzY2xhaW1hclwiPlxyXG4gICAgPHAtZGlhbG9nIFsodmlzaWJsZSldPVwiZGlzcGxheVBvc2l0aW9uXCIgW3Bvc2l0aW9uXT1cInBvc2l0aW9uXCIgbW9kYWw9XCJ0cnVlXCIgW3Nob3dIZWFkZXJdPVwiZmFsc2VcIiBhcHBlbmRUbz1cImJvZHlcIiBbYnJlYWtwb2ludHNdPVwieyc5NjBweCc6ICc4MHZ3JywgJzY0MHB4JzogJzEwMHZ3J31cIiBbc3R5bGVdPVwie3dpZHRoOiAnNjB2dyd9XCI+XHJcbiAgICAgIDxoMT57e2xlZ2FsRGlzY2xhaW1hci5wcml2YWN5U3RhdGVtZW50VGl0bGV9fTwvaDE+XHJcbiAgICAgIDxkaXYgW2lubmVySFRNTF09XCJsZWdhbERpc2NsYWltYXIucHJpdmFjeVN0YXRlbWVudFwiPlxyXG4gIFxyXG4gICAgICA8L2Rpdj5cclxuICAgICAgPGgxIGlkPVwibGVnYWxEaXNjbGFpbWFyVGl0bGVcIj57e2xlZ2FsRGlzY2xhaW1hci5iZW5lZml0UmlnaHRzVGl0bGV9fTwvaDE+XHJcbiAgICAgIDxkaXYgW2lubmVySFRNTF09XCJsZWdhbERpc2NsYWltYXIuYmVuZWZpdFJpZ2h0c1wiIGlkPVwibGVnYWxEaXNjbGFpbWFyQ29udGVudFwiPjwvZGl2PlxyXG4gICAgICBcclxuICAgICAgPGRpdiBjbGFzcz1cInJlbGlhLWNhcmQtc2VjdGlvblwiPlxyXG4gICAgICAgIDxkaXYgY2xhc3M9XCJoZWFkZXJcIj5cclxuICAgICAgICAgIDxoND57eydsZWdhbC5kaXNjbGFpbWFyLlVzYmFuay5yZWFsQ2FyZCcgfCB0cmFuc2xhdGV9fTwvaDQ+XHJcbiAgICAgICAgICA8cD48c3Ryb25nPnt7J2xlZ2FsLmRpc2NsYWltYXIucHJvZ3JhbU5hbWUnIHwgdHJhbnNsYXRlfX06PC9zdHJvbmc+IHt7J2xlZ2FsLmRpc2NsYWltYXIuZGVzY3JpcHRpb24nIHwgdHJhbnNsYXRlfX08L3A+XHJcbiAgICAgICAgPC9kaXY+XHJcbiAgICAgIFxyXG4gICAgICAgIDxkaXYgY2xhc3MgPSBcImluZm8tYm94XCI+XHJcbiAgICAgICAgICA8ZGl2IGNsYXNzPVwib3B0aW9ucy1pbmZvXCI+XHJcbiAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJvcHRpb25zLW1lc3NhZ2VcIj5cclxuICAgICAgICAgICAgICB7eydsZWdhbC5kaXNjbGFpbWFyLmFnZW5jeScgfCB0cmFuc2xhdGV9fVxyXG4gICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgIFxyXG4gICAgICAgICAgPGRpdiBjbGFzcz1cImZlZXMtc3VtbWFyeVwiPlxyXG4gICAgICAgICAgICA8dGFibGU+XHJcbiAgICAgICAgICAgICAgPHRoZWFkPlxyXG4gICAgICAgICAgICAgICAgPHRyPlxyXG4gICAgICAgICAgICAgICAgICA8dGg+IHt7J2xlZ2FsLmRpc2NsYWltYXIubW9udGhlbHlGZWUnIHwgdHJhbnNsYXRlfX08L3RoPlxyXG4gICAgICAgICAgICAgICAgICA8dGg+IHt7J2xlZ2FsLmRpc2NsYWltYXIucGVyUHVyY2hhc2UnIHwgdHJhbnNsYXRlfX08L3RoPlxyXG4gICAgICAgICAgICAgICAgICA8dGg+IHt7J2xlZ2FsLmRpc2NsYWltYXIuQVRNV2l0aGRyYXdhbCcgfCB0cmFuc2xhdGV9fTwvdGg+XHJcbiAgICAgICAgICAgICAgICAgIDx0aD4ge3snbGVnYWwuZGlzY2xhaW1hci5jYXNoUmVsb2FkJyB8IHRyYW5zbGF0ZX19PC90aD5cclxuICAgICAgICAgICAgICAgIDwvdHI+XHJcbiAgICAgICAgICAgICAgPC90aGVhZD5cclxuICAgICAgICAgICAgICA8dGJvZHk+XHJcbiAgICAgICAgICAgICAgICA8dHI+XHJcbiAgICAgICAgICAgICAgICAgIDx0ZD48Yj4kMDwvYj48L3RkPlxyXG4gICAgICAgICAgICAgICAgICA8dGQ+PGI+JDA8L2I+PC90ZD5cclxuICAgICAgICAgICAgICAgICAgPHRkPlxyXG4gICAgICAgICAgICAgICAgICAgIDxiPiQwPC9iPiB7eydsZWdhbC5kaXNjbGFpbWFyLmluTmV0d29yaycgfCB0cmFuc2xhdGV9fTxicj5cclxuICAgICAgICAgICAgICAgICAgICA8Yj4kMS41MDwvYj4ge3snbGVnYWwuZGlzY2xhaW1hci5vdXRPZk5ldHdvcmsnIHwgdHJhbnNsYXRlfX1cclxuICAgICAgICAgICAgICAgICAgPC90ZD5cclxuICAgICAgICAgICAgICAgICAgPHRkPjxiPk4vQTwvYj48L3RkPlxyXG4gICAgICAgICAgICAgICAgPC90cj5cclxuICAgICAgICAgICAgICA8L3Rib2R5PlxyXG4gICAgICAgICAgICA8L3RhYmxlPlxyXG4gICAgICAgICAgPC9kaXY+ICAgICAgICAgIFxyXG4gICAgICAgIFxyXG4gICAgICAgICAgPGRpdiBjbGFzcz1cIm90aGVyLWZlZXMtaW5mb1wiPlxyXG4gICAgICAgICAgICA8dGFibGU+XHJcbiAgICAgICAgICAgICAgPHRyPlxyXG4gICAgICAgICAgICAgICAgPHRkPiB7eydsZWdhbC5kaXNjbGFpbWFyLmF0bUJhbGFuY2UnIHwgdHJhbnNsYXRlfX08L3RkPlxyXG4gICAgICAgICAgICAgICAgPHRkPiQwPC90ZD5cclxuICAgICAgICAgICAgICA8L3RyPlxyXG4gICAgICAgICAgICAgIDx0cj5cclxuICAgICAgICAgICAgICAgIDx0ZD57eydsZWdhbC5kaXNjbGFpbWFyLmN1c3RvbWVyU2VydmljZScgfCB0cmFuc2xhdGV9fTwvdGQ+XHJcbiAgICAgICAgICAgICAgICA8dGQ+JDAge3snbGVnYWwuZGlzY2xhaW1hci5wZXJDYWxsJyB8IHRyYW5zbGF0ZX19PC90ZD5cclxuICAgICAgICAgICAgICA8L3RyPlxyXG4gICAgICAgICAgICAgIDx0cj5cclxuICAgICAgICAgICAgICAgIDx0ZD57eydsZWdhbC5kaXNjbGFpbWFyLmluYWN0aXZpdHknIHwgdHJhbnNsYXRlfX08L3RkPlxyXG4gICAgICAgICAgICAgICAgPHRkPiQxLjUwIHt7J2xlZ2FsLmRpc2NsYWltYXIucGVyTW9udGgnIHwgdHJhbnNsYXRlfX08L3RkPlxyXG4gICAgICAgICAgICAgIDwvdHI+XHJcbiAgICAgICAgICAgIDwvdGFibGU+XHJcbiAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJvdGhlci1mZWVzLW5vdGVcIj5cclxuICAgICAgICAgICAgICA8Yj57eydsZWdhbC5kaXNjbGFpbWFyLm90aGVyVHlwZXNPZkZlZXMnIHwgdHJhbnNsYXRlfX08L2I+XHJcbiAgICAgICAgICAgICAgPGhyIGNsYXNzPVwib3RoZXItZmVlcy1saW5lXCIvPlxyXG4gICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgPHA+e3snbGVnYWwuZGlzY2xhaW1hci5hY2NvbXBhbnlpbmdGZWVTY2hlZHVsZScgfCB0cmFuc2xhdGV9fTwvcD5cclxuICAgICAgICAgICAgPHA+PGI+e3snbGVnYWwuZGlzY2xhaW1hci5ub092ZXJkcmFmdC9jcmVkaXQnIHwgdHJhbnNsYXRlfX08L2I+PGJyPnt7J2xlZ2FsLmRpc2NsYWltYXIuZWxpZ2libGVGb3JGRElDJyB8IHRyYW5zbGF0ZX19PC9wPlxyXG4gICAgICAgICAgICA8cD57eydsZWdhbC5kaXNjbGFpbWFyLnByZXBhaWRBY2NvdW50cycgfCB0cmFuc2xhdGV9fSA8YSBocmVmPVwiY2ZwYi5nb3YvcHJlcGFpZFwiPjxpPmNmcGIuZ292L3ByZXBhaWQ8L2k+PC9hPi48YnI+XHJcbiAgICAgICAgICAgICAge3snbGVnYWwuZGlzY2xhaW1hci5maW5kRGV0YWlscycgfCB0cmFuc2xhdGV9fSA8Yj4xLTg2Ni0zMzUtMTY1MzwvYj4ge3snbGVnYWwuZGlzY2xhaW1hci5vclZpc2l0JyB8IHRyYW5zbGF0ZX19ICA8YSBocmVmPVwidXNiYW5rcmVsaWFjYXJkLmNvbVwiPjxiPnVzYmFua3JlbGlhY2FyZC5jb208L2I+PC9hPi48L3A+XHJcbiAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICA8L2Rpdj5cclxuICAgICAgXHJcbiAgICAgICAgPGRpdiBjbGFzcz1cImRpdmlkZXJcIj5cclxuICAgICAgICAgIDxocj5cclxuICAgICAgICA8L2Rpdj5cclxuICAgICAgXHJcbiAgICAgICAgPGRpdiBjbGFzcz1cInJlbGlhLWNhcmQtZmVlLXNjaGVkdWxlXCI+XHJcbiAgICAgICAgICA8aDM+IHt7J2xlZ2FsLmRpc2NsYWltYXIudXNCYW5rRmVlU2NoZWR1bGUnIHwgdHJhbnNsYXRlfX0gPC9oMz5cclxuICAgICAgICAgIDxwPjxzdHJvbmc+e3snbGVnYWwuZGlzY2xhaW1hci5wcm9ncmFtTmFtZScgfCB0cmFuc2xhdGV9fTo8L3N0cm9uZz4ge3snbGVnYWwuZGlzY2xhaW1hci5kZXNjcmlwdGlvbicgfCB0cmFuc2xhdGV9fTwvcD5cclxuICAgICAgICAgIDxkaXYgY2xhc3M9XCJmZWUtdGFibGUtd3JhcHBlclwiPlxyXG4gICAgICAgICAgICA8dGFibGU+XHJcbiAgICAgICAgICAgICAgPHRoZWFkPlxyXG4gICAgICAgICAgICAgICAgPHRyPlxyXG4gICAgICAgICAgICAgICAgICA8dGg+e3snbGVnYWwuZGlzY2xhaW1hci5hbGxmZWVzJyB8IHRyYW5zbGF0ZX19PC90aD5cclxuICAgICAgICAgICAgICAgICAgPHRoPnt7J2xlZ2FsLmRpc2NsYWltYXIuYW1vdW50JyB8IHRyYW5zbGF0ZX19PC90aD5cclxuICAgICAgICAgICAgICAgICAgPHRoPnt7J2xlZ2FsLmRpc2NsYWltYXIuZGV0YWlscycgfCB0cmFuc2xhdGV9fTwvdGg+XHJcbiAgICAgICAgICAgICAgICA8L3RyPlxyXG4gICAgICAgICAgICAgIDwvdGhlYWQ+XHJcbiAgICAgICAgICAgICAgPHRib2R5PlxyXG4gICAgICAgICAgICAgICAgPHRyIGNsYXNzPVwiY2F0ZWdvcnktcm93XCI+XHJcbiAgICAgICAgICAgICAgICAgIDx0ZCBjb2xzcGFuPVwiM1wiPjxiPnt7J2xlZ2FsLmRpc2NsYWltYXIuZ2V0Q2FzaCcgfCB0cmFuc2xhdGV9fTwvYj48L3RkPlxyXG4gICAgICAgICAgICAgICAgPC90cj5cclxuICAgICAgICAgICAgICAgIDx0cj5cclxuICAgICAgICAgICAgICAgICAgPHRkPnt7J2xlZ2FsLmRpc2NsYWltYXIuQVRNV2l0aGRyYXdhbCcgfCB0cmFuc2xhdGV9fSAoe3snbGVnYWwuZGlzY2xhaW1hci5pbk5ldHdvcmsnIHwgdHJhbnNsYXRlfX0pPC90ZD5cclxuICAgICAgICAgICAgICAgICAgPHRkPiQwPC90ZD5cclxuICAgICAgICAgICAgICAgICAgPHRkPnt7J2xlZ2FsLmRpc2NsYWltYXIubW9uZXlQYXNzJyB8IHRyYW5zbGF0ZX19IDxhIGhyZWY9XCJ1c2JhbmsuY29tL2xvY2F0aW9uc1wiPnVzYmFuay5jb20vbG9jYXRpb25zPC9hPiB7eydsZWdhbC5kaXNjbGFpbWFyLm9yJyB8IHRyYW5zbGF0ZX19PGEgaHJlZj1cIm1vbmV5cGFzcy5jb20vYXRtLWxvY2F0b3IuaHRtbFwiPm1vbmV5cGFzcy5jb20vYXRtLWxvY2F0b3IuaHRtbDwvYT4uPC90ZD5cclxuICAgICAgICAgICAgICAgIDwvdHI+XHJcbiAgICAgICAgICAgICAgICA8dHI+XHJcbiAgICAgICAgICAgICAgICAgIDx0ZD57eydsZWdhbC5kaXNjbGFpbWFyLkFUTVdpdGhkcmF3YWwnIHwgdHJhbnNsYXRlfX0gICh7eydsZWdhbC5kaXNjbGFpbWFyLm91dE9mTmV0d29yaycgfCB0cmFuc2xhdGV9fSk8L3RkPlxyXG4gICAgICAgICAgICAgICAgICA8dGQ+JDEuNTA8L3RkPlxyXG4gICAgICAgICAgICAgICAgICA8dGQ+e3snbGVnYWwuZGlzY2xhaW1hci53aXRoZHJhd2FsT3V0LW9mLW5ldHdvcmsnIHwgdHJhbnNsYXRlfX0gPC90ZD5cclxuICAgICAgICAgICAgICAgIDwvdHI+XHJcbiAgICAgICAgICAgICAgICA8dHI+XHJcbiAgICAgICAgICAgICAgICAgIDx0ZD57eydsZWdhbC5kaXNjbGFpbWFyLnRlbGxlckNhc2gnIHwgdHJhbnNsYXRlfX0gPC90ZD5cclxuICAgICAgICAgICAgICAgICAgPHRkPiQwPC90ZD5cclxuICAgICAgICAgICAgICAgICAgPHRkPnt7J2xlZ2FsLmRpc2NsYWltYXIuYWNjZXB0c1Zpc2EnIHwgdHJhbnNsYXRlfX0gJnJlZzsuPC90ZD5cclxuICAgICAgICAgICAgICAgIDwvdHI+XHJcbiAgICAgICAgICAgICAgICA8dHIgY2xhc3M9XCJjYXRlZ29yeS1yb3dcIj5cclxuICAgICAgICAgICAgICAgICAgPHRkIGNvbHNwYW49XCIzXCI+PGI+e3snbGVnYWwuZGlzY2xhaW1hci5vdXRzaWRldGhlVS5TJyB8IHRyYW5zbGF0ZX19PC9iPjwvdGQ+XHJcbiAgICAgICAgICAgICAgICA8L3RyPlxyXG4gICAgICAgICAgICAgICAgPHRyPlxyXG4gICAgICAgICAgICAgICAgICA8dGQ+e3snbGVnYWwuZGlzY2xhaW1hci5pblRyYW5zYWN0aW9uJyB8IHRyYW5zbGF0ZX19PC90ZD5cclxuICAgICAgICAgICAgICAgICAgPHRkPjMlPC90ZD5cclxuICAgICAgICAgICAgICAgICAgPHRkPnt7J2xlZ2FsLmRpc2NsYWltYXIuZm9yZWlnbk1lcmNoYW50cycgfCB0cmFuc2xhdGV9fTwvdGQ+XHJcbiAgICAgICAgICAgICAgICA8L3RyPlxyXG4gICAgICAgICAgICAgICAgPHRyPlxyXG4gICAgICAgICAgICAgICAgICA8dGQ+e3snbGVnYWwuZGlzY2xhaW1hci5pbnRlcm5hdGlvbmFsJyB8IHRyYW5zbGF0ZX19PC90ZD5cclxuICAgICAgICAgICAgICAgICAgPHRkPiQxLjUwPC90ZD5cclxuICAgICAgICAgICAgICAgICAgPHRkPnt7J2xlZ2FsLmRpc2NsYWltYXIuQVRNT3BlcmF0b3InIHwgdHJhbnNsYXRlfX08L3RkPlxyXG4gICAgICAgICAgICAgICAgPC90cj5cclxuICAgICAgICAgICAgICAgIDx0ciBjbGFzcz1cImNhdGVnb3J5LXJvd1wiPlxyXG4gICAgICAgICAgICAgICAgICA8dGQgY29sc3Bhbj1cIjNcIj48Yj57eydsZWdhbC5kaXNjbGFpbWFyLm90aGVyJyB8IHRyYW5zbGF0ZX19PC9iPjwvdGQ+XHJcbiAgICAgICAgICAgICAgICA8L3RyPlxyXG4gICAgICAgICAgICAgICAgPHRyPlxyXG4gICAgICAgICAgICAgICAgICA8dGQ+e3snbGVnYWwuZGlzY2xhaW1hci5jYXJkUmVwbGFjZW1lbnQnIHwgdHJhbnNsYXRlfX08L3RkPlxyXG4gICAgICAgICAgICAgICAgICA8dGQ+JDA8L3RkPlxyXG4gICAgICAgICAgICAgICAgICA8dGQ+e3snbGVnYWwuZGlzY2xhaW1hci5zdGFuZGFyZERlbGl2ZXJ5JyB8IHRyYW5zbGF0ZX19PC90ZD5cclxuICAgICAgICAgICAgICAgIDwvdHI+XHJcbiAgICAgICAgICAgICAgICA8dHI+XHJcbiAgICAgICAgICAgICAgICAgIDx0ZD57eydsZWdhbC5kaXNjbGFpbWFyLmV4cGVkaXRlZERlbGl2ZXJ5JyB8IHRyYW5zbGF0ZX19PC90ZD5cclxuICAgICAgICAgICAgICAgICAgPHRkPiQxMC4wMDwvdGQ+XHJcbiAgICAgICAgICAgICAgICAgIDx0ZD57eydsZWdhbC5kaXNjbGFpbWFyLmNoYXJnZWRJbkFkZGl0aW9uJyB8IHRyYW5zbGF0ZX19PC90ZD5cclxuICAgICAgICAgICAgICAgIDwvdHI+XHJcbiAgICAgICAgICAgICAgICA8dHI+XHJcbiAgICAgICAgICAgICAgICAgIDx0ZD57eydsZWdhbC5kaXNjbGFpbWFyLmluYWN0aXZpdHkxJyB8IHRyYW5zbGF0ZX19PC90ZD5cclxuICAgICAgICAgICAgICAgICAgPHRkPiQxLjUwPC90ZD5cclxuICAgICAgICAgICAgICAgICAgPHRkPnt7J2xlZ2FsLmRpc2NsYWltYXIuMzY1Q29uc2VjdXRpdmVEYXlzJyB8IHRyYW5zbGF0ZX19PC90ZD5cclxuICAgICAgICAgICAgICAgIDwvdHI+XHJcbiAgICAgICAgICAgICAgPC90Ym9keT5cclxuICAgICAgICAgICAgPC90YWJsZT5cclxuICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgIDwvZGl2PlxyXG4gICAgICBcclxuICAgICAgICA8ZGl2IGNsYXNzPVwiZmRpYy1pbmZvXCI+XHJcbiAgICAgICAgICA8cD57eydsZWdhbC5kaXNjbGFpbWFyLkZESUNJbnN1cmFuY2UnIHwgdHJhbnNsYXRlfX0gPGEgaHJlZj1cImZkaWMuZ292L2RlcG9zaXQvZGVwb3NpdHMvcHJlcGFpZC5odG1sXCI+ZmRpYy5nb3YvZGVwb3NpdC9kZXBvc2l0cy9wcmVwYWlkLmh0bWw8L2E+IHt7J2xlZ2FsLmRpc2NsYWltYXIuZm9yRGV0YWlscycgfCB0cmFuc2xhdGV9fTwvcD5cclxuICAgICAgICAgIDxwPnt7J2xlZ2FsLmRpc2NsYWltYXIub3ZlcmRyYWZ0L2NyZWRpdCcgfCB0cmFuc2xhdGV9fSA8L3A+XHJcbiAgICAgICAgICA8cD57eydsZWdhbC5kaXNjbGFpbWFyLmNhcmRob2xkZXInIHwgdHJhbnNsYXRlfX0gIDxiPjEtODY2LTMzNS0xNjUzPC9iPiwge3snbGVnYWwuZGlzY2xhaW1hci5ieU1haWwnIHwgdHJhbnNsYXRlfX0gIDxhIGhyZWY9XCJ1c2JhbmtyZWxpYWNhcmQuY29tXCI+dXNiYW5rcmVsaWFjYXJkLmNvbTwvYT48L3A+XHJcbiAgICAgICAgICA8cD57eydsZWdhbC5kaXNjbGFpbWFyLmdlbmVyYWxpbmZvcm1hdGlvbicgfCB0cmFuc2xhdGV9fSAgPGEgaHJlZj1cImNmcGIuZ292L2NvbXBsYWludFwiPmNmcGIuZ292L2NvbXBsYWludDwvYT48L3A+XHJcbiAgICAgICAgICA8cD5DUi01NDkyODM0MzwvcD5cclxuICAgICAgICAgIDxwPnt7J2xlZ2FsLmRpc2NsYWltYXIucmVsaWFDYXJkJyB8IHRyYW5zbGF0ZX19IDwvcD5cclxuICAgICAgICA8L2Rpdj5cclxuICAgICAgPC9kaXY+XHJcbiAgICAgIFxyXG4gICAgICA8bmctdGVtcGxhdGUgcFRlbXBsYXRlPVwiZm9vdGVyXCI+XHJcbiAgICAgICAgPGlvbi1yb3c+XHJcbiAgICAgICAgICA8aW9uLWNvbCBjbGFzcz1cImlvbi10ZXh0LWxlZnQgaW9uLXBhZGRpbmctdG9wXCIgPlxyXG4gICAgICAgICAgIHt7XCJhY2Nlc3MubGVnYWwucmVhZGFuZHNpZ25cIiB8IHRyYW5zbGF0ZX19PGJyLz5cclxuICAgICAgICAgIDwvaW9uLWNvbD5cclxuICAgICAgICA8L2lvbi1yb3c+XHJcbiAgICAgICAgPGlvbi1yb3c+XHJcbiAgICAgICAgICA8aW9uLWNvbCBjbGFzcz1cImlvbi10ZXh0LWxlZnRcIj5cclxuICAgICAgICAgICAgPGlucHV0IGlkPVwic3NuXCIgdHlwZT1cImlucHV0XCIgcElucHV0VGV4dCBzaXplPVwiNVwiIFtmb3JtQ29udHJvbF09XCJsYXN0Zm91cnNzblwiIG1heGxlbmd0aD1cIjRcIlxyXG4gICAgICAgICAgICAgIG1pbmxlbmd0aD1cIjRcIi8+XHJcbiAgICAgICAgICAgIDxici8+XHJcbiAgICAgICAgICAgIDxhcHAtZXJyb3IgW2NsYXNzXT1cIidhcHAtZ3JpZCdcIiBbZmllbGRdPSdsYXN0Zm91cnNzbicgW2Zvcm1dPVwicWVGb3JtRGlyZWN0aXZlXCIgW2VyckRlZl09XCJ7XHJcbiAgICAgICAgICAgICAgcmVxdWlyZWQ6IHJlcXVpcmVkLFxyXG4gICAgICAgICAgICAgIG5vdEVxdWFsOiBzc25Ob3RNYXRjaGVkXHJcbiAgICAgICAgICAgIH1cIiAqbmdJZj1cInRoaXMucWVGb3JtRGlyZWN0aXZlLnRvdWNoZWQgfHwgaXNTdWJtaXR0ZWRcIj48L2FwcC1lcnJvcj5cclxuICAgICAgICAgIDwvaW9uLWNvbD5cclxuICAgICAgICAgIDxpb24tY29sIGNsYXNzPVwiaW9uLXRleHQtcmlnaHRcIj5cclxuICAgICAgICAgICAgPGlvbi1idXR0b24gdGFiaW5kZXg9XCIwXCIgKGtleWRvd24uZW50ZXIpID1cImNhbmNlbERpc2NsYWltYXIoKVwiIHNoYXBlPVwicm91bmRcIiAoY2xpY2spPVwiY2FuY2VsRGlzY2xhaW1hcigpXCIgdHlwZT1cInJlc2V0XCIgZmlsbD1cIm91dGxpbmVcIiBjbGFzcz1cImlvbkJ1dHRvblwiPlxyXG4gICAgICAgICAgICAgIHt7bGVnYWxEaXNjbGFpbWFyLmNhbmNlbEJ1dHRvbn19XHJcbiAgICAgICAgICAgIDwvaW9uLWJ1dHRvbj5cclxuICAgICAgICAgICAgPGlvbi1idXR0b24gdGFiaW5kZXg9XCIwXCIgKGtleWRvd24uZW50ZXIpID1cImFjY2VwdERpc2NsYWltYXIoKVwiIHNoYXBlPVwicm91bmRcIiB0eXBlPVwic3VibWl0XCIgKGNsaWNrKT1cImFjY2VwdERpc2NsYWltYXIoKVwiIGZpbGw9XCJzb2xpZFwiIGNsYXNzPVwiaW9uQnV0dG9uXCI+XHJcbiAgICAgICAgICAgICAge3tsZWdhbERpc2NsYWltYXIuYWNjZXB0QnV0dG9ufX1cclxuICAgICAgICAgICAgPC9pb24tYnV0dG9uPlxyXG4gICAgICAgICAgPC9pb24tY29sPlxyXG4gICAgICAgIDwvaW9uLXJvdz5cclxuICAgICAgPC9uZy10ZW1wbGF0ZT5cclxuICAgIDwvcC1kaWFsb2c+XHJcbiAgICA8cCBjbGFzcz1cImZvcm0tbGFiZWxcIj4ge3tsZWdhbERpc2NsYWltYXIucGxzUmVhZH19PC9wPlxyXG4gICAgPGRpdiBjbGFzcz1cImdyaWQgcC1ub2d1dHRlclwiPlxyXG4gICAgICA8ZGl2IGNsYXNzPVwiY29sLTEyXCI+XHJcbiAgICAgICAgPGlucHV0IHR5cGU9XCJ0ZXh0XCIgaWQ9XCJsZWdhbEhpZGRlblwiIHBJbnB1dFRleHQgZm9ybUNvbnRyb2xOYW1lPVwibGVnYWxIaWRkZW5cIiBoaWRkZW4gLz5cclxuICAgICAgICA8aW9uLWJ1dHRvbiBzaGFwZT1cInJvdW5kXCIgKGNsaWNrKT1cInNob3dQb3NpdGlvbkRpYWxvZygndG9wJylcIiB0eXBlPVwic3VibWl0XCIgZmlsbD1cIm91dGxpbmVcIj5cclxuICAgICAgICAgIDxpb24taWNvbiBzbG90PVwic3RhcnRcIiBbbmFtZV09XCJkaXNwbGF5Q2hlY2tCb3ggPyAnY2hlY2ttYXJrLWNpcmNsZS1vdXRsaW5lJyA6ICdlbGxpcHNlLW91dGxpbmUnXCJcclxuICAgICAgICAgICAgc3R5bGU9XCJmb250LXNpemU6IDI1cHg7IGZvbnQtd2VpZ2h0OiBib2xkO1wiPjwvaW9uLWljb24+XHJcbiAgICAgICAgICB7e1wiYWNjZXNzLmxlZ2FsLmRpc2NsYWltZXJzXCIgfCB0cmFuc2xhdGV9fVxyXG4gICAgICAgIDwvaW9uLWJ1dHRvbj5cclxuICAgICAgICA8YXBwLWVycm9yIFtmaWVsZF09J2xlZ2FsSGlkZGVuJyBbZm9ybV09XCJxZUZvcm1EaXJlY3RpdmVcIiBbZXJyRGVmXT1cIntcclxuICAgICAgICAgIHJlcXVpcmVkOiByZXF1aXJlZFxyXG4gICAgICAgIH1cIj48L2FwcC1lcnJvcj5cclxuICAgICAgPC9kaXY+XHJcbiAgICA8L2Rpdj5cclxuICA8L2Rpdj5cclxuPC9mb3JtPlxyXG4iXX0=
|