@hmcts/ccd-case-ui-toolkit 7.0.5 → 7.0.6-case-flags-v2-1-release

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 (362) hide show
  1. package/esm2020/lib/shared/components/case-editor/case-edit/case-edit.component.mjs +58 -28
  2. package/esm2020/lib/shared/components/case-editor/case-edit-confirm/case-edit-confirm.component.mjs +2 -2
  3. package/esm2020/lib/shared/components/case-editor/case-edit-generic-errors/case-edit-generic-errors.component.mjs +2 -2
  4. package/esm2020/lib/shared/components/case-editor/case-edit-page/case-edit-page.component.mjs +5 -11
  5. package/esm2020/lib/shared/components/case-editor/case-edit-submit/case-edit-submit-titles.enum.mjs +7 -0
  6. package/esm2020/lib/shared/components/case-editor/case-edit-submit/case-edit-submit.component.mjs +165 -124
  7. package/esm2020/lib/shared/components/case-editor/case-editor.module.mjs +17 -22
  8. package/esm2020/lib/shared/components/case-editor/case-event-completion/case-event-completion.component.mjs +2 -3
  9. package/esm2020/lib/shared/components/case-editor/case-event-completion/components/case-event-completion-task-cancelled/case-event-completion-task-cancelled.component.mjs +2 -2
  10. package/esm2020/lib/shared/components/case-editor/case-event-completion/components/case-event-completion-task-reassigned/case-event-completion-task-reassigned.component.mjs +5 -15
  11. package/esm2020/lib/shared/components/case-editor/services/case-flag-state.service.mjs +19 -0
  12. package/esm2020/lib/shared/components/case-editor/services/cases.service.mjs +6 -1
  13. package/esm2020/lib/shared/components/case-editor/services/event-completion-state-machine.service.mjs +6 -25
  14. package/esm2020/lib/shared/components/case-viewer/case-event-trigger/case-event-trigger.component.mjs +4 -17
  15. package/esm2020/lib/shared/components/case-viewer/case-full-access-view/case-full-access-view.component.mjs +40 -15
  16. package/esm2020/lib/shared/components/case-viewer/case-viewer.module.mjs +8 -5
  17. package/esm2020/lib/shared/components/palette/address/write-address-field.component.mjs +19 -20
  18. package/esm2020/lib/shared/components/palette/base-field/field-read.component.mjs +1 -1
  19. package/esm2020/lib/shared/components/palette/case-flag/components/add-comments/add-comments.component.mjs +70 -31
  20. package/esm2020/lib/shared/components/palette/case-flag/components/case-flag-summary-list/case-flag-summary-list.component.mjs +249 -46
  21. package/esm2020/lib/shared/components/palette/case-flag/components/case-flag-table/case-flag-table.component.mjs +140 -71
  22. package/esm2020/lib/shared/components/palette/case-flag/components/confirm-flag-status/confirm-flag-status.component.mjs +165 -0
  23. package/esm2020/lib/shared/components/palette/case-flag/components/index.mjs +4 -1
  24. package/esm2020/lib/shared/components/palette/case-flag/components/manage-case-flags/manage-case-flags.component.mjs +73 -78
  25. package/esm2020/lib/shared/components/palette/case-flag/components/search-language-interpreter/search-language-interpreter-control-names.enum.mjs +6 -0
  26. package/esm2020/lib/shared/components/palette/case-flag/components/search-language-interpreter/search-language-interpreter.component.mjs +133 -99
  27. package/esm2020/lib/shared/components/palette/case-flag/components/select-flag-location/select-flag-location.component.mjs +22 -9
  28. package/esm2020/lib/shared/components/palette/case-flag/components/select-flag-type/select-flag-type.component.mjs +213 -112
  29. package/esm2020/lib/shared/components/palette/case-flag/components/update-flag/update-flag-add-translation-form/update-flag-add-translation-form.component.mjs +267 -0
  30. package/esm2020/lib/shared/components/palette/case-flag/components/update-flag/update-flag.component.mjs +439 -104
  31. package/esm2020/lib/shared/components/palette/case-flag/domain/case-flag-state.model.mjs +1 -1
  32. package/esm2020/lib/shared/components/palette/case-flag/domain/case-flag.model.mjs +1 -1
  33. package/esm2020/lib/shared/components/palette/case-flag/domain/language.model.mjs +1 -1
  34. package/esm2020/lib/shared/components/palette/case-flag/enums/add-comments-error-message.enum.mjs +2 -1
  35. package/esm2020/lib/shared/components/palette/case-flag/enums/add-comments-step.enum.mjs +3 -1
  36. package/esm2020/lib/shared/components/palette/case-flag/enums/case-flag-check-your-answers-step.enum.mjs +12 -0
  37. package/esm2020/lib/shared/components/palette/case-flag/enums/case-flag-display-context-parameter.enum.mjs +15 -0
  38. package/esm2020/lib/shared/components/palette/case-flag/enums/case-flag-form-fields.enum.mjs +13 -0
  39. package/esm2020/lib/shared/components/palette/case-flag/enums/case-flag-status.enum.mjs +3 -2
  40. package/esm2020/lib/shared/components/palette/case-flag/enums/case-flag-wizard-step-title.enum.mjs +11 -3
  41. package/esm2020/lib/shared/components/palette/case-flag/enums/confirm-status-error-message.enum.mjs +6 -0
  42. package/esm2020/lib/shared/components/palette/case-flag/enums/confirm-status-step.enum.mjs +6 -0
  43. package/esm2020/lib/shared/components/palette/case-flag/enums/index.mjs +9 -2
  44. package/esm2020/lib/shared/components/palette/case-flag/enums/select-flag-error-message.enum.mjs +3 -2
  45. package/esm2020/lib/shared/components/palette/case-flag/enums/select-flag-type-error-message.enum.mjs +4 -1
  46. package/esm2020/lib/shared/components/palette/case-flag/enums/update-flag-add-translation-error-message.enum.mjs +6 -0
  47. package/esm2020/lib/shared/components/palette/case-flag/enums/update-flag-add-translation-step.enum.mjs +6 -0
  48. package/esm2020/lib/shared/components/palette/case-flag/enums/update-flag-error-message.enum.mjs +5 -1
  49. package/esm2020/lib/shared/components/palette/case-flag/enums/update-flag-step.enum.mjs +7 -2
  50. package/esm2020/lib/shared/components/palette/case-flag/enums/write-case-flag-field.enum.mjs +10 -7
  51. package/esm2020/lib/shared/components/palette/case-flag/index.mjs +2 -1
  52. package/esm2020/lib/shared/components/palette/case-flag/pipes/flag-field-display.pipe.mjs +41 -0
  53. package/esm2020/lib/shared/components/palette/case-flag/pipes/index.mjs +5 -0
  54. package/esm2020/lib/shared/components/palette/case-flag/pipes/language-interpreter-display.pipe.mjs +41 -0
  55. package/esm2020/lib/shared/components/palette/case-flag/pipes/manage-case-flags-label-display.pipe.mjs +109 -0
  56. package/esm2020/lib/shared/components/palette/case-flag/pipes/update-flag-title-display.pipe.mjs +77 -0
  57. package/esm2020/lib/shared/components/palette/case-flag/read-case-flag-field.component.mjs +156 -57
  58. package/esm2020/lib/shared/components/palette/case-flag/write-case-flag-field.component.mjs +385 -172
  59. package/esm2020/lib/shared/components/palette/case-link/write-case-link-field.component.mjs +8 -10
  60. package/esm2020/lib/shared/components/palette/collection/write-collection-field.component.mjs +49 -54
  61. package/esm2020/lib/shared/components/palette/complex/read-complex-field.component.mjs +12 -14
  62. package/esm2020/lib/shared/components/palette/complex/sort-order.mjs +7 -0
  63. package/esm2020/lib/shared/components/palette/complex/write-complex-field.component.mjs +5 -6
  64. package/esm2020/lib/shared/components/palette/date/write-date-field.component.mjs +8 -10
  65. package/esm2020/lib/shared/components/palette/datetime-picker/datetime-picker-utils.mjs +3 -3
  66. package/esm2020/lib/shared/components/palette/datetime-picker/datetime-picker.component.mjs +8 -10
  67. package/esm2020/lib/shared/components/palette/document/write-document-field.component.mjs +36 -25
  68. package/esm2020/lib/shared/components/palette/dynamic-list/write-dynamic-list-field.component.mjs +8 -10
  69. package/esm2020/lib/shared/components/palette/dynamic-radio-list/write-dynamic-radio-list-field.component.mjs +8 -10
  70. package/esm2020/lib/shared/components/palette/email/write-email-field.component.mjs +8 -10
  71. package/esm2020/lib/shared/components/palette/fixed-list/write-fixed-list-field.component.mjs +8 -10
  72. package/esm2020/lib/shared/components/palette/fixed-radio-list/write-fixed-radio-list-field.component.mjs +8 -10
  73. package/esm2020/lib/shared/components/palette/history/event-log/event-log-table.component.mjs +9 -7
  74. package/esm2020/lib/shared/components/palette/index.mjs +3 -1
  75. package/esm2020/lib/shared/components/palette/linked-cases/write-linked-cases-field.component.mjs +25 -12
  76. package/esm2020/lib/shared/components/palette/markdown/index.mjs +2 -1
  77. package/esm2020/lib/shared/components/palette/markdown/markdown-component.module.mjs +40 -0
  78. package/esm2020/lib/shared/components/palette/markdown/markdown.component.mjs +9 -7
  79. package/esm2020/lib/shared/components/palette/money-gbp/write-money-gbp-field.component.mjs +8 -10
  80. package/esm2020/lib/shared/components/palette/multi-select-list/write-multi-select-list-field.component.mjs +8 -10
  81. package/esm2020/lib/shared/components/palette/number/write-number-field.component.mjs +8 -10
  82. package/esm2020/lib/shared/components/palette/palette.module.mjs +148 -49
  83. package/esm2020/lib/shared/components/palette/palette.service.mjs +4 -2
  84. package/esm2020/lib/shared/components/palette/phone-uk/write-phone-uk-field.component.mjs +8 -10
  85. package/esm2020/lib/shared/components/palette/query-management/__mocks__/index.mjs +210 -0
  86. package/esm2020/lib/shared/components/palette/query-management/components/index.mjs +13 -0
  87. package/esm2020/lib/shared/components/palette/query-management/components/qualifying-questions/qualifying-question-detail/qualifying-question-detail.component.mjs +42 -0
  88. package/esm2020/lib/shared/components/palette/query-management/components/qualifying-questions/qualifying-question-options/qualifying-question-options.component.mjs +144 -0
  89. package/esm2020/lib/shared/components/palette/query-management/components/query-attachments-read/query-attachments-read.component.mjs +64 -0
  90. package/esm2020/lib/shared/components/palette/query-management/components/query-case-details-header/query-case-details-header.component.mjs +60 -0
  91. package/esm2020/lib/shared/components/palette/query-management/components/query-check-your-answers/query-check-your-answers.component.mjs +281 -0
  92. package/esm2020/lib/shared/components/palette/query-management/components/query-details/query-details.component.mjs +327 -0
  93. package/esm2020/lib/shared/components/palette/query-management/components/query-event-completion/query-event-completion.component.mjs +22 -0
  94. package/esm2020/lib/shared/components/palette/query-management/components/query-list/query-list.component.mjs +164 -0
  95. package/esm2020/lib/shared/components/palette/query-management/components/query-write/query-write-add-documents/query-write-add-documents.component.mjs +74 -0
  96. package/esm2020/lib/shared/components/palette/query-management/components/query-write/query-write-date-input/query-write-date-input.component.mjs +107 -0
  97. package/esm2020/lib/shared/components/palette/query-management/components/query-write/query-write-raise-query/query-write-raise-query.component.mjs +201 -0
  98. package/esm2020/lib/shared/components/palette/query-management/components/query-write/query-write-respond-to-query/query-write-respond-to-query.component.mjs +101 -0
  99. package/esm2020/lib/shared/components/palette/query-management/enums/index.mjs +6 -0
  100. package/esm2020/lib/shared/components/palette/query-management/enums/qualifying-questions-error-message.enum.mjs +5 -0
  101. package/esm2020/lib/shared/components/palette/query-management/enums/query-item-response-status.enum.mjs +6 -0
  102. package/esm2020/lib/shared/components/palette/query-management/enums/raise-query-error-message.enum.mjs +10 -0
  103. package/esm2020/lib/shared/components/palette/query-management/enums/respond-to-query-error-messages.enum.mjs +6 -0
  104. package/esm2020/lib/shared/components/palette/query-management/index.mjs +7 -0
  105. package/esm2020/lib/shared/components/palette/query-management/models/case-queries-collection.model.mjs +2 -0
  106. package/esm2020/lib/shared/components/palette/query-management/models/index.mjs +8 -0
  107. package/esm2020/lib/shared/components/palette/query-management/models/qualifying-questions/casetype-qualifying-questions.model.mjs +2 -0
  108. package/esm2020/lib/shared/components/palette/query-management/models/qualifying-questions/qualifying-question.model.mjs +2 -0
  109. package/esm2020/lib/shared/components/palette/query-management/models/query-create-context.enum.mjs +9 -0
  110. package/esm2020/lib/shared/components/palette/query-management/models/query-list/query-list-column/query-list-column.model.mjs +2 -0
  111. package/esm2020/lib/shared/components/palette/query-management/models/query-list/query-list-data/query-list-data.model.mjs +21 -0
  112. package/esm2020/lib/shared/components/palette/query-management/models/query-list/query-list-item/query-list-item.model.mjs +38 -0
  113. package/esm2020/lib/shared/components/palette/query-management/read-query-management-field.component.mjs +121 -0
  114. package/esm2020/lib/shared/components/palette/query-management/utils/query-management.utils.mjs +22 -0
  115. package/esm2020/lib/shared/components/palette/text/write-text-field.component.mjs +8 -10
  116. package/esm2020/lib/shared/components/palette/text-area/write-text-area-field.component.mjs +8 -10
  117. package/esm2020/lib/shared/components/palette/utils/field-label.pipe.mjs +14 -7
  118. package/esm2020/lib/shared/components/palette/utils/first-error.pipe.mjs +16 -9
  119. package/esm2020/lib/shared/components/palette/yes-no/read-yes-no-field.component.mjs +10 -5
  120. package/esm2020/lib/shared/components/palette/yes-no/write-yes-no-field.component.mjs +12 -13
  121. package/esm2020/lib/shared/domain/case-flag/flag-type.model.mjs +16 -2
  122. package/esm2020/lib/shared/domain/case-view/case-view-event-ids.enum.mjs +6 -0
  123. package/esm2020/lib/shared/domain/case-view/case-view-trigger.model.mjs +1 -2
  124. package/esm2020/lib/shared/domain/case-view/service-org-response.model.mjs +2 -0
  125. package/esm2020/lib/shared/domain/definition/display-context-enum.model.mjs +3 -1
  126. package/esm2020/lib/shared/domain/http/http-error.model.mjs +2 -8
  127. package/esm2020/lib/shared/fixture/shared.test.fixture.mjs +2 -1
  128. package/esm2020/lib/shared/pipes/complex/ccd-read-fields-filter.pipe.mjs +4 -3
  129. package/esm2020/lib/shared/pipes/generic/enum-display-description/enum-display-description.pipe.mjs +16 -0
  130. package/esm2020/lib/shared/pipes/generic/index.mjs +2 -0
  131. package/esm2020/lib/shared/pipes/index.mjs +3 -2
  132. package/esm2020/lib/shared/pipes/pipes.module.mjs +9 -5
  133. package/esm2020/lib/shared/services/case-flag/case-flag-refdata.service.mjs +9 -3
  134. package/esm2020/lib/shared/services/common-data-service/common-data-service.mjs +7 -1
  135. package/esm2020/lib/shared/services/fields/fields.purger.mjs +16 -6
  136. package/esm2020/lib/shared/services/fields/fields.utils.mjs +22 -4
  137. package/esm2020/lib/shared/services/form/form-value.service.mjs +23 -17
  138. package/esm2020/lib/shared/services/jurisdiction/jurisdiction.service.mjs +2 -1
  139. package/esm2020/lib/shared/services/request/request.options.builder.mjs +7 -1
  140. package/esm2020/lib/shared/services/utils/retry/retry.service.mjs +1 -2
  141. package/fesm2015/hmcts-ccd-case-ui-toolkit.mjs +8851 -4312
  142. package/fesm2015/hmcts-ccd-case-ui-toolkit.mjs.map +1 -1
  143. package/fesm2020/hmcts-ccd-case-ui-toolkit.mjs +9850 -5730
  144. package/fesm2020/hmcts-ccd-case-ui-toolkit.mjs.map +1 -1
  145. package/lib/shared/components/case-editor/case-edit/case-edit.component.d.ts +5 -2
  146. package/lib/shared/components/case-editor/case-edit/case-edit.component.d.ts.map +1 -1
  147. package/lib/shared/components/case-editor/case-edit-page/case-edit-page.component.d.ts.map +1 -1
  148. package/lib/shared/components/case-editor/case-edit-submit/case-edit-submit-titles.enum.d.ts +6 -0
  149. package/lib/shared/components/case-editor/case-edit-submit/case-edit-submit-titles.enum.d.ts.map +1 -0
  150. package/lib/shared/components/case-editor/case-edit-submit/case-edit-submit.component.d.ts +1 -1
  151. package/lib/shared/components/case-editor/case-edit-submit/case-edit-submit.component.d.ts.map +1 -1
  152. package/lib/shared/components/case-editor/case-editor.module.d.ts +17 -20
  153. package/lib/shared/components/case-editor/case-editor.module.d.ts.map +1 -1
  154. 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 -1
  155. 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 -1
  156. package/lib/shared/components/case-editor/services/case-flag-state.service.d.ts +11 -0
  157. package/lib/shared/components/case-editor/services/case-flag-state.service.d.ts.map +1 -0
  158. package/lib/shared/components/case-editor/services/cases.service.d.ts +1 -0
  159. package/lib/shared/components/case-editor/services/cases.service.d.ts.map +1 -1
  160. package/lib/shared/components/case-editor/services/event-completion-state-machine.service.d.ts.map +1 -1
  161. package/lib/shared/components/case-viewer/case-event-trigger/case-event-trigger.component.d.ts.map +1 -1
  162. package/lib/shared/components/case-viewer/case-full-access-view/case-full-access-view.component.d.ts +6 -2
  163. package/lib/shared/components/case-viewer/case-full-access-view/case-full-access-view.component.d.ts.map +1 -1
  164. package/lib/shared/components/case-viewer/case-viewer.module.d.ts +4 -4
  165. package/lib/shared/components/case-viewer/case-viewer.module.d.ts.map +1 -1
  166. package/lib/shared/components/palette/base-field/field-read.component.d.ts.map +1 -1
  167. package/lib/shared/components/palette/case-flag/components/add-comments/add-comments.component.d.ts +6 -2
  168. package/lib/shared/components/palette/case-flag/components/add-comments/add-comments.component.d.ts.map +1 -1
  169. package/lib/shared/components/palette/case-flag/components/case-flag-summary-list/case-flag-summary-list.component.d.ts +25 -8
  170. package/lib/shared/components/palette/case-flag/components/case-flag-summary-list/case-flag-summary-list.component.d.ts.map +1 -1
  171. package/lib/shared/components/palette/case-flag/components/case-flag-table/case-flag-table.component.d.ts +2 -1
  172. package/lib/shared/components/palette/case-flag/components/case-flag-table/case-flag-table.component.d.ts.map +1 -1
  173. package/lib/shared/components/palette/case-flag/components/confirm-flag-status/confirm-flag-status.component.d.ts +28 -0
  174. package/lib/shared/components/palette/case-flag/components/confirm-flag-status/confirm-flag-status.component.d.ts.map +1 -0
  175. package/lib/shared/components/palette/case-flag/components/index.d.ts +3 -0
  176. package/lib/shared/components/palette/case-flag/components/index.d.ts.map +1 -1
  177. package/lib/shared/components/palette/case-flag/components/manage-case-flags/manage-case-flags.component.d.ts +4 -8
  178. package/lib/shared/components/palette/case-flag/components/manage-case-flags/manage-case-flags.component.d.ts.map +1 -1
  179. package/lib/shared/components/palette/case-flag/components/search-language-interpreter/search-language-interpreter-control-names.enum.d.ts +5 -0
  180. package/lib/shared/components/palette/case-flag/components/search-language-interpreter/search-language-interpreter-control-names.enum.d.ts.map +1 -0
  181. package/lib/shared/components/palette/case-flag/components/search-language-interpreter/search-language-interpreter.component.d.ts +10 -8
  182. package/lib/shared/components/palette/case-flag/components/search-language-interpreter/search-language-interpreter.component.d.ts.map +1 -1
  183. package/lib/shared/components/palette/case-flag/components/select-flag-location/select-flag-location.component.d.ts +2 -1
  184. package/lib/shared/components/palette/case-flag/components/select-flag-location/select-flag-location.component.d.ts.map +1 -1
  185. package/lib/shared/components/palette/case-flag/components/select-flag-type/select-flag-type.component.d.ts +16 -9
  186. package/lib/shared/components/palette/case-flag/components/select-flag-type/select-flag-type.component.d.ts.map +1 -1
  187. package/lib/shared/components/palette/case-flag/components/update-flag/update-flag-add-translation-form/update-flag-add-translation-form.component.d.ts +27 -0
  188. package/lib/shared/components/palette/case-flag/components/update-flag/update-flag-add-translation-form/update-flag-add-translation-form.component.d.ts.map +1 -0
  189. package/lib/shared/components/palette/case-flag/components/update-flag/update-flag.component.d.ts +26 -11
  190. package/lib/shared/components/palette/case-flag/components/update-flag/update-flag.component.d.ts.map +1 -1
  191. package/lib/shared/components/palette/case-flag/domain/case-flag-state.model.d.ts +1 -10
  192. package/lib/shared/components/palette/case-flag/domain/case-flag-state.model.d.ts.map +1 -1
  193. package/lib/shared/components/palette/case-flag/domain/case-flag.model.d.ts +12 -1
  194. package/lib/shared/components/palette/case-flag/domain/case-flag.model.d.ts.map +1 -1
  195. package/lib/shared/components/palette/case-flag/domain/language.model.d.ts +1 -0
  196. package/lib/shared/components/palette/case-flag/domain/language.model.d.ts.map +1 -1
  197. package/lib/shared/components/palette/case-flag/enums/add-comments-error-message.enum.d.ts +1 -0
  198. package/lib/shared/components/palette/case-flag/enums/add-comments-error-message.enum.d.ts.map +1 -1
  199. package/lib/shared/components/palette/case-flag/enums/add-comments-step.enum.d.ts +3 -1
  200. package/lib/shared/components/palette/case-flag/enums/add-comments-step.enum.d.ts.map +1 -1
  201. package/lib/shared/components/palette/case-flag/enums/case-flag-check-your-answers-step.enum.d.ts +11 -0
  202. package/lib/shared/components/palette/case-flag/enums/case-flag-check-your-answers-step.enum.d.ts.map +1 -0
  203. package/lib/shared/components/palette/case-flag/enums/case-flag-display-context-parameter.enum.d.ts +14 -0
  204. package/lib/shared/components/palette/case-flag/enums/case-flag-display-context-parameter.enum.d.ts.map +1 -0
  205. package/lib/shared/components/palette/case-flag/enums/case-flag-form-fields.enum.d.ts +12 -0
  206. package/lib/shared/components/palette/case-flag/enums/case-flag-form-fields.enum.d.ts.map +1 -0
  207. package/lib/shared/components/palette/case-flag/enums/case-flag-status.enum.d.ts +2 -1
  208. package/lib/shared/components/palette/case-flag/enums/case-flag-status.enum.d.ts.map +1 -1
  209. package/lib/shared/components/palette/case-flag/enums/case-flag-wizard-step-title.enum.d.ts +11 -3
  210. package/lib/shared/components/palette/case-flag/enums/case-flag-wizard-step-title.enum.d.ts.map +1 -1
  211. package/lib/shared/components/palette/case-flag/enums/confirm-status-error-message.enum.d.ts +5 -0
  212. package/lib/shared/components/palette/case-flag/enums/confirm-status-error-message.enum.d.ts.map +1 -0
  213. package/lib/shared/components/palette/case-flag/enums/confirm-status-step.enum.d.ts +5 -0
  214. package/lib/shared/components/palette/case-flag/enums/confirm-status-step.enum.d.ts.map +1 -0
  215. package/lib/shared/components/palette/case-flag/enums/index.d.ts +8 -1
  216. package/lib/shared/components/palette/case-flag/enums/index.d.ts.map +1 -1
  217. package/lib/shared/components/palette/case-flag/enums/select-flag-error-message.enum.d.ts +2 -1
  218. package/lib/shared/components/palette/case-flag/enums/select-flag-error-message.enum.d.ts.map +1 -1
  219. package/lib/shared/components/palette/case-flag/enums/select-flag-type-error-message.enum.d.ts +3 -0
  220. package/lib/shared/components/palette/case-flag/enums/select-flag-type-error-message.enum.d.ts.map +1 -1
  221. package/lib/shared/components/palette/case-flag/enums/update-flag-add-translation-error-message.enum.d.ts +5 -0
  222. package/lib/shared/components/palette/case-flag/enums/update-flag-add-translation-error-message.enum.d.ts.map +1 -0
  223. package/lib/shared/components/palette/case-flag/enums/update-flag-add-translation-step.enum.d.ts +5 -0
  224. package/lib/shared/components/palette/case-flag/enums/update-flag-add-translation-step.enum.d.ts.map +1 -0
  225. package/lib/shared/components/palette/case-flag/enums/update-flag-error-message.enum.d.ts +5 -1
  226. package/lib/shared/components/palette/case-flag/enums/update-flag-error-message.enum.d.ts.map +1 -1
  227. package/lib/shared/components/palette/case-flag/enums/update-flag-step.enum.d.ts +7 -2
  228. package/lib/shared/components/palette/case-flag/enums/update-flag-step.enum.d.ts.map +1 -1
  229. package/lib/shared/components/palette/case-flag/enums/write-case-flag-field.enum.d.ts +7 -4
  230. package/lib/shared/components/palette/case-flag/enums/write-case-flag-field.enum.d.ts.map +1 -1
  231. package/lib/shared/components/palette/case-flag/index.d.ts +1 -0
  232. package/lib/shared/components/palette/case-flag/index.d.ts.map +1 -1
  233. package/lib/shared/components/palette/case-flag/pipes/flag-field-display.pipe.d.ts +19 -0
  234. package/lib/shared/components/palette/case-flag/pipes/flag-field-display.pipe.d.ts.map +1 -0
  235. package/lib/shared/components/palette/case-flag/pipes/index.d.ts +5 -0
  236. package/lib/shared/components/palette/case-flag/pipes/index.d.ts.map +1 -0
  237. package/lib/shared/components/palette/case-flag/pipes/language-interpreter-display.pipe.d.ts +18 -0
  238. package/lib/shared/components/palette/case-flag/pipes/language-interpreter-display.pipe.d.ts.map +1 -0
  239. package/lib/shared/components/palette/case-flag/pipes/manage-case-flags-label-display.pipe.d.ts +25 -0
  240. package/lib/shared/components/palette/case-flag/pipes/manage-case-flags-label-display.pipe.d.ts.map +1 -0
  241. package/lib/shared/components/palette/case-flag/pipes/update-flag-title-display.pipe.d.ts +21 -0
  242. package/lib/shared/components/palette/case-flag/pipes/update-flag-title-display.pipe.d.ts.map +1 -0
  243. package/lib/shared/components/palette/case-flag/read-case-flag-field.component.d.ts +12 -8
  244. package/lib/shared/components/palette/case-flag/read-case-flag-field.component.d.ts.map +1 -1
  245. package/lib/shared/components/palette/case-flag/write-case-flag-field.component.d.ts +52 -27
  246. package/lib/shared/components/palette/case-flag/write-case-flag-field.component.d.ts.map +1 -1
  247. package/lib/shared/components/palette/collection/write-collection-field.component.d.ts +3 -2
  248. package/lib/shared/components/palette/collection/write-collection-field.component.d.ts.map +1 -1
  249. package/lib/shared/components/palette/complex/read-complex-field.component.d.ts.map +1 -1
  250. package/lib/shared/components/palette/complex/sort-order.d.ts +6 -0
  251. package/lib/shared/components/palette/complex/sort-order.d.ts.map +1 -0
  252. package/lib/shared/components/palette/document/write-document-field.component.d.ts.map +1 -1
  253. package/lib/shared/components/palette/index.d.ts +2 -0
  254. package/lib/shared/components/palette/index.d.ts.map +1 -1
  255. package/lib/shared/components/palette/linked-cases/write-linked-cases-field.component.d.ts +6 -3
  256. package/lib/shared/components/palette/linked-cases/write-linked-cases-field.component.d.ts.map +1 -1
  257. package/lib/shared/components/palette/markdown/index.d.ts +1 -0
  258. package/lib/shared/components/palette/markdown/index.d.ts.map +1 -1
  259. package/lib/shared/components/palette/markdown/markdown-component.module.d.ts +13 -0
  260. package/lib/shared/components/palette/markdown/markdown-component.module.d.ts.map +1 -0
  261. package/lib/shared/components/palette/palette.module.d.ts +140 -118
  262. package/lib/shared/components/palette/palette.module.d.ts.map +1 -1
  263. package/lib/shared/components/palette/palette.service.d.ts.map +1 -1
  264. package/lib/shared/components/palette/query-management/__mocks__/index.d.ts +11 -0
  265. package/lib/shared/components/palette/query-management/__mocks__/index.d.ts.map +1 -0
  266. package/lib/shared/components/palette/query-management/components/index.d.ts +13 -0
  267. package/lib/shared/components/palette/query-management/components/index.d.ts.map +1 -0
  268. package/lib/shared/components/palette/query-management/components/qualifying-questions/qualifying-question-detail/qualifying-question-detail.component.d.ts +8 -0
  269. package/lib/shared/components/palette/query-management/components/qualifying-questions/qualifying-question-detail/qualifying-question-detail.component.d.ts.map +1 -0
  270. package/lib/shared/components/palette/query-management/components/qualifying-questions/qualifying-question-options/qualifying-question-options.component.d.ts +22 -0
  271. package/lib/shared/components/palette/query-management/components/qualifying-questions/qualifying-question-options/qualifying-question-options.component.d.ts.map +1 -0
  272. package/lib/shared/components/palette/query-management/components/query-attachments-read/query-attachments-read.component.d.ts +11 -0
  273. package/lib/shared/components/palette/query-management/components/query-attachments-read/query-attachments-read.component.d.ts.map +1 -0
  274. package/lib/shared/components/palette/query-management/components/query-case-details-header/query-case-details-header.component.d.ts +10 -0
  275. package/lib/shared/components/palette/query-management/components/query-case-details-header/query-case-details-header.component.d.ts.map +1 -0
  276. package/lib/shared/components/palette/query-management/components/query-check-your-answers/query-check-your-answers.component.d.ts +30 -0
  277. package/lib/shared/components/palette/query-management/components/query-check-your-answers/query-check-your-answers.component.d.ts.map +1 -0
  278. package/lib/shared/components/palette/query-management/components/query-details/query-details.component.d.ts +16 -0
  279. package/lib/shared/components/palette/query-management/components/query-details/query-details.component.d.ts.map +1 -0
  280. package/lib/shared/components/palette/query-management/components/query-event-completion/query-event-completion.component.d.ts +9 -0
  281. package/lib/shared/components/palette/query-management/components/query-event-completion/query-event-completion.component.d.ts.map +1 -0
  282. package/lib/shared/components/palette/query-management/components/query-list/query-list.component.d.ts +18 -0
  283. package/lib/shared/components/palette/query-management/components/query-list/query-list.component.d.ts.map +1 -0
  284. package/lib/shared/components/palette/query-management/components/query-write/query-write-add-documents/query-write-add-documents.component.d.ts +20 -0
  285. package/lib/shared/components/palette/query-management/components/query-write/query-write-add-documents/query-write-add-documents.component.d.ts.map +1 -0
  286. package/lib/shared/components/palette/query-management/components/query-write/query-write-date-input/query-write-date-input.component.d.ts +20 -0
  287. package/lib/shared/components/palette/query-management/components/query-write/query-write-date-input/query-write-date-input.component.d.ts.map +1 -0
  288. package/lib/shared/components/palette/query-management/components/query-write/query-write-raise-query/query-write-raise-query.component.d.ts +11 -0
  289. package/lib/shared/components/palette/query-management/components/query-write/query-write-raise-query/query-write-raise-query.component.d.ts.map +1 -0
  290. package/lib/shared/components/palette/query-management/components/query-write/query-write-respond-to-query/query-write-respond-to-query.component.d.ts +21 -0
  291. package/lib/shared/components/palette/query-management/components/query-write/query-write-respond-to-query/query-write-respond-to-query.component.d.ts.map +1 -0
  292. package/lib/shared/components/palette/query-management/enums/index.d.ts +6 -0
  293. package/lib/shared/components/palette/query-management/enums/index.d.ts.map +1 -0
  294. package/lib/shared/components/palette/query-management/enums/qualifying-questions-error-message.enum.d.ts +4 -0
  295. package/lib/shared/components/palette/query-management/enums/qualifying-questions-error-message.enum.d.ts.map +1 -0
  296. package/lib/shared/components/palette/query-management/enums/query-item-response-status.enum.d.ts +5 -0
  297. package/lib/shared/components/palette/query-management/enums/query-item-response-status.enum.d.ts.map +1 -0
  298. package/lib/shared/components/palette/query-management/enums/raise-query-error-message.enum.d.ts +9 -0
  299. package/lib/shared/components/palette/query-management/enums/raise-query-error-message.enum.d.ts.map +1 -0
  300. package/lib/shared/components/palette/query-management/enums/respond-to-query-error-messages.enum.d.ts +5 -0
  301. package/lib/shared/components/palette/query-management/enums/respond-to-query-error-messages.enum.d.ts.map +1 -0
  302. package/lib/shared/components/palette/query-management/index.d.ts +7 -0
  303. package/lib/shared/components/palette/query-management/index.d.ts.map +1 -0
  304. package/lib/shared/components/palette/query-management/models/case-queries-collection.model.d.ts +27 -0
  305. package/lib/shared/components/palette/query-management/models/case-queries-collection.model.d.ts.map +1 -0
  306. package/lib/shared/components/palette/query-management/models/index.d.ts +8 -0
  307. package/lib/shared/components/palette/query-management/models/index.d.ts.map +1 -0
  308. package/lib/shared/components/palette/query-management/models/qualifying-questions/casetype-qualifying-questions.model.d.ts +5 -0
  309. package/lib/shared/components/palette/query-management/models/qualifying-questions/casetype-qualifying-questions.model.d.ts.map +1 -0
  310. package/lib/shared/components/palette/query-management/models/qualifying-questions/qualifying-question.model.d.ts +6 -0
  311. package/lib/shared/components/palette/query-management/models/qualifying-questions/qualifying-question.model.d.ts.map +1 -0
  312. package/lib/shared/components/palette/query-management/models/query-create-context.enum.d.ts +8 -0
  313. package/lib/shared/components/palette/query-management/models/query-create-context.enum.d.ts.map +1 -0
  314. package/lib/shared/components/palette/query-management/models/query-list/query-list-column/query-list-column.model.d.ts +7 -0
  315. package/lib/shared/components/palette/query-management/models/query-list/query-list-column/query-list-column.model.d.ts.map +1 -0
  316. package/lib/shared/components/palette/query-management/models/query-list/query-list-data/query-list-data.model.d.ts +10 -0
  317. package/lib/shared/components/palette/query-management/models/query-list/query-list-data/query-list-data.model.d.ts.map +1 -0
  318. package/lib/shared/components/palette/query-management/models/query-list/query-list-item/query-list-item.model.d.ts +22 -0
  319. package/lib/shared/components/palette/query-management/models/query-list/query-list-item/query-list-item.model.d.ts.map +1 -0
  320. package/lib/shared/components/palette/query-management/read-query-management-field.component.d.ts +18 -0
  321. package/lib/shared/components/palette/query-management/read-query-management-field.component.d.ts.map +1 -0
  322. package/lib/shared/components/palette/query-management/utils/query-management.utils.d.ts +12 -0
  323. package/lib/shared/components/palette/query-management/utils/query-management.utils.d.ts.map +1 -0
  324. package/lib/shared/components/palette/utils/field-label.pipe.d.ts +3 -0
  325. package/lib/shared/components/palette/utils/field-label.pipe.d.ts.map +1 -1
  326. package/lib/shared/components/palette/utils/first-error.pipe.d.ts +8 -5
  327. package/lib/shared/components/palette/utils/first-error.pipe.d.ts.map +1 -1
  328. package/lib/shared/components/palette/yes-no/read-yes-no-field.component.d.ts.map +1 -1
  329. package/lib/shared/domain/case-flag/flag-type.model.d.ts +6 -1
  330. package/lib/shared/domain/case-flag/flag-type.model.d.ts.map +1 -1
  331. package/lib/shared/domain/case-view/case-view-event-ids.enum.d.ts +5 -0
  332. package/lib/shared/domain/case-view/case-view-event-ids.enum.d.ts.map +1 -0
  333. package/lib/shared/domain/case-view/case-view-trigger.model.d.ts +0 -1
  334. package/lib/shared/domain/case-view/case-view-trigger.model.d.ts.map +1 -1
  335. package/lib/shared/domain/case-view/service-org-response.model.d.ts +14 -0
  336. package/lib/shared/domain/case-view/service-org-response.model.d.ts.map +1 -0
  337. package/lib/shared/domain/definition/display-context-enum.model.d.ts +3 -1
  338. package/lib/shared/domain/definition/display-context-enum.model.d.ts.map +1 -1
  339. package/lib/shared/domain/http/http-error.model.d.ts +0 -1
  340. package/lib/shared/domain/http/http-error.model.d.ts.map +1 -1
  341. package/lib/shared/fixture/shared.test.fixture.d.ts.map +1 -1
  342. package/lib/shared/pipes/complex/ccd-read-fields-filter.pipe.d.ts.map +1 -1
  343. package/lib/shared/pipes/generic/enum-display-description/enum-display-description.pipe.d.ts +8 -0
  344. package/lib/shared/pipes/generic/enum-display-description/enum-display-description.pipe.d.ts.map +1 -0
  345. package/lib/shared/pipes/generic/index.d.ts +2 -0
  346. package/lib/shared/pipes/generic/index.d.ts.map +1 -0
  347. package/lib/shared/pipes/index.d.ts +2 -1
  348. package/lib/shared/pipes/index.d.ts.map +1 -1
  349. package/lib/shared/pipes/pipes.module.d.ts +3 -2
  350. package/lib/shared/pipes/pipes.module.d.ts.map +1 -1
  351. package/lib/shared/services/case-flag/case-flag-refdata.service.d.ts +3 -2
  352. package/lib/shared/services/case-flag/case-flag-refdata.service.d.ts.map +1 -1
  353. package/lib/shared/services/common-data-service/common-data-service.d.ts +2 -0
  354. package/lib/shared/services/common-data-service/common-data-service.d.ts.map +1 -1
  355. package/lib/shared/services/fields/fields.purger.d.ts.map +1 -1
  356. package/lib/shared/services/fields/fields.utils.d.ts +1 -0
  357. package/lib/shared/services/fields/fields.utils.d.ts.map +1 -1
  358. package/lib/shared/services/form/form-value.service.d.ts +1 -1
  359. package/lib/shared/services/form/form-value.service.d.ts.map +1 -1
  360. package/lib/shared/services/jurisdiction/jurisdiction.service.d.ts.map +1 -1
  361. package/lib/shared/services/request/request.options.builder.d.ts.map +1 -1
  362. package/package.json +1 -1
