@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,77 @@
|
|
|
1
|
+
import { Component } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "@ionic/angular";
|
|
4
|
+
export class AccessibilityPolicyPage {
|
|
5
|
+
constructor(popup) {
|
|
6
|
+
this.popup = popup;
|
|
7
|
+
}
|
|
8
|
+
ngOnInit() {
|
|
9
|
+
}
|
|
10
|
+
close() {
|
|
11
|
+
this.popup.dismiss().catch(err => {
|
|
12
|
+
window.close();
|
|
13
|
+
});
|
|
14
|
+
}
|
|
15
|
+
static { this.ɵfac = function AccessibilityPolicyPage_Factory(t) { return new (t || AccessibilityPolicyPage)(i0.ɵɵdirectiveInject(i1.PopoverController)); }; }
|
|
16
|
+
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: AccessibilityPolicyPage, selectors: [["app-accessibility-policy"]], decls: 60, vars: 0, consts: [[1, "ion-padding"], [1, "WordSection1"], [1, "MsoNormal"], [1, "content1"], [2, "font-size", "10.0pt", "mso-bidi-font-size", "8.0pt", "font-family", "\"Arial\",\"sans-serif\"", "color", "windowtext"], [2, "font-size", "10.0pt", "mso-bidi-font-size", "8.0pt", "font-family", "\"Arial\",\"sans-serif\"", "mso-bidi-font-family", "\"Times New Roman\"", "color", "windowtext"], [2, "font-size", "10.0pt", "mso-bidi-font-size", "8.0pt", "font-family", "\"Arial\",\"sans-serif\""], [2, "font-family", "\"Arial\",\"sans-serif\""], [2, "mso-ansi-font-size", "10.0pt", "font-family", "\"Arial\",\"sans-serif\"", "color", "windowtext"], [2, "mso-special-character", "line-break"], [1, "ion-text-right", "ion-padding"], ["shape", "round", "type", "submit", "color", "success", 3, "click"], ["slot", "start", "name", "close-sharp"]], template: function AccessibilityPolicyPage_Template(rf, ctx) { if (rf & 1) {
|
|
17
|
+
i0.ɵɵelementStart(0, "ion-header")(1, "ion-toolbar")(2, "ion-title");
|
|
18
|
+
i0.ɵɵtext(3, "Accessibility Policy");
|
|
19
|
+
i0.ɵɵelementEnd()()();
|
|
20
|
+
i0.ɵɵelementStart(4, "ion-content", 0)(5, "div", 1)(6, "p", 2)(7, "span", 3)(8, "span", 4);
|
|
21
|
+
i0.ɵɵtext(9, "The Kansas Department of Labor (KDOL) is committed to providing employees and the public, including disabled individuals, access to its web-based information and services. KDOL makes every effort to remain in compliance with Priority One of the W3C Guidelines and the guidelines in Section 508 of the Rehabilitation Act that are not covered in W3C Priority One. ");
|
|
22
|
+
i0.ɵɵelementEnd()();
|
|
23
|
+
i0.ɵɵelementStart(10, "span", 3);
|
|
24
|
+
i0.ɵɵelement(11, "span", 5);
|
|
25
|
+
i0.ɵɵelementEnd()();
|
|
26
|
+
i0.ɵɵelementStart(12, "p", 2)(13, "span", 3);
|
|
27
|
+
i0.ɵɵelement(14, "span", 4);
|
|
28
|
+
i0.ɵɵelementEnd()();
|
|
29
|
+
i0.ɵɵelementStart(15, "p", 2)(16, "span", 3)(17, "span", 4);
|
|
30
|
+
i0.ɵɵtext(18, "To reach the widest audience possible, this site is designed to be viewable from most commercially available Internet browsers and browser versions. The pages have been tested using the most common commercially available screen readers to help assure accessibility. However, since the KDOL portal provides many links to websites that are not created or maintained by KDOL, it is possible to reach sites that are not accessible to persons with disabilities.");
|
|
31
|
+
i0.ɵɵelementEnd()();
|
|
32
|
+
i0.ɵɵelementStart(19, "span", 6);
|
|
33
|
+
i0.ɵɵelement(20, "br")(21, "br");
|
|
34
|
+
i0.ɵɵelementStart(22, "strong")(23, "span", 7);
|
|
35
|
+
i0.ɵɵtext(24, "dol.ks.gov Contact Information");
|
|
36
|
+
i0.ɵɵelementEnd()();
|
|
37
|
+
i0.ɵɵelementStart(25, "b");
|
|
38
|
+
i0.ɵɵelement(26, "br")(27, "br");
|
|
39
|
+
i0.ɵɵelementEnd();
|
|
40
|
+
i0.ɵɵelementStart(28, "span", 3)(29, "span", 8);
|
|
41
|
+
i0.ɵɵtext(30, "If you need assistance accessing or utilizing the KDOL web facilities, please contact us:");
|
|
42
|
+
i0.ɵɵelementEnd()();
|
|
43
|
+
i0.ɵɵelement(31, "br")(32, "br");
|
|
44
|
+
i0.ɵɵelementStart(33, "span", 3)(34, "span", 8);
|
|
45
|
+
i0.ɵɵtext(35, "Mail:\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0KS Department of Labor");
|
|
46
|
+
i0.ɵɵelementEnd()();
|
|
47
|
+
i0.ɵɵelement(36, "br");
|
|
48
|
+
i0.ɵɵelementStart(37, "span", 3)(38, "span", 8);
|
|
49
|
+
i0.ɵɵtext(39, "\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0ATTN: Portal Manager");
|
|
50
|
+
i0.ɵɵelementEnd()();
|
|
51
|
+
i0.ɵɵelement(40, "br");
|
|
52
|
+
i0.ɵɵelementStart(41, "span", 3)(42, "span", 8);
|
|
53
|
+
i0.ɵɵtext(43, "\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0P.O. Box 3539");
|
|
54
|
+
i0.ɵɵelementEnd()();
|
|
55
|
+
i0.ɵɵelement(44, "br");
|
|
56
|
+
i0.ɵɵelementStart(45, "span", 3)(46, "span", 8);
|
|
57
|
+
i0.ɵɵtext(47, "\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0Topeka, KS 66601-3539");
|
|
58
|
+
i0.ɵɵelementEnd()();
|
|
59
|
+
i0.ɵɵelement(48, "br")(49, "br");
|
|
60
|
+
i0.ɵɵelementStart(50, "span", 3)(51, "span", 8);
|
|
61
|
+
i0.ɵɵtext(52, "Phone:\u00A0\u00A0\u00A0(601) 321-6000");
|
|
62
|
+
i0.ɵɵelementEnd()();
|
|
63
|
+
i0.ɵɵelement(53, "br")(54, "br", 9);
|
|
64
|
+
i0.ɵɵelementEnd()()()();
|
|
65
|
+
i0.ɵɵelementStart(55, "ion-footer")(56, "div", 10)(57, "ion-button", 11);
|
|
66
|
+
i0.ɵɵlistener("click", function AccessibilityPolicyPage_Template_ion_button_click_57_listener() { return ctx.close(); });
|
|
67
|
+
i0.ɵɵelement(58, "ion-icon", 12);
|
|
68
|
+
i0.ɵɵtext(59, " Close ");
|
|
69
|
+
i0.ɵɵelementEnd()()();
|
|
70
|
+
} }, dependencies: [i1.IonButton, i1.IonContent, i1.IonFooter, i1.IonHeader, i1.IonIcon, i1.IonTitle, i1.IonToolbar], styles: ["[_nghost-%COMP%] .header-md:after{width:0px!important}[_nghost-%COMP%] .footer-md:before{width:0px!important}"] }); }
|
|
71
|
+
}
|
|
72
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AccessibilityPolicyPage, [{
|
|
73
|
+
type: Component,
|
|
74
|
+
args: [{ selector: 'app-accessibility-policy', template: "<ion-header>\r\n <ion-toolbar>\r\n <ion-title>Accessibility Policy</ion-title>\r\n </ion-toolbar>\r\n</ion-header>\r\n\r\n<ion-content class=\"ion-padding\">\r\n <div class=WordSection1>\r\n <p class=MsoNormal>\r\n <span class=content1><span style='font-size:10.0pt;\r\n mso-bidi-font-size:8.0pt;font-family:\"Arial\",\"sans-serif\";color:windowtext'>The\r\n Kansas Department of Labor (KDOL) is committed to providing\r\n employees and the public, including disabled individuals, access to its\r\n web-based information and services. KDOL makes every effort to remain in\r\n compliance with Priority One of the W3C Guidelines and the guidelines in\r\n Section 508 of the Rehabilitation Act that are not covered in W3C Priority One.\r\n </span></span>\r\n <span class=content1>\r\n <span style='font-size:10.0pt;mso-bidi-font-size:\r\n 8.0pt;font-family:\"Arial\",\"sans-serif\";mso-bidi-font-family:\"Times New Roman\";\r\n color:windowtext'>\r\n \r\n </span>\r\n </span>\r\n </p>\r\n <p class=MsoNormal>\r\n <span class=content1>\r\n <span style='font-size:10.0pt;\r\n mso-bidi-font-size:8.0pt;font-family:\"Arial\",\"sans-serif\";color:windowtext'>\r\n \r\n </span>\r\n </span>\r\n </p>\r\n <p class=MsoNormal>\r\n <span class=content1><span style='font-size:10.0pt;\r\n mso-bidi-font-size:8.0pt;font-family:\"Arial\",\"sans-serif\";color:windowtext'>To\r\n reach the widest audience possible, this site is designed to be viewable from\r\n most commercially available Internet browsers and browser versions. The pages\r\n have been tested using the most common commercially available screen readers to\r\n help assure accessibility. However, since the KDOL portal provides many links\r\n to websites that are not created or maintained by KDOL, it is possible to reach\r\n sites that are not accessible to persons with disabilities.</span></span>\r\n <span\r\n style='font-size:10.0pt;mso-bidi-font-size:8.0pt;font-family:\"Arial\",\"sans-serif\"'>\r\n <br>\r\n <br>\r\n <strong><span style='font-family:\"Arial\",\"sans-serif\"'>dol.ks.gov Contact\r\n Information</span></strong><b><br>\r\n <br>\r\n </b><span class=content1><span style='mso-ansi-font-size:10.0pt;font-family:\r\n \"Arial\",\"sans-serif\";color:windowtext'>If you need assistance accessing or\r\n utilizing the KDOL web facilities, please contact us:</span></span><br>\r\n <br>\r\n <span class=content1><span style='mso-ansi-font-size:10.0pt;font-family:\"Arial\",\"sans-serif\";\r\n color:windowtext'>Mail: KS Department\r\n of Labor</span></span><br>\r\n <span class=content1><span style='mso-ansi-font-size:10.0pt;font-family:\"Arial\",\"sans-serif\";\r\n color:windowtext'> ATTN:\r\n Portal Manager</span></span><br>\r\n <span class=content1><span style='mso-ansi-font-size:10.0pt;font-family:\"Arial\",\"sans-serif\";\r\n color:windowtext'> P.O.\r\n Box 3539</span></span><br>\r\n <span class=content1><span style='mso-ansi-font-size:10.0pt;font-family:\"Arial\",\"sans-serif\";\r\n color:windowtext'> Topeka, KS 66601-3539</span></span><br>\r\n <br>\r\n <!-- todo: fix number-->\r\n <span class=content1><span style='mso-ansi-font-size:10.0pt;font-family:\"Arial\",\"sans-serif\";\r\n color:windowtext'>Phone: (601) 321-6000</span></span><br>\r\n <br style='mso-special-character:line-break'>\r\n </span>\r\n </p>\r\n </div>\r\n</ion-content>\r\n\r\n<ion-footer>\r\n <div class=\"ion-text-right ion-padding\">\r\n <ion-button shape=\"round\" type=\"submit\" (click)=\"close()\" color=\"success\">\r\n <ion-icon slot=\"start\" name=\"close-sharp\"></ion-icon>\r\n Close\r\n </ion-button>\r\n </div>\r\n </ion-footer>", styles: [":host ::ng-deep .header-md:after{width:0px!important}:host ::ng-deep .footer-md:before{width:0px!important}\n"] }]
|
|
75
|
+
}], () => [{ type: i1.PopoverController }], null); })();
|
|
76
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(AccessibilityPolicyPage, { className: "AccessibilityPolicyPage", filePath: "lib\\pages\\common\\accessibility-policy\\accessibility-policy.page.ts", lineNumber: 9 }); })();
|
|
77
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWNjZXNzaWJpbGl0eS1wb2xpY3kucGFnZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL25neC1yZXVzYS1hcHAtbGliL3NyYy9saWIvcGFnZXMvY29tbW9uL2FjY2Vzc2liaWxpdHktcG9saWN5L2FjY2Vzc2liaWxpdHktcG9saWN5LnBhZ2UudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9uZ3gtcmV1c2EtYXBwLWxpYi9zcmMvbGliL3BhZ2VzL2NvbW1vbi9hY2Nlc3NpYmlsaXR5LXBvbGljeS9hY2Nlc3NpYmlsaXR5LXBvbGljeS5wYWdlLmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBVSxNQUFNLGVBQWUsQ0FBQzs7O0FBUWxELE1BQU0sT0FBTyx1QkFBdUI7SUFFbEMsWUFBbUIsS0FBd0I7UUFBeEIsVUFBSyxHQUFMLEtBQUssQ0FBbUI7SUFBSSxDQUFDO0lBRWhELFFBQVE7SUFDUixDQUFDO0lBRUQsS0FBSztRQUNILElBQUksQ0FBQyxLQUFLLENBQUMsT0FBTyxFQUFFLENBQUMsS0FBSyxDQUFDLEdBQUcsQ0FBQyxFQUFFO1lBQy9CLE1BQU0sQ0FBQyxLQUFLLEVBQUUsQ0FBQztRQUNqQixDQUFDLENBQUMsQ0FBQztJQUNMLENBQUM7d0ZBWFUsdUJBQXVCO29FQUF2Qix1QkFBdUI7WUNScEMsa0NBQVksa0JBQUEsZ0JBQUE7WUFFRyxvQ0FBb0I7WUFBQSxpQkFBWSxFQUFBLEVBQUE7WUFJL0Msc0NBQWlDLGFBQUEsV0FBQSxjQUFBLGNBQUE7WUFJcUQsMFhBTS9FO1lBQUEsaUJBQU8sRUFBQTtZQUNQLGdDQUFxQjtZQUNsQiwyQkFJTztZQUNWLGlCQUFPLEVBQUE7WUFFViw2QkFBbUIsZUFBQTtZQUViLDJCQUdPO1lBQ1YsaUJBQU8sRUFBQTtZQUVWLDZCQUFtQixlQUFBLGVBQUE7WUFFK0QseWRBTXBCO1lBQUEsaUJBQU8sRUFBQTtZQUNsRSxnQ0FDc0Y7WUFDbkYsc0JBQUksVUFBQTtZQUVKLCtCQUFRLGVBQUE7WUFBK0MsK0NBQzVDO1lBQUEsaUJBQU8sRUFBQTtZQUFTLDBCQUFHO1lBQUEsc0JBQUksVUFBQTtZQUVsQyxpQkFBSTtZQUFBLGdDQUFxQixlQUFBO1lBQ2lCLDBHQUNXO1lBQUEsaUJBQU8sRUFBQTtZQUFPLHNCQUFJLFVBQUE7WUFFdkUsZ0NBQXFCLGVBQUE7WUFDQSxzRkFDYjtZQUFBLGlCQUFPLEVBQUE7WUFBTyxzQkFBSTtZQUMxQixnQ0FBcUIsZUFBQTtZQUNBLHlIQUNQO1lBQUEsaUJBQU8sRUFBQTtZQUFPLHNCQUFJO1lBQ2hDLGdDQUFxQixlQUFBO1lBQ0Esa0hBQ2I7WUFBQSxpQkFBTyxFQUFBO1lBQU8sc0JBQUk7WUFDMUIsZ0NBQXFCLGVBQUE7WUFDQSwwSEFBeUc7WUFBQSxpQkFBTyxFQUFBO1lBQU8sc0JBQUksVUFBQTtZQUdoSixnQ0FBcUIsZUFBQTtZQUNBLHVEQUFzQztZQUFBLGlCQUFPLEVBQUE7WUFBTyxzQkFBSSxhQUFBO1lBRWhGLGlCQUFPLEVBQUEsRUFBQSxFQUFBO1lBS2QsbUNBQVksZUFBQSxzQkFBQTtZQUVpQyx5R0FBUyxXQUFPLElBQUM7WUFDdkQsZ0NBQXFEO1lBQ3JELHdCQUNGO1lBQUEsaUJBQWEsRUFBQSxFQUFBOzs7aUZEdkVMLHVCQUF1QjtjQUxuQyxTQUFTOzJCQUNFLDBCQUEwQjs7a0ZBSXpCLHVCQUF1QiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgT25Jbml0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBQb3BvdmVyQ29udHJvbGxlciB9IGZyb20gJ0Bpb25pYy9hbmd1bGFyJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnYXBwLWFjY2Vzc2liaWxpdHktcG9saWN5JyxcbiAgdGVtcGxhdGVVcmw6ICcuL2FjY2Vzc2liaWxpdHktcG9saWN5LnBhZ2UuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL2FjY2Vzc2liaWxpdHktcG9saWN5LnBhZ2Uuc2NzcyddLFxufSlcbmV4cG9ydCBjbGFzcyBBY2Nlc3NpYmlsaXR5UG9saWN5UGFnZSBpbXBsZW1lbnRzIE9uSW5pdCB7XG5cbiAgY29uc3RydWN0b3IocHVibGljIHBvcHVwOiBQb3BvdmVyQ29udHJvbGxlcikgeyB9XG5cbiAgbmdPbkluaXQoKSB7XG4gIH1cblxuICBjbG9zZSgpe1xuICAgIHRoaXMucG9wdXAuZGlzbWlzcygpLmNhdGNoKGVyciA9PiB7XG4gICAgICB3aW5kb3cuY2xvc2UoKTtcbiAgICB9KTtcbiAgfVxuXG59XG4iLCI8aW9uLWhlYWRlcj5cclxuICA8aW9uLXRvb2xiYXI+XHJcbiAgICA8aW9uLXRpdGxlPkFjY2Vzc2liaWxpdHkgUG9saWN5PC9pb24tdGl0bGU+XHJcbiAgPC9pb24tdG9vbGJhcj5cclxuPC9pb24taGVhZGVyPlxyXG5cclxuPGlvbi1jb250ZW50IGNsYXNzPVwiaW9uLXBhZGRpbmdcIj5cclxuICA8ZGl2IGNsYXNzPVdvcmRTZWN0aW9uMT5cclxuICAgIDxwIGNsYXNzPU1zb05vcm1hbD5cclxuICAgICAgIDxzcGFuIGNsYXNzPWNvbnRlbnQxPjxzcGFuIHN0eWxlPSdmb250LXNpemU6MTAuMHB0O1xyXG4gICAgICAgICAgbXNvLWJpZGktZm9udC1zaXplOjguMHB0O2ZvbnQtZmFtaWx5OlwiQXJpYWxcIixcInNhbnMtc2VyaWZcIjtjb2xvcjp3aW5kb3d0ZXh0Jz5UaGVcclxuICAgICAgIEthbnNhcyBEZXBhcnRtZW50IG9mIExhYm9yIChLRE9MKSBpcyBjb21taXR0ZWQgdG8gcHJvdmlkaW5nXHJcbiAgICAgICBlbXBsb3llZXMgYW5kIHRoZSBwdWJsaWMsIGluY2x1ZGluZyBkaXNhYmxlZCBpbmRpdmlkdWFscywgYWNjZXNzIHRvIGl0c1xyXG4gICAgICAgd2ViLWJhc2VkIGluZm9ybWF0aW9uIGFuZCBzZXJ2aWNlcy4gS0RPTCBtYWtlcyBldmVyeSBlZmZvcnQgdG8gcmVtYWluIGluXHJcbiAgICAgICBjb21wbGlhbmNlIHdpdGggUHJpb3JpdHkgT25lIG9mIHRoZSBXM0MgR3VpZGVsaW5lcyBhbmQgdGhlIGd1aWRlbGluZXMgaW5cclxuICAgICAgIFNlY3Rpb24gNTA4IG9mIHRoZSBSZWhhYmlsaXRhdGlvbiBBY3QgdGhhdCBhcmUgbm90IGNvdmVyZWQgaW4gVzNDIFByaW9yaXR5IE9uZS5cclxuICAgICAgIDwvc3Bhbj48L3NwYW4+XHJcbiAgICAgICA8c3BhbiBjbGFzcz1jb250ZW50MT5cclxuICAgICAgICAgIDxzcGFuIHN0eWxlPSdmb250LXNpemU6MTAuMHB0O21zby1iaWRpLWZvbnQtc2l6ZTpcclxuICAgICAgICAgICAgIDguMHB0O2ZvbnQtZmFtaWx5OlwiQXJpYWxcIixcInNhbnMtc2VyaWZcIjttc28tYmlkaS1mb250LWZhbWlseTpcIlRpbWVzIE5ldyBSb21hblwiO1xyXG4gICAgICAgICAgICAgY29sb3I6d2luZG93dGV4dCc+XHJcbiAgICAgICAgICAgICBcclxuICAgICAgICAgIDwvc3Bhbj5cclxuICAgICAgIDwvc3Bhbj5cclxuICAgIDwvcD5cclxuICAgIDxwIGNsYXNzPU1zb05vcm1hbD5cclxuICAgICAgIDxzcGFuIGNsYXNzPWNvbnRlbnQxPlxyXG4gICAgICAgICAgPHNwYW4gc3R5bGU9J2ZvbnQtc2l6ZToxMC4wcHQ7XHJcbiAgICAgICAgICAgICBtc28tYmlkaS1mb250LXNpemU6OC4wcHQ7Zm9udC1mYW1pbHk6XCJBcmlhbFwiLFwic2Fucy1zZXJpZlwiO2NvbG9yOndpbmRvd3RleHQnPlxyXG4gICAgICAgICAgICAgXHJcbiAgICAgICAgICA8L3NwYW4+XHJcbiAgICAgICA8L3NwYW4+XHJcbiAgICA8L3A+XHJcbiAgICA8cCBjbGFzcz1Nc29Ob3JtYWw+XHJcbiAgICAgICA8c3BhbiBjbGFzcz1jb250ZW50MT48c3BhbiBzdHlsZT0nZm9udC1zaXplOjEwLjBwdDtcclxuICAgICAgICAgIG1zby1iaWRpLWZvbnQtc2l6ZTo4LjBwdDtmb250LWZhbWlseTpcIkFyaWFsXCIsXCJzYW5zLXNlcmlmXCI7Y29sb3I6d2luZG93dGV4dCc+VG9cclxuICAgICAgIHJlYWNoIHRoZSB3aWRlc3QgYXVkaWVuY2UgcG9zc2libGUsIHRoaXMgc2l0ZSBpcyBkZXNpZ25lZCB0byBiZSB2aWV3YWJsZSBmcm9tXHJcbiAgICAgICBtb3N0IGNvbW1lcmNpYWxseSBhdmFpbGFibGUgSW50ZXJuZXQgYnJvd3NlcnMgYW5kIGJyb3dzZXIgdmVyc2lvbnMuIFRoZSBwYWdlc1xyXG4gICAgICAgaGF2ZSBiZWVuIHRlc3RlZCB1c2luZyB0aGUgbW9zdCBjb21tb24gY29tbWVyY2lhbGx5IGF2YWlsYWJsZSBzY3JlZW4gcmVhZGVycyB0b1xyXG4gICAgICAgaGVscCBhc3N1cmUgYWNjZXNzaWJpbGl0eS4gSG93ZXZlciwgc2luY2UgdGhlIEtET0wgcG9ydGFsIHByb3ZpZGVzIG1hbnkgbGlua3NcclxuICAgICAgIHRvIHdlYnNpdGVzIHRoYXQgYXJlIG5vdCBjcmVhdGVkIG9yIG1haW50YWluZWQgYnkgS0RPTCwgaXQgaXMgcG9zc2libGUgdG8gcmVhY2hcclxuICAgICAgIHNpdGVzIHRoYXQgYXJlIG5vdCBhY2Nlc3NpYmxlIHRvIHBlcnNvbnMgd2l0aCBkaXNhYmlsaXRpZXMuPC9zcGFuPjwvc3Bhbj5cclxuICAgICAgIDxzcGFuXHJcbiAgICAgICAgICBzdHlsZT0nZm9udC1zaXplOjEwLjBwdDttc28tYmlkaS1mb250LXNpemU6OC4wcHQ7Zm9udC1mYW1pbHk6XCJBcmlhbFwiLFwic2Fucy1zZXJpZlwiJz5cclxuICAgICAgICAgIDxicj5cclxuICAgICAgICAgIDxicj5cclxuICAgICAgICAgIDxzdHJvbmc+PHNwYW4gc3R5bGU9J2ZvbnQtZmFtaWx5OlwiQXJpYWxcIixcInNhbnMtc2VyaWZcIic+ZG9sLmtzLmdvdiBDb250YWN0XHJcbiAgICAgICAgICBJbmZvcm1hdGlvbjwvc3Bhbj48L3N0cm9uZz48Yj48YnI+XHJcbiAgICAgICAgICA8YnI+XHJcbiAgICAgICAgICA8L2I+PHNwYW4gY2xhc3M9Y29udGVudDE+PHNwYW4gc3R5bGU9J21zby1hbnNpLWZvbnQtc2l6ZToxMC4wcHQ7Zm9udC1mYW1pbHk6XHJcbiAgICAgICAgICAgICBcIkFyaWFsXCIsXCJzYW5zLXNlcmlmXCI7Y29sb3I6d2luZG93dGV4dCc+SWYgeW91IG5lZWQgYXNzaXN0YW5jZSBhY2Nlc3Npbmcgb3JcclxuICAgICAgICAgIHV0aWxpemluZyB0aGUgS0RPTCB3ZWIgZmFjaWxpdGllcywgcGxlYXNlIGNvbnRhY3QgdXM6PC9zcGFuPjwvc3Bhbj48YnI+XHJcbiAgICAgICAgICA8YnI+XHJcbiAgICAgICAgICA8c3BhbiBjbGFzcz1jb250ZW50MT48c3BhbiBzdHlsZT0nbXNvLWFuc2ktZm9udC1zaXplOjEwLjBwdDtmb250LWZhbWlseTpcIkFyaWFsXCIsXCJzYW5zLXNlcmlmXCI7XHJcbiAgICAgICAgICAgICBjb2xvcjp3aW5kb3d0ZXh0Jz5NYWlsOiZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwO0tTIERlcGFydG1lbnRcclxuICAgICAgICAgIG9mIExhYm9yPC9zcGFuPjwvc3Bhbj48YnI+XHJcbiAgICAgICAgICA8c3BhbiBjbGFzcz1jb250ZW50MT48c3BhbiBzdHlsZT0nbXNvLWFuc2ktZm9udC1zaXplOjEwLjBwdDtmb250LWZhbWlseTpcIkFyaWFsXCIsXCJzYW5zLXNlcmlmXCI7XHJcbiAgICAgICAgICAgICBjb2xvcjp3aW5kb3d0ZXh0Jz4mbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDtBVFROOlxyXG4gICAgICAgICAgUG9ydGFsIE1hbmFnZXI8L3NwYW4+PC9zcGFuPjxicj5cclxuICAgICAgICAgIDxzcGFuIGNsYXNzPWNvbnRlbnQxPjxzcGFuIHN0eWxlPSdtc28tYW5zaS1mb250LXNpemU6MTAuMHB0O2ZvbnQtZmFtaWx5OlwiQXJpYWxcIixcInNhbnMtc2VyaWZcIjtcclxuICAgICAgICAgICAgIGNvbG9yOndpbmRvd3RleHQnPiZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwO1AuTy5cclxuICAgICAgICAgIEJveCAzNTM5PC9zcGFuPjwvc3Bhbj48YnI+XHJcbiAgICAgICAgICA8c3BhbiBjbGFzcz1jb250ZW50MT48c3BhbiBzdHlsZT0nbXNvLWFuc2ktZm9udC1zaXplOjEwLjBwdDtmb250LWZhbWlseTpcIkFyaWFsXCIsXCJzYW5zLXNlcmlmXCI7XHJcbiAgICAgICAgICAgICBjb2xvcjp3aW5kb3d0ZXh0Jz4mbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDtUb3Bla2EsIEtTIDY2NjAxLTM1Mzk8L3NwYW4+PC9zcGFuPjxicj5cclxuICAgICAgICAgIDxicj5cclxuICAgICAgICAgIDwhLS0gdG9kbzogZml4IG51bWJlci0tPlxyXG4gICAgICAgICAgPHNwYW4gY2xhc3M9Y29udGVudDE+PHNwYW4gc3R5bGU9J21zby1hbnNpLWZvbnQtc2l6ZToxMC4wcHQ7Zm9udC1mYW1pbHk6XCJBcmlhbFwiLFwic2Fucy1zZXJpZlwiO1xyXG4gICAgICAgICAgICAgY29sb3I6d2luZG93dGV4dCc+UGhvbmU6Jm5ic3A7Jm5ic3A7Jm5ic3A7KDYwMSkgMzIxLTYwMDA8L3NwYW4+PC9zcGFuPjxicj5cclxuICAgICAgICAgIDxiciBzdHlsZT0nbXNvLXNwZWNpYWwtY2hhcmFjdGVyOmxpbmUtYnJlYWsnPlxyXG4gICAgICAgPC9zcGFuPlxyXG4gICAgPC9wPlxyXG4gPC9kaXY+XHJcbjwvaW9uLWNvbnRlbnQ+XHJcblxyXG48aW9uLWZvb3Rlcj5cclxuICAgPGRpdiBjbGFzcz1cImlvbi10ZXh0LXJpZ2h0IGlvbi1wYWRkaW5nXCI+XHJcbiAgICAgPGlvbi1idXR0b24gc2hhcGU9XCJyb3VuZFwiIHR5cGU9XCJzdWJtaXRcIiAoY2xpY2spPVwiY2xvc2UoKVwiIGNvbG9yPVwic3VjY2Vzc1wiPlxyXG4gICAgICAgPGlvbi1pY29uIHNsb3Q9XCJzdGFydFwiIG5hbWU9XCJjbG9zZS1zaGFycFwiPjwvaW9uLWljb24+XHJcbiAgICAgICBDbG9zZVxyXG4gICAgIDwvaW9uLWJ1dHRvbj5cclxuICAgPC9kaXY+XHJcbiA8L2lvbi1mb290ZXI+Il19
|