Skip to content

Commit

Permalink
Merge pull request #3912 from alphagov/support-release-4.7.0
Browse files Browse the repository at this point in the history
Release v4.7.0
  • Loading branch information
owenatgov committed Jul 6, 2023
2 parents 655404d + 8a0f9ed commit bf9dbbf
Show file tree
Hide file tree
Showing 44 changed files with 3,384 additions and 39 deletions.
2 changes: 1 addition & 1 deletion dist/VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.6.0
4.7.0
3 changes: 0 additions & 3 deletions dist/govuk-frontend-4.6.0.min.css

This file was deleted.

1 change: 0 additions & 1 deletion dist/govuk-frontend-4.6.0.min.css.map

This file was deleted.

2 changes: 0 additions & 2 deletions dist/govuk-frontend-4.6.0.min.js

This file was deleted.

1 change: 0 additions & 1 deletion dist/govuk-frontend-4.6.0.min.js.map

This file was deleted.

3 changes: 3 additions & 0 deletions dist/govuk-frontend-4.7.0.min.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/govuk-frontend-4.7.0.min.css.map

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions dist/govuk-frontend-4.7.0.min.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/govuk-frontend-4.7.0.min.js.map

Large diffs are not rendered by default.

2 changes: 0 additions & 2 deletions dist/govuk-frontend-ie8-4.6.0.min.css

This file was deleted.

1 change: 0 additions & 1 deletion dist/govuk-frontend-ie8-4.6.0.min.css.map

This file was deleted.

2 changes: 2 additions & 0 deletions dist/govuk-frontend-ie8-4.7.0.min.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/govuk-frontend-ie8-4.7.0.min.css.map

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions package/govuk-esm/all.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ import Details from './components/details/details.mjs';
export { default as Details } from './components/details/details.mjs';
import ErrorSummary from './components/error-summary/error-summary.mjs';
export { default as ErrorSummary } from './components/error-summary/error-summary.mjs';
import ExitThisPage from './components/exit-this-page/exit-this-page.mjs';
export { default as ExitThisPage } from './components/exit-this-page/exit-this-page.mjs';
import Header from './components/header/header.mjs';
export { default as Header } from './components/header/header.mjs';
import NotificationBanner from './components/notification-banner/notification-banner.mjs';
Expand Down Expand Up @@ -88,6 +90,11 @@ function initAll (config) {
new ErrorSummary($errorSummary, config.errorSummary).init();
}

var $exitThisPageButtons = $scope.querySelectorAll('[data-module="govuk-exit-this-page"]');
nodeListForEach($exitThisPageButtons, function ($button) {
new ExitThisPage($button, config.exitThisPage).init();
});

// Find first header module to enhance.
var $header = $scope.querySelector('[data-module="govuk-header"]');
if ($header) {
Expand Down Expand Up @@ -125,6 +132,7 @@ function initAll (config) {
* @property {import('./components/button/button.mjs').ButtonConfig} [button] - Button config
* @property {import('./components/character-count/character-count.mjs').CharacterCountConfig} [characterCount] - Character Count config
* @property {import('./components/error-summary/error-summary.mjs').ErrorSummaryConfig} [errorSummary] - Error Summary config
* @property {import('./components/exit-this-page/exit-this-page.mjs').ExitThisPageConfig} [exitThisPage] - Exit This Page config
* @property {import('./components/notification-banner/notification-banner.mjs').NotificationBannerConfig} [notificationBanner] - Notification Banner config
*/

Expand Down
2 changes: 1 addition & 1 deletion package/govuk-esm/all.mjs.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package/govuk-esm/common/govuk-frontend-version.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* It doesn't need to be updated manually.
*/

var version = '4.6.0';
var version = '4.7.0';

export { version };
//# sourceMappingURL=common/govuk-frontend-version.mjs.map
Loading

0 comments on commit bf9dbbf

Please sign in to comment.