@@ -0,0 +1,5 @@
1
+ export declare enum UpdateFlagAddTranslationStep {
2
+ HINT_TEXT = "Write translation for flag description or comments in the boxes provided.",
3
+ CHARACTER_LIMIT_INFO = "You can enter up to 200 characters"
4
+ }
5
+ //# sourceMappingURL=update-flag-add-translation-step.enum.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"update-flag-add-translation-step.enum.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/case-flag/enums/update-flag-add-translation-step.enum.ts"],"names":[],"mappings":"AAAA,oBAAY,4BAA4B;IACtC,SAAS,8EAA8E;IACvF,oBAAoB,uCAAuC;CAC5D"}
@@ -1,5 +1,9 @@
1
1
  export declare enum UpdateFlagErrorMessage {
2
2
  FLAG_COMMENTS_NOT_ENTERED = "Please enter comments for this flag",
3
- FLAG_COMMENTS_CHAR_LIMIT_EXCEEDED = "Comments for this flag must be 200 characters or fewer"
3
+ FLAG_COMMENTS_CHAR_LIMIT_EXCEEDED = "Comments for this flag must be 200 characters or fewer",
4
+ STATUS_REASON_NOT_ENTERED = "Comments and/or the name of the person approving the decision should be entered",
5
+ STATUS_REASON_NOT_ENTERED_EXTERNAL = "You must explain why the support is no longer needed",
6
+ STATUS_REASON_CHAR_LIMIT_EXCEEDED = "Comments must be 200 characters or fewer",
7
+ NONE = ""
4
8
  }
