@hmcts/ccd-case-ui-toolkit 6.13.10-show-condition-code-fix-2 → 6.13.11-activity-tracker

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 (199) hide show
  1. package/bundles/hmcts-ccd-case-ui-toolkit.umd.js +12204 -9035
  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 -1
  4. package/bundles/hmcts-ccd-case-ui-toolkit.umd.min.js.map +1 -1
  5. package/esm2015/lib/app.config.js +11 -1
  6. package/esm2015/lib/components/banners/index.js +2 -1
  7. package/esm2015/lib/components/banners/notification-banner/index.js +2 -1
  8. package/esm2015/lib/components/body/index.js +2 -1
  9. package/esm2015/lib/components/footer/index.js +2 -1
  10. package/esm2015/lib/components/form/index.js +2 -1
  11. package/esm2015/lib/shared/commons/case-edit-data/case-edit-data.service.js +19 -1
  12. package/esm2015/lib/shared/components/activity/activity-banner/activity-banner.component.js +5 -5
  13. package/esm2015/lib/shared/components/activity/activity-icon/activity-icon.component.js +2 -2
  14. package/esm2015/lib/shared/components/activity/activity.module.js +13 -13
  15. package/esm2015/lib/shared/components/activity/case-activity.component.js +174 -0
  16. package/esm2015/lib/shared/components/activity/index.js +2 -2
  17. package/esm2015/lib/shared/components/case-editor/case-edit-page/case-edit-page.component.js +6 -1
  18. package/esm2015/lib/shared/components/case-editor/case-edit-submit/case-edit-submit.component.js +7 -1
  19. package/esm2015/lib/shared/components/case-editor/services/cases.service.js +7 -1
  20. package/esm2015/lib/shared/components/case-viewer/case-event-trigger/case-event-trigger.component.js +29 -16
  21. package/esm2015/lib/shared/components/case-viewer/case-full-access-view/case-full-access-view.component.js +38 -18
  22. package/esm2015/lib/shared/components/case-viewer/case-viewer.module.js +7 -5
  23. package/esm2015/lib/shared/components/palette/case-file-view/case-file-view-field-read.component.js +2 -2
  24. package/esm2015/lib/shared/components/palette/index.js +3 -6
  25. package/esm2015/lib/shared/components/palette/linked-cases/components/before-you-start/before-you-start.component.js +126 -0
  26. package/esm2015/lib/shared/components/palette/linked-cases/components/check-your-answers/check-your-answers.component.js +220 -0
  27. package/esm2015/lib/shared/components/palette/linked-cases/components/index.js +8 -0
  28. package/esm2015/lib/shared/components/palette/linked-cases/components/link-cases/link-cases.component.js +572 -0
  29. package/esm2015/lib/shared/components/palette/linked-cases/components/linked-cases-table/linked-cases-from-table.component.js +219 -0
  30. package/esm2015/lib/shared/components/palette/linked-cases/components/linked-cases-table/linked-cases-to-table.component.js +285 -0
  31. package/esm2015/lib/shared/components/palette/linked-cases/components/no-linked-cases/no-linked-cases.component.js +79 -0
  32. package/esm2015/lib/shared/components/palette/linked-cases/components/unlink-cases/unlink-cases.component.js +214 -0
  33. package/esm2015/lib/shared/components/palette/linked-cases/domain/index.js +3 -0
  34. package/esm2015/lib/shared/components/palette/linked-cases/domain/linked-cases-state.model.js +2 -0
  35. package/esm2015/lib/shared/components/palette/linked-cases/domain/linked-cases.model.js +21 -0
  36. package/esm2015/lib/shared/components/palette/linked-cases/enums/index.js +2 -0
  37. package/esm2015/lib/shared/components/palette/linked-cases/enums/write-linked-cases-field.enum.js +35 -0
  38. package/esm2015/lib/shared/components/palette/linked-cases/index.js +6 -0
  39. package/esm2015/lib/shared/components/palette/linked-cases/read-linked-cases-field.component.js +183 -0
  40. package/esm2015/lib/shared/components/palette/linked-cases/services/index.js +2 -0
  41. package/esm2015/lib/shared/components/palette/linked-cases/services/linked-cases.service.js +134 -0
  42. package/esm2015/lib/shared/components/palette/linked-cases/utils/validators.utils.js +27 -0
  43. package/esm2015/lib/shared/components/palette/linked-cases/write-linked-cases-field.component.js +272 -0
  44. package/esm2015/lib/shared/components/palette/palette.module.js +51 -7
  45. package/esm2015/lib/shared/components/palette/palette.service.js +19 -7
  46. package/esm2015/lib/shared/components/search-result/search-result.component.js +36 -19
  47. package/esm2015/lib/shared/components/search-result/search-result.module.js +2 -2
  48. package/esm2015/lib/shared/domain/activity/activity.model.js +1 -1
  49. package/esm2015/lib/shared/domain/activity/case-activity-info.model.js +3 -0
  50. package/esm2015/lib/shared/domain/activity/case-activity.model.js +3 -0
  51. package/esm2015/lib/shared/domain/activity/index.js +4 -1
  52. package/esm2015/lib/shared/domain/activity/user.model.js +3 -0
  53. package/esm2015/lib/shared/domain/definition/display-context-enum.model.js +12 -0
  54. package/esm2015/lib/shared/domain/search/index.js +2 -1
  55. package/esm2015/lib/shared/domain/search/sorting/index.js +4 -0
  56. package/esm2015/lib/shared/domain/user/index.js +3 -0
  57. package/esm2015/lib/shared/pipes/complex/ccd-read-fields-filter.pipe.js +11 -14
  58. package/esm2015/lib/shared/pipes/index.js +3 -1
  59. package/esm2015/lib/shared/pipes/link-cases-from-reason-code/ccd-link-cases-from-reason-code.pipe.js +28 -0
  60. package/esm2015/lib/shared/pipes/link-cases-from-reason-code/index.js +2 -0
  61. package/esm2015/lib/shared/pipes/link-cases-reason-code/ccd-link-cases-reason-code.pipe.js +28 -0
  62. package/esm2015/lib/shared/pipes/link-cases-reason-code/index.js +2 -0
  63. package/esm2015/lib/shared/pipes/pipes.module.js +12 -4
  64. package/esm2015/lib/shared/services/activity/activity-socket.service.js +91 -0
  65. package/esm2015/lib/shared/services/activity/activity.polling.service.js +25 -10
  66. package/esm2015/lib/shared/services/activity/activity.service.js +47 -21
  67. package/esm2015/lib/shared/services/activity/index.js +2 -1
  68. package/esm2015/lib/shared/services/activity/utils/index.js +117 -0
  69. package/esm2015/lib/shared/services/common-data-service/common-data-service.js +1 -1
  70. package/esm2015/lib/shared/services/fields/fields.utils.js +7 -1
  71. package/esm2015/lib/shared/services/form/form-value.service.js +33 -2
  72. package/fesm2015/hmcts-ccd-case-ui-toolkit.js +12051 -9250
  73. package/fesm2015/hmcts-ccd-case-ui-toolkit.js.map +1 -1
  74. package/lib/app.config.d.ts +10 -0
  75. package/lib/app.config.d.ts.map +1 -1
  76. package/lib/components/banners/index.d.ts +1 -0
  77. package/lib/components/banners/index.d.ts.map +1 -1
  78. package/lib/components/banners/notification-banner/index.d.ts +1 -0
  79. package/lib/components/banners/notification-banner/index.d.ts.map +1 -1
  80. package/lib/components/body/index.d.ts +1 -0
  81. package/lib/components/body/index.d.ts.map +1 -1
  82. package/lib/components/footer/index.d.ts +1 -0
  83. package/lib/components/footer/index.d.ts.map +1 -1
  84. package/lib/components/form/index.d.ts +1 -0
  85. package/lib/components/form/index.d.ts.map +1 -1
  86. package/lib/shared/commons/case-edit-data/case-edit-data.service.d.ts +13 -0
  87. package/lib/shared/commons/case-edit-data/case-edit-data.service.d.ts.map +1 -1
  88. package/lib/shared/components/activity/activity.module.d.ts +4 -4
  89. package/lib/shared/components/activity/activity.module.d.ts.map +1 -1
  90. package/lib/shared/components/activity/case-activity.component.d.ts +32 -0
  91. package/lib/shared/components/activity/case-activity.component.d.ts.map +1 -0
  92. package/lib/shared/components/activity/index.d.ts +1 -1
  93. package/lib/shared/components/activity/index.d.ts.map +1 -1
  94. package/lib/shared/components/case-editor/case-edit-page/case-edit-page.component.d.ts.map +1 -1
  95. package/lib/shared/components/case-editor/case-edit-submit/case-edit-submit.component.d.ts +1 -0
  96. package/lib/shared/components/case-editor/case-edit-submit/case-edit-submit.component.d.ts.map +1 -1
  97. package/lib/shared/components/case-editor/services/cases.service.d.ts +2 -0
  98. package/lib/shared/components/case-editor/services/cases.service.d.ts.map +1 -1
  99. package/lib/shared/components/case-viewer/case-event-trigger/case-event-trigger.component.d.ts +5 -4
  100. package/lib/shared/components/case-viewer/case-event-trigger/case-event-trigger.component.d.ts.map +1 -1
  101. package/lib/shared/components/case-viewer/case-full-access-view/case-full-access-view.component.d.ts +7 -4
  102. package/lib/shared/components/case-viewer/case-full-access-view/case-full-access-view.component.d.ts.map +1 -1
  103. package/lib/shared/components/case-viewer/case-viewer.module.d.ts.map +1 -1
  104. package/lib/shared/components/palette/case-file-view/case-file-view-field-read.component.d.ts.map +1 -1
  105. package/lib/shared/components/palette/index.d.ts +2 -5
  106. package/lib/shared/components/palette/index.d.ts.map +1 -1
  107. package/lib/shared/components/palette/linked-cases/components/before-you-start/before-you-start.component.d.ts +23 -0
  108. package/lib/shared/components/palette/linked-cases/components/before-you-start/before-you-start.component.d.ts.map +1 -0
  109. package/lib/shared/components/palette/linked-cases/components/check-your-answers/check-your-answers.component.d.ts +18 -0
  110. package/lib/shared/components/palette/linked-cases/components/check-your-answers/check-your-answers.component.d.ts.map +1 -0
  111. package/lib/shared/components/palette/linked-cases/components/index.d.ts +8 -0
  112. package/lib/shared/components/palette/linked-cases/components/index.d.ts.map +1 -0
  113. package/lib/shared/components/palette/linked-cases/components/link-cases/link-cases.component.d.ts +49 -0
  114. package/lib/shared/components/palette/linked-cases/components/link-cases/link-cases.component.d.ts.map +1 -0
  115. package/lib/shared/components/palette/linked-cases/components/linked-cases-table/linked-cases-from-table.component.d.ts +38 -0
  116. package/lib/shared/components/palette/linked-cases/components/linked-cases-table/linked-cases-from-table.component.d.ts.map +1 -0
  117. package/lib/shared/components/palette/linked-cases/components/linked-cases-table/linked-cases-to-table.component.d.ts +47 -0
  118. package/lib/shared/components/palette/linked-cases/components/linked-cases-table/linked-cases-to-table.component.d.ts.map +1 -0
  119. package/lib/shared/components/palette/linked-cases/components/no-linked-cases/no-linked-cases.component.d.ts +18 -0
  120. package/lib/shared/components/palette/linked-cases/components/no-linked-cases/no-linked-cases.component.d.ts.map +1 -0
  121. package/lib/shared/components/palette/linked-cases/components/unlink-cases/unlink-cases.component.d.ts +38 -0
  122. package/lib/shared/components/palette/linked-cases/components/unlink-cases/unlink-cases.component.d.ts.map +1 -0
  123. package/lib/shared/components/palette/linked-cases/domain/index.d.ts +3 -0
  124. package/lib/shared/components/palette/linked-cases/domain/index.d.ts.map +1 -0
  125. package/lib/shared/components/palette/linked-cases/domain/linked-cases-state.model.d.ts +12 -0
  126. package/lib/shared/components/palette/linked-cases/domain/linked-cases-state.model.d.ts.map +1 -0
  127. package/lib/shared/components/palette/linked-cases/domain/linked-cases.model.d.ts +68 -0
  128. package/lib/shared/components/palette/linked-cases/domain/linked-cases.model.d.ts.map +1 -0
  129. package/lib/shared/components/palette/linked-cases/enums/index.d.ts +2 -0
  130. package/lib/shared/components/palette/linked-cases/enums/index.d.ts.map +1 -0
  131. package/lib/shared/components/palette/linked-cases/enums/write-linked-cases-field.enum.d.ts +31 -0
  132. package/lib/shared/components/palette/linked-cases/enums/write-linked-cases-field.enum.d.ts.map +1 -0
  133. package/lib/shared/components/palette/linked-cases/index.d.ts +6 -0
  134. package/lib/shared/components/palette/linked-cases/index.d.ts.map +1 -0
  135. package/lib/shared/components/palette/linked-cases/read-linked-cases-field.component.d.ts +38 -0
  136. package/lib/shared/components/palette/linked-cases/read-linked-cases-field.component.d.ts.map +1 -0
  137. package/lib/shared/components/palette/linked-cases/services/index.d.ts +2 -0
  138. package/lib/shared/components/palette/linked-cases/services/index.d.ts.map +1 -0
  139. package/lib/shared/components/palette/linked-cases/services/linked-cases.service.d.ts +44 -0
  140. package/lib/shared/components/palette/linked-cases/services/linked-cases.service.d.ts.map +1 -0
  141. package/lib/shared/components/palette/linked-cases/utils/validators.utils.d.ts +10 -0
  142. package/lib/shared/components/palette/linked-cases/utils/validators.utils.d.ts.map +1 -0
  143. package/lib/shared/components/palette/linked-cases/write-linked-cases-field.component.d.ts +43 -0
  144. package/lib/shared/components/palette/linked-cases/write-linked-cases-field.component.d.ts.map +1 -0
  145. package/lib/shared/components/palette/palette.module.d.ts +67 -58
  146. package/lib/shared/components/palette/palette.module.d.ts.map +1 -1
  147. package/lib/shared/components/palette/palette.service.d.ts.map +1 -1
  148. package/lib/shared/components/search-result/search-result.component.d.ts +9 -6
  149. package/lib/shared/components/search-result/search-result.component.d.ts.map +1 -1
  150. package/lib/shared/domain/activity/activity.model.d.ts +1 -0
  151. package/lib/shared/domain/activity/activity.model.d.ts.map +1 -1
  152. package/lib/shared/domain/activity/case-activity-info.model.d.ts +9 -0
  153. package/lib/shared/domain/activity/case-activity-info.model.d.ts.map +1 -0
  154. package/lib/shared/domain/activity/case-activity.model.d.ts +5 -0
  155. package/lib/shared/domain/activity/case-activity.model.d.ts.map +1 -0
  156. package/lib/shared/domain/activity/index.d.ts +3 -0
  157. package/lib/shared/domain/activity/index.d.ts.map +1 -1
  158. package/lib/shared/domain/activity/user.model.d.ts +6 -0
  159. package/lib/shared/domain/activity/user.model.d.ts.map +1 -0
  160. package/lib/shared/domain/definition/display-context-enum.model.d.ts +10 -0
  161. package/lib/shared/domain/definition/display-context-enum.model.d.ts.map +1 -0
  162. package/lib/shared/domain/search/index.d.ts +1 -0
  163. package/lib/shared/domain/search/index.d.ts.map +1 -1
  164. package/lib/shared/domain/search/sorting/index.d.ts +4 -0
  165. package/lib/shared/domain/search/sorting/index.d.ts.map +1 -0
  166. package/lib/shared/domain/user/index.d.ts +3 -0
  167. package/lib/shared/domain/user/index.d.ts.map +1 -0
  168. package/lib/shared/pipes/complex/ccd-read-fields-filter.pipe.d.ts.map +1 -1
  169. package/lib/shared/pipes/index.d.ts +2 -0
  170. package/lib/shared/pipes/index.d.ts.map +1 -1
  171. package/lib/shared/pipes/link-cases-from-reason-code/ccd-link-cases-from-reason-code.pipe.d.ts +12 -0
  172. package/lib/shared/pipes/link-cases-from-reason-code/ccd-link-cases-from-reason-code.pipe.d.ts.map +1 -0
  173. package/lib/shared/pipes/link-cases-from-reason-code/index.d.ts +2 -0
  174. package/lib/shared/pipes/link-cases-from-reason-code/index.d.ts.map +1 -0
  175. package/lib/shared/pipes/link-cases-reason-code/ccd-link-cases-reason-code.pipe.d.ts +12 -0
  176. package/lib/shared/pipes/link-cases-reason-code/ccd-link-cases-reason-code.pipe.d.ts.map +1 -0
  177. package/lib/shared/pipes/link-cases-reason-code/index.d.ts +2 -0
  178. package/lib/shared/pipes/link-cases-reason-code/index.d.ts.map +1 -0
  179. package/lib/shared/pipes/pipes.module.d.ts +4 -2
  180. package/lib/shared/pipes/pipes.module.d.ts.map +1 -1
  181. package/lib/shared/services/activity/activity-socket.service.d.ts +33 -0
  182. package/lib/shared/services/activity/activity-socket.service.d.ts.map +1 -0
  183. package/lib/shared/services/activity/activity.polling.service.d.ts +6 -5
  184. package/lib/shared/services/activity/activity.polling.service.d.ts.map +1 -1
  185. package/lib/shared/services/activity/activity.service.d.ts +14 -5
  186. package/lib/shared/services/activity/activity.service.d.ts.map +1 -1
  187. package/lib/shared/services/activity/index.d.ts +1 -0
  188. package/lib/shared/services/activity/index.d.ts.map +1 -1
  189. package/lib/shared/services/activity/utils/index.d.ts +40 -0
  190. package/lib/shared/services/activity/utils/index.d.ts.map +1 -0
  191. package/lib/shared/services/common-data-service/common-data-service.d.ts.map +1 -1
  192. package/lib/shared/services/fields/fields.utils.d.ts +1 -0
  193. package/lib/shared/services/fields/fields.utils.d.ts.map +1 -1
  194. package/lib/shared/services/form/form-value.service.d.ts +14 -0
  195. package/lib/shared/services/form/form-value.service.d.ts.map +1 -1
  196. package/package.json +1 -1
  197. package/esm2015/lib/shared/components/activity/activity.component.js +0 -150
  198. package/lib/shared/components/activity/activity.component.d.ts +0 -32
  199. package/lib/shared/components/activity/activity.component.d.ts.map +0 -1
