hof 22.11.0-frontend-v4-beta.3 → 23.0.0-frontend-v4-beta.1
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 -0
- package/components/emailer/emailer.js +3 -3
- package/config/builder-defaults.js +6 -6
- package/frontend/govuk-template/build/govuk_template.html +39 -47
- package/frontend/govuk-template/govuk_template_generated.html +39 -47
- package/frontend/govuk-template/index.js +2 -2
- package/frontend/themes/gov-uk/client-js/cookieSettings.js +20 -20
- package/frontend/toolkit/index.js +6 -6
- package/index.js +4 -2
- package/package.json +47 -47
- package/sandbox/assets/{js → rebrand/js}/index.js +1 -1
- package/sandbox/assets/{scss → rebrand/scss}/app.scss +1 -1
- package/sandbox/package.json +2 -2
- package/sandbox/public/css/app.css +1365 -853
- package/sandbox/public/images/gov-uk-logo-opt.svg +1 -0
- package/sandbox/public/images/govuk-logo.svg +25 -0
- package/sandbox/public/images/image.svg +1 -0
- package/sandbox/public/js/bundle.js +29 -29
- package/sandbox/yarn.lock +56 -163
- /package/frontend/toolkit/assets/{images → rebrand/images}/passports/new-window-link-blue.png +0 -0
- /package/frontend/toolkit/assets/{images → rebrand/images}/passports/new-window-link.png +0 -0
- /package/frontend/toolkit/assets/{images → rebrand/images}/spinner.gif +0 -0
- /package/frontend/toolkit/assets/{javascript → rebrand/javascript}/character-count.js +0 -0
- /package/frontend/toolkit/assets/{javascript → rebrand/javascript}/form-focus.js +0 -0
- /package/frontend/toolkit/assets/{javascript → rebrand/javascript}/helpers.js +0 -0
- /package/frontend/toolkit/assets/{javascript → rebrand/javascript}/progressive-reveal.js +0 -0
- /package/frontend/toolkit/assets/{javascript → rebrand/javascript}/validation.js +0 -0
- /package/frontend/toolkit/assets/{javascript → rebrand/javascript}/vendor/details.polyfill.js +0 -0
- /package/frontend/toolkit/assets/{javascript → rebrand/javascript}/vendor/indexof.polyfill.js +0 -0
- /package/frontend/toolkit/assets/{javascript → rebrand/javascript}/vendor/safari-cachebuster.js +0 -0
- /package/frontend/toolkit/assets/{stylesheets → rebrand/stylesheets}/_base.scss +0 -0
- /package/frontend/toolkit/assets/{stylesheets → rebrand/stylesheets}/_helpers.scss +0 -0
- /package/frontend/toolkit/assets/{stylesheets → rebrand/stylesheets}/_layout.scss +0 -0
- /package/frontend/toolkit/assets/{stylesheets → rebrand/stylesheets}/_typography.scss +0 -0
- /package/frontend/toolkit/assets/{stylesheets → rebrand/stylesheets}/_variables.scss +0 -0
- /package/frontend/toolkit/assets/{stylesheets → rebrand/stylesheets}/app.scss +0 -0
- /package/frontend/toolkit/assets/{stylesheets → rebrand/stylesheets}/govuk-elements/_buttons.scss +0 -0
- /package/frontend/toolkit/assets/{stylesheets → rebrand/stylesheets}/govuk-elements/_details.scss +0 -0
- /package/frontend/toolkit/assets/{stylesheets → rebrand/stylesheets}/govuk-elements/_elements-typography.scss +0 -0
- /package/frontend/toolkit/assets/{stylesheets → rebrand/stylesheets}/govuk-elements/_forms.scss +0 -0
- /package/frontend/toolkit/assets/{stylesheets → rebrand/stylesheets}/govuk-elements/_helpers.scss +0 -0
- /package/frontend/toolkit/assets/{stylesheets → rebrand/stylesheets}/govuk-elements/_layout.scss +0 -0
- /package/frontend/toolkit/assets/{stylesheets → rebrand/stylesheets}/govuk-elements/_lists.scss +0 -0
- /package/frontend/toolkit/assets/{stylesheets → rebrand/stylesheets}/govuk-elements/_panels.scss +0 -0
- /package/frontend/toolkit/assets/{stylesheets → rebrand/stylesheets}/govuk-elements/_reset.scss +0 -0
- /package/frontend/toolkit/assets/{stylesheets → rebrand/stylesheets}/govuk-elements/_tables.scss +0 -0
- /package/frontend/toolkit/assets/{stylesheets → rebrand/stylesheets}/govuk-elements/forms/_form-block-labels.scss +0 -0
- /package/frontend/toolkit/assets/{stylesheets → rebrand/stylesheets}/govuk-elements/forms/_form-date.scss +0 -0
- /package/frontend/toolkit/assets/{stylesheets → rebrand/stylesheets}/govuk-elements/forms/_form-validation.scss +0 -0
- /package/frontend/toolkit/assets/{stylesheets → rebrand/stylesheets}/mixins.scss +0 -0
- /package/frontend/toolkit/assets/{stylesheets → rebrand/stylesheets}/modules/_alerts.scss +0 -0
- /package/frontend/toolkit/assets/{stylesheets → rebrand/stylesheets}/modules/_buttons.scss +0 -0
- /package/frontend/toolkit/assets/{stylesheets → rebrand/stylesheets}/modules/_confirm-page.scss +0 -0
- /package/frontend/toolkit/assets/{stylesheets → rebrand/stylesheets}/modules/_lists.scss +0 -0
- /package/frontend/toolkit/assets/{stylesheets → rebrand/stylesheets}/modules/_progressive-reveal.scss +0 -0
- /package/frontend/toolkit/assets/{stylesheets → rebrand/stylesheets}/modules/_validation.scss +0 -0
- /package/sandbox/assets/{images → rebrand/images}/icons/icon-caret-left.png +0 -0
- /package/sandbox/assets/{images → rebrand/images}/icons/icon-complete.png +0 -0
- /package/sandbox/assets/{images → rebrand/images}/icons/icon-cross-remove-sign.png +0 -0
package/sandbox/package.json
CHANGED
|
@@ -8,14 +8,14 @@
|
|
|
8
8
|
},
|
|
9
9
|
"scripts": {
|
|
10
10
|
"start": "node server.js",
|
|
11
|
-
"start:dev": "HOF_SANDBOX=true ../bin/hof-build watch",
|
|
11
|
+
"start:dev": "HOF_SANDBOX=true ../bin/hof-build watch --env",
|
|
12
12
|
"dev": "yarn && GA_TAG=test nodemon server",
|
|
13
13
|
"build": "HOF_SANDBOX=true ../bin/hof-build",
|
|
14
14
|
"postinstall": "yarn run build"
|
|
15
15
|
},
|
|
16
16
|
"author": "",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"govuk-frontend": "4.10
|
|
18
|
+
"govuk-frontend": "4.10",
|
|
19
19
|
"jquery": "^3.7.1",
|
|
20
20
|
"sass": "^1.53.0",
|
|
21
21
|
"typeahead-aria": "^1.0.4"
|