govuk_publishing_components 13.5.3 → 13.5.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/assets/stylesheets/govuk_publishing_components/components/_layout-header.scss +6 -0
- data/app/assets/stylesheets/govuk_publishing_components/components/_panel.scss +13 -0
- data/app/views/govuk_publishing_components/components/_feedback.html.erb +4 -4
- data/app/views/govuk_publishing_components/components/_layout_header.html.erb +2 -1
- data/app/views/govuk_publishing_components/components/_panel.html.erb +13 -1
- data/app/views/govuk_publishing_components/components/docs/layout_header.yml +3 -0
- data/app/views/govuk_publishing_components/components/docs/panel.yml +9 -0
- data/app/views/govuk_publishing_components/components/feedback/_problem_form.html.erb +1 -1
- data/app/views/govuk_publishing_components/components/feedback/_survey_signup_form.html.erb +2 -2
- data/lib/govuk_publishing_components/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 93fab2d996e30368c246e96ba84d3c6f8034c619dee13791b3f209ae67ded1cb
|
|
4
|
+
data.tar.gz: fbaff11c00bd6487bc157fc927a173011cfc32857c7476705182d7ab724c1d1e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fad9c0567d6e603a133066c0a03f4a31419b51baf7e04a2e618d1d5efd5f2b0d20019fff7814d79685b4f011685a73530182741107077b481f1f91a6941be6fc
|
|
7
|
+
data.tar.gz: 90d2b3b7226d9e831789704b7477684c90e9469ec94316a87b59c1fb8a43cd7bb16d59342250469c184fa5fcea4618f2091591dfb46063c30633f813a88d5ce3
|
|
@@ -1 +1,14 @@
|
|
|
1
1
|
@import "govuk-frontend/components/panel/panel";
|
|
2
|
+
|
|
3
|
+
.gem-c-panel__prepend {
|
|
4
|
+
@include govuk-font($size: 24, $weight: bold);
|
|
5
|
+
margin-bottom: govuk-spacing(3);
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.gem-c-panel__append {
|
|
9
|
+
@include govuk-font($size: 24, $weight: bold);
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.gem-c-panel__prepend ~ .govuk-panel__title {
|
|
13
|
+
margin-bottom: govuk-spacing(3);
|
|
14
|
+
}
|
|
@@ -7,12 +7,12 @@
|
|
|
7
7
|
end
|
|
8
8
|
|
|
9
9
|
email_regex = /[^\s=\/?&]+(?:@|%40)[^\s=\/?&]+/
|
|
10
|
-
|
|
11
|
-
|
|
10
|
+
url_without_pii = utf_encode(request.original_url.gsub(email_regex, '[email]'))
|
|
11
|
+
path_without_pii = utf_encode(request.fullpath.gsub(email_regex, '[email]'))
|
|
12
12
|
%>
|
|
13
13
|
|
|
14
14
|
<div class="gem-c-feedback <%= margin_top_class %>" data-module="feedback">
|
|
15
15
|
<%= render "govuk_publishing_components/components/feedback/yes_no_banner" %>
|
|
16
|
-
<%= render "govuk_publishing_components/components/feedback/problem_form",
|
|
17
|
-
<%= render "govuk_publishing_components/components/feedback/survey_signup_form",
|
|
16
|
+
<%= render "govuk_publishing_components/components/feedback/problem_form", url_without_pii: url_without_pii %>
|
|
17
|
+
<%= render "govuk_publishing_components/components/feedback/survey_signup_form", url_without_pii: url_without_pii, path_without_pii: path_without_pii %>
|
|
18
18
|
</div>
|
|
@@ -40,7 +40,8 @@
|
|
|
40
40
|
<nav>
|
|
41
41
|
<ul id="navigation" class="govuk-header__navigation govuk-header__navigation--end" aria-label="Top Level Navigation">
|
|
42
42
|
<% navigation_items.each_with_index do |item, index| %>
|
|
43
|
-
<li class="govuk-header__navigation-item <%= "govuk-header__navigation-item--active" if item[:active] %>
|
|
43
|
+
<li class="govuk-header__navigation-item <%= "govuk-header__navigation-item--active" if item[:active] %>
|
|
44
|
+
<%= "govuk-header__navigation-item--collapsed-menu-only" if item[:show_only_in_collapsed_menu] %>">
|
|
44
45
|
<%= link_to(
|
|
45
46
|
item[:text],
|
|
46
47
|
item[:href],
|
|
@@ -1,13 +1,25 @@
|
|
|
1
1
|
<%
|
|
2
2
|
description ||= false
|
|
3
|
+
prepend ||= false
|
|
4
|
+
append ||= false
|
|
3
5
|
%>
|
|
4
6
|
<div class="gem-c-panel govuk-panel govuk-panel--confirmation">
|
|
7
|
+
<% if prepend %>
|
|
8
|
+
<div class="gem-c-panel__prepend">
|
|
9
|
+
<%= prepend %>
|
|
10
|
+
</div>
|
|
11
|
+
<% end %>
|
|
5
12
|
<h2 class="govuk-panel__title">
|
|
6
13
|
<%= title %>
|
|
7
14
|
</h2>
|
|
8
15
|
<% if description %>
|
|
9
16
|
<div class="govuk-panel__body">
|
|
10
|
-
<%= description %>
|
|
17
|
+
<%= description %>
|
|
18
|
+
</div>
|
|
19
|
+
<% end %>
|
|
20
|
+
<% if append %>
|
|
21
|
+
<div class="gem-c-panel__append">
|
|
22
|
+
<%= append %>
|
|
11
23
|
</div>
|
|
12
24
|
<% end %>
|
|
13
25
|
</div>
|
|
@@ -31,6 +31,9 @@ examples:
|
|
|
31
31
|
active: true
|
|
32
32
|
- text: Navigation item 2
|
|
33
33
|
href: "#2"
|
|
34
|
+
- text: Hidden on desktop
|
|
35
|
+
href: "#3"
|
|
36
|
+
show_only_in_collapsed_menu: true
|
|
34
37
|
full_width:
|
|
35
38
|
description: |
|
|
36
39
|
This is difficult to preview because the preview windows are constrained, but the header will stretch to the size of its container.
|
|
@@ -14,3 +14,12 @@ examples:
|
|
|
14
14
|
no_description:
|
|
15
15
|
data:
|
|
16
16
|
title: Content has been published
|
|
17
|
+
with_prepend:
|
|
18
|
+
data:
|
|
19
|
+
prepend: The clocks go forward
|
|
20
|
+
title: 31 March
|
|
21
|
+
with_prepend_and_append:
|
|
22
|
+
data:
|
|
23
|
+
prepend: The next bank holiday in England and Wales is
|
|
24
|
+
title: 19 April
|
|
25
|
+
append: Good Friday
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
<div class="gem-c-feedback__column-two-thirds">
|
|
17
17
|
<div class="gem-c-feedback__error-summary gem-c-feedback__js-show js-hidden js-errors" tabindex="-1"></div>
|
|
18
18
|
|
|
19
|
-
<input type="hidden" name="url" value="<%=
|
|
19
|
+
<input type="hidden" name="url" value="<%= url_without_pii %>">
|
|
20
20
|
|
|
21
21
|
<h3 class="gem-c-feedback__form-heading">Help us improve GOV.UK</h3>
|
|
22
22
|
<p id="feedback_explanation" class="gem-c-feedback__form-paragraph">Don’t include personal or financial information like your National Insurance number or credit card details.</p>
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
<div class="gem-c-feedback__error-summary js-hidden js-errors" tabindex="-1"></div>
|
|
18
18
|
|
|
19
19
|
<input name="email_survey_signup[survey_id]" type="hidden" value="footer_satisfaction_survey">
|
|
20
|
-
<input name="email_survey_signup[survey_source]" type="hidden" value="<%=
|
|
20
|
+
<input name="email_survey_signup[survey_source]" type="hidden" value="<%= url_without_pii %>">
|
|
21
21
|
<input name="email_survey_signup[ga_client_id]" type="hidden" value="1627485790.1515403243">
|
|
22
22
|
|
|
23
23
|
<h3 class="gem-c-feedback__form-heading">Help us improve GOV.UK</h3>
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
<%= render "govuk_publishing_components/components/button", {
|
|
36
36
|
text: "Send me the survey"
|
|
37
37
|
} %>
|
|
38
|
-
<a href="https://www.smartsurvey.co.uk/s/gov-uk-banner/?c=<%=
|
|
38
|
+
<a href="https://www.smartsurvey.co.uk/s/gov-uk-banner/?c=<%= path_without_pii %>&gcl=1627485790.1515403243" class="gem-c-feedback__email-link govuk-link" id="take-survey" target="_blank" rel="noopener noreferrer">Don’t have an email address?</a>
|
|
39
39
|
</div>
|
|
40
40
|
</div>
|
|
41
41
|
</form>
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: govuk_publishing_components
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 13.5.
|
|
4
|
+
version: 13.5.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- GOV.UK Dev
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-01-
|
|
11
|
+
date: 2019-01-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: govspeak
|