hof 21.0.0-instrumentation-beta.0 → 21.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (115) hide show
  1. package/.github/workflows/automate-publish.yml +1 -1
  2. package/.github/workflows/automate-tag.yml +4 -4
  3. package/.nyc_output/39365c14-40b7-4634-b733-940b72a11984.json +1 -0
  4. package/.nyc_output/processinfo/39365c14-40b7-4634-b733-940b72a11984.json +1 -0
  5. package/.nyc_output/processinfo/index.json +1 -1
  6. package/CHANGELOG.md +21 -0
  7. package/README.md +340 -256
  8. package/build/tasks/sass/index.js +3 -1
  9. package/build/tasks/watch/index.js +1 -1
  10. package/codeReviewChecklist.md +22 -0
  11. package/components/combine-and-loop-fields/Readme.md +42 -0
  12. package/components/combine-and-loop-fields/index.js +156 -0
  13. package/components/date/index.js +3 -1
  14. package/components/date/templates/date.html +15 -12
  15. package/components/homeoffice-countries/index.js +22 -0
  16. package/components/index.js +2 -0
  17. package/components/notify/notify.js +2 -2
  18. package/components/summary/index.js +3 -2
  19. package/config/builder-defaults.js +3 -1
  20. package/config/component-defaults.js +13 -0
  21. package/config/hof-defaults.js +8 -0
  22. package/controller/controller.js +57 -1
  23. package/controller/formatting/formatters.js +12 -0
  24. package/controller/validation/index.js +2 -1
  25. package/controller/validation/validators.js +4 -0
  26. package/frontend/govuk-template/build/config.js +2 -2
  27. package/frontend/govuk-template/build/govuk_template.html +102 -0
  28. package/frontend/govuk-template/build/index.js +2 -2
  29. package/frontend/govuk-template/govuk_template_generated.html +102 -0
  30. package/frontend/govuk-template/index.js +4 -4
  31. package/frontend/template-mixins/mixins/template-mixins.js +40 -11
  32. package/frontend/template-mixins/partials/forms/checkbox-group.html +47 -0
  33. package/frontend/template-mixins/partials/forms/checkbox.html +9 -4
  34. package/frontend/template-mixins/partials/forms/input-submit.html +1 -1
  35. package/frontend/template-mixins/partials/forms/input-text-date.html +37 -0
  36. package/frontend/template-mixins/partials/forms/input-text-group.html +15 -10
  37. package/frontend/template-mixins/partials/forms/option-group.html +42 -26
  38. package/frontend/template-mixins/partials/forms/select.html +10 -5
  39. package/frontend/template-mixins/partials/forms/textarea-group.html +37 -23
  40. package/frontend/template-mixins/partials/mixins/panel.html +3 -4
  41. package/frontend/template-partials/views/accessibility.html +4 -4
  42. package/frontend/template-partials/views/cookies.html +1 -1
  43. package/frontend/template-partials/views/layout.html +24 -17
  44. package/frontend/template-partials/views/partials/back.html +1 -1
  45. package/frontend/template-partials/views/partials/bullet-list.html +1 -1
  46. package/frontend/template-partials/views/partials/confirmation-alert.html +4 -3
  47. package/frontend/template-partials/views/partials/continue.html +1 -1
  48. package/frontend/template-partials/views/partials/cookie-banner.html +27 -24
  49. package/frontend/template-partials/views/partials/cookie-settings-radio.html +6 -6
  50. package/frontend/template-partials/views/partials/external-link.html +1 -1
  51. package/frontend/template-partials/views/partials/form.html +2 -1
  52. package/frontend/template-partials/views/partials/gatag.html +0 -1
  53. package/frontend/template-partials/views/partials/head.html +23 -0
  54. package/frontend/template-partials/views/partials/maincontent-left.html +4 -4
  55. package/frontend/template-partials/views/partials/navigation.html +7 -6
  56. package/frontend/template-partials/views/partials/session-cookies-table.html +6 -6
  57. package/frontend/template-partials/views/partials/summary-table-row.html +2 -2
  58. package/frontend/template-partials/views/partials/table.html +7 -7
  59. package/frontend/template-partials/views/partials/validation-list.html +2 -2
  60. package/frontend/template-partials/views/partials/validation-summary.html +14 -13
  61. package/frontend/template-partials/views/partials/warn.html +7 -0
  62. package/frontend/template-partials/views/session-timeout.html +3 -2
  63. package/frontend/themes/gov-uk/client-js/cookieSettings.js +1 -1
  64. package/frontend/themes/gov-uk/client-js/govuk-cookies.js +121 -0
  65. package/frontend/themes/gov-uk/client-js/index.js +6 -1
  66. package/frontend/themes/gov-uk/client-js/skip-to-main.js +19 -0
  67. package/frontend/themes/gov-uk/styles/_cookie-banner.scss +51 -1
  68. package/frontend/themes/gov-uk/styles/govuk.scss +4 -0
  69. package/frontend/themes/gov-uk/styles/modules/_validation.scss +5 -5
  70. package/frontend/toolkit/assets/javascript/character-count.js +4 -4
  71. package/frontend/toolkit/assets/javascript/progressive-reveal.js +3 -1
  72. package/frontend/toolkit/assets/javascript/validation.js +5 -1
  73. package/frontend/toolkit/assets/stylesheets/modules/_validation.scss +3 -3
  74. package/index.js +15 -2
  75. package/lib/ga-tag.js +33 -7
  76. package/lib/settings.js +18 -2
  77. package/middleware/cookies.js +2 -0
  78. package/middleware/errors.js +2 -3
  79. package/middleware/not-found.js +0 -3
  80. package/middleware/rate-limiter.js +1 -0
  81. package/model/apis/axios-settings.js +21 -0
  82. package/model/apis/html-to-pdf-converter.js +10 -8
  83. package/model/index.js +102 -87
  84. package/package.json +18 -17
  85. package/pull_request.md +16 -0
  86. package/sandbox/README.md +3 -3
  87. package/sandbox/apps/sandbox/fields.js +33 -11
  88. package/sandbox/apps/sandbox/index.js +4 -0
  89. package/sandbox/apps/sandbox/sections/summary-data-sections.js +3 -0
  90. package/sandbox/apps/sandbox/translations/en/default.json +220 -0
  91. package/sandbox/apps/sandbox/translations/src/en/fields.json +11 -4
  92. package/sandbox/apps/sandbox/translations/src/en/journey.json +4 -1
  93. package/sandbox/apps/sandbox/translations/src/en/pages.json +7 -25
  94. package/sandbox/apps/sandbox/translations/src/en/validation.json +5 -1
  95. package/sandbox/assets/js/index.js +1 -1
  96. package/sandbox/assets/scss/app.scss +16 -16
  97. package/sandbox/package.json +7 -2
  98. package/sandbox/public/css/app.css +9632 -0
  99. package/sandbox/public/images/icons/icon-caret-left.png +0 -0
  100. package/sandbox/public/images/icons/icon-complete.png +0 -0
  101. package/sandbox/public/images/icons/icon-cross-remove-sign.png +0 -0
  102. package/sandbox/public/js/bundle.js +46721 -0
  103. package/sandbox/server.js +2 -1
  104. package/sandbox/yarn.lock +249 -2
  105. package/wizard/index.js +0 -13
  106. package/wizard/middleware/check-progress.js +36 -1
  107. package/.nyc_output/4d5a4574-78fc-4fcb-9412-3658f6ce33ff.json +0 -1
  108. package/.nyc_output/processinfo/4d5a4574-78fc-4fcb-9412-3658f6ce33ff.json +0 -1
  109. package/frontend/govuk-template/govuk_template.html +0 -109
  110. package/frontend/themes/gov-uk/views/partials/form.html +0 -9
  111. package/frontend/themes/gov-uk/views/partials/forms/option-group.html +0 -28
  112. package/frontend/themes/gov-uk/views/partials/mixins/panel.html +0 -3
  113. package/frontend/themes/gov-uk/views/partials/validation-summary.html +0 -24
  114. package/middleware/monitor.js +0 -20
  115. package/sandbox/apps/sandbox/views/confirmation.html +0 -15
