@hmcts/rpx-xui-common-lib 2.1.2-angular-upgrade-11 → 2.1.2-google-analytics

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 (513) hide show
  1. package/README.md +1 -1
  2. package/esm2022/hmcts-rpx-xui-common-lib.mjs +5 -0
  3. package/esm2022/lib/components/accessibility/accessibility.component.mjs +833 -0
  4. package/esm2022/lib/components/checkbox-list/checkbox-list.component.mjs +232 -0
  5. package/esm2022/lib/components/contact-details/contact-details.component.mjs +123 -0
  6. package/esm2022/lib/components/cookie-banner/cookie-banner.component.mjs +151 -0
  7. package/esm2022/lib/components/due-date/due-date.component.mjs +141 -0
  8. package/esm2022/lib/components/exui-main-wrapper/exui-page-wrapper.component.mjs +80 -0
  9. package/esm2022/lib/components/find-location/find-location.component.mjs +220 -0
  10. package/esm2022/lib/components/find-person/find-person.component.mjs +234 -0
  11. package/esm2022/lib/components/find-service/find-service.component.mjs +193 -0
  12. package/esm2022/lib/components/find-task-name/find-task-name.component.mjs +200 -0
  13. package/esm2022/lib/components/generic-filter/generic-filter-utils.mjs +21 -0
  14. package/esm2022/lib/components/generic-filter/generic-filter.component.mjs +1224 -0
  15. package/esm2022/lib/components/hmcts-session-dialog/hmcts-session-dialog.component.mjs +56 -0
  16. package/esm2022/lib/components/index.mjs +2 -0
  17. package/esm2022/lib/components/invite-user-form/invite-user-form.component.mjs +51 -0
  18. package/esm2022/lib/components/invite-user-permissions/invite-user-permission.component.mjs +54 -0
  19. package/esm2022/lib/components/loading-spinner/loading-spinner.component.mjs +33 -0
  20. package/esm2022/lib/components/pagination/pagination.component.mjs +92 -0
  21. package/esm2022/lib/components/public_api.mjs +39 -0
  22. package/esm2022/lib/components/search-judicials/search-judicials.component.mjs +185 -0
  23. package/esm2022/lib/components/search-location/search-location.component.mjs +240 -0
  24. package/esm2022/lib/components/search-service/search-service.component.mjs +94 -0
  25. package/esm2022/lib/components/search-venue/search-venue.component.mjs +188 -0
  26. package/esm2022/lib/components/selected-case/selected-case.component.mjs +381 -0
  27. package/esm2022/lib/components/selected-case-confirm/selected-case-confirm.component.mjs +135 -0
  28. package/esm2022/lib/components/selected-case-list/selected-case-list.component.mjs +98 -0
  29. package/esm2022/lib/components/service-message/service-message.component.mjs +62 -0
  30. package/esm2022/lib/components/service-messages/service-messages.component.mjs +165 -0
  31. package/esm2022/lib/components/share-case/share-case.component.mjs +427 -0
  32. package/esm2022/lib/components/share-case-confirm/share-case-confirm.component.mjs +85 -0
  33. package/esm2022/lib/components/tab/tab.component.mjs +40 -0
  34. package/esm2022/lib/components/tc-confirm/tc-confirm.component.mjs +66 -0
  35. package/esm2022/lib/components/terms-and-conditions/tc-display/tc-display-html/tc-display-html.component.mjs +17 -0
  36. package/esm2022/lib/components/terms-and-conditions/tc-display/tc-display-plain/tc-display-plain.component.mjs +17 -0
  37. package/esm2022/lib/components/terms-and-conditions/terms-and-conditions.component.mjs +58 -0
  38. package/esm2022/lib/components/user-details/user-details.component.mjs +276 -0
  39. package/esm2022/lib/components/user-list/user-list.component.mjs +100 -0
  40. package/esm2022/lib/components/user-select/user-select.component.mjs +94 -0
  41. package/esm2022/lib/components/write-address/write-address.component.mjs +342 -0
  42. package/esm2022/lib/components/write-address-inputs/write-address-inputs.component.mjs +165 -0
  43. package/esm2022/lib/directives/feature-toggle/feature-toggle.directive.mjs +41 -0
  44. package/esm2022/lib/directives/index.mjs +2 -0
  45. package/esm2022/lib/directives/let/let.directive.mjs +29 -0
  46. package/esm2022/lib/directives/public-api.mjs +3 -0
  47. package/esm2022/lib/exui-common-lib.module.mjs +313 -0
  48. package/esm2022/lib/gov-ui/components/gov-uk-checkbox/gov-uk-checkbox.component.mjs +55 -0
  49. package/esm2022/lib/gov-ui/components/gov-uk-checkboxes/gov-uk-checkboxes.component.mjs +137 -0
  50. package/esm2022/lib/gov-ui/components/gov-uk-date/gov-uk-date.component.mjs +127 -0
  51. package/esm2022/lib/gov-ui/components/gov-uk-error-message/gov-uk-error-message.component.mjs +46 -0
  52. package/esm2022/lib/gov-ui/components/gov-uk-fieldset/gov-uk-fieldset.component.mjs +79 -0
  53. package/esm2022/lib/gov-ui/components/gov-uk-file-upload/gov-uk-file-upload.component.mjs +79 -0
  54. package/esm2022/lib/gov-ui/components/gov-uk-form-group-wrapper/gov-uk-form-group-wrapper.component.mjs +45 -0
  55. package/esm2022/lib/gov-ui/components/gov-uk-input/gov-uk-input.component.mjs +71 -0
  56. package/esm2022/lib/gov-ui/components/gov-uk-label/gov-uk-label.component.mjs +84 -0
  57. package/esm2022/lib/gov-ui/components/gov-uk-radio/gov-uk-radio.component.mjs +48 -0
  58. package/esm2022/lib/gov-ui/components/gov-uk-radios/gov-uk-radios.component.mjs +42 -0
  59. package/esm2022/lib/gov-ui/components/gov-uk-select/gov-uk-select.component.mjs +80 -0
  60. package/esm2022/lib/gov-ui/components/gov-uk-table/gov-uk-table.component.mjs +185 -0
  61. package/esm2022/lib/gov-ui/components/gov-uk-textarea/gov-uk-textarea.component.mjs +57 -0
  62. package/esm2022/lib/gov-ui/components/hmcts-banner/hmcts-banner-info.interface.mjs +2 -0
  63. package/esm2022/lib/gov-ui/components/hmcts-banner/hmcts-banner.component.mjs +111 -0
  64. package/esm2022/lib/gov-ui/components/hmcts-error-summary/hmcts-error-summary.component.mjs +140 -0
  65. package/esm2022/lib/gov-ui/components/hmcts-identity-bar/hmcts-identity-bar.component.mjs +34 -0
  66. package/esm2022/lib/gov-ui/components/hmcts-main-wrapper/hmcts-main-wrapper.component.mjs +129 -0
  67. package/esm2022/lib/gov-ui/components/hmcts-pagination/hmcts-pagination.component.mjs +204 -0
  68. package/esm2022/lib/gov-ui/components/hmcts-primary-navigation/hmcts-primary-navigation.component.mjs +60 -0
  69. package/esm2022/lib/gov-ui/components/hmcts-sub-navigation/hmcts-sub-navigation.component.mjs +58 -0
  70. package/esm2022/lib/gov-ui/components/index.mjs +2 -0
  71. package/esm2022/lib/gov-ui/components/public_api.mjs +22 -0
  72. package/esm2022/lib/gov-ui/directives/remove-host.directive.mjs +30 -0
  73. package/esm2022/lib/gov-ui/gov-ui.service.mjs +14 -0
  74. package/esm2022/lib/gov-ui/index.mjs +2 -0
  75. package/esm2022/lib/gov-ui/models/checkboxes-model.mjs +2 -0
  76. package/esm2022/lib/gov-ui/models/error-messages-model.mjs +2 -0
  77. package/esm2022/lib/gov-ui/models/gov-ui-config-model.mjs +2 -0
  78. package/esm2022/lib/gov-ui/models/index.mjs +2 -0
  79. package/esm2022/lib/gov-ui/models/public_api.mjs +7 -0
  80. package/esm2022/lib/gov-ui/models/radio-buttons.model.mjs +2 -0
  81. package/esm2022/lib/gov-ui/public_api.mjs +8 -0
  82. package/esm2022/lib/gov-ui/util/helpers/html-templates.helper.mjs +22 -0
  83. package/esm2022/lib/gov-ui/validators/checkboxes-be-checked.validator.mjs +18 -0
  84. package/esm2022/lib/gov-ui/validators/date.validator.mjs +15 -0
  85. package/esm2022/lib/gov-ui/validators/index.mjs +2 -0
  86. package/esm2022/lib/gov-ui/validators/public_api.mjs +7 -0
  87. package/esm2022/lib/gov-ui/validators/radio-group.validator.mjs +15 -0
  88. package/esm2022/lib/models/address-message.enum.mjs +11 -0
  89. package/esm2022/lib/models/address-option.model.mjs +21 -0
  90. package/esm2022/lib/models/address.model.mjs +4 -0
  91. package/esm2022/lib/models/case-share.model.mjs +7 -0
  92. package/esm2022/lib/models/contact-details.model.mjs +7 -0
  93. package/esm2022/lib/models/due-date.model.mjs +8 -0
  94. package/esm2022/lib/models/feature-user.mjs +5 -0
  95. package/esm2022/lib/models/filter.model.mjs +3 -0
  96. package/esm2022/lib/models/idle-config.model.mjs +2 -0
  97. package/esm2022/lib/models/index.mjs +19 -0
  98. package/esm2022/lib/models/location.model.mjs +7 -0
  99. package/esm2022/lib/models/pagination.model.mjs +2 -0
  100. package/esm2022/lib/models/person.model.mjs +19 -0
  101. package/esm2022/lib/models/public_api.mjs +7 -0
  102. package/esm2022/lib/models/search-options.model.mjs +2 -0
  103. package/esm2022/lib/models/service-message.model.mjs +2 -0
  104. package/esm2022/lib/models/task-name.model.mjs +2 -0
  105. package/esm2022/lib/models/tcDocument.model.mjs +2 -0
  106. package/esm2022/lib/models/timeout-notification.model.mjs +2 -0
  107. package/esm2022/lib/models/user-access-type.model.mjs +2 -0
  108. package/esm2022/lib/models/user-details.model.mjs +2 -0
  109. package/esm2022/lib/models/user.model.mjs +2 -0
  110. package/esm2022/lib/pipes/capitalize/capitalize.pipe.mjs +15 -0
  111. package/esm2022/lib/pipes/index.mjs +2 -0
  112. package/esm2022/lib/services/address/address-parser.mjs +76 -0
  113. package/esm2022/lib/services/address/address-type.enum.mjs +7 -0
  114. package/esm2022/lib/services/address/address.service.mjs +55 -0
  115. package/esm2022/lib/services/case-sharing-state/case-sharing-state.service.mjs +170 -0
  116. package/esm2022/lib/services/cookie/cookie.service.mjs +48 -0
  117. package/esm2022/lib/services/feature-toggle/feature-toggle.guard.mjs +37 -0
  118. package/esm2022/lib/services/feature-toggle/feature-toggle.service.mjs +33 -0
  119. package/esm2022/lib/services/feature-toggle/launch-darkly.service.mjs +65 -0
  120. package/esm2022/lib/services/filter/filter.service.mjs +95 -0
  121. package/esm2022/lib/services/find-person/find-person.service.mjs +92 -0
  122. package/esm2022/lib/services/google-analytics/google-analytics.service.mjs +73 -0
  123. package/esm2022/lib/services/google-tag-manager/google-tag-manager.service.mjs +85 -0
  124. package/esm2022/lib/services/index.mjs +2 -0
  125. package/esm2022/lib/services/loading/loading.service.mjs +41 -0
  126. package/esm2022/lib/services/locations/location.service.mjs +38 -0
  127. package/esm2022/lib/services/manage-session/manage-session.services.mjs +50 -0
  128. package/esm2022/lib/services/public-api.mjs +18 -0
  129. package/esm2022/lib/services/ref-data/index.mjs +4 -0
  130. package/esm2022/lib/services/ref-data/models/ref-data-htmcs-service.model.mjs +2 -0
  131. package/esm2022/lib/services/ref-data/models/ref-data-region.model.mjs +2 -0
  132. package/esm2022/lib/services/ref-data/ref-data-data-access/models/ref-data-locations-by-service-code-response.model.mjs +2 -0
  133. package/esm2022/lib/services/ref-data/ref-data-data-access/ref-data-data-access.service.mjs +33 -0
  134. package/esm2022/lib/services/ref-data/ref-data.service.mjs +34 -0
  135. package/esm2022/lib/services/role-guard/role.guard.mjs +43 -0
  136. package/esm2022/lib/services/role-guard/role.service.mjs +22 -0
  137. package/esm2022/lib/services/storage/session-storage/session-storage.service.mjs +43 -0
  138. package/esm2022/lib/services/task-name/task-name.service.mjs +35 -0
  139. package/esm2022/lib/services/timeout-notifications/timeout-notifications.service.mjs +103 -0
  140. package/esm2022/lib/window.mjs +4 -0
  141. package/esm2022/public-api.mjs +12 -0
  142. package/fesm2022/hmcts-rpx-xui-common-lib.mjs +10377 -0
  143. package/fesm2022/hmcts-rpx-xui-common-lib.mjs.map +1 -0
  144. package/index.d.ts +5 -0
  145. package/lib/components/accessibility/accessibility.component.d.ts +7 -1
  146. package/lib/components/checkbox-list/checkbox-list.component.d.ts +14 -7
  147. package/lib/components/contact-details/contact-details.component.d.ts +3 -0
  148. package/lib/components/cookie-banner/cookie-banner.component.d.ts +5 -1
  149. package/lib/components/due-date/due-date.component.d.ts +12 -6
  150. package/lib/components/exui-main-wrapper/exui-page-wrapper.component.d.ts +3 -0
  151. package/lib/components/find-location/find-location.component.d.ts +16 -8
  152. package/lib/components/find-person/find-person.component.d.ts +5 -2
  153. package/lib/components/find-service/find-service.component.d.ts +29 -0
  154. package/lib/components/find-task-name/find-task-name.component.d.ts +44 -0
  155. package/lib/components/generic-filter/generic-filter-utils.d.ts +2 -5
  156. package/lib/components/generic-filter/generic-filter.component.d.ts +29 -8
  157. package/lib/components/hmcts-session-dialog/hmcts-session-dialog.component.d.ts +3 -0
  158. package/lib/components/invite-user-form/invite-user-form.component.d.ts +4 -1
  159. package/lib/components/invite-user-permissions/invite-user-permission.component.d.ts +3 -0
  160. package/lib/components/loading-spinner/loading-spinner.component.d.ts +8 -1
  161. package/lib/components/pagination/pagination.component.d.ts +3 -0
  162. package/lib/components/public_api.d.ts +11 -0
  163. package/lib/components/search-judicials/search-judicials.component.d.ts +4 -1
  164. package/lib/components/search-location/search-location.component.d.ts +27 -20
  165. package/lib/components/search-service/search-service.component.d.ts +20 -0
  166. package/lib/components/search-venue/search-venue.component.d.ts +4 -2
  167. package/lib/components/selected-case/selected-case.component.d.ts +4 -1
  168. package/lib/components/selected-case-confirm/selected-case-confirm.component.d.ts +3 -0
  169. package/lib/components/selected-case-list/selected-case-list.component.d.ts +4 -0
  170. package/lib/components/service-message/service-message.component.d.ts +9 -4
  171. package/lib/components/service-messages/service-messages.component.d.ts +15 -5
  172. package/lib/components/share-case/share-case.component.d.ts +41 -2
  173. package/lib/components/share-case-confirm/share-case-confirm.component.d.ts +3 -0
  174. package/lib/components/tab/tab.component.d.ts +3 -0
  175. package/lib/components/tc-confirm/tc-confirm.component.d.ts +3 -0
  176. package/lib/components/terms-and-conditions/tc-display/tc-display-html/tc-display-html.component.d.ts +3 -0
  177. package/lib/components/terms-and-conditions/tc-display/tc-display-plain/tc-display-plain.component.d.ts +3 -0
  178. package/lib/components/terms-and-conditions/terms-and-conditions.component.d.ts +3 -0
  179. package/lib/components/user-details/user-details.component.d.ts +4 -0
  180. package/lib/components/user-list/user-list.component.d.ts +3 -0
  181. package/lib/components/user-select/user-select.component.d.ts +5 -3
  182. package/lib/components/write-address/write-address.component.d.ts +45 -0
  183. package/lib/components/write-address-inputs/write-address-inputs.component.d.ts +16 -0
  184. package/lib/directives/feature-toggle/feature-toggle.directive.d.ts +4 -1
  185. package/lib/directives/let/let.directive.d.ts +4 -1
  186. package/lib/exui-common-lib.module.d.ts +83 -4
  187. package/lib/gov-ui/components/gov-uk-checkbox/gov-uk-checkbox.component.d.ts +3 -0
  188. package/lib/gov-ui/components/gov-uk-checkboxes/gov-uk-checkboxes.component.d.ts +17 -5
  189. package/lib/gov-ui/components/gov-uk-date/gov-uk-date.component.d.ts +3 -0
  190. package/lib/gov-ui/components/gov-uk-error-message/gov-uk-error-message.component.d.ts +3 -0
  191. package/lib/gov-ui/components/gov-uk-fieldset/gov-uk-fieldset.component.d.ts +3 -0
  192. package/lib/gov-ui/components/gov-uk-file-upload/gov-uk-file-upload.component.d.ts +3 -0
  193. package/lib/gov-ui/components/gov-uk-form-group-wrapper/gov-uk-form-group-wrapper.component.d.ts +3 -0
  194. package/lib/gov-ui/components/gov-uk-input/gov-uk-input.component.d.ts +4 -2
  195. package/lib/gov-ui/components/gov-uk-label/gov-uk-label.component.d.ts +4 -0
  196. package/lib/gov-ui/components/gov-uk-radio/gov-uk-radio.component.d.ts +3 -0
  197. package/lib/gov-ui/components/gov-uk-radios/gov-uk-radios.component.d.ts +5 -2
  198. package/lib/gov-ui/components/gov-uk-select/gov-uk-select.component.d.ts +3 -0
  199. package/lib/gov-ui/components/gov-uk-table/gov-uk-table.component.d.ts +3 -0
  200. package/lib/gov-ui/components/gov-uk-textarea/gov-uk-textarea.component.d.ts +3 -0
  201. package/lib/gov-ui/components/hmcts-banner/hmcts-banner-info.interface.d.ts +7 -0
  202. package/lib/gov-ui/components/hmcts-banner/hmcts-banner.component.d.ts +7 -2
  203. package/lib/gov-ui/components/hmcts-error-summary/hmcts-error-summary.component.d.ts +4 -1
  204. package/lib/gov-ui/components/hmcts-identity-bar/hmcts-identity-bar.component.d.ts +4 -1
  205. package/lib/gov-ui/components/hmcts-main-wrapper/hmcts-main-wrapper.component.d.ts +6 -3
  206. package/lib/gov-ui/components/hmcts-pagination/hmcts-pagination.component.d.ts +3 -0
  207. package/lib/gov-ui/components/hmcts-primary-navigation/hmcts-primary-navigation.component.d.ts +4 -1
  208. package/lib/gov-ui/components/hmcts-sub-navigation/hmcts-sub-navigation.component.d.ts +3 -0
  209. package/lib/gov-ui/components/public_api.d.ts +20 -0
  210. package/lib/gov-ui/directives/remove-host.directive.d.ts +3 -0
  211. package/lib/gov-ui/gov-ui.service.d.ts +3 -0
  212. package/lib/gov-ui/models/checkboxes-model.d.ts +4 -7
  213. package/lib/gov-ui/models/gov-ui-config-model.d.ts +2 -0
  214. package/lib/gov-ui/models/public_api.d.ts +0 -1
  215. package/lib/gov-ui/models/radio-buttons.model.d.ts +9 -0
  216. package/lib/gov-ui/public_api.d.ts +1 -0
  217. package/lib/models/address-message.enum.d.ts +9 -0
  218. package/lib/models/address-option.model.d.ts +9 -0
  219. package/lib/models/address.model.d.ts +9 -0
  220. package/lib/models/case-share.model.d.ts +5 -0
  221. package/lib/models/contact-details.model.d.ts +4 -0
  222. package/lib/models/feature-user.d.ts +4 -6
  223. package/lib/models/filter.model.d.ts +43 -9
  224. package/lib/models/index.d.ts +4 -0
  225. package/lib/models/location.model.d.ts +12 -12
  226. package/lib/models/person.model.d.ts +3 -0
  227. package/lib/models/public_api.d.ts +1 -0
  228. package/lib/models/search-options.model.d.ts +1 -1
  229. package/lib/models/service-message.model.d.ts +8 -0
  230. package/lib/models/task-name.model.d.ts +4 -0
  231. package/lib/models/user-access-type.model.d.ts +6 -0
  232. package/lib/models/user-details.model.d.ts +2 -0
  233. package/lib/pipes/capitalize/capitalize.pipe.d.ts +7 -0
  234. package/lib/pipes/index.d.ts +1 -0
  235. package/lib/services/address/address-parser.d.ts +17 -0
  236. package/lib/services/address/address-type.enum.d.ts +5 -0
  237. package/lib/services/address/address.service.d.ts +15 -0
  238. package/lib/services/case-sharing-state/case-sharing-state.service.d.ts +5 -2
  239. package/lib/services/cookie/cookie.service.d.ts +3 -0
  240. package/lib/services/feature-toggle/feature-toggle.guard.d.ts +8 -2
  241. package/lib/services/feature-toggle/feature-toggle.service.d.ts +4 -0
  242. package/lib/services/feature-toggle/launch-darkly.service.d.ts +14 -10
  243. package/lib/services/filter/filter.service.d.ts +6 -0
  244. package/lib/services/find-person/find-person.service.d.ts +5 -2
  245. package/lib/services/google-analytics/google-analytics.service.d.ts +4 -1
  246. package/lib/services/google-tag-manager/google-tag-manager.service.d.ts +5 -1
  247. package/lib/services/loading/loading.service.d.ts +5 -2
  248. package/lib/services/locations/location.service.d.ts +4 -1
  249. package/lib/services/manage-session/manage-session.services.d.ts +3 -0
  250. package/lib/services/public-api.d.ts +2 -4
  251. package/lib/services/ref-data/index.d.ts +3 -0
  252. package/lib/services/ref-data/models/ref-data-htmcs-service.model.d.ts +13 -0
  253. package/lib/services/ref-data/models/ref-data-region.model.d.ts +4 -0
  254. package/lib/services/ref-data/ref-data-data-access/models/ref-data-locations-by-service-code-response.model.d.ts +8 -0
  255. package/lib/services/ref-data/ref-data-data-access/ref-data-data-access.service.d.ts +18 -0
  256. package/lib/services/ref-data/ref-data.service.d.ts +17 -0
  257. package/lib/services/role-guard/role.guard.d.ts +7 -3
  258. package/lib/services/role-guard/role.service.d.ts +9 -4
  259. package/lib/services/{session-storage → storage/session-storage}/session-storage.service.d.ts +3 -0
  260. package/lib/services/task-name/task-name.service.d.ts +17 -0
  261. package/lib/services/timeout-notifications/timeout-notifications.service.d.ts +8 -2
  262. package/lib/window.d.ts +1 -1
  263. package/package.json +22 -22
  264. package/public-api.d.ts +1 -0
  265. package/bundles/hmcts-rpx-xui-common-lib.umd.js +0 -9742
  266. package/bundles/hmcts-rpx-xui-common-lib.umd.js.map +0 -1
  267. package/bundles/hmcts-rpx-xui-common-lib.umd.min.js +0 -16
  268. package/bundles/hmcts-rpx-xui-common-lib.umd.min.js.map +0 -1
  269. package/esm2015/hmcts-rpx-xui-common-lib.js +0 -73
  270. package/esm2015/lib/components/accessibility/accessibility.component.js +0 -20
  271. package/esm2015/lib/components/checkbox-list/checkbox-list.component.js +0 -275
  272. package/esm2015/lib/components/contact-details/contact-details.component.js +0 -27
  273. package/esm2015/lib/components/cookie-banner/cookie-banner.component.js +0 -129
  274. package/esm2015/lib/components/due-date/due-date.component.js +0 -210
  275. package/esm2015/lib/components/exui-main-wrapper/exui-page-wrapper.component.js +0 -42
  276. package/esm2015/lib/components/find-location/find-location.component.js +0 -240
  277. package/esm2015/lib/components/find-person/find-person.component.js +0 -259
  278. package/esm2015/lib/components/generic-filter/generic-filter-utils.js +0 -65
  279. package/esm2015/lib/components/generic-filter/generic-filter.component.js +0 -636
  280. package/esm2015/lib/components/hmcts-session-dialog/hmcts-session-dialog.component.js +0 -42
  281. package/esm2015/lib/components/index.js +0 -7
  282. package/esm2015/lib/components/invite-user-form/invite-user-form.component.js +0 -45
  283. package/esm2015/lib/components/invite-user-permissions/invite-user-permission.component.js +0 -44
  284. package/esm2015/lib/components/loading-spinner/loading-spinner.component.js +0 -27
  285. package/esm2015/lib/components/pagination/pagination.component.js +0 -50
  286. package/esm2015/lib/components/public_api.js +0 -33
  287. package/esm2015/lib/components/search-judicials/search-judicials.component.js +0 -249
  288. package/esm2015/lib/components/search-location/search-location.component.js +0 -294
  289. package/esm2015/lib/components/search-venue/search-venue.component.js +0 -246
  290. package/esm2015/lib/components/selected-case/selected-case.component.js +0 -316
  291. package/esm2015/lib/components/selected-case-confirm/selected-case-confirm.component.js +0 -74
  292. package/esm2015/lib/components/selected-case-list/selected-case-list.component.js +0 -94
  293. package/esm2015/lib/components/service-message/service-message.component.js +0 -40
  294. package/esm2015/lib/components/service-messages/service-messages.component.js +0 -106
  295. package/esm2015/lib/components/share-case/share-case.component.js +0 -172
  296. package/esm2015/lib/components/share-case-confirm/share-case-confirm.component.js +0 -67
  297. package/esm2015/lib/components/tab/tab.component.js +0 -45
  298. package/esm2015/lib/components/tc-confirm/tc-confirm.component.js +0 -37
  299. package/esm2015/lib/components/terms-and-conditions/tc-display/tc-display-html/tc-display-html.component.js +0 -19
  300. package/esm2015/lib/components/terms-and-conditions/tc-display/tc-display-plain/tc-display-plain.component.js +0 -19
  301. package/esm2015/lib/components/terms-and-conditions/terms-and-conditions.component.js +0 -26
  302. package/esm2015/lib/components/user-details/user-details.component.js +0 -78
  303. package/esm2015/lib/components/user-list/user-list.component.js +0 -63
  304. package/esm2015/lib/components/user-select/user-select.component.js +0 -105
  305. package/esm2015/lib/directives/feature-toggle/feature-toggle.directive.js +0 -95
  306. package/esm2015/lib/directives/index.js +0 -7
  307. package/esm2015/lib/directives/let/let.directive.js +0 -68
  308. package/esm2015/lib/directives/public-api.js +0 -8
  309. package/esm2015/lib/exui-common-lib.module.js +0 -162
  310. package/esm2015/lib/gov-ui/components/gov-uk-checkbox/gov-uk-checkbox.component.js +0 -51
  311. package/esm2015/lib/gov-ui/components/gov-uk-checkboxes/gov-uk-checkboxes.component.js +0 -32
  312. package/esm2015/lib/gov-ui/components/gov-uk-date/gov-uk-date.component.js +0 -114
  313. package/esm2015/lib/gov-ui/components/gov-uk-error-message/gov-uk-error-message.component.js +0 -34
  314. package/esm2015/lib/gov-ui/components/gov-uk-fieldset/gov-uk-fieldset.component.js +0 -43
  315. package/esm2015/lib/gov-ui/components/gov-uk-file-upload/gov-uk-file-upload.component.js +0 -57
  316. package/esm2015/lib/gov-ui/components/gov-uk-form-group-wrapper/gov-uk-form-group-wrapper.component.js +0 -37
  317. package/esm2015/lib/gov-ui/components/gov-uk-input/gov-uk-input.component.js +0 -54
  318. package/esm2015/lib/gov-ui/components/gov-uk-label/gov-uk-label.component.js +0 -31
  319. package/esm2015/lib/gov-ui/components/gov-uk-radio/gov-uk-radio.component.js +0 -51
  320. package/esm2015/lib/gov-ui/components/gov-uk-radios/gov-uk-radios.component.js +0 -32
  321. package/esm2015/lib/gov-ui/components/gov-uk-select/gov-uk-select.component.js +0 -46
  322. package/esm2015/lib/gov-ui/components/gov-uk-table/gov-uk-table.component.js +0 -69
  323. package/esm2015/lib/gov-ui/components/gov-uk-textarea/gov-uk-textarea.component.js +0 -43
  324. package/esm2015/lib/gov-ui/components/hmcts-banner/hmcts-banner.component.js +0 -35
  325. package/esm2015/lib/gov-ui/components/hmcts-error-summary/hmcts-error-summary.component.js +0 -90
  326. package/esm2015/lib/gov-ui/components/hmcts-identity-bar/hmcts-identity-bar.component.js +0 -33
  327. package/esm2015/lib/gov-ui/components/hmcts-main-wrapper/hmcts-main-wrapper.component.js +0 -75
  328. package/esm2015/lib/gov-ui/components/hmcts-pagination/hmcts-pagination.component.js +0 -49
  329. package/esm2015/lib/gov-ui/components/hmcts-primary-navigation/hmcts-primary-navigation.component.js +0 -43
  330. package/esm2015/lib/gov-ui/components/hmcts-sub-navigation/hmcts-sub-navigation.component.js +0 -42
  331. package/esm2015/lib/gov-ui/components/index.js +0 -7
  332. package/esm2015/lib/gov-ui/components/public_api.js +0 -7
  333. package/esm2015/lib/gov-ui/directives/remove-host.directive.js +0 -50
  334. package/esm2015/lib/gov-ui/gov-ui.service.js +0 -19
  335. package/esm2015/lib/gov-ui/index.js +0 -7
  336. package/esm2015/lib/gov-ui/models/banner-data-model.js +0 -16
  337. package/esm2015/lib/gov-ui/models/checkboxes-model.js +0 -22
  338. package/esm2015/lib/gov-ui/models/error-messages-model.js +0 -16
  339. package/esm2015/lib/gov-ui/models/gov-ui-config-model.js +0 -36
  340. package/esm2015/lib/gov-ui/models/index.js +0 -7
  341. package/esm2015/lib/gov-ui/models/isession-storage.interface.js +0 -24
  342. package/esm2015/lib/gov-ui/models/public_api.js +0 -13
  343. package/esm2015/lib/gov-ui/public_api.js +0 -12
  344. package/esm2015/lib/gov-ui/util/helpers/html-templates.helper.js +0 -32
  345. package/esm2015/lib/gov-ui/util/session-storage/session-storage-utils.js +0 -58
  346. package/esm2015/lib/gov-ui/validators/checkboxes-be-checked.validator.js +0 -37
  347. package/esm2015/lib/gov-ui/validators/date.validator.js +0 -32
  348. package/esm2015/lib/gov-ui/validators/index.js +0 -7
  349. package/esm2015/lib/gov-ui/validators/public_api.js +0 -12
  350. package/esm2015/lib/gov-ui/validators/radio-group.validator.js +0 -27
  351. package/esm2015/lib/models/case-share.model.js +0 -26
  352. package/esm2015/lib/models/contact-details.model.js +0 -31
  353. package/esm2015/lib/models/due-date.model.js +0 -15
  354. package/esm2015/lib/models/feature-user.js +0 -20
  355. package/esm2015/lib/models/filter.model.js +0 -120
  356. package/esm2015/lib/models/idle-config.model.js +0 -20
  357. package/esm2015/lib/models/index.js +0 -20
  358. package/esm2015/lib/models/location.model.js +0 -129
  359. package/esm2015/lib/models/pagination.model.js +0 -18
  360. package/esm2015/lib/models/person.model.js +0 -92
  361. package/esm2015/lib/models/public_api.js +0 -11
  362. package/esm2015/lib/models/search-options.model.js +0 -22
  363. package/esm2015/lib/models/tcDocument.model.js +0 -18
  364. package/esm2015/lib/models/timeout-notification.model.js +0 -18
  365. package/esm2015/lib/models/user-details.model.js +0 -22
  366. package/esm2015/lib/models/user.model.js +0 -25
  367. package/esm2015/lib/services/case-sharing-state/case-sharing-state.service.js +0 -218
  368. package/esm2015/lib/services/cookie/cookie.service.js +0 -110
  369. package/esm2015/lib/services/feature-toggle/feature-toggle.guard.js +0 -74
  370. package/esm2015/lib/services/feature-toggle/feature-toggle.service.js +0 -53
  371. package/esm2015/lib/services/feature-toggle/launch-darkly.service.js +0 -141
  372. package/esm2015/lib/services/filter/filter.service.js +0 -118
  373. package/esm2015/lib/services/find-person/find-person.service.js +0 -214
  374. package/esm2015/lib/services/google-analytics/google-analytics.service.js +0 -123
  375. package/esm2015/lib/services/google-tag-manager/google-tag-manager.service.js +0 -125
  376. package/esm2015/lib/services/index.js +0 -7
  377. package/esm2015/lib/services/loading/loading.service.js +0 -78
  378. package/esm2015/lib/services/locations/location.service.js +0 -57
  379. package/esm2015/lib/services/manage-session/manage-session.services.js +0 -105
  380. package/esm2015/lib/services/public-api.js +0 -25
  381. package/esm2015/lib/services/role-guard/role.guard.js +0 -78
  382. package/esm2015/lib/services/role-guard/role.service.js +0 -39
  383. package/esm2015/lib/services/session-storage/session-storage.service.js +0 -55
  384. package/esm2015/lib/services/timeout-notifications/timeout-notifications.service.js +0 -158
  385. package/esm2015/lib/window.js +0 -13
  386. package/esm2015/public-api.js +0 -16
  387. package/esm5/hmcts-rpx-xui-common-lib.js +0 -73
  388. package/esm5/lib/components/accessibility/accessibility.component.js +0 -22
  389. package/esm5/lib/components/checkbox-list/checkbox-list.component.js +0 -391
  390. package/esm5/lib/components/contact-details/contact-details.component.js +0 -29
  391. package/esm5/lib/components/cookie-banner/cookie-banner.component.js +0 -154
  392. package/esm5/lib/components/due-date/due-date.component.js +0 -254
  393. package/esm5/lib/components/exui-main-wrapper/exui-page-wrapper.component.js +0 -45
  394. package/esm5/lib/components/find-location/find-location.component.js +0 -293
  395. package/esm5/lib/components/find-person/find-person.component.js +0 -286
  396. package/esm5/lib/components/generic-filter/generic-filter-utils.js +0 -66
  397. package/esm5/lib/components/generic-filter/generic-filter.component.js +0 -839
  398. package/esm5/lib/components/hmcts-session-dialog/hmcts-session-dialog.component.js +0 -47
  399. package/esm5/lib/components/index.js +0 -7
  400. package/esm5/lib/components/invite-user-form/invite-user-form.component.js +0 -54
  401. package/esm5/lib/components/invite-user-permissions/invite-user-permission.component.js +0 -46
  402. package/esm5/lib/components/loading-spinner/loading-spinner.component.js +0 -29
  403. package/esm5/lib/components/pagination/pagination.component.js +0 -58
  404. package/esm5/lib/components/public_api.js +0 -33
  405. package/esm5/lib/components/search-judicials/search-judicials.component.js +0 -291
  406. package/esm5/lib/components/search-location/search-location.component.js +0 -330
  407. package/esm5/lib/components/search-venue/search-venue.component.js +0 -290
  408. package/esm5/lib/components/selected-case/selected-case.component.js +0 -430
  409. package/esm5/lib/components/selected-case-confirm/selected-case-confirm.component.js +0 -84
  410. package/esm5/lib/components/selected-case-list/selected-case-list.component.js +0 -109
  411. package/esm5/lib/components/service-message/service-message.component.js +0 -46
  412. package/esm5/lib/components/service-messages/service-messages.component.js +0 -122
  413. package/esm5/lib/components/share-case/share-case.component.js +0 -223
  414. package/esm5/lib/components/share-case-confirm/share-case-confirm.component.js +0 -70
  415. package/esm5/lib/components/tab/tab.component.js +0 -51
  416. package/esm5/lib/components/tc-confirm/tc-confirm.component.js +0 -42
  417. package/esm5/lib/components/terms-and-conditions/tc-display/tc-display-html/tc-display-html.component.js +0 -22
  418. package/esm5/lib/components/terms-and-conditions/tc-display/tc-display-plain/tc-display-plain.component.js +0 -22
  419. package/esm5/lib/components/terms-and-conditions/terms-and-conditions.component.js +0 -29
  420. package/esm5/lib/components/user-details/user-details.component.js +0 -92
  421. package/esm5/lib/components/user-list/user-list.component.js +0 -76
  422. package/esm5/lib/components/user-select/user-select.component.js +0 -131
  423. package/esm5/lib/directives/feature-toggle/feature-toggle.directive.js +0 -104
  424. package/esm5/lib/directives/index.js +0 -7
  425. package/esm5/lib/directives/let/let.directive.js +0 -78
  426. package/esm5/lib/directives/public-api.js +0 -8
  427. package/esm5/lib/exui-common-lib.module.js +0 -162
  428. package/esm5/lib/gov-ui/components/gov-uk-checkbox/gov-uk-checkbox.component.js +0 -56
  429. package/esm5/lib/gov-ui/components/gov-uk-checkboxes/gov-uk-checkboxes.component.js +0 -36
  430. package/esm5/lib/gov-ui/components/gov-uk-date/gov-uk-date.component.js +0 -135
  431. package/esm5/lib/gov-ui/components/gov-uk-error-message/gov-uk-error-message.component.js +0 -37
  432. package/esm5/lib/gov-ui/components/gov-uk-fieldset/gov-uk-fieldset.component.js +0 -49
  433. package/esm5/lib/gov-ui/components/gov-uk-file-upload/gov-uk-file-upload.component.js +0 -65
  434. package/esm5/lib/gov-ui/components/gov-uk-form-group-wrapper/gov-uk-form-group-wrapper.component.js +0 -40
  435. package/esm5/lib/gov-ui/components/gov-uk-input/gov-uk-input.component.js +0 -66
  436. package/esm5/lib/gov-ui/components/gov-uk-label/gov-uk-label.component.js +0 -34
  437. package/esm5/lib/gov-ui/components/gov-uk-radio/gov-uk-radio.component.js +0 -67
  438. package/esm5/lib/gov-ui/components/gov-uk-radios/gov-uk-radios.component.js +0 -36
  439. package/esm5/lib/gov-ui/components/gov-uk-select/gov-uk-select.component.js +0 -52
  440. package/esm5/lib/gov-ui/components/gov-uk-table/gov-uk-table.component.js +0 -77
  441. package/esm5/lib/gov-ui/components/gov-uk-textarea/gov-uk-textarea.component.js +0 -50
  442. package/esm5/lib/gov-ui/components/hmcts-banner/hmcts-banner.component.js +0 -38
  443. package/esm5/lib/gov-ui/components/hmcts-error-summary/hmcts-error-summary.component.js +0 -108
  444. package/esm5/lib/gov-ui/components/hmcts-identity-bar/hmcts-identity-bar.component.js +0 -40
  445. package/esm5/lib/gov-ui/components/hmcts-main-wrapper/hmcts-main-wrapper.component.js +0 -87
  446. package/esm5/lib/gov-ui/components/hmcts-pagination/hmcts-pagination.component.js +0 -51
  447. package/esm5/lib/gov-ui/components/hmcts-primary-navigation/hmcts-primary-navigation.component.js +0 -49
  448. package/esm5/lib/gov-ui/components/hmcts-sub-navigation/hmcts-sub-navigation.component.js +0 -46
  449. package/esm5/lib/gov-ui/components/index.js +0 -7
  450. package/esm5/lib/gov-ui/components/public_api.js +0 -7
  451. package/esm5/lib/gov-ui/directives/remove-host.directive.js +0 -52
  452. package/esm5/lib/gov-ui/gov-ui.service.js +0 -22
  453. package/esm5/lib/gov-ui/index.js +0 -7
  454. package/esm5/lib/gov-ui/models/banner-data-model.js +0 -16
  455. package/esm5/lib/gov-ui/models/checkboxes-model.js +0 -22
  456. package/esm5/lib/gov-ui/models/error-messages-model.js +0 -16
  457. package/esm5/lib/gov-ui/models/gov-ui-config-model.js +0 -36
  458. package/esm5/lib/gov-ui/models/index.js +0 -7
  459. package/esm5/lib/gov-ui/models/isession-storage.interface.js +0 -24
  460. package/esm5/lib/gov-ui/models/public_api.js +0 -13
  461. package/esm5/lib/gov-ui/public_api.js +0 -12
  462. package/esm5/lib/gov-ui/util/helpers/html-templates.helper.js +0 -57
  463. package/esm5/lib/gov-ui/util/session-storage/session-storage-utils.js +0 -58
  464. package/esm5/lib/gov-ui/validators/checkboxes-be-checked.validator.js +0 -38
  465. package/esm5/lib/gov-ui/validators/date.validator.js +0 -32
  466. package/esm5/lib/gov-ui/validators/index.js +0 -7
  467. package/esm5/lib/gov-ui/validators/public_api.js +0 -12
  468. package/esm5/lib/gov-ui/validators/radio-group.validator.js +0 -27
  469. package/esm5/lib/models/case-share.model.js +0 -26
  470. package/esm5/lib/models/contact-details.model.js +0 -31
  471. package/esm5/lib/models/due-date.model.js +0 -15
  472. package/esm5/lib/models/feature-user.js +0 -28
  473. package/esm5/lib/models/filter.model.js +0 -124
  474. package/esm5/lib/models/idle-config.model.js +0 -20
  475. package/esm5/lib/models/index.js +0 -20
  476. package/esm5/lib/models/location.model.js +0 -129
  477. package/esm5/lib/models/pagination.model.js +0 -18
  478. package/esm5/lib/models/person.model.js +0 -92
  479. package/esm5/lib/models/public_api.js +0 -11
  480. package/esm5/lib/models/search-options.model.js +0 -22
  481. package/esm5/lib/models/tcDocument.model.js +0 -18
  482. package/esm5/lib/models/timeout-notification.model.js +0 -18
  483. package/esm5/lib/models/user-details.model.js +0 -22
  484. package/esm5/lib/models/user.model.js +0 -25
  485. package/esm5/lib/services/case-sharing-state/case-sharing-state.service.js +0 -289
  486. package/esm5/lib/services/cookie/cookie.service.js +0 -136
  487. package/esm5/lib/services/feature-toggle/feature-toggle.guard.js +0 -89
  488. package/esm5/lib/services/feature-toggle/feature-toggle.service.js +0 -90
  489. package/esm5/lib/services/feature-toggle/launch-darkly.service.js +0 -187
  490. package/esm5/lib/services/filter/filter.service.js +0 -153
  491. package/esm5/lib/services/find-person/find-person.service.js +0 -238
  492. package/esm5/lib/services/google-analytics/google-analytics.service.js +0 -128
  493. package/esm5/lib/services/google-tag-manager/google-tag-manager.service.js +0 -135
  494. package/esm5/lib/services/index.js +0 -7
  495. package/esm5/lib/services/loading/loading.service.js +0 -109
  496. package/esm5/lib/services/locations/location.service.js +0 -86
  497. package/esm5/lib/services/manage-session/manage-session.services.js +0 -111
  498. package/esm5/lib/services/public-api.js +0 -25
  499. package/esm5/lib/services/role-guard/role.guard.js +0 -81
  500. package/esm5/lib/services/role-guard/role.service.js +0 -45
  501. package/esm5/lib/services/session-storage/session-storage.service.js +0 -96
  502. package/esm5/lib/services/timeout-notifications/timeout-notifications.service.js +0 -190
  503. package/esm5/lib/window.js +0 -13
  504. package/esm5/public-api.js +0 -16
  505. package/fesm2015/hmcts-rpx-xui-common-lib.js +0 -7973
  506. package/fesm2015/hmcts-rpx-xui-common-lib.js.map +0 -1
  507. package/fesm5/hmcts-rpx-xui-common-lib.js +0 -9423
  508. package/fesm5/hmcts-rpx-xui-common-lib.js.map +0 -1
  509. package/hmcts-rpx-xui-common-lib.d.ts +0 -67
  510. package/hmcts-rpx-xui-common-lib.metadata.json +0 -1
  511. package/lib/gov-ui/models/banner-data-model.d.ts +0 -4
  512. package/lib/gov-ui/models/isession-storage.interface.d.ts +0 -4
  513. package/lib/gov-ui/util/session-storage/session-storage-utils.d.ts +0 -6
