hof 22.0.1 → 22.0.2-ukmobilephone-validator-beta

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 (42) hide show
  1. package/.github/workflows/automate-publish.yml +4 -4
  2. package/.github/workflows/automate-tag.yml +16 -16
  3. package/.nyc_output/269ca22b-40c0-48fe-8fde-8cd21f2c2174.json +1 -0
  4. package/.nyc_output/processinfo/269ca22b-40c0-48fe-8fde-8cd21f2c2174.json +1 -0
  5. package/.nyc_output/processinfo/index.json +1 -0
  6. package/CHANGELOG.md +0 -13
  7. package/README.md +27 -111
  8. package/components/index.js +1 -2
  9. package/config/hof-defaults.js +1 -5
  10. package/controller/controller.js +0 -4
  11. package/controller/validation/validators.js +1 -1
  12. package/frontend/govuk-template/govuk_template_generated.html +102 -0
  13. package/frontend/template-partials/views/confirmation.html +4 -17
  14. package/frontend/template-partials/views/partials/head.html +0 -3
  15. package/frontend/template-partials/views/partials/page.html +0 -1
  16. package/frontend/themes/gov-uk/client-js/index.js +0 -1
  17. package/frontend/themes/gov-uk/styles/govuk.scss +0 -1
  18. package/index.js +4 -11
  19. package/lib/router.js +0 -2
  20. package/package.json +3 -4
  21. package/{pull_request_template.md → pull_request.md} +1 -1
  22. package/sandbox/.env +3 -0
  23. package/sandbox/apps/sandbox/index.js +0 -4
  24. package/sandbox/apps/sandbox/translations/en/default.json +239 -0
  25. package/sandbox/apps/sandbox/translations/src/en/pages.json +1 -16
  26. package/sandbox/public/css/app.css +9552 -0
  27. package/sandbox/public/images/icons/icon-caret-left.png +0 -0
  28. package/sandbox/public/images/icons/icon-complete.png +0 -0
  29. package/sandbox/public/images/icons/icon-cross-remove-sign.png +0 -0
  30. package/sandbox/public/js/bundle.js +47603 -0
  31. package/sandbox/server.js +0 -5
  32. package/wizard/index.js +0 -2
  33. package/components/session-timeout-warning/index.js +0 -67
  34. package/frontend/template-partials/translations/src/en/exit.json +0 -5
  35. package/frontend/template-partials/translations/src/en/save-and-exit.json +0 -4
  36. package/frontend/template-partials/views/exit.html +0 -9
  37. package/frontend/template-partials/views/partials/session-timeout-warning.html +0 -38
  38. package/frontend/template-partials/views/save-and-exit.html +0 -17
  39. package/frontend/themes/gov-uk/client-js/session-timeout-dialog.js +0 -348
  40. package/frontend/themes/gov-uk/styles/_session-timeout-dialog.scss +0 -121
  41. package/sandbox/apps/sandbox/translations/src/en/exit.json +0 -4
  42. package/sandbox/apps/sandbox/views/save-and-exit.html +0 -19
@@ -8,15 +8,15 @@ on:
8
8
  - completed
9
9
  jobs:
10
10
  auto-publish:
11
- runs-on: ubuntu-22.04
11
+ runs-on: ubuntu-latest
12
12
  if: startsWith(github.ref, 'refs/heads/master')
13
13
  steps:
14
- - uses: actions/checkout@v4
14
+ - uses: actions/checkout@v2.2.0
15
15
  with:
16
16
  fetch-depth: 0
17
- - uses: actions/setup-node@v4
17
+ - uses: actions/setup-node@v1
18
18
  with:
19
- node-version: 20
19
+ node-version: 14
20
20
  registry-url: https://registry.npmjs.org/
21
21
  - name: 'Get Previous tag'
22
22
  id: previoustag
@@ -4,14 +4,14 @@ name: Automate_Tag
4
4
  on: [push]
5
5
  jobs:
6
6
  test:
7
- runs-on: ubuntu-22.04
7
+ runs-on: ubuntu-latest
8
8
  strategy:
9
9
  matrix:
10
- node-version: [20.x]
10
+ node-version: [14.x]
11
11
  redis-version: [4, 5, 6]
12
12
  steps:
13
- - uses: actions/checkout@v4
14
- - uses: actions/setup-node@v4
13
+ - uses: actions/checkout@v2.2.0
14
+ - uses: actions/setup-node@v1
15
15
  with:
16
16
  node-version: ${{ matrix.node-version }}
17
17
  - name: Start Redis
@@ -25,16 +25,16 @@ jobs:
25
25
 
26
26
  auto-tag-patch:
27
27
  needs: test
28
- runs-on: ubuntu-22.04
28
+ runs-on: ubuntu-latest
29
29
  if: |
30
30
  startsWith(github.ref, 'refs/heads/master') &&
31
31
  !contains(github.event.head_commit.message, '[MAJOR]') &&
32
32
  !contains(github.event.head_commit.message, '[MINOR]')
33
33
  steps:
34
- - uses: actions/checkout@v4
35
- - uses: actions/setup-node@v4
34
+ - uses: actions/checkout@v2.2.0
35
+ - uses: actions/setup-node@v1
36
36
  with:
37
- node-version: 20
37
+ node-version: 14
38
38
  registry-url: https://registry.npmjs.org/
39
39
  - run: |
40
40
  git config --local user.email "$(git log --format='%ae' HEAD^!)"
@@ -43,16 +43,16 @@ jobs:
43
43
 
44
44
  auto-tag-minor:
45
45
  needs: test
46
- runs-on: ubuntu-22.04
46
+ runs-on: ubuntu-latest
47
47
  if: |
48
48
  startsWith(github.ref, 'refs/heads/master') &&
49
49
  !contains(github.event.head_commit.message, '[MAJOR]') &&
50
50
  contains(github.event.head_commit.message, '[MINOR]')
51
51
  steps:
52
- - uses: actions/checkout@v4
53
- - uses: actions/setup-node@v4
52
+ - uses: actions/checkout@v2.2.0
53
+ - uses: actions/setup-node@v1
54
54
  with:
55
- node-version: 20
55
+ node-version: 14
56
56
  registry-url: https://registry.npmjs.org/
57
57
  - run: |
58
58
  git config --local user.email "$(git log --format='%ae' HEAD^!)"
@@ -61,16 +61,16 @@ jobs:
61
61
 
62
62
  auto-tag-major:
63
63
  needs: test
64
- runs-on: ubuntu-22.04
64
+ runs-on: ubuntu-latest
65
65
  if: |
66
66
  startsWith(github.ref, 'refs/heads/master') &&
67
67
  contains(github.event.head_commit.message, '[MAJOR]') &&
68
68
  !contains(github.event.head_commit.message, '[MINOR]')
69
69
  steps:
70
- - uses: actions/checkout@v4
71
- - uses: actions/setup-node@v4
70
+ - uses: actions/checkout@v2.2.0
71
+ - uses: actions/setup-node@v1
72
72
  with:
73
- node-version: 20
73
+ node-version: 14
74
74
  registry-url: https://registry.npmjs.org/
75
75
  - run: |
76
76
  git config --local user.email "$(git log --format='%ae' HEAD^!)"