@hmcts/ccd-case-ui-toolkit 7.0.21-CVE-fix → 7.0.21-accessibility

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 (1081) hide show
  1. package/esm2020/lib/app.config.mjs +45 -0
  2. package/esm2020/lib/components/banners/alert/alert-icon-class.pipe.mjs +25 -0
  3. package/esm2020/lib/components/banners/alert/alert.component.mjs +95 -0
  4. package/esm2020/lib/components/banners/alert/alert.module.mjs +32 -0
  5. package/esm2020/lib/components/banners/banners.module.mjs +32 -0
  6. package/esm2020/lib/components/banners/notification-banner/notification-banner.component.mjs +120 -0
  7. package/esm2020/lib/components/banners/notification-banner/notification-banner.module.mjs +19 -0
  8. package/esm2020/lib/components/body/body.component.mjs +20 -0
  9. package/esm2020/lib/components/body/body.module.mjs +20 -0
  10. package/esm2020/lib/components/footer/footer.component.mjs +105 -0
  11. package/esm2020/lib/components/footer/footers.module.mjs +25 -0
  12. package/esm2020/lib/components/form/date-input/date-input.component.mjs +331 -0
  13. package/esm2020/lib/components/form/form.module.mjs +29 -0
  14. package/esm2020/lib/components/header/header-bar/header-bar.component.mjs +97 -0
  15. package/esm2020/lib/components/header/headers.module.mjs +25 -0
  16. package/esm2020/lib/components/header/navigation/navigation-item.component.mjs +41 -0
  17. package/esm2020/lib/components/header/navigation/navigation.component.mjs +24 -0
  18. package/esm2020/lib/components/header/phase/phase.component.mjs +45 -0
  19. package/esm2020/lib/components/tabs/tab.component.mjs +28 -0
  20. package/esm2020/lib/components/tabs/tabs.component.mjs +79 -0
  21. package/esm2020/lib/components/tabs/tabs.module.mjs +38 -0
  22. package/esm2020/lib/shared/commons/address-validation-constants.mjs +13 -0
  23. package/esm2020/lib/shared/commons/case-edit-data/case-edit-data.module.mjs +19 -0
  24. package/esm2020/lib/shared/commons/case-edit-data/case-edit-data.service.mjs +47 -0
  25. package/esm2020/lib/shared/commons/constants.mjs +13 -0
  26. package/esm2020/lib/shared/components/activity/activity-banner/activity-banner.component.mjs +39 -0
  27. package/esm2020/lib/shared/components/activity/activity-icon/activity-icon.component.mjs +33 -0
  28. package/esm2020/lib/shared/components/activity/activity.component.mjs +151 -0
  29. package/esm2020/lib/shared/components/activity/activity.module.mjs +55 -0
  30. package/esm2020/lib/shared/components/case-editor/case-access-utils/index.mjs +105 -0
  31. package/esm2020/lib/shared/components/case-editor/case-create/case-create.component.mjs +87 -0
  32. package/esm2020/lib/shared/components/case-editor/case-edit/case-edit.component.mjs +432 -0
  33. package/esm2020/lib/shared/components/case-editor/case-edit-confirm/case-edit-confirm.component.mjs +125 -0
  34. package/esm2020/lib/shared/components/case-editor/case-edit-form/case-edit-form.component.mjs +135 -0
  35. package/esm2020/lib/shared/components/case-editor/case-edit-generic-errors/case-edit-generic-errors.component.mjs +69 -0
  36. package/esm2020/lib/shared/components/case-editor/case-edit-page/case-edit-page.component.mjs +751 -0
  37. package/esm2020/lib/shared/components/case-editor/case-edit-submit/case-edit-submit.component.mjs +542 -0
  38. package/esm2020/lib/shared/components/case-editor/case-editor.module.mjs +213 -0
  39. package/esm2020/lib/shared/components/case-editor/case-event-completion/case-event-completion.component.mjs +86 -0
  40. package/esm2020/lib/shared/components/case-editor/case-event-completion/components/case-event-completion-task-cancelled/case-event-completion-task-cancelled.component.mjs +80 -0
  41. package/esm2020/lib/shared/components/case-editor/case-event-completion/components/case-event-completion-task-reassigned/case-event-completion-task-reassigned.component.mjs +153 -0
  42. package/esm2020/lib/shared/components/case-editor/case-progress/case-progress.component.mjs +77 -0
  43. package/esm2020/lib/shared/components/case-editor/domain/confirmation.model.mjs +21 -0
  44. package/esm2020/lib/shared/components/case-editor/domain/wizard-page-field-complex-override.model.mjs +4 -0
  45. package/esm2020/lib/shared/components/case-editor/domain/wizard-page-field.model.mjs +3 -0
  46. package/esm2020/lib/shared/components/case-editor/domain/wizard-page.model.mjs +26 -0
  47. package/esm2020/lib/shared/components/case-editor/domain/wizard.model.mjs +54 -0
  48. package/esm2020/lib/shared/components/case-editor/services/case-edit-wizard.guard.mjs +93 -0
  49. package/esm2020/lib/shared/components/case-editor/services/case-flag-state.service.mjs +19 -0
  50. package/esm2020/lib/shared/components/case-editor/services/case-worker.service.mjs +32 -0
  51. package/esm2020/lib/shared/components/case-editor/services/case.notifier.mjs +51 -0
  52. package/esm2020/lib/shared/components/case-editor/services/cases.service.mjs +294 -0
  53. package/esm2020/lib/shared/components/case-editor/services/convert-href-to-router.service.mjs +41 -0
  54. package/esm2020/lib/shared/components/case-editor/services/event-completion-state-machine.service.mjs +143 -0
  55. package/esm2020/lib/shared/components/case-editor/services/event-trigger.service.mjs +20 -0
  56. package/esm2020/lib/shared/components/case-editor/services/judicial-worker.service.mjs +32 -0
  57. package/esm2020/lib/shared/components/case-editor/services/page-validation.service.mjs +53 -0
  58. package/esm2020/lib/shared/components/case-editor/services/valid-page-list-caseFields.service.mjs +39 -0
  59. package/esm2020/lib/shared/components/case-editor/services/wizard-page-field-to-case-field.mapper.mjs +117 -0
  60. package/esm2020/lib/shared/components/case-editor/services/work-allocation.service.mjs +209 -0
  61. package/esm2020/lib/shared/components/case-header/case-header.component.mjs +61 -0
  62. package/esm2020/lib/shared/components/case-header/case-header.module.mjs +33 -0
  63. package/esm2020/lib/shared/components/case-history/case-history.component.mjs +242 -0
  64. package/esm2020/lib/shared/components/case-history/case-history.module.mjs +64 -0
  65. package/esm2020/lib/shared/components/case-history/domain/case-history.model.mjs +29 -0
  66. package/esm2020/lib/shared/components/case-history/services/case-history.service.mjs +40 -0
  67. package/esm2020/lib/shared/components/case-list/case-list.component.mjs +362 -0
  68. package/esm2020/lib/shared/components/case-list/case-list.module.mjs +47 -0
  69. package/esm2020/lib/shared/components/case-list-filters/case-list-filters.component.mjs +52 -0
  70. package/esm2020/lib/shared/components/case-list-filters/case-list-filters.module.mjs +64 -0
  71. package/esm2020/lib/shared/components/case-timeline/case-timeline.component.mjs +109 -0
  72. package/esm2020/lib/shared/components/case-timeline/case-timeline.module.mjs +52 -0
  73. package/esm2020/lib/shared/components/case-viewer/case-basic-access-view/case-basic-access-view.component.mjs +247 -0
  74. package/esm2020/lib/shared/components/case-viewer/case-challenged-access-request/case-challenged-access-request.component.mjs +298 -0
  75. package/esm2020/lib/shared/components/case-viewer/case-challenged-access-success/case-challenged-access-success.component.mjs +72 -0
  76. package/esm2020/lib/shared/components/case-viewer/case-event-trigger/case-event-trigger.component.mjs +141 -0
  77. package/esm2020/lib/shared/components/case-viewer/case-full-access-view/case-full-access-view.component.mjs +684 -0
  78. package/esm2020/lib/shared/components/case-viewer/case-review-specific-access-reject/case-review-specific-access-reject.component.mjs +58 -0
  79. package/esm2020/lib/shared/components/case-viewer/case-review-specific-access-request/case-review-specific-access-request.component.mjs +241 -0
  80. package/esm2020/lib/shared/components/case-viewer/case-specific-access-request/case-specific-access-request.component.mjs +199 -0
  81. package/esm2020/lib/shared/components/case-viewer/case-specific-access-success/case-specific-access-success.component.mjs +47 -0
  82. package/esm2020/lib/shared/components/case-viewer/case-view/case-view.component.mjs +98 -0
  83. package/esm2020/lib/shared/components/case-viewer/case-viewer.component.mjs +128 -0
  84. package/esm2020/lib/shared/components/case-viewer/case-viewer.module.mjs +191 -0
  85. package/esm2020/lib/shared/components/case-viewer/printer/case-printer.component.mjs +110 -0
  86. package/esm2020/lib/shared/components/case-viewer/printer/pipes/print-url.pipe.mjs +60 -0
  87. package/esm2020/lib/shared/components/case-viewer/services/case.resolver.mjs +131 -0
  88. package/esm2020/lib/shared/components/case-viewer/services/event-trigger.resolver.mjs +64 -0
  89. package/esm2020/lib/shared/components/create-case-filters/create-case-filters-selection.model.mjs +8 -0
  90. package/esm2020/lib/shared/components/create-case-filters/create-case-filters.component.mjs +275 -0
  91. package/esm2020/lib/shared/components/create-case-filters/create-case-filters.module.mjs +44 -0
  92. package/esm2020/lib/shared/components/dialogs/delete-or-cancel-dialog/delete-or-cancel-dialog.component.mjs +57 -0
  93. package/esm2020/lib/shared/components/dialogs/dialogs.module.mjs +51 -0
  94. package/esm2020/lib/shared/components/dialogs/document-dialog/document-dialog.component.mjs +59 -0
  95. package/esm2020/lib/shared/components/dialogs/remove-dialog/remove-dialog.component.mjs +57 -0
  96. package/esm2020/lib/shared/components/dialogs/save-or-discard-dialog/save-or-discard-dialog.component.mjs +61 -0
  97. package/esm2020/lib/shared/components/error/callback-errors.component.mjs +148 -0
  98. package/esm2020/lib/shared/components/error/domain/error-context.mjs +3 -0
  99. package/esm2020/lib/shared/components/error/errors.module.mjs +33 -0
  100. package/esm2020/lib/shared/components/error-message/error-message.component.mjs +43 -0
  101. package/esm2020/lib/shared/components/error-message/error-message.module.mjs +41 -0
  102. package/esm2020/lib/shared/components/event-start/components/multiple-tasks-exist/multiple-tasks-exist.component.mjs +59 -0
  103. package/esm2020/lib/shared/components/event-start/components/no-tasks-available/no-tasks-available.component.mjs +53 -0
  104. package/esm2020/lib/shared/components/event-start/components/task-assigned/task-assigned.component.mjs +104 -0
  105. package/esm2020/lib/shared/components/event-start/components/task-cancelled/task-cancelled.component.mjs +68 -0
  106. package/esm2020/lib/shared/components/event-start/components/task-conflict/task-conflict.component.mjs +58 -0
  107. package/esm2020/lib/shared/components/event-start/components/task-unassigned/task-unassigned.component.mjs +53 -0
  108. package/esm2020/lib/shared/components/event-start/event-guard/event-start.guard.mjs +94 -0
  109. package/esm2020/lib/shared/components/event-start/event-start.component.mjs +49 -0
  110. package/esm2020/lib/shared/components/event-start/event-start.module.mjs +71 -0
  111. package/esm2020/lib/shared/components/event-start/resolvers/event-tasks-resolver.service.mjs +29 -0
  112. package/esm2020/lib/shared/components/event-start/services/event-start-state-machine.service.mjs +168 -0
  113. package/esm2020/lib/shared/components/event-trigger/event-trigger.component.mjs +111 -0
  114. package/esm2020/lib/shared/components/event-trigger/event-trigger.module.mjs +37 -0
  115. package/esm2020/lib/shared/components/loading-spinner/loading-spinner.component.mjs +27 -0
  116. package/esm2020/lib/shared/components/loading-spinner/loading-spinner.module.mjs +29 -0
  117. package/esm2020/lib/shared/components/pagination/pagination.component.mjs +262 -0
  118. package/esm2020/lib/shared/components/pagination/pagination.module.mjs +35 -0
  119. package/esm2020/lib/shared/components/palette/address/address-option.model.mjs +21 -0
  120. package/esm2020/lib/shared/components/palette/address/write-address-field.component.mjs +282 -0
  121. package/esm2020/lib/shared/components/palette/base-field/abstract-field-read.component.mjs +31 -0
  122. package/esm2020/lib/shared/components/palette/base-field/abstract-field-write.component.mjs +44 -0
  123. package/esm2020/lib/shared/components/palette/base-field/abstract-form-field.component.mjs +83 -0
  124. package/esm2020/lib/shared/components/palette/base-field/field-read-label.component.mjs +86 -0
  125. package/esm2020/lib/shared/components/palette/base-field/field-read.component.mjs +85 -0
  126. package/esm2020/lib/shared/components/palette/base-field/field-write.component.mjs +74 -0
  127. package/esm2020/lib/shared/components/palette/base-field/payment-field.component.mjs +35 -0
  128. package/esm2020/lib/shared/components/palette/case-file-view/case-file-view-field.component.mjs +171 -0
  129. package/esm2020/lib/shared/components/palette/case-file-view/components/case-file-view-folder/case-file-view-folder-document-actions/case-file-view-folder-document-actions.component.mjs +48 -0
  130. package/esm2020/lib/shared/components/palette/case-file-view/components/case-file-view-folder/case-file-view-folder-sort/case-file-view-folder-sort.component.mjs +48 -0
  131. package/esm2020/lib/shared/components/palette/case-file-view/components/case-file-view-folder/case-file-view-folder.component.mjs +340 -0
  132. package/esm2020/lib/shared/components/palette/case-file-view/components/case-file-view-folder-selector/case-file-view-folder-selector.component.mjs +153 -0
  133. package/esm2020/lib/shared/components/palette/case-file-view/components/shared/case-file-view-overlay-menu/case-file-view-overlay-menu.component.mjs +94 -0
  134. package/esm2020/lib/shared/components/palette/case-flag/components/add-comments/add-comments.component.mjs +190 -0
  135. package/esm2020/lib/shared/components/palette/case-flag/components/case-flag-summary-list/case-flag-summary-list.component.mjs +288 -0
  136. package/esm2020/lib/shared/components/palette/case-flag/components/case-flag-table/case-flag-table.component.mjs +207 -0
  137. package/esm2020/lib/shared/components/palette/case-flag/components/confirm-flag-status/confirm-flag-status.component.mjs +165 -0
  138. package/esm2020/lib/shared/components/palette/case-flag/components/manage-case-flags/manage-case-flags.component.mjs +219 -0
  139. package/esm2020/lib/shared/components/palette/case-flag/components/search-language-interpreter/search-language-interpreter.component.mjs +306 -0
  140. package/esm2020/lib/shared/components/palette/case-flag/components/select-flag-location/select-flag-location.component.mjs +200 -0
  141. package/esm2020/lib/shared/components/palette/case-flag/components/select-flag-type/select-flag-type.component.mjs +343 -0
  142. package/esm2020/lib/shared/components/palette/case-flag/components/update-flag/update-flag-add-translation-form/update-flag-add-translation-form.component.mjs +267 -0
  143. package/esm2020/lib/shared/components/palette/case-flag/components/update-flag/update-flag.component.mjs +510 -0
  144. package/esm2020/lib/shared/components/palette/case-flag/pipes/flag-field-display.pipe.mjs +41 -0
  145. package/esm2020/lib/shared/components/palette/case-flag/pipes/language-interpreter-display.pipe.mjs +41 -0
  146. package/esm2020/lib/shared/components/palette/case-flag/pipes/manage-case-flags-label-display.pipe.mjs +109 -0
  147. package/esm2020/lib/shared/components/palette/case-flag/pipes/update-flag-title-display.pipe.mjs +77 -0
  148. package/esm2020/lib/shared/components/palette/case-flag/read-case-flag-field.component.mjs +246 -0
  149. package/esm2020/lib/shared/components/palette/case-flag/write-case-flag-field.component.mjs +686 -0
  150. package/esm2020/lib/shared/components/palette/case-link/read-case-link-field.component.mjs +32 -0
  151. package/esm2020/lib/shared/components/palette/case-link/write-case-link-field.component.mjs +122 -0
  152. package/esm2020/lib/shared/components/palette/collection/collection-create-checker.service.mjs +42 -0
  153. package/esm2020/lib/shared/components/palette/collection/read-collection-field.component.mjs +81 -0
  154. package/esm2020/lib/shared/components/palette/collection/write-collection-field.component.mjs +443 -0
  155. package/esm2020/lib/shared/components/palette/complex/read-complex-field-collection-table.component.mjs +379 -0
  156. package/esm2020/lib/shared/components/palette/complex/read-complex-field-raw.component.mjs +53 -0
  157. package/esm2020/lib/shared/components/palette/complex/read-complex-field-table.component.mjs +78 -0
  158. package/esm2020/lib/shared/components/palette/complex/read-complex-field.component.mjs +73 -0
  159. package/esm2020/lib/shared/components/palette/complex/write-complex-field.component.mjs +171 -0
  160. package/esm2020/lib/shared/components/palette/date/read-date-field.component.mjs +28 -0
  161. package/esm2020/lib/shared/components/palette/date/write-date-container-field.component.mjs +33 -0
  162. package/esm2020/lib/shared/components/palette/date/write-date-field.component.mjs +76 -0
  163. package/esm2020/lib/shared/components/palette/datetime-picker/datetime-picker.component.mjs +309 -0
  164. package/esm2020/lib/shared/components/palette/document/document-url.pipe.mjs +24 -0
  165. package/esm2020/lib/shared/components/palette/document/file-upload-progress.guard.mjs +29 -0
  166. package/esm2020/lib/shared/components/palette/document/file-upload-state.service.mjs +16 -0
  167. package/esm2020/lib/shared/components/palette/document/read-document-field.component.mjs +81 -0
  168. package/esm2020/lib/shared/components/palette/document/write-document-field.component.mjs +383 -0
  169. package/esm2020/lib/shared/components/palette/dynamic-list/dynamic-list.pipe.mjs +18 -0
  170. package/esm2020/lib/shared/components/palette/dynamic-list/read-dynamic-list-field.component.mjs +36 -0
  171. package/esm2020/lib/shared/components/palette/dynamic-list/write-dynamic-list-field.component.mjs +124 -0
  172. package/esm2020/lib/shared/components/palette/dynamic-multi-select-list/read-dynamic-multi-select-list-field.component.mjs +43 -0
  173. package/esm2020/lib/shared/components/palette/dynamic-multi-select-list/write-dynamic-multi-select-list-field.component.mjs +145 -0
  174. package/esm2020/lib/shared/components/palette/dynamic-radio-list/dynamic-radio-list.pipe.mjs +25 -0
  175. package/esm2020/lib/shared/components/palette/dynamic-radio-list/read-dynamic-radio-list-field.component.mjs +42 -0
  176. package/esm2020/lib/shared/components/palette/dynamic-radio-list/write-dynamic-radio-list-field.component.mjs +124 -0
  177. package/esm2020/lib/shared/components/palette/email/read-email-field.component.mjs +35 -0
  178. package/esm2020/lib/shared/components/palette/email/write-email-field.component.mjs +73 -0
  179. package/esm2020/lib/shared/components/palette/fixed-list/fixed-list.pipe.mjs +23 -0
  180. package/esm2020/lib/shared/components/palette/fixed-list/read-fixed-list-field.component.mjs +26 -0
  181. package/esm2020/lib/shared/components/palette/fixed-list/write-fixed-list-field.component.mjs +106 -0
  182. package/esm2020/lib/shared/components/palette/fixed-radio-list/fixed-radio-list.pipe.mjs +18 -0
  183. package/esm2020/lib/shared/components/palette/fixed-radio-list/read-fixed-radio-list-field.component.mjs +26 -0
  184. package/esm2020/lib/shared/components/palette/fixed-radio-list/write-fixed-radio-list-field.component.mjs +95 -0
  185. package/esm2020/lib/shared/components/palette/history/case-history-viewer-field.component.mjs +16 -0
  186. package/esm2020/lib/shared/components/palette/history/event-log/event-log-details.component.mjs +97 -0
  187. package/esm2020/lib/shared/components/palette/history/event-log/event-log-table.component.mjs +225 -0
  188. package/esm2020/lib/shared/components/palette/history/event-log/event-log.component.mjs +72 -0
  189. package/esm2020/lib/shared/components/palette/judicial-user/read-judicial-user-field.component.mjs +45 -0
  190. package/esm2020/lib/shared/components/palette/judicial-user/write-judicial-user-field.component.mjs +242 -0
  191. package/esm2020/lib/shared/components/palette/label/label-field.component.mjs +50 -0
  192. package/esm2020/lib/shared/components/palette/linked-cases/components/before-you-start/before-you-start.component.mjs +108 -0
  193. package/esm2020/lib/shared/components/palette/linked-cases/components/check-your-answers/check-your-answers.component.mjs +189 -0
  194. package/esm2020/lib/shared/components/palette/linked-cases/components/link-cases/link-cases.component.mjs +530 -0
  195. package/esm2020/lib/shared/components/palette/linked-cases/components/linked-cases-table/linked-cases-from-table.component.mjs +204 -0
  196. package/esm2020/lib/shared/components/palette/linked-cases/components/linked-cases-table/linked-cases-to-table.component.mjs +280 -0
  197. package/esm2020/lib/shared/components/palette/linked-cases/components/no-linked-cases/no-linked-cases.component.mjs +66 -0
  198. package/esm2020/lib/shared/components/palette/linked-cases/components/unlink-cases/unlink-cases.component.mjs +201 -0
  199. package/esm2020/lib/shared/components/palette/linked-cases/domain/linked-cases.model.mjs +22 -0
  200. package/esm2020/lib/shared/components/palette/linked-cases/read-linked-cases-field.component.mjs +163 -0
  201. package/esm2020/lib/shared/components/palette/linked-cases/services/linked-cases.service.mjs +132 -0
  202. package/esm2020/lib/shared/components/palette/linked-cases/utils/validators.utils.mjs +27 -0
  203. package/esm2020/lib/shared/components/palette/linked-cases/write-linked-cases-field.component.mjs +229 -0
  204. package/esm2020/lib/shared/components/palette/markdown/markdown-component.module.mjs +40 -0
  205. package/esm2020/lib/shared/components/palette/markdown/markdown.component.mjs +43 -0
  206. package/esm2020/lib/shared/components/palette/money-gbp/money-gbp-input.component.mjs +123 -0
  207. package/esm2020/lib/shared/components/palette/money-gbp/read-money-gbp-field.component.mjs +47 -0
  208. package/esm2020/lib/shared/components/palette/money-gbp/write-money-gbp-field.component.mjs +78 -0
  209. package/esm2020/lib/shared/components/palette/multi-select-list/read-multi-select-list-field.component.mjs +45 -0
  210. package/esm2020/lib/shared/components/palette/multi-select-list/write-multi-select-list-field.component.mjs +126 -0
  211. package/esm2020/lib/shared/components/palette/number/read-number-field.component.mjs +24 -0
  212. package/esm2020/lib/shared/components/palette/number/write-number-field.component.mjs +73 -0
  213. package/esm2020/lib/shared/components/palette/order-summary/fee-value.model.mjs +3 -0
  214. package/esm2020/lib/shared/components/palette/order-summary/fee.model.mjs +4 -0
  215. package/esm2020/lib/shared/components/palette/order-summary/order-summary.model.mjs +3 -0
  216. package/esm2020/lib/shared/components/palette/order-summary/read-order-summary-field.component.mjs +73 -0
  217. package/esm2020/lib/shared/components/palette/order-summary/read-order-summary-row.component.mjs +43 -0
  218. package/esm2020/lib/shared/components/palette/order-summary/write-order-summary-field.component.mjs +44 -0
  219. package/esm2020/lib/shared/components/palette/organisation/read-organisation-field-raw.component.mjs +83 -0
  220. package/esm2020/lib/shared/components/palette/organisation/read-organisation-field-table.component.mjs +87 -0
  221. package/esm2020/lib/shared/components/palette/organisation/read-organisation-field.component.mjs +56 -0
  222. package/esm2020/lib/shared/components/palette/organisation/write-organisation-complex-field.component.mjs +33 -0
  223. package/esm2020/lib/shared/components/palette/organisation/write-organisation-field.component.mjs +384 -0
  224. package/esm2020/lib/shared/components/palette/palette.module.mjs +738 -0
  225. package/esm2020/lib/shared/components/palette/palette.service.mjs +155 -0
  226. package/esm2020/lib/shared/components/palette/payment/case-payment-history-viewer-field.component.mjs +24 -0
  227. package/esm2020/lib/shared/components/palette/phone-uk/read-phone-uk-field.component.mjs +22 -0
  228. package/esm2020/lib/shared/components/palette/phone-uk/write-phone-uk-field.component.mjs +73 -0
  229. package/esm2020/lib/shared/components/palette/query-management/components/qualifying-questions/qualifying-question-detail/qualifying-question-detail.component.mjs +42 -0
  230. package/esm2020/lib/shared/components/palette/query-management/components/qualifying-questions/qualifying-question-options/qualifying-question-options.component.mjs +144 -0
  231. package/esm2020/lib/shared/components/palette/query-management/components/query-attachments-read/query-attachments-read.component.mjs +64 -0
  232. package/esm2020/lib/shared/components/palette/query-management/components/query-case-details-header/query-case-details-header.component.mjs +60 -0
  233. package/esm2020/lib/shared/components/palette/query-management/components/query-check-your-answers/query-check-your-answers.component.mjs +281 -0
  234. package/esm2020/lib/shared/components/palette/query-management/components/query-details/query-details.component.mjs +327 -0
  235. package/esm2020/lib/shared/components/palette/query-management/components/query-event-completion/query-event-completion.component.mjs +22 -0
  236. package/esm2020/lib/shared/components/palette/query-management/components/query-list/query-list.component.mjs +164 -0
  237. package/esm2020/lib/shared/components/palette/query-management/components/query-write/query-write-add-documents/query-write-add-documents.component.mjs +74 -0
  238. package/esm2020/lib/shared/components/palette/query-management/components/query-write/query-write-date-input/query-write-date-input.component.mjs +107 -0
  239. package/esm2020/lib/shared/components/palette/query-management/components/query-write/query-write-raise-query/query-write-raise-query.component.mjs +201 -0
  240. package/esm2020/lib/shared/components/palette/query-management/components/query-write/query-write-respond-to-query/query-write-respond-to-query.component.mjs +101 -0
  241. package/esm2020/lib/shared/components/palette/query-management/models/query-list/query-list-data/query-list-data.model.mjs +21 -0
  242. package/esm2020/lib/shared/components/palette/query-management/models/query-list/query-list-item/query-list-item.model.mjs +38 -0
  243. package/esm2020/lib/shared/components/palette/query-management/read-query-management-field.component.mjs +121 -0
  244. package/esm2020/lib/shared/components/palette/query-management/utils/query-management.utils.mjs +22 -0
  245. package/esm2020/lib/shared/components/palette/text/read-text-field.component.mjs +24 -0
  246. package/esm2020/lib/shared/components/palette/text/write-text-field.component.mjs +77 -0
  247. package/esm2020/lib/shared/components/palette/text-area/read-text-area-field.component.mjs +24 -0
  248. package/esm2020/lib/shared/components/palette/text-area/write-text-area-field.component.mjs +87 -0
  249. package/esm2020/lib/shared/components/palette/unsupported-field.component.mjs +17 -0
  250. package/esm2020/lib/shared/components/palette/utils/dash.pipe.mjs +16 -0
  251. package/esm2020/lib/shared/components/palette/utils/date.pipe.mjs +132 -0
  252. package/esm2020/lib/shared/components/palette/utils/field-label.pipe.mjs +29 -0
  253. package/esm2020/lib/shared/components/palette/utils/first-error.pipe.mjs +59 -0
  254. package/esm2020/lib/shared/components/palette/utils/is-compound.pipe.mjs +43 -0
  255. package/esm2020/lib/shared/components/palette/utils/is-mandatory.pipe.mjs +21 -0
  256. package/esm2020/lib/shared/components/palette/utils/is-read-only-and-not-collection.pipe.mjs +31 -0
  257. package/esm2020/lib/shared/components/palette/utils/is-read-only.pipe.mjs +21 -0
  258. package/esm2020/lib/shared/components/palette/utils/utils.module.mjs +71 -0
  259. package/esm2020/lib/shared/components/palette/waystopay/waystopay-field.component.mjs +34 -0
  260. package/esm2020/lib/shared/components/palette/yes-no/read-yes-no-field.component.mjs +34 -0
  261. package/esm2020/lib/shared/components/palette/yes-no/write-yes-no-field.component.mjs +100 -0
  262. package/esm2020/lib/shared/components/palette/yes-no/yes-no.service.mjs +50 -0
  263. package/esm2020/lib/shared/components/search-filters/domain/search-input.model.mjs +10 -0
  264. package/esm2020/lib/shared/components/search-filters/search-filters-wrapper.component.mjs +58 -0
  265. package/esm2020/lib/shared/components/search-filters/search-filters.component.mjs +326 -0
  266. package/esm2020/lib/shared/components/search-filters/search-filters.module.mjs +71 -0
  267. package/esm2020/lib/shared/components/search-result/search-result.component.mjs +815 -0
  268. package/esm2020/lib/shared/components/search-result/search-result.module.mjs +82 -0
  269. package/esm2020/lib/shared/components/workbasket-filters/workbasket-filters.component.mjs +479 -0
  270. package/esm2020/lib/shared/components/workbasket-filters/workbasket-filters.module.mjs +67 -0
  271. package/esm2020/lib/shared/directives/conditional-show/conditional-show-form.directive.mjs +164 -0
  272. package/esm2020/lib/shared/directives/conditional-show/conditional-show.module.mjs +33 -0
  273. package/esm2020/lib/shared/directives/conditional-show/domain/conditional-show.model.mjs +200 -0
  274. package/esm2020/lib/shared/directives/conditional-show/services/conditional-show-registrar.service.mjs +19 -0
  275. package/esm2020/lib/shared/directives/conditional-show/services/grey-bar.service.mjs +47 -0
  276. package/esm2020/lib/shared/directives/focus-element/focus-element.directive.mjs +36 -0
  277. package/esm2020/lib/shared/directives/focus-element/focus-element.module.mjs +21 -0
  278. package/esm2020/lib/shared/directives/substitutor/label-substitutor.directive.mjs +82 -0
  279. package/esm2020/lib/shared/directives/substitutor/label-substitutor.module.mjs +30 -0
  280. package/esm2020/lib/shared/directives/substitutor/services/placeholder.service.mjs +200 -0
  281. package/esm2020/lib/shared/domain/activity/activity.model.mjs +10 -0
  282. package/esm2020/lib/shared/domain/addresses/address.model.mjs +13 -0
  283. package/esm2020/lib/shared/domain/alert/alert.model.mjs +3 -0
  284. package/esm2020/lib/shared/domain/case-details.model.mjs +4 -0
  285. package/esm2020/lib/shared/domain/case-event-data.model.mjs +4 -0
  286. package/esm2020/lib/shared/domain/case-file-view/case-file-view-category.model.mjs +3 -0
  287. package/esm2020/lib/shared/domain/case-file-view/case-file-view-document.model.mjs +4 -0
  288. package/esm2020/lib/shared/domain/case-file-view/categories-and-documents.model.mjs +7 -0
  289. package/esm2020/lib/shared/domain/case-file-view/document-tree-node/document-tree-node.model.mjs +117 -0
  290. package/esm2020/lib/shared/domain/case-flag/flag-type.model.mjs +28 -0
  291. package/esm2020/lib/shared/domain/case-flag/hmcts-service-detail.model.mjs +10 -0
  292. package/esm2020/lib/shared/domain/case-view/case-event-trigger.model.mjs +23 -0
  293. package/esm2020/lib/shared/domain/case-view/case-print-document.model.mjs +3 -0
  294. package/esm2020/lib/shared/domain/case-view/case-tab.model.mjs +12 -0
  295. package/esm2020/lib/shared/domain/case-view/case-view-event.model.mjs +4 -0
  296. package/esm2020/lib/shared/domain/case-view/case-view-trigger.model.mjs +3 -0
  297. package/esm2020/lib/shared/domain/case-view/case-view.model.mjs +17 -0
  298. package/esm2020/lib/shared/domain/definition/access-control-list.model.mjs +3 -0
  299. package/esm2020/lib/shared/domain/definition/banner.model.mjs +3 -0
  300. package/esm2020/lib/shared/domain/definition/case-event.model.mjs +3 -0
  301. package/esm2020/lib/shared/domain/definition/case-field.model.mjs +198 -0
  302. package/esm2020/lib/shared/domain/definition/case-state.model.mjs +3 -0
  303. package/esm2020/lib/shared/domain/definition/case-type-lite.model.mjs +5 -0
  304. package/esm2020/lib/shared/domain/definition/case-type.model.mjs +12 -0
  305. package/esm2020/lib/shared/domain/definition/event-case-field.model.mjs +4 -0
  306. package/esm2020/lib/shared/domain/definition/field-type.model.mjs +22 -0
  307. package/esm2020/lib/shared/domain/definition/fixed-list-item.model.mjs +3 -0
  308. package/esm2020/lib/shared/domain/definition/jurisdiction.model.mjs +3 -0
  309. package/esm2020/lib/shared/domain/document/document-data.model.mjs +14 -0
  310. package/esm2020/lib/shared/domain/draft.model.mjs +11 -0
  311. package/esm2020/lib/shared/domain/http/http-error.model.mjs +34 -0
  312. package/esm2020/lib/shared/domain/organisation/organisation-converter.mjs +42 -0
  313. package/esm2020/lib/shared/domain/pagination-metadata.model.mjs +3 -0
  314. package/esm2020/lib/shared/domain/profile/profile.model.mjs +29 -0
  315. package/esm2020/lib/shared/domain/search/field.model.mjs +11 -0
  316. package/esm2020/lib/shared/domain/search/search-result-view-column.model.mjs +3 -0
  317. package/esm2020/lib/shared/domain/search/search-result-view-item.model.mjs +12 -0
  318. package/esm2020/lib/shared/domain/search/search-result-view.model.mjs +23 -0
  319. package/esm2020/lib/shared/domain/search/sorting/sort-parameters.mjs +7 -0
  320. package/esm2020/lib/shared/domain/workbasket/workbasket-input.model.mjs +5 -0
  321. package/esm2020/lib/shared/fixture/case-field-builder.mjs +69 -0
  322. package/esm2020/lib/shared/pipes/case-reference/case-reference.pipe.mjs +33 -0
  323. package/esm2020/lib/shared/pipes/case-title/ccd-case-title.pipe.mjs +29 -0
  324. package/esm2020/lib/shared/pipes/complex/ccd-collection-table-value-case-fields.pipe.mjs +32 -0
  325. package/esm2020/lib/shared/pipes/complex/ccd-cyapage-label-filter.pipe.mjs +29 -0
  326. package/esm2020/lib/shared/pipes/complex/ccd-page-fields.pipe.mjs +39 -0
  327. package/esm2020/lib/shared/pipes/complex/ccd-read-fields-filter.pipe.mjs +173 -0
  328. package/esm2020/lib/shared/pipes/complex/ccd-tab-fields.pipe.mjs +31 -0
  329. package/esm2020/lib/shared/pipes/complex/fields-filter.pipe.mjs +105 -0
  330. package/esm2020/lib/shared/pipes/generic/enum-display-description/enum-display-description.pipe.mjs +16 -0
  331. package/esm2020/lib/shared/pipes/link-cases-from-reason-code/ccd-link-cases-from-reason-code.pipe.mjs +27 -0
  332. package/esm2020/lib/shared/pipes/link-cases-reason-code/ccd-link-cases-reason-code.pipe.mjs +27 -0
  333. package/esm2020/lib/shared/pipes/pipes.module.mjs +64 -0
  334. package/esm2020/lib/shared/pipes/search-result/sorting/sort-search-result.pipe.mjs +24 -0
  335. package/esm2020/lib/shared/services/activity/activity.polling.service.mjs +114 -0
  336. package/esm2020/lib/shared/services/activity/activity.service.mjs +82 -0
  337. package/esm2020/lib/shared/services/addresses/addresses.service.mjs +63 -0
  338. package/esm2020/lib/shared/services/alert/alert.service.mjs +142 -0
  339. package/esm2020/lib/shared/services/auth/auth.service.mjs +33 -0
  340. package/esm2020/lib/shared/services/banners/banners.service.mjs +33 -0
  341. package/esm2020/lib/shared/services/browser/browser.service.mjs +24 -0
  342. package/esm2020/lib/shared/services/case-fields/case-field.service.mjs +34 -0
  343. package/esm2020/lib/shared/services/case-fields/format-translator.service.mjs +242 -0
  344. package/esm2020/lib/shared/services/case-file-view/case-file-view.service.mjs +46 -0
  345. package/esm2020/lib/shared/services/case-flag/case-flag-refdata.service.mjs +102 -0
  346. package/esm2020/lib/shared/services/common-data-service/common-data-service.mjs +28 -0
  347. package/esm2020/lib/shared/services/definitions/definitions.module.mjs +19 -0
  348. package/esm2020/lib/shared/services/definitions/definitions.service.mjs +30 -0
  349. package/esm2020/lib/shared/services/document-management/document-management.service.mjs +112 -0
  350. package/esm2020/lib/shared/services/draft/draft.service.mjs +86 -0
  351. package/esm2020/lib/shared/services/error/error-notifier.service.mjs +18 -0
  352. package/esm2020/lib/shared/services/eventStatusService/event-status.service.mjs +21 -0
  353. package/esm2020/lib/shared/services/fields/fields.purger.mjs +303 -0
  354. package/esm2020/lib/shared/services/fields/fields.utils.mjs +615 -0
  355. package/esm2020/lib/shared/services/form/field-type-sanitiser.mjs +91 -0
  356. package/esm2020/lib/shared/services/form/form-error.service.mjs +46 -0
  357. package/esm2020/lib/shared/services/form/form-validators.service.mjs +56 -0
  358. package/esm2020/lib/shared/services/form/form-value.service.mjs +551 -0
  359. package/esm2020/lib/shared/services/http/http-error.service.mjs +65 -0
  360. package/esm2020/lib/shared/services/http/http.service.mjs +93 -0
  361. package/esm2020/lib/shared/services/jurisdiction/jurisdiction.service.mjs +34 -0
  362. package/esm2020/lib/shared/services/loading/loading.module.mjs +22 -0
  363. package/esm2020/lib/shared/services/loading/loading.service.mjs +37 -0
  364. package/esm2020/lib/shared/services/navigation/navigation-notifier.service.mjs +18 -0
  365. package/esm2020/lib/shared/services/order/order.service.mjs +39 -0
  366. package/esm2020/lib/shared/services/organisation/organisation.service.mjs +54 -0
  367. package/esm2020/lib/shared/services/profile/profile.notifier.mjs +19 -0
  368. package/esm2020/lib/shared/services/profile/profile.service.mjs +34 -0
  369. package/esm2020/lib/shared/services/request/request.options.builder.mjs +61 -0
  370. package/esm2020/lib/shared/services/router/router-helper.service.mjs +20 -0
  371. package/esm2020/lib/shared/services/search/search.service.mjs +89 -0
  372. package/esm2020/lib/shared/services/search-result/sorting/search-result-view-item-comparator-factory.mjs +71 -0
  373. package/esm2020/lib/shared/services/session/session-storage.service.mjs +34 -0
  374. package/esm2020/lib/shared/services/utils/retry/retry.service.mjs +86 -0
  375. package/esm2020/lib/shared/services/window/window.service.mjs +40 -0
  376. package/esm2020/lib/shared/services/workbasket/workbasket-input-filter.service.mjs +53 -0
  377. package/esm2020/lib/shared/test/test-route-snapshot-builder.mjs +40 -0
  378. package/fesm2015/hmcts-ccd-case-ui-toolkit.mjs +38545 -0
  379. package/fesm2015/hmcts-ccd-case-ui-toolkit.mjs.map +1 -0
  380. package/fesm2020/hmcts-ccd-case-ui-toolkit.mjs +35581 -0
  381. package/fesm2020/hmcts-ccd-case-ui-toolkit.mjs.map +1 -0
  382. package/lib/shared/components/case-editor/case-editor.module.d.ts +25 -0
  383. package/lib/shared/components/case-editor/case-editor.module.d.ts.map +1 -1
  384. package/lib/shared/components/case-header/case-header.module.d.ts +8 -0
  385. package/lib/shared/components/case-header/case-header.module.d.ts.map +1 -1
  386. package/lib/shared/components/case-history/case-history.module.d.ts +12 -0
  387. package/lib/shared/components/case-history/case-history.module.d.ts.map +1 -1
  388. package/lib/shared/components/case-list/case-list.module.d.ts +11 -0
  389. package/lib/shared/components/case-list/case-list.module.d.ts.map +1 -1
  390. package/lib/shared/components/case-list-filters/case-list-filters.module.d.ts +11 -0
  391. package/lib/shared/components/case-list-filters/case-list-filters.module.d.ts.map +1 -1
  392. package/lib/shared/components/case-timeline/case-timeline.module.d.ts +11 -0
  393. package/lib/shared/components/case-timeline/case-timeline.module.d.ts.map +1 -1
  394. package/lib/shared/components/case-viewer/case-viewer.module.d.ts +36 -0
  395. package/lib/shared/components/case-viewer/case-viewer.module.d.ts.map +1 -1
  396. package/lib/shared/components/pagination/pagination.module.d.ts +8 -0
  397. package/lib/shared/components/pagination/pagination.module.d.ts.map +1 -1
  398. package/lib/shared/components/palette/address/write-address-field.component.d.ts +2 -1
  399. package/lib/shared/components/palette/address/write-address-field.component.d.ts.map +1 -1
  400. package/lib/shared/components/palette/case-flag/write-case-flag-field.component.d.ts +1 -0
  401. package/lib/shared/components/palette/case-flag/write-case-flag-field.component.d.ts.map +1 -1
  402. package/lib/shared/components/palette/collection/write-collection-field.component.d.ts +2 -1
  403. package/lib/shared/components/palette/collection/write-collection-field.component.d.ts.map +1 -1
  404. package/lib/shared/components/palette/complex/write-complex-field.component.d.ts +2 -1
  405. package/lib/shared/components/palette/complex/write-complex-field.component.d.ts.map +1 -1
  406. package/lib/shared/components/palette/markdown/markdown-component.module.d.ts +10 -0
  407. package/lib/shared/components/palette/markdown/markdown-component.module.d.ts.map +1 -1
  408. package/lib/shared/components/palette/palette.module.d.ts +148 -0
  409. package/lib/shared/components/palette/palette.module.d.ts.map +1 -1
  410. package/lib/shared/components/search-filters/search-filters.module.d.ts +11 -0
  411. package/lib/shared/components/search-filters/search-filters.module.d.ts.map +1 -1
  412. package/lib/shared/components/search-result/search-result.module.d.ts +15 -0
  413. package/lib/shared/components/search-result/search-result.module.d.ts.map +1 -1
  414. package/lib/shared/components/workbasket-filters/workbasket-filters.module.d.ts +10 -0
  415. package/lib/shared/components/workbasket-filters/workbasket-filters.module.d.ts.map +1 -1
  416. package/package.json +11 -5
  417. package/esm2022/lib/app.config.mjs +0 -93
  418. package/esm2022/lib/components/banners/alert/alert-icon-class.pipe.mjs +0 -25
  419. package/esm2022/lib/components/banners/alert/alert.component.mjs +0 -94
  420. package/esm2022/lib/components/banners/alert/alert.module.mjs +0 -32
  421. package/esm2022/lib/components/banners/banners.module.mjs +0 -32
  422. package/esm2022/lib/components/banners/notification-banner/notification-banner.component.mjs +0 -119
  423. package/esm2022/lib/components/banners/notification-banner/notification-banner.module.mjs +0 -19
  424. package/esm2022/lib/components/body/body.component.mjs +0 -20
  425. package/esm2022/lib/components/body/body.module.mjs +0 -20
  426. package/esm2022/lib/components/footer/footer.component.mjs +0 -109
  427. package/esm2022/lib/components/footer/footers.module.mjs +0 -25
  428. package/esm2022/lib/components/form/date-input/date-input.component.mjs +0 -342
  429. package/esm2022/lib/components/form/form.module.mjs +0 -29
  430. package/esm2022/lib/components/header/header-bar/header-bar.component.mjs +0 -98
  431. package/esm2022/lib/components/header/headers.module.mjs +0 -25
  432. package/esm2022/lib/components/header/navigation/navigation-item.component.mjs +0 -44
  433. package/esm2022/lib/components/header/navigation/navigation.component.mjs +0 -25
  434. package/esm2022/lib/components/header/phase/phase.component.mjs +0 -48
  435. package/esm2022/lib/components/tabs/tab.component.mjs +0 -31
  436. package/esm2022/lib/components/tabs/tabs.component.mjs +0 -82
  437. package/esm2022/lib/components/tabs/tabs.module.mjs +0 -38
  438. package/esm2022/lib/shared/commons/address-validation-constants.mjs +0 -13
  439. package/esm2022/lib/shared/commons/case-edit-data/case-edit-data.module.mjs +0 -19
  440. package/esm2022/lib/shared/commons/case-edit-data/case-edit-data.service.mjs +0 -46
  441. package/esm2022/lib/shared/commons/constants.mjs +0 -13
  442. package/esm2022/lib/shared/components/activity/activity-banner/activity-banner.component.mjs +0 -42
  443. package/esm2022/lib/shared/components/activity/activity-icon/activity-icon.component.mjs +0 -35
  444. package/esm2022/lib/shared/components/activity/activity.component.mjs +0 -158
  445. package/esm2022/lib/shared/components/activity/activity.module.mjs +0 -55
  446. package/esm2022/lib/shared/components/case-editor/case-access-utils/index.mjs +0 -105
  447. package/esm2022/lib/shared/components/case-editor/case-create/case-create.component.mjs +0 -95
  448. package/esm2022/lib/shared/components/case-editor/case-edit/case-edit.component.mjs +0 -463
  449. package/esm2022/lib/shared/components/case-editor/case-edit-confirm/case-edit-confirm.component.mjs +0 -131
  450. package/esm2022/lib/shared/components/case-editor/case-edit-form/case-edit-form.component.mjs +0 -140
  451. package/esm2022/lib/shared/components/case-editor/case-edit-generic-errors/case-edit-generic-errors.component.mjs +0 -70
  452. package/esm2022/lib/shared/components/case-editor/case-edit-page/case-edit-page.component.mjs +0 -779
  453. package/esm2022/lib/shared/components/case-editor/case-edit-submit/case-edit-submit.component.mjs +0 -560
  454. package/esm2022/lib/shared/components/case-editor/case-editor.module.mjs +0 -118
  455. package/esm2022/lib/shared/components/case-editor/case-event-completion/case-event-completion.component.mjs +0 -96
  456. package/esm2022/lib/shared/components/case-editor/case-event-completion/components/case-event-completion-task-cancelled/case-event-completion-task-cancelled.component.mjs +0 -82
  457. package/esm2022/lib/shared/components/case-editor/case-event-completion/components/case-event-completion-task-reassigned/case-event-completion-task-reassigned.component.mjs +0 -166
  458. package/esm2022/lib/shared/components/case-editor/case-progress/case-progress.component.mjs +0 -84
  459. package/esm2022/lib/shared/components/case-editor/domain/confirmation.model.mjs +0 -25
  460. package/esm2022/lib/shared/components/case-editor/domain/wizard-page-field-complex-override.model.mjs +0 -9
  461. package/esm2022/lib/shared/components/case-editor/domain/wizard-page-field.model.mjs +0 -7
  462. package/esm2022/lib/shared/components/case-editor/domain/wizard-page.model.mjs +0 -33
  463. package/esm2022/lib/shared/components/case-editor/domain/wizard.model.mjs +0 -55
  464. package/esm2022/lib/shared/components/case-editor/services/case-edit-wizard.guard.mjs +0 -98
  465. package/esm2022/lib/shared/components/case-editor/services/case-flag-state.service.mjs +0 -19
  466. package/esm2022/lib/shared/components/case-editor/services/case-worker.service.mjs +0 -35
  467. package/esm2022/lib/shared/components/case-editor/services/case.notifier.mjs +0 -53
  468. package/esm2022/lib/shared/components/case-editor/services/cases.service.mjs +0 -302
  469. package/esm2022/lib/shared/components/case-editor/services/convert-href-to-router.service.mjs +0 -42
  470. package/esm2022/lib/shared/components/case-editor/services/event-completion-state-machine.service.mjs +0 -153
  471. package/esm2022/lib/shared/components/case-editor/services/event-trigger.service.mjs +0 -18
  472. package/esm2022/lib/shared/components/case-editor/services/judicial-worker.service.mjs +0 -35
  473. package/esm2022/lib/shared/components/case-editor/services/page-validation.service.mjs +0 -54
  474. package/esm2022/lib/shared/components/case-editor/services/valid-page-list-caseFields.service.mjs +0 -40
  475. package/esm2022/lib/shared/components/case-editor/services/wizard-page-field-to-case-field.mapper.mjs +0 -117
  476. package/esm2022/lib/shared/components/case-editor/services/work-allocation.service.mjs +0 -215
  477. package/esm2022/lib/shared/components/case-header/case-header.component.mjs +0 -64
  478. package/esm2022/lib/shared/components/case-header/case-header.module.mjs +0 -25
  479. package/esm2022/lib/shared/components/case-history/case-history.component.mjs +0 -252
  480. package/esm2022/lib/shared/components/case-history/case-history.module.mjs +0 -36
  481. package/esm2022/lib/shared/components/case-history/domain/case-history.model.mjs +0 -37
  482. package/esm2022/lib/shared/components/case-history/services/case-history.service.mjs +0 -43
  483. package/esm2022/lib/shared/components/case-list/case-list.component.mjs +0 -373
  484. package/esm2022/lib/shared/components/case-list/case-list.module.mjs +0 -31
  485. package/esm2022/lib/shared/components/case-list-filters/case-list-filters.component.mjs +0 -56
  486. package/esm2022/lib/shared/components/case-list-filters/case-list-filters.module.mjs +0 -39
  487. package/esm2022/lib/shared/components/case-timeline/case-timeline.component.mjs +0 -115
  488. package/esm2022/lib/shared/components/case-timeline/case-timeline.module.mjs +0 -32
  489. package/esm2022/lib/shared/components/case-viewer/case-basic-access-view/case-basic-access-view.component.mjs +0 -251
  490. package/esm2022/lib/shared/components/case-viewer/case-challenged-access-request/case-challenged-access-request.component.mjs +0 -310
  491. package/esm2022/lib/shared/components/case-viewer/case-challenged-access-success/case-challenged-access-success.component.mjs +0 -74
  492. package/esm2022/lib/shared/components/case-viewer/case-event-trigger/case-event-trigger.component.mjs +0 -155
  493. package/esm2022/lib/shared/components/case-viewer/case-full-access-view/case-full-access-view.component.mjs +0 -710
  494. package/esm2022/lib/shared/components/case-viewer/case-review-specific-access-reject/case-review-specific-access-reject.component.mjs +0 -60
  495. package/esm2022/lib/shared/components/case-viewer/case-review-specific-access-request/case-review-specific-access-request.component.mjs +0 -255
  496. package/esm2022/lib/shared/components/case-viewer/case-specific-access-request/case-specific-access-request.component.mjs +0 -210
  497. package/esm2022/lib/shared/components/case-viewer/case-specific-access-success/case-specific-access-success.component.mjs +0 -49
  498. package/esm2022/lib/shared/components/case-viewer/case-view/case-view.component.mjs +0 -106
  499. package/esm2022/lib/shared/components/case-viewer/case-viewer.component.mjs +0 -136
  500. package/esm2022/lib/shared/components/case-viewer/case-viewer.module.mjs +0 -98
  501. package/esm2022/lib/shared/components/case-viewer/printer/case-printer.component.mjs +0 -116
  502. package/esm2022/lib/shared/components/case-viewer/printer/pipes/print-url.pipe.mjs +0 -61
  503. package/esm2022/lib/shared/components/case-viewer/services/case.resolver.mjs +0 -141
  504. package/esm2022/lib/shared/components/case-viewer/services/event-trigger.resolver.mjs +0 -70
  505. package/esm2022/lib/shared/components/create-case-filters/create-case-filters-selection.model.mjs +0 -11
  506. package/esm2022/lib/shared/components/create-case-filters/create-case-filters.component.mjs +0 -288
  507. package/esm2022/lib/shared/components/create-case-filters/create-case-filters.module.mjs +0 -44
  508. package/esm2022/lib/shared/components/dialogs/delete-or-cancel-dialog/delete-or-cancel-dialog.component.mjs +0 -59
  509. package/esm2022/lib/shared/components/dialogs/dialogs.module.mjs +0 -51
  510. package/esm2022/lib/shared/components/dialogs/document-dialog/document-dialog.component.mjs +0 -61
  511. package/esm2022/lib/shared/components/dialogs/remove-dialog/remove-dialog.component.mjs +0 -59
  512. package/esm2022/lib/shared/components/dialogs/save-or-discard-dialog/save-or-discard-dialog.component.mjs +0 -63
  513. package/esm2022/lib/shared/components/error/callback-errors.component.mjs +0 -147
  514. package/esm2022/lib/shared/components/error/domain/error-context.mjs +0 -5
  515. package/esm2022/lib/shared/components/error/errors.module.mjs +0 -33
  516. package/esm2022/lib/shared/components/error-message/error-message.component.mjs +0 -44
  517. package/esm2022/lib/shared/components/error-message/error-message.module.mjs +0 -41
  518. package/esm2022/lib/shared/components/event-start/components/multiple-tasks-exist/multiple-tasks-exist.component.mjs +0 -61
  519. package/esm2022/lib/shared/components/event-start/components/no-tasks-available/no-tasks-available.component.mjs +0 -55
  520. package/esm2022/lib/shared/components/event-start/components/task-assigned/task-assigned.component.mjs +0 -111
  521. package/esm2022/lib/shared/components/event-start/components/task-cancelled/task-cancelled.component.mjs +0 -69
  522. package/esm2022/lib/shared/components/event-start/components/task-conflict/task-conflict.component.mjs +0 -60
  523. package/esm2022/lib/shared/components/event-start/components/task-unassigned/task-unassigned.component.mjs +0 -55
  524. package/esm2022/lib/shared/components/event-start/event-guard/event-start.guard.mjs +0 -97
  525. package/esm2022/lib/shared/components/event-start/event-start.component.mjs +0 -55
  526. package/esm2022/lib/shared/components/event-start/event-start.module.mjs +0 -71
  527. package/esm2022/lib/shared/components/event-start/resolvers/event-tasks-resolver.service.mjs +0 -31
  528. package/esm2022/lib/shared/components/event-start/services/event-start-state-machine.service.mjs +0 -177
  529. package/esm2022/lib/shared/components/event-trigger/event-trigger.component.mjs +0 -117
  530. package/esm2022/lib/shared/components/event-trigger/event-trigger.module.mjs +0 -37
  531. package/esm2022/lib/shared/components/loading-spinner/loading-spinner.component.mjs +0 -25
  532. package/esm2022/lib/shared/components/loading-spinner/loading-spinner.module.mjs +0 -29
  533. package/esm2022/lib/shared/components/pagination/pagination.component.mjs +0 -261
  534. package/esm2022/lib/shared/components/pagination/pagination.module.mjs +0 -26
  535. package/esm2022/lib/shared/components/palette/address/address-option.model.mjs +0 -23
  536. package/esm2022/lib/shared/components/palette/address/write-address-field.component.mjs +0 -287
  537. package/esm2022/lib/shared/components/palette/base-field/abstract-field-read.component.mjs +0 -30
  538. package/esm2022/lib/shared/components/palette/base-field/abstract-field-write.component.mjs +0 -44
  539. package/esm2022/lib/shared/components/palette/base-field/abstract-form-field.component.mjs +0 -84
  540. package/esm2022/lib/shared/components/palette/base-field/field-read-label.component.mjs +0 -85
  541. package/esm2022/lib/shared/components/palette/base-field/field-read.component.mjs +0 -89
  542. package/esm2022/lib/shared/components/palette/base-field/field-write.component.mjs +0 -77
  543. package/esm2022/lib/shared/components/palette/base-field/payment-field.component.mjs +0 -37
  544. package/esm2022/lib/shared/components/palette/case-file-view/case-file-view-field.component.mjs +0 -182
  545. package/esm2022/lib/shared/components/palette/case-file-view/components/case-file-view-folder/case-file-view-folder-document-actions/case-file-view-folder-document-actions.component.mjs +0 -48
  546. package/esm2022/lib/shared/components/palette/case-file-view/components/case-file-view-folder/case-file-view-folder-sort/case-file-view-folder-sort.component.mjs +0 -49
  547. package/esm2022/lib/shared/components/palette/case-file-view/components/case-file-view-folder/case-file-view-folder.component.mjs +0 -356
  548. package/esm2022/lib/shared/components/palette/case-file-view/components/case-file-view-folder-selector/case-file-view-folder-selector.component.mjs +0 -155
  549. package/esm2022/lib/shared/components/palette/case-file-view/components/shared/case-file-view-overlay-menu/case-file-view-overlay-menu.component.mjs +0 -93
  550. package/esm2022/lib/shared/components/palette/case-flag/components/add-comments/add-comments.component.mjs +0 -191
  551. package/esm2022/lib/shared/components/palette/case-flag/components/case-flag-summary-list/case-flag-summary-list.component.mjs +0 -302
  552. package/esm2022/lib/shared/components/palette/case-flag/components/case-flag-table/case-flag-table.component.mjs +0 -208
  553. package/esm2022/lib/shared/components/palette/case-flag/components/confirm-flag-status/confirm-flag-status.component.mjs +0 -169
  554. package/esm2022/lib/shared/components/palette/case-flag/components/manage-case-flags/manage-case-flags.component.mjs +0 -224
  555. package/esm2022/lib/shared/components/palette/case-flag/components/search-language-interpreter/search-language-interpreter.component.mjs +0 -311
  556. package/esm2022/lib/shared/components/palette/case-flag/components/select-flag-location/select-flag-location.component.mjs +0 -202
  557. package/esm2022/lib/shared/components/palette/case-flag/components/select-flag-type/select-flag-type.component.mjs +0 -355
  558. package/esm2022/lib/shared/components/palette/case-flag/components/update-flag/update-flag-add-translation-form/update-flag-add-translation-form.component.mjs +0 -268
  559. package/esm2022/lib/shared/components/palette/case-flag/components/update-flag/update-flag.component.mjs +0 -516
  560. package/esm2022/lib/shared/components/palette/case-flag/pipes/flag-field-display.pipe.mjs +0 -43
  561. package/esm2022/lib/shared/components/palette/case-flag/pipes/language-interpreter-display.pipe.mjs +0 -43
  562. package/esm2022/lib/shared/components/palette/case-flag/pipes/manage-case-flags-label-display.pipe.mjs +0 -111
  563. package/esm2022/lib/shared/components/palette/case-flag/pipes/update-flag-title-display.pipe.mjs +0 -79
  564. package/esm2022/lib/shared/components/palette/case-flag/read-case-flag-field.component.mjs +0 -255
  565. package/esm2022/lib/shared/components/palette/case-flag/write-case-flag-field.component.mjs +0 -704
  566. package/esm2022/lib/shared/components/palette/case-link/read-case-link-field.component.mjs +0 -32
  567. package/esm2022/lib/shared/components/palette/case-link/write-case-link-field.component.mjs +0 -125
  568. package/esm2022/lib/shared/components/palette/collection/collection-create-checker.service.mjs +0 -42
  569. package/esm2022/lib/shared/components/palette/collection/read-collection-field.component.mjs +0 -78
  570. package/esm2022/lib/shared/components/palette/collection/write-collection-field.component.mjs +0 -449
  571. package/esm2022/lib/shared/components/palette/complex/read-complex-field-collection-table.component.mjs +0 -380
  572. package/esm2022/lib/shared/components/palette/complex/read-complex-field-raw.component.mjs +0 -50
  573. package/esm2022/lib/shared/components/palette/complex/read-complex-field-table.component.mjs +0 -75
  574. package/esm2022/lib/shared/components/palette/complex/read-complex-field.component.mjs +0 -70
  575. package/esm2022/lib/shared/components/palette/complex/write-complex-field.component.mjs +0 -173
  576. package/esm2022/lib/shared/components/palette/date/read-date-field.component.mjs +0 -25
  577. package/esm2022/lib/shared/components/palette/date/write-date-container-field.component.mjs +0 -33
  578. package/esm2022/lib/shared/components/palette/date/write-date-field.component.mjs +0 -77
  579. package/esm2022/lib/shared/components/palette/datetime-picker/datetime-picker.component.mjs +0 -314
  580. package/esm2022/lib/shared/components/palette/document/document-url.pipe.mjs +0 -25
  581. package/esm2022/lib/shared/components/palette/document/file-upload-progress.guard.mjs +0 -31
  582. package/esm2022/lib/shared/components/palette/document/file-upload-state.service.mjs +0 -17
  583. package/esm2022/lib/shared/components/palette/document/read-document-field.component.mjs +0 -87
  584. package/esm2022/lib/shared/components/palette/document/write-document-field.component.mjs +0 -404
  585. package/esm2022/lib/shared/components/palette/dynamic-list/dynamic-list.pipe.mjs +0 -18
  586. package/esm2022/lib/shared/components/palette/dynamic-list/read-dynamic-list-field.component.mjs +0 -36
  587. package/esm2022/lib/shared/components/palette/dynamic-list/write-dynamic-list-field.component.mjs +0 -125
  588. package/esm2022/lib/shared/components/palette/dynamic-multi-select-list/read-dynamic-multi-select-list-field.component.mjs +0 -43
  589. package/esm2022/lib/shared/components/palette/dynamic-multi-select-list/write-dynamic-multi-select-list-field.component.mjs +0 -147
  590. package/esm2022/lib/shared/components/palette/dynamic-radio-list/dynamic-radio-list.pipe.mjs +0 -25
  591. package/esm2022/lib/shared/components/palette/dynamic-radio-list/read-dynamic-radio-list-field.component.mjs +0 -42
  592. package/esm2022/lib/shared/components/palette/dynamic-radio-list/write-dynamic-radio-list-field.component.mjs +0 -125
  593. package/esm2022/lib/shared/components/palette/email/read-email-field.component.mjs +0 -35
  594. package/esm2022/lib/shared/components/palette/email/write-email-field.component.mjs +0 -74
  595. package/esm2022/lib/shared/components/palette/fixed-list/fixed-list.pipe.mjs +0 -23
  596. package/esm2022/lib/shared/components/palette/fixed-list/read-fixed-list-field.component.mjs +0 -26
  597. package/esm2022/lib/shared/components/palette/fixed-list/write-fixed-list-field.component.mjs +0 -107
  598. package/esm2022/lib/shared/components/palette/fixed-radio-list/fixed-radio-list.pipe.mjs +0 -18
  599. package/esm2022/lib/shared/components/palette/fixed-radio-list/read-fixed-radio-list-field.component.mjs +0 -26
  600. package/esm2022/lib/shared/components/palette/fixed-radio-list/write-fixed-radio-list-field.component.mjs +0 -96
  601. package/esm2022/lib/shared/components/palette/history/case-history-viewer-field.component.mjs +0 -16
  602. package/esm2022/lib/shared/components/palette/history/event-log/event-log-details.component.mjs +0 -98
  603. package/esm2022/lib/shared/components/palette/history/event-log/event-log-table.component.mjs +0 -225
  604. package/esm2022/lib/shared/components/palette/history/event-log/event-log.component.mjs +0 -72
  605. package/esm2022/lib/shared/components/palette/judicial-user/read-judicial-user-field.component.mjs +0 -48
  606. package/esm2022/lib/shared/components/palette/judicial-user/write-judicial-user-field.component.mjs +0 -253
  607. package/esm2022/lib/shared/components/palette/label/label-field.component.mjs +0 -50
  608. package/esm2022/lib/shared/components/palette/linked-cases/components/before-you-start/before-you-start.component.mjs +0 -112
  609. package/esm2022/lib/shared/components/palette/linked-cases/components/check-your-answers/check-your-answers.component.mjs +0 -194
  610. package/esm2022/lib/shared/components/palette/linked-cases/components/link-cases/link-cases.component.mjs +0 -543
  611. package/esm2022/lib/shared/components/palette/linked-cases/components/linked-cases-table/linked-cases-from-table.component.mjs +0 -214
  612. package/esm2022/lib/shared/components/palette/linked-cases/components/linked-cases-table/linked-cases-to-table.component.mjs +0 -287
  613. package/esm2022/lib/shared/components/palette/linked-cases/components/no-linked-cases/no-linked-cases.component.mjs +0 -69
  614. package/esm2022/lib/shared/components/palette/linked-cases/components/unlink-cases/unlink-cases.component.mjs +0 -208
  615. package/esm2022/lib/shared/components/palette/linked-cases/domain/linked-cases.model.mjs +0 -67
  616. package/esm2022/lib/shared/components/palette/linked-cases/read-linked-cases-field.component.mjs +0 -169
  617. package/esm2022/lib/shared/components/palette/linked-cases/services/linked-cases.service.mjs +0 -138
  618. package/esm2022/lib/shared/components/palette/linked-cases/utils/validators.utils.mjs +0 -27
  619. package/esm2022/lib/shared/components/palette/linked-cases/write-linked-cases-field.component.mjs +0 -237
  620. package/esm2022/lib/shared/components/palette/markdown/markdown-component.module.mjs +0 -29
  621. package/esm2022/lib/shared/components/palette/markdown/markdown.component.mjs +0 -44
  622. package/esm2022/lib/shared/components/palette/money-gbp/money-gbp-input.component.mjs +0 -127
  623. package/esm2022/lib/shared/components/palette/money-gbp/read-money-gbp-field.component.mjs +0 -49
  624. package/esm2022/lib/shared/components/palette/money-gbp/write-money-gbp-field.component.mjs +0 -79
  625. package/esm2022/lib/shared/components/palette/multi-select-list/read-multi-select-list-field.component.mjs +0 -45
  626. package/esm2022/lib/shared/components/palette/multi-select-list/write-multi-select-list-field.component.mjs +0 -127
  627. package/esm2022/lib/shared/components/palette/number/read-number-field.component.mjs +0 -24
  628. package/esm2022/lib/shared/components/palette/number/write-number-field.component.mjs +0 -74
  629. package/esm2022/lib/shared/components/palette/order-summary/fee-value.model.mjs +0 -4
  630. package/esm2022/lib/shared/components/palette/order-summary/fee.model.mjs +0 -8
  631. package/esm2022/lib/shared/components/palette/order-summary/order-summary.model.mjs +0 -6
  632. package/esm2022/lib/shared/components/palette/order-summary/read-order-summary-field.component.mjs +0 -73
  633. package/esm2022/lib/shared/components/palette/order-summary/read-order-summary-row.component.mjs +0 -44
  634. package/esm2022/lib/shared/components/palette/order-summary/write-order-summary-field.component.mjs +0 -44
  635. package/esm2022/lib/shared/components/palette/organisation/read-organisation-field-raw.component.mjs +0 -87
  636. package/esm2022/lib/shared/components/palette/organisation/read-organisation-field-table.component.mjs +0 -91
  637. package/esm2022/lib/shared/components/palette/organisation/read-organisation-field.component.mjs +0 -53
  638. package/esm2022/lib/shared/components/palette/organisation/write-organisation-complex-field.component.mjs +0 -34
  639. package/esm2022/lib/shared/components/palette/organisation/write-organisation-field.component.mjs +0 -396
  640. package/esm2022/lib/shared/components/palette/palette.module.mjs +0 -291
  641. package/esm2022/lib/shared/components/palette/palette.service.mjs +0 -153
  642. package/esm2022/lib/shared/components/palette/payment/case-payment-history-viewer-field.component.mjs +0 -24
  643. package/esm2022/lib/shared/components/palette/phone-uk/read-phone-uk-field.component.mjs +0 -22
  644. package/esm2022/lib/shared/components/palette/phone-uk/write-phone-uk-field.component.mjs +0 -74
  645. package/esm2022/lib/shared/components/palette/query-management/components/qualifying-questions/qualifying-question-detail/qualifying-question-detail.component.mjs +0 -43
  646. package/esm2022/lib/shared/components/palette/query-management/components/qualifying-questions/qualifying-question-options/qualifying-question-options.component.mjs +0 -149
  647. package/esm2022/lib/shared/components/palette/query-management/components/query-attachments-read/query-attachments-read.component.mjs +0 -66
  648. package/esm2022/lib/shared/components/palette/query-management/components/query-case-details-header/query-case-details-header.component.mjs +0 -61
  649. package/esm2022/lib/shared/components/palette/query-management/components/query-check-your-answers/query-check-your-answers.component.mjs +0 -292
  650. package/esm2022/lib/shared/components/palette/query-management/components/query-details/query-details.component.mjs +0 -330
  651. package/esm2022/lib/shared/components/palette/query-management/components/query-event-completion/query-event-completion.component.mjs +0 -23
  652. package/esm2022/lib/shared/components/palette/query-management/components/query-list/query-list.component.mjs +0 -164
  653. package/esm2022/lib/shared/components/palette/query-management/components/query-write/query-write-add-documents/query-write-add-documents.component.mjs +0 -77
  654. package/esm2022/lib/shared/components/palette/query-management/components/query-write/query-write-date-input/query-write-date-input.component.mjs +0 -111
  655. package/esm2022/lib/shared/components/palette/query-management/components/query-write/query-write-raise-query/query-write-raise-query.component.mjs +0 -201
  656. package/esm2022/lib/shared/components/palette/query-management/components/query-write/query-write-respond-to-query/query-write-respond-to-query.component.mjs +0 -106
  657. package/esm2022/lib/shared/components/palette/query-management/models/query-list/query-list-data/query-list-data.model.mjs +0 -24
  658. package/esm2022/lib/shared/components/palette/query-management/models/query-list/query-list-item/query-list-item.model.mjs +0 -45
  659. package/esm2022/lib/shared/components/palette/query-management/read-query-management-field.component.mjs +0 -125
  660. package/esm2022/lib/shared/components/palette/query-management/utils/query-management.utils.mjs +0 -22
  661. package/esm2022/lib/shared/components/palette/text/read-text-field.component.mjs +0 -24
  662. package/esm2022/lib/shared/components/palette/text/write-text-field.component.mjs +0 -78
  663. package/esm2022/lib/shared/components/palette/text-area/read-text-area-field.component.mjs +0 -24
  664. package/esm2022/lib/shared/components/palette/text-area/write-text-area-field.component.mjs +0 -89
  665. package/esm2022/lib/shared/components/palette/unsupported-field.component.mjs +0 -17
  666. package/esm2022/lib/shared/components/palette/utils/dash.pipe.mjs +0 -16
  667. package/esm2022/lib/shared/components/palette/utils/date.pipe.mjs +0 -133
  668. package/esm2022/lib/shared/components/palette/utils/field-label.pipe.mjs +0 -30
  669. package/esm2022/lib/shared/components/palette/utils/first-error.pipe.mjs +0 -62
  670. package/esm2022/lib/shared/components/palette/utils/is-compound.pipe.mjs +0 -43
  671. package/esm2022/lib/shared/components/palette/utils/is-mandatory.pipe.mjs +0 -22
  672. package/esm2022/lib/shared/components/palette/utils/is-read-only-and-not-collection.pipe.mjs +0 -32
  673. package/esm2022/lib/shared/components/palette/utils/is-read-only.pipe.mjs +0 -22
  674. package/esm2022/lib/shared/components/palette/utils/utils.module.mjs +0 -71
  675. package/esm2022/lib/shared/components/palette/waystopay/waystopay-field.component.mjs +0 -34
  676. package/esm2022/lib/shared/components/palette/yes-no/read-yes-no-field.component.mjs +0 -36
  677. package/esm2022/lib/shared/components/palette/yes-no/write-yes-no-field.component.mjs +0 -102
  678. package/esm2022/lib/shared/components/palette/yes-no/yes-no.service.mjs +0 -50
  679. package/esm2022/lib/shared/components/search-filters/domain/search-input.model.mjs +0 -15
  680. package/esm2022/lib/shared/components/search-filters/search-filters-wrapper.component.mjs +0 -62
  681. package/esm2022/lib/shared/components/search-filters/search-filters.component.mjs +0 -337
  682. package/esm2022/lib/shared/components/search-filters/search-filters.module.mjs +0 -44
  683. package/esm2022/lib/shared/components/search-result/search-result.component.mjs +0 -834
  684. package/esm2022/lib/shared/components/search-result/search-result.module.mjs +0 -46
  685. package/esm2022/lib/shared/components/workbasket-filters/workbasket-filters.component.mjs +0 -494
  686. package/esm2022/lib/shared/components/workbasket-filters/workbasket-filters.module.mjs +0 -42
  687. package/esm2022/lib/shared/directives/conditional-show/conditional-show-form.directive.mjs +0 -169
  688. package/esm2022/lib/shared/directives/conditional-show/conditional-show.module.mjs +0 -33
  689. package/esm2022/lib/shared/directives/conditional-show/domain/conditional-show.model.mjs +0 -201
  690. package/esm2022/lib/shared/directives/conditional-show/services/conditional-show-registrar.service.mjs +0 -17
  691. package/esm2022/lib/shared/directives/conditional-show/services/grey-bar.service.mjs +0 -48
  692. package/esm2022/lib/shared/directives/focus-element/focus-element.directive.mjs +0 -38
  693. package/esm2022/lib/shared/directives/focus-element/focus-element.module.mjs +0 -21
  694. package/esm2022/lib/shared/directives/substitutor/label-substitutor.directive.mjs +0 -88
  695. package/esm2022/lib/shared/directives/substitutor/label-substitutor.module.mjs +0 -30
  696. package/esm2022/lib/shared/directives/substitutor/services/placeholder.service.mjs +0 -209
  697. package/esm2022/lib/shared/domain/activity/activity.model.mjs +0 -17
  698. package/esm2022/lib/shared/domain/addresses/address.model.mjs +0 -11
  699. package/esm2022/lib/shared/domain/alert/alert.model.mjs +0 -5
  700. package/esm2022/lib/shared/domain/case-details.model.mjs +0 -13
  701. package/esm2022/lib/shared/domain/case-event-data.model.mjs +0 -11
  702. package/esm2022/lib/shared/domain/case-file-view/case-file-view-category.model.mjs +0 -8
  703. package/esm2022/lib/shared/domain/case-file-view/case-file-view-document.model.mjs +0 -10
  704. package/esm2022/lib/shared/domain/case-file-view/categories-and-documents.model.mjs +0 -10
  705. package/esm2022/lib/shared/domain/case-file-view/document-tree-node/document-tree-node.model.mjs +0 -124
  706. package/esm2022/lib/shared/domain/case-flag/flag-type.model.mjs +0 -37
  707. package/esm2022/lib/shared/domain/case-flag/hmcts-service-detail.model.mjs +0 -18
  708. package/esm2022/lib/shared/domain/case-view/case-event-trigger.model.mjs +0 -34
  709. package/esm2022/lib/shared/domain/case-view/case-print-document.model.mjs +0 -6
  710. package/esm2022/lib/shared/domain/case-view/case-tab.model.mjs +0 -17
  711. package/esm2022/lib/shared/domain/case-view/case-view-event.model.mjs +0 -16
  712. package/esm2022/lib/shared/domain/case-view/case-view-trigger.model.mjs +0 -7
  713. package/esm2022/lib/shared/domain/case-view/case-view.model.mjs +0 -27
  714. package/esm2022/lib/shared/domain/definition/access-control-list.model.mjs +0 -8
  715. package/esm2022/lib/shared/domain/definition/banner.model.mjs +0 -8
  716. package/esm2022/lib/shared/domain/definition/case-event.model.mjs +0 -11
  717. package/esm2022/lib/shared/domain/definition/case-field.model.mjs +0 -216
  718. package/esm2022/lib/shared/domain/definition/case-state.model.mjs +0 -7
  719. package/esm2022/lib/shared/domain/definition/case-type-lite.model.mjs +0 -10
  720. package/esm2022/lib/shared/domain/definition/case-type.model.mjs +0 -20
  721. package/esm2022/lib/shared/domain/definition/event-case-field.model.mjs +0 -6
  722. package/esm2022/lib/shared/domain/definition/field-type.model.mjs +0 -30
  723. package/esm2022/lib/shared/domain/definition/fixed-list-item.model.mjs +0 -6
  724. package/esm2022/lib/shared/domain/definition/jurisdiction.model.mjs +0 -8
  725. package/esm2022/lib/shared/domain/document/document-data.model.mjs +0 -27
  726. package/esm2022/lib/shared/domain/draft.model.mjs +0 -16
  727. package/esm2022/lib/shared/domain/http/http-error.model.mjs +0 -43
  728. package/esm2022/lib/shared/domain/organisation/organisation-converter.mjs +0 -42
  729. package/esm2022/lib/shared/domain/pagination-metadata.model.mjs +0 -5
  730. package/esm2022/lib/shared/domain/profile/profile.model.mjs +0 -33
  731. package/esm2022/lib/shared/domain/search/field.model.mjs +0 -17
  732. package/esm2022/lib/shared/domain/search/search-result-view-column.model.mjs +0 -9
  733. package/esm2022/lib/shared/domain/search/search-result-view-item.model.mjs +0 -18
  734. package/esm2022/lib/shared/domain/search/search-result-view.model.mjs +0 -26
  735. package/esm2022/lib/shared/domain/search/sorting/sort-parameters.mjs +0 -9
  736. package/esm2022/lib/shared/domain/workbasket/workbasket-input.model.mjs +0 -11
  737. package/esm2022/lib/shared/fixture/case-field-builder.mjs +0 -67
  738. package/esm2022/lib/shared/pipes/case-reference/case-reference.pipe.mjs +0 -33
  739. package/esm2022/lib/shared/pipes/case-title/ccd-case-title.pipe.mjs +0 -31
  740. package/esm2022/lib/shared/pipes/complex/ccd-collection-table-value-case-fields.pipe.mjs +0 -32
  741. package/esm2022/lib/shared/pipes/complex/ccd-cyapage-label-filter.pipe.mjs +0 -27
  742. package/esm2022/lib/shared/pipes/complex/ccd-page-fields.pipe.mjs +0 -39
  743. package/esm2022/lib/shared/pipes/complex/ccd-read-fields-filter.pipe.mjs +0 -173
  744. package/esm2022/lib/shared/pipes/complex/ccd-tab-fields.pipe.mjs +0 -31
  745. package/esm2022/lib/shared/pipes/complex/fields-filter.pipe.mjs +0 -105
  746. package/esm2022/lib/shared/pipes/generic/enum-display-description/enum-display-description.pipe.mjs +0 -16
  747. package/esm2022/lib/shared/pipes/link-cases-from-reason-code/ccd-link-cases-from-reason-code.pipe.mjs +0 -28
  748. package/esm2022/lib/shared/pipes/link-cases-reason-code/ccd-link-cases-reason-code.pipe.mjs +0 -28
  749. package/esm2022/lib/shared/pipes/pipes.module.mjs +0 -64
  750. package/esm2022/lib/shared/pipes/search-result/sorting/sort-search-result.pipe.mjs +0 -24
  751. package/esm2022/lib/shared/services/activity/activity.polling.service.mjs +0 -122
  752. package/esm2022/lib/shared/services/activity/activity.service.mjs +0 -85
  753. package/esm2022/lib/shared/services/addresses/addresses.service.mjs +0 -65
  754. package/esm2022/lib/shared/services/alert/alert.service.mjs +0 -157
  755. package/esm2022/lib/shared/services/auth/auth.service.mjs +0 -35
  756. package/esm2022/lib/shared/services/banners/banners.service.mjs +0 -35
  757. package/esm2022/lib/shared/services/browser/browser.service.mjs +0 -24
  758. package/esm2022/lib/shared/services/case-fields/case-field.service.mjs +0 -34
  759. package/esm2022/lib/shared/services/case-fields/format-translator.service.mjs +0 -242
  760. package/esm2022/lib/shared/services/case-file-view/case-file-view.service.mjs +0 -48
  761. package/esm2022/lib/shared/services/case-flag/case-flag-refdata.service.mjs +0 -104
  762. package/esm2022/lib/shared/services/common-data-service/common-data-service.mjs +0 -29
  763. package/esm2022/lib/shared/services/definitions/definitions.module.mjs +0 -19
  764. package/esm2022/lib/shared/services/definitions/definitions.service.mjs +0 -32
  765. package/esm2022/lib/shared/services/document-management/document-management.service.mjs +0 -114
  766. package/esm2022/lib/shared/services/draft/draft.service.mjs +0 -89
  767. package/esm2022/lib/shared/services/error/error-notifier.service.mjs +0 -16
  768. package/esm2022/lib/shared/services/eventStatusService/event-status.service.mjs +0 -21
  769. package/esm2022/lib/shared/services/fields/fields.purger.mjs +0 -304
  770. package/esm2022/lib/shared/services/fields/fields.utils.mjs +0 -615
  771. package/esm2022/lib/shared/services/form/field-type-sanitiser.mjs +0 -91
  772. package/esm2022/lib/shared/services/form/form-error.service.mjs +0 -46
  773. package/esm2022/lib/shared/services/form/form-validators.service.mjs +0 -56
  774. package/esm2022/lib/shared/services/form/form-value.service.mjs +0 -552
  775. package/esm2022/lib/shared/services/http/http-error.service.mjs +0 -67
  776. package/esm2022/lib/shared/services/http/http.service.mjs +0 -95
  777. package/esm2022/lib/shared/services/jurisdiction/jurisdiction.service.mjs +0 -36
  778. package/esm2022/lib/shared/services/loading/loading.module.mjs +0 -22
  779. package/esm2022/lib/shared/services/loading/loading.service.mjs +0 -35
  780. package/esm2022/lib/shared/services/navigation/navigation-notifier.service.mjs +0 -16
  781. package/esm2022/lib/shared/services/order/order.service.mjs +0 -37
  782. package/esm2022/lib/shared/services/organisation/organisation.service.mjs +0 -57
  783. package/esm2022/lib/shared/services/profile/profile.notifier.mjs +0 -17
  784. package/esm2022/lib/shared/services/profile/profile.service.mjs +0 -36
  785. package/esm2022/lib/shared/services/request/request.options.builder.mjs +0 -61
  786. package/esm2022/lib/shared/services/router/router-helper.service.mjs +0 -20
  787. package/esm2022/lib/shared/services/search/search.service.mjs +0 -96
  788. package/esm2022/lib/shared/services/search-result/sorting/search-result-view-item-comparator-factory.mjs +0 -71
  789. package/esm2022/lib/shared/services/session/session-storage.service.mjs +0 -34
  790. package/esm2022/lib/shared/services/utils/retry/retry.service.mjs +0 -87
  791. package/esm2022/lib/shared/services/window/window.service.mjs +0 -40
  792. package/esm2022/lib/shared/services/workbasket/workbasket-input-filter.service.mjs +0 -57
  793. package/esm2022/lib/shared/test/test-route-snapshot-builder.mjs +0 -38
  794. package/fesm2022/hmcts-ccd-case-ui-toolkit.mjs +0 -36099
  795. package/fesm2022/hmcts-ccd-case-ui-toolkit.mjs.map +0 -1
  796. /package/{esm2022 → esm2020}/hmcts-ccd-case-ui-toolkit.mjs +0 -0
  797. /package/{esm2022 → esm2020}/lib/components/banners/alert/index.mjs +0 -0
  798. /package/{esm2022 → esm2020}/lib/components/banners/index.mjs +0 -0
  799. /package/{esm2022 → esm2020}/lib/components/banners/notification-banner/domain/index.mjs +0 -0
  800. /package/{esm2022 → esm2020}/lib/components/banners/notification-banner/domain/notification-banner-config.model.mjs +0 -0
  801. /package/{esm2022 → esm2020}/lib/components/banners/notification-banner/enums/index.mjs +0 -0
  802. /package/{esm2022 → esm2020}/lib/components/banners/notification-banner/enums/notification-banner-style.enum.mjs +0 -0
  803. /package/{esm2022 → esm2020}/lib/components/banners/notification-banner/enums/notification-banner-type.enum.mjs +0 -0
  804. /package/{esm2022 → esm2020}/lib/components/banners/notification-banner/index.mjs +0 -0
  805. /package/{esm2022 → esm2020}/lib/components/body/index.mjs +0 -0
  806. /package/{esm2022 → esm2020}/lib/components/footer/index.mjs +0 -0
  807. /package/{esm2022 → esm2020}/lib/components/form/date-input/index.mjs +0 -0
  808. /package/{esm2022 → esm2020}/lib/components/form/index.mjs +0 -0
  809. /package/{esm2022 → esm2020}/lib/components/header/header-bar/index.mjs +0 -0
  810. /package/{esm2022 → esm2020}/lib/components/header/index.mjs +0 -0
  811. /package/{esm2022 → esm2020}/lib/components/header/navigation/index.mjs +0 -0
  812. /package/{esm2022 → esm2020}/lib/components/header/phase/index.mjs +0 -0
  813. /package/{esm2022 → esm2020}/lib/components/index.mjs +0 -0
  814. /package/{esm2022 → esm2020}/lib/components/tabs/index.mjs +0 -0
  815. /package/{esm2022 → esm2020}/lib/shared/commons/case-edit-data/case-edit-validation.model.mjs +0 -0
  816. /package/{esm2022 → esm2020}/lib/shared/commons/case-edit-data/index.mjs +0 -0
  817. /package/{esm2022 → esm2020}/lib/shared/components/activity/activity-banner/index.mjs +0 -0
  818. /package/{esm2022 → esm2020}/lib/shared/components/activity/activity-icon/index.mjs +0 -0
  819. /package/{esm2022 → esm2020}/lib/shared/components/activity/index.mjs +0 -0
  820. /package/{esm2022 → esm2020}/lib/shared/components/case-editor/case-create/index.mjs +0 -0
  821. /package/{esm2022 → esm2020}/lib/shared/components/case-editor/case-edit/index.mjs +0 -0
  822. /package/{esm2022 → esm2020}/lib/shared/components/case-editor/case-edit-confirm/index.mjs +0 -0
  823. /package/{esm2022 → esm2020}/lib/shared/components/case-editor/case-edit-form/index.mjs +0 -0
  824. /package/{esm2022 → esm2020}/lib/shared/components/case-editor/case-edit-page/index.mjs +0 -0
  825. /package/{esm2022 → esm2020}/lib/shared/components/case-editor/case-edit-submit/case-edit-submit-titles.enum.mjs +0 -0
  826. /package/{esm2022 → esm2020}/lib/shared/components/case-editor/case-edit-submit/index.mjs +0 -0
  827. /package/{esm2022 → esm2020}/lib/shared/components/case-editor/case-event-completion/index.mjs +0 -0
  828. /package/{esm2022 → esm2020}/lib/shared/components/case-editor/case-progress/index.mjs +0 -0
  829. /package/{esm2022 → esm2020}/lib/shared/components/case-editor/domain/event-completion-params.model.mjs +0 -0
  830. /package/{esm2022 → esm2020}/lib/shared/components/case-editor/domain/event-completion-portal-types.model.mjs +0 -0
  831. /package/{esm2022 → esm2020}/lib/shared/components/case-editor/domain/event-completion-return-states.enum.model.mjs +0 -0
  832. /package/{esm2022 → esm2020}/lib/shared/components/case-editor/domain/event-completion-state-machine-context.model.mjs +0 -0
  833. /package/{esm2022 → esm2020}/lib/shared/components/case-editor/domain/event-completion-states.enum.model.mjs +0 -0
  834. /package/{esm2022 → esm2020}/lib/shared/components/case-editor/domain/index.mjs +0 -0
  835. /package/{esm2022 → esm2020}/lib/shared/components/case-editor/editor.routing.mjs +0 -0
  836. /package/{esm2022 → esm2020}/lib/shared/components/case-editor/index.mjs +0 -0
  837. /package/{esm2022 → esm2020}/lib/shared/components/case-editor/services/index.mjs +0 -0
  838. /package/{esm2022 → esm2020}/lib/shared/components/case-editor/services/wizard-factory.service.mjs +0 -0
  839. /package/{esm2022 → esm2020}/lib/shared/components/case-header/index.mjs +0 -0
  840. /package/{esm2022 → esm2020}/lib/shared/components/case-history/index.mjs +0 -0
  841. /package/{esm2022 → esm2020}/lib/shared/components/case-list/index.mjs +0 -0
  842. /package/{esm2022 → esm2020}/lib/shared/components/case-list-filters/index.mjs +0 -0
  843. /package/{esm2022 → esm2020}/lib/shared/components/case-timeline/index.mjs +0 -0
  844. /package/{esm2022 → esm2020}/lib/shared/components/case-viewer/case-basic-access-view/index.mjs +0 -0
  845. /package/{esm2022 → esm2020}/lib/shared/components/case-viewer/case-challenged-access-request/index.mjs +0 -0
  846. /package/{esm2022 → esm2020}/lib/shared/components/case-viewer/case-challenged-access-request/models/case-challenged-access-request.enum.mjs +0 -0
  847. /package/{esm2022 → esm2020}/lib/shared/components/case-viewer/case-challenged-access-request/models/index.mjs +0 -0
  848. /package/{esm2022 → esm2020}/lib/shared/components/case-viewer/case-challenged-access-success/index.mjs +0 -0
  849. /package/{esm2022 → esm2020}/lib/shared/components/case-viewer/case-event-trigger/index.mjs +0 -0
  850. /package/{esm2022 → esm2020}/lib/shared/components/case-viewer/case-full-access-view/index.mjs +0 -0
  851. /package/{esm2022 → esm2020}/lib/shared/components/case-viewer/case-review-specific-access-reject/index.mjs +0 -0
  852. /package/{esm2022 → esm2020}/lib/shared/components/case-viewer/case-review-specific-access-request/index.mjs +0 -0
  853. /package/{esm2022 → esm2020}/lib/shared/components/case-viewer/case-review-specific-access-request/models/case-review-specific-access-request.enum.mjs +0 -0
  854. /package/{esm2022 → esm2020}/lib/shared/components/case-viewer/case-review-specific-access-request/models/index.mjs +0 -0
  855. /package/{esm2022 → esm2020}/lib/shared/components/case-viewer/case-specific-access-request/index.mjs +0 -0
  856. /package/{esm2022 → esm2020}/lib/shared/components/case-viewer/case-specific-access-request/models/case-specific-access-request.enum.mjs +0 -0
  857. /package/{esm2022 → esm2020}/lib/shared/components/case-viewer/case-specific-access-request/models/index.mjs +0 -0
  858. /package/{esm2022 → esm2020}/lib/shared/components/case-viewer/case-specific-access-success/index.mjs +0 -0
  859. /package/{esm2022 → esm2020}/lib/shared/components/case-viewer/case-view/index.mjs +0 -0
  860. /package/{esm2022 → esm2020}/lib/shared/components/case-viewer/index.mjs +0 -0
  861. /package/{esm2022 → esm2020}/lib/shared/components/case-viewer/printer/index.mjs +0 -0
  862. /package/{esm2022 → esm2020}/lib/shared/components/case-viewer/printer/pipes/index.mjs +0 -0
  863. /package/{esm2022 → esm2020}/lib/shared/components/case-viewer/services/index.mjs +0 -0
  864. /package/{esm2022 → esm2020}/lib/shared/components/case-viewer/viewer.routing.mjs +0 -0
  865. /package/{esm2022 → esm2020}/lib/shared/components/create-case-filters/index.mjs +0 -0
  866. /package/{esm2022 → esm2020}/lib/shared/components/dialogs/delete-or-cancel-dialog/index.mjs +0 -0
  867. /package/{esm2022 → esm2020}/lib/shared/components/dialogs/document-dialog/index.mjs +0 -0
  868. /package/{esm2022 → esm2020}/lib/shared/components/dialogs/index.mjs +0 -0
  869. /package/{esm2022 → esm2020}/lib/shared/components/dialogs/remove-dialog/index.mjs +0 -0
  870. /package/{esm2022 → esm2020}/lib/shared/components/dialogs/save-or-discard-dialog/index.mjs +0 -0
  871. /package/{esm2022 → esm2020}/lib/shared/components/error/domain/index.mjs +0 -0
  872. /package/{esm2022 → esm2020}/lib/shared/components/error/index.mjs +0 -0
  873. /package/{esm2022 → esm2020}/lib/shared/components/error-message/index.mjs +0 -0
  874. /package/{esm2022 → esm2020}/lib/shared/components/event-start/index.mjs +0 -0
  875. /package/{esm2022 → esm2020}/lib/shared/components/event-start/models/event-start-state-machine-context.model.mjs +0 -0
  876. /package/{esm2022 → esm2020}/lib/shared/components/event-start/models/event-start-states-enum.model.mjs +0 -0
  877. /package/{esm2022 → esm2020}/lib/shared/components/event-start/models/index.mjs +0 -0
  878. /package/{esm2022 → esm2020}/lib/shared/components/event-start/services/index.mjs +0 -0
  879. /package/{esm2022 → esm2020}/lib/shared/components/event-trigger/index.mjs +0 -0
  880. /package/{esm2022 → esm2020}/lib/shared/components/helpers/index.mjs +0 -0
  881. /package/{esm2022 → esm2020}/lib/shared/components/helpers/init-dialog-helper.mjs +0 -0
  882. /package/{esm2022 → esm2020}/lib/shared/components/index.mjs +0 -0
  883. /package/{esm2022 → esm2020}/lib/shared/components/loading-spinner/index.mjs +0 -0
  884. /package/{esm2022 → esm2020}/lib/shared/components/pagination/index.mjs +0 -0
  885. /package/{esm2022 → esm2020}/lib/shared/components/palette/address/index.mjs +0 -0
  886. /package/{esm2022 → esm2020}/lib/shared/components/palette/base-field/index.mjs +0 -0
  887. /package/{esm2022 → esm2020}/lib/shared/components/palette/base-field/palette-context.enum.mjs +0 -0
  888. /package/{esm2022 → esm2020}/lib/shared/components/palette/case-file-view/components/index.mjs +0 -0
  889. /package/{esm2022 → esm2020}/lib/shared/components/palette/case-file-view/components/shared/case-file-view-overlay-menu/case-file-view-overlay-menu-item.model.mjs +0 -0
  890. /package/{esm2022 → esm2020}/lib/shared/components/palette/case-file-view/components/shared/index.mjs +0 -0
  891. /package/{esm2022 → esm2020}/lib/shared/components/palette/case-file-view/index.mjs +0 -0
  892. /package/{esm2022 → esm2020}/lib/shared/components/palette/case-file-view/test-data/categories-and-documents-test-data.mjs +0 -0
  893. /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/components/index.mjs +0 -0
  894. /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/components/search-language-interpreter/search-language-interpreter-control-names.enum.mjs +0 -0
  895. /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/domain/case-flag-state.model.mjs +0 -0
  896. /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/domain/case-flag.model.mjs +0 -0
  897. /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/domain/index.mjs +0 -0
  898. /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/domain/language.model.mjs +0 -0
  899. /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/enums/add-comments-error-message.enum.mjs +0 -0
  900. /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/enums/add-comments-step.enum.mjs +0 -0
  901. /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/enums/case-flag-check-your-answers-step.enum.mjs +0 -0
  902. /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/enums/case-flag-display-context-parameter.enum.mjs +0 -0
  903. /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/enums/case-flag-form-fields.enum.mjs +0 -0
  904. /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/enums/case-flag-status.enum.mjs +0 -0
  905. /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/enums/case-flag-summary-list-display-mode.enum.mjs +0 -0
  906. /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/enums/case-flag-wizard-step-title.enum.mjs +0 -0
  907. /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/enums/confirm-status-error-message.enum.mjs +0 -0
  908. /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/enums/confirm-status-step.enum.mjs +0 -0
  909. /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/enums/index.mjs +0 -0
  910. /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/enums/search-language-interpreter-error-message.enum.mjs +0 -0
  911. /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/enums/search-language-interpreter-step.enum.mjs +0 -0
  912. /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/enums/select-flag-error-message.enum.mjs +0 -0
  913. /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/enums/select-flag-location-error-message.enum.mjs +0 -0
  914. /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/enums/select-flag-type-error-message.enum.mjs +0 -0
  915. /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/enums/update-flag-add-translation-error-message.enum.mjs +0 -0
  916. /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/enums/update-flag-add-translation-step.enum.mjs +0 -0
  917. /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/enums/update-flag-error-message.enum.mjs +0 -0
  918. /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/enums/update-flag-step.enum.mjs +0 -0
  919. /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/enums/write-case-flag-field.enum.mjs +0 -0
  920. /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/index.mjs +0 -0
  921. /package/{esm2022 → esm2020}/lib/shared/components/palette/case-flag/pipes/index.mjs +0 -0
  922. /package/{esm2022 → esm2020}/lib/shared/components/palette/case-link/index.mjs +0 -0
  923. /package/{esm2022 → esm2020}/lib/shared/components/palette/collection/index.mjs +0 -0
  924. /package/{esm2022 → esm2020}/lib/shared/components/palette/complex/index.mjs +0 -0
  925. /package/{esm2022 → esm2020}/lib/shared/components/palette/complex/sort-order.mjs +0 -0
  926. /package/{esm2022 → esm2020}/lib/shared/components/palette/date/index.mjs +0 -0
  927. /package/{esm2022 → esm2020}/lib/shared/components/palette/datetime-picker/datetime-picker-utils.mjs +0 -0
  928. /package/{esm2022 → esm2020}/lib/shared/components/palette/datetime-picker/index.mjs +0 -0
  929. /package/{esm2022 → esm2020}/lib/shared/components/palette/document/index.mjs +0 -0
  930. /package/{esm2022 → esm2020}/lib/shared/components/palette/dynamic-list/index.mjs +0 -0
  931. /package/{esm2022 → esm2020}/lib/shared/components/palette/dynamic-multi-select-list/index.mjs +0 -0
  932. /package/{esm2022 → esm2020}/lib/shared/components/palette/dynamic-radio-list/index.mjs +0 -0
  933. /package/{esm2022 → esm2020}/lib/shared/components/palette/email/index.mjs +0 -0
  934. /package/{esm2022 → esm2020}/lib/shared/components/palette/fixed-list/index.mjs +0 -0
  935. /package/{esm2022 → esm2020}/lib/shared/components/palette/fixed-radio-list/index.mjs +0 -0
  936. /package/{esm2022 → esm2020}/lib/shared/components/palette/history/event-log/index.mjs +0 -0
  937. /package/{esm2022 → esm2020}/lib/shared/components/palette/history/index.mjs +0 -0
  938. /package/{esm2022 → esm2020}/lib/shared/components/palette/index.mjs +0 -0
  939. /package/{esm2022 → esm2020}/lib/shared/components/palette/judicial-user/index.mjs +0 -0
  940. /package/{esm2022 → esm2020}/lib/shared/components/palette/label/index.mjs +0 -0
  941. /package/{esm2022 → esm2020}/lib/shared/components/palette/linked-cases/components/index.mjs +0 -0
  942. /package/{esm2022 → esm2020}/lib/shared/components/palette/linked-cases/domain/index.mjs +0 -0
  943. /package/{esm2022 → esm2020}/lib/shared/components/palette/linked-cases/domain/linked-cases-state.model.mjs +0 -0
  944. /package/{esm2022 → esm2020}/lib/shared/components/palette/linked-cases/enums/index.mjs +0 -0
  945. /package/{esm2022 → esm2020}/lib/shared/components/palette/linked-cases/enums/write-linked-cases-field.enum.mjs +0 -0
  946. /package/{esm2022 → esm2020}/lib/shared/components/palette/linked-cases/index.mjs +0 -0
  947. /package/{esm2022 → esm2020}/lib/shared/components/palette/linked-cases/services/index.mjs +0 -0
  948. /package/{esm2022 → esm2020}/lib/shared/components/palette/markdown/index.mjs +0 -0
  949. /package/{esm2022 → esm2020}/lib/shared/components/palette/money-gbp/index.mjs +0 -0
  950. /package/{esm2022 → esm2020}/lib/shared/components/palette/multi-select-list/index.mjs +0 -0
  951. /package/{esm2022 → esm2020}/lib/shared/components/palette/number/index.mjs +0 -0
  952. /package/{esm2022 → esm2020}/lib/shared/components/palette/order-summary/index.mjs +0 -0
  953. /package/{esm2022 → esm2020}/lib/shared/components/palette/organisation/index.mjs +0 -0
  954. /package/{esm2022 → esm2020}/lib/shared/components/palette/payment/index.mjs +0 -0
  955. /package/{esm2022 → esm2020}/lib/shared/components/palette/phone-uk/index.mjs +0 -0
  956. /package/{esm2022 → esm2020}/lib/shared/components/palette/query-management/__mocks__/index.mjs +0 -0
  957. /package/{esm2022 → esm2020}/lib/shared/components/palette/query-management/components/index.mjs +0 -0
  958. /package/{esm2022 → esm2020}/lib/shared/components/palette/query-management/enums/index.mjs +0 -0
  959. /package/{esm2022 → esm2020}/lib/shared/components/palette/query-management/enums/qualifying-questions-error-message.enum.mjs +0 -0
  960. /package/{esm2022 → esm2020}/lib/shared/components/palette/query-management/enums/query-item-response-status.enum.mjs +0 -0
  961. /package/{esm2022 → esm2020}/lib/shared/components/palette/query-management/enums/raise-query-error-message.enum.mjs +0 -0
  962. /package/{esm2022 → esm2020}/lib/shared/components/palette/query-management/enums/respond-to-query-error-messages.enum.mjs +0 -0
  963. /package/{esm2022 → esm2020}/lib/shared/components/palette/query-management/index.mjs +0 -0
  964. /package/{esm2022 → esm2020}/lib/shared/components/palette/query-management/models/case-queries-collection.model.mjs +0 -0
  965. /package/{esm2022 → esm2020}/lib/shared/components/palette/query-management/models/index.mjs +0 -0
  966. /package/{esm2022 → esm2020}/lib/shared/components/palette/query-management/models/qualifying-questions/casetype-qualifying-questions.model.mjs +0 -0
  967. /package/{esm2022 → esm2020}/lib/shared/components/palette/query-management/models/qualifying-questions/qualifying-question.model.mjs +0 -0
  968. /package/{esm2022 → esm2020}/lib/shared/components/palette/query-management/models/query-create-context.enum.mjs +0 -0
  969. /package/{esm2022 → esm2020}/lib/shared/components/palette/query-management/models/query-list/query-list-column/query-list-column.model.mjs +0 -0
  970. /package/{esm2022 → esm2020}/lib/shared/components/palette/text/index.mjs +0 -0
  971. /package/{esm2022 → esm2020}/lib/shared/components/palette/text-area/index.mjs +0 -0
  972. /package/{esm2022 → esm2020}/lib/shared/components/palette/utils/index.mjs +0 -0
  973. /package/{esm2022 → esm2020}/lib/shared/components/palette/waystopay/index.mjs +0 -0
  974. /package/{esm2022 → esm2020}/lib/shared/components/palette/yes-no/index.mjs +0 -0
  975. /package/{esm2022 → esm2020}/lib/shared/components/search-filters/domain/index.mjs +0 -0
  976. /package/{esm2022 → esm2020}/lib/shared/components/search-filters/index.mjs +0 -0
  977. /package/{esm2022 → esm2020}/lib/shared/components/search-result/index.mjs +0 -0
  978. /package/{esm2022 → esm2020}/lib/shared/components/workbasket-filters/index.mjs +0 -0
  979. /package/{esm2022 → esm2020}/lib/shared/directives/conditional-show/domain/index.mjs +0 -0
  980. /package/{esm2022 → esm2020}/lib/shared/directives/conditional-show/index.mjs +0 -0
  981. /package/{esm2022 → esm2020}/lib/shared/directives/conditional-show/services/condition-parser.service.mjs +0 -0
  982. /package/{esm2022 → esm2020}/lib/shared/directives/conditional-show/services/condition.peg.mjs +0 -0
  983. /package/{esm2022 → esm2020}/lib/shared/directives/conditional-show/services/index.mjs +0 -0
  984. /package/{esm2022 → esm2020}/lib/shared/directives/focus-element/index.mjs +0 -0
  985. /package/{esm2022 → esm2020}/lib/shared/directives/index.mjs +0 -0
  986. /package/{esm2022 → esm2020}/lib/shared/directives/substitutor/index.mjs +0 -0
  987. /package/{esm2022 → esm2020}/lib/shared/directives/substitutor/services/index.mjs +0 -0
  988. /package/{esm2022 → esm2020}/lib/shared/domain/activity/index.mjs +0 -0
  989. /package/{esm2022 → esm2020}/lib/shared/domain/addresses/index.mjs +0 -0
  990. /package/{esm2022 → esm2020}/lib/shared/domain/alert/alert-level.model.mjs +0 -0
  991. /package/{esm2022 → esm2020}/lib/shared/domain/alert/alert-status-params.model.mjs +0 -0
  992. /package/{esm2022 → esm2020}/lib/shared/domain/alert/index.mjs +0 -0
  993. /package/{esm2022 → esm2020}/lib/shared/domain/case-edit/case-edit.model.mjs +0 -0
  994. /package/{esm2022 → esm2020}/lib/shared/domain/case-edit/index.mjs +0 -0
  995. /package/{esm2022 → esm2020}/lib/shared/domain/case-file-view/case-file-view-sort-columns.enum.mjs +0 -0
  996. /package/{esm2022 → esm2020}/lib/shared/domain/case-file-view/document-tree-node/document-tree-node-type.model.mjs +0 -0
  997. /package/{esm2022 → esm2020}/lib/shared/domain/case-file-view/index.mjs +0 -0
  998. /package/{esm2022 → esm2020}/lib/shared/domain/case-flag/index.mjs +0 -0
  999. /package/{esm2022 → esm2020}/lib/shared/domain/case-view/access-types.model.mjs +0 -0
  1000. /package/{esm2022 → esm2020}/lib/shared/domain/case-view/case-view-event-ids.enum.mjs +0 -0
  1001. /package/{esm2022 → esm2020}/lib/shared/domain/case-view/challenged-access-request.model.mjs +0 -0
  1002. /package/{esm2022 → esm2020}/lib/shared/domain/case-view/index.mjs +0 -0
  1003. /package/{esm2022 → esm2020}/lib/shared/domain/case-view/review-specific-access-request.model.mjs +0 -0
  1004. /package/{esm2022 → esm2020}/lib/shared/domain/case-view/role-assignment-response.model.mjs +0 -0
  1005. /package/{esm2022 → esm2020}/lib/shared/domain/case-view/role-request.model.mjs +0 -0
  1006. /package/{esm2022 → esm2020}/lib/shared/domain/case-view/service-org-response.model.mjs +0 -0
  1007. /package/{esm2022 → esm2020}/lib/shared/domain/case-view/specific-access-request.model.mjs +0 -0
  1008. /package/{esm2022 → esm2020}/lib/shared/domain/definition/display-context-enum.model.mjs +0 -0
  1009. /package/{esm2022 → esm2020}/lib/shared/domain/definition/field-type-enum.model.mjs +0 -0
  1010. /package/{esm2022 → esm2020}/lib/shared/domain/definition/index.mjs +0 -0
  1011. /package/{esm2022 → esm2020}/lib/shared/domain/document/index.mjs +0 -0
  1012. /package/{esm2022 → esm2020}/lib/shared/domain/error-message.model.mjs +0 -0
  1013. /package/{esm2022 → esm2020}/lib/shared/domain/http/index.mjs +0 -0
  1014. /package/{esm2022 → esm2020}/lib/shared/domain/index.mjs +0 -0
  1015. /package/{esm2022 → esm2020}/lib/shared/domain/jurisdiction/index.mjs +0 -0
  1016. /package/{esm2022 → esm2020}/lib/shared/domain/jurisdiction/judicial-user.model.mjs +0 -0
  1017. /package/{esm2022 → esm2020}/lib/shared/domain/order/index.mjs +0 -0
  1018. /package/{esm2022 → esm2020}/lib/shared/domain/order/orderable.model.mjs +0 -0
  1019. /package/{esm2022 → esm2020}/lib/shared/domain/organisation/index.mjs +0 -0
  1020. /package/{esm2022 → esm2020}/lib/shared/domain/organisation/simple-organisation.model.mjs +0 -0
  1021. /package/{esm2022 → esm2020}/lib/shared/domain/predicate.model.mjs +0 -0
  1022. /package/{esm2022 → esm2020}/lib/shared/domain/profile/index.mjs +0 -0
  1023. /package/{esm2022 → esm2020}/lib/shared/domain/search/index.mjs +0 -0
  1024. /package/{esm2022 → esm2020}/lib/shared/domain/search/sorting/search-result-view-item-comparator.mjs +0 -0
  1025. /package/{esm2022 → esm2020}/lib/shared/domain/sort-order.enum.mjs +0 -0
  1026. /package/{esm2022 → esm2020}/lib/shared/domain/user/user-details.model.mjs +0 -0
  1027. /package/{esm2022 → esm2020}/lib/shared/domain/user/user-info.model.mjs +0 -0
  1028. /package/{esm2022 → esm2020}/lib/shared/domain/work-allocation/Task.mjs +0 -0
  1029. /package/{esm2022 → esm2020}/lib/shared/domain/work-allocation/TaskPayload.mjs +0 -0
  1030. /package/{esm2022 → esm2020}/lib/shared/domain/work-allocation/case-worker.model.mjs +0 -0
  1031. /package/{esm2022 → esm2020}/lib/shared/domain/work-allocation/index.mjs +0 -0
  1032. /package/{esm2022 → esm2020}/lib/shared/domain/work-allocation/judicial-worker.model.mjs +0 -0
  1033. /package/{esm2022 → esm2020}/lib/shared/domain/work-allocation/task-response.model.mjs +0 -0
  1034. /package/{esm2022 → esm2020}/lib/shared/domain/work-allocation/task-search-parameter.model.mjs +0 -0
  1035. /package/{esm2022 → esm2020}/lib/shared/domain/work-allocation/wa-service-config.model.mjs +0 -0
  1036. /package/{esm2022 → esm2020}/lib/shared/domain/workbasket/index.mjs +0 -0
  1037. /package/{esm2022 → esm2020}/lib/shared/fixture/shared.test.fixture.mjs +0 -0
  1038. /package/{esm2022 → esm2020}/lib/shared/index.mjs +0 -0
  1039. /package/{esm2022 → esm2020}/lib/shared/pipes/case-reference/index.mjs +0 -0
  1040. /package/{esm2022 → esm2020}/lib/shared/pipes/case-title/index.mjs +0 -0
  1041. /package/{esm2022 → esm2020}/lib/shared/pipes/complex/index.mjs +0 -0
  1042. /package/{esm2022 → esm2020}/lib/shared/pipes/generic/index.mjs +0 -0
  1043. /package/{esm2022 → esm2020}/lib/shared/pipes/index.mjs +0 -0
  1044. /package/{esm2022 → esm2020}/lib/shared/pipes/link-cases-from-reason-code/index.mjs +0 -0
  1045. /package/{esm2022 → esm2020}/lib/shared/pipes/link-cases-reason-code/index.mjs +0 -0
  1046. /package/{esm2022 → esm2020}/lib/shared/services/activity/index.mjs +0 -0
  1047. /package/{esm2022 → esm2020}/lib/shared/services/addresses/address-parser.mjs +0 -0
  1048. /package/{esm2022 → esm2020}/lib/shared/services/addresses/address-type.enum.mjs +0 -0
  1049. /package/{esm2022 → esm2020}/lib/shared/services/addresses/index.mjs +0 -0
  1050. /package/{esm2022 → esm2020}/lib/shared/services/alert/index.mjs +0 -0
  1051. /package/{esm2022 → esm2020}/lib/shared/services/auth/index.mjs +0 -0
  1052. /package/{esm2022 → esm2020}/lib/shared/services/banners/index.mjs +0 -0
  1053. /package/{esm2022 → esm2020}/lib/shared/services/browser/index.mjs +0 -0
  1054. /package/{esm2022 → esm2020}/lib/shared/services/case-fields/index.mjs +0 -0
  1055. /package/{esm2022 → esm2020}/lib/shared/services/case-file-view/index.mjs +0 -0
  1056. /package/{esm2022 → esm2020}/lib/shared/services/case-flag/index.mjs +0 -0
  1057. /package/{esm2022 → esm2020}/lib/shared/services/case-flag/refdata-case-flag-type.enum.mjs +0 -0
  1058. /package/{esm2022 → esm2020}/lib/shared/services/definitions/index.mjs +0 -0
  1059. /package/{esm2022 → esm2020}/lib/shared/services/document-management/index.mjs +0 -0
  1060. /package/{esm2022 → esm2020}/lib/shared/services/draft/index.mjs +0 -0
  1061. /package/{esm2022 → esm2020}/lib/shared/services/error/index.mjs +0 -0
  1062. /package/{esm2022 → esm2020}/lib/shared/services/eventStatusService/index.mjs +0 -0
  1063. /package/{esm2022 → esm2020}/lib/shared/services/fields/index.mjs +0 -0
  1064. /package/{esm2022 → esm2020}/lib/shared/services/form/index.mjs +0 -0
  1065. /package/{esm2022 → esm2020}/lib/shared/services/http/index.mjs +0 -0
  1066. /package/{esm2022 → esm2020}/lib/shared/services/index.mjs +0 -0
  1067. /package/{esm2022 → esm2020}/lib/shared/services/jurisdiction/index.mjs +0 -0
  1068. /package/{esm2022 → esm2020}/lib/shared/services/loading/index.mjs +0 -0
  1069. /package/{esm2022 → esm2020}/lib/shared/services/navigation/index.mjs +0 -0
  1070. /package/{esm2022 → esm2020}/lib/shared/services/navigation/navigation-origin.model.mjs +0 -0
  1071. /package/{esm2022 → esm2020}/lib/shared/services/order/index.mjs +0 -0
  1072. /package/{esm2022 → esm2020}/lib/shared/services/organisation/index.mjs +0 -0
  1073. /package/{esm2022 → esm2020}/lib/shared/services/profile/index.mjs +0 -0
  1074. /package/{esm2022 → esm2020}/lib/shared/services/request/index.mjs +0 -0
  1075. /package/{esm2022 → esm2020}/lib/shared/services/router/index.mjs +0 -0
  1076. /package/{esm2022 → esm2020}/lib/shared/services/search/index.mjs +0 -0
  1077. /package/{esm2022 → esm2020}/lib/shared/services/session/index.mjs +0 -0
  1078. /package/{esm2022 → esm2020}/lib/shared/services/utils/retry/index.mjs +0 -0
  1079. /package/{esm2022 → esm2020}/lib/shared/services/window/index.mjs +0 -0
  1080. /package/{esm2022 → esm2020}/lib/shared/services/workbasket/index.mjs +0 -0
  1081. /package/{esm2022 → esm2020}/public-api.mjs +0 -0
