@hmcts/ccd-case-ui-toolkit 5.0.7-angular11-upgrade → 5.0.8-angular11-upgrade

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 (305) hide show
  1. package/bundles/hmcts-ccd-case-ui-toolkit.umd.js +21811 -14307
  2. package/bundles/hmcts-ccd-case-ui-toolkit.umd.js.map +1 -1
  3. package/bundles/hmcts-ccd-case-ui-toolkit.umd.min.js +2 -2
  4. package/bundles/hmcts-ccd-case-ui-toolkit.umd.min.js.map +1 -1
  5. package/esm2015/lib/shared/components/case-editor/case-create/case-create.component.js +94 -0
  6. package/esm2015/lib/shared/components/case-editor/case-create/index.js +2 -0
  7. package/esm2015/lib/shared/components/case-editor/case-edit/case-edit.component.js +113 -0
  8. package/esm2015/lib/shared/components/case-editor/case-edit/index.js +2 -0
  9. package/esm2015/lib/shared/components/case-editor/case-edit-confirm/case-edit-confirm.component.js +131 -0
  10. package/esm2015/lib/shared/components/case-editor/case-edit-confirm/index.js +2 -0
  11. package/esm2015/lib/shared/components/case-editor/case-edit-form/case-edit-form.component.js +146 -0
  12. package/esm2015/lib/shared/components/case-editor/case-edit-form/index.js +2 -0
  13. package/esm2015/lib/shared/components/case-editor/case-edit-page/case-edit-page-text.enum.js +11 -0
  14. package/esm2015/lib/shared/components/case-editor/case-edit-page/case-edit-page.component.js +654 -0
  15. package/esm2015/lib/shared/components/case-editor/case-edit-page/index.js +2 -0
  16. package/esm2015/lib/shared/components/case-editor/case-edit-submit/case-edit-submit.component.js +759 -0
  17. package/esm2015/lib/shared/components/case-editor/case-edit-submit/index.js +2 -0
  18. package/esm2015/lib/shared/components/case-editor/case-editor.module.js +185 -0
  19. package/esm2015/lib/shared/components/case-editor/case-event-completion/case-event-completion.component.js +89 -0
  20. package/esm2015/lib/shared/components/case-editor/case-event-completion/components/case-event-completion-task-cancelled/case-event-completion-task-cancelled.component.js +72 -0
  21. package/esm2015/lib/shared/components/case-editor/case-event-completion/components/case-event-completion-task-reassigned/case-event-completion-task-reassigned.component.js +157 -0
  22. package/esm2015/lib/shared/components/case-editor/case-event-completion/index.js +4 -0
  23. package/esm2015/lib/shared/components/case-editor/case-progress/case-progress.component.js +85 -0
  24. package/esm2015/lib/shared/components/case-editor/case-progress/index.js +2 -0
  25. package/esm2015/lib/shared/components/case-editor/domain/event-completion-params.model.js +2 -0
  26. package/esm2015/lib/shared/components/case-editor/domain/event-completion-portal-types.model.js +6 -0
  27. package/esm2015/lib/shared/components/case-editor/editor.routing.js +31 -0
  28. package/esm2015/lib/shared/components/case-editor/index.js +13 -0
  29. package/esm2015/lib/shared/components/case-editor/services/case-edit-wizard.guard.js +92 -0
  30. package/esm2015/lib/shared/components/case-editor/services/convert-href-to-router.service.js +41 -0
  31. package/esm2015/lib/shared/components/case-editor/services/event-completion-state-machine.service.js +162 -0
  32. package/esm2015/lib/shared/components/case-editor/services/event-trigger.service.js +20 -0
  33. package/esm2015/lib/shared/components/case-editor/services/index.js +12 -0
  34. package/esm2015/lib/shared/components/case-editor/services/page-validation.service.js +50 -0
  35. package/esm2015/lib/shared/components/case-editor/services/wizard-factory.service.js +7 -0
  36. package/esm2015/lib/shared/components/case-history/case-history.component.js +264 -0
  37. package/esm2015/lib/shared/components/case-history/case-history.module.js +52 -0
  38. package/esm2015/lib/shared/components/case-history/domain/case-history.model.js +28 -0
  39. package/esm2015/lib/shared/components/case-history/index.js +3 -0
  40. package/esm2015/lib/shared/components/case-history/services/case-history.service.js +40 -0
  41. package/esm2015/lib/shared/components/case-timeline/case-timeline.component.js +118 -0
  42. package/esm2015/lib/shared/components/case-timeline/case-timeline.module.js +46 -0
  43. package/esm2015/lib/shared/components/case-timeline/index.js +3 -0
  44. package/esm2015/lib/shared/components/case-viewer/case-basic-access-view/case-basic-access-view.component.js +195 -0
  45. package/esm2015/lib/shared/components/case-viewer/case-basic-access-view/index.js +2 -0
  46. package/esm2015/lib/shared/components/case-viewer/case-challenged-access-request/case-challenged-access-request.component.js +307 -0
  47. package/esm2015/lib/shared/components/case-viewer/case-challenged-access-request/index.js +2 -0
  48. package/esm2015/lib/shared/components/case-viewer/case-challenged-access-request/models/case-challenged-access-request.enum.js +20 -0
  49. package/esm2015/lib/shared/components/case-viewer/case-challenged-access-request/models/index.js +2 -0
  50. package/esm2015/lib/shared/components/case-viewer/case-challenged-access-success/case-challenged-access-success.component.js +64 -0
  51. package/esm2015/lib/shared/components/case-viewer/case-challenged-access-success/index.js +2 -0
  52. package/esm2015/lib/shared/components/case-viewer/case-event-trigger/case-event-trigger.component.js +120 -0
  53. package/esm2015/lib/shared/components/case-viewer/case-event-trigger/index.js +2 -0
  54. package/esm2015/lib/shared/components/case-viewer/case-full-access-view/case-full-access-view.component.js +545 -0
  55. package/esm2015/lib/shared/components/case-viewer/case-full-access-view/index.js +2 -0
  56. package/esm2015/lib/shared/components/case-viewer/case-review-specific-access-reject/case-review-specific-access-reject.component.js +63 -0
  57. package/esm2015/lib/shared/components/case-viewer/case-review-specific-access-reject/index.js +2 -0
  58. package/esm2015/lib/shared/components/case-viewer/case-review-specific-access-request/case-review-specific-access-request.component.js +258 -0
  59. package/esm2015/lib/shared/components/case-viewer/case-review-specific-access-request/index.js +2 -0
  60. package/esm2015/lib/shared/components/case-viewer/case-review-specific-access-request/models/case-review-specific-access-request.enum.js +18 -0
  61. package/esm2015/lib/shared/components/case-viewer/case-review-specific-access-request/models/index.js +2 -0
  62. package/esm2015/lib/shared/components/case-viewer/case-specific-access-request/case-specific-access-request.component.js +195 -0
  63. package/esm2015/lib/shared/components/case-viewer/case-specific-access-request/index.js +2 -0
  64. package/esm2015/lib/shared/components/case-viewer/case-specific-access-request/models/case-specific-access-request.enum.js +11 -0
  65. package/esm2015/lib/shared/components/case-viewer/case-specific-access-request/models/index.js +2 -0
  66. package/esm2015/lib/shared/components/case-viewer/case-specific-access-success/case-specific-access-success.component.js +60 -0
  67. package/esm2015/lib/shared/components/case-viewer/case-specific-access-success/index.js +2 -0
  68. package/esm2015/lib/shared/components/case-viewer/case-view/case-view.component.js +100 -0
  69. package/esm2015/lib/shared/components/case-viewer/case-view/index.js +2 -0
  70. package/esm2015/lib/shared/components/case-viewer/case-viewer.component.js +129 -0
  71. package/esm2015/lib/shared/components/case-viewer/case-viewer.module.js +155 -0
  72. package/esm2015/lib/shared/components/case-viewer/index.js +14 -0
  73. package/esm2015/lib/shared/components/case-viewer/printer/case-printer.component.js +111 -0
  74. package/esm2015/lib/shared/components/case-viewer/printer/index.js +4 -0
  75. package/esm2015/lib/shared/components/case-viewer/printer/pipes/index.js +2 -0
  76. package/esm2015/lib/shared/components/case-viewer/printer/pipes/print-url.pipe.js +60 -0
  77. package/esm2015/lib/shared/components/case-viewer/services/case.resolver.js +110 -0
  78. package/esm2015/lib/shared/components/case-viewer/services/event-trigger.resolver.js +64 -0
  79. package/esm2015/lib/shared/components/case-viewer/services/index.js +3 -0
  80. package/esm2015/lib/shared/components/case-viewer/viewer.routing.js +127 -0
  81. package/esm2015/lib/shared/components/event-trigger/event-trigger.component.js +108 -0
  82. package/esm2015/lib/shared/components/event-trigger/event-trigger.module.js +35 -0
  83. package/esm2015/lib/shared/components/event-trigger/index.js +3 -0
  84. package/esm2015/lib/shared/components/index.js +5 -5
  85. package/esm2015/lib/shared/components/palette/complex/index.js +1 -7
  86. package/esm2015/lib/shared/components/palette/complex/write-complex-field.component.js +2 -2
  87. package/esm2015/lib/shared/components/palette/palette.module.js +16 -27
  88. package/esm2015/lib/shared/components/search-result/index.js +3 -0
  89. package/esm2015/lib/shared/components/search-result/search-result.component.js +845 -0
  90. package/esm2015/lib/shared/components/search-result/search-result.module.js +67 -0
  91. package/esm2015/lib/shared/domain/case-view/role-request.model.js +1 -1
  92. package/esm2015/lib/shared/pipes/complex/ccd-collection-table-value-case-fields.pipe.js +29 -0
  93. package/esm2015/lib/shared/pipes/complex/ccd-cyapage-label-filter.pipe.js +29 -0
  94. package/esm2015/lib/shared/pipes/complex/ccd-read-fields-filter.pipe.js +154 -0
  95. package/esm2015/lib/shared/pipes/complex/ccd-tab-fields.pipe.js +31 -0
  96. package/esm2015/lib/shared/pipes/complex/cdd-page-fields.pipe.js +39 -0
  97. package/esm2015/lib/shared/pipes/complex/fields-filter.pipe.js +103 -0
  98. package/esm2015/lib/shared/pipes/complex/index.js +7 -0
  99. package/esm2015/lib/shared/pipes/index.js +3 -2
  100. package/esm2015/lib/shared/pipes/pipes.module.js +26 -9
  101. package/fesm2015/hmcts-ccd-case-ui-toolkit.js +19417 -12703
  102. package/fesm2015/hmcts-ccd-case-ui-toolkit.js.map +1 -1
  103. package/lib/shared/components/case-editor/case-create/case-create.component.d.ts +33 -0
  104. package/lib/shared/components/case-editor/case-create/case-create.component.d.ts.map +1 -0
  105. package/lib/shared/components/case-editor/case-create/index.d.ts +2 -0
  106. package/lib/shared/components/case-editor/case-create/index.d.ts.map +1 -0
  107. package/lib/shared/components/case-editor/case-edit/case-edit.component.d.ts +50 -0
  108. package/lib/shared/components/case-editor/case-edit/case-edit.component.d.ts.map +1 -0
  109. package/lib/shared/components/case-editor/case-edit/index.d.ts +2 -0
  110. package/lib/shared/components/case-editor/case-edit/index.d.ts.map +1 -0
  111. package/lib/shared/components/case-editor/case-edit-confirm/case-edit-confirm.component.d.ts +26 -0
  112. package/lib/shared/components/case-editor/case-edit-confirm/case-edit-confirm.component.d.ts.map +1 -0
  113. package/lib/shared/components/case-editor/case-edit-confirm/index.d.ts +2 -0
  114. package/lib/shared/components/case-editor/case-edit-confirm/index.d.ts.map +1 -0
  115. package/lib/shared/components/case-editor/case-edit-form/case-edit-form.component.d.ts +26 -0
  116. package/lib/shared/components/case-editor/case-edit-form/case-edit-form.component.d.ts.map +1 -0
  117. package/lib/shared/components/case-editor/case-edit-form/index.d.ts +2 -0
  118. package/lib/shared/components/case-editor/case-edit-form/index.d.ts.map +1 -0
  119. package/lib/shared/components/case-editor/case-edit-page/case-edit-page-text.enum.d.ts +10 -0
  120. package/lib/shared/components/case-editor/case-edit-page/case-edit-page-text.enum.d.ts.map +1 -0
  121. package/lib/shared/components/case-editor/case-edit-page/case-edit-page.component.d.ts +100 -0
  122. package/lib/shared/components/case-editor/case-edit-page/case-edit-page.component.d.ts.map +1 -0
  123. package/lib/shared/components/case-editor/case-edit-page/index.d.ts +2 -0
  124. package/lib/shared/components/case-editor/case-edit-page/index.d.ts.map +1 -0
  125. package/lib/shared/components/case-editor/case-edit-submit/case-edit-submit.component.d.ts +123 -0
  126. package/lib/shared/components/case-editor/case-edit-submit/case-edit-submit.component.d.ts.map +1 -0
  127. package/lib/shared/components/case-editor/case-edit-submit/index.d.ts +2 -0
  128. package/lib/shared/components/case-editor/case-edit-submit/index.d.ts.map +1 -0
  129. package/lib/shared/components/case-editor/case-editor.module.d.ts +27 -0
  130. package/lib/shared/components/case-editor/case-editor.module.d.ts.map +1 -0
  131. package/lib/shared/components/case-editor/case-event-completion/case-event-completion.component.d.ts +31 -0
  132. package/lib/shared/components/case-editor/case-event-completion/case-event-completion.component.d.ts.map +1 -0
  133. package/lib/shared/components/case-editor/case-event-completion/components/case-event-completion-task-cancelled/case-event-completion-task-cancelled.component.d.ts +11 -0
  134. package/lib/shared/components/case-editor/case-event-completion/components/case-event-completion-task-cancelled/case-event-completion-task-cancelled.component.d.ts.map +1 -0
  135. package/lib/shared/components/case-editor/case-event-completion/components/case-event-completion-task-reassigned/case-event-completion-task-reassigned.component.d.ts +32 -0
  136. package/lib/shared/components/case-editor/case-event-completion/components/case-event-completion-task-reassigned/case-event-completion-task-reassigned.component.d.ts.map +1 -0
  137. package/lib/shared/components/case-editor/case-event-completion/index.d.ts +4 -0
  138. package/lib/shared/components/case-editor/case-event-completion/index.d.ts.map +1 -0
  139. package/lib/shared/components/case-editor/case-progress/case-progress.component.d.ts +30 -0
  140. package/lib/shared/components/case-editor/case-progress/case-progress.component.d.ts.map +1 -0
  141. package/lib/shared/components/case-editor/case-progress/index.d.ts +2 -0
  142. package/lib/shared/components/case-editor/case-progress/index.d.ts.map +1 -0
  143. package/lib/shared/components/case-editor/domain/event-completion-params.model.d.ts +7 -0
  144. package/lib/shared/components/case-editor/domain/event-completion-params.model.d.ts.map +1 -0
  145. package/lib/shared/components/case-editor/domain/event-completion-portal-types.model.d.ts +5 -0
  146. package/lib/shared/components/case-editor/domain/event-completion-portal-types.model.d.ts.map +1 -0
  147. package/lib/shared/components/case-editor/editor.routing.d.ts +3 -0
  148. package/lib/shared/components/case-editor/editor.routing.d.ts.map +1 -0
  149. package/lib/shared/components/case-editor/index.d.ts +13 -0
  150. package/lib/shared/components/case-editor/index.d.ts.map +1 -0
  151. package/lib/shared/components/case-editor/services/case-edit-wizard.guard.d.ts +23 -0
  152. package/lib/shared/components/case-editor/services/case-edit-wizard.guard.d.ts.map +1 -0
  153. package/lib/shared/components/case-editor/services/convert-href-to-router.service.d.ts +14 -0
  154. package/lib/shared/components/case-editor/services/convert-href-to-router.service.d.ts.map +1 -0
  155. package/lib/shared/components/case-editor/services/event-completion-state-machine.service.d.ts +33 -0
  156. package/lib/shared/components/case-editor/services/event-completion-state-machine.service.d.ts.map +1 -0
  157. package/lib/shared/components/case-editor/services/event-trigger.service.d.ts +10 -0
  158. package/lib/shared/components/case-editor/services/event-trigger.service.d.ts.map +1 -0
  159. package/lib/shared/components/case-editor/services/index.d.ts +12 -0
  160. package/lib/shared/components/case-editor/services/index.d.ts.map +1 -0
  161. package/lib/shared/components/case-editor/services/page-validation.service.d.ts +17 -0
  162. package/lib/shared/components/case-editor/services/page-validation.service.d.ts.map +1 -0
  163. package/lib/shared/components/case-editor/services/wizard-factory.service.d.ts +6 -0
  164. package/lib/shared/components/case-editor/services/wizard-factory.service.d.ts.map +1 -0
  165. package/lib/shared/components/case-history/case-history.component.d.ts +33 -0
  166. package/lib/shared/components/case-history/case-history.component.d.ts.map +1 -0
  167. package/lib/shared/components/case-history/case-history.module.d.ts +14 -0
  168. package/lib/shared/components/case-history/case-history.module.d.ts.map +1 -0
  169. package/lib/shared/components/case-history/domain/case-history.model.d.ts +16 -0
  170. package/lib/shared/components/case-history/domain/case-history.model.d.ts.map +1 -0
  171. package/lib/shared/components/case-history/index.d.ts +3 -0
  172. package/lib/shared/components/case-history/index.d.ts.map +1 -0
  173. package/lib/shared/components/case-history/services/case-history.service.d.ts +17 -0
  174. package/lib/shared/components/case-history/services/case-history.service.d.ts.map +1 -0
  175. package/lib/shared/components/case-timeline/case-timeline.component.d.ts +27 -0
  176. package/lib/shared/components/case-timeline/case-timeline.component.d.ts.map +1 -0
  177. package/lib/shared/components/case-timeline/case-timeline.module.d.ts +13 -0
  178. package/lib/shared/components/case-timeline/case-timeline.module.d.ts.map +1 -0
  179. package/lib/shared/components/case-timeline/index.d.ts +3 -0
  180. package/lib/shared/components/case-timeline/index.d.ts.map +1 -0
  181. package/lib/shared/components/case-viewer/case-basic-access-view/case-basic-access-view.component.d.ts +19 -0
  182. package/lib/shared/components/case-viewer/case-basic-access-view/case-basic-access-view.component.d.ts.map +1 -0
  183. package/lib/shared/components/case-viewer/case-basic-access-view/index.d.ts +2 -0
  184. package/lib/shared/components/case-viewer/case-basic-access-view/index.d.ts.map +1 -0
  185. package/lib/shared/components/case-viewer/case-challenged-access-request/case-challenged-access-request.component.d.ts +40 -0
  186. package/lib/shared/components/case-viewer/case-challenged-access-request/case-challenged-access-request.component.d.ts.map +1 -0
  187. package/lib/shared/components/case-viewer/case-challenged-access-request/index.d.ts +2 -0
  188. package/lib/shared/components/case-viewer/case-challenged-access-request/index.d.ts.map +1 -0
  189. package/lib/shared/components/case-viewer/case-challenged-access-request/models/case-challenged-access-request.enum.d.ts +17 -0
  190. package/lib/shared/components/case-viewer/case-challenged-access-request/models/case-challenged-access-request.enum.d.ts.map +1 -0
  191. package/lib/shared/components/case-viewer/case-challenged-access-request/models/index.d.ts +2 -0
  192. package/lib/shared/components/case-viewer/case-challenged-access-request/models/index.d.ts.map +1 -0
  193. package/lib/shared/components/case-viewer/case-challenged-access-success/case-challenged-access-success.component.d.ts +12 -0
  194. package/lib/shared/components/case-viewer/case-challenged-access-success/case-challenged-access-success.component.d.ts.map +1 -0
  195. package/lib/shared/components/case-viewer/case-challenged-access-success/index.d.ts +2 -0
  196. package/lib/shared/components/case-viewer/case-challenged-access-success/index.d.ts.map +1 -0
  197. package/lib/shared/components/case-viewer/case-event-trigger/case-event-trigger.component.d.ts +41 -0
  198. package/lib/shared/components/case-viewer/case-event-trigger/case-event-trigger.component.d.ts.map +1 -0
  199. package/lib/shared/components/case-viewer/case-event-trigger/index.d.ts +2 -0
  200. package/lib/shared/components/case-viewer/case-event-trigger/index.d.ts.map +1 -0
  201. package/lib/shared/components/case-viewer/case-full-access-view/case-full-access-view.component.d.ts +90 -0
  202. package/lib/shared/components/case-viewer/case-full-access-view/case-full-access-view.component.d.ts.map +1 -0
  203. package/lib/shared/components/case-viewer/case-full-access-view/index.d.ts +2 -0
  204. package/lib/shared/components/case-viewer/case-full-access-view/index.d.ts.map +1 -0
  205. package/lib/shared/components/case-viewer/case-review-specific-access-reject/case-review-specific-access-reject.component.d.ts +14 -0
  206. package/lib/shared/components/case-viewer/case-review-specific-access-reject/case-review-specific-access-reject.component.d.ts.map +1 -0
  207. package/lib/shared/components/case-viewer/case-review-specific-access-reject/index.d.ts +2 -0
  208. package/lib/shared/components/case-viewer/case-review-specific-access-reject/index.d.ts.map +1 -0
  209. package/lib/shared/components/case-viewer/case-review-specific-access-request/case-review-specific-access-request.component.d.ts +49 -0
  210. package/lib/shared/components/case-viewer/case-review-specific-access-request/case-review-specific-access-request.component.d.ts.map +1 -0
  211. package/lib/shared/components/case-viewer/case-review-specific-access-request/index.d.ts +2 -0
  212. package/lib/shared/components/case-viewer/case-review-specific-access-request/index.d.ts.map +1 -0
  213. package/lib/shared/components/case-viewer/case-review-specific-access-request/models/case-review-specific-access-request.enum.d.ts +15 -0
  214. package/lib/shared/components/case-viewer/case-review-specific-access-request/models/case-review-specific-access-request.enum.d.ts.map +1 -0
  215. package/lib/shared/components/case-viewer/case-review-specific-access-request/models/index.d.ts +2 -0
  216. package/lib/shared/components/case-viewer/case-review-specific-access-request/models/index.d.ts.map +1 -0
  217. package/lib/shared/components/case-viewer/case-specific-access-request/case-specific-access-request.component.d.ts +33 -0
  218. package/lib/shared/components/case-viewer/case-specific-access-request/case-specific-access-request.component.d.ts.map +1 -0
  219. package/lib/shared/components/case-viewer/case-specific-access-request/index.d.ts +2 -0
  220. package/lib/shared/components/case-viewer/case-specific-access-request/index.d.ts.map +1 -0
  221. package/lib/shared/components/case-viewer/case-specific-access-request/models/case-specific-access-request.enum.d.ts +9 -0
  222. package/lib/shared/components/case-viewer/case-specific-access-request/models/case-specific-access-request.enum.d.ts.map +1 -0
  223. package/lib/shared/components/case-viewer/case-specific-access-request/models/index.d.ts +2 -0
  224. package/lib/shared/components/case-viewer/case-specific-access-request/models/index.d.ts.map +1 -0
  225. package/lib/shared/components/case-viewer/case-specific-access-success/case-specific-access-success.component.d.ts +12 -0
  226. package/lib/shared/components/case-viewer/case-specific-access-success/case-specific-access-success.component.d.ts.map +1 -0
  227. package/lib/shared/components/case-viewer/case-specific-access-success/index.d.ts +2 -0
  228. package/lib/shared/components/case-viewer/case-specific-access-success/index.d.ts.map +1 -0
  229. package/lib/shared/components/case-viewer/case-view/case-view.component.d.ts +32 -0
  230. package/lib/shared/components/case-viewer/case-view/case-view.component.d.ts.map +1 -0
  231. package/lib/shared/components/case-viewer/case-view/index.d.ts +2 -0
  232. package/lib/shared/components/case-viewer/case-view/index.d.ts.map +1 -0
  233. package/lib/shared/components/case-viewer/case-viewer.component.d.ts +32 -0
  234. package/lib/shared/components/case-viewer/case-viewer.component.d.ts.map +1 -0
  235. package/lib/shared/components/case-viewer/case-viewer.module.d.ts +36 -0
  236. package/lib/shared/components/case-viewer/case-viewer.module.d.ts.map +1 -0
  237. package/lib/shared/components/case-viewer/index.d.ts +14 -0
  238. package/lib/shared/components/case-viewer/index.d.ts.map +1 -0
  239. package/lib/shared/components/case-viewer/printer/case-printer.component.d.ts +24 -0
  240. package/lib/shared/components/case-viewer/printer/case-printer.component.d.ts.map +1 -0
  241. package/lib/shared/components/case-viewer/printer/index.d.ts +4 -0
  242. package/lib/shared/components/case-viewer/printer/index.d.ts.map +1 -0
  243. package/lib/shared/components/case-viewer/printer/pipes/index.d.ts +2 -0
  244. package/lib/shared/components/case-viewer/printer/pipes/index.d.ts.map +1 -0
  245. package/lib/shared/components/case-viewer/printer/pipes/print-url.pipe.d.ts +24 -0
  246. package/lib/shared/components/case-viewer/printer/pipes/print-url.pipe.d.ts.map +1 -0
  247. package/lib/shared/components/case-viewer/services/case.resolver.d.ts +29 -0
  248. package/lib/shared/components/case-viewer/services/case.resolver.d.ts.map +1 -0
  249. package/lib/shared/components/case-viewer/services/event-trigger.resolver.d.ts +26 -0
  250. package/lib/shared/components/case-viewer/services/event-trigger.resolver.d.ts.map +1 -0
  251. package/lib/shared/components/case-viewer/services/index.d.ts +3 -0
  252. package/lib/shared/components/case-viewer/services/index.d.ts.map +1 -0
  253. package/lib/shared/components/case-viewer/viewer.routing.d.ts +3 -0
  254. package/lib/shared/components/case-viewer/viewer.routing.d.ts.map +1 -0
  255. package/lib/shared/components/event-trigger/event-trigger.component.d.ts +24 -0
  256. package/lib/shared/components/event-trigger/event-trigger.component.d.ts.map +1 -0
  257. package/lib/shared/components/event-trigger/event-trigger.module.d.ts +11 -0
  258. package/lib/shared/components/event-trigger/event-trigger.module.d.ts.map +1 -0
  259. package/lib/shared/components/event-trigger/index.d.ts +3 -0
  260. package/lib/shared/components/event-trigger/index.d.ts.map +1 -0
  261. package/lib/shared/components/index.d.ts +4 -0
  262. package/lib/shared/components/index.d.ts.map +1 -1
  263. package/lib/shared/components/palette/complex/index.d.ts +0 -6
  264. package/lib/shared/components/palette/complex/index.d.ts.map +1 -1
  265. package/lib/shared/components/palette/complex/write-complex-field.component.d.ts.map +1 -1
  266. package/lib/shared/components/palette/palette.module.d.ts +87 -93
  267. package/lib/shared/components/palette/palette.module.d.ts.map +1 -1
  268. package/lib/shared/components/search-result/index.d.ts +3 -0
  269. package/lib/shared/components/search-result/index.d.ts.map +1 -0
  270. package/lib/shared/components/search-result/search-result.component.d.ts +111 -0
  271. package/lib/shared/components/search-result/search-result.component.d.ts.map +1 -0
  272. package/lib/shared/components/search-result/search-result.module.d.ts +16 -0
  273. package/lib/shared/components/search-result/search-result.module.d.ts.map +1 -0
  274. package/lib/shared/domain/case-view/role-request.model.d.ts.map +1 -1
  275. package/lib/shared/{components/palette → pipes}/complex/ccd-collection-table-value-case-fields.pipe.d.ts +1 -1
  276. package/lib/shared/pipes/complex/ccd-collection-table-value-case-fields.pipe.d.ts.map +1 -0
  277. package/lib/shared/{components/palette → pipes}/complex/ccd-cyapage-label-filter.pipe.d.ts +1 -1
  278. package/lib/shared/pipes/complex/ccd-cyapage-label-filter.pipe.d.ts.map +1 -0
  279. package/lib/shared/{components/palette → pipes}/complex/ccd-read-fields-filter.pipe.d.ts +1 -1
  280. package/lib/shared/pipes/complex/ccd-read-fields-filter.pipe.d.ts.map +1 -0
  281. package/lib/shared/{components/palette → pipes}/complex/ccd-tab-fields.pipe.d.ts +2 -2
  282. package/lib/shared/pipes/complex/ccd-tab-fields.pipe.d.ts.map +1 -0
  283. package/lib/shared/{components/palette → pipes}/complex/cdd-page-fields.pipe.d.ts +2 -2
  284. package/lib/shared/pipes/complex/cdd-page-fields.pipe.d.ts.map +1 -0
  285. package/lib/shared/{components/palette → pipes}/complex/fields-filter.pipe.d.ts +1 -1
  286. package/lib/shared/pipes/complex/fields-filter.pipe.d.ts.map +1 -0
  287. package/lib/shared/pipes/complex/index.d.ts +7 -0
  288. package/lib/shared/pipes/complex/index.d.ts.map +1 -0
  289. package/lib/shared/pipes/index.d.ts +2 -1
  290. package/lib/shared/pipes/index.d.ts.map +1 -1
  291. package/lib/shared/pipes/pipes.module.d.ts +7 -2
  292. package/lib/shared/pipes/pipes.module.d.ts.map +1 -1
  293. package/package.json +1 -1
  294. package/esm2015/lib/shared/components/palette/complex/ccd-collection-table-value-case-fields.pipe.js +0 -29
  295. package/esm2015/lib/shared/components/palette/complex/ccd-cyapage-label-filter.pipe.js +0 -29
  296. package/esm2015/lib/shared/components/palette/complex/ccd-read-fields-filter.pipe.js +0 -154
  297. package/esm2015/lib/shared/components/palette/complex/ccd-tab-fields.pipe.js +0 -31
  298. package/esm2015/lib/shared/components/palette/complex/cdd-page-fields.pipe.js +0 -39
  299. package/esm2015/lib/shared/components/palette/complex/fields-filter.pipe.js +0 -103
  300. package/lib/shared/components/palette/complex/ccd-collection-table-value-case-fields.pipe.d.ts.map +0 -1
  301. package/lib/shared/components/palette/complex/ccd-cyapage-label-filter.pipe.d.ts.map +0 -1
  302. package/lib/shared/components/palette/complex/ccd-read-fields-filter.pipe.d.ts.map +0 -1
  303. package/lib/shared/components/palette/complex/ccd-tab-fields.pipe.d.ts.map +0 -1
  304. package/lib/shared/components/palette/complex/cdd-page-fields.pipe.d.ts.map +0 -1
  305. package/lib/shared/components/palette/complex/fields-filter.pipe.d.ts.map +0 -1
