govuk-components 2.1.3 → 2.1.4
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 +4 -4
- data/app/components/govuk_component/accordion_component/section_component.rb +1 -3
- data/app/components/govuk_component/breadcrumbs_component.rb +5 -4
- data/app/components/govuk_component/cookie_banner_component.rb +6 -5
- data/app/components/govuk_component/footer_component.html.erb +10 -3
- data/app/components/govuk_component/footer_component.rb +1 -0
- data/app/components/govuk_component/tab_component.rb +1 -3
- data/app/components/govuk_component/table_component/caption_component.rb +1 -3
- data/app/components/govuk_component/table_component/cell_component.rb +3 -9
- data/lib/govuk/components/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c5a21817c2a776dc4571b5d5dab5a6492d4648672c6ec1603b1955132a811108
|
4
|
+
data.tar.gz: 00e69dbbf540695dcaa130e21f9a340293d80cc73bbb1b9ee6827e39c063d0e7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e2308aa03c1af4efb1aae22af50322cbb7aebdf03b1c8668b12918b8c1edcf53c197217ef66b7ab19d46c218386f60075f78e99957726e898e3492df5e0c7dfa
|
7
|
+
data.tar.gz: 77bccd1dd23d937d82c1e058fed2803a14e62a99e15acdb4841134249b24bef8992a9347c11920a95a620d28a13f0d7af187f992c1e8f232c45eda5c99bc969e
|
@@ -34,8 +34,6 @@ class GovukComponent::AccordionComponent::SectionComponent < GovukComponent::Bas
|
|
34
34
|
private
|
35
35
|
|
36
36
|
def default_classes
|
37
|
-
|
38
|
-
classes.append("govuk-accordion__section--expanded") if expanded?
|
39
|
-
end
|
37
|
+
class_names("govuk-accordion__section", "govuk-accordion__section--expanded" => expanded?).split
|
40
38
|
end
|
41
39
|
end
|
@@ -12,10 +12,11 @@ class GovukComponent::BreadcrumbsComponent < GovukComponent::Base
|
|
12
12
|
private
|
13
13
|
|
14
14
|
def default_classes
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
15
|
+
class_names(
|
16
|
+
"govuk-breadcrumbs",
|
17
|
+
"govuk-!-display-none-print" => hide_in_print,
|
18
|
+
"govuk-breadcrumbs--collapse-on-mobile" => collapse_on_mobile
|
19
|
+
).split
|
19
20
|
end
|
20
21
|
|
21
22
|
def build_list(breadcrumbs)
|
@@ -1,13 +1,14 @@
|
|
1
1
|
class GovukComponent::CookieBannerComponent < GovukComponent::Base
|
2
2
|
renders_many :messages, GovukComponent::CookieBannerComponent::MessageComponent
|
3
3
|
|
4
|
-
attr_accessor :aria_label, :hidden
|
4
|
+
attr_accessor :aria_label, :hidden, :hide_in_print
|
5
5
|
|
6
|
-
def initialize(aria_label: "Cookie banner", hidden: false, classes: [], html_attributes: {})
|
6
|
+
def initialize(aria_label: "Cookie banner", hidden: false, hide_in_print: true, classes: [], html_attributes: {})
|
7
7
|
super(classes: classes, html_attributes: html_attributes)
|
8
8
|
|
9
|
-
@aria_label
|
10
|
-
@hidden
|
9
|
+
@aria_label = aria_label
|
10
|
+
@hidden = hidden
|
11
|
+
@hide_in_print = hide_in_print
|
11
12
|
end
|
12
13
|
|
13
14
|
def call
|
@@ -19,6 +20,6 @@ class GovukComponent::CookieBannerComponent < GovukComponent::Base
|
|
19
20
|
private
|
20
21
|
|
21
22
|
def default_classes
|
22
|
-
|
23
|
+
class_names("govuk-cookie-banner", "govuk-!-display-none-print" => hide_in_print).split
|
23
24
|
end
|
24
25
|
end
|
@@ -1,5 +1,13 @@
|
|
1
1
|
<%= tag.footer(class: classes, role: 'contentinfo', **html_attributes) do %>
|
2
2
|
<%= tag.div(class: container_classes, **container_html_attributes) do %>
|
3
|
+
<% if navigation.present? %>
|
4
|
+
<div class="govuk-footer__navigation">
|
5
|
+
<%= navigation %>
|
6
|
+
</div>
|
7
|
+
|
8
|
+
<hr class="govuk-footer__section-break">
|
9
|
+
<% end %>
|
10
|
+
|
3
11
|
<%= tag.div(class: meta_classes, **meta_html_attributes) do %>
|
4
12
|
<% if meta.present? %>
|
5
13
|
<%= meta %>
|
@@ -31,9 +39,8 @@
|
|
31
39
|
<%= meta_content %>
|
32
40
|
<% end %>
|
33
41
|
</div>
|
34
|
-
|
35
|
-
|
36
|
-
</div>
|
42
|
+
|
43
|
+
<%= tag.div(copyright, class: "govuk-footer__meta-item") %>
|
37
44
|
<% end %>
|
38
45
|
<% end %>
|
39
46
|
<% end %>
|
@@ -35,9 +35,7 @@ private
|
|
35
35
|
end
|
36
36
|
|
37
37
|
def li_classes(i = nil)
|
38
|
-
|
39
|
-
c.append("govuk-tabs__list-item--selected") if i&.zero?
|
40
|
-
end
|
38
|
+
class_names("govuk-tabs__list-item", "govuk-tabs__list-item--selected" => i&.zero?).split
|
41
39
|
end
|
42
40
|
|
43
41
|
def li_link
|
@@ -37,19 +37,13 @@ private
|
|
37
37
|
|
38
38
|
def default_classes
|
39
39
|
if header
|
40
|
-
|
41
|
-
c << "govuk-table__header--numeric" if numeric?
|
42
|
-
c << width_class if width?
|
43
|
-
end
|
40
|
+
class_names("govuk-table__header", "govuk-table__header--numeric" => numeric?, width_class => width?).split
|
44
41
|
else
|
45
|
-
|
46
|
-
c << "govuk-table__cell--numeric" if numeric?
|
47
|
-
c << width_class if width?
|
48
|
-
end
|
42
|
+
class_names("govuk-table__cell", "govuk-table__cell--numeric" => numeric?, width_class => width?).split
|
49
43
|
end
|
50
44
|
end
|
51
45
|
|
52
46
|
def width_class
|
53
|
-
WIDTHS.fetch(width)
|
47
|
+
WIDTHS.fetch(width, nil)
|
54
48
|
end
|
55
49
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: govuk-components
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.1.
|
4
|
+
version: 2.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- DfE developers
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-10-
|
11
|
+
date: 2021-10-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activemodel
|
@@ -220,7 +220,7 @@ homepage: https://github.com/DFE-Digital/govuk-components
|
|
220
220
|
licenses:
|
221
221
|
- MIT
|
222
222
|
metadata: {}
|
223
|
-
post_install_message:
|
223
|
+
post_install_message:
|
224
224
|
rdoc_options: []
|
225
225
|
require_paths:
|
226
226
|
- lib
|
@@ -235,8 +235,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
235
235
|
- !ruby/object:Gem::Version
|
236
236
|
version: '0'
|
237
237
|
requirements: []
|
238
|
-
rubygems_version: 3.
|
239
|
-
signing_key:
|
238
|
+
rubygems_version: 3.1.6
|
239
|
+
signing_key:
|
240
240
|
specification_version: 4
|
241
241
|
summary: Lightweight set of reusable GOV.UK Design System components
|
242
242
|
test_files: []
|