hof 20.3.11 → 20.4.0-minimatch-vulnerability-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.
- package/.nyc_output/4fc007c9-d6c8-4614-89ce-04c7d6ce9fe5.json +1 -0
- package/.nyc_output/processinfo/4fc007c9-d6c8-4614-89ce-04c7d6ce9fe5.json +1 -0
- package/.nyc_output/processinfo/index.json +1 -1
- package/components/date/templates/date.html +1 -1
- package/config/hof-defaults.js +3 -5
- package/frontend/govuk-template/build/govuk_template.html +17 -18
- package/frontend/template-mixins/partials/forms/checkbox-group.html +1 -1
- package/frontend/template-mixins/partials/forms/option-group.html +1 -1
- package/frontend/template-mixins/partials/forms/textarea-group.html +3 -1
- package/frontend/template-partials/views/layout.html +1 -1
- package/frontend/template-partials/views/partials/cookie-banner.html +2 -2
- package/frontend/template-partials/views/partials/gatag.html +0 -1
- package/frontend/template-partials/views/partials/head.html +28 -0
- package/lib/ga-tag.js +18 -1
- package/lib/health.js +1 -1
- package/lib/sessions.js +0 -2
- package/middleware/cookies.js +2 -0
- package/middleware/rate-limiter.js +1 -3
- package/package.json +7 -6
- package/sandbox/apps/sandbox/fields.js +0 -6
- package/sandbox/apps/sandbox/translations/en/default.json +30 -26
- package/sandbox/apps/sandbox/translations/src/en/fields.json +5 -5
- package/sandbox/apps/sandbox/translations/src/en/pages.json +1 -1
- package/sandbox/config.js +1 -2
- package/sandbox/public/css/app.css +10 -6604
- package/sandbox/public/js/bundle.js +24 -2800
- package/sandbox/server.js +1 -4
- package/sandbox/yarn.lock +3 -3
- package/.nyc_output/b924df42-9cb6-4618-9a07-4f58f67ae28a.json +0 -1
- package/.nyc_output/processinfo/b924df42-9cb6-4618-9a07-4f58f67ae28a.json +0 -1
- package/frontend/govuk-template/govuk_template_generated.html +0 -104
- package/sandbox/dump.rdb +0 -0
@@ -18,7 +18,7 @@
|
|
18
18
|
"label": "Full name"
|
19
19
|
},
|
20
20
|
"dateOfBirth": {
|
21
|
-
"legend": "
|
21
|
+
"legend": "What is your date of birth?",
|
22
22
|
"hint": "For example, 31 10 1990"
|
23
23
|
},
|
24
24
|
"building": {
|
@@ -29,8 +29,8 @@
|
|
29
29
|
},
|
30
30
|
"townOrCity": {
|
31
31
|
"label": "Town or city"
|
32
|
-
},
|
33
|
-
"postcode": {
|
32
|
+
},
|
33
|
+
"postcode": {
|
34
34
|
"label": "Postcode"
|
35
35
|
},
|
36
36
|
"incomeTypes" : {
|
@@ -66,8 +66,8 @@
|
|
66
66
|
},
|
67
67
|
"northernIreland": {
|
68
68
|
"label": "Northern Ireland"
|
69
|
-
}
|
70
|
-
}
|
69
|
+
}
|
70
|
+
}
|
71
71
|
},
|
72
72
|
"email" : {
|
73
73
|
"label": "Email address"
|
@@ -50,7 +50,7 @@
|
|
50
50
|
},
|
51
51
|
"confirmation": {
|
52
52
|
"title": "Application sent",
|
53
|
-
"alert": "Application sent",
|
53
|
+
"alert": "Application sent",
|
54
54
|
"subheader": "What happens next",
|
55
55
|
"content": "We’ll contact you with the decision of your application or if we need more information from you."
|
56
56
|
}
|
package/sandbox/config.js
CHANGED
@@ -2,7 +2,6 @@
|
|
2
2
|
|
3
3
|
/* eslint no-process-env: 0 */
|
4
4
|
module.exports = {
|
5
|
-
port: 8082,
|
6
5
|
email: {
|
7
6
|
caseworker: process.env.CASEWORKER_EMAIL || '',
|
8
7
|
from: process.env.FROM_ADDRESS || '',
|
@@ -13,6 +12,6 @@ module.exports = {
|
|
13
12
|
region: process.env.EMAIL_REGION || ''
|
14
13
|
},
|
15
14
|
hosts: {
|
16
|
-
acceptanceTests: process.env.ACCEPTANCE_HOST_NAME || `http://localhost:${process.env.PORT ||
|
15
|
+
acceptanceTests: process.env.ACCEPTANCE_HOST_NAME || `http://localhost:${process.env.PORT || 8080}`
|
17
16
|
}
|
18
17
|
};
|