Skip to content

Commit 5461fac

Browse files
author
Jani Kraner
authored
Merge pull request #654 from alphagov/release-v-0.0.28
Release v0.0.28-alpha
2 parents 30efc0e + d9e35e7 commit 5461fac

38 files changed

+320
-84
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,14 @@ Internal:
3333
- Update publishing docs (PR [#651](https://github.com/alphagov/govuk-frontend/pull/651))
3434
- Wrap `app.css` in conditional comments in review app layout (PR [#653](https://github.com/alphagov/govuk-frontend/pull/653))
3535

36+
## 0.0.28-alpha (Breaking release)
37+
38+
Fixes incomplete release from `packages/` and `dist/` in 0.0.27-alpha release.
39+
Missing files were:
40+
- globals/tools/_compatibility.scss
41+
- globals/tools/_ie8.scss
42+
- globals/settings/_compatibility.scss
43+
- globals/settings/_ie8.scss
3644

3745
## 0.0.27-alpha (Breaking release)
3846

dist/VERSION.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.0.27-alpha
1+
0.0.28-alpha
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
// We default these settings to true so that if they are missed we opt for a
2+
// mild performance hit over a potential broken experience for the end-user.
3+
4+
/// Compatibility Mode: alphagov/govuk_frontend_toolkit
5+
///
6+
/// @type Boolean True if used in a project that also includes
7+
/// alphagov/govuk_frontend_toolkit.
8+
9+
$govuk-compatibility-govukfrontendtoolkit: true !default;
10+
11+
/// Compatibility Mode: alphagov/govuk_template
12+
///
13+
/// @type Boolean True if used in a project that also includes
14+
/// alphagov/govuk_template
15+
16+
$govuk-compatibility-govuktemplate: true !default;
17+
18+
/// Compatibility Mode: alphagov/govuk_elements
19+
///
20+
/// @type Boolean True if used in a project that also includes
21+
/// alphagov/govuk_elements
22+
23+
$govuk-compatibility-govukelements: true !default;
24+
25+
/// Compatibility Product Map
26+
///
27+
/// @type Map Map of product names to their settings that we can use to lookup
28+
/// states from within the `@govuk-compatibility` mixin.
29+
30+
$govuk-compatibility: (
31+
govuk_frontend_toolkit: $govuk-compatibility-govukfrontendtoolkit,
32+
govuk_template: $govuk-compatibility-govuktemplate,
33+
govuk_elements: $govuk-compatibility-govukelements,
34+
);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
// Whether the stylesheet being built is targeting Internet Explorer 8. Used by
2+
// the ie8 mixin tools and in other settings.
3+
// @type Bool
4+
$govuk-is-ie8: false !default;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
/// Conditional Compatibility Mixin
2+
///
3+
/// Selectively output a block (available to the mixin as @content) if a given
4+
/// $product is also identified as being used in the project.
5+
///
6+
/// This can then be used to include styles that are only needed to override
7+
/// styles provided by those other products (e.g. where govuk_template has a
8+
/// very specific link selector that otherwise affects buttons).
9+
///
10+
/// @example scss
11+
/// // Override .my-class if GOV.UK Template is also being used
12+
/// @include govuk-compatibility(govuk_template) {
13+
/// .my-class {
14+
/// color: inherit;
15+
/// }
16+
/// }
17+
///
18+
/// @param String Name of product that we are defending against.
19+
///
20+
/// @throw If product name is not recognised
21+
22+
@mixin govuk-compatibility($product) {
23+
@if map-has-key($govuk-compatibility, $product) {
24+
@if map-get($govuk-compatibility, $product) == true {
25+
@content;
26+
}
27+
} @else {
28+
@error "Non existent compatibility product '#{$product}'";
29+
}
30+
}
+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
// Include IE8 settings where these tools are used directly within a component
2+
@import "../settings/ie8";
3+
4+
/// Conditionally include rules only for IE8
5+
///
6+
/// Only output the CSS passed to the mixin if the $govuk-is-ie8 variable is
7+
/// set to true, which means the rules should only be outputted if compiling an
8+
/// IE8 specific stylesheet.
9+
///
10+
/// @example scss - Usage
11+
///
12+
/// .foo {
13+
/// min-width: 100px;
14+
/// // Specify width for IE8 only
15+
/// @include govuk-is-ie8 {
16+
/// width: 100px;
17+
/// }
18+
/// }
19+
@mixin govuk-if-ie8 {
20+
@if $govuk-is-ie8 {
21+
@content;
22+
}
23+
}
24+
25+
/// Conditionally exclude rules for IE8
26+
///
27+
/// Only output the CSS passed to the mixin if the $govuk-is-ie8 variable is
28+
/// not set to true, which means the rules should be excluded when compiling
29+
/// an IE8 specific stylesheet.
30+
///
31+
/// @example scss - Usage
32+
///
33+
/// .foo {
34+
/// font-weight: bold;
35+
///
36+
/// // Enhance foo only for modern browsers (not IE8)
37+
/// @include govuk-not-ie8 {
38+
/// font-family: "Comic Sans MS", "Curlz MT" cursive, sans-serif;
39+
/// color: #FF69B4;
40+
/// }
41+
/// }
42+
@mixin govuk-not-ie8 {
43+
@if not $govuk-is-ie8 {
44+
@content;
45+
}
46+
}

packages/all/package.json

+24-24
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
{
22
"name": "@govuk-frontend/all",
3-
"version": "0.0.27-alpha",
3+
"version": "0.0.28-alpha",
44
"dependencies": {
5-
"@govuk-frontend/back-link": "^0.0.27-alpha",
6-
"@govuk-frontend/breadcrumbs": "^0.0.27-alpha",
7-
"@govuk-frontend/button": "^0.0.27-alpha",
8-
"@govuk-frontend/checkboxes": "^0.0.27-alpha",
9-
"@govuk-frontend/date-input": "^0.0.27-alpha",
10-
"@govuk-frontend/details": "^0.0.27-alpha",
11-
"@govuk-frontend/error-message": "^0.0.27-alpha",
12-
"@govuk-frontend/error-summary": "^0.0.27-alpha",
13-
"@govuk-frontend/fieldset": "^0.0.27-alpha",
14-
"@govuk-frontend/file-upload": "^0.0.27-alpha",
15-
"@govuk-frontend/footer": "^0.0.27-alpha",
16-
"@govuk-frontend/icons": "^0.0.27-alpha",
17-
"@govuk-frontend/input": "^0.0.27-alpha",
18-
"@govuk-frontend/label": "^0.0.27-alpha",
19-
"@govuk-frontend/panel": "^0.0.27-alpha",
20-
"@govuk-frontend/phase-banner": "^0.0.27-alpha",
21-
"@govuk-frontend/radios": "^0.0.27-alpha",
22-
"@govuk-frontend/select": "^0.0.27-alpha",
23-
"@govuk-frontend/skip-link": "^0.0.27-alpha",
24-
"@govuk-frontend/table": "^0.0.27-alpha",
25-
"@govuk-frontend/tag": "^0.0.27-alpha",
26-
"@govuk-frontend/textarea": "^0.0.27-alpha",
27-
"@govuk-frontend/warning-text": "^0.0.27-alpha"
5+
"@govuk-frontend/back-link": "^0.0.28-alpha",
6+
"@govuk-frontend/breadcrumbs": "^0.0.28-alpha",
7+
"@govuk-frontend/button": "^0.0.28-alpha",
8+
"@govuk-frontend/checkboxes": "^0.0.28-alpha",
9+
"@govuk-frontend/date-input": "^0.0.28-alpha",
10+
"@govuk-frontend/details": "^0.0.28-alpha",
11+
"@govuk-frontend/error-message": "^0.0.28-alpha",
12+
"@govuk-frontend/error-summary": "^0.0.28-alpha",
13+
"@govuk-frontend/fieldset": "^0.0.28-alpha",
14+
"@govuk-frontend/file-upload": "^0.0.28-alpha",
15+
"@govuk-frontend/footer": "^0.0.28-alpha",
16+
"@govuk-frontend/icons": "^0.0.28-alpha",
17+
"@govuk-frontend/input": "^0.0.28-alpha",
18+
"@govuk-frontend/label": "^0.0.28-alpha",
19+
"@govuk-frontend/panel": "^0.0.28-alpha",
20+
"@govuk-frontend/phase-banner": "^0.0.28-alpha",
21+
"@govuk-frontend/radios": "^0.0.28-alpha",
22+
"@govuk-frontend/select": "^0.0.28-alpha",
23+
"@govuk-frontend/skip-link": "^0.0.28-alpha",
24+
"@govuk-frontend/table": "^0.0.28-alpha",
25+
"@govuk-frontend/tag": "^0.0.28-alpha",
26+
"@govuk-frontend/textarea": "^0.0.28-alpha",
27+
"@govuk-frontend/warning-text": "^0.0.28-alpha"
2828
}
2929
}

packages/back-link/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@govuk-frontend/back-link",
3-
"version": "0.0.27-alpha",
3+
"version": "0.0.28-alpha",
44
"dependencies": {
5-
"@govuk-frontend/globals": "^0.0.27-alpha"
5+
"@govuk-frontend/globals": "^0.0.28-alpha"
66
}
77
}

packages/breadcrumbs/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "@govuk-frontend/breadcrumbs",
3-
"version": "0.0.27-alpha",
3+
"version": "0.0.28-alpha",
44
"dependencies": {
5-
"@govuk-frontend/globals": "^0.0.27-alpha",
6-
"@govuk-frontend/icons": "^0.0.27-alpha"
5+
"@govuk-frontend/globals": "^0.0.28-alpha",
6+
"@govuk-frontend/icons": "^0.0.28-alpha"
77
}
88
}

packages/button/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "@govuk-frontend/button",
3-
"version": "0.0.27-alpha",
3+
"version": "0.0.28-alpha",
44
"dependencies": {
5-
"@govuk-frontend/globals": "^0.0.27-alpha",
6-
"@govuk-frontend/icons": "^0.0.27-alpha"
5+
"@govuk-frontend/globals": "^0.0.28-alpha",
6+
"@govuk-frontend/icons": "^0.0.28-alpha"
77
}
88
}

packages/checkboxes/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "@govuk-frontend/checkboxes",
3-
"version": "0.0.27-alpha",
3+
"version": "0.0.28-alpha",
44
"dependencies": {
5-
"@govuk-frontend/globals": "^0.0.27-alpha",
6-
"@govuk-frontend/label": "^0.0.27-alpha"
5+
"@govuk-frontend/globals": "^0.0.28-alpha",
6+
"@govuk-frontend/label": "^0.0.28-alpha"
77
}
88
}

