govuk_publishing_components 59.2.0 → 60.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 41f82022780f797229d0b34e4198883f6cf2db82f52423ba99f1572f7fc8145a
4
- data.tar.gz: 23a2b1366c0b460fa28e92db4ba538fc0e994b42d4f41e3f02487052e61636d7
3
+ metadata.gz: 19ec497573718b8b4a1109fdfa230923222ab8dc09f030301e4b9749f4d1a711
4
+ data.tar.gz: 65be7c1ae928f0af8e21678ca5a2af266e76cc41e7d5329f147a97f68b5c5dd4
5
5
  SHA512:
6
- metadata.gz: a7c4703e1b53cb9d00b644dd1e4e4b72f5c2335dd85e981fe76e4dd1a96d45ae27ec5e8298154ea2b330f2816043031e3cf18c880499fb565f382a8e58fa1980
7
- data.tar.gz: f8efc7e2c88acfd7fd9b480b44cc0f827038ed50732747ae971366c237ef5d1a78cff10d9b5a6077907ade0ce01cbb434fb59b17e9e7f806ce9a67ce1367027e
6
+ metadata.gz: c80b9e458723516973ad8ea2ecad144012fca098a4d2b3786f31b2c28eef8290b077419f8df0e851d3857092a30bee3bb5cee9e65dcb13a7acb930f22a3a1360
7
+ data.tar.gz: 29828aebcc85908593f5e133329cf8af50208f43c92452d1688e8b7e1abc5680aaf6c81b1bac2a139555d4b2968d76f92789814e242e4f8479e35a145db0c762
@@ -10,6 +10,7 @@ window.GOVUK.Modules = window.GOVUK.Modules || {};
10
10
  this.includeTextInputValues = this.module.hasAttribute('data-ga4-form-include-text')
11
11
  this.recordJson = this.module.hasAttribute('data-ga4-form-record-json')
12
12
  this.useTextCount = this.module.hasAttribute('data-ga4-form-use-text-count')
13
+ this.splitText = this.module.hasAttribute('data-ga4-form-split-response-text')
13
14
  this.redacted = false
14
15
  this.useFallbackValue = this.module.hasAttribute('data-ga4-form-no-answer-undefined') ? undefined : 'No answer given'
15
16
  }
@@ -52,10 +53,28 @@ window.GOVUK.Modules = window.GOVUK.Modules || {};
52
53
  if (data.action === 'search' && data.text) {
53
54
  data.text = window.GOVUK.analyticsGa4.core.trackFunctions.standardiseSearchTerm(data.text)
54
55
  }
56
+
57
+ if (data.text && this.splitText) {
58
+ data = this.splitFormResponseText(data)
59
+ }
60
+
55
61
  window.GOVUK.analyticsGa4.core.applySchemaAndSendData(data, 'event_data')
56
62
  }
57
63
  }
58
64
 