@@ -0,0 +1 @@
1
+ {"version":3,"file":"print-url.pipe.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/case-viewer/printer/pipes/print-url.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,aAAa,EAAE,MAAM,eAAe,CAAC;AACpD,OAAO,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;;AAE9D,qBAGa,YAAa,YAAW,aAAa;IAKpC,OAAO,CAAC,QAAQ,CAAC,SAAS;IAHtC,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,iBAAiB,CAAU;IACnD,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,mBAAmB,CAAa;gBAE3B,SAAS,EAAE,iBAAiB;IAEzD;;;;;;;;;;OAUG;IACI,SAAS,CAAC,SAAS,EAAE,MAAM,GAAG,MAAM;iCAlBhC,YAAY;uCAAZ,YAAY;CAiDxB"}
@@ -0,0 +1,29 @@
1
+ import { ActivatedRouteSnapshot, Resolve, Router } from '@angular/router';
2
+ import { CaseView } from '../../../domain/case-view/case-view.model';
3
+ import { DraftService } from '../../../services/draft/draft.service';
4
+ import { NavigationNotifierService } from '../../../services/navigation/navigation-notifier.service';
5
+ import { CaseNotifier } from '../../case-editor/services/case.notifier';
6
+ import { CasesService } from '../../case-editor/services/cases.service';
7
+ import * as i0 from "@angular/core";
8
+ export declare class CaseResolver implements Resolve<CaseView> {
9
+ private readonly caseNotifier;
10
+ private readonly casesService;
11
+ private readonly draftService;
12
+ private readonly navigationNotifierService;
13
+ private readonly router;
14
+ static readonly EVENT_REGEX: RegExp;
15
+ static readonly PARAM_CASE_ID = "cid";
16
+ static readonly CASE_CREATED_MSG = "The case has been created successfully";
17
+ previousUrl: string;
18
+ constructor(caseNotifier: CaseNotifier, casesService: CasesService, draftService: DraftService, navigationNotifierService: NavigationNotifierService, router: Router);
19
+ resolve(route: ActivatedRouteSnapshot): Promise<CaseView>;
20
+ private navigateToCaseList;
21
+ private isRootCaseViewRoute;
22
+ private isTabViewRoute;
23
+ private getAndCacheCaseView;
24
+ private getAndCacheDraft;
25
+ private checkAuthorizationError;
26
+ static ɵfac: i0.ɵɵFactoryDef<CaseResolver, never>;
27
+ static ɵprov: i0.ɵɵInjectableDef<CaseResolver>;
28
+ }
29
+ //# sourceMappingURL=case.resolver.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"case.resolver.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/case-viewer/services/case.resolver.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,sBAAsB,EAAiB,OAAO,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AAIzF,OAAO,EAAE,QAAQ,EAAE,MAAM,2CAA2C,CAAC;AAErE,OAAO,EAAE,YAAY,EAAE,MAAM,uCAAuC,CAAC;AACrE,OAAO,EAAE,yBAAyB,EAAE,MAAM,0DAA0D,CAAC;AAErG,OAAO,EAAE,YAAY,EAAE,MAAM,0CAA0C,CAAC;AACxE,OAAO,EAAE,YAAY,EAAE,MAAM,0CAA0C,CAAC;;AAExE,qBACa,YAAa,YAAW,OAAO,CAAC,QAAQ,CAAC;IAUxC,OAAO,CAAC,QAAQ,CAAC,YAAY;IAC7B,OAAO,CAAC,QAAQ,CAAC,YAAY;IAC7B,OAAO,CAAC,QAAQ,CAAC,YAAY;IAC7B,OAAO,CAAC,QAAQ,CAAC,yBAAyB;IAC1C,OAAO,CAAC,QAAQ,CAAC,MAAM;IAZnC,gBAAuB,WAAW,SAAyC;IAC3E,gBAAuB,aAAa,SAAS;IAC7C,gBAAuB,gBAAgB,4CAA4C;IAK5E,WAAW,EAAE,MAAM,CAAC;gBACE,YAAY,EAAE,YAAY,EAC1B,YAAY,EAAE,YAAY,EAC1B,YAAY,EAAE,YAAY,EAC1B,yBAAyB,EAAE,yBAAyB,EACpD,MAAM,EAAE,MAAM;IAQpC,OAAO,CAAC,KAAK,EAAE,sBAAsB,GAAG,OAAO,CAAC,QAAQ,CAAC;IAehE,OAAO,CAAC,kBAAkB;IAI1B,OAAO,CAAC,mBAAmB;IAK3B,OAAO,CAAC,cAAc;IAKtB,OAAO,CAAC,mBAAmB;IAsB3B,OAAO,CAAC,gBAAgB;IAkBxB,OAAO,CAAC,uBAAuB;iCA3FpB,YAAY;qCAAZ,YAAY;CAuGxB"}
@@ -0,0 +1,26 @@
1
+ import { ActivatedRouteSnapshot, Resolve } from '@angular/router';
2
+ import { CaseEventTrigger } from '../../../domain/case-view/case-event-trigger.model';
3
+ import { AlertService } from '../../../services/alert/alert.service';
4
+ import { ProfileNotifier } from '../../../services/profile/profile.notifier';
5
+ import { ProfileService } from '../../../services/profile/profile.service';
6
+ import { CasesService } from '../../case-editor/services/cases.service';
7
+ import * as i0 from "@angular/core";
8
+ export declare class EventTriggerResolver implements Resolve<CaseEventTrigger> {
9
+ private readonly casesService;
10
+ private readonly alertService;
11
+ private readonly profileService;
12
+ private readonly profileNotifier;
13
+ static readonly PARAM_CASE_ID = "cid";
14
+ static readonly PARAM_EVENT_ID = "eid";
15
+ static readonly IGNORE_WARNING = "ignoreWarning";
16
+ private static readonly IGNORE_WARNING_VALUES;
17
+ private cachedEventTrigger;
18
+ private cachedProfile;
19
+ constructor(casesService: CasesService, alertService: AlertService, profileService: ProfileService, profileNotifier: ProfileNotifier);
20
+ resolve(route: ActivatedRouteSnapshot): Promise<CaseEventTrigger>;
21
+ private isRootTriggerEventRoute;
22
+ private getAndCacheEventTrigger;
23
+ static ɵfac: i0.ɵɵFactoryDef<EventTriggerResolver, never>;
24
+ static ɵprov: i0.ɵɵInjectableDef<EventTriggerResolver>;
25
+ }
26
+ //# sourceMappingURL=event-trigger.resolver.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"event-trigger.resolver.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/case-viewer/services/event-trigger.resolver.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,sBAAsB,EAAE,OAAO,EAAE,MAAM,iBAAiB,CAAC;AAGlE,OAAO,EAAE,gBAAgB,EAAE,MAAM,oDAAoD,CAAC;AAEtF,OAAO,EAAE,YAAY,EAAE,MAAM,uCAAuC,CAAC;AACrE,OAAO,EAAE,eAAe,EAAE,MAAM,4CAA4C,CAAC;AAC7E,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAC;AAC3E,OAAO,EAAE,YAAY,EAAE,MAAM,0CAA0C,CAAC;;AAExE,qBACa,oBAAqB,YAAW,OAAO,CAAC,gBAAgB,CAAC;IAQlE,OAAO,CAAC,QAAQ,CAAC,YAAY;IAC7B,OAAO,CAAC,QAAQ,CAAC,YAAY;IAC7B,OAAO,CAAC,QAAQ,CAAC,cAAc;IAC/B,OAAO,CAAC,QAAQ,CAAC,eAAe;IAVlC,gBAAuB,aAAa,SAAS;IAC7C,gBAAuB,cAAc,SAAS;IAC9C,gBAAuB,cAAc,mBAAmB;IACxD,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,qBAAqB,CAAuB;IACpE,OAAO,CAAC,kBAAkB,CAAmB;IAC7C,OAAO,CAAC,aAAa,CAAU;gBAEZ,YAAY,EAAE,YAAY,EAC1B,YAAY,EAAE,YAAY,EAC1B,cAAc,EAAE,cAAc,EAC9B,eAAe,EAAE,eAAe;IAG5C,OAAO,CAAC,KAAK,EAAE,sBAAsB,GAAG,OAAO,CAAC,gBAAgB,CAAC;IAMxE,OAAO,CAAC,uBAAuB;IAK/B,OAAO,CAAC,uBAAuB;iCAzBpB,oBAAoB;qCAApB,oBAAoB;CAsDhC"}
@@ -0,0 +1,3 @@
1
+ export * from './case.resolver';
2
+ export * from './event-trigger.resolver';
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/case-viewer/services/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAC;AAChC,cAAc,0BAA0B,CAAC"}
@@ -0,0 +1,3 @@
1
+ import { Routes } from '@angular/router';
2
+ export declare const viewerRouting: Routes;
3
+ //# sourceMappingURL=viewer.routing.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"viewer.routing.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/case-viewer/viewer.routing.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AAyBzC,eAAO,MAAM,aAAa,EAAE,MA8G3B,CAAC"}
@@ -0,0 +1,24 @@
1
+ import { EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
2
+ import { FormBuilder, FormGroup } from '@angular/forms';
3
+ import { CaseViewTrigger } from '../../domain/case-view/case-view-trigger.model';
4
+ import { OrderService } from '../../services/order/order.service';
5
+ import * as i0 from "@angular/core";
6
+ export declare class EventTriggerComponent implements OnChanges {
7
+ private readonly fb;
8
+ private readonly orderService;
9
+ triggers: CaseViewTrigger[];
10
+ triggerText: string;
11
+ isDisabled: boolean;
12
+ onTriggerSubmit: EventEmitter<CaseViewTrigger>;
13
+ onTriggerChange: EventEmitter<any>;
14
+ triggerForm: FormGroup;
15
+ constructor(fb: FormBuilder, orderService: OrderService);
16
+ ngOnChanges(changes?: SimpleChanges): void;
17
+ isButtonDisabled(): boolean;
18
+ triggerSubmit(): void;
19
+ triggerChange(): void;
20
+ private getDefault;
21
+ static ɵfac: i0.ɵɵFactoryDef<EventTriggerComponent, never>;
22
+ static ɵcmp: i0.ɵɵComponentDefWithMeta<EventTriggerComponent, "ccd-event-trigger", never, { "triggers": "triggers"; "triggerText": "triggerText"; "isDisabled": "isDisabled"; }, { "onTriggerSubmit": "onTriggerSubmit"; "onTriggerChange": "onTriggerChange"; }, never, never>;
23
+ }
24
+ //# sourceMappingURL=event-trigger.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"event-trigger.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/event-trigger/event-trigger.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAS,SAAS,EAAU,aAAa,EAAE,MAAM,eAAe,CAAC;AACjG,OAAO,EAAE,WAAW,EAAE,SAAS,EAAc,MAAM,gBAAgB,CAAC;AACpE,OAAO,EAAE,eAAe,EAAE,MAAM,gDAAgD,CAAC;AACjF,OAAO,EAAE,YAAY,EAAE,MAAM,oCAAoC,CAAC;;AAElE,qBAKa,qBAAsB,YAAW,SAAS;IAmBzC,OAAO,CAAC,QAAQ,CAAC,EAAE;IAAe,OAAO,CAAC,QAAQ,CAAC,YAAY;IAhBpE,QAAQ,EAAE,eAAe,EAAE,CAAC;IAG5B,WAAW,EAAE,MAAM,CAAC;IAGpB,UAAU,EAAE,OAAO,CAAC;IAGpB,eAAe,EAAE,YAAY,CAAC,eAAe,CAAC,CAAsB;IAGpE,eAAe,EAAE,YAAY,CAAC,GAAG,CAAC,CAAsB;IAExD,WAAW,EAAE,SAAS,CAAC;gBAED,EAAE,EAAE,WAAW,EAAmB,YAAY,EAAE,YAAY;IAElF,WAAW,CAAC,OAAO,CAAC,EAAE,aAAa,GAAG,IAAI;IAU1C,gBAAgB,IAAI,OAAO;IAI3B,aAAa;IAIb,aAAa;IAIpB,OAAO,CAAC,UAAU;iCA3CP,qBAAqB;2CAArB,qBAAqB;CA8CjC"}
@@ -0,0 +1,11 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./event-trigger.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@angular/forms";
5
+ import * as i4 from "../activity/activity.module";
6
+ export declare class EventTriggerModule {
7
+ static ɵfac: i0.ɵɵFactoryDef<EventTriggerModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDefWithMeta<EventTriggerModule, [typeof i1.EventTriggerComponent], [typeof i2.CommonModule, typeof i3.ReactiveFormsModule, typeof i4.ActivityModule], [typeof i1.EventTriggerComponent]>;
9
+ static ɵinj: i0.ɵɵInjectorDef<EventTriggerModule>;
10
+ }
11
+ //# sourceMappingURL=event-trigger.module.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"event-trigger.module.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/event-trigger/event-trigger.module.ts"],"names":[],"mappings":";;;;;AAMA,qBAaa,kBAAkB;iCAAlB,kBAAkB;0CAAlB,kBAAkB;kCAAlB,kBAAkB;CAAG"}
@@ -0,0 +1,3 @@
1
+ export * from './event-trigger.component';
2
+ export * from './event-trigger.module';
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/event-trigger/index.ts"],"names":[],"mappings":"AAAA,cAAc,2BAA2B,CAAC;AAC1C,cAAc,wBAAwB,CAAC"}
@@ -1,7 +1,10 @@
1
1
  export * from './activity';
2
+ export * from './case-editor';
2
3
  export * from './case-header';
3
4
  export * from './case-list';
4
5
  export * from './case-list-filters';
6
+ export * from './case-timeline';
7
+ export * from './case-viewer';
5
8
  export * from './create-case-filters';
6
9
  export * from './dialogs';
7
10
  export * from './error';
@@ -12,5 +15,6 @@ export * from './loading-spinner';
12
15
  export * from './pagination';
13
16
  export * from './palette';
14
17
  export * from './search-filters';
18
+ export * from './search-result';
15
19
  export * from './workbasket-filters';
16
20
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAE3B,cAAc,eAAe,CAAC;AAC9B,cAAc,aAAa,CAAC;AAC5B,cAAc,qBAAqB,CAAC;AAGpC,cAAc,uBAAuB,CAAC;AACtC,cAAc,WAAW,CAAC;AAC1B,cAAc,SAAS,CAAC;AACxB,cAAc,iBAAiB,CAAC;AAChC,cAAc,eAAe,CAAC;AAC9B,cAAc,WAAW,CAAC;AAC1B,cAAc,mBAAmB,CAAC;AAClC,cAAc,cAAc,CAAC;AAC7B,cAAc,WAAW,CAAC;AAC1B,cAAc,kBAAkB,CAAC;AAEjC,cAAc,sBAAsB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAC3B,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAC9B,cAAc,aAAa,CAAC;AAC5B,cAAc,qBAAqB,CAAC;AACpC,cAAc,iBAAiB,CAAC;AAChC,cAAc,eAAe,CAAC;AAC9B,cAAc,uBAAuB,CAAC;AACtC,cAAc,WAAW,CAAC;AAC1B,cAAc,SAAS,CAAC;AACxB,cAAc,iBAAiB,CAAC;AAChC,cAAc,eAAe,CAAC;AAC9B,cAAc,WAAW,CAAC;AAC1B,cAAc,mBAAmB,CAAC;AAClC,cAAc,cAAc,CAAC;AAC7B,cAAc,WAAW,CAAC;AAC1B,cAAc,kBAAkB,CAAC;AACjC,cAAc,iBAAiB,CAAC;AAChC,cAAc,sBAAsB,CAAC"}
@@ -1,12 +1,6 @@
1
- export * from './fields-filter.pipe';
2
1
  export * from './read-complex-field-raw.component';
3
2
  export * from './read-complex-field-table.component';
4
3
  export * from './read-complex-field-collection-table.component';
5
4
  export * from './read-complex-field.component';
6
5
  export * from './write-complex-field.component';
7
- export * from './ccd-read-fields-filter.pipe';
8
- export * from './cdd-page-fields.pipe';
9
- export * from './ccd-collection-table-value-case-fields.pipe';
10
- export * from './ccd-cyapage-label-filter.pipe';
11
- export * from './ccd-tab-fields.pipe';
12
6
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/complex/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAC;AACrC,cAAc,oCAAoC,CAAC;AACnD,cAAc,sCAAsC,CAAC;AACrD,cAAc,iDAAiD,CAAC;AAChE,cAAc,gCAAgC,CAAC;AAC/C,cAAc,iCAAiC,CAAC;AAChD,cAAc,+BAA+B,CAAC;AAC9C,cAAc,wBAAwB,CAAC;AACvC,cAAc,+CAA+C,CAAC;AAC9D,cAAc,iCAAiC,CAAC;AAChD,cAAc,uBAAuB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/complex/index.ts"],"names":[],"mappings":"AAAA,cAAc,oCAAoC,CAAC;AACnD,cAAc,sCAAsC,CAAC;AACrD,cAAc,iDAAiD,CAAC;AAChE,cAAc,gCAAgC,CAAC;AAC/C,cAAc,iCAAiC,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"write-complex-field.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/complex/write-complex-field.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoB,MAAM,EAAE,MAAM,eAAe,CAAC;AACzD,OAAO,EAAgC,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAGzE,OAAO,EAAE,SAAS,EAAE,MAAM,6CAA6C,CAAC;AAExE,OAAO,EAAE,qBAAqB,EAAE,MAAM,gDAAgD,CAAC;AAEvF,OAAO,EAAE,2BAA2B,EAAE,MAAM,8CAA8C,CAAC;AAE3F,OAAO,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAC;;AAK3D,qBAKa,0BAA2B,SAAQ,2BAA4B,YAAW,MAAM;IAiB/E,OAAO,CAAC,QAAQ,CAAC,cAAc;IAAkB,OAAO,CAAC,QAAQ,CAAC,qBAAqB;IAf5F,UAAU,EAAE,SAAS,EAAE,CAAM;IAG7B,SAAS,EAAE,SAAS,CAAC;IAErB,YAAY,EAAE,SAAS,CAAC;IAGxB,WAAW,UAAQ;IAGnB,eAAe,UAAS;IAExB,aAAa,EAAE,SAAS,EAAE,CAAC;gBAEL,cAAc,EAAE,cAAc,EAAmB,qBAAqB,EAAE,qBAAqB;IAKnH,QAAQ,IAAI,IAAI;IAchB,UAAU,CAAC,SAAS,EAAE,SAAS,GAAG,SAAS;IA6B3C,aAAa,CAAC,KAAK,EAAE,SAAS,GAAG,MAAM;IAI9C,OAAO,CAAC,yBAAyB;IAIjC,OAAO,CAAC,mBAAmB;IAI3B,OAAO,CAAC,WAAW;IAInB,OAAO,CAAC,WAAW;IAInB,OAAO,CAAC,0BAA0B;IAgBlC,OAAO,CAAC,WAAW;iCArGR,0BAA0B;2CAA1B,0BAA0B;CAgHtC"}
1
+ {"version":3,"file":"write-complex-field.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/complex/write-complex-field.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoB,MAAM,EAAE,MAAM,eAAe,CAAC;AACzD,OAAO,EAAgC,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAGzE,OAAO,EAAE,SAAS,EAAE,MAAM,6CAA6C,CAAC;AAGxE,OAAO,EAAE,qBAAqB,EAAE,MAAM,gDAAgD,CAAC;AAEvF,OAAO,EAAE,2BAA2B,EAAE,MAAM,8CAA8C,CAAC;AAE3F,OAAO,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAC;;AAI3D,qBAKa,0BAA2B,SAAQ,2BAA4B,YAAW,MAAM;IAiB/E,OAAO,CAAC,QAAQ,CAAC,cAAc;IAAkB,OAAO,CAAC,QAAQ,CAAC,qBAAqB;IAf5F,UAAU,EAAE,SAAS,EAAE,CAAM;IAG7B,SAAS,EAAE,SAAS,CAAC;IAErB,YAAY,EAAE,SAAS,CAAC;IAGxB,WAAW,UAAQ;IAGnB,eAAe,UAAS;IAExB,aAAa,EAAE,SAAS,EAAE,CAAC;gBAEL,cAAc,EAAE,cAAc,EAAmB,qBAAqB,EAAE,qBAAqB;IAKnH,QAAQ,IAAI,IAAI;IAchB,UAAU,CAAC,SAAS,EAAE,SAAS,GAAG,SAAS;IA6B3C,aAAa,CAAC,KAAK,EAAE,SAAS,GAAG,MAAM;IAI9C,OAAO,CAAC,yBAAyB;IAIjC,OAAO,CAAC,mBAAmB;IAI3B,OAAO,CAAC,WAAW;IAInB,OAAO,CAAC,WAAW;IAInB,OAAO,CAAC,0BAA0B;IAgBlC,OAAO,CAAC,WAAW;iCArGR,0BAA0B;2CAA1B,0BAA0B;CAgHtC"}
@@ -1,99 +1,93 @@
1
1
  import * as i0 from "@angular/core";
