hof 22.8.0-source-maps-beta.1 → 22.8.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.
- package/CHANGELOG.md +5 -1
- package/frontend/template-partials/translations/src/en/cookies.json +2 -0
- package/frontend/template-partials/views/cookies.html +1 -1
- package/frontend/template-partials/views/partials/analytics-table.html +25 -0
- package/index.js +1 -0
- package/package.json +1 -1
- package/.nyc_output/f21ac10e-0bc9-4517-b2d8-7b1808d157cc.json +0 -1
- package/.nyc_output/processinfo/f21ac10e-0bc9-4517-b2d8-7b1808d157cc.json +0 -1
- package/.nyc_output/processinfo/index.json +0 -1
- package/dump.rdb +0 -0
- package/frontend/govuk-template/govuk_template_generated.html +0 -102
package/CHANGELOG.md
CHANGED
@@ -1,4 +1,8 @@
|
|
1
|
-
## 2025-07-
|
1
|
+
## 2025-07-16, Version 22.8.3 (Stable), @vivekkumar-ho
|
2
|
+
### Changed
|
3
|
+
- Updated the cookies page to include the GA container ID, which corresponds to the Measurement ID.
|
4
|
+
|
5
|
+
## 2025-07-04, Version 22.8.1 (Stable), @gregaustinHO
|
2
6
|
### Added
|
3
7
|
- Add support for source maps while debugging
|
4
8
|
|
@@ -61,6 +61,8 @@
|
|
61
61
|
},
|
62
62
|
"no-identify": "No personal details are stored with this information, so you can’t be identified.",
|
63
63
|
"analytics-table": {
|
64
|
+
"containerIdExpires": "2 years",
|
65
|
+
"containerIdPurpose": "Used to persist session state",
|
64
66
|
"headers": [
|
65
67
|
"Name",
|
66
68
|
"Purpose",
|
@@ -0,0 +1,25 @@
|
|
1
|
+
<table class="govuk-table">
|
2
|
+
<thead class="govuk-table__head">
|
3
|
+
<tr class="govuk-table__row">
|
4
|
+
{{#headers}}
|
5
|
+
<th scope="col" class="govuk-table__header app-custom-class">{{.}}</th>
|
6
|
+
{{/headers}}
|
7
|
+
</tr>
|
8
|
+
</thead>
|
9
|
+
<tbody class="govuk-table__body">
|
10
|
+
{{#rows}}
|
11
|
+
<tr class="govuk-table__row">
|
12
|
+
{{#.}}
|
13
|
+
<td class="govuk-table__cell">{{.}}</td>
|
14
|
+
{{/.}}
|
15
|
+
</tr>
|
16
|
+
{{/rows}}
|
17
|
+
<tr class="govuk-table__row">
|
18
|
+
{{#gaContainerId}}
|
19
|
+
<td>_ga_{{gaContainerId}}</td>
|
20
|
+
<td>{{containerIdPurpose}}</td>
|
21
|
+
<td>{{containerIdExpires}}</td>
|
22
|
+
{{/gaContainerId}}
|
23
|
+
</tr>
|
24
|
+
</tbody>
|
25
|
+
</table>
|
package/index.js
CHANGED
@@ -162,6 +162,7 @@ function bootstrap(options) {
|
|
162
162
|
res.locals.exitFormContent = config.exitFormContent;
|
163
163
|
res.locals.saveExitFormContent = config.saveExitFormContent;
|
164
164
|
res.locals.serviceUnavailable = config.serviceUnavailable;
|
165
|
+
res.locals.gaContainerId = config.ga4TagId;
|
165
166
|
next();
|
166
167
|
});
|
167
168
|
|