@mrfylke/contact-form 0.1.3

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 (637) hide show
  1. package/lib/ContactFormRoot.d.ts +37 -0
  2. package/lib/ContactFormRoot.d.ts.map +1 -0
  3. package/lib/ContactFormRoot.js +53 -0
  4. package/lib/commoneEvents.d.ts +16 -0
  5. package/lib/commoneEvents.d.ts.map +1 -0
  6. package/lib/commoneEvents.js +4 -0
  7. package/lib/components/button/button.d.ts +17 -0
  8. package/lib/components/button/button.d.ts.map +1 -0
  9. package/lib/components/button/button.js +15 -0
  10. package/lib/components/button/button.module.css +399 -0
  11. package/lib/components/button/index.d.ts +5 -0
  12. package/lib/components/button/index.d.ts.map +1 -0
  13. package/lib/components/button/index.js +10 -0
  14. package/lib/components/button/link.d.ts +27 -0
  15. package/lib/components/button/link.d.ts.map +1 -0
  16. package/lib/components/button/link.js +19 -0
  17. package/lib/components/button/utils.d.ts +69 -0
  18. package/lib/components/button/utils.d.ts.map +1 -0
  19. package/lib/components/button/utils.js +33 -0
  20. package/lib/components/checkbox/checkbox.d.ts +13 -0
  21. package/lib/components/checkbox/checkbox.d.ts.map +1 -0
  22. package/lib/components/checkbox/checkbox.js +23 -0
  23. package/lib/components/checkbox/checkbox.module.css +96 -0
  24. package/lib/components/checkbox/index.d.ts +3 -0
  25. package/lib/components/checkbox/index.d.ts.map +1 -0
  26. package/lib/components/checkbox/index.js +8 -0
  27. package/lib/components/error-message/error-message.d.ts +6 -0
  28. package/lib/components/error-message/error-message.d.ts.map +1 -0
  29. package/lib/components/error-message/error-message.js +13 -0
  30. package/lib/components/error-message/error-message.module.css +6 -0
  31. package/lib/components/error-message/index.d.ts +3 -0
  32. package/lib/components/error-message/index.d.ts.map +1 -0
  33. package/lib/components/error-message/index.js +8 -0
  34. package/lib/components/external-link-page.d.ts +14 -0
  35. package/lib/components/external-link-page.d.ts.map +1 -0
  36. package/lib/components/external-link-page.js +27 -0
  37. package/lib/components/external-link-page.module.css +29 -0
  38. package/lib/components/form/date-selector.d.ts +11 -0
  39. package/lib/components/form/date-selector.d.ts.map +1 -0
  40. package/lib/components/form/date-selector.js +21 -0
  41. package/lib/components/form/description-modal.d.ts +13 -0
  42. package/lib/components/form/description-modal.d.ts.map +1 -0
  43. package/lib/components/form/description-modal.js +43 -0
  44. package/lib/components/form/field-wrapper-with-error/index.d.ts +8 -0
  45. package/lib/components/form/field-wrapper-with-error/index.d.ts.map +1 -0
  46. package/lib/components/form/field-wrapper-with-error/index.js +12 -0
  47. package/lib/components/form/fieldset/fieldset.module.css +26 -0
  48. package/lib/components/form/fieldset/index.d.ts +8 -0
  49. package/lib/components/form/fieldset/index.d.ts.map +1 -0
  50. package/lib/components/form/fieldset/index.js +17 -0
  51. package/lib/components/form/file-input.d.ts +10 -0
  52. package/lib/components/form/file-input.d.ts.map +1 -0
  53. package/lib/components/form/file-input.js +68 -0
  54. package/lib/components/form/form-component-label/form-component-label.module.css +10 -0
  55. package/lib/components/form/form-component-label/index.d.ts +9 -0
  56. package/lib/components/form/form-component-label/index.d.ts.map +1 -0
  57. package/lib/components/form/form-component-label/index.js +18 -0
  58. package/lib/components/form/form.module.css +573 -0
  59. package/lib/components/form/index.d.ts +11 -0
  60. package/lib/components/form/index.d.ts.map +1 -0
  61. package/lib/components/form/index.js +28 -0
  62. package/lib/components/form/input.d.ts +17 -0
  63. package/lib/components/form/input.d.ts.map +1 -0
  64. package/lib/components/form/input.js +42 -0
  65. package/lib/components/form/radio.d.ts +7 -0
  66. package/lib/components/form/radio.d.ts.map +1 -0
  67. package/lib/components/form/radio.js +14 -0
  68. package/lib/components/form/searchable-select/index.d.ts +3 -0
  69. package/lib/components/form/searchable-select/index.d.ts.map +1 -0
  70. package/lib/components/form/searchable-select/index.js +11 -0
  71. package/lib/components/form/searchable-select/searchable-select.d.ts +18 -0
  72. package/lib/components/form/searchable-select/searchable-select.d.ts.map +1 -0
  73. package/lib/components/form/searchable-select/searchable-select.js +55 -0
  74. package/lib/components/form/searchable-select/utils.d.ts +5 -0
  75. package/lib/components/form/searchable-select/utils.d.ts.map +1 -0
  76. package/lib/components/form/searchable-select/utils.js +19 -0
  77. package/lib/components/form/select.d.ts +15 -0
  78. package/lib/components/form/select.d.ts.map +1 -0
  79. package/lib/components/form/select.js +22 -0
  80. package/lib/components/form/textarea.d.ts +11 -0
  81. package/lib/components/form/textarea.d.ts.map +1 -0
  82. package/lib/components/form/textarea.js +17 -0
  83. package/lib/components/form/time-selector.d.ts +11 -0
  84. package/lib/components/form/time-selector.d.ts.map +1 -0
  85. package/lib/components/form/time-selector.js +22 -0
  86. package/lib/components/icon/checkbox-icon.d.ts +14 -0
  87. package/lib/components/icon/checkbox-icon.d.ts.map +1 -0
  88. package/lib/components/icon/checkbox-icon.js +18 -0
  89. package/lib/components/icon/color-icon.d.ts +17 -0
  90. package/lib/components/icon/color-icon.d.ts.map +1 -0
  91. package/lib/components/icon/color-icon.js +27 -0
  92. package/lib/components/icon/generated-icons.d.ts +1797 -0
  93. package/lib/components/icon/generated-icons.d.ts.map +1 -0
  94. package/lib/components/icon/generated-icons.js +1782 -0
  95. package/lib/components/icon/icon-wrapper.d.ts +30 -0
  96. package/lib/components/icon/icon-wrapper.d.ts.map +1 -0
  97. package/lib/components/icon/icon-wrapper.js +39 -0
  98. package/lib/components/icon/illustration.d.ts +7 -0
  99. package/lib/components/icon/illustration.d.ts.map +1 -0
  100. package/lib/components/icon/illustration.js +25 -0
  101. package/lib/components/icon/image.d.ts +7 -0
  102. package/lib/components/icon/image.d.ts.map +1 -0
  103. package/lib/components/icon/image.js +26 -0
  104. package/lib/components/icon/index.d.ts +6 -0
  105. package/lib/components/icon/index.d.ts.map +1 -0
  106. package/lib/components/icon/index.js +20 -0
  107. package/lib/components/icon/mono-icon-new.d.ts +32 -0
  108. package/lib/components/icon/mono-icon-new.d.ts.map +1 -0
  109. package/lib/components/icon/mono-icon-new.js +43 -0
  110. package/lib/components/icon/mono-icon.d.ts +29 -0
  111. package/lib/components/icon/mono-icon.d.ts.map +1 -0
  112. package/lib/components/icon/mono-icon.js +39 -0
  113. package/lib/components/icon/utils.d.ts +3 -0
  114. package/lib/components/icon/utils.d.ts.map +1 -0
  115. package/lib/components/icon/utils.js +12 -0
  116. package/lib/components/index.d.ts +3 -0
  117. package/lib/components/index.d.ts.map +1 -0
  118. package/lib/components/index.js +18 -0
  119. package/lib/components/loading/index.d.ts +15 -0
  120. package/lib/components/loading/index.d.ts.map +1 -0
  121. package/lib/components/loading/index.js +19 -0
  122. package/lib/components/loading/loading.module.css +17 -0
  123. package/lib/components/section-card/index.d.ts +2 -0
  124. package/lib/components/section-card/index.d.ts.map +1 -0
  125. package/lib/components/section-card/index.js +8 -0
  126. package/lib/components/section-card/section-card.d.ts +7 -0
  127. package/lib/components/section-card/section-card.d.ts.map +1 -0
  128. package/lib/components/section-card/section-card.js +14 -0
  129. package/lib/components/section-card/section-card.module.css +15 -0
  130. package/lib/components/typography/index.d.ts +19 -0
  131. package/lib/components/typography/index.d.ts.map +1 -0
  132. package/lib/components/typography/index.js +27 -0
  133. package/lib/components/typography/utils.d.ts +2 -0
  134. package/lib/components/typography/utils.d.ts.map +1 -0
  135. package/lib/components/typography/utils.js +4 -0
  136. package/lib/contact.module.css +76 -0
  137. package/lib/error-content/error-content.d.ts +2 -0
  138. package/lib/error-content/error-content.d.ts.map +1 -0
  139. package/lib/error-content/error-content.js +19 -0
  140. package/lib/error-content/error-content.module.css +11 -0
  141. package/lib/group-travel/index.d.ts +2 -0
  142. package/lib/group-travel/index.d.ts.map +1 -0
  143. package/lib/group-travel/index.js +15 -0
  144. package/lib/index.d.ts +25 -0
  145. package/lib/index.d.ts.map +1 -0
  146. package/lib/index.js +73 -0
  147. package/lib/journey-info/events.d.ts +14 -0
  148. package/lib/journey-info/events.d.ts.map +1 -0
  149. package/lib/journey-info/events.js +5 -0
  150. package/lib/journey-info/index.d.ts +2 -0
  151. package/lib/journey-info/index.d.ts.map +1 -0
  152. package/lib/journey-info/index.js +66 -0
  153. package/lib/journey-info/journeyInfoStateMachine.d.ts +179 -0
  154. package/lib/journey-info/journeyInfoStateMachine.d.ts.map +1 -0
  155. package/lib/journey-info/journeyInfoStateMachine.js +160 -0
  156. package/lib/layouts/contact-form-container.d.ts +10 -0
  157. package/lib/layouts/contact-form-container.d.ts.map +1 -0
  158. package/lib/layouts/contact-form-container.js +12 -0
  159. package/lib/layouts/contact-form-footer.d.ts +5 -0
  160. package/lib/layouts/contact-form-footer.d.ts.map +1 -0
  161. package/lib/layouts/contact-form-footer.js +59 -0
  162. package/lib/layouts/contact-form-header.d.ts +9 -0
  163. package/lib/layouts/contact-form-header.d.ts.map +1 -0
  164. package/lib/layouts/contact-form-header.js +45 -0
  165. package/lib/layouts/contact-page-layout.d.ts +24 -0
  166. package/lib/layouts/contact-page-layout.d.ts.map +1 -0
  167. package/lib/layouts/contact-page-layout.js +104 -0
  168. package/lib/layouts/container.module.css +15 -0
  169. package/lib/layouts/footer.module.css +109 -0
  170. package/lib/layouts/header.module.css +39 -0
  171. package/lib/layouts/index.d.ts +3 -0
  172. package/lib/layouts/index.d.ts.map +1 -0
  173. package/lib/layouts/index.js +11 -0
  174. package/lib/layouts/layout.module.css +80 -0
  175. package/lib/lines/use-lines.d.ts +25 -0
  176. package/lib/lines/use-lines.d.ts.map +1 -0
  177. package/lib/lines/use-lines.js +77 -0
  178. package/lib/lost-property/index.d.ts +2 -0
  179. package/lib/lost-property/index.d.ts.map +1 -0
  180. package/lib/lost-property/index.js +11 -0
  181. package/lib/means-of-transport/events.d.ts +17 -0
  182. package/lib/means-of-transport/events.d.ts.map +1 -0
  183. package/lib/means-of-transport/events.js +5 -0
  184. package/lib/means-of-transport/forms/delayForm.d.ts +11 -0
  185. package/lib/means-of-transport/forms/delayForm.d.ts.map +1 -0
  186. package/lib/means-of-transport/forms/delayForm.js +88 -0
  187. package/lib/means-of-transport/forms/driverForm.d.ts +11 -0
  188. package/lib/means-of-transport/forms/driverForm.d.ts.map +1 -0
  189. package/lib/means-of-transport/forms/driverForm.js +88 -0
  190. package/lib/means-of-transport/forms/index.d.ts +7 -0
  191. package/lib/means-of-transport/forms/index.d.ts.map +1 -0
  192. package/lib/means-of-transport/forms/index.js +18 -0
  193. package/lib/means-of-transport/forms/injuryForm.d.ts +11 -0
  194. package/lib/means-of-transport/forms/injuryForm.d.ts.map +1 -0
  195. package/lib/means-of-transport/forms/injuryForm.js +88 -0
  196. package/lib/means-of-transport/forms/serviceOfferingForm.d.ts +11 -0
  197. package/lib/means-of-transport/forms/serviceOfferingForm.d.ts.map +1 -0
  198. package/lib/means-of-transport/forms/serviceOfferingForm.js +64 -0
  199. package/lib/means-of-transport/forms/stopForm.d.ts +11 -0
  200. package/lib/means-of-transport/forms/stopForm.d.ts.map +1 -0
  201. package/lib/means-of-transport/forms/stopForm.js +76 -0
  202. package/lib/means-of-transport/forms/transportationForm.d.ts +11 -0
  203. package/lib/means-of-transport/forms/transportationForm.d.ts.map +1 -0
  204. package/lib/means-of-transport/forms/transportationForm.js +88 -0
  205. package/lib/means-of-transport/index.d.ts +3 -0
  206. package/lib/means-of-transport/index.d.ts.map +1 -0
  207. package/lib/means-of-transport/index.js +47 -0
  208. package/lib/means-of-transport/means-of-transport-form-machine.d.ts +291 -0
  209. package/lib/means-of-transport/means-of-transport-form-machine.d.ts.map +1 -0
  210. package/lib/means-of-transport/means-of-transport-form-machine.js +287 -0
  211. package/lib/modules/api-browser/index.d.ts +8 -0
  212. package/lib/modules/api-browser/index.d.ts.map +1 -0
  213. package/lib/modules/api-browser/index.js +54 -0
  214. package/lib/modules/api-server/external-client.d.ts +22 -0
  215. package/lib/modules/api-server/external-client.d.ts.map +1 -0
  216. package/lib/modules/api-server/external-client.js +86 -0
  217. package/lib/modules/api-server/index.d.ts +9 -0
  218. package/lib/modules/api-server/index.d.ts.map +1 -0
  219. package/lib/modules/api-server/index.js +24 -0
  220. package/lib/modules/api-server/requesters/graphql-requester.d.ts +6 -0
  221. package/lib/modules/api-server/requesters/graphql-requester.d.ts.map +1 -0
  222. package/lib/modules/api-server/requesters/graphql-requester.js +63 -0
  223. package/lib/modules/api-server/requesters/http-requester.d.ts +3 -0
  224. package/lib/modules/api-server/requesters/http-requester.d.ts.map +1 -0
  225. package/lib/modules/api-server/requesters/http-requester.js +110 -0
  226. package/lib/modules/api-server/requesters/types.d.ts +37 -0
  227. package/lib/modules/api-server/requesters/types.d.ts.map +1 -0
  228. package/lib/modules/api-server/requesters/types.js +34 -0
  229. package/lib/modules/api-server/requesters/utils.d.ts +17 -0
  230. package/lib/modules/api-server/requesters/utils.d.ts.map +1 -0
  231. package/lib/modules/api-server/requesters/utils.js +75 -0
  232. package/lib/modules/config/context.d.ts +54 -0
  233. package/lib/modules/config/context.d.ts.map +1 -0
  234. package/lib/modules/config/context.js +112 -0
  235. package/lib/modules/config/index.d.ts +4 -0
  236. package/lib/modules/config/index.d.ts.map +1 -0
  237. package/lib/modules/config/index.js +19 -0
  238. package/lib/modules/config/theme-adapter.d.ts +20 -0
  239. package/lib/modules/config/theme-adapter.d.ts.map +1 -0
  240. package/lib/modules/config/theme-adapter.js +56 -0
  241. package/lib/modules/config/types.d.ts +348 -0
  242. package/lib/modules/config/types.d.ts.map +1 -0
  243. package/lib/modules/config/types.js +6 -0
  244. package/lib/modules/cookies/constants.d.ts +4 -0
  245. package/lib/modules/cookies/constants.d.ts.map +1 -0
  246. package/lib/modules/cookies/constants.js +6 -0
  247. package/lib/modules/cookies/cookies-context.d.ts +17 -0
  248. package/lib/modules/cookies/cookies-context.d.ts.map +1 -0
  249. package/lib/modules/cookies/cookies-context.js +61 -0
  250. package/lib/modules/cookies/index.d.ts +15 -0
  251. package/lib/modules/cookies/index.d.ts.map +1 -0
  252. package/lib/modules/cookies/index.js +22 -0
  253. package/lib/modules/firebase/analytics.d.ts +3 -0
  254. package/lib/modules/firebase/analytics.d.ts.map +1 -0
  255. package/lib/modules/firebase/analytics.js +40 -0
  256. package/lib/modules/firebase/firebase.d.ts +4 -0
  257. package/lib/modules/firebase/firebase.d.ts.map +1 -0
  258. package/lib/modules/firebase/firebase.js +19 -0
  259. package/lib/modules/firebase/index.d.ts +5 -0
  260. package/lib/modules/firebase/index.d.ts.map +1 -0
  261. package/lib/modules/firebase/index.js +25 -0
  262. package/lib/modules/firebase/preassigned-fare-products.d.ts +8 -0
  263. package/lib/modules/firebase/preassigned-fare-products.d.ts.map +1 -0
  264. package/lib/modules/firebase/preassigned-fare-products.js +35 -0
  265. package/lib/modules/firebase/tariff-zones.d.ts +17 -0
  266. package/lib/modules/firebase/tariff-zones.d.ts.map +1 -0
  267. package/lib/modules/firebase/tariff-zones.js +32 -0
  268. package/lib/modules/firebase/transport-mode-filter.d.ts +27 -0
  269. package/lib/modules/firebase/transport-mode-filter.d.ts.map +1 -0
  270. package/lib/modules/firebase/transport-mode-filter.js +27 -0
  271. package/lib/modules/firebase/types.d.ts +19 -0
  272. package/lib/modules/firebase/types.d.ts.map +1 -0
  273. package/lib/modules/firebase/types.js +15 -0
  274. package/lib/modules/graphql-types/index.d.ts +1998 -0
  275. package/lib/modules/graphql-types/index.d.ts.map +1 -0
  276. package/lib/modules/graphql-types/index.js +442 -0
  277. package/lib/modules/graphql-types/journeyplanner-types_v3.generated.d.ts +2419 -0
  278. package/lib/modules/graphql-types/journeyplanner-types_v3.generated.d.ts.map +1 -0
  279. package/lib/modules/graphql-types/journeyplanner-types_v3.generated.js +524 -0
  280. package/lib/modules/logging/index.d.ts +6 -0
  281. package/lib/modules/logging/index.d.ts.map +1 -0
  282. package/lib/modules/logging/index.js +13 -0
  283. package/lib/modules/logging/log-api-response.d.ts +15 -0
  284. package/lib/modules/logging/log-api-response.d.ts.map +1 -0
  285. package/lib/modules/logging/log-api-response.js +52 -0
  286. package/lib/modules/logging/log-page-access.d.ts +20 -0
  287. package/lib/modules/logging/log-page-access.d.ts.map +1 -0
  288. package/lib/modules/logging/log-page-access.js +60 -0
  289. package/lib/modules/logging/logger.d.ts +3 -0
  290. package/lib/modules/logging/logger.d.ts.map +1 -0
  291. package/lib/modules/logging/logger.js +32 -0
  292. package/lib/modules/logging/timer.d.ts +6 -0
  293. package/lib/modules/logging/timer.d.ts.map +1 -0
  294. package/lib/modules/logging/timer.js +13 -0
  295. package/lib/modules/logging/with-access-logging.d.ts +5 -0
  296. package/lib/modules/logging/with-access-logging.d.ts.map +1 -0
  297. package/lib/modules/logging/with-access-logging.js +20 -0
  298. package/lib/modules/org-data/compat-layer.d.ts +8 -0
  299. package/lib/modules/org-data/compat-layer.d.ts.map +1 -0
  300. package/lib/modules/org-data/compat-layer.js +8 -0
  301. package/lib/modules/org-data/index.d.ts +12 -0
  302. package/lib/modules/org-data/index.d.ts.map +1 -0
  303. package/lib/modules/org-data/index.js +27 -0
  304. package/lib/modules/theme/index.d.ts +3 -0
  305. package/lib/modules/theme/index.d.ts.map +1 -0
  306. package/lib/modules/theme/index.js +9 -0
  307. package/lib/modules/theme/theme-context.d.ts +43 -0
  308. package/lib/modules/theme/theme-context.d.ts.map +1 -0
  309. package/lib/modules/theme/theme-context.js +73 -0
  310. package/lib/modules/transport-mode/filter/filter.d.ts +9 -0
  311. package/lib/modules/transport-mode/filter/filter.d.ts.map +1 -0
  312. package/lib/modules/transport-mode/filter/filter.js +64 -0
  313. package/lib/modules/transport-mode/filter/filter.module.css +98 -0
  314. package/lib/modules/transport-mode/filter/index.d.ts +3 -0
  315. package/lib/modules/transport-mode/filter/index.d.ts.map +1 -0
  316. package/lib/modules/transport-mode/filter/index.js +11 -0
  317. package/lib/modules/transport-mode/filter/types.d.ts +2 -0
  318. package/lib/modules/transport-mode/filter/types.d.ts.map +1 -0
  319. package/lib/modules/transport-mode/filter/types.js +2 -0
  320. package/lib/modules/transport-mode/filter/utils.d.ts +9 -0
  321. package/lib/modules/transport-mode/filter/utils.d.ts.map +1 -0
  322. package/lib/modules/transport-mode/filter/utils.js +21 -0
  323. package/lib/modules/transport-mode/icon/icon.module.css +33 -0
  324. package/lib/modules/transport-mode/icon/index.d.ts +29 -0
  325. package/lib/modules/transport-mode/icon/index.d.ts.map +1 -0
  326. package/lib/modules/transport-mode/icon/index.js +116 -0
  327. package/lib/modules/transport-mode/icon/transport-icon-new.d.ts +28 -0
  328. package/lib/modules/transport-mode/icon/transport-icon-new.d.ts.map +1 -0
  329. package/lib/modules/transport-mode/icon/transport-icon-new.js +114 -0
  330. package/lib/modules/transport-mode/index.d.ts +5 -0
  331. package/lib/modules/transport-mode/index.d.ts.map +1 -0
  332. package/lib/modules/transport-mode/index.js +29 -0
  333. package/lib/modules/transport-mode/types.d.ts +10 -0
  334. package/lib/modules/transport-mode/types.d.ts.map +1 -0
  335. package/lib/modules/transport-mode/types.js +141 -0
  336. package/lib/modules/transport-mode/utils.d.ts +9 -0
  337. package/lib/modules/transport-mode/utils.d.ts.map +1 -0
  338. package/lib/modules/transport-mode/utils.js +53 -0
  339. package/lib/refund/events.d.ts +32 -0
  340. package/lib/refund/events.d.ts.map +1 -0
  341. package/lib/refund/events.js +5 -0
  342. package/lib/refund/forms/refund-and-travel-guarantee/index.d.ts +10 -0
  343. package/lib/refund/forms/refund-and-travel-guarantee/index.d.ts.map +1 -0
  344. package/lib/refund/forms/refund-and-travel-guarantee/index.js +37 -0
  345. package/lib/refund/forms/refund-and-travel-guarantee/refundCarForm.d.ts +11 -0
  346. package/lib/refund/forms/refund-and-travel-guarantee/refundCarForm.d.ts.map +1 -0
  347. package/lib/refund/forms/refund-and-travel-guarantee/refundCarForm.js +133 -0
  348. package/lib/refund/forms/refund-and-travel-guarantee/refundTaxiForm.d.ts +11 -0
  349. package/lib/refund/forms/refund-and-travel-guarantee/refundTaxiForm.d.ts.map +1 -0
  350. package/lib/refund/forms/refund-and-travel-guarantee/refundTaxiForm.js +133 -0
  351. package/lib/refund/forms/refund-ticket/appTicketRefund.d.ts +12 -0
  352. package/lib/refund/forms/refund-ticket/appTicketRefund.d.ts.map +1 -0
  353. package/lib/refund/forms/refund-ticket/appTicketRefund.js +82 -0
  354. package/lib/refund/forms/refund-ticket/index.d.ts +10 -0
  355. package/lib/refund/forms/refund-ticket/index.d.ts.map +1 -0
  356. package/lib/refund/forms/refund-ticket/index.js +38 -0
  357. package/lib/refund/forms/refund-ticket/otherTicketRefund.d.ts +11 -0
  358. package/lib/refund/forms/refund-ticket/otherTicketRefund.d.ts.map +1 -0
  359. package/lib/refund/forms/refund-ticket/otherTicketRefund.js +109 -0
  360. package/lib/refund/forms/residualValueOnTravelCard/index.d.ts +2 -0
  361. package/lib/refund/forms/residualValueOnTravelCard/index.d.ts.map +1 -0
  362. package/lib/refund/forms/residualValueOnTravelCard/index.js +19 -0
  363. package/lib/refund/index.d.ts +3 -0
  364. package/lib/refund/index.d.ts.map +1 -0
  365. package/lib/refund/index.js +50 -0
  366. package/lib/refund/refundFormMachine.d.ts +406 -0
  367. package/lib/refund/refundFormMachine.d.ts.map +1 -0
  368. package/lib/refund/refundFormMachine.js +404 -0
  369. package/lib/server/contact/index.d.ts +11 -0
  370. package/lib/server/contact/index.d.ts.map +1 -0
  371. package/lib/server/contact/index.js +47 -0
  372. package/lib/server/index.d.ts +9 -0
  373. package/lib/server/index.d.ts.map +1 -0
  374. package/lib/server/index.js +14 -0
  375. package/lib/server/journey-planner/authority.d.ts +26 -0
  376. package/lib/server/journey-planner/authority.d.ts.map +1 -0
  377. package/lib/server/journey-planner/authority.js +48 -0
  378. package/lib/server/journey-planner/entur-client.d.ts +7 -0
  379. package/lib/server/journey-planner/entur-client.d.ts.map +1 -0
  380. package/lib/server/journey-planner/entur-client.js +46 -0
  381. package/lib/server/journey-planner/index.d.ts +11 -0
  382. package/lib/server/journey-planner/index.d.ts.map +1 -0
  383. package/lib/server/journey-planner/index.js +63 -0
  384. package/lib/server/journey-planner/journey-gql/lines.generated.d.ts +25 -0
  385. package/lib/server/journey-planner/journey-gql/lines.generated.d.ts.map +1 -0
  386. package/lib/server/journey-planner/journey-gql/lines.generated.js +30 -0
  387. package/lib/server/journey-planner/validators.d.ts +25 -0
  388. package/lib/server/journey-planner/validators.d.ts.map +1 -0
  389. package/lib/server/journey-planner/validators.js +17 -0
  390. package/lib/server/types.d.ts +5 -0
  391. package/lib/server/types.d.ts.map +1 -0
  392. package/lib/server/types.js +2 -0
  393. package/lib/success-content/success-content.d.ts +2 -0
  394. package/lib/success-content/success-content.d.ts.map +1 -0
  395. package/lib/success-content/success-content.js +19 -0
  396. package/lib/success-content/success-content.module.css +11 -0
  397. package/lib/ticket-control/events.d.ts +16 -0
  398. package/lib/ticket-control/events.d.ts.map +1 -0
  399. package/lib/ticket-control/events.js +5 -0
  400. package/lib/ticket-control/forms/feeComplaintForm.d.ts +11 -0
  401. package/lib/ticket-control/forms/feeComplaintForm.d.ts.map +1 -0
  402. package/lib/ticket-control/forms/feeComplaintForm.js +130 -0
  403. package/lib/ticket-control/forms/feedbackForm.d.ts +11 -0
  404. package/lib/ticket-control/forms/feedbackForm.d.ts.map +1 -0
  405. package/lib/ticket-control/forms/feedbackForm.js +75 -0
  406. package/lib/ticket-control/forms/postponePayment.d.ts +11 -0
  407. package/lib/ticket-control/forms/postponePayment.d.ts.map +1 -0
  408. package/lib/ticket-control/forms/postponePayment.js +37 -0
  409. package/lib/ticket-control/index.d.ts +3 -0
  410. package/lib/ticket-control/index.d.ts.map +1 -0
  411. package/lib/ticket-control/index.js +53 -0
  412. package/lib/ticket-control/ticket-control-form-machine.d.ts +277 -0
  413. package/lib/ticket-control/ticket-control-form-machine.d.ts.map +1 -0
  414. package/lib/ticket-control/ticket-control-form-machine.js +262 -0
  415. package/lib/ticketing/events.d.ts +28 -0
  416. package/lib/ticketing/events.d.ts.map +1 -0
  417. package/lib/ticketing/events.js +5 -0
  418. package/lib/ticketing/forms/app/appAccountForm.d.ts +11 -0
  419. package/lib/ticketing/forms/app/appAccountForm.d.ts.map +1 -0
  420. package/lib/ticketing/forms/app/appAccountForm.js +51 -0
  421. package/lib/ticketing/forms/app/appTicketingForm.d.ts +11 -0
  422. package/lib/ticketing/forms/app/appTicketingForm.d.ts.map +1 -0
  423. package/lib/ticketing/forms/app/appTicketingForm.js +59 -0
  424. package/lib/ticketing/forms/app/appTravelSuggestionForm.d.ts +11 -0
  425. package/lib/ticketing/forms/app/appTravelSuggestionForm.d.ts.map +1 -0
  426. package/lib/ticketing/forms/app/appTravelSuggestionForm.js +41 -0
  427. package/lib/ticketing/forms/app/index.d.ts +10 -0
  428. package/lib/ticketing/forms/app/index.d.ts.map +1 -0
  429. package/lib/ticketing/forms/app/index.js +23 -0
  430. package/lib/ticketing/forms/priceAndTicketTypesForm.d.ts +11 -0
  431. package/lib/ticketing/forms/priceAndTicketTypesForm.d.ts.map +1 -0
  432. package/lib/ticketing/forms/priceAndTicketTypesForm.js +41 -0
  433. package/lib/ticketing/forms/travel-card/index.d.ts +10 -0
  434. package/lib/ticketing/forms/travel-card/index.d.ts.map +1 -0
  435. package/lib/ticketing/forms/travel-card/index.js +24 -0
  436. package/lib/ticketing/forms/travel-card/orderTravelCard.d.ts +3 -0
  437. package/lib/ticketing/forms/travel-card/orderTravelCard.d.ts.map +1 -0
  438. package/lib/ticketing/forms/travel-card/orderTravelCard.js +21 -0
  439. package/lib/ticketing/forms/travel-card/travelCardQuestionForm.d.ts +11 -0
  440. package/lib/ticketing/forms/travel-card/travelCardQuestionForm.d.ts.map +1 -0
  441. package/lib/ticketing/forms/travel-card/travelCardQuestionForm.js +52 -0
  442. package/lib/ticketing/forms/webshop/index.d.ts +10 -0
  443. package/lib/ticketing/forms/webshop/index.d.ts.map +1 -0
  444. package/lib/ticketing/forms/webshop/index.js +22 -0
  445. package/lib/ticketing/forms/webshop/webshopAccountForm.d.ts +11 -0
  446. package/lib/ticketing/forms/webshop/webshopAccountForm.d.ts.map +1 -0
  447. package/lib/ticketing/forms/webshop/webshopAccountForm.js +51 -0
  448. package/lib/ticketing/forms/webshop/webshopTicketingForm.d.ts +11 -0
  449. package/lib/ticketing/forms/webshop/webshopTicketingForm.d.ts.map +1 -0
  450. package/lib/ticketing/forms/webshop/webshopTicketingForm.js +58 -0
  451. package/lib/ticketing/index.d.ts +3 -0
  452. package/lib/ticketing/index.d.ts.map +1 -0
  453. package/lib/ticketing/index.js +52 -0
  454. package/lib/ticketing/ticketingStateMachine.d.ts +438 -0
  455. package/lib/ticketing/ticketingStateMachine.d.ts.map +1 -0
  456. package/lib/ticketing/ticketingStateMachine.js +435 -0
  457. package/lib/translations/__tests__/utils.test.d.ts +2 -0
  458. package/lib/translations/__tests__/utils.test.d.ts.map +1 -0
  459. package/lib/translations/__tests__/utils.test.js +35 -0
  460. package/lib/translations/common/index.d.ts +3 -0
  461. package/lib/translations/common/index.d.ts.map +1 -0
  462. package/lib/translations/common/index.js +7 -0
  463. package/lib/translations/common/layout.d.ts +8 -0
  464. package/lib/translations/common/layout.d.ts.map +1 -0
  465. package/lib/translations/common/layout.js +39 -0
  466. package/lib/translations/common/titles.d.ts +4 -0
  467. package/lib/translations/common/titles.d.ts.map +1 -0
  468. package/lib/translations/common/titles.js +25 -0
  469. package/lib/translations/commons.d.ts +21 -0
  470. package/lib/translations/commons.d.ts.map +1 -0
  471. package/lib/translations/commons.js +39 -0
  472. package/lib/translations/components/clear-button.d.ts +4 -0
  473. package/lib/translations/components/clear-button.d.ts.map +1 -0
  474. package/lib/translations/components/clear-button.js +7 -0
  475. package/lib/translations/components/departure-date-selector.d.ts +8 -0
  476. package/lib/translations/components/departure-date-selector.d.ts.map +1 -0
  477. package/lib/translations/components/departure-date-selector.js +11 -0
  478. package/lib/translations/components/departure-time.d.ts +8 -0
  479. package/lib/translations/components/departure-time.d.ts.map +1 -0
  480. package/lib/translations/components/departure-time.js +11 -0
  481. package/lib/translations/components/empty-search.d.ts +18 -0
  482. package/lib/translations/components/empty-search.d.ts.map +1 -0
  483. package/lib/translations/components/empty-search.js +21 -0
  484. package/lib/translations/components/geolocation-button.d.ts +10 -0
  485. package/lib/translations/components/geolocation-button.d.ts.map +1 -0
  486. package/lib/translations/components/geolocation-button.js +13 -0
  487. package/lib/translations/components/index.d.ts +14 -0
  488. package/lib/translations/components/index.d.ts.map +1 -0
  489. package/lib/translations/components/index.js +29 -0
  490. package/lib/translations/components/loading.d.ts +4 -0
  491. package/lib/translations/components/loading.d.ts.map +1 -0
  492. package/lib/translations/components/loading.js +7 -0
  493. package/lib/translations/components/map.d.ts +19 -0
  494. package/lib/translations/components/map.d.ts.map +1 -0
  495. package/lib/translations/components/map.js +22 -0
  496. package/lib/translations/components/search.d.ts +9 -0
  497. package/lib/translations/components/search.d.ts.map +1 -0
  498. package/lib/translations/components/search.js +12 -0
  499. package/lib/translations/components/swap-button.d.ts +4 -0
  500. package/lib/translations/components/swap-button.d.ts.map +1 -0
  501. package/lib/translations/components/swap-button.js +7 -0
  502. package/lib/translations/components/tab-link.d.ts +5 -0
  503. package/lib/translations/components/tab-link.d.ts.map +1 -0
  504. package/lib/translations/components/tab-link.js +8 -0
  505. package/lib/translations/components/transport-mode-filter.d.ts +6 -0
  506. package/lib/translations/components/transport-mode-filter.d.ts.map +1 -0
  507. package/lib/translations/components/transport-mode-filter.js +9 -0
  508. package/lib/translations/components/transport-mode.d.ts +3 -0
  509. package/lib/translations/components/transport-mode.d.ts.map +1 -0
  510. package/lib/translations/components/transport-mode.js +28 -0
  511. package/lib/translations/components/venue-icon.d.ts +9 -0
  512. package/lib/translations/components/venue-icon.d.ts.map +1 -0
  513. package/lib/translations/components/venue-icon.js +12 -0
  514. package/lib/translations/dictionary.d.ts +33 -0
  515. package/lib/translations/dictionary.d.ts.map +1 -0
  516. package/lib/translations/dictionary.js +59 -0
  517. package/lib/translations/index.d.ts +16 -0
  518. package/lib/translations/index.d.ts.map +1 -0
  519. package/lib/translations/index.js +65 -0
  520. package/lib/translations/json-to-override.d.ts +19 -0
  521. package/lib/translations/json-to-override.d.ts.map +1 -0
  522. package/lib/translations/json-to-override.js +61 -0
  523. package/lib/translations/language-context.d.ts +37 -0
  524. package/lib/translations/language-context.d.ts.map +1 -0
  525. package/lib/translations/language-context.js +98 -0
  526. package/lib/translations/load-org-translations.d.ts +19 -0
  527. package/lib/translations/load-org-translations.d.ts.map +1 -0
  528. package/lib/translations/load-org-translations.js +23 -0
  529. package/lib/translations/merge-overrides.d.ts +28 -0
  530. package/lib/translations/merge-overrides.d.ts.map +1 -0
  531. package/lib/translations/merge-overrides.js +126 -0
  532. package/lib/translations/modules/index.d.ts +4 -0
  533. package/lib/translations/modules/index.d.ts.map +1 -0
  534. package/lib/translations/modules/index.js +9 -0
  535. package/lib/translations/modules/layout.d.ts +73 -0
  536. package/lib/translations/modules/layout.d.ts.map +1 -0
  537. package/lib/translations/modules/layout.js +106 -0
  538. package/lib/translations/modules/search-time.d.ts +8 -0
  539. package/lib/translations/modules/search-time.d.ts.map +1 -0
  540. package/lib/translations/modules/search-time.js +11 -0
  541. package/lib/translations/modules/situation.d.ts +8 -0
  542. package/lib/translations/modules/situation.d.ts.map +1 -0
  543. package/lib/translations/modules/situation.js +11 -0
  544. package/lib/translations/pages/assistant.d.ts +2 -0
  545. package/lib/translations/pages/assistant.d.ts.map +1 -0
  546. package/lib/translations/pages/assistant.js +303 -0
  547. package/lib/translations/pages/contact.d.ts +589 -0
  548. package/lib/translations/pages/contact.d.ts.map +1 -0
  549. package/lib/translations/pages/contact.js +679 -0
  550. package/lib/translations/pages/departures.d.ts +64 -0
  551. package/lib/translations/pages/departures.d.ts.map +1 -0
  552. package/lib/translations/pages/departures.js +75 -0
  553. package/lib/translations/pages/error.d.ts +8 -0
  554. package/lib/translations/pages/error.d.ts.map +1 -0
  555. package/lib/translations/pages/error.js +11 -0
  556. package/lib/translations/pages/index.d.ts +4 -0
  557. package/lib/translations/pages/index.d.ts.map +1 -0
  558. package/lib/translations/pages/index.js +9 -0
  559. package/lib/translations/server/endpoints.d.ts +67 -0
  560. package/lib/translations/server/endpoints.d.ts.map +1 -0
  561. package/lib/translations/server/endpoints.js +146 -0
  562. package/lib/translations/server/index.d.ts +2 -0
  563. package/lib/translations/server/index.d.ts.map +1 -0
  564. package/lib/translations/server/index.js +5 -0
  565. package/lib/translations/translations-context.d.ts +10 -0
  566. package/lib/translations/translations-context.d.ts.map +1 -0
  567. package/lib/translations/translations-context.js +20 -0
  568. package/lib/translations/types.d.ts +41 -0
  569. package/lib/translations/types.d.ts.map +1 -0
  570. package/lib/translations/types.js +24 -0
  571. package/lib/translations/utils.d.ts +16 -0
  572. package/lib/translations/utils.d.ts.map +1 -0
  573. package/lib/translations/utils.js +56 -0
  574. package/lib/types/submit-payloads.d.ts +119 -0
  575. package/lib/types/submit-payloads.d.ts.map +1 -0
  576. package/lib/types/submit-payloads.js +7 -0
  577. package/lib/types.d.ts +20 -0
  578. package/lib/types.d.ts.map +1 -0
  579. package/lib/types.js +12 -0
  580. package/lib/utils/color.d.ts +2 -0
  581. package/lib/utils/color.d.ts.map +1 -0
  582. package/lib/utils/color.js +50 -0
  583. package/lib/utils/css.d.ts +3 -0
  584. package/lib/utils/css.d.ts.map +1 -0
  585. package/lib/utils/css.js +15 -0
  586. package/lib/utils/date.d.ts +4 -0
  587. package/lib/utils/date.d.ts.map +1 -0
  588. package/lib/utils/date.js +21 -0
  589. package/lib/utils/enum-from-string.d.ts +4 -0
  590. package/lib/utils/enum-from-string.d.ts.map +1 -0
  591. package/lib/utils/enum-from-string.js +9 -0
  592. package/lib/utils/env.d.ts +10 -0
  593. package/lib/utils/env.d.ts.map +1 -0
  594. package/lib/utils/env.js +49 -0
  595. package/lib/utils/only-uniques.d.ts +3 -0
  596. package/lib/utils/only-uniques.d.ts.map +1 -0
  597. package/lib/utils/only-uniques.js +7 -0
  598. package/lib/utils/org-theme-definitions.d.ts +5 -0
  599. package/lib/utils/org-theme-definitions.d.ts.map +1 -0
  600. package/lib/utils/org-theme-definitions.js +13 -0
  601. package/lib/utils/presence.d.ts +2 -0
  602. package/lib/utils/presence.d.ts.map +1 -0
  603. package/lib/utils/presence.js +5 -0
  604. package/lib/utils/reference-data.d.ts +15 -0
  605. package/lib/utils/reference-data.d.ts.map +1 -0
  606. package/lib/utils/reference-data.js +15 -0
  607. package/lib/utils/use-client-width.d.ts +2 -0
  608. package/lib/utils/use-client-width.d.ts.map +1 -0
  609. package/lib/utils/use-client-width.js +18 -0
  610. package/lib/utils/use-debounce.d.ts +3 -0
  611. package/lib/utils/use-debounce.d.ts.map +1 -0
  612. package/lib/utils/use-debounce.js +14 -0
  613. package/lib/utils/use-interval.d.ts +2 -0
  614. package/lib/utils/use-interval.d.ts.map +1 -0
  615. package/lib/utils/use-interval.js +22 -0
  616. package/lib/utils/use-localstorage.d.ts +2 -0
  617. package/lib/utils/use-localstorage.d.ts.map +1 -0
  618. package/lib/utils/use-localstorage.js +40 -0
  619. package/lib/utils/use-now.d.ts +2 -0
  620. package/lib/utils/use-now.d.ts.map +1 -0
  621. package/lib/utils/use-now.js +13 -0
  622. package/lib/utils/user-media-query.d.ts +2 -0
  623. package/lib/utils/user-media-query.d.ts.map +1 -0
  624. package/lib/utils/user-media-query.js +36 -0
  625. package/lib/utils.d.ts +19 -0
  626. package/lib/utils.d.ts.map +1 -0
  627. package/lib/utils.js +126 -0
  628. package/lib/validation/commonInputValidator.d.ts +7 -0
  629. package/lib/validation/commonInputValidator.d.ts.map +1 -0
  630. package/lib/validation/commonInputValidator.js +28 -0
  631. package/lib/validation/index.d.ts +2 -0
  632. package/lib/validation/index.d.ts.map +1 -0
  633. package/lib/validation/index.js +8 -0
  634. package/lib/validation/validationRules.d.ts +11 -0
  635. package/lib/validation/validationRules.d.ts.map +1 -0
  636. package/lib/validation/validationRules.js +372 -0
  637. package/package.json +99 -0