2
- import * as i1 from "./complex/ccd-collection-table-value-case-fields.pipe";
3
- import * as i2 from "./complex/ccd-cyapage-label-filter.pipe";
4
- import * as i3 from "./complex/ccd-tab-fields.pipe";
5
- import * as i4 from "./complex/ccd-read-fields-filter.pipe";
6
- import * as i5 from "./complex/fields-filter.pipe";
7
- import * as i6 from "./complex/cdd-page-fields.pipe";
8
- import * as i7 from "./fixed-list/fixed-list.pipe";
9
- import * as i8 from "./fixed-radio-list/fixed-radio-list.pipe";
10
- import * as i9 from "./dynamic-list/dynamic-list.pipe";
11
- import * as i10 from "./dynamic-radio-list/dynamic-radio-list.pipe";
12
- import * as i11 from "./document/document-url.pipe";
13
- import * as i12 from "./unsupported-field.component";
14
- import * as i13 from "./datetime-picker/datetime-picker.component";
15
- import * as i14 from "./waystopay/waystopay-field.component";
16
- import * as i15 from "./markdown/markdown.component";
17
- import * as i16 from "./base-field/field-read.component";
18
- import * as i17 from "./base-field/field-write.component";
19
- import * as i18 from "./base-field/field-read-label.component";
20
- import * as i19 from "./label/label-field.component";
21
- import * as i20 from "./payment/case-payment-history-viewer-field.component";
22
- import * as i21 from "./money-gbp/money-gbp-input.component";
23
- import * as i22 from "./history/case-history-viewer-field.component";
24
- import * as i23 from "./history/event-log/event-log.component";
25
- import * as i24 from "./history/event-log/event-log-details.component";
26
- import * as i25 from "./history/event-log/event-log-table.component";
27
- import * as i26 from "./text/read-text-field.component";
28
- import * as i27 from "./text-area/read-text-area-field.component";
29
- import * as i28 from "./number/read-number-field.component";
30
- import * as i29 from "./email/read-email-field.component";
31
- import * as i30 from "./phone-uk/read-phone-uk-field.component";
32
- import * as i31 from "./date/read-date-field.component";
33
- import * as i32 from "./collection/read-collection-field.component";
34
- import * as i33 from "./document/read-document-field.component";
35
- import * as i34 from "./yes-no/read-yes-no-field.component";
36
- import * as i35 from "./organisation/read-organisation-field.component";
37
- import * as i36 from "./organisation/read-organisation-field-table.component";
38
- import * as i37 from "./organisation/read-organisation-field-raw.component";
39
- import * as i38 from "./order-summary/read-order-summary-field.component";
40
- import * as i39 from "./order-summary/read-order-summary-row.component";
41
- import * as i40 from "./money-gbp/read-money-gbp-field.component";
42
- import * as i41 from "./multi-select-list/read-multi-select-list-field.component";
43
- import * as i42 from "./dynamic-list/read-dynamic-list-field.component";
44
- import * as i43 from "./fixed-list/read-fixed-list-field.component";
45
- import * as i44 from "./fixed-radio-list/read-fixed-radio-list-field.component";
46
- import * as i45 from "./dynamic-radio-list/read-dynamic-radio-list-field.component";
47
- import * as i46 from "./case-link/read-case-link-field.component";
48
- import * as i47 from "./complex/read-complex-field.component";
49
- import * as i48 from "./complex/read-complex-field-raw.component";
50
- import * as i49 from "./complex/read-complex-field-table.component";
51
- import * as i50 from "./complex/read-complex-field-collection-table.component";
52
- import * as i51 from "./address/write-address-field.component";
53
- import * as i52 from "./complex/write-complex-field.component";
54
- import * as i53 from "./organisation/write-organisation-complex-field.component";
55
- import * as i54 from "./document/write-document-field.component";
56
- import * as i55 from "./dynamic-list/write-dynamic-list-field.component";
57
- import * as i56 from "./dynamic-radio-list/write-dynamic-radio-list-field.component";
58
- import * as i57 from "./text/write-text-field.component";
59
- import * as i58 from "./date/write-date-container-field.component";
60
- import * as i59 from "./text-area/write-text-area-field.component";
61
- import * as i60 from "./phone-uk/write-phone-uk-field.component";
62
- import * as i61 from "./number/write-number-field.component";
63
- import * as i62 from "./email/write-email-field.component";
64
- import * as i63 from "./date/write-date-field.component";
65
- import * as i64 from "./yes-no/write-yes-no-field.component";
66
- import * as i65 from "./organisation/write-organisation-field.component";
67
- import * as i66 from "./order-summary/write-order-summary-field.component";
68
- import * as i67 from "./money-gbp/write-money-gbp-field.component";
69
- import * as i68 from "./multi-select-list/write-multi-select-list-field.component";
70
- import * as i69 from "./fixed-list/write-fixed-list-field.component";
71
- import * as i70 from "./fixed-radio-list/write-fixed-radio-list-field.component";
72
- import * as i71 from "./case-link/write-case-link-field.component";
73
- import * as i72 from "./collection/write-collection-field.component";
74
- import * as i73 from "@angular/common";
75
- import * as i74 from "@angular/platform-browser";
76
- import * as i75 from "@angular/router";
77
- import * as i76 from "@angular/forms";
78
- import * as i77 from "./utils/utils.module";
79
- import * as i78 from "../../pipes/pipes.module";
80
- import * as i79 from "../../../components/banners/banners.module";
81
- import * as i80 from "../../../components/header/headers.module";
82
- import * as i81 from "../../../components/footer/footers.module";
83
- import * as i82 from "../../../components/body/body.module";
84
- import * as i83 from "../../../components/form/form.module";
85
- import * as i84 from "../../../components/tabs/tabs.module";
86
- import * as i85 from "../../directives/substitutor/label-substitutor.module";
87
- import * as i86 from "ngx-md";
88
- import * as i87 from "@angular-material-components/datetime-picker";
89
- import * as i88 from "@angular/material/form-field";
90
- import * as i89 from "@angular/material/input";
91
- import * as i90 from "@angular/material/datepicker";
92
- import * as i91 from "@hmcts/ccpay-web-component";
93
- import * as i92 from "@nicky-lenaers/ngx-scroll-to";
2
+ import * as i1 from "./fixed-list/fixed-list.pipe";
3
+ import * as i2 from "./fixed-radio-list/fixed-radio-list.pipe";
4
+ import * as i3 from "./dynamic-list/dynamic-list.pipe";
5
+ import * as i4 from "./dynamic-radio-list/dynamic-radio-list.pipe";
6
+ import * as i5 from "./document/document-url.pipe";
7
+ import * as i6 from "./unsupported-field.component";
8
+ import * as i7 from "./datetime-picker/datetime-picker.component";
9
+ import * as i8 from "./waystopay/waystopay-field.component";
10
+ import * as i9 from "./markdown/markdown.component";
11
+ import * as i10 from "./base-field/field-read.component";
12
+ import * as i11 from "./base-field/field-write.component";
13
+ import * as i12 from "./base-field/field-read-label.component";
14
+ import * as i13 from "./label/label-field.component";
15
+ import * as i14 from "./payment/case-payment-history-viewer-field.component";
16
+ import * as i15 from "./money-gbp/money-gbp-input.component";
17
+ import * as i16 from "./history/case-history-viewer-field.component";
18
+ import * as i17 from "./history/event-log/event-log.component";
19
+ import * as i18 from "./history/event-log/event-log-details.component";
20
+ import * as i19 from "./history/event-log/event-log-table.component";
21
+ import * as i20 from "./text/read-text-field.component";
22
+ import * as i21 from "./text-area/read-text-area-field.component";
23
+ import * as i22 from "./number/read-number-field.component";
24
+ import * as i23 from "./email/read-email-field.component";
25
+ import * as i24 from "./phone-uk/read-phone-uk-field.component";
26
+ import * as i25 from "./date/read-date-field.component";
27
+ import * as i26 from "./collection/read-collection-field.component";
28
+ import * as i27 from "./document/read-document-field.component";
29
+ import * as i28 from "./yes-no/read-yes-no-field.component";
30
+ import * as i29 from "./organisation/read-organisation-field.component";
31
+ import * as i30 from "./organisation/read-organisation-field-table.component";
32
+ import * as i31 from "./organisation/read-organisation-field-raw.component";
33
+ import * as i32 from "./order-summary/read-order-summary-field.component";
34
+ import * as i33 from "./order-summary/read-order-summary-row.component";
35
+ import * as i34 from "./money-gbp/read-money-gbp-field.component";
36
+ import * as i35 from "./multi-select-list/read-multi-select-list-field.component";
37
+ import * as i36 from "./dynamic-list/read-dynamic-list-field.component";
38
+ import * as i37 from "./fixed-list/read-fixed-list-field.component";
39
+ import * as i38 from "./fixed-radio-list/read-fixed-radio-list-field.component";
40
+ import * as i39 from "./dynamic-radio-list/read-dynamic-radio-list-field.component";
41
+ import * as i40 from "./case-link/read-case-link-field.component";
42
+ import * as i41 from "./complex/read-complex-field.component";
43
+ import * as i42 from "./complex/read-complex-field-raw.component";
44
+ import * as i43 from "./complex/read-complex-field-table.component";
45
+ import * as i44 from "./complex/read-complex-field-collection-table.component";
46
+ import * as i45 from "./address/write-address-field.component";
47
+ import * as i46 from "./complex/write-complex-field.component";
48
+ import * as i47 from "./organisation/write-organisation-complex-field.component";
49
+ import * as i48 from "./document/write-document-field.component";
50
+ import * as i49 from "./dynamic-list/write-dynamic-list-field.component";
51
+ import * as i50 from "./dynamic-radio-list/write-dynamic-radio-list-field.component";
52
+ import * as i51 from "./text/write-text-field.component";
53
+ import * as i52 from "./date/write-date-container-field.component";
54
+ import * as i53 from "./text-area/write-text-area-field.component";
55
+ import * as i54 from "./phone-uk/write-phone-uk-field.component";
56
+ import * as i55 from "./number/write-number-field.component";
57
+ import * as i56 from "./email/write-email-field.component";
58
+ import * as i57 from "./date/write-date-field.component";
59
+ import * as i58 from "./yes-no/write-yes-no-field.component";
60
+ import * as i59 from "./organisation/write-organisation-field.component";
61
+ import * as i60 from "./order-summary/write-order-summary-field.component";
62
+ import * as i61 from "./money-gbp/write-money-gbp-field.component";
63
+ import * as i62 from "./multi-select-list/write-multi-select-list-field.component";
64
+ import * as i63 from "./fixed-list/write-fixed-list-field.component";
65
+ import * as i64 from "./fixed-radio-list/write-fixed-radio-list-field.component";
66
+ import * as i65 from "./case-link/write-case-link-field.component";
67
+ import * as i66 from "./collection/write-collection-field.component";
68
+ import * as i67 from "@angular/common";
69
+ import * as i68 from "@angular/platform-browser";
70
+ import * as i69 from "@angular/router";
71
+ import * as i70 from "@angular/forms";
72
+ import * as i71 from "./utils/utils.module";
73
+ import * as i72 from "../../pipes/pipes.module";
74
+ import * as i73 from "../../../components/banners/banners.module";
75
+ import * as i74 from "../../../components/header/headers.module";
76
+ import * as i75 from "../../../components/footer/footers.module";
77
+ import * as i76 from "../../../components/body/body.module";
78
+ import * as i77 from "../../../components/form/form.module";
79
+ import * as i78 from "../../../components/tabs/tabs.module";
80
+ import * as i79 from "../../directives/substitutor/label-substitutor.module";
81
+ import * as i80 from "ngx-md";
82
+ import * as i81 from "@angular-material-components/datetime-picker";
83
+ import * as i82 from "@angular/material/form-field";
84
+ import * as i83 from "@angular/material/input";
85
+ import * as i84 from "@angular/material/datepicker";
86
+ import * as i85 from "@hmcts/ccpay-web-component";
87
+ import * as i86 from "@nicky-lenaers/ngx-scroll-to";
94
88
  export declare class PaletteModule {
95
89
  static ɵfac: i0.ɵɵFactoryDef<PaletteModule, never>;
96
- static ɵmod: i0.ɵɵNgModuleDefWithMeta<PaletteModule, [typeof i1.CcdCollectionTableCaseFieldsFilterPipe, typeof i2.CcdCYAPageLabelFilterPipe, typeof i3.CcdTabFieldsPipe, typeof i4.ReadFieldsFilterPipe, typeof i5.FieldsFilterPipe, typeof i6.CcdPageFieldsPipe, typeof i7.FixedListPipe, typeof i8.FixedRadioListPipe, typeof i9.DynamicListPipe, typeof i10.DynamicRadioListPipe, typeof i11.DocumentUrlPipe, typeof i12.UnsupportedFieldComponent, typeof i13.DatetimePickerComponent, typeof i14.WaysToPayFieldComponent, typeof i15.MarkdownComponent, typeof i16.FieldReadComponent, typeof i17.FieldWriteComponent, typeof i18.FieldReadLabelComponent, typeof i19.LabelFieldComponent, typeof i20.CasePaymentHistoryViewerFieldComponent, typeof i21.MoneyGbpInputComponent, typeof i22.CaseHistoryViewerFieldComponent, typeof i23.EventLogComponent, typeof i24.EventLogDetailsComponent, typeof i25.EventLogTableComponent, typeof i26.ReadTextFieldComponent, typeof i27.ReadTextAreaFieldComponent, typeof i28.ReadNumberFieldComponent, typeof i29.ReadEmailFieldComponent, typeof i30.ReadPhoneUKFieldComponent, typeof i31.ReadDateFieldComponent, typeof i32.ReadCollectionFieldComponent, typeof i33.ReadDocumentFieldComponent, typeof i34.ReadYesNoFieldComponent, typeof i35.ReadOrganisationFieldComponent, typeof i36.ReadOrganisationFieldTableComponent, typeof i37.ReadOrganisationFieldRawComponent, typeof i38.ReadOrderSummaryFieldComponent, typeof i39.ReadOrderSummaryRowComponent, typeof i40.ReadMoneyGbpFieldComponent, typeof i41.ReadMultiSelectListFieldComponent, typeof i42.ReadDynamicListFieldComponent, typeof i43.ReadFixedListFieldComponent, typeof i44.ReadFixedRadioListFieldComponent, typeof i45.ReadDynamicRadioListFieldComponent, typeof i46.ReadCaseLinkFieldComponent, typeof i47.ReadComplexFieldComponent, typeof i48.ReadComplexFieldRawComponent, typeof i49.ReadComplexFieldTableComponent, typeof i50.ReadComplexFieldCollectionTableComponent, typeof i51.WriteAddressFieldComponent, typeof i52.WriteComplexFieldComponent, typeof i53.WriteOrganisationComplexFieldComponent, typeof i54.WriteDocumentFieldComponent, typeof i55.WriteDynamicListFieldComponent, typeof i56.WriteDynamicRadioListFieldComponent, typeof i57.WriteTextFieldComponent, typeof i58.WriteDateContainerFieldComponent, typeof i59.WriteTextAreaFieldComponent, typeof i60.WritePhoneUKFieldComponent, typeof i61.WriteNumberFieldComponent, typeof i62.WriteEmailFieldComponent, typeof i63.WriteDateFieldComponent, typeof i64.WriteYesNoFieldComponent, typeof i65.WriteOrganisationFieldComponent, typeof i53.WriteOrganisationComplexFieldComponent, typeof i66.WriteOrderSummaryFieldComponent, typeof i67.WriteMoneyGbpFieldComponent, typeof i58.WriteDateContainerFieldComponent, typeof i68.WriteMultiSelectListFieldComponent, typeof i69.WriteFixedListFieldComponent, typeof i70.WriteFixedRadioListFieldComponent, typeof i71.WriteCaseLinkFieldComponent, typeof i72.WriteCollectionFieldComponent], [typeof i73.CommonModule, typeof i74.BrowserModule, typeof i75.RouterModule, typeof i76.FormsModule, typeof i76.ReactiveFormsModule, typeof i77.PaletteUtilsModule, typeof i78.PipesModule, typeof i79.BannersModule, typeof i80.HeadersModule, typeof i81.FootersModule, typeof i82.BodyModule, typeof i83.FormModule, typeof i84.TabsModule, typeof i85.LabelSubstitutorModule, typeof i86.NgxMdModule, typeof i87.NgxMatDatetimePickerModule, typeof i87.NgxMatTimepickerModule, typeof i87.NgxMatNativeDateModule, typeof i88.MatFormFieldModule, typeof i89.MatInputModule, typeof i90.MatDatepickerModule, typeof i91.PaymentLibModule, typeof i92.ScrollToModule], [typeof i84.TabsModule, typeof i77.PaletteUtilsModule, typeof i78.PipesModule, typeof i12.UnsupportedFieldComponent, typeof i13.DatetimePickerComponent, typeof i14.WaysToPayFieldComponent, typeof i15.MarkdownComponent, typeof i16.FieldReadComponent, typeof i17.FieldWriteComponent, typeof i18.FieldReadLabelComponent, typeof i19.LabelFieldComponent, typeof i20.CasePaymentHistoryViewerFieldComponent, typeof i21.MoneyGbpInputComponent, typeof i22.CaseHistoryViewerFieldComponent, typeof i23.EventLogComponent, typeof i24.EventLogDetailsComponent, typeof i25.EventLogTableComponent, typeof i26.ReadTextFieldComponent, typeof i27.ReadTextAreaFieldComponent, typeof i28.ReadNumberFieldComponent, typeof i29.ReadEmailFieldComponent, typeof i30.ReadPhoneUKFieldComponent, typeof i31.ReadDateFieldComponent, typeof i32.ReadCollectionFieldComponent, typeof i33.ReadDocumentFieldComponent, typeof i34.ReadYesNoFieldComponent, typeof i35.ReadOrganisationFieldComponent, typeof i36.ReadOrganisationFieldTableComponent, typeof i37.ReadOrganisationFieldRawComponent, typeof i38.ReadOrderSummaryFieldComponent, typeof i39.ReadOrderSummaryRowComponent, typeof i40.ReadMoneyGbpFieldComponent, typeof i41.ReadMultiSelectListFieldComponent, typeof i42.ReadDynamicListFieldComponent, typeof i43.ReadFixedListFieldComponent, typeof i44.ReadFixedRadioListFieldComponent, typeof i45.ReadDynamicRadioListFieldComponent, typeof i46.ReadCaseLinkFieldComponent, typeof i47.ReadComplexFieldComponent, typeof i48.ReadComplexFieldRawComponent, typeof i49.ReadComplexFieldTableComponent, typeof i50.ReadComplexFieldCollectionTableComponent, typeof i51.WriteAddressFieldComponent, typeof i52.WriteComplexFieldComponent, typeof i53.WriteOrganisationComplexFieldComponent, typeof i54.WriteDocumentFieldComponent, typeof i55.WriteDynamicListFieldComponent, typeof i56.WriteDynamicRadioListFieldComponent, typeof i57.WriteTextFieldComponent, typeof i58.WriteDateContainerFieldComponent, typeof i59.WriteTextAreaFieldComponent, typeof i60.WritePhoneUKFieldComponent, typeof i61.WriteNumberFieldComponent, typeof i62.WriteEmailFieldComponent, typeof i63.WriteDateFieldComponent, typeof i64.WriteYesNoFieldComponent, typeof i65.WriteOrganisationFieldComponent, typeof i53.WriteOrganisationComplexFieldComponent, typeof i66.WriteOrderSummaryFieldComponent, typeof i67.WriteMoneyGbpFieldComponent, typeof i58.WriteDateContainerFieldComponent, typeof i68.WriteMultiSelectListFieldComponent, typeof i69.WriteFixedListFieldComponent, typeof i70.WriteFixedRadioListFieldComponent, typeof i71.WriteCaseLinkFieldComponent, typeof i72.WriteCollectionFieldComponent]>;
90
+ static ɵmod: i0.ɵɵNgModuleDefWithMeta<PaletteModule, [typeof i1.FixedListPipe, typeof i2.FixedRadioListPipe, typeof i3.DynamicListPipe, typeof i4.DynamicRadioListPipe, typeof i5.DocumentUrlPipe, typeof i6.UnsupportedFieldComponent, typeof i7.DatetimePickerComponent, typeof i8.WaysToPayFieldComponent, typeof i9.MarkdownComponent, typeof i10.FieldReadComponent, typeof i11.FieldWriteComponent, typeof i12.FieldReadLabelComponent, typeof i13.LabelFieldComponent, typeof i14.CasePaymentHistoryViewerFieldComponent, typeof i15.MoneyGbpInputComponent, typeof i16.CaseHistoryViewerFieldComponent, typeof i17.EventLogComponent, typeof i18.EventLogDetailsComponent, typeof i19.EventLogTableComponent, typeof i20.ReadTextFieldComponent, typeof i21.ReadTextAreaFieldComponent, typeof i22.ReadNumberFieldComponent, typeof i23.ReadEmailFieldComponent, typeof i24.ReadPhoneUKFieldComponent, typeof i25.ReadDateFieldComponent, typeof i26.ReadCollectionFieldComponent, typeof i27.ReadDocumentFieldComponent, typeof i28.ReadYesNoFieldComponent, typeof i29.ReadOrganisationFieldComponent, typeof i30.ReadOrganisationFieldTableComponent, typeof i31.ReadOrganisationFieldRawComponent, typeof i32.ReadOrderSummaryFieldComponent, typeof i33.ReadOrderSummaryRowComponent, typeof i34.ReadMoneyGbpFieldComponent, typeof i35.ReadMultiSelectListFieldComponent, typeof i36.ReadDynamicListFieldComponent, typeof i37.ReadFixedListFieldComponent, typeof i38.ReadFixedRadioListFieldComponent, typeof i39.ReadDynamicRadioListFieldComponent, typeof i40.ReadCaseLinkFieldComponent, typeof i41.ReadComplexFieldComponent, typeof i42.ReadComplexFieldRawComponent, typeof i43.ReadComplexFieldTableComponent, typeof i44.ReadComplexFieldCollectionTableComponent, typeof i45.WriteAddressFieldComponent, typeof i46.WriteComplexFieldComponent, typeof i47.WriteOrganisationComplexFieldComponent, typeof i48.WriteDocumentFieldComponent, typeof i49.WriteDynamicListFieldComponent, typeof i50.WriteDynamicRadioListFieldComponent, typeof i51.WriteTextFieldComponent, typeof i52.WriteDateContainerFieldComponent, typeof i53.WriteTextAreaFieldComponent, typeof i54.WritePhoneUKFieldComponent, typeof i55.WriteNumberFieldComponent, typeof i56.WriteEmailFieldComponent, typeof i57.WriteDateFieldComponent, typeof i58.WriteYesNoFieldComponent, typeof i59.WriteOrganisationFieldComponent, typeof i47.WriteOrganisationComplexFieldComponent, typeof i60.WriteOrderSummaryFieldComponent, typeof i61.WriteMoneyGbpFieldComponent, typeof i52.WriteDateContainerFieldComponent, typeof i62.WriteMultiSelectListFieldComponent, typeof i63.WriteFixedListFieldComponent, typeof i64.WriteFixedRadioListFieldComponent, typeof i65.WriteCaseLinkFieldComponent, typeof i66.WriteCollectionFieldComponent], [typeof i67.CommonModule, typeof i68.BrowserModule, typeof i69.RouterModule, typeof i70.FormsModule, typeof i70.ReactiveFormsModule, typeof i71.PaletteUtilsModule, typeof i72.PipesModule, typeof i73.BannersModule, typeof i74.HeadersModule, typeof i75.FootersModule, typeof i76.BodyModule, typeof i77.FormModule, typeof i78.TabsModule, typeof i79.LabelSubstitutorModule, typeof i80.NgxMdModule, typeof i81.NgxMatDatetimePickerModule, typeof i81.NgxMatTimepickerModule, typeof i81.NgxMatNativeDateModule, typeof i82.MatFormFieldModule, typeof i83.MatInputModule, typeof i84.MatDatepickerModule, typeof i85.PaymentLibModule, typeof i86.ScrollToModule], [typeof i78.TabsModule, typeof i71.PaletteUtilsModule, typeof i72.PipesModule, typeof i6.UnsupportedFieldComponent, typeof i7.DatetimePickerComponent, typeof i8.WaysToPayFieldComponent, typeof i9.MarkdownComponent, typeof i10.FieldReadComponent, typeof i11.FieldWriteComponent, typeof i12.FieldReadLabelComponent, typeof i13.LabelFieldComponent, typeof i14.CasePaymentHistoryViewerFieldComponent, typeof i15.MoneyGbpInputComponent, typeof i16.CaseHistoryViewerFieldComponent, typeof i17.EventLogComponent, typeof i18.EventLogDetailsComponent, typeof i19.EventLogTableComponent, typeof i20.ReadTextFieldComponent, typeof i21.ReadTextAreaFieldComponent, typeof i22.ReadNumberFieldComponent, typeof i23.ReadEmailFieldComponent, typeof i24.ReadPhoneUKFieldComponent, typeof i25.ReadDateFieldComponent, typeof i26.ReadCollectionFieldComponent, typeof i27.ReadDocumentFieldComponent, typeof i28.ReadYesNoFieldComponent, typeof i29.ReadOrganisationFieldComponent, typeof i30.ReadOrganisationFieldTableComponent, typeof i31.ReadOrganisationFieldRawComponent, typeof i32.ReadOrderSummaryFieldComponent, typeof i33.ReadOrderSummaryRowComponent, typeof i34.ReadMoneyGbpFieldComponent, typeof i35.ReadMultiSelectListFieldComponent, typeof i36.ReadDynamicListFieldComponent, typeof i37.ReadFixedListFieldComponent, typeof i38.ReadFixedRadioListFieldComponent, typeof i39.ReadDynamicRadioListFieldComponent, typeof i40.ReadCaseLinkFieldComponent, typeof i41.ReadComplexFieldComponent, typeof i42.ReadComplexFieldRawComponent, typeof i43.ReadComplexFieldTableComponent, typeof i44.ReadComplexFieldCollectionTableComponent, typeof i45.WriteAddressFieldComponent, typeof i46.WriteComplexFieldComponent, typeof i47.WriteOrganisationComplexFieldComponent, typeof i48.WriteDocumentFieldComponent, typeof i49.WriteDynamicListFieldComponent, typeof i50.WriteDynamicRadioListFieldComponent, typeof i51.WriteTextFieldComponent, typeof i52.WriteDateContainerFieldComponent, typeof i53.WriteTextAreaFieldComponent, typeof i54.WritePhoneUKFieldComponent, typeof i55.WriteNumberFieldComponent, typeof i56.WriteEmailFieldComponent, typeof i57.WriteDateFieldComponent, typeof i58.WriteYesNoFieldComponent, typeof i59.WriteOrganisationFieldComponent, typeof i47.WriteOrganisationComplexFieldComponent, typeof i60.WriteOrderSummaryFieldComponent, typeof i61.WriteMoneyGbpFieldComponent, typeof i52.WriteDateContainerFieldComponent, typeof i62.WriteMultiSelectListFieldComponent, typeof i63.WriteFixedListFieldComponent, typeof i64.WriteFixedRadioListFieldComponent, typeof i65.WriteCaseLinkFieldComponent, typeof i66.WriteCollectionFieldComponent]>;
97
91
  static ɵinj: i0.ɵɵInjectorDef<PaletteModule>;
98
92
  }