5
9
  //# sourceMappingURL=update-flag-error-message.enum.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"update-flag-error-message.enum.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/case-flag/enums/update-flag-error-message.enum.ts"],"names":[],"mappings":"AAAA,oBAAY,sBAAsB;IAChC,yBAAyB,wCAAwC;IACjE,iCAAiC,2DAA2D;CAC7F"}
1
+ {"version":3,"file":"update-flag-error-message.enum.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/case-flag/enums/update-flag-error-message.enum.ts"],"names":[],"mappings":"AAAA,oBAAY,sBAAsB;IAChC,yBAAyB,wCAAwC;IACjE,iCAAiC,2DAA2D;IAC5F,yBAAyB,oFAAoF;IAC7G,kCAAkC,yDAAyD;IAC3F,iCAAiC,6CAA6C;IAC9E,IAAI,KAAK;CACV"}
@@ -1,5 +1,10 @@
1
1
  export declare enum UpdateFlagStep {
2
- HINT_TEXT = "Explain why you are updating this flag. Do not include any sensitive information such as personal details.",
3
- CHARACTER_LIMIT_INFO = "You can enter up to 200 characters"
2
+ COMMENT_HINT_TEXT_INTERNAL = "Explain why you are updating this flag. Do not include any sensitive information such as personal details.",
3
+ COMMENT_HINT_TEXT_INTERNAL_2_POINT_1 = "Update the comments describing the user's support needs or flag description. Do not include any sensitive information such as personal details.",
4
+ COMMENT_HINT_TEXT_EXTERNAL = "Do not include any sensitive information such as personal details.",
5
+ COMMENT_FIELD_LABEL_EXTERNAL = "Please provide your comments below",
6
+ CHARACTER_LIMIT_INFO = "You can enter up to 200 characters",
7
+ STATUS_HINT_TEXT = "Describe reason for status change.",
8
+ WARNING_TEXT = "The details entered here MAY be visible to the party in the future."
4
9
  }
5
10
  //# sourceMappingURL=update-flag-step.enum.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"update-flag-step.enum.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/case-flag/enums/update-flag-step.enum.ts"],"names":[],"mappings":"AAAA,oBAAY,cAAc;IACxB,SAAS,+GAA+G;IACxH,oBAAoB,uCAAuC;CAC5D"}
1
+ {"version":3,"file":"update-flag-step.enum.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/case-flag/enums/update-flag-step.enum.ts"],"names":[],"mappings":"AAAA,oBAAY,cAAc;IACxB,0BAA0B,+GAA+G;IACzI,oCAAoC,oJAAqJ;IACzL,0BAA0B,uEAAuE;IACjG,4BAA4B,uCAAuC;IACnE,oBAAoB,uCAAuC;IAC3D,gBAAgB,uCAAuC;IACvD,YAAY,wEAAwE;CACrF"}
@@ -3,10 +3,13 @@ export declare enum CaseFlagFieldState {
3
3
  FLAG_TYPE = 1,
4
4
  FLAG_LANGUAGE_INTERPRETER = 2,
5
5
  FLAG_COMMENTS = 3,
6
- FLAG_MANAGE_CASE_FLAGS = 4,
7
- FLAG_UPDATE = 5
6
+ FLAG_STATUS = 4,
7
+ FLAG_MANAGE_CASE_FLAGS = 5,
8
+ FLAG_UPDATE = 6,
9
+ FLAG_UPDATE_WELSH_TRANSLATION = 7
8
10
  }
