@hmcts/opal-frontend-common 0.0.2

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 (262) hide show
  1. package/README.md +24 -0
  2. package/esm2022/hmcts-opal-frontend-common.mjs +5 -0
  3. package/esm2022/lib/components/govuk/govuk-button/govuk-button.component.mjs +34 -0
  4. package/esm2022/lib/components/govuk/govuk-text-input/govuk-text-input.component.mjs +57 -0
  5. package/esm2022/lib/components/govuk/index.mjs +3 -0
  6. package/esm2022/lib/guards/auth/auth.guard.mjs +20 -0
  7. package/esm2022/lib/guards/auth/index.mjs +2 -0
  8. package/esm2022/lib/guards/can-deactivate/can-deactivate.guard.mjs +6 -0
  9. package/esm2022/lib/guards/can-deactivate/index.mjs +5 -0
  10. package/esm2022/lib/guards/can-deactivate/interfaces/can-deactivate-can-component-deactivate.interface.mjs +2 -0
  11. package/esm2022/lib/guards/can-deactivate/interfaces/index.mjs +2 -0
  12. package/esm2022/lib/guards/has-flow-state/has-flow-state.guard.mjs +16 -0
  13. package/esm2022/lib/guards/has-flow-state/index.mjs +2 -0
  14. package/esm2022/lib/guards/helpers/get-guard-with-dummy-url.mjs +19 -0
  15. package/esm2022/lib/guards/helpers/handle-observable-result.mjs +13 -0
  16. package/esm2022/lib/guards/helpers/index.mjs +5 -0
  17. package/esm2022/lib/guards/helpers/run-auth-guard-with-context.mjs +15 -0
  18. package/esm2022/lib/guards/helpers/run-has-flow-state-guard-with-context.mjs +9 -0
  19. package/esm2022/lib/guards/index.mjs +10 -0
  20. package/esm2022/lib/guards/route-permissions/index.mjs +2 -0
  21. package/esm2022/lib/guards/route-permissions/route-permissions.guard.mjs +25 -0
  22. package/esm2022/lib/guards/signed-in/index.mjs +3 -0
  23. package/esm2022/lib/guards/signed-in/signed-in.guard.mjs +20 -0
  24. package/esm2022/lib/guards/types/can-deactivate.type.mjs +2 -0
  25. package/esm2022/lib/guards/types/guard-return.type.mjs +2 -0
  26. package/esm2022/lib/guards/types/index.mjs +3 -0
  27. package/esm2022/lib/interceptors/http-error/http-error.interceptor.mjs +24 -0
  28. package/esm2022/lib/interceptors/index.mjs +3 -0
  29. package/esm2022/lib/opal-frontend-common.module.mjs +22 -0
  30. package/esm2022/lib/pages/access-denied/access-denied.component.mjs +18 -0
  31. package/esm2022/lib/pages/index.mjs +4 -0
  32. package/esm2022/lib/pages/routing/constants/routing-paths.constant.mjs +9 -0
  33. package/esm2022/lib/pages/routing/constants/routing-titles.constant.mjs +9 -0
  34. package/esm2022/lib/pages/routing/interfaces/routing-paths.interface.mjs +2 -0
  35. package/esm2022/lib/pages/routing/pages.routes.mjs +24 -0
  36. package/esm2022/lib/pages/sign-in/interfaces/index.mjs +2 -0
  37. package/esm2022/lib/pages/sign-in/interfaces/sign-in-stub-form.interface.mjs +2 -0
  38. package/esm2022/lib/pages/sign-in/sign-in-sso/sign-in-sso.component.mjs +23 -0
  39. package/esm2022/lib/pages/sign-in/sign-in-stub/sign-in-stub.component.mjs +39 -0
  40. package/esm2022/lib/pages/sign-in/sign-in.component.mjs +38 -0
  41. package/esm2022/lib/resolvers/index.mjs +3 -0
  42. package/esm2022/lib/resolvers/title/index.mjs +2 -0
  43. package/esm2022/lib/resolvers/title/title.resolver.mjs +22 -0
  44. package/esm2022/lib/resolvers/user-state/index.mjs +2 -0
  45. package/esm2022/lib/resolvers/user-state/user-state.resolver.mjs +12 -0
  46. package/esm2022/lib/routing/constants/index.mjs +2 -0
  47. package/esm2022/lib/routing/constants/sso-endpoints.constant.mjs +7 -0
  48. package/esm2022/lib/routing/index.mjs +3 -0
  49. package/esm2022/lib/routing/interfaces/child-routing-paths.interface.mjs +2 -0
  50. package/esm2022/lib/routing/interfaces/index.mjs +4 -0
  51. package/esm2022/lib/routing/interfaces/nested-routes.interface.mjs +2 -0
  52. package/esm2022/lib/routing/interfaces/sso-endpoints.interface.mjs +2 -0
  53. package/esm2022/lib/services/app-initializer-service/app-initializer.service.mjs +36 -0
  54. package/esm2022/lib/services/app-initializer-service/index.mjs +2 -0
  55. package/esm2022/lib/services/app-insights/app-insights.service.mjs +73 -0
  56. package/esm2022/lib/services/app-insights/index.mjs +4 -0
  57. package/esm2022/lib/services/auth-service/auth.service.mjs +36 -0
  58. package/esm2022/lib/services/auth-service/index.mjs +2 -0
  59. package/esm2022/lib/services/date-service/date.service.mjs +182 -0
  60. package/esm2022/lib/services/date-service/index.mjs +4 -0
  61. package/esm2022/lib/services/index.mjs +12 -0
  62. package/esm2022/lib/services/launch-darkly/index.mjs +5 -0
  63. package/esm2022/lib/services/launch-darkly/launch-darkly.service.mjs +94 -0
  64. package/esm2022/lib/services/launch-darkly/mocks/index.mjs +3 -0
  65. package/esm2022/lib/services/launch-darkly/mocks/launch-darkly-change-flags.mock.mjs +5 -0
  66. package/esm2022/lib/services/launch-darkly/mocks/launch-darkly-flags.mock.mjs +5 -0
  67. package/esm2022/lib/services/permissions-service/index.mjs +4 -0
  68. package/esm2022/lib/services/permissions-service/permissions.service.mjs +40 -0
  69. package/esm2022/lib/services/session-service/constants/index.mjs +2 -0
  70. package/esm2022/lib/services/session-service/constants/session-endpoints.constant.mjs +5 -0
  71. package/esm2022/lib/services/session-service/index.mjs +7 -0
  72. package/esm2022/lib/services/session-service/interfaces/index.mjs +4 -0
  73. package/esm2022/lib/services/session-service/interfaces/session-endpoints.interface.mjs +2 -0
  74. package/esm2022/lib/services/session-service/interfaces/session-token-expiry.interface.mjs +2 -0
  75. package/esm2022/lib/services/session-service/interfaces/session-user-state.interface.mjs +2 -0
  76. package/esm2022/lib/services/session-service/mocks/index.mjs +3 -0
  77. package/esm2022/lib/services/session-service/mocks/session-token-expiry.mock.mjs +5 -0
  78. package/esm2022/lib/services/session-service/mocks/session-user-state.mock.mjs +386 -0
  79. package/esm2022/lib/services/session-service/session.service.mjs +64 -0
  80. package/esm2022/lib/services/sort-service/index.mjs +6 -0
  81. package/esm2022/lib/services/sort-service/interfaces/index.mjs +3 -0
  82. package/esm2022/lib/services/sort-service/interfaces/sort-service-values.interface.mjs +2 -0
  83. package/esm2022/lib/services/sort-service/interfaces/sort-service.interface.mjs +2 -0
  84. package/esm2022/lib/services/sort-service/sort-service.mjs +90 -0
  85. package/esm2022/lib/services/sort-service/types/index.mjs +2 -0
  86. package/esm2022/lib/services/sort-service/types/sort-service.type.mjs +2 -0
  87. package/esm2022/lib/services/transfer-state-service/index.mjs +6 -0
  88. package/esm2022/lib/services/transfer-state-service/interfaces/index.mjs +4 -0
  89. package/esm2022/lib/services/transfer-state-service/interfaces/transfer-state-app-insights-config.interface.mjs +2 -0
  90. package/esm2022/lib/services/transfer-state-service/interfaces/transfer-state-launch-darkly-config.interface.mjs +2 -0
  91. package/esm2022/lib/services/transfer-state-service/interfaces/transfer-state-server-state.interface.mjs +2 -0
  92. package/esm2022/lib/services/transfer-state-service/mocks/index.mjs +4 -0
  93. package/esm2022/lib/services/transfer-state-service/mocks/transfer-state-app-insights-config.mock.mjs +6 -0
  94. package/esm2022/lib/services/transfer-state-service/mocks/transfer-state-launch-darkly-config.mock.mjs +6 -0
  95. package/esm2022/lib/services/transfer-state-service/mocks/transfer-state.mock.mjs +8 -0
  96. package/esm2022/lib/services/transfer-state-service/transfer-state.service.mjs +59 -0
  97. package/esm2022/lib/services/transformation-service/index.mjs +5 -0
  98. package/esm2022/lib/services/transformation-service/interfaces/index.mjs +2 -0
  99. package/esm2022/lib/services/transformation-service/interfaces/transform-item.interface.mjs +2 -0
  100. package/esm2022/lib/services/transformation-service/transformation.service.mjs +69 -0
  101. package/esm2022/lib/services/utils/index.mjs +4 -0
  102. package/esm2022/lib/services/utils/utils.service.mjs +86 -0
  103. package/esm2022/lib/stores/global/global.store.mjs +33 -0
  104. package/esm2022/lib/stores/global/index.mjs +6 -0
  105. package/esm2022/lib/stores/global/interfaces/error-state.interface.mjs +2 -0
  106. package/esm2022/lib/stores/global/interfaces/index.mjs +2 -0
  107. package/esm2022/lib/stores/global/types/global-store.type.mjs +2 -0
  108. package/esm2022/lib/stores/global/types/index.mjs +2 -0
  109. package/esm2022/lib/stores/index.mjs +2 -0
  110. package/esm2022/lib/validators/alphabetical-text/alphabetical-text.validator.mjs +10 -0
  111. package/esm2022/lib/validators/amount/amount.validator.mjs +15 -0
  112. package/esm2022/lib/validators/date-after-year/date-after-year.validator.mjs +12 -0
  113. package/esm2022/lib/validators/date-before/date-before.validator.mjs +15 -0
  114. package/esm2022/lib/validators/date-of-birth/date-of-birth.validator.mjs +18 -0
  115. package/esm2022/lib/validators/future-date/future-date.validator.mjs +15 -0
  116. package/esm2022/lib/validators/index.mjs +20 -0
  117. package/esm2022/lib/validators/invalid-value/invalid-value.validator.mjs +9 -0
  118. package/esm2022/lib/validators/national-insurance-number/national-insurance-number.validator.mjs +16 -0
  119. package/esm2022/lib/validators/numerical-only/numerical-only.validator.mjs +10 -0
  120. package/esm2022/lib/validators/optional-max-length/optional-max-length.validator.mjs +10 -0
  121. package/esm2022/lib/validators/optional-valid-date/optional-valid-date.validator.mjs +23 -0
  122. package/esm2022/lib/validators/optional-valid-email-address/optional-valid-email-address.validator.mjs +11 -0
  123. package/esm2022/lib/validators/optional-valid-telephone/optional-valid-telephone.validator.mjs +14 -0
  124. package/esm2022/lib/validators/over-eighteen/over-eighteen.validator.mjs +45 -0
  125. package/esm2022/lib/validators/past-date/past-date.validator.mjs +16 -0
  126. package/esm2022/lib/validators/special-characters/special-characters.validator.mjs +11 -0
  127. package/esm2022/lib/validators/two-decimal-places/two-decimal-places.validator.mjs +12 -0
  128. package/esm2022/lib/validators/valid-value/valid-value.validator.mjs +9 -0
  129. package/esm2022/public-api.mjs +11 -0
  130. package/fesm2022/hmcts-opal-frontend-common-sign-in-stub.component-CysPzJGJ.mjs +41 -0
  131. package/fesm2022/hmcts-opal-frontend-common-sign-in-stub.component-CysPzJGJ.mjs.map +1 -0
  132. package/fesm2022/hmcts-opal-frontend-common.mjs +1947 -0
  133. package/fesm2022/hmcts-opal-frontend-common.mjs.map +1 -0
  134. package/index.d.ts +5 -0
  135. package/lib/components/govuk/govuk-button/govuk-button.component.d.ts +14 -0
  136. package/lib/components/govuk/govuk-text-input/govuk-text-input.component.d.ts +17 -0
  137. package/lib/components/govuk/index.d.ts +2 -0
  138. package/lib/guards/auth/auth.guard.d.ts +6 -0
  139. package/lib/guards/auth/index.d.ts +1 -0
  140. package/lib/guards/can-deactivate/can-deactivate.guard.d.ts +3 -0
  141. package/lib/guards/can-deactivate/index.d.ts +2 -0
  142. package/lib/guards/can-deactivate/interfaces/can-deactivate-can-component-deactivate.interface.d.ts +4 -0
  143. package/lib/guards/can-deactivate/interfaces/index.d.ts +2 -0
  144. package/lib/guards/has-flow-state/has-flow-state.guard.d.ts +2 -0
  145. package/lib/guards/has-flow-state/index.d.ts +1 -0
  146. package/lib/guards/helpers/get-guard-with-dummy-url.d.ts +12 -0
  147. package/lib/guards/helpers/handle-observable-result.d.ts +8 -0
  148. package/lib/guards/helpers/index.d.ts +4 -0
  149. package/lib/guards/helpers/run-auth-guard-with-context.d.ts +9 -0
  150. package/lib/guards/helpers/run-has-flow-state-guard-with-context.d.ts +3 -0
  151. package/lib/guards/index.d.ts +7 -0
  152. package/lib/guards/route-permissions/index.d.ts +1 -0
  153. package/lib/guards/route-permissions/route-permissions.guard.d.ts +2 -0
  154. package/lib/guards/signed-in/index.d.ts +1 -0
  155. package/lib/guards/signed-in/signed-in.guard.d.ts +8 -0
  156. package/lib/guards/types/can-deactivate.type.d.ts +3 -0
  157. package/lib/guards/types/guard-return.type.d.ts +2 -0
  158. package/lib/guards/types/index.d.ts +2 -0
  159. package/lib/interceptors/http-error/http-error.interceptor.d.ts +2 -0
  160. package/lib/interceptors/index.d.ts +2 -0
  161. package/lib/opal-frontend-common.module.d.ts +14 -0
  162. package/lib/pages/access-denied/access-denied.component.d.ts +7 -0
  163. package/lib/pages/index.d.ts +3 -0
  164. package/lib/pages/routing/constants/routing-paths.constant.d.ts +2 -0
  165. package/lib/pages/routing/constants/routing-titles.constant.d.ts +2 -0
  166. package/lib/pages/routing/interfaces/routing-paths.interface.d.ts +8 -0
  167. package/lib/pages/routing/pages.routes.d.ts +2 -0
  168. package/lib/pages/sign-in/interfaces/index.d.ts +2 -0
  169. package/lib/pages/sign-in/interfaces/sign-in-stub-form.interface.d.ts +3 -0
  170. package/lib/pages/sign-in/sign-in-sso/sign-in-sso.component.d.ts +11 -0
  171. package/lib/pages/sign-in/sign-in-stub/sign-in-stub.component.d.ts +19 -0
  172. package/lib/pages/sign-in/sign-in.component.d.ts +51 -0
  173. package/lib/resolvers/index.d.ts +2 -0
  174. package/lib/resolvers/title/index.d.ts +1 -0
  175. package/lib/resolvers/title/title.resolver.d.ts +10 -0
  176. package/lib/resolvers/user-state/index.d.ts +1 -0
  177. package/lib/resolvers/user-state/user-state.resolver.d.ts +7 -0
  178. package/lib/routing/constants/index.d.ts +1 -0
  179. package/lib/routing/constants/sso-endpoints.constant.d.ts +2 -0
  180. package/lib/routing/index.d.ts +2 -0
  181. package/lib/routing/interfaces/child-routing-paths.interface.d.ts +6 -0
  182. package/lib/routing/interfaces/index.d.ts +3 -0
  183. package/lib/routing/interfaces/nested-routes.interface.d.ts +4 -0
  184. package/lib/routing/interfaces/sso-endpoints.interface.d.ts +6 -0
  185. package/lib/services/app-initializer-service/app-initializer.service.d.ts +20 -0
  186. package/lib/services/app-initializer-service/index.d.ts +1 -0
  187. package/lib/services/app-insights/app-insights.service.d.ts +33 -0
  188. package/lib/services/app-insights/index.d.ts +1 -0
  189. package/lib/services/auth-service/auth.service.d.ts +8 -0
  190. package/lib/services/auth-service/index.d.ts +1 -0
  191. package/lib/services/date-service/date.service.d.ts +123 -0
  192. package/lib/services/date-service/index.d.ts +1 -0
  193. package/lib/services/index.d.ts +11 -0
  194. package/lib/services/launch-darkly/index.d.ts +2 -0
  195. package/lib/services/launch-darkly/launch-darkly.service.d.ts +41 -0
  196. package/lib/services/launch-darkly/mocks/index.d.ts +2 -0
  197. package/lib/services/launch-darkly/mocks/launch-darkly-change-flags.mock.d.ts +10 -0
  198. package/lib/services/launch-darkly/mocks/launch-darkly-flags.mock.d.ts +4 -0
  199. package/lib/services/permissions-service/index.d.ts +1 -0
  200. package/lib/services/permissions-service/permissions.service.d.ts +14 -0
  201. package/lib/services/session-service/constants/index.d.ts +1 -0
  202. package/lib/services/session-service/constants/session-endpoints.constant.d.ts +2 -0
  203. package/lib/services/session-service/index.d.ts +4 -0
  204. package/lib/services/session-service/interfaces/index.d.ts +3 -0
  205. package/lib/services/session-service/interfaces/session-endpoints.interface.d.ts +4 -0
  206. package/lib/services/session-service/interfaces/session-token-expiry.interface.d.ts +4 -0
  207. package/lib/services/session-service/interfaces/session-user-state.interface.d.ts +15 -0
  208. package/lib/services/session-service/mocks/index.d.ts +2 -0
  209. package/lib/services/session-service/mocks/session-token-expiry.mock.d.ts +2 -0
  210. package/lib/services/session-service/mocks/session-user-state.mock.d.ts +2 -0
  211. package/lib/services/session-service/session.service.d.ts +30 -0
  212. package/lib/services/sort-service/index.d.ts +3 -0
  213. package/lib/services/sort-service/interfaces/index.d.ts +2 -0
  214. package/lib/services/sort-service/interfaces/sort-service-values.interface.d.ts +6 -0
  215. package/lib/services/sort-service/interfaces/sort-service.interface.d.ts +4 -0
  216. package/lib/services/sort-service/sort-service.d.ts +64 -0
  217. package/lib/services/sort-service/types/index.d.ts +1 -0
  218. package/lib/services/sort-service/types/sort-service.type.d.ts +1 -0
  219. package/lib/services/transfer-state-service/index.d.ts +3 -0
  220. package/lib/services/transfer-state-service/interfaces/index.d.ts +3 -0
  221. package/lib/services/transfer-state-service/interfaces/transfer-state-app-insights-config.interface.d.ts +5 -0
  222. package/lib/services/transfer-state-service/interfaces/transfer-state-launch-darkly-config.interface.d.ts +5 -0
  223. package/lib/services/transfer-state-service/interfaces/transfer-state-server-state.interface.d.ts +7 -0
  224. package/lib/services/transfer-state-service/mocks/index.d.ts +3 -0
  225. package/lib/services/transfer-state-service/mocks/transfer-state-app-insights-config.mock.d.ts +5 -0
  226. package/lib/services/transfer-state-service/mocks/transfer-state-launch-darkly-config.mock.d.ts +5 -0
  227. package/lib/services/transfer-state-service/mocks/transfer-state.mock.d.ts +2 -0
  228. package/lib/services/transfer-state-service/transfer-state.service.d.ts +23 -0
  229. package/lib/services/transformation-service/index.d.ts +2 -0
  230. package/lib/services/transformation-service/interfaces/index.d.ts +1 -0
  231. package/lib/services/transformation-service/interfaces/transform-item.interface.d.ts +6 -0
  232. package/lib/services/transformation-service/transformation.service.d.ts +30 -0
  233. package/lib/services/utils/index.d.ts +1 -0
  234. package/lib/services/utils/utils.service.d.ts +54 -0
  235. package/lib/stores/global/global.store.d.ts +35 -0
  236. package/lib/stores/global/index.d.ts +3 -0
  237. package/lib/stores/global/interfaces/error-state.interface.d.ts +4 -0
  238. package/lib/stores/global/interfaces/index.d.ts +1 -0
  239. package/lib/stores/global/types/global-store.type.d.ts +2 -0
  240. package/lib/stores/global/types/index.d.ts +1 -0
  241. package/lib/stores/index.d.ts +1 -0
  242. package/lib/validators/alphabetical-text/alphabetical-text.validator.d.ts +2 -0
  243. package/lib/validators/amount/amount.validator.d.ts +2 -0
  244. package/lib/validators/date-after-year/date-after-year.validator.d.ts +2 -0
  245. package/lib/validators/date-before/date-before.validator.d.ts +2 -0
  246. package/lib/validators/date-of-birth/date-of-birth.validator.d.ts +2 -0
  247. package/lib/validators/future-date/future-date.validator.d.ts +2 -0
  248. package/lib/validators/index.d.ts +19 -0
  249. package/lib/validators/invalid-value/invalid-value.validator.d.ts +2 -0
  250. package/lib/validators/national-insurance-number/national-insurance-number.validator.d.ts +2 -0
  251. package/lib/validators/numerical-only/numerical-only.validator.d.ts +2 -0
  252. package/lib/validators/optional-max-length/optional-max-length.validator.d.ts +2 -0
  253. package/lib/validators/optional-valid-date/optional-valid-date.validator.d.ts +2 -0
  254. package/lib/validators/optional-valid-email-address/optional-valid-email-address.validator.d.ts +2 -0
  255. package/lib/validators/optional-valid-telephone/optional-valid-telephone.validator.d.ts +2 -0
  256. package/lib/validators/over-eighteen/over-eighteen.validator.d.ts +14 -0
  257. package/lib/validators/past-date/past-date.validator.d.ts +2 -0
  258. package/lib/validators/special-characters/special-characters.validator.d.ts +2 -0
  259. package/lib/validators/two-decimal-places/two-decimal-places.validator.d.ts +2 -0
  260. package/lib/validators/valid-value/valid-value.validator.d.ts +2 -0
  261. package/package.json +28 -0
  262. package/public-api.d.ts +10 -0
