-
Notifications
You must be signed in to change notification settings - Fork 335
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Release v5.2.0 #4788
Merged
Merged
Release v5.2.0 #4788
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
govuk-design-system-ci
temporarily deployed
to
govuk-frontend-pr-4788
February 21, 2024 11:15
Inactive
JavaScript changes to GitHub releasediff --git a/dist/govuk-frontend-5.1.0.min.js b/dist/govuk-frontend-5.2.0.min.js
index f4274f5bd..a6cf3ebc2 100644
--- a/dist/govuk-frontend-5.1.0.min.js
+++ b/dist/govuk-frontend-5.2.0.min.js
@@ -1,4 +1,4 @@
-const version = "5.1.0";
+const version = "5.2.0";
function mergeConfigs(...t) {
function flattenObject(t) {
@@ -1013,4 +1013,4 @@ export {
Tabs,
initAll,
version
-}; //# sourceMappingURL=govuk-frontend-5.1.0.min.js.map
\ No newline at end of file
+}; //# sourceMappingURL=govuk-frontend-5.2.0.min.js.map
\ No newline at end of file
Action run for ac860ed |
Stylesheets changes to GitHub releasediff --git a/dist/govuk-frontend-5.1.0.min.css b/dist/govuk-frontend-5.2.0.min.css
index 1719cc124..8cc48decc 100644
--- a/dist/govuk-frontend-5.1.0.min.css
+++ b/dist/govuk-frontend-5.2.0.min.css
@@ -1,7 +1,7 @@
@charset "UTF-8";
:root {
- --govuk-frontend-version: "5.1.0";
+ --govuk-frontend-version: "5.2.0";
--govuk-frontend-breakpoint-mobile: 20rem;
--govuk-frontend-breakpoint-tablet: 40.0625rem;
--govuk-frontend-breakpoint-desktop: 48.0625rem
@@ -2476,6 +2476,7 @@
}
.govuk-checkboxes__input {
+ z-index: 1;
width: 44px;
height: 44px;
margin: 0;
@@ -4815,6 +4816,7 @@ only screen and (min-resolution:2dppx) {
}
.govuk-radios__input {
+ z-index: 1;
width: 44px;
height: 44px;
margin: 0;
@@ -7600,4 +7602,4 @@ screen and (-ms-high-contrast:active) {
}
}
-/*# sourceMappingURL=govuk-frontend-5.1.0.min.css.map */
\ No newline at end of file
+/*# sourceMappingURL=govuk-frontend-5.2.0.min.css.map */
\ No newline at end of file
Action run for ac860ed |
Other changes to GitHub releasediff --git a/dist/VERSION.txt b/dist/VERSION.txt
index 831446cbd..91ff57278 100644
--- a/dist/VERSION.txt
+++ b/dist/VERSION.txt
@@ -1 +1 @@
-5.1.0
+5.2.0
Action run for ac860ed |
domoscargin
approved these changes
Feb 21, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚀
📋 StatsFile sizes
Modules
View stats and visualisations on the review app Action run for ac860ed |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
5.2.0 (feature release)
In this release, we’ve adjusted our responsive type scale, which is available behind a feature flag. The type scale change is to make text easier to read on smaller screens. We’ve also deprecated the
useTudorCrown
parameter.To install this version with npm, run
npm install govuk-frontend@5.2.0
. You can also find more information about how to stay up to date in our documentation.New features
We've adjusted our responsive type scale
We've made the following adjustments to our responsive type scale:
To enable these changes, set the feature flag variable
$govuk-new-typography-scale
totrue
before you import GOV.UK Frontend in your Sass files:If your service uses custom elements made using GOV.UK Frontend, test your service against the new typography scale to assess if you need to make any adjustments.
You can read more on upgrading your service to the new type scale in our upgrade guide.
This change was introduced in pull request #2421: Adjust the responsive type scale
Insert custom HTML into component form group wrappers
You can now insert custom HTML into form group wrappers for all components with form fields.
This change was introduced in pull request #4567: Add
beforeInput(s)
andbeforeInput(s)
options to form groups.Deprecated features
Stop using the
useTudorCrown
parameter in the Heading componentThe rollout for the revised GOV.UK logo has started and the Tudor crown logo is now shown by default. We’ve deprecated the
useTudorCrown
parameter and will remove it in the next major release.You can now remove the
useTudorCrown
parameter, along with any other adjustments made to display the Tudor crown logo in your service.This change was introduced in pull request #4740: Make Tudor Crown logo the default
Fixes
We've made fixes to GOV.UK Frontend in the following pull requests:
calc()
compatibility in Radios and Checkboxes