@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
@@ -0,0 +1,4 @@
1
+ export interface TaskNameModel {
2
+ taskId: number;
3
+ taskName: string;
4
+ }
@@ -0,0 +1,6 @@
1
+ export interface UserAccessType {
2
+ jurisdictionId: string;
3
+ organisationProfileId: string;
4
+ accessTypeId: string;
5
+ enabled: boolean;
6
+ }
@@ -1,7 +1,9 @@
1
+ import { UserAccessType } from './user-access-type.model';
1
2
  export interface UserDetails {
2
3
  caseRoles?: string;
3
4
  email: string;
4
5
  firstName: string;
5
6
  idamId: string;
6
7
  lastName: string;
8
+ userAccessTypes?: UserAccessType[];
7
9
  }
@@ -0,0 +1,7 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class CapitalizePipe implements PipeTransform {
4
+ transform(value: string): string;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<CapitalizePipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<CapitalizePipe, "capitalize", false>;
7
+ }
@@ -0,0 +1 @@
1
+ export * from './capitalize/capitalize.pipe';
@@ -0,0 +1,17 @@
1
+ import { AddressModel } from '../../models';
2
+ /**
3
+ * Moving all this logic here into Address Parser class, so that it
4
+ * will be easier for us when we move this parsing logic to into
5
+ * `Shim` java service.
6
+ */
7
+ export declare class AddressParser {
8
+ parse(address: any): AddressModel;
9
+ private parseAddressLine1;
10
+ private parseAddressLine2;
11
+ private parseAddressLine3;
12
+ private removeNonAddressValues;
13
+ private removeUndefinedString;
14
+ private removeEmptySpaces;
15
+ private removeInitialComma;
16
+ private prefixWithCommaIfPresent;
17
+ }
@@ -0,0 +1,5 @@
1
+ export declare enum AddressType {
2
+ DPA = "DPA",
3
+ UK = "United Kingdom",
4
+ RD06 = "RD06"
5
+ }
@@ -0,0 +1,15 @@
1
+ import { HttpClient } from '@angular/common/http';
2
+ import { Observable } from 'rxjs';
3
+ import { AddressModel } from '../../models';
4
+ import * as i0 from "@angular/core";
5
+ export declare class AddressService {
6
+ private readonly http;
7
+ constructor(http: HttpClient);
8
+ getAddressesForPostcode(postcode: string): Observable<AddressModel[]>;
9
+ private format;
10
+ private formatAddressLines;
11
+ private shiftAddressLinesUp;
12
+ private toCapitalCase;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<AddressService, never>;
14
+ static ɵprov: i0.ɵɵInjectableDeclaration<AddressService>;
15
+ }
@@ -1,15 +1,18 @@
1
1
  import { SharedCase } from '../../models/case-share.model';
2
2
  import { UserDetails } from '../../models/user-details.model';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class CaseSharingStateService {
4
5
  private caseState;
5
6
  private readonly subject;
6
- readonly state: import("rxjs").Observable<SharedCase[]>;
7
+ get state(): import("rxjs").Observable<SharedCase[]>;
7
8
  constructor();
8
9
  setCases(cases: SharedCase[]): void;
9
10
  getCases(): SharedCase[];
10
11
  requestShare(user: UserDetails): SharedCase[];
11
- requestUnshare(caseId: string, user: UserDetails): void;
12
+ requestUnshare(user: UserDetails, caseId?: string): SharedCase[];
12
13
  requestCancel(caseId: string, user: UserDetails): void;
13
14
  removeCase(caseId: string): void;
14
15
  userHasAccess(c: SharedCase, user: UserDetails): boolean;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<CaseSharingStateService, never>;
17
+ static ɵprov: i0.ɵɵInjectableDeclaration<CaseSharingStateService>;
15
18
  }
