@hmcts/ccd-case-ui-toolkit 5.0.6-angular11-upgrade → 5.0.9-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 (509) hide show
  1. package/bundles/hmcts-ccd-case-ui-toolkit.umd.js +25692 -5025
  2. package/bundles/hmcts-ccd-case-ui-toolkit.umd.js.map +1 -1
  3. package/bundles/hmcts-ccd-case-ui-toolkit.umd.min.js +1 -16
  4. package/bundles/hmcts-ccd-case-ui-toolkit.umd.min.js.map +1 -1
  5. package/esm2015/lib/shared/components/activity/activity-banner/activity-banner.component.js +42 -0
  6. package/esm2015/lib/shared/components/activity/activity-banner/index.js +2 -0
  7. package/esm2015/lib/shared/components/activity/activity-icon/activity-icon.component.js +35 -0
  8. package/esm2015/lib/shared/components/activity/activity-icon/index.js +2 -0
  9. package/esm2015/lib/shared/components/activity/activity.component.js +150 -0
  10. package/esm2015/lib/shared/components/activity/activity.module.js +53 -0
  11. package/esm2015/lib/shared/components/activity/index.js +5 -0
  12. package/esm2015/lib/shared/components/case-editor/case-create/case-create.component.js +94 -0
  13. package/esm2015/lib/shared/components/case-editor/case-create/index.js +2 -0
  14. package/esm2015/lib/shared/components/case-editor/case-edit/case-edit.component.js +113 -0
  15. package/esm2015/lib/shared/components/case-editor/case-edit/index.js +2 -0
  16. package/esm2015/lib/shared/components/case-editor/case-edit-confirm/case-edit-confirm.component.js +131 -0
  17. package/esm2015/lib/shared/components/case-editor/case-edit-confirm/index.js +2 -0
  18. package/esm2015/lib/shared/components/case-editor/case-edit-form/case-edit-form.component.js +146 -0
  19. package/esm2015/lib/shared/components/case-editor/case-edit-form/index.js +2 -0
  20. package/esm2015/lib/shared/components/case-editor/case-edit-page/case-edit-page-text.enum.js +11 -0
  21. package/esm2015/lib/shared/components/case-editor/case-edit-page/case-edit-page.component.js +654 -0
  22. package/esm2015/lib/shared/components/case-editor/case-edit-page/index.js +2 -0
  23. package/esm2015/lib/shared/components/case-editor/case-edit-submit/case-edit-submit.component.js +759 -0
  24. package/esm2015/lib/shared/components/case-editor/case-edit-submit/index.js +2 -0
  25. package/esm2015/lib/shared/components/case-editor/case-editor.module.js +185 -0
  26. package/esm2015/lib/shared/components/case-editor/case-event-completion/case-event-completion.component.js +89 -0
  27. 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
  28. 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
  29. package/esm2015/lib/shared/components/case-editor/case-event-completion/index.js +4 -0
  30. package/esm2015/lib/shared/components/case-editor/case-progress/case-progress.component.js +85 -0
  31. package/esm2015/lib/shared/components/case-editor/case-progress/index.js +2 -0
  32. package/esm2015/lib/shared/components/case-editor/domain/event-completion-params.model.js +2 -0
  33. package/esm2015/lib/shared/components/case-editor/domain/event-completion-portal-types.model.js +6 -0
  34. package/esm2015/lib/shared/components/case-editor/editor.routing.js +31 -0
  35. package/esm2015/lib/shared/components/case-editor/index.js +13 -0
  36. package/esm2015/lib/shared/components/case-editor/services/case-edit-wizard.guard.js +92 -0
  37. package/esm2015/lib/shared/components/case-editor/services/case-worker.service.js +32 -0
  38. package/esm2015/lib/shared/components/case-editor/services/convert-href-to-router.service.js +41 -0
  39. package/esm2015/lib/shared/components/case-editor/services/event-completion-state-machine.service.js +162 -0
  40. package/esm2015/lib/shared/components/case-editor/services/event-trigger.service.js +20 -0
  41. package/esm2015/lib/shared/components/case-editor/services/index.js +12 -0
  42. package/esm2015/lib/shared/components/case-editor/services/judicial-worker.service.js +32 -0
  43. package/esm2015/lib/shared/components/case-editor/services/page-validation.service.js +50 -0
  44. package/esm2015/lib/shared/components/case-editor/services/wizard-factory.service.js +7 -0
  45. package/esm2015/lib/shared/components/case-header/case-header.component.js +65 -0
  46. package/esm2015/lib/shared/components/case-header/case-header.module.js +35 -0
  47. package/esm2015/lib/shared/components/case-header/index.js +3 -0
  48. package/esm2015/lib/shared/components/case-history/case-history.component.js +264 -0
  49. package/esm2015/lib/shared/components/case-history/case-history.module.js +52 -0
  50. package/esm2015/lib/shared/components/case-history/domain/case-history.model.js +28 -0
  51. package/esm2015/lib/shared/components/case-history/index.js +3 -0
  52. package/esm2015/lib/shared/components/case-history/services/case-history.service.js +40 -0
  53. package/esm2015/lib/shared/components/case-list/case-list.component.js +370 -0
  54. package/esm2015/lib/shared/components/case-list/case-list.module.js +45 -0
  55. package/esm2015/lib/shared/components/case-list/index.js +3 -0
  56. package/esm2015/lib/shared/components/case-list-filters/case-list-filters.component.js +57 -0
  57. package/esm2015/lib/shared/components/case-list-filters/case-list-filters.module.js +59 -0
  58. package/esm2015/lib/shared/components/case-list-filters/index.js +3 -0
  59. package/esm2015/lib/shared/components/case-timeline/case-timeline.component.js +118 -0
  60. package/esm2015/lib/shared/components/case-timeline/case-timeline.module.js +46 -0
  61. package/esm2015/lib/shared/components/case-timeline/index.js +3 -0
  62. package/esm2015/lib/shared/components/case-viewer/case-basic-access-view/case-basic-access-view.component.js +195 -0
  63. package/esm2015/lib/shared/components/case-viewer/case-basic-access-view/index.js +2 -0
  64. package/esm2015/lib/shared/components/case-viewer/case-challenged-access-request/case-challenged-access-request.component.js +307 -0
  65. package/esm2015/lib/shared/components/case-viewer/case-challenged-access-request/index.js +2 -0
  66. package/esm2015/lib/shared/components/case-viewer/case-challenged-access-request/models/case-challenged-access-request.enum.js +20 -0
  67. package/esm2015/lib/shared/components/case-viewer/case-challenged-access-request/models/index.js +2 -0
  68. package/esm2015/lib/shared/components/case-viewer/case-challenged-access-success/case-challenged-access-success.component.js +64 -0
  69. package/esm2015/lib/shared/components/case-viewer/case-challenged-access-success/index.js +2 -0
  70. package/esm2015/lib/shared/components/case-viewer/case-event-trigger/case-event-trigger.component.js +120 -0
  71. package/esm2015/lib/shared/components/case-viewer/case-event-trigger/index.js +2 -0
  72. package/esm2015/lib/shared/components/case-viewer/case-full-access-view/case-full-access-view.component.js +545 -0
  73. package/esm2015/lib/shared/components/case-viewer/case-full-access-view/index.js +2 -0
  74. package/esm2015/lib/shared/components/case-viewer/case-review-specific-access-reject/case-review-specific-access-reject.component.js +63 -0
  75. package/esm2015/lib/shared/components/case-viewer/case-review-specific-access-reject/index.js +2 -0
  76. package/esm2015/lib/shared/components/case-viewer/case-review-specific-access-request/case-review-specific-access-request.component.js +258 -0
  77. package/esm2015/lib/shared/components/case-viewer/case-review-specific-access-request/index.js +2 -0
  78. package/esm2015/lib/shared/components/case-viewer/case-review-specific-access-request/models/case-review-specific-access-request.enum.js +18 -0
  79. package/esm2015/lib/shared/components/case-viewer/case-review-specific-access-request/models/index.js +2 -0
  80. package/esm2015/lib/shared/components/case-viewer/case-specific-access-request/case-specific-access-request.component.js +195 -0
  81. package/esm2015/lib/shared/components/case-viewer/case-specific-access-request/index.js +2 -0
  82. package/esm2015/lib/shared/components/case-viewer/case-specific-access-request/models/case-specific-access-request.enum.js +11 -0
  83. package/esm2015/lib/shared/components/case-viewer/case-specific-access-request/models/index.js +2 -0
  84. package/esm2015/lib/shared/components/case-viewer/case-specific-access-success/case-specific-access-success.component.js +60 -0
  85. package/esm2015/lib/shared/components/case-viewer/case-specific-access-success/index.js +2 -0
  86. package/esm2015/lib/shared/components/case-viewer/case-view/case-view.component.js +100 -0
  87. package/esm2015/lib/shared/components/case-viewer/case-view/index.js +2 -0
  88. package/esm2015/lib/shared/components/case-viewer/case-viewer.component.js +129 -0
  89. package/esm2015/lib/shared/components/case-viewer/case-viewer.module.js +155 -0
  90. package/esm2015/lib/shared/components/case-viewer/index.js +14 -0
  91. package/esm2015/lib/shared/components/case-viewer/printer/case-printer.component.js +111 -0
  92. package/esm2015/lib/shared/components/case-viewer/printer/index.js +4 -0
  93. package/esm2015/lib/shared/components/case-viewer/printer/pipes/index.js +2 -0
  94. package/esm2015/lib/shared/components/case-viewer/printer/pipes/print-url.pipe.js +60 -0
  95. package/esm2015/lib/shared/components/case-viewer/services/case.resolver.js +110 -0
  96. package/esm2015/lib/shared/components/case-viewer/services/event-trigger.resolver.js +64 -0
  97. package/esm2015/lib/shared/components/case-viewer/services/index.js +3 -0
  98. package/esm2015/lib/shared/components/case-viewer/viewer.routing.js +127 -0
  99. package/esm2015/lib/shared/components/create-case-filters/create-case-filters-selection.model.js +8 -0
  100. package/esm2015/lib/shared/components/create-case-filters/create-case-filters.component.js +257 -0
  101. package/esm2015/lib/shared/components/create-case-filters/create-case-filters.module.js +42 -0
  102. package/esm2015/lib/shared/components/create-case-filters/index.js +4 -0
  103. package/esm2015/lib/shared/components/dialogs/delete-or-cancel-dialog/delete-or-cancel-dialog.component.js +57 -0
  104. package/esm2015/lib/shared/components/dialogs/delete-or-cancel-dialog/index.js +2 -0
  105. package/esm2015/lib/shared/components/dialogs/dialogs.module.js +49 -0
  106. package/esm2015/lib/shared/components/dialogs/document-dialog/index.js +2 -0
  107. package/esm2015/lib/shared/components/dialogs/index.js +6 -0
  108. package/esm2015/lib/shared/components/dialogs/remove-dialog/index.js +2 -0
  109. package/esm2015/lib/shared/components/dialogs/save-or-discard-dialog/index.js +2 -0
  110. package/esm2015/lib/shared/components/dialogs/save-or-discard-dialog/save-or-discard-dialog.component.js +61 -0
  111. package/esm2015/lib/shared/components/error/callback-errors.component.js +145 -0
  112. package/esm2015/lib/shared/components/error/domain/error-context.js +3 -0
  113. package/esm2015/lib/shared/components/error/domain/index.js +2 -0
  114. package/esm2015/lib/shared/components/error/errors.module.js +31 -0
  115. package/esm2015/lib/shared/components/error/index.js +4 -0
  116. package/esm2015/lib/shared/components/error-message/error-message.component.js +51 -0
  117. package/esm2015/lib/shared/components/error-message/error-message.module.js +39 -0
  118. package/esm2015/lib/shared/components/error-message/index.js +3 -0
  119. package/esm2015/lib/shared/components/event-start/components/multiple-tasks-exist/multiple-tasks-exist.component.js +55 -0
  120. package/esm2015/lib/shared/components/event-start/components/no-tasks-available/no-tasks-available.component.js +52 -0
  121. package/esm2015/lib/shared/components/event-start/components/task-assigned/task-assigned.component.js +104 -0
  122. package/esm2015/lib/shared/components/event-start/components/task-cancelled/task-cancelled.component.js +60 -0
  123. package/esm2015/lib/shared/components/event-start/components/task-conflict/task-conflict.component.js +54 -0
  124. package/esm2015/lib/shared/components/event-start/components/task-unassigned/task-unassigned.component.js +52 -0
  125. package/esm2015/lib/shared/components/event-start/event-guard/event-start.guard.js +103 -0
  126. package/esm2015/lib/shared/components/event-start/event-start.component.js +52 -0
  127. package/esm2015/lib/shared/components/event-start/event-start.module.js +69 -0
  128. package/esm2015/lib/shared/components/event-start/index.js +10 -0
  129. package/esm2015/lib/shared/components/event-start/models/event-start-state-machine-context.model.js +2 -0
  130. package/esm2015/lib/shared/components/event-start/models/event-start-states-enum.model.js +16 -0
  131. package/esm2015/lib/shared/components/event-start/models/index.js +3 -0
  132. package/esm2015/lib/shared/components/event-start/resolvers/event-tasks-resolver.service.js +29 -0
  133. package/esm2015/lib/shared/components/event-start/services/event-start-state-machine.service.js +168 -0
  134. package/esm2015/lib/shared/components/event-start/services/index.js +2 -0
  135. package/esm2015/lib/shared/components/event-trigger/event-trigger.component.js +108 -0
  136. package/esm2015/lib/shared/components/event-trigger/event-trigger.module.js +35 -0
  137. package/esm2015/lib/shared/components/event-trigger/index.js +3 -0
  138. package/esm2015/lib/shared/components/index.js +20 -0
  139. package/esm2015/lib/shared/components/loading-spinner/index.js +2 -0
  140. package/esm2015/lib/shared/components/loading-spinner/loading-spinner.component.js +33 -0
  141. package/esm2015/lib/shared/components/pagination/index.js +3 -0
  142. package/esm2015/lib/shared/components/pagination/pagination.component.js +255 -0
  143. package/esm2015/lib/shared/components/pagination/pagination.module.js +33 -0
  144. package/esm2015/lib/shared/components/palette/address/index.js +3 -0
  145. package/esm2015/lib/shared/components/palette/case-link/index.js +3 -0
  146. package/esm2015/lib/shared/components/palette/complex/index.js +1 -7
  147. package/esm2015/lib/shared/components/palette/complex/write-complex-field.component.js +2 -2
  148. package/esm2015/lib/shared/components/palette/index.js +32 -0
  149. package/esm2015/lib/shared/components/palette/palette.module.js +16 -27
  150. package/esm2015/lib/shared/components/search-result/index.js +3 -0
  151. package/esm2015/lib/shared/components/search-result/search-result.component.js +845 -0
  152. package/esm2015/lib/shared/components/search-result/search-result.module.js +67 -0
  153. package/esm2015/lib/shared/components/workbasket-filters/index.js +3 -0
  154. package/esm2015/lib/shared/components/workbasket-filters/workbasket-filters.component.js +448 -0
  155. package/esm2015/lib/shared/components/workbasket-filters/workbasket-filters.module.js +60 -0
  156. package/esm2015/lib/shared/domain/case-view/role-request.model.js +1 -1
  157. package/esm2015/lib/shared/domain/work-allocation/case-worker.model.js +2 -0
  158. package/esm2015/lib/shared/domain/work-allocation/judicial-worker.model.js +2 -0
  159. package/esm2015/lib/shared/index.js +2 -1
  160. package/esm2015/lib/shared/pipes/complex/ccd-collection-table-value-case-fields.pipe.js +29 -0
  161. package/esm2015/lib/shared/pipes/complex/ccd-cyapage-label-filter.pipe.js +29 -0
  162. package/esm2015/lib/shared/pipes/complex/ccd-read-fields-filter.pipe.js +154 -0
  163. package/esm2015/lib/shared/pipes/complex/ccd-tab-fields.pipe.js +31 -0
  164. package/esm2015/lib/shared/pipes/complex/cdd-page-fields.pipe.js +39 -0
  165. package/esm2015/lib/shared/pipes/complex/fields-filter.pipe.js +103 -0
  166. package/esm2015/lib/shared/pipes/complex/index.js +7 -0
  167. package/esm2015/lib/shared/pipes/index.js +3 -2
  168. package/esm2015/lib/shared/pipes/pipes.module.js +26 -9
  169. package/fesm2015/hmcts-ccd-case-ui-toolkit.js +22295 -4295
  170. package/fesm2015/hmcts-ccd-case-ui-toolkit.js.map +1 -1
  171. package/lib/shared/components/activity/activity-banner/activity-banner.component.d.ts +12 -0
  172. package/lib/shared/components/activity/activity-banner/activity-banner.component.d.ts.map +1 -0
  173. package/lib/shared/components/activity/activity-banner/index.d.ts +2 -0
  174. package/lib/shared/components/activity/activity-banner/index.d.ts.map +1 -0
  175. package/lib/shared/components/activity/activity-icon/activity-icon.component.d.ts +11 -0
  176. package/lib/shared/components/activity/activity-icon/activity-icon.component.d.ts.map +1 -0
  177. package/lib/shared/components/activity/activity-icon/index.d.ts +2 -0
  178. package/lib/shared/components/activity/activity-icon/index.d.ts.map +1 -0
  179. package/lib/shared/components/activity/activity.component.d.ts +32 -0
  180. package/lib/shared/components/activity/activity.component.d.ts.map +1 -0
  181. package/lib/shared/components/activity/activity.module.d.ts +12 -0
  182. package/lib/shared/components/activity/activity.module.d.ts.map +1 -0
  183. package/lib/shared/components/activity/index.d.ts +5 -0
  184. package/lib/shared/components/activity/index.d.ts.map +1 -0
  185. package/lib/shared/components/case-editor/case-create/case-create.component.d.ts +33 -0
  186. package/lib/shared/components/case-editor/case-create/case-create.component.d.ts.map +1 -0
  187. package/lib/shared/components/case-editor/case-create/index.d.ts +2 -0
  188. package/lib/shared/components/case-editor/case-create/index.d.ts.map +1 -0
  189. package/lib/shared/components/case-editor/case-edit/case-edit.component.d.ts +50 -0
  190. package/lib/shared/components/case-editor/case-edit/case-edit.component.d.ts.map +1 -0
  191. package/lib/shared/components/case-editor/case-edit/index.d.ts +2 -0
  192. package/lib/shared/components/case-editor/case-edit/index.d.ts.map +1 -0
  193. package/lib/shared/components/case-editor/case-edit-confirm/case-edit-confirm.component.d.ts +26 -0
  194. package/lib/shared/components/case-editor/case-edit-confirm/case-edit-confirm.component.d.ts.map +1 -0
  195. package/lib/shared/components/case-editor/case-edit-confirm/index.d.ts +2 -0
  196. package/lib/shared/components/case-editor/case-edit-confirm/index.d.ts.map +1 -0
  197. package/lib/shared/components/case-editor/case-edit-form/case-edit-form.component.d.ts +26 -0
  198. package/lib/shared/components/case-editor/case-edit-form/case-edit-form.component.d.ts.map +1 -0
  199. package/lib/shared/components/case-editor/case-edit-form/index.d.ts +2 -0
  200. package/lib/shared/components/case-editor/case-edit-form/index.d.ts.map +1 -0
  201. package/lib/shared/components/case-editor/case-edit-page/case-edit-page-text.enum.d.ts +10 -0
  202. package/lib/shared/components/case-editor/case-edit-page/case-edit-page-text.enum.d.ts.map +1 -0
  203. package/lib/shared/components/case-editor/case-edit-page/case-edit-page.component.d.ts +100 -0
  204. package/lib/shared/components/case-editor/case-edit-page/case-edit-page.component.d.ts.map +1 -0
  205. package/lib/shared/components/case-editor/case-edit-page/index.d.ts +2 -0
  206. package/lib/shared/components/case-editor/case-edit-page/index.d.ts.map +1 -0
  207. package/lib/shared/components/case-editor/case-edit-submit/case-edit-submit.component.d.ts +123 -0
  208. package/lib/shared/components/case-editor/case-edit-submit/case-edit-submit.component.d.ts.map +1 -0
  209. package/lib/shared/components/case-editor/case-edit-submit/index.d.ts +2 -0
  210. package/lib/shared/components/case-editor/case-edit-submit/index.d.ts.map +1 -0
  211. package/lib/shared/components/case-editor/case-editor.module.d.ts +27 -0
  212. package/lib/shared/components/case-editor/case-editor.module.d.ts.map +1 -0
  213. package/lib/shared/components/case-editor/case-event-completion/case-event-completion.component.d.ts +31 -0
  214. package/lib/shared/components/case-editor/case-event-completion/case-event-completion.component.d.ts.map +1 -0
  215. 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
  216. 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
  217. 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
  218. 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
  219. package/lib/shared/components/case-editor/case-event-completion/index.d.ts +4 -0
  220. package/lib/shared/components/case-editor/case-event-completion/index.d.ts.map +1 -0
  221. package/lib/shared/components/case-editor/case-progress/case-progress.component.d.ts +30 -0
  222. package/lib/shared/components/case-editor/case-progress/case-progress.component.d.ts.map +1 -0
  223. package/lib/shared/components/case-editor/case-progress/index.d.ts +2 -0
  224. package/lib/shared/components/case-editor/case-progress/index.d.ts.map +1 -0
  225. package/lib/shared/components/case-editor/domain/event-completion-params.model.d.ts +7 -0
  226. package/lib/shared/components/case-editor/domain/event-completion-params.model.d.ts.map +1 -0
  227. package/lib/shared/components/case-editor/domain/event-completion-portal-types.model.d.ts +5 -0
  228. package/lib/shared/components/case-editor/domain/event-completion-portal-types.model.d.ts.map +1 -0
  229. package/lib/shared/components/case-editor/editor.routing.d.ts +3 -0
  230. package/lib/shared/components/case-editor/editor.routing.d.ts.map +1 -0
  231. package/lib/shared/components/case-editor/index.d.ts +13 -0
  232. package/lib/shared/components/case-editor/index.d.ts.map +1 -0
  233. package/lib/shared/components/case-editor/services/case-edit-wizard.guard.d.ts +23 -0
  234. package/lib/shared/components/case-editor/services/case-edit-wizard.guard.d.ts.map +1 -0
  235. package/lib/shared/components/case-editor/services/case-worker.service.d.ts +16 -0
  236. package/lib/shared/components/case-editor/services/case-worker.service.d.ts.map +1 -0
  237. package/lib/shared/components/case-editor/services/convert-href-to-router.service.d.ts +14 -0
  238. package/lib/shared/components/case-editor/services/convert-href-to-router.service.d.ts.map +1 -0
  239. package/lib/shared/components/case-editor/services/event-completion-state-machine.service.d.ts +33 -0
  240. package/lib/shared/components/case-editor/services/event-completion-state-machine.service.d.ts.map +1 -0
  241. package/lib/shared/components/case-editor/services/event-trigger.service.d.ts +10 -0
  242. package/lib/shared/components/case-editor/services/event-trigger.service.d.ts.map +1 -0
  243. package/lib/shared/components/case-editor/services/index.d.ts +12 -0
  244. package/lib/shared/components/case-editor/services/index.d.ts.map +1 -0
  245. package/lib/shared/components/case-editor/services/judicial-worker.service.d.ts +16 -0
  246. package/lib/shared/components/case-editor/services/judicial-worker.service.d.ts.map +1 -0
  247. package/lib/shared/components/case-editor/services/page-validation.service.d.ts +17 -0
  248. package/lib/shared/components/case-editor/services/page-validation.service.d.ts.map +1 -0
  249. package/lib/shared/components/case-editor/services/wizard-factory.service.d.ts +6 -0
  250. package/lib/shared/components/case-editor/services/wizard-factory.service.d.ts.map +1 -0
  251. package/lib/shared/components/case-header/case-header.component.d.ts +15 -0
  252. package/lib/shared/components/case-header/case-header.component.d.ts.map +1 -0
  253. package/lib/shared/components/case-header/case-header.module.d.ts +11 -0
  254. package/lib/shared/components/case-header/case-header.module.d.ts.map +1 -0
  255. package/lib/shared/components/case-header/index.d.ts +3 -0
  256. package/lib/shared/components/case-header/index.d.ts.map +1 -0
  257. package/lib/shared/components/case-history/case-history.component.d.ts +33 -0
  258. package/lib/shared/components/case-history/case-history.component.d.ts.map +1 -0
  259. package/lib/shared/components/case-history/case-history.module.d.ts +14 -0
  260. package/lib/shared/components/case-history/case-history.module.d.ts.map +1 -0
  261. package/lib/shared/components/case-history/domain/case-history.model.d.ts +16 -0
  262. package/lib/shared/components/case-history/domain/case-history.model.d.ts.map +1 -0
  263. package/lib/shared/components/case-history/index.d.ts +3 -0
  264. package/lib/shared/components/case-history/index.d.ts.map +1 -0
  265. package/lib/shared/components/case-history/services/case-history.service.d.ts +17 -0
  266. package/lib/shared/components/case-history/services/case-history.service.d.ts.map +1 -0
  267. package/lib/shared/components/case-list/case-list.component.d.ts +47 -0
  268. package/lib/shared/components/case-list/case-list.component.d.ts.map +1 -0
  269. package/lib/shared/components/case-list/case-list.module.d.ts +13 -0
  270. package/lib/shared/components/case-list/case-list.module.d.ts.map +1 -0
  271. package/lib/shared/components/case-list/index.d.ts +3 -0
  272. package/lib/shared/components/case-list/index.d.ts.map +1 -0
  273. package/lib/shared/components/case-list-filters/case-list-filters.component.d.ts +19 -0
  274. package/lib/shared/components/case-list-filters/case-list-filters.component.d.ts.map +1 -0
  275. package/lib/shared/components/case-list-filters/case-list-filters.module.d.ts +13 -0
  276. package/lib/shared/components/case-list-filters/case-list-filters.module.d.ts.map +1 -0
  277. package/lib/shared/components/case-list-filters/index.d.ts +3 -0
  278. package/lib/shared/components/case-list-filters/index.d.ts.map +1 -0
  279. package/lib/shared/components/case-timeline/case-timeline.component.d.ts +27 -0
  280. package/lib/shared/components/case-timeline/case-timeline.component.d.ts.map +1 -0
  281. package/lib/shared/components/case-timeline/case-timeline.module.d.ts +13 -0
  282. package/lib/shared/components/case-timeline/case-timeline.module.d.ts.map +1 -0
  283. package/lib/shared/components/case-timeline/index.d.ts +3 -0
  284. package/lib/shared/components/case-timeline/index.d.ts.map +1 -0
  285. package/lib/shared/components/case-viewer/case-basic-access-view/case-basic-access-view.component.d.ts +19 -0
  286. package/lib/shared/components/case-viewer/case-basic-access-view/case-basic-access-view.component.d.ts.map +1 -0
  287. package/lib/shared/components/case-viewer/case-basic-access-view/index.d.ts +2 -0
  288. package/lib/shared/components/case-viewer/case-basic-access-view/index.d.ts.map +1 -0
  289. package/lib/shared/components/case-viewer/case-challenged-access-request/case-challenged-access-request.component.d.ts +40 -0
  290. package/lib/shared/components/case-viewer/case-challenged-access-request/case-challenged-access-request.component.d.ts.map +1 -0
  291. package/lib/shared/components/case-viewer/case-challenged-access-request/index.d.ts +2 -0
  292. package/lib/shared/components/case-viewer/case-challenged-access-request/index.d.ts.map +1 -0
  293. package/lib/shared/components/case-viewer/case-challenged-access-request/models/case-challenged-access-request.enum.d.ts +17 -0
  294. package/lib/shared/components/case-viewer/case-challenged-access-request/models/case-challenged-access-request.enum.d.ts.map +1 -0
  295. package/lib/shared/components/case-viewer/case-challenged-access-request/models/index.d.ts +2 -0
  296. package/lib/shared/components/case-viewer/case-challenged-access-request/models/index.d.ts.map +1 -0
  297. package/lib/shared/components/case-viewer/case-challenged-access-success/case-challenged-access-success.component.d.ts +12 -0
  298. package/lib/shared/components/case-viewer/case-challenged-access-success/case-challenged-access-success.component.d.ts.map +1 -0
  299. package/lib/shared/components/case-viewer/case-challenged-access-success/index.d.ts +2 -0
  300. package/lib/shared/components/case-viewer/case-challenged-access-success/index.d.ts.map +1 -0
  301. package/lib/shared/components/case-viewer/case-event-trigger/case-event-trigger.component.d.ts +41 -0
  302. package/lib/shared/components/case-viewer/case-event-trigger/case-event-trigger.component.d.ts.map +1 -0
  303. package/lib/shared/components/case-viewer/case-event-trigger/index.d.ts +2 -0
  304. package/lib/shared/components/case-viewer/case-event-trigger/index.d.ts.map +1 -0
  305. package/lib/shared/components/case-viewer/case-full-access-view/case-full-access-view.component.d.ts +90 -0
  306. package/lib/shared/components/case-viewer/case-full-access-view/case-full-access-view.component.d.ts.map +1 -0
  307. package/lib/shared/components/case-viewer/case-full-access-view/index.d.ts +2 -0
  308. package/lib/shared/components/case-viewer/case-full-access-view/index.d.ts.map +1 -0
  309. package/lib/shared/components/case-viewer/case-review-specific-access-reject/case-review-specific-access-reject.component.d.ts +14 -0
  310. package/lib/shared/components/case-viewer/case-review-specific-access-reject/case-review-specific-access-reject.component.d.ts.map +1 -0
  311. package/lib/shared/components/case-viewer/case-review-specific-access-reject/index.d.ts +2 -0
  312. package/lib/shared/components/case-viewer/case-review-specific-access-reject/index.d.ts.map +1 -0
  313. package/lib/shared/components/case-viewer/case-review-specific-access-request/case-review-specific-access-request.component.d.ts +49 -0
  314. package/lib/shared/components/case-viewer/case-review-specific-access-request/case-review-specific-access-request.component.d.ts.map +1 -0
  315. package/lib/shared/components/case-viewer/case-review-specific-access-request/index.d.ts +2 -0
  316. package/lib/shared/components/case-viewer/case-review-specific-access-request/index.d.ts.map +1 -0
  317. package/lib/shared/components/case-viewer/case-review-specific-access-request/models/case-review-specific-access-request.enum.d.ts +15 -0
  318. package/lib/shared/components/case-viewer/case-review-specific-access-request/models/case-review-specific-access-request.enum.d.ts.map +1 -0
  319. package/lib/shared/components/case-viewer/case-review-specific-access-request/models/index.d.ts +2 -0
  320. package/lib/shared/components/case-viewer/case-review-specific-access-request/models/index.d.ts.map +1 -0
  321. package/lib/shared/components/case-viewer/case-specific-access-request/case-specific-access-request.component.d.ts +33 -0
  322. package/lib/shared/components/case-viewer/case-specific-access-request/case-specific-access-request.component.d.ts.map +1 -0
  323. package/lib/shared/components/case-viewer/case-specific-access-request/index.d.ts +2 -0
  324. package/lib/shared/components/case-viewer/case-specific-access-request/index.d.ts.map +1 -0
  325. package/lib/shared/components/case-viewer/case-specific-access-request/models/case-specific-access-request.enum.d.ts +9 -0
  326. package/lib/shared/components/case-viewer/case-specific-access-request/models/case-specific-access-request.enum.d.ts.map +1 -0
  327. package/lib/shared/components/case-viewer/case-specific-access-request/models/index.d.ts +2 -0
  328. package/lib/shared/components/case-viewer/case-specific-access-request/models/index.d.ts.map +1 -0
  329. package/lib/shared/components/case-viewer/case-specific-access-success/case-specific-access-success.component.d.ts +12 -0
  330. package/lib/shared/components/case-viewer/case-specific-access-success/case-specific-access-success.component.d.ts.map +1 -0
  331. package/lib/shared/components/case-viewer/case-specific-access-success/index.d.ts +2 -0
  332. package/lib/shared/components/case-viewer/case-specific-access-success/index.d.ts.map +1 -0
  333. package/lib/shared/components/case-viewer/case-view/case-view.component.d.ts +32 -0
  334. package/lib/shared/components/case-viewer/case-view/case-view.component.d.ts.map +1 -0
  335. package/lib/shared/components/case-viewer/case-view/index.d.ts +2 -0
  336. package/lib/shared/components/case-viewer/case-view/index.d.ts.map +1 -0
  337. package/lib/shared/components/case-viewer/case-viewer.component.d.ts +32 -0
  338. package/lib/shared/components/case-viewer/case-viewer.component.d.ts.map +1 -0
  339. package/lib/shared/components/case-viewer/case-viewer.module.d.ts +36 -0
  340. package/lib/shared/components/case-viewer/case-viewer.module.d.ts.map +1 -0
  341. package/lib/shared/components/case-viewer/index.d.ts +14 -0
  342. package/lib/shared/components/case-viewer/index.d.ts.map +1 -0
  343. package/lib/shared/components/case-viewer/printer/case-printer.component.d.ts +24 -0
  344. package/lib/shared/components/case-viewer/printer/case-printer.component.d.ts.map +1 -0
  345. package/lib/shared/components/case-viewer/printer/index.d.ts +4 -0
  346. package/lib/shared/components/case-viewer/printer/index.d.ts.map +1 -0
  347. package/lib/shared/components/case-viewer/printer/pipes/index.d.ts +2 -0
  348. package/lib/shared/components/case-viewer/printer/pipes/index.d.ts.map +1 -0
  349. package/lib/shared/components/case-viewer/printer/pipes/print-url.pipe.d.ts +24 -0
  350. package/lib/shared/components/case-viewer/printer/pipes/print-url.pipe.d.ts.map +1 -0
  351. package/lib/shared/components/case-viewer/services/case.resolver.d.ts +29 -0
  352. package/lib/shared/components/case-viewer/services/case.resolver.d.ts.map +1 -0
  353. package/lib/shared/components/case-viewer/services/event-trigger.resolver.d.ts +26 -0
  354. package/lib/shared/components/case-viewer/services/event-trigger.resolver.d.ts.map +1 -0
  355. package/lib/shared/components/case-viewer/services/index.d.ts +3 -0
  356. package/lib/shared/components/case-viewer/services/index.d.ts.map +1 -0
  357. package/lib/shared/components/case-viewer/viewer.routing.d.ts +3 -0
  358. package/lib/shared/components/case-viewer/viewer.routing.d.ts.map +1 -0
  359. package/lib/shared/components/create-case-filters/create-case-filters-selection.model.d.ts +7 -0
  360. package/lib/shared/components/create-case-filters/create-case-filters-selection.model.d.ts.map +1 -0
  361. package/lib/shared/components/create-case-filters/create-case-filters.component.d.ts +57 -0
  362. package/lib/shared/components/create-case-filters/create-case-filters.component.d.ts.map +1 -0
  363. package/lib/shared/components/create-case-filters/create-case-filters.module.d.ts +12 -0
  364. package/lib/shared/components/create-case-filters/create-case-filters.module.d.ts.map +1 -0
  365. package/lib/shared/components/create-case-filters/index.d.ts +4 -0
  366. package/lib/shared/components/create-case-filters/index.d.ts.map +1 -0
  367. package/lib/shared/components/dialogs/delete-or-cancel-dialog/delete-or-cancel-dialog.component.d.ts +12 -0
  368. package/lib/shared/components/dialogs/delete-or-cancel-dialog/delete-or-cancel-dialog.component.d.ts.map +1 -0
  369. package/lib/shared/components/dialogs/delete-or-cancel-dialog/index.d.ts +2 -0
  370. package/lib/shared/components/dialogs/delete-or-cancel-dialog/index.d.ts.map +1 -0
  371. package/lib/shared/components/dialogs/dialogs.module.d.ts +13 -0
  372. package/lib/shared/components/dialogs/dialogs.module.d.ts.map +1 -0
  373. package/lib/shared/components/dialogs/document-dialog/index.d.ts +2 -0
  374. package/lib/shared/components/dialogs/document-dialog/index.d.ts.map +1 -0
  375. package/lib/shared/components/dialogs/index.d.ts +6 -0
  376. package/lib/shared/components/dialogs/index.d.ts.map +1 -0
  377. package/lib/shared/components/dialogs/remove-dialog/index.d.ts +2 -0
  378. package/lib/shared/components/dialogs/remove-dialog/index.d.ts.map +1 -0
  379. package/lib/shared/components/dialogs/save-or-discard-dialog/index.d.ts +2 -0
  380. package/lib/shared/components/dialogs/save-or-discard-dialog/index.d.ts.map +1 -0
  381. package/lib/shared/components/dialogs/save-or-discard-dialog/save-or-discard-dialog.component.d.ts +13 -0
  382. package/lib/shared/components/dialogs/save-or-discard-dialog/save-or-discard-dialog.component.d.ts.map +1 -0
  383. package/lib/shared/components/error/callback-errors.component.d.ts +25 -0
  384. package/lib/shared/components/error/callback-errors.component.d.ts.map +1 -0
  385. package/lib/shared/components/error/domain/error-context.d.ts +5 -0
  386. package/lib/shared/components/error/domain/error-context.d.ts.map +1 -0
  387. package/lib/shared/components/error/domain/index.d.ts +2 -0
  388. package/lib/shared/components/error/domain/index.d.ts.map +1 -0
  389. package/lib/shared/components/error/errors.module.d.ts +10 -0
  390. package/lib/shared/components/error/errors.module.d.ts.map +1 -0
  391. package/lib/shared/components/error/index.d.ts +4 -0
  392. package/lib/shared/components/error/index.d.ts.map +1 -0
  393. package/lib/shared/components/error-message/error-message.component.d.ts +8 -0
  394. package/lib/shared/components/error-message/error-message.component.d.ts.map +1 -0
  395. package/lib/shared/components/error-message/error-message.module.d.ts +12 -0
  396. package/lib/shared/components/error-message/error-message.module.d.ts.map +1 -0
  397. package/lib/shared/components/error-message/index.d.ts +3 -0
  398. package/lib/shared/components/error-message/index.d.ts.map +1 -0
  399. package/lib/shared/components/event-start/components/multiple-tasks-exist/multiple-tasks-exist.component.d.ts +10 -0
  400. package/lib/shared/components/event-start/components/multiple-tasks-exist/multiple-tasks-exist.component.d.ts.map +1 -0
  401. package/lib/shared/components/event-start/components/no-tasks-available/no-tasks-available.component.d.ts +10 -0
  402. package/lib/shared/components/event-start/components/no-tasks-available/no-tasks-available.component.d.ts.map +1 -0
  403. package/lib/shared/components/event-start/components/task-assigned/task-assigned.component.d.ts +23 -0
  404. package/lib/shared/components/event-start/components/task-assigned/task-assigned.component.d.ts.map +1 -0
  405. package/lib/shared/components/event-start/components/task-cancelled/task-cancelled.component.d.ts +7 -0
  406. package/lib/shared/components/event-start/components/task-cancelled/task-cancelled.component.d.ts.map +1 -0
  407. package/lib/shared/components/event-start/components/task-conflict/task-conflict.component.d.ts +9 -0
  408. package/lib/shared/components/event-start/components/task-conflict/task-conflict.component.d.ts.map +1 -0
  409. package/lib/shared/components/event-start/components/task-unassigned/task-unassigned.component.d.ts +10 -0
  410. package/lib/shared/components/event-start/components/task-unassigned/task-unassigned.component.d.ts.map +1 -0
  411. package/lib/shared/components/event-start/event-guard/event-start.guard.d.ts +20 -0
  412. package/lib/shared/components/event-start/event-guard/event-start.guard.d.ts.map +1 -0
  413. package/lib/shared/components/event-start/event-start.component.d.ts +20 -0
  414. package/lib/shared/components/event-start/event-start.component.d.ts.map +1 -0
  415. package/lib/shared/components/event-start/event-start.module.d.ts +17 -0
  416. package/lib/shared/components/event-start/event-start.module.d.ts.map +1 -0
  417. package/lib/shared/components/event-start/index.d.ts +10 -0
  418. package/lib/shared/components/event-start/index.d.ts.map +1 -0
  419. package/lib/shared/components/event-start/models/event-start-state-machine-context.model.d.ts +13 -0
  420. package/lib/shared/components/event-start/models/event-start-state-machine-context.model.d.ts.map +1 -0
  421. package/lib/shared/components/event-start/models/event-start-states-enum.model.d.ts +15 -0
  422. package/lib/shared/components/event-start/models/event-start-states-enum.model.d.ts.map +1 -0
  423. package/lib/shared/components/event-start/models/index.d.ts +3 -0
  424. package/lib/shared/components/event-start/models/index.d.ts.map +1 -0
  425. package/lib/shared/components/event-start/resolvers/event-tasks-resolver.service.d.ts +15 -0
  426. package/lib/shared/components/event-start/resolvers/event-tasks-resolver.service.d.ts.map +1 -0
  427. package/lib/shared/components/event-start/services/event-start-state-machine.service.d.ts +40 -0
  428. package/lib/shared/components/event-start/services/event-start-state-machine.service.d.ts.map +1 -0
  429. package/lib/shared/components/event-start/services/index.d.ts +2 -0
  430. package/lib/shared/components/event-start/services/index.d.ts.map +1 -0
  431. package/lib/shared/components/event-trigger/event-trigger.component.d.ts +24 -0
  432. package/lib/shared/components/event-trigger/event-trigger.component.d.ts.map +1 -0
  433. package/lib/shared/components/event-trigger/event-trigger.module.d.ts +11 -0
  434. package/lib/shared/components/event-trigger/event-trigger.module.d.ts.map +1 -0
  435. package/lib/shared/components/event-trigger/index.d.ts +3 -0
  436. package/lib/shared/components/event-trigger/index.d.ts.map +1 -0
  437. package/lib/shared/components/index.d.ts +20 -0
  438. package/lib/shared/components/index.d.ts.map +1 -0
  439. package/lib/shared/components/loading-spinner/index.d.ts +2 -0
  440. package/lib/shared/components/loading-spinner/index.d.ts.map +1 -0
  441. package/lib/shared/components/loading-spinner/loading-spinner.component.d.ts +7 -0
  442. package/lib/shared/components/loading-spinner/loading-spinner.component.d.ts.map +1 -0
  443. package/lib/shared/components/pagination/index.d.ts +3 -0
  444. package/lib/shared/components/pagination/index.d.ts.map +1 -0
  445. package/lib/shared/components/pagination/pagination.component.d.ts +26 -0
  446. package/lib/shared/components/pagination/pagination.component.d.ts.map +1 -0
  447. package/lib/shared/components/pagination/pagination.module.d.ts +10 -0
  448. package/lib/shared/components/pagination/pagination.module.d.ts.map +1 -0
  449. package/lib/shared/components/palette/address/index.d.ts +3 -0
  450. package/lib/shared/components/palette/address/index.d.ts.map +1 -0
  451. package/lib/shared/components/palette/case-link/index.d.ts +3 -0
  452. package/lib/shared/components/palette/case-link/index.d.ts.map +1 -0
  453. package/lib/shared/components/palette/complex/index.d.ts +0 -6
  454. package/lib/shared/components/palette/complex/index.d.ts.map +1 -1
  455. package/lib/shared/components/palette/complex/write-complex-field.component.d.ts.map +1 -1
  456. package/lib/shared/components/palette/index.d.ts +32 -0
  457. package/lib/shared/components/palette/index.d.ts.map +1 -0
  458. package/lib/shared/components/palette/palette.module.d.ts +87 -93
  459. package/lib/shared/components/palette/palette.module.d.ts.map +1 -1
  460. package/lib/shared/components/search-result/index.d.ts +3 -0
  461. package/lib/shared/components/search-result/index.d.ts.map +1 -0
  462. package/lib/shared/components/search-result/search-result.component.d.ts +111 -0
  463. package/lib/shared/components/search-result/search-result.component.d.ts.map +1 -0
  464. package/lib/shared/components/search-result/search-result.module.d.ts +16 -0
  465. package/lib/shared/components/search-result/search-result.module.d.ts.map +1 -0
  466. package/lib/shared/components/workbasket-filters/index.d.ts +3 -0
  467. package/lib/shared/components/workbasket-filters/index.d.ts.map +1 -0
  468. package/lib/shared/components/workbasket-filters/workbasket-filters.component.d.ts +85 -0
  469. package/lib/shared/components/workbasket-filters/workbasket-filters.component.d.ts.map +1 -0
  470. package/lib/shared/components/workbasket-filters/workbasket-filters.module.d.ts +12 -0
  471. package/lib/shared/components/workbasket-filters/workbasket-filters.module.d.ts.map +1 -0
  472. package/lib/shared/domain/case-view/role-request.model.d.ts.map +1 -1
  473. package/lib/shared/domain/work-allocation/case-worker.model.d.ts +14 -0
  474. package/lib/shared/domain/work-allocation/case-worker.model.d.ts.map +1 -0
  475. package/lib/shared/domain/work-allocation/judicial-worker.model.d.ts +8 -0
  476. package/lib/shared/domain/work-allocation/judicial-worker.model.d.ts.map +1 -0
  477. package/lib/shared/index.d.ts +1 -0
  478. package/lib/shared/index.d.ts.map +1 -1
  479. package/lib/shared/{components/palette → pipes}/complex/ccd-collection-table-value-case-fields.pipe.d.ts +1 -1
  480. package/lib/shared/pipes/complex/ccd-collection-table-value-case-fields.pipe.d.ts.map +1 -0
  481. package/lib/shared/{components/palette → pipes}/complex/ccd-cyapage-label-filter.pipe.d.ts +1 -1
  482. package/lib/shared/pipes/complex/ccd-cyapage-label-filter.pipe.d.ts.map +1 -0
  483. package/lib/shared/{components/palette → pipes}/complex/ccd-read-fields-filter.pipe.d.ts +1 -1
  484. package/lib/shared/pipes/complex/ccd-read-fields-filter.pipe.d.ts.map +1 -0
  485. package/lib/shared/{components/palette → pipes}/complex/ccd-tab-fields.pipe.d.ts +2 -2
  486. package/lib/shared/pipes/complex/ccd-tab-fields.pipe.d.ts.map +1 -0
  487. package/lib/shared/{components/palette → pipes}/complex/cdd-page-fields.pipe.d.ts +2 -2
  488. package/lib/shared/pipes/complex/cdd-page-fields.pipe.d.ts.map +1 -0
  489. package/lib/shared/{components/palette → pipes}/complex/fields-filter.pipe.d.ts +1 -1
  490. package/lib/shared/pipes/complex/fields-filter.pipe.d.ts.map +1 -0
  491. package/lib/shared/pipes/complex/index.d.ts +7 -0
  492. package/lib/shared/pipes/complex/index.d.ts.map +1 -0
  493. package/lib/shared/pipes/index.d.ts +2 -1
  494. package/lib/shared/pipes/index.d.ts.map +1 -1
  495. package/lib/shared/pipes/pipes.module.d.ts +7 -2
  496. package/lib/shared/pipes/pipes.module.d.ts.map +1 -1
  497. package/package.json +1 -1
  498. package/esm2015/lib/shared/components/palette/complex/ccd-collection-table-value-case-fields.pipe.js +0 -29
  499. package/esm2015/lib/shared/components/palette/complex/ccd-cyapage-label-filter.pipe.js +0 -29
  500. package/esm2015/lib/shared/components/palette/complex/ccd-read-fields-filter.pipe.js +0 -154
  501. package/esm2015/lib/shared/components/palette/complex/ccd-tab-fields.pipe.js +0 -31
  502. package/esm2015/lib/shared/components/palette/complex/cdd-page-fields.pipe.js +0 -39
  503. package/esm2015/lib/shared/components/palette/complex/fields-filter.pipe.js +0 -103
  504. package/lib/shared/components/palette/complex/ccd-collection-table-value-case-fields.pipe.d.ts.map +0 -1
  505. package/lib/shared/components/palette/complex/ccd-cyapage-label-filter.pipe.d.ts.map +0 -1
  506. package/lib/shared/components/palette/complex/ccd-read-fields-filter.pipe.d.ts.map +0 -1
  507. package/lib/shared/components/palette/complex/ccd-tab-fields.pipe.d.ts.map +0 -1
  508. package/lib/shared/components/palette/complex/cdd-page-fields.pipe.d.ts.map +0 -1
  509. package/lib/shared/components/palette/complex/fields-filter.pipe.d.ts.map +0 -1
