@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.
Files changed (592) hide show
  1. package/README.md +46 -0
  2. package/esm2022/ksremp-ngx-ksremp-app-lib.mjs +5 -0
  3. package/esm2022/lib/annimations/app-animations.mjs +37 -0
  4. package/esm2022/lib/components/add-employer/add-employer.component.mjs +2655 -0
  5. package/esm2022/lib/components/add-participant/add-participant.component.mjs +399 -0
  6. package/esm2022/lib/components/add-payment/add-payment.component.mjs +201 -0
  7. package/esm2022/lib/components/address/address.component.mjs +565 -0
  8. package/esm2022/lib/components/bank-details/bank-details.component.mjs +416 -0
  9. package/esm2022/lib/components/captcha/captcha.component.mjs +181 -0
  10. package/esm2022/lib/components/card/card.component.mjs +55 -0
  11. package/esm2022/lib/components/contact-us/contact-us.component.mjs +984 -0
  12. package/esm2022/lib/components/content/content.component.mjs +61 -0
  13. package/esm2022/lib/components/correspondence-download/correspondence-download.component.mjs +89 -0
  14. package/esm2022/lib/components/dashboard-card/dashboard-card.component.mjs +223 -0
  15. package/esm2022/lib/components/dependent-grid/dependent-grid.component.mjs +301 -0
  16. package/esm2022/lib/components/disclosure/disclosure.component.mjs +60 -0
  17. package/esm2022/lib/components/dropdown/dropdown.component.mjs +1974 -0
  18. package/esm2022/lib/components/dropdown/dropdown.interface.mjs +2 -0
  19. package/esm2022/lib/components/email-update/email-update.component.mjs +376 -0
  20. package/esm2022/lib/components/employer-grid/employer-grid.component.mjs +1102 -0
  21. package/esm2022/lib/components/error/error.component.mjs +86 -0
  22. package/esm2022/lib/components/fav-menu/fav-menu.component.mjs +163 -0
  23. package/esm2022/lib/components/file-download/file-download.component.mjs +104 -0
  24. package/esm2022/lib/components/file-uploader/file-uploader.component.mjs +315 -0
  25. package/esm2022/lib/components/footer/footer.component.mjs +350 -0
  26. package/esm2022/lib/components/header/header.component.mjs +535 -0
  27. package/esm2022/lib/components/help/help.component.mjs +49 -0
  28. package/esm2022/lib/components/idle-detector/idle-detector.component.mjs +76 -0
  29. package/esm2022/lib/components/info/info.component.mjs +187 -0
  30. package/esm2022/lib/components/job-search-result-page/job-search-result-page.component.mjs +212 -0
  31. package/esm2022/lib/components/job-title/job-title.component.mjs +162 -0
  32. package/esm2022/lib/components/legal-disclaimar/legal-disclaimar.component.mjs +617 -0
  33. package/esm2022/lib/components/lexis-nexis/lexis-nexis.component.mjs +402 -0
  34. package/esm2022/lib/components/link/link.component.mjs +131 -0
  35. package/esm2022/lib/components/maintenance-detector/maintenance-detector.component.mjs +43 -0
  36. package/esm2022/lib/components/mask/mask.component.mjs +48 -0
  37. package/esm2022/lib/components/menu/menu.component.mjs +452 -0
  38. package/esm2022/lib/components/mfa/mfa.component.mjs +574 -0
  39. package/esm2022/lib/components/mfa-popup/mfa-popup.component.mjs +57 -0
  40. package/esm2022/lib/components/mfa2/mfa2.component.mjs +285 -0
  41. package/esm2022/lib/components/money-expect/money-expect.component.mjs +98 -0
  42. package/esm2022/lib/components/msg/msg.component.mjs +48 -0
  43. package/esm2022/lib/components/news/news.component.mjs +90 -0
  44. package/esm2022/lib/components/overlay-info/overlay-info.component.mjs +213 -0
  45. package/esm2022/lib/components/page/page.component.mjs +136 -0
  46. package/esm2022/lib/components/profile/profile.component.mjs +505 -0
  47. package/esm2022/lib/components/profile-redirect/profile-redirect.component.mjs +70 -0
  48. package/esm2022/lib/components/questionnaire/AppValidators.mjs +541 -0
  49. package/esm2022/lib/components/questionnaire/FbConstants.mjs +8 -0
  50. package/esm2022/lib/components/questionnaire/SelectItem.mjs +2 -0
  51. package/esm2022/lib/components/questionnaire/account-success/account-success.page.mjs +310 -0
  52. package/esm2022/lib/components/questionnaire/common-success/common-success.page.mjs +528 -0
  53. package/esm2022/lib/components/questionnaire/dynamic-form-panel.component.mjs +1115 -0
  54. package/esm2022/lib/components/questionnaire/dynamic-form-question.component.mjs +2521 -0
  55. package/esm2022/lib/components/questionnaire/dynamic-form.component.mjs +1788 -0
  56. package/esm2022/lib/components/questionnaire/form-builder/form-builder.page.mjs +256 -0
  57. package/esm2022/lib/components/questionnaire/input-focus.directive.mjs +44 -0
  58. package/esm2022/lib/components/questionnaire/multi-questionnaire/multi-questionnaire.component.mjs +255 -0
  59. package/esm2022/lib/components/questionnaire/question-base.mjs +3 -0
  60. package/esm2022/lib/components/questionnaire/question-control.service.mjs +408 -0
  61. package/esm2022/lib/components/questionnaire/question.service.mjs +33 -0
  62. package/esm2022/lib/components/questionnaire/render-questionnaire/render-questionnaire.page.mjs +282 -0
  63. package/esm2022/lib/components/read-more/read-more.component.mjs +72 -0
  64. package/esm2022/lib/components/requalify-lift-previous-issues/requalify-lift-previous-issues.component.mjs +690 -0
  65. package/esm2022/lib/components/search-employer/search-employer.component.mjs +132 -0
  66. package/esm2022/lib/components/security-question/security-question.component.mjs +199 -0
  67. package/esm2022/lib/components/select/select.component.mjs +159 -0
  68. package/esm2022/lib/components/sign-ssn/sign-ssn.component.mjs +141 -0
  69. package/esm2022/lib/components/ssn/ssn.component.mjs +44 -0
  70. package/esm2022/lib/components/ssn-reverify/ssn-reverify.component.mjs +171 -0
  71. package/esm2022/lib/components/test/test.component.mjs +19 -0
  72. package/esm2022/lib/components/user-login/user-login.component.mjs +619 -0
  73. package/esm2022/lib/components/weekly-cert-employer/weekly-cert-employer.component.mjs +772 -0
  74. package/esm2022/lib/components/weekly-cert-employer-grid/weekly-cert-employer-grid.component.mjs +356 -0
  75. package/esm2022/lib/directives/auto-focus/auto-focus.directive.mjs +31 -0
  76. package/esm2022/lib/directives/caps-lock.directive.mjs +38 -0
  77. package/esm2022/lib/directives/required-roles/required-roles.directive.mjs +30 -0
  78. package/esm2022/lib/enums/EmailStatusEnum.mjs +9 -0
  79. package/esm2022/lib/guards/auth.guard.mjs +138 -0
  80. package/esm2022/lib/guards/no-login/no-login.guard.mjs +21 -0
  81. package/esm2022/lib/interceptors/error-interceptor/http-error-interceptor.mjs +107 -0
  82. package/esm2022/lib/interceptors/header-interceptor/http-header.interceptor.mjs +99 -0
  83. package/esm2022/lib/models/AddressComponentModel.mjs +3 -0
  84. package/esm2022/lib/models/BankDetailsComponentModel.mjs +3 -0
  85. package/esm2022/lib/models/BankDetailsModel.mjs +3 -0
  86. package/esm2022/lib/models/CinRequalificationCriteriaModel.mjs +3 -0
  87. package/esm2022/lib/models/EmployerDetailSearchResult.mjs +6 -0
  88. package/esm2022/lib/models/ErrorModel.mjs +6 -0
  89. package/esm2022/lib/models/FileModel.mjs +2 -0
  90. package/esm2022/lib/models/LexisNexisAccountCreationModel.mjs +2 -0
  91. package/esm2022/lib/models/LexisNexisAuthSelectionRequestModel.mjs +2 -0
  92. package/esm2022/lib/models/LexisNexisAuthSelectionResponseModel.mjs +2 -0
  93. package/esm2022/lib/models/LexisNexisEnabledResponseModel.mjs +2 -0
  94. package/esm2022/lib/models/LexisNexisResponseModel.mjs +3 -0
  95. package/esm2022/lib/models/LibConstants.mjs +132 -0
  96. package/esm2022/lib/models/NewsAndAnnouncementModel.mjs +3 -0
  97. package/esm2022/lib/models/NotificationModel.mjs +6 -0
  98. package/esm2022/lib/models/OtpAuthModel.mjs +3 -0
  99. package/esm2022/lib/models/PartialEmploymentModel.mjs +3 -0
  100. package/esm2022/lib/models/PaymentComponentModel.mjs +2 -0
  101. package/esm2022/lib/models/RequalifyLiftPageModel.mjs +11 -0
  102. package/esm2022/lib/models/SecurityQuestionModel.mjs +3 -0
  103. package/esm2022/lib/models/SsaVerificationModel.mjs +3 -0
  104. package/esm2022/lib/models/TrendModel.mjs +3 -0
  105. package/esm2022/lib/models/UserDetailsModel.mjs +3 -0
  106. package/esm2022/lib/models/UserModel.mjs +6 -0
  107. package/esm2022/lib/models/case/CaseAttachmentModel.mjs +3 -0
  108. package/esm2022/lib/models/claimant/ClaimantModel.mjs +3 -0
  109. package/esm2022/lib/models/claimant/JobResultsData.mjs +3 -0
  110. package/esm2022/lib/models/claimant/MatchingJobs.mjs +3 -0
  111. package/esm2022/lib/models/claimant/ResetPasswordModel.mjs +3 -0
  112. package/esm2022/lib/models/cmp/CaseCoreModel.mjs +3 -0
  113. package/esm2022/lib/models/cmp/ComplaintCategoryModel.mjs +3 -0
  114. package/esm2022/lib/models/cmp/ComplaintCategoryOutputModel.mjs +5 -0
  115. package/esm2022/lib/models/cmp/ContactUsModel.mjs +3 -0
  116. package/esm2022/lib/models/cmp/EmailTemplateModel.mjs +3 -0
  117. package/esm2022/lib/models/cmp/contactUsInqueryModel.mjs +7 -0
  118. package/esm2022/lib/models/cmp/messageRourceModel.mjs +3 -0
  119. package/esm2022/lib/models/dashboard-model.mjs +3 -0
  120. package/esm2022/lib/models/dependent.model.mjs +8 -0
  121. package/esm2022/lib/models/questionnaire/AutocoderModel.mjs +3 -0
  122. package/esm2022/lib/models/questionnaire/ClaimAppEmpRequestModel.mjs +3 -0
  123. package/esm2022/lib/models/questionnaire/ClaimAppEmpResponseModel.mjs +8 -0
  124. package/esm2022/lib/models/questionnaire/ClaimAppEmployerDetailsModel.mjs +6 -0
  125. package/esm2022/lib/models/questionnaire/ClaimOnlyEmployerDataModel.mjs +3 -0
  126. package/esm2022/lib/models/questionnaire/ComboModel.mjs +1010 -0
  127. package/esm2022/lib/models/questionnaire/ElementsModel.mjs +8 -0
  128. package/esm2022/lib/models/questionnaire/EmployerDetailSearchResult.mjs +3 -0
  129. package/esm2022/lib/models/questionnaire/EmployerWagesModel.mjs +3 -0
  130. package/esm2022/lib/models/questionnaire/FBConfigModel.mjs +6 -0
  131. package/esm2022/lib/models/questionnaire/KeyValueModel.mjs +3 -0
  132. package/esm2022/lib/models/questionnaire/LegalDiscaimarModel.mjs +3 -0
  133. package/esm2022/lib/models/questionnaire/LoaderModel.mjs +3 -0
  134. package/esm2022/lib/models/questionnaire/PollingStatusModel.mjs +3 -0
  135. package/esm2022/lib/models/questionnaire/QtrYearEmployerWageModel.mjs +3 -0
  136. package/esm2022/lib/models/questionnaire/QuestionnaireQueryModel.mjs +8 -0
  137. package/esm2022/lib/models/questionnaire/QuestionnaireReturnModel.mjs +11 -0
  138. package/esm2022/lib/models/questionnaire/QuestionnaireSaveModel.mjs +3 -0
  139. package/esm2022/lib/models/questionnaire/RequalifyLiftIssuesModel.mjs +3 -0
  140. package/esm2022/lib/models/questionnaire/ServiceActionResponseModel.mjs +3 -0
  141. package/esm2022/lib/models/questionnaire/StatusModel.mjs +6 -0
  142. package/esm2022/lib/models/questionnaire/SuccessPageElement.mjs +3 -0
  143. package/esm2022/lib/models/questionnaire/UI512AResponseModel.mjs +3 -0
  144. package/esm2022/lib/models/questionnaire/ValidationModel.mjs +3 -0
  145. package/esm2022/lib/ngx-reusa-app-lib.component.mjs +23 -0
  146. package/esm2022/lib/ngx-reusa-app-lib.module.mjs +410 -0
  147. package/esm2022/lib/ngx-reusa-app-lib.service.mjs +14 -0
  148. package/esm2022/lib/pages/BasePage.mjs +98 -0
  149. package/esm2022/lib/pages/common/accessibility-policy/accessibility-policy.page.mjs +77 -0
  150. package/esm2022/lib/pages/common/change-password/change-password.page.mjs +471 -0
  151. package/esm2022/lib/pages/common/landing/landing.component.mjs +209 -0
  152. package/esm2022/lib/pages/common/landing2/landing2.component.mjs +244 -0
  153. package/esm2022/lib/pages/common/login/login.component.mjs +533 -0
  154. package/esm2022/lib/pages/common/not-found/not-found.page.mjs +24 -0
  155. package/esm2022/lib/pages/common/privacy-disclaimer/privacy-disclaimer.page.mjs +306 -0
  156. package/esm2022/lib/pages/common/security-policy/security-policy.page.mjs +61 -0
  157. package/esm2022/lib/pages/common/unauthorized/unauthorized.page.mjs +24 -0
  158. package/esm2022/lib/pages/popovers/language/language.page.mjs +62 -0
  159. package/esm2022/lib/pages/popovers/my-notifications/my-notifications.page.mjs +204 -0
  160. package/esm2022/lib/pages/popovers/my-profile/my-profile.page.mjs +129 -0
  161. package/esm2022/lib/pages/popovers/user-search/user-search.component.mjs +251 -0
  162. package/esm2022/lib/pipes/filter.pipe.mjs +30 -0
  163. package/esm2022/lib/pipes/mask/mask.email.pipe.mjs +23 -0
  164. package/esm2022/lib/pipes/proper-case/proper-case.pipe.mjs +27 -0
  165. package/esm2022/lib/pipes/translate/dynamic-translate.pipe.mjs +44 -0
  166. package/esm2022/lib/pipes/trust-html/trust-html.pipe.mjs +20 -0
  167. package/esm2022/lib/services/base-service.mjs +50 -0
  168. package/esm2022/lib/services/captcha/captcha.service.mjs +46 -0
  169. package/esm2022/lib/services/case-service/case.service.mjs +47 -0
  170. package/esm2022/lib/services/chatbot/chatbot.service.mjs +258 -0
  171. package/esm2022/lib/services/chatbot/script.const.mjs +42 -0
  172. package/esm2022/lib/services/claimant/claimant.service.mjs +31 -0
  173. package/esm2022/lib/services/claimant-context/claimant-context.service.mjs +48 -0
  174. package/esm2022/lib/services/claimant-service/claimant-usps-redirect.service.mjs +36 -0
  175. package/esm2022/lib/services/claimant-service/claimant.service.mjs +62 -0
  176. package/esm2022/lib/services/claims/claims.service.mjs +102 -0
  177. package/esm2022/lib/services/cmp-service/cmp.service.mjs +84 -0
  178. package/esm2022/lib/services/dms-service/dms.service.mjs +60 -0
  179. package/esm2022/lib/services/fpjs/fingerprint.service.mjs +70 -0
  180. package/esm2022/lib/services/google-analytics/google-analytics.service.mjs +29 -0
  181. package/esm2022/lib/services/help/help.service.mjs +63 -0
  182. package/esm2022/lib/services/idle/idle.service.mjs +159 -0
  183. package/esm2022/lib/services/lexis-nexis/lexis.nexis.service.mjs +60 -0
  184. package/esm2022/lib/services/logger/logger.service.mjs +67 -0
  185. package/esm2022/lib/services/login/login.service.mjs +343 -0
  186. package/esm2022/lib/services/maintenance/maintenance.service.mjs +21 -0
  187. package/esm2022/lib/services/notification/notification.service.mjs +113 -0
  188. package/esm2022/lib/services/ovp/ovp.service.mjs +43 -0
  189. package/esm2022/lib/services/questionnaire/questionnaire.service.mjs +69 -0
  190. package/esm2022/lib/services/questionnaire/validation.service.mjs +59 -0
  191. package/esm2022/lib/services/security-service/security.service.mjs +42 -0
  192. package/esm2022/lib/services/tour/tour.service.mjs +60 -0
  193. package/esm2022/lib/services/util/util.service.mjs +450 -0
  194. package/esm2022/lib/services/weekly-cert/weekly-cert-v2.service.mjs +42 -0
  195. package/esm2022/lib/validations/AppRegex.mjs +51 -0
  196. package/esm2022/lib/validations/AppValidators.mjs +253 -0
  197. package/esm2022/public-api.mjs +138 -0
  198. package/fesm2022/ksremp-ngx-ksremp-app-lib.mjs +33786 -0
  199. package/fesm2022/ksremp-ngx-ksremp-app-lib.mjs.map +1 -0
  200. package/index.d.ts +6 -0
  201. package/ksremp-ngx-ksremp-app-lib.d.ts.map +1 -0
  202. package/lib/annimations/app-animations.d.ts +4 -0
  203. package/lib/annimations/app-animations.d.ts.map +1 -0
  204. package/lib/components/add-employer/add-employer.component.d.ts +234 -0
  205. package/lib/components/add-employer/add-employer.component.d.ts.map +1 -0
  206. package/lib/components/add-participant/add-participant.component.d.ts +49 -0
  207. package/lib/components/add-participant/add-participant.component.d.ts.map +1 -0
  208. package/lib/components/add-payment/add-payment.component.d.ts +33 -0
  209. package/lib/components/add-payment/add-payment.component.d.ts.map +1 -0
  210. package/lib/components/address/address.component.d.ts +81 -0
  211. package/lib/components/address/address.component.d.ts.map +1 -0
  212. package/lib/components/bank-details/bank-details.component.d.ts +62 -0
  213. package/lib/components/bank-details/bank-details.component.d.ts.map +1 -0
  214. package/lib/components/captcha/captcha.component.d.ts +45 -0
  215. package/lib/components/captcha/captcha.component.d.ts.map +1 -0
  216. package/lib/components/card/card.component.d.ts +12 -0
  217. package/lib/components/card/card.component.d.ts.map +1 -0
  218. package/lib/components/contact-us/contact-us.component.d.ts +109 -0
  219. package/lib/components/contact-us/contact-us.component.d.ts.map +1 -0
  220. package/lib/components/content/content.component.d.ts +14 -0
  221. package/lib/components/content/content.component.d.ts.map +1 -0
  222. package/lib/components/correspondence-download/correspondence-download.component.d.ts +22 -0
  223. package/lib/components/correspondence-download/correspondence-download.component.d.ts.map +1 -0
  224. package/lib/components/dashboard-card/dashboard-card.component.d.ts +26 -0
  225. package/lib/components/dashboard-card/dashboard-card.component.d.ts.map +1 -0
  226. package/lib/components/dependent-grid/dependent-grid.component.d.ts +36 -0
  227. package/lib/components/dependent-grid/dependent-grid.component.d.ts.map +1 -0
  228. package/lib/components/disclosure/disclosure.component.d.ts +13 -0
  229. package/lib/components/disclosure/disclosure.component.d.ts.map +1 -0
  230. package/lib/components/dropdown/dropdown.component.d.ts +582 -0
  231. package/lib/components/dropdown/dropdown.component.d.ts.map +1 -0
  232. package/lib/components/dropdown/dropdown.interface.d.ts +155 -0
  233. package/lib/components/dropdown/dropdown.interface.d.ts.map +1 -0
  234. package/lib/components/email-update/email-update.component.d.ts +43 -0
  235. package/lib/components/email-update/email-update.component.d.ts.map +1 -0
  236. package/lib/components/employer-grid/employer-grid.component.d.ts +90 -0
  237. package/lib/components/employer-grid/employer-grid.component.d.ts.map +1 -0
  238. package/lib/components/error/error.component.d.ts +18 -0
  239. package/lib/components/error/error.component.d.ts.map +1 -0
  240. package/lib/components/fav-menu/fav-menu.component.d.ts +22 -0
  241. package/lib/components/fav-menu/fav-menu.component.d.ts.map +1 -0
  242. package/lib/components/file-download/file-download.component.d.ts +23 -0
  243. package/lib/components/file-download/file-download.component.d.ts.map +1 -0
  244. package/lib/components/file-uploader/file-uploader.component.d.ts +48 -0
  245. package/lib/components/file-uploader/file-uploader.component.d.ts.map +1 -0
  246. package/lib/components/footer/footer.component.d.ts +37 -0
  247. package/lib/components/footer/footer.component.d.ts.map +1 -0
  248. package/lib/components/header/header.component.d.ts +64 -0
  249. package/lib/components/header/header.component.d.ts.map +1 -0
  250. package/lib/components/help/help.component.d.ts +11 -0
  251. package/lib/components/help/help.component.d.ts.map +1 -0
  252. package/lib/components/idle-detector/idle-detector.component.d.ts +16 -0
  253. package/lib/components/idle-detector/idle-detector.component.d.ts.map +1 -0
  254. package/lib/components/info/info.component.d.ts +23 -0
  255. package/lib/components/info/info.component.d.ts.map +1 -0
  256. package/lib/components/job-search-result-page/job-search-result-page.component.d.ts +24 -0
  257. package/lib/components/job-search-result-page/job-search-result-page.component.d.ts.map +1 -0
  258. package/lib/components/job-title/job-title.component.d.ts +38 -0
  259. package/lib/components/job-title/job-title.component.d.ts.map +1 -0
  260. package/lib/components/legal-disclaimar/legal-disclaimar.component.d.ts +39 -0
  261. package/lib/components/legal-disclaimar/legal-disclaimar.component.d.ts.map +1 -0
  262. package/lib/components/lexis-nexis/lexis-nexis.component.d.ts +59 -0
  263. package/lib/components/lexis-nexis/lexis-nexis.component.d.ts.map +1 -0
  264. package/lib/components/link/link.component.d.ts +35 -0
  265. package/lib/components/link/link.component.d.ts.map +1 -0
  266. package/lib/components/maintenance-detector/maintenance-detector.component.d.ts +16 -0
  267. package/lib/components/maintenance-detector/maintenance-detector.component.d.ts.map +1 -0
  268. package/lib/components/mask/mask.component.d.ts +12 -0
  269. package/lib/components/mask/mask.component.d.ts.map +1 -0
  270. package/lib/components/menu/menu.component.d.ts +54 -0
  271. package/lib/components/menu/menu.component.d.ts.map +1 -0
  272. package/lib/components/mfa/mfa.component.d.ts +72 -0
  273. package/lib/components/mfa/mfa.component.d.ts.map +1 -0
  274. package/lib/components/mfa-popup/mfa-popup.component.d.ts +19 -0
  275. package/lib/components/mfa-popup/mfa-popup.component.d.ts.map +1 -0
  276. package/lib/components/mfa2/mfa2.component.d.ts +48 -0
  277. package/lib/components/mfa2/mfa2.component.d.ts.map +1 -0
  278. package/lib/components/money-expect/money-expect.component.d.ts +19 -0
  279. package/lib/components/money-expect/money-expect.component.d.ts.map +1 -0
  280. package/lib/components/msg/msg.component.d.ts +11 -0
  281. package/lib/components/msg/msg.component.d.ts.map +1 -0
  282. package/lib/components/news/news.component.d.ts +15 -0
  283. package/lib/components/news/news.component.d.ts.map +1 -0
  284. package/lib/components/overlay-info/overlay-info.component.d.ts +35 -0
  285. package/lib/components/overlay-info/overlay-info.component.d.ts.map +1 -0
  286. package/lib/components/page/page.component.d.ts +24 -0
  287. package/lib/components/page/page.component.d.ts.map +1 -0
  288. package/lib/components/profile/profile.component.d.ts +74 -0
  289. package/lib/components/profile/profile.component.d.ts.map +1 -0
  290. package/lib/components/profile-redirect/profile-redirect.component.d.ts +14 -0
  291. package/lib/components/profile-redirect/profile-redirect.component.d.ts.map +1 -0
  292. package/lib/components/questionnaire/AppValidators.d.ts +16 -0
  293. package/lib/components/questionnaire/AppValidators.d.ts.map +1 -0
  294. package/lib/components/questionnaire/FbConstants.d.ts +8 -0
  295. package/lib/components/questionnaire/FbConstants.d.ts.map +1 -0
  296. package/lib/components/questionnaire/SelectItem.d.ts +5 -0
  297. package/lib/components/questionnaire/SelectItem.d.ts.map +1 -0
  298. package/lib/components/questionnaire/account-success/account-success.page.d.ts +61 -0
  299. package/lib/components/questionnaire/account-success/account-success.page.d.ts.map +1 -0
  300. package/lib/components/questionnaire/common-success/common-success.page.d.ts +77 -0
  301. package/lib/components/questionnaire/common-success/common-success.page.d.ts.map +1 -0
  302. package/lib/components/questionnaire/dynamic-form-panel.component.d.ts +47 -0
  303. package/lib/components/questionnaire/dynamic-form-panel.component.d.ts.map +1 -0
  304. package/lib/components/questionnaire/dynamic-form-question.component.d.ts +128 -0
  305. package/lib/components/questionnaire/dynamic-form-question.component.d.ts.map +1 -0
  306. package/lib/components/questionnaire/dynamic-form.component.d.ts +161 -0
  307. package/lib/components/questionnaire/dynamic-form.component.d.ts.map +1 -0
  308. package/lib/components/questionnaire/form-builder/form-builder.page.d.ts +74 -0
  309. package/lib/components/questionnaire/form-builder/form-builder.page.d.ts.map +1 -0
  310. package/lib/components/questionnaire/input-focus.directive.d.ts +12 -0
  311. package/lib/components/questionnaire/input-focus.directive.d.ts.map +1 -0
  312. package/lib/components/questionnaire/multi-questionnaire/multi-questionnaire.component.d.ts +39 -0
  313. package/lib/components/questionnaire/multi-questionnaire/multi-questionnaire.component.d.ts.map +1 -0
  314. package/lib/components/questionnaire/question-base.d.ts +17 -0
  315. package/lib/components/questionnaire/question-base.d.ts.map +1 -0
  316. package/lib/components/questionnaire/question-control.service.d.ts +21 -0
  317. package/lib/components/questionnaire/question-control.service.d.ts.map +1 -0
  318. package/lib/components/questionnaire/question.service.d.ts +19 -0
  319. package/lib/components/questionnaire/question.service.d.ts.map +1 -0
  320. package/lib/components/questionnaire/render-questionnaire/render-questionnaire.page.d.ts +83 -0
  321. package/lib/components/questionnaire/render-questionnaire/render-questionnaire.page.d.ts.map +1 -0
  322. package/lib/components/read-more/read-more.component.d.ts +15 -0
  323. package/lib/components/read-more/read-more.component.d.ts.map +1 -0
  324. package/lib/components/requalify-lift-previous-issues/requalify-lift-previous-issues.component.d.ts +68 -0
  325. package/lib/components/requalify-lift-previous-issues/requalify-lift-previous-issues.component.d.ts.map +1 -0
  326. package/lib/components/search-employer/search-employer.component.d.ts +40 -0
  327. package/lib/components/search-employer/search-employer.component.d.ts.map +1 -0
  328. package/lib/components/security-question/security-question.component.d.ts +37 -0
  329. package/lib/components/security-question/security-question.component.d.ts.map +1 -0
  330. package/lib/components/select/select.component.d.ts +56 -0
  331. package/lib/components/select/select.component.d.ts.map +1 -0
  332. package/lib/components/sign-ssn/sign-ssn.component.d.ts +34 -0
  333. package/lib/components/sign-ssn/sign-ssn.component.d.ts.map +1 -0
  334. package/lib/components/ssn/ssn.component.d.ts +12 -0
  335. package/lib/components/ssn/ssn.component.d.ts.map +1 -0
  336. package/lib/components/ssn-reverify/ssn-reverify.component.d.ts +27 -0
  337. package/lib/components/ssn-reverify/ssn-reverify.component.d.ts.map +1 -0
  338. package/lib/components/test/test.component.d.ts +9 -0
  339. package/lib/components/test/test.component.d.ts.map +1 -0
  340. package/lib/components/user-login/user-login.component.d.ts +82 -0
  341. package/lib/components/user-login/user-login.component.d.ts.map +1 -0
  342. package/lib/components/weekly-cert-employer/weekly-cert-employer.component.d.ts +67 -0
  343. package/lib/components/weekly-cert-employer/weekly-cert-employer.component.d.ts.map +1 -0
  344. package/lib/components/weekly-cert-employer-grid/weekly-cert-employer-grid.component.d.ts +47 -0
  345. package/lib/components/weekly-cert-employer-grid/weekly-cert-employer-grid.component.d.ts.map +1 -0
  346. package/lib/directives/auto-focus/auto-focus.directive.d.ts +13 -0
  347. package/lib/directives/auto-focus/auto-focus.directive.d.ts.map +1 -0
  348. package/lib/directives/caps-lock.directive.d.ts +12 -0
  349. package/lib/directives/caps-lock.directive.d.ts.map +1 -0
  350. package/lib/directives/required-roles/required-roles.directive.d.ts +15 -0
  351. package/lib/directives/required-roles/required-roles.directive.d.ts.map +1 -0
  352. package/lib/enums/EmailStatusEnum.d.ts +8 -0
  353. package/lib/enums/EmailStatusEnum.d.ts.map +1 -0
  354. package/lib/guards/auth.guard.d.ts +29 -0
  355. package/lib/guards/auth.guard.d.ts.map +1 -0
  356. package/lib/guards/no-login/no-login.guard.d.ts +12 -0
  357. package/lib/guards/no-login/no-login.guard.d.ts.map +1 -0
  358. package/lib/interceptors/error-interceptor/http-error-interceptor.d.ts +23 -0
  359. package/lib/interceptors/error-interceptor/http-error-interceptor.d.ts.map +1 -0
  360. package/lib/interceptors/header-interceptor/http-header.interceptor.d.ts +22 -0
  361. package/lib/interceptors/header-interceptor/http-header.interceptor.d.ts.map +1 -0
  362. package/lib/models/AddressComponentModel.d.ts +14 -0
  363. package/lib/models/AddressComponentModel.d.ts.map +1 -0
  364. package/lib/models/BankDetailsComponentModel.d.ts +12 -0
  365. package/lib/models/BankDetailsComponentModel.d.ts.map +1 -0
  366. package/lib/models/BankDetailsModel.d.ts +5 -0
  367. package/lib/models/BankDetailsModel.d.ts.map +1 -0
  368. package/lib/models/CinRequalificationCriteriaModel.d.ts +11 -0
  369. package/lib/models/CinRequalificationCriteriaModel.d.ts.map +1 -0
  370. package/lib/models/EmployerDetailSearchResult.d.ts +51 -0
  371. package/lib/models/EmployerDetailSearchResult.d.ts.map +1 -0
  372. package/lib/models/ErrorModel.d.ts +7 -0
  373. package/lib/models/ErrorModel.d.ts.map +1 -0
  374. package/lib/models/FileModel.d.ts +5 -0
  375. package/lib/models/FileModel.d.ts.map +1 -0
  376. package/lib/models/LexisNexisAccountCreationModel.d.ts +15 -0
  377. package/lib/models/LexisNexisAccountCreationModel.d.ts.map +1 -0
  378. package/lib/models/LexisNexisAuthSelectionRequestModel.d.ts +16 -0
  379. package/lib/models/LexisNexisAuthSelectionRequestModel.d.ts.map +1 -0
  380. package/lib/models/LexisNexisAuthSelectionResponseModel.d.ts +39 -0
  381. package/lib/models/LexisNexisAuthSelectionResponseModel.d.ts.map +1 -0
  382. package/lib/models/LexisNexisEnabledResponseModel.d.ts +5 -0
  383. package/lib/models/LexisNexisEnabledResponseModel.d.ts.map +1 -0
  384. package/lib/models/LexisNexisResponseModel.d.ts +7 -0
  385. package/lib/models/LexisNexisResponseModel.d.ts.map +1 -0
  386. package/lib/models/LibConstants.d.ts +125 -0
  387. package/lib/models/LibConstants.d.ts.map +1 -0
  388. package/lib/models/NewsAndAnnouncementModel.d.ts +6 -0
  389. package/lib/models/NewsAndAnnouncementModel.d.ts.map +1 -0
  390. package/lib/models/NotificationModel.d.ts +11 -0
  391. package/lib/models/NotificationModel.d.ts.map +1 -0
  392. package/lib/models/OtpAuthModel.d.ts +8 -0
  393. package/lib/models/OtpAuthModel.d.ts.map +1 -0
  394. package/lib/models/PartialEmploymentModel.d.ts +6 -0
  395. package/lib/models/PartialEmploymentModel.d.ts.map +1 -0
  396. package/lib/models/PaymentComponentModel.d.ts +8 -0
  397. package/lib/models/PaymentComponentModel.d.ts.map +1 -0
  398. package/lib/models/RequalifyLiftPageModel.d.ts +12 -0
  399. package/lib/models/RequalifyLiftPageModel.d.ts.map +1 -0
  400. package/lib/models/SecurityQuestionModel.d.ts +7 -0
  401. package/lib/models/SecurityQuestionModel.d.ts.map +1 -0
  402. package/lib/models/SsaVerificationModel.d.ts +9 -0
  403. package/lib/models/SsaVerificationModel.d.ts.map +1 -0
  404. package/lib/models/TrendModel.d.ts +14 -0
  405. package/lib/models/TrendModel.d.ts.map +1 -0
  406. package/lib/models/UserDetailsModel.d.ts +10 -0
  407. package/lib/models/UserDetailsModel.d.ts.map +1 -0
  408. package/lib/models/UserModel.d.ts +48 -0
  409. package/lib/models/UserModel.d.ts.map +1 -0
  410. package/lib/models/case/CaseAttachmentModel.d.ts +6 -0
  411. package/lib/models/case/CaseAttachmentModel.d.ts.map +1 -0
  412. package/lib/models/claimant/ClaimantModel.d.ts +23 -0
  413. package/lib/models/claimant/ClaimantModel.d.ts.map +1 -0
  414. package/lib/models/claimant/JobResultsData.d.ts +8 -0
  415. package/lib/models/claimant/JobResultsData.d.ts.map +1 -0
  416. package/lib/models/claimant/MatchingJobs.d.ts +13 -0
  417. package/lib/models/claimant/MatchingJobs.d.ts.map +1 -0
  418. package/lib/models/claimant/ResetPasswordModel.d.ts +9 -0
  419. package/lib/models/claimant/ResetPasswordModel.d.ts.map +1 -0
  420. package/lib/models/cmp/CaseCoreModel.d.ts +21 -0
  421. package/lib/models/cmp/CaseCoreModel.d.ts.map +1 -0
  422. package/lib/models/cmp/ComplaintCategoryModel.d.ts +9 -0
  423. package/lib/models/cmp/ComplaintCategoryModel.d.ts.map +1 -0
  424. package/lib/models/cmp/ComplaintCategoryOutputModel.d.ts +6 -0
  425. package/lib/models/cmp/ComplaintCategoryOutputModel.d.ts.map +1 -0
  426. package/lib/models/cmp/ContactUsModel.d.ts +23 -0
  427. package/lib/models/cmp/ContactUsModel.d.ts.map +1 -0
  428. package/lib/models/cmp/EmailTemplateModel.d.ts +7 -0
  429. package/lib/models/cmp/EmailTemplateModel.d.ts.map +1 -0
  430. package/lib/models/cmp/contactUsInqueryModel.d.ts +47 -0
  431. package/lib/models/cmp/contactUsInqueryModel.d.ts.map +1 -0
  432. package/lib/models/cmp/messageRourceModel.d.ts +6 -0
  433. package/lib/models/cmp/messageRourceModel.d.ts.map +1 -0
  434. package/lib/models/dashboard-model.d.ts +44 -0
  435. package/lib/models/dashboard-model.d.ts.map +1 -0
  436. package/lib/models/dependent.model.d.ts +20 -0
  437. package/lib/models/dependent.model.d.ts.map +1 -0
  438. package/lib/models/questionnaire/AutocoderModel.d.ts +9 -0
  439. package/lib/models/questionnaire/AutocoderModel.d.ts.map +1 -0
  440. package/lib/models/questionnaire/ClaimAppEmpRequestModel.d.ts +9 -0
  441. package/lib/models/questionnaire/ClaimAppEmpRequestModel.d.ts.map +1 -0
  442. package/lib/models/questionnaire/ClaimAppEmpResponseModel.d.ts +18 -0
  443. package/lib/models/questionnaire/ClaimAppEmpResponseModel.d.ts.map +1 -0
  444. package/lib/models/questionnaire/ClaimAppEmployerDetailsModel.d.ts +156 -0
  445. package/lib/models/questionnaire/ClaimAppEmployerDetailsModel.d.ts.map +1 -0
  446. package/lib/models/questionnaire/ClaimOnlyEmployerDataModel.d.ts +18 -0
  447. package/lib/models/questionnaire/ClaimOnlyEmployerDataModel.d.ts.map +1 -0
  448. package/lib/models/questionnaire/ComboModel.d.ts +178 -0
  449. package/lib/models/questionnaire/ComboModel.d.ts.map +1 -0
  450. package/lib/models/questionnaire/ElementsModel.d.ts +71 -0
  451. package/lib/models/questionnaire/ElementsModel.d.ts.map +1 -0
  452. package/lib/models/questionnaire/EmployerDetailSearchResult.d.ts +18 -0
  453. package/lib/models/questionnaire/EmployerDetailSearchResult.d.ts.map +1 -0
  454. package/lib/models/questionnaire/EmployerWagesModel.d.ts +5 -0
  455. package/lib/models/questionnaire/EmployerWagesModel.d.ts.map +1 -0
  456. package/lib/models/questionnaire/FBConfigModel.d.ts +12 -0
  457. package/lib/models/questionnaire/FBConfigModel.d.ts.map +1 -0
  458. package/lib/models/questionnaire/KeyValueModel.d.ts +11 -0
  459. package/lib/models/questionnaire/KeyValueModel.d.ts.map +1 -0
  460. package/lib/models/questionnaire/LegalDiscaimarModel.d.ts +11 -0
  461. package/lib/models/questionnaire/LegalDiscaimarModel.d.ts.map +1 -0
  462. package/lib/models/questionnaire/LoaderModel.d.ts +5 -0
  463. package/lib/models/questionnaire/LoaderModel.d.ts.map +1 -0
  464. package/lib/models/questionnaire/PollingStatusModel.d.ts +7 -0
  465. package/lib/models/questionnaire/PollingStatusModel.d.ts.map +1 -0
  466. package/lib/models/questionnaire/QtrYearEmployerWageModel.d.ts +9 -0
  467. package/lib/models/questionnaire/QtrYearEmployerWageModel.d.ts.map +1 -0
  468. package/lib/models/questionnaire/QuestionnaireQueryModel.d.ts +24 -0
  469. package/lib/models/questionnaire/QuestionnaireQueryModel.d.ts.map +1 -0
  470. package/lib/models/questionnaire/QuestionnaireReturnModel.d.ts +21 -0
  471. package/lib/models/questionnaire/QuestionnaireReturnModel.d.ts.map +1 -0
  472. package/lib/models/questionnaire/QuestionnaireSaveModel.d.ts +26 -0
  473. package/lib/models/questionnaire/QuestionnaireSaveModel.d.ts.map +1 -0
  474. package/lib/models/questionnaire/RequalifyLiftIssuesModel.d.ts +14 -0
  475. package/lib/models/questionnaire/RequalifyLiftIssuesModel.d.ts.map +1 -0
  476. package/lib/models/questionnaire/ServiceActionResponseModel.d.ts +7 -0
  477. package/lib/models/questionnaire/ServiceActionResponseModel.d.ts.map +1 -0
  478. package/lib/models/questionnaire/StatusModel.d.ts +16 -0
  479. package/lib/models/questionnaire/StatusModel.d.ts.map +1 -0
  480. package/lib/models/questionnaire/SuccessPageElement.d.ts +9 -0
  481. package/lib/models/questionnaire/SuccessPageElement.d.ts.map +1 -0
  482. package/lib/models/questionnaire/UI512AResponseModel.d.ts +13 -0
  483. package/lib/models/questionnaire/UI512AResponseModel.d.ts.map +1 -0
  484. package/lib/models/questionnaire/ValidationModel.d.ts +18 -0
  485. package/lib/models/questionnaire/ValidationModel.d.ts.map +1 -0
  486. package/lib/ngx-reusa-app-lib.component.d.ts +9 -0
  487. package/lib/ngx-reusa-app-lib.component.d.ts.map +1 -0
  488. package/lib/ngx-reusa-app-lib.module.d.ts +155 -0
  489. package/lib/ngx-reusa-app-lib.module.d.ts.map +1 -0
  490. package/lib/ngx-reusa-app-lib.service.d.ts +7 -0
  491. package/lib/ngx-reusa-app-lib.service.d.ts.map +1 -0
  492. package/lib/pages/BasePage.d.ts +32 -0
  493. package/lib/pages/BasePage.d.ts.map +1 -0
  494. package/lib/pages/common/accessibility-policy/accessibility-policy.page.d.ts +12 -0
  495. package/lib/pages/common/accessibility-policy/accessibility-policy.page.d.ts.map +1 -0
  496. package/lib/pages/common/change-password/change-password.page.d.ts +41 -0
  497. package/lib/pages/common/change-password/change-password.page.d.ts.map +1 -0
  498. package/lib/pages/common/landing/landing.component.d.ts +25 -0
  499. package/lib/pages/common/landing/landing.component.d.ts.map +1 -0
  500. package/lib/pages/common/landing2/landing2.component.d.ts +31 -0
  501. package/lib/pages/common/landing2/landing2.component.d.ts.map +1 -0
  502. package/lib/pages/common/login/login.component.d.ts +65 -0
  503. package/lib/pages/common/login/login.component.d.ts.map +1 -0
  504. package/lib/pages/common/not-found/not-found.page.d.ts +9 -0
  505. package/lib/pages/common/not-found/not-found.page.d.ts.map +1 -0
  506. package/lib/pages/common/privacy-disclaimer/privacy-disclaimer.page.d.ts +12 -0
  507. package/lib/pages/common/privacy-disclaimer/privacy-disclaimer.page.d.ts.map +1 -0
  508. package/lib/pages/common/security-policy/security-policy.page.d.ts +12 -0
  509. package/lib/pages/common/security-policy/security-policy.page.d.ts.map +1 -0
  510. package/lib/pages/common/unauthorized/unauthorized.page.d.ts +9 -0
  511. package/lib/pages/common/unauthorized/unauthorized.page.d.ts.map +1 -0
  512. package/lib/pages/popovers/language/language.page.d.ts +17 -0
  513. package/lib/pages/popovers/language/language.page.d.ts.map +1 -0
  514. package/lib/pages/popovers/my-notifications/my-notifications.page.d.ts +22 -0
  515. package/lib/pages/popovers/my-notifications/my-notifications.page.d.ts.map +1 -0
  516. package/lib/pages/popovers/my-profile/my-profile.page.d.ts +21 -0
  517. package/lib/pages/popovers/my-profile/my-profile.page.d.ts.map +1 -0
  518. package/lib/pages/popovers/user-search/user-search.component.d.ts +32 -0
  519. package/lib/pages/popovers/user-search/user-search.component.d.ts.map +1 -0
  520. package/lib/pipes/filter.pipe.d.ts +8 -0
  521. package/lib/pipes/filter.pipe.d.ts.map +1 -0
  522. package/lib/pipes/mask/mask.email.pipe.d.ts +11 -0
  523. package/lib/pipes/mask/mask.email.pipe.d.ts.map +1 -0
  524. package/lib/pipes/proper-case/proper-case.pipe.d.ts +9 -0
  525. package/lib/pipes/proper-case/proper-case.pipe.d.ts.map +1 -0
  526. package/lib/pipes/translate/dynamic-translate.pipe.d.ts +11 -0
  527. package/lib/pipes/translate/dynamic-translate.pipe.d.ts.map +1 -0
  528. package/lib/pipes/trust-html/trust-html.pipe.d.ts +11 -0
  529. package/lib/pipes/trust-html/trust-html.pipe.d.ts.map +1 -0
  530. package/lib/services/base-service.d.ts +93 -0
  531. package/lib/services/base-service.d.ts.map +1 -0
  532. package/lib/services/captcha/captcha.service.d.ts +16 -0
  533. package/lib/services/captcha/captcha.service.d.ts.map +1 -0
  534. package/lib/services/case-service/case.service.d.ts +20 -0
  535. package/lib/services/case-service/case.service.d.ts.map +1 -0
  536. package/lib/services/chatbot/chatbot.service.d.ts +61 -0
  537. package/lib/services/chatbot/chatbot.service.d.ts.map +1 -0
  538. package/lib/services/chatbot/script.const.d.ts +16 -0
  539. package/lib/services/chatbot/script.const.d.ts.map +1 -0
  540. package/lib/services/claimant/claimant.service.d.ts +18 -0
  541. package/lib/services/claimant/claimant.service.d.ts.map +1 -0
  542. package/lib/services/claimant-context/claimant-context.service.d.ts +19 -0
  543. package/lib/services/claimant-context/claimant-context.service.d.ts.map +1 -0
  544. package/lib/services/claimant-service/claimant-usps-redirect.service.d.ts +16 -0
  545. package/lib/services/claimant-service/claimant-usps-redirect.service.d.ts.map +1 -0
  546. package/lib/services/claimant-service/claimant.service.d.ts +26 -0
  547. package/lib/services/claimant-service/claimant.service.d.ts.map +1 -0
  548. package/lib/services/claims/claims.service.d.ts +42 -0
  549. package/lib/services/claims/claims.service.d.ts.map +1 -0
  550. package/lib/services/cmp-service/cmp.service.d.ts +34 -0
  551. package/lib/services/cmp-service/cmp.service.d.ts.map +1 -0
  552. package/lib/services/dms-service/dms.service.d.ts +24 -0
  553. package/lib/services/dms-service/dms.service.d.ts.map +1 -0
  554. package/lib/services/fpjs/fingerprint.service.d.ts +19 -0
  555. package/lib/services/fpjs/fingerprint.service.d.ts.map +1 -0
  556. package/lib/services/google-analytics/google-analytics.service.d.ts +9 -0
  557. package/lib/services/google-analytics/google-analytics.service.d.ts.map +1 -0
  558. package/lib/services/help/help.service.d.ts +26 -0
  559. package/lib/services/help/help.service.d.ts.map +1 -0
  560. package/lib/services/idle/idle.service.d.ts +44 -0
  561. package/lib/services/idle/idle.service.d.ts.map +1 -0
  562. package/lib/services/lexis-nexis/lexis.nexis.service.d.ts +26 -0
  563. package/lib/services/lexis-nexis/lexis.nexis.service.d.ts.map +1 -0
  564. package/lib/services/logger/logger.service.d.ts +32 -0
  565. package/lib/services/logger/logger.service.d.ts.map +1 -0
  566. package/lib/services/login/login.service.d.ts +79 -0
  567. package/lib/services/login/login.service.d.ts.map +1 -0
  568. package/lib/services/maintenance/maintenance.service.d.ts +16 -0
  569. package/lib/services/maintenance/maintenance.service.d.ts.map +1 -0
  570. package/lib/services/notification/notification.service.d.ts +39 -0
  571. package/lib/services/notification/notification.service.d.ts.map +1 -0
  572. package/lib/services/ovp/ovp.service.d.ts +17 -0
  573. package/lib/services/ovp/ovp.service.d.ts.map +1 -0
  574. package/lib/services/questionnaire/questionnaire.service.d.ts +36 -0
  575. package/lib/services/questionnaire/questionnaire.service.d.ts.map +1 -0
  576. package/lib/services/questionnaire/validation.service.d.ts +82 -0
  577. package/lib/services/questionnaire/validation.service.d.ts.map +1 -0
  578. package/lib/services/security-service/security.service.d.ts +18 -0
  579. package/lib/services/security-service/security.service.d.ts.map +1 -0
  580. package/lib/services/tour/tour.service.d.ts +25 -0
  581. package/lib/services/tour/tour.service.d.ts.map +1 -0
  582. package/lib/services/util/util.service.d.ts +194 -0
  583. package/lib/services/util/util.service.d.ts.map +1 -0
  584. package/lib/services/weekly-cert/weekly-cert-v2.service.d.ts +17 -0
  585. package/lib/services/weekly-cert/weekly-cert-v2.service.d.ts.map +1 -0
  586. package/lib/validations/AppRegex.d.ts +50 -0
  587. package/lib/validations/AppRegex.d.ts.map +1 -0
  588. package/lib/validations/AppValidators.d.ts +82 -0
  589. package/lib/validations/AppValidators.d.ts.map +1 -0
  590. package/package.json +28 -0
  591. package/public-api.d.ts +128 -0
  592. package/public-api.d.ts.map +1 -0