@@ -53,66 +53,75 @@ import * as i51 from "./complex/read-complex-field-raw.component";
53
53
  import * as i52 from "./complex/read-complex-field-table.component";
54
54
  import * as i53 from "./complex/read-complex-field-collection-table.component";
55
55
  import * as i54 from "./case-flag/read-case-flag-field.component";
56
- import * as i55 from "./judicial-user/write-judicial-user-field.component";
57
- import * as i56 from "./address/write-address-field.component";
58
- import * as i57 from "./complex/write-complex-field.component";
59
- import * as i58 from "./organisation/write-organisation-complex-field.component";
60
- import * as i59 from "./document/write-document-field.component";
61
- import * as i60 from "./dynamic-list/write-dynamic-list-field.component";
62
- import * as i61 from "./dynamic-radio-list/write-dynamic-radio-list-field.component";
63
- import * as i62 from "./text/write-text-field.component";
64
- import * as i63 from "./date/write-date-container-field.component";
65
- import * as i64 from "./text-area/write-text-area-field.component";
66
- import * as i65 from "./phone-uk/write-phone-uk-field.component";
67
- import * as i66 from "./number/write-number-field.component";
68
- import * as i67 from "./email/write-email-field.component";
69
- import * as i68 from "./date/write-date-field.component";
70
- import * as i69 from "./case-flag/write-case-flag-field.component";
71
- import * as i70 from "./yes-no/write-yes-no-field.component";
72
- import * as i71 from "./organisation/write-organisation-field.component";
73
- import * as i72 from "./order-summary/write-order-summary-field.component";
74
- import * as i73 from "./money-gbp/write-money-gbp-field.component";
75
- import * as i74 from "./multi-select-list/write-multi-select-list-field.component";
76
- import * as i75 from "./fixed-list/write-fixed-list-field.component";
77
- import * as i76 from "./fixed-radio-list/write-fixed-radio-list-field.component";
78
- import * as i77 from "./case-link/write-case-link-field.component";
79
- import * as i78 from "./collection/write-collection-field.component";
80
- import * as i79 from "./case-file-view/case-file-view-field.component";
81
- import * as i80 from "./case-file-view/case-file-view-field-read.component";
82
- import * as i81 from "./case-file-view/components/case-file-view-folder/case-file-view-folder.component";
83
- import * as i82 from "./case-file-view/components/case-file-view-folder/case-file-view-folder-sort/case-file-view-folder-sort.component";
84
- import * as i83 from "./case-file-view/components/shared/case-file-view-overlay-menu/case-file-view-overlay-menu.component";
85
- import * as i84 from "./case-file-view/components/case-file-view-folder/case-file-view-folder-document-actions/case-file-view-folder-document-actions.component";
86
- import * as i85 from "./case-file-view/components/case-file-view-folder-selector/case-file-view-folder-selector.component";
87
- import * as i86 from "@angular/common";
88
- import * as i87 from "@angular/router";
89
- import * as i88 from "@angular/forms";
90
- import * as i89 from "../../commons/case-edit-data/case-edit-data.module";
91
- import * as i90 from "./utils/utils.module";
92
- import * as i91 from "../../pipes/pipes.module";
93
- import * as i92 from "../../../components/banners/banners.module";
94
- import * as i93 from "../../../components/header/headers.module";
95
- import * as i94 from "../../../components/footer/footers.module";
96
- import * as i95 from "../../../components/body/body.module";
97
- import * as i96 from "../../../components/form/form.module";
98
- import * as i97 from "../../../components/tabs/tabs.module";
99
- import * as i98 from "../../directives/substitutor/label-substitutor.module";
100
- import * as i99 from "ngx-md";
101
- import * as i100 from "@angular-material-components/datetime-picker";
102
- import * as i101 from "@angular/material/form-field";
103
- import * as i102 from "@angular/material/input";
104
- import * as i103 from "@angular/material/datepicker";
105
- import * as i104 from "@angular/material/autocomplete";
106
- import * as i105 from "@angular/cdk/tree";
107
- import * as i106 from "@angular/cdk/overlay";
108
- import * as i107 from "@hmcts/ccpay-web-component";
109
- import * as i108 from "@nicky-lenaers/ngx-scroll-to";
110
- import * as i109 from "@angular/material/dialog";
111
- import * as i110 from "@hmcts/media-viewer";
112
- import * as i111 from "../../services/loading/loading.module";
56
+ import * as i55 from "./linked-cases/read-linked-cases-field.component";
57
+ import * as i56 from "./judicial-user/write-judicial-user-field.component";
58
+ import * as i57 from "./address/write-address-field.component";
59
+ import * as i58 from "./complex/write-complex-field.component";
60
+ import * as i59 from "./organisation/write-organisation-complex-field.component";
61
+ import * as i60 from "./document/write-document-field.component";
62
+ import * as i61 from "./dynamic-list/write-dynamic-list-field.component";
63
+ import * as i62 from "./dynamic-radio-list/write-dynamic-radio-list-field.component";
64
+ import * as i63 from "./text/write-text-field.component";
65
+ import * as i64 from "./date/write-date-container-field.component";
66
+ import * as i65 from "./text-area/write-text-area-field.component";
67
+ import * as i66 from "./phone-uk/write-phone-uk-field.component";
68
+ import * as i67 from "./number/write-number-field.component";
69
+ import * as i68 from "./email/write-email-field.component";
70
+ import * as i69 from "./date/write-date-field.component";
71
+ import * as i70 from "./case-flag/write-case-flag-field.component";
72
+ import * as i71 from "./linked-cases/write-linked-cases-field.component";
73
+ import * as i72 from "./yes-no/write-yes-no-field.component";
74
+ import * as i73 from "./organisation/write-organisation-field.component";
75
+ import * as i74 from "./order-summary/write-order-summary-field.component";
76
+ import * as i75 from "./money-gbp/write-money-gbp-field.component";
77
+ import * as i76 from "./multi-select-list/write-multi-select-list-field.component";
78
+ import * as i77 from "./fixed-list/write-fixed-list-field.component";
79
+ import * as i78 from "./fixed-radio-list/write-fixed-radio-list-field.component";
80
+ import * as i79 from "./case-link/write-case-link-field.component";
81
+ import * as i80 from "./collection/write-collection-field.component";
82
+ import * as i81 from "./case-file-view/case-file-view-field.component";
83
+ import * as i82 from "./case-file-view/case-file-view-field-read.component";
84
+ import * as i83 from "./case-file-view/components/case-file-view-folder/case-file-view-folder.component";
85
+ import * as i84 from "./case-file-view/components/case-file-view-folder/case-file-view-folder-sort/case-file-view-folder-sort.component";
86
+ import * as i85 from "./case-file-view/components/shared/case-file-view-overlay-menu/case-file-view-overlay-menu.component";
87
+ import * as i86 from "./case-file-view/components/case-file-view-folder/case-file-view-folder-document-actions/case-file-view-folder-document-actions.component";
88
+ import * as i87 from "./case-file-view/components/case-file-view-folder-selector/case-file-view-folder-selector.component";
89
+ import * as i88 from "./linked-cases/components/linked-cases-table/linked-cases-to-table.component";
90
+ import * as i89 from "./linked-cases/components/linked-cases-table/linked-cases-from-table.component";
91
+ import * as i90 from "./linked-cases/components/before-you-start/before-you-start.component";
92
+ import * as i91 from "./linked-cases/components/link-cases/link-cases.component";
93
+ import * as i92 from "./linked-cases/components/check-your-answers/check-your-answers.component";
94
+ import * as i93 from "./linked-cases/components/unlink-cases/unlink-cases.component";
95
+ import * as i94 from "./linked-cases/components/no-linked-cases/no-linked-cases.component";
96
+ import * as i95 from "@angular/common";
97
+ import * as i96 from "@angular/router";
98
+ import * as i97 from "@angular/forms";
99
+ import * as i98 from "../../commons/case-edit-data/case-edit-data.module";
100
+ import * as i99 from "./utils/utils.module";
101
+ import * as i100 from "../../pipes/pipes.module";
102
+ import * as i101 from "../../../components/banners/banners.module";
103
+ import * as i102 from "../../../components/header/headers.module";
104
+ import * as i103 from "../../../components/footer/footers.module";
105
+ import * as i104 from "../../../components/body/body.module";
106
+ import * as i105 from "../../../components/form/form.module";
107
+ import * as i106 from "../../../components/tabs/tabs.module";
108
+ import * as i107 from "../../directives/substitutor/label-substitutor.module";
109
+ import * as i108 from "ngx-md";
110
+ import * as i109 from "@angular-material-components/datetime-picker";
111
+ import * as i110 from "@angular/material/form-field";
112
+ import * as i111 from "@angular/material/input";
113
+ import * as i112 from "@angular/material/datepicker";
114
+ import * as i113 from "@angular/material/autocomplete";
115
+ import * as i114 from "@angular/cdk/tree";
116
+ import * as i115 from "@angular/cdk/overlay";
117
+ import * as i116 from "@hmcts/ccpay-web-component";
118
+ import * as i117 from "@nicky-lenaers/ngx-scroll-to";
119
+ import * as i118 from "@angular/material/dialog";
120
+ import * as i119 from "@hmcts/media-viewer";
121
+ import * as i120 from "../../services/loading/loading.module";
113
122
  export declare class PaletteModule {
114
123
  static ɵfac: i0.ɵɵFactoryDef<PaletteModule, never>;
115
- static ɵmod: i0.ɵɵNgModuleDefWithMeta<PaletteModule, [typeof i1.FixedListPipe, typeof i2.FixedRadioListPipe, typeof i3.DynamicListPipe, typeof i4.DynamicRadioListPipe, typeof i5.DocumentUrlPipe, typeof i6.CaseFlagTableComponent, typeof i7.SelectFlagTypeComponent, typeof i8.SearchLanguageInterpreterComponent, typeof i9.SelectFlagLocationComponent, typeof i10.ManageCaseFlagsComponent, typeof i11.AddCommentsComponent, typeof i12.UpdateFlagComponent, typeof i13.CaseFlagSummaryListComponent, typeof i14.UnsupportedFieldComponent, typeof i15.DatetimePickerComponent, typeof i16.WaysToPayFieldComponent, typeof i17.MarkdownComponent, typeof i18.FieldReadComponent, typeof i19.FieldWriteComponent, typeof i20.FieldReadLabelComponent, typeof i21.LabelFieldComponent, typeof i22.CasePaymentHistoryViewerFieldComponent, typeof i23.MoneyGbpInputComponent, typeof i24.CaseHistoryViewerFieldComponent, typeof i25.EventLogComponent, typeof i26.EventLogDetailsComponent, typeof i27.EventLogTableComponent, typeof i28.ReadTextFieldComponent, typeof i29.ReadTextAreaFieldComponent, typeof i30.ReadNumberFieldComponent, typeof i31.ReadEmailFieldComponent, typeof i32.ReadPhoneUKFieldComponent, typeof i33.ReadDateFieldComponent, typeof i34.ReadCollectionFieldComponent, typeof i35.ReadDocumentFieldComponent, typeof i36.ReadJudicialUserFieldComponent, typeof i37.ReadYesNoFieldComponent, typeof i38.ReadOrganisationFieldComponent, typeof i39.ReadOrganisationFieldTableComponent, typeof i40.ReadOrganisationFieldRawComponent, typeof i41.ReadOrderSummaryFieldComponent, typeof i42.ReadOrderSummaryRowComponent, typeof i43.ReadMoneyGbpFieldComponent, typeof i44.ReadMultiSelectListFieldComponent, typeof i45.ReadDynamicListFieldComponent, typeof i46.ReadFixedListFieldComponent, typeof i47.ReadFixedRadioListFieldComponent, typeof i48.ReadDynamicRadioListFieldComponent, typeof i49.ReadCaseLinkFieldComponent, typeof i50.ReadComplexFieldComponent, typeof i51.ReadComplexFieldRawComponent, typeof i52.ReadComplexFieldTableComponent, typeof i53.ReadComplexFieldCollectionTableComponent, typeof i54.ReadCaseFlagFieldComponent, typeof i55.WriteJudicialUserFieldComponent, typeof i56.WriteAddressFieldComponent, typeof i57.WriteComplexFieldComponent, typeof i58.WriteOrganisationComplexFieldComponent, typeof i59.WriteDocumentFieldComponent, typeof i60.WriteDynamicListFieldComponent, typeof i61.WriteDynamicRadioListFieldComponent, typeof i62.WriteTextFieldComponent, typeof i63.WriteDateContainerFieldComponent, typeof i64.WriteTextAreaFieldComponent, typeof i65.WritePhoneUKFieldComponent, typeof i66.WriteNumberFieldComponent, typeof i67.WriteEmailFieldComponent, typeof i68.WriteDateFieldComponent, typeof i69.WriteCaseFlagFieldComponent, typeof i70.WriteYesNoFieldComponent, typeof i71.WriteOrganisationFieldComponent, typeof i58.WriteOrganisationComplexFieldComponent, typeof i72.WriteOrderSummaryFieldComponent, typeof i73.WriteMoneyGbpFieldComponent, typeof i63.WriteDateContainerFieldComponent, typeof i74.WriteMultiSelectListFieldComponent, typeof i75.WriteFixedListFieldComponent, typeof i76.WriteFixedRadioListFieldComponent, typeof i77.WriteCaseLinkFieldComponent, typeof i78.WriteCollectionFieldComponent, typeof i79.CaseFileViewFieldComponent, typeof i80.CaseFileViewFieldReadComponent, typeof i81.CaseFileViewFolderComponent, typeof i82.CaseFileViewFolderSortComponent, typeof i83.CaseFileViewOverlayMenuComponent, typeof i84.CaseFileViewFolderDocumentActionsComponent, typeof i85.CaseFileViewFolderSelectorComponent], [typeof i86.CommonModule, typeof i87.RouterModule, typeof i88.FormsModule, typeof i88.ReactiveFormsModule, typeof i89.CaseEditDataModule, typeof i90.PaletteUtilsModule, typeof i91.PipesModule, typeof i92.BannersModule, typeof i93.HeadersModule, typeof i94.FootersModule, typeof i95.BodyModule, typeof i96.FormModule, typeof i97.TabsModule, typeof i98.LabelSubstitutorModule, typeof i99.NgxMdModule, typeof i100.NgxMatDatetimePickerModule, typeof i100.NgxMatTimepickerModule, typeof i100.NgxMatNativeDateModule, typeof i101.MatFormFieldModule, typeof i102.MatInputModule, typeof i103.MatDatepickerModule, typeof i104.MatAutocompleteModule, typeof i105.CdkTreeModule, typeof i106.OverlayModule, typeof i107.PaymentLibModule, typeof i108.ScrollToModule, typeof i109.MatDialogModule, typeof i110.MediaViewerModule, typeof i111.LoadingModule], [typeof i100.NgxMatDatetimePickerModule, typeof i100.NgxMatNativeDateModule, typeof i100.NgxMatTimepickerModule, typeof i97.TabsModule, typeof i90.PaletteUtilsModule, typeof i91.PipesModule, typeof i14.UnsupportedFieldComponent, typeof i15.DatetimePickerComponent, typeof i16.WaysToPayFieldComponent, typeof i17.MarkdownComponent, typeof i18.FieldReadComponent, typeof i19.FieldWriteComponent, typeof i20.FieldReadLabelComponent, typeof i21.LabelFieldComponent, typeof i22.CasePaymentHistoryViewerFieldComponent, typeof i23.MoneyGbpInputComponent, typeof i24.CaseHistoryViewerFieldComponent, typeof i25.EventLogComponent, typeof i26.EventLogDetailsComponent, typeof i27.EventLogTableComponent, typeof i28.ReadTextFieldComponent, typeof i29.ReadTextAreaFieldComponent, typeof i30.ReadNumberFieldComponent, typeof i31.ReadEmailFieldComponent, typeof i32.ReadPhoneUKFieldComponent, typeof i33.ReadDateFieldComponent, typeof i34.ReadCollectionFieldComponent, typeof i35.ReadDocumentFieldComponent, typeof i36.ReadJudicialUserFieldComponent, typeof i37.ReadYesNoFieldComponent, typeof i38.ReadOrganisationFieldComponent, typeof i39.ReadOrganisationFieldTableComponent, typeof i40.ReadOrganisationFieldRawComponent, typeof i41.ReadOrderSummaryFieldComponent, typeof i42.ReadOrderSummaryRowComponent, typeof i43.ReadMoneyGbpFieldComponent, typeof i44.ReadMultiSelectListFieldComponent, typeof i45.ReadDynamicListFieldComponent, typeof i46.ReadFixedListFieldComponent, typeof i47.ReadFixedRadioListFieldComponent, typeof i48.ReadDynamicRadioListFieldComponent, typeof i49.ReadCaseLinkFieldComponent, typeof i50.ReadComplexFieldComponent, typeof i51.ReadComplexFieldRawComponent, typeof i52.ReadComplexFieldTableComponent, typeof i53.ReadComplexFieldCollectionTableComponent, typeof i54.ReadCaseFlagFieldComponent, typeof i55.WriteJudicialUserFieldComponent, typeof i56.WriteAddressFieldComponent, typeof i57.WriteComplexFieldComponent, typeof i58.WriteOrganisationComplexFieldComponent, typeof i59.WriteDocumentFieldComponent, typeof i60.WriteDynamicListFieldComponent, typeof i61.WriteDynamicRadioListFieldComponent, typeof i62.WriteTextFieldComponent, typeof i63.WriteDateContainerFieldComponent, typeof i64.WriteTextAreaFieldComponent, typeof i65.WritePhoneUKFieldComponent, typeof i66.WriteNumberFieldComponent, typeof i67.WriteEmailFieldComponent, typeof i68.WriteDateFieldComponent, typeof i69.WriteCaseFlagFieldComponent, typeof i70.WriteYesNoFieldComponent, typeof i71.WriteOrganisationFieldComponent, typeof i58.WriteOrganisationComplexFieldComponent, typeof i72.WriteOrderSummaryFieldComponent, typeof i73.WriteMoneyGbpFieldComponent, typeof i63.WriteDateContainerFieldComponent, typeof i74.WriteMultiSelectListFieldComponent, typeof i75.WriteFixedListFieldComponent, typeof i76.WriteFixedRadioListFieldComponent, typeof i77.WriteCaseLinkFieldComponent, typeof i78.WriteCollectionFieldComponent, typeof i79.CaseFileViewFieldComponent, typeof i80.CaseFileViewFieldReadComponent, typeof i81.CaseFileViewFolderComponent, typeof i82.CaseFileViewFolderSortComponent, typeof i83.CaseFileViewOverlayMenuComponent, typeof i84.CaseFileViewFolderDocumentActionsComponent, typeof i85.CaseFileViewFolderSelectorComponent]>;
124
+ static ɵmod: i0.ɵɵNgModuleDefWithMeta<PaletteModule, [typeof i1.FixedListPipe, typeof i2.FixedRadioListPipe, typeof i3.DynamicListPipe, typeof i4.DynamicRadioListPipe, typeof i5.DocumentUrlPipe, typeof i6.CaseFlagTableComponent, typeof i7.SelectFlagTypeComponent, typeof i8.SearchLanguageInterpreterComponent, typeof i9.SelectFlagLocationComponent, typeof i10.ManageCaseFlagsComponent, typeof i11.AddCommentsComponent, typeof i12.UpdateFlagComponent, typeof i13.CaseFlagSummaryListComponent, typeof i14.UnsupportedFieldComponent, typeof i15.DatetimePickerComponent, typeof i16.WaysToPayFieldComponent, typeof i17.MarkdownComponent, typeof i18.FieldReadComponent, typeof i19.FieldWriteComponent, typeof i20.FieldReadLabelComponent, typeof i21.LabelFieldComponent, typeof i22.CasePaymentHistoryViewerFieldComponent, typeof i23.MoneyGbpInputComponent, typeof i24.CaseHistoryViewerFieldComponent, typeof i25.EventLogComponent, typeof i26.EventLogDetailsComponent, typeof i27.EventLogTableComponent, typeof i28.ReadTextFieldComponent, typeof i29.ReadTextAreaFieldComponent, typeof i30.ReadNumberFieldComponent, typeof i31.ReadEmailFieldComponent, typeof i32.ReadPhoneUKFieldComponent, typeof i33.ReadDateFieldComponent, typeof i34.ReadCollectionFieldComponent, typeof i35.ReadDocumentFieldComponent, typeof i36.ReadJudicialUserFieldComponent, typeof i37.ReadYesNoFieldComponent, typeof i38.ReadOrganisationFieldComponent, typeof i39.ReadOrganisationFieldTableComponent, typeof i40.ReadOrganisationFieldRawComponent, typeof i41.ReadOrderSummaryFieldComponent, typeof i42.ReadOrderSummaryRowComponent, typeof i43.ReadMoneyGbpFieldComponent, typeof i44.ReadMultiSelectListFieldComponent, typeof i45.ReadDynamicListFieldComponent, typeof i46.ReadFixedListFieldComponent, typeof i47.ReadFixedRadioListFieldComponent, typeof i48.ReadDynamicRadioListFieldComponent, typeof i49.ReadCaseLinkFieldComponent, typeof i50.ReadComplexFieldComponent, typeof i51.ReadComplexFieldRawComponent, typeof i52.ReadComplexFieldTableComponent, typeof i53.ReadComplexFieldCollectionTableComponent, typeof i54.ReadCaseFlagFieldComponent, typeof i55.ReadLinkedCasesFieldComponent, typeof i56.WriteJudicialUserFieldComponent, typeof i57.WriteAddressFieldComponent, typeof i58.WriteComplexFieldComponent, typeof i59.WriteOrganisationComplexFieldComponent, typeof i60.WriteDocumentFieldComponent, typeof i61.WriteDynamicListFieldComponent, typeof i62.WriteDynamicRadioListFieldComponent, typeof i63.WriteTextFieldComponent, typeof i64.WriteDateContainerFieldComponent, typeof i65.WriteTextAreaFieldComponent, typeof i66.WritePhoneUKFieldComponent, typeof i67.WriteNumberFieldComponent, typeof i68.WriteEmailFieldComponent, typeof i69.WriteDateFieldComponent, typeof i70.WriteCaseFlagFieldComponent, typeof i71.WriteLinkedCasesFieldComponent, typeof i72.WriteYesNoFieldComponent, typeof i73.WriteOrganisationFieldComponent, typeof i59.WriteOrganisationComplexFieldComponent, typeof i74.WriteOrderSummaryFieldComponent, typeof i75.WriteMoneyGbpFieldComponent, typeof i64.WriteDateContainerFieldComponent, typeof i76.WriteMultiSelectListFieldComponent, typeof i77.WriteFixedListFieldComponent, typeof i78.WriteFixedRadioListFieldComponent, typeof i79.WriteCaseLinkFieldComponent, typeof i80.WriteCollectionFieldComponent, typeof i81.CaseFileViewFieldComponent, typeof i82.CaseFileViewFieldReadComponent, typeof i83.CaseFileViewFolderComponent, typeof i84.CaseFileViewFolderSortComponent, typeof i85.CaseFileViewOverlayMenuComponent, typeof i86.CaseFileViewFolderDocumentActionsComponent, typeof i87.CaseFileViewFolderSelectorComponent, typeof i88.LinkedCasesToTableComponent, typeof i89.LinkedCasesFromTableComponent, typeof i90.BeforeYouStartComponent, typeof i91.LinkCasesComponent, typeof i92.CheckYourAnswersComponent, typeof i93.UnLinkCasesComponent, typeof i94.NoLinkedCasesComponent], [typeof i95.CommonModule, typeof i96.RouterModule, typeof i97.FormsModule, typeof i97.ReactiveFormsModule, typeof i98.CaseEditDataModule, typeof i99.PaletteUtilsModule, typeof i100.PipesModule, typeof i101.BannersModule, typeof i102.HeadersModule, typeof i103.FootersModule, typeof i104.BodyModule, typeof i105.FormModule, typeof i106.TabsModule, typeof i107.LabelSubstitutorModule, typeof i108.NgxMdModule, typeof i109.NgxMatDatetimePickerModule, typeof i109.NgxMatTimepickerModule, typeof i109.NgxMatNativeDateModule, typeof i110.MatFormFieldModule, typeof i111.MatInputModule, typeof i112.MatDatepickerModule, typeof i113.MatAutocompleteModule, typeof i114.CdkTreeModule, typeof i115.OverlayModule, typeof i116.PaymentLibModule, typeof i117.ScrollToModule, typeof i118.MatDialogModule, typeof i119.MediaViewerModule, typeof i120.LoadingModule], [typeof i109.NgxMatDatetimePickerModule, typeof i109.NgxMatNativeDateModule, typeof i109.NgxMatTimepickerModule, typeof i106.TabsModule, typeof i99.PaletteUtilsModule, typeof i100.PipesModule, typeof i14.UnsupportedFieldComponent, typeof i15.DatetimePickerComponent, typeof i16.WaysToPayFieldComponent, typeof i17.MarkdownComponent, typeof i18.FieldReadComponent, typeof i19.FieldWriteComponent, typeof i20.FieldReadLabelComponent, typeof i21.LabelFieldComponent, typeof i22.CasePaymentHistoryViewerFieldComponent, typeof i23.MoneyGbpInputComponent, typeof i24.CaseHistoryViewerFieldComponent, typeof i25.EventLogComponent, typeof i26.EventLogDetailsComponent, typeof i27.EventLogTableComponent, typeof i28.ReadTextFieldComponent, typeof i29.ReadTextAreaFieldComponent, typeof i30.ReadNumberFieldComponent, typeof i31.ReadEmailFieldComponent, typeof i32.ReadPhoneUKFieldComponent, typeof i33.ReadDateFieldComponent, typeof i34.ReadCollectionFieldComponent, typeof i35.ReadDocumentFieldComponent, typeof i36.ReadJudicialUserFieldComponent, typeof i37.ReadYesNoFieldComponent, typeof i38.ReadOrganisationFieldComponent, typeof i39.ReadOrganisationFieldTableComponent, typeof i40.ReadOrganisationFieldRawComponent, typeof i41.ReadOrderSummaryFieldComponent, typeof i42.ReadOrderSummaryRowComponent, typeof i43.ReadMoneyGbpFieldComponent, typeof i44.ReadMultiSelectListFieldComponent, typeof i45.ReadDynamicListFieldComponent, typeof i46.ReadFixedListFieldComponent, typeof i47.ReadFixedRadioListFieldComponent, typeof i48.ReadDynamicRadioListFieldComponent, typeof i49.ReadCaseLinkFieldComponent, typeof i50.ReadComplexFieldComponent, typeof i51.ReadComplexFieldRawComponent, typeof i52.ReadComplexFieldTableComponent, typeof i53.ReadComplexFieldCollectionTableComponent, typeof i54.ReadCaseFlagFieldComponent, typeof i55.ReadLinkedCasesFieldComponent, typeof i56.WriteJudicialUserFieldComponent, typeof i57.WriteAddressFieldComponent, typeof i58.WriteComplexFieldComponent, typeof i59.WriteOrganisationComplexFieldComponent, typeof i60.WriteDocumentFieldComponent, typeof i61.WriteDynamicListFieldComponent, typeof i62.WriteDynamicRadioListFieldComponent, typeof i63.WriteTextFieldComponent, typeof i64.WriteDateContainerFieldComponent, typeof i65.WriteTextAreaFieldComponent, typeof i66.WritePhoneUKFieldComponent, typeof i67.WriteNumberFieldComponent, typeof i68.WriteEmailFieldComponent, typeof i69.WriteDateFieldComponent, typeof i70.WriteCaseFlagFieldComponent, typeof i71.WriteLinkedCasesFieldComponent, typeof i72.WriteYesNoFieldComponent, typeof i73.WriteOrganisationFieldComponent, typeof i59.WriteOrganisationComplexFieldComponent, typeof i74.WriteOrderSummaryFieldComponent, typeof i75.WriteMoneyGbpFieldComponent, typeof i64.WriteDateContainerFieldComponent, typeof i76.WriteMultiSelectListFieldComponent, typeof i77.WriteFixedListFieldComponent, typeof i78.WriteFixedRadioListFieldComponent, typeof i79.WriteCaseLinkFieldComponent, typeof i80.WriteCollectionFieldComponent, typeof i81.CaseFileViewFieldComponent, typeof i82.CaseFileViewFieldReadComponent, typeof i83.CaseFileViewFolderComponent, typeof i84.CaseFileViewFolderSortComponent, typeof i85.CaseFileViewOverlayMenuComponent, typeof i86.CaseFileViewFolderDocumentActionsComponent, typeof i87.CaseFileViewFolderSelectorComponent, typeof i88.LinkedCasesToTableComponent, typeof i89.LinkedCasesFromTableComponent, typeof i90.BeforeYouStartComponent, typeof i91.LinkCasesComponent, typeof i92.CheckYourAnswersComponent, typeof i93.UnLinkCasesComponent, typeof i94.NoLinkedCasesComponent]>;
116
125
  static ɵinj: i0.ɵɵInjectorDef<PaletteModule>;
117
126
  }