packages/date-input/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "@govuk-frontend/date-input",
3-
"version": "0.0.27-alpha",
3+
"version": "0.0.28-alpha",
44
"dependencies": {
5-
"@govuk-frontend/error-message": "^0.0.27-alpha",
6-
"@govuk-frontend/globals": "^0.0.27-alpha",
7-
"@govuk-frontend/label": "^0.0.27-alpha"
5+
"@govuk-frontend/error-message": "^0.0.28-alpha",
6+
"@govuk-frontend/globals": "^0.0.28-alpha",
7+
"@govuk-frontend/label": "^0.0.28-alpha"
88
}
99
}

packages/details/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@govuk-frontend/details",
3-
"version": "0.0.27-alpha",
3+
"version": "0.0.28-alpha",
44
"dependencies": {
5-
"@govuk-frontend/globals": "^0.0.27-alpha"
5+
"@govuk-frontend/globals": "^0.0.28-alpha"
66
}
77
}

packages/error-message/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@govuk-frontend/error-message",
3-
"version": "0.0.27-alpha",
3+
"version": "0.0.28-alpha",
44
"dependencies": {
5-
"@govuk-frontend/globals": "^0.0.27-alpha"
5+
"@govuk-frontend/globals": "^0.0.28-alpha"
66
}
77
}

