Skip to content

Commit 9b78915

Browse files
authored
Merge pull request #5588 from alphagov/release-5.8.0
Release v5.8.0
2 parents db96257 + 43f2b61 commit 9b78915

11 files changed

+19
-13
lines changed

CHANGELOG.md

+11-5
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,20 @@ For advice on how to use these release notes see [our guidance on staying up to
44

55
## Unreleased
66

7-
### Use our base configurable component to build your own configurable component
7+
## v5.8.0 (Feature release)
88

9-
We've added a `ConfigurableComponent` class to help you build your own configurable components. It extends our base component class and so it allows you to focus on your components' specific features by handling these shared behaviours across components:
9+
To install this version with npm, run `npm install [email protected]`. You can also find more information about [how to stay up to date](https://frontend.design-system.service.gov.uk/staying-up-to-date/#updating-to-the-latest-version) in our documentation.
10+
11+
### New features
12+
13+
#### Use our base configurable component to build your own configurable component
14+
15+
We've added a `ConfigurableComponent` class to help you build your own configurable components. It extends our `Component` class and allows you to focus on your components' specific features by handling these shared behaviours across components:
1016

1117
- checking that GOV.UK Frontend is supported
1218
- checking that the component is not already initialised on its root element
13-
- checking the type of the root element and storing it for access within the component as this.$root
14-
- taking a configuration object as a parameter and then storing it for access within the component as this.config
19+
- checking the type of the root element and storing it for access within the component as `this.$root`
20+
- taking a configuration object as a parameter and then storing it for access within the component as `this.config`
1521
- merging a passed configuration object with configuration options specified on the data attributes of the root element
1622

1723
We introduced this change in:
@@ -27,7 +33,7 @@ You'll see a warning when compiling your Sass if you import all of GOV.UK Fronte
2733

2834
In your import statements, use a trailing `/index` rather than `/all` to load GOV.UK Frontend's files:
2935

30-
- `@import "govuk/index";` instead of `@import "govuk/all";`;
36+
- `@import "govuk/index";` instead of `@import "govuk/all";`
3137

3238
You do not need `/index` at the end of each import path if you’re using Dart Sass.
3339

dist/VERSION.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.7.1
1+
5.8.0

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

-1
This file was deleted.

dist/govuk-frontend-5.7.1.min.js

-1
This file was deleted.

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

-1
This file was deleted.

dist/govuk-frontend-5.7.1.min.css dist/govuk-frontend-5.8.0.min.css

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

dist/govuk-frontend-5.8.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-5.8.0.min.js

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

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

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

package-lock.json

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

packages/govuk-frontend/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "govuk-frontend",
33
"description": "GOV.UK Frontend contains the code you need to start building a user interface for government platforms and services.",
4-
"version": "5.7.1",
4+
"version": "5.8.0",
55
"main": "dist/govuk/all.bundle.js",
66
"module": "dist/govuk/all.mjs",
77
"sass": "dist/govuk/index.scss",

0 commit comments

Comments
 (0)