118
127
  //# 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":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAsKA,qBA0Ea,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":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAiLA,qBA2Ea,aAAa;iCAAb,aAAa;0CAAb,aAAa;kCAAb,aAAa;CACzB"}
@@ -1 +1 @@
1
- {"version":3,"file":"palette.service.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/palette.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAc,IAAI,EAAE,MAAM,eAAe,CAAC;AACjD,OAAO,EAAE,SAAS,EAAE,MAAM,0CAA0C,CAAC;;AAoDrE,qBACa,cAAc;IACzB,OAAO,CAAC,QAAQ,CAAC,yBAAyB,CAExC;IAEK,sBAAsB,CAAC,SAAS,EAAE,SAAS,EAAE,KAAK,EAAE,OAAO,GAAG,IAAI,CAAC,EAAE,CAAC;IAmE7E,OAAO,CAAC,6BAA6B;iCAxE1B,cAAc;qCAAd,cAAc;CAiF1B"}
1
+ {"version":3,"file":"palette.service.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/palette.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAc,IAAI,EAAE,MAAM,eAAe,CAAC;AACjD,OAAO,EAAE,SAAS,EAAE,MAAM,0CAA0C,CAAC;;AAsDrE,qBACa,cAAc;IACzB,OAAO,CAAC,QAAQ,CAAC,yBAAyB,CAGxC;IAEK,sBAAsB,CAAC,SAAS,EAAE,SAAS,EAAE,KAAK,EAAE,OAAO,GAAG,IAAI,CAAC,EAAE,CAAC;IAmE7E,OAAO,CAAC,6BAA6B;iCAzE1B,cAAc;qCAAd,cAAc;CA0F1B"}
@@ -2,21 +2,23 @@ import { EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';
2
2
  import { FormGroup } from '@angular/forms';
3
3
  import { AbstractAppConfig } from '../../../app.config';
4
4
  import { PlaceholderService } from '../../directives';
5
- import { CaseField, CaseState, CaseType, DisplayMode, Jurisdiction, PaginationMetadata, SearchResultView, SearchResultViewColumn, SearchResultViewItem, SearchResultViewItemComparator, SortOrder, SortParameters } from '../../domain';
5
+ import { CaseField, CaseState, CaseType, Jurisdiction, PaginationMetadata } from '../../domain';
6
+ import { SearchResultView, SearchResultViewColumn, SearchResultViewItem } from '../../domain/search';
7
+ import { SearchResultViewItemComparator, SortOrder, SortParameters } from '../../domain/search/sorting';
6
8
  import { CaseReferencePipe } from '../../pipes';
7
- import { ActivityService, BrowserService, SearchResultViewItemComparatorFactory, SessionStorageService } from '../../services';
9
+ import { ActivityService, ActivitySocketService, BrowserService, SearchResultViewItemComparatorFactory, SessionStorageService } from '../../services';
8
10
  import * as i0 from "@angular/core";
9
11
  export declare class SearchResultComponent implements OnChanges, OnInit {
10
12
  private readonly activityService;
11
13
  private readonly caseReferencePipe;
12
14
  private readonly placeholderService;
13
- private readonly browserService;
15
+ private browserService;
16
+ private readonly activitySocketService;
14
17
  private readonly sessionStorageService;
15
18
  static readonly PARAM_JURISDICTION = "jurisdiction";
16
19
  static readonly PARAM_CASE_TYPE = "case-type";
17
20
  static readonly PARAM_CASE_STATE = "case-state";
18
21
  private readonly PAGINATION_MAX_ITEM_RESULT;
19
- ICON: DisplayMode;
20
22
  caseLinkUrlTemplate: string;
21
23
  jurisdiction: Jurisdiction;
22
24
  caseType: CaseType;
@@ -55,7 +57,7 @@ export declare class SearchResultComponent implements OnChanges, OnInit {
55
57
  type: string;
56
58
  };
57
59
  selectedCases: SearchResultViewItem[];
58
- constructor(searchResultViewItemComparatorFactory: SearchResultViewItemComparatorFactory, appConfig: AbstractAppConfig, activityService: ActivityService, caseReferencePipe: CaseReferencePipe, placeholderService: PlaceholderService, browserService: BrowserService, sessionStorageService: SessionStorageService);
60
+ constructor(searchResultViewItemComparatorFactory: SearchResultViewItemComparatorFactory, appConfig: AbstractAppConfig, activityService: ActivityService, caseReferencePipe: CaseReferencePipe, placeholderService: PlaceholderService, browserService: BrowserService, activitySocketService: ActivitySocketService, sessionStorageService: SessionStorageService);
59
61
  ngOnInit(): void;
60
62
  ngOnChanges(changes: SimpleChanges): void;
61
63
  get resultTotal(): number;
@@ -78,7 +80,7 @@ export declare class SearchResultComponent implements OnChanges, OnInit {
78
80
  comparator(column: SearchResultViewColumn): SearchResultViewItemComparator;
79
81
  sort(column: SearchResultViewColumn): void;
80
82
  sortWidget(column: SearchResultViewColumn): "&#9660;" | "&#9650;";
81
- activityEnabled(): boolean;
83
+ get activityEnabled(): boolean;
82
84
  hyphenateIfCaseReferenceOrGet(col: any, result: any): any;
83
85
  draftPrefixOrGet(col: any, result: any): any;
84
86
  isSortAscending(column: SearchResultViewColumn): boolean;
@@ -91,6 +93,7 @@ export declare class SearchResultComponent implements OnChanges, OnInit {
91
93
  private numberOfDrafts;
92
94
  goToCase(caseId: string): void;
93
95
  onKeyUp($event: KeyboardEvent, c: SearchResultViewItem): void;
96
+ private watchResults;
94
97
  static ɵfac: i0.ɵɵFactoryDef<SearchResultComponent, never>;
95
98
  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>;
96
99
  }
@@ -1 +1 @@
1
- {"version":3,"file":"search-result.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/search-result/search-result.component.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"search-result.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/search-result/search-result.component.ts"],"names":[],"mappings":"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"}
@@ -1,4 +1,5 @@
1
1
  export declare class ActivityInfo {
2
+ id?: string;
2
3
  forename: string;
3
4
  surname: string;
4
5
  }
@@ -1 +1 @@
1
- {"version":3,"file":"activity.model.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/domain/activity/activity.model.ts"],"names":[],"mappings":"AAAA,qBAAa,YAAY;IAChB,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC;CACxB;AAED,qBAAa,QAAQ;IACZ,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,EAAE,YAAY,EAAE,CAAC;IACxB,OAAO,EAAE,YAAY,EAAE,CAAC;IACxB,cAAc,EAAE,MAAM,CAAC;IACvB,cAAc,EAAE,MAAM,CAAC;CAC/B;AAED,oBAAY,WAAW;IACrB,MAAM,IAAA;IACN,IAAI,IAAA;CACL"}
1
+ {"version":3,"file":"activity.model.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/domain/activity/activity.model.ts"],"names":[],"mappings":"AAAA,qBAAa,YAAY;IAChB,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC;CACxB;AAED,qBAAa,QAAQ;IACZ,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,EAAE,YAAY,EAAE,CAAC;IACxB,OAAO,EAAE,YAAY,EAAE,CAAC;IACxB,cAAc,EAAE,MAAM,CAAC;IACvB,cAAc,EAAE,MAAM,CAAC;CAC/B;AAED,oBAAY,WAAW;IACrB,MAAM,IAAA;IACN,IAAI,IAAA;CACL"}
@@ -0,0 +1,9 @@
1
+ import { User } from './user.model';
2
+ export declare class CaseActivityInfo {
3
+ caseId: string;
4
+ unknownViewers: number;
5
+ unknownEditors: number;
6
+ editors: User[];
7
+ viewers: User[];
8
+ }
9
+ //# sourceMappingURL=case-activity-info.model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"case-activity-info.model.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/domain/activity/case-activity-info.model.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,cAAc,CAAC;AAEpC,qBAAa,gBAAgB;IAC3B,MAAM,EAAE,MAAM,CAAC;IACf,cAAc,EAAE,MAAM,CAAC;IACvB,cAAc,EAAE,MAAM,CAAC;IACvB,OAAO,EAAE,IAAI,EAAE,CAAC;IAChB,OAAO,EAAE,IAAI,EAAE,CAAC;CACjB"}
@@ -0,0 +1,5 @@
1
+ import { CaseActivityInfo } from './case-activity-info.model';
2
+ export declare class CaseActivity {
3
+ case: CaseActivityInfo[];
4
+ }
5
+ //# sourceMappingURL=case-activity.model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"case-activity.model.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/domain/activity/case-activity.model.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAE9D,qBAAa,YAAY;IACvB,IAAI,EAAE,gBAAgB,EAAE,CAAC;CAC1B"}
@@ -1,2 +1,5 @@
1
1
  export * from './activity.model';
2
+ export * from './case-activity.model';
3
+ export * from './case-activity-info.model';
4
+ export * from './user.model';
2
5
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/domain/activity/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/domain/activity/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAC;AACjC,cAAc,uBAAuB,CAAC;AACtC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,cAAc,CAAC"}
@@ -0,0 +1,6 @@
1
+ export declare class User {
2
+ id?: string;
3
+ forename: string;
4
+ surname: string;
5
+ }
6
+ //# sourceMappingURL=user.model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"user.model.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/domain/activity/user.model.ts"],"names":[],"mappings":"AAAA,qBAAa,IAAI;IACf,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC;CACjB"}
@@ -0,0 +1,10 @@
1
+ export declare enum DisplayContextParameter {
2
+ Read = "READ",
3
+ Create = "CREATE",
4
+ Update = "UPDATE"
5
+ }
6
+ export declare enum DisplayContextCustomParameter {
7
+ CaseFileView = "CaseFileView",
8
+ LinkedCases = "LinkedCases"
9
+ }
10
+ //# sourceMappingURL=display-context-enum.model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"display-context-enum.model.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/domain/definition/display-context-enum.model.ts"],"names":[],"mappings":"AAAA,oBAAY,uBAAuB;IACjC,IAAI,SAAS;IACb,MAAM,WAAW;IACjB,MAAM,WAAW;CAClB;AAED,oBAAY,6BAA6B;IACvC,YAAY,iBAAiB;IAC7B,WAAW,gBAAgB;CAC5B"}
@@ -2,4 +2,5 @@ export * from './field.model';
2
2
  export * from './search-result-view-column.model';
3
3
  export * from './search-result-view-item.model';
4
4
  export * from './search-result-view.model';
5
+ export * from './sorting';
5
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/domain/search/index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAC;AAC9B,cAAc,mCAAmC,CAAC;AAClD,cAAc,iCAAiC,CAAC;AAChD,cAAc,4BAA4B,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/domain/search/index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAC;AAC9B,cAAc,mCAAmC,CAAC;AAClD,cAAc,iCAAiC,CAAC;AAChD,cAAc,4BAA4B,CAAC;AAC3C,cAAc,WAAW,CAAC"}
@@ -0,0 +1,4 @@
1
+ export * from './search-result-view-item-comparator';
2
+ export * from './sort-order';
3
+ export * from './sort-parameters';
4
+ //# 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/domain/search/sorting/index.ts"],"names":[],"mappings":"AAAA,cAAc,sCAAsC,CAAC;AACrD,cAAc,cAAc,CAAC;AAC7B,cAAc,mBAAmB,CAAC"}
@@ -0,0 +1,3 @@
1
+ export * from './user-details.model';
2
+ export * from './user-info.model';
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/domain/user/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAC;AACrC,cAAc,mBAAmB,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"ccd-read-fields-filter.pipe.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/pipes/complex/ccd-read-fields-filter.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,aAAa,EAAE,MAAM,eAAe,CAAC;AACpD,OAAO,EAAE,eAAe,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAI5D,OAAO,EAAE,SAAS,EAAE,MAAM,0CAA0C,CAAC;;AAGrE,qBAGa,oBAAqB,YAAW,aAAa;IAExD,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,YAAY,CAKlC;IAEF,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,kBAAkB,CAAkF;IAE5H,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,YAAY,CAGlC;IAEF;;OAEG;IACH,OAAO,CAAC,MAAM,CAAC,cAAc;IAa7B,OAAO,CAAC,MAAM,CAAC,iBAAiB;IAoBhC,OAAO,CAAC,MAAM,CAAC,OAAO;IAKtB,OAAO,CAAC,MAAM,CAAC,UAAU;IAIzB,OAAO,CAAC,MAAM,CAAC,eAAe;IAK9B,OAAO,CAAC,MAAM,CAAC,SAAS;IAoBxB,OAAO,CAAC,MAAM,CAAC,QAAQ;IAcvB,OAAO,CAAC,MAAM,CAAC,uBAAuB;IAqBtC;;OAEG;IACI,SAAS,CACd,YAAY,EAAE,SAAS,EAAE,SAAS,CAAC,EAAE,OAAO,EAAE,KAAK,CAAC,EAAE,MAAM,EAC5D,WAAW,UAAQ,EAAE,SAAS,CAAC,EAAE,SAAS,GAAG,eAAe,EAAE,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,EAAE;iCA9HhF,oBAAoB;uCAApB,oBAAoB;CAgKhC"}
1
+ {"version":3,"file":"ccd-read-fields-filter.pipe.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/pipes/complex/ccd-read-fields-filter.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,aAAa,EAAE,MAAM,eAAe,CAAC;AACpD,OAAO,EAAE,eAAe,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAI5D,OAAO,EAAE,SAAS,EAAE,MAAM,0CAA0C,CAAC;;AAGrE,qBAGa,oBAAqB,YAAW,aAAa;IAExD,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,YAAY,CAKlC;IAEF,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,kBAAkB,CAAkF;IAE5H,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,YAAY,CAGlC;IAEF;;OAEG;IACH,OAAO,CAAC,MAAM,CAAC,cAAc;IAa7B,OAAO,CAAC,MAAM,CAAC,iBAAiB;IAoBhC,OAAO,CAAC,MAAM,CAAC,OAAO;IAKtB,OAAO,CAAC,MAAM,CAAC,UAAU;IAIzB,OAAO,CAAC,MAAM,CAAC,eAAe;IAK9B,OAAO,CAAC,MAAM,CAAC,SAAS;IAoBxB,OAAO,CAAC,MAAM,CAAC,QAAQ;IAUvB,OAAO,CAAC,MAAM,CAAC,uBAAuB;IAqBtC;;OAEG;IACI,SAAS,CACd,YAAY,EAAE,SAAS,EAAE,SAAS,CAAC,EAAE,OAAO,EAAE,KAAK,CAAC,EAAE,MAAM,EAC5D,WAAW,UAAQ,EAAE,SAAS,CAAC,EAAE,SAAS,GAAG,eAAe,EAAE,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,EAAE;iCA1HhF,oBAAoB;uCAApB,oBAAoB;CA4JhC"}
@@ -1,6 +1,8 @@
1
1
  export * from './case-reference';
2
2
  export * from './case-title';
3
3
  export * from './complex';
4
+ export * from './link-cases-reason-code';
5
+ export * from './link-cases-from-reason-code';
4
6
  export * from './pipes.module';
5
7
  export * from './search-result/sorting/sort-search-result.pipe';
6
8
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/pipes/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAC;AACjC,cAAc,cAAc,CAAC;AAC7B,cAAc,WAAW,CAAC;AAC1B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,iDAAiD,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/pipes/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAC;AACjC,cAAc,cAAc,CAAC;AAC7B,cAAc,WAAW,CAAC;AAC1B,cAAc,0BAA0B,CAAC;AACzC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,gBAAgB,CAAC;AAC/B,cAAc,iDAAiD,CAAC"}
@@ -0,0 +1,12 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import { LinkFromReason } from '../../components/palette/linked-cases/domain';
3
+ import { LinkedCasesService } from '../../components/palette/linked-cases/services';
4
+ import * as i0 from "@angular/core";
5
+ export declare class LinkCasesFromReasonValuePipe implements PipeTransform {
6
+ private readonly linkedCasesService;
7
+ constructor(linkedCasesService: LinkedCasesService);
8
+ transform(linkFromReason: LinkFromReason): string;
9
+ static ɵfac: i0.ɵɵFactoryDef<LinkCasesFromReasonValuePipe, never>;
10
+ static ɵpipe: i0.ɵɵPipeDefWithMeta<LinkCasesFromReasonValuePipe, "ccdLinkCasesFromReasonValue">;
11
+ }
12
+ //# sourceMappingURL=ccd-link-cases-from-reason-code.pipe.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ccd-link-cases-from-reason-code.pipe.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/pipes/link-cases-from-reason-code/ccd-link-cases-from-reason-code.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,aAAa,EAAE,MAAM,eAAe,CAAC;AACpD,OAAO,EAAE,cAAc,EAAE,MAAM,8CAA8C,CAAC;AAC9E,OAAO,EAAE,kBAAkB,EAAE,MAAM,gDAAgD,CAAC;;AAEpF,qBAGa,4BAA6B,YAAW,aAAa;IAEpD,OAAO,CAAC,QAAQ,CAAC,kBAAkB;gBAAlB,kBAAkB,EAAE,kBAAkB;IAE5D,SAAS,CAAC,cAAc,EAAE,cAAc,GAAG,MAAM;iCAJ7C,4BAA4B;uCAA5B,4BAA4B;CAaxC"}
@@ -0,0 +1,2 @@
1
+ export * from './ccd-link-cases-from-reason-code.pipe';
2
+ //# 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/pipes/link-cases-from-reason-code/index.ts"],"names":[],"mappings":"AAAA,cAAc,wCAAwC,CAAC"}
@@ -0,0 +1,12 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import { LinkReason } from '../../components';
3
+ import { LinkedCasesService } from '../../components/palette/linked-cases/services';
4
+ import * as i0 from "@angular/core";
5
+ export declare class LinkCasesReasonValuePipe implements PipeTransform {
6
+ private readonly linkedCasesService;
7
+ constructor(linkedCasesService: LinkedCasesService);
8
+ transform(linkReason: LinkReason): string;
9
+ static ɵfac: i0.ɵɵFactoryDef<LinkCasesReasonValuePipe, never>;
10
+ static ɵpipe: i0.ɵɵPipeDefWithMeta<LinkCasesReasonValuePipe, "ccdLinkCasesReasonValue">;
11
+ }
12
+ //# sourceMappingURL=ccd-link-cases-reason-code.pipe.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ccd-link-cases-reason-code.pipe.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/pipes/link-cases-reason-code/ccd-link-cases-reason-code.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,aAAa,EAAE,MAAM,eAAe,CAAC;AACpD,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAC9C,OAAO,EAAE,kBAAkB,EAAE,MAAM,gDAAgD,CAAC;;AAEpF,qBAGa,wBAAyB,YAAW,aAAa;IAEhD,OAAO,CAAC,QAAQ,CAAC,kBAAkB;gBAAlB,kBAAkB,EAAE,kBAAkB;IAE5D,SAAS,CAAC,UAAU,EAAE,UAAU,GAAG,MAAM;iCAJrC,wBAAwB;uCAAxB,wBAAwB;CAapC"}
@@ -0,0 +1,2 @@
1
+ export * from './ccd-link-cases-reason-code.pipe';
2
+ //# 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/pipes/link-cases-reason-code/index.ts"],"names":[],"mappings":"AAAA,cAAc,mCAAmC,CAAC"}
@@ -7,10 +7,12 @@ import * as i5 from "./complex/ccd-cyapage-label-filter.pipe";
7
7
  import * as i6 from "./complex/ccd-read-fields-filter.pipe";
8
8
  import * as i7 from "./complex/ccd-tab-fields.pipe";
9
9
  import * as i8 from "./complex/cdd-page-fields.pipe";
10
- import * as i9 from "@angular/common";
10
+ import * as i9 from "./link-cases-reason-code/ccd-link-cases-reason-code.pipe";
11
+ import * as i10 from "./link-cases-from-reason-code/ccd-link-cases-from-reason-code.pipe";
12
+ import * as i11 from "@angular/common";
11
13
  export declare class PipesModule {
12
14
  static ɵfac: i0.ɵɵFactoryDef<PipesModule, never>;
13
- static ɵmod: i0.ɵɵNgModuleDefWithMeta<PipesModule, [typeof i1.CaseReferencePipe, typeof i2.SortSearchResultPipe, typeof i3.CcdCaseTitlePipe, typeof i4.CcdCollectionTableCaseFieldsFilterPipe, typeof i5.CcdCYAPageLabelFilterPipe, typeof i6.ReadFieldsFilterPipe, typeof i7.CcdTabFieldsPipe, typeof i8.CcdPageFieldsPipe], [typeof i9.CommonModule], [typeof i1.CaseReferencePipe, typeof i2.SortSearchResultPipe, typeof i3.CcdCaseTitlePipe, typeof i4.CcdCollectionTableCaseFieldsFilterPipe, typeof i5.CcdCYAPageLabelFilterPipe, typeof i6.ReadFieldsFilterPipe, typeof i7.CcdTabFieldsPipe, typeof i8.CcdPageFieldsPipe]>;
15
+ static ɵmod: i0.ɵɵNgModuleDefWithMeta<PipesModule, [typeof i1.CaseReferencePipe, typeof i2.SortSearchResultPipe, typeof i3.CcdCaseTitlePipe, typeof i4.CcdCollectionTableCaseFieldsFilterPipe, typeof i5.CcdCYAPageLabelFilterPipe, typeof i6.ReadFieldsFilterPipe, typeof i7.CcdTabFieldsPipe, typeof i8.CcdPageFieldsPipe, typeof i9.LinkCasesReasonValuePipe, typeof i10.LinkCasesFromReasonValuePipe], [typeof i11.CommonModule], [typeof i1.CaseReferencePipe, typeof i2.SortSearchResultPipe, typeof i3.CcdCaseTitlePipe, typeof i4.CcdCollectionTableCaseFieldsFilterPipe, typeof i5.CcdCYAPageLabelFilterPipe, typeof i6.ReadFieldsFilterPipe, typeof i7.CcdTabFieldsPipe, typeof i8.CcdPageFieldsPipe, typeof i9.LinkCasesReasonValuePipe, typeof i10.LinkCasesFromReasonValuePipe]>;
14
16
  static ɵinj: i0.ɵɵInjectorDef<PipesModule>;
15
17
  }
16
18
  //# sourceMappingURL=pipes.module.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"pipes.module.d.ts","sourceRoot":"","sources":["../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/pipes/pipes.module.ts"],"names":[],"mappings":";;;;;;;;;;AAkBA,qBAWa,WAAW;iCAAX,WAAW;0CAAX,WAAW;kCAAX,WAAW;CAAG"}
1
+ {"version":3,"file":"pipes.module.d.ts","sourceRoot":"","sources":["../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/pipes/pipes.module.ts"],"names":[],"mappings":";;;;;;;;;;;;AAsBA,qBAWa,WAAW;iCAAX,WAAW;0CAAX,WAAW;kCAAX,WAAW;CAAG"}
@@ -0,0 +1,33 @@
1
+ import { BehaviorSubject, Observable } from 'rxjs';
2
+ import { Socket } from 'socket.io-client';
3
+ import { CaseActivityInfo } from '../../domain/activity';
4
+ import { UserInfo } from '../../domain/user';
5
+ import { SessionStorageService } from '../session/session-storage.service';
6
+ import { ActivityService } from './activity.service';
7
+ import { MODES } from './utils/index';
8
+ import * as i0 from "@angular/core";
9
+ export declare class ActivitySocketService {
10
+ private readonly sessionStorageService;
11
+ private readonly activityService;
12
+ static SOCKET_MODES: MODES[];
13
+ activity: Observable<CaseActivityInfo[]>;
14
+ connect: Observable<any>;
15
+ connect_error: Observable<any>;
16
+ disconnect: Observable<any>;
17
+ connected: BehaviorSubject<boolean>;
18
+ socket: Socket;
19
+ private pUser;
20
+ get user(): UserInfo;
21
+ get isEnabled(): boolean;
22
+ constructor(sessionStorageService: SessionStorageService, activityService: ActivityService);
23
+ watchCases(caseIds: string[]): void;
24
+ viewCase(caseId: string): void;
25
+ editCase(caseId: string): void;
26
+ private init;
27
+ private destroy;
28
+ private getObservableOnSocketEvent;
29
+ private setupUser;
30
+ static ɵfac: i0.ɵɵFactoryDef<ActivitySocketService, never>;
31
+ static ɵprov: i0.ɵɵInjectableDef<ActivitySocketService>;
32
+ }
33
+ //# sourceMappingURL=activity-socket.service.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"activity-socket.service.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/services/activity/activity-socket.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AAEnD,OAAO,EAAE,MAAM,EAAE,MAAM,kBAAkB,CAAC;AAC1C,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AACzD,OAAO,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AAC7C,OAAO,EAAE,qBAAqB,EAAE,MAAM,oCAAoC,CAAC;AAC3E,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AACrD,OAAO,EAAS,KAAK,EAAE,MAAM,eAAe,CAAC;;AAE7C,qBAGa,qBAAqB;IAoB9B,OAAO,CAAC,QAAQ,CAAC,qBAAqB;IACtC,OAAO,CAAC,QAAQ,CAAC,eAAe;IApBlC,OAAc,YAAY,EAAE,KAAK,EAAE,CAA0C;IAEtE,QAAQ,EAAE,UAAU,CAAC,gBAAgB,EAAE,CAAC,CAAC;IACzC,OAAO,EAAE,UAAU,CAAC,GAAG,CAAC,CAAC;IACzB,aAAa,EAAE,UAAU,CAAC,GAAG,CAAC,CAAC;IAC/B,UAAU,EAAE,UAAU,CAAC,GAAG,CAAC,CAAC;IAC5B,SAAS,EAAE,eAAe,CAAC,OAAO,CAAC,CAAuC;IAE1E,MAAM,EAAE,MAAM,CAAC;IACtB,OAAO,CAAC,KAAK,CAAW;IACxB,IAAW,IAAI,IAAI,QAAQ,CAE1B;IAED,IAAW,SAAS,IAAI,OAAO,CAE9B;gBAGkB,qBAAqB,EAAE,qBAAqB,EAC5C,eAAe,EAAE,eAAe;IAe5C,UAAU,CAAC,OAAO,EAAE,MAAM,EAAE,GAAG,IAAI;IAInC,QAAQ,CAAC,MAAM,EAAE,MAAM,GAAG,IAAI;IAI9B,QAAQ,CAAC,MAAM,EAAE,MAAM,GAAG,IAAI;IAIrC,OAAO,CAAC,IAAI;IAoBZ,OAAO,CAAC,OAAO;IAOf,OAAO,CAAC,0BAA0B;IAQlC,OAAO,CAAC,SAAS;iCAnFN,qBAAqB;qCAArB,qBAAqB;CA4FjC"}
@@ -11,19 +11,20 @@ export declare class ActivityPollingService {
11
11
  private readonly pendingRequests;
12
12
  private currentTimeoutHandle;
13
13
  private pollActivitiesSubscription;
14
- private readonly pollConfig;
15
- private readonly batchCollectionDelayMs;
16
- private readonly maxRequestsPerBatch;
17
- constructor(activityService: ActivityService, ngZone: NgZone, config: AbstractAppConfig);
14
+ private pollConfig;
15
+ private batchCollectionDelayMs;
16
+ private maxRequestsPerBatch;
18
17
  get isEnabled(): boolean;
18
+ constructor(activityService: ActivityService, ngZone: NgZone, config: AbstractAppConfig);
19
19
  subscribeToActivity(caseId: string, done: (activity: Activity) => void): Subject<Activity>;
20
20
  stopPolling(): void;
21
21
  flushRequests(): void;
22
22
  pollActivities(...caseIds: string[]): Observable<Activity[]>;
23
23
  postViewActivity(caseId: string): Observable<Activity[]>;
24
24
  postEditActivity(caseId: string): Observable<Activity[]>;
25
- protected performBatchRequest(requests: Map<string, Subject<Activity>>): void;
25
+ private performBatchRequest;
26
26
  private postActivity;
27
+ private init;
27
28
  static ɵfac: i0.ɵɵFactoryDef<ActivityPollingService, never>;
28
29
  static ɵprov: i0.ɵɵInjectableDef<ActivityPollingService>;
29
30
  }
@@ -1 +1 @@
1
- {"version":3,"file":"activity.polling.service.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/services/activity/activity.polling.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAc,MAAM,EAAE,MAAM,eAAe,CAAC;AAEnD,OAAO,EAAS,UAAU,EAAE,OAAO,EAAgB,MAAM,MAAM,CAAC;AAChE,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AACxD,OAAO,EAAE,QAAQ,EAAE,MAAM,sCAAsC,CAAC;AAChE,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;;AAGrD,qBACa,sBAAsB;IASrB,OAAO,CAAC,QAAQ,CAAC,eAAe;IAAmB,OAAO,CAAC,QAAQ,CAAC,MAAM;IAAU,OAAO,CAAC,QAAQ,CAAC,MAAM;IAPvH,OAAO,CAAC,QAAQ,CAAC,eAAe,CAAwC;IACxE,OAAO,CAAC,oBAAoB,CAAM;IAClC,OAAO,CAAC,0BAA0B,CAAe;IACjD,OAAO,CAAC,QAAQ,CAAC,UAAU,CAAW;IACtC,OAAO,CAAC,QAAQ,CAAC,sBAAsB,CAAS;IAChD,OAAO,CAAC,QAAQ,CAAC,mBAAmB,CAAS;gBAEhB,eAAe,EAAE,eAAe,EAAmB,MAAM,EAAE,MAAM,EAAmB,MAAM,EAAE,iBAAiB;IAU1I,IAAW,SAAS,IAAI,OAAO,CAE9B;IAEM,mBAAmB,CAAC,MAAM,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC,QAAQ,EAAE,QAAQ,KAAK,IAAI,GAAG,OAAO,CAAC,QAAQ,CAAC;IA+B1F,WAAW;IAMX,aAAa,IAAI,IAAI;IAWrB,cAAc,CAAC,GAAG,OAAO,EAAE,MAAM,EAAE,GAAG,UAAU,CAAC,QAAQ,EAAE,CAAC;IAQ5D,gBAAgB,CAAC,MAAM,EAAE,MAAM,GAAG,UAAU,CAAC,QAAQ,EAAE,CAAC;IAIxD,gBAAgB,CAAC,MAAM,EAAE,MAAM,GAAG,UAAU,CAAC,QAAQ,EAAE,CAAC;IAI/D,SAAS,CAAC,mBAAmB,CAAC,QAAQ,EAAE,GAAG,CAAC,MAAM,EAAE,OAAO,CAAC,QAAQ,CAAC,CAAC,GAAG,IAAI;IAsB7E,OAAO,CAAC,YAAY;iCA7GT,sBAAsB;qCAAtB,sBAAsB;CAyHlC"}
1
+ {"version":3,"file":"activity.polling.service.d.ts","sourceRoot":"","sources":["../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/services/activity/activity.polling.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAc,MAAM,EAAE,MAAM,eAAe,CAAC;AAEnD,OAAO,EAAS,UAAU,EAAE,OAAO,EAAgB,MAAM,MAAM,CAAC;AAEhE,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AACxD,OAAO,EAAE,QAAQ,EAAE,MAAM,sCAAsC,CAAC;AAChE,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;;AAIrD,qBACa,sBAAsB;IAc/B,OAAO,CAAC,QAAQ,CAAC,eAAe;IAChC,OAAO,CAAC,QAAQ,CAAC,MAAM;IACvB,OAAO,CAAC,QAAQ,CAAC,MAAM;IAdzB,OAAO,CAAC,QAAQ,CAAC,eAAe,CAAwC;IACxE,OAAO,CAAC,oBAAoB,CAAM;IAClC,OAAO,CAAC,0BAA0B,CAAe;IACjD,OAAO,CAAC,UAAU,CAAW;IAC7B,OAAO,CAAC,sBAAsB,CAAS;IACvC,OAAO,CAAC,mBAAmB,CAAS;IAEpC,IAAW,SAAS,IAAI,OAAO,CAE9B;gBAGkB,eAAe,EAAE,eAAe,EAChC,MAAM,EAAE,MAAM,EACd,MAAM,EAAE,iBAAiB;IAarC,mBAAmB,CAAC,MAAM,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC,QAAQ,EAAE,QAAQ,KAAK,IAAI,GAAG,OAAO,CAAC,QAAQ,CAAC;IA+B1F,WAAW,IAAI,IAAI;IAMnB,aAAa,IAAI,IAAI;IAarB,cAAc,CAAC,GAAG,OAAO,EAAE,MAAM,EAAE,GAAG,UAAU,CAAC,QAAQ,EAAE,CAAC;IAQ5D,gBAAgB,CAAC,MAAM,EAAE,MAAM,GAAG,UAAU,CAAC,QAAQ,EAAE,CAAC;IAIxD,gBAAgB,CAAC,MAAM,EAAE,MAAM,GAAG,UAAU,CAAC,QAAQ,EAAE,CAAC;IAI/D,OAAO,CAAC,mBAAmB;IAsB3B,OAAO,CAAC,YAAY;IAapB,OAAO,CAAC,IAAI;iCAlID,sBAAsB;qCAAtB,sBAAsB;CA2IlC"}