You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: CHANGELOG.md
+19-13
Original file line number
Diff line number
Diff line change
@@ -2,19 +2,21 @@
2
2
3
3
## Unreleased
4
4
5
+
## 4.6.0 (Feature release)
6
+
5
7
### New features
6
8
7
9
#### Updated the appearance of disabled form controls
8
10
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.
10
12
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.
12
14
13
15
This was added in [pull request #3187: Add disabled styles for form controls](https://github.com/alphagov/govuk-frontend/pull/3187).
14
16
15
17
#### Added a top-level `disabled` parameter to form controls
16
18
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.
18
20
19
21
```nunjucks
20
22
{{ govukInput({
@@ -33,7 +35,7 @@ This was added in [pull request #3187: Add disabled styles for form controls](ht
33
35
34
36
#### Configure whether the Accordion remembers and restores sessions
35
37
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.
37
39
38
40
You can now disable this functionality by using the `rememberExpanded` option in the `govukAccordion` Nunjucks macro.
39
41
@@ -43,7 +45,7 @@ This was added in [pull request #3342: Add option to disable sessionState in Acc
43
45
44
46
#### Added `id` parameter to Buttons
45
47
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.
47
49
48
50
```nunjucks
49
51
{{ govukButton({
@@ -52,7 +54,9 @@ The [Button](https://design-system.service.gov.uk/components/button/) Nunjucks m
52
54
}) }}
53
55
```
54
56
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.
56
60
57
61
#### Added a modifier for text input styles that accept sequences of digits
58
62
@@ -66,25 +70,27 @@ This was added in [pull request #2230: Add extra letter spacing modifier for inp
66
70
67
71
#### Stop using JavaScript API properties other than the `init` method
68
72
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).
70
74
71
75
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.
72
76
73
77
This was added in [pull request #3499: Deprecate all JavaScript instance properties the except `init` method](https://github.com/alphagov/govuk-frontend/pull/3499).
74
78
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.
76
82
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.
78
84
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.
80
86
81
87
Disabling links that are styled to look like buttons will not be supported by future releases.
82
88
83
89
This was added in [pull request #3326: Deprecate `govuk-button--disabled` class](https://github.com/alphagov/govuk-frontend/pull/3326).
84
90
85
-
#### Stop using the deprecated IE8 mixins and settings
91
+
#### Stop using the deprecated Internet Explorer 8 mixins and settings
86
92
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).
88
94
89
95
You'll start seeing deprecation warnings if you're:
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.
95
101
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.
0 commit comments