99
93
  //# sourceMappingURL=palette.module.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"palette.module.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/palette.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA2IA,qBA2Da,aAAa;iCAAb,aAAa;0CAAb,aAAa;kCAAb,aAAa;CACzB"}
1
+ {"version":3,"file":"palette.module.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/palette.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA2IA,qBAoDa,aAAa;iCAAb,aAAa;0CAAb,aAAa;kCAAb,aAAa;CACzB"}
@@ -0,0 +1,3 @@
1
+ export * from './search-result.component';
2
+ export * from './search-result.module';
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/search-result/index.ts"],"names":[],"mappings":"AAAA,cAAc,2BAA2B,CAAC;AAC1C,cAAc,wBAAwB,CAAC"}
@@ -0,0 +1,111 @@
1
+ import { AfterViewInit, ChangeDetectorRef, EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
2
+ import { FormGroup } from '@angular/forms';
3
+ import { AbstractAppConfig } from '../../../app.config';
4
+ import { PlaceholderService } from '../../directives/substitutor/services/placeholder.service';
5
+ import { DisplayMode } from '../../domain/activity/activity.model';
6
+ import { CaseField } from '../../domain/definition/case-field.model';
7
+ import { CaseState } from '../../domain/definition/case-state.model';
8
+ import { CaseType } from '../../domain/definition/case-type.model';
9
+ import { Jurisdiction } from '../../domain/definition/jurisdiction.model';
10
+ import { PaginationMetadata } from '../../domain/pagination-metadata.model';
11
+ import { SearchResultViewColumn } from '../../domain/search/search-result-view-column.model';
12
+ import { SearchResultViewItem } from '../../domain/search/search-result-view-item.model';
13
+ import { SearchResultView } from '../../domain/search/search-result-view.model';
14
+ import { SearchResultViewItemComparator } from '../../domain/search/sorting/search-result-view-item-comparator';
15
+ import { SortOrder } from '../../domain/search/sorting/sort-order';
16
+ import { SortParameters } from '../../domain/search/sorting/sort-parameters';
17
+ import { CaseReferencePipe } from '../../pipes/case-reference/case-reference.pipe';
18
+ import { ActivityService } from '../../services/activity/activity.service';
19
+ import { BrowserService } from '../../services/browser/browser.service';
20
+ import { SearchResultViewItemComparatorFactory } from '../../services/search-result/sorting/search-result-view-item-comparator-factory';
21
+ import * as i0 from "@angular/core";
22
+ export declare class SearchResultComponent implements OnChanges, AfterViewInit {
23
+ private readonly activityService;
24
+ private readonly caseReferencePipe;
25
+ private readonly placeholderService;
26
+ private readonly browserService;
27
+ private readonly cdr;
28
+ static readonly PARAM_JURISDICTION = "jurisdiction";
29
+ static readonly PARAM_CASE_TYPE = "case-type";
30
+ static readonly PARAM_CASE_STATE = "case-state";
31
+ ICON: DisplayMode;
32
+ caseLinkUrlTemplate: string;
33
+ jurisdiction: Jurisdiction;
34
+ caseType: CaseType;
35
+ caseState: CaseState;
36
+ caseFilterFG: FormGroup;
37
+ resultView: SearchResultView;
38
+ page: number;
39
+ paginationMetadata: PaginationMetadata;
40
+ metadataFields: string[];
41
+ selectionEnabled: boolean;
42
+ showOnlySelected: boolean;
43
+ preSelectedCases: SearchResultViewItem[];
44
+ consumerSortingEnabled: boolean;
45
+ selection: EventEmitter<SearchResultViewItem[]>;
46
+ changePage: EventEmitter<any>;
47
+ clickCase: EventEmitter<any>;
48
+ sortHandler: EventEmitter<any>;
49
+ paginationLimitEnforced: boolean;
50
+ paginationPageSize: number;
51
+ hideRows: boolean;
52
+ selected: {
53
+ init?: boolean;
54
+ jurisdiction?: Jurisdiction;
55
+ caseType?: CaseType;
56
+ caseState?: CaseState;
57
+ formGroup?: FormGroup;
58
+ metadataFields?: string[];
59
+ page?: number;
60
+ };
61
+ sortParameters: SortParameters;
62
+ searchResultViewItemComparatorFactory: SearchResultViewItemComparatorFactory;
63
+ draftsCount: number;
64
+ consumerSortParameters: {
65
+ column: string;
66
+ order: SortOrder;
67
+ type: string;
68
+ };
69
+ selectedCases: SearchResultViewItem[];
70
+ private readonly PAGINATION_MAX_ITEM_RESULT;
71
+ constructor(searchResultViewItemComparatorFactory: SearchResultViewItemComparatorFactory, appConfig: AbstractAppConfig, activityService: ActivityService, caseReferencePipe: CaseReferencePipe, placeholderService: PlaceholderService, browserService: BrowserService, cdr: ChangeDetectorRef);
72
+ get resultTotal(): number;
73
+ ngAfterViewInit(): void;
74
+ ngOnChanges(changes: SimpleChanges): void;
75
+ clearSelection(): void;
76
+ canBeShared(caseView: SearchResultViewItem): boolean;
77
+ canAnyBeShared(): boolean;
78
+ selectAll(): void;
79
+ changeSelection(c: SearchResultViewItem): void;
80
+ isSelected(c: SearchResultViewItem): boolean;
81
+ allOnPageSelected(): boolean;
82
+ /**
83
+ * Hydrates result view with case field definitions.
84
+ */
85
+ hydrateResultView(): void;
86
+ goToPage(page: any): void;
87
+ buildCaseField(col: SearchResultViewColumn, result: SearchResultViewItem): CaseField;
88
+ getColumnsWithPrefix(col: CaseField, result: SearchResultViewItem): CaseField;
89
+ hasResults(): any;
90
+ hasDrafts(): boolean;
91
+ comparator(column: SearchResultViewColumn): SearchResultViewItemComparator;
92
+ sort(column: SearchResultViewColumn): void;
93
+ sortWidget(column: SearchResultViewColumn): "&#9660;" | "&#9650;";
94
+ activityEnabled(): boolean;
95
+ hyphenateIfCaseReferenceOrGet(col: any, result: any): any;
96
+ draftPrefixOrGet(col: any, result: any): any;
97
+ getFirstResult(): number;
98
+ getLastResult(): number;
99
+ getTotalResults(): number;
100
+ prepareCaseLinkUrl(caseId: string): string;
101
+ goToCase(caseId: string): void;
102
+ onKeyUp($event: KeyboardEvent, c: SearchResultViewItem): void;
103
+ isSortAscending(column: SearchResultViewColumn): boolean;
104
+ sortLabelText(label: string, isAscending: boolean): string;
105
+ private currentSortOrder;
106
+ private getDraftsCountIfNotPageOne;
107
+ private numberOfDrafts;
108
+ static ɵfac: i0.ɵɵFactoryDef<SearchResultComponent, never>;
109
+ static ɵcmp: i0.ɵɵComponentDefWithMeta<SearchResultComponent, "ccd-search-result", never, { "caseLinkUrlTemplate": "caseLinkUrlTemplate"; "jurisdiction": "jurisdiction"; "caseType": "caseType"; "caseState": "caseState"; "caseFilterFG": "caseFilterFG"; "resultView": "resultView"; "page": "page"; "paginationMetadata": "paginationMetadata"; "metadataFields": "metadataFields"; "selectionEnabled": "selectionEnabled"; "showOnlySelected": "showOnlySelected"; "preSelectedCases": "preSelectedCases"; "consumerSortingEnabled": "consumerSortingEnabled"; }, { "selection": "selection"; "changePage": "changePage"; "clickCase": "clickCase"; "sortHandler": "sortHandler"; }, never, never>;
110
+ }
111
+ //# sourceMappingURL=search-result.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"search-result.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/search-result/search-result.component.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,16 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./search-result.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "ngx-pagination";
5
+ import * as i4 from "@angular/router";
6
+ import * as i5 from "@angular/forms";
7
+ import * as i6 from "../../directives/substitutor/label-substitutor.module";
8
+ import * as i7 from "../../pipes/pipes.module";
9
+ import * as i8 from "../activity/activity.module";
10
+ import * as i9 from "../pagination/pagination.module";
11
+ export declare class SearchResultModule {
12
+ static ɵfac: i0.ɵɵFactoryDef<SearchResultModule, never>;
13
+ static ɵmod: i0.ɵɵNgModuleDefWithMeta<SearchResultModule, [typeof i1.SearchResultComponent], [typeof i2.CommonModule, typeof i3.NgxPaginationModule, typeof i4.RouterModule, typeof i5.FormsModule, typeof i5.ReactiveFormsModule, typeof i6.LabelSubstitutorModule, typeof i7.PipesModule, typeof i8.ActivityModule, typeof i9.PaginationModule], [typeof i1.SearchResultComponent]>;
14
+ static ɵinj: i0.ɵɵInjectorDef<SearchResultModule>;
15
+ }
16
+ //# sourceMappingURL=search-result.module.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"search-result.module.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/search-result/search-result.module.ts"],"names":[],"mappings":";;;;;;;;;;AAgBA,qBAuBa,kBAAkB;iCAAlB,kBAAkB;0CAAlB,kBAAkB;kCAAlB,kBAAkB;CAAG"}