hmrc-frontend 5.25.0 → 5.26.0
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/README.md +1 -1
- package/govuk-prototype-kit.config.json +87 -3
- package/hmrc/VERSION.txt +1 -1
- package/hmrc/{accessible-autocomplete-5.25.0.css → accessible-autocomplete-5.26.0.css} +1 -1
- package/hmrc/{accessible-autocomplete-5.25.0.js → accessible-autocomplete-5.26.0.js} +341 -491
- package/hmrc/all.js +193 -348
- package/hmrc/{hmrc-frontend-5.25.0.min.css → hmrc-frontend-5.26.0.min.css} +1 -1
- package/hmrc/{hmrc-frontend-5.25.0.min.js → hmrc-frontend-5.26.0.min.js} +2 -2
- package/hmrc/{hmrc-frontend-ie8-5.25.0.min.css → hmrc-frontend-ie8-5.26.0.min.css} +1 -1
- package/hmrc/maps/{accessible-autocomplete-5.25.0.css.map → accessible-autocomplete-5.26.0.css.map} +1 -1
- package/hmrc/maps/{hmrc-frontend-5.25.0.min.css.map → hmrc-frontend-5.26.0.min.css.map} +1 -1
- package/hmrc/maps/hmrc-frontend-5.26.0.min.js.map +1 -0
- package/hmrc/maps/{hmrc-frontend-ie8-5.25.0.min.css.map → hmrc-frontend-ie8-5.26.0.min.css.map} +1 -1
- package/hmrc/templates/account-header.html +15 -0
- package/package.json +1 -1
- package/hmrc/maps/hmrc-frontend-5.25.0.min.js.map +0 -1
package/README.md
CHANGED
|
@@ -19,7 +19,7 @@ of what the design patterns look like and guidance on how to use them in your se
|
|
|
19
19
|
* [npm](https://www.npmjs.com/) `>= 6.4.1`
|
|
20
20
|
|
|
21
21
|
To install more than one version of Node.js, it may be easier to use a node version manager
|
|
22
|
-
like [nvm](https://github.com/
|
|
22
|
+
like [nvm](https://github.com/nvm-sh/nvm) or [n](https://github.com/tj/n).
|
|
23
23
|
|
|
24
24
|
### How to install
|
|
25
25
|
|
|
@@ -4,14 +4,98 @@
|
|
|
4
4
|
"/hmrc/components/banner/images",
|
|
5
5
|
"/hmrc/components/internal-header/images"
|
|
6
6
|
],
|
|
7
|
-
"nunjucksPaths": [
|
|
8
|
-
"/"
|
|
9
|
-
],
|
|
10
7
|
"sass": [
|
|
11
8
|
"/hmrc/_prototype-kit.scss"
|
|
12
9
|
],
|
|
13
10
|
"scripts": [
|
|
14
11
|
"/hmrc/all.js",
|
|
15
12
|
"/hmrc/init-all.js"
|
|
13
|
+
],
|
|
14
|
+
"importNunjucksMacrosInto": [
|
|
15
|
+
"/hmrc/templates/account-header.html"
|
|
16
|
+
],
|
|
17
|
+
"templates": [
|
|
18
|
+
{
|
|
19
|
+
"name": "Blank page with Account Header",
|
|
20
|
+
"path": "/hmrc/templates/account-header.html",
|
|
21
|
+
"type": "nunjucks"
|
|
22
|
+
}
|
|
23
|
+
],
|
|
24
|
+
"nunjucksPaths": [
|
|
25
|
+
"/"
|
|
26
|
+
],
|
|
27
|
+
"nunjucksMacros": [
|
|
28
|
+
{
|
|
29
|
+
"macroName": "hmrcAccessibleAutocomplete",
|
|
30
|
+
"importFrom": "hmrc/components/accessible-autocomplete/macro.njk"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"macroName": "hmrcAccountMenu",
|
|
34
|
+
"importFrom": "hmrc/components/account-menu/macro.njk"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"macroName": "hmrcAddToAList",
|
|
38
|
+
"importFrom": "hmrc/components/add-to-a-list/macro.njk"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"macroName": "hmrcBanner",
|
|
42
|
+
"importFrom": "hmrc/components/banner/macro.njk"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"macroName": "hmrcCharacterCount",
|
|
46
|
+
"importFrom": "hmrc/components/character-count/macro.njk"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"macroName": "hmrcCurrencyInput",
|
|
50
|
+
"importFrom": "hmrc/components/currency-input/macro.njk"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"macroName": "hmrcFooter",
|
|
54
|
+
"importFrom": "hmrc/components/footer/macro.njk"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"macroName": "hmrcHeader",
|
|
58
|
+
"importFrom": "hmrc/components/header/macro.njk"
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"macroName": "hmrcInternalHeader",
|
|
62
|
+
"importFrom": "hmrc/components/internal-header/macro.njk"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"macroName": "hmrcLanguageSelect",
|
|
66
|
+
"importFrom": "hmrc/components/language-select/macro.njk"
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"macroName": "hmrcListWithActions",
|
|
70
|
+
"importFrom": "hmrc/components/list-with-actions/macro.njk"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"macroName": "hmrcNewTabLink",
|
|
74
|
+
"importFrom": "hmrc/components/new-tab-link/macro.njk"
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"macroName": "hmrcNotificationBadge",
|
|
78
|
+
"importFrom": "hmrc/components/notification-badge/macro.njk"
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"macroName": "hmrcPageHeading",
|
|
82
|
+
"importFrom": "hmrc/components/page-heading/macro.njk"
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"macroName": "hmrcReportTechnicalIssue",
|
|
86
|
+
"importFrom": "hmrc/components/report-technical-issue/macro.njk"
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"macroName": "hmrcTimeline",
|
|
90
|
+
"importFrom": "hmrc/components/timeline/macro.njk"
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"macroName": "hmrcTimeoutDialog",
|
|
94
|
+
"importFrom": "hmrc/components/timeout-dialog/macro.njk"
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"macroName": "hmrcUserResearchBanner",
|
|
98
|
+
"importFrom": "hmrc/components/user-research-banner/macro.njk"
|
|
99
|
+
}
|
|
16
100
|
]
|
|
17
101
|
}
|
package/hmrc/VERSION.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
5.
|
|
1
|
+
5.26.0
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
.autocomplete__wrapper{position:relative}.autocomplete__hint,.autocomplete__input{-webkit-appearance:none;border:2px solid #0b0c0c;border-radius:0;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;margin-bottom:0;width:100%}.autocomplete__input{background-color:rgba(0,0,0,0);position:relative}.autocomplete__hint{color:#b1b4b6;position:absolute}.autocomplete__input--default{padding:5px}.autocomplete__input--focused{outline:3px solid #fd0;outline-offset:0;-webkit-box-shadow:inset 0 0 0 2px;box-shadow:inset 0 0 0 2px}.autocomplete__input--show-all-values{padding:5px 34px 5px 5px;cursor:pointer}.autocomplete__dropdown-arrow-down{z-index:-1;display:inline-block;position:absolute;right:8px;width:24px;height:24px;top:10px}.autocomplete__menu{background-color:#fff;border:2px solid #0b0c0c;border-top:0;color:#0b0c0c;margin:0;max-height:342px;overflow-x:hidden;padding:0;width:100%;width:calc(100% - 4px)}.autocomplete__menu--visible{display:block}.autocomplete__menu--hidden{display:none}.autocomplete__menu--overlay{-webkit-box-shadow:rgba(0,0,0,.256863) 0 2px 6px;box-shadow:0 2px 6px rgba(0,0,0,.256863);left:0;position:absolute;top:100%;z-index:100}.autocomplete__menu--inline{position:relative}.autocomplete__option{border-left-width:0;border-bottom:1px solid #b1b4b6;border-right-width:0;border-top-width:1px;cursor:pointer;display:block;position:relative}.autocomplete__option>*{pointer-events:none}.autocomplete__option:first-of-type{border-top-width:0}.autocomplete__option:last-of-type{border-bottom-width:0}.autocomplete__option--odd{background-color:#fafafa}.autocomplete__option--focused,.autocomplete__option:hover{background-color:#1d70b8;border-color:#1d70b8;color:#fff;outline:0}@media (-ms-high-contrast:active),(forced-colors:active){.autocomplete__menu{border-color:FieldText}.autocomplete__option{background-color:Field;color:FieldText}.autocomplete__option--focused,.autocomplete__option:hover{forced-color-adjust:none;background-color:SelectedItem;border-color:SelectedItem;color:SelectedItemText;outline-color:SelectedItemText}}.autocomplete__option--no-results{background-color:#fafafa;color:#646b6f;cursor:not-allowed}.autocomplete__hint,.autocomplete__input,.autocomplete__option{font-size:16px;line-height:1.25}.autocomplete__hint,.autocomplete__option{padding:5px}@media (min-width:641px){.autocomplete__hint,.autocomplete__input,.autocomplete__option{font-size:19px;line-height:1.31579}}.autocomplete__hint,.autocomplete__input,.autocomplete__wrapper{font-family:GDS Transport,arial,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-weight:400;font-size:16px;font-size:1rem;line-height:1.25}@media print{.autocomplete__hint,.autocomplete__input,.autocomplete__wrapper{font-family:sans-serif}}@media (min-width:40.0625em){.autocomplete__hint,.autocomplete__input,.autocomplete__wrapper{font-size:19px;font-size:1.1875rem;line-height:1.31579}}@media print{.autocomplete__hint,.autocomplete__input,.autocomplete__wrapper{font-size:14pt;line-height:1.15}}
|
|
2
|
-
/*# sourceMappingURL=maps/accessible-autocomplete-5.
|
|
2
|
+
/*# sourceMappingURL=maps/accessible-autocomplete-5.26.0.css.map */
|