govuk_tech_docs 3.5.0 → 4.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/publish.yaml +8 -4
- data/.github/workflows/test.yaml +11 -4
- data/.rubocop.yml +1 -1
- data/CHANGELOG.md +21 -2
- data/example/.ruby-version +1 -1
- data/example/source/javascripts/govuk_frontend.js +1 -0
- data/govuk_tech_docs.gemspec +17 -11
- data/lib/assets/javascripts/_modules/page-expiry.js +2 -2
- data/lib/assets/javascripts/_modules/table-of-contents.js +48 -2
- data/lib/assets/javascripts/govuk_frontend_all.js +3 -0
- data/lib/assets/javascripts/govuk_tech_docs.js +0 -2
- data/lib/assets/stylesheets/_govuk_tech_docs.scss +4 -10
- data/lib/assets/stylesheets/modules/_page-review.scss +0 -2
- data/lib/assets/stylesheets/modules/_search.scss +0 -4
- data/lib/govuk_tech_docs/meta_tags.rb +1 -1
- data/lib/govuk_tech_docs/redirects.rb +1 -1
- data/lib/govuk_tech_docs/table_of_contents/heading_tree_builder.rb +1 -1
- data/lib/govuk_tech_docs/table_of_contents/helpers.rb +2 -2
- data/lib/govuk_tech_docs/tech_docs_html_renderer.rb +6 -2
- data/lib/govuk_tech_docs/version.rb +1 -1
- data/lib/govuk_tech_docs.rb +20 -3
- data/lib/source/layouts/_header.erb +8 -12
- data/lib/source/layouts/_page_review.erb +1 -1
- data/lib/source/layouts/_search.erb +2 -2
- data/lib/source/layouts/core.erb +8 -2
- data/lib/source/stylesheets/manifest.css +1 -1
- data/node_modules/govuk-frontend/dist/govuk/_base.scss +5 -0
- data/node_modules/govuk-frontend/dist/govuk/all.bundle.js +2554 -0
- data/node_modules/govuk-frontend/dist/govuk/all.bundle.mjs +2529 -0
- data/node_modules/govuk-frontend/dist/govuk/all.mjs +18 -0
- data/node_modules/govuk-frontend/dist/govuk/all.scss +3 -0
- data/node_modules/govuk-frontend/dist/govuk/assets/images/favicon.svg +1 -0
- data/node_modules/govuk-frontend/dist/govuk/assets/images/govuk-crest.svg +1 -0
- 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/assets/images/govuk-icon-mask.svg +1 -0
- data/node_modules/govuk-frontend/dist/govuk/assets/images/govuk-opengraph-image.png +0 -0
- data/node_modules/govuk-frontend/dist/govuk/common/closest-attribute-value.mjs +7 -0
- data/node_modules/govuk-frontend/dist/govuk/common/govuk-frontend-version.mjs +4 -0
- data/node_modules/govuk-frontend/dist/govuk/common/index.mjs +159 -0
- data/node_modules/govuk-frontend/dist/govuk/common/normalise-dataset.mjs +18 -0
- data/node_modules/govuk-frontend/dist/govuk/common/normalise-string.mjs +31 -0
- data/node_modules/govuk-frontend/dist/govuk/components/_all.scss +10 -0
- data/node_modules/govuk-frontend/{govuk/components/_all.scss → dist/govuk/components/_index.scss} +8 -3
- data/node_modules/govuk-frontend/dist/govuk/components/accordion/_accordion.scss +4 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/components/accordion/_index.scss +55 -77
- data/node_modules/govuk-frontend/dist/govuk/components/accordion/accordion.bundle.js +785 -0
- data/node_modules/govuk-frontend/dist/govuk/components/accordion/accordion.bundle.mjs +777 -0
- data/node_modules/govuk-frontend/dist/govuk/components/accordion/accordion.mjs +349 -0
- data/node_modules/govuk-frontend/dist/govuk/components/back-link/_back-link.scss +4 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/components/back-link/_index.scss +12 -36
- data/node_modules/govuk-frontend/dist/govuk/components/breadcrumbs/_breadcrumbs.scss +4 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/components/breadcrumbs/_index.scss +11 -36
- data/node_modules/govuk-frontend/dist/govuk/components/button/_button.scss +4 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/components/button/_index.scss +30 -103
- data/node_modules/govuk-frontend/dist/govuk/components/button/button.bundle.js +318 -0
- data/node_modules/govuk-frontend/dist/govuk/components/button/button.bundle.mjs +310 -0
- data/node_modules/govuk-frontend/dist/govuk/components/button/button.mjs +73 -0
- data/node_modules/govuk-frontend/dist/govuk/components/character-count/_character-count.scss +4 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/components/character-count/_index.scss +8 -6
- data/node_modules/govuk-frontend/dist/govuk/components/character-count/character-count.bundle.js +761 -0
- data/node_modules/govuk-frontend/dist/govuk/components/character-count/character-count.bundle.mjs +753 -0
- data/node_modules/govuk-frontend/dist/govuk/components/character-count/character-count.mjs +295 -0
- data/node_modules/govuk-frontend/dist/govuk/components/checkboxes/_checkboxes.scss +4 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/components/checkboxes/_index.scss +108 -132
- data/node_modules/govuk-frontend/dist/govuk/components/checkboxes/checkboxes.bundle.js +268 -0
- data/node_modules/govuk-frontend/dist/govuk/components/checkboxes/checkboxes.bundle.mjs +260 -0
- data/node_modules/govuk-frontend/dist/govuk/components/checkboxes/checkboxes.mjs +111 -0
- data/node_modules/govuk-frontend/dist/govuk/components/cookie-banner/_cookie-banner.scss +4 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/components/cookie-banner/_index.scss +19 -15
- data/node_modules/govuk-frontend/dist/govuk/components/date-input/_date-input.scss +4 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/components/date-input/_index.scss +3 -2
- data/node_modules/govuk-frontend/dist/govuk/components/details/_details.scss +4 -0
- data/node_modules/govuk-frontend/dist/govuk/components/details/_index.scss +139 -0
- data/node_modules/govuk-frontend/dist/govuk/components/error-message/_error-message.scss +4 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/components/error-message/_index.scss +2 -0
- data/node_modules/govuk-frontend/dist/govuk/components/error-summary/_error-summary.scss +4 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/components/error-summary/_index.scss +19 -6
- data/node_modules/govuk-frontend/dist/govuk/components/error-summary/error-summary.bundle.js +378 -0
- data/node_modules/govuk-frontend/dist/govuk/components/error-summary/error-summary.bundle.mjs +370 -0
- data/node_modules/govuk-frontend/dist/govuk/components/error-summary/error-summary.mjs +103 -0
- data/node_modules/govuk-frontend/dist/govuk/components/exit-this-page/_exit-this-page.scss +4 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/components/exit-this-page/_index.scss +5 -10
- data/node_modules/govuk-frontend/dist/govuk/components/exit-this-page/exit-this-page.bundle.js +662 -0
- data/node_modules/govuk-frontend/dist/govuk/components/exit-this-page/exit-this-page.bundle.mjs +654 -0
- data/node_modules/govuk-frontend/dist/govuk/components/exit-this-page/exit-this-page.mjs +226 -0
- data/node_modules/govuk-frontend/dist/govuk/components/fieldset/_fieldset.scss +4 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/components/fieldset/_index.scss +20 -15
- data/node_modules/govuk-frontend/dist/govuk/components/file-upload/_file-upload.scss +4 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/components/file-upload/_index.scss +11 -15
- data/node_modules/govuk-frontend/dist/govuk/components/footer/_footer.scss +4 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/components/footer/_index.scss +25 -68
- data/node_modules/govuk-frontend/dist/govuk/components/header/_header.scss +4 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/components/header/_index.scss +84 -79
- data/node_modules/govuk-frontend/dist/govuk/components/header/header.bundle.js +252 -0
- data/node_modules/govuk-frontend/dist/govuk/components/header/header.bundle.mjs +244 -0
- data/node_modules/govuk-frontend/dist/govuk/components/header/header.mjs +88 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/components/hint/_hint.scss +2 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/components/hint/_index.scss +3 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/components/input/_index.scss +24 -49
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/components/input/_input.scss +2 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/components/inset-text/_index.scss +2 -0
- data/node_modules/govuk-frontend/dist/govuk/components/inset-text/_inset-text.scss +4 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/components/label/_index.scss +12 -7
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/components/label/_label.scss +2 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/components/notification-banner/_index.scss +11 -7
- data/node_modules/govuk-frontend/dist/govuk/components/notification-banner/_notification-banner.scss +4 -0
- data/node_modules/govuk-frontend/dist/govuk/components/notification-banner/notification-banner.bundle.js +320 -0
- data/node_modules/govuk-frontend/dist/govuk/components/notification-banner/notification-banner.bundle.mjs +312 -0
- data/node_modules/govuk-frontend/dist/govuk/components/notification-banner/notification-banner.mjs +51 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/components/pagination/_index.scss +36 -55
- data/node_modules/govuk-frontend/dist/govuk/components/pagination/_pagination.scss +4 -0
- data/node_modules/govuk-frontend/dist/govuk/components/panel/_index.scss +58 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/components/panel/_panel.scss +2 -0
- data/node_modules/govuk-frontend/dist/govuk/components/password-input/_index.scss +57 -0
- data/node_modules/govuk-frontend/dist/govuk/components/password-input/_password-input.scss +4 -0
- data/node_modules/govuk-frontend/dist/govuk/components/password-input/password-input.bundle.js +594 -0
- data/node_modules/govuk-frontend/dist/govuk/components/password-input/password-input.bundle.mjs +586 -0
- data/node_modules/govuk-frontend/dist/govuk/components/password-input/password-input.mjs +154 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/components/phase-banner/_index.scss +10 -1
- data/node_modules/govuk-frontend/dist/govuk/components/phase-banner/_phase-banner.scss +4 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/components/radios/_index.scss +92 -113
- data/node_modules/govuk-frontend/dist/govuk/components/radios/_radios.scss +4 -0
- data/node_modules/govuk-frontend/dist/govuk/components/radios/radios.bundle.js +245 -0
- data/node_modules/govuk-frontend/dist/govuk/components/radios/radios.bundle.mjs +237 -0
- data/node_modules/govuk-frontend/dist/govuk/components/radios/radios.mjs +88 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/components/select/_index.scss +9 -16
- data/node_modules/govuk-frontend/dist/govuk/components/select/_select.scss +4 -0
- data/node_modules/govuk-frontend/dist/govuk/components/service-navigation/_index.scss +168 -0
- data/node_modules/govuk-frontend/dist/govuk/components/service-navigation/_service-navigation.scss +4 -0
- data/node_modules/govuk-frontend/dist/govuk/components/service-navigation/service-navigation.bundle.js +249 -0
- data/node_modules/govuk-frontend/dist/govuk/components/service-navigation/service-navigation.bundle.mjs +241 -0
- data/node_modules/govuk-frontend/dist/govuk/components/service-navigation/service-navigation.mjs +85 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/components/skip-link/_index.scss +10 -5
- data/node_modules/govuk-frontend/dist/govuk/components/skip-link/_skip-link.scss +4 -0
- data/node_modules/govuk-frontend/dist/govuk/components/skip-link/skip-link.bundle.js +244 -0
- data/node_modules/govuk-frontend/dist/govuk/components/skip-link/skip-link.bundle.mjs +236 -0
- data/node_modules/govuk-frontend/dist/govuk/components/skip-link/skip-link.mjs +58 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/components/summary-list/_index.scss +22 -20
- data/node_modules/govuk-frontend/dist/govuk/components/summary-list/_summary-list.scss +4 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/components/table/_index.scss +21 -17
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/components/table/_table.scss +2 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/components/tabs/_index.scss +13 -9
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/components/tabs/_tabs.scss +2 -0
- data/node_modules/govuk-frontend/dist/govuk/components/tabs/tabs.bundle.js +453 -0
- data/node_modules/govuk-frontend/dist/govuk/components/tabs/tabs.bundle.mjs +445 -0
- data/node_modules/govuk-frontend/dist/govuk/components/tabs/tabs.mjs +283 -0
- data/node_modules/govuk-frontend/dist/govuk/components/tag/_index.scss +97 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/components/tag/_tag.scss +2 -0
- data/node_modules/govuk-frontend/dist/govuk/components/task-list/_index.scss +79 -0
- data/node_modules/govuk-frontend/dist/govuk/components/task-list/_task-list.scss +4 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/components/textarea/_index.scss +6 -10
- data/node_modules/govuk-frontend/dist/govuk/components/textarea/_textarea.scss +4 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/components/warning-text/_index.scss +13 -13
- data/node_modules/govuk-frontend/dist/govuk/components/warning-text/_warning-text.scss +4 -0
- data/node_modules/govuk-frontend/dist/govuk/core/_all.scss +10 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/core/_global-styles.scss +2 -1
- data/node_modules/govuk-frontend/dist/govuk/core/_govuk-frontend-properties.scss +12 -0
- data/node_modules/govuk-frontend/{govuk/core/_all.scss → dist/govuk/core/_index.scss} +3 -1
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/core/_links.scss +8 -1
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/core/_lists.scss +2 -1
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/core/_section-break.scss +2 -7
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/core/_typography.scss +8 -5
- data/node_modules/govuk-frontend/dist/govuk/errors/index.mjs +57 -0
- data/node_modules/govuk-frontend/dist/govuk/govuk-frontend-component.mjs +60 -0
- data/node_modules/govuk-frontend/dist/govuk/govuk-frontend.min.js +1 -0
- data/node_modules/govuk-frontend/dist/govuk/helpers/_all.scss +10 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/helpers/_clearfix.scss +3 -1
- data/node_modules/govuk-frontend/dist/govuk/helpers/_colour.scss +127 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/helpers/_device-pixels.scss +4 -3
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/helpers/_focused.scss +22 -6
- data/node_modules/govuk-frontend/dist/govuk/helpers/_font-faces.scss +41 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/helpers/_grid.scss +3 -1
- data/node_modules/govuk-frontend/{govuk/helpers/_all.scss → dist/govuk/helpers/_index.scss} +2 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/helpers/_links.scss +38 -76
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/helpers/_media-queries.scss +3 -12
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/helpers/_shape-arrow.scss +3 -1
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/helpers/_spacing.scss +12 -10
- data/node_modules/govuk-frontend/dist/govuk/helpers/_typography.scss +288 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/helpers/_visually-hidden.scss +39 -50
- data/node_modules/govuk-frontend/dist/govuk/i18n.mjs +195 -0
- data/node_modules/govuk-frontend/dist/govuk/index.scss +11 -0
- data/node_modules/govuk-frontend/dist/govuk/init.mjs +162 -0
- data/node_modules/govuk-frontend/dist/govuk/objects/_all.scss +10 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/objects/_button-group.scss +7 -12
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/objects/_form-group.scss +2 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/objects/_grid.scss +4 -2
- data/node_modules/govuk-frontend/{govuk/objects/_all.scss → dist/govuk/objects/_index.scss} +2 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/objects/_main-wrapper.scss +2 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/objects/_template.scss +2 -1
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/objects/_width-container.scss +2 -9
- data/node_modules/govuk-frontend/dist/govuk/overrides/_all.scss +9 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/overrides/_display.scss +2 -0
- data/node_modules/govuk-frontend/{govuk/overrides/_all.scss → dist/govuk/overrides/_index.scss} +2 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/overrides/_spacing.scss +3 -19
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/overrides/_text-align.scss +2 -0
- data/node_modules/govuk-frontend/dist/govuk/overrides/_typography.scss +42 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/overrides/_width.scss +2 -0
- data/node_modules/govuk-frontend/dist/govuk/settings/_all.scss +10 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/settings/_assets.scss +2 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/settings/_colours-applied.scss +9 -7
- data/node_modules/govuk-frontend/dist/govuk/settings/_colours-organisations.scss +378 -0
- data/node_modules/govuk-frontend/dist/govuk/settings/_colours-palette.scss +37 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/settings/_global-styles.scss +2 -0
- data/node_modules/govuk-frontend/{govuk/settings/_all.scss → dist/govuk/settings/_index.scss} +2 -3
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/settings/_links.scss +3 -20
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/settings/_measurements.scss +18 -6
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/settings/_media-queries.scss +5 -3
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/settings/_spacing.scss +2 -0
- data/node_modules/govuk-frontend/dist/govuk/settings/_typography-font.scss +52 -0
- data/node_modules/govuk-frontend/dist/govuk/settings/_typography-responsive.scss +322 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/settings/_warnings.scss +33 -8
- data/node_modules/govuk-frontend/dist/govuk/tools/_all.scss +10 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/tools/_exports.scss +2 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/tools/_font-url.scss +3 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/tools/_image-url.scss +3 -0
- data/node_modules/govuk-frontend/{govuk/tools/_all.scss → dist/govuk/tools/_index.scss} +2 -2
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/tools/_px-to-em.scss +2 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/tools/_px-to-rem.scss +2 -0
- data/node_modules/govuk-frontend/dist/govuk/utilities/_all.scss +10 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/utilities/_clearfix.scss +2 -0
- data/node_modules/govuk-frontend/{govuk/utilities/_all.scss → dist/govuk/utilities/_index.scss} +2 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/utilities/_visually-hidden.scss +2 -0
- data/node_modules/govuk-frontend/{govuk → dist/govuk}/vendor/_sass-mq.scss +3 -1
- data/node_modules/govuk-frontend/dist/govuk-prototype-kit/init.js +15 -0
- data/node_modules/govuk-frontend/{govuk-prototype-kit → dist/govuk-prototype-kit}/init.scss +3 -2
- data/package-lock.json +37 -37
- data/package.json +6 -1
- metadata +316 -206
- data/node_modules/govuk-frontend/govuk/_base.scss +0 -3
- data/node_modules/govuk-frontend/govuk/all-ie8.scss +0 -14
- data/node_modules/govuk-frontend/govuk/all.js +0 -5172
- data/node_modules/govuk-frontend/govuk/all.scss +0 -9
- data/node_modules/govuk-frontend/govuk/assets/images/favicon.ico +0 -0
- data/node_modules/govuk-frontend/govuk/assets/images/govuk-apple-touch-icon-152x152.png +0 -0
- data/node_modules/govuk-frontend/govuk/assets/images/govuk-apple-touch-icon-167x167.png +0 -0
- data/node_modules/govuk-frontend/govuk/assets/images/govuk-apple-touch-icon-180x180.png +0 -0
- data/node_modules/govuk-frontend/govuk/assets/images/govuk-apple-touch-icon.png +0 -0
- data/node_modules/govuk-frontend/govuk/assets/images/govuk-crest-2x.png +0 -0
- data/node_modules/govuk-frontend/govuk/assets/images/govuk-crest.png +0 -0
- data/node_modules/govuk-frontend/govuk/assets/images/govuk-logotype-crown.png +0 -0
- data/node_modules/govuk-frontend/govuk/assets/images/govuk-mask-icon.svg +0 -7
- data/node_modules/govuk-frontend/govuk/assets/images/govuk-opengraph-image.png +0 -0
- data/node_modules/govuk-frontend/govuk/common/closest-attribute-value.js +0 -75
- data/node_modules/govuk-frontend/govuk/common/govuk-frontend-version.js +0 -17
- data/node_modules/govuk-frontend/govuk/common/index.js +0 -192
- data/node_modules/govuk-frontend/govuk/common/normalise-dataset.js +0 -386
- data/node_modules/govuk-frontend/govuk/common.js +0 -194
- data/node_modules/govuk-frontend/govuk/components/accordion/_accordion.scss +0 -2
- data/node_modules/govuk-frontend/govuk/components/accordion/accordion.js +0 -2386
- data/node_modules/govuk-frontend/govuk/components/back-link/_back-link.scss +0 -2
- data/node_modules/govuk-frontend/govuk/components/breadcrumbs/_breadcrumbs.scss +0 -2
- data/node_modules/govuk-frontend/govuk/components/button/_button.scss +0 -2
- data/node_modules/govuk-frontend/govuk/components/button/button.js +0 -1027
- data/node_modules/govuk-frontend/govuk/components/character-count/_character-count.scss +0 -2
- data/node_modules/govuk-frontend/govuk/components/character-count/character-count.js +0 -2281
- data/node_modules/govuk-frontend/govuk/components/checkboxes/_checkboxes.scss +0 -2
- data/node_modules/govuk-frontend/govuk/components/checkboxes/checkboxes.js +0 -1277
- data/node_modules/govuk-frontend/govuk/components/cookie-banner/_cookie-banner.scss +0 -2
- data/node_modules/govuk-frontend/govuk/components/date-input/_date-input.scss +0 -2
- data/node_modules/govuk-frontend/govuk/components/details/_details.scss +0 -2
- data/node_modules/govuk-frontend/govuk/components/details/_index.scss +0 -88
- data/node_modules/govuk-frontend/govuk/components/details/details.js +0 -873
- data/node_modules/govuk-frontend/govuk/components/error-message/_error-message.scss +0 -2
- data/node_modules/govuk-frontend/govuk/components/error-summary/_error-summary.scss +0 -2
- data/node_modules/govuk-frontend/govuk/components/error-summary/error-summary.js +0 -1189
- data/node_modules/govuk-frontend/govuk/components/exit-this-page/_exit-this-page.scss +0 -2
- data/node_modules/govuk-frontend/govuk/components/exit-this-page/exit-this-page.js +0 -2120
- data/node_modules/govuk-frontend/govuk/components/fieldset/_fieldset.scss +0 -2
- data/node_modules/govuk-frontend/govuk/components/file-upload/_file-upload.scss +0 -2
- data/node_modules/govuk-frontend/govuk/components/footer/_footer.scss +0 -2
- data/node_modules/govuk-frontend/govuk/components/header/_header.scss +0 -2
- data/node_modules/govuk-frontend/govuk/components/header/header.js +0 -794
- data/node_modules/govuk-frontend/govuk/components/inset-text/_inset-text.scss +0 -2
- data/node_modules/govuk-frontend/govuk/components/notification-banner/_notification-banner.scss +0 -2
- data/node_modules/govuk-frontend/govuk/components/notification-banner/notification-banner.js +0 -843
- data/node_modules/govuk-frontend/govuk/components/pagination/_pagination.scss +0 -2
- data/node_modules/govuk-frontend/govuk/components/panel/_index.scss +0 -56
- data/node_modules/govuk-frontend/govuk/components/phase-banner/_phase-banner.scss +0 -2
- data/node_modules/govuk-frontend/govuk/components/radios/_radios.scss +0 -2
- data/node_modules/govuk-frontend/govuk/components/radios/radios.js +0 -1222
- data/node_modules/govuk-frontend/govuk/components/select/_select.scss +0 -2
- data/node_modules/govuk-frontend/govuk/components/skip-link/_skip-link.scss +0 -2
- data/node_modules/govuk-frontend/govuk/components/skip-link/skip-link.js +0 -1145
- data/node_modules/govuk-frontend/govuk/components/summary-list/_summary-list.scss +0 -2
- data/node_modules/govuk-frontend/govuk/components/tabs/tabs.js +0 -1621
- data/node_modules/govuk-frontend/govuk/components/tag/_index.scss +0 -81
- data/node_modules/govuk-frontend/govuk/components/textarea/_textarea.scss +0 -2
- data/node_modules/govuk-frontend/govuk/components/warning-text/_warning-text.scss +0 -2
- data/node_modules/govuk-frontend/govuk/core/_govuk-frontend-version.scss +0 -5
- data/node_modules/govuk-frontend/govuk/helpers/_colour.scss +0 -98
- data/node_modules/govuk-frontend/govuk/helpers/_font-faces.scss +0 -41
- data/node_modules/govuk-frontend/govuk/helpers/_typography.scss +0 -214
- data/node_modules/govuk-frontend/govuk/i18n.js +0 -397
- data/node_modules/govuk-frontend/govuk/overrides/_typography.scss +0 -21
- data/node_modules/govuk-frontend/govuk/settings/_colours-organisations.scss +0 -146
- data/node_modules/govuk-frontend/govuk/settings/_colours-palette.scss +0 -120
- data/node_modules/govuk-frontend/govuk/settings/_compatibility.scss +0 -100
- data/node_modules/govuk-frontend/govuk/settings/_ie8.scss +0 -34
- data/node_modules/govuk-frontend/govuk/settings/_typography-font-families.scss +0 -32
- data/node_modules/govuk-frontend/govuk/settings/_typography-font.scss +0 -112
- data/node_modules/govuk-frontend/govuk/settings/_typography-responsive.scss +0 -195
- data/node_modules/govuk-frontend/govuk/tools/_compatibility.scss +0 -50
- data/node_modules/govuk-frontend/govuk/tools/_ie8.scss +0 -87
- data/node_modules/govuk-frontend/govuk/vendor/polyfills/DOMTokenList.js +0 -274
- data/node_modules/govuk-frontend/govuk/vendor/polyfills/Date/now.js +0 -23
- data/node_modules/govuk-frontend/govuk/vendor/polyfills/Document.js +0 -36
- data/node_modules/govuk-frontend/govuk/vendor/polyfills/Element/prototype/classList.js +0 -597
- data/node_modules/govuk-frontend/govuk/vendor/polyfills/Element/prototype/closest.js +0 -58
- data/node_modules/govuk-frontend/govuk/vendor/polyfills/Element/prototype/dataset.js +0 -307
- data/node_modules/govuk-frontend/govuk/vendor/polyfills/Element/prototype/matches.js +0 -33
- data/node_modules/govuk-frontend/govuk/vendor/polyfills/Element/prototype/nextElementSibling.js +0 -261
- data/node_modules/govuk-frontend/govuk/vendor/polyfills/Element/prototype/previousElementSibling.js +0 -261
- data/node_modules/govuk-frontend/govuk/vendor/polyfills/Element.js +0 -151
- data/node_modules/govuk-frontend/govuk/vendor/polyfills/Event.js +0 -512
- data/node_modules/govuk-frontend/govuk/vendor/polyfills/Function/prototype/bind.js +0 -256
- data/node_modules/govuk-frontend/govuk/vendor/polyfills/Object/defineProperty.js +0 -96
- data/node_modules/govuk-frontend/govuk/vendor/polyfills/String/prototype/trim.js +0 -23
- data/node_modules/govuk-frontend/govuk/vendor/polyfills/Window.js +0 -30
- data/node_modules/govuk-frontend/govuk-prototype-kit/init.js +0 -8
- /data/node_modules/govuk-frontend/{govuk → dist/govuk}/assets/fonts/bold-affa96571d-v2.woff +0 -0
- /data/node_modules/govuk-frontend/{govuk → dist/govuk}/assets/fonts/bold-b542beb274-v2.woff2 +0 -0
- /data/node_modules/govuk-frontend/{govuk → dist/govuk}/assets/fonts/light-94a07e06a1-v2.woff2 +0 -0
- /data/node_modules/govuk-frontend/{govuk → dist/govuk}/assets/fonts/light-f591b13f7d-v2.woff +0 -0
- /data/{lib/source → node_modules/govuk-frontend/dist/govuk/assets/images}/favicon.ico +0 -0
@@ -1,100 +0,0 @@
|
|
1
|
-
////
|
2
|
-
/// 'Compatibility Mode'
|
3
|
-
///
|
4
|
-
/// Enabling these flags improves compatibility if you are using GOV.UK Frontend
|
5
|
-
/// in an application that also uses govuk_elements, govuk_frontend_toolkit or
|
6
|
-
/// govuk_template (the 'legacy repos').
|
7
|
-
///
|
8
|
-
/// Enabling any of these settings will, by default:
|
9
|
-
///
|
10
|
-
/// - switch GOV.UK Frontend to using the same colour palette as the legacy
|
11
|
-
/// repos, by setting `$govuk-use-legacy-palette` to true.
|
12
|
-
///
|
13
|
-
/// - prevent GOV.UK Frontend from using rem for font sizing, by setting
|
14
|
-
/// `$govuk-typography-use-rem` to false.
|
15
|
-
///
|
16
|
-
/// @group settings/compatibility
|
17
|
-
////
|
18
|
-
|
19
|
-
/// Compatibility Mode: alphagov/govuk_frontend_toolkit
|
20
|
-
///
|
21
|
-
/// Set this to true if you are also including alphagov/govuk_frontend_toolkit
|
22
|
-
/// in your application.
|
23
|
-
///
|
24
|
-
/// @type Boolean
|
25
|
-
/// @access public
|
26
|
-
/// @deprecated Will be removed in v5.0 with the rest of the compatibility mode
|
27
|
-
/// suite of tools and settings
|
28
|
-
|
29
|
-
$govuk-compatibility-govukfrontendtoolkit: false !default;
|
30
|
-
|
31
|
-
@if $govuk-compatibility-govukfrontendtoolkit == true {
|
32
|
-
@include _warning("compatibility-mode", "$govuk-compatibility-govukfrontendtoolkit " +
|
33
|
-
"is deprecated. From version 5.0, GOV.UK Frontend will remove compatibility " +
|
34
|
-
"with the legacy library govuk_frontend_toolkit.");
|
35
|
-
}
|
36
|
-
|
37
|
-
/// Compatibility Mode: alphagov/govuk_template
|
38
|
-
///
|
39
|
-
/// Enabling this will:
|
40
|
-
///
|
41
|
-
/// - prevent GOV.UK Frontend from including the New Transport typeface, as
|
42
|
-
/// it'll use the version of New Transport included with GOV.UK Template.
|
43
|
-
///
|
44
|
-
/// - alter some of the CSS outputted by GOV.UK Frontend to 'counter'
|
45
|
-
/// specific CSS rules in GOV.UK Template.
|
46
|
-
///
|
47
|
-
/// Set this to true if you are also including alphagov/govuk_template in your
|
48
|
-
/// application.
|
49
|
-
///
|
50
|
-
/// @type Boolean
|
51
|
-
/// @access public
|
52
|
-
/// @deprecated Will be removed in v5.0 with the rest of the compatibility mode
|
53
|
-
/// suite of tools and settings
|
54
|
-
|
55
|
-
$govuk-compatibility-govuktemplate: false !default;
|
56
|
-
|
57
|
-
@if $govuk-compatibility-govuktemplate == true {
|
58
|
-
@include _warning("compatibility-mode", "$govuk-compatibility-govuktemplate " +
|
59
|
-
"is deprecated. From version 5.0, GOV.UK Frontend will remove " +
|
60
|
-
"compatibility with the legacy library govuk_template.");
|
61
|
-
}
|
62
|
-
|
63
|
-
/// Compatibility Mode: alphagov/govuk_elements
|
64
|
-
///
|
65
|
-
/// Enabling this will:
|
66
|
-
///
|
67
|
-
/// - alter some of the CSS outputted by GOV.UK Frontend to 'counter'
|
68
|
-
/// specific CSS rules in GOV.UK Elements.
|
69
|
-
///
|
70
|
-
/// Set this to true if you are also including alphagov/govuk_elements in your
|
71
|
-
/// application.
|
72
|
-
///
|
73
|
-
/// @type Boolean
|
74
|
-
/// @access public
|
75
|
-
/// @deprecated Will be removed in v5.0 with the rest of the compatibility mode
|
76
|
-
/// suite of tools and settings
|
77
|
-
|
78
|
-
$govuk-compatibility-govukelements: false !default;
|
79
|
-
|
80
|
-
@if $govuk-compatibility-govukelements == true {
|
81
|
-
@include _warning("compatibility-mode", "$govuk-compatibility-govukelements " +
|
82
|
-
"is deprecated. From version 5.0, GOV.UK Frontend will remove compatibility " +
|
83
|
-
"with the legacy library govuk_elements.");
|
84
|
-
}
|
85
|
-
|
86
|
-
/// Compatibility Product Map
|
87
|
-
///
|
88
|
-
/// Maps product names to their settings that we can use to lookup states from
|
89
|
-
/// within the `@govuk-compatibility` mixin.
|
90
|
-
///
|
91
|
-
/// @type Map
|
92
|
-
/// @access private
|
93
|
-
/// @deprecated Will be removed in v5.0 with the rest of the compatibility mode
|
94
|
-
/// suite of tools and settings
|
95
|
-
|
96
|
-
$_govuk-compatibility: (
|
97
|
-
govuk_frontend_toolkit: $govuk-compatibility-govukfrontendtoolkit,
|
98
|
-
govuk_template: $govuk-compatibility-govuktemplate,
|
99
|
-
govuk_elements: $govuk-compatibility-govukelements,
|
100
|
-
);
|
@@ -1,34 +0,0 @@
|
|
1
|
-
////
|
2
|
-
/// @group settings/internet-explorer-8
|
3
|
-
////
|
4
|
-
|
5
|
-
/// Whether the stylesheet being built is targeting Internet Explorer 8.
|
6
|
-
///
|
7
|
-
/// @type Boolean
|
8
|
-
/// @access public
|
9
|
-
/// @deprecated Will be removed in v5.0
|
10
|
-
|
11
|
-
$govuk-is-ie8: false !default;
|
12
|
-
|
13
|
-
@if $govuk-is-ie8 == true {
|
14
|
-
@include _warning(
|
15
|
-
ie8,
|
16
|
-
"The $govuk-is-ie8 setting is deprecated and will be removed in v5.0."
|
17
|
-
);
|
18
|
-
}
|
19
|
-
|
20
|
-
/// The name of the breakpoint to use as the target when rasterizing media
|
21
|
-
/// queries
|
22
|
-
///
|
23
|
-
/// @type String
|
24
|
-
/// @access public
|
25
|
-
/// @deprecated Will be removed in v5.0
|
26
|
-
|
27
|
-
$govuk-ie8-breakpoint: desktop !default;
|
28
|
-
|
29
|
-
@if not $govuk-ie8-breakpoint == desktop {
|
30
|
-
@include _warning(
|
31
|
-
ie8,
|
32
|
-
"The $govuk-ie8-breakpoint setting is deprecated and will be removed in v5.0."
|
33
|
-
);
|
34
|
-
}
|
@@ -1,32 +0,0 @@
|
|
1
|
-
////
|
2
|
-
/// @group settings/typography
|
3
|
-
////
|
4
|
-
|
5
|
-
/// List of font families to use if using GDS Transport (the default font
|
6
|
-
/// 'stack' for GOV.UK)
|
7
|
-
///
|
8
|
-
/// @type List
|
9
|
-
/// @access public
|
10
|
-
|
11
|
-
$govuk-font-family-gds-transport: "GDS Transport", arial, sans-serif;
|
12
|
-
|
13
|
-
/// List of font families to use if using NTA (old font 'stack' for
|
14
|
-
/// GOV.UK)
|
15
|
-
///
|
16
|
-
/// @type List
|
17
|
-
/// @access public
|
18
|
-
/// @deprecated To be removed once support for compatibility mode is dropped
|
19
|
-
|
20
|
-
$govuk-font-family-nta: "nta", arial, sans-serif;
|
21
|
-
|
22
|
-
/// List of font families to use if using the 'tabular numbers' subset of NTA
|
23
|
-
/// (the default font 'stack' for GOV.UK)
|
24
|
-
///
|
25
|
-
/// Because ntatabularnumbers only includes the digits 0-10, all other glyphs
|
26
|
-
/// will 'fall-through' the stack to NTA.
|
27
|
-
///
|
28
|
-
/// @type List
|
29
|
-
/// @access public
|
30
|
-
/// @deprecated To be removed once support for compatibility mode is dropped
|
31
|
-
|
32
|
-
$govuk-font-family-nta-tabular: "ntatabularnumbers", $govuk-font-family-nta;
|
@@ -1,112 +0,0 @@
|
|
1
|
-
@import "compatibility";
|
2
|
-
@import "typography-font-families";
|
3
|
-
|
4
|
-
////
|
5
|
-
/// @group settings/typography
|
6
|
-
////
|
7
|
-
|
8
|
-
/// Use 'legacy' fonts
|
9
|
-
///
|
10
|
-
/// Whether or not to use v1 nta font from GOV.UK Elements / Frontend
|
11
|
-
/// Toolkit, for teams that are migrating to GOV.UK Frontend and may be using
|
12
|
-
/// components from both places in a single application.
|
13
|
-
///
|
14
|
-
/// @type Boolean
|
15
|
-
/// @access public
|
16
|
-
/// @deprecated Will be removed in v5.0 with the rest of the compatibility mode
|
17
|
-
/// suite of tools and settings
|
18
|
-
|
19
|
-
$govuk-use-legacy-font: if(
|
20
|
-
(
|
21
|
-
$govuk-compatibility-govukfrontendtoolkit or
|
22
|
-
$govuk-compatibility-govuktemplate or
|
23
|
-
$govuk-compatibility-govukelements
|
24
|
-
),
|
25
|
-
true,
|
26
|
-
false
|
27
|
-
) !default;
|
28
|
-
|
29
|
-
// Only show the deprecation warning if user is setting $govuk-use-legacy-font
|
30
|
-
// manually instead of automatically via compatibility variables
|
31
|
-
@if $govuk-use-legacy-font == true and
|
32
|
-
$govuk-compatibility-govukfrontendtoolkit == false and
|
33
|
-
$govuk-compatibility-govuktemplate == false and
|
34
|
-
$govuk-compatibility-govukelements == false {
|
35
|
-
@include _warning(legacy-font, "$govuk-use-legacy-font is deprecated. " +
|
36
|
-
"From version 5.0, GOV.UK Frontend will only support the included version " +
|
37
|
-
"of GDS Transport.");
|
38
|
-
}
|
39
|
-
|
40
|
-
// =========================================================
|
41
|
-
// Font families
|
42
|
-
// =========================================================
|
43
|
-
|
44
|
-
/// Font families to use for all typography on screen media
|
45
|
-
///
|
46
|
-
/// @type List
|
47
|
-
/// @access public
|
48
|
-
|
49
|
-
$govuk-font-family: if(
|
50
|
-
$govuk-use-legacy-font,
|
51
|
-
$govuk-font-family-nta,
|
52
|
-
$govuk-font-family-gds-transport
|
53
|
-
) !default;
|
54
|
-
|
55
|
-
/// Font families to use when displaying tabular numbers
|
56
|
-
///
|
57
|
-
/// @type List
|
58
|
-
/// @access public
|
59
|
-
/// @deprecated Will be removed in v5.0 with the rest of the compatibility mode
|
60
|
-
/// suite of tools and settings
|
61
|
-
|
62
|
-
$govuk-font-family-tabular: if(
|
63
|
-
$govuk-use-legacy-font,
|
64
|
-
$govuk-font-family-nta-tabular,
|
65
|
-
false
|
66
|
-
) !default;
|
67
|
-
|
68
|
-
// Only show the deprecation warning if user is setting $govuk-font-family-tabular
|
69
|
-
// manually instead of automatically via $govuk-use-legacy-font
|
70
|
-
@if $govuk-font-family-tabular != false and $govuk-use-legacy-font == false {
|
71
|
-
@include _warning(tabular-font-face, "$govuk-font-family-tabular is deprecated. " +
|
72
|
-
"From version 5.0, GOV.UK Frontend will not support using a separate " +
|
73
|
-
"font-face for tabular numbers.");
|
74
|
-
}
|
75
|
-
|
76
|
-
/// Font families to use for print media
|
77
|
-
///
|
78
|
-
/// We recommend that you use system fonts when printing. This will avoid issues
|
79
|
-
/// with some printer drivers and operating systems.
|
80
|
-
///
|
81
|
-
/// @type List
|
82
|
-
/// @access public
|
83
|
-
|
84
|
-
$govuk-font-family-print: sans-serif !default;
|
85
|
-
|
86
|
-
/// Include the default @font-face declarations
|
87
|
-
///
|
88
|
-
/// If you have set $govuk-font-family to something other than
|
89
|
-
/// `$govuk-font-family-gds-transport` this option is disabled by default.
|
90
|
-
///
|
91
|
-
/// @type Boolean
|
92
|
-
/// @access public
|
93
|
-
|
94
|
-
$govuk-include-default-font-face: (
|
95
|
-
$govuk-font-family == $govuk-font-family-gds-transport
|
96
|
-
) !default;
|
97
|
-
|
98
|
-
// =========================================================
|
99
|
-
// Font weights
|
100
|
-
// =========================================================
|
101
|
-
|
102
|
-
/// Font weight for regular typography
|
103
|
-
///
|
104
|
-
/// @type Number
|
105
|
-
/// @access public
|
106
|
-
$govuk-font-weight-regular: 400 !default;
|
107
|
-
|
108
|
-
/// Font weight for bold typography
|
109
|
-
///
|
110
|
-
/// @type Number
|
111
|
-
/// @access public
|
112
|
-
$govuk-font-weight-bold: 700 !default;
|
@@ -1,195 +0,0 @@
|
|
1
|
-
@import "compatibility";
|
2
|
-
|
3
|
-
////
|
4
|
-
/// @group settings/typography
|
5
|
-
////
|
6
|
-
|
7
|
-
/// Whether or not to define font sizes in rem, improving accessibility by
|
8
|
-
/// allowing users to adjust the base font-size. This is enabled by default,
|
9
|
-
/// unless any of the compatibility mode settings are enabled.
|
10
|
-
///
|
11
|
-
/// You should make sure that $govuk-root-font-size is set correctly for your
|
12
|
-
/// project.
|
13
|
-
///
|
14
|
-
/// @type Boolean
|
15
|
-
/// @access public
|
16
|
-
/// @deprecated Will be removed in v5.0 with the rest of the compatibility mode
|
17
|
-
/// suite of tools and settings
|
18
|
-
|
19
|
-
$govuk-typography-use-rem: if(
|
20
|
-
(
|
21
|
-
$govuk-compatibility-govukfrontendtoolkit or
|
22
|
-
$govuk-compatibility-govuktemplate or
|
23
|
-
$govuk-compatibility-govukelements
|
24
|
-
),
|
25
|
-
false,
|
26
|
-
true
|
27
|
-
) !default;
|
28
|
-
|
29
|
-
// Only show the deprecation warning if user is setting $govuk-typography-use-rem
|
30
|
-
// manually instead of automatically via compatibility variables
|
31
|
-
@if $govuk-typography-use-rem == false and
|
32
|
-
$govuk-compatibility-govukfrontendtoolkit == false and
|
33
|
-
$govuk-compatibility-govuktemplate == false and
|
34
|
-
$govuk-compatibility-govukelements == false {
|
35
|
-
@include _warning(allow-not-using-rem, "$govuk-typography-use-rem is deprecated. " +
|
36
|
-
"From version 5.0, GOV.UK Frontend will not support disabling rem font sizes.");
|
37
|
-
}
|
38
|
-
|
39
|
-
/// Root font size
|
40
|
-
///
|
41
|
-
/// This is used to calculate rem sizes for the typography, and should match the
|
42
|
-
/// _effective_ font-size of your root (or html) element.
|
43
|
-
///
|
44
|
-
/// Ideally you should not be setting the font-size on the html or root element
|
45
|
-
/// in order to allow it to scale with user-preference, in which case this
|
46
|
-
/// should be set to 16px.
|
47
|
-
///
|
48
|
-
/// If you are integrating Frontend into an existing project that also uses
|
49
|
-
/// alphagov/govuk_template and you wish to enable `$govuk-typography-use-rem`
|
50
|
-
/// then you should set this to 10px to match the 62.5% (10px) base font size
|
51
|
-
/// that govuk_template sets on the <html> element.
|
52
|
-
///
|
53
|
-
/// @type Number
|
54
|
-
/// @access public
|
55
|
-
|
56
|
-
$govuk-root-font-size: 16px !default;
|
57
|
-
|
58
|
-
/// Responsive typography font map
|
59
|
-
///
|
60
|
-
/// This is used to generate responsive typography that adapts according to the
|
61
|
-
/// breakpoints.
|
62
|
-
///
|
63
|
-
/// Font size and font weight can be defined for each breakpoint. You can define
|
64
|
-
/// different behaviour on tablet and desktop. The 'null' breakpoint is for
|
65
|
-
/// mobile.
|
66
|
-
///
|
67
|
-
/// Line-heights will automatically be converted from pixel measurements into
|
68
|
-
/// relative values. For example, with a font-size of 16px and a line-height of
|
69
|
-
/// 24px, the line-height will be converted to 1.5 before output.
|
70
|
-
///
|
71
|
-
/// You can also specify a separate font size and line height for print media.
|
72
|
-
///
|
73
|
-
/// @type Map
|
74
|
-
///
|
75
|
-
/// @prop {Number} $point.$breakpoint.font-size - Font size for `$point` at `$breakpoint`
|
76
|
-
/// @prop {Number} $point.$breakpoint.line-height - Line height for `$point` at `$breakpoint`
|
77
|
-
/// @prop {Number} $point.print.font-size - Font size for `$point` when printing
|
78
|
-
/// @prop {Number} $point.print.line-height - Line height for `$point` when printing
|
79
|
-
///
|
80
|
-
/// @access public
|
81
|
-
|
82
|
-
$govuk-typography-scale: (
|
83
|
-
80: (
|
84
|
-
null: (
|
85
|
-
font-size: 53px,
|
86
|
-
line-height: 55px
|
87
|
-
),
|
88
|
-
tablet: (
|
89
|
-
font-size: 80px,
|
90
|
-
line-height: 80px
|
91
|
-
),
|
92
|
-
print: (
|
93
|
-
font-size: 53pt,
|
94
|
-
line-height: 1.1
|
95
|
-
)
|
96
|
-
),
|
97
|
-
48: (
|
98
|
-
null: (
|
99
|
-
font-size: 32px,
|
100
|
-
line-height: 35px
|
101
|
-
),
|
102
|
-
tablet: (
|
103
|
-
font-size: 48px,
|
104
|
-
line-height: 50px
|
105
|
-
),
|
106
|
-
print: (
|
107
|
-
font-size: 32pt,
|
108
|
-
line-height: 1.15
|
109
|
-
)
|
110
|
-
),
|
111
|
-
36: (
|
112
|
-
null: (
|
113
|
-
font-size: 24px,
|
114
|
-
line-height: 25px
|
115
|
-
),
|
116
|
-
tablet: (
|
117
|
-
font-size: 36px,
|
118
|
-
line-height: 40px
|
119
|
-
),
|
120
|
-
print: (
|
121
|
-
font-size: 24pt,
|
122
|
-
line-height: 1.05
|
123
|
-
)
|
124
|
-
),
|
125
|
-
27: (
|
126
|
-
null: (
|
127
|
-
font-size: 18px,
|
128
|
-
line-height: 20px
|
129
|
-
),
|
130
|
-
tablet: (
|
131
|
-
font-size: 27px,
|
132
|
-
line-height: 30px
|
133
|
-
),
|
134
|
-
print: (
|
135
|
-
font-size: 18pt,
|
136
|
-
line-height: 1.15
|
137
|
-
)
|
138
|
-
),
|
139
|
-
24: (
|
140
|
-
null: (
|
141
|
-
font-size: 18px,
|
142
|
-
line-height: 20px
|
143
|
-
),
|
144
|
-
tablet: (
|
145
|
-
font-size: 24px,
|
146
|
-
line-height: 30px
|
147
|
-
),
|
148
|
-
print: (
|
149
|
-
font-size: 18pt,
|
150
|
-
line-height: 1.15
|
151
|
-
)
|
152
|
-
),
|
153
|
-
19: (
|
154
|
-
null: (
|
155
|
-
font-size: 16px,
|
156
|
-
line-height: 20px
|
157
|
-
),
|
158
|
-
tablet: (
|
159
|
-
font-size: 19px,
|
160
|
-
line-height: 25px
|
161
|
-
),
|
162
|
-
print: (
|
163
|
-
font-size: 14pt,
|
164
|
-
line-height: 1.15
|
165
|
-
)
|
166
|
-
),
|
167
|
-
16: (
|
168
|
-
null: (
|
169
|
-
font-size: 14px,
|
170
|
-
line-height: 16px
|
171
|
-
),
|
172
|
-
tablet: (
|
173
|
-
font-size: 16px,
|
174
|
-
line-height: 20px
|
175
|
-
),
|
176
|
-
print: (
|
177
|
-
font-size: 14pt,
|
178
|
-
line-height: 1.2
|
179
|
-
)
|
180
|
-
),
|
181
|
-
14: (
|
182
|
-
null: (
|
183
|
-
font-size: 12px,
|
184
|
-
line-height: 15px
|
185
|
-
),
|
186
|
-
tablet: (
|
187
|
-
font-size: 14px,
|
188
|
-
line-height: 20px
|
189
|
-
),
|
190
|
-
print: (
|
191
|
-
font-size: 12pt,
|
192
|
-
line-height: 1.2
|
193
|
-
)
|
194
|
-
)
|
195
|
-
) !default;
|
@@ -1,50 +0,0 @@
|
|
1
|
-
////
|
2
|
-
/// @group tools/compatibility-mode
|
3
|
-
////
|
4
|
-
|
5
|
-
/// Temporary private version of govuk-compatibility to avoid deprecation warnings
|
6
|
-
///
|
7
|
-
/// @access private
|
8
|
-
|
9
|
-
@mixin _govuk-compatibility($product) {
|
10
|
-
@if map-has-key($_govuk-compatibility, $product) {
|
11
|
-
@if map-get($_govuk-compatibility, $product) == true {
|
12
|
-
@content;
|
13
|
-
}
|
14
|
-
} @else {
|
15
|
-
@error "Non existent product '#{$product}'";
|
16
|
-
}
|
17
|
-
}
|
18
|
-
|
19
|
-
/// Conditional Compatibility Mixin
|
20
|
-
///
|
21
|
-
/// Selectively output a block (available to the mixin as @content) if a given
|
22
|
-
/// $product is also identified as being used in the project.
|
23
|
-
///
|
24
|
-
/// This can then be used to include styles that are only needed to override
|
25
|
-
/// styles provided by those other products (e.g. where govuk_template has a
|
26
|
-
/// very specific link selector that otherwise affects buttons).
|
27
|
-
///
|
28
|
-
/// @example scss
|
29
|
-
/// // Override .my-class if GOV.UK Template is also being used
|
30
|
-
/// @include govuk-compatibility(govuk_template) {
|
31
|
-
/// .my-class {
|
32
|
-
/// color: inherit;
|
33
|
-
/// }
|
34
|
-
/// }
|
35
|
-
///
|
36
|
-
/// @param {String} $product - Name of product that we are 'defending' against.
|
37
|
-
/// @content Passed content is outputted only if Frontend is being used with
|
38
|
-
/// this product
|
39
|
-
/// @throw Errors if product name is not recognised
|
40
|
-
/// @access public
|
41
|
-
/// @deprecated Will be removed in v5.0 with the rest of the compatibility mode
|
42
|
-
/// suite of tools and settings
|
43
|
-
|
44
|
-
@mixin govuk-compatibility($product) {
|
45
|
-
@include _warning(compatibility-helper, "govuk-compatibility is deprecated. " +
|
46
|
-
"From version 5.0, GOV.UK Frontend will not support compatibility mode.");
|
47
|
-
@include _govuk-compatibility($product) {
|
48
|
-
@content;
|
49
|
-
}
|
50
|
-
}
|
@@ -1,87 +0,0 @@
|
|
1
|
-
@import "../settings/warnings";
|
2
|
-
|
3
|
-
////
|
4
|
-
/// @group tools/internet-explorer-8
|
5
|
-
////
|
6
|
-
|
7
|
-
/// A private version of the govuk-if-ie8 mixin to avoid deprecation
|
8
|
-
/// warnings where we use it internally
|
9
|
-
///
|
10
|
-
/// @access private
|
11
|
-
|
12
|
-
@mixin _govuk-if-ie8 {
|
13
|
-
@if $govuk-is-ie8 {
|
14
|
-
@content;
|
15
|
-
}
|
16
|
-
}
|
17
|
-
|
18
|
-
/// Conditionally include rules only for IE8
|
19
|
-
///
|
20
|
-
/// @content Passed content is only outputted if we're compiling a stylesheet
|
21
|
-
/// that targets IE8 (if `$govuk-is-ie8` is true)
|
22
|
-
///
|
23
|
-
/// @example scss - Usage
|
24
|
-
///
|
25
|
-
/// .foo {
|
26
|
-
/// min-width: 100px;
|
27
|
-
/// // Specify width for IE8 only
|
28
|
-
/// @include govuk-if-ie8 {
|
29
|
-
/// width: 100px;
|
30
|
-
/// }
|
31
|
-
/// }
|
32
|
-
///
|
33
|
-
/// @access public
|
34
|
-
/// @deprecated Will be removed in v5.0
|
35
|
-
|
36
|
-
@mixin govuk-if-ie8 {
|
37
|
-
@include _warning(
|
38
|
-
ie8,
|
39
|
-
"The govuk-if-ie8 mixin is deprecated and will be removed in v5.0."
|
40
|
-
);
|
41
|
-
|
42
|
-
@include _govuk-if-ie8 {
|
43
|
-
@content;
|
44
|
-
}
|
45
|
-
}
|
46
|
-
|
47
|
-
/// A private version of the govuk-not-ie8 mixin to avoid deprecation
|
48
|
-
/// warnings where we use it internally
|
49
|
-
///
|
50
|
-
/// @access private
|
51
|
-
|
52
|
-
@mixin _govuk-not-ie8 {
|
53
|
-
@if not $govuk-is-ie8 {
|
54
|
-
@content;
|
55
|
-
}
|
56
|
-
}
|
57
|
-
|
58
|
-
/// Conditionally exclude rules for IE8
|
59
|
-
///
|
60
|
-
/// @content Passed content is only outputted if we're not compiling a
|
61
|
-
/// stylesheet that targets IE8 (if `$govuk-is-ie8` is false)
|
62
|
-
///
|
63
|
-
/// @example scss - Usage
|
64
|
-
///
|
65
|
-
/// .foo {
|
66
|
-
/// font-weight: bold;
|
67
|
-
///
|
68
|
-
/// // Enhance foo only for modern browsers (not IE8)
|
69
|
-
/// @include govuk-not-ie8 {
|
70
|
-
/// font-family: "Comic Sans MS", "Curlz MT" cursive, sans-serif;
|
71
|
-
/// color: #FF69B4;
|
72
|
-
/// }
|
73
|
-
/// }
|
74
|
-
///
|
75
|
-
/// @access public
|
76
|
-
/// @deprecated Will be removed in v5.0
|
77
|
-
|
78
|
-
@mixin govuk-not-ie8 {
|
79
|
-
@include _warning(
|
80
|
-
ie8,
|
81
|
-
"The govuk-not-ie8 mixin is deprecated and will be removed in v5.0."
|
82
|
-
);
|
83
|
-
|
84
|
-
@include _govuk-not-ie8 {
|
85
|
-
@content;
|
86
|
-
}
|
87
|
-
}
|