packages/error-summary/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@govuk-frontend/error-summary",
3-
"version": "0.0.27-alpha",
3+
"version": "0.0.28-alpha",
44
"dependencies": {
5-
"@govuk-frontend/globals": "^0.0.27-alpha"
5+
"@govuk-frontend/globals": "^0.0.28-alpha"
66
}
77
}

packages/fieldset/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@govuk-frontend/fieldset",
3-
"version": "0.0.27-alpha",
3+
"version": "0.0.28-alpha",
44
"dependencies": {
5-
"@govuk-frontend/globals": "^0.0.27-alpha"
5+
"@govuk-frontend/globals": "^0.0.28-alpha"
66
}
77
}

packages/file-upload/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@govuk-frontend/file-upload",
3-
"version": "0.0.27-alpha",
3+
"version": "0.0.28-alpha",
44
"dependencies": {
5-
"@govuk-frontend/globals": "^0.0.27-alpha"
5+
"@govuk-frontend/globals": "^0.0.28-alpha"
66
}
77
}

packages/footer/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "@govuk-frontend/footer",
3-
"version": "0.0.27-alpha",
3+
"version": "0.0.28-alpha",
44
"dependencies": {
5-
"@govuk-frontend/globals": "^0.0.27-alpha",
6-
"@govuk-frontend/icons": "^0.0.27-alpha"
5+
"@govuk-frontend/globals": "^0.0.28-alpha",
6+
"@govuk-frontend/icons": "^0.0.28-alpha"
77
}
88
}

