govuk_tech_docs 6.2.4 → 6.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/ISSUE_TEMPLATE/documentation.yaml +29 -0
- data/.github/workflows/build-middleman-artifact.yaml +41 -0
- data/.github/workflows/dependency-review.yaml +1 -1
- data/.github/workflows/deploy-to-pages.yaml +39 -0
- data/.github/workflows/publish.yaml +4 -4
- data/.github/workflows/test.yaml +10 -4
- data/.gitignore +5 -4
- data/.rubocop.yml +5 -1
- data/.vale.ini +10 -0
- data/CHANGELOG.md +17 -4
- data/README.md +105 -26
- data/Rakefile +1 -1
- data/documentation/.nvmrc +1 -0
- data/documentation/Gemfile +11 -0
- data/documentation/LICENSE +21 -0
- data/documentation/README.md +30 -0
- data/documentation/Staticfile +4 -0
- data/documentation/config/tech-docs.yml +45 -0
- data/{example → documentation}/config.rb +3 -6
- data/documentation/source/accessibility/index.html.md.erb +64 -0
- data/documentation/source/configure_project/frontmatter/index.html.md.erb +206 -0
- data/documentation/source/configure_project/global_configuration/index.html.md.erb +328 -0
- data/documentation/source/configure_project/index.html.md.erb +17 -0
- data/documentation/source/configure_project/page_expiry_and_review/index.html.md.erb +93 -0
- data/documentation/source/configure_project/structure_docs/index.html.md.erb +117 -0
- data/documentation/source/create_project/build/index.html.md.erb +20 -0
- data/documentation/source/create_project/create_new_project/index.html.md.erb +23 -0
- data/documentation/source/create_project/get_started/index.html.md.erb +58 -0
- data/documentation/source/create_project/index.html.md.erb +17 -0
- data/documentation/source/create_project/preview/index.html.md.erb +26 -0
- data/documentation/source/images/Basic multipage.svg +1 -0
- data/documentation/source/images/Basic_multipage.svg +1 -0
- data/documentation/source/images/Nested multipage.svg +1 -0
- data/documentation/source/images/Nested_multipage.svg +1 -0
- data/documentation/source/images/Single_page.svg +1 -0
- data/documentation/source/images/core-layout-without-sidebar.png +0 -0
- data/documentation/source/images/core-layout.png +0 -0
- data/documentation/source/images/daniel-the-manual-spaniel-screenshot.svg +1 -0
- data/documentation/source/images/expired-page.png +0 -0
- data/documentation/source/images/last-reviewed-only.png +0 -0
- data/documentation/source/images/last-reviewed-only.svg +1 -0
- data/documentation/source/images/layout-layout.png +0 -0
- data/documentation/source/images/multipage.svg +3 -0
- data/documentation/source/images/not-expired-page.png +0 -0
- data/documentation/source/index.html.md.erb +19 -0
- data/documentation/source/maintain_project/index.html.md.erb +18 -0
- data/documentation/source/maintain_project/redirects/index.html.md.erb +22 -0
- data/documentation/source/maintain_project/review_content/index.html.md.erb +45 -0
- data/documentation/source/maintain_project/use_latest_template/index.html.md.erb +34 -0
- data/documentation/source/partials/_links.erb +81 -0
- data/documentation/source/publish_project/deploy/index.html.md.erb +44 -0
- data/documentation/source/publish_project/index.html.md.erb +15 -0
- data/documentation/source/publish_project/version/index.html.md.erb +12 -0
- data/documentation/source/support/index.html.md.erb +46 -0
- data/documentation/source/write_docs/add_openapi_spec/index.html.md.erb +48 -0
- data/documentation/source/write_docs/content/index.html.md.erb +128 -0
- data/documentation/source/write_docs/index.html.md.erb +15 -0
- data/exe/tech_docs_jobs +8 -0
- data/lib/govuk_tech_docs/version.rb +1 -1
- data/lib/govuk_tech_docs/warning_text_extension.rb +1 -0
- data/lib/source/layouts/_footer.erb +2 -2
- data/lib/source/layouts/_header.erb +2 -2
- data/lib/source/layouts/_service_navigation.erb +1 -6
- data/lib/source/layouts/core.erb +15 -7
- data/lib/tasks/helpers/linter_report.rb +49 -0
- data/lib/tasks/helpers/rake_utils.rb +7 -0
- data/lib/tasks/helpers/vale_report.rb +156 -0
- data/lib/tasks/lint.rake +33 -0
- data/lib/tasks/middleman.rake +10 -0
- data/node_modules/govuk-frontend/dist/govuk/_base.import.scss +6 -0
- data/node_modules/govuk-frontend/dist/govuk/_base.scss +4 -5
- data/node_modules/govuk-frontend/dist/govuk/all.bundle.js +31 -22
- data/node_modules/govuk-frontend/dist/govuk/all.bundle.mjs +31 -22
- data/node_modules/govuk-frontend/dist/govuk/assets/images/govuk-icon-180.png +0 -0
- data/node_modules/govuk-frontend/dist/govuk/assets/images/govuk-icon-192.png +0 -0
- data/node_modules/govuk-frontend/dist/govuk/assets/images/govuk-icon-512.png +0 -0
- data/node_modules/govuk-frontend/dist/govuk/common/govuk-frontend-version.mjs +1 -1
- data/node_modules/govuk-frontend/dist/govuk/components/_index.import.scss +37 -0
- data/node_modules/govuk-frontend/dist/govuk/components/_index.scss +36 -39
- data/node_modules/govuk-frontend/dist/govuk/components/accordion/_accordion.import.scss +6 -0
- data/node_modules/govuk-frontend/dist/govuk/components/accordion/_index.import.scss +8 -0
- data/node_modules/govuk-frontend/dist/govuk/components/accordion/_index.scss +3 -373
- data/node_modules/govuk-frontend/dist/govuk/components/accordion/_mixin.scss +375 -0
- data/node_modules/govuk-frontend/dist/govuk/components/back-link/_back-link.import.scss +6 -0
- data/node_modules/govuk-frontend/dist/govuk/components/back-link/_index.import.scss +8 -0
- data/node_modules/govuk-frontend/dist/govuk/components/back-link/_index.scss +3 -85
- data/node_modules/govuk-frontend/dist/govuk/components/back-link/_mixin.scss +87 -0
- data/node_modules/govuk-frontend/dist/govuk/components/breadcrumbs/_breadcrumbs.import.scss +6 -0
- data/node_modules/govuk-frontend/dist/govuk/components/breadcrumbs/_index.import.scss +8 -0
- data/node_modules/govuk-frontend/dist/govuk/components/breadcrumbs/_index.scss +3 -136
- data/node_modules/govuk-frontend/dist/govuk/components/breadcrumbs/_mixin.scss +138 -0
- data/node_modules/govuk-frontend/dist/govuk/components/button/_button.import.scss +6 -0
- data/node_modules/govuk-frontend/dist/govuk/components/button/_index.import.scss +13 -0
- data/node_modules/govuk-frontend/dist/govuk/components/button/_index.scss +9 -259
- data/node_modules/govuk-frontend/dist/govuk/components/button/_mixin.scss +233 -0
- data/node_modules/govuk-frontend/dist/govuk/components/button/_settings.import.scss +32 -0
- data/node_modules/govuk-frontend/dist/govuk/components/button/_settings.scss +34 -0
- data/node_modules/govuk-frontend/dist/govuk/components/character-count/_character-count.import.scss +6 -0
- data/node_modules/govuk-frontend/dist/govuk/components/character-count/_index.import.scss +12 -0
- data/node_modules/govuk-frontend/dist/govuk/components/character-count/_index.scss +7 -44
- data/node_modules/govuk-frontend/dist/govuk/components/character-count/_mixin.scss +41 -0
- data/node_modules/govuk-frontend/dist/govuk/components/checkboxes/_checkboxes.import.scss +6 -0
- data/node_modules/govuk-frontend/dist/govuk/components/checkboxes/_index.import.scss +12 -0
- data/node_modules/govuk-frontend/dist/govuk/components/checkboxes/_index.scss +7 -314
- data/node_modules/govuk-frontend/dist/govuk/components/checkboxes/_mixin.scss +311 -0
- data/node_modules/govuk-frontend/dist/govuk/components/cookie-banner/_cookie-banner.import.scss +6 -0
- data/node_modules/govuk-frontend/dist/govuk/components/cookie-banner/_index.import.scss +9 -0
- data/node_modules/govuk-frontend/dist/govuk/components/cookie-banner/_index.scss +4 -55
- data/node_modules/govuk-frontend/dist/govuk/components/cookie-banner/_mixin.scss +56 -0
- data/node_modules/govuk-frontend/dist/govuk/components/date-input/_date-input.import.scss +6 -0
- data/node_modules/govuk-frontend/dist/govuk/components/date-input/_index.import.scss +13 -0
- data/node_modules/govuk-frontend/dist/govuk/components/date-input/_index.scss +8 -33
- data/node_modules/govuk-frontend/dist/govuk/components/date-input/_mixin.scss +29 -0
- data/node_modules/govuk-frontend/dist/govuk/components/details/_details.import.scss +6 -0
- data/node_modules/govuk-frontend/dist/govuk/components/details/_index.import.scss +8 -0
- data/node_modules/govuk-frontend/dist/govuk/components/details/_index.scss +3 -141
- data/node_modules/govuk-frontend/dist/govuk/components/details/_mixin.scss +143 -0
- data/node_modules/govuk-frontend/dist/govuk/components/error-message/_error-message.import.scss +6 -0
- data/node_modules/govuk-frontend/dist/govuk/components/error-message/_index.import.scss +8 -0
- data/node_modules/govuk-frontend/dist/govuk/components/error-message/_index.scss +3 -14
- data/node_modules/govuk-frontend/dist/govuk/components/error-message/_mixin.scss +16 -0
- data/node_modules/govuk-frontend/dist/govuk/components/error-summary/_error-summary.import.scss +6 -0
- data/node_modules/govuk-frontend/dist/govuk/components/error-summary/_index.import.scss +8 -0
- data/node_modules/govuk-frontend/dist/govuk/components/error-summary/_index.scss +3 -57
- data/node_modules/govuk-frontend/dist/govuk/components/error-summary/_mixin.scss +58 -0
- data/node_modules/govuk-frontend/dist/govuk/components/exit-this-page/_exit-this-page.import.scss +6 -0
- data/node_modules/govuk-frontend/dist/govuk/components/exit-this-page/_index.import.scss +9 -0
- data/node_modules/govuk-frontend/dist/govuk/components/exit-this-page/_index.scss +4 -91
- data/node_modules/govuk-frontend/dist/govuk/components/exit-this-page/_mixin.scss +92 -0
- data/node_modules/govuk-frontend/dist/govuk/components/fieldset/_fieldset.import.scss +6 -0
- data/node_modules/govuk-frontend/dist/govuk/components/fieldset/_index.import.scss +8 -0
- data/node_modules/govuk-frontend/dist/govuk/components/fieldset/_index.scss +3 -69
- data/node_modules/govuk-frontend/dist/govuk/components/fieldset/_mixin.scss +71 -0
- data/node_modules/govuk-frontend/dist/govuk/components/file-upload/_file-upload.import.scss +6 -0
- data/node_modules/govuk-frontend/dist/govuk/components/file-upload/_index.import.scss +11 -0
- data/node_modules/govuk-frontend/dist/govuk/components/file-upload/_index.scss +6 -211
- data/node_modules/govuk-frontend/dist/govuk/components/file-upload/_mixin.scss +217 -0
- data/node_modules/govuk-frontend/dist/govuk/components/file-upload/file-upload.bundle.js +30 -21
- data/node_modules/govuk-frontend/dist/govuk/components/file-upload/file-upload.bundle.mjs +30 -21
- data/node_modules/govuk-frontend/dist/govuk/components/file-upload/file-upload.mjs +30 -21
- data/node_modules/govuk-frontend/dist/govuk/components/footer/_footer.import.scss +6 -0
- data/node_modules/govuk-frontend/dist/govuk/components/footer/_index.import.scss +8 -0
- data/node_modules/govuk-frontend/dist/govuk/components/footer/_index.scss +3 -197
- data/node_modules/govuk-frontend/dist/govuk/components/footer/_mixin.scss +199 -0
- data/node_modules/govuk-frontend/dist/govuk/components/header/_header.import.scss +6 -0
- data/node_modules/govuk-frontend/dist/govuk/components/header/_index.import.scss +8 -0
- data/node_modules/govuk-frontend/dist/govuk/components/header/_index.scss +3 -188
- data/node_modules/govuk-frontend/dist/govuk/components/header/_mixin.scss +175 -0
- data/node_modules/govuk-frontend/dist/govuk/components/hint/_hint.import.scss +6 -0
- data/node_modules/govuk-frontend/dist/govuk/components/hint/_index.import.scss +8 -0
- data/node_modules/govuk-frontend/dist/govuk/components/hint/_index.scss +3 -45
- data/node_modules/govuk-frontend/dist/govuk/components/hint/_mixin.scss +47 -0
- data/node_modules/govuk-frontend/dist/govuk/components/input/_index.import.scss +11 -0
- data/node_modules/govuk-frontend/dist/govuk/components/input/_index.scss +6 -162
- data/node_modules/govuk-frontend/dist/govuk/components/input/_input.import.scss +6 -0
- data/node_modules/govuk-frontend/dist/govuk/components/input/_mixin.scss +160 -0
- data/node_modules/govuk-frontend/dist/govuk/components/inset-text/_index.import.scss +8 -0
- data/node_modules/govuk-frontend/dist/govuk/components/inset-text/_index.scss +3 -29
- data/node_modules/govuk-frontend/dist/govuk/components/inset-text/_inset-text.import.scss +6 -0
- data/node_modules/govuk-frontend/dist/govuk/components/inset-text/_mixin.scss +31 -0
- data/node_modules/govuk-frontend/dist/govuk/components/label/_index.import.scss +8 -0
- data/node_modules/govuk-frontend/dist/govuk/components/label/_index.scss +3 -46
- data/node_modules/govuk-frontend/dist/govuk/components/label/_label.import.scss +6 -0
- data/node_modules/govuk-frontend/dist/govuk/components/label/_mixin.scss +48 -0
- data/node_modules/govuk-frontend/dist/govuk/components/notification-banner/_index.import.scss +8 -0
- data/node_modules/govuk-frontend/dist/govuk/components/notification-banner/_index.scss +3 -97
- data/node_modules/govuk-frontend/dist/govuk/components/notification-banner/_mixin.scss +99 -0
- data/node_modules/govuk-frontend/dist/govuk/components/notification-banner/_notification-banner.import.scss +6 -0
- data/node_modules/govuk-frontend/dist/govuk/components/pagination/_index.import.scss +8 -0
- data/node_modules/govuk-frontend/dist/govuk/components/pagination/_index.scss +3 -233
- data/node_modules/govuk-frontend/dist/govuk/components/pagination/_mixin.scss +235 -0
- data/node_modules/govuk-frontend/dist/govuk/components/pagination/_pagination.import.scss +6 -0
- data/node_modules/govuk-frontend/dist/govuk/components/panel/_index.import.scss +8 -0
- data/node_modules/govuk-frontend/dist/govuk/components/panel/_index.scss +3 -58
- data/node_modules/govuk-frontend/dist/govuk/components/panel/_mixin.scss +60 -0
- data/node_modules/govuk-frontend/dist/govuk/components/panel/_panel.import.scss +6 -0
- data/node_modules/govuk-frontend/dist/govuk/components/password-input/_index.import.scss +10 -0
- data/node_modules/govuk-frontend/dist/govuk/components/password-input/_index.scss +5 -56
- data/node_modules/govuk-frontend/dist/govuk/components/password-input/_mixin.scss +56 -0
- data/node_modules/govuk-frontend/dist/govuk/components/password-input/_password-input.import.scss +6 -0
- data/node_modules/govuk-frontend/dist/govuk/components/phase-banner/_index.import.scss +9 -0
- data/node_modules/govuk-frontend/dist/govuk/components/phase-banner/_index.scss +4 -41
- data/node_modules/govuk-frontend/dist/govuk/components/phase-banner/_mixin.scss +42 -0
- data/node_modules/govuk-frontend/dist/govuk/components/phase-banner/_phase-banner.import.scss +6 -0
- data/node_modules/govuk-frontend/dist/govuk/components/radios/_index.import.scss +12 -0
- data/node_modules/govuk-frontend/dist/govuk/components/radios/_index.scss +7 -330
- data/node_modules/govuk-frontend/dist/govuk/components/radios/_mixin.scss +330 -0
- data/node_modules/govuk-frontend/dist/govuk/components/radios/_radios.import.scss +6 -0
- data/node_modules/govuk-frontend/dist/govuk/components/select/_index.import.scss +11 -0
- data/node_modules/govuk-frontend/dist/govuk/components/select/_index.scss +6 -53
- data/node_modules/govuk-frontend/dist/govuk/components/select/_mixin.scss +52 -0
- data/node_modules/govuk-frontend/dist/govuk/components/select/_select.import.scss +6 -0
- data/node_modules/govuk-frontend/dist/govuk/components/service-navigation/_index.import.scss +8 -0
- data/node_modules/govuk-frontend/dist/govuk/components/service-navigation/_index.scss +3 -235
- data/node_modules/govuk-frontend/dist/govuk/components/service-navigation/_mixin.scss +237 -0
- data/node_modules/govuk-frontend/dist/govuk/components/service-navigation/_service-navigation.import.scss +6 -0
- data/node_modules/govuk-frontend/dist/govuk/components/skip-link/_index.import.scss +8 -0
- data/node_modules/govuk-frontend/dist/govuk/components/skip-link/_index.scss +3 -58
- data/node_modules/govuk-frontend/dist/govuk/components/skip-link/_mixin.scss +60 -0
- data/node_modules/govuk-frontend/dist/govuk/components/skip-link/_skip-link.import.scss +6 -0
- data/node_modules/govuk-frontend/dist/govuk/components/summary-list/_index.import.scss +8 -0
- data/node_modules/govuk-frontend/dist/govuk/components/summary-list/_index.scss +3 -284
- data/node_modules/govuk-frontend/dist/govuk/components/summary-list/_mixin.scss +286 -0
- data/node_modules/govuk-frontend/dist/govuk/components/summary-list/_summary-list.import.scss +6 -0
- data/node_modules/govuk-frontend/dist/govuk/components/table/_index.import.scss +8 -0
- data/node_modules/govuk-frontend/dist/govuk/components/table/_index.scss +3 -75
- data/node_modules/govuk-frontend/dist/govuk/components/table/_mixin.scss +77 -0
- data/node_modules/govuk-frontend/dist/govuk/components/table/_table.import.scss +6 -0
- data/node_modules/govuk-frontend/dist/govuk/components/tabs/_index.import.scss +8 -0
- data/node_modules/govuk-frontend/dist/govuk/components/tabs/_index.scss +3 -138
- data/node_modules/govuk-frontend/dist/govuk/components/tabs/_mixin.scss +140 -0
- data/node_modules/govuk-frontend/dist/govuk/components/tabs/_tabs.import.scss +6 -0
- data/node_modules/govuk-frontend/dist/govuk/components/tag/_index.import.scss +8 -0
- data/node_modules/govuk-frontend/dist/govuk/components/tag/_index.scss +3 -132
- data/node_modules/govuk-frontend/dist/govuk/components/tag/_mixin.scss +135 -0
- data/node_modules/govuk-frontend/dist/govuk/components/tag/_tag.import.scss +6 -0
- data/node_modules/govuk-frontend/dist/govuk/components/task-list/_index.import.scss +9 -0
- data/node_modules/govuk-frontend/dist/govuk/components/task-list/_index.scss +4 -82
- data/node_modules/govuk-frontend/dist/govuk/components/task-list/_mixin.scss +83 -0
- data/node_modules/govuk-frontend/dist/govuk/components/task-list/_task-list.import.scss +6 -0
- data/node_modules/govuk-frontend/dist/govuk/components/textarea/_index.import.scss +11 -0
- data/node_modules/govuk-frontend/dist/govuk/components/textarea/_index.scss +6 -44
- data/node_modules/govuk-frontend/dist/govuk/components/textarea/_mixin.scss +43 -0
- data/node_modules/govuk-frontend/dist/govuk/components/textarea/_textarea.import.scss +6 -0
- data/node_modules/govuk-frontend/dist/govuk/components/warning-text/_index.import.scss +8 -0
- data/node_modules/govuk-frontend/dist/govuk/components/warning-text/_index.scss +3 -67
- data/node_modules/govuk-frontend/dist/govuk/components/warning-text/_mixin.scss +69 -0
- data/node_modules/govuk-frontend/dist/govuk/components/warning-text/_warning-text.import.scss +6 -0
- data/node_modules/govuk-frontend/dist/govuk/core/_global-styles.import.scss +10 -0
- data/node_modules/govuk-frontend/dist/govuk/core/_global-styles.mixin.scss +19 -0
- data/node_modules/govuk-frontend/dist/govuk/core/_global-styles.scss +5 -22
- data/node_modules/govuk-frontend/dist/govuk/core/_index.import.scss +6 -0
- data/node_modules/govuk-frontend/dist/govuk/core/_index.scss +6 -10
- data/node_modules/govuk-frontend/dist/govuk/core/_links.import.scss +10 -0
- data/node_modules/govuk-frontend/dist/govuk/core/_links.mixin.scss +44 -0
- data/node_modules/govuk-frontend/dist/govuk/core/_links.scss +3 -48
- data/node_modules/govuk-frontend/dist/govuk/core/_lists.import.scss +14 -0
- data/node_modules/govuk-frontend/dist/govuk/core/_lists.mixin.scss +74 -0
- data/node_modules/govuk-frontend/dist/govuk/core/_lists.scss +6 -73
- data/node_modules/govuk-frontend/dist/govuk/core/_section-break.import.scss +8 -0
- data/node_modules/govuk-frontend/dist/govuk/core/_section-break.mixin.scss +54 -0
- data/node_modules/govuk-frontend/dist/govuk/core/_section-break.scss +3 -55
- data/node_modules/govuk-frontend/dist/govuk/core/_typography.import.scss +8 -0
- data/node_modules/govuk-frontend/dist/govuk/core/_typography.mixin.scss +173 -0
- data/node_modules/govuk-frontend/dist/govuk/core/_typography.scss +3 -174
- data/node_modules/govuk-frontend/dist/govuk/custom-properties/_breakpoints.import.scss +8 -0
- data/node_modules/govuk-frontend/dist/govuk/custom-properties/_breakpoints.mixin.scss +15 -0
- data/node_modules/govuk-frontend/dist/govuk/custom-properties/_breakpoints.scss +2 -15
- data/node_modules/govuk-frontend/dist/govuk/custom-properties/_frontend-version.import.scss +8 -0
- data/node_modules/govuk-frontend/dist/govuk/custom-properties/_frontend-version.mixin.scss +13 -0
- data/node_modules/govuk-frontend/dist/govuk/custom-properties/_frontend-version.scss +2 -13
- data/node_modules/govuk-frontend/dist/govuk/custom-properties/_functional-colours.import.scss +8 -0
- data/node_modules/govuk-frontend/dist/govuk/custom-properties/_functional-colours.mixin.scss +21 -0
- data/node_modules/govuk-frontend/dist/govuk/custom-properties/_functional-colours.scss +2 -20
- data/node_modules/govuk-frontend/dist/govuk/custom-properties/_index.import.scss +4 -0
- data/node_modules/govuk-frontend/dist/govuk/custom-properties/_index.scss +3 -4
- data/node_modules/govuk-frontend/dist/govuk/govuk-frontend.min.js +1 -1
- data/node_modules/govuk-frontend/dist/govuk/helpers/_clearfix.import.scss +2 -0
- data/node_modules/govuk-frontend/dist/govuk/helpers/_clearfix.scss +0 -1
- data/node_modules/govuk-frontend/dist/govuk/helpers/_colour.import.scss +2 -0
- data/node_modules/govuk-frontend/dist/govuk/helpers/_colour.scss +35 -17
- data/node_modules/govuk-frontend/dist/govuk/helpers/_device-pixels.import.scss +2 -0
- data/node_modules/govuk-frontend/dist/govuk/helpers/_device-pixels.scss +2 -3
- data/node_modules/govuk-frontend/dist/govuk/helpers/_focused.import.scss +2 -0
- data/node_modules/govuk-frontend/dist/govuk/helpers/_focused.scss +3 -1
- data/node_modules/govuk-frontend/dist/govuk/helpers/{_font-faces.scss → _font-faces--internal.scss} +5 -5
- data/node_modules/govuk-frontend/dist/govuk/helpers/_grid.import.scss +2 -0
- data/node_modules/govuk-frontend/dist/govuk/helpers/_grid.scss +3 -1
- data/node_modules/govuk-frontend/dist/govuk/helpers/_index.import.scss +2 -0
- data/node_modules/govuk-frontend/dist/govuk/helpers/_index.scss +12 -13
- data/node_modules/govuk-frontend/dist/govuk/helpers/_links.import.scss +2 -0
- data/node_modules/govuk-frontend/dist/govuk/helpers/_links.scss +6 -1
- data/node_modules/govuk-frontend/dist/govuk/helpers/_media-queries.import.scss +2 -0
- data/node_modules/govuk-frontend/dist/govuk/helpers/_media-queries.scss +2 -3
- data/node_modules/govuk-frontend/dist/govuk/helpers/_shape-arrow.import.scss +2 -0
- data/node_modules/govuk-frontend/dist/govuk/helpers/_shape-arrow.scss +0 -1
- data/node_modules/govuk-frontend/dist/govuk/helpers/_spacing--internal.scss +80 -0
- data/node_modules/govuk-frontend/dist/govuk/helpers/_spacing.import.scss +2 -0
- data/node_modules/govuk-frontend/dist/govuk/helpers/_spacing.scss +18 -79
- data/node_modules/govuk-frontend/dist/govuk/helpers/_typography--internal.scss +24 -0
- data/node_modules/govuk-frontend/dist/govuk/helpers/_typography.import.scss +2 -0
- data/node_modules/govuk-frontend/dist/govuk/helpers/_typography.scss +20 -37
- data/node_modules/govuk-frontend/dist/govuk/helpers/_visually-hidden.import.scss +2 -0
- data/node_modules/govuk-frontend/dist/govuk/helpers/_visually-hidden.scss +1 -2
- data/node_modules/govuk-frontend/dist/govuk/helpers/_width-container.import.scss +2 -0
- data/node_modules/govuk-frontend/dist/govuk/helpers/_width-container.scss +73 -0
- data/node_modules/govuk-frontend/dist/govuk/index.import.scss +10 -0
- data/node_modules/govuk-frontend/dist/govuk/index.scss +6 -7
- data/node_modules/govuk-frontend/dist/govuk/objects/_button-group.import.scss +8 -0
- data/node_modules/govuk-frontend/dist/govuk/objects/_button-group.mixin.scss +80 -0
- data/node_modules/govuk-frontend/dist/govuk/objects/_button-group.scss +3 -78
- data/node_modules/govuk-frontend/dist/govuk/objects/_form-group.import.scss +8 -0
- data/node_modules/govuk-frontend/dist/govuk/objects/_form-group.mixin.scss +26 -0
- data/node_modules/govuk-frontend/dist/govuk/objects/_form-group.scss +3 -24
- data/node_modules/govuk-frontend/dist/govuk/objects/_grid.import.scss +8 -0
- data/node_modules/govuk-frontend/dist/govuk/objects/_grid.mixin.scss +28 -0
- data/node_modules/govuk-frontend/dist/govuk/objects/_grid.scss +3 -26
- data/node_modules/govuk-frontend/dist/govuk/objects/_index.import.scss +7 -0
- data/node_modules/govuk-frontend/dist/govuk/objects/_index.scss +6 -7
- data/node_modules/govuk-frontend/dist/govuk/objects/_main-wrapper.import.scss +8 -0
- data/node_modules/govuk-frontend/dist/govuk/objects/_main-wrapper.mixin.scss +55 -0
- data/node_modules/govuk-frontend/dist/govuk/objects/_main-wrapper.scss +3 -53
- data/node_modules/govuk-frontend/dist/govuk/objects/_template.import.scss +8 -0
- data/node_modules/govuk-frontend/dist/govuk/objects/_template.mixin.scss +53 -0
- data/node_modules/govuk-frontend/dist/govuk/objects/_template.scss +3 -51
- data/node_modules/govuk-frontend/dist/govuk/objects/_width-container.import.scss +8 -0
- data/node_modules/govuk-frontend/dist/govuk/objects/_width-container.mixin.scss +9 -0
- data/node_modules/govuk-frontend/dist/govuk/objects/_width-container.scss +3 -76
- data/node_modules/govuk-frontend/dist/govuk/overrides/_display.import.scss +8 -0
- data/node_modules/govuk-frontend/dist/govuk/overrides/_display.mixin.scss +26 -0
- data/node_modules/govuk-frontend/dist/govuk/overrides/_display.scss +2 -26
- data/node_modules/govuk-frontend/dist/govuk/overrides/_index.import.scss +6 -0
- data/node_modules/govuk-frontend/dist/govuk/overrides/_index.scss +5 -9
- data/node_modules/govuk-frontend/dist/govuk/overrides/_spacing.import.scss +8 -0
- data/node_modules/govuk-frontend/dist/govuk/overrides/_spacing.mixin.scss +89 -0
- data/node_modules/govuk-frontend/dist/govuk/overrides/_spacing.scss +2 -88
- data/node_modules/govuk-frontend/dist/govuk/overrides/_text-align.import.scss +8 -0
- data/node_modules/govuk-frontend/dist/govuk/overrides/_text-align.mixin.scss +16 -0
- data/node_modules/govuk-frontend/dist/govuk/overrides/_text-align.scss +2 -16
- data/node_modules/govuk-frontend/dist/govuk/overrides/_typography.import.scss +8 -0
- data/node_modules/govuk-frontend/dist/govuk/overrides/_typography.mixin.scss +43 -0
- data/node_modules/govuk-frontend/dist/govuk/overrides/_typography.scss +2 -43
- data/node_modules/govuk-frontend/dist/govuk/overrides/_width.import.scss +8 -0
- data/node_modules/govuk-frontend/dist/govuk/overrides/_width.mixin.scss +50 -0
- data/node_modules/govuk-frontend/dist/govuk/overrides/_width.scss +2 -49
- data/node_modules/govuk-frontend/dist/govuk/settings/_assets.import.scss +13 -0
- data/node_modules/govuk-frontend/dist/govuk/settings/_assets.scss +46 -35
- data/node_modules/govuk-frontend/dist/govuk/settings/_colours-applied.import.scss +13 -0
- data/node_modules/govuk-frontend/dist/govuk/settings/_colours-functional.import.scss +2 -0
- data/node_modules/govuk-frontend/dist/govuk/settings/_colours-functional.scss +10 -235
- data/node_modules/govuk-frontend/dist/govuk/settings/_colours-legacy-functional.import.scss +2 -0
- data/node_modules/govuk-frontend/dist/govuk/settings/_colours-legacy-functional.scss +188 -0
- data/node_modules/govuk-frontend/dist/govuk/settings/_colours-organisations.import.scss +2 -0
- data/node_modules/govuk-frontend/dist/govuk/settings/_colours-organisations.scss +1 -20
- data/node_modules/govuk-frontend/dist/govuk/settings/{_colours-palette.scss → _colours-palette--internal.scss} +2 -3
- data/node_modules/govuk-frontend/dist/govuk/settings/_custom-properties.import.scss +2 -0
- data/node_modules/govuk-frontend/dist/govuk/settings/_custom-properties.scss +0 -1
- data/node_modules/govuk-frontend/dist/govuk/settings/_global-styles.import.scss +2 -0
- data/node_modules/govuk-frontend/dist/govuk/settings/_global-styles.scss +0 -1
- data/node_modules/govuk-frontend/dist/govuk/settings/_index.import.scss +24 -0
- data/node_modules/govuk-frontend/dist/govuk/settings/_index.scss +13 -14
- data/node_modules/govuk-frontend/dist/govuk/settings/_links.import.scss +2 -0
- data/node_modules/govuk-frontend/dist/govuk/settings/_links.scss +0 -1
- data/node_modules/govuk-frontend/dist/govuk/settings/_measurements.import.scss +2 -0
- data/node_modules/govuk-frontend/dist/govuk/settings/_measurements.scss +2 -3
- data/node_modules/govuk-frontend/dist/govuk/settings/_media-queries.import.scss +2 -0
- data/node_modules/govuk-frontend/dist/govuk/settings/_media-queries.scss +0 -1
- data/node_modules/govuk-frontend/dist/govuk/settings/_spacing.import.scss +2 -0
- data/node_modules/govuk-frontend/dist/govuk/settings/_spacing.scss +0 -1
- data/node_modules/govuk-frontend/dist/govuk/settings/_typography-font.import.scss +2 -0
- data/node_modules/govuk-frontend/dist/govuk/settings/_typography-font.scss +2 -4
- data/node_modules/govuk-frontend/dist/govuk/settings/_typography-responsive.import.scss +2 -0
- data/node_modules/govuk-frontend/dist/govuk/settings/_typography-responsive.scss +0 -1
- data/node_modules/govuk-frontend/dist/govuk/settings/_warnings--internal.scss +69 -0
- data/node_modules/govuk-frontend/dist/govuk/settings/_warnings.import.scss +2 -0
- data/node_modules/govuk-frontend/dist/govuk/settings/_warnings.scss +9 -69
- data/node_modules/govuk-frontend/dist/govuk/tools/_exports.import.scss +2 -0
- data/node_modules/govuk-frontend/dist/govuk/tools/_exports.scss +10 -5
- data/node_modules/govuk-frontend/dist/govuk/tools/_font-url.import.scss +31 -0
- data/node_modules/govuk-frontend/dist/govuk/tools/_font-url.scss +9 -1
- data/node_modules/govuk-frontend/dist/govuk/tools/_if.import.scss +2 -0
- data/node_modules/govuk-frontend/dist/govuk/tools/_if.scss +0 -1
- data/node_modules/govuk-frontend/dist/govuk/tools/_image-url.import.scss +31 -0
- data/node_modules/govuk-frontend/dist/govuk/tools/_image-url.scss +9 -1
- data/node_modules/govuk-frontend/dist/govuk/tools/_index.import.scss +2 -0
- data/node_modules/govuk-frontend/dist/govuk/tools/_index.scss +6 -7
- data/node_modules/govuk-frontend/dist/govuk/tools/_px-to-em.import.scss +2 -0
- data/node_modules/govuk-frontend/dist/govuk/tools/_px-to-em.scss +1 -2
- data/node_modules/govuk-frontend/dist/govuk/tools/_px-to-rem.import.scss +2 -0
- data/node_modules/govuk-frontend/dist/govuk/tools/_px-to-rem.scss +1 -2
- data/node_modules/govuk-frontend/dist/govuk/utilities/_clearfix.import.scss +8 -0
- data/node_modules/govuk-frontend/dist/govuk/utilities/_clearfix.mixin.scss +10 -0
- data/node_modules/govuk-frontend/dist/govuk/utilities/_clearfix.scss +2 -8
- data/node_modules/govuk-frontend/dist/govuk/utilities/_index.import.scss +3 -0
- data/node_modules/govuk-frontend/dist/govuk/utilities/_index.scss +2 -4
- data/node_modules/govuk-frontend/dist/govuk/utilities/_visually-hidden.import.scss +8 -0
- data/node_modules/govuk-frontend/dist/govuk/utilities/_visually-hidden.mixin.scss +14 -0
- data/node_modules/govuk-frontend/dist/govuk/utilities/_visually-hidden.scss +2 -12
- data/node_modules/govuk-frontend/dist/govuk-prototype-kit/init.scss +2 -3
- data/package-lock.json +157 -128
- data/package.json +1 -1
- metadata +264 -74
- data/docs/configuration.md +0 -3
- data/docs/frontmatter.md +0 -3
- data/docs/page-expiry.md +0 -3
- data/example/.ruby-version +0 -1
- data/example/Gemfile +0 -3
- data/example/config/tech-docs.yml +0 -67
- data/example/source/active-pages/index.html.md.erb +0 -7
- data/example/source/active-pages/sub-section/index.html.md.erb +0 -7
- data/example/source/api-path.html.md +0 -7
- data/example/source/api-reference.html.md +0 -5
- data/example/source/child-of-expired-page.html.md +0 -8
- data/example/source/code.html.md +0 -42
- data/example/source/core-layout-without-sidebar.html.md.erb +0 -7
- data/example/source/core-layout.html.md.erb +0 -12
- data/example/source/expired-page-with-owner.html.md +0 -10
- data/example/source/expired-page.html.md +0 -9
- data/example/source/headings.html.md +0 -11
- data/example/source/hidden-page.html.md +0 -10
- data/example/source/index.html.md.erb +0 -27
- data/example/source/javascripts/govuk_frontend.js +0 -1
- data/example/source/nested-page/another-nested-nested-page/index.html.md +0 -5
- data/example/source/nested-page/another-nested-page/index.html.md +0 -5
- data/example/source/nested-page/index.html.md +0 -5
- data/example/source/not-expired-page.html.md +0 -9
- data/example/source/pets.yml +0 -113
- data/example/source/prevent-index-page.html.md +0 -10
- data/example/source/single-page-nav.html.md +0 -13
- data/example/source/templates/proxy_template.html.md +0 -8
- data/node_modules/govuk-frontend/dist/govuk/components/accordion/_accordion.scss +0 -7
- data/node_modules/govuk-frontend/dist/govuk/components/back-link/_back-link.scss +0 -7
- data/node_modules/govuk-frontend/dist/govuk/components/breadcrumbs/_breadcrumbs.scss +0 -7
- data/node_modules/govuk-frontend/dist/govuk/components/button/_button.scss +0 -7
- data/node_modules/govuk-frontend/dist/govuk/components/character-count/_character-count.scss +0 -7
- data/node_modules/govuk-frontend/dist/govuk/components/checkboxes/_checkboxes.scss +0 -7
- data/node_modules/govuk-frontend/dist/govuk/components/cookie-banner/_cookie-banner.scss +0 -7
- data/node_modules/govuk-frontend/dist/govuk/components/date-input/_date-input.scss +0 -7
- data/node_modules/govuk-frontend/dist/govuk/components/details/_details.scss +0 -7
- data/node_modules/govuk-frontend/dist/govuk/components/error-message/_error-message.scss +0 -7
- data/node_modules/govuk-frontend/dist/govuk/components/error-summary/_error-summary.scss +0 -7
- data/node_modules/govuk-frontend/dist/govuk/components/exit-this-page/_exit-this-page.scss +0 -7
- data/node_modules/govuk-frontend/dist/govuk/components/fieldset/_fieldset.scss +0 -7
- data/node_modules/govuk-frontend/dist/govuk/components/file-upload/_file-upload.scss +0 -7
- data/node_modules/govuk-frontend/dist/govuk/components/footer/_footer.scss +0 -7
- data/node_modules/govuk-frontend/dist/govuk/components/header/_header.scss +0 -7
- data/node_modules/govuk-frontend/dist/govuk/components/hint/_hint.scss +0 -7
- data/node_modules/govuk-frontend/dist/govuk/components/input/_input.scss +0 -7
- data/node_modules/govuk-frontend/dist/govuk/components/inset-text/_inset-text.scss +0 -7
- data/node_modules/govuk-frontend/dist/govuk/components/label/_label.scss +0 -7
- data/node_modules/govuk-frontend/dist/govuk/components/notification-banner/_notification-banner.scss +0 -7
- data/node_modules/govuk-frontend/dist/govuk/components/pagination/_pagination.scss +0 -7
- data/node_modules/govuk-frontend/dist/govuk/components/panel/_panel.scss +0 -7
- data/node_modules/govuk-frontend/dist/govuk/components/password-input/_password-input.scss +0 -7
- data/node_modules/govuk-frontend/dist/govuk/components/phase-banner/_phase-banner.scss +0 -7
- data/node_modules/govuk-frontend/dist/govuk/components/radios/_radios.scss +0 -7
- data/node_modules/govuk-frontend/dist/govuk/components/select/_select.scss +0 -7
- data/node_modules/govuk-frontend/dist/govuk/components/service-navigation/_service-navigation.scss +0 -7
- data/node_modules/govuk-frontend/dist/govuk/components/skip-link/_skip-link.scss +0 -7
- data/node_modules/govuk-frontend/dist/govuk/components/summary-list/_summary-list.scss +0 -7
- data/node_modules/govuk-frontend/dist/govuk/components/table/_table.scss +0 -7
- data/node_modules/govuk-frontend/dist/govuk/components/tabs/_tabs.scss +0 -7
- data/node_modules/govuk-frontend/dist/govuk/components/tag/_tag.scss +0 -7
- data/node_modules/govuk-frontend/dist/govuk/components/task-list/_task-list.scss +0 -7
- data/node_modules/govuk-frontend/dist/govuk/components/textarea/_textarea.scss +0 -7
- data/node_modules/govuk-frontend/dist/govuk/components/warning-text/_warning-text.scss +0 -7
- data/node_modules/govuk-frontend/dist/govuk/settings/_colours-applied.scss +0 -10
- /data/{example → documentation}/source/javascripts/application.js +0 -0
- /data/{example → documentation}/source/stylesheets/print.css.scss +0 -0
- /data/{example → documentation}/source/stylesheets/screen-old-ie.css.scss +0 -0
- /data/{example → documentation}/source/stylesheets/screen.css.scss +0 -0
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: govuk_tech_docs
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 6.
|
|
4
|
+
version: 6.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Government Digital Service
|
|
@@ -383,17 +383,21 @@ description: Gem to distribute the GOV.UK Tech Docs Template. See https://github
|
|
|
383
383
|
for the project.
|
|
384
384
|
email:
|
|
385
385
|
- govuk-dev@digital.cabinet-office.gov.uk
|
|
386
|
-
executables:
|
|
386
|
+
executables:
|
|
387
|
+
- tech_docs_jobs
|
|
387
388
|
extensions: []
|
|
388
389
|
extra_rdoc_files: []
|
|
389
390
|
files:
|
|
390
391
|
- ".editorconfig"
|
|
391
392
|
- ".github/ISSUE_TEMPLATE/bug.yaml"
|
|
392
393
|
- ".github/ISSUE_TEMPLATE/config.yaml"
|
|
394
|
+
- ".github/ISSUE_TEMPLATE/documentation.yaml"
|
|
393
395
|
- ".github/ISSUE_TEMPLATE/enhancement.yaml"
|
|
394
396
|
- ".github/dependabot.yml"
|
|
395
397
|
- ".github/pull_request_template.md"
|
|
398
|
+
- ".github/workflows/build-middleman-artifact.yaml"
|
|
396
399
|
- ".github/workflows/dependency-review.yaml"
|
|
400
|
+
- ".github/workflows/deploy-to-pages.yaml"
|
|
397
401
|
- ".github/workflows/publish.yaml"
|
|
398
402
|
- ".github/workflows/test.yaml"
|
|
399
403
|
- ".gitignore"
|
|
@@ -402,44 +406,62 @@ files:
|
|
|
402
406
|
- ".rspec"
|
|
403
407
|
- ".rubocop.yml"
|
|
404
408
|
- ".ruby-version"
|
|
409
|
+
- ".vale.ini"
|
|
405
410
|
- CHANGELOG.md
|
|
406
411
|
- Gemfile
|
|
407
412
|
- LICENCE
|
|
408
413
|
- README.md
|
|
409
414
|
- Rakefile
|
|
410
|
-
-
|
|
411
|
-
-
|
|
412
|
-
-
|
|
413
|
-
-
|
|
414
|
-
-
|
|
415
|
-
-
|
|
416
|
-
-
|
|
417
|
-
-
|
|
418
|
-
-
|
|
419
|
-
-
|
|
420
|
-
-
|
|
421
|
-
-
|
|
422
|
-
-
|
|
423
|
-
-
|
|
424
|
-
-
|
|
425
|
-
-
|
|
426
|
-
-
|
|
427
|
-
-
|
|
428
|
-
-
|
|
429
|
-
-
|
|
430
|
-
-
|
|
431
|
-
-
|
|
432
|
-
-
|
|
433
|
-
-
|
|
434
|
-
-
|
|
435
|
-
-
|
|
436
|
-
-
|
|
437
|
-
-
|
|
438
|
-
-
|
|
439
|
-
-
|
|
440
|
-
-
|
|
441
|
-
-
|
|
442
|
-
-
|
|
415
|
+
- documentation/.nvmrc
|
|
416
|
+
- documentation/Gemfile
|
|
417
|
+
- documentation/LICENSE
|
|
418
|
+
- documentation/README.md
|
|
419
|
+
- documentation/Staticfile
|
|
420
|
+
- documentation/config.rb
|
|
421
|
+
- documentation/config/tech-docs.yml
|
|
422
|
+
- documentation/source/accessibility/index.html.md.erb
|
|
423
|
+
- documentation/source/configure_project/frontmatter/index.html.md.erb
|
|
424
|
+
- documentation/source/configure_project/global_configuration/index.html.md.erb
|
|
425
|
+
- documentation/source/configure_project/index.html.md.erb
|
|
426
|
+
- documentation/source/configure_project/page_expiry_and_review/index.html.md.erb
|
|
427
|
+
- documentation/source/configure_project/structure_docs/index.html.md.erb
|
|
428
|
+
- documentation/source/create_project/build/index.html.md.erb
|
|
429
|
+
- documentation/source/create_project/create_new_project/index.html.md.erb
|
|
430
|
+
- documentation/source/create_project/get_started/index.html.md.erb
|
|
431
|
+
- documentation/source/create_project/index.html.md.erb
|
|
432
|
+
- documentation/source/create_project/preview/index.html.md.erb
|
|
433
|
+
- documentation/source/images/Basic multipage.svg
|
|
434
|
+
- documentation/source/images/Basic_multipage.svg
|
|
435
|
+
- documentation/source/images/Nested multipage.svg
|
|
436
|
+
- documentation/source/images/Nested_multipage.svg
|
|
437
|
+
- documentation/source/images/Single_page.svg
|
|
438
|
+
- documentation/source/images/core-layout-without-sidebar.png
|
|
439
|
+
- documentation/source/images/core-layout.png
|
|
440
|
+
- documentation/source/images/daniel-the-manual-spaniel-screenshot.svg
|
|
441
|
+
- documentation/source/images/expired-page.png
|
|
442
|
+
- documentation/source/images/last-reviewed-only.png
|
|
443
|
+
- documentation/source/images/last-reviewed-only.svg
|
|
444
|
+
- documentation/source/images/layout-layout.png
|
|
445
|
+
- documentation/source/images/multipage.svg
|
|
446
|
+
- documentation/source/images/not-expired-page.png
|
|
447
|
+
- documentation/source/index.html.md.erb
|
|
448
|
+
- documentation/source/javascripts/application.js
|
|
449
|
+
- documentation/source/maintain_project/index.html.md.erb
|
|
450
|
+
- documentation/source/maintain_project/redirects/index.html.md.erb
|
|
451
|
+
- documentation/source/maintain_project/review_content/index.html.md.erb
|
|
452
|
+
- documentation/source/maintain_project/use_latest_template/index.html.md.erb
|
|
453
|
+
- documentation/source/partials/_links.erb
|
|
454
|
+
- documentation/source/publish_project/deploy/index.html.md.erb
|
|
455
|
+
- documentation/source/publish_project/index.html.md.erb
|
|
456
|
+
- documentation/source/publish_project/version/index.html.md.erb
|
|
457
|
+
- documentation/source/stylesheets/print.css.scss
|
|
458
|
+
- documentation/source/stylesheets/screen-old-ie.css.scss
|
|
459
|
+
- documentation/source/stylesheets/screen.css.scss
|
|
460
|
+
- documentation/source/support/index.html.md.erb
|
|
461
|
+
- documentation/source/write_docs/add_openapi_spec/index.html.md.erb
|
|
462
|
+
- documentation/source/write_docs/content/index.html.md.erb
|
|
463
|
+
- documentation/source/write_docs/index.html.md.erb
|
|
464
|
+
- exe/tech_docs_jobs
|
|
443
465
|
- govuk_tech_docs.gemspec
|
|
444
466
|
- lib/assets/javascripts/_analytics.js
|
|
445
467
|
- lib/assets/javascripts/_govuk/modules.js
|
|
@@ -525,8 +547,14 @@ files:
|
|
|
525
547
|
- lib/source/layouts/layout.erb
|
|
526
548
|
- lib/source/search/index.html.erb
|
|
527
549
|
- lib/source/stylesheets/manifest.css
|
|
550
|
+
- lib/tasks/helpers/linter_report.rb
|
|
551
|
+
- lib/tasks/helpers/rake_utils.rb
|
|
552
|
+
- lib/tasks/helpers/vale_report.rb
|
|
553
|
+
- lib/tasks/lint.rake
|
|
554
|
+
- lib/tasks/middleman.rake
|
|
528
555
|
- node_modules/govuk-frontend/dist/govuk-prototype-kit/init.js
|
|
529
556
|
- node_modules/govuk-frontend/dist/govuk-prototype-kit/init.scss
|
|
557
|
+
- node_modules/govuk-frontend/dist/govuk/_base.import.scss
|
|
530
558
|
- node_modules/govuk-frontend/dist/govuk/_base.scss
|
|
531
559
|
- node_modules/govuk-frontend/dist/govuk/all.bundle.js
|
|
532
560
|
- node_modules/govuk-frontend/dist/govuk/all.bundle.mjs
|
|
@@ -549,183 +577,345 @@ files:
|
|
|
549
577
|
- node_modules/govuk-frontend/dist/govuk/common/govuk-frontend-version.mjs
|
|
550
578
|
- node_modules/govuk-frontend/dist/govuk/common/index.mjs
|
|
551
579
|
- node_modules/govuk-frontend/dist/govuk/component.mjs
|
|
580
|
+
- node_modules/govuk-frontend/dist/govuk/components/_index.import.scss
|
|
552
581
|
- node_modules/govuk-frontend/dist/govuk/components/_index.scss
|
|
553
|
-
- node_modules/govuk-frontend/dist/govuk/components/accordion/_accordion.scss
|
|
582
|
+
- node_modules/govuk-frontend/dist/govuk/components/accordion/_accordion.import.scss
|
|
583
|
+
- node_modules/govuk-frontend/dist/govuk/components/accordion/_index.import.scss
|
|
554
584
|
- node_modules/govuk-frontend/dist/govuk/components/accordion/_index.scss
|
|
585
|
+
- node_modules/govuk-frontend/dist/govuk/components/accordion/_mixin.scss
|
|
555
586
|
- node_modules/govuk-frontend/dist/govuk/components/accordion/accordion.bundle.js
|
|
556
587
|
- node_modules/govuk-frontend/dist/govuk/components/accordion/accordion.bundle.mjs
|
|
557
588
|
- node_modules/govuk-frontend/dist/govuk/components/accordion/accordion.mjs
|
|
558
|
-
- node_modules/govuk-frontend/dist/govuk/components/back-link/_back-link.scss
|
|
589
|
+
- node_modules/govuk-frontend/dist/govuk/components/back-link/_back-link.import.scss
|
|
590
|
+
- node_modules/govuk-frontend/dist/govuk/components/back-link/_index.import.scss
|
|
559
591
|
- node_modules/govuk-frontend/dist/govuk/components/back-link/_index.scss
|
|
560
|
-
- node_modules/govuk-frontend/dist/govuk/components/
|
|
592
|
+
- node_modules/govuk-frontend/dist/govuk/components/back-link/_mixin.scss
|
|
593
|
+
- node_modules/govuk-frontend/dist/govuk/components/breadcrumbs/_breadcrumbs.import.scss
|
|
594
|
+
- node_modules/govuk-frontend/dist/govuk/components/breadcrumbs/_index.import.scss
|
|
561
595
|
- node_modules/govuk-frontend/dist/govuk/components/breadcrumbs/_index.scss
|
|
562
|
-
- node_modules/govuk-frontend/dist/govuk/components/
|
|
596
|
+
- node_modules/govuk-frontend/dist/govuk/components/breadcrumbs/_mixin.scss
|
|
597
|
+
- node_modules/govuk-frontend/dist/govuk/components/button/_button.import.scss
|
|
598
|
+
- node_modules/govuk-frontend/dist/govuk/components/button/_index.import.scss
|
|
563
599
|
- node_modules/govuk-frontend/dist/govuk/components/button/_index.scss
|
|
600
|
+
- node_modules/govuk-frontend/dist/govuk/components/button/_mixin.scss
|
|
601
|
+
- node_modules/govuk-frontend/dist/govuk/components/button/_settings.import.scss
|
|
602
|
+
- node_modules/govuk-frontend/dist/govuk/components/button/_settings.scss
|
|
564
603
|
- node_modules/govuk-frontend/dist/govuk/components/button/button.bundle.js
|
|
565
604
|
- node_modules/govuk-frontend/dist/govuk/components/button/button.bundle.mjs
|
|
566
605
|
- node_modules/govuk-frontend/dist/govuk/components/button/button.mjs
|
|
567
|
-
- node_modules/govuk-frontend/dist/govuk/components/character-count/_character-count.scss
|
|
606
|
+
- node_modules/govuk-frontend/dist/govuk/components/character-count/_character-count.import.scss
|
|
607
|
+
- node_modules/govuk-frontend/dist/govuk/components/character-count/_index.import.scss
|
|
568
608
|
- node_modules/govuk-frontend/dist/govuk/components/character-count/_index.scss
|
|
609
|
+
- node_modules/govuk-frontend/dist/govuk/components/character-count/_mixin.scss
|
|
569
610
|
- node_modules/govuk-frontend/dist/govuk/components/character-count/character-count.bundle.js
|
|
570
611
|
- node_modules/govuk-frontend/dist/govuk/components/character-count/character-count.bundle.mjs
|
|
571
612
|
- node_modules/govuk-frontend/dist/govuk/components/character-count/character-count.mjs
|
|
572
|
-
- node_modules/govuk-frontend/dist/govuk/components/checkboxes/_checkboxes.scss
|
|
613
|
+
- node_modules/govuk-frontend/dist/govuk/components/checkboxes/_checkboxes.import.scss
|
|
614
|
+
- node_modules/govuk-frontend/dist/govuk/components/checkboxes/_index.import.scss
|
|
573
615
|
- node_modules/govuk-frontend/dist/govuk/components/checkboxes/_index.scss
|
|
616
|
+
- node_modules/govuk-frontend/dist/govuk/components/checkboxes/_mixin.scss
|
|
574
617
|
- node_modules/govuk-frontend/dist/govuk/components/checkboxes/checkboxes.bundle.js
|
|
575
618
|
- node_modules/govuk-frontend/dist/govuk/components/checkboxes/checkboxes.bundle.mjs
|
|
576
619
|
- node_modules/govuk-frontend/dist/govuk/components/checkboxes/checkboxes.mjs
|
|
577
|
-
- node_modules/govuk-frontend/dist/govuk/components/cookie-banner/_cookie-banner.scss
|
|
620
|
+
- node_modules/govuk-frontend/dist/govuk/components/cookie-banner/_cookie-banner.import.scss
|
|
621
|
+
- node_modules/govuk-frontend/dist/govuk/components/cookie-banner/_index.import.scss
|
|
578
622
|
- node_modules/govuk-frontend/dist/govuk/components/cookie-banner/_index.scss
|
|
579
|
-
- node_modules/govuk-frontend/dist/govuk/components/
|
|
623
|
+
- node_modules/govuk-frontend/dist/govuk/components/cookie-banner/_mixin.scss
|
|
624
|
+
- node_modules/govuk-frontend/dist/govuk/components/date-input/_date-input.import.scss
|
|
625
|
+
- node_modules/govuk-frontend/dist/govuk/components/date-input/_index.import.scss
|
|
580
626
|
- node_modules/govuk-frontend/dist/govuk/components/date-input/_index.scss
|
|
581
|
-
- node_modules/govuk-frontend/dist/govuk/components/
|
|
627
|
+
- node_modules/govuk-frontend/dist/govuk/components/date-input/_mixin.scss
|
|
628
|
+
- node_modules/govuk-frontend/dist/govuk/components/details/_details.import.scss
|
|
629
|
+
- node_modules/govuk-frontend/dist/govuk/components/details/_index.import.scss
|
|
582
630
|
- node_modules/govuk-frontend/dist/govuk/components/details/_index.scss
|
|
583
|
-
- node_modules/govuk-frontend/dist/govuk/components/
|
|
631
|
+
- node_modules/govuk-frontend/dist/govuk/components/details/_mixin.scss
|
|
632
|
+
- node_modules/govuk-frontend/dist/govuk/components/error-message/_error-message.import.scss
|
|
633
|
+
- node_modules/govuk-frontend/dist/govuk/components/error-message/_index.import.scss
|
|
584
634
|
- node_modules/govuk-frontend/dist/govuk/components/error-message/_index.scss
|
|
585
|
-
- node_modules/govuk-frontend/dist/govuk/components/error-
|
|
635
|
+
- node_modules/govuk-frontend/dist/govuk/components/error-message/_mixin.scss
|
|
636
|
+
- node_modules/govuk-frontend/dist/govuk/components/error-summary/_error-summary.import.scss
|
|
637
|
+
- node_modules/govuk-frontend/dist/govuk/components/error-summary/_index.import.scss
|
|
586
638
|
- node_modules/govuk-frontend/dist/govuk/components/error-summary/_index.scss
|
|
639
|
+
- node_modules/govuk-frontend/dist/govuk/components/error-summary/_mixin.scss
|
|
587
640
|
- node_modules/govuk-frontend/dist/govuk/components/error-summary/error-summary.bundle.js
|
|
588
641
|
- node_modules/govuk-frontend/dist/govuk/components/error-summary/error-summary.bundle.mjs
|
|
589
642
|
- node_modules/govuk-frontend/dist/govuk/components/error-summary/error-summary.mjs
|
|
590
|
-
- node_modules/govuk-frontend/dist/govuk/components/exit-this-page/_exit-this-page.scss
|
|
643
|
+
- node_modules/govuk-frontend/dist/govuk/components/exit-this-page/_exit-this-page.import.scss
|
|
644
|
+
- node_modules/govuk-frontend/dist/govuk/components/exit-this-page/_index.import.scss
|
|
591
645
|
- node_modules/govuk-frontend/dist/govuk/components/exit-this-page/_index.scss
|
|
646
|
+
- node_modules/govuk-frontend/dist/govuk/components/exit-this-page/_mixin.scss
|
|
592
647
|
- node_modules/govuk-frontend/dist/govuk/components/exit-this-page/exit-this-page.bundle.js
|
|
593
648
|
- node_modules/govuk-frontend/dist/govuk/components/exit-this-page/exit-this-page.bundle.mjs
|
|
594
649
|
- node_modules/govuk-frontend/dist/govuk/components/exit-this-page/exit-this-page.mjs
|
|
595
|
-
- node_modules/govuk-frontend/dist/govuk/components/fieldset/_fieldset.scss
|
|
650
|
+
- node_modules/govuk-frontend/dist/govuk/components/fieldset/_fieldset.import.scss
|
|
651
|
+
- node_modules/govuk-frontend/dist/govuk/components/fieldset/_index.import.scss
|
|
596
652
|
- node_modules/govuk-frontend/dist/govuk/components/fieldset/_index.scss
|
|
597
|
-
- node_modules/govuk-frontend/dist/govuk/components/
|
|
653
|
+
- node_modules/govuk-frontend/dist/govuk/components/fieldset/_mixin.scss
|
|
654
|
+
- node_modules/govuk-frontend/dist/govuk/components/file-upload/_file-upload.import.scss
|
|
655
|
+
- node_modules/govuk-frontend/dist/govuk/components/file-upload/_index.import.scss
|
|
598
656
|
- node_modules/govuk-frontend/dist/govuk/components/file-upload/_index.scss
|
|
657
|
+
- node_modules/govuk-frontend/dist/govuk/components/file-upload/_mixin.scss
|
|
599
658
|
- node_modules/govuk-frontend/dist/govuk/components/file-upload/file-upload.bundle.js
|
|
600
659
|
- node_modules/govuk-frontend/dist/govuk/components/file-upload/file-upload.bundle.mjs
|
|
601
660
|
- node_modules/govuk-frontend/dist/govuk/components/file-upload/file-upload.mjs
|
|
602
|
-
- node_modules/govuk-frontend/dist/govuk/components/footer/_footer.scss
|
|
661
|
+
- node_modules/govuk-frontend/dist/govuk/components/footer/_footer.import.scss
|
|
662
|
+
- node_modules/govuk-frontend/dist/govuk/components/footer/_index.import.scss
|
|
603
663
|
- node_modules/govuk-frontend/dist/govuk/components/footer/_index.scss
|
|
604
|
-
- node_modules/govuk-frontend/dist/govuk/components/
|
|
664
|
+
- node_modules/govuk-frontend/dist/govuk/components/footer/_mixin.scss
|
|
665
|
+
- node_modules/govuk-frontend/dist/govuk/components/header/_header.import.scss
|
|
666
|
+
- node_modules/govuk-frontend/dist/govuk/components/header/_index.import.scss
|
|
605
667
|
- node_modules/govuk-frontend/dist/govuk/components/header/_index.scss
|
|
606
|
-
- node_modules/govuk-frontend/dist/govuk/components/
|
|
668
|
+
- node_modules/govuk-frontend/dist/govuk/components/header/_mixin.scss
|
|
669
|
+
- node_modules/govuk-frontend/dist/govuk/components/hint/_hint.import.scss
|
|
670
|
+
- node_modules/govuk-frontend/dist/govuk/components/hint/_index.import.scss
|
|
607
671
|
- node_modules/govuk-frontend/dist/govuk/components/hint/_index.scss
|
|
672
|
+
- node_modules/govuk-frontend/dist/govuk/components/hint/_mixin.scss
|
|
673
|
+
- node_modules/govuk-frontend/dist/govuk/components/input/_index.import.scss
|
|
608
674
|
- node_modules/govuk-frontend/dist/govuk/components/input/_index.scss
|
|
609
|
-
- node_modules/govuk-frontend/dist/govuk/components/input/_input.scss
|
|
675
|
+
- node_modules/govuk-frontend/dist/govuk/components/input/_input.import.scss
|
|
676
|
+
- node_modules/govuk-frontend/dist/govuk/components/input/_mixin.scss
|
|
677
|
+
- node_modules/govuk-frontend/dist/govuk/components/inset-text/_index.import.scss
|
|
610
678
|
- node_modules/govuk-frontend/dist/govuk/components/inset-text/_index.scss
|
|
611
|
-
- node_modules/govuk-frontend/dist/govuk/components/inset-text/_inset-text.scss
|
|
679
|
+
- node_modules/govuk-frontend/dist/govuk/components/inset-text/_inset-text.import.scss
|
|
680
|
+
- node_modules/govuk-frontend/dist/govuk/components/inset-text/_mixin.scss
|
|
681
|
+
- node_modules/govuk-frontend/dist/govuk/components/label/_index.import.scss
|
|
612
682
|
- node_modules/govuk-frontend/dist/govuk/components/label/_index.scss
|
|
613
|
-
- node_modules/govuk-frontend/dist/govuk/components/label/_label.scss
|
|
683
|
+
- node_modules/govuk-frontend/dist/govuk/components/label/_label.import.scss
|
|
684
|
+
- node_modules/govuk-frontend/dist/govuk/components/label/_mixin.scss
|
|
685
|
+
- node_modules/govuk-frontend/dist/govuk/components/notification-banner/_index.import.scss
|
|
614
686
|
- node_modules/govuk-frontend/dist/govuk/components/notification-banner/_index.scss
|
|
615
|
-
- node_modules/govuk-frontend/dist/govuk/components/notification-banner/
|
|
687
|
+
- node_modules/govuk-frontend/dist/govuk/components/notification-banner/_mixin.scss
|
|
688
|
+
- node_modules/govuk-frontend/dist/govuk/components/notification-banner/_notification-banner.import.scss
|
|
616
689
|
- node_modules/govuk-frontend/dist/govuk/components/notification-banner/notification-banner.bundle.js
|
|
617
690
|
- node_modules/govuk-frontend/dist/govuk/components/notification-banner/notification-banner.bundle.mjs
|
|
618
691
|
- node_modules/govuk-frontend/dist/govuk/components/notification-banner/notification-banner.mjs
|
|
692
|
+
- node_modules/govuk-frontend/dist/govuk/components/pagination/_index.import.scss
|
|
619
693
|
- node_modules/govuk-frontend/dist/govuk/components/pagination/_index.scss
|
|
620
|
-
- node_modules/govuk-frontend/dist/govuk/components/pagination/
|
|
694
|
+
- node_modules/govuk-frontend/dist/govuk/components/pagination/_mixin.scss
|
|
695
|
+
- node_modules/govuk-frontend/dist/govuk/components/pagination/_pagination.import.scss
|
|
696
|
+
- node_modules/govuk-frontend/dist/govuk/components/panel/_index.import.scss
|
|
621
697
|
- node_modules/govuk-frontend/dist/govuk/components/panel/_index.scss
|
|
622
|
-
- node_modules/govuk-frontend/dist/govuk/components/panel/
|
|
698
|
+
- node_modules/govuk-frontend/dist/govuk/components/panel/_mixin.scss
|
|
699
|
+
- node_modules/govuk-frontend/dist/govuk/components/panel/_panel.import.scss
|
|
700
|
+
- node_modules/govuk-frontend/dist/govuk/components/password-input/_index.import.scss
|
|
623
701
|
- node_modules/govuk-frontend/dist/govuk/components/password-input/_index.scss
|
|
624
|
-
- node_modules/govuk-frontend/dist/govuk/components/password-input/
|
|
702
|
+
- node_modules/govuk-frontend/dist/govuk/components/password-input/_mixin.scss
|
|
703
|
+
- node_modules/govuk-frontend/dist/govuk/components/password-input/_password-input.import.scss
|
|
625
704
|
- node_modules/govuk-frontend/dist/govuk/components/password-input/password-input.bundle.js
|
|
626
705
|
- node_modules/govuk-frontend/dist/govuk/components/password-input/password-input.bundle.mjs
|
|
627
706
|
- node_modules/govuk-frontend/dist/govuk/components/password-input/password-input.mjs
|
|
707
|
+
- node_modules/govuk-frontend/dist/govuk/components/phase-banner/_index.import.scss
|
|
628
708
|
- node_modules/govuk-frontend/dist/govuk/components/phase-banner/_index.scss
|
|
629
|
-
- node_modules/govuk-frontend/dist/govuk/components/phase-banner/
|
|
709
|
+
- node_modules/govuk-frontend/dist/govuk/components/phase-banner/_mixin.scss
|
|
710
|
+
- node_modules/govuk-frontend/dist/govuk/components/phase-banner/_phase-banner.import.scss
|
|
711
|
+
- node_modules/govuk-frontend/dist/govuk/components/radios/_index.import.scss
|
|
630
712
|
- node_modules/govuk-frontend/dist/govuk/components/radios/_index.scss
|
|
631
|
-
- node_modules/govuk-frontend/dist/govuk/components/radios/
|
|
713
|
+
- node_modules/govuk-frontend/dist/govuk/components/radios/_mixin.scss
|
|
714
|
+
- node_modules/govuk-frontend/dist/govuk/components/radios/_radios.import.scss
|
|
632
715
|
- node_modules/govuk-frontend/dist/govuk/components/radios/radios.bundle.js
|
|
633
716
|
- node_modules/govuk-frontend/dist/govuk/components/radios/radios.bundle.mjs
|
|
634
717
|
- node_modules/govuk-frontend/dist/govuk/components/radios/radios.mjs
|
|
718
|
+
- node_modules/govuk-frontend/dist/govuk/components/select/_index.import.scss
|
|
635
719
|
- node_modules/govuk-frontend/dist/govuk/components/select/_index.scss
|
|
636
|
-
- node_modules/govuk-frontend/dist/govuk/components/select/
|
|
720
|
+
- node_modules/govuk-frontend/dist/govuk/components/select/_mixin.scss
|
|
721
|
+
- node_modules/govuk-frontend/dist/govuk/components/select/_select.import.scss
|
|
722
|
+
- node_modules/govuk-frontend/dist/govuk/components/service-navigation/_index.import.scss
|
|
637
723
|
- node_modules/govuk-frontend/dist/govuk/components/service-navigation/_index.scss
|
|
638
|
-
- node_modules/govuk-frontend/dist/govuk/components/service-navigation/
|
|
724
|
+
- node_modules/govuk-frontend/dist/govuk/components/service-navigation/_mixin.scss
|
|
725
|
+
- node_modules/govuk-frontend/dist/govuk/components/service-navigation/_service-navigation.import.scss
|
|
639
726
|
- node_modules/govuk-frontend/dist/govuk/components/service-navigation/service-navigation.bundle.js
|
|
640
727
|
- node_modules/govuk-frontend/dist/govuk/components/service-navigation/service-navigation.bundle.mjs
|
|
641
728
|
- node_modules/govuk-frontend/dist/govuk/components/service-navigation/service-navigation.mjs
|
|
729
|
+
- node_modules/govuk-frontend/dist/govuk/components/skip-link/_index.import.scss
|
|
642
730
|
- node_modules/govuk-frontend/dist/govuk/components/skip-link/_index.scss
|
|
643
|
-
- node_modules/govuk-frontend/dist/govuk/components/skip-link/
|
|
731
|
+
- node_modules/govuk-frontend/dist/govuk/components/skip-link/_mixin.scss
|
|
732
|
+
- node_modules/govuk-frontend/dist/govuk/components/skip-link/_skip-link.import.scss
|
|
644
733
|
- node_modules/govuk-frontend/dist/govuk/components/skip-link/skip-link.bundle.js
|
|
645
734
|
- node_modules/govuk-frontend/dist/govuk/components/skip-link/skip-link.bundle.mjs
|
|
646
735
|
- node_modules/govuk-frontend/dist/govuk/components/skip-link/skip-link.mjs
|
|
736
|
+
- node_modules/govuk-frontend/dist/govuk/components/summary-list/_index.import.scss
|
|
647
737
|
- node_modules/govuk-frontend/dist/govuk/components/summary-list/_index.scss
|
|
648
|
-
- node_modules/govuk-frontend/dist/govuk/components/summary-list/
|
|
738
|
+
- node_modules/govuk-frontend/dist/govuk/components/summary-list/_mixin.scss
|
|
739
|
+
- node_modules/govuk-frontend/dist/govuk/components/summary-list/_summary-list.import.scss
|
|
740
|
+
- node_modules/govuk-frontend/dist/govuk/components/table/_index.import.scss
|
|
649
741
|
- node_modules/govuk-frontend/dist/govuk/components/table/_index.scss
|
|
650
|
-
- node_modules/govuk-frontend/dist/govuk/components/table/
|
|
742
|
+
- node_modules/govuk-frontend/dist/govuk/components/table/_mixin.scss
|
|
743
|
+
- node_modules/govuk-frontend/dist/govuk/components/table/_table.import.scss
|
|
744
|
+
- node_modules/govuk-frontend/dist/govuk/components/tabs/_index.import.scss
|
|
651
745
|
- node_modules/govuk-frontend/dist/govuk/components/tabs/_index.scss
|
|
652
|
-
- node_modules/govuk-frontend/dist/govuk/components/tabs/
|
|
746
|
+
- node_modules/govuk-frontend/dist/govuk/components/tabs/_mixin.scss
|
|
747
|
+
- node_modules/govuk-frontend/dist/govuk/components/tabs/_tabs.import.scss
|
|
653
748
|
- node_modules/govuk-frontend/dist/govuk/components/tabs/tabs.bundle.js
|
|
654
749
|
- node_modules/govuk-frontend/dist/govuk/components/tabs/tabs.bundle.mjs
|
|
655
750
|
- node_modules/govuk-frontend/dist/govuk/components/tabs/tabs.mjs
|
|
751
|
+
- node_modules/govuk-frontend/dist/govuk/components/tag/_index.import.scss
|
|
656
752
|
- node_modules/govuk-frontend/dist/govuk/components/tag/_index.scss
|
|
657
|
-
- node_modules/govuk-frontend/dist/govuk/components/tag/
|
|
753
|
+
- node_modules/govuk-frontend/dist/govuk/components/tag/_mixin.scss
|
|
754
|
+
- node_modules/govuk-frontend/dist/govuk/components/tag/_tag.import.scss
|
|
755
|
+
- node_modules/govuk-frontend/dist/govuk/components/task-list/_index.import.scss
|
|
658
756
|
- node_modules/govuk-frontend/dist/govuk/components/task-list/_index.scss
|
|
659
|
-
- node_modules/govuk-frontend/dist/govuk/components/task-list/
|
|
757
|
+
- node_modules/govuk-frontend/dist/govuk/components/task-list/_mixin.scss
|
|
758
|
+
- node_modules/govuk-frontend/dist/govuk/components/task-list/_task-list.import.scss
|
|
759
|
+
- node_modules/govuk-frontend/dist/govuk/components/textarea/_index.import.scss
|
|
660
760
|
- node_modules/govuk-frontend/dist/govuk/components/textarea/_index.scss
|
|
661
|
-
- node_modules/govuk-frontend/dist/govuk/components/textarea/
|
|
761
|
+
- node_modules/govuk-frontend/dist/govuk/components/textarea/_mixin.scss
|
|
762
|
+
- node_modules/govuk-frontend/dist/govuk/components/textarea/_textarea.import.scss
|
|
763
|
+
- node_modules/govuk-frontend/dist/govuk/components/warning-text/_index.import.scss
|
|
662
764
|
- node_modules/govuk-frontend/dist/govuk/components/warning-text/_index.scss
|
|
663
|
-
- node_modules/govuk-frontend/dist/govuk/components/warning-text/
|
|
765
|
+
- node_modules/govuk-frontend/dist/govuk/components/warning-text/_mixin.scss
|
|
766
|
+
- node_modules/govuk-frontend/dist/govuk/components/warning-text/_warning-text.import.scss
|
|
767
|
+
- node_modules/govuk-frontend/dist/govuk/core/_global-styles.import.scss
|
|
768
|
+
- node_modules/govuk-frontend/dist/govuk/core/_global-styles.mixin.scss
|
|
664
769
|
- node_modules/govuk-frontend/dist/govuk/core/_global-styles.scss
|
|
770
|
+
- node_modules/govuk-frontend/dist/govuk/core/_index.import.scss
|
|
665
771
|
- node_modules/govuk-frontend/dist/govuk/core/_index.scss
|
|
772
|
+
- node_modules/govuk-frontend/dist/govuk/core/_links.import.scss
|
|
773
|
+
- node_modules/govuk-frontend/dist/govuk/core/_links.mixin.scss
|
|
666
774
|
- node_modules/govuk-frontend/dist/govuk/core/_links.scss
|
|
775
|
+
- node_modules/govuk-frontend/dist/govuk/core/_lists.import.scss
|
|
776
|
+
- node_modules/govuk-frontend/dist/govuk/core/_lists.mixin.scss
|
|
667
777
|
- node_modules/govuk-frontend/dist/govuk/core/_lists.scss
|
|
778
|
+
- node_modules/govuk-frontend/dist/govuk/core/_section-break.import.scss
|
|
779
|
+
- node_modules/govuk-frontend/dist/govuk/core/_section-break.mixin.scss
|
|
668
780
|
- node_modules/govuk-frontend/dist/govuk/core/_section-break.scss
|
|
781
|
+
- node_modules/govuk-frontend/dist/govuk/core/_typography.import.scss
|
|
782
|
+
- node_modules/govuk-frontend/dist/govuk/core/_typography.mixin.scss
|
|
669
783
|
- node_modules/govuk-frontend/dist/govuk/core/_typography.scss
|
|
784
|
+
- node_modules/govuk-frontend/dist/govuk/custom-properties/_breakpoints.import.scss
|
|
785
|
+
- node_modules/govuk-frontend/dist/govuk/custom-properties/_breakpoints.mixin.scss
|
|
670
786
|
- node_modules/govuk-frontend/dist/govuk/custom-properties/_breakpoints.scss
|
|
787
|
+
- node_modules/govuk-frontend/dist/govuk/custom-properties/_frontend-version.import.scss
|
|
788
|
+
- node_modules/govuk-frontend/dist/govuk/custom-properties/_frontend-version.mixin.scss
|
|
671
789
|
- node_modules/govuk-frontend/dist/govuk/custom-properties/_frontend-version.scss
|
|
790
|
+
- node_modules/govuk-frontend/dist/govuk/custom-properties/_functional-colours.import.scss
|
|
791
|
+
- node_modules/govuk-frontend/dist/govuk/custom-properties/_functional-colours.mixin.scss
|
|
672
792
|
- node_modules/govuk-frontend/dist/govuk/custom-properties/_functional-colours.scss
|
|
793
|
+
- node_modules/govuk-frontend/dist/govuk/custom-properties/_index.import.scss
|
|
673
794
|
- node_modules/govuk-frontend/dist/govuk/custom-properties/_index.scss
|
|
674
795
|
- node_modules/govuk-frontend/dist/govuk/errors/index.mjs
|
|
675
796
|
- node_modules/govuk-frontend/dist/govuk/govuk-frontend.min.js
|
|
797
|
+
- node_modules/govuk-frontend/dist/govuk/helpers/_clearfix.import.scss
|
|
676
798
|
- node_modules/govuk-frontend/dist/govuk/helpers/_clearfix.scss
|
|
799
|
+
- node_modules/govuk-frontend/dist/govuk/helpers/_colour.import.scss
|
|
677
800
|
- node_modules/govuk-frontend/dist/govuk/helpers/_colour.scss
|
|
801
|
+
- node_modules/govuk-frontend/dist/govuk/helpers/_device-pixels.import.scss
|
|
678
802
|
- node_modules/govuk-frontend/dist/govuk/helpers/_device-pixels.scss
|
|
803
|
+
- node_modules/govuk-frontend/dist/govuk/helpers/_focused.import.scss
|
|
679
804
|
- node_modules/govuk-frontend/dist/govuk/helpers/_focused.scss
|
|
680
|
-
- node_modules/govuk-frontend/dist/govuk/helpers/_font-faces.scss
|
|
805
|
+
- node_modules/govuk-frontend/dist/govuk/helpers/_font-faces--internal.scss
|
|
806
|
+
- node_modules/govuk-frontend/dist/govuk/helpers/_grid.import.scss
|
|
681
807
|
- node_modules/govuk-frontend/dist/govuk/helpers/_grid.scss
|
|
808
|
+
- node_modules/govuk-frontend/dist/govuk/helpers/_index.import.scss
|
|
682
809
|
- node_modules/govuk-frontend/dist/govuk/helpers/_index.scss
|
|
810
|
+
- node_modules/govuk-frontend/dist/govuk/helpers/_links.import.scss
|
|
683
811
|
- node_modules/govuk-frontend/dist/govuk/helpers/_links.scss
|
|
812
|
+
- node_modules/govuk-frontend/dist/govuk/helpers/_media-queries.import.scss
|
|
684
813
|
- node_modules/govuk-frontend/dist/govuk/helpers/_media-queries.scss
|
|
814
|
+
- node_modules/govuk-frontend/dist/govuk/helpers/_shape-arrow.import.scss
|
|
685
815
|
- node_modules/govuk-frontend/dist/govuk/helpers/_shape-arrow.scss
|
|
816
|
+
- node_modules/govuk-frontend/dist/govuk/helpers/_spacing--internal.scss
|
|
817
|
+
- node_modules/govuk-frontend/dist/govuk/helpers/_spacing.import.scss
|
|
686
818
|
- node_modules/govuk-frontend/dist/govuk/helpers/_spacing.scss
|
|
819
|
+
- node_modules/govuk-frontend/dist/govuk/helpers/_typography--internal.scss
|
|
820
|
+
- node_modules/govuk-frontend/dist/govuk/helpers/_typography.import.scss
|
|
687
821
|
- node_modules/govuk-frontend/dist/govuk/helpers/_typography.scss
|
|
822
|
+
- node_modules/govuk-frontend/dist/govuk/helpers/_visually-hidden.import.scss
|
|
688
823
|
- node_modules/govuk-frontend/dist/govuk/helpers/_visually-hidden.scss
|
|
824
|
+
- node_modules/govuk-frontend/dist/govuk/helpers/_width-container.import.scss
|
|
825
|
+
- node_modules/govuk-frontend/dist/govuk/helpers/_width-container.scss
|
|
689
826
|
- node_modules/govuk-frontend/dist/govuk/i18n.mjs
|
|
827
|
+
- node_modules/govuk-frontend/dist/govuk/index.import.scss
|
|
690
828
|
- node_modules/govuk-frontend/dist/govuk/index.scss
|
|
691
829
|
- node_modules/govuk-frontend/dist/govuk/init.mjs
|
|
830
|
+
- node_modules/govuk-frontend/dist/govuk/objects/_button-group.import.scss
|
|
831
|
+
- node_modules/govuk-frontend/dist/govuk/objects/_button-group.mixin.scss
|
|
692
832
|
- node_modules/govuk-frontend/dist/govuk/objects/_button-group.scss
|
|
833
|
+
- node_modules/govuk-frontend/dist/govuk/objects/_form-group.import.scss
|
|
834
|
+
- node_modules/govuk-frontend/dist/govuk/objects/_form-group.mixin.scss
|
|
693
835
|
- node_modules/govuk-frontend/dist/govuk/objects/_form-group.scss
|
|
836
|
+
- node_modules/govuk-frontend/dist/govuk/objects/_grid.import.scss
|
|
837
|
+
- node_modules/govuk-frontend/dist/govuk/objects/_grid.mixin.scss
|
|
694
838
|
- node_modules/govuk-frontend/dist/govuk/objects/_grid.scss
|
|
839
|
+
- node_modules/govuk-frontend/dist/govuk/objects/_index.import.scss
|
|
695
840
|
- node_modules/govuk-frontend/dist/govuk/objects/_index.scss
|
|
841
|
+
- node_modules/govuk-frontend/dist/govuk/objects/_main-wrapper.import.scss
|
|
842
|
+
- node_modules/govuk-frontend/dist/govuk/objects/_main-wrapper.mixin.scss
|
|
696
843
|
- node_modules/govuk-frontend/dist/govuk/objects/_main-wrapper.scss
|
|
844
|
+
- node_modules/govuk-frontend/dist/govuk/objects/_template.import.scss
|
|
845
|
+
- node_modules/govuk-frontend/dist/govuk/objects/_template.mixin.scss
|
|
697
846
|
- node_modules/govuk-frontend/dist/govuk/objects/_template.scss
|
|
847
|
+
- node_modules/govuk-frontend/dist/govuk/objects/_width-container.import.scss
|
|
848
|
+
- node_modules/govuk-frontend/dist/govuk/objects/_width-container.mixin.scss
|
|
698
849
|
- node_modules/govuk-frontend/dist/govuk/objects/_width-container.scss
|
|
850
|
+
- node_modules/govuk-frontend/dist/govuk/overrides/_display.import.scss
|
|
851
|
+
- node_modules/govuk-frontend/dist/govuk/overrides/_display.mixin.scss
|
|
699
852
|
- node_modules/govuk-frontend/dist/govuk/overrides/_display.scss
|
|
853
|
+
- node_modules/govuk-frontend/dist/govuk/overrides/_index.import.scss
|
|
700
854
|
- node_modules/govuk-frontend/dist/govuk/overrides/_index.scss
|
|
855
|
+
- node_modules/govuk-frontend/dist/govuk/overrides/_spacing.import.scss
|
|
856
|
+
- node_modules/govuk-frontend/dist/govuk/overrides/_spacing.mixin.scss
|
|
701
857
|
- node_modules/govuk-frontend/dist/govuk/overrides/_spacing.scss
|
|
858
|
+
- node_modules/govuk-frontend/dist/govuk/overrides/_text-align.import.scss
|
|
859
|
+
- node_modules/govuk-frontend/dist/govuk/overrides/_text-align.mixin.scss
|
|
702
860
|
- node_modules/govuk-frontend/dist/govuk/overrides/_text-align.scss
|
|
861
|
+
- node_modules/govuk-frontend/dist/govuk/overrides/_typography.import.scss
|
|
862
|
+
- node_modules/govuk-frontend/dist/govuk/overrides/_typography.mixin.scss
|
|
703
863
|
- node_modules/govuk-frontend/dist/govuk/overrides/_typography.scss
|
|
864
|
+
- node_modules/govuk-frontend/dist/govuk/overrides/_width.import.scss
|
|
865
|
+
- node_modules/govuk-frontend/dist/govuk/overrides/_width.mixin.scss
|
|
704
866
|
- node_modules/govuk-frontend/dist/govuk/overrides/_width.scss
|
|
867
|
+
- node_modules/govuk-frontend/dist/govuk/settings/_assets.import.scss
|
|
705
868
|
- node_modules/govuk-frontend/dist/govuk/settings/_assets.scss
|
|
706
|
-
- node_modules/govuk-frontend/dist/govuk/settings/_colours-applied.scss
|
|
869
|
+
- node_modules/govuk-frontend/dist/govuk/settings/_colours-applied.import.scss
|
|
870
|
+
- node_modules/govuk-frontend/dist/govuk/settings/_colours-functional.import.scss
|
|
707
871
|
- node_modules/govuk-frontend/dist/govuk/settings/_colours-functional.scss
|
|
872
|
+
- node_modules/govuk-frontend/dist/govuk/settings/_colours-legacy-functional.import.scss
|
|
873
|
+
- node_modules/govuk-frontend/dist/govuk/settings/_colours-legacy-functional.scss
|
|
874
|
+
- node_modules/govuk-frontend/dist/govuk/settings/_colours-organisations.import.scss
|
|
708
875
|
- node_modules/govuk-frontend/dist/govuk/settings/_colours-organisations.scss
|
|
709
|
-
- node_modules/govuk-frontend/dist/govuk/settings/_colours-palette.scss
|
|
876
|
+
- node_modules/govuk-frontend/dist/govuk/settings/_colours-palette--internal.scss
|
|
877
|
+
- node_modules/govuk-frontend/dist/govuk/settings/_custom-properties.import.scss
|
|
710
878
|
- node_modules/govuk-frontend/dist/govuk/settings/_custom-properties.scss
|
|
879
|
+
- node_modules/govuk-frontend/dist/govuk/settings/_global-styles.import.scss
|
|
711
880
|
- node_modules/govuk-frontend/dist/govuk/settings/_global-styles.scss
|
|
881
|
+
- node_modules/govuk-frontend/dist/govuk/settings/_index.import.scss
|
|
712
882
|
- node_modules/govuk-frontend/dist/govuk/settings/_index.scss
|
|
883
|
+
- node_modules/govuk-frontend/dist/govuk/settings/_links.import.scss
|
|
713
884
|
- node_modules/govuk-frontend/dist/govuk/settings/_links.scss
|
|
885
|
+
- node_modules/govuk-frontend/dist/govuk/settings/_measurements.import.scss
|
|
714
886
|
- node_modules/govuk-frontend/dist/govuk/settings/_measurements.scss
|
|
887
|
+
- node_modules/govuk-frontend/dist/govuk/settings/_media-queries.import.scss
|
|
715
888
|
- node_modules/govuk-frontend/dist/govuk/settings/_media-queries.scss
|
|
889
|
+
- node_modules/govuk-frontend/dist/govuk/settings/_spacing.import.scss
|
|
716
890
|
- node_modules/govuk-frontend/dist/govuk/settings/_spacing.scss
|
|
891
|
+
- node_modules/govuk-frontend/dist/govuk/settings/_typography-font.import.scss
|
|
717
892
|
- node_modules/govuk-frontend/dist/govuk/settings/_typography-font.scss
|
|
893
|
+
- node_modules/govuk-frontend/dist/govuk/settings/_typography-responsive.import.scss
|
|
718
894
|
- node_modules/govuk-frontend/dist/govuk/settings/_typography-responsive.scss
|
|
895
|
+
- node_modules/govuk-frontend/dist/govuk/settings/_warnings--internal.scss
|
|
896
|
+
- node_modules/govuk-frontend/dist/govuk/settings/_warnings.import.scss
|
|
719
897
|
- node_modules/govuk-frontend/dist/govuk/settings/_warnings.scss
|
|
898
|
+
- node_modules/govuk-frontend/dist/govuk/tools/_exports.import.scss
|
|
720
899
|
- node_modules/govuk-frontend/dist/govuk/tools/_exports.scss
|
|
900
|
+
- node_modules/govuk-frontend/dist/govuk/tools/_font-url.import.scss
|
|
721
901
|
- node_modules/govuk-frontend/dist/govuk/tools/_font-url.scss
|
|
902
|
+
- node_modules/govuk-frontend/dist/govuk/tools/_if.import.scss
|
|
722
903
|
- node_modules/govuk-frontend/dist/govuk/tools/_if.scss
|
|
904
|
+
- node_modules/govuk-frontend/dist/govuk/tools/_image-url.import.scss
|
|
723
905
|
- node_modules/govuk-frontend/dist/govuk/tools/_image-url.scss
|
|
906
|
+
- node_modules/govuk-frontend/dist/govuk/tools/_index.import.scss
|
|
724
907
|
- node_modules/govuk-frontend/dist/govuk/tools/_index.scss
|
|
908
|
+
- node_modules/govuk-frontend/dist/govuk/tools/_px-to-em.import.scss
|
|
725
909
|
- node_modules/govuk-frontend/dist/govuk/tools/_px-to-em.scss
|
|
910
|
+
- node_modules/govuk-frontend/dist/govuk/tools/_px-to-rem.import.scss
|
|
726
911
|
- node_modules/govuk-frontend/dist/govuk/tools/_px-to-rem.scss
|
|
912
|
+
- node_modules/govuk-frontend/dist/govuk/utilities/_clearfix.import.scss
|
|
913
|
+
- node_modules/govuk-frontend/dist/govuk/utilities/_clearfix.mixin.scss
|
|
727
914
|
- node_modules/govuk-frontend/dist/govuk/utilities/_clearfix.scss
|
|
915
|
+
- node_modules/govuk-frontend/dist/govuk/utilities/_index.import.scss
|
|
728
916
|
- node_modules/govuk-frontend/dist/govuk/utilities/_index.scss
|
|
917
|
+
- node_modules/govuk-frontend/dist/govuk/utilities/_visually-hidden.import.scss
|
|
918
|
+
- node_modules/govuk-frontend/dist/govuk/utilities/_visually-hidden.mixin.scss
|
|
729
919
|
- node_modules/govuk-frontend/dist/govuk/utilities/_visually-hidden.scss
|
|
730
920
|
- package-lock.json
|
|
731
921
|
- package.json
|
data/docs/configuration.md
DELETED
data/docs/frontmatter.md
DELETED
data/docs/page-expiry.md
DELETED
data/example/.ruby-version
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
3.3.11
|
data/example/Gemfile
DELETED