65
+ Ga4FormTracker.prototype.splitFormResponseText = function (data) {
66
+ var text = data.text
67
+ var dimensions = Math.min(Math.ceil(data.text.length / 500), 5)
68
+
69
+ data.text = text.slice(0, 500)
70
+
71
+ for (var i = 1; i < dimensions; i++) {
72
+ data['text_' + (i + 1)] = text.slice(i * 500, i * 500 + 500)
73
+ }
74
+
75
+ return data
76
+ }
77
+
59
78
  Ga4FormTracker.prototype.getFormInputs = function () {
60
79
  var inputs = []
61
80
  var labels = this.module.querySelectorAll('label')
@@ -16,6 +16,10 @@
16
16
  type: this.undefined,
17
17
  url: this.undefined,
18
18
  text: this.undefined,
19
+ text_2: this.undefined,
20
+ text_3: this.undefined,
21
+ text_4: this.undefined,
22
+ text_5: this.undefined,
19
23
  index: {
20
24
  index_link: this.undefined,
21
25
  index_section: this.undefined,
@@ -36,12 +36,12 @@
36
36
  // e.g. 'AB123456A', 'AB 12 34 56 A', 'ab 123456 a', 'ab 12 34 56 a', 'AB+12+34+56+A'
37
37
  var NATIONAL_INSURANCE_NUMBER = /[A-CEGHJ-OPR-TW-Z]{2}(\s+|\++)?(\d{2}(\s+|\++)?){3}[A-D]/gi
38
38
 
39
- var UK_MOBILE_NUMBER = /07\d{3}\s?\d{6}/g // 07123 123456 or 07123123456
40
- var UK_MOBILE_NUMBER_INTERNATIONAL = /\+447\d{3}\s?\d{6}/g // +447123 123456 or +447123123456
41
- var UK_LANDLINE_NUMBER = /0[1246]\d{1}\s?\d{3,4}\s?\d{4}/g // 020 123 1234 or 020 1234 1234 or 0201231234 or 02012341234
42
- var UK_LANDLINE_NUMBER_2 = /0[1246]\d{3}\s\d{6}/g // 02123 123456
43
- var UK_LANDLINE_NUMBER_INTERNATIONAL = /\+44[1246]\d{1}\s?\d{3,4}\s?\d{4}/g // +4420 123 1234 or +4420 1234 1234
44
- var UK_LANDLINE_NUMBER_INTERNATIONAL_2 = /\+44[1246]\d{3}\s\d{6}/g // +442123 123456
39
+ var UK_MOBILE_NUMBER = /07\d{3}[\s%20+]?\d{6,8}/g // 07123 123456 or 07123123456 or 07123+123456 or 07123%20123456
40
+ var UK_MOBILE_NUMBER_INTERNATIONAL = /(\+|%2B)?447\d{3}[\s%20+]?\d{6,8}/gi // +447123 123456 or +447123123456 or +447123%20123456 or +447123+123456 or %2B447123123456. Plus at start is optional.
41
+ var UK_LANDLINE_NUMBER = /0[1246]\d{1}[\s%20+]?\d{3,6}[\s%20+]?\d{4,6}/g // 020 123 1234 or 020 1234 1234 or 0201231234 or 02012341234 or 020+123+1234 or 020+1234+1234 or 020%20123%201234 or 020%201234%201234
42
+ var UK_LANDLINE_NUMBER_2 = /0[1246]\d{3}[\s%20+]\d{6,8}/g // 02123 123456 or 02123+123456 or 02123%20123456
43
+ var UK_LANDLINE_NUMBER_INTERNATIONAL = /(\+|%2B)?44[1246]\d{1}[\s%20+]?\d{3,6}[\s%20+]?\d{4,6}/g // // +4420 123 1234 or +4420 1234 1234 or +4420+123+1234 or +4420%20123%201234 or %2B4420 123 1234. Plus at start is optional.
44
+ var UK_LANDLINE_NUMBER_INTERNATIONAL_2 = /(\+|%2B)?44[1246]\d{3}[\s%20+]\d{6,8}/g // +442123 123456 or +442123%20123456 or +442123+123456 or %2B442123+123456. Plus at start is optional.
45
45
 
46
46
  function shouldStripDates () {
47
47
  var metas = document.querySelectorAll('meta[name="govuk:ga4-strip-dates"]')
@@ -5,7 +5,6 @@ window.GOVUK.Modules = window.GOVUK.Modules || {};
5
5
  function AddAnother (module) {
6
6
  this.module = module
7
7
  this.disableGa4 = this.module.dataset.disableGa4
8
- this.emptyFieldset = undefined
9
8
  this.addAnotherButton = undefined
10
9
  this.startIndex = Number(this.module.dataset.ga4StartIndex) || 1
11
10
  this.indexSectionCount = Number(this.module.dataset.ga4IndexSectionCount)
@@ -94,8 +93,7 @@ window.GOVUK.Modules = window.GOVUK.Modules || {};
94
93
  }
95
94
 
96
95
  AddAnother.prototype.removeEmptyFieldset = function () {
97
- this.emptyFieldset = this.module.querySelector('.js-add-another__empty')
98
- this.emptyFieldset.remove()
96
+ this.module.querySelector('.js-add-another__empty').remove()
99
97
  }
100
98
 
101
99
  AddAnother.prototype.updateFieldsetsAndButtons = function () {
@@ -129,15 +127,18 @@ window.GOVUK.Modules = window.GOVUK.Modules || {};
129
127
 
130
128
  AddAnother.prototype.addNewFieldset = function (event) {
131
129
  var button = event.target
132
- var newFieldset = this.emptyFieldset.cloneNode(true)
133
- newFieldset.classList.remove('js-add-another__empty')
130
+ var newFieldsetTemplate = this.module.querySelector('.js-add-another__empty-template')
131
+ var newFieldset = newFieldsetTemplate.content.cloneNode(true).children[0]
134
132
  newFieldset.classList.add('js-add-another__fieldset')
135
133
  this.createRemoveButton(newFieldset, this.removeNewFieldset.bind(this))
136
134
  button.before(newFieldset)
137
135
 
138
- this.incrementAttributes(this.emptyFieldset)
136
+ this.incrementAttributes(newFieldsetTemplate.content)
139
137
  this.updateFieldsetsAndButtons()
140
138
 
139
+ // Initialise any modules included in new fieldset
140
+ window.GOVUK.modules.start(newFieldset)
141
+
141
142
  // Move focus to first visible field in new set
142
143
  newFieldset
143
144
  .querySelector('input:not([type="hidden"]), select, textarea')
@@ -3,14 +3,9 @@
3
3
  @import "govuk_publishing_components/components/skip-link";
4
4
  @import "govuk/components/header/header";
5
5
 
6
- .gem-c-layout-header--no-bottom-border,
7
- .gem-c-layout-header--no-bottom-border .govuk-header__container {
8
- margin-bottom: 0;
6
+ .gem-c-layout-header.gem-c-layout-header--no-bottom-border,
7
+ .gem-c-layout-header.gem-c-layout-header--no-bottom-border .govuk-header__container {
9
8
  border-bottom: 0;
10
-
11
- @include govuk-media-query($until: tablet) {
12
- padding-bottom: govuk-spacing(1);
13
- }
14
9
  }
15
10
 
16
11
  .gem-c-layout-header--search-left {
@@ -64,9 +59,9 @@
64
59
  }
65
60
 
66
61
  .gem-c-header__logo {
67
- @include govuk-media-query($from: desktop) {
68
- white-space: nowrap;
69
- }
62
+ display: flex;
63
+ flex-wrap: wrap;
64
+ row-gap: govuk-spacing(2);
70
65
  }
71
66
 
72
67
  .gem-c-header__content.govuk-header__content {
@@ -1,2 +1,6 @@
1
1
  @import "govuk_publishing_components/individual_component_support";
2
2
  @import "govuk/components/service-navigation/service-navigation";
3
+
4
+ .gem-c-service-navigation--full-width {
5
+ padding-left: govuk-spacing(3);
6
+ }
@@ -40,4 +40,13 @@
40
40
  } do %>
41
41
  <%= empty %>
42
42
  <% end %>
43
+ <template class="js-add-another__empty-template">
44
+ <%= render "govuk_publishing_components/components/fieldset", {
45
+ classes: "js-add-another__fieldset",
46
+ legend_text: "#{fieldset_legend} #{items.length + 1}",
47
+ heading_size: "m"
48
+ } do %>
49
+ <%= empty %>
50
+ <% end %>
51
+ </template>
43
52
  <% end %>
@@ -16,7 +16,6 @@
16
16
  service_navigation_items ||= []
17
17
  omit_feedback_form ||= false
18
18
  omit_footer_navigation ||= false
19
- omit_footer_border ||= false
20
19
  omit_header ||= false
21
20
  product_name ||= nil
22
21
  service_name ||= nil
@@ -7,30 +7,49 @@
7
7
  navigation_items ||= []
8
8
  product_name ||= nil
9
9
  remove_bottom_border ||= false
10
+ deprecated_navigation ||= false
10
11
  width_class = full_width ? "govuk-header__container--full-width" : "govuk-width-container"
11
12
  logo_link ||= "/"
12
13
 
13
14
  component_helper = GovukPublishingComponents::Presenters::ComponentWrapperHelper.new(local_assigns)
14
15
  component_helper.add_class("gem-c-layout-header govuk-header")
15
- component_helper.add_class("gem-c-layout-header--no-bottom-border") if remove_bottom_border
16
+ component_helper.add_class("gem-c-layout-header--no-bottom-border") if remove_bottom_border || navigation_items
16
17
  component_helper.add_data_attribute({ module: "govuk-header" })
17
18
  %>
18
19
 
19
20
  <%= tag.header(**component_helper.all_attributes) do %>
20
- <div class="govuk-header__container <%= width_class %>">
21
- <div class="govuk-grid-row">
22
- <div class="gem-c-layout-header__logo govuk-grid-column-one-half">
23
- <%= render "govuk_publishing_components/components/layout_header/header_logo", {
24
- environment: environment,
25
- logo_link: logo_link,
26
- product_name: product_name,
27
- } %>
28
- </div>
29
- <% if navigation_items.any? %>
30
- <div class="govuk-header__content gem-c-header__content govuk-grid-column-full govuk-!-display-none-print">
31
- <%= render "govuk_publishing_components/components/layout_header/navigation_items", navigation_items: navigation_items, navigation_aria_label: navigation_aria_label %>
21
+ <% if !deprecated_navigation %>
22
+ <div class="govuk-header__container <%= width_class %> gem-c-layout-header__logo">
23
+ <%= render "govuk_publishing_components/components/layout_header/header_logo", {
24
+ environment:,
25
+ logo_link:,
26
+ product_name:,
27
+ } %>
28
+ </div>
29
+ <% if navigation_items.any? %>
30
+ <%= render "govuk_publishing_components/components/service_navigation", {
31
+ navigation_items:,
32
+ navigation_aria_label:,
33
+ full_width:,
34
+ } %>
35
+ <% end %>
36
+ <% else %>
37
+ <div class="govuk-header__container <%= width_class %>">
38
+ <div class="govuk-grid-row">
39
+ <div class="gem-c-layout-header__logo govuk-grid-column-one-half">
40
+ <%= render "govuk_publishing_components/components/layout_header/header_logo", {
41
+ environment:,
42
+ logo_link:,
43
+ product_name:,
44
+ deprecated_navigation: true,
45
+ } %>
32
46
  </div>
33
- <% end %>
47
+ <% if navigation_items.any? %>
48
+ <div class="govuk-header__content gem-c-header__content govuk-grid-column-full govuk-!-display-none-print">
49
+ <%= render "govuk_publishing_components/components/layout_header/navigation_items", navigation_items: navigation_items, navigation_aria_label: navigation_aria_label %>
50
+ </div>
51
+ <% end %>
52
+ </div>
34
53
  </div>
35
- </div>
54
+ <% end %>
36
55
  <% end %>
@@ -4,15 +4,18 @@
4
4
  service_name ||= nil
5
5
  service_name_url ||= nil
6
6
  navigation_items ||= []
7
+ navigation_aria_label ||= t("components.layout_header.menu")
7
8
 
8
9
  component_helper = GovukPublishingComponents::Presenters::ComponentWrapperHelper.new(local_assigns)
9
10
  component_helper.add_class("gem-c-service-navigation govuk-service-navigation")
10
11
  component_helper.add_aria_attribute({ label: "Service information" }) if service_name.present?
11
12
  component_helper.add_data_attribute({ module: "govuk-service-navigation" })
13
+
14
+ full_width ||= false
12
15
  %>
13
16
  <% if service_name.present? || navigation_items.present? %>
14
17
  <% service_navigation_content = capture do %>
15
- <div class="govuk-width-container">
18
+ <div class="<%= full_width ? "gem-c-service-navigation--full-width" : "govuk-width-container" %>">
16
19
  <div class="govuk-service-navigation__container">
17
20
  <% if service_name %>
18
21
  <% if service_name_url %>
@@ -25,7 +28,7 @@
25
28
  <% end %>
26
29
 
27
30
  <% if navigation_items.present? %>
28
- <nav aria-label="<%= t("components.layout_header.menu") %>" class="govuk-service-navigation__wrapper">
31
+ <nav aria-label="<%= navigation_aria_label %>" class="govuk-service-navigation__wrapper">
29
32
  <button type="button" class="govuk-service-navigation__toggle govuk-js-service-navigation-toggle" aria-controls="navigation" hidden>
30
33
  Menu
31
34
  </button>
@@ -38,11 +41,11 @@
38
41
  %>
39
42
  <%= tag.li nav[:text], class: nav_classes do %>
40
43
  <% if nav[:active] %>
41
- <%= link_to(nav[:href], class: "govuk-service-navigation__link", aria: { current: aria_current }) do %>
44
+ <%= link_to(nav[:href], class: "govuk-service-navigation__link", aria: { current: aria_current }, data: nav[:data]) do %>
42
45
  <%= tag.strong(nav[:text], class: "govuk-service-navigation__active-fallback") %>
43
46
  <% end %>
44
47
  <% else %>
45
- <%= link_to nav[:text], nav[:href], class: "govuk-service-navigation__link" %>
48
+ <%= link_to nav[:text], nav[:href], class: "govuk-service-navigation__link", data: nav[:data] %>
46
49
  <% end %>
47
50
  <% end %>
48
51
  <% end %>
@@ -83,3 +83,41 @@ examples:
83
83
  <label for="employee_1_name" class="gem-c-label govuk-label">Full name</label>
84
84
  <input class="gem-c-input govuk-input" id="employee_1_name" name="employee[1]name">
85
85
  </div>
86
+
87
+ with_select_with_search:
88
+ description: Add another with a select with search input
89
+ data:
90
+ fieldset_legend: "Organisation"
91
+ add_button_text: "Add another organisation"
92
+ items:
93
+ - fields: >
94
+ <div class="govuk-form-group">
95
+ <label for="organisations_1">Select Organisation 1</label>
96
+ <select name="organisations[0][id]" id="organisations_1" class="govuk-select" data-module="select-with-search" tabindex="-1">
97
+ <option value="" selected="">Select one</option>
98
+ <option value="4dfe21ee-acfa-4fc1-9513-cc764e814205" selected="selected">Academy for Justice Commissioning</option>
99
+ <option value="b854f170-53c8-4098-bf77-e8ef42f93107">Academy for Social Justice</option>
100
+ <option value="ce357bdb-6396-426a-9f1f-8cbfb444cffd">Academy for Social Justice Commissioning</option>
101
+ <option value="a0f338c5-e94c-42f8-9c26-b9c2eb6850d3">Accelerated Access Review</option>
102
+ <option value="92bbe2da-8d5f-480b-8da1-50b18e317654">Accelerated Capability Environment</option>
103
+ </select>
104
+ </div>
105
+ destroy_checkbox: >
106
+ <div class="govuk-checkboxes" data-module="govuk-checkboxes">
107
+ <div class="govuk-checkboxes__item">
108
+ <input type="checkbox" name="organisations[0][_destroy]" id="organisation_0__destroy" class="govuk-checkboxes__input">
109
+ <label for="organisation_0__destroy" class="govuk-label govuk-checkboxes__label">Delete</label>
110
+ </div>
111
+ </div>
112
+ empty:
113
+ <div class="govuk-form-group">
114
+ <label for="organisations_2">Select Organisation 2</label>
115
+ <select name="organisations[1][id]" id="organisations_2" class="govuk-select" tabindex="-1" data-module="select-with-search">
116
+ <option value="" selected="">Select one</option>
117
+ <option value="4dfe21ee-acfa-4fc1-9513-cc764e814205">Academy for Justice Commissioning</option>
118
+ <option value="b854f170-53c8-4098-bf77-e8ef42f93107">Academy for Social Justice</option>
119
+ <option value="ce357bdb-6396-426a-9f1f-8cbfb444cffd">Academy for Social Justice Commissioning</option>
120
+ <option value="a0f338c5-e94c-42f8-9c26-b9c2eb6850d3">Accelerated Access Review</option>
121
+ <option value="92bbe2da-8d5f-480b-8da1-50b18e317654">Accelerated Capability Environment</option>
122
+ </select>
123
+ <div class="govuk-form-group">
@@ -31,17 +31,36 @@ examples:
31
31
  environment: production
32
32
  product_name: Product
33
33
  with_navigation:
34
+ description: Note that [remove_bottom_border](#no_bottom_border) automatically gets set to true on the header when navigation items are added.
34
35
  data:
35
36
  environment: production
36
37
  navigation_items:
37
- - text: Navigation item 1
38
+ - text: Mainstream browse
38
39
  href: "item-1"
39
40
  active: true
40
- - text: Navigation item 2
41
+ - text: Step by steps
42
+ href: "item-2"
43
+ - text: Some kind of topic page
44
+ href: "item-3"
45
+ - text: Jonathan Doe
46
+ href: "item-4"
47
+ - text: Logout
48
+ href: "item-5"
49
+ with_deprecated_navigation:
50
+ description: Note that [remove_bottom_border](#no_bottom_border) automatically gets set to true on the header when navigation items are added.
51
+ data:
52
+ environment: production
53
+ deprecated_navigation: true
54
+ navigation_items:
55
+ - text: Mainstream browse
56
+ href: "item-1"
57
+ active: true
58
+ - text: Step by steps
41
59
  href: "item-2"
42
- - text: Hidden on desktop
60
+ - text: Jonathan Doe
43
61
  href: "item-3"
44
- show_only_in_collapsed_menu: true
62
+ - text: Logout
63
+ href: "item-4"
45
64
  with_product_name_and_navigation:
46
65
  data:
47
66
  product_name: Component Guide 999.9.9
@@ -52,9 +71,8 @@ examples:
52
71
  active: true
53
72
  - text: Navigation item 2
54
73
  href: "item-2"
55
- - text: Hidden on desktop
74
+ - text: Navigation item 3
56
75
  href: "item-3"
57
- show_only_in_collapsed_menu: true
58
76
  with_navigation_link_data_attributes:
59
77
  description: Supports adding data attributes i.e for tracking
60
78
  data:
@@ -73,7 +91,7 @@ examples:
73
91
  environment: production
74
92
  full_width: true
75
93
  no_bottom_border:
76
- description: This is useful for pages where a large full-width banner is the first thing to appear on the page, for example, the [GOV.UK homepage](https://www.gov.uk)
94
+ description: This is useful for pages where a large full-width banner is the first thing to appear on the page, for example, the [GOV.UK homepage](https://www.gov.uk). This is also automatically enabled when navigation items exist.
77
95
  data:
78
96
  remove_bottom_border: true
79
97
  with_custom_logo_link:
@@ -39,4 +39,38 @@ examples:
39
39
  - text: Navigation item 2
40
40
  href: "#"
41
41
  - text: Navigation item 3
42
- href: "#"
42
+ href: "#"
43
+ with_data_attributes_on_items:
44
+ data:
45
+ navigation_items:
46
+ - text: Navigation item 1
47
+ href: "#"
48
+ active: true
49
+ data:
50
+ module: "example"
51
+ something_else: "hello"
52
+ - text: Navigation item 2
53
+ href: "#"
54
+ active: true
55
+ data:
56
+ module: "example-2"
57
+ something_else: "hello 2"
58
+ with_custom_aria_label_on_the_nav_element:
59
+ data:
60
+ navigation_items:
61
+ - text: Navigation item 1
62
+ href: "#"
63
+ active: true
64
+ - text: Navigation item 2
65
+ href: "#"
66
+ navigation_aria_label: "Custom label"
67
+ full_width:
68
+ description: This is difficult to preview because the preview windows are constrained, but nav will stretch to the size of its container. Padding left is added to prevent the first menu item from colliding with the edge of the screen. Right spacing is already provided by the menu items.
69
+ data:
70
+ navigation_items:
71
+ - text: Navigation item 1
72
+ href: "#"
73
+ active: true
74
+ - text: Navigation item 2
75
+ href: "#"
76
+ full_width: true
@@ -8,12 +8,15 @@
8
8
  }
9
9
 
10
10
  environment_exists = !environment.blank?
11
+ deprecated_navigation ||= false
11
12
  %>
12
- <% if environment_exists %>
13
+
14
+ <% if environment_exists && deprecated_navigation %>
13
15
  <div class="gem-c-header__environment">
14
16
  <%= render "govuk_publishing_components/components/tag", { text: environment, colour: colour_map[environment.downcase] } %>
15
17
  </div>
16
18
  <% end %>
19
+
17
20
  <div class="govuk-header__logo gem-c-header__logo">
18
21
  <a href="<%= logo_link %>" class="govuk-header__link govuk-header__link--homepage">
19
22
  <%= render "govuk_publishing_components/components/govuk_logo/govuk_logo" %>
@@ -23,4 +26,9 @@
23
26
  </span>
24
27
  <% end %>
25
28
  </a>
29
+ <% if environment_exists && !deprecated_navigation %>
30
+ <div class="gem-c-header__environment">
31
+ <%= render "govuk_publishing_components/components/tag", { text: environment, colour: colour_map[environment.downcase] } %>
32
+ </div>
33
+ <% end %>
26
34
  </div>
@@ -1,3 +1,3 @@
1
1
  module GovukPublishingComponents
2
- VERSION = "59.2.0".freeze
2
+ VERSION = "60.0.0".freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: govuk_publishing_components
3
3
  version: !ruby/object:Gem::Version
4
- version: 59.2.0
4
+ version: 60.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - GOV.UK Dev