@@ -1,74 +0,0 @@
1
- import { Component } from '@angular/core';
2
- import { FormControl } from '@angular/forms';
3
- import { AbstractFieldWriteComponent } from '../base-field/abstract-field-write.component';
4
- import * as i0 from "@angular/core";
5
- import * as i1 from "@angular/common";
6
- import * as i2 from "@angular/forms";
7
- import * as i3 from "../utils/field-label.pipe";
8
- import * as i4 from "../utils/first-error.pipe";
9
- import * as i5 from "rpx-xui-translation";
10
- function WriteEmailFieldComponent_span_2_Template(rf, ctx) { if (rf & 1) {
11
- i0.ɵɵelementStart(0, "span", 6);
12
- i0.ɵɵtext(1);
13
- i0.ɵɵpipe(2, "ccdFieldLabel");
14
- i0.ɵɵelementEnd();
15
- } if (rf & 2) {
16
- const ctx_r0 = i0.ɵɵnextContext();
17
- i0.ɵɵadvance(1);
18
- i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(2, 1, ctx_r0.caseField));
19
- } }
20
- function WriteEmailFieldComponent_span_3_Template(rf, ctx) { if (rf & 1) {
21
- i0.ɵɵelementStart(0, "span", 7);
22
- i0.ɵɵtext(1);
23
- i0.ɵɵpipe(2, "rpxTranslate");
24
- i0.ɵɵelementEnd();
25
- } if (rf & 2) {
26
- const ctx_r1 = i0.ɵɵnextContext();
27
- i0.ɵɵadvance(1);
28
- i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(2, 1, ctx_r1.caseField.hint_text));
29
- } }
30
- function WriteEmailFieldComponent_span_4_Template(rf, ctx) { if (rf & 1) {
31
- i0.ɵɵelementStart(0, "span", 8);
32
- i0.ɵɵtext(1);
33
- i0.ɵɵpipe(2, "ccdFirstError");
34
- i0.ɵɵelementEnd();
35
- } if (rf & 2) {
36
- const ctx_r2 = i0.ɵɵnextContext();
37
- i0.ɵɵadvance(1);
38
- i0.ɵɵtextInterpolate(i0.ɵɵpipeBind2(2, 1, ctx_r2.emailControl.errors, ctx_r2.caseField.label));
39
- } }
40
- const _c0 = function (a0) { return { "form-group-error": a0 }; };
41
- const _c1 = function (a0) { return { "govuk-input--error": a0 }; };
42
- export class WriteEmailFieldComponent extends AbstractFieldWriteComponent {
43
- emailControl;
44
- ngOnInit() {
45
- this.emailControl = this.registerControl(new FormControl(this.caseField.value));
46
- }
47
- static ɵfac = /*@__PURE__*/ function () { let ɵWriteEmailFieldComponent_BaseFactory; return function WriteEmailFieldComponent_Factory(t) { return (ɵWriteEmailFieldComponent_BaseFactory || (ɵWriteEmailFieldComponent_BaseFactory = i0.ɵɵgetInheritedFactory(WriteEmailFieldComponent)))(t || WriteEmailFieldComponent); }; }();
48
- static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: WriteEmailFieldComponent, selectors: [["ccd-write-email-field"]], features: [i0.ɵɵInheritDefinitionFeature], decls: 6, vars: 12, consts: [[1, "form-group", "bottom-30", 3, "ngClass"], [3, "for"], ["class", "form-label", 4, "ngIf"], ["class", "form-hint", 4, "ngIf"], ["class", "error-message", 4, "ngIf"], ["type", "email", 1, "form-control", 3, "ngClass", "id", "formControl"], [1, "form-label"], [1, "form-hint"], [1, "error-message"]], template: function WriteEmailFieldComponent_Template(rf, ctx) { if (rf & 1) {
49
- i0.ɵɵelementStart(0, "div", 0)(1, "label", 1);
50
- i0.ɵɵtemplate(2, WriteEmailFieldComponent_span_2_Template, 3, 3, "span", 2);
51
- i0.ɵɵelementEnd();
52
- i0.ɵɵtemplate(3, WriteEmailFieldComponent_span_3_Template, 3, 3, "span", 3);
53
- i0.ɵɵtemplate(4, WriteEmailFieldComponent_span_4_Template, 3, 4, "span", 4);
54
- i0.ɵɵelement(5, "input", 5);
55
- i0.ɵɵelementEnd();
56
- } if (rf & 2) {
57
- i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(8, _c0, !ctx.emailControl.valid && (ctx.emailControl.dirty || ctx.emailControl.touched)));
58
- i0.ɵɵadvance(1);
59
- i0.ɵɵproperty("for", ctx.id());
60
- i0.ɵɵadvance(1);
61
- i0.ɵɵproperty("ngIf", ctx.caseField.label);
62
- i0.ɵɵadvance(1);
63
- i0.ɵɵproperty("ngIf", ctx.caseField.hint_text);
64
- i0.ɵɵadvance(1);
65
- i0.ɵɵproperty("ngIf", ctx.emailControl.errors && (ctx.emailControl.dirty || ctx.emailControl.touched));
66
- i0.ɵɵadvance(1);
67
- i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(10, _c1, ctx.emailControl.errors && (ctx.emailControl.dirty || ctx.emailControl.touched)))("id", ctx.id())("formControl", ctx.emailControl);
68
- } }, dependencies: [i1.NgClass, i1.NgIf, i2.DefaultValueAccessor, i2.NgControlStatus, i2.FormControlDirective, i3.FieldLabelPipe, i4.FirstErrorPipe, i5.RpxTranslatePipe], encapsulation: 2 });
69
- }
70
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(WriteEmailFieldComponent, [{
71
- type: Component,
72
- args: [{ selector: 'ccd-write-email-field', template: "<div class=\"form-group bottom-30\" [ngClass]=\"{'form-group-error': !emailControl.valid && (emailControl.dirty || emailControl.touched)}\">\n\n <label [for]=\"id()\">\n <span class=\"form-label\" *ngIf=\"caseField.label\">{{(caseField | ccdFieldLabel)}}</span>\n </label>\n <span class=\"form-hint\" *ngIf=\"caseField.hint_text\">{{caseField.hint_text | rpxTranslate}}</span>\n <span class=\"error-message\" *ngIf=\"emailControl.errors && (emailControl.dirty || emailControl.touched)\">{{(emailControl.errors | ccdFirstError:caseField.label)}}</span>\n\n <input class=\"form-control\" [ngClass]=\"{'govuk-input--error': emailControl.errors && (emailControl.dirty || emailControl.touched)}\"\n [id]=\"id()\" type=\"email\" [formControl]=\"emailControl\">\n\n</div>\n" }]
73
- }], null, null); })();
74
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid3JpdGUtZW1haWwtZmllbGQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2NkLWNhc2UtdWktdG9vbGtpdC9zcmMvbGliL3NoYXJlZC9jb21wb25lbnRzL3BhbGV0dGUvZW1haWwvd3JpdGUtZW1haWwtZmllbGQuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2NkLWNhc2UtdWktdG9vbGtpdC9zcmMvbGliL3NoYXJlZC9jb21wb25lbnRzL3BhbGV0dGUvZW1haWwvd3JpdGUtZW1haWwtZmllbGQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFVLE1BQU0sZUFBZSxDQUFDO0FBQ2xELE9BQU8sRUFBRSxXQUFXLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQztBQUM3QyxPQUFPLEVBQUUsMkJBQTJCLEVBQUUsTUFBTSw4Q0FBOEMsQ0FBQzs7Ozs7Ozs7SUNDdkYsK0JBQWlEO0lBQUEsWUFBK0I7O0lBQUEsaUJBQU87OztJQUF0QyxlQUErQjtJQUEvQiw0REFBK0I7OztJQUVsRiwrQkFBb0Q7SUFBQSxZQUFzQzs7SUFBQSxpQkFBTzs7O0lBQTdDLGVBQXNDO0lBQXRDLHNFQUFzQzs7O0lBQzFGLCtCQUF3RztJQUFBLFlBQXlEOztJQUFBLGlCQUFPOzs7SUFBaEUsZUFBeUQ7SUFBekQsOEZBQXlEOzs7O0FERW5LLE1BQU0sT0FBTyx3QkFBeUIsU0FBUSwyQkFBMkI7SUFFaEUsWUFBWSxDQUFjO0lBRTFCLFFBQVE7UUFDYixJQUFJLENBQUMsWUFBWSxHQUFHLElBQUksQ0FBQyxlQUFlLENBQUMsSUFBSSxXQUFXLENBQUMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxLQUFLLENBQUMsQ0FBZ0IsQ0FBQztJQUNqRyxDQUFDO2tRQU5VLHdCQUF3QixTQUF4Qix3QkFBd0I7NkRBQXhCLHdCQUF3QjtZQ1JyQyw4QkFBd0ksZUFBQTtZQUdwSSwyRUFBdUY7WUFDekYsaUJBQVE7WUFDUiwyRUFBaUc7WUFDakcsMkVBQXdLO1lBRXhLLDJCQUN3RDtZQUUxRCxpQkFBTTs7WUFYNEIscUlBQXFHO1lBRTlILGVBQVk7WUFBWiw4QkFBWTtZQUNTLGVBQXFCO1lBQXJCLDBDQUFxQjtZQUV4QixlQUF5QjtZQUF6Qiw4Q0FBeUI7WUFDckIsZUFBeUU7WUFBekUsc0dBQXlFO1lBRTFFLGVBQXVHO1lBQXZHLHNJQUF1RyxnQkFBQSxpQ0FBQTs7O3VGREF4SCx3QkFBd0I7Y0FKcEMsU0FBUzsyQkFDRSx1QkFBdUIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIE9uSW5pdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgRm9ybUNvbnRyb2wgfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XG5pbXBvcnQgeyBBYnN0cmFjdEZpZWxkV3JpdGVDb21wb25lbnQgfSBmcm9tICcuLi9iYXNlLWZpZWxkL2Fic3RyYWN0LWZpZWxkLXdyaXRlLmNvbXBvbmVudCc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2NjZC13cml0ZS1lbWFpbC1maWVsZCcsXG4gIHRlbXBsYXRlVXJsOiAnd3JpdGUtZW1haWwtZmllbGQuaHRtbCdcbn0pXG5leHBvcnQgY2xhc3MgV3JpdGVFbWFpbEZpZWxkQ29tcG9uZW50IGV4dGVuZHMgQWJzdHJhY3RGaWVsZFdyaXRlQ29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0IHtcblxuICBwdWJsaWMgZW1haWxDb250cm9sOiBGb3JtQ29udHJvbDtcblxuICBwdWJsaWMgbmdPbkluaXQoKSB7XG4gICAgdGhpcy5lbWFpbENvbnRyb2wgPSB0aGlzLnJlZ2lzdGVyQ29udHJvbChuZXcgRm9ybUNvbnRyb2wodGhpcy5jYXNlRmllbGQudmFsdWUpKSBhcyBGb3JtQ29udHJvbDtcbiAgfVxufVxuIiwiPGRpdiBjbGFzcz1cImZvcm0tZ3JvdXAgYm90dG9tLTMwXCIgW25nQ2xhc3NdPVwieydmb3JtLWdyb3VwLWVycm9yJzogIWVtYWlsQ29udHJvbC52YWxpZCAmJiAoZW1haWxDb250cm9sLmRpcnR5IHx8IGVtYWlsQ29udHJvbC50b3VjaGVkKX1cIj5cblxuICA8bGFiZWwgW2Zvcl09XCJpZCgpXCI+XG4gICAgPHNwYW4gY2xhc3M9XCJmb3JtLWxhYmVsXCIgKm5nSWY9XCJjYXNlRmllbGQubGFiZWxcIj57eyhjYXNlRmllbGQgfCBjY2RGaWVsZExhYmVsKX19PC9zcGFuPlxuICA8L2xhYmVsPlxuICA8c3BhbiBjbGFzcz1cImZvcm0taGludFwiICpuZ0lmPVwiY2FzZUZpZWxkLmhpbnRfdGV4dFwiPnt7Y2FzZUZpZWxkLmhpbnRfdGV4dCB8IHJweFRyYW5zbGF0ZX19PC9zcGFuPlxuICA8c3BhbiBjbGFzcz1cImVycm9yLW1lc3NhZ2VcIiAqbmdJZj1cImVtYWlsQ29udHJvbC5lcnJvcnMgJiYgKGVtYWlsQ29udHJvbC5kaXJ0eSB8fCBlbWFpbENvbnRyb2wudG91Y2hlZClcIj57eyhlbWFpbENvbnRyb2wuZXJyb3JzIHwgY2NkRmlyc3RFcnJvcjpjYXNlRmllbGQubGFiZWwpfX08L3NwYW4+XG5cbiAgPGlucHV0IGNsYXNzPVwiZm9ybS1jb250cm9sXCIgW25nQ2xhc3NdPVwieydnb3Z1ay1pbnB1dC0tZXJyb3InOiBlbWFpbENvbnRyb2wuZXJyb3JzICYmIChlbWFpbENvbnRyb2wuZGlydHkgfHwgZW1haWxDb250cm9sLnRvdWNoZWQpfVwiXG4gICAgW2lkXT1cImlkKClcIiB0eXBlPVwiZW1haWxcIiBbZm9ybUNvbnRyb2xdPVwiZW1haWxDb250cm9sXCI+XG5cbjwvZGl2PlxuIl19
@@ -1,23 +0,0 @@
1
- import { Pipe } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export class FixedListPipe {
4
- static EMPTY = '';
5
- transform(value, items) {
6
- if (!!items) {
7
- const item = items.find(i => i.code === value);
8
- return item ? item.label : FixedListPipe.EMPTY;
9
- }
10
- else {
11
- return FixedListPipe.EMPTY;
12
- }
13
- }
14
- static ɵfac = function FixedListPipe_Factory(t) { return new (t || FixedListPipe)(); };
15
- static ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "ccdFixedList", type: FixedListPipe, pure: true });
16
- }
17
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(FixedListPipe, [{
18
- type: Pipe,
19
- args: [{
20
- name: 'ccdFixedList'
21
- }]
22
- }], null, null); })();
23
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZml4ZWQtbGlzdC5waXBlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2NkLWNhc2UtdWktdG9vbGtpdC9zcmMvbGliL3NoYXJlZC9jb21wb25lbnRzL3BhbGV0dGUvZml4ZWQtbGlzdC9maXhlZC1saXN0LnBpcGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLElBQUksRUFBaUIsTUFBTSxlQUFlLENBQUM7O0FBTXBELE1BQU0sT0FBTyxhQUFhO0lBRWhCLE1BQU0sQ0FBVSxLQUFLLEdBQUcsRUFBRSxDQUFDO0lBRTVCLFNBQVMsQ0FBQyxLQUFhLEVBQUUsS0FBc0I7UUFDcEQsSUFBSSxDQUFDLENBQUMsS0FBSyxFQUFFO1lBQ1gsTUFBTSxJQUFJLEdBQUcsS0FBSyxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQyxJQUFJLEtBQUssS0FBSyxDQUFDLENBQUM7WUFDL0MsT0FBTyxJQUFJLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDLGFBQWEsQ0FBQyxLQUFLLENBQUM7U0FDaEQ7YUFBTTtZQUNMLE9BQU8sYUFBYSxDQUFDLEtBQUssQ0FBQztTQUM1QjtJQUNILENBQUM7dUVBWFUsYUFBYTsrRUFBYixhQUFhOzt1RkFBYixhQUFhO2NBSHpCLElBQUk7ZUFBQztnQkFDSixJQUFJLEVBQUUsY0FBYzthQUNyQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IFBpcGUsIFBpcGVUcmFuc2Zvcm0gfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEZpeGVkTGlzdEl0ZW0gfSBmcm9tICcuLi8uLi8uLi9kb21haW4vZGVmaW5pdGlvbi9maXhlZC1saXN0LWl0ZW0ubW9kZWwnO1xuXG5AUGlwZSh7XG4gIG5hbWU6ICdjY2RGaXhlZExpc3QnXG59KVxuZXhwb3J0IGNsYXNzIEZpeGVkTGlzdFBpcGUgaW1wbGVtZW50cyBQaXBlVHJhbnNmb3JtIHtcblxuICBwcml2YXRlIHN0YXRpYyByZWFkb25seSBFTVBUWSA9ICcnO1xuXG4gIHB1YmxpYyB0cmFuc2Zvcm0odmFsdWU6IHN0cmluZywgaXRlbXM6IEZpeGVkTGlzdEl0ZW1bXSk6IGFueSB7XG4gICAgaWYgKCEhaXRlbXMpIHtcbiAgICAgIGNvbnN0IGl0ZW0gPSBpdGVtcy5maW5kKGkgPT4gaS5jb2RlID09PSB2YWx1ZSk7XG4gICAgICByZXR1cm4gaXRlbSA/IGl0ZW0ubGFiZWwgOiBGaXhlZExpc3RQaXBlLkVNUFRZO1xuICAgIH0gZWxzZSB7XG4gICAgICByZXR1cm4gRml4ZWRMaXN0UGlwZS5FTVBUWTtcbiAgICB9XG4gIH1cbn1cbiJdfQ==
@@ -1,26 +0,0 @@
1
- import { Component } from '@angular/core';
2
- import { AbstractFieldReadComponent } from '../base-field/abstract-field-read.component';
3
- import * as i0 from "@angular/core";
4
- import * as i1 from "rpx-xui-translation";
5
- import * as i2 from "./fixed-list.pipe";
6
- export class ReadFixedListFieldComponent extends AbstractFieldReadComponent {
7
- static ɵfac = /*@__PURE__*/ function () { let ɵReadFixedListFieldComponent_BaseFactory; return function ReadFixedListFieldComponent_Factory(t) { return (ɵReadFixedListFieldComponent_BaseFactory || (ɵReadFixedListFieldComponent_BaseFactory = i0.ɵɵgetInheritedFactory(ReadFixedListFieldComponent)))(t || ReadFixedListFieldComponent); }; }();
8
- static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: ReadFixedListFieldComponent, selectors: [["ccd-read-fixed-list-field"]], features: [i0.ɵɵInheritDefinitionFeature], decls: 4, vars: 6, consts: [[1, "text-16"]], template: function ReadFixedListFieldComponent_Template(rf, ctx) { if (rf & 1) {
9
- i0.ɵɵelementStart(0, "span", 0);
10
- i0.ɵɵtext(1);
11
- i0.ɵɵpipe(2, "rpxTranslate");
12
- i0.ɵɵpipe(3, "ccdFixedList");
13
- i0.ɵɵelementEnd();
14
- } if (rf & 2) {
15
- i0.ɵɵadvance(1);
16
- i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(2, 1, i0.ɵɵpipeBind2(3, 3, ctx.caseField.value, ctx.caseField.list_items)));
17
- } }, dependencies: [i1.RpxTranslatePipe, i2.FixedListPipe], encapsulation: 2 });
18
- }
19
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ReadFixedListFieldComponent, [{
20
- type: Component,
21
- args: [{
22
- selector: 'ccd-read-fixed-list-field',
23
- template: '<span class="text-16">{{caseField.value | ccdFixedList:caseField.list_items | rpxTranslate}}</span>',
24
- }]
25
- }], null, null); })();
26
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVhZC1maXhlZC1saXN0LWZpZWxkLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2NjZC1jYXNlLXVpLXRvb2xraXQvc3JjL2xpYi9zaGFyZWQvY29tcG9uZW50cy9wYWxldHRlL2ZpeGVkLWxpc3QvcmVhZC1maXhlZC1saXN0LWZpZWxkLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQzFDLE9BQU8sRUFBRSwwQkFBMEIsRUFBRSxNQUFNLDZDQUE2QyxDQUFDOzs7O0FBTXpGLE1BQU0sT0FBTywyQkFBNEIsU0FBUSwwQkFBMEI7OFFBQTlELDJCQUEyQixTQUEzQiwyQkFBMkI7NkRBQTNCLDJCQUEyQjtZQUYzQiwrQkFBc0I7WUFBQSxZQUFzRTs7O1lBQUEsaUJBQU87O1lBQTdFLGVBQXNFO1lBQXRFLCtHQUFzRTs7O3VGQUU1RiwyQkFBMkI7Y0FKdkMsU0FBUztlQUFDO2dCQUNULFFBQVEsRUFBRSwyQkFBMkI7Z0JBQ3JDLFFBQVEsRUFBRSxxR0FBcUc7YUFDaEgiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEFic3RyYWN0RmllbGRSZWFkQ29tcG9uZW50IH0gZnJvbSAnLi4vYmFzZS1maWVsZC9hYnN0cmFjdC1maWVsZC1yZWFkLmNvbXBvbmVudCc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2NjZC1yZWFkLWZpeGVkLWxpc3QtZmllbGQnLFxuICB0ZW1wbGF0ZTogJzxzcGFuIGNsYXNzPVwidGV4dC0xNlwiPnt7Y2FzZUZpZWxkLnZhbHVlIHwgY2NkRml4ZWRMaXN0OmNhc2VGaWVsZC5saXN0X2l0ZW1zIHwgcnB4VHJhbnNsYXRlfX08L3NwYW4+Jyxcbn0pXG5leHBvcnQgY2xhc3MgUmVhZEZpeGVkTGlzdEZpZWxkQ29tcG9uZW50IGV4dGVuZHMgQWJzdHJhY3RGaWVsZFJlYWRDb21wb25lbnQge1xuXG59XG4iXX0=
@@ -1,107 +0,0 @@
1
- import { Component } from '@angular/core';
2
- import { FormControl } from '@angular/forms';
3
- import { AbstractFieldWriteComponent } from '../base-field/abstract-field-write.component';
4
- import * as i0 from "@angular/core";
5
- import * as i1 from "@angular/common";
6
- import * as i2 from "@angular/forms";
7
- import * as i3 from "../utils/field-label.pipe";
8
- import * as i4 from "../utils/first-error.pipe";
9
- import * as i5 from "rpx-xui-translation";
10
- function WriteFixedListFieldComponent_span_2_Template(rf, ctx) { if (rf & 1) {
11
- i0.ɵɵelementStart(0, "span", 8);
12
- i0.ɵɵtext(1);
13
- i0.ɵɵpipe(2, "ccdFieldLabel");
14
- i0.ɵɵelementEnd();
15
- } if (rf & 2) {
16
- const ctx_r0 = i0.ɵɵnextContext();
17
- i0.ɵɵadvance(1);
18
- i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(2, 1, ctx_r0.caseField));
19
- } }
20
- function WriteFixedListFieldComponent_span_3_Template(rf, ctx) { if (rf & 1) {
21
- i0.ɵɵelementStart(0, "span", 9);
22
- i0.ɵɵtext(1);
23
- i0.ɵɵpipe(2, "rpxTranslate");
24
- i0.ɵɵelementEnd();
25
- } if (rf & 2) {
26
- const ctx_r1 = i0.ɵɵnextContext();
27
- i0.ɵɵadvance(1);
28
- i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(2, 1, ctx_r1.caseField.hint_text));
29
- } }
30
- function WriteFixedListFieldComponent_span_4_Template(rf, ctx) { if (rf & 1) {
31
- i0.ɵɵelementStart(0, "span", 10);
32
- i0.ɵɵtext(1);
33
- i0.ɵɵpipe(2, "ccdFirstError");
34
- i0.ɵɵelementEnd();
35
- } if (rf & 2) {
36
- const ctx_r2 = i0.ɵɵnextContext();
37
- i0.ɵɵadvance(1);
38
- i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind2(2, 1, ctx_r2.fixedListFormControl.errors, ctx_r2.caseField.label), " ");
39
- } }
40
- function WriteFixedListFieldComponent_option_8_Template(rf, ctx) { if (rf & 1) {
41
- i0.ɵɵelementStart(0, "option", 6);
42
- i0.ɵɵtext(1);
43
- i0.ɵɵpipe(2, "rpxTranslate");
44
- i0.ɵɵelementEnd();
45
- } if (rf & 2) {
46
- const type_r4 = ctx.$implicit;
47
- i0.ɵɵproperty("ngValue", type_r4.code);
48
- i0.ɵɵadvance(1);
49
- i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(2, 2, type_r4.label));
50
- } }
51
- const _c0 = function (a0) { return { "form-group-error": a0 }; };
52
- export class WriteFixedListFieldComponent extends AbstractFieldWriteComponent {
53
- fixedListFormControl;
54
- get listItems() {
55
- if (this.caseField) {
56
- if (this.caseField.list_items) {
57
- return this.caseField.list_items;
58
- }
59
- if (this.caseField.formatted_value && this.caseField.formatted_value.list_items) {
60
- return this.caseField.formatted_value.list_items;
61
- }
62
- }
63
- return [];
64
- }
65
- ngOnInit() {
66
- const isNull = this.caseField.value === undefined || this.caseField.value === '';
67
- if (isNull) {
68
- this.caseField.value = null;
69
- }
70
- this.fixedListFormControl = this.registerControl(new FormControl(this.caseField.value));
71
- this.fixedListFormControl.setValue(this.caseField.value);
72
- }
73
- static ɵfac = /*@__PURE__*/ function () { let ɵWriteFixedListFieldComponent_BaseFactory; return function WriteFixedListFieldComponent_Factory(t) { return (ɵWriteFixedListFieldComponent_BaseFactory || (ɵWriteFixedListFieldComponent_BaseFactory = i0.ɵɵgetInheritedFactory(WriteFixedListFieldComponent)))(t || WriteFixedListFieldComponent); }; }();
74
- static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: WriteFixedListFieldComponent, selectors: [["ccd-write-fixed-list-field"]], features: [i0.ɵɵInheritDefinitionFeature], decls: 9, vars: 11, consts: [[1, "form-group", 3, "ngClass"], [3, "for"], ["class", "form-label", 4, "ngIf"], ["class", "form-hint", 4, "ngIf"], ["class", "error-message", 4, "ngIf"], [1, "form-control", "ccd-dropdown", "bottom-30", 3, "id", "formControl"], [3, "ngValue"], [3, "ngValue", 4, "ngFor", "ngForOf"], [1, "form-label"], [1, "form-hint"], [1, "error-message"]], template: function WriteFixedListFieldComponent_Template(rf, ctx) { if (rf & 1) {
75
- i0.ɵɵelementStart(0, "div", 0)(1, "label", 1);
76
- i0.ɵɵtemplate(2, WriteFixedListFieldComponent_span_2_Template, 3, 3, "span", 2);
77
- i0.ɵɵelementEnd();
78
- i0.ɵɵtemplate(3, WriteFixedListFieldComponent_span_3_Template, 3, 3, "span", 3);
79
- i0.ɵɵtemplate(4, WriteFixedListFieldComponent_span_4_Template, 3, 4, "span", 4);
80
- i0.ɵɵelementStart(5, "select", 5)(6, "option", 6);
81
- i0.ɵɵtext(7, "--Select a value--");
82
- i0.ɵɵelementEnd();
83
- i0.ɵɵtemplate(8, WriteFixedListFieldComponent_option_8_Template, 3, 4, "option", 7);
84
- i0.ɵɵelementEnd()();
85
- } if (rf & 2) {
86
- i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(9, _c0, !ctx.fixedListFormControl.valid && (ctx.fixedListFormControl.dirty || ctx.fixedListFormControl.touched)));
87
- i0.ɵɵadvance(1);
88
- i0.ɵɵproperty("for", ctx.id());
89
- i0.ɵɵadvance(1);
90
- i0.ɵɵproperty("ngIf", ctx.caseField.label);
91
- i0.ɵɵadvance(1);
92
- i0.ɵɵproperty("ngIf", ctx.caseField.hint_text);
93
- i0.ɵɵadvance(1);
94
- i0.ɵɵproperty("ngIf", ctx.fixedListFormControl.errors && (ctx.fixedListFormControl.dirty || ctx.fixedListFormControl.touched));
95
- i0.ɵɵadvance(1);
96
- i0.ɵɵproperty("id", ctx.id())("formControl", ctx.fixedListFormControl);
97
- i0.ɵɵadvance(1);
98
- i0.ɵɵproperty("ngValue", null);
99
- i0.ɵɵadvance(2);
100
- i0.ɵɵproperty("ngForOf", ctx.listItems);
101
- } }, dependencies: [i1.NgClass, i1.NgForOf, i1.NgIf, i2.NgSelectOption, i2.ɵNgSelectMultipleOption, i2.SelectControlValueAccessor, i2.NgControlStatus, i2.FormControlDirective, i3.FieldLabelPipe, i4.FirstErrorPipe, i5.RpxTranslatePipe], encapsulation: 2 });
102
- }
103
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(WriteFixedListFieldComponent, [{
104
- type: Component,
105
- args: [{ selector: 'ccd-write-fixed-list-field', template: "<div class=\"form-group\" [ngClass]=\"{'form-group-error': !fixedListFormControl.valid && (fixedListFormControl.dirty || fixedListFormControl.touched)}\">\n\n <label [for]=\"id()\">\n <span class=\"form-label\" *ngIf=\"caseField.label\">{{(caseField | ccdFieldLabel)}}</span>\n </label>\n <span class=\"form-hint\" *ngIf=\"caseField.hint_text\">{{caseField.hint_text | rpxTranslate}}</span>\n <span class=\"error-message\" *ngIf=\"fixedListFormControl.errors && (fixedListFormControl.dirty || fixedListFormControl.touched)\">\n {{(fixedListFormControl.errors | ccdFirstError:caseField.label)}}\n </span>\n\n <select class=\"form-control ccd-dropdown bottom-30\" [id]=\"id()\" [formControl]=\"fixedListFormControl\">\n <option [ngValue]=null>--Select a value--</option>\n <option [ngValue]=\"type.code\" *ngFor=\"let type of listItems\">{{type.label | rpxTranslate}}</option>\n </select>\n\n</div>\n" }]
106
- }], null, null); })();
107
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid3JpdGUtZml4ZWQtbGlzdC1maWVsZC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jY2QtY2FzZS11aS10b29sa2l0L3NyYy9saWIvc2hhcmVkL2NvbXBvbmVudHMvcGFsZXR0ZS9maXhlZC1saXN0L3dyaXRlLWZpeGVkLWxpc3QtZmllbGQuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2NkLWNhc2UtdWktdG9vbGtpdC9zcmMvbGliL3NoYXJlZC9jb21wb25lbnRzL3BhbGV0dGUvZml4ZWQtbGlzdC93cml0ZS1maXhlZC1saXN0LWZpZWxkLmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBVSxNQUFNLGVBQWUsQ0FBQztBQUNsRCxPQUFPLEVBQUUsV0FBVyxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFDN0MsT0FBTyxFQUFFLDJCQUEyQixFQUFFLE1BQU0sOENBQThDLENBQUM7Ozs7Ozs7O0lDQ3ZGLCtCQUFpRDtJQUFBLFlBQStCOztJQUFBLGlCQUFPOzs7SUFBdEMsZUFBK0I7SUFBL0IsNERBQStCOzs7SUFFbEYsK0JBQW9EO0lBQUEsWUFBc0M7O0lBQUEsaUJBQU87OztJQUE3QyxlQUFzQztJQUF0QyxzRUFBc0M7OztJQUMxRixnQ0FBZ0k7SUFDOUgsWUFDRjs7SUFBQSxpQkFBTzs7O0lBREwsZUFDRjtJQURFLGlIQUNGOzs7SUFJRSxpQ0FBNkQ7SUFBQSxZQUE2Qjs7SUFBQSxpQkFBUzs7O0lBQTNGLHNDQUFxQjtJQUFnQyxlQUE2QjtJQUE3Qix5REFBNkI7OztBREo5RixNQUFNLE9BQU8sNEJBQTZCLFNBQVEsMkJBQTJCO0lBRXBFLG9CQUFvQixDQUFjO0lBRXpDLElBQVcsU0FBUztRQUNsQixJQUFJLElBQUksQ0FBQyxTQUFTLEVBQUU7WUFDbEIsSUFBSSxJQUFJLENBQUMsU0FBUyxDQUFDLFVBQVUsRUFBRTtnQkFDN0IsT0FBTyxJQUFJLENBQUMsU0FBUyxDQUFDLFVBQVUsQ0FBQzthQUNsQztZQUNELElBQUksSUFBSSxDQUFDLFNBQVMsQ0FBQyxlQUFlLElBQUksSUFBSSxDQUFDLFNBQVMsQ0FBQyxlQUFlLENBQUMsVUFBVSxFQUFFO2dCQUMvRSxPQUFPLElBQUksQ0FBQyxTQUFTLENBQUMsZUFBZSxDQUFDLFVBQVUsQ0FBQzthQUNsRDtTQUNGO1FBQ0QsT0FBTyxFQUFFLENBQUM7SUFDWixDQUFDO0lBRU0sUUFBUTtRQUNiLE1BQU0sTUFBTSxHQUFHLElBQUksQ0FBQyxTQUFTLENBQUMsS0FBSyxLQUFLLFNBQVMsSUFBSSxJQUFJLENBQUMsU0FBUyxDQUFDLEtBQUssS0FBSyxFQUFFLENBQUM7UUFFakYsSUFBSSxNQUFNLEVBQUU7WUFDVixJQUFJLENBQUMsU0FBUyxDQUFDLEtBQUssR0FBRyxJQUFJLENBQUM7U0FDN0I7UUFFRCxJQUFJLENBQUMsb0JBQW9CLEdBQUcsSUFBSSxDQUFDLGVBQWUsQ0FBQyxJQUFJLFdBQVcsQ0FBQyxJQUFJLENBQUMsU0FBUyxDQUFDLEtBQUssQ0FBQyxDQUFnQixDQUFDO1FBQ3ZHLElBQUksQ0FBQyxvQkFBb0IsQ0FBQyxRQUFRLENBQUMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUMzRCxDQUFDO2tSQXpCVSw0QkFBNEIsU0FBNUIsNEJBQTRCOzZEQUE1Qiw0QkFBNEI7WUNSekMsOEJBQXNKLGVBQUE7WUFHbEosK0VBQXVGO1lBQ3pGLGlCQUFRO1lBQ1IsK0VBQWlHO1lBQ2pHLCtFQUVPO1lBRVAsaUNBQXFHLGdCQUFBO1lBQzVFLGtDQUFrQjtZQUFBLGlCQUFTO1lBQ2xELG1GQUFtRztZQUNyRyxpQkFBUyxFQUFBOztZQWJhLDZKQUE2SDtZQUU1SSxlQUFZO1lBQVosOEJBQVk7WUFDUyxlQUFxQjtZQUFyQiwwQ0FBcUI7WUFFeEIsZUFBeUI7WUFBekIsOENBQXlCO1lBQ3JCLGVBQWlHO1lBQWpHLDhIQUFpRztZQUkxRSxlQUFXO1lBQVgsNkJBQVcseUNBQUE7WUFDckQsZUFBYztZQUFkLDhCQUFjO1lBQ3lCLGVBQVk7WUFBWix1Q0FBWTs7O3VGREpsRCw0QkFBNEI7Y0FKeEMsU0FBUzsyQkFDRSw0QkFBNEIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIE9uSW5pdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgRm9ybUNvbnRyb2wgfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XG5pbXBvcnQgeyBBYnN0cmFjdEZpZWxkV3JpdGVDb21wb25lbnQgfSBmcm9tICcuLi9iYXNlLWZpZWxkL2Fic3RyYWN0LWZpZWxkLXdyaXRlLmNvbXBvbmVudCc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2NjZC13cml0ZS1maXhlZC1saXN0LWZpZWxkJyxcbiAgdGVtcGxhdGVVcmw6ICcuL3dyaXRlLWZpeGVkLWxpc3QtZmllbGQuaHRtbCdcbn0pXG5leHBvcnQgY2xhc3MgV3JpdGVGaXhlZExpc3RGaWVsZENvbXBvbmVudCBleHRlbmRzIEFic3RyYWN0RmllbGRXcml0ZUNvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XG5cbiAgcHVibGljIGZpeGVkTGlzdEZvcm1Db250cm9sOiBGb3JtQ29udHJvbDtcblxuICBwdWJsaWMgZ2V0IGxpc3RJdGVtcygpOiBhbnlbXSB7XG4gICAgaWYgKHRoaXMuY2FzZUZpZWxkKSB7XG4gICAgICBpZiAodGhpcy5jYXNlRmllbGQubGlzdF9pdGVtcykge1xuICAgICAgICByZXR1cm4gdGhpcy5jYXNlRmllbGQubGlzdF9pdGVtcztcbiAgICAgIH1cbiAgICAgIGlmICh0aGlzLmNhc2VGaWVsZC5mb3JtYXR0ZWRfdmFsdWUgJiYgdGhpcy5jYXNlRmllbGQuZm9ybWF0dGVkX3ZhbHVlLmxpc3RfaXRlbXMpIHtcbiAgICAgICAgcmV0dXJuIHRoaXMuY2FzZUZpZWxkLmZvcm1hdHRlZF92YWx1ZS5saXN0X2l0ZW1zO1xuICAgICAgfVxuICAgIH1cbiAgICByZXR1cm4gW107XG4gIH1cblxuICBwdWJsaWMgbmdPbkluaXQoKSB7XG4gICAgY29uc3QgaXNOdWxsID0gdGhpcy5jYXNlRmllbGQudmFsdWUgPT09IHVuZGVmaW5lZCB8fCB0aGlzLmNhc2VGaWVsZC52YWx1ZSA9PT0gJyc7XG5cbiAgICBpZiAoaXNOdWxsKSB7XG4gICAgICB0aGlzLmNhc2VGaWVsZC52YWx1ZSA9IG51bGw7XG4gICAgfVxuXG4gICAgdGhpcy5maXhlZExpc3RGb3JtQ29udHJvbCA9IHRoaXMucmVnaXN0ZXJDb250cm9sKG5ldyBGb3JtQ29udHJvbCh0aGlzLmNhc2VGaWVsZC52YWx1ZSkpIGFzIEZvcm1Db250cm9sO1xuICAgIHRoaXMuZml4ZWRMaXN0Rm9ybUNvbnRyb2wuc2V0VmFsdWUodGhpcy5jYXNlRmllbGQudmFsdWUpO1xuICB9XG59XG4iLCI8ZGl2IGNsYXNzPVwiZm9ybS1ncm91cFwiIFtuZ0NsYXNzXT1cInsnZm9ybS1ncm91cC1lcnJvcic6ICFmaXhlZExpc3RGb3JtQ29udHJvbC52YWxpZCAmJiAoZml4ZWRMaXN0Rm9ybUNvbnRyb2wuZGlydHkgfHwgZml4ZWRMaXN0Rm9ybUNvbnRyb2wudG91Y2hlZCl9XCI+XG5cbiAgPGxhYmVsIFtmb3JdPVwiaWQoKVwiPlxuICAgIDxzcGFuIGNsYXNzPVwiZm9ybS1sYWJlbFwiICpuZ0lmPVwiY2FzZUZpZWxkLmxhYmVsXCI+e3soY2FzZUZpZWxkIHwgY2NkRmllbGRMYWJlbCl9fTwvc3Bhbj5cbiAgPC9sYWJlbD5cbiAgPHNwYW4gY2xhc3M9XCJmb3JtLWhpbnRcIiAqbmdJZj1cImNhc2VGaWVsZC5oaW50X3RleHRcIj57e2Nhc2VGaWVsZC5oaW50X3RleHQgfCBycHhUcmFuc2xhdGV9fTwvc3Bhbj5cbiAgPHNwYW4gY2xhc3M9XCJlcnJvci1tZXNzYWdlXCIgKm5nSWY9XCJmaXhlZExpc3RGb3JtQ29udHJvbC5lcnJvcnMgJiYgKGZpeGVkTGlzdEZvcm1Db250cm9sLmRpcnR5IHx8IGZpeGVkTGlzdEZvcm1Db250cm9sLnRvdWNoZWQpXCI+XG4gICAge3soZml4ZWRMaXN0Rm9ybUNvbnRyb2wuZXJyb3JzIHwgY2NkRmlyc3RFcnJvcjpjYXNlRmllbGQubGFiZWwpfX1cbiAgPC9zcGFuPlxuXG4gIDxzZWxlY3QgY2xhc3M9XCJmb3JtLWNvbnRyb2wgY2NkLWRyb3Bkb3duIGJvdHRvbS0zMFwiIFtpZF09XCJpZCgpXCIgW2Zvcm1Db250cm9sXT1cImZpeGVkTGlzdEZvcm1Db250cm9sXCI+XG4gICAgPG9wdGlvbiBbbmdWYWx1ZV09bnVsbD4tLVNlbGVjdCBhIHZhbHVlLS08L29wdGlvbj5cbiAgICA8b3B0aW9uIFtuZ1ZhbHVlXT1cInR5cGUuY29kZVwiICpuZ0Zvcj1cImxldCB0eXBlIG9mIGxpc3RJdGVtc1wiPnt7dHlwZS5sYWJlbCB8IHJweFRyYW5zbGF0ZX19PC9vcHRpb24+XG4gIDwvc2VsZWN0PlxuXG48L2Rpdj5cbiJdfQ==
@@ -1,18 +0,0 @@
1
- import { Pipe } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export class FixedRadioListPipe {
4
- static EMPTY = '';
5
- transform(value, items) {
6
- const item = items.find(i => i.code === value);
7
- return item ? item.label : FixedRadioListPipe.EMPTY;
8
- }
9
- static ɵfac = function FixedRadioListPipe_Factory(t) { return new (t || FixedRadioListPipe)(); };
10
- static ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "ccdFixedRadioList", type: FixedRadioListPipe, pure: true });
11
- }
12
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(FixedRadioListPipe, [{
13
- type: Pipe,
14
- args: [{
15
- name: 'ccdFixedRadioList'
16
- }]
17
- }], null, null); })();
18
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZml4ZWQtcmFkaW8tbGlzdC5waXBlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2NkLWNhc2UtdWktdG9vbGtpdC9zcmMvbGliL3NoYXJlZC9jb21wb25lbnRzL3BhbGV0dGUvZml4ZWQtcmFkaW8tbGlzdC9maXhlZC1yYWRpby1saXN0LnBpcGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLElBQUksRUFBaUIsTUFBTSxlQUFlLENBQUM7O0FBTXBELE1BQU0sT0FBTyxrQkFBa0I7SUFFckIsTUFBTSxDQUFVLEtBQUssR0FBRyxFQUFFLENBQUM7SUFFNUIsU0FBUyxDQUFDLEtBQWEsRUFBRSxLQUFzQjtRQUNwRCxNQUFNLElBQUksR0FBRyxLQUFLLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDLElBQUksS0FBSyxLQUFLLENBQUMsQ0FBQztRQUMvQyxPQUFPLElBQUksQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsa0JBQWtCLENBQUMsS0FBSyxDQUFDO0lBQ3RELENBQUM7NEVBUFUsa0JBQWtCO29GQUFsQixrQkFBa0I7O3VGQUFsQixrQkFBa0I7Y0FIOUIsSUFBSTtlQUFDO2dCQUNKLElBQUksRUFBRSxtQkFBbUI7YUFDMUIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBQaXBlLCBQaXBlVHJhbnNmb3JtIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBGaXhlZExpc3RJdGVtIH0gZnJvbSAnLi4vLi4vLi4vZG9tYWluL2RlZmluaXRpb24vZml4ZWQtbGlzdC1pdGVtLm1vZGVsJztcblxuQFBpcGUoe1xuICBuYW1lOiAnY2NkRml4ZWRSYWRpb0xpc3QnXG59KVxuZXhwb3J0IGNsYXNzIEZpeGVkUmFkaW9MaXN0UGlwZSBpbXBsZW1lbnRzIFBpcGVUcmFuc2Zvcm0ge1xuXG4gIHByaXZhdGUgc3RhdGljIHJlYWRvbmx5IEVNUFRZID0gJyc7XG5cbiAgcHVibGljIHRyYW5zZm9ybSh2YWx1ZTogc3RyaW5nLCBpdGVtczogRml4ZWRMaXN0SXRlbVtdKTogYW55IHtcbiAgICBjb25zdCBpdGVtID0gaXRlbXMuZmluZChpID0+IGkuY29kZSA9PT0gdmFsdWUpO1xuICAgIHJldHVybiBpdGVtID8gaXRlbS5sYWJlbCA6IEZpeGVkUmFkaW9MaXN0UGlwZS5FTVBUWTtcbiAgfVxufVxuIl19
@@ -1,26 +0,0 @@
1
- import { Component } from '@angular/core';
2
- import { AbstractFieldReadComponent } from '../base-field/abstract-field-read.component';
3
- import * as i0 from "@angular/core";
4
- import * as i1 from "rpx-xui-translation";
5
- import * as i2 from "./fixed-radio-list.pipe";
6
- export class ReadFixedRadioListFieldComponent extends AbstractFieldReadComponent {
7
- static ɵfac = /*@__PURE__*/ function () { let ɵReadFixedRadioListFieldComponent_BaseFactory; return function ReadFixedRadioListFieldComponent_Factory(t) { return (ɵReadFixedRadioListFieldComponent_BaseFactory || (ɵReadFixedRadioListFieldComponent_BaseFactory = i0.ɵɵgetInheritedFactory(ReadFixedRadioListFieldComponent)))(t || ReadFixedRadioListFieldComponent); }; }();
8
- static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: ReadFixedRadioListFieldComponent, selectors: [["ccd-read-fixed-radio-list-field"]], features: [i0.ɵɵInheritDefinitionFeature], decls: 4, vars: 6, consts: [[1, "text-16"]], template: function ReadFixedRadioListFieldComponent_Template(rf, ctx) { if (rf & 1) {
9
- i0.ɵɵelementStart(0, "span", 0);
10
- i0.ɵɵtext(1);
11
- i0.ɵɵpipe(2, "rpxTranslate");
12
- i0.ɵɵpipe(3, "ccdFixedRadioList");
13
- i0.ɵɵelementEnd();
14
- } if (rf & 2) {
15
- i0.ɵɵadvance(1);
16
- i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(2, 1, i0.ɵɵpipeBind2(3, 3, ctx.caseField.value, ctx.caseField.field_type.fixed_list_items)));
17
- } }, dependencies: [i1.RpxTranslatePipe, i2.FixedRadioListPipe], encapsulation: 2 });
18
- }
19
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ReadFixedRadioListFieldComponent, [{
20
- type: Component,
21
- args: [{
22
- selector: 'ccd-read-fixed-radio-list-field',
23
- template: '<span class="text-16">{{caseField.value | ccdFixedRadioList:caseField.field_type.fixed_list_items | rpxTranslate}}</span>',
24
- }]
25
- }], null, null); })();
26
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVhZC1maXhlZC1yYWRpby1saXN0LWZpZWxkLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2NjZC1jYXNlLXVpLXRvb2xraXQvc3JjL2xpYi9zaGFyZWQvY29tcG9uZW50cy9wYWxldHRlL2ZpeGVkLXJhZGlvLWxpc3QvcmVhZC1maXhlZC1yYWRpby1saXN0LWZpZWxkLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQzFDLE9BQU8sRUFBRSwwQkFBMEIsRUFBRSxNQUFNLDZDQUE2QyxDQUFDOzs7O0FBTXpGLE1BQU0sT0FBTyxnQ0FBaUMsU0FBUSwwQkFBMEI7a1NBQW5FLGdDQUFnQyxTQUFoQyxnQ0FBZ0M7NkRBQWhDLGdDQUFnQztZQUZoQywrQkFBc0I7WUFBQSxZQUE0Rjs7O1lBQUEsaUJBQU87O1lBQW5HLGVBQTRGO1lBQTVGLGdJQUE0Rjs7O3VGQUVsSCxnQ0FBZ0M7Y0FKNUMsU0FBUztlQUFDO2dCQUNULFFBQVEsRUFBRSxpQ0FBaUM7Z0JBQzNDLFFBQVEsRUFBRSwySEFBMkg7YUFDdEkiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEFic3RyYWN0RmllbGRSZWFkQ29tcG9uZW50IH0gZnJvbSAnLi4vYmFzZS1maWVsZC9hYnN0cmFjdC1maWVsZC1yZWFkLmNvbXBvbmVudCc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2NjZC1yZWFkLWZpeGVkLXJhZGlvLWxpc3QtZmllbGQnLFxuICB0ZW1wbGF0ZTogJzxzcGFuIGNsYXNzPVwidGV4dC0xNlwiPnt7Y2FzZUZpZWxkLnZhbHVlIHwgY2NkRml4ZWRSYWRpb0xpc3Q6Y2FzZUZpZWxkLmZpZWxkX3R5cGUuZml4ZWRfbGlzdF9pdGVtcyB8IHJweFRyYW5zbGF0ZX19PC9zcGFuPicsXG59KVxuZXhwb3J0IGNsYXNzIFJlYWRGaXhlZFJhZGlvTGlzdEZpZWxkQ29tcG9uZW50IGV4dGVuZHMgQWJzdHJhY3RGaWVsZFJlYWRDb21wb25lbnQgeyB9XG4iXX0=
@@ -1,96 +0,0 @@
1
- import { Component } from '@angular/core';
2
- import { FormControl } from '@angular/forms';
3
- import { AbstractFieldWriteComponent } from '../base-field/abstract-field-write.component';
4
- import * as i0 from "@angular/core";
5
- import * as i1 from "@angular/common";
6
- import * as i2 from "@angular/forms";
7
- import * as i3 from "../utils/field-label.pipe";
8
- import * as i4 from "../utils/first-error.pipe";
9
- import * as i5 from "rpx-xui-translation";
10
- function WriteFixedRadioListFieldComponent_span_4_Template(rf, ctx) { if (rf & 1) {
11
- i0.ɵɵelementStart(0, "span", 6);
12
- i0.ɵɵtext(1);
13
- i0.ɵɵpipe(2, "ccdFieldLabel");
14
- i0.ɵɵelementEnd();
15
- } if (rf & 2) {
16
- const ctx_r0 = i0.ɵɵnextContext();
17
- i0.ɵɵadvance(1);
18
- i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(2, 1, ctx_r0.caseField));
19
- } }
20
- function WriteFixedRadioListFieldComponent_span_5_Template(rf, ctx) { if (rf & 1) {
21
- i0.ɵɵelementStart(0, "span", 7);
22
- i0.ɵɵtext(1);
23
- i0.ɵɵpipe(2, "rpxTranslate");
24
- i0.ɵɵelementEnd();
25
- } if (rf & 2) {
26
- const ctx_r1 = i0.ɵɵnextContext();
27
- i0.ɵɵadvance(1);
28
- i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(2, 1, ctx_r1.caseField.hint_text));
29
- } }
30
- function WriteFixedRadioListFieldComponent_span_6_Template(rf, ctx) { if (rf & 1) {
31
- i0.ɵɵelementStart(0, "span", 8);
32
- i0.ɵɵtext(1);
33
- i0.ɵɵpipe(2, "ccdFirstError");
34
- i0.ɵɵelementEnd();
35
- } if (rf & 2) {
36
- const ctx_r2 = i0.ɵɵnextContext();
37
- i0.ɵɵadvance(1);
38
- i0.ɵɵtextInterpolate(i0.ɵɵpipeBind2(2, 1, ctx_r2.fixedRadioListControl.errors, ctx_r2.caseField.label));
39
- } }
40
- const _c0 = function (a0) { return { selected: a0 }; };
41
- function WriteFixedRadioListFieldComponent_div_8_Template(rf, ctx) { if (rf & 1) {
42
- i0.ɵɵelementStart(0, "div", 9);
43
- i0.ɵɵelement(1, "input", 10);
44
- i0.ɵɵelementStart(2, "label", 11);
45
- i0.ɵɵtext(3);
46
- i0.ɵɵpipe(4, "rpxTranslate");
47
- i0.ɵɵelementEnd()();
48
- } if (rf & 2) {
49
- const radioButton_r4 = ctx.$implicit;
50
- const ctx_r3 = i0.ɵɵnextContext();
51
- i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(9, _c0, ctx_r3.fixedRadioListControl.value === radioButton_r4.code));
52
- i0.ɵɵadvance(1);
53
- i0.ɵɵproperty("id", ctx_r3.id() + "-" + radioButton_r4.code)("name", ctx_r3.id())("formControl", ctx_r3.fixedRadioListControl)("value", radioButton_r4.code);
54
- i0.ɵɵadvance(1);
55
- i0.ɵɵproperty("for", ctx_r3.id() + "-" + radioButton_r4.code);
56
- i0.ɵɵadvance(1);
57
- i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(4, 7, radioButton_r4.label));
58
- } }
59
- const _c1 = function (a0) { return { "form-group-error": a0 }; };
60
- export class WriteFixedRadioListFieldComponent extends AbstractFieldWriteComponent {
61
- fixedRadioListControl;
62
- ngOnInit() {
63
- const notEmpty = this.caseField.value !== null && this.caseField.value !== undefined;
64
- this.fixedRadioListControl = this.registerControl(new FormControl(notEmpty ? this.caseField.value : null));
65
- }
66
- static ɵfac = /*@__PURE__*/ function () { let ɵWriteFixedRadioListFieldComponent_BaseFactory; return function WriteFixedRadioListFieldComponent_Factory(t) { return (ɵWriteFixedRadioListFieldComponent_BaseFactory || (ɵWriteFixedRadioListFieldComponent_BaseFactory = i0.ɵɵgetInheritedFactory(WriteFixedRadioListFieldComponent)))(t || WriteFixedRadioListFieldComponent); }; }();
67
- static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: WriteFixedRadioListFieldComponent, selectors: [["ccd-write-fixed-radio-list-field"]], features: [i0.ɵɵInheritDefinitionFeature], decls: 9, vars: 9, consts: [[1, "form-group", "bottom-30", 3, "ngClass", "id"], [3, "for"], ["class", "form-label", 4, "ngIf"], ["class", "form-hint", 4, "ngIf"], ["class", "error-message", 4, "ngIf"], ["class", "multiple-choice", 3, "ngClass", 4, "ngFor", "ngForOf"], [1, "form-label"], [1, "form-hint"], [1, "error-message"], [1, "multiple-choice", 3, "ngClass"], ["type", "radio", 1, "form-control", 3, "id", "name", "formControl", "value"], [1, "form-label", 3, "for"]], template: function WriteFixedRadioListFieldComponent_Template(rf, ctx) { if (rf & 1) {
68
- i0.ɵɵelementStart(0, "div", 0)(1, "fieldset")(2, "legend")(3, "label", 1);
69
- i0.ɵɵtemplate(4, WriteFixedRadioListFieldComponent_span_4_Template, 3, 3, "span", 2);
70
- i0.ɵɵelementEnd();
71
- i0.ɵɵtemplate(5, WriteFixedRadioListFieldComponent_span_5_Template, 3, 3, "span", 3);
72
- i0.ɵɵtemplate(6, WriteFixedRadioListFieldComponent_span_6_Template, 3, 4, "span", 4);
73
- i0.ɵɵelementEnd();
74
- i0.ɵɵelementContainerStart(7);
75
- i0.ɵɵtemplate(8, WriteFixedRadioListFieldComponent_div_8_Template, 5, 11, "div", 5);
76
- i0.ɵɵelementContainerEnd();
77
- i0.ɵɵelementEnd()();
78
- } if (rf & 2) {
79
- i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(7, _c1, !ctx.fixedRadioListControl.valid && (ctx.fixedRadioListControl.dirty || ctx.fixedRadioListControl.touched)))("id", ctx.id());
80
- i0.ɵɵadvance(3);
81
- i0.ɵɵproperty("for", ctx.id());
82
- i0.ɵɵadvance(1);
83
- i0.ɵɵproperty("ngIf", ctx.caseField.label);
84
- i0.ɵɵadvance(1);
85
- i0.ɵɵproperty("ngIf", ctx.caseField.hint_text);
86
- i0.ɵɵadvance(1);
87
- i0.ɵɵproperty("ngIf", ctx.fixedRadioListControl.errors && (ctx.fixedRadioListControl.dirty || ctx.fixedRadioListControl.touched));
88
- i0.ɵɵadvance(2);
89
- i0.ɵɵproperty("ngForOf", ctx.caseField.field_type.fixed_list_items);
90
- } }, dependencies: [i1.NgClass, i1.NgForOf, i1.NgIf, i2.DefaultValueAccessor, i2.RadioControlValueAccessor, i2.NgControlStatus, i2.FormControlDirective, i3.FieldLabelPipe, i4.FirstErrorPipe, i5.RpxTranslatePipe], encapsulation: 2 });
91
- }
92
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(WriteFixedRadioListFieldComponent, [{
93
- type: Component,
94
- args: [{ selector: 'ccd-write-fixed-radio-list-field', template: "<div class=\"form-group bottom-30\" [ngClass]=\"{'form-group-error': !fixedRadioListControl.valid && (fixedRadioListControl.dirty || fixedRadioListControl.touched)}\" [id]=\"id()\">\n <fieldset>\n <legend>\n <label [for]=\"id()\">\n <span class=\"form-label\" *ngIf=\"caseField.label\">{{(caseField | ccdFieldLabel)}}</span>\n </label>\n <span class=\"form-hint\" *ngIf=\"caseField.hint_text\">{{caseField.hint_text | rpxTranslate }}</span>\n <span class=\"error-message\" *ngIf=\"fixedRadioListControl.errors && (fixedRadioListControl.dirty || fixedRadioListControl.touched)\">{{(fixedRadioListControl.errors | ccdFirstError:caseField.label)}}</span>\n </legend>\n <ng-container>\n <div class=\"multiple-choice\" *ngFor=\"let radioButton of caseField.field_type.fixed_list_items\" [ngClass]=\"{selected: fixedRadioListControl.value === radioButton.code}\">\n <input class=\"form-control\" [id]=\"id()+'-'+radioButton.code\" [name]=\"id()\" type=\"radio\" [formControl]=\"fixedRadioListControl\" [value]=\"radioButton.code\">\n <label class=\"form-label\" [for]=\"id()+'-'+radioButton.code\">{{radioButton.label | rpxTranslate}}</label>\n </div>\n </ng-container>\n </fieldset>\n</div>\n" }]
95
- }], null, null); })();
96
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid3JpdGUtZml4ZWQtcmFkaW8tbGlzdC1maWVsZC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jY2QtY2FzZS11aS10b29sa2l0L3NyYy9saWIvc2hhcmVkL2NvbXBvbmVudHMvcGFsZXR0ZS9maXhlZC1yYWRpby1saXN0L3dyaXRlLWZpeGVkLXJhZGlvLWxpc3QtZmllbGQuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2NkLWNhc2UtdWktdG9vbGtpdC9zcmMvbGliL3NoYXJlZC9jb21wb25lbnRzL3BhbGV0dGUvZml4ZWQtcmFkaW8tbGlzdC93cml0ZS1maXhlZC1yYWRpby1saXN0LWZpZWxkLmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBVSxNQUFNLGVBQWUsQ0FBQztBQUNsRCxPQUFPLEVBQUUsV0FBVyxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFDN0MsT0FBTyxFQUFFLDJCQUEyQixFQUFFLE1BQU0sOENBQThDLENBQUM7Ozs7Ozs7O0lDRW5GLCtCQUFpRDtJQUFBLFlBQStCOztJQUFBLGlCQUFPOzs7SUFBdEMsZUFBK0I7SUFBL0IsNERBQStCOzs7SUFFbEYsK0JBQW9EO0lBQUEsWUFBdUM7O0lBQUEsaUJBQU87OztJQUE5QyxlQUF1QztJQUF2QyxzRUFBdUM7OztJQUMzRiwrQkFBbUk7SUFBQSxZQUFrRTs7SUFBQSxpQkFBTzs7O0lBQXpFLGVBQWtFO0lBQWxFLHVHQUFrRTs7OztJQUdyTSw4QkFBd0s7SUFDdEssNEJBQXlKO0lBQ3pKLGlDQUE0RDtJQUFBLFlBQW9DOztJQUFBLGlCQUFRLEVBQUE7Ozs7SUFGWCxnSEFBd0U7SUFDekksZUFBZ0M7SUFBaEMsNERBQWdDLHFCQUFBLDZDQUFBLDhCQUFBO0lBQ2xDLGVBQWlDO0lBQWpDLDZEQUFpQztJQUFDLGVBQW9DO0lBQXBDLGdFQUFvQzs7O0FESnhHLE1BQU0sT0FBTyxpQ0FBa0MsU0FBUSwyQkFBMkI7SUFFekUscUJBQXFCLENBQWM7SUFFbkMsUUFBUTtRQUNiLE1BQU0sUUFBUSxHQUFHLElBQUksQ0FBQyxTQUFTLENBQUMsS0FBSyxLQUFLLElBQUksSUFBSSxJQUFJLENBQUMsU0FBUyxDQUFDLEtBQUssS0FBSyxTQUFTLENBQUM7UUFDckYsSUFBSSxDQUFDLHFCQUFxQixHQUFHLElBQUksQ0FBQyxlQUFlLENBQUMsSUFBSSxXQUFXLENBQUMsUUFBUSxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsU0FBUyxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLENBQWdCLENBQUM7SUFDNUgsQ0FBQztzU0FQVSxpQ0FBaUMsU0FBakMsaUNBQWlDOzZEQUFqQyxpQ0FBaUM7WUNSOUMsOEJBQStLLGVBQUEsYUFBQSxlQUFBO1lBSXZLLG9GQUF1RjtZQUN6RixpQkFBUTtZQUNSLG9GQUFrRztZQUNsRyxvRkFBNE07WUFDOU0saUJBQVM7WUFDVCw2QkFBYztZQUNaLG1GQUdNO1lBQ1IsMEJBQWU7WUFDakIsaUJBQVcsRUFBQTs7WUFmcUIsZ0tBQWdJLGdCQUFBO1lBR3JKLGVBQVk7WUFBWiw4QkFBWTtZQUNTLGVBQXFCO1lBQXJCLDBDQUFxQjtZQUV4QixlQUF5QjtZQUF6Qiw4Q0FBeUI7WUFDckIsZUFBb0c7WUFBcEcsaUlBQW9HO1lBRzVFLGVBQXdDO1lBQXhDLG1FQUF3Qzs7O3VGREZ0RixpQ0FBaUM7Y0FKN0MsU0FBUzsyQkFDRSxrQ0FBa0MiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIE9uSW5pdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgRm9ybUNvbnRyb2wgfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XG5pbXBvcnQgeyBBYnN0cmFjdEZpZWxkV3JpdGVDb21wb25lbnQgfSBmcm9tICcuLi9iYXNlLWZpZWxkL2Fic3RyYWN0LWZpZWxkLXdyaXRlLmNvbXBvbmVudCc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2NjZC13cml0ZS1maXhlZC1yYWRpby1saXN0LWZpZWxkJyxcbiAgdGVtcGxhdGVVcmw6ICcuL3dyaXRlLWZpeGVkLXJhZGlvLWxpc3QtZmllbGQuaHRtbCdcbn0pXG5leHBvcnQgY2xhc3MgV3JpdGVGaXhlZFJhZGlvTGlzdEZpZWxkQ29tcG9uZW50IGV4dGVuZHMgQWJzdHJhY3RGaWVsZFdyaXRlQ29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0IHtcblxuICBwdWJsaWMgZml4ZWRSYWRpb0xpc3RDb250cm9sOiBGb3JtQ29udHJvbDtcblxuICBwdWJsaWMgbmdPbkluaXQoKSB7XG4gICAgY29uc3Qgbm90RW1wdHkgPSB0aGlzLmNhc2VGaWVsZC52YWx1ZSAhPT0gbnVsbCAmJiB0aGlzLmNhc2VGaWVsZC52YWx1ZSAhPT0gdW5kZWZpbmVkO1xuICAgIHRoaXMuZml4ZWRSYWRpb0xpc3RDb250cm9sID0gdGhpcy5yZWdpc3RlckNvbnRyb2wobmV3IEZvcm1Db250cm9sKG5vdEVtcHR5ID8gdGhpcy5jYXNlRmllbGQudmFsdWUgOiBudWxsKSkgYXMgRm9ybUNvbnRyb2w7XG4gIH1cbn1cbiIsIjxkaXYgY2xhc3M9XCJmb3JtLWdyb3VwIGJvdHRvbS0zMFwiIFtuZ0NsYXNzXT1cInsnZm9ybS1ncm91cC1lcnJvcic6ICFmaXhlZFJhZGlvTGlzdENvbnRyb2wudmFsaWQgJiYgKGZpeGVkUmFkaW9MaXN0Q29udHJvbC5kaXJ0eSB8fCBmaXhlZFJhZGlvTGlzdENvbnRyb2wudG91Y2hlZCl9XCIgW2lkXT1cImlkKClcIj5cbiAgPGZpZWxkc2V0PlxuICAgIDxsZWdlbmQ+XG4gICAgICA8bGFiZWwgW2Zvcl09XCJpZCgpXCI+XG4gICAgICAgIDxzcGFuIGNsYXNzPVwiZm9ybS1sYWJlbFwiICpuZ0lmPVwiY2FzZUZpZWxkLmxhYmVsXCI+e3soY2FzZUZpZWxkIHwgY2NkRmllbGRMYWJlbCl9fTwvc3Bhbj5cbiAgICAgIDwvbGFiZWw+XG4gICAgICA8c3BhbiBjbGFzcz1cImZvcm0taGludFwiICpuZ0lmPVwiY2FzZUZpZWxkLmhpbnRfdGV4dFwiPnt7Y2FzZUZpZWxkLmhpbnRfdGV4dCB8IHJweFRyYW5zbGF0ZSB9fTwvc3Bhbj5cbiAgICAgIDxzcGFuIGNsYXNzPVwiZXJyb3ItbWVzc2FnZVwiICpuZ0lmPVwiZml4ZWRSYWRpb0xpc3RDb250cm9sLmVycm9ycyAmJiAoZml4ZWRSYWRpb0xpc3RDb250cm9sLmRpcnR5IHx8IGZpeGVkUmFkaW9MaXN0Q29udHJvbC50b3VjaGVkKVwiPnt7KGZpeGVkUmFkaW9MaXN0Q29udHJvbC5lcnJvcnMgfCBjY2RGaXJzdEVycm9yOmNhc2VGaWVsZC5sYWJlbCl9fTwvc3Bhbj5cbiAgICA8L2xlZ2VuZD5cbiAgICA8bmctY29udGFpbmVyPlxuICAgICAgPGRpdiBjbGFzcz1cIm11bHRpcGxlLWNob2ljZVwiICpuZ0Zvcj1cImxldCByYWRpb0J1dHRvbiBvZiBjYXNlRmllbGQuZmllbGRfdHlwZS5maXhlZF9saXN0X2l0ZW1zXCIgW25nQ2xhc3NdPVwie3NlbGVjdGVkOiBmaXhlZFJhZGlvTGlzdENvbnRyb2wudmFsdWUgPT09IHJhZGlvQnV0dG9uLmNvZGV9XCI+XG4gICAgICAgIDxpbnB1dCBjbGFzcz1cImZvcm0tY29udHJvbFwiIFtpZF09XCJpZCgpKyctJytyYWRpb0J1dHRvbi5jb2RlXCIgW25hbWVdPVwiaWQoKVwiIHR5cGU9XCJyYWRpb1wiIFtmb3JtQ29udHJvbF09XCJmaXhlZFJhZGlvTGlzdENvbnRyb2xcIiBbdmFsdWVdPVwicmFkaW9CdXR0b24uY29kZVwiPlxuICAgICAgICA8bGFiZWwgY2xhc3M9XCJmb3JtLWxhYmVsXCIgW2Zvcl09XCJpZCgpKyctJytyYWRpb0J1dHRvbi5jb2RlXCI+e3tyYWRpb0J1dHRvbi5sYWJlbCB8IHJweFRyYW5zbGF0ZX19PC9sYWJlbD5cbiAgICAgIDwvZGl2PlxuICAgIDwvbmctY29udGFpbmVyPlxuICA8L2ZpZWxkc2V0PlxuPC9kaXY+XG4iXX0=
@@ -1,16 +0,0 @@
1
- import { Component } from '@angular/core';
2
- import { AbstractFieldReadComponent } from '../base-field/abstract-field-read.component';
3
- import * as i0 from "@angular/core";
4
- export class CaseHistoryViewerFieldComponent extends AbstractFieldReadComponent {
5
- static ɵfac = /*@__PURE__*/ function () { let ɵCaseHistoryViewerFieldComponent_BaseFactory; return function CaseHistoryViewerFieldComponent_Factory(t) { return (ɵCaseHistoryViewerFieldComponent_BaseFactory || (ɵCaseHistoryViewerFieldComponent_BaseFactory = i0.ɵɵgetInheritedFactory(CaseHistoryViewerFieldComponent)))(t || CaseHistoryViewerFieldComponent); }; }();
6
- static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: CaseHistoryViewerFieldComponent, selectors: [["ccd-case-history-viewer-field"]], features: [i0.ɵɵInheritDefinitionFeature], decls: 1, vars: 1, consts: [[3, "events"]], template: function CaseHistoryViewerFieldComponent_Template(rf, ctx) { if (rf & 1) {
7
- i0.ɵɵelement(0, "ccd-event-log", 0);
8
- } if (rf & 2) {
9
- i0.ɵɵproperty("events", ctx.caseField.value);
10
- } }, encapsulation: 2 });
11
- }
12
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(CaseHistoryViewerFieldComponent, [{
13
- type: Component,
14
- args: [{ selector: 'ccd-case-history-viewer-field', template: "<ccd-event-log [events]=\"caseField.value\"></ccd-event-log>" }]
15
- }], null, null); })();
16
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2FzZS1oaXN0b3J5LXZpZXdlci1maWVsZC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jY2QtY2FzZS11aS10b29sa2l0L3NyYy9saWIvc2hhcmVkL2NvbXBvbmVudHMvcGFsZXR0ZS9oaXN0b3J5L2Nhc2UtaGlzdG9yeS12aWV3ZXItZmllbGQuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2NkLWNhc2UtdWktdG9vbGtpdC9zcmMvbGliL3NoYXJlZC9jb21wb25lbnRzL3BhbGV0dGUvaGlzdG9yeS9jYXNlLWhpc3Rvcnktdmlld2VyLWZpZWxkLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDMUMsT0FBTyxFQUFFLDBCQUEwQixFQUFFLE1BQU0sNkNBQTZDLENBQUM7O0FBTXpGLE1BQU0sT0FBTywrQkFBZ0MsU0FBUSwwQkFBMEI7OFJBQWxFLCtCQUErQixTQUEvQiwrQkFBK0I7NkRBQS9CLCtCQUErQjtZQ1A1QyxtQ0FBMEQ7O1lBQTNDLDRDQUEwQjs7O3VGRE81QiwrQkFBK0I7Y0FKM0MsU0FBUzsyQkFDRSwrQkFBK0IiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEFic3RyYWN0RmllbGRSZWFkQ29tcG9uZW50IH0gZnJvbSAnLi4vYmFzZS1maWVsZC9hYnN0cmFjdC1maWVsZC1yZWFkLmNvbXBvbmVudCc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2NjZC1jYXNlLWhpc3Rvcnktdmlld2VyLWZpZWxkJyxcbiAgdGVtcGxhdGVVcmw6ICdjYXNlLWhpc3Rvcnktdmlld2VyLWZpZWxkLmNvbXBvbmVudC5odG1sJyxcbn0pXG5leHBvcnQgY2xhc3MgQ2FzZUhpc3RvcnlWaWV3ZXJGaWVsZENvbXBvbmVudCBleHRlbmRzIEFic3RyYWN0RmllbGRSZWFkQ29tcG9uZW50IHt9XG4iLCI8Y2NkLWV2ZW50LWxvZyBbZXZlbnRzXT1cImNhc2VGaWVsZC52YWx1ZVwiPjwvY2NkLWV2ZW50LWxvZz4iXX0=
@@ -1,98 +0,0 @@
1
- import { Component, Input } from '@angular/core';
2
- import { CaseViewEvent } from '../../../../domain';
3
- import * as i0 from "@angular/core";
4
- import * as i1 from "@angular/common";
5
- import * as i2 from "../../utils/date.pipe";
6
- import * as i3 from "../../utils/dash.pipe";
7
- import * as i4 from "rpx-xui-translation";
8
- export class EventLogDetailsComponent {
9
- event;
10
- static ɵfac = function EventLogDetailsComponent_Factory(t) { return new (t || EventLogDetailsComponent)(); };
11
- static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: EventLogDetailsComponent, selectors: [["ccd-event-log-details"]], inputs: { event: "event" }, decls: 59, vars: 39, consts: [["tabindex", "0", 1, "EventLogDetails"], [1, "heading-h2"], ["tabindex", "0", "aria-live", "polite"], [1, "text-16"], [1, "tooltip", "text-16"]], template: function EventLogDetailsComponent_Template(rf, ctx) { if (rf & 1) {
12
- i0.ɵɵelementStart(0, "table", 0)(1, "caption")(2, "h2", 1);
13
- i0.ɵɵtext(3);
14
- i0.ɵɵpipe(4, "rpxTranslate");
15
- i0.ɵɵelementEnd()();
16
- i0.ɵɵelementStart(5, "tbody", 2)(6, "tr")(7, "th")(8, "span", 3);
17
- i0.ɵɵtext(9);
18
- i0.ɵɵpipe(10, "rpxTranslate");
19
- i0.ɵɵelementEnd()();
20
- i0.ɵɵelementStart(11, "td")(12, "div", 4);
21
- i0.ɵɵtext(13);
22
- i0.ɵɵpipe(14, "ccdDate");
23
- i0.ɵɵelementEnd()()();
24
- i0.ɵɵelementStart(15, "tr")(16, "th")(17, "span", 3);
25
- i0.ɵɵtext(18);
26
- i0.ɵɵpipe(19, "rpxTranslate");
27
- i0.ɵɵelementEnd()();
28
- i0.ɵɵelementStart(20, "td")(21, "span", 3);
29
- i0.ɵɵtext(22);
30
- i0.ɵɵpipe(23, "titlecase");
31
- i0.ɵɵpipe(24, "uppercase");
32
- i0.ɵɵelementEnd()()();
33
- i0.ɵɵelementStart(25, "tr")(26, "th")(27, "span", 3);
34
- i0.ɵɵtext(28);
35
- i0.ɵɵpipe(29, "rpxTranslate");
36
- i0.ɵɵelementEnd()();
37
- i0.ɵɵelementStart(30, "td")(31, "span", 3);
38
- i0.ɵɵtext(32);
39
- i0.ɵɵelementEnd()()();
40
- i0.ɵɵelementStart(33, "tr")(34, "th")(35, "span", 3);
41
- i0.ɵɵtext(36);
42
- i0.ɵɵpipe(37, "rpxTranslate");
43
- i0.ɵɵelementEnd()();
44
- i0.ɵɵelementStart(38, "td")(39, "span", 3);
45
- i0.ɵɵtext(40);
46
- i0.ɵɵelementEnd()()();
47
- i0.ɵɵelementStart(41, "tr")(42, "th")(43, "span", 3);
48
- i0.ɵɵtext(44);
49
- i0.ɵɵpipe(45, "rpxTranslate");
50
- i0.ɵɵelementEnd()();
51
- i0.ɵɵelementStart(46, "td")(47, "span", 3);
52
- i0.ɵɵtext(48);
53
- i0.ɵɵpipe(49, "ccdDash");
54
- i0.ɵɵelementEnd()()();
55
- i0.ɵɵelementStart(50, "tr")(51, "th")(52, "span", 3);
56
- i0.ɵɵtext(53);
57
- i0.ɵɵpipe(54, "rpxTranslate");
58
- i0.ɵɵelementEnd()();
59
- i0.ɵɵelementStart(55, "td")(56, "span", 3);
60
- i0.ɵɵtext(57);
61
- i0.ɵɵpipe(58, "ccdDash");
62
- i0.ɵɵelementEnd()()()()();
63
- } if (rf & 2) {
64
- i0.ɵɵadvance(3);
65
- i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(4, 14, "Details"));
66
- i0.ɵɵadvance(6);
67
- i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(10, 16, "Date"));
68
- i0.ɵɵadvance(4);
69
- i0.ɵɵtextInterpolate1("", i0.ɵɵpipeBind2(14, 18, ctx.event.timestamp, "local"), " ");
70
- i0.ɵɵadvance(5);
71
- i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(19, 21, "Author"));
72
- i0.ɵɵadvance(4);
73
- i0.ɵɵtextInterpolate2("", i0.ɵɵpipeBind1(23, 23, ctx.event.user_first_name), " ", i0.ɵɵpipeBind1(24, 25, ctx.event.user_last_name), "");
74
- i0.ɵɵadvance(6);
75
- i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(29, 27, "End state"));
76
- i0.ɵɵadvance(4);
77
- i0.ɵɵtextInterpolate(ctx.event.state_name);
78
- i0.ɵɵadvance(4);
79
- i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(37, 29, "Event"));
80
- i0.ɵɵadvance(4);
81
- i0.ɵɵtextInterpolate(ctx.event.event_name);
82
- i0.ɵɵadvance(4);
83
- i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(45, 31, "Summary"));
84
- i0.ɵɵadvance(4);
85
- i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(49, 33, ctx.event.summary));
86
- i0.ɵɵadvance(5);
87
- i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(54, 35, "Comment"));
88
- i0.ɵɵadvance(4);
89
- i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(58, 37, ctx.event.comment));
90
- } }, dependencies: [i1.UpperCasePipe, i1.TitleCasePipe, i2.DatePipe, i3.DashPipe, i4.RpxTranslatePipe], styles: [".EventLogDetails[_ngcontent-%COMP%] th[_ngcontent-%COMP%], .EventLogDetails[_ngcontent-%COMP%] td[_ngcontent-%COMP%]{border-bottom:none}"] });
91
- }
92
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(EventLogDetailsComponent, [{
93
- type: Component,
94
- args: [{ selector: 'ccd-event-log-details', template: "<table tabindex=\"0\" class=\"EventLogDetails\">\n <caption><h2 class=\"heading-h2\">{{'Details' | rpxTranslate}}</h2></caption>\n <tbody tabindex=\"0\" aria-live=\"polite\">\n <tr>\n <th><span class=\"text-16\">{{'Date' | rpxTranslate}}</span></th>\n <td>\n <div class=\"tooltip text-16\">{{event.timestamp | ccdDate : 'local'}}\n </div>\n </td>\n </tr>\n <tr>\n <th><span class=\"text-16\">{{'Author' | rpxTranslate}}</span></th>\n <td><span class=\"text-16\">{{event.user_first_name | titlecase}} {{event.user_last_name | uppercase}}</span></td>\n </tr>\n <tr>\n <th><span class=\"text-16\">{{'End state' | rpxTranslate}}</span></th>\n <td><span class=\"text-16\">{{event.state_name}}</span></td>\n </tr>\n <tr>\n <th><span class=\"text-16\">{{'Event' | rpxTranslate}}</span></th>\n <td><span class=\"text-16\">{{event.event_name}}</span></td>\n </tr>\n <tr>\n <th><span class=\"text-16\">{{'Summary' | rpxTranslate}}</span></th>\n <td><span class=\"text-16\">{{event.summary | ccdDash}}</span></td>\n </tr>\n <tr>\n <th><span class=\"text-16\">{{'Comment' | rpxTranslate}}</span></th>\n <td><span class=\"text-16\">{{event.comment | ccdDash}}</span></td>\n </tr>\n </tbody>\n</table>\n", styles: [".EventLogDetails th,.EventLogDetails td{border-bottom:none}\n"] }]
95
- }], null, { event: [{
96
- type: Input
97
- }] }); })();
98
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXZlbnQtbG9nLWRldGFpbHMuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2NkLWNhc2UtdWktdG9vbGtpdC9zcmMvbGliL3NoYXJlZC9jb21wb25lbnRzL3BhbGV0dGUvaGlzdG9yeS9ldmVudC1sb2cvZXZlbnQtbG9nLWRldGFpbHMuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2NkLWNhc2UtdWktdG9vbGtpdC9zcmMvbGliL3NoYXJlZC9jb21wb25lbnRzL3BhbGV0dGUvaGlzdG9yeS9ldmVudC1sb2cvZXZlbnQtbG9nLWRldGFpbHMuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDakQsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLG9CQUFvQixDQUFDOzs7Ozs7QUFPbkQsTUFBTSxPQUFPLHdCQUF3QjtJQUU1QixLQUFLLENBQWdCO2tGQUZqQix3QkFBd0I7NkRBQXhCLHdCQUF3QjtZQ1JyQyxnQ0FBNEMsY0FBQSxZQUFBO1lBQ1YsWUFBNEI7O1lBQUEsaUJBQUssRUFBQTtZQUNqRSxnQ0FBdUMsU0FBQSxTQUFBLGNBQUE7WUFFVCxZQUF5Qjs7WUFBQSxpQkFBTyxFQUFBO1lBQzFELDJCQUFJLGNBQUE7WUFDMkIsYUFDN0I7O1lBQUEsaUJBQU0sRUFBQSxFQUFBO1lBR1YsMkJBQUksVUFBQSxlQUFBO1lBQ3dCLGFBQTJCOztZQUFBLGlCQUFPLEVBQUE7WUFDNUQsMkJBQUksZUFBQTtZQUFzQixhQUEwRTs7O1lBQUEsaUJBQU8sRUFBQSxFQUFBO1lBRTdHLDJCQUFJLFVBQUEsZUFBQTtZQUN3QixhQUE4Qjs7WUFBQSxpQkFBTyxFQUFBO1lBQy9ELDJCQUFJLGVBQUE7WUFBc0IsYUFBb0I7WUFBQSxpQkFBTyxFQUFBLEVBQUE7WUFFdkQsMkJBQUksVUFBQSxlQUFBO1lBQ3dCLGFBQTBCOztZQUFBLGlCQUFPLEVBQUE7WUFDM0QsMkJBQUksZUFBQTtZQUFzQixhQUFvQjtZQUFBLGlCQUFPLEVBQUEsRUFBQTtZQUV2RCwyQkFBSSxVQUFBLGVBQUE7WUFDd0IsYUFBNEI7O1lBQUEsaUJBQU8sRUFBQTtZQUM3RCwyQkFBSSxlQUFBO1lBQXNCLGFBQTJCOztZQUFBLGlCQUFPLEVBQUEsRUFBQTtZQUU5RCwyQkFBSSxVQUFBLGVBQUE7WUFDd0IsYUFBNEI7O1lBQUEsaUJBQU8sRUFBQTtZQUM3RCwyQkFBSSxlQUFBO1lBQXNCLGFBQTJCOztZQUFBLGlCQUFPLEVBQUEsRUFBQSxFQUFBLEVBQUE7O1lBM0JoQyxlQUE0QjtZQUE1QixzREFBNEI7WUFHOUIsZUFBeUI7WUFBekIsb0RBQXlCO1lBRXBCLGVBQzdCO1lBRDZCLG9GQUM3QjtZQUl3QixlQUEyQjtZQUEzQixzREFBMkI7WUFDM0IsZUFBMEU7WUFBMUUsdUlBQTBFO1lBRzFFLGVBQThCO1lBQTlCLHlEQUE4QjtZQUM5QixlQUFvQjtZQUFwQiwwQ0FBb0I7WUFHcEIsZUFBMEI7WUFBMUIscURBQTBCO1lBQzFCLGVBQW9CO1lBQXBCLDBDQUFvQjtZQUdwQixlQUE0QjtZQUE1Qix1REFBNEI7WUFDNUIsZUFBMkI7WUFBM0IsK0RBQTJCO1lBRzNCLGVBQTRCO1lBQTVCLHVEQUE0QjtZQUM1QixlQUEyQjtZQUEzQiwrREFBMkI7Ozt1RkRwQjlDLHdCQUF3QjtjQUxwQyxTQUFTOzJCQUNFLHVCQUF1QjtnQkFNMUIsS0FBSztrQkFEWCxLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBJbnB1dCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQ2FzZVZpZXdFdmVudCB9IGZyb20gJy4uLy4uLy4uLy4uL2RvbWFpbic7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2NjZC1ldmVudC1sb2ctZGV0YWlscycsXG4gIHRlbXBsYXRlVXJsOiAnLi9ldmVudC1sb2ctZGV0YWlscy5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL2V2ZW50LWxvZy1kZXRhaWxzLnNjc3MnXVxufSlcbmV4cG9ydCBjbGFzcyBFdmVudExvZ0RldGFpbHNDb21wb25lbnQge1xuICBASW5wdXQoKVxuICBwdWJsaWMgZXZlbnQ6IENhc2VWaWV3RXZlbnQ7XG59XG4iLCI8dGFibGUgdGFiaW5kZXg9XCIwXCIgY2xhc3M9XCJFdmVudExvZ0RldGFpbHNcIj5cbiAgPGNhcHRpb24+PGgyIGNsYXNzPVwiaGVhZGluZy1oMlwiPnt7J0RldGFpbHMnIHwgcnB4VHJhbnNsYXRlfX08L2gyPjwvY2FwdGlvbj5cbiAgPHRib2R5IHRhYmluZGV4PVwiMFwiIGFyaWEtbGl2ZT1cInBvbGl0ZVwiPlxuICAgIDx0cj5cbiAgICAgIDx0aD48c3BhbiBjbGFzcz1cInRleHQtMTZcIj57eydEYXRlJyB8IHJweFRyYW5zbGF0ZX19PC9zcGFuPjwvdGg+XG4gICAgICA8dGQ+XG4gICAgICAgIDxkaXYgY2xhc3M9XCJ0b29sdGlwIHRleHQtMTZcIj57e2V2ZW50LnRpbWVzdGFtcCB8IGNjZERhdGUgOiAnbG9jYWwnfX1cbiAgICAgICAgPC9kaXY+XG4gICAgICA8L3RkPlxuICAgIDwvdHI+XG4gICAgPHRyPlxuICAgICAgPHRoPjxzcGFuIGNsYXNzPVwidGV4dC0xNlwiPnt7J0F1dGhvcicgfCBycHhUcmFuc2xhdGV9fTwvc3Bhbj48L3RoPlxuICAgICAgPHRkPjxzcGFuIGNsYXNzPVwidGV4dC0xNlwiPnt7ZXZlbnQudXNlcl9maXJzdF9uYW1lIHwgdGl0bGVjYXNlfX0ge3tldmVudC51c2VyX2xhc3RfbmFtZSB8IHVwcGVyY2FzZX19PC9zcGFuPjwvdGQ+XG4gICAgPC90cj5cbiAgICA8dHI+XG4gICAgICA8dGg+PHNwYW4gY2xhc3M9XCJ0ZXh0LTE2XCI+e3snRW5kIHN0YXRlJyB8IHJweFRyYW5zbGF0ZX19PC9zcGFuPjwvdGg+XG4gICAgICA8dGQ+PHNwYW4gY2xhc3M9XCJ0ZXh0LTE2XCI+e3tldmVudC5zdGF0ZV9uYW1lfX08L3NwYW4+PC90ZD5cbiAgICA8L3RyPlxuICAgIDx0cj5cbiAgICAgIDx0aD48c3BhbiBjbGFzcz1cInRleHQtMTZcIj57eydFdmVudCcgfCBycHhUcmFuc2xhdGV9fTwvc3Bhbj48L3RoPlxuICAgICAgPHRkPjxzcGFuIGNsYXNzPVwidGV4dC0xNlwiPnt7ZXZlbnQuZXZlbnRfbmFtZX19PC9zcGFuPjwvdGQ+XG4gICAgPC90cj5cbiAgICA8dHI+XG4gICAgICA8dGg+PHNwYW4gY2xhc3M9XCJ0ZXh0LTE2XCI+e3snU3VtbWFyeScgfCBycHhUcmFuc2xhdGV9fTwvc3Bhbj48L3RoPlxuICAgICAgPHRkPjxzcGFuIGNsYXNzPVwidGV4dC0xNlwiPnt7ZXZlbnQuc3VtbWFyeSB8IGNjZERhc2h9fTwvc3Bhbj48L3RkPlxuICAgIDwvdHI+XG4gICAgPHRyPlxuICAgICAgPHRoPjxzcGFuIGNsYXNzPVwidGV4dC0xNlwiPnt7J0NvbW1lbnQnIHwgcnB4VHJhbnNsYXRlfX08L3NwYW4+PC90aD5cbiAgICAgIDx0ZD48c3BhbiBjbGFzcz1cInRleHQtMTZcIj57e2V2ZW50LmNvbW1lbnQgfCBjY2REYXNofX08L3NwYW4+PC90ZD5cbiAgICA8L3RyPlxuICA8L3Rib2R5PlxuPC90YWJsZT5cbiJdfQ==