packages/globals/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@govuk-frontend/globals",
3-
"version": "0.0.27-alpha",
3+
"version": "0.0.28-alpha",
44
"dependencies": {
55
"sass-mq": "^3.3.2"
66
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
// We default these settings to true so that if they are missed we opt for a
2+
// mild performance hit over a potential broken experience for the end-user.
3+
4+
/// Compatibility Mode: alphagov/govuk_frontend_toolkit
5+
///
6+
/// @type Boolean True if used in a project that also includes
7+
/// alphagov/govuk_frontend_toolkit.
8+
9+
$govuk-compatibility-govukfrontendtoolkit: true !default;
10+
11+
/// Compatibility Mode: alphagov/govuk_template
12+
///
13+
/// @type Boolean True if used in a project that also includes
14+
/// alphagov/govuk_template
15+
16+
$govuk-compatibility-govuktemplate: true !default;
17+
18+
/// Compatibility Mode: alphagov/govuk_elements
19+
///
20+
/// @type Boolean True if used in a project that also includes
21+
/// alphagov/govuk_elements
22+
23+
$govuk-compatibility-govukelements: true !default;
24+
25+
/// Compatibility Product Map
26+
///
27+
/// @type Map Map of product names to their settings that we can use to lookup
28+
/// states from within the `@govuk-compatibility` mixin.
29+
30+
$govuk-compatibility: (
31+
govuk_frontend_toolkit: $govuk-compatibility-govukfrontendtoolkit,
32+
govuk_template: $govuk-compatibility-govuktemplate,
33+
govuk_elements: $govuk-compatibility-govukelements,
34+
);

packages/globals/settings/_ie8.scss

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
// Whether the stylesheet being built is targeting Internet Explorer 8. Used by
2+
// the ie8 mixin tools and in other settings.
3+
// @type Bool
4+
$govuk-is-ie8: false !default;
+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
/// Conditional Compatibility Mixin
2+
///
3+
/// Selectively output a block (available to the mixin as @content) if a given
4+
/// $product is also identified as being used in the project.
5+
///
6+
/// This can then be used to include styles that are only needed to override
7+
/// styles provided by those other products (e.g. where govuk_template has a
8+
/// very specific link selector that otherwise affects buttons).
9+
///
10+
/// @example scss
11+
/// // Override .my-class if GOV.UK Template is also being used
12+
/// @include govuk-compatibility(govuk_template) {
13+
/// .my-class {
14+
/// color: inherit;
15+
/// }
16+
/// }
17+
///
18+
/// @param String Name of product that we are defending against.
19+
///
20+
/// @throw If product name is not recognised
21+
22+
@mixin govuk-compatibility($product) {
23+
@if map-has-key($govuk-compatibility, $product) {
24+
@if map-get($govuk-compatibility, $product) == true {
25+
@content;
26+
}
27+
} @else {
28+
@error "Non existent compatibility product '#{$product}'";
29+
}
30+
}

0 commit comments

Comments
 (0)