9
- export declare enum CaseFlagText {
10
- CAPTION = "Create a case flag"
11
+ export declare enum CaseFlagErrorMessage {
12
+ NO_EXTERNAL_FLAGS_COLLECTION = "External collection for storing this case flag has not been configured for this case type",
13
+ NO_INTERNAL_FLAGS_COLLECTION = "Internal collection for storing this case flag has not been configured for this case type"
11
14
  }
12
15
  //# sourceMappingURL=write-case-flag-field.enum.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"write-case-flag-field.enum.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/case-flag/enums/write-case-flag-field.enum.ts"],"names":[],"mappings":"AAAA,oBAAY,kBAAkB;IAC5B,aAAa,IAAA;IACb,SAAS,IAAA;IACT,yBAAyB,IAAA;IACzB,aAAa,IAAA;IACb,sBAAsB,IAAA;IACtB,WAAW,IAAA;CACZ;AAED,oBAAY,YAAY;IACtB,OAAO,uBAAuB;CAC/B"}
1
+ {"version":3,"file":"write-case-flag-field.enum.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/case-flag/enums/write-case-flag-field.enum.ts"],"names":[],"mappings":"AAAA,oBAAY,kBAAkB;IAC5B,aAAa,IAAA;IACb,SAAS,IAAA;IACT,yBAAyB,IAAA;IACzB,aAAa,IAAA;IACb,WAAW,IAAA;IACX,sBAAsB,IAAA;IACtB,WAAW,IAAA;IACX,6BAA6B,IAAA;CAC9B;AAED,oBAAY,oBAAoB;IAC9B,4BAA4B,8FAA8F;IAC1H,4BAA4B,8FAA8F;CAC3H"}
@@ -1,6 +1,7 @@
1
1
  export * from './components';
2
2
  export * from './domain';
3
3
  export * from './enums';
4
+ export * from './pipes';
4
5
  export * from './read-case-flag-field.component';
5
6
  export * from './write-case-flag-field.component';
6
7
  //# 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/case-flag/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAC;AAC7B,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,kCAAkC,CAAC;AACjD,cAAc,mCAAmC,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/case-flag/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAC;AAC7B,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,SAAS,CAAC;AACxB,cAAc,kCAAkC,CAAC;AACjD,cAAc,mCAAmC,CAAC"}
@@ -0,0 +1,19 @@
1
+ import { AsyncPipe } from '@angular/common';
2
+ import { ChangeDetectorRef, PipeTransform } from '@angular/core';
3
+ import { RpxTranslationService } from 'rpx-xui-translation';
4
+ import { Observable, Subscribable } from 'rxjs';
5
+ import { FlagType } from '../../../../domain/case-flag';
6
+ import { FlagDetail } from '../domain';
7
+ import * as i0 from "@angular/core";
8
+ export declare class FlagFieldDisplayPipe extends AsyncPipe implements PipeTransform {
9
+ private readonly translationService;
10
+ private readonly ref;
11
+ private languageObservables;
12
+ constructor(translationService: RpxTranslationService, ref: ChangeDetectorRef);
13
+ transform<T>(obj: null | undefined): null;
14
+ transform<T>(obj: Observable<T> | Subscribable<T> | Promise<T> | null | undefined): T | null;
15
+ transform<T = FlagType | FlagDetail>(value: T, fieldName: string): string | null;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<FlagFieldDisplayPipe, never>;
17
+ static ɵpipe: i0.ɵɵPipeDeclaration<FlagFieldDisplayPipe, "flagFieldDisplay", false>;
18
+ }
19
+ //# sourceMappingURL=flag-field-display.pipe.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"flag-field-display.pipe.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/case-flag/pipes/flag-field-display.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAC5C,OAAO,EAAE,iBAAiB,EAAQ,aAAa,EAAE,MAAM,eAAe,CAAC;AACvE,OAAO,EAAE,qBAAqB,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,MAAM,CAAC;AAEhD,OAAO,EAAE,QAAQ,EAAE,MAAM,8BAA8B,CAAC;AACxD,OAAO,EAAE,UAAU,EAAE,MAAM,WAAW,CAAC;;AAEvC,qBAIa,oBAAqB,SAAQ,SAAU,YAAW,aAAa;IAIxE,OAAO,CAAC,QAAQ,CAAC,kBAAkB;IACnC,OAAO,CAAC,QAAQ,CAAC,GAAG;IAJtB,OAAO,CAAC,mBAAmB,CAAyC;gBAGjD,kBAAkB,EAAE,qBAAqB,EACzC,GAAG,EAAE,iBAAiB;IAKlC,SAAS,CAAC,CAAC,EAAE,GAAG,EAAE,IAAI,GAAC,SAAS,GAAG,IAAI;IACvC,SAAS,CAAC,CAAC,EAAE,GAAG,EAAE,UAAU,CAAC,CAAC,CAAC,GAAC,YAAY,CAAC,CAAC,CAAC,GAAC,OAAO,CAAC,CAAC,CAAC,GAAC,IAAI,GAAC,SAAS,GAAG,CAAC,GAAC,IAAI;IAClF,SAAS,CAAC,CAAC,GAAG,QAAQ,GAAG,UAAU,EAAE,KAAK,EAAE,CAAC,EAAE,SAAS,EAAE,MAAM,GAAG,MAAM,GAAC,IAAI;yCAZ1E,oBAAoB;uCAApB,oBAAoB;CAiChC"}
@@ -0,0 +1,5 @@
1
+ export * from './flag-field-display.pipe';
2
+ export * from './language-interpreter-display.pipe';
3
+ export * from './manage-case-flags-label-display.pipe';
4
+ export * from './update-flag-title-display.pipe';
5
+ //# 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-flag/pipes/index.ts"],"names":[],"mappings":"AAAA,cAAc,2BAA2B,CAAC;AAC1C,cAAc,qCAAqC,CAAC;AACpD,cAAc,wCAAwC,CAAC;AACvD,cAAc,kCAAkC,CAAC"}
@@ -0,0 +1,18 @@
1
+ import { AsyncPipe } from '@angular/common';
2
+ import { ChangeDetectorRef, PipeTransform } from '@angular/core';
3
+ import { RpxTranslationService } from 'rpx-xui-translation';
4
+ import { Observable, Subscribable } from 'rxjs';
5
+ import { Language } from '../domain';
6
+ import * as i0 from "@angular/core";
7
+ export declare class LanguageInterpreterDisplayPipe extends AsyncPipe implements PipeTransform {
8
+ private readonly translationService;
9
+ private readonly ref;
10
+ private languageObservables;
11
+ constructor(translationService: RpxTranslationService, ref: ChangeDetectorRef);
12
+ transform<T>(obj: null | undefined): null;
13
+ transform<T>(obj: Observable<T> | Subscribable<T> | Promise<T> | null | undefined): T | null;
14
+ transform<T = Language>(value: T): string | null;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<LanguageInterpreterDisplayPipe, never>;
16
+ static ɵpipe: i0.ɵɵPipeDeclaration<LanguageInterpreterDisplayPipe, "languageInterpreterDisplay", false>;
17
+ }
18
+ //# sourceMappingURL=language-interpreter-display.pipe.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"language-interpreter-display.pipe.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/case-flag/pipes/language-interpreter-display.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAC5C,OAAO,EAAE,iBAAiB,EAAQ,aAAa,EAAE,MAAM,eAAe,CAAC;AACvE,OAAO,EAAE,qBAAqB,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,MAAM,CAAC;AAEhD,OAAO,EAAE,QAAQ,EAAE,MAAM,WAAW,CAAC;;AAErC,qBAIa,8BAA+B,SAAQ,SAAU,YAAW,aAAa;IAIlF,OAAO,CAAC,QAAQ,CAAC,kBAAkB;IACnC,OAAO,CAAC,QAAQ,CAAC,GAAG;IAJtB,OAAO,CAAC,mBAAmB,CAAyC;gBAGjD,kBAAkB,EAAE,qBAAqB,EACzC,GAAG,EAAE,iBAAiB;IAKlC,SAAS,CAAC,CAAC,EAAE,GAAG,EAAE,IAAI,GAAC,SAAS,GAAG,IAAI;IACvC,SAAS,CAAC,CAAC,EAAE,GAAG,EAAE,UAAU,CAAC,CAAC,CAAC,GAAC,YAAY,CAAC,CAAC,CAAC,GAAC,OAAO,CAAC,CAAC,CAAC,GAAC,IAAI,GAAC,SAAS,GAAG,CAAC,GAAC,IAAI;IAClF,SAAS,CAAC,CAAC,GAAG,QAAQ,EAAE,KAAK,EAAE,CAAC,GAAG,MAAM,GAAC,IAAI;yCAZ1C,8BAA8B;uCAA9B,8BAA8B;CAiC1C"}
@@ -0,0 +1,25 @@
1
+ import { AsyncPipe } from '@angular/common';
2
+ import { ChangeDetectorRef, PipeTransform } from '@angular/core';
3
+ import { RpxTranslationService } from 'rpx-xui-translation';
4
+ import { Observable, Subscribable } from 'rxjs';
5
+ import { FlagDetail, FlagDetailDisplayWithFormGroupPath } from '../domain';
6
+ import * as i0 from "@angular/core";
7
+ export declare class ManageCaseFlagsLabelDisplayPipe extends AsyncPipe implements PipeTransform {
8
+ private readonly translationService;
9
+ private readonly ref;
10
+ private static readonly CASE_LEVEL_CASE_FLAGS_FIELD_ID;
11
+ private languageObservables;
12
+ constructor(translationService: RpxTranslationService, ref: ChangeDetectorRef);
13
+ transform<T>(obj: null | undefined): null;
14
+ transform<T>(obj: Observable<T> | Subscribable<T> | Promise<T> | null | undefined): T | null;
15
+ transform<T = FlagDetailDisplayWithFormGroupPath>(value: T): string | null;
16
+ getPartyName(flagDisplay: FlagDetailDisplayWithFormGroupPath): Observable<string>;
17
+ getRoleOnCase(flagDisplay: FlagDetailDisplayWithFormGroupPath): string;
18
+ getFlagName(flagDetail: FlagDetail): string;
19
+ getFlagDescription(flagDetail: FlagDetail): string;
20
+ getFlagComments(flagDetail: FlagDetail): string;
21
+ private getNonFlagPathName;
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<ManageCaseFlagsLabelDisplayPipe, never>;
23
+ static ɵpipe: i0.ɵɵPipeDeclaration<ManageCaseFlagsLabelDisplayPipe, "manageCaseFlagsLabelDisplay", false>;
24
+ }
25
+ //# sourceMappingURL=manage-case-flags-label-display.pipe.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"manage-case-flags-label-display.pipe.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/case-flag/pipes/manage-case-flags-label-display.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAC5C,OAAO,EAAE,iBAAiB,EAAQ,aAAa,EAAE,MAAM,eAAe,CAAC;AACvE,OAAO,EAAE,qBAAqB,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,UAAU,EAAE,YAAY,EAAqB,MAAM,MAAM,CAAC;AAEnE,OAAO,EAAE,UAAU,EAAE,kCAAkC,EAAE,MAAM,WAAW,CAAC;;AAE3E,qBAIa,+BAAgC,SAAQ,SAAU,YAAW,aAAa;IAKnF,OAAO,CAAC,QAAQ,CAAC,kBAAkB;IACnC,OAAO,CAAC,QAAQ,CAAC,GAAG;IALtB,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,8BAA8B,CAAe;IACrE,OAAO,CAAC,mBAAmB,CAAyC;gBAGjD,kBAAkB,EAAE,qBAAqB,EACzC,GAAG,EAAE,iBAAiB;IAKlC,SAAS,CAAC,CAAC,EAAE,GAAG,EAAE,IAAI,GAAC,SAAS,GAAG,IAAI;IACvC,SAAS,CAAC,CAAC,EAAE,GAAG,EAAE,UAAU,CAAC,CAAC,CAAC,GAAC,YAAY,CAAC,CAAC,CAAC,GAAC,OAAO,CAAC,CAAC,CAAC,GAAC,IAAI,GAAC,SAAS,GAAG,CAAC,GAAC,IAAI;IAClF,SAAS,CAAC,CAAC,GAAG,kCAAkC,EAAE,KAAK,EAAE,CAAC,GAAG,MAAM,GAAC,IAAI;IAkCxE,YAAY,CAAC,WAAW,EAAE,kCAAkC,GAAG,UAAU,CAAC,MAAM,CAAC;IAYjF,aAAa,CAAC,WAAW,EAAE,kCAAkC,GAAG,MAAM;IAOtE,WAAW,CAAC,UAAU,EAAE,UAAU,GAAG,MAAM;IAQ3C,kBAAkB,CAAC,UAAU,EAAE,UAAU,GAAG,MAAM;IAelD,eAAe,CAAC,UAAU,EAAE,UAAU,GAAG,MAAM;IAStD,OAAO,CAAC,kBAAkB;yCAlGf,+BAA+B;uCAA/B,+BAA+B;CA2G3C"}
@@ -0,0 +1,21 @@
1
+ import { AsyncPipe } from '@angular/common';
2
+ import { ChangeDetectorRef, PipeTransform } from '@angular/core';
3
+ import { RpxTranslationService } from 'rpx-xui-translation';
4
+ import { Observable, Subscribable } from 'rxjs';
5
+ import { FlagDetail } from '../domain';
6
+ import * as i0 from "@angular/core";
7
+ export declare class UpdateFlagTitleDisplayPipe extends AsyncPipe implements PipeTransform {
8
+ private readonly translationService;
9
+ private readonly ref;
10
+ private languageObservables;
11
+ constructor(translationService: RpxTranslationService, ref: ChangeDetectorRef);
12
+ transform<T>(obj: null | undefined): null;
13
+ transform<T>(obj: Observable<T> | Subscribable<T> | Promise<T> | null | undefined): T | null;
14
+ transform<T = FlagDetail>(value: T): string | null;
15
+ getFlagName(flagDetail: FlagDetail): string;
16
+ getFlagDescription(flagDetail: FlagDetail): string;
17
+ getFlagComments(flagDetail: FlagDetail): string;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<UpdateFlagTitleDisplayPipe, never>;
19
+ static ɵpipe: i0.ɵɵPipeDeclaration<UpdateFlagTitleDisplayPipe, "updateFlagTitleDisplay", false>;
20
+ }
21
+ //# sourceMappingURL=update-flag-title-display.pipe.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"update-flag-title-display.pipe.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/case-flag/pipes/update-flag-title-display.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAC5C,OAAO,EAAE,iBAAiB,EAAQ,aAAa,EAAE,MAAM,eAAe,CAAC;AACvE,OAAO,EAAE,qBAAqB,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,MAAM,CAAC;AAEhD,OAAO,EAAE,UAAU,EAAE,MAAM,WAAW,CAAC;;AAEvC,qBAIa,0BAA2B,SAAQ,SAAU,YAAW,aAAa;IAI9E,OAAO,CAAC,QAAQ,CAAC,kBAAkB;IACnC,OAAO,CAAC,QAAQ,CAAC,GAAG;IAJtB,OAAO,CAAC,mBAAmB,CAAyC;gBAGjD,kBAAkB,EAAE,qBAAqB,EACzC,GAAG,EAAE,iBAAiB;IAKlC,SAAS,CAAC,CAAC,EAAE,GAAG,EAAE,IAAI,GAAC,SAAS,GAAG,IAAI;IACvC,SAAS,CAAC,CAAC,EAAE,GAAG,EAAE,UAAU,CAAC,CAAC,CAAC,GAAC,YAAY,CAAC,CAAC,CAAC,GAAC,OAAO,CAAC,CAAC,CAAC,GAAC,IAAI,GAAC,SAAS,GAAG,CAAC,GAAC,IAAI;IAClF,SAAS,CAAC,CAAC,GAAG,UAAU,EAAE,KAAK,EAAE,CAAC,GAAG,MAAM,GAAC,IAAI;IA0BhD,WAAW,CAAC,UAAU,EAAE,UAAU,GAAG,MAAM;IAU3C,kBAAkB,CAAC,UAAU,EAAE,UAAU,GAAG,MAAM;IAelD,eAAe,CAAC,UAAU,EAAE,UAAU,GAAG,MAAM;yCA/D3C,0BAA0B;uCAA1B,0BAA0B;CAuEtC"}
@@ -1,25 +1,29 @@
1
1
  import { OnInit } from '@angular/core';