@@ -3,12 +3,14 @@ import { Observable } from 'rxjs';
3
3
  import { SharedCase } from '../../models/case-share.model';
4
4
  import { UserDetails } from '../../models/user-details.model';
5
5
  import { CaseSharingStateService } from '../../services/case-sharing-state/case-sharing-state.service';
6
+ import * as i0 from "@angular/core";
6
7
  export declare class SelectedCaseComponent implements OnInit, OnChanges {
7
8
  private readonly stateService;
8
9
  sharedCase: SharedCase;
9
10
  selectedUser: UserDetails;
10
11
  opened: boolean;
11
12
  removeUserFromCaseToggleOn: boolean;
13
+ caseCount: number;
12
14
  unselect: EventEmitter<SharedCase>;
13
15
  synchronizeStore: EventEmitter<any>;
14
16
  shareCases: SharedCase[];
@@ -17,7 +19,6 @@ export declare class SelectedCaseComponent implements OnInit, OnChanges {
17
19
  constructor(stateService: CaseSharingStateService);
18
20
  ngOnInit(): void;
19
21
  ngOnChanges(changes: SimpleChanges): void;
20
- onUnselect(): void;
21
22
  onDeselect(c: SharedCase): void;
22
23
  trackByUserId(user: UserDetails): string;
23
24
  canRemove(caseId: string, user: UserDetails): Observable<boolean>;
@@ -32,4 +33,6 @@ export declare class SelectedCaseComponent implements OnInit, OnChanges {
32
33
  combineAndSortShares(sharedWith: UserDetails[], pendingShares: UserDetails[]): UserDetails[];
33
34
  userIdSetter(isPending: boolean, id: number): string;
34
35
  buildElementId(elementName: string): string;
36
+ static ɵfac: i0.ɵɵFactoryDeclaration<SelectedCaseComponent, never>;
37
+ static ɵcmp: i0.ɵɵComponentDeclaration<SelectedCaseComponent, "xuilib-selected-case", never, { "sharedCase": { "alias": "sharedCase"; "required": false; }; "selectedUser": { "alias": "selectedUser"; "required": false; }; "opened": { "alias": "opened"; "required": false; }; "removeUserFromCaseToggleOn": { "alias": "removeUserFromCaseToggleOn"; "required": false; }; "caseCount": { "alias": "caseCount"; "required": false; }; }, { "unselect": "unselect"; "synchronizeStore": "synchronizeStore"; }, never, never, false, never>;
35
38
  }
@@ -3,6 +3,7 @@ import { Observable } from 'rxjs';
3
3
  import { SharedCase } from '../../models/case-share.model';
4
4
  import { UserDetails } from '../../models/user-details.model';
5
5
  import { CaseSharingStateService } from '../../services/case-sharing-state/case-sharing-state.service';
6
+ import * as i0 from "@angular/core";
6
7
  export declare class SelectedCaseConfirmComponent implements OnInit {
7
8
  private readonly stateService;
8
9
  sharedCase: SharedCase;
@@ -13,4 +14,6 @@ export declare class SelectedCaseConfirmComponent implements OnInit {
13
14
  ngOnInit(): void;
14
15
  trackByUserId(user: UserDetails): string;
15
16
  showUserAccessBlock(): boolean;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<SelectedCaseConfirmComponent, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<SelectedCaseConfirmComponent, "xuilib-selected-case-confirm", never, { "sharedCase": { "alias": "sharedCase"; "required": false; }; "changeLink": { "alias": "changeLink"; "required": false; }; }, {}, never, never, false, never>;
16
19
  }
@@ -2,9 +2,11 @@ import { EventEmitter, OnInit } from '@angular/core';
2
2
  import { Observable } from 'rxjs';
3
3
  import { SharedCase } from '../../models/case-share.model';
4
4
  import { CaseSharingStateService } from '../../services/case-sharing-state/case-sharing-state.service';
5
+ import * as i0 from "@angular/core";
5
6
  export declare class SelectedCaseListComponent implements OnInit {
6
7
  private readonly stateService;
7
8
  shareCases: SharedCase[];
9
+ caseCount: number;
8
10
  shareCases$: Observable<SharedCase[]>;
9
11
  removeUserFromCaseToggleOn: boolean;
10
12
  toConfirm: boolean;
@@ -16,4 +18,6 @@ export declare class SelectedCaseListComponent implements OnInit {
16
18
  onUnselect(sharedCase: SharedCase): void;
17
19
  onSynchronizeStore(event: any): void;
18
20
  trackByCaseId(sharedCase: SharedCase): string;
21
+ static ɵfac: i0.ɵɵFactoryDeclaration<SelectedCaseListComponent, never>;
22
+ static ɵcmp: i0.ɵɵComponentDeclaration<SelectedCaseListComponent, "xuilib-selected-case-list", never, { "shareCases$": { "alias": "shareCases$"; "required": false; }; "removeUserFromCaseToggleOn": { "alias": "removeUserFromCaseToggleOn"; "required": false; }; "toConfirm": { "alias": "toConfirm"; "required": false; }; "changeLink": { "alias": "changeLink"; "required": false; }; }, { "unselect": "unselect"; "synchronizeStore": "synchronizeStore"; }, never, never, false, never>;
19
23
  }
@@ -1,8 +1,13 @@
1
1
  import { EventEmitter } from '@angular/core';
2
+ import { ServiceMessages } from '../../models/service-message.model';
3
+ import * as i0 from "@angular/core";
2
4
  export declare class ServiceMessageComponent {
3
- message: string;
4
- key: string;
5
- hideMessage: EventEmitter<string>;
5
+ message_en: string;
6
+ message_cy?: string;
7
+ key: ServiceMessages;
8
+ hideMessage: EventEmitter<ServiceMessages>;
6
9
  constructor();
7
- onHideMessageEvent(key: string): void;
10
+ onHideMessageEvent(key: ServiceMessages): void;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<ServiceMessageComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<ServiceMessageComponent, "xuilib-service-message", never, { "message_en": { "alias": "message_en"; "required": false; }; "message_cy": { "alias": "message_cy"; "required": false; }; "key": { "alias": "key"; "required": false; }; }, { "hideMessage": "hideMessage"; }, never, never, false, never>;
8
13
  }
@@ -1,12 +1,17 @@
1
1
  import { OnInit } from '@angular/core';
2
2
  import { FeatureToggleService } from '../../services/feature-toggle/feature-toggle.service';
3
- export interface ServiceMessages {
4
- [key: string]: string;
5
- }
3
+ import { ServiceMessages } from '../../models/service-message.model';
4
+ import * as i0 from "@angular/core";
6
5
  export declare class ServiceMessagesComponent implements OnInit {
7
6
  private readonly featureToggleService;
8
7
  hiddenBanners: string[];
9
- filteredMessages: Map<string, string>;
8
+ filteredMessages: ServiceMessages[];
9
+ isBannerError: boolean;
10
+ bannerErrorMsgs: {
11
+ message: string;
12
+ index: number;
13
+ }[];
14
+ originalMessages: ServiceMessages[];
10
15
  userRoles: string[];
11
16
  featureToggleKey: string;
12
17
  serviceMessageCookie: string;
@@ -14,5 +19,10 @@ export declare class ServiceMessagesComponent implements OnInit {
14
19
  ngOnInit(): void;
15
20
  getServiceMessages(): void;
16
21
  private createFilteredMessages;
17
- hideMessage(key: string): void;
22
+ private compareDates;
23
+ private setSessionCookie;
24
+ hideMessage(msg: ServiceMessages): void;
25
+ private getSessionCookie;
26
+ static ɵfac: i0.ɵɵFactoryDeclaration<ServiceMessagesComponent, never>;
27
+ static ɵcmp: i0.ɵɵComponentDeclaration<ServiceMessagesComponent, "xuilib-service-messages", never, { "userRoles": { "alias": "userRoles"; "required": false; }; "featureToggleKey": { "alias": "featureToggleKey"; "required": false; }; "serviceMessageCookie": { "alias": "serviceMessageCookie"; "required": false; }; }, {}, never, never, false, never>;
18
28
  }
@@ -1,26 +1,65 @@
1
1
  import { EventEmitter, OnInit } from '@angular/core';
2
+ import { Router } from '@angular/router';
2
3
  import { Observable } from 'rxjs';
4
+ import { ErrorMessagesModel, GovUiConfigModel } from '../../gov-ui/models';
3
5
  import { SharedCase } from '../../models/case-share.model';
4
6
  import { UserDetails } from '../../models/user-details.model';
5
7
  import { CaseSharingStateService } from '../../services/case-sharing-state/case-sharing-state.service';
8
+ import * as i0 from "@angular/core";
6
9
  export declare class ShareCaseComponent implements OnInit {
7
10
  private readonly stateService;
11
+ private readonly router;
8
12
  shareCases: SharedCase[];
13
+ selectedCasesErrorMessageConfig: GovUiConfigModel;
14
+ continueAllowed: boolean;
15
+ assignedUsers: UserDetails[];
16
+ selectedUserToRemove: UserDetails;
9
17
  removeUserFromCaseToggleOn: boolean;
10
18
  shareCases$: Observable<SharedCase[]>;
11
19
  users: UserDetails[];
12
20
  confirmLink: string;
21
+ cancelLink: string;
22
+ addUserLabel: string;
23
+ showRemoveUsers: boolean;
24
+ fnTitle: string;
25
+ title: string;
13
26
  unselect: EventEmitter<SharedCase>;
14
27
  synchronizeStore: EventEmitter<any>;
15
28
  private selectedUser;
16
29
  private readonly userSelect;
17
- constructor(stateService: CaseSharingStateService);
30
+ validationErrors: {
31
+ id: string;
32
+ message: string;
33
+ }[];
34
+ shareCaseErrorMessage: ErrorMessagesModel;
35
+ constructor(stateService: CaseSharingStateService, router: Router);
18
36
  ngOnInit(): void;
19
37
  onUnselect(c: SharedCase): void;
20
38
  onSynchronizeStore(event: any): void;
21
39
  onSelectedUser(user: UserDetails): void;
22
40
  addUser(): void;
41
+ removeUser(): void;
23
42
  isDisabledAdd(): boolean;
24
- isDisabledContinue(): boolean;
43
+ /**
44
+ * Function originally used to set disabled state of "Continue" button, now called by the button click handler to
45
+ * control whether navigation to the confirmation page is allowed. It is prevented if no changes have been made
46
+ */
47
+ setContinueAllowed(): void;
25
48
  onDeselect(sharedCase: SharedCase): void;
49
+ onContinue(): void;
50
+ /**
51
+ * Gets a unique list of all users that have been assigned, or are pending assigment to, at least one case
52
+ * @param sharedCases The list of shared cases from which to get users these are shared with, or are to be shared with
53
+ */
54
+ getAssignedUsers(sharedCases: SharedCase[]): void;
55
+ /**
56
+ * Checks if any shared cases have been left unassigned. This occurs if a shared case has a number of pending
57
+ * unshares equal to the number of current shares, and there are no pending shares.
58
+ * @param sharedCases The array of shared cases to check
59
+ * @returns `true` if at least one case has the condition described above; `false` otherwise
60
+ */
61
+ hasCasesLeftUnassigned(sharedCases: SharedCase[]): boolean;
62
+ onSelectedUserToRemoveChanged(value: string): void;
63
+ static ɵfac: i0.ɵɵFactoryDeclaration<ShareCaseComponent, never>;
64
+ static ɵcmp: i0.ɵɵComponentDeclaration<ShareCaseComponent, "xuilib-share-case", never, { "removeUserFromCaseToggleOn": { "alias": "removeUserFromCaseToggleOn"; "required": false; }; "shareCases$": { "alias": "shareCases$"; "required": false; }; "users": { "alias": "users"; "required": false; }; "confirmLink": { "alias": "confirmLink"; "required": false; }; "cancelLink": { "alias": "cancelLink"; "required": false; }; "addUserLabel": { "alias": "addUserLabel"; "required": false; }; "showRemoveUsers": { "alias": "showRemoveUsers"; "required": false; }; "fnTitle": { "alias": "fnTitle"; "required": false; }; "title": { "alias": "title"; "required": false; }; }, { "unselect": "unselect"; "synchronizeStore": "synchronizeStore"; }, never, never, false, never>;
26
65
  }
@@ -2,6 +2,7 @@ import { OnInit } from '@angular/core';
2
2
  import { Observable } from 'rxjs';
3
3
  import { SharedCase } from '../../models/case-share.model';
4
4
  import { CaseSharingStateService } from '../../services/case-sharing-state/case-sharing-state.service';
5
+ import * as i0 from "@angular/core";
5
6
  export declare class ShareCaseConfirmComponent implements OnInit {
6
7
  private readonly stateService;
7
8
  shareCases: SharedCase[];
@@ -11,4 +12,6 @@ export declare class ShareCaseConfirmComponent implements OnInit {
11
12
  state$: Observable<SharedCase[]>;
12
13
  constructor(stateService: CaseSharingStateService);
13
14
  ngOnInit(): void;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<ShareCaseConfirmComponent, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<ShareCaseConfirmComponent, "xuilib-share-case-confirm", never, { "shareCases$": { "alias": "shareCases$"; "required": false; }; "changeLink": { "alias": "changeLink"; "required": false; }; "completeLink": { "alias": "completeLink"; "required": false; }; }, {}, never, never, false, never>;
14
17
  }
@@ -1,4 +1,5 @@
1
1
  import { EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
2
3
  export interface TabItem {
3
4
  text: string;
4
5
  }
@@ -7,4 +8,6 @@ export declare class TabComponent {
7
8
  tabChange: EventEmitter<void>;
8
9
  constructor();
9
10
  tabChanged(event: any): void;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<TabComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<TabComponent, "xuilib-tab", never, { "tabItems": { "alias": "tabItems"; "required": false; }; }, { "tabChange": "tabChange"; }, never, never, false, never>;
10
13
  }
@@ -1,7 +1,10 @@
1
1
  import { EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class TcConfirmComponent {
3
4
  buttonText: string;
4
5
  confirm: EventEmitter<void>;
5
6
  constructor();
6
7
  onClick(): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<TcConfirmComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<TcConfirmComponent, "xuilib-tc-confirm", never, { "buttonText": { "alias": "buttonText"; "required": false; }; }, { "confirm": "confirm"; }, never, never, false, never>;
7
10
  }
@@ -1,3 +1,6 @@
1
+ import * as i0 from "@angular/core";
1
2
  export declare class TcDisplayHtmlComponent {
2
3
  constructor();
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<TcDisplayHtmlComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<TcDisplayHtmlComponent, "xuilib-tc-display-html", never, {}, {}, never, ["*"], false, never>;
3
6
  }
@@ -1,3 +1,6 @@
1
+ import * as i0 from "@angular/core";
1
2
  export declare class TcDisplayPlainComponent {
2
3
  constructor();
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<TcDisplayPlainComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<TcDisplayPlainComponent, "xuilib-tc-display-plain", never, {}, {}, never, ["*"], false, never>;
3
6
  }
@@ -1,5 +1,8 @@
1
1
  import { TCDocument } from '../../models';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class TermsAndConditionsComponent {
3
4
  document: TCDocument;
4
5
  constructor();
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<TermsAndConditionsComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<TermsAndConditionsComponent, "xuilib-terms-and-conditions", never, { "document": { "alias": "document"; "required": false; }; }, {}, never, never, false, never>;
5
8
  }
@@ -1,7 +1,9 @@
1
1
  import { EventEmitter } from '@angular/core';
2
2
  import { User } from '../../models';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class UserDetailsComponent {
4
5
  user: User;
6
+ enabledAccessTypes: string[];
5
7
  editPermissionRouterLink: string;
6
8
  warningTitle: string;
7
9
  showEditLink: boolean;
@@ -13,4 +15,6 @@ export declare class UserDetailsComponent {
13
15
  reinviteClick(user: User): void;
14
16
  suspendUser(suspendUser: User): void;
15
17
  userHasRole(theRole: string): boolean;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<UserDetailsComponent, never>;
19
+ static ɵcmp: i0.ɵɵComponentDeclaration<UserDetailsComponent, "xuilib-user-details", never, { "user": { "alias": "user"; "required": false; }; "enabledAccessTypes": { "alias": "enabledAccessTypes"; "required": false; }; "editPermissionRouterLink": { "alias": "editPermissionRouterLink"; "required": false; }; "warningTitle": { "alias": "warningTitle"; "required": false; }; "showEditLink": { "alias": "showEditLink"; "required": false; }; "showHelpLink": { "alias": "showHelpLink"; "required": false; }; "suspendHelpLink": { "alias": "suspendHelpLink"; "required": false; }; "showSuspendUserButton": { "alias": "showSuspendUserButton"; "required": false; }; }, { "suspendUserEvent": "suspendUserEvent"; "reinvite": "reinvite"; }, never, never, false, never>;
16
20
  }
@@ -1,6 +1,7 @@
1
1
  import { EventEmitter, OnInit } from '@angular/core';
2
2
  import { Pagination } from '../../models';
3
3
  import { User } from '../../models/user.model';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class UserListComponent implements OnInit {
5
6
  users: User[];
6
7
  currentPageNumber?: number;
@@ -11,4 +12,6 @@ export declare class UserListComponent implements OnInit {
11
12
  ngOnInit(): void;
12
13
  onUserClick(user: User): void;
13
14
  emitPageClickEvent(pageNumber: any): void;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<UserListComponent, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<UserListComponent, "xuilib-user-list", never, { "users": { "alias": "users"; "required": false; }; "currentPageNumber": { "alias": "currentPageNumber"; "required": false; }; "pageTotalSize": { "alias": "pageTotalSize"; "required": false; }; }, { "userClick": "userClick"; "pageChange": "pageChange"; }, never, never, false, never>;
14
17
  }
@@ -1,18 +1,20 @@
1
1
  import { EventEmitter, OnInit } from '@angular/core';
2
2
  import { FormControl } from '@angular/forms';
3
- import { MatAutocompleteSelectedEvent } from '@angular/material/autocomplete';
3
+ import { MatLegacyAutocompleteSelectedEvent as MatAutocompleteSelectedEvent } from '@angular/material/legacy-autocomplete';
4
4
  import { Observable } from 'rxjs';
5
5
  import { UserDetails } from '../../models/user-details.model';
6
+ import * as i0 from "@angular/core";
6
7
  export declare class UserSelectComponent implements OnInit {
7
8
  users: UserDetails[];
8
9
  selected: EventEmitter<UserDetails>;
9
10
  filteredUsers: Observable<UserDetails[]>;
10
- control: FormControl;
11
+ control: FormControl<any>;
11
12
  constructor();
12
13
  ngOnInit(): void;
13
14
  displayValue(user: UserDetails): string;
14
15
  onSelected(e: MatAutocompleteSelectedEvent): void;
15
16
  clear(): void;
16
- onUserChange(newUserValue: UserDetails): void;
17
17
  private filterUsers;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<UserSelectComponent, never>;
19
+ static ɵcmp: i0.ɵɵComponentDeclaration<UserSelectComponent, "xuilib-user-select", never, { "users": { "alias": "users"; "required": false; }; }, { "selected": "selected"; }, never, never, false, never>;
18
20
  }
@@ -0,0 +1,45 @@
1
+ import { EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';
2
+ import { FormGroup } from '@angular/forms';
3
+ import { AddressMessageEnum, AddressModel } from '../../models';
4
+ import { AddressOption } from '../../models/address-option.model';
5
+ import { AddressService } from '../../services/address/address.service';
6
+ import * as i0 from "@angular/core";
7
+ export declare class WriteAddressFieldComponent implements OnInit, OnChanges {
8
+ private readonly addressesService;
9
+ formGroup: FormGroup;
10
+ internationalMode: boolean;
11
+ isInternational: boolean;
12
+ submissionAttempted: boolean;
13
+ startedInternational: boolean;
14
+ addressChosen: boolean;
15
+ postcodeOptionSelected: EventEmitter<void>;
16
+ internationalModeStart: EventEmitter<void>;
17
+ ukAddressOptionSelected: EventEmitter<boolean>;
18
+ canSelectAddress: EventEmitter<boolean>;
19
+ resetSubmission: EventEmitter<void>;
20
+ addressField: AddressModel;
21
+ optionErrorsPresent: boolean;
22
+ addressSelectable: boolean;
23
+ addressFormGroup: FormGroup;
24
+ addressOptions: AddressOption[];
25
+ missingPostcode: boolean;
26
+ optionErrorMessage: AddressMessageEnum;
27
+ postcodeErrorMessage: AddressMessageEnum;
28
+ selectErrorMessage: AddressMessageEnum;
29
+ constructor(addressesService: AddressService);
30
+ ngOnInit(): void;
31
+ findAddress(): void;
32
+ blankAddress(): void;
33
+ shouldShowDetailFields(): boolean;
34
+ addressSelected(): void;
35
+ ngOnChanges(changes: SimpleChanges): void;
36
+ private checkIfErrorsNeeded;
37
+ setInternationalAddress(isInternational: boolean): void;
38
+ postcodeErrorPresent(isPostcodeField: boolean): boolean;
39
+ postcodeLookupVisible(): boolean;
40
+ private defaultLabel;
41
+ private setFormValue;
42
+ private setPostcodeForm;
43
+ static ɵfac: i0.ɵɵFactoryDeclaration<WriteAddressFieldComponent, never>;
44
+ static ɵcmp: i0.ɵɵComponentDeclaration<WriteAddressFieldComponent, "xuilib-write-address-field", never, { "formGroup": { "alias": "formGroup"; "required": false; }; "internationalMode": { "alias": "internationalMode"; "required": false; }; "isInternational": { "alias": "isInternational"; "required": false; }; "submissionAttempted": { "alias": "submissionAttempted"; "required": false; }; "startedInternational": { "alias": "startedInternational"; "required": false; }; "addressChosen": { "alias": "addressChosen"; "required": false; }; }, { "postcodeOptionSelected": "postcodeOptionSelected"; "internationalModeStart": "internationalModeStart"; "ukAddressOptionSelected": "ukAddressOptionSelected"; "canSelectAddress": "canSelectAddress"; "resetSubmission": "resetSubmission"; }, never, never, false, never>;
45
+ }
@@ -0,0 +1,16 @@
1
+ import { OnChanges } from '@angular/core';
2
+ import { FormGroup } from '@angular/forms';
3
+ import { AddressMessageEnum } from '../../models';
4
+ import * as i0 from "@angular/core";
5
+ export declare class WriteAddressInputsComponent implements OnChanges {
6
+ MESSAGE_ENUM: typeof AddressMessageEnum;
7
+ formGroup: FormGroup;
8
+ isInternational: boolean;
9
+ submissionAttempted: boolean;
10
+ missingPostcode: boolean;
11
+ errorsPresent: boolean;
12
+ constructor();
13
+ ngOnChanges(): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<WriteAddressInputsComponent, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<WriteAddressInputsComponent, "xuilib-write-address-inputs", never, { "formGroup": { "alias": "formGroup"; "required": false; }; "isInternational": { "alias": "isInternational"; "required": false; }; "submissionAttempted": { "alias": "submissionAttempted"; "required": false; }; }, {}, never, never, false, never>;
16
+ }
@@ -1,13 +1,16 @@
1
1
  import { OnDestroy, TemplateRef, ViewContainerRef } from '@angular/core';
2
2
  import { FeatureToggleService } from '../../services/feature-toggle/feature-toggle.service';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class FeatureToggleDirective implements OnDestroy {
4
5
  private readonly service;
5
6
  private readonly viewContainer;
6
7
  private readonly templateRef;
7
8
  private feature;
8
9
  private subscription;
9
- xuilibFeatureToggle: string;
10
+ set xuilibFeatureToggle(feature: string);
10
11
  constructor(service: FeatureToggleService, viewContainer: ViewContainerRef, templateRef: TemplateRef<any>);
11
12
  ngOnDestroy(): void;
12
13
  private updateSubscription;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<FeatureToggleDirective, never>;
15
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FeatureToggleDirective, "[xuilibFeatureToggle]", never, { "xuilibFeatureToggle": { "alias": "xuilibFeatureToggle"; "required": false; }; }, {}, never, never, false, never>;
13
16
  }
@@ -1,4 +1,5 @@
1
1
  import { TemplateRef, ViewContainerRef } from '@angular/core';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class LetContext<T = any> {
3
4
  $implicit: T;
4
5
  xuilibLet: T;
@@ -7,5 +8,7 @@ export declare class LetDirective<T = any> {
7
8
  private readonly viewContainer;
8
9
  private readonly context;
9
10
  constructor(viewContainer: ViewContainerRef, templateRef: TemplateRef<LetContext<T>>);
10
- xuilibLet: T;
11
+ set xuilibLet(condition: T);
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<LetDirective<any>, never>;
13
+ static ɵdir: i0.ɵɵDirectiveDeclaration<LetDirective<any>, "[xuilibLet]", never, { "xuilibLet": { "alias": "xuilibLet"; "required": false; }; }, {}, never, never, false, never>;
11
14
  }
@@ -1,7 +1,10 @@
1
- import { AccessibilityComponent } from './components/accessibility/accessibility.component';
1
+ import { CheckboxListComponent } from './components/checkbox-list/checkbox-list.component';
2
2
  import { CookieBannerComponent } from './components/cookie-banner/cookie-banner.component';
3
+ import { DueDateComponent } from './components/due-date/due-date.component';
3
4
  import { FindPersonComponent } from './components/find-person/find-person.component';
5
+ import { FindTaskNameComponent } from './components/find-task-name/find-task-name.component';
4
6
  import { GenericFilterComponent } from './components/generic-filter/generic-filter.component';
7
+ import { LoadingSpinnerComponent } from './components/loading-spinner/loading-spinner.component';
5
8
  import { SearchJudicialsComponent } from './components/search-judicials/search-judicials.component';
6
9
  import { SearchLocationComponent } from './components/search-location/search-location.component';
7
10
  import { SearchVenueComponent } from './components/search-venue/search-venue.component';
@@ -11,13 +14,15 @@ import { SelectedCaseComponent } from './components/selected-case/selected-case.
11
14
  import { ServiceMessagesComponent } from './components/service-messages/service-messages.component';
12
15
  import { ShareCaseConfirmComponent } from './components/share-case-confirm/share-case-confirm.component';
13
16
  import { ShareCaseComponent } from './components/share-case/share-case.component';
17
+ import { TcDisplayHtmlComponent } from './components/terms-and-conditions/tc-display/tc-display-html/tc-display-html.component';
18
+ import { WriteAddressFieldComponent } from './components/write-address/write-address.component';
14
19
  import { FeatureToggleDirective } from './directives/feature-toggle/feature-toggle.directive';
15
20
  import { LetDirective } from './directives/let/let.directive';
16
- import { GovUkCheckboxesComponent } from './gov-ui/components/gov-uk-checkboxes/gov-uk-checkboxes.component';
17
21
  import { GovUkErrorMessageComponent } from './gov-ui/components/gov-uk-error-message/gov-uk-error-message.component';
18
22
  import { GovUkFormGroupWrapperComponent } from './gov-ui/components/gov-uk-form-group-wrapper/gov-uk-form-group-wrapper.component';
19
23
  import { GovUkLabelComponent } from './gov-ui/components/gov-uk-label/gov-uk-label.component';
20
24
  import { GovUkRadioComponent } from './gov-ui/components/gov-uk-radio/gov-uk-radio.component';
25
+ import { GovUkRadiosComponent } from './gov-ui/components/gov-uk-radios/gov-uk-radios.component';
21
26
  import { GovukTableComponent } from './gov-ui/components/gov-uk-table/gov-uk-table.component';
22
27
  import { HmctsBannerComponent } from './gov-ui/components/hmcts-banner/hmcts-banner.component';
23
28
  import { HmctsErrorSummaryComponent } from './gov-ui/components/hmcts-error-summary/hmcts-error-summary.component';
@@ -27,7 +32,81 @@ import { HmctsPaginationComponent } from './gov-ui/components/hmcts-pagination/h
27
32
  import { HmctsPrimaryNavigationComponent } from './gov-ui/components/hmcts-primary-navigation/hmcts-primary-navigation.component';
28
33
  import { HmctsSubNavigationComponent } from './gov-ui/components/hmcts-sub-navigation/hmcts-sub-navigation.component';
29
34
  import { RemoveHostDirective } from './gov-ui/directives/remove-host.directive';
30
- export declare const COMMON_COMPONENTS: (typeof AccessibilityComponent | typeof GenericFilterComponent | typeof SelectedCaseConfirmComponent | typeof SelectedCaseListComponent | typeof SelectedCaseComponent | typeof ServiceMessagesComponent | typeof ShareCaseConfirmComponent | typeof ShareCaseComponent | typeof CookieBannerComponent | typeof SearchLocationComponent | typeof FeatureToggleDirective | typeof LetDirective | typeof FindPersonComponent | typeof SearchJudicialsComponent | typeof SearchVenueComponent)[];
31
- export declare const GOV_UI_COMPONENTS: (typeof HmctsIdentityBarComponent | typeof HmctsPaginationComponent | typeof HmctsSubNavigationComponent | typeof HmctsPrimaryNavigationComponent | typeof HmctsErrorSummaryComponent | typeof HmctsMainWrapperComponent | typeof HmctsBannerComponent | typeof GovukTableComponent | typeof GovUkFormGroupWrapperComponent | typeof GovUkLabelComponent | typeof GovUkErrorMessageComponent | typeof GovUkCheckboxesComponent | typeof GovUkRadioComponent | typeof RemoveHostDirective)[];
35
+ import * as i0 from "@angular/core";
36
+ import * as i1 from "./components/exui-main-wrapper/exui-page-wrapper.component";
37
+ import * as i2 from "./components/terms-and-conditions/terms-and-conditions.component";
38
+ import * as i3 from "./components/terms-and-conditions/tc-display/tc-display-html/tc-display-html.component";
39
+ import * as i4 from "./components/terms-and-conditions/tc-display/tc-display-plain/tc-display-plain.component";
40
+ import * as i5 from "./components/tc-confirm/tc-confirm.component";
41
+ import * as i6 from "./components/contact-details/contact-details.component";
42
+ import * as i7 from "./directives/feature-toggle/feature-toggle.directive";
43
+ import * as i8 from "./directives/let/let.directive";
44
+ import * as i9 from "./components/hmcts-session-dialog/hmcts-session-dialog.component";
45
+ import * as i10 from "./components/user-list/user-list.component";
46
+ import * as i11 from "./components/user-details/user-details.component";
47
+ import * as i12 from "./components/invite-user-permissions/invite-user-permission.component";
48
+ import * as i13 from "./components/invite-user-form/invite-user-form.component";
49
+ import * as i14 from "./components/share-case/share-case.component";
50
+ import * as i15 from "./components/share-case-confirm/share-case-confirm.component";
51
+ import * as i16 from "./components/selected-case-list/selected-case-list.component";
52
+ import * as i17 from "./components/selected-case/selected-case.component";
53
+ import * as i18 from "./components/selected-case-confirm/selected-case-confirm.component";
54
+ import * as i19 from "./components/user-select/user-select.component";
55
+ import * as i20 from "./components/tab/tab.component";
56
+ import * as i21 from "./components/accessibility/accessibility.component";
57
+ import * as i22 from "./components/due-date/due-date.component";
58
+ import * as i23 from "./components/checkbox-list/checkbox-list.component";
59
+ import * as i24 from "./components/service-message/service-message.component";
60
+ import * as i25 from "./components/service-messages/service-messages.component";
61
+ import * as i26 from "./components/loading-spinner/loading-spinner.component";
62
+ import * as i27 from "./components/generic-filter/generic-filter.component";
63
+ import * as i28 from "./components/cookie-banner/cookie-banner.component";
64
+ import * as i29 from "./components/find-person/find-person.component";
65
+ import * as i30 from "./components/search-judicials/search-judicials.component";
66
+ import * as i31 from "./components/find-location/find-location.component";
67
+ import * as i32 from "./components/find-task-name/find-task-name.component";
68
+ import * as i33 from "./components/search-location/search-location.component";
69
+ import * as i34 from "./components/find-service/find-service.component";
70
+ import * as i35 from "./components/search-service/search-service.component";
71
+ import * as i36 from "./components/search-venue/search-venue.component";
72
+ import * as i37 from "./components/pagination/pagination.component";
73
+ import * as i38 from "./components/write-address/write-address.component";
74
+ import * as i39 from "./components/write-address-inputs/write-address-inputs.component";
75
+ import * as i40 from "./gov-ui/components/hmcts-identity-bar/hmcts-identity-bar.component";
76
+ import * as i41 from "./gov-ui/components/hmcts-pagination/hmcts-pagination.component";
77
+ import * as i42 from "./gov-ui/components/hmcts-sub-navigation/hmcts-sub-navigation.component";
78
+ import * as i43 from "./gov-ui/components/hmcts-primary-navigation/hmcts-primary-navigation.component";
79
+ import * as i44 from "./gov-ui/components/hmcts-error-summary/hmcts-error-summary.component";
80
+ import * as i45 from "./gov-ui/components/hmcts-main-wrapper/hmcts-main-wrapper.component";
81
+ import * as i46 from "./gov-ui/components/hmcts-banner/hmcts-banner.component";
82
+ import * as i47 from "./gov-ui/components/gov-uk-table/gov-uk-table.component";
83
+ import * as i48 from "./gov-ui/components/gov-uk-input/gov-uk-input.component";
84
+ import * as i49 from "./gov-ui/components/gov-uk-checkbox/gov-uk-checkbox.component";
85
+ import * as i50 from "./gov-ui/components/gov-uk-form-group-wrapper/gov-uk-form-group-wrapper.component";
86
+ import * as i51 from "./gov-ui/components/gov-uk-label/gov-uk-label.component";
87
+ import * as i52 from "./gov-ui/components/gov-uk-error-message/gov-uk-error-message.component";
88
+ import * as i53 from "./gov-ui/components/gov-uk-fieldset/gov-uk-fieldset.component";
89
+ import * as i54 from "./gov-ui/components/gov-uk-date/gov-uk-date.component";
90
+ import * as i55 from "./gov-ui/components/gov-uk-checkboxes/gov-uk-checkboxes.component";
91
+ import * as i56 from "./gov-ui/components/gov-uk-radio/gov-uk-radio.component";
92
+ import * as i57 from "./gov-ui/components/gov-uk-radios/gov-uk-radios.component";
93
+ import * as i58 from "./gov-ui/components/gov-uk-select/gov-uk-select.component";
94
+ import * as i59 from "./gov-ui/components/gov-uk-textarea/gov-uk-textarea.component";
95
+ import * as i60 from "./gov-ui/components/gov-uk-file-upload/gov-uk-file-upload.component";
96
+ import * as i61 from "./gov-ui/directives/remove-host.directive";
97
+ import * as i62 from "./pipes/capitalize/capitalize.pipe";
98
+ import * as i63 from "@angular/common";
99
+ import * as i64 from "@angular/forms";
100
+ import * as i65 from "@angular/router";
101
+ import * as i66 from "@angular/material/legacy-autocomplete";
102
+ import * as i67 from "@angular/material/legacy-tabs";
103
+ import * as i68 from "@angular/material/legacy-input";
104
+ import * as i69 from "ngx-pagination";
105
+ import * as i70 from "rpx-xui-translation";
106
+ export declare const COMMON_COMPONENTS: (typeof CheckboxListComponent | typeof DueDateComponent | typeof GenericFilterComponent | typeof LoadingSpinnerComponent | typeof SelectedCaseConfirmComponent | typeof SelectedCaseListComponent | typeof SelectedCaseComponent | typeof ServiceMessagesComponent | typeof ShareCaseConfirmComponent | typeof ShareCaseComponent | typeof TcDisplayHtmlComponent | typeof CookieBannerComponent | typeof SearchLocationComponent | typeof SearchVenueComponent | typeof SearchJudicialsComponent | typeof FindPersonComponent | typeof FindTaskNameComponent | typeof WriteAddressFieldComponent | typeof FeatureToggleDirective | typeof LetDirective)[];
107
+ export declare const GOV_UI_COMPONENTS: (typeof GovUkErrorMessageComponent | typeof GovUkFormGroupWrapperComponent | typeof GovUkLabelComponent | typeof GovUkRadioComponent | typeof GovUkRadiosComponent | typeof GovukTableComponent | typeof HmctsBannerComponent | typeof HmctsErrorSummaryComponent | typeof HmctsIdentityBarComponent | typeof HmctsMainWrapperComponent | typeof HmctsPaginationComponent | typeof HmctsPrimaryNavigationComponent | typeof HmctsSubNavigationComponent | typeof RemoveHostDirective)[];
32
108
  export declare class ExuiCommonLibModule {
109
+ static ɵfac: i0.ɵɵFactoryDeclaration<ExuiCommonLibModule, never>;
110
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ExuiCommonLibModule, [typeof i1.ExuiPageWrapperComponent, typeof i2.TermsAndConditionsComponent, typeof i3.TcDisplayHtmlComponent, typeof i4.TcDisplayPlainComponent, typeof i5.TcConfirmComponent, typeof i6.ContactDetailsComponent, typeof i7.FeatureToggleDirective, typeof i8.LetDirective, typeof i9.HmctsSessionDialogComponent, typeof i10.UserListComponent, typeof i11.UserDetailsComponent, typeof i12.InviteUserPermissionComponent, typeof i13.InviteUserFormComponent, typeof i14.ShareCaseComponent, typeof i15.ShareCaseConfirmComponent, typeof i16.SelectedCaseListComponent, typeof i17.SelectedCaseComponent, typeof i18.SelectedCaseConfirmComponent, typeof i19.UserSelectComponent, typeof i20.TabComponent, typeof i21.AccessibilityComponent, typeof i22.DueDateComponent, typeof i23.CheckboxListComponent, typeof i24.ServiceMessageComponent, typeof i25.ServiceMessagesComponent, typeof i26.LoadingSpinnerComponent, typeof i27.GenericFilterComponent, typeof i28.CookieBannerComponent, typeof i29.FindPersonComponent, typeof i30.SearchJudicialsComponent, typeof i31.FindLocationComponent, typeof i32.FindTaskNameComponent, typeof i33.SearchLocationComponent, typeof i34.FindServiceComponent, typeof i35.SearchServiceComponent, typeof i36.SearchVenueComponent, typeof i37.PaginationComponent, typeof i38.WriteAddressFieldComponent, typeof i39.WriteAddressInputsComponent, typeof i40.HmctsIdentityBarComponent, typeof i41.HmctsPaginationComponent, typeof i42.HmctsSubNavigationComponent, typeof i43.HmctsPrimaryNavigationComponent, typeof i44.HmctsErrorSummaryComponent, typeof i45.HmctsMainWrapperComponent, typeof i46.HmctsBannerComponent, typeof i47.GovukTableComponent, typeof i48.GovUkInputComponent, typeof i49.GovUkCheckboxComponent, typeof i50.GovUkFormGroupWrapperComponent, typeof i51.GovUkLabelComponent, typeof i52.GovUkErrorMessageComponent, typeof i53.GovUkFieldsetComponent, typeof i54.GovUkDateComponent, typeof i55.GovUkCheckboxesComponent, typeof i56.GovUkRadioComponent, typeof i57.GovUkRadiosComponent, typeof i58.GovUkSelectComponent, typeof i59.GovUkTextareaComponent, typeof i60.GovUkFileUploadComponent, typeof i61.RemoveHostDirective, typeof i62.CapitalizePipe], [typeof i63.CommonModule, typeof i64.FormsModule, typeof i64.ReactiveFormsModule, typeof i65.RouterModule, typeof i66.MatLegacyAutocompleteModule, typeof i67.MatLegacyTabsModule, typeof i68.MatLegacyInputModule, typeof i69.NgxPaginationModule, typeof i70.RpxTranslationModule], [typeof i1.ExuiPageWrapperComponent, typeof i2.TermsAndConditionsComponent, typeof i3.TcDisplayHtmlComponent, typeof i4.TcDisplayPlainComponent, typeof i5.TcConfirmComponent, typeof i6.ContactDetailsComponent, typeof i7.FeatureToggleDirective, typeof i8.LetDirective, typeof i9.HmctsSessionDialogComponent, typeof i10.UserListComponent, typeof i11.UserDetailsComponent, typeof i12.InviteUserPermissionComponent, typeof i13.InviteUserFormComponent, typeof i14.ShareCaseComponent, typeof i15.ShareCaseConfirmComponent, typeof i16.SelectedCaseListComponent, typeof i17.SelectedCaseComponent, typeof i18.SelectedCaseConfirmComponent, typeof i19.UserSelectComponent, typeof i20.TabComponent, typeof i21.AccessibilityComponent, typeof i22.DueDateComponent, typeof i23.CheckboxListComponent, typeof i24.ServiceMessageComponent, typeof i25.ServiceMessagesComponent, typeof i26.LoadingSpinnerComponent, typeof i27.GenericFilterComponent, typeof i28.CookieBannerComponent, typeof i29.FindPersonComponent, typeof i30.SearchJudicialsComponent, typeof i31.FindLocationComponent, typeof i32.FindTaskNameComponent, typeof i33.SearchLocationComponent, typeof i34.FindServiceComponent, typeof i35.SearchServiceComponent, typeof i36.SearchVenueComponent, typeof i37.PaginationComponent, typeof i38.WriteAddressFieldComponent, typeof i39.WriteAddressInputsComponent, typeof i40.HmctsIdentityBarComponent, typeof i41.HmctsPaginationComponent, typeof i42.HmctsSubNavigationComponent, typeof i43.HmctsPrimaryNavigationComponent, typeof i44.HmctsErrorSummaryComponent, typeof i45.HmctsMainWrapperComponent, typeof i46.HmctsBannerComponent, typeof i47.GovukTableComponent, typeof i48.GovUkInputComponent, typeof i49.GovUkCheckboxComponent, typeof i50.GovUkFormGroupWrapperComponent, typeof i51.GovUkLabelComponent, typeof i52.GovUkErrorMessageComponent, typeof i53.GovUkFieldsetComponent, typeof i54.GovUkDateComponent, typeof i55.GovUkCheckboxesComponent, typeof i56.GovUkRadioComponent, typeof i57.GovUkRadiosComponent, typeof i58.GovUkSelectComponent, typeof i59.GovUkTextareaComponent, typeof i60.GovUkFileUploadComponent, typeof i61.RemoveHostDirective, typeof i69.PaginatePipe, typeof i62.CapitalizePipe]>;
111
+ static ɵinj: i0.ɵɵInjectorDeclaration<ExuiCommonLibModule>;
33
112
  }
@@ -1,6 +1,7 @@
1
1
  import { OnInit } from '@angular/core';
2
2
  import { FormGroup } from '@angular/forms';
3
3
  import { GovUiConfigModel } from '../../models/gov-ui-config-model';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class GovUkCheckboxComponent implements OnInit {
5
6
  constructor();
6
7
  group: FormGroup;
@@ -8,4 +9,6 @@ export declare class GovUkCheckboxComponent implements OnInit {
8
9
  isChecked: boolean;
9
10
  id: string;
10
11
  ngOnInit(): void;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<GovUkCheckboxComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<GovUkCheckboxComponent, "xuilib-gov-checkbox", never, { "group": { "alias": "group"; "required": false; }; "config": { "alias": "config"; "required": false; }; "isChecked": { "alias": "isChecked"; "required": false; }; }, {}, never, never, false, never>;
11
14
  }
@@ -1,6 +1,18 @@
1
- import { ErrorMessagesModel } from '../../models';
2
- import { CheckboxesModel } from '../../models/checkboxes-model';
3
- export declare class GovUkCheckboxesComponent {
4
- options: CheckboxesModel;
5
- errors: ErrorMessagesModel;
1
+ import { OnInit } from '@angular/core';
2
+ import { FormGroup } from '@angular/forms';
3
+ import { CheckboxesModel, ErrorMessagesModel, GovUiConfigModel } from '../../models';
4
+ import * as i0 from "@angular/core";
5
+ export declare class GovUkCheckboxesComponent implements OnInit {
6
+ group: FormGroup;
7
+ config: GovUiConfigModel;
8
+ items: CheckboxesModel[];
9
+ errorMessage: ErrorMessagesModel;
10
+ columns: CheckboxesModel[][];
11
+ ngOnInit(): void;
12
+ setDescribedBy(): string;
13
+ onChecked(checked: boolean, value: string): void;
14
+ isChecked(value: string): any;
15
+ private setColumns;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<GovUkCheckboxesComponent, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<GovUkCheckboxesComponent, "xuilib-gov-uk-checkboxes", never, { "group": { "alias": "group"; "required": false; }; "config": { "alias": "config"; "required": false; }; "items": { "alias": "items"; "required": false; }; "errorMessage": { "alias": "errorMessage"; "required": false; }; }, {}, never, never, false, never>;
6
18
  }
@@ -2,6 +2,7 @@ import { OnInit } from '@angular/core';
2
2
  import { ValidatorFn } from '@angular/forms';
3
3
  import { ErrorMessagesModel } from '../../models/error-messages-model';
4
4
  import { GovUiConfigModel } from '../../models/gov-ui-config-model';
5
+ import * as i0 from "@angular/core";
5
6
  export declare class GovUkDateComponent implements OnInit {
6
7
  constructor();
7
8
  config: GovUiConfigModel;
@@ -15,4 +16,6 @@ export declare class GovUkDateComponent implements OnInit {
15
16
  private isValidDate;
16
17
  private isEmpty;
17
18
  DateValidator(): ValidatorFn;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<GovUkDateComponent, never>;
20
+ static ɵcmp: i0.ɵɵComponentDeclaration<GovUkDateComponent, "xuilib-gov-uk-date", never, { "config": { "alias": "config"; "required": false; }; "errorMessage": { "alias": "errorMessage"; "required": false; }; "formGroup": { "alias": "formGroup"; "required": false; }; "isOptional": { "alias": "isOptional"; "required": false; }; }, {}, never, never, false, never>;
18
21
  }
@@ -1,7 +1,10 @@
1
1
  import { ErrorMessagesModel } from '../../models';
2
2
  import { GovUiConfigModel } from '../../models/gov-ui-config-model';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class GovUkErrorMessageComponent {
4
5
  constructor();
5
6
  config: GovUiConfigModel;
6
7
  errorMessage: ErrorMessagesModel;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<GovUkErrorMessageComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<GovUkErrorMessageComponent, " xuilib-gov-uk-error-message", never, { "config": { "alias": "config"; "required": false; }; "errorMessage": { "alias": "errorMessage"; "required": false; }; }, {}, never, never, false, never>;
7
10
  }