@@ -1,3 +1,4 @@
1
+ import * as i0 from "@angular/core";
1
2
  export declare class CookieService {
2
3
  private readonly document?;
3
4
  constructor(doc?: any);
@@ -6,4 +7,6 @@ export declare class CookieService {
6
7
  deleteCookie(key: string, path?: string, domain?: string): void;
7
8
  deleteCookieByPartialMatch(key: string, path?: string, domain?: string): void;
8
9
  checkCookie(key: string): boolean;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<CookieService, never>;
11
+ static ɵprov: i0.ɵɵInjectableDeclaration<CookieService>;
9
12
  }
@@ -1,7 +1,8 @@
1
- import { ActivatedRouteSnapshot, CanActivate, Router, UrlTree } from '@angular/router';
1
+ import { ActivatedRouteSnapshot, Router, UrlTree } from '@angular/router';
2
2
  import { Observable } from 'rxjs';
3
3
  import { FeatureToggleService } from './feature-toggle.service';
4
- export declare class FeatureToggleGuard implements CanActivate {
4
+ import * as i0 from "@angular/core";
5
+ export declare class FeatureToggleGuard {
5
6
  private readonly featureToggleService;
6
7
  private readonly router;
7
8
  constructor(featureToggleService: FeatureToggleService, router: Router);
@@ -10,7 +11,12 @@ export declare class FeatureToggleGuard implements CanActivate {
10
11
  * in the data array for the route:
11
12
  * - needsFeaturesEnabled: An array of feature keys that need to be enabled for this route
12
13
  * - featureDisabledRedirect: the URL to redirect to when the this route is not accessible due to disabled features
14
+ * - expectFeatureEnabled: Sets whether a route should be enabled/disabled based on whether feature is present
13
15
  * @param route Automatically provided by Angular
16
+ * Note: Per Angular 18, when a guard returns a UrlTree as a redirect,
17
+ * the redirecting navigation will now use replaceUrl if the initial navigation was also using the replaceUrl option.
14
18
  */
15
19
  canActivate(route: ActivatedRouteSnapshot): Observable<boolean | UrlTree>;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<FeatureToggleGuard, never>;
21
+ static ɵprov: i0.ɵɵInjectableDeclaration<FeatureToggleGuard>;
16
22
  }
@@ -1,8 +1,12 @@
1
1
  import { Observable } from 'rxjs';
2
2
  import { FeatureUser } from '../../models/feature-user';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class FeatureToggleService {
4
5
  initialize(_user: FeatureUser, _clientId: string): void;
5
6
  isEnabled(_feature: string): Observable<boolean>;
6
7
  getValue<R>(_key: string, _defaultValue: R): Observable<R>;
7
8
  getValueOnce<R>(_key: string, _defaultValue: R): Observable<R>;
9
+ getValueSync<R>(feature: string, defaultValue: R): R;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<FeatureToggleService, never>;
11
+ static ɵprov: i0.ɵɵInjectableDeclaration<FeatureToggleService>;
8
12
  }
@@ -1,24 +1,28 @@
1
1
  import { Observable } from 'rxjs';
2
2
  import { FeatureUser } from '../../models/feature-user';
3
3
  import { FeatureToggleService } from './feature-toggle.service';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class LaunchDarklyService implements FeatureToggleService {
5
6
  private client;
6
7
  private readonly ready;
7
8
  private readonly features;
8
- private user;
9
+ private context;
9
10
  private clientId;
10
11
  initialize(user: FeatureUser, clientId: string): void;
11
- isEnabled(feature: string): Observable<boolean>;
12
+ isEnabled(feature: string, defaultValue?: boolean): Observable<boolean>;
12
13
  getArray<R = any>(feature: string): Observable<R[]>;
13
14
  getValue<R>(feature: string, defaultValue: R): Observable<R>;
14
15
  /**
15
- * This method returns an observable that will only get the state of the feature toggle
16
- * once. It calls the LD SDK directly, and should only be used in circumstances where
17
- * only one value should be emitted, that value coming directly from LD. This will likely
18
- * only apply for Guards, and should be used only when absolutely necessary.
19
- * @see getValue for regular usage.
20
- * @param feature string
21
- * @param defaultValue R
22
- */
16
+ * This method returns an observable that will only get the state of the feature toggle
17
+ * once. It calls the LD SDK directly, and should only be used in circumstances where
18
+ * only one value should be emitted, that value coming directly from LD. This will likely
19
+ * only apply for Guards, and should be used only when absolutely necessary.
20
+ * @see getValue for regular usage.
21
+ * @param feature string
22
+ * @param defaultValue R
23
+ */
23
24
  getValueOnce<R>(feature: string, defaultValue: R): Observable<R>;
25
+ getValueSync<R>(feature: string, defaultValue: R): R;
26
+ static ɵfac: i0.ɵɵFactoryDeclaration<LaunchDarklyService, never>;
27
+ static ɵprov: i0.ɵɵInjectableDeclaration<LaunchDarklyService>;
24
28
  }
@@ -1,5 +1,6 @@
1
1
  import { BehaviorSubject, Observable } from 'rxjs';
2
2
  import { FilterError, FilterPersistence, FilterSetting } from '../../models';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class FilterService {
4
5
  givenErrors: BehaviorSubject<FilterError[]>;
5
6
  isInitialSetting: boolean;
@@ -7,9 +8,14 @@ export declare class FilterService {
7
8
  private readonly streams;
8
9
  persist(setting: FilterSetting, persistence: FilterPersistence): void;
9
10
  get(id: string): FilterSetting | null;
11
+ isSameUser(id: string): boolean;
10
12
  getStream(id: string): Observable<FilterSetting>;
13
+ clearSessionAndLocalPersistance(id: string): void;
11
14
  private persistLocal;
12
15
  private persistSession;
13
16
  private persistMemory;
14
17
  private updateStreams;
18
+ getUserId(): string;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<FilterService, never>;
20
+ static ɵprov: i0.ɵɵInjectableDeclaration<FilterService>;
15
21
  }
@@ -1,17 +1,20 @@
1
1
  import { HttpClient } from '@angular/common/http';
2
2
  import { Observable } from 'rxjs';
3
3
  import { Caseworker, JudicialUserModel, Person, SearchOptions } from '../../models';
4
- import { SessionStorageService } from '../session-storage/session-storage.service';
4
+ import { SessionStorageService } from '../storage/session-storage/session-storage.service';
5
+ import * as i0 from "@angular/core";
5
6
  export declare class FindAPersonService {
6
7
  private readonly http;
7
8
  private readonly sessionStorageService;
8
9
  static caseworkersKey: string;
9
10
  userId: string;
10
- assignedUser: string;
11
+ assignedUser: string | string[];
11
12
  constructor(http: HttpClient, sessionStorageService: SessionStorageService);
12
13
  find(searchOptions: SearchOptions): Observable<Person[]>;
13
14
  findCaseworkers(searchOptions: SearchOptions): Observable<Person[]>;
14
15
  mapCaseworkers(caseworkers: Caseworker[], roleCategory: string): Person[];
15
16
  searchInCaseworkers(caseworkers: Caseworker[], searchOptions: SearchOptions): Person[];
16
17
  searchJudicial(value: string, serviceId: string): Observable<JudicialUserModel[]>;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<FindAPersonService, never>;
19
+ static ɵprov: i0.ɵɵInjectableDeclaration<FindAPersonService>;
17
20
  }
@@ -1,5 +1,6 @@
1
1
  import { Title } from '@angular/platform-browser';
2
2
  import { Router } from '@angular/router';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class GoogleAnalyticsService {
4
5
  private readonly router;
5
6
  private readonly title;
@@ -9,5 +10,7 @@ export declare class GoogleAnalyticsService {
9
10
  constructor(router: Router, title: Title, window: any, document: any);
10
11
  init(googleAnalyticsKey: string): void;
11
12
  private listenForRouteChanges;
12
- event(eventName: string, params: {}): void;
13
+ event(eventName: string, params: Record<string, any>): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<GoogleAnalyticsService, never>;
15
+ static ɵprov: i0.ɵɵInjectableDeclaration<GoogleAnalyticsService>;
13
16
  }
@@ -1,5 +1,6 @@
1
1
  import { Title } from '@angular/platform-browser';
2
2
  import { Router } from '@angular/router';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class GoogleTagManagerService {
4
5
  private readonly router;
5
6
  private readonly title;
@@ -9,5 +10,8 @@ export declare class GoogleTagManagerService {
9
10
  constructor(router: Router, title: Title, window: any, document: any);
10
11
  init(googleTagManagerKey: string): void;
11
12
  private listenForRouteChanges;
12
- event(eventName: string, params: {}): void;
13
+ virtualPageView(path: string, title: string, metadata?: Record<string, any>): void;
14
+ event(eventName: string, params: Record<string, any>): void;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<GoogleTagManagerService, never>;
16
+ static ɵprov: i0.ɵɵInjectableDeclaration<GoogleTagManagerService>;
13
17
  }
@@ -1,12 +1,15 @@
1
1
  import { Observable } from 'rxjs';
2
+ import * as i0 from "@angular/core";
2
3
  export declare abstract class HasLoadingState {
3
- readonly isLoading: Observable<boolean>;
4
+ get isLoading(): Observable<boolean>;
4
5
  }
5
6
  export declare class LoadingService implements HasLoadingState {
6
7
  private readonly registered;
7
8
  private readonly loading;
8
- readonly isLoading: Observable<boolean>;
9
+ get isLoading(): Observable<boolean>;
9
10
  register(): string;
10
11
  unregister(token: string): void;
11
12
  private generateToken;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<LoadingService, never>;
14
+ static ɵprov: i0.ɵɵInjectableDeclaration<LoadingService>;
12
15
  }
@@ -1,6 +1,7 @@
1
1
  import { HttpClient } from '@angular/common/http';
2
2
  import { Observable } from 'rxjs';
3
3
  import { LocationByEPIMMSModel, LocationsByService } from '../../models/location.model';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class LocationService {
5
6
  private readonly http;
6
7
  constructor(http: HttpClient);
@@ -11,7 +12,7 @@ export declare class LocationService {
11
12
  * @param searchTerm: any search term for postcode | site name | venue name |court name | court address etc.
12
13
  * @return Observable<LocationByEPIMMSModel[]>: Array of locationModel in Observable
13
14
  */
14
- getAllLocations(serviceIds: string, locationType: string, searchTerm: string, userLocations: LocationsByService[], bookingLocations: string[]): Observable<LocationByEPIMMSModel[]>;
15
+ getAllLocations(locationUrl: string, serviceIds: string, locationType: string, searchTerm: string, userLocations: LocationsByService[]): Observable<LocationByEPIMMSModel[]>;
15
16
  /**
16
17
  * @description searchLocations from service Ids/location type/search term
17
18
  * @param serviceIds: BBA3 | BBA3,BFA1 split with ','
@@ -20,4 +21,6 @@ export declare class LocationService {
20
21
  * @return Observable<LocationByEPIMMSModel[]>: Array of locationModel in Observable
21
22
  */
22
23
  searchLocations(serviceIds: string, locationType: string, searchTerm: string): Observable<LocationByEPIMMSModel[]>;
24
+ static ɵfac: i0.ɵɵFactoryDeclaration<LocationService, never>;
25
+ static ɵprov: i0.ɵɵInjectableDeclaration<LocationService>;
23
26
  }
@@ -2,6 +2,7 @@ import { Idle } from '@ng-idle/core';
2
2
  import { Keepalive } from '@ng-idle/keepalive';
3
3
  import { Observable } from 'rxjs';
4
4
  import { IdleConfigModel } from '../../models/idle-config.model';
5
+ import * as i0 from "@angular/core";
5
6
  export declare class ManageSessionServices {
6
7
  private readonly idle;
7
8
  private readonly keepalive;
@@ -9,4 +10,6 @@ export declare class ManageSessionServices {
9
10
  constructor(idle: Idle, keepalive: Keepalive);
10
11
  init(idleConfig: IdleConfigModel): void;
11
12
  appStateChanges(): Observable<any>;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<ManageSessionServices, never>;
14
+ static ɵprov: i0.ɵɵInjectableDeclaration<ManageSessionServices>;
12
15
  }
@@ -1,7 +1,7 @@
1
- export * from './case-sharing-state/case-sharing-state.service';
2
1
  export * from './feature-toggle/feature-toggle.guard';
3
2
  export * from './feature-toggle/feature-toggle.service';
4
3
  export * from './feature-toggle/launch-darkly.service';
4
+ export * from './address/address.service';
5
5
  export * from './google-analytics/google-analytics.service';
6
6
  export * from './google-tag-manager/google-tag-manager.service';
7
7
  export * from './manage-session/manage-session.services';
@@ -10,7 +10,5 @@ export * from './role-guard/role.guard';
10
10
  export * from './role-guard/role.service';
11
11
  export * from './cookie/cookie.service';
12
12
  export * from './loading/loading.service';
13
- export * from './locations/location.service';
14
13
  export * from './filter/filter.service';
15
- export * from './find-person/find-person.service';
16
- export * from './session-storage/session-storage.service';
14
+ export * from './ref-data';
@@ -0,0 +1,3 @@
1
+ export * from './models/ref-data-htmcs-service.model';
2
+ export * from './models/ref-data-region.model';
3
+ export * from './ref-data.service';
@@ -0,0 +1,13 @@
1
+ export interface RefDataHMCTSService {
2
+ jurisdiction: string;
3
+ service_id: number;
4
+ org_unit: string;
5
+ business_area: string;
6
+ sub_business_area: string;
7
+ service_description: string;
8
+ service_code: string;
9
+ service_short_description: string;
10
+ ccd_service_name: string;
11
+ last_update: string;
12
+ ccd_case_types: string[];
13
+ }
@@ -0,0 +1,4 @@
1
+ export interface RefDataRegion {
2
+ region_id: string;
3
+ description: string;
4
+ }
@@ -0,0 +1,8 @@
1
+ import { LocationModel } from '../../../../models';
2
+ export interface LocationModelsByServiceCodeResponse {
3
+ court_type: string;
4
+ court_type_id: string;
5
+ court_venues: LocationModel[];
6
+ service_code: string;
7
+ welsh_court_type: string;
8
+ }
@@ -0,0 +1,18 @@
1
+ import { HttpClient } from '@angular/common/http';
2
+ import { Observable } from 'rxjs';
3
+ import { LocationModel } from '../../../models';
4
+ import { RefDataHMCTSService } from '../models/ref-data-htmcs-service.model';
5
+ import { RefDataRegion } from '../models/ref-data-region.model';
6
+ import { LocationModelsByServiceCodeResponse } from './models/ref-data-locations-by-service-code-response.model';
7
+ import * as i0 from "@angular/core";
8
+ export declare class RefDataDataAccessService {
9
+ private readonly http;
10
+ static refDataUrl: string;
11
+ constructor(http: HttpClient);
12
+ getServices(): Observable<RefDataHMCTSService[]>;
13
+ getRegions(): Observable<RefDataRegion[]>;
14
+ getLocationsByServiceCode(serviceCode: string): Observable<LocationModelsByServiceCodeResponse>;
15
+ getLocations(): Observable<LocationModel[]>;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<RefDataDataAccessService, never>;
17
+ static ɵprov: i0.ɵɵInjectableDeclaration<RefDataDataAccessService>;
18
+ }
@@ -0,0 +1,17 @@
1
+ import { Observable } from 'rxjs';
2
+ import { LocationByEPIMMSModel } from '../../models';
3
+ import { RefDataHMCTSService } from './models/ref-data-htmcs-service.model';
4
+ import { RefDataRegion } from './models/ref-data-region.model';
5
+ import { RefDataDataAccessService } from './ref-data-data-access/ref-data-data-access.service';
6
+ import * as i0 from "@angular/core";
7
+ export declare class RefDataService {
8
+ private readonly refDataDataAccessService;
9
+ regions$: Observable<RefDataRegion[]>;
10
+ services$: Observable<RefDataHMCTSService[]>;
11
+ locations$: Observable<LocationByEPIMMSModel[]>;
12
+ private readonly locationsByServiceCodesCache;
13
+ constructor(refDataDataAccessService: RefDataDataAccessService);
14
+ getLocationsByServiceCodes(serviceCodes: string[]): Observable<LocationByEPIMMSModel[]>;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<RefDataService, never>;
16
+ static ɵprov: i0.ɵɵInjectableDeclaration<RefDataService>;
17
+ }
@@ -1,12 +1,16 @@
1
- import { ActivatedRouteSnapshot, CanActivate, Router, UrlTree } from '@angular/router';
1
+ import { ActivatedRouteSnapshot, Router, UrlTree } from '@angular/router';
2
+ import { Observable } from 'rxjs';
2
3
  import { RoleService } from './role.service';
4
+ import * as i0 from "@angular/core";
3
5
  export declare enum RoleMatching {
4
6
  ALL = 0,
5
7
  ANY = 1
6
8
  }
7
- export declare class RoleGuard implements CanActivate {
9
+ export declare class RoleGuard {
8
10
  private readonly roleService;
9
11
  private readonly router;
10
12
  constructor(roleService: RoleService, router: Router);
11
- canActivate(route: ActivatedRouteSnapshot): boolean | UrlTree;
13
+ canActivate(route: ActivatedRouteSnapshot): Observable<boolean | UrlTree>;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<RoleGuard, never>;
15
+ static ɵprov: i0.ɵɵInjectableDeclaration<RoleGuard>;
12
16
  }
@@ -1,6 +1,11 @@
1
- export declare type Role = string;
2
- export declare type Roles = Role[];
1
+ import { BehaviorSubject } from 'rxjs';
2
+ import * as i0 from "@angular/core";
3
+ export type Role = string;
4
+ export type Roles = Role[];
3
5
  export declare class RoleService {
4
- private pRoles;
5
- roles: Roles;
6
+ readonly pRoles: BehaviorSubject<Roles>;
7
+ roles$: import("rxjs").Observable<Roles>;
8
+ set roles(roles: Roles);
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<RoleService, never>;
10
+ static ɵprov: i0.ɵɵInjectableDeclaration<RoleService>;
6
11
  }
@@ -1,3 +1,4 @@
1
+ import * as i0 from "@angular/core";
1
2
  export declare class SessionStorageService {
2
3
  /**
3
4
  * Get an item from the session storage.
@@ -17,4 +18,6 @@ export declare class SessionStorageService {
17
18
  * Clear all the items held in session storage.
18
19
  */
19
20
  clear(): void;
21
+ static ɵfac: i0.ɵɵFactoryDeclaration<SessionStorageService, never>;
22
+ static ɵprov: i0.ɵɵInjectableDeclaration<SessionStorageService>;
20
23
  }
@@ -0,0 +1,17 @@
1
+ import { HttpClient } from '@angular/common/http';
2
+ import { Observable } from 'rxjs';
3
+ import { TaskNameModel } from '../../models/task-name.model';
4
+ import { SessionStorageService } from '../storage/session-storage/session-storage.service';
5
+ import * as i0 from "@angular/core";
6
+ export declare class TaskNameService {
7
+ private readonly http;
8
+ private readonly sessionStorageService;
9
+ static taskNamesKey: string;
10
+ constructor(http: HttpClient, sessionStorageService: SessionStorageService);
11
+ /**
12
+ * @return Observable<any[]>: Array of taskName in Observable
13
+ */
14
+ getTaskName(service: string): Observable<TaskNameModel[]>;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<TaskNameService, never>;
16
+ static ɵprov: i0.ɵɵInjectableDeclaration<TaskNameService>;
17
+ }
@@ -1,12 +1,13 @@
1
1
  import { Idle } from '@ng-idle/core';
2
2
  import { Keepalive } from '@ng-idle/keepalive';
3
3
  import { Observable } from 'rxjs';
4
- import { TimeoutNotificationConfig } from '../../models/timeout-notification.model';
4
+ import { TimeoutNotificationConfig } from '../../models';
5
+ import * as i0 from "@angular/core";
5
6
  /**
6
7
  * TimeoutNotificationsService
7
8
  *
8
9
  * The Timeout Notification Service allows your application to receive notifications
9
- * when a User is approaching the the total time that a User has been idle for.
10
+ * when a User is approaching the total time that a User has been idle for.
10
11
  *
11
12
  * This can be set by your application using the Timeout Notification Config object.
12
13
  *
@@ -19,6 +20,7 @@ import { TimeoutNotificationConfig } from '../../models/timeout-notification.mod
19
20
  export declare class TimeoutNotificationsService {
20
21
  private readonly idle;
21
22
  private readonly keepalive;
23
+ private readonly subs;
22
24
  private readonly eventEmitter;
23
25
  constructor(idle: Idle, keepalive: Keepalive);
24
26
  /**
@@ -41,8 +43,12 @@ export declare class TimeoutNotificationsService {
41
43
  * @see README.md for more information on TimeoutNotificationService.
42
44
  */
43
45
  initialise(config: TimeoutNotificationConfig): void;
46
+ reset(): void;
47
+ close(): void;
44
48
  /**
45
49
  * Expose the notification events, so that a 3rd party service can listen to the notifications.
46
50
  */
47
51
  notificationOnChange(): Observable<any>;
52
+ static ɵfac: i0.ɵɵFactoryDeclaration<TimeoutNotificationsService, never>;
53
+ static ɵprov: i0.ɵɵInjectableDeclaration<TimeoutNotificationsService>;
48
54
  }
package/lib/window.d.ts CHANGED
@@ -1,3 +1,3 @@
1
1
  import { InjectionToken } from '@angular/core';
2
2
  export declare const windowToken: InjectionToken<unknown>;
3
- export declare function windowProvider(): Window;
3
+ export declare function windowProvider(): Window & typeof globalThis;
package/package.json CHANGED
@@ -1,13 +1,10 @@
1
1
  {
2
2
  "name": "@hmcts/rpx-xui-common-lib",
3
- "version": "2.1.2-angular-upgrade-11",
3
+ "version": "2.1.2-google-analytics",
4
4
  "peerDependencies": {
5
- "@angular/common": "^7.2.0",
6
- "@angular/core": "^7.2.0",
7
- "@angular/material": "^7.2.0",
8
- "@angular/cdk": "^7.2.0",
9
- "launchdarkly-js-client-sdk": "^2.15.2",
10
- "ngx-pagination": "^3.2.1"
5
+ "launchdarkly-js-client-sdk": "^3.3.0",
6
+ "ngx-pagination": "^3.2.1",
7
+ "rpx-xui-translation": "^0.1.1"
11
8
  },
12
9
  "publishConfig": {
13
10
  "access": "public"
@@ -26,21 +23,24 @@
26
23
  "email": "ronald.mansveld@hmcts.net"
27
24
  }
28
25
  ],
29
- "devDependencies": {
30
- "ngx-spec": "^2.1.4",
31
- "node-sass": "^4.0.0"
26
+ "dependencies": {
27
+ "tslib": "^2.0.0"
28
+ },
29
+ "module": "fesm2022/hmcts-rpx-xui-common-lib.mjs",
30
+ "typings": "index.d.ts",
31
+ "exports": {
32
+ "./package.json": {
33
+ "default": "./package.json"
34
+ },
35
+ ".": {
36
+ "types": "./index.d.ts",
37
+ "esm2022": "./esm2022/hmcts-rpx-xui-common-lib.mjs",
38
+ "esm": "./esm2022/hmcts-rpx-xui-common-lib.mjs",
39
+ "default": "./fesm2022/hmcts-rpx-xui-common-lib.mjs"
40
+ }
32
41
  },
33
- "main": "bundles/hmcts-rpx-xui-common-lib.umd.js",
34
- "module": "fesm5/hmcts-rpx-xui-common-lib.js",
35
- "es2015": "fesm2015/hmcts-rpx-xui-common-lib.js",
36
- "esm5": "esm5/hmcts-rpx-xui-common-lib.js",
37
- "esm2015": "esm2015/hmcts-rpx-xui-common-lib.js",
38
- "fesm5": "fesm5/hmcts-rpx-xui-common-lib.js",
39
- "fesm2015": "fesm2015/hmcts-rpx-xui-common-lib.js",
40
- "typings": "hmcts-rpx-xui-common-lib.d.ts",
41
- "metadata": "hmcts-rpx-xui-common-lib.metadata.json",
42
42
  "sideEffects": false,
43
- "dependencies": {
44
- "tslib": "^1.9.0"
43
+ "scripts": {
44
+ "prepublishOnly": "node --eval \"console.error('ERROR: Trying to publish a package that has been compiled by Ivy in full compilation mode. This is not allowed.\\nPlease delete and rebuild the package with Ivy partial compilation mode, before attempting to publish.\\n')\" && exit 1"
45
45
  }
46
- }
46
+ }
package/public-api.d.ts CHANGED
@@ -3,5 +3,6 @@ export * from './lib/directives';
3
3
  export * from './lib/exui-common-lib.module';
4
4
  export * from './lib/gov-ui';
5
5
  export * from './lib/models';
6
+ export * from './lib/pipes';
6
7
  export * from './lib/services';
7
8
  export * from './lib/window';