@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
@@ -1,73 +0,0 @@
1
- /**
2
- * @fileoverview added by tsickle
3
- * Generated from: hmcts-rpx-xui-common-lib.ts
4
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
5
- */
6
- /**
7
- * Generated bundle index. Do not edit.
8
- */
9
- export { AccessibilityComponent, CheckboxListComponent, ContactDetailsComponent, DueDateComponent, GenericFilterComponent, HmctsSessionDialogComponent, InviteUserFormComponent, InviteUserPermissionComponent, LoadingSpinnerComponent, SelectedCaseConfirmComponent, SelectedCaseListComponent, SelectedCaseComponent, ServiceMessageComponent, ServiceMessagesComponent, ShareCaseConfirmComponent, ShareCaseComponent, TabComponent, TcConfirmComponent, TcDisplayHtmlComponent, TcDisplayPlainComponent, TermsAndConditionsComponent, UserDetailsComponent, UserListComponent, CookieBannerComponent, FindLocationComponent, SearchLocationComponent, PaginationComponent, FeatureToggleDirective, LetContext, LetDirective, COMMON_COMPONENTS, GOV_UI_COMPONENTS, ExuiCommonLibModule, GovUiService, checkboxesBeCheckedValidator, dateValidator, radioGroupValidator, HmctsSubNavigationComponent, BadgeColour, DateBadgeColour, SECONDS_IN_A_DAY, AnonymousFeatureUser, LoggedInFeatureUser, BookingCheckType, PersonRole, RoleCategory, RadioFilterFieldConfig, CaseSharingStateService, FeatureToggleGuard, FeatureToggleService, LaunchDarklyService, GoogleAnalyticsService, GoogleTagManagerService, ManageSessionServices, TimeoutNotificationsService, RoleMatching, RoleGuard, RoleService, CookieService, HasLoadingState, LoadingService, LocationService, FilterService, FindAPersonService, SessionStorageService, windowProvider, windowToken } from './public-api';
10
- export { AccessibilityComponent as ɵx } from './lib/components/accessibility/accessibility.component';
11
- export { CheckboxListComponent as ɵz } from './lib/components/checkbox-list/checkbox-list.component';
12
- export { ContactDetailsComponent as ɵf } from './lib/components/contact-details/contact-details.component';
13
- export { CookieBannerComponent as ɵbf } from './lib/components/cookie-banner/cookie-banner.component';
14
- export { DueDateComponent as ɵy } from './lib/components/due-date/due-date.component';
15
- export { ExuiPageWrapperComponent as ɵa } from './lib/components/exui-main-wrapper/exui-page-wrapper.component';
16
- export { FindLocationComponent as ɵbl } from './lib/components/find-location/find-location.component';
17
- export { FindPersonComponent as ɵbh } from './lib/components/find-person/find-person.component';
18
- export { GenericFilterComponent as ɵbd } from './lib/components/generic-filter/generic-filter.component';
19
- export { HmctsSessionDialogComponent as ɵk } from './lib/components/hmcts-session-dialog/hmcts-session-dialog.component';
20
- export { InviteUserFormComponent as ɵo } from './lib/components/invite-user-form/invite-user-form.component';
21
- export { InviteUserPermissionComponent as ɵn } from './lib/components/invite-user-permissions/invite-user-permission.component';
22
- export { LoadingSpinnerComponent as ɵbc } from './lib/components/loading-spinner/loading-spinner.component';
23
- export { PaginationComponent as ɵbp } from './lib/components/pagination/pagination.component';
24
- export { SearchJudicialsComponent as ɵbk } from './lib/components/search-judicials/search-judicials.component';
25
- export { SearchLocationComponent as ɵbm } from './lib/components/search-location/search-location.component';
26
- export { SearchVenueComponent as ɵbo } from './lib/components/search-venue/search-venue.component';
27
- export { SelectedCaseConfirmComponent as ɵv } from './lib/components/selected-case-confirm/selected-case-confirm.component';
28
- export { SelectedCaseListComponent as ɵt } from './lib/components/selected-case-list/selected-case-list.component';
29
- export { SelectedCaseComponent as ɵu } from './lib/components/selected-case/selected-case.component';
30
- export { ServiceMessageComponent as ɵba } from './lib/components/service-message/service-message.component';
31
- export { ServiceMessagesComponent as ɵbb } from './lib/components/service-messages/service-messages.component';
32
- export { ShareCaseConfirmComponent as ɵs } from './lib/components/share-case-confirm/share-case-confirm.component';
33
- export { ShareCaseComponent as ɵp } from './lib/components/share-case/share-case.component';
34
- export { TabComponent as ɵw } from './lib/components/tab/tab.component';
35
- export { TcConfirmComponent as ɵe } from './lib/components/tc-confirm/tc-confirm.component';
36
- export { TcDisplayHtmlComponent as ɵc } from './lib/components/terms-and-conditions/tc-display/tc-display-html/tc-display-html.component';
37
- export { TcDisplayPlainComponent as ɵd } from './lib/components/terms-and-conditions/tc-display/tc-display-plain/tc-display-plain.component';
38
- export { TermsAndConditionsComponent as ɵb } from './lib/components/terms-and-conditions/terms-and-conditions.component';
39
- export { UserDetailsComponent as ɵm } from './lib/components/user-details/user-details.component';
40
- export { UserListComponent as ɵl } from './lib/components/user-list/user-list.component';
41
- export { UserSelectComponent as ɵq } from './lib/components/user-select/user-select.component';
42
- export { FeatureToggleDirective as ɵg } from './lib/directives/feature-toggle/feature-toggle.directive';
43
- export { LetContext as ɵi, LetDirective as ɵj } from './lib/directives/let/let.directive';
44
- export { GovUkCheckboxComponent as ɵbz } from './lib/gov-ui/components/gov-uk-checkbox/gov-uk-checkbox.component';
45
- export { GovUkCheckboxesComponent as ɵcf } from './lib/gov-ui/components/gov-uk-checkboxes/gov-uk-checkboxes.component';
46
- export { GovUkDateComponent as ɵce } from './lib/gov-ui/components/gov-uk-date/gov-uk-date.component';
47
- export { GovUkErrorMessageComponent as ɵcc } from './lib/gov-ui/components/gov-uk-error-message/gov-uk-error-message.component';
48
- export { GovUkFieldsetComponent as ɵcd } from './lib/gov-ui/components/gov-uk-fieldset/gov-uk-fieldset.component';
49
- export { GovUkFileUploadComponent as ɵck } from './lib/gov-ui/components/gov-uk-file-upload/gov-uk-file-upload.component';
50
- export { GovUkFormGroupWrapperComponent as ɵca } from './lib/gov-ui/components/gov-uk-form-group-wrapper/gov-uk-form-group-wrapper.component';
51
- export { GovUkInputComponent as ɵby } from './lib/gov-ui/components/gov-uk-input/gov-uk-input.component';
52
- export { GovUkLabelComponent as ɵcb } from './lib/gov-ui/components/gov-uk-label/gov-uk-label.component';
53
- export { GovUkRadioComponent as ɵcg } from './lib/gov-ui/components/gov-uk-radio/gov-uk-radio.component';
54
- export { GovUkRadiosComponent as ɵch } from './lib/gov-ui/components/gov-uk-radios/gov-uk-radios.component';
55
- export { GovUkSelectComponent as ɵci } from './lib/gov-ui/components/gov-uk-select/gov-uk-select.component';
56
- export { GovukTableComponent as ɵbx } from './lib/gov-ui/components/gov-uk-table/gov-uk-table.component';
57
- export { GovUkTextareaComponent as ɵcj } from './lib/gov-ui/components/gov-uk-textarea/gov-uk-textarea.component';
58
- export { HmctsBannerComponent as ɵbw } from './lib/gov-ui/components/hmcts-banner/hmcts-banner.component';
59
- export { HmctsErrorSummaryComponent as ɵbu } from './lib/gov-ui/components/hmcts-error-summary/hmcts-error-summary.component';
60
- export { HmctsIdentityBarComponent as ɵbq } from './lib/gov-ui/components/hmcts-identity-bar/hmcts-identity-bar.component';
61
- export { HmctsMainWrapperComponent as ɵbv } from './lib/gov-ui/components/hmcts-main-wrapper/hmcts-main-wrapper.component';
62
- export { HmctsPaginationComponent as ɵbr } from './lib/gov-ui/components/hmcts-pagination/hmcts-pagination.component';
63
- export { HmctsPrimaryNavigationComponent as ɵbt } from './lib/gov-ui/components/hmcts-primary-navigation/hmcts-primary-navigation.component';
64
- export { HmctsSubNavigationComponent as ɵbs } from './lib/gov-ui/components/hmcts-sub-navigation/hmcts-sub-navigation.component';
65
- export { RemoveHostDirective as ɵcl } from './lib/gov-ui/directives/remove-host.directive';
66
- export { CaseSharingStateService as ɵr } from './lib/services/case-sharing-state/case-sharing-state.service';
67
- export { CookieService as ɵbg } from './lib/services/cookie/cookie.service';
68
- export { FeatureToggleService as ɵh } from './lib/services/feature-toggle/feature-toggle.service';
69
- export { FilterService as ɵbe } from './lib/services/filter/filter.service';
70
- export { FindAPersonService as ɵbi } from './lib/services/find-person/find-person.service';
71
- export { LocationService as ɵbn } from './lib/services/locations/location.service';
72
- export { SessionStorageService as ɵbj } from './lib/services/session-storage/session-storage.service';
73
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaG1jdHMtcnB4LXh1aS1jb21tb24tbGliLmpzIiwic291cmNlUm9vdCI6Im5nOi8vQGhtY3RzL3JweC14dWktY29tbW9uLWxpYi8iLCJzb3VyY2VzIjpbImhtY3RzLXJweC14dWktY29tbW9uLWxpYi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7OztBQUlBLDA0Q0FBYyxjQUFjLENBQUM7QUFFN0IsT0FBTyxFQUFDLHNCQUFzQixJQUFJLEVBQUUsRUFBQyxNQUFNLHdEQUF3RCxDQUFDO0FBQ3BHLE9BQU8sRUFBQyxxQkFBcUIsSUFBSSxFQUFFLEVBQUMsTUFBTSx3REFBd0QsQ0FBQztBQUNuRyxPQUFPLEVBQUMsdUJBQXVCLElBQUksRUFBRSxFQUFDLE1BQU0sNERBQTRELENBQUM7QUFDekcsT0FBTyxFQUFDLHFCQUFxQixJQUFJLEdBQUcsRUFBQyxNQUFNLHdEQUF3RCxDQUFDO0FBQ3BHLE9BQU8sRUFBQyxnQkFBZ0IsSUFBSSxFQUFFLEVBQUMsTUFBTSw4Q0FBOEMsQ0FBQztBQUNwRixPQUFPLEVBQUMsd0JBQXdCLElBQUksRUFBRSxFQUFDLE1BQU0sZ0VBQWdFLENBQUM7QUFDOUcsT0FBTyxFQUFDLHFCQUFxQixJQUFJLEdBQUcsRUFBQyxNQUFNLHdEQUF3RCxDQUFDO0FBQ3BHLE9BQU8sRUFBQyxtQkFBbUIsSUFBSSxHQUFHLEVBQUMsTUFBTSxvREFBb0QsQ0FBQztBQUM5RixPQUFPLEVBQUMsc0JBQXNCLElBQUksR0FBRyxFQUFDLE1BQU0sMERBQTBELENBQUM7QUFDdkcsT0FBTyxFQUFDLDJCQUEyQixJQUFJLEVBQUUsRUFBQyxNQUFNLHNFQUFzRSxDQUFDO0FBQ3ZILE9BQU8sRUFBQyx1QkFBdUIsSUFBSSxFQUFFLEVBQUMsTUFBTSw4REFBOEQsQ0FBQztBQUMzRyxPQUFPLEVBQUMsNkJBQTZCLElBQUksRUFBRSxFQUFDLE1BQU0sMkVBQTJFLENBQUM7QUFDOUgsT0FBTyxFQUFDLHVCQUF1QixJQUFJLEdBQUcsRUFBQyxNQUFNLDREQUE0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MkNBQTJDLENBQUM7QUFDakYsT0FBTyxFQUFDLHFCQUFxQixJQUFJLEdBQUcsRUFBQyxNQUFNLHdEQUF3RCxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBHZW5lcmF0ZWQgYnVuZGxlIGluZGV4LiBEbyBub3QgZWRpdC5cbiAqL1xuXG5leHBvcnQgKiBmcm9tICcuL3B1YmxpYy1hcGknO1xuXG5leHBvcnQge0FjY2Vzc2liaWxpdHlDb21wb25lbnQgYXMgybV4fSBmcm9tICcuL2xpYi9jb21wb25lbnRzL2FjY2Vzc2liaWxpdHkvYWNjZXNzaWJpbGl0eS5jb21wb25lbnQnO1xuZXhwb3J0IHtDaGVja2JveExpc3RDb21wb25lbnQgYXMgybV6fSBmcm9tICcuL2xpYi9jb21wb25lbnRzL2NoZWNrYm94LWxpc3QvY2hlY2tib3gtbGlzdC5jb21wb25lbnQnO1xuZXhwb3J0IHtDb250YWN0RGV0YWlsc0NvbXBvbmVudCBhcyDJtWZ9IGZyb20gJy4vbGliL2NvbXBvbmVudHMvY29udGFjdC1kZXRhaWxzL2NvbnRhY3QtZGV0YWlscy5jb21wb25lbnQnO1xuZXhwb3J0IHtDb29raWVCYW5uZXJDb21wb25lbnQgYXMgybViZn0gZnJvbSAnLi9saWIvY29tcG9uZW50cy9jb29raWUtYmFubmVyL2Nvb2tpZS1iYW5uZXIuY29tcG9uZW50JztcbmV4cG9ydCB7RHVlRGF0ZUNvbXBvbmVudCBhcyDJtXl9IGZyb20gJy4vbGliL2NvbXBvbmVudHMvZHVlLWRhdGUvZHVlLWRhdGUuY29tcG9uZW50JztcbmV4cG9ydCB7RXh1aVBhZ2VXcmFwcGVyQ29tcG9uZW50IGFzIMm1YX0gZnJvbSAnLi9saWIvY29tcG9uZW50cy9leHVpLW1haW4td3JhcHBlci9leHVpLXBhZ2Utd3JhcHBlci5jb21wb25lbnQnO1xuZXhwb3J0IHtGaW5kTG9jYXRpb25Db21wb25lbnQgYXMgybVibH0gZnJvbSAnLi9saWIvY29tcG9uZW50cy9maW5kLWxvY2F0aW9uL2ZpbmQtbG9jYXRpb24uY29tcG9uZW50JztcbmV4cG9ydCB7RmluZFBlcnNvbkNvbXBvbmVudCBhcyDJtWJofSBmcm9tICcuL2xpYi9jb21wb25lbnRzL2ZpbmQtcGVyc29uL2ZpbmQtcGVyc29uLmNvbXBvbmVudCc7XG5leHBvcnQge0dlbmVyaWNGaWx0ZXJDb21wb25lbnQgYXMgybViZH0gZnJvbSAnLi9saWIvY29tcG9uZW50cy9nZW5lcmljLWZpbHRlci9nZW5lcmljLWZpbHRlci5jb21wb25lbnQnO1xuZXhwb3J0IHtIbWN0c1Nlc3Npb25EaWFsb2dDb21wb25lbnQgYXMgybVrfSBmcm9tICcuL2xpYi9jb21wb25lbnRzL2htY3RzLXNlc3Npb24tZGlhbG9nL2htY3RzLXNlc3Npb24tZGlhbG9nLmNvbXBvbmVudCc7XG5leHBvcnQge0ludml0ZVVzZXJGb3JtQ29tcG9uZW50IGFzIMm1b30gZnJvbSAnLi9saWIvY29tcG9uZW50cy9pbnZpdGUtdXNlci1mb3JtL2ludml0ZS11c2VyLWZvcm0uY29tcG9uZW50JztcbmV4cG9ydCB7SW52aXRlVXNlclBlcm1pc3Npb25Db21wb25lbnQgYXMgybVufSBmcm9tICcuL2xpYi9jb21wb25lbnRzL2ludml0ZS11c2VyLXBlcm1pc3Npb25zL2ludml0ZS11c2VyLXBlcm1pc3Npb24uY29tcG9uZW50JztcbmV4cG9ydCB7TG9hZGluZ1NwaW5uZXJDb21wb25lbnQgYXMgybViY30gZnJvbSAnLi9saWIvY29tcG9uZW50cy9sb2FkaW5nLXNwaW5uZXIvbG9hZGluZy1zcGlubmVyLmNvbXBvbmVudCc7XG5leHBvcnQge1BhZ2luYXRpb25Db21wb25lbnQgYXMgybVicH0gZnJvbSAnLi9saWIvY29tcG9uZW50cy9wYWdpbmF0aW9uL3BhZ2luYXRpb24uY29tcG9uZW50JztcbmV4cG9ydCB7U2VhcmNoSnVkaWNpYWxzQ29tcG9uZW50IGFzIMm1Ymt9IGZyb20gJy4vbGliL2NvbXBvbmVudHMvc2VhcmNoLWp1ZGljaWFscy9zZWFyY2gtanVkaWNpYWxzLmNvbXBvbmVudCc7XG5leHBvcnQge1NlYXJjaExvY2F0aW9uQ29tcG9uZW50IGFzIMm1Ym19IGZyb20gJy4vbGliL2NvbXBvbmVudHMvc2VhcmNoLWxvY2F0aW9uL3NlYXJjaC1sb2NhdGlvbi5jb21wb25lbnQnO1xuZXhwb3J0IHtTZWFyY2hWZW51ZUNvbXBvbmVudCBhcyDJtWJvfSBmcm9tICcuL2xpYi9jb21wb25lbnRzL3NlYXJjaC12ZW51ZS9zZWFyY2gtdmVudWUuY29tcG9uZW50JztcbmV4cG9ydCB7U2VsZWN0ZWRDYXNlQ29uZmlybUNvbXBvbmVudCBhcyDJtXZ9IGZyb20gJy4vbGliL2NvbXBvbmVudHMvc2VsZWN0ZWQtY2FzZS1jb25maXJtL3NlbGVjdGVkLWNhc2UtY29uZmlybS5jb21wb25lbnQnO1xuZXhwb3J0IHtTZWxlY3RlZENhc2VMaXN0Q29tcG9uZW50IGFzIMm1dH0gZnJvbSAnLi9saWIvY29tcG9uZW50cy9zZWxlY3RlZC1jYXNlLWxpc3Qvc2VsZWN0ZWQtY2FzZS1saXN0LmNvbXBvbmVudCc7XG5leHBvcnQge1NlbGVjdGVkQ2FzZUNvbXBvbmVudCBhcyDJtXV9IGZyb20gJy4vbGliL2NvbXBvbmVudHMvc2VsZWN0ZWQtY2FzZS9zZWxlY3RlZC1jYXNlLmNvbXBvbmVudCc7XG5leHBvcnQge1NlcnZpY2VNZXNzYWdlQ29tcG9uZW50IGFzIMm1YmF9IGZyb20gJy4vbGliL2NvbXBvbmVudHMvc2VydmljZS1tZXNzYWdlL3NlcnZpY2UtbWVzc2FnZS5jb21wb25lbnQnO1xuZXhwb3J0IHtTZXJ2aWNlTWVzc2FnZXNDb21wb25lbnQgYXMgybViYn0gZnJvbSAnLi9saWIvY29tcG9uZW50cy9zZXJ2aWNlLW1lc3NhZ2VzL3NlcnZpY2UtbWVzc2FnZXMuY29tcG9uZW50JztcbmV4cG9ydCB7U2hhcmVDYXNlQ29uZmlybUNvbXBvbmVudCBhcyDJtXN9IGZyb20gJy4vbGliL2NvbXBvbmVudHMvc2hhcmUtY2FzZS1jb25maXJtL3NoYXJlLWNhc2UtY29uZmlybS5jb21wb25lbnQnO1xuZXhwb3J0IHtTaGFyZUNhc2VDb21wb25lbnQgYXMgybVwfSBmcm9tICcuL2xpYi9jb21wb25lbnRzL3NoYXJlLWNhc2Uvc2hhcmUtY2FzZS5jb21wb25lbnQnO1xuZXhwb3J0IHtUYWJDb21wb25lbnQgYXMgybV3fSBmcm9tICcuL2xpYi9jb21wb25lbnRzL3RhYi90YWIuY29tcG9uZW50JztcbmV4cG9ydCB7VGNDb25maXJtQ29tcG9uZW50IGFzIMm1ZX0gZnJvbSAnLi9saWIvY29tcG9uZW50cy90Yy1jb25maXJtL3RjLWNvbmZpcm0uY29tcG9uZW50JztcbmV4cG9ydCB7VGNEaXNwbGF5SHRtbENvbXBvbmVudCBhcyDJtWN9IGZyb20gJy4vbGliL2NvbXBvbmVudHMvdGVybXMtYW5kLWNvbmRpdGlvbnMvdGMtZGlzcGxheS90Yy1kaXNwbGF5LWh0bWwvdGMtZGlzcGxheS1odG1sLmNvbXBvbmVudCc7XG5leHBvcnQge1RjRGlzcGxheVBsYWluQ29tcG9uZW50IGFzIMm1ZH0gZnJvbSAnLi9saWIvY29tcG9uZW50cy90ZXJtcy1hbmQtY29uZGl0aW9ucy90Yy1kaXNwbGF5L3RjLWRpc3BsYXktcGxhaW4vdGMtZGlzcGxheS1wbGFpbi5jb21wb25lbnQnO1xuZXhwb3J0IHtUZXJtc0FuZENvbmRpdGlvbnNDb21wb25lbnQgYXMgybVifSBmcm9tICcuL2xpYi9jb21wb25lbnRzL3Rlcm1zLWFuZC1jb25kaXRpb25zL3Rlcm1zLWFuZC1jb25kaXRpb25zLmNvbXBvbmVudCc7XG5leHBvcnQge1VzZXJEZXRhaWxzQ29tcG9uZW50IGFzIMm1bX0gZnJvbSAnLi9saWIvY29tcG9uZW50cy91c2VyLWRldGFpbHMvdXNlci1kZXRhaWxzLmNvbXBvbmVudCc7XG5leHBvcnQge1VzZXJMaXN0Q29tcG9uZW50IGFzIMm1bH0gZnJvbSAnLi9saWIvY29tcG9uZW50cy91c2VyLWxpc3QvdXNlci1saXN0LmNvbXBvbmVudCc7XG5leHBvcnQge1VzZXJTZWxlY3RDb21wb25lbnQgYXMgybVxfSBmcm9tICcuL2xpYi9jb21wb25lbnRzL3VzZXItc2VsZWN0L3VzZXItc2VsZWN0LmNvbXBvbmVudCc7XG5leHBvcnQge0ZlYXR1cmVUb2dnbGVEaXJlY3RpdmUgYXMgybVnfSBmcm9tICcuL2xpYi9kaXJlY3RpdmVzL2ZlYXR1cmUtdG9nZ2xlL2ZlYXR1cmUtdG9nZ2xlLmRpcmVjdGl2ZSc7XG5leHBvcnQge0xldENvbnRleHQgYXMgybVpLExldERpcmVjdGl2ZSBhcyDJtWp9IGZyb20gJy4vbGliL2RpcmVjdGl2ZXMvbGV0L2xldC5kaXJlY3RpdmUnO1xuZXhwb3J0IHtHb3ZVa0NoZWNrYm94Q29tcG9uZW50IGFzIMm1Ynp9IGZyb20gJy4vbGliL2dvdi11aS9jb21wb25lbnRzL2dvdi11ay1jaGVja2JveC9nb3YtdWstY2hlY2tib3guY29tcG9uZW50JztcbmV4cG9ydCB7R292VWtDaGVja2JveGVzQ29tcG9uZW50IGFzIMm1Y2Z9IGZyb20gJy4vbGliL2dvdi11aS9jb21wb25lbnRzL2dvdi11ay1jaGVja2JveGVzL2dvdi11ay1jaGVja2JveGVzLmNvbXBvbmVudCc7XG5leHBvcnQge0dvdlVrRGF0ZUNvbXBvbmVudCBhcyDJtWNlfSBmcm9tICcuL2xpYi9nb3YtdWkvY29tcG9uZW50cy9nb3YtdWstZGF0ZS9nb3YtdWstZGF0ZS5jb21wb25lbnQnO1xuZXhwb3J0IHtHb3ZVa0Vycm9yTWVzc2FnZUNvbXBvbmVudCBhcyDJtWNjfSBmcm9tICcuL2xpYi9nb3YtdWkvY29tcG9uZW50cy9nb3YtdWstZXJyb3ItbWVzc2FnZS9nb3YtdWstZXJyb3ItbWVzc2FnZS5jb21wb25lbnQnO1xuZXhwb3J0IHtHb3ZVa0ZpZWxkc2V0Q29tcG9uZW50IGFzIMm1Y2R9IGZyb20gJy4vbGliL2dvdi11aS9jb21wb25lbnRzL2dvdi11ay1maWVsZHNldC9nb3YtdWstZmllbGRzZXQuY29tcG9uZW50JztcbmV4cG9ydCB7R292VWtGaWxlVXBsb2FkQ29tcG9uZW50IGFzIMm1Y2t9IGZyb20gJy4vbGliL2dvdi11aS9jb21wb25lbnRzL2dvdi11ay1maWxlLXVwbG9hZC9nb3YtdWstZmlsZS11cGxvYWQuY29tcG9uZW50JztcbmV4cG9ydCB7R292VWtGb3JtR3JvdXBXcmFwcGVyQ29tcG9uZW50IGFzIMm1Y2F9IGZyb20gJy4vbGliL2dvdi11aS9jb21wb25lbnRzL2dvdi11ay1mb3JtLWdyb3VwLXdyYXBwZXIvZ292LXVrLWZvcm0tZ3JvdXAtd3JhcHBlci5jb21wb25lbnQnO1xuZXhwb3J0IHtHb3ZVa0lucHV0Q29tcG9uZW50IGFzIMm1Ynl9IGZyb20gJy4vbGliL2dvdi11aS9jb21wb25lbnRzL2dvdi11ay1pbnB1dC9nb3YtdWstaW5wdXQuY29tcG9uZW50JztcbmV4cG9ydCB7R292VWtMYWJlbENvbXBvbmVudCBhcyDJtWNifSBmcm9tICcuL2xpYi9nb3YtdWkvY29tcG9uZW50cy9nb3YtdWstbGFiZWwvZ292LXVrLWxhYmVsLmNvbXBvbmVudCc7XG5leHBvcnQge0dvdlVrUmFkaW9Db21wb25lbnQgYXMgybVjZ30gZnJvbSAnLi9saWIvZ292LXVpL2NvbXBvbmVudHMvZ292LXVrLXJhZGlvL2dvdi11ay1yYWRpby5jb21wb25lbnQnO1xuZXhwb3J0IHtHb3ZVa1JhZGlvc0NvbXBvbmVudCBhcyDJtWNofSBmcm9tICcuL2xpYi9nb3YtdWkvY29tcG9uZW50cy9nb3YtdWstcmFkaW9zL2dvdi11ay1yYWRpb3MuY29tcG9uZW50JztcbmV4cG9ydCB7R292VWtTZWxlY3RDb21wb25lbnQgYXMgybVjaX0gZnJvbSAnLi9saWIvZ292LXVpL2NvbXBvbmVudHMvZ292LXVrLXNlbGVjdC9nb3YtdWstc2VsZWN0LmNvbXBvbmVudCc7XG5leHBvcnQge0dvdnVrVGFibGVDb21wb25lbnQgYXMgybVieH0gZnJvbSAnLi9saWIvZ292LXVpL2NvbXBvbmVudHMvZ292LXVrLXRhYmxlL2dvdi11ay10YWJsZS5jb21wb25lbnQnO1xuZXhwb3J0IHtHb3ZVa1RleHRhcmVhQ29tcG9uZW50IGFzIMm1Y2p9IGZyb20gJy4vbGliL2dvdi11aS9jb21wb25lbnRzL2dvdi11ay10ZXh0YXJlYS9nb3YtdWstdGV4dGFyZWEuY29tcG9uZW50JztcbmV4cG9ydCB7SG1jdHNCYW5uZXJDb21wb25lbnQgYXMgybVid30gZnJvbSAnLi9saWIvZ292LXVpL2NvbXBvbmVudHMvaG1jdHMtYmFubmVyL2htY3RzLWJhbm5lci5jb21wb25lbnQnO1xuZXhwb3J0IHtIbWN0c0Vycm9yU3VtbWFyeUNvbXBvbmVudCBhcyDJtWJ1fSBmcm9tICcuL2xpYi9nb3YtdWkvY29tcG9uZW50cy9obWN0cy1lcnJvci1zdW1tYXJ5L2htY3RzLWVycm9yLXN1bW1hcnkuY29tcG9uZW50JztcbmV4cG9ydCB7SG1jdHNJZGVudGl0eUJhckNvbXBvbmVudCBhcyDJtWJxfSBmcm9tICcuL2xpYi9nb3YtdWkvY29tcG9uZW50cy9obWN0cy1pZGVudGl0eS1iYXIvaG1jdHMtaWRlbnRpdHktYmFyLmNvbXBvbmVudCc7XG5leHBvcnQge0htY3RzTWFpbldyYXBwZXJDb21wb25lbnQgYXMgybVidn0gZnJvbSAnLi9saWIvZ292LXVpL2NvbXBvbmVudHMvaG1jdHMtbWFpbi13cmFwcGVyL2htY3RzLW1haW4td3JhcHBlci5jb21wb25lbnQnO1xuZXhwb3J0IHtIbWN0c1BhZ2luYXRpb25Db21wb25lbnQgYXMgybVicn0gZnJvbSAnLi9saWIvZ292LXVpL2NvbXBvbmVudHMvaG1jdHMtcGFnaW5hdGlvbi9obWN0cy1wYWdpbmF0aW9uLmNvbXBvbmVudCc7XG5leHBvcnQge0htY3RzUHJpbWFyeU5hdmlnYXRpb25Db21wb25lbnQgYXMgybVidH0gZnJvbSAnLi9saWIvZ292LXVpL2NvbXBvbmVudHMvaG1jdHMtcHJpbWFyeS1uYXZpZ2F0aW9uL2htY3RzLXByaW1hcnktbmF2aWdhdGlvbi5jb21wb25lbnQnO1xuZXhwb3J0IHtIbWN0c1N1Yk5hdmlnYXRpb25Db21wb25lbnQgYXMgybVic30gZnJvbSAnLi9saWIvZ292LXVpL2NvbXBvbmVudHMvaG1jdHMtc3ViLW5hdmlnYXRpb24vaG1jdHMtc3ViLW5hdmlnYXRpb24uY29tcG9uZW50JztcbmV4cG9ydCB7UmVtb3ZlSG9zdERpcmVjdGl2ZSBhcyDJtWNsfSBmcm9tICcuL2xpYi9nb3YtdWkvZGlyZWN0aXZlcy9yZW1vdmUtaG9zdC5kaXJlY3RpdmUnO1xuZXhwb3J0IHtDYXNlU2hhcmluZ1N0YXRlU2VydmljZSBhcyDJtXJ9IGZyb20gJy4vbGliL3NlcnZpY2VzL2Nhc2Utc2hhcmluZy1zdGF0ZS9jYXNlLXNoYXJpbmctc3RhdGUuc2VydmljZSc7XG5leHBvcnQge0Nvb2tpZVNlcnZpY2UgYXMgybViZ30gZnJvbSAnLi9saWIvc2VydmljZXMvY29va2llL2Nvb2tpZS5zZXJ2aWNlJztcbmV4cG9ydCB7RmVhdHVyZVRvZ2dsZVNlcnZpY2UgYXMgybVofSBmcm9tICcuL2xpYi9zZXJ2aWNlcy9mZWF0dXJlLXRvZ2dsZS9mZWF0dXJlLXRvZ2dsZS5zZXJ2aWNlJztcbmV4cG9ydCB7RmlsdGVyU2VydmljZSBhcyDJtWJlfSBmcm9tICcuL2xpYi9zZXJ2aWNlcy9maWx0ZXIvZmlsdGVyLnNlcnZpY2UnO1xuZXhwb3J0IHtGaW5kQVBlcnNvblNlcnZpY2UgYXMgybViaX0gZnJvbSAnLi9saWIvc2VydmljZXMvZmluZC1wZXJzb24vZmluZC1wZXJzb24uc2VydmljZSc7XG5leHBvcnQge0xvY2F0aW9uU2VydmljZSBhcyDJtWJufSBmcm9tICcuL2xpYi9zZXJ2aWNlcy9sb2NhdGlvbnMvbG9jYXRpb24uc2VydmljZSc7XG5leHBvcnQge1Nlc3Npb25TdG9yYWdlU2VydmljZSBhcyDJtWJqfSBmcm9tICcuL2xpYi9zZXJ2aWNlcy9zZXNzaW9uLXN0b3JhZ2Uvc2Vzc2lvbi1zdG9yYWdlLnNlcnZpY2UnOyJdfQ==
@@ -1,22 +0,0 @@
1
- /**
2
- * @fileoverview added by tsickle
3
- * Generated from: lib/components/accessibility/accessibility.component.ts
4
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
5
- */
6
- import { Component } from '@angular/core';
7
- var AccessibilityComponent = /** @class */ (function () {
8
- function AccessibilityComponent() {
9
- }
10
- AccessibilityComponent.decorators = [
11
- { type: Component, args: [{
12
- selector: 'xuilib-accessibility',
13
- template: "<h1 class=\"govuk-heading-xl\" id=\"Accessibility-statement-for-Expert-UI\">Accessibility statement for Expert UI</h1>\n\n<ul class=\"govuk-list\">\n <li><a href=\"accessibility#immigration\">Immigration and Asylum</a></li>\n <li><a href=\"accessibility#family\">Family Public Law </a></li>\n</ul>\n\n<p class=\"govuk-body\">This website is run by HM Courts & Tribunals Service. We want as many people as possible to be\n able to use this website. For example, you should be able to:</p>\n\n<ul class=\"govuk-list govuk-list--bullet\">\n <li>change colours, contrast levels and fonts</li>\n <li>zoom in up to 300% without the text spilling off the screen</li>\n <li>navigate most of the website using just a keyboard</li>\n <li>navigate most of the website using speech recognition software</li>\n <li>listen to most of the website using a screen reader (including the most recent versions of JAWS, NVDA and\n VoiceOver)\n </li>\n</ul>\n\n<p class=\"govuk-body\">We\u2019ve also made the website text as simple as possible to understand.</p>\n\n<p class=\"govuk-body\"><a rel=\"noopener noreferrer\" target=\"_blank\" href=\"https://mcmw.abilitynet.org.uk/\">AbilityNet</a>\n has advice on making your device easier to use if you have a disability.</p>\n\n<h2 class=\"govuk-heading-l\" id=\"How-accessible-this-website-is\">How accessible this website is</h2>\n\n<p class=\"govuk-body\">We know some parts of the website are not fully accessible:</p>\n\n<ul class=\"govuk-list govuk-list--bullet\">\n <li>some pages are difficult to navigate using just a keyboard</li>\n <li>some pages can\u2019t be listened to in full using a screen reader</li>\n <li>some pages have problems with colour contrasts between text and background</li>\n <li>some PDFs may not be fully accessible to a screen reader</li>\n</ul>\n\n<h2 class=\"govuk-heading-l\" id=\"What-to-do-if-you-cannot-access-parts-of-this-website\">Feedback and contact\n information</h2>\n\n<p class=\"govuk-body\">If you need information on this website in a different format like accessible PDF, large print,\n easy read, audio recording or braille, you can:</p>\n\n<ul class=\"govuk-list govuk-list--bullet\">\n <li>email: <a href=\"mailto:HMCTSforms@justice.gov.uk\"> HMCTSforms@justice.gov.uk</a></li>\n <li>call: +44 (0) 300 123 1711</li>\n <li>contact your service representative</li>\n</ul>\n\n<p class=\"govuk-body\">We\u2019ll consider your request and get back to you in 10 working days.</p>\n\n<h2 class=\"govuk-heading-l\" id=\"Reporting-accessibility-problems-with-this-website\">Reporting accessibility problems\n with this website</h2>\n\n<p class=\"govuk-body\">We\u2019re always looking to improve the accessibility of this website. If you find any problems not\n listed on this page or think we\u2019re not meeting accessibility requirements, contact:</p>\n\n<ul class=\"govuk-list govuk-list--bullet\">\n <li>email: <a href=\"mailto:customer.service@justice.gov.uk\"> customer.service@justice.gov.uk</a></li>\n <li>telephone: +44 (0) 300 123 1711</li>\n</ul>\n\n<h2 class=\"govuk-heading-l\" id=\"Enforcement-procedure \">Enforcement procedure</h2>\n\n<p class=\"govuk-body\">The Equality and Human Rights Commission (EHRC) is responsible for enforcing the Public Sector\n Bodies (Websites and Mobile Applications) (No. 2) Accessibility Regulations 2018 (the \u2018accessibility\n regulations\u2019). </p>\n\n<p class=\"govuk-body\">If you\u2019re not happy with how we respond to your complaint, <a rel=\"noopener noreferrer\"\n target=\"_blank\"\n href=\"https://www.equalityadvisoryservice.com/\">contact\n the Equality Advisory and Support Service (EASS).</a></p>\n\n<h1 class=\"govuk-heading-l\" id=\"Contacting-us-by-phone-or-visiting-us-in-person\">Contacting us by phone or visiting us\n in person</h1>\n\n<p class=\"govuk-body\">We provide a text relay service for people who are D/deaf, hearing impaired or have a speech\n impediment.</p>\n\n<p class=\"govuk-body\">Our offices and tribunal venues have audio induction loops, or if you contact us before your visit\n we can arrange a British Sign Language (BSL) interpreter. You can also request step-free access or a foreign language\n interpreter.</p>\n\n<p class=\"govuk-body\">If you have a question about accessibility in our Tribunal venues, you can contact the First-tier\n Tribunal enquiry line: +44 (0) 300 123 1711. You can <a target=\"_blank\"\n href=\"https://courttribunalfinder.service.gov.uk/search/\">find\n the contact details for court and tribunal venues</a>. </p>\n\n<p class=\"govuk-body\">You can also contact your service representative for more information.</p>\n\n<h1 class=\"govuk-heading-l\" id=\"Technical-information-about-this-website\u2019s-accessibility\">Technical information about\n this website\u2019s accessibility</h1>\n\n<p class=\"govuk-body\">HMCTS is committed to making its website accessible, in accordance with the Public Sector Bodies\n (Websites and Mobile Applications) (No.2) Accessibility Regulations 2018.</p>\n\n<p class=\"govuk-body\">This website is partially compliant with the <a rel=\"noopener noreferrer\" target=\"_blank\"\n href=\"https://www.w3.org/TR/WCAG21/\">Web Content\n Accessibility Guidelines version 2.1</a>, due to the non-compliances listed below.</p>\n\n<h1 class=\"govuk-heading-l\" id=\"Non-accessible-content\">Non-accessible content </h1>\n\n<p class=\"govuk-body\">The content listed below is non-compliant for the following reasons.</p>\n\n<h2 class=\"govuk-heading-l\" id=\"Non-compliance-with-the-accessibility-regulations\">Non-compliance with the accessibility\n regulations</h2>\n\n<p class=\"govuk-body\">Some pages cannot be navigated completely using just a keyboard, so some people won\u2019t be able to\n tab through the pages. This fails WCAG 2.1 success criterion 2.1 (keyboard accessible).</p>\n\n<p class=\"govuk-body\">Some pages can\u2019t be listened to in full using a screen reader, so some people won\u2019t be able to\n access the information. This fails WCAG 2.1 success criterion 1.2.5 (audio description \u2013 prerecorded).</p>\n\n<p class=\"govuk-body\">Some of the contrast ratios don\u2019t meet the current accessibility requirements. This fails WCAG 2.1\n success criterion 1.4.3 (contrast \u2013 minimum).</p>\n\n<h3 class=\"govuk-heading-m\" id=\"immigration\">Immigration and Asylum</h3>\n\n<p class=\"govuk-body\">Some of the images on the service include text and are not accessible for some low vision users.\n We have identified a solution for this issue that we will implement as soon as possible.</p>\n\n<h3 class=\"govuk-heading-m\" id=\"family\">Family Public Law </h3>\n\n<ol class=\"govuk-list govuk-list--alpha\">\n <li>The navigation system used in family public law cannot be rendered well by screen readers, so features can\u2019t be\n listened to in full\n </li>\n <li>Some essential functions within the family public law digital service cannot be accessed properly using screen\n readers\n </li>\n <li>Some complex forms within the service will not be rendered correctly or cannot be listened to by screen readers\n </li>\n</ol>\n\n<h2 class=\"govuk-heading-m\" id=\"Disproportionate burden \">Disproportionate burden </h2>\n\n<p class=\"govuk-body\">For Manage organisation, Register organisation, Approve organisations and Manage cases, we found\n the following issues that are currently being triaged to find out if there is a disproportionate burden:</p>\n\n<ol class=\"govuk-list govuk-list--alpha\">\n <li>Screen readers can\u2019t switch between headers, read content in tabs and buttons</li>\n <li>Screen readers can\u2019t tab between radio buttons, read links or content</li>\n <li>Colour contrast ratios uneven between page background and content</li>\n <li>Some labels, fields, error messages and other content can\u2019t be clearly identified by screen readers and voice\n activation software\n </li>\n <li>Some page headings and titles don\u2019t follow a logical structure for screen readers</li>\n <li>The navigation of some pages isn\u2019t clear</li>\n <li>Some headings, links and button labels aren\u2019t clearly descriptive</li>\n</ol>\n\n<h2 class=\"govuk-heading-m\" id=\"Content-that\u2019s-not-within-the-scope-of-the-accessibility-regulations\">Content that\u2019s not\n within the scope of the accessibility regulations </h2>\n\n<p class=\"govuk-body\">PDFs, documents and attachments to email notifications published before 23 September 2018 may not\n meet accessibility standards. For example, they may not be structured so they\u2019re accessible to a screen reader.</p>\n\n<p class=\"govuk-body\">Any new PDFs or Word documents we publish will meet accessibility standards.</p>\n\n<h1 class=\"govuk-heading-l\" id=\"what-to-improve-accessibility\">What we\u2019re doing to improve accessibility</h1>\n\n<p class=\"govuk-body\">We\u2019re committed to ensuring our services are accessible to all our users and that they comply with\n level AA of the Web Content Accessibility Guidelines \u2013 WCAG 2.1.</p>\n\n<p class=\"govuk-body\">We\u2019re actively working to improve the identified issues and make them AA-compliant by 23 September\n 2020. We\u2019re also continuing to improve all other AAA-level accessibility issues as we iterate the service.</p>\n\n<h1 class=\"govuk-heading-l\" id=\"preparation-of-this-accessibility-statement\">Preparation of this accessibility\n statement</h1>\n\n<p class=\"govuk-body\">This statement was prepared on 16 September 2019. It was last reviewed on 16 September 2020.</p>\n\n<p class=\"govuk-body\">This website was last tested on 19 May 2020. The test was carried out by the <a target=\"_blank\"\n href=\"https://digitalaccessibilitycentre.org/\">Digital\n Accessibility Centre (DAC)</a>.</p>\n\n<h3 class=\"govuk-heading-m\">Family Private Law:</h3>\n\n<p class=\"govuk-body\">This service has not yet been tested for accessibility issues. In the future, we will conduct an\n accessibility audit in order to find out if there are any accessibility issues. The accessibility statement will be\n updated with any relevant changes that we find.</p>\n\n<p class=\"govuk-body\">If there are any issues with accessing information or using this website please contact:</p>\n\n<ol class=\"govuk-list govuk-list--bullet\">\n <li>Nicola Whitcher - 02380 384324</li>\n <li>Hannah Townley - 02380 384313</li>\n</ol>",
14
- styles: [".govuk-list--alpha{padding-left:20px;list-style-type:lower-alpha}"]
15
- }] }
16
- ];
17
- /** @nocollapse */
18
- AccessibilityComponent.ctorParameters = function () { return []; };
19
- return AccessibilityComponent;
20
- }());
21
- export { AccessibilityComponent };
22
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWNjZXNzaWJpbGl0eS5jb21wb25lbnQuanMiLCJzb3VyY2VSb290Ijoibmc6Ly9AaG1jdHMvcnB4LXh1aS1jb21tb24tbGliLyIsInNvdXJjZXMiOlsibGliL2NvbXBvbmVudHMvYWNjZXNzaWJpbGl0eS9hY2Nlc3NpYmlsaXR5LmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7OztBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFFMUM7SUFPRTtJQUNBLENBQUM7O2dCQVJGLFNBQVMsU0FBQztvQkFDUCxRQUFRLEVBQUUsc0JBQXNCO29CQUNoQywya1ZBQTZDOztpQkFFaEQ7Ozs7SUFLRCw2QkFBQztDQUFBLEFBVEQsSUFTQztTQUhZLHNCQUFzQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5AQ29tcG9uZW50KHtcbiAgICBzZWxlY3RvcjogJ3h1aWxpYi1hY2Nlc3NpYmlsaXR5JyxcbiAgICB0ZW1wbGF0ZVVybDogJy4vYWNjZXNzaWJpbGl0eS5jb21wb25lbnQuaHRtbCcsXG4gICAgc3R5bGVVcmxzOiBbJy4vYWNjZXNzaWJpbGl0eS5jb21wb25lbnQuc2NzcyddXG59KVxuXG5leHBvcnQgY2xhc3MgQWNjZXNzaWJpbGl0eUNvbXBvbmVudCB7XG4gIGNvbnN0cnVjdG9yKCkge1xuICB9XG59XG4iXX0=
@@ -1,391 +0,0 @@
1
- /**
2
- * @fileoverview added by tsickle
3
- * Generated from: lib/components/checkbox-list/checkbox-list.component.ts
4
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
5
- */
6
- import * as tslib_1 from "tslib";
7
- import { Component, EventEmitter, Input, Output, ViewEncapsulation } from '@angular/core';
8
- /**
9
- * @template T
10
- */
11
- var CheckboxListComponent = /** @class */ (function () {
12
- function CheckboxListComponent() {
13
- /**
14
- * The options to show checkboxes for. Note that the type
15
- * within the array corresponds to the one for the component.
16
- */
17
- this.options = [];
18
- /**
19
- * Whenever the selection changes, this event fires. What is dispatched
20
- * is the current selection, also retrievable from .selection.
21
- */
22
- this.selectionChange = new EventEmitter();
23
- }
24
- Object.defineProperty(CheckboxListComponent.prototype, "selection", {
25
- /**
26
- * The currently selected values.
27
- * Note: This array is immutable, which means pushing and popping will
28
- * have no effect on which checkboxes are selected.
29
- */
30
- get: /**
31
- * The currently selected values.
32
- * Note: This array is immutable, which means pushing and popping will
33
- * have no effect on which checkboxes are selected.
34
- * @return {?}
35
- */
36
- function () {
37
- return this.pSelection ? tslib_1.__spread(this.pSelection) : [];
38
- },
39
- set: /**
40
- * @param {?} value
41
- * @return {?}
42
- */
43
- function (value) {
44
- this.pSelection = this.getSelection(value);
45
- },
46
- enumerable: true,
47
- configurable: true
48
- });
49
- Object.defineProperty(CheckboxListComponent.prototype, "allSelected", {
50
- /**
51
- * Indicates whether or not all of the items are selected.
52
- */
53
- get: /**
54
- * Indicates whether or not all of the items are selected.
55
- * @return {?}
56
- */
57
- function () {
58
- return this.selection.length === this.options.length;
59
- },
60
- enumerable: true,
61
- configurable: true
62
- });
63
- // Catch any changes to any of the Input() properties.
64
- // Catch any changes to any of the Input() properties.
65
- /**
66
- * @return {?}
67
- */
68
- CheckboxListComponent.prototype.ngOnChanges =
69
- // Catch any changes to any of the Input() properties.
70
- /**
71
- * @return {?}
72
- */
73
- function () {
74
- // Set up the pre-selected values.
75
- this.setupPreselection();
76
- // Now check the current selection to make sure it's valid.
77
- this.checkSelection();
78
- };
79
- Object.defineProperty(CheckboxListComponent.prototype, "hasOptions", {
80
- /**
81
- * Indicates whether or not there are any options to render.
82
- */
83
- get: /**
84
- * Indicates whether or not there are any options to render.
85
- * @return {?}
86
- */
87
- function () {
88
- return this.options && this.options.length > 0;
89
- },
90
- enumerable: true,
91
- configurable: true
92
- });
93
- Object.defineProperty(CheckboxListComponent.prototype, "isFunctional", {
94
- get: /**
95
- * @return {?}
96
- */
97
- function () {
98
- return this.labelFunction && this.hasOptions;
99
- },
100
- enumerable: true,
101
- configurable: true
102
- });
103
- /**
104
- * Indicates whether or not an item is part of the current selection.
105
- * @param item The item in question.
106
- */
107
- /**
108
- * Indicates whether or not an item is part of the current selection.
109
- * @param {?} item The item in question.
110
- * @return {?}
111
- */
112
- CheckboxListComponent.prototype.isSelected = /**
113
- * Indicates whether or not an item is part of the current selection.
114
- * @param {?} item The item in question.
115
- * @return {?}
116
- */
117
- function (item) {
118
- return this.selection.includes(item);
119
- };
120
- /**
121
- * If an item is already selected, it will be removed from the selection.
122
- * Otherwise, it will be added to the selection..
123
- */
124
- /**
125
- * If an item is already selected, it will be removed from the selection.
126
- * Otherwise, it will be added to the selection..
127
- * @param {?} item
128
- * @return {?}
129
- */
130
- CheckboxListComponent.prototype.toggleItemSelection = /**
131
- * If an item is already selected, it will be removed from the selection.
132
- * Otherwise, it will be added to the selection..
133
- * @param {?} item
134
- * @return {?}
135
- */
136
- function (item) {
137
- if (this.pSelection === undefined) {
138
- // If we don't have any selection at all yet, make it just this item.
139
- this.pSelection = [item];
140
- }
141
- else if (this.isSelected(item)) {
142
- // If this item is already selected, remove it.
143
- this.pSelection.splice(this.pSelection.indexOf(item), 1);
144
- }
145
- else {
146
- // If it's not selected, add it.
147
- this.pSelection.push(item);
148
- }
149
- // Indicate that the user has now made an active selection.
150
- this.pSelectionMade = true;
151
- // Now emit an event so any containers know about the change to selection.
152
- this.selectionChange.emit(this.selection);
153
- };
154
- /**
155
- * If all of the items are selected, deselect them all.
156
- * Otherwise, select them all.
157
- */
158
- /**
159
- * If all of the items are selected, deselect them all.
160
- * Otherwise, select them all.
161
- * @return {?}
162
- */
163
- CheckboxListComponent.prototype.toggleSelectAll = /**
164
- * If all of the items are selected, deselect them all.
165
- * Otherwise, select them all.
166
- * @return {?}
167
- */
168
- function () {
169
- // Do we already have them all selected?
170
- if (this.allSelected) {
171
- // If so, clear out the selection.
172
- this.pSelection = [];
173
- }
174
- else {
175
- // If not, select all of them.
176
- this.pSelection = tslib_1.__spread(this.options);
177
- }
178
- // Indicate that the user has now made an active selection.
179
- this.pSelectionMade = true;
180
- // Now emit an event so any containers know about the change to selection.
181
- this.selectionChange.emit(this.pSelection);
182
- };
183
- /**
184
- * Use the labelFunction to determine whether the options include the item.
185
- * This is to handle partial objects being set in the pre-selection where
186
- * they may not be available by the same mechanism as the options.
187
- *
188
- * @param items The array of items in which to look for the item.
189
- * @param item The item to check in the options.
190
- */
191
- /**
192
- * Use the labelFunction to determine whether the options include the item.
193
- * This is to handle partial objects being set in the pre-selection where
194
- * they may not be available by the same mechanism as the options.
195
- *
196
- * @param {?} items The array of items in which to look for the item.
197
- * @param {?} item The item to check in the options.
198
- * @return {?}
199
- */
200
- CheckboxListComponent.prototype.containsItem = /**
201
- * Use the labelFunction to determine whether the options include the item.
202
- * This is to handle partial objects being set in the pre-selection where
203
- * they may not be available by the same mechanism as the options.
204
- *
205
- * @param {?} items The array of items in which to look for the item.
206
- * @param {?} item The item to check in the options.
207
- * @return {?}
208
- */
209
- function (items, item) {
210
- var _this = this;
211
- if (this.isFunctional) {
212
- /** @type {?} */
213
- var itemLabel_1 = this.labelFunction(item);
214
- return items.some((/**
215
- * @param {?} opt
216
- * @return {?}
217
- */
218
- function (opt) {
219
- return _this.labelFunction(opt) === itemLabel_1;
220
- }));
221
- }
222
- return false;
223
- };
224
- Object.defineProperty(CheckboxListComponent.prototype, "hasPreselection", {
225
- // Simple utility function to indicate whether there is an active preselection.
226
- get:
227
- // Simple utility function to indicate whether there is an active preselection.
228
- /**
229
- * @private
230
- * @return {?}
231
- */
232
- function () {
233
- return this.preselection && this.preselection.length > 0;
234
- },
235
- enumerable: true,
236
- configurable: true
237
- });
238
- // Set up the initially selected values.
239
- // NOTE: If the preselection changes and the user has NOT made an active selection,
240
- // the current selection will also be changed. As soon as the user has made an
241
- // active selection, however, the preselection is no longer relevant.
242
- // Set up the initially selected values.
243
- // NOTE: If the preselection changes and the user has NOT made an active selection,
244
- // the current selection will also be changed. As soon as the user has made an
245
- // active selection, however, the preselection is no longer relevant.
246
- /**
247
- * @private
248
- * @return {?}
249
- */
250
- CheckboxListComponent.prototype.setupPreselection =
251
- // Set up the initially selected values.
252
- // NOTE: If the preselection changes and the user has NOT made an active selection,
253
- // the current selection will also be changed. As soon as the user has made an
254
- // active selection, however, the preselection is no longer relevant.
255
- /**
256
- * @private
257
- * @return {?}
258
- */
259
- function () {
260
- var _this = this;
261
- if (this.isFunctional && !this.pSelectionMade && this.hasPreselection) {
262
- /** @type {?} */
263
- var changed = true;
264
- if (this.pSelection) {
265
- // If there is no difference between the arrays, this is not a change.
266
- changed = this.pSelection.filter((/**
267
- * @param {?} item
268
- * @return {?}
269
- */
270
- function (item) {
271
- return !_this.containsItem(_this.preselection, item);
272
- })).length > 0;
273
- }
274
- // If this is a change, update the selection and then emit an
275
- // event so any containers know about the change to selection.
276
- if (changed) {
277
- this.pSelection = this.getSelection(this.preselection);
278
- this.selectionChange.emit(this.selection);
279
- }
280
- }
281
- };
282
- /**
283
- * @private
284
- * @param {?} items
285
- * @return {?}
286
- */
287
- CheckboxListComponent.prototype.getSelection = /**
288
- * @private
289
- * @param {?} items
290
- * @return {?}
291
- */
292
- function (items) {
293
- var _this = this;
294
- return tslib_1.__spread(this.options.filter((/**
295
- * @param {?} opt
296
- * @return {?}
297
- */
298
- function (opt) {
299
- return _this.containsItem(items, opt);
300
- })));
301
- };
302
- // The options have changed. Let's make sure the selection
303
- // doesn't contain anything that's not currently an option.
304
- // The options have changed. Let's make sure the selection
305
- // doesn't contain anything that's not currently an option.
306
- /**
307
- * @private
308
- * @return {?}
309
- */
310
- CheckboxListComponent.prototype.checkSelection =
311
- // The options have changed. Let's make sure the selection
312
- // doesn't contain anything that's not currently an option.
313
- /**
314
- * @private
315
- * @return {?}
316
- */
317
- function () {
318
- var _this = this;
319
- if (this.isFunctional) {
320
- // Check which of the currently selected items are actually options.
321
- /** @type {?} */
322
- var allowedSelection = this.selection.filter((/**
323
- * @param {?} item
324
- * @return {?}
325
- */
326
- function (item) {
327
- return _this.containsItem(_this.options, item);
328
- }));
329
- // If any have dropped out, change the selection.
330
- if (allowedSelection.length !== this.selection.length) {
331
- this.pSelection = tslib_1.__spread(allowedSelection);
332
- // And emit an event so any containers know about the change to selection.
333
- this.selectionChange.emit(this.selection);
334
- }
335
- }
336
- };
337
- CheckboxListComponent.decorators = [
338
- { type: Component, args: [{
339
- selector: 'xuilib-checkbox-list',
340
- template: "<div class=\"xui-checkbox-list govuk-checkboxes govuk-checkboxes--small\" *ngIf=\"isFunctional\">\n <div class=\"select-all govuk-checkboxes__item\">\n <input type=\"checkbox\" id=\"select_all\" class=\"govuk-checkboxes__input\" [checked]=\"allSelected\"\n (change)=\"toggleSelectAll()\" />\n <label for=\"select_all\" class=\"govuk-label govuk-checkboxes__label\">Select all / Deselect all</label>\n </div>\n <div class=\"checkbox-items\">\n <div *ngFor=\"let item of options; let i = index\" class=\"govuk-checkboxes__item\">\n <input type=\"checkbox\" [id]=\"'select_' + i\" class=\"govuk-checkboxes__input\" [checked]=\"isSelected(item)\"\n (change)=\"toggleItemSelection(item)\" />\n <label [for]=\"'select_' + i\" class=\"govuk-label govuk-checkboxes__label\">{{labelFunction(item)}}</label>\n </div>\n </div>\n</div>\n",
341
- encapsulation: ViewEncapsulation.None,
342
- styles: [".xui-checkbox-list .select-all{margin-bottom:10px}.xui-checkbox-list .checkbox-items{display:flex;flex-direction:column;flex-wrap:wrap;height:100%;max-height:100%;align-items:flex-start;align-content:flex-start;width:100%;max-width:100%;overflow-x:scroll}"]
343
- }] }
344
- ];
345
- CheckboxListComponent.propDecorators = {
346
- options: [{ type: Input }],
347
- preselection: [{ type: Input }],
348
- labelFunction: [{ type: Input }],
349
- selectionChange: [{ type: Output }],
350
- selection: [{ type: Input }]
351
- };
352
- return CheckboxListComponent;
353
- }());
354
- export { CheckboxListComponent };
355
- if (false) {
356
- /**
357
- * The options to show checkboxes for. Note that the type
358
- * within the array corresponds to the one for the component.
359
- * @type {?}
360
- */
361
- CheckboxListComponent.prototype.options;
362
- /**
363
- * The initially-selected values to use. When the component renders,
364
- * the checkboxes that correspond to these values will be checked.
365
- * @type {?}
366
- */
367
- CheckboxListComponent.prototype.preselection;
368
- /**
369
- * This function is invoked for each item to display the appropriate
370
- * label beside the checkbox.
371
- * @type {?}
372
- */
373
- CheckboxListComponent.prototype.labelFunction;
374
- /**
375
- * Whenever the selection changes, this event fires. What is dispatched
376
- * is the current selection, also retrievable from .selection.
377
- * @type {?}
378
- */
379
- CheckboxListComponent.prototype.selectionChange;
380
- /**
381
- * @type {?}
382
- * @private
383
- */
384
- CheckboxListComponent.prototype.pSelection;
385
- /**
386
- * @type {?}
387
- * @private
388
- */
389
- CheckboxListComponent.prototype.pSelectionMade;
390
- }
391
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2hlY2tib3gtbGlzdC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290Ijoibmc6Ly9AaG1jdHMvcnB4LXh1aS1jb21tb24tbGliLyIsInNvdXJjZXMiOlsibGliL2NvbXBvbmVudHMvY2hlY2tib3gtbGlzdC9jaGVja2JveC1saXN0LmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7QUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLFlBQVksRUFBRSxLQUFLLEVBQWEsTUFBTSxFQUFFLGlCQUFpQixFQUFFLE1BQU0sZUFBZSxDQUFDOzs7O0FBRXJHO0lBQUE7Ozs7O1FBWWtCLFlBQU8sR0FBUSxFQUFFLENBQUM7Ozs7O1FBa0JqQixvQkFBZSxHQUFzQixJQUFJLFlBQVksRUFBTyxDQUFDO0lBdUtoRixDQUFDO0lBaEtDLHNCQUNXLDRDQUFTO1FBTnBCOzs7O1dBSUc7Ozs7Ozs7UUFDSDtZQUVFLE9BQU8sSUFBSSxDQUFDLFVBQVUsQ0FBQyxDQUFDLGtCQUFNLElBQUksQ0FBQyxVQUFVLEVBQUcsQ0FBQyxDQUFDLEVBQUUsQ0FBQztRQUN2RCxDQUFDOzs7OztRQUNELFVBQXFCLEtBQVU7WUFDN0IsSUFBSSxDQUFDLFVBQVUsR0FBRyxJQUFJLENBQUMsWUFBWSxDQUFDLEtBQUssQ0FBQyxDQUFDO1FBQzdDLENBQUM7OztPQUhBO0lBVUQsc0JBQVcsOENBQVc7UUFIdEI7O1dBRUc7Ozs7O1FBQ0g7WUFDRSxPQUFPLElBQUksQ0FBQyxTQUFTLENBQUMsTUFBTSxLQUFLLElBQUksQ0FBQyxPQUFPLENBQUMsTUFBTSxDQUFDO1FBQ3ZELENBQUM7OztPQUFBO0lBRUQsc0RBQXNEOzs7OztJQUMvQywyQ0FBVzs7Ozs7SUFBbEI7UUFDRSxrQ0FBa0M7UUFDbEMsSUFBSSxDQUFDLGlCQUFpQixFQUFFLENBQUM7UUFDekIsMkRBQTJEO1FBQzNELElBQUksQ0FBQyxjQUFjLEVBQUUsQ0FBQztJQUN4QixDQUFDO0lBS0Qsc0JBQVcsNkNBQVU7UUFIckI7O1dB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QUksZ0JBQWdCLENBQUMsTUFBTSxLQUFLLElBQUksQ0FBQyxTQUFTLENBQUMsTUFBTSxFQUFFO2dCQUNyRCxJQUFJLENBQUMsVUFBVSxvQkFBUSxnQkFBZ0IsQ0FBRSxDQUFDO2dCQUUxQywwRUFBMEU7Z0JBQzFFLElBQUksQ0FBQyxlQUFlLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxTQUFTLENBQUMsQ0FBQzthQUMzQztTQUNGO0lBQ0gsQ0FBQzs7Z0JBcE1GLFNBQVMsU0FBQztvQkFDVCxRQUFRLEVBQUUsc0JBQXNCO29CQUNoQyxxM0JBQTJDO29CQUUzQyxhQUFhLEVBQUUsaUJBQWlCLENBQUMsSUFBSTs7aUJBQ3RDOzs7MEJBT0UsS0FBSzsrQkFNTCxLQUFLO2dDQU1MLEtBQUs7a0NBTUwsTUFBTTs0QkFPTixLQUFLOztJQWdLUiw0QkFBQztDQUFBLEFBck1ELElBcU1DO1NBL0xZLHFCQUFxQjs7Ozs7OztJQU1oQyx3Q0FBa0M7Ozs7OztJQU1sQyw2Q0FBa0M7Ozs7OztJQU1sQyw4Q0FBbUQ7Ozs7OztJQU1uRCxnREFBOEU7Ozs7O0lBYzlFLDJDQUF3Qjs7Ozs7SUFDeEIsK0NBQWdDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBFdmVudEVtaXR0ZXIsIElucHV0LCBPbkNoYW5nZXMsIE91dHB1dCwgVmlld0VuY2Fwc3VsYXRpb24gfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAneHVpbGliLWNoZWNrYm94LWxpc3QnLFxuICB0ZW1wbGF0ZVVybDogJ2NoZWNrYm94LWxpc3QuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnY2hlY2tib3gtbGlzdC5jb21wb25lbnQuc2NzcyddLFxuICBlbmNhcHN1bGF0aW9uOiBWaWV3RW5jYXBzdWxhdGlvbi5Ob25lXG59KVxuZXhwb3J0IGNsYXNzIENoZWNrYm94TGlzdENvbXBvbmVudDxUPiBpbXBsZW1lbnRzIE9uQ2hhbmdlcyB7XG5cbiAgLyoqXG4gICAqIFRoZSBvcHRpb25zIHRvIHNob3cgY2hlY2tib3hlcyBmb3IuIE5vdGUgdGhhdCB0aGUgdHlwZVxuICAgKiB3aXRoaW4gdGhlIGFycmF5IGNvcnJlc3BvbmRzIHRvIHRoZSBvbmUgZm9yIHRoZSBjb21wb25lbnQuXG4gICAqL1xuICBASW5wdXQoKSBwdWJsaWMgb3B0aW9uczogVFtdID0gW107XG5cbiAgLyoqXG4gICAqIFRoZSBpbml0aWFsbHktc2VsZWN0ZWQgdmFsdWVzIHRvIHVzZS4gV2hlbiB0aGUgY29tcG9uZW50IHJlbmRlcnMsXG4gICAqIHRoZSBjaGVja2JveGVzIHRoYXQgY29ycmVzcG9uZCB0byB0aGVzZSB2YWx1ZXMgd2lsbCBiZSBjaGVja2VkLlxuICAgKi9cbiAgQElucHV0KCkgcHVibGljIHByZXNlbGVjdGlvbjogVFtdO1xuXG4gIC8qKlxuICAgKiBUaGlzIGZ1bmN0aW9uIGlzIGludm9rZWQgZm9yIGVhY2ggaXRlbSB0byBkaXNwbGF5IHRoZSBhcHByb3ByaWF0ZVxuICAgKiBsYWJlbCBiZXNpZGUgdGhlIGNoZWNrYm94LlxuICAgKi9cbiAgQElucHV0KCkgcHVibGljIGxhYmVsRnVuY3Rpb246IChpdGVtOiBUKSA9PiBzdHJpbmc7XG5cbiAgLyoqXG4gICAqIFdoZW5ldmVyIHRoZSBzZWxlY3Rpb24gY2hhbmdlcywgdGhpcyBldmVudCBmaXJlcy4gV2hhdCBpcyBkaXNwYXRjaGVkXG4gICAqIGlzIHRoZSBjdXJyZW50IHNlbGVjdGlvbiwgYWxzbyByZXRyaWV2YWJsZSBmcm9tIC5zZWxlY3Rpb24uXG4gICAqL1xuICBAT3V0cHV0KCkgcHVibGljIHNlbGVjdGlvbkNoYW5nZTogRXZlbnRFbWl0dGVyPFRbXT4gPSBuZXcgRXZlbnRFbWl0dGVyPFRbXT4oKTtcblxuICAvKipcbiAgICogVGhlIGN1cnJlbnRseSBzZWxlY3RlZCB2YWx1ZXMuXG4gICAqIE5vdGU6IFRoaXMgYXJyYXkgaXMgaW1tdXRhYmxlLCB3aGljaCBtZWFucyBwdXNoaW5nIGFuZCBwb3BwaW5nIHdpbGxcbiAgICogaGF2ZSBubyBlZmZlY3Qgb24gd2hpY2ggY2hlY2tib3hlcyBhcmUgc2VsZWN0ZWQuXG4gICAqL1xuICBASW5wdXQoKVxuICBwdWJsaWMgZ2V0IHNlbGVjdGlvbigpOiBUW10ge1xuICAgIHJldHVybiB0aGlzLnBTZWxlY3Rpb24gPyBbIC4uLnRoaXMucFNlbGVjdGlvbiBdIDogW107XG4gIH1cbiAgcHVibGljIHNldCBzZWxlY3Rpb24odmFsdWU6IFRbXSkge1xuICAgIHRoaXMucFNlbGVjdGlvbiA9IHRoaXMuZ2V0U2VsZWN0aW9uKHZhbHVlKTtcbiAgfVxuICBwcml2YXRlIHBTZWxlY3Rpb246IFRbXTtcbiAgcHJpdmF0ZSBwU2VsZWN0aW9uTWFkZTogYm9vbGVhbjtcblxuICAvKipcbiAgICogSW5kaWNhdGVzIHdoZXRoZXIgb3Igbm90IGFsbCBvZiB0aGUgaXRlbXMgYXJlIHNlbGVjdGVkLlxuICAgKi9cbiAgcHVibGljIGdldCBhbGxTZWxlY3RlZCgpOiBib29sZWFuIHtcbiAgICByZXR1cm4gdGhpcy5zZWxlY3Rpb24ubGVuZ3RoID09PSB0aGlzLm9wdGlvbnMubGVuZ3RoO1xuICB9XG5cbiAgLy8gQ2F0Y2ggYW55IGNoYW5nZXMgdG8gYW55IG9mIHRoZSBJbnB1dCgpIHByb3BlcnRpZXMuXG4gIHB1YmxpYyBuZ09uQ2hhbmdlcygpOiB2b2lkIHtcbiAgICAvLyBTZXQgdXAgdGhlIHByZS1zZWxlY3RlZCB2YWx1ZXMuXG4gICAgdGhpcy5zZXR1cFByZXNlbGVjdGlvbigpO1xuICAgIC8vIE5vdyBjaGVjayB0aGUgY3VycmVudCBzZWxlY3Rpb24gdG8gbWFrZSBzdXJlIGl0J3MgdmFsaWQuXG4gICAgdGhpcy5jaGVja1NlbGVjdGlvbigpO1xuICB9XG5cbiAgLyoqXG4gICAqIEluZGljYXRlcyB3aGV0aGVyIG9yIG5vdCB0aGVyZSBhcmUgYW55IG9wdGlvbnMgdG8gcmVuZGVyLlxuICAgKi9cbiAgcHVibGljIGdldCBoYXNPcHRpb25zKCk6IGJvb2xlYW4ge1xuICAgIHJldHVybiB0aGlzLm9wdGlvbnMgJiYgdGhpcy5vcHRpb25zLmxlbmd0aCA+IDA7XG4gIH1cblxuICBwdWJsaWMgZ2V0IGlzRnVuY3Rpb25hbCgpOiBib29sZWFuIHtcbiAgICByZXR1cm4gdGhpcy5sYWJlbEZ1bmN0aW9uICYmIHRoaXMuaGFzT3B0aW9ucztcbiAgfVxuXG4gIC8qKlxuICAgKiBJbmRpY2F0ZXMgd2hldGhlciBvciBub3QgYW4gaXRlbSBpcyBwYXJ0IG9mIHRoZSBjdXJyZW50IHNlbGVjdGlvbi5cbiAgICogQHBhcmFtIGl0ZW0gVGhlIGl0ZW0gaW4gcXVlc3Rpb24uXG4gICAqL1xuICBwdWJsaWMgaXNTZWxlY3RlZChpdGVtOiBUKTogYm9vbGVhbiB7XG4gICAgcmV0dXJuIHRoaXMuc2VsZWN0aW9uLmluY2x1ZGVzKGl0ZW0pO1xuICB9XG5cbiAgLyoqXG4gICAqIElmIGFuIGl0ZW0gaXMgYWxyZWFkeSBzZWxlY3RlZCwgaXQgd2lsbCBiZSByZW1vdmVkIGZyb20gdGhlIHNlbGVjdGlvbi5cbiAgICogT3RoZXJ3aXNlLCBpdCB3aWxsIGJlIGFkZGVkIHRvIHRoZSBzZWxlY3Rpb24uLlxuICAgKi9cbiAgcHVibGljIHRvZ2dsZUl0ZW1TZWxlY3Rpb24oaXRlbTogVCk6IHZvaWQge1xuICAgIGlmICh0aGlzLnBTZWxlY3Rpb24gPT09IHVuZGVmaW5lZCkge1xuICAgICAgLy8gSWYgd2UgZG9uJ3QgaGF2ZSBhbnkgc2VsZWN0aW9uIGF0IGFsbCB5ZXQsIG1ha2UgaXQganVzdCB0aGlzIGl0ZW0uXG4gICAgICB0aGlzLnBTZWxlY3Rpb24gPSBbIGl0ZW0gXTtcbiAgICB9IGVsc2UgaWYgKHRoaXMuaXNTZWxlY3RlZChpdGVtKSkge1xuICAgICAgLy8gSWYgdGhpcyBpdGVtIGlzIGFscmVhZHkgc2VsZWN0ZWQsIHJlbW92ZSBpdC5cbiAgICAgIHRoaXMucFNlbGVjdGlvbi5zcGxpY2UodGhpcy5wU2VsZWN0aW9uLmluZGV4T2YoaXRlbSksIDEpO1xuICAgIH0gZWxzZSB7XG4gICAgICAvLyBJZiBpdCdzIG5vdCBzZWxlY3RlZCwgYWRkIGl0LlxuICAgICAgdGhpcy5wU2VsZWN0aW9uLnB1c2goaXRlbSk7XG4gICAgfVxuXG4gICAgLy8gSW5kaWNhdGUgdGhhdCB0aGUgdXNlciBoYXMgbm93IG1hZGUgYW4gYWN0aXZlIHNlbGVjdGlvbi5cbiAgICB0aGlzLnBTZWxlY3Rpb25NYWRlID0gdHJ1ZTtcblxuICAgIC8vIE5vdyBlbWl0IGFuIGV2ZW50IHNvIGFueSBjb250YWluZXJzIGtub3cgYWJvdXQgdGhlIGNoYW5nZSB0byBzZWxlY3Rpb24uXG4gICAgdGhpcy5zZWxlY3Rpb25DaGFuZ2UuZW1pdCh0aGlzLnNlbGVjdGlvbik7XG4gIH1cblxuICAvKipcbiAgICogSWYgYWxsIG9mIHRoZSBpdGVtcyBhcmUgc2VsZWN0ZWQsIGRlc2VsZWN0IHRoZW0gYWxsLlxuICAgKiBPdGhlcndpc2UsIHNlbGVjdCB0aGVtIGFsbC5cbiAgICovXG4gIHB1YmxpYyB0b2dnbGVTZWxlY3RBbGwoKTogdm9pZCB7XG4gICAgLy8gRG8gd2UgYWxyZWFkeSBoYXZlIHRoZW0gYWxsIHNlbGVjdGVkP1xuICAgIGlmICh0aGlzLmFsbFNlbGVjdGVkKSB7XG4gICAgICAvLyBJZiBzbywgY2xlYXIgb3V0IHRoZSBzZWxlY3Rpb24uXG4gICAgICB0aGlzLnBTZWxlY3Rpb24gPSBbXTtcbiAgICB9IGVsc2Uge1xuICAgICAgLy8gSWYgbm90LCBzZWxlY3QgYWxsIG9mIHRoZW0uXG4gICAgICB0aGlzLnBTZWxlY3Rpb24gPSBbIC4uLnRoaXMub3B0aW9ucyBdO1xuICAgIH1cblxuICAgIC8vIEluZGljYXRlIHRoYXQgdGhlIHVzZXIgaGFzIG5vdyBtYWRlIGFuIGFjdGl2ZSBzZWxlY3Rpb24uXG4gICAgdGhpcy5wU2VsZWN0aW9uTWFkZSA9IHRydWU7XG5cbiAgICAvLyBOb3cgZW1pdCBhbiBldmVudCBzbyBhbnkgY29udGFpbmVycyBrbm93IGFib3V0IHRoZSBjaGFuZ2UgdG8gc2VsZWN0aW9uLlxuICAgIHRoaXMuc2VsZWN0aW9uQ2hhbmdlLmVtaXQodGhpcy5wU2VsZWN0aW9uKTtcbiAgfVxuXG4gIC8qKlxuICAgKiBVc2UgdGhlIGxhYmVsRnVuY3Rpb24gdG8gZGV0ZXJtaW5lIHdoZXRoZXIgdGhlIG9wdGlvbnMgaW5jbHVkZSB0aGUgaXRlbS5cbiAgICogVGhpcyBpcyB0byBoYW5kbGUgcGFydGlhbCBvYmplY3RzIGJlaW5nIHNldCBpbiB0aGUgcHJlLXNlbGVjdGlvbiB3aGVyZVxuICAgKiB0aGV5IG1heSBub3QgYmUgYXZhaWxhYmxlIGJ5IHRoZSBzYW1lIG1lY2hhbmlzbSBhcyB0aGUgb3B0aW9ucy5cbiAgICpcbiAgICogQHBhcmFtIGl0ZW1zIFRoZSBhcnJheSBvZiBpdGVtcyBpbiB3aGljaCB0byBsb29rIGZvciB0aGUgaXRlbS5cbiAgICogQHBhcmFtIGl0ZW0gVGhlIGl0ZW0gdG8gY2hlY2sgaW4gdGhlIG9wdGlvbnMuXG4gICAqL1xuICBwdWJsaWMgY29udGFpbnNJdGVtKGl0ZW1zOiBUW10sIGl0ZW06IFQpOiBib29sZWFuIHtcbiAgICBpZiAodGhpcy5pc0Z1bmN0aW9uYWwpIHtcbiAgICAgIGNvbnN0IGl0ZW1MYWJlbDogc3RyaW5nID0gdGhpcy5sYWJlbEZ1bmN0aW9uKGl0ZW0pO1xuICAgICAgcmV0dXJuIGl0ZW1zLnNvbWUob3B0ID0+IHtcbiAgICAgICAgcmV0dXJuIHRoaXMubGFiZWxGdW5jdGlvbihvcHQpID09PSBpdGVtTGFiZWw7XG4gICAgICB9KTtcbiAgICB9XG4gICAgcmV0dXJuIGZhbHNlO1xuICB9XG5cbiAgLy8gU2ltcGxlIHV0aWxpdHkgZnVuY3Rpb24gdG8gaW5kaWNhdGUgd2hldGhlciB0aGVyZSBpcyBhbiBhY3RpdmUgcHJlc2VsZWN0aW9uLlxuICBwcml2YXRlIGdldCBoYXNQcmVzZWxlY3Rpb24oKTogYm9vbGVhbiB7XG4gICAgcmV0dXJuIHRoaXMucHJlc2VsZWN0aW9uICYmIHRoaXMucHJlc2VsZWN0aW9uLmxlbmd0aCA+IDA7XG4gIH1cblxuICAvLyBTZXQgdXAgdGhlIGluaXRpYWxseSBzZWxlY3RlZCB2YWx1ZXMuXG4gIC8vIE5PVEU6IElmIHRoZSBwcmVzZWxlY3Rpb24gY2hhbmdlcyBhbmQgdGhlIHVzZXIgaGFzIE5PVCBtYWRlIGFuIGFjdGl2ZSBzZWxlY3Rpb24sXG4gIC8vIHRoZSBjdXJyZW50IHNlbGVjdGlvbiB3aWxsIGFsc28gYmUgY2hhbmdlZC4gQXMgc29vbiBhcyB0aGUgdXNlciBoYXMgbWFkZSBhblxuICAvLyBhY3RpdmUgc2VsZWN0aW9uLCBob3dldmVyLCB0aGUgcHJlc2VsZWN0aW9uIGlzIG5vIGxvbmdlciByZWxldmFudC5cbiAgcHJpdmF0ZSBzZXR1cFByZXNlbGVjdGlvbigpOiB2b2lkIHtcbiAgICBpZiAodGhpcy5pc0Z1bmN0aW9uYWwgJiYgIXRoaXMucFNlbGVjdGlvbk1hZGUgJiYgdGhpcy5oYXNQcmVzZWxlY3Rpb24pIHtcbiAgICAgIGxldCBjaGFuZ2VkID0gdHJ1ZTsgLy8gQXNzdW1lIHRoaXMgaXMgYSBjaGFuZ2UuXG4gICAgICBpZiAodGhpcy5wU2VsZWN0aW9uKSB7XG4gICAgICAgIC8vIElmIHRoZXJlIGlzIG5vIGRpZmZlcmVuY2UgYmV0d2VlbiB0aGUgYXJyYXlzLCB0aGlzIGlzIG5vdCBhIGNoYW5nZS5cbiAgICAgICAgY2hhbmdlZCA9IHRoaXMucFNlbGVjdGlvbi5maWx0ZXIoKGl0ZW06IFQpID0+IHtcbiAgICAgICAgICByZXR1cm4gIXRoaXMuY29udGFpbnNJdGVtKHRoaXMucHJlc2VsZWN0aW9uLCBpdGVtKTtcbiAgICAgICAgfSkubGVuZ3RoID4gMDtcbiAgICAgIH1cblxuICAgICAgLy8gSWYgdGhpcyBpcyBhIGNoYW5nZSwgdXBkYXRlIHRoZSBzZWxlY3Rpb24gYW5kIHRoZW4gZW1pdCBhblxuICAgICAgLy8gZXZlbnQgc28gYW55IGNvbnRhaW5lcnMga25vdyBhYm91dCB0aGUgY2hhbmdlIHRvIHNlbGVjdGlvbi5cbiAgICAgIGlmIChjaGFuZ2VkKSB7XG4gICAgICAgIHRoaXMucFNlbGVjdGlvbiA9IHRoaXMuZ2V0U2VsZWN0aW9uKHRoaXMucHJlc2VsZWN0aW9uKTtcbiAgICAgICAgdGhpcy5zZWxlY3Rpb25DaGFuZ2UuZW1pdCh0aGlzLnNlbGVjdGlvbik7XG4gICAgICB9XG4gICAgfVxuICB9XG5cbiAgcHJpdmF0ZSBnZXRTZWxlY3Rpb24oaXRlbXM6IFRbXSk6IFRbXSB7XG4gICAgcmV0dXJuIFtcbiAgICAgIC4uLnRoaXMub3B0aW9ucy5maWx0ZXIob3B0ID0+IHtcbiAgICAgICAgcmV0dXJuIHRoaXMuY29udGFpbnNJdGVtKGl0ZW1zLCBvcHQpO1xuICAgICAgfSlcbiAgICBdO1xuICB9XG5cbiAgLy8gVGhlIG9wdGlvbnMgaGF2ZSBjaGFuZ2VkLiBMZXQncyBtYWtlIHN1cmUgdGhlIHNlbGVjdGlvblxuICAvLyBkb2Vzbid0IGNvbnRhaW4gYW55dGhpbmcgdGhhdCdzIG5vdCBjdXJyZW50bHkgYW4gb3B0aW9uLlxuICBwcml2YXRlIGNoZWNrU2VsZWN0aW9uKCk6IHZvaWQge1xuICAgIGlmICh0aGlzLmlzRnVuY3Rpb25hbCkge1xuICAgICAgLy8gQ2hlY2sgd2hpY2ggb2YgdGhlIGN1cnJlbnRseSBzZWxlY3RlZCBpdGVtcyBhcmUgYWN0dWFsbHkgb3B0aW9ucy5cbiAgICAgIGNvbnN0IGFsbG93ZWRTZWxlY3Rpb246IFRbXSA9IHRoaXMuc2VsZWN0aW9uLmZpbHRlcigoaXRlbTogVCkgPT4ge1xuICAgICAgICByZXR1cm4gdGhpcy5jb250YWluc0l0ZW0odGhpcy5vcHRpb25zLCBpdGVtKTtcbiAgICAgIH0pO1xuXG4gICAgICAvLyBJZiBhbnkgaGF2ZSBkcm9wcGVkIG91dCwgY2hhbmdlIHRoZSBzZWxlY3Rpb24uXG4gICAgICBpZiAoYWxsb3dlZFNlbGVjdGlvbi5sZW5ndGggIT09IHRoaXMuc2VsZWN0aW9uLmxlbmd0aCkge1xuICAgICAgICB0aGlzLnBTZWxlY3Rpb24gPSBbIC4uLmFsbG93ZWRTZWxlY3Rpb24gXTtcblxuICAgICAgICAvLyBBbmQgZW1pdCBhbiBldmVudCBzbyBhbnkgY29udGFpbmVycyBrbm93IGFib3V0IHRoZSBjaGFuZ2UgdG8gc2VsZWN0aW9uLlxuICAgICAgICB0aGlzLnNlbGVjdGlvbkNoYW5nZS5lbWl0KHRoaXMuc2VsZWN0aW9uKTtcbiAgICAgIH1cbiAgICB9XG4gIH1cbn1cbiJdfQ==
@@ -1,29 +0,0 @@
1
- /**
2
- * @fileoverview added by tsickle
3
- * Generated from: lib/components/contact-details/contact-details.component.ts
4
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
5
- */
6
- import { Component, Input } from '@angular/core';
7
- var ContactDetailsComponent = /** @class */ (function () {
8
- function ContactDetailsComponent() {
9
- }
10
- ContactDetailsComponent.decorators = [
11
- { type: Component, args: [{
12
- selector: 'xuilib-contact-details',
13
- template: "<div class=\"contact-details\" *ngIf=\"data\">\n <h3 class=\"govuk-heading-m\" *ngIf=\"data.title\">{{ data.title }}</h3>\n <p *ngIf=\"data.badgeText\"><span [className]=\"'hmcts-badge ' + data.badgeColour\">{{ data.badgeText }}</span></p>\n <div class=\"email\" *ngIf=\"data.email\"><span class=\"govuk-!-font-weight-bold\">Email: </span> <a href=\"mailto:{{ data.email }}\">{{ data.email }}</a></div>\n <div class=\"phone\" *ngIf=\"data.phone\"><span class=\"govuk-!-font-weight-bold\">Phone: </span>{{ data.phone }}</div>\n <div class=\"opening-times\" *ngIf=\"data.openingTimes\"><span class=\"govuk-!-font-weight-bold\">Opening times: </span>{{ data.openingTimes}}</div>\n</div>\n\n",
14
- styles: [".contact-details{margin-top:30px}.contact-details h3,.contact-details p{margin-bottom:10px}"]
15
- }] }
16
- ];
17
- /** @nocollapse */
18
- ContactDetailsComponent.ctorParameters = function () { return []; };
19
- ContactDetailsComponent.propDecorators = {
20
- data: [{ type: Input }]
21
- };
22
- return ContactDetailsComponent;
23
- }());
24
- export { ContactDetailsComponent };
25
- if (false) {
26
- /** @type {?} */
27
- ContactDetailsComponent.prototype.data;
28
- }
29
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29udGFjdC1kZXRhaWxzLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiJuZzovL0BobWN0cy9ycHgteHVpLWNvbW1vbi1saWIvIiwic291cmNlcyI6WyJsaWIvY29tcG9uZW50cy9jb250YWN0LWRldGFpbHMvY29udGFjdC1kZXRhaWxzLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7OztBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBR2pEO0lBU0k7SUFDQSxDQUFDOztnQkFWSixTQUFTLFNBQUM7b0JBQ1AsUUFBUSxFQUFFLHdCQUF3QjtvQkFDbEMsZ3NCQUErQzs7aUJBRWxEOzs7Ozt1QkFHSSxLQUFLOztJQUlWLDhCQUFDO0NBQUEsQUFYRCxJQVdDO1NBTlksdUJBQXVCOzs7SUFFaEMsdUNBQThDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBJbnB1dCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQ29udGFjdERldGFpbHNEYXRhTW9kZWwgfSBmcm9tICcuLi8uLi9tb2RlbHMnO1xuXG5AQ29tcG9uZW50KHtcbiAgICBzZWxlY3RvcjogJ3h1aWxpYi1jb250YWN0LWRldGFpbHMnLFxuICAgIHRlbXBsYXRlVXJsOiAnLi9jb250YWN0LWRldGFpbHMuY29tcG9uZW50Lmh0bWwnLFxuICAgIHN0eWxlVXJsczogWydjb250YWN0LWRldGFpbHMuY29tcG9uZW50LnNjc3MnXVxufSlcbmV4cG9ydCBjbGFzcyBDb250YWN0RGV0YWlsc0NvbXBvbmVudCB7XG5cbiAgICBASW5wdXQoKSBwdWJsaWMgZGF0YTogQ29udGFjdERldGFpbHNEYXRhTW9kZWw7XG5cbiAgICBjb25zdHJ1Y3RvcigpIHtcbiAgICB9XG59XG4iXX0=