@@ -0,0 +1,1797 @@
1
+ export declare const icons: {
2
+ mono: {
3
+ "bonus/Star": {
4
+ relative: string;
5
+ absolute: string;
6
+ assetType: string;
7
+ id: string;
8
+ };
9
+ "bonus/StarFill": {
10
+ relative: string;
11
+ absolute: string;
12
+ assetType: string;
13
+ id: string;
14
+ };
15
+ "actions/Add": {
16
+ relative: string;
17
+ absolute: string;
18
+ assetType: string;
19
+ id: string;
20
+ };
21
+ "actions/Adjust": {
22
+ relative: string;
23
+ absolute: string;
24
+ assetType: string;
25
+ id: string;
26
+ };
27
+ "actions/ArrowsCounterClockwise": {
28
+ relative: string;
29
+ absolute: string;
30
+ assetType: string;
31
+ id: string;
32
+ };
33
+ "actions/Chat": {
34
+ relative: string;
35
+ absolute: string;
36
+ assetType: string;
37
+ id: string;
38
+ };
39
+ "actions/Clear": {
40
+ relative: string;
41
+ absolute: string;
42
+ assetType: string;
43
+ id: string;
44
+ };
45
+ "actions/Close": {
46
+ relative: string;
47
+ absolute: string;
48
+ assetType: string;
49
+ id: string;
50
+ };
51
+ "actions/Confirm": {
52
+ relative: string;
53
+ absolute: string;
54
+ assetType: string;
55
+ id: string;
56
+ };
57
+ "actions/Context": {
58
+ relative: string;
59
+ absolute: string;
60
+ assetType: string;
61
+ id: string;
62
+ };
63
+ "actions/Delete": {
64
+ relative: string;
65
+ absolute: string;
66
+ assetType: string;
67
+ id: string;
68
+ };
69
+ "actions/DragHandle": {
70
+ relative: string;
71
+ absolute: string;
72
+ assetType: string;
73
+ id: string;
74
+ };
75
+ "actions/Edit": {
76
+ relative: string;
77
+ absolute: string;
78
+ assetType: string;
79
+ id: string;
80
+ };
81
+ "actions/Feedback copy": {
82
+ relative: string;
83
+ absolute: string;
84
+ assetType: string;
85
+ id: string;
86
+ };
87
+ "actions/Feedback": {
88
+ relative: string;
89
+ absolute: string;
90
+ assetType: string;
91
+ id: string;
92
+ };
93
+ "actions/Filter": {
94
+ relative: string;
95
+ absolute: string;
96
+ assetType: string;
97
+ id: string;
98
+ };
99
+ "actions/Interchange": {
100
+ relative: string;
101
+ absolute: string;
102
+ assetType: string;
103
+ id: string;
104
+ };
105
+ "actions/Reorder": {
106
+ relative: string;
107
+ absolute: string;
108
+ assetType: string;
109
+ id: string;
110
+ };
111
+ "actions/Search": {
112
+ relative: string;
113
+ absolute: string;
114
+ assetType: string;
115
+ id: string;
116
+ };
117
+ "actions/SortAscending": {
118
+ relative: string;
119
+ absolute: string;
120
+ assetType: string;
121
+ id: string;
122
+ };
123
+ "actions/SortDescending": {
124
+ relative: string;
125
+ absolute: string;
126
+ assetType: string;
127
+ id: string;
128
+ };
129
+ "actions/Subtract": {
130
+ relative: string;
131
+ absolute: string;
132
+ assetType: string;
133
+ id: string;
134
+ };
135
+ "actions/Support": {
136
+ relative: string;
137
+ absolute: string;
138
+ assetType: string;
139
+ id: string;
140
+ };
141
+ "actions/Swap": {
142
+ relative: string;
143
+ absolute: string;
144
+ assetType: string;
145
+ id: string;
146
+ };
147
+ "devices/Laptop": {
148
+ relative: string;
149
+ absolute: string;
150
+ assetType: string;
151
+ id: string;
152
+ };
153
+ "devices/Phone": {
154
+ relative: string;
155
+ absolute: string;
156
+ assetType: string;
157
+ id: string;
158
+ };
159
+ "map/Map": {
160
+ relative: string;
161
+ absolute: string;
162
+ assetType: string;
163
+ id: string;
164
+ };
165
+ "map/Pin": {
166
+ relative: string;
167
+ absolute: string;
168
+ assetType: string;
169
+ id: string;
170
+ };
171
+ "map/PinInvalid": {
172
+ relative: string;
173
+ absolute: string;
174
+ assetType: string;
175
+ id: string;
176
+ };
177
+ "map/PinValid": {
178
+ relative: string;
179
+ absolute: string;
180
+ assetType: string;
181
+ id: string;
182
+ };
183
+ "miscellaneous/Accessibility-ISA": {
184
+ relative: string;
185
+ absolute: string;
186
+ assetType: string;
187
+ id: string;
188
+ };
189
+ "miscellaneous/Accessibility-wheelchair": {
190
+ relative: string;
191
+ absolute: string;
192
+ assetType: string;
193
+ id: string;
194
+ };
195
+ "miscellaneous/Accesstbility-Circle": {
196
+ relative: string;
197
+ absolute: string;
198
+ assetType: string;
199
+ id: string;
200
+ };
201
+ "miscellaneous/Activity": {
202
+ relative: string;
203
+ absolute: string;
204
+ assetType: string;
205
+ id: string;
206
+ };
207
+ "miscellaneous/BatteryEmpty": {
208
+ relative: string;
209
+ absolute: string;
210
+ assetType: string;
211
+ id: string;
212
+ };
213
+ "miscellaneous/BatteryFull": {
214
+ relative: string;
215
+ absolute: string;
216
+ assetType: string;
217
+ id: string;
218
+ };
219
+ "miscellaneous/BatteryHigh": {
220
+ relative: string;
221
+ absolute: string;
222
+ assetType: string;
223
+ id: string;
224
+ };
225
+ "miscellaneous/BatteryLow": {
226
+ relative: string;
227
+ absolute: string;
228
+ assetType: string;
229
+ id: string;
230
+ };
231
+ "miscellaneous/BatteryMedium": {
232
+ relative: string;
233
+ absolute: string;
234
+ assetType: string;
235
+ id: string;
236
+ };
237
+ "miscellaneous/Bluetooth": {
238
+ relative: string;
239
+ absolute: string;
240
+ assetType: string;
241
+ id: string;
242
+ };
243
+ "mobility/Distance": {
244
+ relative: string;
245
+ absolute: string;
246
+ assetType: string;
247
+ id: string;
248
+ };
249
+ "mobility/Duration": {
250
+ relative: string;
251
+ absolute: string;
252
+ assetType: string;
253
+ id: string;
254
+ };
255
+ "mobility/NoEntry": {
256
+ relative: string;
257
+ absolute: string;
258
+ assetType: string;
259
+ id: string;
260
+ };
261
+ "mobility/NoParking": {
262
+ relative: string;
263
+ absolute: string;
264
+ assetType: string;
265
+ id: string;
266
+ };
267
+ "mobility/Price": {
268
+ relative: string;
269
+ absolute: string;
270
+ assetType: string;
271
+ id: string;
272
+ };
273
+ "mobility/PricePerTime": {
274
+ relative: string;
275
+ absolute: string;
276
+ assetType: string;
277
+ id: string;
278
+ };
279
+ "mobility/Report": {
280
+ relative: string;
281
+ absolute: string;
282
+ assetType: string;
283
+ id: string;
284
+ };
285
+ "mobility/RuleAlcohol": {
286
+ relative: string;
287
+ absolute: string;
288
+ assetType: string;
289
+ id: string;
290
+ };
291
+ "mobility/RuleHelmet": {
292
+ relative: string;
293
+ absolute: string;
294
+ assetType: string;
295
+ id: string;
296
+ };
297
+ "mobility/RuleTwoPeople": {
298
+ relative: string;
299
+ absolute: string;
300
+ assetType: string;
301
+ id: string;
302
+ };
303
+ "mobility/StartTrip": {
304
+ relative: string;
305
+ absolute: string;
306
+ assetType: string;
307
+ id: string;
308
+ };
309
+ "mobility/Unlock": {
310
+ relative: string;
311
+ absolute: string;
312
+ assetType: string;
313
+ id: string;
314
+ };
315
+ "navigation/ArrowDown": {
316
+ relative: string;
317
+ absolute: string;
318
+ assetType: string;
319
+ id: string;
320
+ };
321
+ "navigation/ArrowLeft": {
322
+ relative: string;
323
+ absolute: string;
324
+ assetType: string;
325
+ id: string;
326
+ };
327
+ "navigation/ArrowRight": {
328
+ relative: string;
329
+ absolute: string;
330
+ assetType: string;
331
+ id: string;
332
+ };
333
+ "navigation/ArrowUp": {
334
+ relative: string;
335
+ absolute: string;
336
+ assetType: string;
337
+ id: string;
338
+ };
339
+ "navigation/ArrowUpDown": {
340
+ relative: string;
341
+ absolute: string;
342
+ assetType: string;
343
+ id: string;
344
+ };
345
+ "navigation/ArrowUpLeft": {
346
+ relative: string;
347
+ absolute: string;
348
+ assetType: string;
349
+ id: string;
350
+ };
351
+ "navigation/BusLiveArrow": {
352
+ relative: string;
353
+ absolute: string;
354
+ assetType: string;
355
+ id: string;
356
+ };
357
+ "navigation/ChevronLeft": {
358
+ relative: string;
359
+ absolute: string;
360
+ assetType: string;
361
+ id: string;
362
+ };
363
+ "navigation/ChevronRight": {
364
+ relative: string;
365
+ absolute: string;
366
+ assetType: string;
367
+ id: string;
368
+ };
369
+ "navigation/ExpandLess": {
370
+ relative: string;
371
+ absolute: string;
372
+ assetType: string;
373
+ id: string;
374
+ };
375
+ "navigation/ExpandMore": {
376
+ relative: string;
377
+ absolute: string;
378
+ assetType: string;
379
+ id: string;
380
+ };
381
+ "navigation/ExternalLink": {
382
+ relative: string;
383
+ absolute: string;
384
+ assetType: string;
385
+ id: string;
386
+ };
387
+ "navigation/UnfoldLess": {
388
+ relative: string;
389
+ absolute: string;
390
+ assetType: string;
391
+ id: string;
392
+ };
393
+ "navigation/UnfoldMore": {
394
+ relative: string;
395
+ absolute: string;
396
+ assetType: string;
397
+ id: string;
398
+ };
399
+ "places/City": {
400
+ relative: string;
401
+ absolute: string;
402
+ assetType: string;
403
+ id: string;
404
+ };
405
+ "places/Destination": {
406
+ relative: string;
407
+ absolute: string;
408
+ assetType: string;
409
+ id: string;
410
+ };
411
+ "places/Favorite": {
412
+ relative: string;
413
+ absolute: string;
414
+ assetType: string;
415
+ id: string;
416
+ };
417
+ "places/FavoriteDisable": {
418
+ relative: string;
419
+ absolute: string;
420
+ assetType: string;
421
+ id: string;
422
+ };
423
+ "places/FavoriteFill": {
424
+ relative: string;
425
+ absolute: string;
426
+ assetType: string;
427
+ id: string;
428
+ };
429
+ "places/FavoriteSemi": {
430
+ relative: string;
431
+ absolute: string;
432
+ assetType: string;
433
+ id: string;
434
+ };
435
+ "places/House": {
436
+ relative: string;
437
+ absolute: string;
438
+ assetType: string;
439
+ id: string;
440
+ };
441
+ "places/Location": {
442
+ relative: string;
443
+ absolute: string;
444
+ assetType: string;
445
+ id: string;
446
+ };
447
+ "places/Parking": {
448
+ relative: string;
449
+ absolute: string;
450
+ assetType: string;
451
+ id: string;
452
+ };
453
+ "places/Stop": {
454
+ relative: string;
455
+ absolute: string;
456
+ assetType: string;
457
+ id: string;
458
+ };
459
+ "places/StopDestination": {
460
+ relative: string;
461
+ absolute: string;
462
+ assetType: string;
463
+ id: string;
464
+ };
465
+ "places/StopOrigin": {
466
+ relative: string;
467
+ absolute: string;
468
+ assetType: string;
469
+ id: string;
470
+ };
471
+ "status/Check": {
472
+ relative: string;
473
+ absolute: string;
474
+ assetType: string;
475
+ id: string;
476
+ };
477
+ "status/Error": {
478
+ relative: string;
479
+ absolute: string;
480
+ assetType: string;
481
+ id: string;
482
+ };
483
+ "status/Info": {
484
+ relative: string;
485
+ absolute: string;
486
+ assetType: string;
487
+ id: string;
488
+ };
489
+ "status/ServiceDisruption": {
490
+ relative: string;
491
+ absolute: string;
492
+ assetType: string;
493
+ id: string;
494
+ };
495
+ "status/Spinner": {
496
+ relative: string;
497
+ absolute: string;
498
+ assetType: string;
499
+ id: string;
500
+ };
501
+ "status/Unknown": {
502
+ relative: string;
503
+ absolute: string;
504
+ assetType: string;
505
+ id: string;
506
+ };
507
+ "status/Warning": {
508
+ relative: string;
509
+ absolute: string;
510
+ assetType: string;
511
+ id: string;
512
+ };
513
+ "profile/Language": {
514
+ relative: string;
515
+ absolute: string;
516
+ assetType: string;
517
+ id: string;
518
+ };
519
+ "profile/LogIn": {
520
+ relative: string;
521
+ absolute: string;
522
+ assetType: string;
523
+ id: string;
524
+ };
525
+ "profile/LogOut": {
526
+ relative: string;
527
+ absolute: string;
528
+ assetType: string;
529
+ id: string;
530
+ };
531
+ "profile/Mail": {
532
+ relative: string;
533
+ absolute: string;
534
+ assetType: string;
535
+ id: string;
536
+ };
537
+ "profile/NewConcept": {
538
+ relative: string;
539
+ absolute: string;
540
+ assetType: string;
541
+ id: string;
542
+ };
543
+ "profile/Notification": {
544
+ relative: string;
545
+ absolute: string;
546
+ assetType: string;
547
+ id: string;
548
+ };
549
+ "profile/Phone": {
550
+ relative: string;
551
+ absolute: string;
552
+ assetType: string;
553
+ id: string;
554
+ };
555
+ "profile/Privacy": {
556
+ relative: string;
557
+ absolute: string;
558
+ assetType: string;
559
+ id: string;
560
+ };
561
+ "profile/Settings": {
562
+ relative: string;
563
+ absolute: string;
564
+ assetType: string;
565
+ id: string;
566
+ };
567
+ "profile/Theme": {
568
+ relative: string;
569
+ absolute: string;
570
+ assetType: string;
571
+ id: string;
572
+ };
573
+ "profile/User": {
574
+ relative: string;
575
+ absolute: string;
576
+ assetType: string;
577
+ id: string;
578
+ };
579
+ "profile/UserEdit": {
580
+ relative: string;
581
+ absolute: string;
582
+ assetType: string;
583
+ id: string;
584
+ };
585
+ "tab-bar/Assistant": {
586
+ relative: string;
587
+ absolute: string;
588
+ assetType: string;
589
+ id: string;
590
+ };
591
+ "tab-bar/AssistantFill": {
592
+ relative: string;
593
+ absolute: string;
594
+ assetType: string;
595
+ id: string;
596
+ };
597
+ "tab-bar/Departures": {
598
+ relative: string;
599
+ absolute: string;
600
+ assetType: string;
601
+ id: string;
602
+ };
603
+ "tab-bar/DeparturesFill": {
604
+ relative: string;
605
+ absolute: string;
606
+ assetType: string;
607
+ id: string;
608
+ };
609
+ "tab-bar/MapPin": {
610
+ relative: string;
611
+ absolute: string;
612
+ assetType: string;
613
+ id: string;
614
+ };
615
+ "tab-bar/MapPinFill": {
616
+ relative: string;
617
+ absolute: string;
618
+ assetType: string;
619
+ id: string;
620
+ };
621
+ "tab-bar/Profile": {
622
+ relative: string;
623
+ absolute: string;
624
+ assetType: string;
625
+ id: string;
626
+ };
627
+ "tab-bar/ProfileFill": {
628
+ relative: string;
629
+ absolute: string;
630
+ assetType: string;
631
+ id: string;
632
+ };
633
+ "tab-bar/Ticketing": {
634
+ relative: string;
635
+ absolute: string;
636
+ assetType: string;
637
+ id: string;
638
+ };
639
+ "tab-bar/TicketingFill": {
640
+ relative: string;
641
+ absolute: string;
642
+ assetType: string;
643
+ id: string;
644
+ };
645
+ "time/Date": {
646
+ relative: string;
647
+ absolute: string;
648
+ assetType: string;
649
+ id: string;
650
+ };
651
+ "time/Duration": {
652
+ relative: string;
653
+ absolute: string;
654
+ assetType: string;
655
+ id: string;
656
+ };
657
+ "time/Realtime": {
658
+ relative: string;
659
+ absolute: string;
660
+ assetType: string;
661
+ id: string;
662
+ };
663
+ "time/RealtimeSmall": {
664
+ relative: string;
665
+ absolute: string;
666
+ assetType: string;
667
+ id: string;
668
+ };
669
+ "time/Time": {
670
+ relative: string;
671
+ absolute: string;
672
+ assetType: string;
673
+ id: string;
674
+ };
675
+ "ticketing/Card": {
676
+ relative: string;
677
+ absolute: string;
678
+ assetType: string;
679
+ id: string;
680
+ };
681
+ "ticketing/H24": {
682
+ relative: string;
683
+ absolute: string;
684
+ assetType: string;
685
+ id: string;
686
+ };
687
+ "ticketing/Moon": {
688
+ relative: string;
689
+ absolute: string;
690
+ assetType: string;
691
+ id: string;
692
+ };
693
+ "ticketing/QR": {
694
+ relative: string;
695
+ absolute: string;
696
+ assetType: string;
697
+ id: string;
698
+ };
699
+ "ticketing/Receipt": {
700
+ relative: string;
701
+ absolute: string;
702
+ assetType: string;
703
+ id: string;
704
+ };
705
+ "ticketing/Student": {
706
+ relative: string;
707
+ absolute: string;
708
+ assetType: string;
709
+ id: string;
710
+ };
711
+ "ticketing/Sun": {
712
+ relative: string;
713
+ absolute: string;
714
+ assetType: string;
715
+ id: string;
716
+ };
717
+ "ticketing/Ticket": {
718
+ relative: string;
719
+ absolute: string;
720
+ assetType: string;
721
+ id: string;
722
+ };
723
+ "ticketing/TicketAdd": {
724
+ relative: string;
725
+ absolute: string;
726
+ assetType: string;
727
+ id: string;
728
+ };
729
+ "ticketing/TicketInvalid": {
730
+ relative: string;
731
+ absolute: string;
732
+ assetType: string;
733
+ id: string;
734
+ };
735
+ "ticketing/TicketMultiple": {
736
+ relative: string;
737
+ absolute: string;
738
+ assetType: string;
739
+ id: string;
740
+ };
741
+ "ticketing/TicketValid": {
742
+ relative: string;
743
+ absolute: string;
744
+ assetType: string;
745
+ id: string;
746
+ };
747
+ "ticketing/Travellers": {
748
+ relative: string;
749
+ absolute: string;
750
+ assetType: string;
751
+ id: string;
752
+ };
753
+ "ticketing/Vipps": {
754
+ relative: string;
755
+ absolute: string;
756
+ assetType: string;
757
+ id: string;
758
+ };
759
+ "ticketing/Youth": {
760
+ relative: string;
761
+ absolute: string;
762
+ assetType: string;
763
+ id: string;
764
+ };
765
+ "transportation/Bicycle": {
766
+ relative: string;
767
+ absolute: string;
768
+ assetType: string;
769
+ id: string;
770
+ };
771
+ "transportation/BicycleFill": {
772
+ relative: string;
773
+ absolute: string;
774
+ assetType: string;
775
+ id: string;
776
+ };
777
+ "transportation/Cable": {
778
+ relative: string;
779
+ absolute: string;
780
+ assetType: string;
781
+ id: string;
782
+ };
783
+ "transportation/CableFill": {
784
+ relative: string;
785
+ absolute: string;
786
+ assetType: string;
787
+ id: string;
788
+ };
789
+ "transportation/Car": {
790
+ relative: string;
791
+ absolute: string;
792
+ assetType: string;
793
+ id: string;
794
+ };
795
+ "transportation/CarFill": {
796
+ relative: string;
797
+ absolute: string;
798
+ assetType: string;
799
+ id: string;
800
+ };
801
+ "transportation/Flexible": {
802
+ relative: string;
803
+ absolute: string;
804
+ assetType: string;
805
+ id: string;
806
+ };
807
+ "transportation/FlexibleFill": {
808
+ relative: string;
809
+ absolute: string;
810
+ assetType: string;
811
+ id: string;
812
+ };
813
+ "transportation/Funicular": {
814
+ relative: string;
815
+ absolute: string;
816
+ assetType: string;
817
+ id: string;
818
+ };
819
+ "transportation/FunicularFill": {
820
+ relative: string;
821
+ absolute: string;
822
+ assetType: string;
823
+ id: string;
824
+ };
825
+ "transportation/Metro": {
826
+ relative: string;
827
+ absolute: string;
828
+ assetType: string;
829
+ id: string;
830
+ };
831
+ "transportation/MetroFill": {
832
+ relative: string;
833
+ absolute: string;
834
+ assetType: string;
835
+ id: string;
836
+ };
837
+ "transportation/Night": {
838
+ relative: string;
839
+ absolute: string;
840
+ assetType: string;
841
+ id: string;
842
+ };
843
+ "transportation/NightFill": {
844
+ relative: string;
845
+ absolute: string;
846
+ assetType: string;
847
+ id: string;
848
+ };
849
+ "transportation/Plane": {
850
+ relative: string;
851
+ absolute: string;
852
+ assetType: string;
853
+ id: string;
854
+ };
855
+ "transportation/PlaneFill": {
856
+ relative: string;
857
+ absolute: string;
858
+ assetType: string;
859
+ id: string;
860
+ };
861
+ "transportation/Scooter": {
862
+ relative: string;
863
+ absolute: string;
864
+ assetType: string;
865
+ id: string;
866
+ };
867
+ "transportation/ScooterFill": {
868
+ relative: string;
869
+ absolute: string;
870
+ assetType: string;
871
+ id: string;
872
+ };
873
+ "transportation/Train": {
874
+ relative: string;
875
+ absolute: string;
876
+ assetType: string;
877
+ id: string;
878
+ };
879
+ "transportation/TrainFill": {
880
+ relative: string;
881
+ absolute: string;
882
+ assetType: string;
883
+ id: string;
884
+ };
885
+ "transportation/Tram": {
886
+ relative: string;
887
+ absolute: string;
888
+ assetType: string;
889
+ id: string;
890
+ };
891
+ "transportation/TramFill": {
892
+ relative: string;
893
+ absolute: string;
894
+ assetType: string;
895
+ id: string;
896
+ };
897
+ "transportation/Unknown": {
898
+ relative: string;
899
+ absolute: string;
900
+ assetType: string;
901
+ id: string;
902
+ };
903
+ "transportation/UnknownFill": {
904
+ relative: string;
905
+ absolute: string;
906
+ assetType: string;
907
+ id: string;
908
+ };
909
+ "transportation/Walk": {
910
+ relative: string;
911
+ absolute: string;
912
+ assetType: string;
913
+ id: string;
914
+ };
915
+ "transportation/WalkFill": {
916
+ relative: string;
917
+ absolute: string;
918
+ assetType: string;
919
+ id: string;
920
+ };
921
+ "transportation-entur/Bicycle": {
922
+ relative: string;
923
+ absolute: string;
924
+ assetType: string;
925
+ id: string;
926
+ };
927
+ "transportation-entur/Bus": {
928
+ relative: string;
929
+ absolute: string;
930
+ assetType: string;
931
+ id: string;
932
+ };
933
+ "transportation-entur/Cableway": {
934
+ relative: string;
935
+ absolute: string;
936
+ assetType: string;
937
+ id: string;
938
+ };
939
+ "transportation-entur/Car": {
940
+ relative: string;
941
+ absolute: string;
942
+ assetType: string;
943
+ id: string;
944
+ };
945
+ "transportation-entur/Carferry": {
946
+ relative: string;
947
+ absolute: string;
948
+ assetType: string;
949
+ id: string;
950
+ };
951
+ "transportation-entur/Ferry": {
952
+ relative: string;
953
+ absolute: string;
954
+ assetType: string;
955
+ id: string;
956
+ };
957
+ "transportation-entur/Funicular": {
958
+ relative: string;
959
+ absolute: string;
960
+ assetType: string;
961
+ id: string;
962
+ };
963
+ "transportation-entur/Helicopter": {
964
+ relative: string;
965
+ absolute: string;
966
+ assetType: string;
967
+ id: string;
968
+ };
969
+ "transportation-entur/Plane": {
970
+ relative: string;
971
+ absolute: string;
972
+ assetType: string;
973
+ id: string;
974
+ };
975
+ "transportation-entur/Scooter": {
976
+ relative: string;
977
+ absolute: string;
978
+ assetType: string;
979
+ id: string;
980
+ };
981
+ "transportation-entur/Subway": {
982
+ relative: string;
983
+ absolute: string;
984
+ assetType: string;
985
+ id: string;
986
+ };
987
+ "transportation-entur/Taxi": {
988
+ relative: string;
989
+ absolute: string;
990
+ assetType: string;
991
+ id: string;
992
+ };
993
+ "transportation-entur/Train": {
994
+ relative: string;
995
+ absolute: string;
996
+ assetType: string;
997
+ id: string;
998
+ };
999
+ "transportation-entur/Tram": {
1000
+ relative: string;
1001
+ absolute: string;
1002
+ assetType: string;
1003
+ id: string;
1004
+ };
1005
+ "transportation-entur/Walk": {
1006
+ relative: string;
1007
+ absolute: string;
1008
+ assetType: string;
1009
+ id: string;
1010
+ };
1011
+ "logo/logo": {
1012
+ relative: string;
1013
+ absolute: string;
1014
+ assetType: string;
1015
+ id: string;
1016
+ };
1017
+ "ticketing/Travelcard": {
1018
+ relative: string;
1019
+ absolute: string;
1020
+ assetType: string;
1021
+ id: string;
1022
+ };
1023
+ "ticketing/TravelcardOutlined": {
1024
+ relative: string;
1025
+ absolute: string;
1026
+ assetType: string;
1027
+ id: string;
1028
+ };
1029
+ "transportation/Boat": {
1030
+ relative: string;
1031
+ absolute: string;
1032
+ assetType: string;
1033
+ id: string;
1034
+ };
1035
+ "transportation/BoatFill": {
1036
+ relative: string;
1037
+ absolute: string;
1038
+ assetType: string;
1039
+ id: string;
1040
+ };
1041
+ "transportation/Bus": {
1042
+ relative: string;
1043
+ absolute: string;
1044
+ assetType: string;
1045
+ id: string;
1046
+ };
1047
+ "transportation/BusFill": {
1048
+ relative: string;
1049
+ absolute: string;
1050
+ assetType: string;
1051
+ id: string;
1052
+ };
1053
+ "transportation/Ferry": {
1054
+ relative: string;
1055
+ absolute: string;
1056
+ assetType: string;
1057
+ id: string;
1058
+ };
1059
+ "transportation/FerryFill": {
1060
+ relative: string;
1061
+ absolute: string;
1062
+ assetType: string;
1063
+ id: string;
1064
+ };
1065
+ };
1066
+ images: {
1067
+ ChangeTravelToken: {
1068
+ relative: string;
1069
+ absolute: string;
1070
+ assetType: string;
1071
+ colorType: string;
1072
+ darkable: boolean;
1073
+ id: string;
1074
+ };
1075
+ Beacons: {
1076
+ relative: string;
1077
+ absolute: string;
1078
+ assetType: string;
1079
+ colorType: string;
1080
+ darkable: boolean;
1081
+ id: string;
1082
+ };
1083
+ BestillMaxi: {
1084
+ relative: string;
1085
+ absolute: string;
1086
+ assetType: string;
1087
+ colorType: string;
1088
+ darkable: boolean;
1089
+ id: string;
1090
+ };
1091
+ Contact: {
1092
+ relative: string;
1093
+ absolute: string;
1094
+ assetType: string;
1095
+ colorType: string;
1096
+ darkable: boolean;
1097
+ id: string;
1098
+ };
1099
+ FlexibleTransport: {
1100
+ relative: string;
1101
+ absolute: string;
1102
+ assetType: string;
1103
+ colorType: string;
1104
+ darkable: boolean;
1105
+ id: string;
1106
+ };
1107
+ HoldingHands: {
1108
+ relative: string;
1109
+ absolute: string;
1110
+ assetType: string;
1111
+ colorType: string;
1112
+ darkable: boolean;
1113
+ id: string;
1114
+ };
1115
+ Map: {
1116
+ relative: string;
1117
+ absolute: string;
1118
+ assetType: string;
1119
+ colorType: string;
1120
+ darkable: boolean;
1121
+ id: string;
1122
+ };
1123
+ MyLocation: {
1124
+ relative: string;
1125
+ absolute: string;
1126
+ assetType: string;
1127
+ colorType: string;
1128
+ darkable: boolean;
1129
+ id: string;
1130
+ };
1131
+ PaymentCard: {
1132
+ relative: string;
1133
+ absolute: string;
1134
+ assetType: string;
1135
+ colorType: string;
1136
+ darkable: boolean;
1137
+ id: string;
1138
+ };
1139
+ PushNotification: {
1140
+ relative: string;
1141
+ absolute: string;
1142
+ assetType: string;
1143
+ colorType: string;
1144
+ darkable: boolean;
1145
+ id: string;
1146
+ };
1147
+ Ticket: {
1148
+ relative: string;
1149
+ absolute: string;
1150
+ assetType: string;
1151
+ colorType: string;
1152
+ darkable: boolean;
1153
+ id: string;
1154
+ };
1155
+ TicketTilted: {
1156
+ relative: string;
1157
+ absolute: string;
1158
+ assetType: string;
1159
+ colorType: string;
1160
+ darkable: boolean;
1161
+ id: string;
1162
+ };
1163
+ "bonus/BonusBag": {
1164
+ relative: string;
1165
+ absolute: string;
1166
+ assetType: string;
1167
+ colorType: string;
1168
+ darkable: boolean;
1169
+ id: string;
1170
+ };
1171
+ "bonus/BonusBagCarry": {
1172
+ relative: string;
1173
+ absolute: string;
1174
+ assetType: string;
1175
+ colorType: string;
1176
+ darkable: boolean;
1177
+ id: string;
1178
+ };
1179
+ "bonus/BonusBagHug": {
1180
+ relative: string;
1181
+ absolute: string;
1182
+ assetType: string;
1183
+ colorType: string;
1184
+ darkable: boolean;
1185
+ id: string;
1186
+ };
1187
+ "bonus/BonusMap": {
1188
+ relative: string;
1189
+ absolute: string;
1190
+ assetType: string;
1191
+ colorType: string;
1192
+ darkable: boolean;
1193
+ id: string;
1194
+ };
1195
+ "bonus/BonusTransaction": {
1196
+ relative: string;
1197
+ absolute: string;
1198
+ assetType: string;
1199
+ colorType: string;
1200
+ darkable: boolean;
1201
+ id: string;
1202
+ };
1203
+ "bonus/BonusTrashCan": {
1204
+ relative: string;
1205
+ absolute: string;
1206
+ assetType: string;
1207
+ colorType: string;
1208
+ darkable: boolean;
1209
+ id: string;
1210
+ };
1211
+ "mobility/BabyOnScooter": {
1212
+ relative: string;
1213
+ absolute: string;
1214
+ assetType: string;
1215
+ colorType: string;
1216
+ darkable: boolean;
1217
+ id: string;
1218
+ };
1219
+ "mobility/BundlingCarSharing": {
1220
+ relative: string;
1221
+ absolute: string;
1222
+ assetType: string;
1223
+ colorType: string;
1224
+ darkable: boolean;
1225
+ id: string;
1226
+ };
1227
+ "mobility/BundlingCarSharingActive": {
1228
+ relative: string;
1229
+ absolute: string;
1230
+ assetType: string;
1231
+ colorType: string;
1232
+ darkable: boolean;
1233
+ id: string;
1234
+ };
1235
+ "mobility/BundlingCityBike": {
1236
+ relative: string;
1237
+ absolute: string;
1238
+ assetType: string;
1239
+ colorType: string;
1240
+ darkable: boolean;
1241
+ id: string;
1242
+ };
1243
+ "mobility/BundlingCityBikeActive": {
1244
+ relative: string;
1245
+ absolute: string;
1246
+ assetType: string;
1247
+ colorType: string;
1248
+ darkable: boolean;
1249
+ id: string;
1250
+ };
1251
+ "mobility/CityBike": {
1252
+ relative: string;
1253
+ absolute: string;
1254
+ assetType: string;
1255
+ colorType: string;
1256
+ darkable: boolean;
1257
+ id: string;
1258
+ };
1259
+ "mobility/ParkAndRide": {
1260
+ relative: string;
1261
+ absolute: string;
1262
+ assetType: string;
1263
+ colorType: string;
1264
+ darkable: boolean;
1265
+ id: string;
1266
+ };
1267
+ "mobility/Scooter": {
1268
+ relative: string;
1269
+ absolute: string;
1270
+ assetType: string;
1271
+ colorType: string;
1272
+ darkable: boolean;
1273
+ id: string;
1274
+ };
1275
+ "smart-park-and-ride/CarFront": {
1276
+ relative: string;
1277
+ absolute: string;
1278
+ assetType: string;
1279
+ colorType: string;
1280
+ darkable: boolean;
1281
+ id: string;
1282
+ };
1283
+ "smart-park-and-ride/CarRegister": {
1284
+ relative: string;
1285
+ absolute: string;
1286
+ assetType: string;
1287
+ colorType: string;
1288
+ darkable: boolean;
1289
+ id: string;
1290
+ };
1291
+ "smart-park-and-ride/CarValidTicket": {
1292
+ relative: string;
1293
+ absolute: string;
1294
+ assetType: string;
1295
+ colorType: string;
1296
+ darkable: boolean;
1297
+ id: string;
1298
+ };
1299
+ favicon: {
1300
+ relative: string;
1301
+ absolute: string;
1302
+ assetType: string;
1303
+ colorType: string;
1304
+ darkable: boolean;
1305
+ id: string;
1306
+ };
1307
+ Crash: {
1308
+ relative: string;
1309
+ absolute: string;
1310
+ assetType: string;
1311
+ colorType: string;
1312
+ darkable: boolean;
1313
+ id: string;
1314
+ };
1315
+ DashboardBackground: {
1316
+ relative: string;
1317
+ absolute: string;
1318
+ assetType: string;
1319
+ colorType: string;
1320
+ darkable: boolean;
1321
+ id: string;
1322
+ };
1323
+ FilterOnboarding: {
1324
+ relative: string;
1325
+ absolute: string;
1326
+ assetType: string;
1327
+ colorType: string;
1328
+ darkable: boolean;
1329
+ id: string;
1330
+ };
1331
+ Onboarding4: {
1332
+ relative: string;
1333
+ absolute: string;
1334
+ assetType: string;
1335
+ colorType: string;
1336
+ darkable: boolean;
1337
+ id: string;
1338
+ };
1339
+ Onboarding5: {
1340
+ relative: string;
1341
+ absolute: string;
1342
+ assetType: string;
1343
+ colorType: string;
1344
+ darkable: boolean;
1345
+ id: string;
1346
+ };
1347
+ Pilot: {
1348
+ relative: string;
1349
+ absolute: string;
1350
+ assetType: string;
1351
+ colorType: string;
1352
+ darkable: boolean;
1353
+ id: string;
1354
+ };
1355
+ ScooterOnboarding: {
1356
+ relative: string;
1357
+ absolute: string;
1358
+ assetType: string;
1359
+ colorType: string;
1360
+ darkable: boolean;
1361
+ id: string;
1362
+ };
1363
+ TicketSplash: {
1364
+ relative: string;
1365
+ absolute: string;
1366
+ assetType: string;
1367
+ colorType: string;
1368
+ darkable: boolean;
1369
+ id: string;
1370
+ };
1371
+ "logo/RichLogo": {
1372
+ relative: string;
1373
+ absolute: string;
1374
+ assetType: string;
1375
+ colorType: string;
1376
+ darkable: boolean;
1377
+ id: string;
1378
+ };
1379
+ "BackgroundIllustration-OnBehalfOf": {
1380
+ relative: string;
1381
+ absolute: string;
1382
+ assetType: string;
1383
+ colorType: string;
1384
+ darkable: boolean;
1385
+ id: string;
1386
+ };
1387
+ BackgroundIllustration: {
1388
+ relative: string;
1389
+ absolute: string;
1390
+ assetType: string;
1391
+ colorType: string;
1392
+ darkable: boolean;
1393
+ id: string;
1394
+ };
1395
+ CrashSmall: {
1396
+ relative: string;
1397
+ absolute: string;
1398
+ assetType: string;
1399
+ colorType: string;
1400
+ darkable: boolean;
1401
+ id: string;
1402
+ };
1403
+ EmptyIllustration: {
1404
+ relative: string;
1405
+ absolute: string;
1406
+ assetType: string;
1407
+ colorType: string;
1408
+ darkable: boolean;
1409
+ id: string;
1410
+ };
1411
+ NoFavouriteDeparture: {
1412
+ relative: string;
1413
+ absolute: string;
1414
+ assetType: string;
1415
+ colorType: string;
1416
+ darkable: boolean;
1417
+ id: string;
1418
+ };
1419
+ OnBehalfOf: {
1420
+ relative: string;
1421
+ absolute: string;
1422
+ assetType: string;
1423
+ colorType: string;
1424
+ darkable: boolean;
1425
+ id: string;
1426
+ };
1427
+ ProfileCardLoggedIn: {
1428
+ relative: string;
1429
+ absolute: string;
1430
+ assetType: string;
1431
+ colorType: string;
1432
+ darkable: boolean;
1433
+ id: string;
1434
+ };
1435
+ ProfileCardLoggedOut: {
1436
+ relative: string;
1437
+ absolute: string;
1438
+ assetType: string;
1439
+ colorType: string;
1440
+ darkable: boolean;
1441
+ id: string;
1442
+ };
1443
+ TravelPlanning: {
1444
+ relative: string;
1445
+ absolute: string;
1446
+ assetType: string;
1447
+ colorType: string;
1448
+ darkable: boolean;
1449
+ id: string;
1450
+ };
1451
+ login: {
1452
+ relative: string;
1453
+ absolute: string;
1454
+ assetType: string;
1455
+ colorType: string;
1456
+ darkable: boolean;
1457
+ id: string;
1458
+ };
1459
+ };
1460
+ colorIcons: {
1461
+ "actions/CloseCircle": {
1462
+ relative: string;
1463
+ absolute: string;
1464
+ assetType: string;
1465
+ colorType: string;
1466
+ darkable: boolean;
1467
+ id: string;
1468
+ };
1469
+ "input/CheckboxChecked": {
1470
+ relative: string;
1471
+ absolute: string;
1472
+ assetType: string;
1473
+ colorType: string;
1474
+ darkable: boolean;
1475
+ id: string;
1476
+ };
1477
+ "input/CheckboxUnchecked": {
1478
+ relative: string;
1479
+ absolute: string;
1480
+ assetType: string;
1481
+ colorType: string;
1482
+ darkable: boolean;
1483
+ id: string;
1484
+ };
1485
+ "input/RadiobuttonChecked": {
1486
+ relative: string;
1487
+ absolute: string;
1488
+ assetType: string;
1489
+ colorType: string;
1490
+ darkable: boolean;
1491
+ id: string;
1492
+ };
1493
+ "input/RadiobuttonUnchecked": {
1494
+ relative: string;
1495
+ absolute: string;
1496
+ assetType: string;
1497
+ colorType: string;
1498
+ darkable: boolean;
1499
+ id: string;
1500
+ };
1501
+ "map/Map": {
1502
+ relative: string;
1503
+ absolute: string;
1504
+ assetType: string;
1505
+ colorType: string;
1506
+ darkable: boolean;
1507
+ id: string;
1508
+ };
1509
+ "map/MapPin": {
1510
+ relative: string;
1511
+ absolute: string;
1512
+ assetType: string;
1513
+ colorType: string;
1514
+ darkable: boolean;
1515
+ id: string;
1516
+ };
1517
+ "map/Pin": {
1518
+ relative: string;
1519
+ absolute: string;
1520
+ assetType: string;
1521
+ colorType: string;
1522
+ darkable: boolean;
1523
+ id: string;
1524
+ };
1525
+ "map/PinInvalid": {
1526
+ relative: string;
1527
+ absolute: string;
1528
+ assetType: string;
1529
+ colorType: string;
1530
+ darkable: boolean;
1531
+ id: string;
1532
+ };
1533
+ "map/PinValid": {
1534
+ relative: string;
1535
+ absolute: string;
1536
+ assetType: string;
1537
+ colorType: string;
1538
+ darkable: boolean;
1539
+ id: string;
1540
+ };
1541
+ "ticketing/Amex": {
1542
+ relative: string;
1543
+ absolute: string;
1544
+ assetType: string;
1545
+ colorType: string;
1546
+ darkable: boolean;
1547
+ id: string;
1548
+ };
1549
+ "ticketing/Klippekort": {
1550
+ relative: string;
1551
+ absolute: string;
1552
+ assetType: string;
1553
+ colorType: string;
1554
+ darkable: boolean;
1555
+ id: string;
1556
+ };
1557
+ "ticketing/MasterCard": {
1558
+ relative: string;
1559
+ absolute: string;
1560
+ assetType: string;
1561
+ colorType: string;
1562
+ darkable: boolean;
1563
+ id: string;
1564
+ };
1565
+ "ticketing/Seats": {
1566
+ relative: string;
1567
+ absolute: string;
1568
+ assetType: string;
1569
+ colorType: string;
1570
+ darkable: boolean;
1571
+ id: string;
1572
+ };
1573
+ "ticketing/Vipps": {
1574
+ relative: string;
1575
+ absolute: string;
1576
+ assetType: string;
1577
+ colorType: string;
1578
+ darkable: boolean;
1579
+ id: string;
1580
+ };
1581
+ "ticketing/VippsLogo": {
1582
+ relative: string;
1583
+ absolute: string;
1584
+ assetType: string;
1585
+ colorType: string;
1586
+ darkable: boolean;
1587
+ id: string;
1588
+ };
1589
+ "ticketing/Visa": {
1590
+ relative: string;
1591
+ absolute: string;
1592
+ assetType: string;
1593
+ colorType: string;
1594
+ darkable: boolean;
1595
+ id: string;
1596
+ };
1597
+ "status/Realtime": {
1598
+ relative: string;
1599
+ absolute: string;
1600
+ assetType: string;
1601
+ colorType: string;
1602
+ darkable: boolean;
1603
+ id: string;
1604
+ };
1605
+ "status/Spinner": {
1606
+ relative: string;
1607
+ absolute: string;
1608
+ assetType: string;
1609
+ colorType: string;
1610
+ darkable: boolean;
1611
+ id: string;
1612
+ };
1613
+ "vehicles/Parking": {
1614
+ relative: string;
1615
+ absolute: string;
1616
+ assetType: string;
1617
+ colorType: string;
1618
+ darkable: boolean;
1619
+ id: string;
1620
+ };
1621
+ favicon: {
1622
+ relative: string;
1623
+ absolute: string;
1624
+ assetType: string;
1625
+ colorType: string;
1626
+ darkable: boolean;
1627
+ id: string;
1628
+ };
1629
+ "status/Check": {
1630
+ relative: string;
1631
+ absolute: string;
1632
+ assetType: string;
1633
+ colorType: string;
1634
+ darkable: boolean;
1635
+ id: string;
1636
+ };
1637
+ "status/Error": {
1638
+ relative: string;
1639
+ absolute: string;
1640
+ assetType: string;
1641
+ colorType: string;
1642
+ darkable: boolean;
1643
+ id: string;
1644
+ };
1645
+ "status/Info": {
1646
+ relative: string;
1647
+ absolute: string;
1648
+ assetType: string;
1649
+ colorType: string;
1650
+ darkable: boolean;
1651
+ id: string;
1652
+ };
1653
+ "status/Warning": {
1654
+ relative: string;
1655
+ absolute: string;
1656
+ assetType: string;
1657
+ colorType: string;
1658
+ darkable: boolean;
1659
+ id: string;
1660
+ };
1661
+ };
1662
+ illustration: {
1663
+ Psst: {
1664
+ relative: string;
1665
+ absolute: string;
1666
+ assetType: string;
1667
+ colorType: string;
1668
+ darkable: boolean;
1669
+ id: string;
1670
+ };
1671
+ "badge/android": {
1672
+ relative: string;
1673
+ absolute: string;
1674
+ assetType: string;
1675
+ colorType: string;
1676
+ darkable: boolean;
1677
+ id: string;
1678
+ };
1679
+ "badge/ios": {
1680
+ relative: string;
1681
+ absolute: string;
1682
+ assetType: string;
1683
+ colorType: string;
1684
+ darkable: boolean;
1685
+ id: string;
1686
+ };
1687
+ "contact/Contact": {
1688
+ relative: string;
1689
+ absolute: string;
1690
+ assetType: string;
1691
+ colorType: string;
1692
+ darkable: boolean;
1693
+ id: string;
1694
+ };
1695
+ "ticket-type/Boat": {
1696
+ relative: string;
1697
+ absolute: string;
1698
+ assetType: string;
1699
+ colorType: string;
1700
+ darkable: boolean;
1701
+ id: string;
1702
+ };
1703
+ "ticket-type/Carnet": {
1704
+ relative: string;
1705
+ absolute: string;
1706
+ assetType: string;
1707
+ colorType: string;
1708
+ darkable: boolean;
1709
+ id: string;
1710
+ };
1711
+ "ticket-type/H24": {
1712
+ relative: string;
1713
+ absolute: string;
1714
+ assetType: string;
1715
+ colorType: string;
1716
+ darkable: boolean;
1717
+ id: string;
1718
+ };
1719
+ "ticket-type/Night": {
1720
+ relative: string;
1721
+ absolute: string;
1722
+ assetType: string;
1723
+ colorType: string;
1724
+ darkable: boolean;
1725
+ id: string;
1726
+ };
1727
+ "ticket-type/Period": {
1728
+ relative: string;
1729
+ absolute: string;
1730
+ assetType: string;
1731
+ colorType: string;
1732
+ darkable: boolean;
1733
+ id: string;
1734
+ };
1735
+ "ticket-type/Single": {
1736
+ relative: string;
1737
+ absolute: string;
1738
+ assetType: string;
1739
+ colorType: string;
1740
+ darkable: boolean;
1741
+ id: string;
1742
+ };
1743
+ "ticket-type/Summer": {
1744
+ relative: string;
1745
+ absolute: string;
1746
+ assetType: string;
1747
+ colorType: string;
1748
+ darkable: boolean;
1749
+ id: string;
1750
+ };
1751
+ "ticket-type/Youth": {
1752
+ relative: string;
1753
+ absolute: string;
1754
+ assetType: string;
1755
+ colorType: string;
1756
+ darkable: boolean;
1757
+ id: string;
1758
+ };
1759
+ "token/mobile/Phone": {
1760
+ relative: string;
1761
+ absolute: string;
1762
+ assetType: string;
1763
+ colorType: string;
1764
+ darkable: boolean;
1765
+ id: string;
1766
+ };
1767
+ "token/travelcard/Travelcard": {
1768
+ relative: string;
1769
+ absolute: string;
1770
+ assetType: string;
1771
+ colorType: string;
1772
+ darkable: boolean;
1773
+ id: string;
1774
+ };
1775
+ };
1776
+ };
1777
+ export type Icons = typeof icons;
1778
+ export type ColorType = {
1779
+ relative: string;
1780
+ absolute: string;
1781
+ assetType: 'colors';
1782
+ colorType: 'illustrations' | 'images';
1783
+ darkable: boolean;
1784
+ id: string;
1785
+ };
1786
+ export type MonoType = {
1787
+ relative: string;
1788
+ absolute: string;
1789
+ assetType: 'mono';
1790
+ id: string;
1791
+ };
1792
+ export type IconType = ColorType | MonoType;
1793
+ export type MonoIcons = keyof Icons['mono'];
1794
+ export type Images = keyof Icons['images'];
1795
+ export type ColorIcons = keyof Icons['colorIcons'];
1796
+ export type Illustrations = keyof Icons['illustration'];
1797
+ //# sourceMappingURL=generated-icons.d.ts.map