@@ -0,0 +1 @@
1
+ {"parent":null,"pid":73921,"argv":["/Users/user/.nvm/versions/node/v20.9.0/bin/node","/Users/user/Documents/HO/HOF/hof/node_modules/.bin/_mocha","test/**/*.spec.js","sandbox/test/**/*.spec.js"],"execArgv":[],"cwd":"/Users/user/Documents/HO/HOF/hof","time":1721154214074,"ppid":73917,"coverageFilename":"/Users/user/Documents/HO/HOF/hof/.nyc_output/39365c14-40b7-4634-b733-940b72a11984.json","externalId":"","uuid":"39365c14-40b7-4634-b733-940b72a11984","files":["/Users/user/Documents/HO/HOF/hof/model/index.js","/Users/user/Documents/HO/HOF/hof/components/index.js","/Users/user/Documents/HO/HOF/hof/components/address-lookup/index.js","/Users/user/Documents/HO/HOF/hof/components/address-lookup/default-model.js","/Users/user/Documents/HO/HOF/hof/components/address-lookup/defaults.js","/Users/user/Documents/HO/HOF/hof/components/clear-session/index.js","/Users/user/Documents/HO/HOF/hof/components/combine-and-loop-fields/index.js","/Users/user/Documents/HO/HOF/hof/components/date/index.js","/Users/user/Documents/HO/HOF/hof/components/date/fields.js","/Users/user/Documents/HO/HOF/hof/components/emailer/index.js","/Users/user/Documents/HO/HOF/hof/components/emailer/email-service.js","/Users/user/Documents/HO/HOF/hof/components/emailer/emailer.js","/Users/user/Documents/HO/HOF/hof/components/emailer/transports/index.js","/Users/user/Documents/HO/HOF/hof/components/emailer/transports/smtp.js","/Users/user/Documents/HO/HOF/hof/components/emailer/transports/ses.js","/Users/user/Documents/HO/HOF/hof/components/emailer/transports/stub.js","/Users/user/Documents/HO/HOF/hof/components/emailer/transports/debug.js","/Users/user/Documents/HO/HOF/hof/components/homeoffice-countries/index.js","/Users/user/Documents/HO/HOF/hof/config/component-defaults.js","/Users/user/Documents/HO/HOF/hof/components/notify/index.js","/Users/user/Documents/HO/HOF/hof/components/notify/notify.js","/Users/user/Documents/HO/HOF/hof/components/summary/index.js","/Users/user/Documents/HO/HOF/hof/config/rate-limits.js","/Users/user/Documents/HO/HOF/hof/middleware/rate-limiter.js","/Users/user/Documents/HO/HOF/hof/config/hof-defaults.js","/Users/user/Documents/HO/HOF/hof/controller/base-controller.js","/Users/user/Documents/HO/HOF/hof/controller/formatting/index.js","/Users/user/Documents/HO/HOF/hof/controller/validation/index.js","/Users/user/Documents/HO/HOF/hof/controller/validation/validators.js","/Users/user/Documents/HO/HOF/hof/controller/validation/email.js","/Users/user/Documents/HO/HOF/hof/controller/validation-error.js","/Users/user/Documents/HO/HOF/hof/utilities/index.js","/Users/user/Documents/HO/HOF/hof/utilities/autofill/index.js","/Users/user/Documents/HO/HOF/hof/utilities/autofill/inputs.js","/Users/user/Documents/HO/HOF/hof/utilities/test-data/index.js","/Users/user/Documents/HO/HOF/hof/utilities/countries.js","/Users/user/Documents/HO/HOF/hof/utilities/helpers/index.js","/Users/user/Documents/HO/HOF/hof/utilities/reqres/index.js","/Users/user/Documents/HO/HOF/hof/config/sanitisation-rules.js","/Users/user/Documents/HO/HOF/hof/controller/formatting/formatters.js","/Users/user/Documents/HO/HOF/hof/controller/index.js","/Users/user/Documents/HO/HOF/hof/controller/behaviour-session.js","/Users/user/Documents/HO/HOF/hof/controller/behaviour-hooks.js","/Users/user/Documents/HO/HOF/hof/controller/controller.js","/Users/user/Documents/HO/HOF/hof/sandbox/apps/sandbox/behaviours/country-select.js","/Users/user/Documents/HO/HOF/hof/frontend/template-mixins/mixins/index.js","/Users/user/Documents/HO/HOF/hof/frontend/template-mixins/mixins/template-mixins.js","/Users/user/Documents/HO/HOF/hof/frontend/template-mixins/mixins/render.js","/Users/user/Documents/HO/HOF/hof/frontend/template-mixins/mixins/helpers.js","/Users/user/Documents/HO/HOF/hof/index.js","/Users/user/Documents/HO/HOF/hof/frontend/index.js","/Users/user/Documents/HO/HOF/hof/frontend/govuk-template/index.js","/Users/user/Documents/HO/HOF/hof/frontend/govuk-template/build/index.js","/Users/user/Documents/HO/HOF/hof/frontend/govuk-template/build/config.js","/Users/user/Documents/HO/HOF/hof/frontend/template-partials/index.js","/Users/user/Documents/HO/HOF/hof/frontend/template-partials/translations/index.js","/Users/user/Documents/HO/HOF/hof/frontend/themes/index.js","/Users/user/Documents/HO/HOF/hof/frontend/themes/gov-uk/index.js","/Users/user/Documents/HO/HOF/hof/frontend/toolkit/index.js","/Users/user/Documents/HO/HOF/hof/frontend/toolkit/assets/javascript/helpers.js","/Users/user/Documents/HO/HOF/hof/frontend/toolkit/assets/javascript/form-focus.js","/Users/user/Documents/HO/HOF/hof/frontend/toolkit/assets/javascript/progressive-reveal.js","/Users/user/Documents/HO/HOF/hof/frontend/toolkit/assets/javascript/validation.js","/Users/user/Documents/HO/HOF/hof/frontend/toolkit/assets/javascript/character-count.js","/Users/user/Documents/HO/HOF/hof/middleware/index.js","/Users/user/Documents/HO/HOF/hof/middleware/cookies.js","/Users/user/Documents/HO/HOF/hof/middleware/errors.js","/Users/user/Documents/HO/HOF/hof/middleware/not-found.js","/Users/user/Documents/HO/HOF/hof/middleware/deep-translate.js","/Users/user/Documents/HO/HOF/hof/lib/markdown.js","/Users/user/Documents/HO/HOF/hof/lib/router.js","/Users/user/Documents/HO/HOF/hof/wizard/index.js","/Users/user/Documents/HO/HOF/hof/wizard/behaviours/index.js","/Users/user/Documents/HO/HOF/hof/wizard/behaviours/complete.js","/Users/user/Documents/HO/HOF/hof/wizard/util/constants.js","/Users/user/Documents/HO/HOF/hof/lib/helpers.js","/Users/user/Documents/HO/HOF/hof/lib/health.js","/Users/user/Documents/HO/HOF/hof/lib/serve-static.js","/Users/user/Documents/HO/HOF/hof/lib/ga-tag.js","/Users/user/Documents/HO/HOF/hof/lib/sessions.js","/Users/user/Documents/HO/HOF/hof/lib/settings.js","/Users/user/Documents/HO/HOF/hof/lib/logger.js","/Users/user/Documents/HO/HOF/hof/build/index.js","/Users/user/Documents/HO/HOF/hof/config/builder-defaults.js","/Users/user/Documents/HO/HOF/hof/transpiler/index.js","/Users/user/Documents/HO/HOF/hof/transpiler/lib/compile.js","/Users/user/Documents/HO/HOF/hof/transpiler/lib/build.js","/Users/user/Documents/HO/HOF/hof/transpiler/lib/expand-dirs.js","/Users/user/Documents/HO/HOF/hof/transpiler/lib/aggregate.js","/Users/user/Documents/HO/HOF/hof/transpiler/lib/write-files.js","/Users/user/Documents/HO/HOF/hof/model/apis/index.js","/Users/user/Documents/HO/HOF/hof/model/apis/html-to-pdf-converter.js","/Users/user/Documents/HO/HOF/hof/wizard/model.js","/Users/user/Documents/HO/HOF/hof/wizard/middleware/back-links.js","/Users/user/Documents/HO/HOF/hof/wizard/util/helpers.js","/Users/user/Documents/HO/HOF/hof/wizard/middleware/check-complete.js","/Users/user/Documents/HO/HOF/hof/wizard/middleware/check-progress.js","/Users/user/Documents/HO/HOF/hof/wizard/middleware/check-session.js","/Users/user/Documents/HO/HOF/hof/wizard/middleware/csrf.js","/Users/user/Documents/HO/HOF/hof/sandbox/test/_unit/example_app/sections/summary-data-sections.spec.js","/Users/user/Documents/HO/HOF/hof/sandbox/apps/sandbox/sections/summary-data-sections.js","/Users/user/Documents/HO/HOF/hof/sandbox/apps/sandbox/lib/staticAppealStages.js","/Users/user/Documents/HO/HOF/hof/sandbox/apps/sandbox/fields.js","/Users/user/Documents/HO/HOF/hof/sandbox/test/helpers/utilities.js","/Users/user/Documents/HO/HOF/hof/sandbox/apps/sandbox/behaviours/international-number.js","/Users/user/Documents/HO/HOF/hof/lib/encryption.js","/Users/user/Documents/HO/HOF/hof/wizard/middleware/session.js","/Users/user/Documents/HO/HOF/hof/wizard/middleware/session-model.js"]}
@@ -1 +1 @@
1
- {"processes":{"4d5a4574-78fc-4fcb-9412-3658f6ce33ff":{"parent":null,"children":[]}},"files":{"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/model/index.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/components/index.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/components/address-lookup/index.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/components/address-lookup/default-model.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/components/address-lookup/defaults.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/components/clear-session/index.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/components/date/index.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/components/date/fields.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/components/emailer/index.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/components/emailer/email-service.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/components/emailer/emailer.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/components/emailer/transports/index.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/components/emailer/transports/smtp.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/components/emailer/transports/ses.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/components/emailer/transports/stub.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/components/emailer/transports/debug.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/components/notify/index.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/components/notify/notify.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/components/summary/index.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/config/rate-limits.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/middleware/rate-limiter.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/config/hof-defaults.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/controller/base-controller.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/controller/formatting/index.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/controller/validation/index.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/controller/validation/validators.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/controller/validation/email.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/controller/validation-error.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/utilities/index.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/utilities/autofill/index.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/utilities/autofill/inputs.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/utilities/test-data/index.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/utilities/countries.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/utilities/helpers/index.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/utilities/reqres/index.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/config/sanitisation-rules.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/controller/formatting/formatters.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/controller/index.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/controller/behaviour-session.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/controller/behaviour-hooks.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/controller/controller.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/sandbox/apps/sandbox/behaviours/country-select.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/frontend/template-mixins/mixins/index.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/frontend/template-mixins/mixins/template-mixins.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/frontend/template-mixins/mixins/render.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/frontend/template-mixins/mixins/helpers.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/index.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/frontend/index.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/frontend/govuk-template/index.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/frontend/govuk-template/build/index.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/frontend/govuk-template/build/config.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/frontend/template-partials/index.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/frontend/template-partials/translations/index.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/frontend/themes/index.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/frontend/themes/gov-uk/index.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/frontend/toolkit/index.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/frontend/toolkit/assets/javascript/helpers.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/frontend/toolkit/assets/javascript/form-focus.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/frontend/toolkit/assets/javascript/progressive-reveal.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/frontend/toolkit/assets/javascript/validation.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/frontend/toolkit/assets/javascript/character-count.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/middleware/index.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/middleware/cookies.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/middleware/errors.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/middleware/monitor.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/middleware/not-found.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/middleware/deep-translate.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/lib/markdown.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/lib/router.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/wizard/index.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/wizard/behaviours/index.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/wizard/behaviours/complete.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/wizard/util/constants.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/lib/helpers.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/lib/health.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/lib/serve-static.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/lib/ga-tag.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/lib/sessions.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/lib/settings.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/lib/logger.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/build/index.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/config/builder-defaults.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/transpiler/index.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/transpiler/lib/compile.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/transpiler/lib/build.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/transpiler/lib/expand-dirs.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/transpiler/lib/aggregate.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/transpiler/lib/write-files.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/model/apis/index.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/model/apis/html-to-pdf-converter.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/wizard/model.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/wizard/middleware/back-links.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/wizard/util/helpers.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/wizard/middleware/check-complete.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/wizard/middleware/check-progress.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/wizard/middleware/check-session.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/wizard/middleware/csrf.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/sandbox/test/_unit/example_app/sections/summary-data-sections.spec.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/sandbox/apps/sandbox/sections/summary-data-sections.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/sandbox/apps/sandbox/lib/staticAppealStages.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/sandbox/apps/sandbox/fields.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/sandbox/test/helpers/utilities.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/sandbox/apps/sandbox/behaviours/international-number.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/lib/encryption.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"],"/Users/mohameduwais/UKHomeOffice/instrumentation/hof/wizard/middleware/session.js":["4d5a4574-78fc-4fcb-9412-3658f6ce33ff"]},"externalIds":{}}
1
+ {"processes":{"39365c14-40b7-4634-b733-940b72a11984":{"parent":null,"children":[]}},"files":{"/Users/user/Documents/HO/HOF/hof/model/index.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/components/index.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/components/address-lookup/index.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/components/address-lookup/default-model.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/components/address-lookup/defaults.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/components/clear-session/index.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/components/combine-and-loop-fields/index.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/components/date/index.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/components/date/fields.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/components/emailer/index.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/components/emailer/email-service.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/components/emailer/emailer.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/components/emailer/transports/index.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/components/emailer/transports/smtp.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/components/emailer/transports/ses.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/components/emailer/transports/stub.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/components/emailer/transports/debug.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/components/homeoffice-countries/index.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/config/component-defaults.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/components/notify/index.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/components/notify/notify.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/components/summary/index.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/config/rate-limits.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/middleware/rate-limiter.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/config/hof-defaults.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/controller/base-controller.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/controller/formatting/index.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/controller/validation/index.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/controller/validation/validators.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/controller/validation/email.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/controller/validation-error.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/utilities/index.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/utilities/autofill/index.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/utilities/autofill/inputs.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/utilities/test-data/index.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/utilities/countries.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/utilities/helpers/index.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/utilities/reqres/index.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/config/sanitisation-rules.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/controller/formatting/formatters.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/controller/index.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/controller/behaviour-session.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/controller/behaviour-hooks.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/controller/controller.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/sandbox/apps/sandbox/behaviours/country-select.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/frontend/template-mixins/mixins/index.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/frontend/template-mixins/mixins/template-mixins.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/frontend/template-mixins/mixins/render.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/frontend/template-mixins/mixins/helpers.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/index.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/frontend/index.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/frontend/govuk-template/index.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/frontend/govuk-template/build/index.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/frontend/govuk-template/build/config.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/frontend/template-partials/index.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/frontend/template-partials/translations/index.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/frontend/themes/index.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/frontend/themes/gov-uk/index.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/frontend/toolkit/index.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/frontend/toolkit/assets/javascript/helpers.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/frontend/toolkit/assets/javascript/form-focus.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/frontend/toolkit/assets/javascript/progressive-reveal.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/frontend/toolkit/assets/javascript/validation.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/frontend/toolkit/assets/javascript/character-count.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/middleware/index.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/middleware/cookies.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/middleware/errors.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/middleware/not-found.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/middleware/deep-translate.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/lib/markdown.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/lib/router.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/wizard/index.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/wizard/behaviours/index.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/wizard/behaviours/complete.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/wizard/util/constants.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/lib/helpers.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/lib/health.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/lib/serve-static.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/lib/ga-tag.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/lib/sessions.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/lib/settings.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/lib/logger.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/build/index.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/config/builder-defaults.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/transpiler/index.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/transpiler/lib/compile.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/transpiler/lib/build.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/transpiler/lib/expand-dirs.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/transpiler/lib/aggregate.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/transpiler/lib/write-files.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/model/apis/index.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/model/apis/html-to-pdf-converter.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/wizard/model.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/wizard/middleware/back-links.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/wizard/util/helpers.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/wizard/middleware/check-complete.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/wizard/middleware/check-progress.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/wizard/middleware/check-session.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/wizard/middleware/csrf.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/sandbox/test/_unit/example_app/sections/summary-data-sections.spec.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/sandbox/apps/sandbox/sections/summary-data-sections.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/sandbox/apps/sandbox/lib/staticAppealStages.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/sandbox/apps/sandbox/fields.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/sandbox/test/helpers/utilities.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/sandbox/apps/sandbox/behaviours/international-number.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/lib/encryption.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/wizard/middleware/session.js":["39365c14-40b7-4634-b733-940b72a11984"],"/Users/user/Documents/HO/HOF/hof/wizard/middleware/session-model.js":["39365c14-40b7-4634-b733-940b72a11984"]},"externalIds":{}}
package/CHANGELOG.md CHANGED
@@ -1,3 +1,24 @@
1
+ ## 2024-07-22, Version 21.0.0 (Stable), @Rhodine-orleans-lindsay
2
+ * Replaces deprecated request module with axios
3
+ - refactors the hof model and apis to use axios instead of request
4
+ * Updates patch and minor dependency versions
5
+
6
+ ## 2024-04-24, Version 20.5.0 (Stable), @mislam987
7
+ * Add hint property to checkboxes to align with govuk design guidelines
8
+
9
+ ## 2024-02-29, Version 20.4.0 (Stable), @sulthan-ahmed
10
+ * Update version of govuk-frontend to 3.15
11
+ - this adds the new crown for the King
12
+ - this supports a lot of changes from the govuk design system
13
+ * Adds support for Google tag manager
14
+ * Fixes accessibility issues
15
+ * Sandbox area for testing hof changes
16
+ * Updates patch and minor versions including
17
+ - libphonenumber to 1.9.44
18
+ - nodemailer to 6.9.9
19
+ - ip to 1.1.9
20
+ - es5-ext to 0.10.63
21
+
1
22
  ## 2020-06-02, Version 16.0.0 (Stable), @andymoody
2
23
  * Update version of helmet to 3.22.0
3
24
  * Update version of i18n-future to 2.0.0