2
- import { ActivatedRoute } from '@angular/router';
2
+ import { ActivatedRoute, Router } from '@angular/router';
3
+ import { CaseFlagStateService } from '../../case-editor/services/case-flag-state.service';
3
4
  import { AbstractFieldReadComponent } from '../base-field/abstract-field-read.component';
4
5
  import { PaletteContext } from '../base-field/palette-context.enum';
5
6
  import { FlagDetailDisplay, FlagsWithFormGroupPath } from './domain';
6
- import { CaseFlagSummaryListDisplayMode } from './enums';
7
+ import { CaseFlagDisplayContextParameter } from './enums';
7
8
  import * as i0 from "@angular/core";
8
9
  export declare class ReadCaseFlagFieldComponent extends AbstractFieldReadComponent implements OnInit {
9
10
  private readonly route;
11
+ private readonly router;
12
+ private readonly caseFlagStateService;
10
13
  flagsData: FlagsWithFormGroupPath[];
11
14
  partyLevelCaseFlagData: FlagsWithFormGroupPath[];
12
15
  caseLevelCaseFlagData: FlagsWithFormGroupPath;
13
16
  paletteContext: typeof PaletteContext;
14
17
  flagForSummaryDisplay: FlagDetailDisplay;
15
- summaryListDisplayMode: CaseFlagSummaryListDisplayMode;
16
- readonly caseLevelCaseFlagsFieldId = "caseFlags";
17
- readonly caseNameMissing = "Case name missing";
18
- private readonly createMode;
19
- private readonly updateMode;
20
- constructor(route: ActivatedRoute);
18
+ displayContextParameter: CaseFlagDisplayContextParameter;
19
+ caseFlagsExternalUser: boolean;
20
+ pathToFlagsFormGroup: string;
21
+ private readonly caseLevelCaseFlagsFieldId;
22
+ get caseFlagDisplayContextParameter(): typeof CaseFlagDisplayContextParameter;
23
+ constructor(route: ActivatedRoute, router: Router, caseFlagStateService: CaseFlagStateService);
21
24
  ngOnInit(): void;
22
25
  private extractNewFlagToFlagDetailDisplayObject;
26
+ navigateBackToForm(fieldState: number): void;
23
27
  static ɵfac: i0.ɵɵFactoryDeclaration<ReadCaseFlagFieldComponent, never>;
24
28
  static ɵcmp: i0.ɵɵComponentDeclaration<ReadCaseFlagFieldComponent, "ccd-read-case-flag-field", never, {}, {}, never, never, false, never>;
25
29
  }
@@ -1 +1 @@
1
- {"version":3,"file":"read-case-flag-field.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/case-flag/read-case-flag-field.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,MAAM,EAAE,MAAM,eAAe,CAAC;AAClD,OAAO,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AAGjD,OAAO,EAAE,0BAA0B,EAAE,MAAM,6CAA6C,CAAC;AACzF,OAAO,EAAE,cAAc,EAAE,MAAM,oCAAoC,CAAC;AACpE,OAAO,EAAE,iBAAiB,EAAE,sBAAsB,EAAE,MAAM,UAAU,CAAC;AACrE,OAAO,EAAE,8BAA8B,EAAE,MAAM,SAAS,CAAC;;AAEzD,qBAKa,0BAA2B,SAAQ,0BAA2B,YAAW,MAAM;IAcxF,OAAO,CAAC,QAAQ,CAAC,KAAK;IAZjB,SAAS,EAAE,sBAAsB,EAAE,CAAC;IACpC,sBAAsB,EAAE,sBAAsB,EAAE,CAAC;IACjD,qBAAqB,EAAE,sBAAsB,CAAC;IAC9C,cAAc,wBAAkB;IAChC,qBAAqB,EAAE,iBAAiB,CAAC;IACzC,sBAAsB,EAAE,8BAA8B,CAAC;IAC9D,SAAgB,yBAAyB,eAAe;IACxD,SAAgB,eAAe,uBAAuB;IACtD,OAAO,CAAC,QAAQ,CAAC,UAAU,CAAuB;IAClD,OAAO,CAAC,QAAQ,CAAC,UAAU,CAAuB;gBAG/B,KAAK,EAAE,cAAc;IAKjC,QAAQ,IAAI,IAAI;IAmDvB,OAAO,CAAC,uCAAuC;yCAtEpC,0BAA0B;2CAA1B,0BAA0B;CAyFtC"}
1
+ {"version":3,"file":"read-case-flag-field.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/case-flag/read-case-flag-field.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,MAAM,EAAE,MAAM,eAAe,CAAC;AAClD,OAAO,EAAE,cAAc,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AAGzD,OAAO,EAAE,oBAAoB,EAAE,MAAM,oDAAoD,CAAC;AAC1F,OAAO,EAAE,0BAA0B,EAAE,MAAM,6CAA6C,CAAC;AACzF,OAAO,EAAE,cAAc,EAAE,MAAM,oCAAoC,CAAC;AACpE,OAAO,EAAE,iBAAiB,EAAE,sBAAsB,EAAE,MAAM,UAAU,CAAC;AACrE,OAAO,EAAE,+BAA+B,EAAkB,MAAM,SAAS,CAAC;;AAE1E,qBAKa,0BAA2B,SAAQ,0BAA2B,YAAW,MAAM;IAgBxF,OAAO,CAAC,QAAQ,CAAC,KAAK;IACtB,OAAO,CAAC,QAAQ,CAAC,MAAM;IACvB,OAAO,CAAC,QAAQ,CAAC,oBAAoB;IAjBhC,SAAS,EAAE,sBAAsB,EAAE,CAAC;IACpC,sBAAsB,EAAE,sBAAsB,EAAE,CAAC;IACjD,qBAAqB,EAAE,sBAAsB,CAAC;IAC9C,cAAc,wBAAkB;IAChC,qBAAqB,EAAE,iBAAiB,CAAC;IACzC,uBAAuB,EAAE,+BAA+B,CAAC;IACzD,qBAAqB,UAAS;IAC9B,oBAAoB,EAAE,MAAM,CAAC;IACpC,OAAO,CAAC,QAAQ,CAAC,yBAAyB,CAAe;IAEzD,IAAW,+BAA+B,IAAI,OAAO,+BAA+B,CAEnF;gBAGkB,KAAK,EAAE,cAAc,EACrB,MAAM,EAAE,MAAM,EACd,oBAAoB,EAAE,oBAAoB;IAKtD,QAAQ,IAAI,IAAI;IA8FvB,OAAO,CAAC,uCAAuC;IAoBxC,kBAAkB,CAAC,UAAU,EAAE,MAAM,GAAG,IAAI;yCAzIxC,0BAA0B;2CAA1B,0BAA0B;CA6ItC"}
@@ -1,64 +1,89 @@
1
- import { OnInit } from '@angular/core';
1
+ import { OnDestroy, OnInit } from '@angular/core';
2
2
  import { FormGroup } from '@angular/forms';
3
3
  import { ActivatedRoute } from '@angular/router';
4
+ import { RpxTranslationService } from 'rpx-xui-translation';
5
+ import { Subscription } from 'rxjs';
4
6
  import { CaseEditDataService } from '../../../commons/case-edit-data/case-edit-data.service';
5
7
  import { CaseField, ErrorMessage } from '../../../domain';
8
+ import { FlagType } from '../../../domain/case-flag';
9
+ import { CaseFlagStateService } from '../../case-editor/services/case-flag-state.service';
6
10
  import { AbstractFieldWriteComponent } from '../base-field/abstract-field-write.component';
7
- import { CaseFlagState, FlagDetail, FlagDetailDisplayWithFormGroupPath, FlagPath, FlagsWithFormGroupPath } from './domain';
8
- import { CaseFlagFieldState, CaseFlagText } from './enums';
11
+ import { CaseFlagState, FlagDetail, FlagDetailDisplayWithFormGroupPath, FlagsWithFormGroupPath } from './domain';
12
+ import { CaseFlagFieldState } from './enums';
9
13
  import * as i0 from "@angular/core";