@@ -0,0 +1,19 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { FormGroup } from '@angular/forms';
3
+ import * as i0 from "@angular/core";
4
+ export declare class SignInStubComponent implements OnInit {
5
+ signInForm: FormGroup;
6
+ private readonly signInFormSubmit;
7
+ /**
8
+ * Sets up the sign-in form.
9
+ */
10
+ private setupSignInForm;
11
+ /**
12
+ * Handles the form submission.
13
+ * If the signInForm is valid, emits the signInForm value using the signInFormSubmit event.
14
+ */
15
+ handleFormSubmit(): void;
16
+ ngOnInit(): void;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<SignInStubComponent, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<SignInStubComponent, "opal-lib-sign-in-stub", never, {}, { "signInFormSubmit": "signInFormSubmit"; }, never, never, true, never>;
19
+ }
@@ -0,0 +1,51 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { ISignInStubForm } from './interfaces';
3
+ import * as i0 from "@angular/core";
4
+ export declare class SignInComponent implements OnInit {
5
+ readonly globalStore: {
6
+ authenticated: import("@angular/core").Signal<boolean>;
7
+ error: import("@ngrx/signals").DeepSignal<{
8
+ error: boolean;
9
+ message: string;
10
+ }>;
11
+ featureFlags: import("@angular/core").Signal<import("launchdarkly-js-sdk-common").LDFlagSet>;
12
+ userState: import("@ngrx/signals").DeepSignal<import("@hmcts/opal-frontend-common").ISessionUserState>;
13
+ ssoEnabled: import("@angular/core").Signal<boolean>;
14
+ launchDarklyConfig: import("@ngrx/signals").DeepSignal<import("@hmcts/opal-frontend-common").ITransferStateLaunchDarklyConfig>;
15
+ tokenExpiry: import("@ngrx/signals").DeepSignal<import("@hmcts/opal-frontend-common").ISessionTokenExpiry>;
16
+ setAuthenticated: (authenticated: boolean) => void;
17
+ setError: (error: import("@hmcts/opal-frontend-common").IErrorState) => void;
18
+ setFeatureFlags: (featureFlags: import("launchdarkly-js-sdk-common").LDFlagSet) => void;
19
+ setUserState: (userState: import("@hmcts/opal-frontend-common").ISessionUserState) => void;
20
+ setSsoEnabled: (ssoEnabled: boolean) => void;
21
+ setLaunchDarklyConfig: (config: import("@hmcts/opal-frontend-common").ITransferStateLaunchDarklyConfig) => void;
22
+ setTokenExpiry: (tokenExpiry: import("@hmcts/opal-frontend-common").ISessionTokenExpiry) => void;
23
+ } & import("@ngrx/signals").StateSource<{
24
+ authenticated: boolean;
25
+ error: {
26
+ error: boolean;
27
+ message: string;
28
+ };
29
+ featureFlags: import("launchdarkly-js-sdk-common").LDFlagSet;
30
+ userState: import("@hmcts/opal-frontend-common").ISessionUserState;
31
+ ssoEnabled: boolean;
32
+ launchDarklyConfig: import("@hmcts/opal-frontend-common").ITransferStateLaunchDarklyConfig;
33
+ tokenExpiry: import("@hmcts/opal-frontend-common").ISessionTokenExpiry;
34
+ }>;
35
+ ssoEnabled: boolean | null;
36
+ private readonly document;
37
+ private readonly changeDetectorRef;
38
+ /**
39
+ * Handles the login button click event.
40
+ */
41
+ handleSsoSignInButtonClick(): void;
42
+ /**
43
+ * Handles the submission of the stub sign-in form.
44
+ * Redirects the user to the SSO login page with the provided email.
45
+ * @param formData - The form data containing the email.
46
+ */
47
+ handleStubSignInFormSubmit(formData: ISignInStubForm): void;
48
+ ngOnInit(): void;
49
+ static ɵfac: i0.ɵɵFactoryDeclaration<SignInComponent, never>;
50
+ static ɵcmp: i0.ɵɵComponentDeclaration<SignInComponent, "opal-lib-sign-in", never, {}, {}, never, never, true, never>;
51
+ }
@@ -0,0 +1,2 @@
1
+ export * from './title';
2
+ export * from './user-state';
@@ -0,0 +1 @@
1
+ export * from './title.resolver';
@@ -0,0 +1,10 @@
1
+ import { Resolve, ActivatedRouteSnapshot } from '@angular/router';
2
+ import { Title } from '@angular/platform-browser';
3
+ import * as i0 from "@angular/core";
4
+ export declare class TitleResolver implements Resolve<void> {
5
+ private readonly titleService;
6
+ constructor(titleService: Title);
7
+ resolve(route: ActivatedRouteSnapshot): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<TitleResolver, never>;
9
+ static ɵprov: i0.ɵɵInjectableDeclaration<TitleResolver>;
10
+ }
@@ -0,0 +1 @@
1
+ export * from './user-state.resolver';
@@ -0,0 +1,7 @@
1
+ import { ResolveFn } from '@angular/router';
2
+ import { ISessionUserState } from '../../services/session-service/interfaces/session-user-state.interface';
3
+ /**
4
+ * Resolver function for retrieving the user state.
5
+ * @returns A promise that resolves to the user state.
6
+ */
7
+ export declare const userStateResolver: ResolveFn<ISessionUserState>;
@@ -0,0 +1 @@
1
+ export * from './sso-endpoints.constant';
@@ -0,0 +1,2 @@
1
+ import { ISsoEndpoints } from '../interfaces';
2
+ export declare const SSO_ENDPOINTS: ISsoEndpoints;
@@ -0,0 +1,2 @@
1
+ export * from './constants';
2
+ export * from './interfaces';
@@ -0,0 +1,6 @@
1
+ export interface IChildRoutingPaths {
2
+ root: string;
3
+ children: {
4
+ [key: string]: string;
5
+ };
6
+ }
@@ -0,0 +1,3 @@
1
+ export * from './nested-routes.interface';
2
+ export * from './sso-endpoints.interface';
3
+ export * from './child-routing-paths.interface';
@@ -0,0 +1,4 @@
1
+ export interface INestedRoutes {
2
+ nextRoute: string;
3
+ buttonText: string;
4
+ }
@@ -0,0 +1,6 @@
1
+ export interface ISsoEndpoints {
2
+ login: string;
3
+ logout: string;
4
+ callback: string;
5
+ authenticated: string;
6
+ }
@@ -0,0 +1,20 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class AppInitializerService {
3
+ private readonly transferStateService;
4
+ /**
5
+ * Initializes the SSO (Single Sign-On) enabled state.
6
+ * This method calls the `initializeSsoEnabled` method of the `transferStateService`.
7
+ */
8
+ private initializeSsoEnabled;
9
+ /**
10
+ * Initializes the LaunchDarkly configuration.
11
+ */
12
+ private initializeLaunchDarkly;
13
+ /**
14
+ * Initializes the application.
15
+ * This method calls the necessary initialization functions.
16
+ */
17
+ initializeApp(): void;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<AppInitializerService, never>;
19
+ static ɵprov: i0.ɵɵInjectableDeclaration<AppInitializerService>;
20
+ }
@@ -0,0 +1 @@
1
+ export * from './app-initializer.service';
@@ -0,0 +1,33 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class AppInsightsService {
3
+ private readonly appInsights;
4
+ private readonly appInsightsConfig;
5
+ private readonly platformId;
6
+ private readonly transferStateService;
7
+ constructor();
8
+ /**
9
+ * Adds a telemetry initializer to set the cloud role name for the telemetry item.
10
+ *
11
+ * @param envelope - The telemetry item to which the cloud role name will be added.
12
+ */
13
+ private telemetryInitializer;
14
+ /**
15
+ * Logs a page view to the Application Insights service.
16
+ *
17
+ * @param name - The name of the page. Optional.
18
+ * @param url - The URL of the page. Optional.
19
+ *
20
+ * This method uses the Application Insights SDK to track a page view event.
21
+ * If the `name` or `url` parameters are not provided, the SDK will use default values.
22
+ */
23
+ logPageView(name?: string, url?: string): void;
24
+ /**
25
+ * Logs an exception to the Application Insights service.
26
+ *
27
+ * @param exception - The error object to be logged.
28
+ * @param severityLevel - Optional. The severity level of the exception. If not provided, a default severity level will be used.
29
+ */
30
+ logException(exception: Error, severityLevel?: number): void;
31
+ static ɵfac: i0.ɵɵFactoryDeclaration<AppInsightsService, never>;
32
+ static ɵprov: i0.ɵɵInjectableDeclaration<AppInsightsService>;
33
+ }
@@ -0,0 +1 @@
1
+ export * from './app-insights.service';
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class AuthService {
3
+ private readonly http;
4
+ private readonly globalStore;
5
+ checkAuthenticated(): import("rxjs").Observable<boolean>;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<AuthService, never>;
7
+ static ɵprov: i0.ɵɵInjectableDeclaration<AuthService>;
8
+ }
@@ -0,0 +1 @@
1
+ export * from './auth.service';
@@ -0,0 +1,123 @@
1
+ import { DateTime, DurationLikeObject } from 'luxon';
2
+ import * as i0 from "@angular/core";
3
+ export declare class DateService {
4
+ /**
5
+ * Calculates the difference in minutes between two DateTime objects.
6
+ * @param startDate The start date and time.
7
+ * @param endDate The end date and time.
8
+ * @returns The difference in minutes between the start and end dates.
9
+ */
10
+ calculateMinutesDifference(startDate: DateTime, endDate: DateTime): number;
11
+ /**
12
+ * Converts milliseconds to minutes.
13
+ * @param milliseconds - The number of milliseconds to convert.
14
+ * @returns The equivalent number of minutes.
15
+ */
16
+ convertMillisecondsToMinutes(milliseconds: number): number;
17
+ /**
18
+ * Calculates the age based on the given date of birth.
19
+ * @param dateOfBirth - The date of birth to calculate the age from.
20
+ * @param format - The format of the date of birth. Defaults to 'dd/MM/yyyy'.
21
+ * @returns The calculated age.
22
+ */
23
+ calculateAge(dateOfBirth: DateTime | string, format?: string): number;
24
+ /**
25
+ * Checks if a given date is valid.
26
+ * @param dateInput - The date to be checked. It can be a DateTime object, a string, or null.
27
+ * @param format - The format of the date string (default: 'dd/MM/yyyy').
28
+ * @returns A boolean indicating whether the date is valid or not.
29
+ */
30
+ isValidDate(dateInput: DateTime | string | null, format?: string): boolean;
31
+ /**
32
+ * Returns a string representation of a date subtracted by the given duration.
33
+ * @param duration A DurationLikeObject representing the amount of time to subtract from the current date.
34
+ * @returns A string representing the subtracted date in the format specified by the current locale.
35
+ */
36
+ getPreviousDate(duration: DurationLikeObject): string;
37
+ /**
38
+ * Parses a string value into a DateTime object based on the specified format.
39
+ * @param value - The string value to parse.
40
+ * @param format - The format of the string value.
41
+ * @returns A DateTime object representing the parsed value.
42
+ */
43
+ getFromFormat(value: string, format: string): DateTime<true> | DateTime<false>;
44
+ /**
45
+ * Parses a string value into a native JavaScript Date object based on the specified format.
46
+ * @param value - The string value to parse.
47
+ * @param format - The format of the string value.
48
+ * @returns A Date object representing the parsed value, or null if parsing fails.
49
+ */
50
+ getDateFromFormat(value: string, format: string): Date | null;
51
+ /**
52
+ * Converts a DateTime value to a formatted string.
53
+ *
54
+ * @param value - The DateTime value to format.
55
+ * @param format - The format string to apply to the DateTime value.
56
+ * @returns The formatted string representation of the DateTime value.
57
+ */
58
+ toFormat(value: DateTime<true> | DateTime<false>, format: string): string;
59
+ /**
60
+ * Converts a given Date object to a formatted string based on the specified format.
61
+ *
62
+ * @param value - The Date object to be formatted.
63
+ * @param format - The string format to apply to the Date object.
64
+ * @returns The formatted date string.
65
+ */
66
+ toDateStringFormat(value: Date, format: string): string;
67
+ /**
68
+ * Converts a string in ISO format to a DateTime object.
69
+ * @param value - The string value in ISO format.
70
+ * @returns A DateTime object representing the given value.
71
+ */
72
+ getFromIso(value: string): DateTime;
73
+ /**
74
+ * Returns the current date and time.
75
+ * @returns {DateTime} The current date and time.
76
+ */
77
+ getDateNow(): DateTime;
78
+ /**
79
+ * Adds a duration to a given date and returns the result in the specified format.
80
+ * @param date - The date to which the duration will be added.
81
+ * @param years - The number of years to add to the date (default: 0).
82
+ * @param months - The number of months to add to the date (default: 0).
83
+ * @param weeks - The number of weeks to add to the date (default: 0).
84
+ * @param days - The number of days to add to the date (default: 0).
85
+ * @param format - The format in which the resulting date will be returned (default: 'dd/MM/yyyy').
86
+ * @returns The resulting date in the specified format.
87
+ */
88
+ addDurationToDate(date: string, years?: number, months?: number, weeks?: number, days?: number, format?: string): string;
89
+ /**
90
+ * Calculates the number of days between two dates.
91
+ * @param startDate - The start date in the specified format.
92
+ * @param endDate - The end date in the specified format.
93
+ * @param format - The format of the dates (default: 'dd/MM/yyyy').
94
+ * @returns The number of days between the start and end dates.
95
+ */
96
+ calculateDaysBetweenDates(startDate: string, endDate: string, format?: string): number;
97
+ /**
98
+ * Checks if a given date is in the past.
99
+ * @param date - The date to check.
100
+ * @param format - The format of the date string. Defaults to 'dd/MM/yyyy'.
101
+ * @returns True if the date is in the past, false otherwise.
102
+ */
103
+ isDateInThePast(date: string, format?: string): boolean;
104
+ /**
105
+ * Checks if a given date is in the future.
106
+ * @param date - The date to check.
107
+ * @param yearsInTheFuture - Optional. The number of years in the future to compare against. If not provided, the current date is used.
108
+ * @param format - Optional. The format of the input date. Defaults to 'dd/MM/yyyy'.
109
+ * @returns True if the date is in the future, false otherwise.
110
+ */
111
+ isDateInTheFuture(date: string, yearsInTheFuture?: number, format?: string): boolean;
112
+ /**
113
+ * Converts a date string from one format to another.
114
+ *
115
+ * @param date - The date string to be converted.
116
+ * @param fromFormat - The format of the input date string.
117
+ * @param toFormat - The desired format of the output date string.
118
+ * @returns The date string in the desired format.
119
+ */
120
+ getFromFormatToFormat(date: string, fromFormat: string, toFormat: string): string;
121
+ static ɵfac: i0.ɵɵFactoryDeclaration<DateService, never>;
122
+ static ɵprov: i0.ɵɵInjectableDeclaration<DateService>;
123
+ }
@@ -0,0 +1 @@
1
+ export * from './date.service';
@@ -0,0 +1,11 @@
1
+ export * from './app-initializer-service';
2
+ export * from './app-insights';
3
+ export * from './auth-service';
4
+ export * from './date-service';
5
+ export * from './launch-darkly';
6
+ export * from './permissions-service';
7
+ export * from './session-service';
8
+ export * from './sort-service';
9
+ export * from './transfer-state-service';
10
+ export * from './transformation-service';
11
+ export * from './utils';
@@ -0,0 +1,2 @@
1
+ export * from './launch-darkly.service';
2
+ export * from './mocks';
@@ -0,0 +1,41 @@
1
+ import { OnDestroy } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class LaunchDarklyService implements OnDestroy {
4
+ private readonly globalStore;
5
+ private ldClient;
6
+ /**
7
+ * Sets the LaunchDarkly flags by updating the featureFlags in the state service.
8
+ */
9
+ private setLaunchDarklyFlags;
10
+ /**
11
+ * Formats the LDFlagChangeset into an LDFlagSet.
12
+ *
13
+ * @param flags - The LDFlagChangeset to be formatted.
14
+ * @returns The formatted LDFlagSet.
15
+ */
16
+ private formatChangeFlags;
17
+ /**
18
+ * Closes the LaunchDarkly client if it is open.
19
+ */
20
+ private closeLaunchDarklyClient;
21
+ /**
22
+ * Initializes the LaunchDarkly change listener.
23
+ * This method listens for changes in feature flags and updates the state accordingly.
24
+ */
25
+ initializeLaunchDarklyChangeListener(): void;
26
+ /**
27
+ * Initializes the LaunchDarkly flags and sets them.
28
+ * If the LD client is already initialized, it waits for initialization and then sets the flags.
29
+ * If the LD client is not initialized, it returns a resolved promise.
30
+ * @returns A promise that resolves when the flags are set.
31
+ */
32
+ initializeLaunchDarklyFlags(): Promise<void>;
33
+ /**
34
+ * Initializes the LaunchDarkly client.
35
+ * If a stored LaunchDarkly client ID exists, it initializes the client with the ID and anonymous mode enabled.
36
+ */
37
+ initializeLaunchDarklyClient(): void;
38
+ ngOnDestroy(): void;
39
+ static ɵfac: i0.ɵɵFactoryDeclaration<LaunchDarklyService, never>;
40
+ static ɵprov: i0.ɵɵInjectableDeclaration<LaunchDarklyService>;
41
+ }
@@ -0,0 +1,2 @@
1
+ export * from './launch-darkly-change-flags.mock';
2
+ export * from './launch-darkly-flags.mock';
@@ -0,0 +1,10 @@
1
+ export declare const LAUNCH_DARKLY_CHANGE_FLAGS_MOCK: {
2
+ flag1: {
3
+ current: boolean;
4
+ previous: boolean;
5
+ };
6
+ flag2: {
7
+ current: boolean;
8
+ previous: boolean;
9
+ };
10
+ };
@@ -0,0 +1,4 @@
1
+ export declare const LAUNCH_DARKLY_FLAGS_MOCK: {
2
+ flag1: boolean;
3
+ flag2: boolean;
4
+ };
@@ -0,0 +1 @@
1
+ export * from './permissions.service';
@@ -0,0 +1,14 @@
1
+ import { ISessionUserState, ISessionUserStateRole } from '../session-service';
2
+ import * as i0 from "@angular/core";
3
+ export declare class PermissionsService {
4
+ private storedUniquePermissionIds;
5
+ /**
6
+ * Retrieves the unique permission IDs associated with the user.
7
+ * If the unique permission IDs have not been stored yet, it calculates them based on the user's roles and permissions.
8
+ * @returns An array of unique permission IDs.
9
+ */
10
+ getUniquePermissions(userState: ISessionUserState | null): number[];
11
+ hasPermissionAccess(permissionId: number, businessUnitId: number, roles: ISessionUserStateRole[]): boolean;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<PermissionsService, never>;
13
+ static ɵprov: i0.ɵɵInjectableDeclaration<PermissionsService>;
14
+ }
@@ -0,0 +1 @@
1
+ export * from './session-endpoints.constant';
@@ -0,0 +1,2 @@
1
+ import { ISessionEndpoints } from '../interfaces';
2
+ export declare const SESSION_ENDPOINTS: ISessionEndpoints;
@@ -0,0 +1,4 @@
1
+ export * from './session.service';
2
+ export * from './constants';
3
+ export * from './interfaces';
4
+ export * from './mocks';
@@ -0,0 +1,3 @@
1
+ export * from './session-endpoints.interface';
2
+ export * from './session-token-expiry.interface';
3
+ export * from './session-user-state.interface';
@@ -0,0 +1,4 @@
1
+ export interface ISessionEndpoints {
2
+ userState: string;
3
+ expiry: string;
4
+ }
@@ -0,0 +1,4 @@
1
+ export interface ISessionTokenExpiry {
2
+ expiry: string | null;
3
+ warningThresholdInMilliseconds: number | null;
4
+ }
@@ -0,0 +1,15 @@
1
+ export interface ISessionUserStatePermission {
2
+ permission_id: number;
3
+ permission_name: string;
4
+ }
5
+ export interface ISessionUserStateRole {
6
+ business_unit_user_id: string;
7
+ business_unit_id: number;
8
+ permissions: ISessionUserStatePermission[];
9
+ }
10
+ export interface ISessionUserState {
11
+ user_id: string;
12
+ user_name: string;
13
+ name: string;
14
+ business_unit_user: ISessionUserStateRole[];
15
+ }
@@ -0,0 +1,2 @@
1
+ export * from './session-token-expiry.mock';
2
+ export * from './session-user-state.mock';
@@ -0,0 +1,2 @@
1
+ import { ISessionTokenExpiry } from '../interfaces';
2
+ export declare const SESSION_TOKEN_EXPIRY_MOCK: ISessionTokenExpiry;
@@ -0,0 +1,2 @@
1
+ import { ISessionUserState } from '../interfaces';
2
+ export declare const SESSION_USER_STATE_MOCK: ISessionUserState;
@@ -0,0 +1,30 @@
1
+ import { Observable } from 'rxjs';
2
+ import { ISessionUserState, ISessionTokenExpiry } from './interfaces';
3
+ import * as i0 from "@angular/core";
4
+ export declare class SessionService {
5
+ private readonly http;
6
+ private readonly globalStore;
7
+ private userStateCache$;
8
+ private tokenExpiryCache$;
9
+ private readonly MAX_RETRIES;
10
+ private readonly RETRY_DELAY_MS;
11
+ /**
12
+ * Retrieves the user state from the backend.
13
+ * If the user state is not available or needs to be refreshed, it makes an HTTP request to fetch the user state.
14
+ * The user state is then stored in the state service for future use.
15
+ * The user state is cached using the `shareReplay` operator to avoid unnecessary HTTP requests.
16
+ * @returns An observable that emits the user state.
17
+ */
18
+ getUserState(): Observable<ISessionUserState>;
19
+ /**
20
+ * Retrieves the token expiry information from the server.
21
+ * If the token expiry information is already cached, it returns the cached value.
22
+ * Otherwise, it makes an HTTP GET request to fetch the token expiry information,
23
+ * retries the request up to a maximum number of times if it fails, and caches the result.
24
+ *
25
+ * @returns {Observable<ISessionTokenExpiry>} An observable that emits the token expiry information.
26
+ */
27
+ getTokenExpiry(): Observable<ISessionTokenExpiry>;
28
+ static ɵfac: i0.ɵɵFactoryDeclaration<SessionService, never>;
29
+ static ɵprov: i0.ɵɵInjectableDeclaration<SessionService>;
30
+ }
@@ -0,0 +1,3 @@
1
+ export * from './sort-service';
2
+ export * from './interfaces';
3
+ export * from './types';
@@ -0,0 +1,2 @@
1
+ export * from './sort-service.interface';
2
+ export * from './sort-service-values.interface';
@@ -0,0 +1,6 @@
1
+ export interface ISortServiceValues<T extends string | number | boolean> {
2
+ [key: string]: T;
3
+ }
4
+ export interface ISortServiceArrayValues extends Array<string | number | boolean | null> {
5
+ [key: number]: string | number | boolean | null;
6
+ }
@@ -0,0 +1,4 @@
1
+ export interface ISortServiceConfig {
2
+ key: string;
3
+ sortType: 'ascending' | 'descending';
4
+ }
@@ -0,0 +1,64 @@
1
+ import { ISortServiceValues, ISortServiceArrayValues } from './interfaces/sort-service-values.interface';
2
+ import { SortableValues } from './types/sort-service.type';
3
+ import * as i0 from "@angular/core";
4
+ export declare class SortService {
5
+ /**
6
+ * Sorts an array of values in ascending order.
7
+ *
8
+ * @param array - The array of values to be sorted.
9
+ * @returns The sorted array in ascending order.
10
+ */
11
+ arraySortAsc(array: ISortServiceArrayValues): ISortServiceArrayValues;
12
+ /**
13
+ * Sorts an array of values in descending order.
14
+ *
15
+ * @param array - The array of values to be sorted.
16
+ * @returns The sorted array in descending order.
17
+ */
18
+ arraySortDesc(array: ISortServiceArrayValues): ISortServiceArrayValues;
19
+ /**
20
+ * Sorts an array of objects based on a specified key and sort type.
21
+ *
22
+ * @param array - The array of objects to be sorted. Each object should implement the `ISortServiceValues` interface.
23
+ * @param config - The configuration object containing the key to sort by and the sort type (ascending or descending).
24
+ * @returns The sorted array of objects.
25
+ *
26
+ * @remarks
27
+ * - If the input array is not an array or the config key is not provided, the original array is returned.
28
+ * - The `sortType` can be either 'ascending' or 'descending'.
29
+ *
30
+ * @example
31
+ * ```typescript
32
+ * const array = [
33
+ * { name: 'Alice', age: 30 },
34
+ * { name: 'Bob', age: 25 },
35
+ * ];
36
+ * const config = { key: 'age', sortType: 'ascending' };
37
+ * const sortedArray = getObjects(array, config);
38
+ * // sortedArray will be:
39
+ * // [
40
+ * // { name: 'Bob', age: 25 },
41
+ * // { name: 'Alice', age: 30 },
42
+ * // ]
43
+ * ```
44
+ */
45
+ private sortObjectArray;
46
+ /**
47
+ * Sorts an array of objects in ascending order based on the specified key.
48
+ *
49
+ * @param array - The array of objects to be sorted.
50
+ * @param key - The key of the object property to sort by.
51
+ * @returns The sorted array of objects.
52
+ */
53
+ sortObjectArrayAsc(array: ISortServiceValues<SortableValues>[] | null, key: string): ISortServiceValues<SortableValues>[] | null;
54
+ /**
55
+ * Sorts an array of objects in descending order based on the specified key.
56
+ *
57
+ * @param array - The array of objects to be sorted. Each object should implement the ISortServiceValues interface.
58
+ * @param key - The key of the object property to sort by.
59
+ * @returns The sorted array of objects in descending order.
60
+ */
61
+ sortObjectArrayDesc(array: ISortServiceValues<SortableValues>[] | null, key: string): ISortServiceValues<SortableValues>[] | null;
62
+ static ɵfac: i0.ɵɵFactoryDeclaration<SortService, never>;
63
+ static ɵprov: i0.ɵɵInjectableDeclaration<SortService>;
64
+ }
@@ -0,0 +1 @@
1
+ export * from './sort-service.type';
@@ -0,0 +1 @@
1
+ export type SortableValues = string | number | boolean;
@@ -0,0 +1,3 @@
1
+ export * from './transfer-state.service';
2
+ export * from './interfaces';
3
+ export * from './mocks';
@@ -0,0 +1,3 @@
1
+ export * from './transfer-state-app-insights-config.interface';
2
+ export * from './transfer-state-launch-darkly-config.interface';
3
+ export * from './transfer-state-server-state.interface';