Skip to content

Commit 73c9579

Browse files
Merge pull request #3528 from alphagov/release-4.6.0
2 parents ed3f083 + fbe0dd3 commit 73c9579

File tree

249 files changed

+4406
-2413
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

249 files changed

+4406
-2413
lines changed

CHANGELOG.md

+19-13
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,21 @@
22

33
## Unreleased
44

5+
## 4.6.0 (Feature release)
6+
57
### New features
68

79
#### Updated the appearance of disabled form controls
810

9-
The disabled state of Text Input, Textarea, Select and File Upload components has been updated to appear consistent across browsers and devices. They also now consistent with the existing disabled styles for Buttons, Checkboxes, and Radios.
11+
We’ve updated the disabled state of Text Input, Textarea, Select and File Upload components so it is consistent across browsers and devices. They’re also now consistent with the existing disabled styles for Buttons, Checkboxes, and Radios.
1012

11-
Disabled form controls appear with their opacity reduced by 50% and with an alternative cursor appearance when hovered over.
13+
Disabled form controls appear at 50% opacity and with an alternative cursor appearance when hovered over.
1214

1315
This was added in [pull request #3187: Add disabled styles for form controls](https://github.com/alphagov/govuk-frontend/pull/3187).
1416

1517
#### Added a top-level `disabled` parameter to form controls
1618

17-
The Nunjucks macros for Text Input, Textarea, Select and File Upload components have been updated to include a top-level `disabled` parameter, making it easier to enable the disabled state for these controls.
19+
We’ve updated the Nunjucks macros for Text Input, Textarea, Select and File Upload components to include a top-level `disabled` parameter. This will make it easier to enable the disabled state for these controls.
1820

1921
```nunjucks
2022
{{ govukInput({
@@ -33,7 +35,7 @@ This was added in [pull request #3187: Add disabled styles for form controls](ht
3335

3436
#### Configure whether the Accordion remembers and restores sessions
3537

36-
By default, when a user leaves a page, the [Accordion](https://design-system.service.gov.uk/components/accordion/) will remember the layout of expanded and collapsed sections selected by the user. If the user returns to the page, this layout will be restored and override any sections manually set as `expanded` in code.
38+
By default, when a user leaves a page, the [Accordion](https://design-system.service.gov.uk/components/accordion/) will remember the layout of expanded and collapsed sections selected by the user. If the user returns to the page, this layout will be restored and override any sections manually set as expanded in code.
3739

3840
You can now disable this functionality by using the `rememberExpanded` option in the `govukAccordion` Nunjucks macro.
3941

@@ -43,7 +45,7 @@ This was added in [pull request #3342: Add option to disable sessionState in Acc
4345

4446
#### Added `id` parameter to Buttons
4547

46-
The [Button](https://design-system.service.gov.uk/components/button/) Nunjucks macro has been updated to include an optional `id` parameter.
48+
We’ve updated the [Button](https://design-system.service.gov.uk/components/button/) Nunjucks macro to include an optional `id` parameter.
4749

4850
```nunjucks
4951
{{ govukButton({
@@ -52,7 +54,9 @@ The [Button](https://design-system.service.gov.uk/components/button/) Nunjucks m
5254
}) }}
5355
```
5456

55-
This was added in [pull request #3344: Adding optional id attribute to button component](https://github.com/alphagov/govuk-frontend/pull/3344). Thanks to [Tom Billington](https://github.com/TomBillingtonUK) for this contribution.
57+
This was added in [pull request #3344: Adding optional ‘id’ attribute to button component](https://github.com/alphagov/govuk-frontend/pull/3344).
58+
59+
Thanks to [Tom Billington](https://github.com/TomBillingtonUK) for this contribution.
5660

5761
#### Added a modifier for text input styles that accept sequences of digits
5862

@@ -66,25 +70,27 @@ This was added in [pull request #2230: Add extra letter spacing modifier for inp
6670

6771
#### Stop using JavaScript API properties other than the `init` method
6872

69-
We have deprecated all of the JavaScript properties in the API, except for the `init` method for each component. We will make all of the deprecated JavaScript properties private in v5.0.
73+
We have deprecated all of the JavaScript properties in the API, except for the `init` method for each component. We'll make all of the deprecated JavaScript properties private in [our next main release](https://github.com/alphagov/govuk-frontend/milestone/46).
7074

7175
Please [let us know if you're using parts of the API other than the `init` method by filling in this form](https://docs.google.com/forms/d/e/1FAIpQLSfmH2AitMeouXqB0FWC5p5e6y1TSiFCjmJ8DrVuwfmpRGCaWw/viewform?usp=sf_link). We'll use this information when prioritising future additions to the public API.
7276

7377
This was added in [pull request #3499: Deprecate all JavaScript instance properties the except `init` method](https://github.com/alphagov/govuk-frontend/pull/3499).
7478

75-
#### Stop using the `govuk-button--disabled` class on buttons
79+
#### Stop using the `.govuk-button--disabled` class on buttons
80+
81+
We have deprecated the `.govuk-button--disabled` class and will remove it in the next major release.
7682

77-
The `govuk-button--disabled` class is deprecated and will be removed in the next major release.
83+
If a [Button](https://design-system.service.gov.uk/components/button/) uses a `<button>` or `<input>` element, use the disabled HTML attribute instead.
7884

79-
If a [Button](https://design-system.service.gov.uk/components/button/) uses a `<button>` or `<input>` element, use the `disabled` HTML attribute instead. You will not need to make any changes if you're using the `govukButton` Nunjucks macro.
85+
You will not need to make any changes if you're using the `govukButton` Nunjucks macro.
8086

8187
Disabling links that are styled to look like buttons will not be supported by future releases.
8288

8389
This was added in [pull request #3326: Deprecate `govuk-button--disabled` class](https://github.com/alphagov/govuk-frontend/pull/3326).
8490

85-
#### Stop using the deprecated IE8 mixins and settings
91+
#### Stop using the deprecated Internet Explorer 8 mixins and settings
8692

87-
The next major version of GOV.UK Frontend will remove support for Internet Explorer 8 (IE8). In preparation for this, we've deprecated the settings and mixins used when [generating IE8 specific stylesheets](https://frontend.design-system.service.gov.uk/supporting-ie8/#2-generate-an-ie8-specific-stylesheet).
93+
The next main release of GOV.UK Frontend will remove support for Internet Explorer 8 (IE8). In preparation for this, we've deprecated the settings and mixins used when [generating IE8 specific stylesheets](https://frontend.design-system.service.gov.uk/supporting-ie8/#2-generate-an-ie8-specific-stylesheet).
8894

8995
You'll start seeing deprecation warnings if you're:
9096

@@ -93,7 +99,7 @@ You'll start seeing deprecation warnings if you're:
9399

94100
If you no longer need to support IE8, we recommend you stop generating an IE8 specific stylesheet and remove references to the IE8 mixins from your code.
95101

96-
You can also silence these deprecation warnings by adding `ie8` to the [$govuk-suppressed-warnings](https://frontend.design-system.service.gov.uk/sass-api-reference/#govuk-suppressed-warnings) setting, but once v5.0 has been released you will need to address them as part of the upgrade process.
102+
You can also silence these deprecation warnings by adding `ie8` to the [`$govuk-suppressed-warnings`](https://frontend.design-system.service.gov.uk/sass-api-reference/#govuk-suppressed-warnings) setting, but once we’ve released v5.0 you will need to address them as part of the upgrade process.
97103

98104
### Fixes
99105

dist/VERSION.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.5.0
1+
4.6.0

dist/govuk-frontend-4.5.0.min.css

-4
This file was deleted.

dist/govuk-frontend-4.5.0.min.css.map

-1
This file was deleted.

dist/govuk-frontend-4.5.0.min.js

-2
This file was deleted.

dist/govuk-frontend-4.5.0.min.js.map

-1
This file was deleted.

dist/govuk-frontend-4.6.0.min.css

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/govuk-frontend-4.6.0.min.css.map

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/govuk-frontend-4.6.0.min.js

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/govuk-frontend-4.6.0.min.js.map

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/govuk-frontend-ie8-4.5.0.min.css

-2
This file was deleted.

dist/govuk-frontend-ie8-4.5.0.min.css.map

-1
This file was deleted.

dist/govuk-frontend-ie8-4.6.0.min.css

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/govuk-frontend-ie8-4.6.0.min.css.map

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package/govuk-esm/all.mjs

+81-60
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,46 @@
1-
import { nodeListForEach } from './common/index.mjs'
2-
import Accordion from './components/accordion/accordion.mjs'
3-
import Button from './components/button/button.mjs'
4-
import CharacterCount from './components/character-count/character-count.mjs'
5-
import Checkboxes from './components/checkboxes/checkboxes.mjs'
6-
import Details from './components/details/details.mjs'
7-
import ErrorSummary from './components/error-summary/error-summary.mjs'
8-
import Header from './components/header/header.mjs'
9-
import NotificationBanner from './components/notification-banner/notification-banner.mjs'
10-
import Radios from './components/radios/radios.mjs'
11-
import SkipLink from './components/skip-link/skip-link.mjs'
12-
import Tabs from './components/tabs/tabs.mjs'
1+
import { version } from './common/govuk-frontend-version.mjs';
2+
export { version } from './common/govuk-frontend-version.mjs';
3+
import { nodeListForEach } from './common/index.mjs';
4+
import Accordion from './components/accordion/accordion.mjs';
5+
export { default as Accordion } from './components/accordion/accordion.mjs';
6+
import Button from './components/button/button.mjs';
7+
export { default as Button } from './components/button/button.mjs';
8+
import CharacterCount from './components/character-count/character-count.mjs';
9+
export { default as CharacterCount } from './components/character-count/character-count.mjs';
10+
import Checkboxes from './components/checkboxes/checkboxes.mjs';
11+
export { default as Checkboxes } from './components/checkboxes/checkboxes.mjs';
12+
import Details from './components/details/details.mjs';
13+
export { default as Details } from './components/details/details.mjs';
14+
import ErrorSummary from './components/error-summary/error-summary.mjs';
15+
export { default as ErrorSummary } from './components/error-summary/error-summary.mjs';
16+
import Header from './components/header/header.mjs';
17+
export { default as Header } from './components/header/header.mjs';
18+
import NotificationBanner from './components/notification-banner/notification-banner.mjs';
19+
export { default as NotificationBanner } from './components/notification-banner/notification-banner.mjs';
20+
import Radios from './components/radios/radios.mjs';
21+
export { default as Radios } from './components/radios/radios.mjs';
22+
import SkipLink from './components/skip-link/skip-link.mjs';
23+
export { default as SkipLink } from './components/skip-link/skip-link.mjs';
24+
import Tabs from './components/tabs/tabs.mjs';
25+
export { default as Tabs } from './components/tabs/tabs.mjs';
26+
import './common/normalise-dataset.mjs';
27+
import './vendor/polyfills/Element/prototype/dataset.mjs';
28+
import './vendor/polyfills/Object/defineProperty.mjs';
29+
import './vendor/polyfills/Element.mjs';
30+
import './vendor/polyfills/Document.mjs';
31+
import './vendor/polyfills/String/prototype/trim.mjs';
32+
import './i18n.mjs';
33+
import './vendor/polyfills/Element/prototype/classList.mjs';
34+
import './vendor/polyfills/DOMTokenList.mjs';
35+
import './vendor/polyfills/Element/prototype/closest.mjs';
36+
import './vendor/polyfills/Element/prototype/matches.mjs';
37+
import './vendor/polyfills/Event.mjs';
38+
import './vendor/polyfills/Window.mjs';
39+
import './vendor/polyfills/Function/prototype/bind.mjs';
40+
import './common/closest-attribute-value.mjs';
41+
import './vendor/polyfills/Date/now.mjs';
42+
import './vendor/polyfills/Element/prototype/nextElementSibling.mjs';
43+
import './vendor/polyfills/Element/prototype/previousElementSibling.mjs';
1344

1445
/**
1546
* Initialise all components
@@ -20,92 +51,82 @@ import Tabs from './components/tabs/tabs.mjs'
2051
* @param {Config} [config] - Config for all components
2152
*/
2253
function initAll (config) {
23-
config = typeof config !== 'undefined' ? config : {}
54+
config = typeof config !== 'undefined' ? config : {};
2455

2556
// Allow the user to initialise GOV.UK Frontend in only certain sections of the page
2657
// Defaults to the entire document if nothing is set.
27-
var $scope = typeof config.scope !== 'undefined' ? config.scope : document
58+
var $scope = config.scope instanceof HTMLElement ? config.scope : document;
2859

29-
var $accordions = $scope.querySelectorAll('[data-module="govuk-accordion"]')
60+
var $accordions = $scope.querySelectorAll('[data-module="govuk-accordion"]');
3061
nodeListForEach($accordions, function ($accordion) {
31-
new Accordion($accordion, config.accordion).init()
32-
})
62+
new Accordion($accordion, config.accordion).init();
63+
});
3364

34-
var $buttons = $scope.querySelectorAll('[data-module="govuk-button"]')
65+
var $buttons = $scope.querySelectorAll('[data-module="govuk-button"]');
3566
nodeListForEach($buttons, function ($button) {
36-
new Button($button, config.button).init()
37-
})
67+
new Button($button, config.button).init();
68+
});
3869

39-
var $characterCounts = $scope.querySelectorAll('[data-module="govuk-character-count"]')
70+
var $characterCounts = $scope.querySelectorAll('[data-module="govuk-character-count"]');
4071
nodeListForEach($characterCounts, function ($characterCount) {
41-
new CharacterCount($characterCount, config.characterCount).init()
42-
})
72+
new CharacterCount($characterCount, config.characterCount).init();
73+
});
4374

44-
var $checkboxes = $scope.querySelectorAll('[data-module="govuk-checkboxes"]')
75+
var $checkboxes = $scope.querySelectorAll('[data-module="govuk-checkboxes"]');
4576
nodeListForEach($checkboxes, function ($checkbox) {
46-
new Checkboxes($checkbox).init()
47-
})
77+
new Checkboxes($checkbox).init();
78+
});
4879

49-
var $details = $scope.querySelectorAll('[data-module="govuk-details"]')
80+
var $details = $scope.querySelectorAll('[data-module="govuk-details"]');
5081
nodeListForEach($details, function ($detail) {
51-
new Details($detail).init()
52-
})
82+
new Details($detail).init();
83+
});
5384

5485
// Find first error summary module to enhance.
55-
var $errorSummary = $scope.querySelector('[data-module="govuk-error-summary"]')
86+
var $errorSummary = $scope.querySelector('[data-module="govuk-error-summary"]');
5687
if ($errorSummary) {
57-
new ErrorSummary($errorSummary, config.errorSummary).init()
88+
new ErrorSummary($errorSummary, config.errorSummary).init();
5889
}
5990

6091
// Find first header module to enhance.
61-
var $header = $scope.querySelector('[data-module="govuk-header"]')
92+
var $header = $scope.querySelector('[data-module="govuk-header"]');
6293
if ($header) {
63-
new Header($header).init()
94+
new Header($header).init();
6495
}
6596

66-
var $notificationBanners = $scope.querySelectorAll('[data-module="govuk-notification-banner"]')
97+
var $notificationBanners = $scope.querySelectorAll('[data-module="govuk-notification-banner"]');
6798
nodeListForEach($notificationBanners, function ($notificationBanner) {
68-
new NotificationBanner($notificationBanner, config.notificationBanner).init()
69-
})
99+
new NotificationBanner($notificationBanner, config.notificationBanner).init();
100+
});
70101

71-
var $radios = $scope.querySelectorAll('[data-module="govuk-radios"]')
102+
var $radios = $scope.querySelectorAll('[data-module="govuk-radios"]');
72103
nodeListForEach($radios, function ($radio) {
73-
new Radios($radio).init()
74-
})
104+
new Radios($radio).init();
105+
});
75106

76107
// Find first skip link module to enhance.
77-
var $skipLink = $scope.querySelector('[data-module="govuk-skip-link"]')
78-
new SkipLink($skipLink).init()
108+
var $skipLink = $scope.querySelector('[data-module="govuk-skip-link"]');
109+
if ($skipLink) {
110+
new SkipLink($skipLink).init();
111+
}
79112

80-
var $tabs = $scope.querySelectorAll('[data-module="govuk-tabs"]')
113+
var $tabs = $scope.querySelectorAll('[data-module="govuk-tabs"]');
81114
nodeListForEach($tabs, function ($tabs) {
82-
new Tabs($tabs).init()
83-
})
84-
}
85-
86-
export {
87-
initAll,
88-
Accordion,
89-
Button,
90-
Details,
91-
CharacterCount,
92-
Checkboxes,
93-
ErrorSummary,
94-
Header,
95-
NotificationBanner,
96-
Radios,
97-
SkipLink,
98-
Tabs
115+
new Tabs($tabs).init();
116+
});
99117
}
100118

101119
/**
102120
* Config for all components
103121
*
104122
* @typedef {object} Config
105-
* @property {HTMLElement} [scope=document] - Scope to query for components
123+
* @property {Element} [scope=document] - Scope to query for components
106124
* @property {import('./components/accordion/accordion.mjs').AccordionConfig} [accordion] - Accordion config
107125
* @property {import('./components/button/button.mjs').ButtonConfig} [button] - Button config
108126
* @property {import('./components/character-count/character-count.mjs').CharacterCountConfig} [characterCount] - Character Count config
109127
* @property {import('./components/error-summary/error-summary.mjs').ErrorSummaryConfig} [errorSummary] - Error Summary config
110128
* @property {import('./components/notification-banner/notification-banner.mjs').NotificationBannerConfig} [notificationBanner] - Notification Banner config
111129
*/
130+
131+
export { initAll };
132+
//# sourceMappingURL=all.mjs.map

0 commit comments

Comments
 (0)