@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,178 @@
|
|
|
1
|
+
export declare class ComboOption {
|
|
2
|
+
value: any;
|
|
3
|
+
text: any;
|
|
4
|
+
constructor(value: any, text: any);
|
|
5
|
+
static YES_NO: {
|
|
6
|
+
value: string;
|
|
7
|
+
text: string;
|
|
8
|
+
}[];
|
|
9
|
+
static YES_NO_ES: {
|
|
10
|
+
value: string;
|
|
11
|
+
text: string;
|
|
12
|
+
}[];
|
|
13
|
+
static WORK_FOR_EMPL: {
|
|
14
|
+
value: string;
|
|
15
|
+
text: string;
|
|
16
|
+
}[];
|
|
17
|
+
static WORK_FOR_EMPL_ES: {
|
|
18
|
+
value: string;
|
|
19
|
+
text: string;
|
|
20
|
+
}[];
|
|
21
|
+
static YES_NO_NA: {
|
|
22
|
+
value: string;
|
|
23
|
+
text: string;
|
|
24
|
+
}[];
|
|
25
|
+
static YES_NO_NA_ES: {
|
|
26
|
+
value: string;
|
|
27
|
+
text: string;
|
|
28
|
+
}[];
|
|
29
|
+
static EMPLOYER_TYPE: {
|
|
30
|
+
value: string;
|
|
31
|
+
text: string;
|
|
32
|
+
}[];
|
|
33
|
+
static EMPLOYER_TYPE_ES: {
|
|
34
|
+
value: string;
|
|
35
|
+
text: string;
|
|
36
|
+
}[];
|
|
37
|
+
static MILITARY_SERVICE: {
|
|
38
|
+
value: string;
|
|
39
|
+
text: string;
|
|
40
|
+
}[];
|
|
41
|
+
static MILITARY_SERVICE_ES: {
|
|
42
|
+
value: string;
|
|
43
|
+
text: string;
|
|
44
|
+
}[];
|
|
45
|
+
static COUNTRY: {
|
|
46
|
+
value: string;
|
|
47
|
+
text: string;
|
|
48
|
+
}[];
|
|
49
|
+
static COUNTRY_ES: {
|
|
50
|
+
value: string;
|
|
51
|
+
text: string;
|
|
52
|
+
}[];
|
|
53
|
+
static WORKED_STATE: {
|
|
54
|
+
value: string;
|
|
55
|
+
text: string;
|
|
56
|
+
}[];
|
|
57
|
+
static WORKED_STATE_ES: {
|
|
58
|
+
value: string;
|
|
59
|
+
text: string;
|
|
60
|
+
}[];
|
|
61
|
+
static WORK_COUNTRY: {
|
|
62
|
+
value: string;
|
|
63
|
+
text: string;
|
|
64
|
+
}[];
|
|
65
|
+
static WORK_COUNTRY_ES: {
|
|
66
|
+
value: string;
|
|
67
|
+
text: string;
|
|
68
|
+
}[];
|
|
69
|
+
static GROUP_REASONS: {
|
|
70
|
+
label: string;
|
|
71
|
+
value: string;
|
|
72
|
+
items: {
|
|
73
|
+
value: string;
|
|
74
|
+
label: string;
|
|
75
|
+
}[];
|
|
76
|
+
}[];
|
|
77
|
+
static GROUP_REASONS_ES: {
|
|
78
|
+
label: string;
|
|
79
|
+
value: string;
|
|
80
|
+
items: {
|
|
81
|
+
value: string;
|
|
82
|
+
label: string;
|
|
83
|
+
}[];
|
|
84
|
+
}[];
|
|
85
|
+
static EMPLOYMENT_STATUS: {
|
|
86
|
+
value: string;
|
|
87
|
+
text: string;
|
|
88
|
+
}[];
|
|
89
|
+
static DISCHARGE_REASONS: {
|
|
90
|
+
value: string;
|
|
91
|
+
text: string;
|
|
92
|
+
}[];
|
|
93
|
+
static VOLUNTARY_QUIT_REASONS: {
|
|
94
|
+
value: string;
|
|
95
|
+
text: string;
|
|
96
|
+
}[];
|
|
97
|
+
static PAY_PERIOD: {
|
|
98
|
+
value: string;
|
|
99
|
+
text: string;
|
|
100
|
+
}[];
|
|
101
|
+
static PAY_PERIOD_ES: {
|
|
102
|
+
value: string;
|
|
103
|
+
text: string;
|
|
104
|
+
}[];
|
|
105
|
+
static REMUNERATION_TYPES: {
|
|
106
|
+
value: string;
|
|
107
|
+
text: string;
|
|
108
|
+
}[];
|
|
109
|
+
static REMUNERATION_TYPES_ES: {
|
|
110
|
+
value: string;
|
|
111
|
+
text: string;
|
|
112
|
+
}[];
|
|
113
|
+
static PAYMENT_METHOD: {
|
|
114
|
+
value: string;
|
|
115
|
+
text: string;
|
|
116
|
+
}[];
|
|
117
|
+
static PAYMENT_METHOD_ES: {
|
|
118
|
+
value: string;
|
|
119
|
+
text: string;
|
|
120
|
+
}[];
|
|
121
|
+
static WAGE_PROOF: {
|
|
122
|
+
value: string;
|
|
123
|
+
text: string;
|
|
124
|
+
}[];
|
|
125
|
+
static WAGE_PROOF_ES: {
|
|
126
|
+
value: string;
|
|
127
|
+
text: string;
|
|
128
|
+
}[];
|
|
129
|
+
static US_STATES: {
|
|
130
|
+
value: string;
|
|
131
|
+
text: string;
|
|
132
|
+
}[];
|
|
133
|
+
static US_STATES_ES: {
|
|
134
|
+
value: string;
|
|
135
|
+
text: string;
|
|
136
|
+
}[];
|
|
137
|
+
static NON_KS_STATES: {
|
|
138
|
+
value: string;
|
|
139
|
+
text: string;
|
|
140
|
+
}[];
|
|
141
|
+
static NON_KS_STATES_ES: {
|
|
142
|
+
value: string;
|
|
143
|
+
text: string;
|
|
144
|
+
}[];
|
|
145
|
+
static CA_STATES: {
|
|
146
|
+
value: string;
|
|
147
|
+
text: string;
|
|
148
|
+
}[];
|
|
149
|
+
static CA_STATES_ES: {
|
|
150
|
+
value: string;
|
|
151
|
+
text: string;
|
|
152
|
+
}[];
|
|
153
|
+
static CLAIMANT_PROFILE_OPTS: {
|
|
154
|
+
value: string;
|
|
155
|
+
text: string;
|
|
156
|
+
}[];
|
|
157
|
+
static CLAIMANT_PROFILE_OPTS_ES: {
|
|
158
|
+
value: string;
|
|
159
|
+
text: string;
|
|
160
|
+
}[];
|
|
161
|
+
static WAGE_TYPES: {
|
|
162
|
+
value: string;
|
|
163
|
+
text: string;
|
|
164
|
+
}[];
|
|
165
|
+
static WAGE_TYPES_ES: {
|
|
166
|
+
value: string;
|
|
167
|
+
text: string;
|
|
168
|
+
}[];
|
|
169
|
+
static BP_EMP_DEL_OPTS: {
|
|
170
|
+
value: string;
|
|
171
|
+
text: string;
|
|
172
|
+
}[];
|
|
173
|
+
static BP_EMP_DEL_OPTS_ES: {
|
|
174
|
+
value: string;
|
|
175
|
+
text: string;
|
|
176
|
+
}[];
|
|
177
|
+
}
|
|
178
|
+
//# sourceMappingURL=ComboModel.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ComboModel.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/models/questionnaire/ComboModel.ts"],"names":[],"mappings":"AAAA,qBAAa,WAAW;IAEpB,KAAK,EAAE,GAAG,CAAC;IACX,IAAI,EAAE,GAAG,CAAC;gBAEE,KAAK,KAAA,EAAE,IAAI,KAAA;IAKvB,MAAM,CAAC,MAAM;;;QAGX;IACF,MAAM,CAAC,SAAS;;;QAGd;IAEF,MAAM,CAAC,aAAa;;;QAGlB;IAEF,MAAM,CAAC,gBAAgB;;;QAGrB;IAEF,MAAM,CAAC,SAAS;;;QAId;IAEF,MAAM,CAAC,YAAY;;;QAIjB;IAEF,MAAM,CAAC,aAAa;;;QAIlB;IAEF,MAAM,CAAC,gBAAgB;;;QAIrB;IAEF,MAAM,CAAC,gBAAgB;;;QAQrB;IAEF,MAAM,CAAC,mBAAmB;;;QAOxB;IAEF,MAAM,CAAC,OAAO;;;QAIZ;IAEF,MAAM,CAAC,UAAU;;;QAGf;IAEF,MAAM,CAAC,YAAY;;;QAGjB;IAEF,MAAM,CAAC,eAAe;;;QAGpB;IAEF,MAAM,CAAC,YAAY;;;QA0OlB;IAED,MAAM,CAAC,eAAe;;;QAyOpB;IAGF,MAAM,CAAC,aAAa;;;;;;;QAkDnB;IAED,MAAM,CAAC,gBAAgB;;;;;;;QAkDtB;IAGD,MAAM,CAAC,iBAAiB;;;QASvB;IAGD,MAAM,CAAC,iBAAiB;;;QAkBvB;IAED,MAAM,CAAC,sBAAsB;;;QAiB5B;IAGD,MAAM,CAAC,UAAU;;;QAShB;IAED,MAAM,CAAC,aAAa;;;QAQnB;IAED,MAAM,CAAC,kBAAkB;;;QAGxB;IAED,MAAM,CAAC,qBAAqB;;;QAG3B;IAED,MAAM,CAAC,cAAc;;;QAIpB;IAED,MAAM,CAAC,iBAAiB;;;QAIvB;IAED,MAAM,CAAC,UAAU;;;QAIhB;IAED,MAAM,CAAC,aAAa;;;QAInB;IAED,MAAM,CAAC,SAAS;;;QAuDf;IAED,MAAM,CAAC,YAAY;;;QAuDjB;IAEF,MAAM,CAAC,aAAa;;;QAsDnB;IAED,MAAM,CAAC,gBAAgB;;;QAsDrB;IAEF,MAAM,CAAC,SAAS;;;QAcf;IAED,MAAM,CAAC,YAAY;;;QAcjB;IAEF,MAAM,CAAC,qBAAqB;;;QAI3B;IAED,MAAM,CAAC,wBAAwB;;;QAI9B;IAED,MAAM,CAAC,UAAU;;;QAGhB;IAED,MAAM,CAAC,aAAa;;;QAGlB;IAEF,MAAM,CAAC,eAAe;;;QAGrB;IAED,MAAM,CAAC,kBAAkB;;;QAGxB;CACJ"}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
export declare class ValidationModel {
|
|
2
|
+
type?: string;
|
|
3
|
+
text: string;
|
|
4
|
+
minLength?: number;
|
|
5
|
+
maxLength?: number;
|
|
6
|
+
regex?: string;
|
|
7
|
+
expression?: string;
|
|
8
|
+
customValidationName?: string;
|
|
9
|
+
}
|
|
10
|
+
export declare class ElementsModel {
|
|
11
|
+
type?: string;
|
|
12
|
+
name?: string;
|
|
13
|
+
title: string;
|
|
14
|
+
isRequired: boolean;
|
|
15
|
+
requiredErrorText?: string;
|
|
16
|
+
indent: number;
|
|
17
|
+
hideNumber: boolean;
|
|
18
|
+
maxLength?: number;
|
|
19
|
+
size?: number;
|
|
20
|
+
description?: string;
|
|
21
|
+
descriptionLocation?: string;
|
|
22
|
+
inputType?: string;
|
|
23
|
+
html?: string;
|
|
24
|
+
min?: string;
|
|
25
|
+
max?: string;
|
|
26
|
+
visibleIf?: string;
|
|
27
|
+
requiredIf?: string;
|
|
28
|
+
minErrorText?: string;
|
|
29
|
+
maxErrorText?: string;
|
|
30
|
+
validators?: ValidationModel[];
|
|
31
|
+
colCount?: number;
|
|
32
|
+
customTag?: string;
|
|
33
|
+
panelGroup?: string;
|
|
34
|
+
serviceName?: string;
|
|
35
|
+
serviceCallType?: string;
|
|
36
|
+
serviceCallParam?: string;
|
|
37
|
+
serviceUpdateParam?: string;
|
|
38
|
+
serviceType?: string;
|
|
39
|
+
componentName?: string;
|
|
40
|
+
componentData?: string;
|
|
41
|
+
colSize?: string;
|
|
42
|
+
sizeXL?: string;
|
|
43
|
+
sizeLG?: string;
|
|
44
|
+
sizeMD?: string;
|
|
45
|
+
sizeSM?: string;
|
|
46
|
+
sizeXS?: string;
|
|
47
|
+
offSetXS?: string;
|
|
48
|
+
offSetSM?: string;
|
|
49
|
+
offSetMD?: string;
|
|
50
|
+
offSetLG?: string;
|
|
51
|
+
offSetXL?: string;
|
|
52
|
+
rightMargin?: string;
|
|
53
|
+
colElement?: string;
|
|
54
|
+
defaultValue?: string;
|
|
55
|
+
panelPostion?: string;
|
|
56
|
+
allowedFileType?: string;
|
|
57
|
+
multiple?: string;
|
|
58
|
+
noOFFiles?: string;
|
|
59
|
+
sizeInMB?: string;
|
|
60
|
+
subscribeValueOf?: string;
|
|
61
|
+
readonly?: boolean;
|
|
62
|
+
countyRequired?: boolean;
|
|
63
|
+
jobTitleRequired?: boolean;
|
|
64
|
+
choices?: {
|
|
65
|
+
value: string;
|
|
66
|
+
text: string;
|
|
67
|
+
}[];
|
|
68
|
+
placeholder?: string;
|
|
69
|
+
elements: ElementsModel[];
|
|
70
|
+
}
|
|
71
|
+
//# sourceMappingURL=ElementsModel.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ElementsModel.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/models/questionnaire/ElementsModel.ts"],"names":[],"mappings":"AAAA,qBAAa,eAAe;IACtB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,oBAAoB,CAAC,EAAC,MAAM,CAAA;CACjC;AAED,qBAAc,aAAa;IACrB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,UAAU,EAAE,OAAO,CAAC;IACpB,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,MAAM,EAAE,MAAM,CAAC;IACf,UAAU,EAAE,OAAO,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB,UAAU,CAAC,EAAE,eAAe,EAAE,CAAC;IAC/B,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAC,MAAM,CAAC;IAClB,UAAU,CAAC,EAAC,MAAM,CAAC;IACnB,WAAW,CAAC,EAAC,MAAM,CAAC;IACpB,eAAe,CAAC,EAAC,MAAM,CAAC;IAC7B,gBAAgB,CAAC,EAAC,MAAM,CAAC;IACzB,kBAAkB,CAAC,EAAC,MAAM,CAAC;IAC3B,WAAW,CAAC,EAAC,MAAM,CAAC;IACf,aAAa,CAAC,EAAC,MAAM,CAAC;IACtB,aAAa,CAAC,EAAC,MAAM,CAAC;IACtB,OAAO,CAAC,EAAC,MAAM,CAAC;IAChB,MAAM,CAAC,EAAC,MAAM,CAAC;IACf,MAAM,CAAC,EAAC,MAAM,CAAC;IACf,MAAM,CAAC,EAAC,MAAM,CAAC;IACf,MAAM,CAAC,EAAC,MAAM,CAAC;IACf,MAAM,CAAC,EAAC,MAAM,CAAC;IACf,QAAQ,CAAC,EAAC,MAAM,CAAC;IACjB,QAAQ,CAAC,EAAC,MAAM,CAAC;IACjB,QAAQ,CAAC,EAAC,MAAM,CAAC;IACjB,QAAQ,CAAC,EAAC,MAAM,CAAC;IACjB,QAAQ,CAAC,EAAC,MAAM,CAAC;IACjB,WAAW,CAAC,EAAC,MAAM,CAAC;IACpB,UAAU,CAAC,EAAC,MAAM,CAAC;IACnB,YAAY,CAAC,EAAC,MAAM,CAAC;IACrB,YAAY,CAAC,EAAC,MAAM,CAAC;IACrB,eAAe,CAAC,EAAC,MAAM,CAAC;IACxB,QAAQ,CAAC,EAAC,MAAM,CAAC;IACjB,SAAS,CAAC,EAAC,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAC,MAAM,CAAC;IACjB,gBAAgB,CAAC,EAAC,MAAM,CAAC;IACzB,QAAQ,CAAC,EAAC,OAAO,CAAC;IAClB,cAAc,CAAC,EAAC,OAAO,CAAC;IACxB,gBAAgB,CAAC,EAAC,OAAO,CAAC;IAC1B,OAAO,CAAC,EAAE;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAE,EAAE,CAAC;IAC5C,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,EAAG,aAAa,EAAE,CAAM;CACrC"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Combo } from "./ClaimAppEmployerDetailsModel";
|
|
2
|
+
export declare class EmployerDetailSearchResult {
|
|
3
|
+
employerName: string;
|
|
4
|
+
employerId: number;
|
|
5
|
+
addressDisplayVal: string;
|
|
6
|
+
addressLine1: string;
|
|
7
|
+
addressLine2: string;
|
|
8
|
+
addressLine3: string;
|
|
9
|
+
city: string;
|
|
10
|
+
state: Combo;
|
|
11
|
+
country: Combo;
|
|
12
|
+
zip: string;
|
|
13
|
+
ficCode: string;
|
|
14
|
+
ficDestinationCode: string;
|
|
15
|
+
ficDestinationId: string;
|
|
16
|
+
ficDestinationName: string;
|
|
17
|
+
}
|
|
18
|
+
//# sourceMappingURL=EmployerDetailSearchResult.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"EmployerDetailSearchResult.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/models/questionnaire/EmployerDetailSearchResult.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,gCAAgC,CAAC;AAEvD,qBAAa,0BAA0B;IACtC,YAAY,EAAE,MAAM,CAAC;IACrB,UAAU,EAAE,MAAM,CAAC;IACnB,iBAAiB,EAAE,MAAM,CAAC;IAC1B,YAAY,EAAE,MAAM,CAAC;IACrB,YAAY,EAAE,MAAM,CAAC;IACrB,YAAY,EAAE,MAAM,CAAC;IACrB,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,KAAK,CAAC;IACb,OAAO,EAAE,KAAK,CAAC;IACf,GAAG,EAAE,MAAM,CAAC;IACZ,OAAO,EAAE,MAAM,CAAC;IAChB,kBAAkB,EAAE,MAAM,CAAC;IAC3B,gBAAgB,EAAE,MAAM,CAAC;IACzB,kBAAkB,EAAE,MAAM,CAAC;CAE3B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"EmployerWagesModel.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/models/questionnaire/EmployerWagesModel.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,wBAAwB,EAAE,MAAM,4BAA4B,CAAC;AAEtE,qBAAa,kBAAkB;IAC3B,gBAAgB,CAAC,EAAC,wBAAwB,EAAE,CAAC;CAChD"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export declare class FBConfigModel {
|
|
2
|
+
pageTitle: string;
|
|
3
|
+
backPage: string;
|
|
4
|
+
nextPage: string;
|
|
5
|
+
flowId: string;
|
|
6
|
+
type: string;
|
|
7
|
+
authenticationRequired: string;
|
|
8
|
+
flowKey: string;
|
|
9
|
+
loaderService: string;
|
|
10
|
+
isMfaRequired: boolean;
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=FBConfigModel.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FBConfigModel.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/models/questionnaire/FBConfigModel.ts"],"names":[],"mappings":"AAAA,qBAAc,aAAa;IACvB,SAAS,EAAE,MAAM,CAAC;IAClB,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;IACf,IAAI,EAAE,MAAM,CAAC;IACb,sBAAsB,EAAE,MAAM,CAAC;IAC/B,OAAO,EAAC,MAAM,CAAC;IACf,aAAa,EAAC,MAAM,CAAC;IACrB,aAAa,EAAG,OAAO,CAAQ;CAClC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"KeyValueModel.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/models/questionnaire/KeyValueModel.ts"],"names":[],"mappings":"AAAA,qBAAa,aAAa;IACtB,GAAG,CAAC,EAAG,MAAM,CAAC;IAEd,KAAK,CAAC,EAAG,MAAM,CAAC;IAEhB,IAAI,CAAC,EAAG,MAAM,CAAC;IAEf,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB,IAAI,CAAC,EAAG,MAAM,CAAC;IAEf,IAAI,CAAC,EAAG,MAAM,CAAC;IAEf,QAAQ,CAAC,EAAG,OAAO,CAAC;IAEpB,IAAI,CAAC,EAAG,MAAM,CAAC;CAClB"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export declare class LegalDisclaimarModel {
|
|
2
|
+
pageTitle: string;
|
|
3
|
+
privacyStatementTitle: string;
|
|
4
|
+
privacyStatement: string;
|
|
5
|
+
benefitRightsTitle: string;
|
|
6
|
+
benefitRights: string;
|
|
7
|
+
acceptButton: string;
|
|
8
|
+
cancelButton: string;
|
|
9
|
+
plsRead: string;
|
|
10
|
+
}
|
|
11
|
+
//# sourceMappingURL=LegalDiscaimarModel.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"LegalDiscaimarModel.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/models/questionnaire/LegalDiscaimarModel.ts"],"names":[],"mappings":"AACA,qBAAc,oBAAoB;IAC9B,SAAS,EAAE,MAAM,CAAC;IAClB,qBAAqB,EAAE,MAAM,CAAC;IAC9B,gBAAgB,EAAE,MAAM,CAAC;IACzB,kBAAkB,EAAE,MAAM,CAAC;IAC3B,aAAa,EAAE,MAAM,CAAC;IACtB,YAAY,EAAC,MAAM,CAAC;IACpB,YAAY,EAAC,MAAM,CAAC;IACpB,OAAO,EAAC,MAAM,CAAC;CAClB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"LoaderModel.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/models/questionnaire/LoaderModel.ts"],"names":[],"mappings":"AACA,qBAAa,WAAW;IACpB,IAAI,CAAC,EAAC,GAAG,CAAC;IACb,mBAAmB,CAAC,EAAC,MAAM,EAAE,CAAC;CAC9B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PollingStatusModel.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/models/questionnaire/PollingStatusModel.ts"],"names":[],"mappings":"AAEA,qBAAa,kBAAkB;IAC3B,IAAI,EAAC,MAAM,CAAC;IACf,eAAe,EAAE,OAAO,CAAC;IACzB,cAAc,EAAC,MAAM,CAAC;IACtB,gBAAgB,EAAC,MAAM,CAAC;CACxB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"QtrYearEmployerWageModel.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/models/questionnaire/QtrYearEmployerWageModel.ts"],"names":[],"mappings":"AAAA,qBAAa,wBAAwB;IACjC,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAC9B,UAAU,EAAE,MAAM,CAAC;IACnB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,aAAa,CAAC,EAAE,OAAO,CAAC;CAC3B"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export declare class QuestionnaireQueryModel {
|
|
2
|
+
questionnaireType?: string;
|
|
3
|
+
userType?: string;
|
|
4
|
+
flowFrom?: string;
|
|
5
|
+
potentialIssueId?: number;
|
|
6
|
+
claimApplicationId?: number;
|
|
7
|
+
issueMasterId?: number;
|
|
8
|
+
flowFactFindingInq?: boolean;
|
|
9
|
+
flowWCAbleAndAvailable?: boolean;
|
|
10
|
+
flowWCAbleAndAvailableInq?: boolean;
|
|
11
|
+
flowAbleAndAvailable?: boolean;
|
|
12
|
+
flowAbleAndAvailableInq?: boolean;
|
|
13
|
+
questionnaireId?: number;
|
|
14
|
+
questionnaireIds?: number[];
|
|
15
|
+
pageToOpen?: string;
|
|
16
|
+
uuid?: string;
|
|
17
|
+
flowKey?: string;
|
|
18
|
+
isScreenQuestionnaire?: boolean;
|
|
19
|
+
dynamicParam?: any;
|
|
20
|
+
data?: any;
|
|
21
|
+
isMfaRequired: boolean;
|
|
22
|
+
autoSave?: boolean;
|
|
23
|
+
}
|
|
24
|
+
//# sourceMappingURL=QuestionnaireQueryModel.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"QuestionnaireQueryModel.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/models/questionnaire/QuestionnaireQueryModel.ts"],"names":[],"mappings":"AAAA,qBAAc,uBAAuB;IACjC,iBAAiB,CAAC,EAAC,MAAM,CAAC;IAC7B,QAAQ,CAAC,EAAC,MAAM,CAAC;IACjB,QAAQ,CAAC,EAAC,MAAM,CAAC;IACjB,gBAAgB,CAAC,EAAC,MAAM,CAAC;IACzB,kBAAkB,CAAC,EAAC,MAAM,CAAC;IAC3B,aAAa,CAAC,EAAC,MAAM,CAAC;IACtB,kBAAkB,CAAC,EAAC,OAAO,CAAC;IAE5B,sBAAsB,CAAC,EAAC,OAAO,CAAC;IAChC,yBAAyB,CAAC,EAAC,OAAO,CAAC;IACnC,oBAAoB,CAAC,EAAC,OAAO,CAAC;IAC9B,uBAAuB,CAAC,EAAC,OAAO,CAAC;IAEjC,eAAe,CAAC,EAAC,MAAM,CAAC;IACxB,gBAAgB,CAAC,EAAC,MAAM,EAAE,CAAC;IAC3B,UAAU,CAAC,EAAC,MAAM,CAAC;IACnB,IAAI,CAAC,EAAC,MAAM,CAAC;IACb,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,qBAAsB,CAAC,EAAE,OAAO,CAAQ;IACxC,YAAY,CAAC,EAAE,GAAG,CAAC;IACnB,IAAI,CAAC,EAAG,GAAG,CAAC;IACZ,aAAa,EAAG,OAAO,CAAS;IAChC,QAAQ,CAAC,EAAE,OAAO,CAAS;CAC3B"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { SuccessPageElement } from "./SuccessPageElement";
|
|
2
|
+
export declare class QuestionnaireReturnModel {
|
|
3
|
+
pageQnrTblMap: any;
|
|
4
|
+
qeTableList: any;
|
|
5
|
+
totQnsList: any;
|
|
6
|
+
resultDataMap: any;
|
|
7
|
+
questionnaireJson: any[];
|
|
8
|
+
responseJson: string;
|
|
9
|
+
lstResponseMappingBean: any;
|
|
10
|
+
forScreenQuestionnaire: boolean;
|
|
11
|
+
pageToOpen: string;
|
|
12
|
+
questionnaireId: number;
|
|
13
|
+
questionnaireIds: number[];
|
|
14
|
+
uuid: string;
|
|
15
|
+
successPageElement: SuccessPageElement[];
|
|
16
|
+
flowKey: string;
|
|
17
|
+
waitForProcessing: boolean;
|
|
18
|
+
waitCheckServiceUri: string;
|
|
19
|
+
enableBackButton: boolean;
|
|
20
|
+
}
|
|
21
|
+
//# sourceMappingURL=QuestionnaireReturnModel.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"QuestionnaireReturnModel.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/models/questionnaire/QuestionnaireReturnModel.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAE1D,qBAAa,wBAAwB;IACjC,aAAa,EAAC,GAAG,CAAM;IAC1B,WAAW,EAAC,GAAG,CAAM;IACrB,UAAU,EAAC,GAAG,CAAM;IACpB,aAAa,EAAC,GAAG,CAAM;IACvB,iBAAiB,QAAI;IACrB,YAAY,EAAC,MAAM,CAAC;IACpB,sBAAsB,EAAC,GAAG,CAAM;IAChC,sBAAsB,EAAC,OAAO,CAAC;IAC/B,UAAU,EAAC,MAAM,CAAC;IAClB,eAAe,EAAC,MAAM,CAAC;IACvB,gBAAgB,EAAC,MAAM,EAAE,CAAC;IAC1B,IAAI,EAAC,MAAM,CAAC;IACZ,kBAAkB,EAAC,kBAAkB,EAAE,CAAC;IACxC,OAAO,EAAE,MAAM,CAAC;IAChB,iBAAiB,EAAE,OAAO,CAAC;IAC3B,mBAAmB,EAAE,MAAM,CAAC;IAC5B,gBAAgB,EAAE,OAAO,CAAC;CAC1B"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { ClaimAppEmpResponseModel } from "./ClaimAppEmpResponseModel";
|
|
2
|
+
export declare class QuestionnaireSaveModel {
|
|
3
|
+
data: any;
|
|
4
|
+
questionnaireType: string;
|
|
5
|
+
userType: string;
|
|
6
|
+
flowFrom: string;
|
|
7
|
+
potentialIssueId: number;
|
|
8
|
+
claimApplicationId: number;
|
|
9
|
+
issueMasterId: number;
|
|
10
|
+
flowWCAbleAndAvailable: boolean;
|
|
11
|
+
flowWCAbleAndAvailableInq: boolean;
|
|
12
|
+
flowAbleAndAvailable: boolean;
|
|
13
|
+
flowAbleAndAvailableInq: boolean;
|
|
14
|
+
questionnaireId: number;
|
|
15
|
+
questionnaireIds: number[];
|
|
16
|
+
empModel: ClaimAppEmpResponseModel[];
|
|
17
|
+
screenQuestionnaireData: any[];
|
|
18
|
+
uuid: string;
|
|
19
|
+
identifier: string[];
|
|
20
|
+
flowKey: string;
|
|
21
|
+
isScreenQuestionnaire: boolean;
|
|
22
|
+
autoSave: boolean;
|
|
23
|
+
activePageIndex: number;
|
|
24
|
+
language: string;
|
|
25
|
+
}
|
|
26
|
+
//# sourceMappingURL=QuestionnaireSaveModel.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"QuestionnaireSaveModel.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/models/questionnaire/QuestionnaireSaveModel.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,wBAAwB,EAAE,MAAM,4BAA4B,CAAC;AAGtE,qBAAa,sBAAsB;IAC/B,IAAI,EAAC,GAAG,CAAC;IACT,iBAAiB,EAAC,MAAM,CAAC;IAC5B,QAAQ,EAAC,MAAM,CAAC;IAChB,QAAQ,EAAC,MAAM,CAAC;IAChB,gBAAgB,EAAC,MAAM,CAAC;IACxB,kBAAkB,EAAC,MAAM,CAAC;IAC1B,aAAa,EAAC,MAAM,CAAC;IAErB,sBAAsB,EAAC,OAAO,CAAC;IAC/B,yBAAyB,EAAC,OAAO,CAAC;IAClC,oBAAoB,EAAC,OAAO,CAAC;IAC7B,uBAAuB,EAAC,OAAO,CAAC;IAChC,eAAe,EAAC,MAAM,CAAC;IACvB,gBAAgB,EAAC,MAAM,EAAE,CAAC;IAC1B,QAAQ,EAAE,wBAAwB,EAAE,CAAC;IAErC,uBAAuB,EAAC,GAAG,EAAG,CAAC;IAC/B,IAAI,EAAC,MAAM,CAAC;IACZ,UAAU,EAAE,MAAM,EAAE,CAAC;IACrB,OAAO,EAAE,MAAM,CAAC;IAChB,qBAAqB,EAAE,OAAO,CAAC;IAC/B,QAAQ,EAAG,OAAO,CAAC;IACnB,eAAe,EAAC,MAAM,CAAC;IACvB,QAAQ,EAAC,MAAM,CAAC;CAChB"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export declare class RequalifyLiftIssuesModel {
|
|
2
|
+
saveButton: string;
|
|
3
|
+
cancelButton: string;
|
|
4
|
+
otherIssues: string;
|
|
5
|
+
previousDecisions: string;
|
|
6
|
+
separationIssues: string;
|
|
7
|
+
earningsProof: string;
|
|
8
|
+
potentialIssues: string;
|
|
9
|
+
baseWageInfo: string;
|
|
10
|
+
pageTitle: string;
|
|
11
|
+
questionHeading: string;
|
|
12
|
+
remarks: string;
|
|
13
|
+
}
|
|
14
|
+
//# sourceMappingURL=RequalifyLiftIssuesModel.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RequalifyLiftIssuesModel.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/models/questionnaire/RequalifyLiftIssuesModel.ts"],"names":[],"mappings":"AAAA,qBAAa,wBAAwB;IACjC,UAAU,EAAE,MAAM,CAAC;IACnB,YAAY,EAAE,MAAM,CAAC;IACrB,WAAW,EAAE,MAAM,CAAC;IACpB,iBAAiB,EAAE,MAAM,CAAC;IAC1B,gBAAgB,EAAE,MAAM,CAAC;IACzB,aAAa,EAAE,MAAM,CAAC;IACtB,eAAe,EAAE,MAAM,CAAC;IACxB,YAAY,EAAE,MAAM,CAAC;IACrB,SAAS,EAAE,MAAM,CAAC;IAClB,eAAe,EAAE,MAAM,CAAC;IACxB,OAAO,EAAC,MAAM,CAAC;CAClB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ServiceActionResponseModel.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/models/questionnaire/ServiceActionResponseModel.ts"],"names":[],"mappings":"AAAA,qBAAa,0BAA0B;IACnC,OAAO,CAAC,EAAC,OAAO,CAAC;IACjB,IAAI,CAAC,EAAC,GAAG,CAAC;IACV,aAAa,CAAC,EAAC,MAAM,EAAE,CAAC;IAC3B,iBAAiB,CAAC,EAAC,GAAG,CAAC;CACvB"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { QuestionnaireQueryModel } from './QuestionnaireQueryModel';
|
|
2
|
+
import { SuccessPageElement } from "./SuccessPageElement";
|
|
3
|
+
export declare class StatusModel {
|
|
4
|
+
uuid: string;
|
|
5
|
+
successPageElement: SuccessPageElement[];
|
|
6
|
+
pageToOpen: string;
|
|
7
|
+
continueWaiting: boolean;
|
|
8
|
+
waitingMessage: string;
|
|
9
|
+
navigateImmediately: boolean;
|
|
10
|
+
showQe: boolean;
|
|
11
|
+
qeQueryModels: QuestionnaireQueryModel[];
|
|
12
|
+
qeSuccessUri: string;
|
|
13
|
+
qeSuccessWaitForProcessing: boolean;
|
|
14
|
+
qeSuccessWaitCheckServiceUri: string;
|
|
15
|
+
}
|
|
16
|
+
//# sourceMappingURL=StatusModel.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"StatusModel.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/models/questionnaire/StatusModel.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,uBAAuB,EAAE,MAAM,2BAA2B,CAAC;AACpE,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAE1D,qBAAa,WAAW;IACpB,IAAI,EAAC,MAAM,CAAC;IACf,kBAAkB,EAAC,kBAAkB,EAAE,CAAC;IACxC,UAAU,EAAC,MAAM,CAAC;IAClB,eAAe,EAAE,OAAO,CAAC;IACzB,cAAc,EAAC,MAAM,CAAC;IACtB,mBAAmB,EAAG,OAAO,CAAC;IAC9B,MAAM,EAAE,OAAO,CAAC;IAChB,aAAa,EAAE,uBAAuB,EAAE,CAAC;IACzC,YAAY,EAAC,MAAM,CAAC;IACpB,0BAA0B,EAAE,OAAO,CAAS;IAC5C,4BAA4B,EAAE,MAAM,CAAC;CACrC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SuccessPageElement.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/models/questionnaire/SuccessPageElement.ts"],"names":[],"mappings":"AACA,qBAAc,kBAAkB;IAE5B,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,MAAM,CAAC,EAAC,MAAM,CAAC;IACf,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAC,MAAM,CAAC;CACpB"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export declare class UI512AResponseModel {
|
|
2
|
+
employerName: string;
|
|
3
|
+
ean: string;
|
|
4
|
+
proofRecievedDate: string;
|
|
5
|
+
earningsBeginDate: string;
|
|
6
|
+
earningsEndDate: string;
|
|
7
|
+
amountOfEarnings: string;
|
|
8
|
+
eanBean: string;
|
|
9
|
+
proofRecievedDateBean: string;
|
|
10
|
+
earningsBeginDateBean: string;
|
|
11
|
+
earningsEndDateBean: string;
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=UI512AResponseModel.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UI512AResponseModel.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/models/questionnaire/UI512AResponseModel.ts"],"names":[],"mappings":"AAAA,qBAAa,mBAAmB;IAC5B,YAAY,EAAE,MAAM,CAAC;IACxB,GAAG,EAAE,MAAM,CAAC;IACZ,iBAAiB,EAAE,MAAM,CAAC;IAC1B,iBAAiB,EAAE,MAAM,CAAC;IAC1B,eAAe,EAAE,MAAM,CAAC;IACxB,gBAAgB,EAAE,MAAM,CAAC;IACzB,OAAO,EAAE,MAAM,CAAC;IAChB,qBAAqB,EAAE,MAAM,CAAC;IAC9B,qBAAqB,EAAE,MAAM,CAAC;IAC9B,mBAAmB,EAAE,MAAM,CAAC;CAC5B"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { KeyValueModel } from "./KeyValueModel";
|
|
2
|
+
export declare class ValidationModel {
|
|
3
|
+
paramName?: string[];
|
|
4
|
+
paramValue?: string[];
|
|
5
|
+
updateParamName?: string[];
|
|
6
|
+
yesAction?: string;
|
|
7
|
+
noAction?: string;
|
|
8
|
+
identifier?: KeyValueModel[];
|
|
9
|
+
returnType?: string;
|
|
10
|
+
isValid?: boolean;
|
|
11
|
+
validationMessage?: string;
|
|
12
|
+
popUpText?: string;
|
|
13
|
+
popUpHeader?: string;
|
|
14
|
+
popUpYesButtonLabel?: string;
|
|
15
|
+
popUpNoButtonLabel?: string;
|
|
16
|
+
path?: string;
|
|
17
|
+
}
|
|
18
|
+
//# sourceMappingURL=ValidationModel.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ValidationModel.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/models/questionnaire/ValidationModel.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAEhD,qBAAa,eAAe;IACxB,SAAS,CAAC,EAAE,MAAM,EAAE,CAAC;IACrB,UAAU,CAAC,EAAE,MAAM,EAAE,CAAC;IACtB,eAAe,CAAC,EAAE,MAAM,EAAE,CAAC;IAC3B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,UAAU,CAAC,EAAE,aAAa,EAAE,CAAC;IAChC,UAAU,CAAC,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,SAAS,CAAC,EAAE,MAAM,CAAC;IACtB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B,kBAAkB,CAAC,EAAE,MAAM,CAAC;IACzB,IAAI,CAAC,EAAE,MAAM,CAAC;CACjB"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class NgxReusaAppLibComponent implements OnInit {
|
|
4
|
+
constructor();
|
|
5
|
+
ngOnInit(): void;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgxReusaAppLibComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgxReusaAppLibComponent, "app-ngx-reusa-app-lib", never, {}, {}, never, never, false, never>;
|
|
8
|
+
}
|
|
9
|
+
//# sourceMappingURL=ngx-reusa-app-lib.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ngx-reusa-app-lib.component.d.ts","sourceRoot":"","sources":["../../../projects/ngx-reusa-app-lib/src/lib/ngx-reusa-app-lib.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,MAAM,EAAE,MAAM,eAAe,CAAC;;AAElD,qBAUa,uBAAwB,YAAW,MAAM;;IAIpD,QAAQ,IAAI,IAAI;yCAJL,uBAAuB;2CAAvB,uBAAuB;CAOnC"}
|