@@ -0,0 +1,3 @@
1
+ export * from './pagination.component';
2
+ export * from './pagination.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/pagination/index.ts"],"names":[],"mappings":"AAAA,cAAc,wBAAwB,CAAC;AACvC,cAAc,qBAAqB,CAAC"}
@@ -0,0 +1,26 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class PaginationComponent {
4
+ visibilityLabel: string;
5
+ id: string;
6
+ maxSize: number;
7
+ previousLabel: string;
8
+ nextLabel: string;
9
+ screenReaderPaginationLabel: string;
10
+ screenReaderPageLabel: string;
11
+ screenReaderCurrentLabel: string;
12
+ pageChange: EventEmitter<number>;
13
+ pageBoundsCorrection: EventEmitter<number>;
14
+ private _directionLinks;
15
+ private _autoHide;
16
+ private _responsive;
17
+ get directionLinks(): boolean;
18
+ set directionLinks(value: boolean);
19
+ get autoHide(): boolean;
20
+ set autoHide(value: boolean);
21
+ get responsive(): boolean;
22
+ set responsive(value: boolean);
23
+ static ɵfac: i0.ɵɵFactoryDef<PaginationComponent, never>;
24
+ static ɵcmp: i0.ɵɵComponentDefWithMeta<PaginationComponent, "ccd-pagination", never, { "visibilityLabel": "visibilityLabel"; "id": "id"; "maxSize": "maxSize"; "previousLabel": "previousLabel"; "nextLabel": "nextLabel"; "screenReaderPaginationLabel": "screenReaderPaginationLabel"; "screenReaderPageLabel": "screenReaderPageLabel"; "screenReaderCurrentLabel": "screenReaderCurrentLabel"; "directionLinks": "directionLinks"; "autoHide": "autoHide"; "responsive": "responsive"; }, { "pageChange": "pageChange"; "pageBoundsCorrection": "pageBoundsCorrection"; }, never, never>;
25
+ }
26
+ //# sourceMappingURL=pagination.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"pagination.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/pagination/pagination.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAiB,MAAM,eAAe,CAAC;;AAMvE,qBAKa,mBAAmB;IAEvB,eAAe,EAAE,MAAM,CAAC;IACf,EAAE,EAAE,MAAM,CAAC;IACX,OAAO,SAAK;IACZ,aAAa,SAAc;IAC3B,SAAS,SAAU;IACnB,2BAA2B,SAAgB;IAC3C,qBAAqB,SAAU;IAC/B,wBAAwB,SAAoB;IAC3C,UAAU,EAAE,YAAY,CAAC,MAAM,CAAC,CAA8B;IAC9D,oBAAoB,EAAE,YAAY,CAAC,MAAM,CAAC,CAA8B;IAEzF,OAAO,CAAC,eAAe,CAAQ;IAC/B,OAAO,CAAC,SAAS,CAAS;IAC1B,OAAO,CAAC,WAAW,CAAS;IAE5B,IACW,cAAc,IAAI,OAAO,CAEnC;IAED,IAAW,cAAc,CAAC,KAAK,EAAE,OAAO,EAEvC;IAED,IACW,QAAQ,IAAI,OAAO,CAE7B;IAED,IAAW,QAAQ,CAAC,KAAK,EAAE,OAAO,EAEjC;IAED,IACW,UAAU,IAAI,OAAO,CAE/B;IAED,IAAW,UAAU,CAAC,KAAK,EAAE,OAAO,EAEnC;iCA1CU,mBAAmB;2CAAnB,mBAAmB;CA2C/B"}
@@ -0,0 +1,10 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./pagination.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "ngx-pagination";
5
+ export declare class PaginationModule {
6
+ static ɵfac: i0.ɵɵFactoryDef<PaginationModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDefWithMeta<PaginationModule, [typeof i1.PaginationComponent], [typeof i2.CommonModule, typeof i3.NgxPaginationModule], [typeof i1.PaginationComponent, typeof i3.PaginatePipe]>;
8
+ static ɵinj: i0.ɵɵInjectorDef<PaginationModule>;
9
+ }
10
+ //# sourceMappingURL=pagination.module.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"pagination.module.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/pagination/pagination.module.ts"],"names":[],"mappings":";;;;AAKA,qBAaa,gBAAgB;iCAAhB,gBAAgB;0CAAhB,gBAAgB;kCAAhB,gBAAgB;CAAG"}
@@ -0,0 +1,3 @@
1
+ export * from './address-option.model';
2
+ export * from './write-address-field.component';
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/palette/address/index.ts"],"names":[],"mappings":"AAAA,cAAc,wBAAwB,CAAC;AACvC,cAAc,iCAAiC,CAAC"}
@@ -0,0 +1,3 @@
1
+ export * from './read-case-link-field.component';
2
+ export * from './write-case-link-field.component';
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/palette/case-link/index.ts"],"names":[],"mappings":"AAAA,cAAc,kCAAkC,CAAC;AACjD,cAAc,mCAAmC,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"}
@@ -0,0 +1,32 @@
1
+ export * from './palette.module';
2
+ export * from './palette.service';
3
+ export * from './unsupported-field.component';
4
+ export * from './address';
5
+ export * from './base-field';
6
+ export * from './case-link';
7
+ export * from './collection';
8
+ export * from './complex';
9
+ export * from './date';
10
+ export * from './datetime-picker';
11
+ export * from './document';
12
+ export * from './dynamic-list';
13
+ export * from './dynamic-radio-list';
14
+ export * from './email';
15
+ export * from './fixed-list';
16
+ export * from './fixed-radio-list';
17
+ export * from './history';
18
+ export * from './label';
19
+ export * from './markdown';
20
+ export * from './money-gbp';
21
+ export * from './multi-select-list';
22
+ export * from './number';
23
+ export * from './order-summary';
24
+ export * from './organisation';
25
+ export * from './payment';
26
+ export * from './phone-uk';
27
+ export * from './text';
28
+ export * from './text-area';
29
+ export * from './utils';
30
+ export * from './yes-no';
31
+ export * from './waystopay';
32
+ //# 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/palette/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAC;AACjC,cAAc,mBAAmB,CAAC;AAClC,cAAc,+BAA+B,CAAC;AAE9C,cAAc,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC;AAC7B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,WAAW,CAAC;AAC1B,cAAc,QAAQ,CAAC;AACvB,cAAc,mBAAmB,CAAC;AAClC,cAAc,YAAY,CAAC;AAC3B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,sBAAsB,CAAC;AACrC,cAAc,SAAS,CAAC;AACxB,cAAc,cAAc,CAAC;AAC7B,cAAc,oBAAoB,CAAC;AACnC,cAAc,WAAW,CAAC;AAC1B,cAAc,SAAS,CAAC;AACxB,cAAc,YAAY,CAAC;AAC3B,cAAc,aAAa,CAAC;AAC5B,cAAc,qBAAqB,CAAC;AACpC,cAAc,UAAU,CAAC;AACzB,cAAc,iBAAiB,CAAC;AAChC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC;AAC3B,cAAc,QAAQ,CAAC;AACvB,cAAc,aAAa,CAAC;AAC5B,cAAc,SAAS,CAAC;AACxB,cAAc,UAAU,CAAC;AACzB,cAAc,aAAa,CAAC"}
@@ -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":"AAAA,OAAO,EAAE,aAAa,EAA2B,iBAAiB,EAAa,YAAY,EAAS,SAAS,EAAU,aAAa,EAAE,MAAM,eAAe,CAAC;AAC5J,OAAO,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAC3C,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AACxD,OAAO,EAAE,kBAAkB,EAAE,MAAM,2DAA2D,CAAC;AAC/F,OAAO,EAAE,WAAW,EAAE,MAAM,sCAAsC,CAAC;AACnE,OAAO,EAAE,SAAS,EAAE,MAAM,0CAA0C,CAAC;AACrE,OAAO,EAAE,SAAS,EAAE,MAAM,0CAA0C,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,yCAAyC,CAAC;AACnE,OAAO,EAAE,YAAY,EAAE,MAAM,4CAA4C,CAAC;AAE1E,OAAO,EAAE,kBAAkB,EAAE,MAAM,wCAAwC,CAAC;AAC5E,OAAO,EAAE,sBAAsB,EAAE,MAAM,qDAAqD,CAAC;AAC7F,OAAO,EAAE,oBAAoB,EAAE,MAAM,mDAAmD,CAAC;AACzF,OAAO,EAAE,gBAAgB,EAAE,MAAM,8CAA8C,CAAC;AAChF,OAAO,EAAE,8BAA8B,EAAE,MAAM,gEAAgE,CAAC;AAChH,OAAO,EAAE,SAAS,EAAE,MAAM,wCAAwC,CAAC;AACnE,OAAO,EAAE,cAAc,EAAE,MAAM,6CAA6C,CAAC;AAC7E,OAAO,EAAE,iBAAiB,EAAE,MAAM,gDAAgD,CAAC;AACnF,OAAO,EAAE,eAAe,EAAE,MAAM,0CAA0C,CAAC;AAC3E,OAAO,EAAE,cAAc,EAAE,MAAM,wCAAwC,CAAC;AACxE,OAAO,EAAE,qCAAqC,EAAE,MAAM,iFAAiF,CAAC;;AAExI,qBAMa,qBAAsB,YAAW,SAAS,EAAE,aAAa;IAwFlE,OAAO,CAAC,QAAQ,CAAC,eAAe;IAChC,OAAO,CAAC,QAAQ,CAAC,iBAAiB;IAClC,OAAO,CAAC,QAAQ,CAAC,kBAAkB;IACnC,OAAO,CAAC,QAAQ,CAAC,cAAc;IAC/B,OAAO,CAAC,QAAQ,CAAC,GAAG;IA1FtB,gBAAuB,kBAAkB,kBAAkB;IAC3D,gBAAuB,eAAe,eAAe;IACrD,gBAAuB,gBAAgB,gBAAgB;IAEhD,IAAI,cAAoB;IAGxB,mBAAmB,EAAE,MAAM,CAAC;IAG5B,YAAY,EAAE,YAAY,CAAC;IAG3B,QAAQ,EAAE,QAAQ,CAAC;IAGnB,SAAS,EAAE,SAAS,CAAC;IAGrB,YAAY,EAAE,SAAS,CAAC;IAGxB,UAAU,EAAE,gBAAgB,CAAC;IAG7B,IAAI,EAAE,MAAM,CAAC;IAGb,kBAAkB,EAAE,kBAAkB,CAAC;IAGvC,cAAc,EAAE,MAAM,EAAE,CAAC;IAGzB,gBAAgB,UAAS;IAGzB,gBAAgB,UAAS;IAGzB,gBAAgB,EAAE,oBAAoB,EAAE,CAAM;IAG9C,sBAAsB,UAAS;IAG/B,SAAS,uCAA8C;IAGvD,UAAU,EAAE,YAAY,CAAC,GAAG,CAAC,CAAsB;IAGnD,SAAS,EAAE,YAAY,CAAC,GAAG,CAAC,CAAsB;IAGlD,WAAW,EAAE,YAAY,CAAC,GAAG,CAAC,CAAsB;IAEpD,uBAAuB,UAAS;IAEhC,kBAAkB,EAAE,MAAM,CAAC;IAE3B,QAAQ,EAAE,OAAO,CAAC;IAElB,QAAQ,EAAE;QACf,IAAI,CAAC,EAAE,OAAO,CAAC;QACf,YAAY,CAAC,EAAE,YAAY,CAAC;QAC5B,QAAQ,CAAC,EAAE,QAAQ,CAAC;QACpB,SAAS,CAAC,EAAE,SAAS,CAAC;QACtB,SAAS,CAAC,EAAE,SAAS,CAAC;QACtB,cAAc,CAAC,EAAE,MAAM,EAAE,CAAC;QAC1B,IAAI,CAAC,EAAE,MAAM,CAAA;KACd,CAAM;IAEA,cAAc,EAAE,cAAc,CAAC;IAC/B,qCAAqC,EAAE,qCAAqC,CAAC;IAC7E,WAAW,EAAE,MAAM,CAAC;IAEpB,sBAAsB,EAAE;QAAE,MAAM,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,SAAS,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAE,CAA6C;IAEvH,aAAa,EAAE,oBAAoB,EAAE,CAAM;IAElD,OAAO,CAAC,QAAQ,CAAC,0BAA0B,CAAS;gBAGlD,qCAAqC,EAAE,qCAAqC,EAC5E,SAAS,EAAE,iBAAiB,EACX,eAAe,EAAE,eAAe,EAChC,iBAAiB,EAAE,iBAAiB,EACpC,kBAAkB,EAAE,kBAAkB,EACtC,cAAc,EAAE,cAAc,EAC9B,GAAG,EAAE,iBAAiB;IAOzC,IAAW,WAAW,IAAI,MAAM,CAM/B;IAEM,eAAe,IAAI,IAAI;IAWvB,WAAW,CAAC,OAAO,EAAE,aAAa,GAAG,IAAI;IA4BzC,cAAc,IAAI,IAAI;IAKtB,WAAW,CAAC,QAAQ,EAAE,oBAAoB,GAAG,OAAO;IAIpD,cAAc,IAAI,OAAO;IASzB,SAAS,IAAI,IAAI;IAoBjB,eAAe,CAAC,CAAC,EAAE,oBAAoB,GAAG,IAAI;IAe9C,UAAU,CAAC,CAAC,EAAE,oBAAoB,GAAG,OAAO;IAS5C,iBAAiB,IAAI,OAAO;IAiBnC;;OAEG;IAEI,iBAAiB,IAAI,IAAI;IA2BzB,QAAQ,CAAC,IAAI,KAAA,GAAG,IAAI;IA4BpB,cAAc,CAAC,GAAG,EAAE,sBAAsB,EAAE,MAAM,EAAE,oBAAoB,GAAG,SAAS;IAWpF,oBAAoB,CAAC,GAAG,EAAE,SAAS,EAAE,MAAM,EAAE,oBAAoB,GAAG,SAAS;IAM7E,UAAU,IAAI,GAAG;IAIjB,SAAS,IAAI,OAAO;IAIpB,UAAU,CAAC,MAAM,EAAE,sBAAsB,GAAG,8BAA8B;IAI1E,IAAI,CAAC,MAAM,EAAE,sBAAsB;IAuBnC,UAAU,CAAC,MAAM,EAAE,sBAAsB;IAazC,eAAe,IAAI,OAAO;IAI1B,6BAA6B,CAAC,GAAG,KAAA,EAAE,MAAM,KAAA,GAAG,GAAG;IAgB/C,gBAAgB,CAAC,GAAG,KAAA,EAAE,MAAM,KAAA,GAAG,GAAG;IAIlC,cAAc,IAAI,MAAM;IAKxB,aAAa,IAAI,MAAM;IAKvB,eAAe,IAAI,MAAM;IAMzB,kBAAkB,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM;IAS1C,QAAQ,CAAC,MAAM,EAAE,MAAM;IAMvB,OAAO,CAAC,MAAM,EAAE,aAAa,EAAE,CAAC,EAAE,oBAAoB,GAAG,IAAI;IAQ7D,eAAe,CAAC,MAAM,EAAE,sBAAsB,GAAG,OAAO;IAMxD,aAAa,CAAC,KAAK,EAAE,MAAM,EAAE,WAAW,EAAE,OAAO,GAAG,MAAM;IAIjE,OAAO,CAAC,gBAAgB;IAmBxB,OAAO,CAAC,0BAA0B;IAIlC,OAAO,CAAC,cAAc;iCA7bX,qBAAqB;2CAArB,qBAAqB;CAgcjC"}
@@ -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"}
@@ -0,0 +1,3 @@
1
+ export * from './workbasket-filters.module';
2
+ export * from './workbasket-filters.component';
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/workbasket-filters/index.ts"],"names":[],"mappings":"AAAA,cAAc,6BAA6B,CAAC;AAC5C,cAAc,gCAAgC,CAAC"}