govuk_tech_docs 3.2.1 → 3.3.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 +4 -4
- data/.github/workflows/publish.yaml +1 -1
- data/CHANGELOG.md +20 -7
- data/README.md +2 -2
- data/lib/govuk_tech_docs/contribution_banner.rb +1 -1
- data/lib/govuk_tech_docs/version.rb +1 -1
- data/lib/source/layouts/core.erb +1 -1
- data/node_modules/govuk-frontend/govuk/all.js +1548 -311
- data/node_modules/govuk-frontend/govuk/common/closest-attribute-value.js +70 -0
- data/node_modules/govuk-frontend/govuk/common/index.js +172 -0
- data/node_modules/govuk-frontend/govuk/common/normalise-dataset.js +373 -0
- data/node_modules/govuk-frontend/govuk/common.js +138 -3
- data/node_modules/govuk-frontend/govuk/components/_all.scss +1 -0
- data/node_modules/govuk-frontend/govuk/components/accordion/_index.scss +5 -6
- data/node_modules/govuk-frontend/govuk/components/accordion/accordion.js +754 -36
- data/node_modules/govuk-frontend/govuk/components/breadcrumbs/_index.scss +0 -2
- data/node_modules/govuk-frontend/govuk/components/button/_index.scss +29 -21
- data/node_modules/govuk-frontend/govuk/components/button/button.js +365 -107
- data/node_modules/govuk-frontend/govuk/components/character-count/_index.scss +9 -0
- data/node_modules/govuk-frontend/govuk/components/character-count/character-count.js +1092 -109
- data/node_modules/govuk-frontend/govuk/components/checkboxes/_index.scss +3 -2
- data/node_modules/govuk-frontend/govuk/components/checkboxes/checkboxes.js +30 -2
- data/node_modules/govuk-frontend/govuk/components/details/details.js +51 -33
- data/node_modules/govuk-frontend/govuk/components/error-summary/error-summary.js +289 -6
- data/node_modules/govuk-frontend/govuk/components/footer/_index.scss +13 -23
- data/node_modules/govuk-frontend/govuk/components/header/_index.scss +30 -24
- data/node_modules/govuk-frontend/govuk/components/header/header.js +59 -11
- data/node_modules/govuk-frontend/govuk/components/input/_index.scss +13 -23
- data/node_modules/govuk-frontend/govuk/components/notification-banner/notification-banner.js +252 -2
- data/node_modules/govuk-frontend/govuk/components/pagination/_index.scss +247 -0
- data/node_modules/govuk-frontend/govuk/components/pagination/_pagination.scss +2 -0
- data/node_modules/govuk-frontend/govuk/components/panel/_index.scss +1 -1
- data/node_modules/govuk-frontend/govuk/components/radios/_index.scss +5 -12
- data/node_modules/govuk-frontend/govuk/components/radios/radios.js +30 -2
- data/node_modules/govuk-frontend/govuk/components/select/_index.scss +11 -0
- data/node_modules/govuk-frontend/govuk/components/skip-link/_index.scss +1 -3
- data/node_modules/govuk-frontend/govuk/components/skip-link/skip-link.js +10 -4
- data/node_modules/govuk-frontend/govuk/components/summary-list/_index.scss +45 -13
- data/node_modules/govuk-frontend/govuk/components/table/_index.scss +1 -1
- data/node_modules/govuk-frontend/govuk/components/tabs/tabs.js +28 -0
- data/node_modules/govuk-frontend/govuk/core/_section-break.scss +1 -1
- data/node_modules/govuk-frontend/govuk/helpers/_colour.scss +5 -5
- data/node_modules/govuk-frontend/govuk/helpers/_focused.scss +5 -0
- data/node_modules/govuk-frontend/govuk/helpers/_links.scss +13 -11
- data/node_modules/govuk-frontend/govuk/helpers/_media-queries.scss +2 -2
- data/node_modules/govuk-frontend/govuk/helpers/_shape-arrow.scss +1 -1
- data/node_modules/govuk-frontend/govuk/helpers/_spacing.scss +3 -3
- data/node_modules/govuk-frontend/govuk/helpers/_typography.scss +16 -9
- data/node_modules/govuk-frontend/govuk/i18n.js +390 -0
- data/node_modules/govuk-frontend/govuk/objects/_button-group.scss +10 -26
- data/node_modules/govuk-frontend/govuk/objects/_template.scss +1 -1
- data/node_modules/govuk-frontend/govuk/objects/_width-container.scss +0 -4
- data/node_modules/govuk-frontend/govuk/overrides/_spacing.scss +56 -12
- data/node_modules/govuk-frontend/govuk/settings/_all.scss +1 -0
- data/node_modules/govuk-frontend/govuk/settings/_colours-palette.scss +12 -0
- data/node_modules/govuk-frontend/govuk/settings/_compatibility.scss +26 -0
- data/node_modules/govuk-frontend/govuk/settings/_spacing.scss +4 -8
- data/node_modules/govuk-frontend/govuk/settings/_typography-font.scss +23 -0
- data/node_modules/govuk-frontend/govuk/settings/_typography-responsive.scss +12 -0
- data/node_modules/govuk-frontend/govuk/settings/_warnings.scss +53 -0
- data/node_modules/govuk-frontend/govuk/tools/_compatibility.scss +20 -6
- data/node_modules/govuk-frontend/govuk/tools/_exports.scss +1 -1
- data/node_modules/govuk-frontend/govuk/tools/_font-url.scss +1 -1
- data/node_modules/govuk-frontend/govuk/tools/_image-url.scss +1 -1
- data/node_modules/govuk-frontend/govuk/tools/_px-to-em.scss +2 -2
- data/node_modules/govuk-frontend/govuk/tools/_px-to-rem.scss +1 -1
- data/node_modules/govuk-frontend/govuk/vendor/polyfills/Date/now.js +21 -0
- data/node_modules/govuk-frontend/govuk/vendor/polyfills/Element/prototype/dataset.js +300 -0
- data/node_modules/govuk-frontend/govuk/vendor/polyfills/String/prototype/trim.js +21 -0
- data/node_modules/govuk-frontend/govuk-prototype-kit/init.js +7 -0
- data/node_modules/govuk-frontend/govuk-prototype-kit/init.scss +12 -0
- data/package-lock.json +12 -12
- data/package.json +1 -1
- metadata +14 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1fe53bb05a63a24a2d7d501d04fa172433d89e8f5fcd48bc4fc9313e97325ad0
|
|
4
|
+
data.tar.gz: 4b53d1f86522ae3807c40ba806befd97c5da2b42d92666fde35ac00bc0c89eba
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1b5bbfc06fe8387ddc6eae181fef27fca01d2afdefa68a7a5833e77d8eeb30e76335dc32fd13ca20501b88a107e8f0dfe3f0a64ba3cd8dcd9cfa1dc73e0c738f
|
|
7
|
+
data.tar.gz: 50751bf31f0ab377dca9618e749b9f8cbc029cf7a096085e8fdcea3d7004f42ce5901703bbb2c3cb11768aed369232226d74764a9347f02a5787b8822a9ef90d
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 3.3.0
|
|
6
|
+
|
|
7
|
+
### New features
|
|
8
|
+
|
|
9
|
+
There are some steps you should follow as the Technical Documentation Template (TDT) now uses GOV.UK Frontend 4.4.1.
|
|
10
|
+
|
|
11
|
+
1. Update your documentation site to use the latest template version. You can [follow the TDT guidance on using the latest template version](https://tdt-documentation.london.cloudapps.digital/maintain_project/use_latest_template/).
|
|
12
|
+
2. Check your documentation site displays correctly. If your site does not display correctly, you can refer to the [GOV.UK Frontend release notes](https://github.com/alphagov/govuk-frontend/releases/) for more information, or [contact the GOV.UK Design System team](https://design-system.service.gov.uk/get-in-touch/).
|
|
13
|
+
|
|
14
|
+
### Fixes
|
|
15
|
+
|
|
16
|
+
- [#242: Make scrollable area keyboard (and voice) focusable](https://github.com/alphagov/tech-docs-gem/pull/242) (thanks [@colinbm](https://github.com/colinbm))
|
|
17
|
+
|
|
5
18
|
## 3.2.1
|
|
6
19
|
|
|
7
20
|
### Fixes
|
|
@@ -418,7 +431,7 @@ which item is selected in the navigation.
|
|
|
418
431
|
More info:
|
|
419
432
|
|
|
420
433
|
- https://github.com/alphagov/tech-docs-gem/pull/19
|
|
421
|
-
- https://github.com/alphagov/tech-docs-gem/blob/
|
|
434
|
+
- https://github.com/alphagov/tech-docs-gem/blob/main/docs/frontmatter.md#parent
|
|
422
435
|
|
|
423
436
|
## 1.2.0
|
|
424
437
|
|
|
@@ -430,15 +443,15 @@ You can use this when you change a page URL.
|
|
|
430
443
|
|
|
431
444
|
More info:
|
|
432
445
|
|
|
433
|
-
- https://github.com/alphagov/tech-docs-gem/blob/
|
|
434
|
-
- https://github.com/alphagov/tech-docs-gem/blob/
|
|
446
|
+
- https://github.com/alphagov/tech-docs-gem/blob/main/docs/configuration.md#redirects
|
|
447
|
+
- https://github.com/alphagov/tech-docs-gem/blob/main/docs/frontmatter.md#old_paths
|
|
435
448
|
|
|
436
449
|
### New feature: contribution banner
|
|
437
450
|
|
|
438
451
|
You can now show a block at the bottom of the page that links to
|
|
439
452
|
the page source on GitHub, so readers can easily contribute back to the documentation.
|
|
440
453
|
|
|
441
|
-
https://github.com/alphagov/tech-docs-gem/blob/
|
|
454
|
+
https://github.com/alphagov/tech-docs-gem/blob/main/docs/configuration.md#show_contribution_banner
|
|
442
455
|
|
|
443
456
|
### New feature: page review system
|
|
444
457
|
|
|
@@ -446,8 +459,8 @@ An optional page review system to make sure documentation stays up to date.
|
|
|
446
459
|
|
|
447
460
|
More info:
|
|
448
461
|
|
|
449
|
-
- https://github.com/alphagov/tech-docs-gem/blob/
|
|
450
|
-
- https://github.com/alphagov/tech-docs-gem/blob/
|
|
462
|
+
- https://github.com/alphagov/tech-docs-gem/blob/main/docs/frontmatter.md#last_reviewed_on
|
|
463
|
+
- https://github.com/alphagov/tech-docs-gem/blob/main/docs/frontmatter.md#owner_slack
|
|
451
464
|
|
|
452
465
|
|
|
453
466
|
### Better meta tags
|
|
@@ -459,7 +472,7 @@ Pages now include better meta tags for search engines, Twitter, Facebook and Sla
|
|
|
459
472
|
You can now specify `google_site_verification` in tech-docs.yml. You can use
|
|
460
473
|
this to verify your site in Google Webmaster tools.
|
|
461
474
|
|
|
462
|
-
https://github.com/alphagov/tech-docs-gem/blob/
|
|
475
|
+
https://github.com/alphagov/tech-docs-gem/blob/main/docs/configuration.md#google_site_verification
|
|
463
476
|
|
|
464
477
|
## 1.0.0
|
|
465
478
|
|
data/README.md
CHANGED
|
@@ -15,7 +15,7 @@ Find out how to [contribute](https://tdt-documentation.london.cloudapps.digital/
|
|
|
15
15
|
|
|
16
16
|
This gem uses [GOV.UK Frontend](https://github.com/alphagov/govuk-frontend), part of the [GOV.UK Design System](https://design-system.service.gov.uk/).
|
|
17
17
|
|
|
18
|
-
We use `npm` to download the govuk-frontend package. To update to a new version, change the version in the [package.json file](
|
|
18
|
+
We use `npm` to download the govuk-frontend package. To update to a new version, change the version in the [package.json file](package.json) and run `npm update`.
|
|
19
19
|
|
|
20
20
|
## Developing locally
|
|
21
21
|
|
|
@@ -96,7 +96,7 @@ The documentation is [© Crown copyright][copyright] and available under the ter
|
|
|
96
96
|
[ogl]: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/
|
|
97
97
|
[tdt-docs]: https://tdt-documentation.london.cloudapps.digital
|
|
98
98
|
[tdt-template]: https://github.com/alphagov/tech-docs-template
|
|
99
|
-
[tdt-readme]: https://github.com/alphagov/tech-docs-template/blob/
|
|
99
|
+
[tdt-readme]: https://github.com/alphagov/tech-docs-template/blob/main/README.md
|
|
100
100
|
[mmt]: https://middlemanapp.com/advanced/project_templates/
|
|
101
101
|
|
|
102
102
|
[jas]: https://jasmine.github.io/
|
data/lib/source/layouts/core.erb
CHANGED
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
</div>
|
|
54
54
|
<% end %>
|
|
55
55
|
|
|
56
|
-
<div class="app-pane__content toc-open-disabled">
|
|
56
|
+
<div class="app-pane__content toc-open-disabled" aria-label="Content" tabindex="0">
|
|
57
57
|
<main id="content" class="technical-documentation" data-module="anchored-headings">
|
|
58
58
|
<%= yield %>
|
|
59
59
|
<%= partial "layouts/page_review" %>
|