10
- export declare class WriteCaseFlagFieldComponent extends AbstractFieldWriteComponent implements OnInit {
14
+ export declare class WriteCaseFlagFieldComponent extends AbstractFieldWriteComponent implements OnInit, OnDestroy {
11
15
  private readonly route;
12
16
  private readonly caseEditDataService;
17
+ private readonly caseFlagStateService;
18
+ private readonly rpxTranslationService;
13
19
  formGroup: FormGroup;
14
20
  fieldState: number;
15
21
  caseFlagFieldState: typeof CaseFlagFieldState;
16
22
  errorMessages: ErrorMessage[];
17
- createFlagCaption: CaseFlagText;
18
23
  flagsData: FlagsWithFormGroupPath[];
19
24
  selectedFlag: FlagDetailDisplayWithFormGroupPath;
20
- selectedFlagsLocation: FlagsWithFormGroupPath;
21
- caseFlagParentFormGroup: FormGroup<any>;
25
+ caseFlagParentFormGroup: FormGroup;
22
26
  flagCommentsOptional: boolean;
23
27
  jurisdiction: string;
24
28
  caseTypeId: string;
25
29
  hmctsServiceId: string;
26
- flagName: string;
27
- flagPath: FlagPath[];
28
- hearingRelevantFlag: boolean;
29
- flagCode: string;
30
- listOfValues: {
31
- key: string;
32
- value: string;
33
- }[];
34
30
  isDisplayContextParameterUpdate: boolean;
31
+ isDisplayContextParameterExternal: boolean;
32
+ isDisplayContextParameter2Point1Enabled: boolean;
35
33
  caseTitle: string;
34
+ caseTitleSubscription: Subscription;
35
+ displayContextParameter: string;
36
+ determinedLocation: FlagsWithFormGroupPath;
36
37
  private allCaseFlagStagesCompleted;
37
- private readonly updateMode;
38
38
  private readonly otherFlagTypeCode;
39
+ private readonly selectedManageCaseLocation;
39
40
  readonly caseNameMissing = "Case name missing";
40
- constructor(route: ActivatedRoute, caseEditDataService: CaseEditDataService);
41
+ get flagType(): FlagType | null;
42
+ get selectedFlagsLocation(): FlagsWithFormGroupPath | null;
43
+ set selectedFlagsLocation(selectedLocation: FlagsWithFormGroupPath | null);
44
+ constructor(route: ActivatedRoute, caseEditDataService: CaseEditDataService, caseFlagStateService: CaseFlagStateService, rpxTranslationService: RpxTranslationService);
41
45
  ngOnInit(): void;
42
- setDisplayContextParameterUpdate(caseFields: CaseField[]): boolean;
46
+ setDisplayContextParameterUpdate(displayContextParameter: string): boolean;
47
+ setDisplayContextParameterExternal(displayContextParameter: string): boolean;
48
+ setDisplayContextParameter2Point1Enabled(displayContextParameter: string): boolean;
43
49
  onCaseFlagStateEmitted(caseFlagState: CaseFlagState): void;
50
+ canMoveToFinalReviewStage(caseFlagState: CaseFlagState): boolean;
44
51
  proceedToNextState(): void;
45
52
  setFlagsCaseFieldValue(): void;
46
53
  addFlagToCollection(): void;
54
+ /**
55
+ * Determines the correct location (i.e. either the internal or external instance of a `Flags` object) for a new flag,
56
+ * according to the following:
57
+ *
58
+ * * Whether the user is internal or external (no effect for external users because they can access only the external
59
+ * instance)
60
+ * * The existence of two `Flags` objects - one internal, one external - linked by the same `groupId`;
61
+ * * For flags of type "Other", whether "only visible to HMCTS staff" has been selected or not ("Other" defaults to
62
+ * externally visible);
63
+ * * For all other flag types, the value of the `externallyAvailable` attribute.
64
+ *
65
+ * If the user is internal then the new flag should be assigned to the external `Flags` instance if:
66
+ * * Such an instance exists, AND
67
+ * * The flag type is "Other" and "only visible to HMCTS staff" was not selected, OR
68
+ * * The flag type is not "Other" and `externallyAvailable` is `true`.
69
+ *
70
+ * @param isInternalUser Whether the current user is internal or not
71
+ * @param selectedFlagsLocation The currently selected location for the new flag
72
+ * @param formValues All the values from the `caseFlagParentFormGroup`
73
+ * @returns The correctly determined location: either the internal or external location (if one exists) where a groupId
74
+ * is present; the original location otherwise. **Note:** If the external location is returned as undefined, this
75
+ * indicates a configuration error
76
+ */
77
+ determineLocationForFlag(isInternalUser: boolean, selectedFlagsLocation: FlagsWithFormGroupPath, formValues: any): FlagsWithFormGroupPath;
47
78
  updateFlagInCollection(): void;
48
79
  isAtFinalState(): boolean;
49
80
  navigateToErrorElement(elementId: string): void;
50
81
  onFlagCommentsOptionalEmitted(_: any): void;
51
- /**
52
- * Set the parent {@link FormGroup} for this component's children, depending on the `Flags` {@link CaseField} instance
53
- * to which data should be attached. **Note:** The parent is not _this_ component's `FormGroup` (as might otherwise be
54
- * expected) because this component is not expected to have a value, given it is used for the empty `FlagLauncher` base
55
- * field type.
56
- *
57
- * @param pathToFlagsFormGroup The dot-delimited string that is the path to the `FormGroup` for a `Flags` instance
58
- */
59
- setCaseFlagParentFormGroup(pathToFlagsFormGroup: string): void;
60
82
  populateNewFlagDetailInstance(): FlagDetail;
61
83
  moveToFinalReviewStage(): void;
84
+ ngOnDestroy(): void;
85
+ get manageFlagFinalState(): CaseFlagFieldState.FLAG_UPDATE | CaseFlagFieldState.FLAG_UPDATE_WELSH_TRANSLATION;
86
+ setDisplayContextParameter(caseFields: CaseField[]): string;
62
87
  static ɵfac: i0.ɵɵFactoryDeclaration<WriteCaseFlagFieldComponent, never>;
63
88
  static ɵcmp: i0.ɵɵComponentDeclaration<WriteCaseFlagFieldComponent, "ccd-write-case-flag-field", never, {}, {}, never, never, false, never>;
64
89
  }
@@ -1 +1 @@
1
- {"version":3,"file":"write-case-flag-field.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/case-flag/write-case-flag-field.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,MAAM,EAAE,MAAM,eAAe,CAAC;AAClD,OAAO,EAAmB,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAC5D,OAAO,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AACjD,OAAO,EAAE,mBAAmB,EAAE,MAAM,wDAAwD,CAAC;AAC7F,OAAO,EAAE,SAAS,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAE1D,OAAO,EAAE,2BAA2B,EAAE,MAAM,8CAA8C,CAAC;AAC3F,OAAO,EAAE,aAAa,EAAE,UAAU,EAAE,kCAAkC,EAAE,QAAQ,EAAE,sBAAsB,EAAE,MAAM,UAAU,CAAC;AAC3H,OAAO,EAAE,kBAAkB,EAAkB,YAAY,EAAE,MAAM,SAAS,CAAC;;AAE3E,qBAKa,2BAA4B,SAAQ,2BAA4B,YAAW,MAAM;IA6B1F,OAAO,CAAC,QAAQ,CAAC,KAAK;IACtB,OAAO,CAAC,QAAQ,CAAC,mBAAmB;IA5B/B,SAAS,EAAE,SAAS,CAAC;IACrB,UAAU,EAAE,MAAM,CAAC;IACnB,kBAAkB,4BAAsB;IACxC,aAAa,EAAE,YAAY,EAAE,CAAM;IACnC,iBAAiB,EAAE,YAAY,CAAC;IAChC,SAAS,EAAE,sBAAsB,EAAE,CAAC;IACpC,YAAY,EAAE,kCAAkC,CAAC;IACjD,qBAAqB,EAAE,sBAAsB,CAAC;IAC9C,uBAAuB,iBAA0B;IACjD,oBAAoB,UAAS;IAC7B,YAAY,EAAE,MAAM,CAAC;IACrB,UAAU,EAAE,MAAM,CAAC;IACnB,cAAc,EAAE,MAAM,CAAC;IACvB,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,QAAQ,EAAE,CAAC;IACrB,mBAAmB,EAAE,OAAO,CAAC;IAC7B,QAAQ,EAAE,MAAM,CAAC;IACjB,YAAY,EAAE;QAAE,GAAG,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,EAAE,CAAQ;IACtD,+BAA+B,EAAE,OAAO,CAAC;IACzC,SAAS,EAAE,MAAM,CAAC;IACzB,OAAO,CAAC,0BAA0B,CAAS;IAC3C,OAAO,CAAC,QAAQ,CAAC,UAAU,CAAuB;IAElD,OAAO,CAAC,QAAQ,CAAC,iBAAiB,CAAY;IAC9C,SAAgB,eAAe,uBAAuB;gBAGnC,KAAK,EAAE,cAAc,EACrB,mBAAmB,EAAE,mBAAmB;IAKpD,QAAQ,IAAI,IAAI;IA4DhB,gCAAgC,CAAC,UAAU,EAAE,SAAS,EAAE,GAAG,OAAO;IAKlE,sBAAsB,CAAC,aAAa,EAAE,aAAa,GAAG,IAAI;IA8C1D,kBAAkB,IAAI,IAAI;IAa1B,sBAAsB,IAAI,IAAI;IAY9B,mBAAmB,IAAI,IAAI;IA4C3B,sBAAsB,IAAI,IAAI;IAwD9B,cAAc,IAAI,OAAO;IAMzB,sBAAsB,CAAC,SAAS,EAAE,MAAM,GAAG,IAAI;IAU/C,6BAA6B,CAAC,CAAC,EAAE,GAAG,GAAG,IAAI;IAIlD;;;;;;;OAOG;IACI,0BAA0B,CAAC,oBAAoB,EAAE,MAAM,GAAG,IAAI;IAI9D,6BAA6B,IAAI,UAAU;IAyB3C,sBAAsB,IAAI,IAAI;yCAxU1B,2BAA2B;2CAA3B,2BAA2B;CA+UvC"}
1
+ {"version":3,"file":"write-case-flag-field.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/case-flag/write-case-flag-field.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,SAAS,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AAC7D,OAAO,EAAmB,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAC5D,OAAO,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AACjD,OAAO,EAAE,qBAAqB,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,YAAY,EAAE,MAAM,MAAM,CAAC;AACpC,OAAO,EAAE,mBAAmB,EAAE,MAAM,wDAAwD,CAAC;AAC7F,OAAO,EAAE,SAAS,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAC1D,OAAO,EAAE,QAAQ,EAAE,MAAM,2BAA2B,CAAC;AAErD,OAAO,EAAE,oBAAoB,EAAE,MAAM,oDAAoD,CAAC;AAC1F,OAAO,EAAE,2BAA2B,EAAE,MAAM,8CAA8C,CAAC;AAC3F,OAAO,EAAE,aAAa,EAAE,UAAU,EAAE,kCAAkC,EAAE,sBAAsB,EAAE,MAAM,UAAU,CAAC;AACjH,OAAO,EAAyD,kBAAkB,EAAsC,MAAM,SAAS,CAAC;;AAExI,qBAKa,2BAA4B,SAAQ,2BAA4B,YAAW,MAAM,EAAE,SAAS;IAwCrG,OAAO,CAAC,QAAQ,CAAC,KAAK;IACtB,OAAO,CAAC,QAAQ,CAAC,mBAAmB;IACpC,OAAO,CAAC,QAAQ,CAAC,oBAAoB;IACrC,OAAO,CAAC,QAAQ,CAAC,qBAAqB;IA1CjC,SAAS,EAAE,SAAS,CAAC;IACrB,UAAU,EAAE,MAAM,CAAC;IACnB,kBAAkB,4BAAsB;IACxC,aAAa,EAAE,YAAY,EAAE,CAAM;IACnC,SAAS,EAAE,sBAAsB,EAAE,CAAC;IACpC,YAAY,EAAE,kCAAkC,CAAC;IACjD,uBAAuB,EAAE,SAAS,CAAC;IACnC,oBAAoB,UAAS;IAC7B,YAAY,EAAE,MAAM,CAAC;IACrB,UAAU,EAAE,MAAM,CAAC;IACnB,cAAc,EAAE,MAAM,CAAC;IACvB,+BAA+B,EAAE,OAAO,CAAC;IACzC,iCAAiC,EAAE,OAAO,CAAC;IAC3C,uCAAuC,EAAE,OAAO,CAAC;IACjD,SAAS,EAAE,MAAM,CAAC;IAClB,qBAAqB,EAAE,YAAY,CAAC;IACpC,uBAAuB,EAAE,MAAM,CAAC;IAChC,kBAAkB,EAAE,sBAAsB,CAAC;IAClD,OAAO,CAAC,0BAA0B,CAAS;IAE3C,OAAO,CAAC,QAAQ,CAAC,iBAAiB,CAAY;IAC9C,OAAO,CAAC,QAAQ,CAAC,0BAA0B,CAAgC;IAC3E,SAAgB,eAAe,uBAAuB;IAEtD,IAAW,QAAQ,IAAI,QAAQ,GAAG,IAAI,CAErC;IAED,IAAW,qBAAqB,IAAI,sBAAsB,GAAG,IAAI,CAEhE;IAED,IAAW,qBAAqB,CAAC,gBAAgB,EAAE,sBAAsB,GAAG,IAAI,EAI/E;gBAGkB,KAAK,EAAE,cAAc,EACrB,mBAAmB,EAAE,mBAAmB,EACxC,oBAAoB,EAAE,oBAAoB,EAC1C,qBAAqB,EAAE,qBAAqB;IAKxD,QAAQ,IAAI,IAAI;IAkFhB,gCAAgC,CAAC,uBAAuB,EAAE,MAAM,GAAG,OAAO;IAM1E,kCAAkC,CAAC,uBAAuB,EAAE,MAAM,GAAG,OAAO;IAK5E,wCAAwC,CAAC,uBAAuB,EAAE,MAAM,GAAG,OAAO;IAKlF,sBAAsB,CAAC,aAAa,EAAE,aAAa,GAAG,IAAI;IAmB1D,yBAAyB,CAAC,aAAa,EAAE,aAAa,GAAG,OAAO;IAuBhE,kBAAkB,IAAI,IAAI;IAa1B,sBAAsB,IAAI,IAAI;IAiB9B,mBAAmB,IAAI,IAAI;IAyDlC;;;;;;;;;;;;;;;;;;;;;;OAsBG;IACI,wBAAwB,CAAC,cAAc,EAAE,OAAO,EAAE,qBAAqB,EAAE,sBAAsB,EACpG,UAAU,EAAE,GAAG,GAAG,sBAAsB;IAgDnC,sBAAsB,IAAI,IAAI;IA2F9B,cAAc,IAAI,OAAO;IAQzB,sBAAsB,CAAC,SAAS,EAAE,MAAM,GAAG,IAAI;IAU/C,6BAA6B,CAAC,CAAC,EAAE,GAAG,GAAG,IAAI;IAI3C,6BAA6B,IAAI,UAAU;IAmD3C,sBAAsB,IAAI,IAAI;IAe9B,WAAW,IAAI,IAAI;IAM1B,IAAW,oBAAoB,sFAG9B;IAEM,0BAA0B,CAAC,UAAU,EAAE,SAAS,EAAE,GAAG,MAAM;yCAzhBvD,2BAA2B;2CAA3B,2BAA2B;CA4hBvC"}
@@ -1,4 +1,4 @@
1
- import { OnDestroy, OnInit } from '@angular/core';
1
+ import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core';
2
2
  import { FormArray, FormGroup } from '@angular/forms';
3
3
  import { MatLegacyDialog as MatDialog } from '@angular/material/legacy-dialog';
4
4
  import { ScrollToService } from '@nicky-lenaers/ngx-scroll-to';
@@ -19,6 +19,7 @@ export declare class WriteCollectionFieldComponent extends AbstractFieldWriteCom
19
19
  private readonly dialog;
20
20
  private readonly scrollToService;
21
21
  private readonly profileNotifier;
22
+ private readonly cdRef;
22
23
  caseFields: CaseField[];
23
24
  formGroup: FormGroup;
24
25
  formArray: FormArray;
@@ -26,7 +27,7 @@ export declare class WriteCollectionFieldComponent extends AbstractFieldWriteCom
26
27
  profileSubscription: Subscription;
27
28
  private readonly items;
28
29
  readonly collItems: CollectionItem[];
29
- constructor(dialog: MatDialog, scrollToService: ScrollToService, profileNotifier: ProfileNotifier);
30
+ constructor(dialog: MatDialog, scrollToService: ScrollToService, profileNotifier: ProfileNotifier, cdRef: ChangeDetectorRef);
30
31
  ngOnInit(): void;
31
32
  ngOnDestroy(): void;
32
33
  buildCaseField(item: any, index: number, isNew?: boolean): CaseField;
@@ -1 +1 @@
1
- {"version":3,"file":"write-collection-field.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/collection/write-collection-field.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAgC,SAAS,EAAE,MAAM,EAA2B,MAAM,eAAe,CAAC;AACzG,OAAO,EAAE,SAAS,EAAe,SAAS,EAAE,MAAM,gBAAgB,CAAC;AACnE,OAAO,EAAE,eAAe,IAAI,SAAS,EAAE,MAAM,iCAAiC,CAAC;AAE/E,OAAO,EAAE,eAAe,EAAE,MAAM,8BAA8B,CAAC;AAE/D,OAAO,EAAE,YAAY,EAAE,MAAM,MAAM,CAAC;AAIpC,OAAO,EAAE,SAAS,EAAE,MAAM,6CAA6C,CAAC;AACxE,OAAO,EAAE,OAAO,EAAE,MAAM,uCAAuC,CAAC;AAGhE,OAAO,EAAE,eAAe,EAAE,MAAM,4CAA4C,CAAC;AAE7E,OAAO,EAAE,2BAA2B,EAAE,MAAM,8CAA8C,CAAC;;AAE3F,aAAK,cAAc,GAAG;IACpB,SAAS,EAAE,SAAS,CAAC;IACrB,IAAI,EAAE,GAAG,CAAC;IACV,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,SAAS,CAAC;CACtB,CAAC;AAEF,qBAKa,6BAA8B,SAAQ,2BAA4B,YAAW,MAAM,EAAE,SAAS;IAgB7F,OAAO,CAAC,QAAQ,CAAC,MAAM;IACjC,OAAO,CAAC,QAAQ,CAAC,eAAe;IAChC,OAAO,CAAC,QAAQ,CAAC,eAAe;IAhB3B,UAAU,EAAE,SAAS,EAAE,CAAM;IAG7B,SAAS,EAAE,SAAS,CAAC;IAErB,SAAS,EAAE,SAAS,CAAC;IAErB,OAAO,EAAE,OAAO,CAAC;IACjB,mBAAmB,EAAE,YAAY,CAAC;IAGzC,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAwB;IAC9C,SAAgB,SAAS,EAAE,cAAc,EAAE,CAAM;gBAEpB,MAAM,EAAE,SAAS,EAC3B,eAAe,EAAE,eAAe,EAChC,eAAe,EAAE,eAAe;IAK5C,QAAQ,IAAI,IAAI;IAkBhB,WAAW,IAAI,IAAI;IAMnB,cAAc,CAAC,IAAI,KAAA,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK,UAAQ,GAAG,SAAS;IA+E7D,aAAa,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM;IAQpC,cAAc,IAAI,OAAO;IAIzB,OAAO,CAAC,QAAQ,EAAE,OAAO,GAAG,IAAI;IAiCvC,OAAO,CAAC,mBAAmB;IAO3B,OAAO,CAAC,YAAY;IAsBpB,OAAO,CAAC,YAAY;IASpB,OAAO,CAAC,aAAa;IAOrB,OAAO,CAAC,UAAU;IAOlB,OAAO,CAAC,QAAQ;IA+BT,SAAS,CAAC,KAAK,EAAE,MAAM;IAOvB,uBAAuB;IAOvB,uBAAuB,CAAC,KAAK,EAAE,SAAS,EAAE,IAAI,EAAE,MAAM;IAOtD,uBAAuB,CAAC,KAAK,KAAA;IAe7B,eAAe,CAAC,IAAI,EAAE,GAAG,GAAG,OAAO;IAInC,uBAAuB,CAAC,KAAK,EAAE,MAAM;IASrC,SAAS,CAAC,CAAC,EAAE,MAAM;IAuB1B;;OAEG;IACH,OAAO,CAAC,cAAc;IAStB,OAAO,CAAC,wBAAwB;yCAlVrB,6BAA6B;2CAA7B,6BAA6B;CAsVzC"}
1
+ {"version":3,"file":"write-collection-field.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/collection/write-collection-field.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAgC,SAAS,EAAE,MAAM,EAA2B,MAAM,eAAe,CAAC;AAC5H,OAAO,EAAE,SAAS,EAAe,SAAS,EAAE,MAAM,gBAAgB,CAAC;AACnE,OAAO,EAAE,eAAe,IAAI,SAAS,EAAE,MAAM,iCAAiC,CAAC;AAE/E,OAAO,EAAE,eAAe,EAAE,MAAM,8BAA8B,CAAC;AAE/D,OAAO,EAAE,YAAY,EAAE,MAAM,MAAM,CAAC;AAGpC,OAAO,EAAE,SAAS,EAAE,MAAM,6CAA6C,CAAC;AACxE,OAAO,EAAE,OAAO,EAAE,MAAM,uCAAuC,CAAC;AAGhE,OAAO,EAAE,eAAe,EAAE,MAAM,4CAA4C,CAAC;AAE7E,OAAO,EAAE,2BAA2B,EAAE,MAAM,8CAA8C,CAAC;;AAE3F,aAAK,cAAc,GAAG;IACpB,SAAS,EAAE,SAAS,CAAC;IACrB,IAAI,EAAE,GAAG,CAAC;IACV,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,SAAS,CAAC;CACtB,CAAC;AAEF,qBAKa,6BAA8B,SAAQ,2BAA4B,YAAW,MAAM,EAAE,SAAS;IAgB7F,OAAO,CAAC,QAAQ,CAAC,MAAM;IACjC,OAAO,CAAC,QAAQ,CAAC,eAAe;IAChC,OAAO,CAAC,QAAQ,CAAC,eAAe;IAChC,OAAO,CAAC,QAAQ,CAAC,KAAK;IAjBjB,UAAU,EAAE,SAAS,EAAE,CAAM;IAG7B,SAAS,EAAE,SAAS,CAAC;IAErB,SAAS,EAAE,SAAS,CAAC;IAErB,OAAO,EAAE,OAAO,CAAC;IACjB,mBAAmB,EAAE,YAAY,CAAC;IAGzC,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAwB;IAC9C,SAAgB,SAAS,EAAE,cAAc,EAAE,CAAM;gBAEpB,MAAM,EAAE,SAAS,EAC3B,eAAe,EAAE,eAAe,EAChC,eAAe,EAAE,eAAe,EAChC,KAAK,EAAE,iBAAiB;IAKpC,QAAQ,IAAI,IAAI;IAkBhB,WAAW,IAAI,IAAI;IAMnB,cAAc,CAAC,IAAI,KAAA,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK,UAAQ,GAAG,SAAS;IA+E7D,aAAa,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM;IASpC,cAAc,IAAI,OAAO;IAIzB,OAAO,CAAC,QAAQ,EAAE,OAAO,GAAG,IAAI;IAgCvC,OAAO,CAAC,mBAAmB;IAO3B,OAAO,CAAC,YAAY;IAsBpB,OAAO,CAAC,YAAY;IASpB,OAAO,CAAC,aAAa;IAOrB,OAAO,CAAC,UAAU;IAOlB,OAAO,CAAC,QAAQ;IA+BT,SAAS,CAAC,KAAK,EAAE,MAAM;IAOvB,uBAAuB;IAOvB,uBAAuB,CAAC,KAAK,EAAE,SAAS,EAAE,IAAI,EAAE,MAAM;IAOtD,uBAAuB,CAAC,KAAK,KAAA;IAe7B,eAAe,CAAC,IAAI,EAAE,GAAG,GAAG,OAAO;IAInC,uBAAuB,CAAC,KAAK,EAAE,MAAM;IASrC,SAAS,CAAC,CAAC,EAAE,MAAM;IAuB1B;;OAEG;IACH,OAAO,CAAC,cAAc;IAStB,OAAO,CAAC,wBAAwB;yCAnVrB,6BAA6B;2CAA7B,6BAA6B;CAuVzC"}
@@ -1 +1 @@
1
- {"version":3,"file":"read-complex-field.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/complex/read-complex-field.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoB,MAAM,EAAE,MAAM,eAAe,CAAC;AACzD,OAAO,EAAE,SAAS,EAAE,MAAM,4BAA4B,CAAC;AACvD,OAAO,EAAE,0BAA0B,EAAE,MAAM,6CAA6C,CAAC;AACzF,OAAO,EAAE,cAAc,EAAE,MAAM,oCAAoC,CAAC;;AAEpE,qBAIa,yBAA0B,SAAQ,0BAA2B,YAAW,MAAM;IAGlF,UAAU,EAAE,SAAS,EAAE,CAAM;IAE7B,cAAc,wBAAkB;IAEhC,QAAQ,IAAI,IAAI;yCAPZ,yBAAyB;2CAAzB,yBAAyB;CAgCrC"}
1
+ {"version":3,"file":"read-complex-field.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/complex/read-complex-field.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoB,MAAM,EAAE,MAAM,eAAe,CAAC;AACzD,OAAO,EAAE,SAAS,EAAE,MAAM,4BAA4B,CAAC;AACvD,OAAO,EAAE,0BAA0B,EAAE,MAAM,6CAA6C,CAAC;AACzF,OAAO,EAAE,cAAc,EAAE,MAAM,oCAAoC,CAAC;;AAEpE,qBAIa,yBAA0B,SAAQ,0BAA2B,YAAW,MAAM;IAGlF,UAAU,EAAE,SAAS,EAAE,CAAM;IAE7B,cAAc,wBAAkB;IAEhC,QAAQ,IAAI,IAAI;yCAPZ,yBAAyB;2CAAzB,yBAAyB;CA6BrC"}
@@ -0,0 +1,6 @@
1
+ export declare enum SortOrder {
2
+ ASCENDING = 0,
3
+ DESCENDING = 1,
4
+ UNSORTED = 2
5
+ }
6
+ //# sourceMappingURL=sort-order.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"sort-order.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/complex/sort-order.ts"],"names":[],"mappings":"AAAA,oBAAY,SAAS;IACnB,SAAS,IAAA;IAAE,UAAU,IAAA;IAAE,QAAQ,IAAA;CAChC"}
@@ -1 +1 @@
1
- {"version":3,"file":"write-document-field.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/document/write-document-field.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,SAAS,EAAE,MAAM,EAAa,MAAM,eAAe,CAAC;AAEpF,OAAO,EAAE,eAAe,IAAI,SAAS,EAAE,MAAM,iCAAiC,CAAC;AAE/E,OAAO,EAAE,YAAY,EAAE,MAAM,MAAM,CAAC;AACpC,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAK3D,OAAO,EAAE,yBAAyB,EAAE,MAAM,mEAAmE,CAAA;AAC7G,OAAO,EAAE,mBAAmB,EAAE,MAAM,qDAAqD,CAAC;AAC1F,OAAO,EAAE,YAAY,EAAE,MAAM,0CAA0C,CAAC;AAGxE,OAAO,EAAE,2BAA2B,EAAE,MAAM,8CAA8C,CAAC;AAC3F,OAAO,EAAE,sBAAsB,EAAE,MAAM,6BAA6B,CAAC;;AAErE,qBAIa,2BAA4B,SAAQ,2BAA4B,YAAW,MAAM,EAAE,SAAS;IA+BrG,OAAO,CAAC,QAAQ,CAAC,SAAS;IAC1B,OAAO,CAAC,QAAQ,CAAC,YAAY;IAC7B,OAAO,CAAC,QAAQ,CAAC,kBAAkB;IAC5B,MAAM,EAAE,SAAS;IACxB,OAAO,CAAC,QAAQ,CAAC,sBAAsB;IACvC,OAAO,CAAC,QAAQ,CAAC,mBAAmB;IAnCtC,gBAAuB,YAAY,kBAAkB;IACrD,gBAAuB,mBAAmB,yBAAyB;IACnE,gBAAuB,iBAAiB,uBAAuB;IAC/D,gBAAuB,aAAa,mBAAmB;IACvD,gBAAuB,0BAA0B,mBAAmB;IACpE,gBAAuB,0BAA0B,6DAA6D;IAC9G,gBAAuB,0BAA0B,kBAAkB;IAEjB,SAAS,EAAE,UAAU,CAAC;IAEjE,YAAY,EAAE,IAAI,CAAC;IACnB,KAAK,UAAQ;IACb,kBAAkB,EAAE,MAAM,CAAC;IAC3B,oBAAoB,EAAE,MAAM,CAAC;IAC7B,sBAAsB,EAAE,OAAO,CAAC;IAGhC,sBAAsB,EAAE,YAAY,CAAC;IACrC,kBAAkB,EAAE,YAAY,CAAC;IACjC,wBAAwB,EAAE,YAAY,CAAC;IACvC,gBAAgB,EAAE,YAAY,CAAC;IAEtC,OAAO,CAAC,gBAAgB,CAAY;IACpC,OAAO,CAAC,YAAY,CAAkB;IACtC,OAAO,CAAC,YAAY,CAAU;IAEvB,cAAc,EAAE,MAAM,CAAC;IACvB,UAAU,EAAE,MAAM,CAAC;gBAGP,SAAS,EAAE,iBAAiB,EAC5B,YAAY,EAAE,YAAY,EAC1B,kBAAkB,EAAE,yBAAyB,EACvD,MAAM,EAAE,SAAS,EACP,sBAAsB,EAAE,sBAAsB,EAC9C,mBAAmB,EAAE,mBAAmB;IAKpD,QAAQ,IAAI,IAAI;IAkBhB,WAAW,IAAI,IAAI;IAenB,kBAAkB,IAAI,OAAO;IAI7B,YAAY,IAAI,IAAI;IAUpB,oBAAoB,IAAI,IAAI;IAQ5B,eAAe,CAAC,SAAS,EAAE,GAAG,GAAG,IAAI;IAiBrC,cAAc,IAAI,IAAI;IAItB,eAAe,IAAI,IAAI;IASvB,cAAc,IAAI,OAAO;IAQzB,mBAAmB,IAAI,GAAG;IAQjC,OAAO,CAAC,WAAW;IAUnB,OAAO,CAAC,eAAe;IAQvB,OAAO,CAAC,UAAU;IAalB,OAAO,CAAC,sBAAsB;IAmB9B,OAAO,CAAC,qBAAqB;IAI7B,OAAO,CAAC,yBAAyB;IAKjC,OAAO,CAAC,gBAAgB;IAGxB,OAAO,CAAC,4BAA4B;IAgBpC,OAAO,CAAC,kBAAkB;IAS1B,OAAO,CAAC,+BAA+B;IAevC,OAAO,CAAC,kBAAkB;IAe1B,OAAO,CAAC,eAAe;IAQvB,OAAO,CAAC,uBAAuB;IAe/B,OAAO,CAAC,0BAA0B;IAyClC,OAAO,CAAC,yBAAyB;yCAnUtB,2BAA2B;2CAA3B,2BAA2B;CAwUvC"}
1
+ {"version":3,"file":"write-document-field.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/document/write-document-field.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,SAAS,EAAE,MAAM,EAAa,MAAM,eAAe,CAAC;AAEpF,OAAO,EAAE,eAAe,IAAI,SAAS,EAAE,MAAM,iCAAiC,CAAC;AAE/E,OAAO,EAAE,YAAY,EAAE,MAAM,MAAM,CAAC;AACpC,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAK3D,OAAO,EAAE,yBAAyB,EAAE,MAAM,mEAAmE,CAAA;AAC7G,OAAO,EAAE,mBAAmB,EAAE,MAAM,qDAAqD,CAAC;AAC1F,OAAO,EAAE,YAAY,EAAE,MAAM,0CAA0C,CAAC;AAGxE,OAAO,EAAE,2BAA2B,EAAE,MAAM,8CAA8C,CAAC;AAC3F,OAAO,EAAE,sBAAsB,EAAE,MAAM,6BAA6B,CAAC;;AAErE,qBAIa,2BAA4B,SAAQ,2BAA4B,YAAW,MAAM,EAAE,SAAS;IA+BrG,OAAO,CAAC,QAAQ,CAAC,SAAS;IAC1B,OAAO,CAAC,QAAQ,CAAC,YAAY;IAC7B,OAAO,CAAC,QAAQ,CAAC,kBAAkB;IAC5B,MAAM,EAAE,SAAS;IACxB,OAAO,CAAC,QAAQ,CAAC,sBAAsB;IACvC,OAAO,CAAC,QAAQ,CAAC,mBAAmB;IAnCtC,gBAAuB,YAAY,kBAAkB;IACrD,gBAAuB,mBAAmB,yBAAyB;IACnE,gBAAuB,iBAAiB,uBAAuB;IAC/D,gBAAuB,aAAa,mBAAmB;IACvD,gBAAuB,0BAA0B,mBAAmB;IACpE,gBAAuB,0BAA0B,6DAA6D;IAC9G,gBAAuB,0BAA0B,kBAAkB;IAEjB,SAAS,EAAE,UAAU,CAAC;IAEjE,YAAY,EAAE,IAAI,CAAC;IACnB,KAAK,UAAQ;IACb,kBAAkB,EAAE,MAAM,CAAC;IAC3B,oBAAoB,EAAE,MAAM,CAAC;IAC7B,sBAAsB,EAAE,OAAO,CAAC;IAGhC,sBAAsB,EAAE,YAAY,CAAC;IACrC,kBAAkB,EAAE,YAAY,CAAC;IACjC,wBAAwB,EAAE,YAAY,CAAC;IACvC,gBAAgB,EAAE,YAAY,CAAC;IAEtC,OAAO,CAAC,gBAAgB,CAAY;IACpC,OAAO,CAAC,YAAY,CAAkB;IACtC,OAAO,CAAC,YAAY,CAAU;IAEvB,cAAc,EAAE,MAAM,CAAC;IACvB,UAAU,EAAE,MAAM,CAAC;gBAGP,SAAS,EAAE,iBAAiB,EAC5B,YAAY,EAAE,YAAY,EAC1B,kBAAkB,EAAE,yBAAyB,EACvD,MAAM,EAAE,SAAS,EACP,sBAAsB,EAAE,sBAAsB,EAC9C,mBAAmB,EAAE,mBAAmB;IAKpD,QAAQ,IAAI,IAAI;IAkBhB,WAAW,IAAI,IAAI;IAenB,kBAAkB,IAAI,OAAO;IAI7B,YAAY,IAAI,IAAI;IAUpB,oBAAoB,IAAI,IAAI;IAQ5B,eAAe,CAAC,SAAS,EAAE,GAAG,GAAG,IAAI;IAiBrC,cAAc,IAAI,IAAI;IAItB,eAAe,IAAI,IAAI;IASvB,cAAc,IAAI,OAAO;IAQzB,mBAAmB,IAAI,GAAG;IAQjC,OAAO,CAAC,WAAW;IAUnB,OAAO,CAAC,eAAe;IAQvB,OAAO,CAAC,UAAU;IAalB,OAAO,CAAC,sBAAsB;IAmB9B,OAAO,CAAC,qBAAqB;IAI7B,OAAO,CAAC,yBAAyB;IAKjC,OAAO,CAAC,gBAAgB;IAGxB,OAAO,CAAC,4BAA4B;IAgBpC,OAAO,CAAC,kBAAkB;IAS1B,OAAO,CAAC,+BAA+B;IAevC,OAAO,CAAC,kBAAkB;IAe1B,OAAO,CAAC,eAAe;IAsBvB,OAAO,CAAC,uBAAuB;IAe/B,OAAO,CAAC,0BAA0B;IAyClC,OAAO,CAAC,yBAAyB;yCAjVtB,2BAA2B;2CAA3B,2BAA2B;CAsVvC"}
@@ -1,3 +1,4 @@
1
+ export * from './../case-editor/case-event-completion';
1
2
  export * from './address';
2
3
  export * from './base-field';
3
4
  export * from './case-file-view';
@@ -28,6 +29,7 @@ export * from './palette.module';
28
29
  export * from './palette.service';
29
30
  export * from './payment';
30
31
  export * from './phone-uk';
32
+ export * from './query-management';
31
33
  export * from './text';
32
34
  export * from './text-area';
33
35
  export * from './unsupported-field.component';
@@ -1 +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,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC;AAC7B,cAAc,kBAAkB,CAAC;AACjC,cAAc,aAAa,CAAC;AAC5B,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,6BAA6B,CAAC;AAC5C,cAAc,sBAAsB,CAAC;AACrC,cAAc,SAAS,CAAC;AACxB,cAAc,cAAc,CAAC;AAC7B,cAAc,oBAAoB,CAAC;AACnC,cAAc,WAAW,CAAC;AAC1B,cAAc,iBAAiB,CAAC;AAChC,cAAc,SAAS,CAAC;AACxB,cAAc,gBAAgB,CAAC;AAC/B,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,kBAAkB,CAAC;AACjC,cAAc,mBAAmB,CAAC;AAClC,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC;AAC3B,cAAc,QAAQ,CAAC;AACvB,cAAc,aAAa,CAAC;AAC5B,cAAc,+BAA+B,CAAC;AAC9C,cAAc,SAAS,CAAC;AACxB,cAAc,aAAa,CAAC;AAC5B,cAAc,UAAU,CAAC"}
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,wCAAwC,CAAC;AACvD,cAAc,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC;AAC7B,cAAc,kBAAkB,CAAC;AACjC,cAAc,aAAa,CAAC;AAC5B,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,6BAA6B,CAAC;AAC5C,cAAc,sBAAsB,CAAC;AACrC,cAAc,SAAS,CAAC;AACxB,cAAc,cAAc,CAAC;AAC7B,cAAc,oBAAoB,CAAC;AACnC,cAAc,WAAW,CAAC;AAC1B,cAAc,iBAAiB,CAAC;AAChC,cAAc,SAAS,CAAC;AACxB,cAAc,gBAAgB,CAAC;AAC/B,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,kBAAkB,CAAC;AACjC,cAAc,mBAAmB,CAAC;AAClC,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC;AAC3B,cAAc,oBAAoB,CAAC;AACnC,cAAc,QAAQ,CAAC;AACvB,cAAc,aAAa,CAAC;AAC5B,cAAc,+BAA+B,CAAC;AAC9C,cAAc,SAAS,CAAC;AACxB,cAAc,aAAa,CAAC;AAC5B,cAAc,UAAU,CAAC"}
@@ -1,4 +1,4 @@
1
- import { AfterViewInit, OnInit } from '@angular/core';
1
+ import { AfterViewInit, OnDestroy, OnInit } from '@angular/core';
2
2
  import { FormGroup } from '@angular/forms';
3
3
  import { AbstractAppConfig } from '../../../../app.config';
4
4
  import { CaseEditDataService } from '../../../commons/case-edit-data';
@@ -10,7 +10,7 @@ import { CaseLink, LinkedCasesState } from './domain';
10
10
  import { LinkedCasesEventTriggers, LinkedCasesPages } from './enums';
11
11
  import { LinkedCasesService } from './services';
12
12
  import * as i0 from "@angular/core";
13
- export declare class WriteLinkedCasesFieldComponent extends AbstractFieldWriteComponent implements OnInit, AfterViewInit {
13
+ export declare class WriteLinkedCasesFieldComponent extends AbstractFieldWriteComponent implements OnInit, AfterViewInit, OnDestroy {
14
14
  private readonly appConfig;
15
15
  private readonly commonDataService;
16
16
  private readonly casesService;
@@ -22,17 +22,20 @@ export declare class WriteLinkedCasesFieldComponent extends AbstractFieldWriteCo
22
22
  linkedCasesPages: typeof LinkedCasesPages;
23
23
  linkedCasesEventTriggers: typeof LinkedCasesEventTriggers;
24
24
  linkedCases: CaseLink[];
25
+ private subscriptions;
25
26
  constructor(appConfig: AbstractAppConfig, commonDataService: CommonDataService, casesService: CasesService, linkedCasesService: LinkedCasesService, caseEditDataService: CaseEditDataService);
26
27
  ngOnInit(): void;
27
28
  initialiseCaseDetails(caseDetails: CaseView): void;
28
29
  ngAfterViewInit(): void;
29
30
  onLinkedCasesStateEmitted(linkedCasesState: LinkedCasesState): void;
30
- getLinkedCaseReasons(): void;
31
+ getLinkedCaseReasons(serviceId: number): void;
32
+ getOrgService(): void;
31
33
  proceedToNextPage(): void;
32
34
  submitLinkedCases(): void;
33
35
  isAtFinalPage(): boolean;
34
36
  getNextPage(linkedCasesState: LinkedCasesState): number;
35
37
  getLinkedCases(): void;
38
+ ngOnDestroy(): void;
36
39
  static ɵfac: i0.ɵɵFactoryDeclaration<WriteLinkedCasesFieldComponent, never>;
37
40
  static ɵcmp: i0.ɵɵComponentDeclaration<WriteLinkedCasesFieldComponent, "ccd-write-linked-cases-field", never, {}, {}, never, never, false, never>;
38
41
  }
@@ -1 +1 @@
1
- {"version":3,"file":"write-linked-cases-field.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/linked-cases/write-linked-cases-field.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAa,MAAM,EAAE,MAAM,eAAe,CAAC;AACjE,OAAO,EAAe,SAAS,EAAE,MAAM,gBAAgB,CAAC;AACxD,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAC3D,OAAO,EAAE,mBAAmB,EAAE,MAAM,iCAAiC,CAAC;AAEtE,OAAO,EAAE,QAAQ,EAAE,MAAM,2BAA2B,CAAC;AACrD,OAAO,EAAE,iBAAiB,EAAE,MAAM,2DAA2D,CAAC;AAC9F,OAAO,EAAE,YAAY,EAAE,MAAM,0CAA0C,CAAC;AACxE,OAAO,EAAE,2BAA2B,EAAE,MAAM,eAAe,CAAC;AAC5D,OAAO,EAAE,QAAQ,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AACtD,OAAO,EAA4B,wBAAwB,EAAE,gBAAgB,EAAE,MAAM,SAAS,CAAC;AAC/F,OAAO,EAAE,kBAAkB,EAAE,MAAM,YAAY,CAAC;;AAEhD,qBAIa,8BAA+B,SAAQ,2BAA4B,YAAW,MAAM,EAAE,aAAa;IAS5G,OAAO,CAAC,QAAQ,CAAC,SAAS;IAC1B,OAAO,CAAC,QAAQ,CAAC,iBAAiB;IAClC,OAAO,CAAC,QAAQ,CAAC,YAAY;IAC7B,OAAO,CAAC,QAAQ,CAAC,kBAAkB;IACnC,OAAO,CAAC,QAAQ,CAAC,mBAAmB;IAZ/B,YAAY,EAAE,SAAS,CAAC;IACxB,WAAW,EAAE,QAAQ,CAAC;IACtB,eAAe,EAAE,MAAM,CAAC;IACxB,gBAAgB,0BAAoB;IACpC,wBAAwB,kCAA4B;IACpD,WAAW,EAAE,QAAQ,EAAE,CAAM;gBAGjB,SAAS,EAAE,iBAAiB,EAC5B,iBAAiB,EAAE,iBAAiB,EACpC,YAAY,EAAE,YAAY,EAC1B,kBAAkB,EAAE,kBAAkB,EACtC,mBAAmB,EAAE,mBAAmB;IAIpD,QAAQ,IAAI,IAAI;IAoBhB,qBAAqB,CAAC,WAAW,EAAE,QAAQ,GAAG,IAAI;IAUlD,eAAe,IAAI,IAAI;IAWvB,yBAAyB,CAAC,gBAAgB,EAAE,gBAAgB,GAAG,IAAI;IAgBnE,oBAAoB,IAAI,IAAI;IAa5B,iBAAiB,IAAI,IAAI;IAczB,iBAAiB,IAAI,IAAI;IAWzB,aAAa,IAAI,OAAO;IAIxB,WAAW,CAAC,gBAAgB,EAAE,gBAAgB,GAAG,MAAM;IAUvD,cAAc,IAAI,IAAI;yCA9HlB,8BAA8B;2CAA9B,8BAA8B;CAoJ1C"}
1
+ {"version":3,"file":"write-linked-cases-field.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/linked-cases/write-linked-cases-field.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAa,SAAS,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AAC5E,OAAO,EAAe,SAAS,EAAE,MAAM,gBAAgB,CAAC;AACxD,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAC3D,OAAO,EAAE,mBAAmB,EAAE,MAAM,iCAAiC,CAAC;AAEtE,OAAO,EAAE,QAAQ,EAAE,MAAM,2BAA2B,CAAC;AACrD,OAAO,EAAE,iBAAiB,EAAE,MAAM,2DAA2D,CAAC;AAC9F,OAAO,EAAE,YAAY,EAAE,MAAM,0CAA0C,CAAC;AACxE,OAAO,EAAE,2BAA2B,EAAE,MAAM,eAAe,CAAC;AAC5D,OAAO,EAAE,QAAQ,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AACtD,OAAO,EAA4B,wBAAwB,EAAE,gBAAgB,EAAE,MAAM,SAAS,CAAC;AAC/F,OAAO,EAAE,kBAAkB,EAAE,MAAM,YAAY,CAAC;;AAGhD,qBAIa,8BAA+B,SAAQ,2BAA4B,YAAW,MAAM,EAAE,aAAa,EAAE,SAAS;IAUvH,OAAO,CAAC,QAAQ,CAAC,SAAS;IAC1B,OAAO,CAAC,QAAQ,CAAC,iBAAiB;IAClC,OAAO,CAAC,QAAQ,CAAC,YAAY;IAC7B,OAAO,CAAC,QAAQ,CAAC,kBAAkB;IACnC,OAAO,CAAC,QAAQ,CAAC,mBAAmB;IAb/B,YAAY,EAAE,SAAS,CAAC;IACxB,WAAW,EAAE,QAAQ,CAAC;IACtB,eAAe,EAAE,MAAM,CAAC;IACxB,gBAAgB,0BAAoB;IACpC,wBAAwB,kCAA4B;IACpD,WAAW,EAAE,QAAQ,EAAE,CAAM;IACpC,OAAO,CAAC,aAAa,CAAsB;gBAGxB,SAAS,EAAE,iBAAiB,EAC5B,iBAAiB,EAAE,iBAAiB,EACpC,YAAY,EAAE,YAAY,EAC1B,kBAAkB,EAAE,kBAAkB,EACtC,mBAAmB,EAAE,mBAAmB;IAIpD,QAAQ,IAAI,IAAI;IAqBhB,qBAAqB,CAAC,WAAW,EAAE,QAAQ,GAAG,IAAI;IAUlD,eAAe,IAAI,IAAI;IAWvB,yBAAyB,CAAC,gBAAgB,EAAE,gBAAgB,GAAG,IAAI;IAgBnE,oBAAoB,CAAC,SAAS,EAAE,MAAM,GAAG,IAAI;IAcpD,aAAa,IAAI,IAAI;IAUd,iBAAiB,IAAI,IAAI;IAczB,iBAAiB,IAAI,IAAI;IAWzB,aAAa,IAAI,OAAO;IAIxB,WAAW,CAAC,gBAAgB,EAAE,gBAAgB,GAAG,MAAM;IAUvD,cAAc,IAAI,IAAI;IAuB7B,WAAW;yCAlKA,8BAA8B;2CAA9B,8BAA8B;CAqK1C"}
@@ -1,2 +1,3 @@
1
1
  export * from './markdown.component';
2
+ export * from './markdown-component.module';
2
3
  //# 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/markdown/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/markdown/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAC;AACrC,cAAc,6BAA6B,CAAC"}
@@ -0,0 +1,13 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./markdown.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@angular/forms";
5
+ import * as i4 from "rpx-xui-translation";
6
+ import * as i5 from "../../../pipes/pipes.module";
7
+ import * as i6 from "ngx-md";
8
+ export declare class MarkdownComponentModule {
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<MarkdownComponentModule, never>;
10
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MarkdownComponentModule, [typeof i1.MarkdownComponent], [typeof i2.CommonModule, typeof i3.ReactiveFormsModule, typeof i4.RpxTranslationModule, typeof i5.PipesModule, typeof i6.NgxMdModule], [typeof i1.MarkdownComponent]>;
11
+ static ɵinj: i0.ɵɵInjectorDeclaration<MarkdownComponentModule>;
12
+ }
13
+ //# sourceMappingURL=markdown-component.module.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"markdown-component.module.d.ts","sourceRoot":"","sources":["../../../../../../../projects/ccd-case-ui-toolkit/src/lib/shared/components/palette/markdown/markdown-component.module.ts"],"names":[],"mappings":";;;;;;;AAQA,qBAea,uBAAuB;yCAAvB,uBAAuB;0CAAvB,uBAAuB;0CAAvB,uBAAuB;CAAG"}