hof 22.2.0-time-mixin-beta → 22.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/components/index.js +0 -1
- package/controller/controller.js +0 -5
- package/controller/validation/validators.js +0 -13
- package/frontend/template-mixins/mixins/template-mixins.js +1 -45
- package/frontend/themes/gov-uk/styles/govuk.scss +0 -1
- package/frontend/toolkit/assets/javascript/form-focus.js +0 -4
- package/lib/sessions.js +1 -1
- package/package.json +3 -2
- package/sandbox/apps/sandbox/fields.js +0 -9
- package/sandbox/apps/sandbox/index.js +0 -4
- package/sandbox/apps/sandbox/sections/summary-data-sections.js +0 -7
- package/sandbox/apps/sandbox/translations/src/en/fields.json +0 -4
- package/sandbox/apps/sandbox/translations/src/en/pages.json +0 -3
- package/sandbox/apps/sandbox/translations/src/en/validation.json +0 -3
- package/utilities/autofill/inputs.js +1 -6
- package/.nyc_output/34671fe1-441d-41ed-b012-ece4e3964dbb.json +0 -1
- package/.nyc_output/processinfo/34671fe1-441d-41ed-b012-ece4e3964dbb.json +0 -1
- package/.nyc_output/processinfo/index.json +0 -1
- package/components/time/fields.js +0 -12
- package/components/time/index.js +0 -168
- package/components/time/templates/time.html +0 -20
- package/frontend/govuk-template/govuk_template_generated.html +0 -102
- package/frontend/template-mixins/partials/forms/input-text-time.html +0 -37
- package/frontend/themes/gov-uk/styles/_time-input.scss +0 -5
- package/sandbox/.env +0 -3
- package/sandbox/apps/sandbox/translations/en/default.json +0 -249
- package/sandbox/public/css/app.css +0 -9558
- package/sandbox/public/images/icons/icon-caret-left.png +0 -0
- package/sandbox/public/images/icons/icon-complete.png +0 -0
- package/sandbox/public/images/icons/icon-cross-remove-sign.png +0 -0
- package/sandbox/public/js/bundle.js +0 -47607
package/CHANGELOG.md
CHANGED
@@ -1,3 +1,9 @@
|
|
1
|
+
## 2025-03-07, Version 22.2.0 (Stable), @Rhodine-orleans-lindsay
|
2
|
+
### Changed
|
3
|
+
- Amends cookie config to allow limited changes to sameSite property during safe cross-origin navigations.
|
4
|
+
### Security
|
5
|
+
- Updates patch and minor dependencies
|
6
|
+
|
1
7
|
## 2025-01-24, Version 22.1.0 (Stable), @sulthan-ahmed
|
2
8
|
* ⛓️💥 **BREAKING CHANGE** : removed `nodemailer-smtp-transport` replaced with `nodemailer`.
|
3
9
|
- The nodemailer-smtp-transport package has been removed due to a critical vulnerability, and its functionality has been consolidated under nodemailer.
|
package/components/index.js
CHANGED
@@ -5,7 +5,6 @@ module.exports = {
|
|
5
5
|
clearSession: require('./clear-session'),
|
6
6
|
combineAndLoopFields: require('./combine-and-loop-fields'),
|
7
7
|
date: require('./date'),
|
8
|
-
time: require('./time'),
|
9
8
|
emailer: require('./emailer'),
|
10
9
|
homeOfficeCountries: require('./homeoffice-countries'),
|
11
10
|
notify: require('./notify'),
|
package/controller/controller.js
CHANGED
@@ -192,11 +192,6 @@ module.exports = class Controller extends BaseController {
|
|
192
192
|
}
|
193
193
|
// eslint-disable-next-line brace-style
|
194
194
|
}
|
195
|
-
// get first field for time input control
|
196
|
-
else if (field && field.mixin === 'input-time') {
|
197
|
-
req.form.errors[key].errorLinkId = key + '-hour';
|
198
|
-
// eslint-disable-next-line brace-style
|
199
|
-
}
|
200
195
|
// get first field for date input control
|
201
196
|
else if (field && field.mixin === 'input-date') {
|
202
197
|
req.form.errors[key].errorLinkId = key + '-day';
|
@@ -9,7 +9,6 @@ const emailValidator = require('./email');
|
|
9
9
|
// validator methods should return false (or falsy value) for *invalid* input
|
10
10
|
// and true (or truthy value) for *valid* input.
|
11
11
|
const dateFormat = 'YYYY-MM-DD';
|
12
|
-
const timeFormat = 'kk:mm';
|
13
12
|
let Validators;
|
14
13
|
|
15
14
|
module.exports = Validators = {
|
@@ -129,18 +128,6 @@ module.exports = Validators = {
|
|
129
128
|
return Validators.regex(value, /^\d{2}$/) && parseInt(value, 10) > 0 && parseInt(value, 10) < 32;
|
130
129
|
},
|
131
130
|
|
132
|
-
time(value) {
|
133
|
-
return value === '' || Validators.regex(value, /\d{2}\:\d{2}/) && moment(value, timeFormat).isValid();
|
134
|
-
},
|
135
|
-
|
136
|
-
'time-hour'(value) {
|
137
|
-
return Validators.regex(value, /^\d{2}$/) && parseInt(value, 10) >= 0 && parseInt(value, 10) < 24;
|
138
|
-
},
|
139
|
-
|
140
|
-
'time-minute'(value) {
|
141
|
-
return Validators.regex(value, /^\d{2}$/) && parseInt(value, 10) >= 0 && parseInt(value, 10) < 59;
|
142
|
-
},
|
143
|
-
|
144
131
|
// eslint-disable-next-line no-inline-comments, spaced-comment
|
145
132
|
before(value, date) {
|
146
133
|
// validator can also do before(value, [diff, unit][, diff, unit])
|
@@ -13,7 +13,6 @@ const PANELMIXIN = 'partials/mixins/panel';
|
|
13
13
|
const PARTIALS = [
|
14
14
|
'partials/forms/input-text-group',
|
15
15
|
'partials/forms/input-text-date',
|
16
|
-
'partials/forms/input-text-time',
|
17
16
|
'partials/forms/input-submit',
|
18
17
|
'partials/forms/select',
|
19
18
|
'partials/forms/checkbox',
|
@@ -214,7 +213,6 @@ module.exports = function (options) {
|
|
214
213
|
label: t(lKey),
|
215
214
|
labelClassName: labelClassName ? `govuk-label ${labelClassName}` : 'govuk-label',
|
216
215
|
formGroupClassName: classNames(field, 'formGroupClassName') || extension.formGroupClassName || 'govuk-form-group',
|
217
|
-
timeInputItemClassName: 'time-input__item',
|
218
216
|
hint: hint,
|
219
217
|
hintId: extension.hintId || (hint ? key + '-hint' : null),
|
220
218
|
error: this.errors && this.errors[key],
|
@@ -223,12 +221,11 @@ module.exports = function (options) {
|
|
223
221
|
required: required,
|
224
222
|
pattern: extension.pattern,
|
225
223
|
date: extension.date,
|
226
|
-
time: extension.time,
|
227
224
|
autocomplete: autocomplete,
|
228
225
|
child: field.child,
|
229
226
|
isPageHeading: field.isPageHeading,
|
230
227
|
attributes: field.attributes,
|
231
|
-
isPrefixOrSuffix: _.map(field.attributes, item => {
|
228
|
+
isPrefixOrSuffix: _.map(field.attributes, item => {if (item.prefix || item.suffix !== undefined) return true;}),
|
232
229
|
isMaxlengthOrMaxword: maxlength(field) || extension.maxlength || maxword(field) || extension.maxword,
|
233
230
|
renderChild: renderChild.bind(this)
|
234
231
|
});
|
@@ -471,47 +468,6 @@ module.exports = function (options) {
|
|
471
468
|
return parts.concat(monthPart, yearPart).join('\n');
|
472
469
|
};
|
473
470
|
}
|
474
|
-
},
|
475
|
-
'input-time': {
|
476
|
-
handler: function () {
|
477
|
-
/**
|
478
|
-
* props: '[value] [id]'
|
479
|
-
*/
|
480
|
-
return function (key) {
|
481
|
-
const field = Object.assign({}, this.options.fields[key] || options.fields[key]);
|
482
|
-
key = hoganRender(key, this);
|
483
|
-
// Exact unless there is a inexact property against the fields key.
|
484
|
-
const isExact = field.inexact !== true;
|
485
|
-
|
486
|
-
let autocomplete = field.autocomplete || {};
|
487
|
-
if (autocomplete === 'off') {
|
488
|
-
autocomplete = {
|
489
|
-
hour: 'off',
|
490
|
-
minute: 'off'
|
491
|
-
};
|
492
|
-
} else if (typeof autocomplete === 'string') {
|
493
|
-
autocomplete = {
|
494
|
-
hour: autocomplete + '-hour',
|
495
|
-
minute: autocomplete + '-minute'
|
496
|
-
};
|
497
|
-
}
|
498
|
-
const isThisRequired = field.validate ? field.validate.indexOf('required') > -1 : false;
|
499
|
-
const formGroupClassName = (field.formGroup && field.formGroup.className) ? field.formGroup.className : '';
|
500
|
-
const classNameHour = (field.controlsClass && field.controlsClass.hour) ? field.controlsClass.hour : 'govuk-input--width-2';
|
501
|
-
const classNameMinute = (field.controlsClass && field.controlsClass.minute) ? field.controlsClass.minute : 'govuk-input--width-2';
|
502
|
-
|
503
|
-
const parts = [];
|
504
|
-
|
505
|
-
if (isExact) {
|
506
|
-
const hourPart = compiled['partials/forms/input-text-time'].render(inputText.call(this, key + '-hour', { pattern: '[0-9]*', min: 1, max: 24, maxlength: 2, hintId: key + '-hint', time: true, autocomplete: autocomplete.hour, formGroupClassName, className: classNameHour, isThisRequired }));
|
507
|
-
parts.push(hourPart);
|
508
|
-
}
|
509
|
-
|
510
|
-
const minutePart = compiled['partials/forms/input-text-time'].render(inputText.call(this, key + '-minute', { pattern: '[0-9]*', min: 0, max: 59, maxlength: 2, hintId: key + '-hint', time: true, autocomplete: autocomplete.minute, formGroupClassName, className: classNameMinute, isThisRequired }));
|
511
|
-
|
512
|
-
return parts.concat(minutePart).join('\n');
|
513
|
-
};
|
514
|
-
}
|
515
471
|
}
|
516
472
|
};
|
517
473
|
|
@@ -85,10 +85,6 @@ function formFocus() {
|
|
85
85
|
document.getElementById(getElementFromSummaryLink + '-day').focus();
|
86
86
|
}
|
87
87
|
|
88
|
-
if (document.getElementById(getElementFromSummaryLink + '-hour') && forms.length === 1 && editMode) {
|
89
|
-
document.getElementById(getElementFromSummaryLink + '-hour').focus();
|
90
|
-
}
|
91
|
-
|
92
88
|
if (forms.length > 0) {
|
93
89
|
labels = document.getElementsByTagName('label');
|
94
90
|
if (labels) {
|
package/lib/sessions.js
CHANGED
@@ -68,7 +68,7 @@ module.exports = (app, config) => {
|
|
68
68
|
name: config.session.name,
|
69
69
|
cookie: {
|
70
70
|
secure: secureHttps(config),
|
71
|
-
sameSite: 'strict',
|
71
|
+
sameSite: config.cookie?.sameSite === 'lax' ? config.cookie?.sameSite : 'strict',
|
72
72
|
httpOnly: true
|
73
73
|
},
|
74
74
|
secret: config.session.secret,
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "hof",
|
3
3
|
"description": "A bootstrap for HOF projects",
|
4
|
-
"version": "22.2.
|
4
|
+
"version": "22.2.2",
|
5
5
|
"license": "MIT",
|
6
6
|
"main": "index.js",
|
7
7
|
"author": "HomeOffice",
|
@@ -36,7 +36,7 @@
|
|
36
36
|
},
|
37
37
|
"dependencies": {
|
38
38
|
"aliasify": "^2.1.0",
|
39
|
-
"axios": "^1.
|
39
|
+
"axios": "^1.8.2",
|
40
40
|
"bluebird": "^3.7.2",
|
41
41
|
"body-parser": "^1.15.1",
|
42
42
|
"browserify": "^17.0.0",
|
@@ -68,6 +68,7 @@
|
|
68
68
|
"i18n-future": "^2.0.0",
|
69
69
|
"i18n-lookup": "^0.1.0",
|
70
70
|
"is-pdf": "^1.0.0",
|
71
|
+
"jquery": "^3.6.0",
|
71
72
|
"libphonenumber-js": "^1.9.44",
|
72
73
|
"lodash": "^4.17.21",
|
73
74
|
"markdown-it": "^12.3.2",
|
@@ -3,7 +3,6 @@
|
|
3
3
|
|
4
4
|
const dateComponent = require('../../../').components.date;
|
5
5
|
const staticAppealStages = require('./lib/staticAppealStages');
|
6
|
-
const timeComponent = require('../../../').components.time;
|
7
6
|
|
8
7
|
module.exports = {
|
9
8
|
'landing-page-radio': {
|
@@ -27,14 +26,6 @@ module.exports = {
|
|
27
26
|
{ type: 'after', arguments: ['1900'] }
|
28
27
|
]
|
29
28
|
}),
|
30
|
-
time: timeComponent('time', {
|
31
|
-
mixin: 'input-time',
|
32
|
-
isPageHeading: 'true',
|
33
|
-
validate: [
|
34
|
-
'required',
|
35
|
-
'time'
|
36
|
-
]
|
37
|
-
}),
|
38
29
|
building: {
|
39
30
|
validate: ['required', 'notUrl', { type: 'maxlength', arguments: 100 }]
|
40
31
|
},
|
@@ -1,6 +1,5 @@
|
|
1
1
|
const moment = require('moment');
|
2
2
|
const PRETTY_DATE_FORMAT = 'Do MMMM YYYY';
|
3
|
-
const PRETTY_TIME_FORMAT = 'k:mma';
|
4
3
|
const APPEAL_STAGES = require('../lib/staticAppealStages').getstaticAppealStages();
|
5
4
|
const _ = require('lodash');
|
6
5
|
|
@@ -12,12 +11,6 @@ module.exports = {
|
|
12
11
|
parse: d => d && moment(d).format(PRETTY_DATE_FORMAT)
|
13
12
|
}
|
14
13
|
],
|
15
|
-
time: [
|
16
|
-
{
|
17
|
-
field: 'time',
|
18
|
-
parse: t => t && moment(t, 'kk:mm').format(PRETTY_TIME_FORMAT)
|
19
|
-
}
|
20
|
-
],
|
21
14
|
address: [
|
22
15
|
'building',
|
23
16
|
'street',
|
@@ -10,9 +10,6 @@
|
|
10
10
|
"after": "Enter a date after 1 1 1900",
|
11
11
|
"before": "Enter a date that is in the past"
|
12
12
|
},
|
13
|
-
"time": {
|
14
|
-
"default": "Enter a time in the correct format; for example, 12 40"
|
15
|
-
},
|
16
13
|
"building": {
|
17
14
|
"default": "Enter details of your building and street"
|
18
15
|
},
|
@@ -34,12 +34,7 @@ module.exports = i => {
|
|
34
34
|
if (name.indexOf('year') > -1) {
|
35
35
|
return Data.number(1950, 1990).toString();
|
36
36
|
}
|
37
|
-
|
38
|
-
return Data.number(1, 24).toString();
|
39
|
-
}
|
40
|
-
if (name.indexOf('minute') > -1) {
|
41
|
-
return Data.number(0, 59).toString();
|
42
|
-
}
|
37
|
+
|
43
38
|
if (name.indexOf('email') > -1) {
|
44
39
|
return Data.email;
|
45
40
|
}
|