@@ -0,0 +1,301 @@
1
+ import { ChangeDetectionStrategy, Component } from '@angular/core';
2
+ import { NG_VALUE_ACCESSOR } from '@angular/forms';
3
+ import * as i0 from "@angular/core";
4
+ import * as i1 from "../../services/questionnaire/validation.service";
5
+ function DependentGridComponent_ng_template_3_Template(rf, ctx) { if (rf & 1) {
6
+ i0.ɵɵelementStart(0, "tr")(1, "th");
7
+ i0.ɵɵtext(2);
8
+ i0.ɵɵpipe(3, "translate");
9
+ i0.ɵɵelementEnd();
10
+ i0.ɵɵelementStart(4, "th");
11
+ i0.ɵɵtext(5);
12
+ i0.ɵɵpipe(6, "translate");
13
+ i0.ɵɵelementEnd();
14
+ i0.ɵɵelementStart(7, "th");
15
+ i0.ɵɵtext(8);
16
+ i0.ɵɵpipe(9, "translate");
17
+ i0.ɵɵelementEnd();
18
+ i0.ɵɵelement(10, "th");
19
+ i0.ɵɵelementEnd();
20
+ } if (rf & 2) {
21
+ i0.ɵɵadvance(2);
22
+ i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(3, 3, "dependent.grid.header.dependent"), " ");
23
+ i0.ɵɵadvance(3);
24
+ i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(6, 5, "dependent.grid.header.ssn"), " ");
25
+ i0.ɵɵadvance(3);
26
+ i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(9, 7, "dependent.grid.header.relationship"), " ");
27
+ } }
28
+ function DependentGridComponent_ng_template_4_app_ssn_14_Template(rf, ctx) { if (rf & 1) {
29
+ i0.ɵɵelement(0, "app-ssn", 19);
30
+ } if (rf & 2) {
31
+ const dependent_r7 = i0.ɵɵnextContext().$implicit;
32
+ i0.ɵɵproperty("ssn", dependent_r7.dependentSSN);
33
+ } }
34
+ function DependentGridComponent_ng_template_4_span_15_Template(rf, ctx) { if (rf & 1) {
35
+ i0.ɵɵelementStart(0, "span");
36
+ i0.ɵɵtext(1, "--");
37
+ i0.ɵɵelementEnd();
38
+ } }
39
+ const _c0 = () => ["fal", "edit"];
40
+ const _c1 = () => ["fal", "trash-alt"];
41
+ function DependentGridComponent_ng_template_4_Template(rf, ctx) { if (rf & 1) {
42
+ const _r13 = i0.ɵɵgetCurrentView();
43
+ i0.ɵɵelementStart(0, "tr", 12)(1, "td")(2, "span", 13);
44
+ i0.ɵɵtext(3);
45
+ i0.ɵɵpipe(4, "translate");
46
+ i0.ɵɵelementEnd();
47
+ i0.ɵɵtext(5);
48
+ i0.ɵɵelement(6, "br");
49
+ i0.ɵɵelementStart(7, "span", 14);
50
+ i0.ɵɵtext(8);
51
+ i0.ɵɵpipe(9, "date");
52
+ i0.ɵɵelementEnd()();
53
+ i0.ɵɵelementStart(10, "td")(11, "span", 13);
54
+ i0.ɵɵtext(12);
55
+ i0.ɵɵpipe(13, "translate");
56
+ i0.ɵɵelementEnd();
57
+ i0.ɵɵtemplate(14, DependentGridComponent_ng_template_4_app_ssn_14_Template, 1, 1, "app-ssn", 15)(15, DependentGridComponent_ng_template_4_span_15_Template, 2, 0, "span", 16);
58
+ i0.ɵɵelementEnd();
59
+ i0.ɵɵelementStart(16, "td")(17, "span", 13);
60
+ i0.ɵɵtext(18);
61
+ i0.ɵɵpipe(19, "translate");
62
+ i0.ɵɵelementEnd();
63
+ i0.ɵɵtext(20);
64
+ i0.ɵɵelementEnd();
65
+ i0.ɵɵelementStart(21, "td")(22, "ion-button", 17);
66
+ i0.ɵɵlistener("click", function DependentGridComponent_ng_template_4_Template_ion_button_click_22_listener() { const restoredCtx = i0.ɵɵrestoreView(_r13); const dependent_r7 = restoredCtx.$implicit; const ctx_r12 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r12.editDependent(dependent_r7)); });
67
+ i0.ɵɵelement(23, "fa-icon", 18);
68
+ i0.ɵɵelementEnd();
69
+ i0.ɵɵelementStart(24, "ion-button", 17);
70
+ i0.ɵɵlistener("click", function DependentGridComponent_ng_template_4_Template_ion_button_click_24_listener() { const restoredCtx = i0.ɵɵrestoreView(_r13); const dependent_r7 = restoredCtx.$implicit; const ctx_r14 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r14.deleteDependent(dependent_r7)); });
71
+ i0.ɵɵelement(25, "fa-icon", 18);
72
+ i0.ɵɵelementEnd()()();
73
+ } if (rf & 2) {
74
+ const dependent_r7 = ctx.$implicit;
75
+ i0.ɵɵproperty("ngClass", dependent_r7.markForDeletion ? "strikethrough" : null);
76
+ i0.ɵɵadvance(3);
77
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(4, 12, "dependent.grid.header.dependent"));
78
+ i0.ɵɵadvance(2);
79
+ i0.ɵɵtextInterpolate2(" ", dependent_r7.dependentFirstName, " ", dependent_r7.dependentLastName, " ");
80
+ i0.ɵɵadvance(3);
81
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind2(9, 14, dependent_r7.dependentDateOfBirth, "MMMM d, y"));
82
+ i0.ɵɵadvance(4);
83
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(13, 17, "dependent.grid.header.ssn"));
84
+ i0.ɵɵadvance(2);
85
+ i0.ɵɵproperty("ngIf", dependent_r7.dependentSSN);
86
+ i0.ɵɵadvance(1);
87
+ i0.ɵɵproperty("ngIf", !dependent_r7.dependentSSN);
88
+ i0.ɵɵadvance(3);
89
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(19, 19, "dependent.grid.header.relationship"));
90
+ i0.ɵɵadvance(2);
91
+ i0.ɵɵtextInterpolate1(" ", dependent_r7.relationship == null ? null : dependent_r7.relationship.text, " ");
92
+ i0.ɵɵadvance(3);
93
+ i0.ɵɵproperty("icon", i0.ɵɵpureFunction0(21, _c0));
94
+ i0.ɵɵadvance(2);
95
+ i0.ɵɵproperty("icon", i0.ɵɵpureFunction0(22, _c1));
96
+ } }
97
+ const _c2 = () => ["fal", "plus"];
98
+ function DependentGridComponent_ng_template_5_Template(rf, ctx) { if (rf & 1) {
99
+ const _r17 = i0.ɵɵgetCurrentView();
100
+ i0.ɵɵelementStart(0, "table")(1, "tr")(2, "td", 20);
101
+ i0.ɵɵelement(3, "div", 21);
102
+ i0.ɵɵpipe(4, "trustHtml");
103
+ i0.ɵɵpipe(5, "translate");
104
+ i0.ɵɵelementEnd();
105
+ i0.ɵɵelementStart(6, "td", 22)(7, "ion-button", 23);
106
+ i0.ɵɵlistener("click", function DependentGridComponent_ng_template_5_Template_ion_button_click_7_listener() { i0.ɵɵrestoreView(_r17); const ctx_r16 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r16.showAddDependentPopup = !ctx_r16.showAddDependentPopup); });
107
+ i0.ɵɵelement(8, "fa-icon", 18);
108
+ i0.ɵɵelementEnd()();
109
+ i0.ɵɵelementStart(9, "td", 24);
110
+ i0.ɵɵtext(10, "\u00A0");
111
+ i0.ɵɵelementEnd()()();
112
+ } if (rf & 2) {
113
+ i0.ɵɵadvance(2);
114
+ i0.ɵɵattribute("colspan", 2);
115
+ i0.ɵɵadvance(1);
116
+ i0.ɵɵproperty("innerHtml", i0.ɵɵpipeBind1(4, 4, i0.ɵɵpipeBind1(5, 6, "dependent.grid.footer.label")), i0.ɵɵsanitizeHtml);
117
+ i0.ɵɵadvance(4);
118
+ i0.ɵɵproperty("id", "btnAddDependent");
119
+ i0.ɵɵadvance(1);
120
+ i0.ɵɵproperty("icon", i0.ɵɵpureFunction0(8, _c2));
121
+ } }
122
+ function DependentGridComponent_app_multi_questionnaire_10_Template(rf, ctx) { if (rf & 1) {
123
+ const _r19 = i0.ɵɵgetCurrentView();
124
+ i0.ɵɵelementStart(0, "app-multi-questionnaire", 25);
125
+ i0.ɵɵlistener("onComplete", function DependentGridComponent_app_multi_questionnaire_10_Template_app_multi_questionnaire_onComplete_0_listener($event) { i0.ɵɵrestoreView(_r19); const ctx_r18 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r18.addDependent($event)); })("modelCancel", function DependentGridComponent_app_multi_questionnaire_10_Template_app_multi_questionnaire_modelCancel_0_listener() { i0.ɵɵrestoreView(_r19); const ctx_r20 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r20.close()); });
126
+ i0.ɵɵelementEnd();
127
+ } if (rf & 2) {
128
+ const ctx_r4 = i0.ɵɵnextContext();
129
+ i0.ɵɵproperty("qeQueryModels", ctx_r4.qeQueryModels)("autoSave", false)("formData", ctx_r4.selectedDependent);
130
+ } }
131
+ function DependentGridComponent_ng_template_16_Template(rf, ctx) { if (rf & 1) {
132
+ const _r22 = i0.ɵɵgetCurrentView();
133
+ i0.ɵɵelementStart(0, "ion-button", 26);
134
+ i0.ɵɵlistener("click", function DependentGridComponent_ng_template_16_Template_ion_button_click_0_listener() { i0.ɵɵrestoreView(_r22); const ctx_r21 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r21.close()); });
135
+ i0.ɵɵtext(1, " Close ");
136
+ i0.ɵɵelementEnd();
137
+ i0.ɵɵelementStart(2, "ion-button", 27);
138
+ i0.ɵɵlistener("click", function DependentGridComponent_ng_template_16_Template_ion_button_click_2_listener() { i0.ɵɵrestoreView(_r22); const ctx_r23 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r23.editDuplicateDependent()); });
139
+ i0.ɵɵtext(3, " Edit ");
140
+ i0.ɵɵelementEnd();
141
+ } }
142
+ const _c3 = () => ({ width: "45vw" });
143
+ const _c4 = () => ({ "1200px": "660px", "992px": "660px", "768px": "660px", "576px": "100vw" });
144
+ export class DependentGridComponent {
145
+ constructor(vs) {
146
+ this.vs = vs;
147
+ this.indexToEdit = null;
148
+ this.dependents = [];
149
+ this.showAddDependentPopup = false;
150
+ this.showDuplicatePopup = false;
151
+ this.qeQueryModels = [
152
+ {
153
+ flowFactFindingInq: false, flowAbleAndAvailable: false, userType: "CLMT", flowFrom: "CMIN", questionnaireIds: [339],
154
+ flowWCAbleAndAvailable: false, flowKey: "add-dependents", isMfaRequired: false, isScreenQuestionnaire: true
155
+ }
156
+ ];
157
+ this.onChange = (value) => {
158
+ };
159
+ this.onTouch = () => {
160
+ };
161
+ this.onChangeSubs = [];
162
+ }
163
+ ngOnDestroy() {
164
+ for (let sub of this.onChangeSubs) {
165
+ sub.unsubscribe();
166
+ }
167
+ }
168
+ writeValue(deps) {
169
+ if (deps && deps.dependents) {
170
+ this.dependents = deps.dependents;
171
+ this.publishDependents();
172
+ }
173
+ }
174
+ registerOnChange(fn) {
175
+ let sub = this.vs.dependents.subscribe(fn);
176
+ this.onChangeSubs.push(sub);
177
+ }
178
+ registerOnTouched(fn) {
179
+ this.onTouch = fn;
180
+ }
181
+ setDisabledState(isDisabled) {
182
+ }
183
+ ngOnInit() {
184
+ let deps = this.vs.dependents.getValue() || [];
185
+ if (deps && deps.dependents) {
186
+ this.dependents = deps.dependents;
187
+ }
188
+ }
189
+ addDependent(event) {
190
+ let dependent = event.get(this.qeQueryModels[0].questionnaireIds[0]);
191
+ if (this.checkForDuplicate(dependent)) {
192
+ this.selectedDependent = dependent;
193
+ this.showAddDependentPopup = false;
194
+ this.showDuplicatePopup = true;
195
+ return;
196
+ }
197
+ if (this.indexToEdit != null) {
198
+ this.dependents[this.indexToEdit] = dependent;
199
+ }
200
+ else {
201
+ this.dependents.push(dependent);
202
+ }
203
+ this.showAddDependentPopup = false;
204
+ this.selectedDependent = null;
205
+ this.indexToEdit = null;
206
+ this.publishDependents();
207
+ }
208
+ publishDependents() {
209
+ let dependents = { dependents: this.dependents };
210
+ this.vs.dependents.next(this.dependents.length > 0 ? dependents : null);
211
+ }
212
+ editDependent(dependent) {
213
+ this.selectedDependent = dependent;
214
+ this.indexToEdit = this.dependents.indexOf(dependent);
215
+ this.showAddDependentPopup = true;
216
+ }
217
+ editDuplicateDependent() {
218
+ this.showDuplicatePopup = false;
219
+ this.showAddDependentPopup = true;
220
+ }
221
+ deleteDependent(dependent) {
222
+ let index = this.dependents.indexOf(dependent);
223
+ if (dependent.dependentId) {
224
+ dependent.markForDeletion = true;
225
+ this.dependents[index] = dependent;
226
+ }
227
+ else {
228
+ this.dependents.splice(index, 1);
229
+ }
230
+ this.publishDependents();
231
+ }
232
+ close() {
233
+ this.showAddDependentPopup = false;
234
+ this.indexToEdit = null;
235
+ this.selectedDependent = null;
236
+ this.showDuplicatePopup = false;
237
+ }
238
+ checkForDuplicate(dependent) {
239
+ if (this.dependents) {
240
+ let dependents = this.dependents.filter(d => {
241
+ if (this.indexToEdit == this.dependents.indexOf(d)) {
242
+ return false;
243
+ }
244
+ let result = (dependent.dependentSSN && d.dependentSSN && dependent.dependentSSN == d.dependentSSN)
245
+ ||
246
+ (dependent.dependentDateOfBirth === d.dependentDateOfBirth &&
247
+ dependent.dependentFirstName === d.dependentFirstName &&
248
+ dependent.dependentLastName === d.dependentLastName);
249
+ return result;
250
+ });
251
+ return dependents.length > 0;
252
+ }
253
+ else {
254
+ return false;
255
+ }
256
+ }
257
+ static { this.ɵfac = function DependentGridComponent_Factory(t) { return new (t || DependentGridComponent)(i0.ɵɵdirectiveInject(i1.ValidationService)); }; }
258
+ static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: DependentGridComponent, selectors: [["app-dependent-grid"]], features: [i0.ɵɵProvidersFeature([{
259
+ provide: NG_VALUE_ACCESSOR,
260
+ useExisting: DependentGridComponent,
261
+ multi: true
262
+ }])], decls: 17, vars: 16, consts: [[2, "margin-left", "-5px"], ["styleClass", "p-datatable-striped app-datatable ion-padding-top", 3, "rowHover", "value"], ["dt", ""], ["pTemplate", "header"], ["pTemplate", "body"], ["pTemplate", "summary"], [1, "ion-text-center", "ion-hide-xl-up", "ion-hide-lg-up", "ion-hide-md-up"], ["shape", "round", "color", "success", "fill", "outline", 3, "click"], [3, "qeQueryModels", "autoSave", "formData", "onComplete", "modelCancel", 4, "ngIf"], ["appendTo", "body", "position", "top", "appendTo", "body", "closeOnEscape", "false", 3, "visible", "modal", "breakpoints", "baseZIndex", "draggable", "resizable"], [1, "heading"], ["pTemplate", "footer"], [1, "ion-padding-top", "ion-padding-bottom", 3, "ngClass"], [1, "p-column-title"], [2, "font-size", "12px"], [3, "ssn", 4, "ngIf"], [4, "ngIf"], ["fill", "outline", "size", "small", 1, "action-button", 3, "click"], [1, "action-icon", 3, "icon"], [3, "ssn"], [2, "width", "40%"], [3, "innerHtml"], [2, "width", "9.75%", "text-align", "right"], ["fill", "outline", "size", "small", "aria-label", "Add employer", 1, "action-button", 3, "id", "click"], ["colspan", "4"], [3, "qeQueryModels", "autoSave", "formData", "onComplete", "modelCancel"], ["shape", "round", "size", "small", "type", "submit", "fill", "outline", 3, "click"], ["shape", "round", "size", "small", "type", "submit", "fill", "solid", 3, "click"]], template: function DependentGridComponent_Template(rf, ctx) { if (rf & 1) {
263
+ i0.ɵɵelementStart(0, "div", 0)(1, "p-table", 1, 2);
264
+ i0.ɵɵtemplate(3, DependentGridComponent_ng_template_3_Template, 11, 9, "ng-template", 3)(4, DependentGridComponent_ng_template_4_Template, 26, 23, "ng-template", 4)(5, DependentGridComponent_ng_template_5_Template, 11, 9, "ng-template", 5);
265
+ i0.ɵɵelementEnd();
266
+ i0.ɵɵelementStart(6, "div", 6)(7, "ion-button", 7);
267
+ i0.ɵɵlistener("click", function DependentGridComponent_Template_ion_button_click_7_listener() { return ctx.showAddDependentPopup = !ctx.showAddDependentPopup; });
268
+ i0.ɵɵtext(8);
269
+ i0.ɵɵpipe(9, "translate");
270
+ i0.ɵɵelementEnd()();
271
+ i0.ɵɵtemplate(10, DependentGridComponent_app_multi_questionnaire_10_Template, 1, 3, "app-multi-questionnaire", 8);
272
+ i0.ɵɵelementStart(11, "p-dialog", 9)(12, "h4", 10);
273
+ i0.ɵɵtext(13, "Duplicate dependent not allowed");
274
+ i0.ɵɵelementEnd();
275
+ i0.ɵɵelementStart(14, "ion-label");
276
+ i0.ɵɵtext(15, "It seems like you have added a dependent that has been added already. Please check details and try adding dependent again.");
277
+ i0.ɵɵelementEnd();
278
+ i0.ɵɵtemplate(16, DependentGridComponent_ng_template_16_Template, 4, 0, "ng-template", 11);
279
+ i0.ɵɵelementEnd()();
280
+ } if (rf & 2) {
281
+ i0.ɵɵadvance(1);
282
+ i0.ɵɵproperty("rowHover", true)("value", ctx.dependents);
283
+ i0.ɵɵadvance(7);
284
+ i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(9, 12, "dependent.grid.header.add"), " ");
285
+ i0.ɵɵadvance(2);
286
+ i0.ɵɵproperty("ngIf", ctx.showAddDependentPopup);
287
+ i0.ɵɵadvance(1);
288
+ i0.ɵɵstyleMap(i0.ɵɵpureFunction0(14, _c3));
289
+ i0.ɵɵproperty("visible", ctx.showDuplicatePopup)("modal", true)("breakpoints", i0.ɵɵpureFunction0(15, _c4))("baseZIndex", 5000)("draggable", false)("resizable", false);
290
+ } }, styles: [".strikethrough[_ngcontent-%COMP%]{text-decoration:line-through}"] }); }
291
+ }
292
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(DependentGridComponent, [{
293
+ type: Component,
294
+ args: [{ selector: 'app-dependent-grid', providers: [{
295
+ provide: NG_VALUE_ACCESSOR,
296
+ useExisting: DependentGridComponent,
297
+ multi: true
298
+ }], changeDetection: ChangeDetectionStrategy.Default, template: "<div style=\"margin-left: -5px;\">\r\n <p-table #dt [rowHover]=\"true\" styleClass=\"p-datatable-striped app-datatable ion-padding-top\" [value]=\"dependents\">\r\n <ng-template pTemplate=\"header\" let-columns>\r\n <tr>\r\n <th>\r\n {{\"dependent.grid.header.dependent\"|translate}}\r\n </th>\r\n <th>\r\n {{\"dependent.grid.header.ssn\"|translate}}\r\n </th>\r\n <th>\r\n {{\"dependent.grid.header.relationship\"|translate}}\r\n </th>\r\n <th>\r\n \r\n </th>\r\n </tr>\r\n </ng-template>\r\n\r\n <ng-template pTemplate=\"body\" let-dependent let-rowIndex=\"rowIndex\">\r\n <tr class=\"ion-padding-top ion-padding-bottom\" [ngClass]=\"dependent.markForDeletion ? 'strikethrough' : null\">\r\n <td>\r\n <span class=\"p-column-title\">{{\"dependent.grid.header.dependent\"|translate}}</span>\r\n {{dependent.dependentFirstName}} {{dependent.dependentLastName}} <br/>\r\n <span style=\"font-size: 12px;\">{{dependent.dependentDateOfBirth | date:'MMMM d, y'}}</span>\r\n </td>\r\n <td>\r\n <span class=\"p-column-title\">{{\"dependent.grid.header.ssn\"|translate}}</span>\r\n <app-ssn [ssn]=\"dependent.dependentSSN\" *ngIf=\"dependent.dependentSSN\"></app-ssn>\r\n <span *ngIf=\"!dependent.dependentSSN\">--</span>\r\n </td>\r\n <td>\r\n <span class=\"p-column-title\">{{\"dependent.grid.header.relationship\"|translate}}</span>\r\n {{dependent.relationship?.text}}\r\n </td>\r\n <td>\r\n <ion-button fill=\"outline\" size=\"small\" class=\"action-button\" (click)=\"editDependent(dependent)\">\r\n <fa-icon [icon]=\"['fal', 'edit']\" class=\"action-icon\"></fa-icon>\r\n </ion-button>\r\n <ion-button fill=\"outline\" size=\"small\" class=\"action-button\" (click)=\"deleteDependent(dependent)\">\r\n <fa-icon [icon]=\"['fal', 'trash-alt']\" class=\"action-icon\"></fa-icon>\r\n </ion-button>\r\n </td>\r\n </tr>\r\n </ng-template>\r\n\r\n <ng-template pTemplate=\"summary\" let-columns>\r\n <table>\r\n <tr>\r\n <td [attr.colspan]=\"2\" style=\"width: 40%;\">\r\n <div [innerHtml]=\"'dependent.grid.footer.label' | translate | trustHtml\"></div>\r\n </td>\r\n <td style=\"width: 9.75%; text-align: right;\">\r\n <ion-button fill=\"outline\" size=\"small\" class=\"action-button\" (click)=\"showAddDependentPopup = !showAddDependentPopup\" class=\"action-button\" aria-label=\"Add employer\" [id]=\"'btnAddDependent'\">\r\n <fa-icon [icon]=\"['fal', 'plus']\" class=\"action-icon\"></fa-icon>\r\n </ion-button>\r\n </td>\r\n <td colspan=\"4\">&nbsp;</td>\r\n </tr>\r\n </table>\r\n </ng-template>\r\n\r\n </p-table>\r\n\r\n <div class=\"ion-text-center ion-hide-xl-up ion-hide-lg-up ion-hide-md-up\">\r\n <ion-button shape=\"round\" color=\"success\" fill=\"outline\"\r\n (click)=\"showAddDependentPopup = !showAddDependentPopup\">\r\n {{\"dependent.grid.header.add\"|translate}}\r\n </ion-button>\r\n </div>\r\n\r\n <app-multi-questionnaire [qeQueryModels]=\"qeQueryModels\" [autoSave]=\"false\" *ngIf=\"showAddDependentPopup\"\r\n (onComplete)=\"addDependent($event)\" (modelCancel)=\"close()\" [formData]=\"selectedDependent\">\r\n </app-multi-questionnaire>\r\n\r\n <p-dialog [visible]=\"showDuplicatePopup\" [modal]=\"true\" appendTo=\"body\" position=\"top\" [breakpoints]=\"{'1200px': '660px', '992px': '660px', '768px': '660px', '576px': '100vw'}\" [style]=\"{width: '45vw'}\"\r\n [baseZIndex]=\"5000\" [draggable]=\"false\" [resizable]=\"false\" appendTo=\"body\" closeOnEscape=\"false\">\r\n <h4 class=\"heading\">Duplicate dependent not allowed</h4>\r\n <ion-label>It seems like you have added a dependent that has been added already. Please check details and try adding dependent again.</ion-label>\r\n <ng-template pTemplate=\"footer\">\r\n <ion-button shape=\"round\" size=\"small\" type=\"submit\" fill=\"outline\" (click)=\"close()\">\r\n Close\r\n </ion-button>\r\n <ion-button shape=\"round\" size=\"small\" type=\"submit\" fill=\"solid\" (click)=\"editDuplicateDependent()\">\r\n Edit\r\n </ion-button>\r\n </ng-template>\r\n </p-dialog>\r\n</div>", styles: [".strikethrough{text-decoration:line-through}\n"] }]
299
+ }], () => [{ type: i1.ValidationService }], null); })();
300
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(DependentGridComponent, { className: "DependentGridComponent", filePath: "lib\\components\\dependent-grid\\dependent-grid.component.ts", lineNumber: 22 }); })();
301
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVwZW5kZW50LWdyaWQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbmd4LXJldXNhLWFwcC1saWIvc3JjL2xpYi9jb21wb25lbnRzL2RlcGVuZGVudC1ncmlkL2RlcGVuZGVudC1ncmlkLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL25neC1yZXVzYS1hcHAtbGliL3NyYy9saWIvY29tcG9uZW50cy9kZXBlbmRlbnQtZ3JpZC9kZXBlbmRlbnQtZ3JpZC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFVLE1BQU0sZUFBZSxDQUFDO0FBQzNFLE9BQU8sRUFBd0IsaUJBQWlCLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQzs7OztJQ0U3RCwwQkFBSSxTQUFBO0lBRUksWUFDSjs7SUFBQSxpQkFBSztJQUNMLDBCQUFJO0lBQ0EsWUFDSjs7SUFBQSxpQkFBSztJQUNMLDBCQUFJO0lBQ0EsWUFDSjs7SUFBQSxpQkFBSztJQUNMLHNCQUVLO0lBQ1QsaUJBQUs7O0lBWEcsZUFDSjtJQURJLHdGQUNKO0lBRUksZUFDSjtJQURJLGtGQUNKO0lBRUksZUFDSjtJQURJLDJGQUNKOzs7SUFnQkksOEJBQWlGOzs7SUFBeEUsK0NBQThCOzs7SUFDdkMsNEJBQXNDO0lBQUEsa0JBQUU7SUFBQSxpQkFBTzs7Ozs7O0lBVHZELDhCQUE4RyxTQUFBLGVBQUE7SUFFekUsWUFBK0M7O0lBQUEsaUJBQU87SUFDbkYsWUFBaUU7SUFBQSxxQkFBSztJQUN0RSxnQ0FBK0I7SUFBQSxZQUFxRDs7SUFBQSxpQkFBTyxFQUFBO0lBRS9GLDJCQUFJLGdCQUFBO0lBQzZCLGFBQXlDOztJQUFBLGlCQUFPO0lBQzdFLGdHQUFpRiw2RUFBQTtJQUVyRixpQkFBSztJQUNMLDJCQUFJLGdCQUFBO0lBQzZCLGFBQWtEOztJ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Q0FBQztvQkFDVixPQUFPLEVBQUUsaUJBQWlCO29CQUUxQixXQUFXLEVBQUUsc0JBQXNCO29CQUVuQyxLQUFLLEVBQUUsSUFBSTtpQkFDWixDQUFDO1lDbEJKLDhCQUFnQyxvQkFBQTtZQUV4Qix3RkFlYyw0RUFBQSwyRUFBQTtZQTZDbEIsaUJBQVU7WUFFViw4QkFBMEUsb0JBQUE7WUFFbEUsaUtBQXdEO1lBQ3hELFlBQ0o7O1lBQUEsaUJBQWEsRUFBQTtZQUdqQixpSEFFMEI7WUFFMUIsb0NBQ2tHLGNBQUE7WUFDMUUsZ0RBQStCO1lBQUEsaUJBQUs7WUFDeEQsa0NBQVc7WUFBQSwySUFBMEg7WUFBQSxpQkFBWTtZQUNqSiwwRkFPYztZQUNsQixpQkFBVyxFQUFBOztZQXRGRSxlQUFpQjtZQUFqQiwrQkFBaUIseUJBQUE7WUFrRXRCLGVBQ0o7WUFESSxtRkFDSjtZQUd5RSxlQUEyQjtZQUEzQixnREFBMkI7WUFJeUUsZUFBeUI7WUFBekIsMENBQXlCO1lBQWhNLGdEQUE4QixlQUFBLDRDQUFBLG9CQUFBLG9CQUFBLG9CQUFBOzs7aUZEdEQvQixzQkFBc0I7Y0FibEMsU0FBUzsyQkFDRSxvQkFBb0IsYUFHbkIsQ0FBQzt3QkFDVixPQUFPLEVBQUUsaUJBQWlCO3dCQUUxQixXQUFXLHdCQUF3Qjt3QkFFbkMsS0FBSyxFQUFFLElBQUk7cUJBQ1osQ0FBQyxtQkFDZSx1QkFBdUIsQ0FBQyxPQUFPOztrRkFFckMsc0JBQXNCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgT25Jbml0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IENvbnRyb2xWYWx1ZUFjY2Vzc29yLCBOR19WQUxVRV9BQ0NFU1NPUiB9IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJztcclxuaW1wb3J0IHsgU3Vic2NyaXB0aW9uIH0gZnJvbSAncnhqcyc7XHJcbmltcG9ydCB7IENob2ljZXNNb2RlbCB9IGZyb20gJy4uLy4uL21vZGVscy9BZGRyZXNzQ29tcG9uZW50TW9kZWwnO1xyXG5pbXBvcnQgeyBEZXBlbmRlbnRNb2RlbCwgRGVwZW5kZW50TW9kZWxzIH0gZnJvbSAnLi4vLi4vbW9kZWxzL2RlcGVuZGVudC5tb2RlbCc7XHJcbmltcG9ydCB7IFF1ZXN0aW9ubmFpcmVRdWVyeU1vZGVsIH0gZnJvbSAnLi4vLi4vbW9kZWxzL3F1ZXN0aW9ubmFpcmUvUXVlc3Rpb25uYWlyZVF1ZXJ5TW9kZWwnO1xyXG5pbXBvcnQgeyBWYWxpZGF0aW9uU2VydmljZSB9IGZyb20gJy4uLy4uL3NlcnZpY2VzL3F1ZXN0aW9ubmFpcmUvdmFsaWRhdGlvbi5zZXJ2aWNlJztcclxuXHJcbkBDb21wb25lbnQoe1xyXG4gIHNlbGVjdG9yOiAnYXBwLWRlcGVuZGVudC1ncmlkJyxcclxuICB0ZW1wbGF0ZVVybDogJy4vZGVwZW5kZW50LWdyaWQuY29tcG9uZW50Lmh0bWwnLFxyXG4gIHN0eWxlVXJsczogWycuL2RlcGVuZGVudC1ncmlkLmNvbXBvbmVudC5jc3MnXSxcclxuICBwcm92aWRlcnM6IFt7XHJcbiAgICBwcm92aWRlOiBOR19WQUxVRV9BQ0NFU1NPUixcclxuXHJcbiAgICB1c2VFeGlzdGluZzogRGVwZW5kZW50R3JpZENvbXBvbmVudCxcclxuXHJcbiAgICBtdWx0aTogdHJ1ZVxyXG4gIH1dLFxyXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuRGVmYXVsdFxyXG59KVxyXG5leHBvcnQgY2xhc3MgRGVwZW5kZW50R3JpZENvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCwgQ29udHJvbFZhbHVlQWNjZXNzb3Ige1xyXG5cclxuICBzZWxlY3RlZERlcGVuZGVudCA6IERlcGVuZGVudE1vZGVsO1xyXG5cclxuICBpbmRleFRvRWRpdCA9IG51bGw7XHJcblxyXG4gIGRlcGVuZGVudHMgOiBEZXBlbmRlbnRNb2RlbFtdID0gW107XHJcblxyXG4gIHNob3dBZGREZXBlbmRlbnRQb3B1cCA6IGJvb2xlYW4gPSBmYWxzZTtcclxuXHJcbiAgc2hvd0R1cGxpY2F0ZVBvcHVwIDogYm9vbGVhbiA9IGZhbHNlO1xyXG5cclxuICBxZVF1ZXJ5TW9kZWxzOiBRdWVzdGlvbm5haXJlUXVlcnlNb2RlbFtdID0gW1xyXG4gICAge1xyXG4gICAgICBmbG93RmFjdEZpbmRpbmdJbnE6IGZhbHNlLCBmbG93QWJsZUFuZEF2YWlsYWJsZTogZmFsc2UsIHVzZXJUeXBlOiBcIkNMTVRcIiwgZmxvd0Zyb206IFwiQ01JTlwiLCBxdWVzdGlvbm5haXJlSWRzOiBbMzM5XSxcclxuICAgICAgZmxvd1dDQWJsZUFuZEF2YWlsYWJsZTogZmFsc2UsIGZsb3dLZXk6IFwiYWRkLWRlcGVuZGVudHNcIiwgaXNNZmFSZXF1aXJlZDogZmFsc2UsIGlzU2NyZWVuUXVlc3Rpb25uYWlyZTogdHJ1ZVxyXG4gICAgfVxyXG4gIF1cclxuXHJcbiAgY29uc3RydWN0b3IocHVibGljIHZzOiBWYWxpZGF0aW9uU2VydmljZSkgeyBcclxuICB9XHJcblxyXG4gIHByaXZhdGUgb25DaGFuZ2U6IEZ1bmN0aW9uID0gKHZhbHVlOiBTdHJpbmcpID0+IHtcclxuICB9O1xyXG5cclxuICBwcml2YXRlIG9uVG91Y2g6IEZ1bmN0aW9uID0gKCkgPT4ge1xyXG4gIH07XHJcblxyXG4gIG9uQ2hhbmdlU3ViczogU3Vic2NyaXB0aW9uW10gPSBbXTtcclxuXHJcbiAgbmdPbkRlc3Ryb3koKSB7XHJcbiAgICBmb3IgKGxldCBzdWIgb2YgdGhpcy5vbkNoYW5nZVN1YnMpIHtcclxuICAgICAgc3ViLnVuc3Vic2NyaWJlKCk7XHJcbiAgICB9XHJcbiAgfVxyXG5cclxuICB3cml0ZVZhbHVlKGRlcHM6IGFueSkge1xyXG4gICAgaWYoZGVwcyAmJiBkZXBzLmRlcGVuZGVudHMpe1xyXG4gICAgICB0aGlzLmRlcGVuZGVudHMgPSBkZXBzLmRlcGVuZGVudHM7XHJcbiAgICAgIHRoaXMucHVibGlzaERlcGVuZGVudHMoKTtcclxuICAgIH0gXHJcbiAgfVxyXG5cclxuICByZWdpc3Rlck9uQ2hhbmdlKGZuOiBhbnkpIHtcclxuICAgIGxldCBzdWIgPSB0aGlzLnZzLmRlcGVuZGVudHMuc3Vic2NyaWJlKGZuKTtcclxuICAgIHRoaXMub25DaGFuZ2VTdWJzLnB1c2goc3ViKTtcclxuICB9XHJcblxyXG4gIHJlZ2lzdGVyT25Ub3VjaGVkKGZuOiBhbnkpIHtcclxuICAgIHRoaXMub25Ub3VjaCA9IGZuXHJcbiAgfVxyXG5cclxuICBzZXREaXNhYmxlZFN0YXRlPyhpc0Rpc2FibGVkOiBib29sZWFuKTogdm9pZCB7XHJcbiAgfVxyXG5cclxuICBuZ09uSW5pdCgpOiB2b2lkIHtcclxuICAgIGxldCBkZXBzID0gdGhpcy52cy5kZXBlbmRlbnRzLmdldFZhbHVlKCkgfHwgW107XHJcbiAgICBpZihkZXBzICYmIGRlcHMuZGVwZW5kZW50cyl7XHJcbiAgICAgIHRoaXMuZGVwZW5kZW50cyA9IGRlcHMuZGVwZW5kZW50cztcclxuICAgIH1cclxuICB9XHJcblxyXG4gIGFkZERlcGVuZGVudChldmVudCA6IE1hcDxudW1iZXIsIGFueT4pe1xyXG4gICAgbGV0IGRlcGVuZGVudCA6IERlcGVuZGVudE1vZGVsID0gZXZlbnQuZ2V0KHRoaXMucWVRdWVyeU1vZGVsc1swXS5xdWVzdGlvbm5haXJlSWRzWzBdKTtcclxuICAgIGlmKHRoaXMuY2hlY2tGb3JEdXBsaWNhdGUoZGVwZW5kZW50KSl7XHJcbiAgICAgIHRoaXMuc2VsZWN0ZWREZXBlbmRlbnQgPSBkZXBlbmRlbnQ7XHJcbiAgICAgIHRoaXMuc2hvd0FkZERlcGVuZGVudFBvcHVwID0gZmFsc2U7XHJcbiAgICAgIHRoaXMuc2hvd0R1cGxpY2F0ZVBvcHVwID0gdHJ1ZTtcclxuICAgICAgcmV0dXJuO1xyXG4gICAgfVxyXG4gICAgaWYodGhpcy5pbmRleFRvRWRpdCAhPSBudWxsKXtcclxuICAgICAgdGhpcy5kZXBlbmRlbnRzW3RoaXMuaW5kZXhUb0VkaXRdID0gZGVwZW5kZW50O1xyXG4gICAgfWVsc2V7XHJcbiAgICAgIHRoaXMuZGVwZW5kZW50cy5wdXNoKGRlcGVuZGVudCk7XHJcbiAgICB9XHJcbiAgICB0aGlzLnNob3dBZGREZXBlbmRlbnRQb3B1cCA9IGZhbHNlO1xyXG4gICAgdGhpcy5zZWxlY3RlZERlcGVuZGVudCA9IG51bGw7XHJcbiAgICB0aGlzLmluZGV4VG9FZGl0ID0gbnVsbDtcclxuICAgIHRoaXMucHVibGlzaERlcGVuZGVudHMoKTtcclxuICB9XHJcblxyXG4gIHB1Ymxpc2hEZXBlbmRlbnRzKCkge1xyXG4gICAgbGV0IGRlcGVuZGVudHMgPSB7IGRlcGVuZGVudHMgOiB0aGlzLmRlcGVuZGVudHMgfTtcclxuICAgIHRoaXMudnMuZGVwZW5kZW50cy5uZXh0KHRoaXMuZGVwZW5kZW50cy5sZW5ndGggPiAwID8gZGVwZW5kZW50cyA6IG51bGwpO1xyXG4gIH1cclxuXHJcbiAgZWRpdERlcGVuZGVudChkZXBlbmRlbnQgOiBEZXBlbmRlbnRNb2RlbCl7XHJcbiAgICB0aGlzLnNlbGVjdGVkRGVwZW5kZW50ID0gZGVwZW5kZW50O1xyXG4gICAgdGhpcy5pbmRleFRvRWRpdCA9IHRoaXMuZGVwZW5kZW50cy5pbmRleE9mKGRlcGVuZGVudCk7XHJcbiAgICB0aGlzLnNob3dBZGREZXBlbmRlbnRQb3B1cCA9IHRydWU7XHJcbiAgfVxyXG5cclxuICBlZGl0RHVwbGljYXRlRGVwZW5kZW50KCl7XHJcbiAgICB0aGlzLnNob3dEdXBsaWNhdGVQb3B1cCA9IGZhbHNlO1xyXG4gICAgdGhpcy5zaG93QWRkRGVwZW5kZW50UG9wdXAgPSB0cnVlO1xyXG4gIH1cclxuXHJcbiAgZGVsZXRlRGVwZW5kZW50KGRlcGVuZGVudCA6IERlcGVuZGVudE1vZGVsKXtcclxuICAgIGxldCBpbmRleCA9IHRoaXMuZGVwZW5kZW50cy5pbmRleE9mKGRlcGVuZGVudCk7XHJcbiAgICBpZihkZXBlbmRlbnQuZGVwZW5kZW50SWQpe1xyXG4gICAgICBkZXBlbmRlbnQubWFya0ZvckRlbGV0aW9uID0gdHJ1ZTtcclxuICAgICAgdGhpcy5kZXBlbmRlbnRzW2luZGV4XSA9IGRlcGVuZGVudDtcclxuICAgIH1lbHNlIHtcclxuICAgICAgdGhpcy5kZXBlbmRlbnRzLnNwbGljZShpbmRleCwgMSk7XHJcbiAgICB9XHJcbiAgICB0aGlzLnB1Ymxpc2hEZXBlbmRlbnRzKCk7XHJcbiAgfVxyXG5cclxuICBjbG9zZSgpe1xyXG4gICAgdGhpcy5zaG93QWRkRGVwZW5kZW50UG9wdXAgPSBmYWxzZTtcclxuICAgIHRoaXMuaW5kZXhUb0VkaXQgPSBudWxsO1xyXG4gICAgdGhpcy5zZWxlY3RlZERlcGVuZGVudCA9IG51bGw7XHJcbiAgICB0aGlzLnNob3dEdXBsaWNhdGVQb3B1cCA9IGZhbHNlO1xyXG4gIH1cclxuXHJcbiAgY2hlY2tGb3JEdXBsaWNhdGUoZGVwZW5kZW50IDogRGVwZW5kZW50TW9kZWwpIHtcclxuICAgIGlmKHRoaXMuZGVwZW5kZW50cyl7XHJcbiAgICAgIGxldCBkZXBlbmRlbnRzID0gdGhpcy5kZXBlbmRlbnRzLmZpbHRlcihkID0+IHtcclxuICAgICAgICBpZih0aGlzLmluZGV4VG9FZGl0ID09IHRoaXMuZGVwZW5kZW50cy5pbmRleE9mKGQpKXtcclxuICAgICAgICAgIHJldHVybiBmYWxzZTtcclxuICAgICAgICB9XHJcbiAgICAgICAgbGV0IHJlc3VsdCA9IChkZXBlbmRlbnQuZGVwZW5kZW50U1NOICYmIGQuZGVwZW5kZW50U1NOICYmIGRlcGVuZGVudC5kZXBlbmRlbnRTU04gPT0gZC5kZXBlbmRlbnRTU04pIFxyXG4gICAgICAgIHx8IFxyXG4gICAgICAgIChcclxuICAgICAgICAgIGRlcGVuZGVudC5kZXBlbmRlbnREYXRlT2ZCaXJ0aCA9PT0gZC5kZXBlbmRlbnREYXRlT2ZCaXJ0aCAmJiBcclxuICAgICAgICAgIGRlcGVuZGVudC5kZXBlbmRlbnRGaXJzdE5hbWUgPT09IGQuZGVwZW5kZW50Rmlyc3ROYW1lICYmIFxyXG4gICAgICAgICAgZGVwZW5kZW50LmRlcGVuZGVudExhc3ROYW1lID09PSBkLmRlcGVuZGVudExhc3ROYW1lXHJcbiAgICAgICAgKVxyXG4gICAgICAgIHJldHVybiByZXN1bHQ7XHJcbiAgICAgIH0pO1xyXG4gICAgICByZXR1cm4gZGVwZW5kZW50cy5sZW5ndGggPiAwO1xyXG4gICAgfSBlbHNle1xyXG4gICAgICByZXR1cm4gZmFsc2U7XHJcbiAgICB9XHJcbiAgfVxyXG5cclxufVxyXG5cclxuXHJcblxyXG4iLCI8ZGl2IHN0eWxlPVwibWFyZ2luLWxlZnQ6IC01cHg7XCI+XHJcbiAgICA8cC10YWJsZSAjZHQgW3Jvd0hvdmVyXT1cInRydWVcIiBzdHlsZUNsYXNzPVwicC1kYXRhdGFibGUtc3RyaXBlZCBhcHAtZGF0YXRhYmxlIGlvbi1wYWRkaW5nLXRvcFwiIFt2YWx1ZV09XCJkZXBlbmRlbnRzXCI+XHJcbiAgICAgICAgPG5nLXRlbXBsYXRlIHBUZW1wbGF0ZT1cImhlYWRlclwiIGxldC1jb2x1bW5zPlxyXG4gICAgICAgICAgICA8dHI+XHJcbiAgICAgICAgICAgICAgICA8dGg+XHJcbiAgICAgICAgICAgICAgICAgICAge3tcImRlcGVuZGVudC5ncmlkLmhlYWRlci5kZXBlbmRlbnRcInx0cmFuc2xhdGV9fVxyXG4gICAgICAgICAgICAgICAgPC90aD5cclxuICAgICAgICAgICAgICAgIDx0aD5cclxuICAgICAgICAgICAgICAgICAgICB7e1wiZGVwZW5kZW50LmdyaWQuaGVhZGVyLnNzblwifHRyYW5zbGF0ZX19XHJcbiAgICAgICAgICAgICAgICA8L3RoPlxyXG4gICAgICAgICAgICAgICAgPHRoPlxyXG4gICAgICAgICAgICAgICAgICAgIHt7XCJkZXBlbmRlbnQuZ3JpZC5oZWFkZXIucmVsYXRpb25zaGlwXCJ8dHJhbnNsYXRlfX1cclxuICAgICAgICAgICAgICAgIDwvdGg+XHJcbiAgICAgICAgICAgICAgICA8dGg+XHJcbiAgICAgICAgICAgICAgICAgICAgXHJcbiAgICAgICAgICAgICAgICA8L3RoPlxyXG4gICAgICAgICAgICA8L3RyPlxyXG4gICAgICAgIDwvbmctdGVtcGxhdGU+XHJcblxyXG4gICAgICAgIDxuZy10ZW1wbGF0ZSBwVGVtcGxhdGU9XCJib2R5XCIgbGV0LWRlcGVuZGVudCBsZXQtcm93SW5kZXg9XCJyb3dJbmRleFwiPlxyXG4gICAgICAgICAgICA8dHIgY2xhc3M9XCJpb24tcGFkZGluZy10b3AgaW9uLXBhZGRpbmctYm90dG9tXCIgW25nQ2xhc3NdPVwiZGVwZW5kZW50Lm1hcmtGb3JEZWxldGlvbiA/ICdzdHJpa2V0aHJvdWdoJyA6IG51bGxcIj5cclxuICAgICAgICAgICAgICAgIDx0ZD5cclxuICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz1cInAtY29sdW1uLXRpdGxlXCI+e3tcImRlcGVuZGVudC5ncmlkLmhlYWRlci5kZXBlbmRlbnRcInx0cmFuc2xhdGV9fTwvc3Bhbj5cclxuICAgICAgICAgICAgICAgICAgICB7e2RlcGVuZGVudC5kZXBlbmRlbnRGaXJzdE5hbWV9fSB7e2RlcGVuZGVudC5kZXBlbmRlbnRMYXN0TmFtZX19IDxici8+XHJcbiAgICAgICAgICAgICAgICAgICAgPHNwYW4gc3R5bGU9XCJmb250LXNpemU6IDEycHg7XCI+e3tkZXBlbmRlbnQuZGVwZW5kZW50RGF0ZU9mQmlydGggfCBkYXRlOidNTU1NIGQsIHknfX08L3NwYW4+XHJcbiAgICAgICAgICAgICAgICA8L3RkPlxyXG4gICAgICAgICAgICAgICAgPHRkPlxyXG4gICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwicC1jb2x1bW4tdGl0bGVcIj57e1wiZGVwZW5kZW50LmdyaWQuaGVhZGVyLnNzblwifHRyYW5zbGF0ZX19PC9zcGFuPlxyXG4gICAgICAgICAgICAgICAgICAgIDxhcHAtc3NuIFtzc25dPVwiZGVwZW5kZW50LmRlcGVuZGVudFNTTlwiICpuZ0lmPVwiZGVwZW5kZW50LmRlcGVuZGVudFNTTlwiPjwvYXBwLXNzbj5cclxuICAgICAgICAgICAgICAgICAgICA8c3BhbiAqbmdJZj1cIiFkZXBlbmRlbnQuZGVwZW5kZW50U1NOXCI+LS08L3NwYW4+XHJcbiAgICAgICAgICAgICAgICA8L3RkPlxyXG4gICAgICAgICAgICAgICAgPHRkPlxyXG4gICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwicC1jb2x1bW4tdGl0bGVcIj57e1wiZGVwZW5kZW50LmdyaWQuaGVhZGVyLnJlbGF0aW9uc2hpcFwifHRyYW5zbGF0ZX19PC9zcGFuPlxyXG4gICAgICAgICAgICAgICAgICAgIHt7ZGVwZW5kZW50LnJlbGF0aW9uc2hpcD8udGV4dH19XHJcbiAgICAgICAgICAgICAgICA8L3RkPlxyXG4gICAgICAgICAgICAgICAgPHRkPlxyXG4gICAgICAgICAgICAgICAgICAgIDxpb24tYnV0dG9uIGZpbGw9XCJvdXRsaW5lXCIgc2l6ZT1cInNtYWxsXCIgY2xhc3M9XCJhY3Rpb24tYnV0dG9uXCIgKGNsaWNrKT1cImVkaXREZXBlbmRlbnQoZGVwZW5kZW50KVwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICA8ZmEtaWNvbiBbaWNvbl09XCJbJ2ZhbCcsICdlZGl0J11cIiBjbGFzcz1cImFjdGlvbi1pY29uXCI+PC9mYS1pY29uPlxyXG4gICAgICAgICAgICAgICAgICAgIDwvaW9uLWJ1dHRvbj5cclxuICAgICAgICAgICAgICAgICAgICA8aW9uLWJ1dHRvbiBmaWxsPVwib3V0bGluZVwiIHNpemU9XCJzbWFsbFwiIGNsYXNzPVwiYWN0aW9uLWJ1dHRvblwiIChjbGljayk9XCJkZWxldGVEZXBlbmRlbnQoZGVwZW5kZW50KVwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICA8ZmEtaWNvbiBbaWNvbl09XCJbJ2ZhbCcsICd0cmFzaC1hbHQnXVwiIGNsYXNzPVwiYWN0aW9uLWljb25cIj48L2ZhLWljb24+XHJcbiAgICAgICAgICAgICAgICAgICAgPC9pb24tYnV0dG9uPlxyXG4gICAgICAgICAgICAgICAgPC90ZD5cclxuICAgICAgICAgICAgPC90cj5cclxuICAgICAgICA8L25nLXRlbXBsYXRlPlxyXG5cclxuICAgICAgICA8bmctdGVtcGxhdGUgcFRlbXBsYXRlPVwic3VtbWFyeVwiIGxldC1jb2x1bW5zPlxyXG4gICAgICAgICAgICA8dGFibGU+XHJcbiAgICAgICAgICAgICAgPHRyPlxyXG4gICAgICAgICAgICAgICAgPHRkIFthdHRyLmNvbHNwYW5dPVwiMlwiIHN0eWxlPVwid2lkdGg6IDQwJTtcIj5cclxuICAgICAgICAgICAgICAgICAgPGRpdiBbaW5uZXJIdG1sXT1cIidkZXBlbmRlbnQuZ3JpZC5mb290ZXIubGFiZWwnIHwgdHJhbnNsYXRlIHwgdHJ1c3RIdG1sXCI+PC9kaXY+XHJcbiAgICAgICAgICAgICAgICA8L3RkPlxyXG4gICAgICAgICAgICAgICAgPHRkIHN0eWxlPVwid2lkdGg6IDkuNzUlOyB0ZXh0LWFsaWduOiByaWdodDtcIj5cclxuICAgICAgICAgICAgICAgICAgPGlvbi1idXR0b24gZmlsbD1cIm91dGxpbmVcIiBzaXplPVwic21hbGxcIiBjbGFzcz1cImFjdGlvbi1idXR0b25cIiAoY2xpY2spPVwic2hvd0FkZERlcGVuZGVudFBvcHVwID0gIXNob3dBZGREZXBlbmRlbnRQb3B1cFwiIGNsYXNzPVwiYWN0aW9uLWJ1dHRvblwiIGFyaWEtbGFiZWw9XCJBZGQgZW1wbG95ZXJcIiBbaWRdPVwiJ2J0bkFkZERlcGVuZGVudCdcIj5cclxuICAgICAgICAgICAgICAgICAgICA8ZmEtaWNvbiBbaWNvbl09XCJbJ2ZhbCcsICdwbHVzJ11cIiBjbGFzcz1cImFjdGlvbi1pY29uXCI+PC9mYS1pY29uPlxyXG4gICAgICAgICAgICAgICAgICA8L2lvbi1idXR0b24+XHJcbiAgICAgICAgICAgICAgICA8L3RkPlxyXG4gICAgICAgICAgICAgICAgPHRkIGNvbHNwYW49XCI0XCI+Jm5ic3A7PC90ZD5cclxuICAgICAgICAgICAgICA8L3RyPlxyXG4gICAgICAgICAgICA8L3RhYmxlPlxyXG4gICAgICAgICAgPC9uZy10ZW1wbGF0ZT5cclxuXHJcbiAgICA8L3AtdGFibGU+XHJcblxyXG4gICAgPGRpdiBjbGFzcz1cImlvbi10ZXh0LWNlbnRlciBpb24taGlkZS14bC11cCBpb24taGlkZS1sZy11cCBpb24taGlkZS1tZC11cFwiPlxyXG4gICAgICAgIDxpb24tYnV0dG9uIHNoYXBlPVwicm91bmRcIiBjb2xvcj1cInN1Y2Nlc3NcIiBmaWxsPVwib3V0bGluZVwiXHJcbiAgICAgICAgICAgIChjbGljayk9XCJzaG93QWRkRGVwZW5kZW50UG9wdXAgPSAhc2hvd0FkZERlcGVuZGVudFBvcHVwXCI+XHJcbiAgICAgICAgICAgIHt7XCJkZXBlbmRlbnQuZ3JpZC5oZWFkZXIuYWRkXCJ8dHJhbnNsYXRlfX1cclxuICAgICAgICA8L2lvbi1idXR0b24+XHJcbiAgICA8L2Rpdj5cclxuXHJcbiAgICA8YXBwLW11bHRpLXF1ZXN0aW9ubmFpcmUgW3FlUXVlcnlNb2RlbHNdPVwicWVRdWVyeU1vZGVsc1wiIFthdXRvU2F2ZV09XCJmYWxzZVwiICpuZ0lmPVwic2hvd0FkZERlcGVuZGVudFBvcHVwXCJcclxuICAgICAgICAob25Db21wbGV0ZSk9XCJhZGREZXBlbmRlbnQoJGV2ZW50KVwiIChtb2RlbENhbmNlbCk9XCJjbG9zZSgpXCIgW2Zvcm1EYXRhXT1cInNlbGVjdGVkRGVwZW5kZW50XCI+XHJcbiAgICA8L2FwcC1tdWx0aS1xdWVzdGlvbm5haXJlPlxyXG5cclxuICAgIDxwLWRpYWxvZyBbdmlzaWJsZV09XCJzaG93RHVwbGljYXRlUG9wdXBcIiBbbW9kYWxdPVwidHJ1ZVwiIGFwcGVuZFRvPVwiYm9keVwiIHBvc2l0aW9uPVwidG9wXCIgW2JyZWFrcG9pbnRzXT1cInsnMTIwMHB4JzogJzY2MHB4JywgJzk5MnB4JzogJzY2MHB4JywgJzc2OHB4JzogJzY2MHB4JywgJzU3NnB4JzogJzEwMHZ3J31cIiBbc3R5bGVdPVwie3dpZHRoOiAnNDV2dyd9XCJcclxuICAgIFtiYXNlWkluZGV4XT1cIjUwMDBcIiBbZHJhZ2dhYmxlXT1cImZhbHNlXCIgW3Jlc2l6YWJsZV09XCJmYWxzZVwiIGFwcGVuZFRvPVwiYm9keVwiIGNsb3NlT25Fc2NhcGU9XCJmYWxzZVwiPlxyXG4gICAgICAgIDxoNCBjbGFzcz1cImhlYWRpbmdcIj5EdXBsaWNhdGUgZGVwZW5kZW50IG5vdCBhbGxvd2VkPC9oND5cclxuICAgICAgICA8aW9uLWxhYmVsPkl0IHNlZW1zIGxpa2UgeW91IGhhdmUgYWRkZWQgYSBkZXBlbmRlbnQgdGhhdCBoYXMgYmVlbiBhZGRlZCBhbHJlYWR5LiBQbGVhc2UgY2hlY2sgZGV0YWlscyBhbmQgdHJ5IGFkZGluZyBkZXBlbmRlbnQgYWdhaW4uPC9pb24tbGFiZWw+XHJcbiAgICAgICAgPG5nLXRlbXBsYXRlIHBUZW1wbGF0ZT1cImZvb3RlclwiPlxyXG4gICAgICAgICAgICA8aW9uLWJ1dHRvbiBzaGFwZT1cInJvdW5kXCIgc2l6ZT1cInNtYWxsXCIgdHlwZT1cInN1Ym1pdFwiIGZpbGw9XCJvdXRsaW5lXCIgKGNsaWNrKT1cImNsb3NlKClcIj5cclxuICAgICAgICAgICAgICAgIENsb3NlXHJcbiAgICAgICAgICAgIDwvaW9uLWJ1dHRvbj5cclxuICAgICAgICAgICAgPGlvbi1idXR0b24gc2hhcGU9XCJyb3VuZFwiIHNpemU9XCJzbWFsbFwiIHR5cGU9XCJzdWJtaXRcIiBmaWxsPVwic29saWRcIiAoY2xpY2spPVwiZWRpdER1cGxpY2F0ZURlcGVuZGVudCgpXCI+XHJcbiAgICAgICAgICAgICAgICBFZGl0XHJcbiAgICAgICAgICAgIDwvaW9uLWJ1dHRvbj5cclxuICAgICAgICA8L25nLXRlbXBsYXRlPlxyXG4gICAgPC9wLWRpYWxvZz5cclxuPC9kaXY+Il19
@@ -0,0 +1,60 @@
1
+ import { Component } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "@ionic/storage-angular";
4
+ import * as i2 from "@ionic/angular";
5
+ import * as i3 from "primeng/api";
6
+ import * as i4 from "primeng/dialog";
7
+ import * as i5 from "@ngx-translate/core";
8
+ const _c0 = () => ({ width: "45vw" });
9
+ const _c1 = () => ({ "1200px": "660px", "992px": "660px", "768px": "660px", "576px": "100vw" });
10
+ export class DisclosureComponent {
11
+ constructor(storage) {
12
+ this.storage = storage;
13
+ this.showDisclosure = false;
14
+ }
15
+ async ngOnInit() {
16
+ this.showDisclosure = await this.storage.get('show_disclosure') == 'true';
17
+ }
18
+ updateDisclosureStatus() {
19
+ this.showDisclosure = false;
20
+ this.storage.set('show_disclosure', 'false');
21
+ }
22
+ static { this.ɵfac = function DisclosureComponent_Factory(t) { return new (t || DisclosureComponent)(i0.ɵɵdirectiveInject(i1.Storage)); }; }
23
+ static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: DisclosureComponent, selectors: [["app-disclosure"]], decls: 17, vars: 19, consts: [["appendTo", "body", "position", "top", "appendTo", "body", "closeOnEscape", "false", 3, "visible", "modal", "breakpoints", "baseZIndex", "draggable", "resizable", "visibleChange"], [1, "heading"], [1, "ion-padding-top", "full-height"], [1, "ion-text-center"], [1, "ion-text-justify"], ["shape", "round", "type", "submit", "color", "success", 3, "click"], ["slot", "start", "name", "checkmark-sharp"]], template: function DisclosureComponent_Template(rf, ctx) { if (rf & 1) {
24
+ i0.ɵɵelementStart(0, "p-dialog", 0);
25
+ i0.ɵɵlistener("visibleChange", function DisclosureComponent_Template_p_dialog_visibleChange_0_listener($event) { return ctx.showDisclosure = $event; });
26
+ i0.ɵɵelementStart(1, "h4", 1);
27
+ i0.ɵɵtext(2);
28
+ i0.ɵɵpipe(3, "translate");
29
+ i0.ɵɵelementEnd();
30
+ i0.ɵɵelementStart(4, "div", 2)(5, "div", 3);
31
+ i0.ɵɵtext(6);
32
+ i0.ɵɵpipe(7, "translate");
33
+ i0.ɵɵelementEnd();
34
+ i0.ɵɵelement(8, "br");
35
+ i0.ɵɵelementStart(9, "div", 4);
36
+ i0.ɵɵtext(10);
37
+ i0.ɵɵpipe(11, "translate");
38
+ i0.ɵɵelementEnd()();
39
+ i0.ɵɵelementStart(12, "p-footer")(13, "div", 3)(14, "ion-button", 5);
40
+ i0.ɵɵlistener("click", function DisclosureComponent_Template_ion_button_click_14_listener() { return ctx.updateDisclosureStatus(); });
41
+ i0.ɵɵelement(15, "ion-icon", 6);
42
+ i0.ɵɵtext(16, " Ok ");
43
+ i0.ɵɵelementEnd()()()();
44
+ } if (rf & 2) {
45
+ i0.ɵɵstyleMap(i0.ɵɵpureFunction0(17, _c0));
46
+ i0.ɵɵproperty("visible", ctx.showDisclosure)("modal", true)("breakpoints", i0.ɵɵpureFunction0(18, _c1))("baseZIndex", 5000)("draggable", false)("resizable", false);
47
+ i0.ɵɵadvance(2);
48
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(3, 11, "DISCLOSURE"));
49
+ i0.ɵɵadvance(4);
50
+ i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(7, 13, "disclosure.heading"), " ");
51
+ i0.ɵɵadvance(4);
52
+ i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(11, 15, "disclosure.content"), " ");
53
+ } }, dependencies: [i2.IonButton, i2.IonIcon, i3.Footer, i4.Dialog, i5.TranslatePipe] }); }
54
+ }
55
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(DisclosureComponent, [{
56
+ type: Component,
57
+ args: [{ selector: 'app-disclosure', template: "<p-dialog [(visible)]=\"showDisclosure\" [modal]=\"true\" appendTo=\"body\" position=\"top\" [breakpoints]=\"{'1200px': '660px', '992px': '660px', '768px': '660px', '576px': '100vw'}\" [style]=\"{width: '45vw'}\"\r\n[baseZIndex]=\"5000\" [draggable]=\"false\" [resizable]=\"false\" appendTo=\"body\" closeOnEscape=\"false\">\r\n <h4 class=\"heading\">{{'DISCLOSURE' | translate}}</h4>\r\n <div class=\"ion-padding-top full-height\">\r\n <div class=\"ion-text-center\">\r\n {{'disclosure.heading' | translate}}\r\n </div>\r\n <br/>\r\n <div class=\"ion-text-justify\">\r\n {{'disclosure.content' | translate}}\r\n </div>\r\n </div>\r\n <p-footer>\r\n <div class=\"ion-text-center\">\r\n <ion-button shape=\"round\" type=\"submit\" (click)=\"updateDisclosureStatus()\" color=\"success\">\r\n <ion-icon slot=\"start\" name=\"checkmark-sharp\"></ion-icon>\r\n Ok\r\n </ion-button>\r\n </div>\r\n </p-footer>\r\n </p-dialog>\r\n " }]
58
+ }], () => [{ type: i1.Storage }], null); })();
59
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(DisclosureComponent, { className: "DisclosureComponent", filePath: "lib\\components\\disclosure\\disclosure.component.ts", lineNumber: 9 }); })();
60
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGlzY2xvc3VyZS5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9uZ3gtcmV1c2EtYXBwLWxpYi9zcmMvbGliL2NvbXBvbmVudHMvZGlzY2xvc3VyZS9kaXNjbG9zdXJlLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL25neC1yZXVzYS1hcHAtbGliL3NyYy9saWIvY29tcG9uZW50cy9kaXNjbG9zdXJlL2Rpc2Nsb3N1cmUuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBVSxNQUFNLGVBQWUsQ0FBQzs7Ozs7Ozs7O0FBUWxELE1BQU0sT0FBTyxtQkFBbUI7SUFJOUIsWUFBb0IsT0FBZ0I7UUFBaEIsWUFBTyxHQUFQLE9BQU8sQ0FBUztRQUY3QixtQkFBYyxHQUFHLEtBQUssQ0FBQztJQUVVLENBQUM7SUFFekMsS0FBSyxDQUFDLFFBQVE7UUFDWixJQUFJLENBQUMsY0FBYyxHQUFHLE1BQU0sSUFBSSxDQUFDLE9BQU8sQ0FBQyxHQUFHLENBQUMsaUJBQWlCLENBQUMsSUFBSSxNQUFNLENBQUM7SUFDNUUsQ0FBQztJQUVELHNCQUFzQjtRQUNwQixJQUFJLENBQUMsY0FBYyxHQUFHLEtBQUssQ0FBQztRQUM1QixJQUFJLENBQUMsT0FBTyxDQUFDLEdBQUcsQ0FBQyxpQkFBaUIsRUFBRSxPQUFPLENBQUMsQ0FBQztJQUMvQyxDQUFDO29GQWJVLG1CQUFtQjtvRUFBbkIsbUJBQW1CO1lDUmhDLG1DQUNrRztZQUR4Rix1SkFBNEI7WUFFbEMsNkJBQW9CO1lBQUEsWUFBNEI7O1lBQUEsaUJBQUs7WUFDckQsOEJBQXlDLGFBQUE7WUFFckMsWUFDRjs7WUFBQSxpQkFBTTtZQUNOLHFCQUFLO1lBQ0wsOEJBQThCO1lBQzVCLGFBQ0Y7O1lBQUEsaUJBQU0sRUFBQTtZQUVSLGlDQUFVLGNBQUEscUJBQUE7WUFFa0MscUdBQVMsNEJBQXdCLElBQUM7WUFDeEUsK0JBQXlEO1lBQ3pELHFCQUNGO1lBQUEsaUJBQWEsRUFBQSxFQUFBLEVBQUE7O1lBakIwSiwwQ0FBeUI7WUFBOUwsNENBQTRCLGVBQUEsNENBQUEsb0JBQUEsb0JBQUEsb0JBQUE7WUFFZCxlQUE0QjtZQUE1Qix5REFBNEI7WUFHNUMsZUFDRjtZQURFLDRFQUNGO1lBR0UsZUFDRjtZQURFLDZFQUNGOzs7aUZERk8sbUJBQW1CO2NBTC9CLFNBQVM7MkJBQ0UsZ0JBQWdCOztrRkFJZixtQkFBbUIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIE9uSW5pdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBTdG9yYWdlIH0gZnJvbSAnQGlvbmljL3N0b3JhZ2UtYW5ndWxhcic7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICBzZWxlY3RvcjogJ2FwcC1kaXNjbG9zdXJlJyxcclxuICB0ZW1wbGF0ZVVybDogJy4vZGlzY2xvc3VyZS5jb21wb25lbnQuaHRtbCcsXHJcbiAgc3R5bGVVcmxzOiBbJy4vZGlzY2xvc3VyZS5jb21wb25lbnQuc2NzcyddLFxyXG59KVxyXG5leHBvcnQgY2xhc3MgRGlzY2xvc3VyZUNvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XHJcblxyXG4gIHB1YmxpYyBzaG93RGlzY2xvc3VyZSA9IGZhbHNlO1xyXG4gIFxyXG4gIGNvbnN0cnVjdG9yKHByaXZhdGUgc3RvcmFnZTogU3RvcmFnZSkgeyB9XHJcblxyXG4gIGFzeW5jIG5nT25Jbml0KCkge1xyXG4gICAgdGhpcy5zaG93RGlzY2xvc3VyZSA9IGF3YWl0IHRoaXMuc3RvcmFnZS5nZXQoJ3Nob3dfZGlzY2xvc3VyZScpID09ICd0cnVlJztcclxuICB9XHJcblxyXG4gIHVwZGF0ZURpc2Nsb3N1cmVTdGF0dXMoKXtcclxuICAgIHRoaXMuc2hvd0Rpc2Nsb3N1cmUgPSBmYWxzZTtcclxuICAgIHRoaXMuc3RvcmFnZS5zZXQoJ3Nob3dfZGlzY2xvc3VyZScsICdmYWxzZScpO1xyXG4gIH1cclxufVxyXG4iLCI8cC1kaWFsb2cgWyh2aXNpYmxlKV09XCJzaG93RGlzY2xvc3VyZVwiIFttb2RhbF09XCJ0cnVlXCIgYXBwZW5kVG89XCJib2R5XCIgcG9zaXRpb249XCJ0b3BcIiBbYnJlYWtwb2ludHNdPVwieycxMjAwcHgnOiAnNjYwcHgnLCAnOTkycHgnOiAnNjYwcHgnLCAnNzY4cHgnOiAnNjYwcHgnLCAnNTc2cHgnOiAnMTAwdncnfVwiIFtzdHlsZV09XCJ7d2lkdGg6ICc0NXZ3J31cIlxyXG5bYmFzZVpJbmRleF09XCI1MDAwXCIgW2RyYWdnYWJsZV09XCJmYWxzZVwiIFtyZXNpemFibGVdPVwiZmFsc2VcIiBhcHBlbmRUbz1cImJvZHlcIiBjbG9zZU9uRXNjYXBlPVwiZmFsc2VcIj5cclxuICAgIDxoNCBjbGFzcz1cImhlYWRpbmdcIj57eydESVNDTE9TVVJFJyB8IHRyYW5zbGF0ZX19PC9oND5cclxuICAgIDxkaXYgY2xhc3M9XCJpb24tcGFkZGluZy10b3AgZnVsbC1oZWlnaHRcIj5cclxuICAgICAgPGRpdiBjbGFzcz1cImlvbi10ZXh0LWNlbnRlclwiPlxyXG4gICAgICAgIHt7J2Rpc2Nsb3N1cmUuaGVhZGluZycgfCB0cmFuc2xhdGV9fVxyXG4gICAgICA8L2Rpdj5cclxuICAgICAgPGJyLz5cclxuICAgICAgPGRpdiBjbGFzcz1cImlvbi10ZXh0LWp1c3RpZnlcIj5cclxuICAgICAgICB7eydkaXNjbG9zdXJlLmNvbnRlbnQnIHwgdHJhbnNsYXRlfX1cclxuICAgICAgPC9kaXY+XHJcbiAgICA8L2Rpdj5cclxuICAgIDxwLWZvb3Rlcj5cclxuICAgICAgPGRpdiBjbGFzcz1cImlvbi10ZXh0LWNlbnRlclwiPlxyXG4gICAgICAgIDxpb24tYnV0dG9uIHNoYXBlPVwicm91bmRcIiB0eXBlPVwic3VibWl0XCIgKGNsaWNrKT1cInVwZGF0ZURpc2Nsb3N1cmVTdGF0dXMoKVwiIGNvbG9yPVwic3VjY2Vzc1wiPlxyXG4gICAgICAgICAgPGlvbi1pY29uIHNsb3Q9XCJzdGFydFwiIG5hbWU9XCJjaGVja21hcmstc2hhcnBcIj48L2lvbi1pY29uPlxyXG4gICAgICAgICAgT2tcclxuICAgICAgICA8L2lvbi1idXR0b24+XHJcbiAgICAgIDwvZGl2PlxyXG4gICAgPC9wLWZvb3Rlcj5cclxuICA8L3AtZGlhbG9nPlxyXG4gICJdfQ==