├── .browserslistrc ├── .editorconfig ├── .eleventy.js ├── .eleventyignore ├── .eslintrc.js ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── BUG_REPORT.md │ ├── EXPERIMENTAL_BUILDING_BLOCK.md │ ├── FEATURE_REQUEST.md │ └── TASK.md ├── PULL_REQUEST_TEMPLATE │ ├── BUG_FIX.md │ ├── DOCUMENTATION.md │ ├── FEATURE_CHANGE.md │ └── PERFORMANCE_IMPROVEMENT.md └── workflows │ ├── branch-preview-cleanup.yml │ ├── branch-preview.yml │ ├── deploy-production.yml │ ├── lint.yml │ ├── playwright.yml │ ├── publish-package.yml │ ├── renovate.yml │ ├── sass.yml │ └── tag-staging.yml ├── .gitignore ├── .npmrc ├── .nvmrc ├── .prettierignore ├── .prettierrc.js ├── .releaserc.json ├── 11ty ├── config │ ├── experimental-components │ │ ├── template-copy.js │ │ └── url-transform.js │ ├── highlight.js │ ├── markdown.js │ └── nunjucks.js ├── filters │ ├── capitalise-acronyms.js │ ├── index.js │ ├── inspect.js │ ├── paths.js │ ├── render-markdown.js │ ├── render-nunjucks.js │ ├── rev.js │ ├── timestamp.js │ └── tsconfig.json ├── paired-shortcodes │ ├── accordion.js │ ├── banner.js │ ├── index.js │ └── tabs.js ├── shortcodes │ ├── date-in-current-month.js │ ├── example.js │ ├── index.js │ ├── tsconfig.json │ └── version.js └── tsconfig.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── VERSION.md ├── app ├── app.js ├── config.js ├── helpers │ ├── __snapshots__ │ │ └── check-your-answers.spec.js.snap │ ├── application-error.js │ ├── check-your-answers.js │ ├── check-your-answers.spec.js │ ├── date-fields.js │ ├── extract-body.js │ ├── extract-body.spec.js │ ├── file-helper.js │ ├── file-helper.spec.js │ ├── form-pages.js │ ├── form-pages.spec.js │ ├── get-pr-title-and-description.js │ ├── get-pr-title-and-description.spec.js │ ├── max-words.js │ ├── max-words.spec.js │ ├── mockSessionData │ │ └── sessionData.js │ ├── next-page.spec.js │ ├── page-navigation.js │ ├── previous-page.spec.js │ ├── redis-helper.js │ ├── redis-helper.spec.js │ ├── text-helper.js │ ├── text-helper.spec.js │ └── url-helper.js ├── middleware │ ├── __snapshots__ │ │ └── generate-documentation.spec.js.snap │ ├── component-session.js │ ├── component-session.spec.js │ ├── generate-documentation.js │ ├── generate-documentation.spec.js │ ├── github-api.js │ ├── github-api.spec.js │ ├── notify-email.js │ ├── notify-email.spec.js │ ├── process-submission-data.js │ ├── process-submission-data.spec.js │ ├── validate-session.js │ └── verify-csrf.js ├── redis-client.js ├── routes │ └── add-component.js ├── schema │ ├── accessibility-findings-more.schema.js │ ├── accessibility-findings.schema.js │ ├── add-another.schema.js │ ├── add-assistive-tech.schema.js │ ├── add-external-audit.schema.js │ ├── add-internal-audit.schema.js │ ├── component-code-details.schema.js │ ├── component-code.schema.js │ ├── component-details.schema.js │ ├── component-image.schema.js │ ├── email.schema.js │ ├── figma-link.schema.js │ ├── figma.schema.js │ ├── prototype-url.schema.js │ ├── prototype.schema.js │ ├── schemas.js │ ├── tsconfig.json │ └── your-details.schema.js ├── tests │ └── e2e │ │ ├── 01.start.spec.js │ │ ├── 01a.email.spec.js │ │ ├── 01b.email-verification.spec.js │ │ ├── 02.component-details.spec.js │ │ ├── 03.component-image.spec.js │ │ ├── 04.accessibility-findings.spec.js │ │ ├── 05.external-audit.spec.js │ │ ├── 06.internal-review.spec.js │ │ ├── 07.assistive-tech.spec.js │ │ ├── 08.component-code.spec.js │ │ ├── 09.component-code-details.spec.js │ │ ├── 10.figma.spec.js │ │ ├── 11.figma-link.spec.js │ │ ├── 12.your-details.spec.js │ │ ├── no-session.js │ │ ├── pages │ │ ├── accessibility-findings-page.js │ │ ├── assistive-tech-page.js │ │ ├── check-your-answers-page.js │ │ ├── component-code-details-page.js │ │ ├── component-code-page.js │ │ ├── component-details-page.js │ │ ├── component-image-page.js │ │ ├── contributions-page.js │ │ ├── external-audit-page.js │ │ ├── figma-link-page.js │ │ ├── figma-page.js │ │ ├── internal-review-page.js │ │ └── your-details-page.js │ │ ├── session.setup.js │ │ └── test-files │ │ ├── test-image-too-large.png │ │ └── test-image.png ├── tsconfig.json └── views │ ├── common │ ├── 404.njk │ ├── 500.njk │ ├── base.njk │ ├── contributions.njk │ ├── macros │ │ ├── form.njk │ │ ├── page-heading.njk │ │ └── summary-card.njk │ └── partials │ │ ├── footer.njk │ │ ├── header-no-nav.njk │ │ ├── header.njk │ │ └── side-navigation.njk │ └── community │ └── pages │ ├── accessibility-findings.njk │ ├── add-assistive-tech.njk │ ├── add-external-audit.njk │ ├── add-internal-audit.njk │ ├── check-your-answers.njk │ ├── component-code-details.njk │ ├── component-code.njk │ ├── component-details.njk │ ├── component-image.njk │ ├── confirmation.njk │ ├── email-check.njk │ ├── email-invalid-token.njk │ ├── email-not-allowed.njk │ ├── email-resend.njk │ ├── email-session-expired.njk │ ├── email.njk │ ├── figma-link.njk │ ├── figma.njk │ ├── remove.njk │ ├── start.njk │ └── your-details.njk ├── babel.config.js ├── commitlint.config.js ├── docker-compose.e2e-tests.yml ├── docker-compose.preview.yml ├── docker ├── htpasswd ├── htpasswd-preview ├── nginx-local.conf ├── nginx-preview.conf ├── nginx-production.conf └── nginx-staging.conf ├── docs ├── 404.md ├── 500.md ├── _data │ ├── env.js │ └── statusInfo.json ├── _includes │ ├── example.njk │ ├── layouts │ │ ├── 404.njk │ │ ├── 500.njk │ │ ├── base.njk │ │ ├── content.njk │ │ ├── example.njk │ │ ├── home.njk │ │ ├── index.njk │ │ ├── nav-only.njk │ │ ├── partials │ │ │ ├── back-to-top.njk │ │ │ ├── building-block-header.njk │ │ │ ├── content-tabs.njk │ │ │ ├── feedback-banner.njk │ │ │ ├── footer.njk │ │ │ ├── get-help-and-contribute.njk │ │ │ ├── get-help.njk │ │ │ ├── header-no-nav.njk │ │ │ ├── header.njk │ │ │ ├── navigation.njk │ │ │ ├── page-header.njk │ │ │ └── side-navigation.njk │ │ ├── style-guide-updates.njk │ │ └── thumbnail-grid.njk │ ├── macros │ │ ├── card │ │ │ ├── macro.njk │ │ │ └── template.njk │ │ ├── heading │ │ │ ├── macro.njk │ │ │ └── template.njk │ │ ├── nav-list-item │ │ │ ├── macro.njk │ │ │ └── template.njk │ │ ├── status-label │ │ │ ├── macro.njk │ │ │ └── template.njk │ │ └── status-tag │ │ │ ├── macro.njk │ │ │ └── template.njk │ └── partials │ │ └── forms │ │ └── button-href.njk ├── about-the-design-system.md ├── accessibility.md ├── archive │ ├── archive.11tydata.mjs │ ├── banner │ │ ├── banner.11tydata.js │ │ ├── examples │ │ │ ├── default │ │ │ │ └── index.njk │ │ │ ├── examples.11tydata.js │ │ │ ├── information │ │ │ │ └── index.njk │ │ │ ├── success │ │ │ │ └── index.njk │ │ │ └── warning │ │ │ │ └── index.njk │ │ └── index.md │ ├── currency-input │ │ ├── _arguments.md │ │ ├── currency-input.11tydata.js │ │ ├── examples │ │ │ ├── default │ │ │ │ └── index.njk │ │ │ └── examples.11tydata.js │ │ └── index.md │ ├── form-validator │ │ ├── examples │ │ │ ├── default │ │ │ │ ├── index.njk │ │ │ │ └── script.js │ │ │ └── examples.11tydata.js │ │ ├── form-validator.11tydata.js │ │ └── index.md │ ├── index.md │ ├── password-reveal │ │ ├── examples │ │ │ ├── default │ │ │ │ └── index.njk │ │ │ └── examples.11tydata.js │ │ ├── index.md │ │ └── password-reveal.11tydata.js │ ├── question-pages │ │ └── index.md │ ├── rich-text-editor │ │ ├── examples │ │ │ ├── default │ │ │ │ └── index.njk │ │ │ ├── examples.11tydata.js │ │ │ └── formatting │ │ │ │ └── index.njk │ │ └── index.md │ ├── tag │ │ └── index.md │ └── task-list │ │ ├── _arguments.md │ │ ├── examples │ │ ├── default │ │ │ └── index.njk │ │ └── examples.11tydata.js │ │ └── index.md ├── assets │ └── images │ │ ├── accessibility-statements-page.png │ │ ├── add-to-a-list-01.png │ │ ├── add-to-a-list-02.png │ │ ├── add-to-a-list-03.png │ │ ├── add-to-a-list-04.png │ │ ├── add-to-a-list-05-2024.png │ │ ├── alert-example-case-management.png │ │ ├── alert-example-contextual.png │ │ ├── button-menu-case-management-example-2024.png │ │ ├── button-menu-multi-select-example-2024.png │ │ ├── case-list-01.png │ │ ├── case-list-02.png │ │ ├── case-list-03.png │ │ ├── case-list-04.png │ │ ├── cookies-policy-page.png │ │ ├── date-picker-filter-example-2024.png │ │ ├── date-picker-question-example-2024.png │ │ ├── favicon.ico │ │ ├── figma-guidance-assets-menu.png │ │ ├── figma-guidance-default-libraries.png │ │ ├── figma-guidance-download-kit.png │ │ ├── figma-guidance-recommended-libraries-hover.png │ │ ├── figma-guidance-recommended-libraries.png │ │ ├── figma-guidance-update.png │ │ ├── filters-01.png │ │ ├── filters-02.png │ │ ├── filters-03.png │ │ ├── filters-04.png │ │ ├── filters-05.png │ │ ├── home-img │ │ ├── benefits-of-using-moj-design-system.png │ │ ├── benefits-of-using-moj-design-systemx2.png │ │ ├── contribute.png │ │ ├── contributex2.png │ │ ├── how-to-use-building-blocks.png │ │ └── how-to-use-building-blocksx2.png │ │ ├── interruption-card-example-are-you-sure.png │ │ ├── interruption-card-example-important-content.png │ │ ├── interruption-card-example-non-contextual-error.png │ │ ├── interruption-card-example-possible-error.png │ │ ├── interruption-card-example-varied-outcome.png │ │ ├── moj-apple-touch-icon-152x152-2024.png │ │ ├── moj-apple-touch-icon-167x167-2024.png │ │ ├── moj-apple-touch-icon-180x180-2024.png │ │ ├── moj-apple-touch-icon-2024.png │ │ ├── moj-contribution.svg │ │ ├── moj-opengraph-image-2024.png │ │ ├── moj-people.svg │ │ ├── moj-research.svg │ │ ├── moj-usability.svg │ │ ├── notification-badge-example-count.png │ │ ├── notification-badge-example-inbox-1.png │ │ ├── notification-badge-example-inbox-2.png │ │ ├── notification-badge-example-inbox-3.png │ │ ├── pds-footer-manage-people-on-probation.png │ │ ├── pds-header-account-menu-open.png │ │ ├── pds-header-global-nav-open.png │ │ ├── privacy-policy-page.png │ │ ├── receipt.jpg │ │ ├── submission-1756893312117 │ │ └── progress-tracker.png │ │ ├── submission-1756982092471 │ │ └── guidance-inset-text.png │ │ ├── submission-1756990792746 │ │ └── calendar-component.png │ │ ├── submission-1759330464350 │ │ └── New-features-banner.png │ │ ├── submission-1762945944100 │ │ └── 147359426-76571618-1099-454f-a421-50f956a8a2a9.png │ │ ├── submission-1762946436168 │ │ └── Screenshot-2025-11-12-at-11.19.01.png │ │ ├── submission-1762946660930 │ │ └── 147359799-4eebf319-25d3-45e3-b080-7ae7909055aa.png │ │ ├── submission-1762947876654 │ │ └── 127007751-efd9d308-bfa2-4c12-9bde-97b7cf025352.png │ │ ├── submission-1763677200863 │ │ └── modal-dialog.png │ │ ├── submission-1763680654726 │ │ └── timeout-warning.png │ │ ├── thumb-new-features-banner.png │ │ ├── thumbs │ │ ├── thumb-add-another.png │ │ ├── thumb-alert.png │ │ ├── thumb-badge.png │ │ ├── thumb-button-menu.png │ │ ├── thumb-calendar.png │ │ ├── thumb-card.png │ │ ├── thumb-contextual-date.png │ │ ├── thumb-date-picker.png │ │ ├── thumb-feedback-banner.png │ │ ├── thumb-filter.png │ │ ├── thumb-identity-bar.png │ │ ├── thumb-inset-text-(highlighted).png │ │ ├── thumb-interruption-card.png │ │ ├── thumb-messages.png │ │ ├── thumb-modal-dialog.png │ │ ├── thumb-moj-header.png │ │ ├── thumb-multi-file-upload.png │ │ ├── thumb-multi-select.png │ │ ├── thumb-new-features-banner.png │ │ ├── thumb-notification-badge.png │ │ ├── thumb-numeric-data.png │ │ ├── thumb-organisation-switcher.png │ │ ├── thumb-page-header-actions.png │ │ ├── thumb-pagination.png │ │ ├── thumb-pds-footer.png │ │ ├── thumb-pds-header.png │ │ ├── thumb-primary-navigation.png │ │ ├── thumb-progress-tracker.png │ │ ├── thumb-scrollable-pane.png │ │ ├── thumb-search.png │ │ ├── thumb-side-navigation.png │ │ ├── thumb-sortable-table.png │ │ ├── thumb-sub-navigation.png │ │ ├── thumb-ticket-panel.png │ │ ├── thumb-timeline.png │ │ └── thumb-timeout-warning.png │ │ └── upload-file-single.png ├── commnunity.md ├── components │ ├── add-another │ │ ├── add-another.11tydata.js │ │ ├── examples │ │ │ ├── default │ │ │ │ └── index.njk │ │ │ └── examples.11tydata.mjs │ │ └── index.md │ ├── alert │ │ ├── _arguments.md │ │ ├── _examples.md │ │ ├── _get-help-and-contribute.md │ │ ├── _how-to-use.md │ │ ├── _overview.md │ │ ├── alert.11tydata.js │ │ ├── examples │ │ │ ├── default │ │ │ │ └── index.njk │ │ │ ├── dismissible │ │ │ │ └── index.njk │ │ │ ├── error │ │ │ │ └── index.njk │ │ │ ├── examples.11tydata.js │ │ │ ├── information │ │ │ │ └── index.njk │ │ │ ├── success │ │ │ │ └── index.njk │ │ │ └── warning │ │ │ │ └── index.njk │ │ └── index.md │ ├── all.md │ ├── badge │ │ ├── _arguments.md │ │ ├── badge.11tydata.js │ │ ├── examples │ │ │ ├── complete │ │ │ │ └── index.njk │ │ │ ├── default │ │ │ │ └── index.njk │ │ │ ├── examples.11tydata.js │ │ │ └── urgent │ │ │ │ └── index.njk │ │ └── index.md │ ├── button-menu │ │ ├── _arguments.md │ │ ├── _examples.md │ │ ├── _get-help-and-contribute.md │ │ ├── _how-to-use.md │ │ ├── _overview.md │ │ ├── button-menu.11tydata.js │ │ ├── examples │ │ │ ├── default │ │ │ │ └── index.njk │ │ │ ├── examples.11tydata.js │ │ │ ├── grouped │ │ │ │ └── index.njk │ │ │ ├── left-aligned │ │ │ │ └── index.njk │ │ │ └── right-aligned │ │ │ │ ├── index.njk │ │ │ │ └── style.css │ │ └── index.md │ ├── calendar │ │ ├── _accessibility.md │ │ ├── _code.md │ │ ├── _designs.md │ │ ├── _overview.md │ │ ├── calendar.11tydata.js │ │ └── index.md │ ├── card │ │ ├── _accessibility.md │ │ ├── _code.md │ │ ├── _designs.md │ │ ├── _overview.md │ │ ├── card.11tydata.js │ │ └── index.md │ ├── components.11tydata.mjs │ ├── contextual-date │ │ ├── _accessibility.md │ │ ├── _code.md │ │ ├── _designs.md │ │ ├── _overview.md │ │ ├── contextual-date.11tydata.js │ │ └── index.md │ ├── date-picker │ │ ├── _arguments.md │ │ ├── _examples.md │ │ ├── _get-help-and-contribute.md │ │ ├── _how-to-use.md │ │ ├── _overview.md │ │ ├── date-picker.11tydata.js │ │ ├── examples │ │ │ ├── default │ │ │ │ └── index.njk │ │ │ ├── error │ │ │ │ └── index.njk │ │ │ ├── examples.11tydata.mjs │ │ │ ├── excluded-dates │ │ │ │ └── index.njk │ │ │ ├── excluded-days │ │ │ │ └── index.njk │ │ │ ├── horizontal-pair │ │ │ │ └── index.njk │ │ │ ├── leading-zeros │ │ │ │ └── index.njk │ │ │ ├── min-max │ │ │ │ └── index.njk │ │ │ └── vertical-pair │ │ │ │ └── index.njk │ │ └── index.md │ ├── feedback-banner │ │ ├── _accessibility.md │ │ ├── _code.md │ │ ├── _designs.md │ │ ├── _overview.md │ │ ├── feedback-banner.11tydata.js │ │ └── index.md │ ├── filter │ │ ├── examples │ │ │ ├── default │ │ │ │ └── index.njk │ │ │ └── examples.11tydata.js │ │ ├── filter.11tydata.js │ │ └── index.md │ ├── identity-bar │ │ ├── examples │ │ │ ├── default │ │ │ │ └── index.njk │ │ │ ├── examples.11tydata.js │ │ │ ├── menu-toggle │ │ │ │ └── index.njk │ │ │ ├── menu │ │ │ │ └── index.njk │ │ │ └── secondary-toggle │ │ │ │ └── index.njk │ │ ├── identity-bar.11tydata.js │ │ └── index.md │ ├── index.md │ ├── inset-text-highlighted │ │ ├── _accessibility.md │ │ ├── _code.md │ │ ├── _designs.md │ │ ├── _overview.md │ │ ├── index.md │ │ └── inset-text-highlighted.11tydata.js │ ├── interruption-card │ │ ├── _arguments.md │ │ ├── _get-help-and-contribute.md │ │ ├── _how-to-use.md │ │ ├── _overview.md │ │ ├── examples │ │ │ ├── default │ │ │ │ └── index.njk │ │ │ └── examples.11tydata.js │ │ ├── index.md │ │ └── interruption-card.11tydata.js │ ├── messages │ │ ├── _arguments.md │ │ ├── examples │ │ │ ├── default │ │ │ │ └── index.njk │ │ │ └── examples.11tydata.js │ │ ├── index.md │ │ └── messages.11tydata.js │ ├── modal-dialog │ │ ├── _accessibility.md │ │ ├── _code.md │ │ ├── _designs.md │ │ ├── _overview.md │ │ ├── index.md │ │ └── modal-dialog.11tydata.js │ ├── moj-header │ │ ├── _arguments.md │ │ ├── examples │ │ │ ├── default │ │ │ │ └── index.njk │ │ │ └── examples.11tydata.js │ │ ├── index.md │ │ └── moj-header.11tydata.js │ ├── multi-file-upload │ │ ├── examples │ │ │ ├── default │ │ │ │ ├── index.njk │ │ │ │ └── script.js │ │ │ ├── examples.11tydata.js │ │ │ ├── no-js-errors │ │ │ │ └── index.njk │ │ │ └── no-js │ │ │ │ └── index.njk │ │ ├── index.md │ │ └── multi-file-upload.11tydata.js │ ├── multi-select │ │ ├── examples │ │ │ ├── default │ │ │ │ └── index.njk │ │ │ └── examples.11tydata.js │ │ ├── index.md │ │ └── multi-select.11tydata.js │ ├── new-features-banner │ │ ├── _accessibility.md │ │ ├── _code.md │ │ ├── _designs.md │ │ ├── _overview.md │ │ ├── index.md │ │ └── new-features-banner.11tydata.js │ ├── notification-badge │ │ ├── _arguments.md │ │ ├── _examples.md │ │ ├── _get-help-and-contribute.md │ │ ├── _how-to-use.md │ │ ├── _overview.md │ │ ├── examples │ │ │ ├── default │ │ │ │ └── index.njk │ │ │ ├── examples.11tydata.js │ │ │ ├── header │ │ │ │ └── index.njk │ │ │ ├── link │ │ │ │ └── index.njk │ │ │ ├── no-items │ │ │ │ └── index.njk │ │ │ ├── primary-nav │ │ │ │ └── index.njk │ │ │ ├── service-nav │ │ │ │ └── index.njk │ │ │ ├── side-nav │ │ │ │ └── index.njk │ │ │ ├── sub-nav │ │ │ │ └── index.njk │ │ │ └── tabs │ │ │ │ └── index.njk │ │ ├── index.md │ │ └── notification-badge.11tydata.js │ ├── numeric-data │ │ ├── _accessibility.md │ │ ├── _code.md │ │ ├── _designs.md │ │ ├── _overview.md │ │ ├── index.md │ │ └── numeric-data.11tydata.js │ ├── organisation-switcher │ │ ├── examples │ │ │ ├── default │ │ │ │ └── index.njk │ │ │ └── examples.11tydata.js │ │ ├── index.md │ │ └── organisation-switcher.11tydata.js │ ├── page-header-actions │ │ ├── examples │ │ │ ├── default │ │ │ │ └── index.njk │ │ │ └── examples.11tydata.js │ │ ├── index.md │ │ └── page-header-actions.11tydata.js │ ├── pagination │ │ ├── _arguments.md │ │ ├── examples │ │ │ ├── default │ │ │ │ └── index.njk │ │ │ ├── examples.11tydata.js │ │ │ └── prev-next │ │ │ │ └── index.njk │ │ ├── index.md │ │ └── pagination.11tydata.js │ ├── primary-navigation │ │ ├── _arguments.md │ │ ├── examples │ │ │ ├── default │ │ │ │ └── index.njk │ │ │ ├── examples.11tydata.js │ │ │ ├── inline-search │ │ │ │ └── index.njk │ │ │ └── toggle-search │ │ │ │ └── index.njk │ │ ├── index.md │ │ └── primary-navigation.11tydata.js │ ├── progress-tracker │ │ ├── _accessibility.md │ │ ├── _code.md │ │ ├── _designs.md │ │ ├── _overview.md │ │ ├── index.md │ │ └── progress-tracker.11tydata.js │ ├── scrollable-pane │ │ ├── examples │ │ │ ├── default │ │ │ │ └── index.njk │ │ │ └── examples.11tydata.js │ │ ├── index.md │ │ └── scrollable-pane.11tydata.js │ ├── search │ │ ├── examples │ │ │ ├── default │ │ │ │ └── index.njk │ │ │ └── examples.11tydata.js │ │ ├── index.md │ │ └── search.11tydata.js │ ├── side-navigation │ │ ├── _arguments.md │ │ ├── examples │ │ │ ├── default │ │ │ │ └── index.njk │ │ │ ├── examples.11tydata.js │ │ │ └── sections │ │ │ │ └── index.njk │ │ ├── index.md │ │ └── side-navigation.11tydata.js │ ├── sortable-table │ │ ├── examples │ │ │ ├── default │ │ │ │ └── index.njk │ │ │ └── examples.11tydata.js │ │ ├── index.md │ │ └── sortable-table.11tydata.js │ ├── sub-navigation │ │ ├── _arguments.md │ │ ├── examples │ │ │ ├── default │ │ │ │ └── index.njk │ │ │ └── examples.11tydata.js │ │ ├── index.md │ │ └── sub-navigation.11tydata.js │ ├── ticket-panel │ │ ├── _arguments.md │ │ ├── examples │ │ │ ├── default │ │ │ │ └── index.njk │ │ │ └── examples.11tydata.js │ │ ├── index.md │ │ └── ticket-panel.11tydata.js │ ├── timeline │ │ ├── _arguments.md │ │ ├── examples │ │ │ ├── default │ │ │ │ └── index.njk │ │ │ └── examples.11tydata.js │ │ ├── index.md │ │ └── timeline.11tydata.js │ └── timeout-warning │ │ ├── _accessibility.md │ │ ├── _code.md │ │ ├── _designs.md │ │ ├── _overview.md │ │ ├── index.md │ │ └── timeout-warning.11tydata.js ├── contribute.md ├── contributing │ └── application-architecture.md ├── cookies.md ├── design-system-benefits.md ├── design-system-statuses.md ├── ethics │ ├── assessment.md │ ├── design-ethical-services.md │ ├── index.md │ ├── principles.md │ └── review.md ├── guidance.md ├── help.md ├── index.md ├── javascripts │ ├── accordions.mjs │ ├── application.mjs │ ├── collapsible-nav.mjs │ ├── cookies.mjs │ ├── copy.mjs │ ├── iframe-resizer.mjs │ ├── menu-toggle.mjs │ ├── scroll-container.mjs │ ├── tabs.mjs │ └── utils.mjs ├── moj-building-blocks.md ├── notification-badge-testing.md ├── pages │ ├── case-list │ │ ├── case-list.11tydata.js │ │ └── index.md │ ├── index.md │ └── pages.11tydata.mjs ├── patterns │ ├── add-to-a-list │ │ ├── add-to-a-list.11tydata.js │ │ └── index.md │ ├── filter-a-list │ │ ├── examples │ │ │ ├── default │ │ │ │ ├── index.njk │ │ │ │ └── script.js │ │ │ └── examples.11tydata.js │ │ ├── filter-a-list.11tydata.js │ │ └── index.md │ ├── get-help │ │ ├── examples │ │ │ ├── default │ │ │ │ └── index.njk │ │ │ └── examples.11tydata.js │ │ ├── get-help.11tydata.js │ │ └── index.md │ ├── index.md │ ├── patterns.11tydata.mjs │ └── upload-files │ │ ├── examples │ │ ├── another │ │ │ └── index.njk │ │ ├── check │ │ │ └── index.njk │ │ ├── default │ │ │ └── index.njk │ │ ├── delete-multiple │ │ │ └── index.njk │ │ ├── delete-one │ │ │ └── index.njk │ │ └── examples.11tydata.js │ │ ├── index.md │ │ └── upload-files.11tydata.js ├── privacy.md ├── probation-building-blocks.md ├── probation │ └── components │ │ ├── all.md │ │ ├── components.11tydata.mjs │ │ ├── index.md │ │ ├── pds-footer │ │ ├── _arguments.md │ │ ├── _examples.md │ │ ├── _get-help-and-contribute.md │ │ ├── _how-to-use.md │ │ ├── _overview.md │ │ ├── examples │ │ │ ├── default │ │ │ │ └── index.njk │ │ │ └── examples.11tydata.js │ │ ├── index.md │ │ └── pds-footer.11tydata.js │ │ └── pds-header │ │ ├── _arguments.md │ │ ├── _examples.md │ │ ├── _get-help-and-contribute.md │ │ ├── _how-to-use.md │ │ ├── _overview.md │ │ ├── examples │ │ ├── default │ │ │ └── index.njk │ │ └── examples.11tydata.js │ │ ├── index.md │ │ └── pds-header.11tydata.js ├── production │ ├── import-css.md │ ├── import-font-and-image-assets.md │ ├── import-javascript.md │ ├── index.md │ ├── install-using-precompiled-files.md │ ├── installing-with-npm.md │ ├── moj-frontend.md │ └── use-nunjucks.md ├── prototyping │ ├── deploying-coded-prototypes.md │ ├── index.md │ ├── prototyping-methods.md │ ├── setting-up-coded-prototypes.md │ └── setting-up-figma-prototypes.md ├── redirects.njk ├── service-patterns │ ├── apply.md │ ├── appointment.md │ └── index.md ├── style-guide-updates-old.md ├── style-guide-updates.md ├── style-guide-updates │ ├── 2025-01-09-pnc-number.md │ ├── 2025-01-09-prison-establishment.md │ ├── 2025-02-21-category-such-as-category-a-prison.md │ ├── 2025-02-28-identity-numbers-hmpps-only.md │ ├── 2025-03-26-probation-practitioner.md │ ├── 2025-04-01-pre-sentence-report-psr.md │ ├── 2025-04-01-sds40.md │ ├── 2025-05-21-oasys.md │ ├── 2025-06-09-post-sentence-supervision-pss.md │ ├── 2025-06-23-probation-delivery-unit-pdu.md │ ├── 2025-06-24-acronyms-and-initialisms.md │ ├── 2025-06-24-rosh-risk-of-serious-harm.md │ ├── 2025-07-08-taser-hmpps-only.md │ ├── 2025-08-06-ftr-48.md │ ├── 2025-08-06-unlock-list.md │ ├── 2025-08-06-unlock.md │ ├── 2025-08-11-local-admin-unit.md │ ├── 2025-08-12-domestic-abuse.md │ ├── 2025-08-12-victim-survivor-of-domestic-abuse.md │ ├── 2025-08-29-acronyms-and-initialisms.md │ ├── 2025-08-29-rosh-risk-of-serious-harm.md │ ├── 2025-08-29-rotl-release-on-temporary-license.md │ ├── 2025-10-16-pom.md │ ├── 2025-10-16-probation-practitioner.md │ ├── 2025-10-20-pip.md │ ├── 2025-10-20-pop.md │ ├── 2025-10-23-moj.md │ ├── 2025-12-03-dps-digital-prison-services.md │ ├── 2025-12-03-pds-probation-digital-services.md │ └── style-guide-updates.11tydata.json ├── style-guide.md ├── stylesheets │ ├── _moj-frontend.scss │ ├── application.scss │ ├── components │ │ ├── _accordions.scss │ │ ├── _app-article.scss │ │ ├── _app-buildingblock-card.scss │ │ ├── _app-card.scss │ │ ├── _app-grid.scss │ │ ├── _back-to-top.scss │ │ ├── _cookie-banner.scss │ │ ├── _copy-button.scss │ │ ├── _documentation-tabs.scss │ │ ├── _example.scss │ │ ├── _footer.scss │ │ ├── _header.scss │ │ ├── _inputs.scss │ │ ├── _layout.scss │ │ ├── _masthead.scss │ │ ├── _menu-toggle.scss │ │ ├── _page.scss │ │ ├── _panel.scss │ │ ├── _prose.scss │ │ ├── _status.scss │ │ ├── _summary-card.scss │ │ ├── _tabs.scss │ │ └── _vertical-nav.scss │ ├── example.scss │ ├── govuk-frontend.scss │ └── settings │ │ └── app.scss ├── submit-new-component.11tydata.mjs ├── submit-new-component.md ├── tsconfig.json └── updates │ ├── index.md │ ├── roadmap.md │ └── whats-new.md ├── gulp ├── build-clean.js ├── build-compress-images.js ├── build-copy.js ├── build-javascripts.js ├── build-stylesheets.js ├── dist.js ├── docs.js ├── tasks │ ├── scripts.js │ └── styles.js └── tsconfig.json ├── gulpfile.js ├── jest.config.js ├── jest.setup.js ├── kubernetes-deploy-preview.tpl ├── kubernetes-deploy-production.tpl ├── kubernetes-deploy-staging.tpl ├── nodemon.json ├── package.json ├── package ├── README.md ├── govuk-prototype-kit.config.json └── package.json ├── playwright.config.js ├── playwright ├── .gitkeep └── .state │ └── .gitkeep ├── postcss.config.mjs ├── renovate.json ├── restructure-component.sh ├── robots.txt ├── src ├── .eslintrc.js ├── moj │ ├── _base.scss │ ├── all.mjs │ ├── all.scss │ ├── all.spec.mjs │ ├── assets │ │ └── images │ │ │ ├── govuk-logotype-crown.png │ │ │ ├── icon-alert-information.svg │ │ │ ├── icon-alert-success.svg │ │ │ ├── icon-alert-warning.svg │ │ │ ├── icon-arrow-black-down.svg │ │ │ ├── icon-arrow-black-up.svg │ │ │ ├── icon-arrow-white-down.svg │ │ │ ├── icon-arrow-white-up.svg │ │ │ ├── icon-close-cross-black.svg │ │ │ ├── icon-document.png │ │ │ ├── icon-document.svg │ │ │ ├── icon-progress-tick.png │ │ │ ├── icon-progress-tick.svg │ │ │ ├── icon-search-black.svg │ │ │ ├── icon-search-blue.svg │ │ │ ├── icon-search-white.svg │ │ │ ├── icon-tag-remove-cross-white.svg │ │ │ ├── icon-tag-remove-cross.svg │ │ │ ├── icon-toggle-plus-minus.svg │ │ │ ├── icon-wysiwyg-bold.svg │ │ │ ├── icon-wysiwyg-italic.svg │ │ │ ├── icon-wysiwyg-ordered-list.svg │ │ │ ├── icon-wysiwyg-underline.svg │ │ │ ├── icon-wysiwyg-unordered-list.svg │ │ │ ├── moj-apple-touch-icon-152x152-2024.png │ │ │ ├── moj-apple-touch-icon-167x167-2024.png │ │ │ ├── moj-apple-touch-icon-180x180-2024.png │ │ │ ├── moj-apple-touch-icon-2024.png │ │ │ ├── moj-logotype-crest-2024.png │ │ │ ├── moj-logotype-crest-2024.svg │ │ │ └── moj-opengraph-image-2024.png │ ├── common │ │ ├── index.mjs │ │ └── moj-frontend-version.mjs │ ├── components │ │ ├── _all.scss │ │ ├── action-bar │ │ │ ├── README.md │ │ │ └── _action-bar.scss │ │ ├── add-another │ │ │ ├── README.md │ │ │ ├── _add-another.scss │ │ │ ├── add-another.mjs │ │ │ └── add-another.spec.mjs │ │ ├── alert │ │ │ ├── README.md │ │ │ ├── _alert.scss │ │ │ ├── alert.mjs │ │ │ ├── alert.spec.helper.mjs │ │ │ ├── alert.spec.mjs │ │ │ ├── macro.njk │ │ │ └── template.njk │ │ ├── badge │ │ │ ├── README.md │ │ │ ├── _badge.scss │ │ │ ├── macro.njk │ │ │ └── template.njk │ │ ├── banner │ │ │ ├── README.md │ │ │ ├── _banner.scss │ │ │ ├── macro.njk │ │ │ └── template.njk │ │ ├── button-menu │ │ │ ├── README.md │ │ │ ├── _button-menu.scss │ │ │ ├── button-menu.mjs │ │ │ ├── button-menu.spec.mjs │ │ │ ├── macro.njk │ │ │ └── template.njk │ │ ├── cookie-banner │ │ │ ├── README.md │ │ │ ├── _cookie-banner.scss │ │ │ ├── macro.njk │ │ │ └── template.njk │ │ ├── currency-input │ │ │ ├── README.md │ │ │ ├── _currency-input.scss │ │ │ ├── macro.njk │ │ │ └── template.njk │ │ ├── date-picker │ │ │ ├── README.md │ │ │ ├── _date-picker.scss │ │ │ ├── date-picker.mjs │ │ │ ├── date-picker.spec.mjs │ │ │ ├── macro.njk │ │ │ └── template.njk │ │ ├── domain-specific │ │ │ └── probation │ │ │ │ ├── _all.scss │ │ │ │ ├── footer │ │ │ │ ├── README.md │ │ │ │ ├── _footer.scss │ │ │ │ ├── macro.njk │ │ │ │ └── template.njk │ │ │ │ └── header │ │ │ │ ├── README.md │ │ │ │ ├── _header.scss │ │ │ │ ├── header.mjs │ │ │ │ ├── header.spec.mjs │ │ │ │ ├── macro.njk │ │ │ │ └── template.njk │ │ ├── filter-toggle-button │ │ │ ├── README.md │ │ │ ├── filter-toggle-button.mjs │ │ │ └── filter-toggle-button.spec.mjs │ │ ├── filter │ │ │ ├── README.md │ │ │ ├── _filter.scss │ │ │ ├── macro.njk │ │ │ └── template.njk │ │ ├── form-validator │ │ │ ├── README.md │ │ │ └── form-validator.mjs │ │ ├── header │ │ │ ├── README.md │ │ │ ├── _header.scss │ │ │ ├── macro.njk │ │ │ └── template.njk │ │ ├── identity-bar │ │ │ ├── README.md │ │ │ ├── _identity-bar.scss │ │ │ ├── macro.njk │ │ │ └── template.njk │ │ ├── interruption-card │ │ │ ├── _interruption-card.scss │ │ │ ├── macro.njk │ │ │ └── template.njk │ │ ├── messages │ │ │ ├── README.md │ │ │ ├── _messages.scss │ │ │ ├── macro.njk │ │ │ └── template.njk │ │ ├── multi-file-upload │ │ │ ├── README.md │ │ │ ├── _multi-file-upload.scss │ │ │ ├── macro.njk │ │ │ ├── multi-file-upload.mjs │ │ │ ├── multi-file-upload.spec.mjs │ │ │ └── template.njk │ │ ├── multi-select │ │ │ ├── README.md │ │ │ ├── _multi-select.scss │ │ │ ├── multi-select.mjs │ │ │ └── multi-select.spec.mjs │ │ ├── notification-badge │ │ │ ├── README.md │ │ │ ├── _notification-badge.scss │ │ │ ├── macro.njk │ │ │ └── template.njk │ │ ├── organisation-switcher │ │ │ ├── README.md │ │ │ ├── _organisation-switcher.scss │ │ │ ├── macro.njk │ │ │ └── template.njk │ │ ├── page-header-actions │ │ │ ├── README.md │ │ │ ├── _page-header-actions.scss │ │ │ ├── macro.njk │ │ │ └── template.njk │ │ ├── pagination │ │ │ ├── README.md │ │ │ ├── _pagination.scss │ │ │ ├── macro.njk │ │ │ └── template.njk │ │ ├── password-reveal │ │ │ ├── README.md │ │ │ ├── _password-reveal.scss │ │ │ ├── password-reveal.mjs │ │ │ └── password-reveal.spec.mjs │ │ ├── primary-navigation │ │ │ ├── README.md │ │ │ ├── _primary-navigation.scss │ │ │ ├── macro.njk │ │ │ └── template.njk │ │ ├── progress-bar │ │ │ ├── README.md │ │ │ ├── _progress-bar.scss │ │ │ ├── macro.njk │ │ │ └── template.njk │ │ ├── rich-text-editor │ │ │ ├── README.md │ │ │ ├── _rich-text-editor.scss │ │ │ └── rich-text-editor.mjs │ │ ├── search-toggle │ │ │ ├── README.md │ │ │ ├── _search-toggle.scss │ │ │ ├── search-toggle.mjs │ │ │ └── search-toggle.spec.mjs │ │ ├── search │ │ │ ├── README.md │ │ │ ├── _search.scss │ │ │ ├── macro.njk │ │ │ └── template.njk │ │ ├── side-navigation │ │ │ ├── README.md │ │ │ ├── _side-navigation.scss │ │ │ ├── macro.njk │ │ │ └── template.njk │ │ ├── sortable-table │ │ │ ├── README.md │ │ │ ├── _sortable-table.scss │ │ │ ├── sortable-table.mjs │ │ │ └── sortable-table.spec.mjs │ │ ├── sub-navigation │ │ │ ├── README.md │ │ │ ├── _sub-navigation.scss │ │ │ ├── macro.njk │ │ │ └── template.njk │ │ ├── tag │ │ │ ├── README.md │ │ │ └── _tag.scss │ │ ├── task-list │ │ │ ├── README.md │ │ │ ├── _task-list.scss │ │ │ ├── macro.njk │ │ │ └── template.njk │ │ ├── ticket-panel │ │ │ ├── README.md │ │ │ ├── _ticket-panel.scss │ │ │ ├── macro.njk │ │ │ └── template.njk │ │ └── timeline │ │ │ ├── README.md │ │ │ ├── _timeline.scss │ │ │ ├── macro.njk │ │ │ └── template.njk │ ├── core │ │ ├── _all.scss │ │ └── _moj-frontend-properties.scss │ ├── filters │ │ ├── all.js │ │ └── prototype-kit-13-filters.js │ ├── helpers.mjs │ ├── helpers.spec.mjs │ ├── helpers │ │ ├── _all.scss │ │ ├── _hidden.scss │ │ └── _links.scss │ ├── init.js │ ├── objects │ │ ├── _all.scss │ │ ├── _button-group.scss │ │ ├── _filter-layout.scss │ │ ├── _scrollable-pane.scss │ │ └── _width-container.scss │ ├── settings │ │ ├── _all.scss │ │ ├── _assets.scss │ │ ├── _colours.scss │ │ ├── _measurements.scss │ │ └── _typography.scss │ ├── template.njk │ ├── utilities │ │ ├── _all.scss │ │ ├── _hidden.scss │ │ └── _width-container.scss │ └── vendor │ │ └── govuk-frontend │ │ ├── _base.scss │ │ └── _index.scss ├── tsconfig.build.json ├── tsconfig.dev.json └── tsconfig.json ├── stylelint.config.js ├── submissions ├── submission-1756893312117 │ ├── accessibility-findings.txt │ ├── add-external-audit.txt │ ├── add-internal-audit.txt │ ├── checkYourAnswers.txt │ ├── code │ │ ├── example-1.css │ │ └── example.html │ ├── component-code-details-1.txt │ ├── component-code-details-2.txt │ ├── component-code-details.txt │ ├── component-code.txt │ ├── component-details.txt │ ├── figma-link.txt │ ├── figma.txt │ └── your-details.txt ├── submission-1756982092471 │ ├── accessibility-findings.txt │ ├── add-assistive-tech.txt │ ├── add-external-audit.txt │ ├── checkYourAnswers.txt │ ├── code │ │ ├── example-1.css │ │ └── example.njk │ ├── component-code-details-1.txt │ ├── component-code-details.txt │ ├── component-code.txt │ ├── component-details.txt │ ├── figma.txt │ └── your-details.txt ├── submission-1756990792746 │ ├── accessibility-findings.txt │ ├── add-assistive-tech.txt │ ├── add-external-audit.txt │ ├── add-internal-audit.txt │ ├── checkYourAnswers.txt │ ├── component-code.txt │ ├── component-details.txt │ ├── figma-link.txt │ ├── figma.txt │ └── your-details.txt ├── submission-1759330464350 │ ├── accessibility-findings.txt │ ├── add-internal-audit.txt │ ├── checkYourAnswers.txt │ ├── code │ │ └── example.html │ ├── component-code-details.txt │ ├── component-code.txt │ ├── component-details.txt │ ├── figma-link.txt │ ├── figma.txt │ └── your-details.txt ├── submission-1762945944100 │ ├── accessibility-findings.txt │ ├── checkYourAnswers.txt │ ├── component-code.txt │ ├── component-details.txt │ ├── figma.txt │ └── your-details.txt ├── submission-1762946436168 │ ├── accessibility-findings.txt │ ├── checkYourAnswers.txt │ ├── component-code.txt │ ├── component-details.txt │ ├── figma.txt │ └── your-details.txt ├── submission-1762946660930 │ ├── accessibility-findings.txt │ ├── checkYourAnswers.txt │ ├── component-code.txt │ ├── component-details.txt │ ├── figma.txt │ └── your-details.txt ├── submission-1762947876654 │ ├── accessibility-findings.txt │ ├── checkYourAnswers.txt │ ├── code │ │ ├── example-1.css │ │ └── example.html │ ├── component-code-details-1.txt │ ├── component-code-details.txt │ ├── component-code.txt │ ├── component-details.txt │ ├── figma.txt │ └── your-details.txt ├── submission-1763677200863 │ ├── accessibility-findings.txt │ ├── add-assistive-tech.txt │ ├── add-external-audit.txt │ ├── checkYourAnswers.txt │ ├── code │ │ ├── example-1.js │ │ ├── example-2.css │ │ └── example.html │ ├── component-code-details-1.txt │ ├── component-code-details-2.txt │ ├── component-code-details.txt │ ├── component-code.txt │ ├── component-details.txt │ ├── figma.txt │ └── your-details.txt ├── submission-1763680654726 │ ├── accessibility-findings.txt │ ├── add-assistive-tech.txt │ ├── add-external-audit.txt │ ├── checkYourAnswers.txt │ ├── code │ │ ├── example-1.js │ │ ├── example-2.css │ │ └── example.html │ ├── component-code-details-1.txt │ ├── component-code-details-2.txt │ ├── component-code-details.txt │ ├── component-code.txt │ ├── component-details.txt │ ├── figma.txt │ └── your-details.txt └── tsconfig.json ├── tests ├── e2e │ ├── component-page.spec.js │ ├── components.spec.js │ └── homepage.spec.js └── tsconfig.json ├── tsconfig.base.json ├── tsconfig.dev.json ├── tsconfig.json └── views └── common └── partials └── side-navigation.njk /.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/.browserslistrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eleventy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/.eleventy.js -------------------------------------------------------------------------------- /.eleventyignore: -------------------------------------------------------------------------------- 1 | docs/community/pages/* -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BUG_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/.github/ISSUE_TEMPLATE/BUG_REPORT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/EXPERIMENTAL_BUILDING_BLOCK.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/.github/ISSUE_TEMPLATE/EXPERIMENTAL_BUILDING_BLOCK.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/TASK.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/.github/ISSUE_TEMPLATE/TASK.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/BUG_FIX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/.github/PULL_REQUEST_TEMPLATE/BUG_FIX.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/DOCUMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/.github/PULL_REQUEST_TEMPLATE/DOCUMENTATION.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/FEATURE_CHANGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/.github/PULL_REQUEST_TEMPLATE/FEATURE_CHANGE.md -------------------------------------------------------------------------------- /.github/workflows/branch-preview-cleanup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/.github/workflows/branch-preview-cleanup.yml -------------------------------------------------------------------------------- /.github/workflows/branch-preview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/.github/workflows/branch-preview.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-production.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/.github/workflows/deploy-production.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/playwright.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/.github/workflows/playwright.yml -------------------------------------------------------------------------------- /.github/workflows/publish-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/.github/workflows/publish-package.yml -------------------------------------------------------------------------------- /.github/workflows/renovate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/.github/workflows/renovate.yml -------------------------------------------------------------------------------- /.github/workflows/sass.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/.github/workflows/sass.yml -------------------------------------------------------------------------------- /.github/workflows/tag-staging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/.github/workflows/tag-staging.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | lts/jod 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.releaserc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/.releaserc.json -------------------------------------------------------------------------------- /11ty/config/experimental-components/template-copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/11ty/config/experimental-components/template-copy.js -------------------------------------------------------------------------------- /11ty/config/experimental-components/url-transform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/11ty/config/experimental-components/url-transform.js -------------------------------------------------------------------------------- /11ty/config/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/11ty/config/highlight.js -------------------------------------------------------------------------------- /11ty/config/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/11ty/config/markdown.js -------------------------------------------------------------------------------- /11ty/config/nunjucks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/11ty/config/nunjucks.js -------------------------------------------------------------------------------- /11ty/filters/capitalise-acronyms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/11ty/filters/capitalise-acronyms.js -------------------------------------------------------------------------------- /11ty/filters/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/11ty/filters/index.js -------------------------------------------------------------------------------- /11ty/filters/inspect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/11ty/filters/inspect.js -------------------------------------------------------------------------------- /11ty/filters/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/11ty/filters/paths.js -------------------------------------------------------------------------------- /11ty/filters/render-markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/11ty/filters/render-markdown.js -------------------------------------------------------------------------------- /11ty/filters/render-nunjucks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/11ty/filters/render-nunjucks.js -------------------------------------------------------------------------------- /11ty/filters/rev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/11ty/filters/rev.js -------------------------------------------------------------------------------- /11ty/filters/timestamp.js: -------------------------------------------------------------------------------- 1 | module.exports = function (date) { 2 | return date.getTime() 3 | } 4 | -------------------------------------------------------------------------------- /11ty/filters/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/11ty/filters/tsconfig.json -------------------------------------------------------------------------------- /11ty/paired-shortcodes/accordion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/11ty/paired-shortcodes/accordion.js -------------------------------------------------------------------------------- /11ty/paired-shortcodes/banner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/11ty/paired-shortcodes/banner.js -------------------------------------------------------------------------------- /11ty/paired-shortcodes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/11ty/paired-shortcodes/index.js -------------------------------------------------------------------------------- /11ty/paired-shortcodes/tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/11ty/paired-shortcodes/tabs.js -------------------------------------------------------------------------------- /11ty/shortcodes/date-in-current-month.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/11ty/shortcodes/date-in-current-month.js -------------------------------------------------------------------------------- /11ty/shortcodes/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/11ty/shortcodes/example.js -------------------------------------------------------------------------------- /11ty/shortcodes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/11ty/shortcodes/index.js -------------------------------------------------------------------------------- /11ty/shortcodes/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/11ty/shortcodes/tsconfig.json -------------------------------------------------------------------------------- /11ty/shortcodes/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/11ty/shortcodes/version.js -------------------------------------------------------------------------------- /11ty/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/11ty/tsconfig.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/LICENSE -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/README.md -------------------------------------------------------------------------------- /VERSION.md: -------------------------------------------------------------------------------- 1 | 0.0.19-alpha 2 | -------------------------------------------------------------------------------- /app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/app.js -------------------------------------------------------------------------------- /app/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/config.js -------------------------------------------------------------------------------- /app/helpers/application-error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/helpers/application-error.js -------------------------------------------------------------------------------- /app/helpers/check-your-answers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/helpers/check-your-answers.js -------------------------------------------------------------------------------- /app/helpers/check-your-answers.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/helpers/check-your-answers.spec.js -------------------------------------------------------------------------------- /app/helpers/date-fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/helpers/date-fields.js -------------------------------------------------------------------------------- /app/helpers/extract-body.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/helpers/extract-body.js -------------------------------------------------------------------------------- /app/helpers/extract-body.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/helpers/extract-body.spec.js -------------------------------------------------------------------------------- /app/helpers/file-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/helpers/file-helper.js -------------------------------------------------------------------------------- /app/helpers/file-helper.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/helpers/file-helper.spec.js -------------------------------------------------------------------------------- /app/helpers/form-pages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/helpers/form-pages.js -------------------------------------------------------------------------------- /app/helpers/form-pages.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/helpers/form-pages.spec.js -------------------------------------------------------------------------------- /app/helpers/get-pr-title-and-description.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/helpers/get-pr-title-and-description.js -------------------------------------------------------------------------------- /app/helpers/get-pr-title-and-description.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/helpers/get-pr-title-and-description.spec.js -------------------------------------------------------------------------------- /app/helpers/max-words.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/helpers/max-words.js -------------------------------------------------------------------------------- /app/helpers/max-words.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/helpers/max-words.spec.js -------------------------------------------------------------------------------- /app/helpers/mockSessionData/sessionData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/helpers/mockSessionData/sessionData.js -------------------------------------------------------------------------------- /app/helpers/next-page.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/helpers/next-page.spec.js -------------------------------------------------------------------------------- /app/helpers/page-navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/helpers/page-navigation.js -------------------------------------------------------------------------------- /app/helpers/previous-page.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/helpers/previous-page.spec.js -------------------------------------------------------------------------------- /app/helpers/redis-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/helpers/redis-helper.js -------------------------------------------------------------------------------- /app/helpers/redis-helper.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/helpers/redis-helper.spec.js -------------------------------------------------------------------------------- /app/helpers/text-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/helpers/text-helper.js -------------------------------------------------------------------------------- /app/helpers/text-helper.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/helpers/text-helper.spec.js -------------------------------------------------------------------------------- /app/helpers/url-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/helpers/url-helper.js -------------------------------------------------------------------------------- /app/middleware/component-session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/middleware/component-session.js -------------------------------------------------------------------------------- /app/middleware/component-session.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/middleware/component-session.spec.js -------------------------------------------------------------------------------- /app/middleware/generate-documentation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/middleware/generate-documentation.js -------------------------------------------------------------------------------- /app/middleware/generate-documentation.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/middleware/generate-documentation.spec.js -------------------------------------------------------------------------------- /app/middleware/github-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/middleware/github-api.js -------------------------------------------------------------------------------- /app/middleware/github-api.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/middleware/github-api.spec.js -------------------------------------------------------------------------------- /app/middleware/notify-email.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/middleware/notify-email.js -------------------------------------------------------------------------------- /app/middleware/notify-email.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/middleware/notify-email.spec.js -------------------------------------------------------------------------------- /app/middleware/process-submission-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/middleware/process-submission-data.js -------------------------------------------------------------------------------- /app/middleware/process-submission-data.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/middleware/process-submission-data.spec.js -------------------------------------------------------------------------------- /app/middleware/validate-session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/middleware/validate-session.js -------------------------------------------------------------------------------- /app/middleware/verify-csrf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/middleware/verify-csrf.js -------------------------------------------------------------------------------- /app/redis-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/redis-client.js -------------------------------------------------------------------------------- /app/routes/add-component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/routes/add-component.js -------------------------------------------------------------------------------- /app/schema/accessibility-findings-more.schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/schema/accessibility-findings-more.schema.js -------------------------------------------------------------------------------- /app/schema/accessibility-findings.schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/schema/accessibility-findings.schema.js -------------------------------------------------------------------------------- /app/schema/add-another.schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/schema/add-another.schema.js -------------------------------------------------------------------------------- /app/schema/add-assistive-tech.schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/schema/add-assistive-tech.schema.js -------------------------------------------------------------------------------- /app/schema/add-external-audit.schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/schema/add-external-audit.schema.js -------------------------------------------------------------------------------- /app/schema/add-internal-audit.schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/schema/add-internal-audit.schema.js -------------------------------------------------------------------------------- /app/schema/component-code-details.schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/schema/component-code-details.schema.js -------------------------------------------------------------------------------- /app/schema/component-code.schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/schema/component-code.schema.js -------------------------------------------------------------------------------- /app/schema/component-details.schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/schema/component-details.schema.js -------------------------------------------------------------------------------- /app/schema/component-image.schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/schema/component-image.schema.js -------------------------------------------------------------------------------- /app/schema/email.schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/schema/email.schema.js -------------------------------------------------------------------------------- /app/schema/figma-link.schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/schema/figma-link.schema.js -------------------------------------------------------------------------------- /app/schema/figma.schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/schema/figma.schema.js -------------------------------------------------------------------------------- /app/schema/prototype-url.schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/schema/prototype-url.schema.js -------------------------------------------------------------------------------- /app/schema/prototype.schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/schema/prototype.schema.js -------------------------------------------------------------------------------- /app/schema/schemas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/schema/schemas.js -------------------------------------------------------------------------------- /app/schema/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/schema/tsconfig.json -------------------------------------------------------------------------------- /app/schema/your-details.schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/schema/your-details.schema.js -------------------------------------------------------------------------------- /app/tests/e2e/01.start.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/tests/e2e/01.start.spec.js -------------------------------------------------------------------------------- /app/tests/e2e/01a.email.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/tests/e2e/01a.email.spec.js -------------------------------------------------------------------------------- /app/tests/e2e/01b.email-verification.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/tests/e2e/01b.email-verification.spec.js -------------------------------------------------------------------------------- /app/tests/e2e/02.component-details.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/tests/e2e/02.component-details.spec.js -------------------------------------------------------------------------------- /app/tests/e2e/03.component-image.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/tests/e2e/03.component-image.spec.js -------------------------------------------------------------------------------- /app/tests/e2e/04.accessibility-findings.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/tests/e2e/04.accessibility-findings.spec.js -------------------------------------------------------------------------------- /app/tests/e2e/05.external-audit.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/tests/e2e/05.external-audit.spec.js -------------------------------------------------------------------------------- /app/tests/e2e/06.internal-review.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/tests/e2e/06.internal-review.spec.js -------------------------------------------------------------------------------- /app/tests/e2e/07.assistive-tech.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/tests/e2e/07.assistive-tech.spec.js -------------------------------------------------------------------------------- /app/tests/e2e/08.component-code.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/tests/e2e/08.component-code.spec.js -------------------------------------------------------------------------------- /app/tests/e2e/09.component-code-details.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/tests/e2e/09.component-code-details.spec.js -------------------------------------------------------------------------------- /app/tests/e2e/10.figma.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/tests/e2e/10.figma.spec.js -------------------------------------------------------------------------------- /app/tests/e2e/11.figma-link.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/tests/e2e/11.figma-link.spec.js -------------------------------------------------------------------------------- /app/tests/e2e/12.your-details.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/tests/e2e/12.your-details.spec.js -------------------------------------------------------------------------------- /app/tests/e2e/no-session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/tests/e2e/no-session.js -------------------------------------------------------------------------------- /app/tests/e2e/pages/accessibility-findings-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/tests/e2e/pages/accessibility-findings-page.js -------------------------------------------------------------------------------- /app/tests/e2e/pages/assistive-tech-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/tests/e2e/pages/assistive-tech-page.js -------------------------------------------------------------------------------- /app/tests/e2e/pages/check-your-answers-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/tests/e2e/pages/check-your-answers-page.js -------------------------------------------------------------------------------- /app/tests/e2e/pages/component-code-details-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/tests/e2e/pages/component-code-details-page.js -------------------------------------------------------------------------------- /app/tests/e2e/pages/component-code-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/tests/e2e/pages/component-code-page.js -------------------------------------------------------------------------------- /app/tests/e2e/pages/component-details-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/tests/e2e/pages/component-details-page.js -------------------------------------------------------------------------------- /app/tests/e2e/pages/component-image-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/tests/e2e/pages/component-image-page.js -------------------------------------------------------------------------------- /app/tests/e2e/pages/contributions-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/tests/e2e/pages/contributions-page.js -------------------------------------------------------------------------------- /app/tests/e2e/pages/external-audit-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/tests/e2e/pages/external-audit-page.js -------------------------------------------------------------------------------- /app/tests/e2e/pages/figma-link-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/tests/e2e/pages/figma-link-page.js -------------------------------------------------------------------------------- /app/tests/e2e/pages/figma-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/tests/e2e/pages/figma-page.js -------------------------------------------------------------------------------- /app/tests/e2e/pages/internal-review-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/tests/e2e/pages/internal-review-page.js -------------------------------------------------------------------------------- /app/tests/e2e/pages/your-details-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/tests/e2e/pages/your-details-page.js -------------------------------------------------------------------------------- /app/tests/e2e/session.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/tests/e2e/session.setup.js -------------------------------------------------------------------------------- /app/tests/e2e/test-files/test-image-too-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/tests/e2e/test-files/test-image-too-large.png -------------------------------------------------------------------------------- /app/tests/e2e/test-files/test-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/tests/e2e/test-files/test-image.png -------------------------------------------------------------------------------- /app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/tsconfig.json -------------------------------------------------------------------------------- /app/views/common/404.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/views/common/404.njk -------------------------------------------------------------------------------- /app/views/common/500.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/views/common/500.njk -------------------------------------------------------------------------------- /app/views/common/base.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/views/common/base.njk -------------------------------------------------------------------------------- /app/views/common/contributions.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/views/common/contributions.njk -------------------------------------------------------------------------------- /app/views/common/macros/form.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/views/common/macros/form.njk -------------------------------------------------------------------------------- /app/views/common/macros/page-heading.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/views/common/macros/page-heading.njk -------------------------------------------------------------------------------- /app/views/common/macros/summary-card.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/views/common/macros/summary-card.njk -------------------------------------------------------------------------------- /app/views/common/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/views/common/partials/footer.njk -------------------------------------------------------------------------------- /app/views/common/partials/header-no-nav.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/views/common/partials/header-no-nav.njk -------------------------------------------------------------------------------- /app/views/common/partials/header.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/views/common/partials/header.njk -------------------------------------------------------------------------------- /app/views/common/partials/side-navigation.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/views/common/partials/side-navigation.njk -------------------------------------------------------------------------------- /app/views/community/pages/accessibility-findings.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/views/community/pages/accessibility-findings.njk -------------------------------------------------------------------------------- /app/views/community/pages/add-assistive-tech.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/views/community/pages/add-assistive-tech.njk -------------------------------------------------------------------------------- /app/views/community/pages/add-external-audit.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/views/community/pages/add-external-audit.njk -------------------------------------------------------------------------------- /app/views/community/pages/add-internal-audit.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/views/community/pages/add-internal-audit.njk -------------------------------------------------------------------------------- /app/views/community/pages/check-your-answers.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/views/community/pages/check-your-answers.njk -------------------------------------------------------------------------------- /app/views/community/pages/component-code-details.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/views/community/pages/component-code-details.njk -------------------------------------------------------------------------------- /app/views/community/pages/component-code.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/views/community/pages/component-code.njk -------------------------------------------------------------------------------- /app/views/community/pages/component-details.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/views/community/pages/component-details.njk -------------------------------------------------------------------------------- /app/views/community/pages/component-image.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/views/community/pages/component-image.njk -------------------------------------------------------------------------------- /app/views/community/pages/confirmation.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/views/community/pages/confirmation.njk -------------------------------------------------------------------------------- /app/views/community/pages/email-check.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/views/community/pages/email-check.njk -------------------------------------------------------------------------------- /app/views/community/pages/email-invalid-token.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/views/community/pages/email-invalid-token.njk -------------------------------------------------------------------------------- /app/views/community/pages/email-not-allowed.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/views/community/pages/email-not-allowed.njk -------------------------------------------------------------------------------- /app/views/community/pages/email-resend.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/views/community/pages/email-resend.njk -------------------------------------------------------------------------------- /app/views/community/pages/email-session-expired.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/views/community/pages/email-session-expired.njk -------------------------------------------------------------------------------- /app/views/community/pages/email.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/views/community/pages/email.njk -------------------------------------------------------------------------------- /app/views/community/pages/figma-link.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/views/community/pages/figma-link.njk -------------------------------------------------------------------------------- /app/views/community/pages/figma.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/views/community/pages/figma.njk -------------------------------------------------------------------------------- /app/views/community/pages/remove.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/views/community/pages/remove.njk -------------------------------------------------------------------------------- /app/views/community/pages/start.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/views/community/pages/start.njk -------------------------------------------------------------------------------- /app/views/community/pages/your-details.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/app/views/community/pages/your-details.njk -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/babel.config.js -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { extends: ['@commitlint/config-conventional'] } 2 | -------------------------------------------------------------------------------- /docker-compose.e2e-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docker-compose.e2e-tests.yml -------------------------------------------------------------------------------- /docker-compose.preview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docker-compose.preview.yml -------------------------------------------------------------------------------- /docker/htpasswd: -------------------------------------------------------------------------------- 1 | staging:$apr1$aOnwYL2z$pC8FxfkQ8MQbYJ0ScqJv10 2 | -------------------------------------------------------------------------------- /docker/htpasswd-preview: -------------------------------------------------------------------------------- 1 | design-system:$2y$10$R205gw44SnghqTFrfmXHROt.0heYvA397qBtklk/cSGZAudocY0e. 2 | -------------------------------------------------------------------------------- /docker/nginx-local.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docker/nginx-local.conf -------------------------------------------------------------------------------- /docker/nginx-preview.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docker/nginx-preview.conf -------------------------------------------------------------------------------- /docker/nginx-production.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docker/nginx-production.conf -------------------------------------------------------------------------------- /docker/nginx-staging.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docker/nginx-staging.conf -------------------------------------------------------------------------------- /docs/404.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/404.md -------------------------------------------------------------------------------- /docs/500.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/500.md -------------------------------------------------------------------------------- /docs/_data/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/_data/env.js -------------------------------------------------------------------------------- /docs/_data/statusInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/_data/statusInfo.json -------------------------------------------------------------------------------- /docs/_includes/example.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/_includes/example.njk -------------------------------------------------------------------------------- /docs/_includes/layouts/404.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/_includes/layouts/404.njk -------------------------------------------------------------------------------- /docs/_includes/layouts/500.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/_includes/layouts/500.njk -------------------------------------------------------------------------------- /docs/_includes/layouts/base.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/_includes/layouts/base.njk -------------------------------------------------------------------------------- /docs/_includes/layouts/content.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/_includes/layouts/content.njk -------------------------------------------------------------------------------- /docs/_includes/layouts/example.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/_includes/layouts/example.njk -------------------------------------------------------------------------------- /docs/_includes/layouts/home.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/_includes/layouts/home.njk -------------------------------------------------------------------------------- /docs/_includes/layouts/index.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/_includes/layouts/index.njk -------------------------------------------------------------------------------- /docs/_includes/layouts/nav-only.njk: -------------------------------------------------------------------------------- 1 | 2 | {% include "./partials/side-navigation.njk" %} 3 | 4 | -------------------------------------------------------------------------------- /docs/_includes/layouts/partials/back-to-top.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/_includes/layouts/partials/back-to-top.njk -------------------------------------------------------------------------------- /docs/_includes/layouts/partials/content-tabs.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/_includes/layouts/partials/content-tabs.njk -------------------------------------------------------------------------------- /docs/_includes/layouts/partials/feedback-banner.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/_includes/layouts/partials/feedback-banner.njk -------------------------------------------------------------------------------- /docs/_includes/layouts/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/_includes/layouts/partials/footer.njk -------------------------------------------------------------------------------- /docs/_includes/layouts/partials/get-help.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/_includes/layouts/partials/get-help.njk -------------------------------------------------------------------------------- /docs/_includes/layouts/partials/header-no-nav.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/_includes/layouts/partials/header-no-nav.njk -------------------------------------------------------------------------------- /docs/_includes/layouts/partials/header.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/_includes/layouts/partials/header.njk -------------------------------------------------------------------------------- /docs/_includes/layouts/partials/navigation.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/_includes/layouts/partials/navigation.njk -------------------------------------------------------------------------------- /docs/_includes/layouts/partials/page-header.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/_includes/layouts/partials/page-header.njk -------------------------------------------------------------------------------- /docs/_includes/layouts/partials/side-navigation.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/_includes/layouts/partials/side-navigation.njk -------------------------------------------------------------------------------- /docs/_includes/layouts/style-guide-updates.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/_includes/layouts/style-guide-updates.njk -------------------------------------------------------------------------------- /docs/_includes/layouts/thumbnail-grid.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/_includes/layouts/thumbnail-grid.njk -------------------------------------------------------------------------------- /docs/_includes/macros/card/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/_includes/macros/card/macro.njk -------------------------------------------------------------------------------- /docs/_includes/macros/card/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/_includes/macros/card/template.njk -------------------------------------------------------------------------------- /docs/_includes/macros/heading/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/_includes/macros/heading/macro.njk -------------------------------------------------------------------------------- /docs/_includes/macros/heading/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/_includes/macros/heading/template.njk -------------------------------------------------------------------------------- /docs/_includes/macros/nav-list-item/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/_includes/macros/nav-list-item/macro.njk -------------------------------------------------------------------------------- /docs/_includes/macros/nav-list-item/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/_includes/macros/nav-list-item/template.njk -------------------------------------------------------------------------------- /docs/_includes/macros/status-label/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/_includes/macros/status-label/macro.njk -------------------------------------------------------------------------------- /docs/_includes/macros/status-label/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/_includes/macros/status-label/template.njk -------------------------------------------------------------------------------- /docs/_includes/macros/status-tag/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/_includes/macros/status-tag/macro.njk -------------------------------------------------------------------------------- /docs/_includes/macros/status-tag/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/_includes/macros/status-tag/template.njk -------------------------------------------------------------------------------- /docs/_includes/partials/forms/button-href.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/_includes/partials/forms/button-href.njk -------------------------------------------------------------------------------- /docs/about-the-design-system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/about-the-design-system.md -------------------------------------------------------------------------------- /docs/accessibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/accessibility.md -------------------------------------------------------------------------------- /docs/archive/archive.11tydata.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/archive/archive.11tydata.mjs -------------------------------------------------------------------------------- /docs/archive/banner/banner.11tydata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/archive/banner/banner.11tydata.js -------------------------------------------------------------------------------- /docs/archive/banner/examples/default/index.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/archive/banner/examples/default/index.njk -------------------------------------------------------------------------------- /docs/archive/banner/examples/examples.11tydata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/archive/banner/examples/examples.11tydata.js -------------------------------------------------------------------------------- /docs/archive/banner/examples/information/index.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/archive/banner/examples/information/index.njk -------------------------------------------------------------------------------- /docs/archive/banner/examples/success/index.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/archive/banner/examples/success/index.njk -------------------------------------------------------------------------------- /docs/archive/banner/examples/warning/index.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/archive/banner/examples/warning/index.njk -------------------------------------------------------------------------------- /docs/archive/banner/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/archive/banner/index.md -------------------------------------------------------------------------------- /docs/archive/currency-input/_arguments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/archive/currency-input/_arguments.md -------------------------------------------------------------------------------- /docs/archive/currency-input/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/archive/currency-input/index.md -------------------------------------------------------------------------------- /docs/archive/form-validator/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/archive/form-validator/index.md -------------------------------------------------------------------------------- /docs/archive/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/archive/index.md -------------------------------------------------------------------------------- /docs/archive/password-reveal/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/archive/password-reveal/index.md -------------------------------------------------------------------------------- /docs/archive/question-pages/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/archive/question-pages/index.md -------------------------------------------------------------------------------- /docs/archive/rich-text-editor/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/archive/rich-text-editor/index.md -------------------------------------------------------------------------------- /docs/archive/tag/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/archive/tag/index.md -------------------------------------------------------------------------------- /docs/archive/task-list/_arguments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/archive/task-list/_arguments.md -------------------------------------------------------------------------------- /docs/archive/task-list/examples/default/index.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/archive/task-list/examples/default/index.njk -------------------------------------------------------------------------------- /docs/archive/task-list/examples/examples.11tydata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/archive/task-list/examples/examples.11tydata.js -------------------------------------------------------------------------------- /docs/archive/task-list/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/archive/task-list/index.md -------------------------------------------------------------------------------- /docs/assets/images/accessibility-statements-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/accessibility-statements-page.png -------------------------------------------------------------------------------- /docs/assets/images/add-to-a-list-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/add-to-a-list-01.png -------------------------------------------------------------------------------- /docs/assets/images/add-to-a-list-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/add-to-a-list-02.png -------------------------------------------------------------------------------- /docs/assets/images/add-to-a-list-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/add-to-a-list-03.png -------------------------------------------------------------------------------- /docs/assets/images/add-to-a-list-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/add-to-a-list-04.png -------------------------------------------------------------------------------- /docs/assets/images/add-to-a-list-05-2024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/add-to-a-list-05-2024.png -------------------------------------------------------------------------------- /docs/assets/images/alert-example-case-management.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/alert-example-case-management.png -------------------------------------------------------------------------------- /docs/assets/images/alert-example-contextual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/alert-example-contextual.png -------------------------------------------------------------------------------- /docs/assets/images/case-list-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/case-list-01.png -------------------------------------------------------------------------------- /docs/assets/images/case-list-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/case-list-02.png -------------------------------------------------------------------------------- /docs/assets/images/case-list-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/case-list-03.png -------------------------------------------------------------------------------- /docs/assets/images/case-list-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/case-list-04.png -------------------------------------------------------------------------------- /docs/assets/images/cookies-policy-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/cookies-policy-page.png -------------------------------------------------------------------------------- /docs/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/favicon.ico -------------------------------------------------------------------------------- /docs/assets/images/figma-guidance-assets-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/figma-guidance-assets-menu.png -------------------------------------------------------------------------------- /docs/assets/images/figma-guidance-download-kit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/figma-guidance-download-kit.png -------------------------------------------------------------------------------- /docs/assets/images/figma-guidance-update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/figma-guidance-update.png -------------------------------------------------------------------------------- /docs/assets/images/filters-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/filters-01.png -------------------------------------------------------------------------------- /docs/assets/images/filters-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/filters-02.png -------------------------------------------------------------------------------- /docs/assets/images/filters-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/filters-03.png -------------------------------------------------------------------------------- /docs/assets/images/filters-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/filters-04.png -------------------------------------------------------------------------------- /docs/assets/images/filters-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/filters-05.png -------------------------------------------------------------------------------- /docs/assets/images/home-img/contribute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/home-img/contribute.png -------------------------------------------------------------------------------- /docs/assets/images/home-img/contributex2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/home-img/contributex2.png -------------------------------------------------------------------------------- /docs/assets/images/moj-apple-touch-icon-2024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/moj-apple-touch-icon-2024.png -------------------------------------------------------------------------------- /docs/assets/images/moj-contribution.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/moj-contribution.svg -------------------------------------------------------------------------------- /docs/assets/images/moj-opengraph-image-2024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/moj-opengraph-image-2024.png -------------------------------------------------------------------------------- /docs/assets/images/moj-people.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/moj-people.svg -------------------------------------------------------------------------------- /docs/assets/images/moj-research.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/moj-research.svg -------------------------------------------------------------------------------- /docs/assets/images/moj-usability.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/moj-usability.svg -------------------------------------------------------------------------------- /docs/assets/images/pds-header-account-menu-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/pds-header-account-menu-open.png -------------------------------------------------------------------------------- /docs/assets/images/pds-header-global-nav-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/pds-header-global-nav-open.png -------------------------------------------------------------------------------- /docs/assets/images/privacy-policy-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/privacy-policy-page.png -------------------------------------------------------------------------------- /docs/assets/images/receipt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/receipt.jpg -------------------------------------------------------------------------------- /docs/assets/images/thumb-new-features-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/thumb-new-features-banner.png -------------------------------------------------------------------------------- /docs/assets/images/thumbs/thumb-add-another.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/thumbs/thumb-add-another.png -------------------------------------------------------------------------------- /docs/assets/images/thumbs/thumb-alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/thumbs/thumb-alert.png -------------------------------------------------------------------------------- /docs/assets/images/thumbs/thumb-badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/thumbs/thumb-badge.png -------------------------------------------------------------------------------- /docs/assets/images/thumbs/thumb-button-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/thumbs/thumb-button-menu.png -------------------------------------------------------------------------------- /docs/assets/images/thumbs/thumb-calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/thumbs/thumb-calendar.png -------------------------------------------------------------------------------- /docs/assets/images/thumbs/thumb-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/thumbs/thumb-card.png -------------------------------------------------------------------------------- /docs/assets/images/thumbs/thumb-contextual-date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/thumbs/thumb-contextual-date.png -------------------------------------------------------------------------------- /docs/assets/images/thumbs/thumb-date-picker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/thumbs/thumb-date-picker.png -------------------------------------------------------------------------------- /docs/assets/images/thumbs/thumb-feedback-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/thumbs/thumb-feedback-banner.png -------------------------------------------------------------------------------- /docs/assets/images/thumbs/thumb-filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/thumbs/thumb-filter.png -------------------------------------------------------------------------------- /docs/assets/images/thumbs/thumb-identity-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/thumbs/thumb-identity-bar.png -------------------------------------------------------------------------------- /docs/assets/images/thumbs/thumb-messages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/thumbs/thumb-messages.png -------------------------------------------------------------------------------- /docs/assets/images/thumbs/thumb-modal-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/thumbs/thumb-modal-dialog.png -------------------------------------------------------------------------------- /docs/assets/images/thumbs/thumb-moj-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/thumbs/thumb-moj-header.png -------------------------------------------------------------------------------- /docs/assets/images/thumbs/thumb-multi-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/thumbs/thumb-multi-select.png -------------------------------------------------------------------------------- /docs/assets/images/thumbs/thumb-numeric-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/thumbs/thumb-numeric-data.png -------------------------------------------------------------------------------- /docs/assets/images/thumbs/thumb-pagination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/thumbs/thumb-pagination.png -------------------------------------------------------------------------------- /docs/assets/images/thumbs/thumb-pds-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/thumbs/thumb-pds-footer.png -------------------------------------------------------------------------------- /docs/assets/images/thumbs/thumb-pds-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/thumbs/thumb-pds-header.png -------------------------------------------------------------------------------- /docs/assets/images/thumbs/thumb-scrollable-pane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/thumbs/thumb-scrollable-pane.png -------------------------------------------------------------------------------- /docs/assets/images/thumbs/thumb-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/thumbs/thumb-search.png -------------------------------------------------------------------------------- /docs/assets/images/thumbs/thumb-side-navigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/thumbs/thumb-side-navigation.png -------------------------------------------------------------------------------- /docs/assets/images/thumbs/thumb-sortable-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/thumbs/thumb-sortable-table.png -------------------------------------------------------------------------------- /docs/assets/images/thumbs/thumb-sub-navigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/thumbs/thumb-sub-navigation.png -------------------------------------------------------------------------------- /docs/assets/images/thumbs/thumb-ticket-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/thumbs/thumb-ticket-panel.png -------------------------------------------------------------------------------- /docs/assets/images/thumbs/thumb-timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/thumbs/thumb-timeline.png -------------------------------------------------------------------------------- /docs/assets/images/thumbs/thumb-timeout-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/thumbs/thumb-timeout-warning.png -------------------------------------------------------------------------------- /docs/assets/images/upload-file-single.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/assets/images/upload-file-single.png -------------------------------------------------------------------------------- /docs/commnunity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/commnunity.md -------------------------------------------------------------------------------- /docs/components/add-another/add-another.11tydata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/add-another/add-another.11tydata.js -------------------------------------------------------------------------------- /docs/components/add-another/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/add-another/index.md -------------------------------------------------------------------------------- /docs/components/alert/_arguments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/alert/_arguments.md -------------------------------------------------------------------------------- /docs/components/alert/_examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/alert/_examples.md -------------------------------------------------------------------------------- /docs/components/alert/_get-help-and-contribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/alert/_get-help-and-contribute.md -------------------------------------------------------------------------------- /docs/components/alert/_how-to-use.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/alert/_how-to-use.md -------------------------------------------------------------------------------- /docs/components/alert/_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/alert/_overview.md -------------------------------------------------------------------------------- /docs/components/alert/alert.11tydata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/alert/alert.11tydata.js -------------------------------------------------------------------------------- /docs/components/alert/examples/default/index.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/alert/examples/default/index.njk -------------------------------------------------------------------------------- /docs/components/alert/examples/error/index.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/alert/examples/error/index.njk -------------------------------------------------------------------------------- /docs/components/alert/examples/examples.11tydata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/alert/examples/examples.11tydata.js -------------------------------------------------------------------------------- /docs/components/alert/examples/success/index.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/alert/examples/success/index.njk -------------------------------------------------------------------------------- /docs/components/alert/examples/warning/index.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/alert/examples/warning/index.njk -------------------------------------------------------------------------------- /docs/components/alert/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/alert/index.md -------------------------------------------------------------------------------- /docs/components/all.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/all.md -------------------------------------------------------------------------------- /docs/components/badge/_arguments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/badge/_arguments.md -------------------------------------------------------------------------------- /docs/components/badge/badge.11tydata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/badge/badge.11tydata.js -------------------------------------------------------------------------------- /docs/components/badge/examples/complete/index.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/badge/examples/complete/index.njk -------------------------------------------------------------------------------- /docs/components/badge/examples/default/index.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/badge/examples/default/index.njk -------------------------------------------------------------------------------- /docs/components/badge/examples/examples.11tydata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/badge/examples/examples.11tydata.js -------------------------------------------------------------------------------- /docs/components/badge/examples/urgent/index.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/badge/examples/urgent/index.njk -------------------------------------------------------------------------------- /docs/components/badge/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/badge/index.md -------------------------------------------------------------------------------- /docs/components/button-menu/_arguments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/button-menu/_arguments.md -------------------------------------------------------------------------------- /docs/components/button-menu/_examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/button-menu/_examples.md -------------------------------------------------------------------------------- /docs/components/button-menu/_how-to-use.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/button-menu/_how-to-use.md -------------------------------------------------------------------------------- /docs/components/button-menu/_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/button-menu/_overview.md -------------------------------------------------------------------------------- /docs/components/button-menu/button-menu.11tydata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/button-menu/button-menu.11tydata.js -------------------------------------------------------------------------------- /docs/components/button-menu/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/button-menu/index.md -------------------------------------------------------------------------------- /docs/components/calendar/_accessibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/calendar/_accessibility.md -------------------------------------------------------------------------------- /docs/components/calendar/_code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/calendar/_code.md -------------------------------------------------------------------------------- /docs/components/calendar/_designs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/calendar/_designs.md -------------------------------------------------------------------------------- /docs/components/calendar/_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/calendar/_overview.md -------------------------------------------------------------------------------- /docs/components/calendar/calendar.11tydata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/calendar/calendar.11tydata.js -------------------------------------------------------------------------------- /docs/components/calendar/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/calendar/index.md -------------------------------------------------------------------------------- /docs/components/card/_accessibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/card/_accessibility.md -------------------------------------------------------------------------------- /docs/components/card/_code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/card/_code.md -------------------------------------------------------------------------------- /docs/components/card/_designs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/card/_designs.md -------------------------------------------------------------------------------- /docs/components/card/_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/card/_overview.md -------------------------------------------------------------------------------- /docs/components/card/card.11tydata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/card/card.11tydata.js -------------------------------------------------------------------------------- /docs/components/card/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/card/index.md -------------------------------------------------------------------------------- /docs/components/components.11tydata.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/components.11tydata.mjs -------------------------------------------------------------------------------- /docs/components/contextual-date/_accessibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/contextual-date/_accessibility.md -------------------------------------------------------------------------------- /docs/components/contextual-date/_code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/contextual-date/_code.md -------------------------------------------------------------------------------- /docs/components/contextual-date/_designs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/contextual-date/_designs.md -------------------------------------------------------------------------------- /docs/components/contextual-date/_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/contextual-date/_overview.md -------------------------------------------------------------------------------- /docs/components/contextual-date/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/contextual-date/index.md -------------------------------------------------------------------------------- /docs/components/date-picker/_arguments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/date-picker/_arguments.md -------------------------------------------------------------------------------- /docs/components/date-picker/_examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/date-picker/_examples.md -------------------------------------------------------------------------------- /docs/components/date-picker/_how-to-use.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/date-picker/_how-to-use.md -------------------------------------------------------------------------------- /docs/components/date-picker/_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/date-picker/_overview.md -------------------------------------------------------------------------------- /docs/components/date-picker/date-picker.11tydata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/date-picker/date-picker.11tydata.js -------------------------------------------------------------------------------- /docs/components/date-picker/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/date-picker/index.md -------------------------------------------------------------------------------- /docs/components/feedback-banner/_accessibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/feedback-banner/_accessibility.md -------------------------------------------------------------------------------- /docs/components/feedback-banner/_code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/feedback-banner/_code.md -------------------------------------------------------------------------------- /docs/components/feedback-banner/_designs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/feedback-banner/_designs.md -------------------------------------------------------------------------------- /docs/components/feedback-banner/_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/feedback-banner/_overview.md -------------------------------------------------------------------------------- /docs/components/feedback-banner/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/feedback-banner/index.md -------------------------------------------------------------------------------- /docs/components/filter/examples/default/index.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/filter/examples/default/index.njk -------------------------------------------------------------------------------- /docs/components/filter/filter.11tydata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/filter/filter.11tydata.js -------------------------------------------------------------------------------- /docs/components/filter/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/filter/index.md -------------------------------------------------------------------------------- /docs/components/identity-bar/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/identity-bar/index.md -------------------------------------------------------------------------------- /docs/components/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/index.md -------------------------------------------------------------------------------- /docs/components/inset-text-highlighted/_code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/inset-text-highlighted/_code.md -------------------------------------------------------------------------------- /docs/components/inset-text-highlighted/_designs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/inset-text-highlighted/_designs.md -------------------------------------------------------------------------------- /docs/components/inset-text-highlighted/_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/inset-text-highlighted/_overview.md -------------------------------------------------------------------------------- /docs/components/inset-text-highlighted/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/inset-text-highlighted/index.md -------------------------------------------------------------------------------- /docs/components/interruption-card/_arguments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/interruption-card/_arguments.md -------------------------------------------------------------------------------- /docs/components/interruption-card/_how-to-use.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/interruption-card/_how-to-use.md -------------------------------------------------------------------------------- /docs/components/interruption-card/_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/interruption-card/_overview.md -------------------------------------------------------------------------------- /docs/components/interruption-card/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/interruption-card/index.md -------------------------------------------------------------------------------- /docs/components/messages/_arguments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/messages/_arguments.md -------------------------------------------------------------------------------- /docs/components/messages/examples/default/index.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/messages/examples/default/index.njk -------------------------------------------------------------------------------- /docs/components/messages/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/messages/index.md -------------------------------------------------------------------------------- /docs/components/messages/messages.11tydata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/messages/messages.11tydata.js -------------------------------------------------------------------------------- /docs/components/modal-dialog/_accessibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/modal-dialog/_accessibility.md -------------------------------------------------------------------------------- /docs/components/modal-dialog/_code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/modal-dialog/_code.md -------------------------------------------------------------------------------- /docs/components/modal-dialog/_designs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/modal-dialog/_designs.md -------------------------------------------------------------------------------- /docs/components/modal-dialog/_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/modal-dialog/_overview.md -------------------------------------------------------------------------------- /docs/components/modal-dialog/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/modal-dialog/index.md -------------------------------------------------------------------------------- /docs/components/moj-header/_arguments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/moj-header/_arguments.md -------------------------------------------------------------------------------- /docs/components/moj-header/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/moj-header/index.md -------------------------------------------------------------------------------- /docs/components/moj-header/moj-header.11tydata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/moj-header/moj-header.11tydata.js -------------------------------------------------------------------------------- /docs/components/multi-file-upload/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/multi-file-upload/index.md -------------------------------------------------------------------------------- /docs/components/multi-select/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/multi-select/index.md -------------------------------------------------------------------------------- /docs/components/new-features-banner/_code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/new-features-banner/_code.md -------------------------------------------------------------------------------- /docs/components/new-features-banner/_designs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/new-features-banner/_designs.md -------------------------------------------------------------------------------- /docs/components/new-features-banner/_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/new-features-banner/_overview.md -------------------------------------------------------------------------------- /docs/components/new-features-banner/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/new-features-banner/index.md -------------------------------------------------------------------------------- /docs/components/notification-badge/_arguments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/notification-badge/_arguments.md -------------------------------------------------------------------------------- /docs/components/notification-badge/_examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/notification-badge/_examples.md -------------------------------------------------------------------------------- /docs/components/notification-badge/_how-to-use.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/notification-badge/_how-to-use.md -------------------------------------------------------------------------------- /docs/components/notification-badge/_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/notification-badge/_overview.md -------------------------------------------------------------------------------- /docs/components/notification-badge/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/notification-badge/index.md -------------------------------------------------------------------------------- /docs/components/numeric-data/_accessibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/numeric-data/_accessibility.md -------------------------------------------------------------------------------- /docs/components/numeric-data/_code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/numeric-data/_code.md -------------------------------------------------------------------------------- /docs/components/numeric-data/_designs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/numeric-data/_designs.md -------------------------------------------------------------------------------- /docs/components/numeric-data/_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/numeric-data/_overview.md -------------------------------------------------------------------------------- /docs/components/numeric-data/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/numeric-data/index.md -------------------------------------------------------------------------------- /docs/components/organisation-switcher/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/organisation-switcher/index.md -------------------------------------------------------------------------------- /docs/components/page-header-actions/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/page-header-actions/index.md -------------------------------------------------------------------------------- /docs/components/pagination/_arguments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/pagination/_arguments.md -------------------------------------------------------------------------------- /docs/components/pagination/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/pagination/index.md -------------------------------------------------------------------------------- /docs/components/pagination/pagination.11tydata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/pagination/pagination.11tydata.js -------------------------------------------------------------------------------- /docs/components/primary-navigation/_arguments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/primary-navigation/_arguments.md -------------------------------------------------------------------------------- /docs/components/primary-navigation/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/primary-navigation/index.md -------------------------------------------------------------------------------- /docs/components/progress-tracker/_accessibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/progress-tracker/_accessibility.md -------------------------------------------------------------------------------- /docs/components/progress-tracker/_code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/progress-tracker/_code.md -------------------------------------------------------------------------------- /docs/components/progress-tracker/_designs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/progress-tracker/_designs.md -------------------------------------------------------------------------------- /docs/components/progress-tracker/_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/progress-tracker/_overview.md -------------------------------------------------------------------------------- /docs/components/progress-tracker/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/progress-tracker/index.md -------------------------------------------------------------------------------- /docs/components/scrollable-pane/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/scrollable-pane/index.md -------------------------------------------------------------------------------- /docs/components/search/examples/default/index.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/search/examples/default/index.njk -------------------------------------------------------------------------------- /docs/components/search/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/search/index.md -------------------------------------------------------------------------------- /docs/components/search/search.11tydata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/search/search.11tydata.js -------------------------------------------------------------------------------- /docs/components/side-navigation/_arguments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/side-navigation/_arguments.md -------------------------------------------------------------------------------- /docs/components/side-navigation/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/side-navigation/index.md -------------------------------------------------------------------------------- /docs/components/sortable-table/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/sortable-table/index.md -------------------------------------------------------------------------------- /docs/components/sub-navigation/_arguments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/sub-navigation/_arguments.md -------------------------------------------------------------------------------- /docs/components/sub-navigation/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/sub-navigation/index.md -------------------------------------------------------------------------------- /docs/components/ticket-panel/_arguments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/ticket-panel/_arguments.md -------------------------------------------------------------------------------- /docs/components/ticket-panel/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/ticket-panel/index.md -------------------------------------------------------------------------------- /docs/components/timeline/_arguments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/timeline/_arguments.md -------------------------------------------------------------------------------- /docs/components/timeline/examples/default/index.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/timeline/examples/default/index.njk -------------------------------------------------------------------------------- /docs/components/timeline/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/timeline/index.md -------------------------------------------------------------------------------- /docs/components/timeline/timeline.11tydata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/timeline/timeline.11tydata.js -------------------------------------------------------------------------------- /docs/components/timeout-warning/_accessibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/timeout-warning/_accessibility.md -------------------------------------------------------------------------------- /docs/components/timeout-warning/_code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/timeout-warning/_code.md -------------------------------------------------------------------------------- /docs/components/timeout-warning/_designs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/timeout-warning/_designs.md -------------------------------------------------------------------------------- /docs/components/timeout-warning/_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/timeout-warning/_overview.md -------------------------------------------------------------------------------- /docs/components/timeout-warning/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/components/timeout-warning/index.md -------------------------------------------------------------------------------- /docs/contribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/contribute.md -------------------------------------------------------------------------------- /docs/contributing/application-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/contributing/application-architecture.md -------------------------------------------------------------------------------- /docs/cookies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/cookies.md -------------------------------------------------------------------------------- /docs/design-system-benefits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/design-system-benefits.md -------------------------------------------------------------------------------- /docs/design-system-statuses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/design-system-statuses.md -------------------------------------------------------------------------------- /docs/ethics/assessment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/ethics/assessment.md -------------------------------------------------------------------------------- /docs/ethics/design-ethical-services.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/ethics/design-ethical-services.md -------------------------------------------------------------------------------- /docs/ethics/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/ethics/index.md -------------------------------------------------------------------------------- /docs/ethics/principles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/ethics/principles.md -------------------------------------------------------------------------------- /docs/ethics/review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/ethics/review.md -------------------------------------------------------------------------------- /docs/guidance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/guidance.md -------------------------------------------------------------------------------- /docs/help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/help.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/javascripts/accordions.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/javascripts/accordions.mjs -------------------------------------------------------------------------------- /docs/javascripts/application.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/javascripts/application.mjs -------------------------------------------------------------------------------- /docs/javascripts/collapsible-nav.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/javascripts/collapsible-nav.mjs -------------------------------------------------------------------------------- /docs/javascripts/cookies.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/javascripts/cookies.mjs -------------------------------------------------------------------------------- /docs/javascripts/copy.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/javascripts/copy.mjs -------------------------------------------------------------------------------- /docs/javascripts/iframe-resizer.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/javascripts/iframe-resizer.mjs -------------------------------------------------------------------------------- /docs/javascripts/menu-toggle.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/javascripts/menu-toggle.mjs -------------------------------------------------------------------------------- /docs/javascripts/scroll-container.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/javascripts/scroll-container.mjs -------------------------------------------------------------------------------- /docs/javascripts/tabs.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/javascripts/tabs.mjs -------------------------------------------------------------------------------- /docs/javascripts/utils.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/javascripts/utils.mjs -------------------------------------------------------------------------------- /docs/moj-building-blocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/moj-building-blocks.md -------------------------------------------------------------------------------- /docs/notification-badge-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/notification-badge-testing.md -------------------------------------------------------------------------------- /docs/pages/case-list/case-list.11tydata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/pages/case-list/case-list.11tydata.js -------------------------------------------------------------------------------- /docs/pages/case-list/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/pages/case-list/index.md -------------------------------------------------------------------------------- /docs/pages/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/pages/index.md -------------------------------------------------------------------------------- /docs/pages/pages.11tydata.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/pages/pages.11tydata.mjs -------------------------------------------------------------------------------- /docs/patterns/add-to-a-list/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/patterns/add-to-a-list/index.md -------------------------------------------------------------------------------- /docs/patterns/filter-a-list/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/patterns/filter-a-list/index.md -------------------------------------------------------------------------------- /docs/patterns/get-help/examples/default/index.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/patterns/get-help/examples/default/index.njk -------------------------------------------------------------------------------- /docs/patterns/get-help/get-help.11tydata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/patterns/get-help/get-help.11tydata.js -------------------------------------------------------------------------------- /docs/patterns/get-help/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/patterns/get-help/index.md -------------------------------------------------------------------------------- /docs/patterns/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/patterns/index.md -------------------------------------------------------------------------------- /docs/patterns/patterns.11tydata.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/patterns/patterns.11tydata.mjs -------------------------------------------------------------------------------- /docs/patterns/upload-files/examples/check/index.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/patterns/upload-files/examples/check/index.njk -------------------------------------------------------------------------------- /docs/patterns/upload-files/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/patterns/upload-files/index.md -------------------------------------------------------------------------------- /docs/patterns/upload-files/upload-files.11tydata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/patterns/upload-files/upload-files.11tydata.js -------------------------------------------------------------------------------- /docs/privacy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/privacy.md -------------------------------------------------------------------------------- /docs/probation-building-blocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/probation-building-blocks.md -------------------------------------------------------------------------------- /docs/probation/components/all.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/probation/components/all.md -------------------------------------------------------------------------------- /docs/probation/components/components.11tydata.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/probation/components/components.11tydata.mjs -------------------------------------------------------------------------------- /docs/probation/components/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/probation/components/index.md -------------------------------------------------------------------------------- /docs/probation/components/pds-footer/_arguments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/probation/components/pds-footer/_arguments.md -------------------------------------------------------------------------------- /docs/probation/components/pds-footer/_examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/probation/components/pds-footer/_examples.md -------------------------------------------------------------------------------- /docs/probation/components/pds-footer/_how-to-use.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/probation/components/pds-footer/_how-to-use.md -------------------------------------------------------------------------------- /docs/probation/components/pds-footer/_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/probation/components/pds-footer/_overview.md -------------------------------------------------------------------------------- /docs/probation/components/pds-footer/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/probation/components/pds-footer/index.md -------------------------------------------------------------------------------- /docs/probation/components/pds-header/_arguments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/probation/components/pds-header/_arguments.md -------------------------------------------------------------------------------- /docs/probation/components/pds-header/_examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/probation/components/pds-header/_examples.md -------------------------------------------------------------------------------- /docs/probation/components/pds-header/_how-to-use.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/probation/components/pds-header/_how-to-use.md -------------------------------------------------------------------------------- /docs/probation/components/pds-header/_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/probation/components/pds-header/_overview.md -------------------------------------------------------------------------------- /docs/probation/components/pds-header/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/probation/components/pds-header/index.md -------------------------------------------------------------------------------- /docs/production/import-css.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/production/import-css.md -------------------------------------------------------------------------------- /docs/production/import-font-and-image-assets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/production/import-font-and-image-assets.md -------------------------------------------------------------------------------- /docs/production/import-javascript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/production/import-javascript.md -------------------------------------------------------------------------------- /docs/production/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/production/index.md -------------------------------------------------------------------------------- /docs/production/install-using-precompiled-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/production/install-using-precompiled-files.md -------------------------------------------------------------------------------- /docs/production/installing-with-npm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/production/installing-with-npm.md -------------------------------------------------------------------------------- /docs/production/moj-frontend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/production/moj-frontend.md -------------------------------------------------------------------------------- /docs/production/use-nunjucks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/production/use-nunjucks.md -------------------------------------------------------------------------------- /docs/prototyping/deploying-coded-prototypes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/prototyping/deploying-coded-prototypes.md -------------------------------------------------------------------------------- /docs/prototyping/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/prototyping/index.md -------------------------------------------------------------------------------- /docs/prototyping/prototyping-methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/prototyping/prototyping-methods.md -------------------------------------------------------------------------------- /docs/prototyping/setting-up-coded-prototypes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/prototyping/setting-up-coded-prototypes.md -------------------------------------------------------------------------------- /docs/prototyping/setting-up-figma-prototypes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/prototyping/setting-up-figma-prototypes.md -------------------------------------------------------------------------------- /docs/redirects.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/redirects.njk -------------------------------------------------------------------------------- /docs/service-patterns/apply.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/service-patterns/apply.md -------------------------------------------------------------------------------- /docs/service-patterns/appointment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/service-patterns/appointment.md -------------------------------------------------------------------------------- /docs/service-patterns/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/service-patterns/index.md -------------------------------------------------------------------------------- /docs/style-guide-updates-old.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/style-guide-updates-old.md -------------------------------------------------------------------------------- /docs/style-guide-updates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/style-guide-updates.md -------------------------------------------------------------------------------- /docs/style-guide-updates/2025-01-09-pnc-number.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/style-guide-updates/2025-01-09-pnc-number.md -------------------------------------------------------------------------------- /docs/style-guide-updates/2025-04-01-sds40.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/style-guide-updates/2025-04-01-sds40.md -------------------------------------------------------------------------------- /docs/style-guide-updates/2025-05-21-oasys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/style-guide-updates/2025-05-21-oasys.md -------------------------------------------------------------------------------- /docs/style-guide-updates/2025-08-06-ftr-48.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/style-guide-updates/2025-08-06-ftr-48.md -------------------------------------------------------------------------------- /docs/style-guide-updates/2025-08-06-unlock-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/style-guide-updates/2025-08-06-unlock-list.md -------------------------------------------------------------------------------- /docs/style-guide-updates/2025-08-06-unlock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/style-guide-updates/2025-08-06-unlock.md -------------------------------------------------------------------------------- /docs/style-guide-updates/2025-10-16-pom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/style-guide-updates/2025-10-16-pom.md -------------------------------------------------------------------------------- /docs/style-guide-updates/2025-10-20-pip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/style-guide-updates/2025-10-20-pip.md -------------------------------------------------------------------------------- /docs/style-guide-updates/2025-10-20-pop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/style-guide-updates/2025-10-20-pop.md -------------------------------------------------------------------------------- /docs/style-guide-updates/2025-10-23-moj.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/style-guide-updates/2025-10-23-moj.md -------------------------------------------------------------------------------- /docs/style-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/style-guide.md -------------------------------------------------------------------------------- /docs/stylesheets/_moj-frontend.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/stylesheets/_moj-frontend.scss -------------------------------------------------------------------------------- /docs/stylesheets/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/stylesheets/application.scss -------------------------------------------------------------------------------- /docs/stylesheets/components/_accordions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/stylesheets/components/_accordions.scss -------------------------------------------------------------------------------- /docs/stylesheets/components/_app-article.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/stylesheets/components/_app-article.scss -------------------------------------------------------------------------------- /docs/stylesheets/components/_app-card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/stylesheets/components/_app-card.scss -------------------------------------------------------------------------------- /docs/stylesheets/components/_app-grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/stylesheets/components/_app-grid.scss -------------------------------------------------------------------------------- /docs/stylesheets/components/_back-to-top.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/stylesheets/components/_back-to-top.scss -------------------------------------------------------------------------------- /docs/stylesheets/components/_cookie-banner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/stylesheets/components/_cookie-banner.scss -------------------------------------------------------------------------------- /docs/stylesheets/components/_copy-button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/stylesheets/components/_copy-button.scss -------------------------------------------------------------------------------- /docs/stylesheets/components/_example.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/stylesheets/components/_example.scss -------------------------------------------------------------------------------- /docs/stylesheets/components/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/stylesheets/components/_footer.scss -------------------------------------------------------------------------------- /docs/stylesheets/components/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/stylesheets/components/_header.scss -------------------------------------------------------------------------------- /docs/stylesheets/components/_inputs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/stylesheets/components/_inputs.scss -------------------------------------------------------------------------------- /docs/stylesheets/components/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/stylesheets/components/_layout.scss -------------------------------------------------------------------------------- /docs/stylesheets/components/_masthead.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/stylesheets/components/_masthead.scss -------------------------------------------------------------------------------- /docs/stylesheets/components/_menu-toggle.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/stylesheets/components/_menu-toggle.scss -------------------------------------------------------------------------------- /docs/stylesheets/components/_page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/stylesheets/components/_page.scss -------------------------------------------------------------------------------- /docs/stylesheets/components/_panel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/stylesheets/components/_panel.scss -------------------------------------------------------------------------------- /docs/stylesheets/components/_prose.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/stylesheets/components/_prose.scss -------------------------------------------------------------------------------- /docs/stylesheets/components/_status.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/stylesheets/components/_status.scss -------------------------------------------------------------------------------- /docs/stylesheets/components/_summary-card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/stylesheets/components/_summary-card.scss -------------------------------------------------------------------------------- /docs/stylesheets/components/_tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/stylesheets/components/_tabs.scss -------------------------------------------------------------------------------- /docs/stylesheets/components/_vertical-nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/stylesheets/components/_vertical-nav.scss -------------------------------------------------------------------------------- /docs/stylesheets/example.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/stylesheets/example.scss -------------------------------------------------------------------------------- /docs/stylesheets/govuk-frontend.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/stylesheets/govuk-frontend.scss -------------------------------------------------------------------------------- /docs/stylesheets/settings/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/stylesheets/settings/app.scss -------------------------------------------------------------------------------- /docs/submit-new-component.11tydata.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/submit-new-component.11tydata.mjs -------------------------------------------------------------------------------- /docs/submit-new-component.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/submit-new-component.md -------------------------------------------------------------------------------- /docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/tsconfig.json -------------------------------------------------------------------------------- /docs/updates/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/updates/index.md -------------------------------------------------------------------------------- /docs/updates/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/updates/roadmap.md -------------------------------------------------------------------------------- /docs/updates/whats-new.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/docs/updates/whats-new.md -------------------------------------------------------------------------------- /gulp/build-clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/gulp/build-clean.js -------------------------------------------------------------------------------- /gulp/build-compress-images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/gulp/build-compress-images.js -------------------------------------------------------------------------------- /gulp/build-copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/gulp/build-copy.js -------------------------------------------------------------------------------- /gulp/build-javascripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/gulp/build-javascripts.js -------------------------------------------------------------------------------- /gulp/build-stylesheets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/gulp/build-stylesheets.js -------------------------------------------------------------------------------- /gulp/dist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/gulp/dist.js -------------------------------------------------------------------------------- /gulp/docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/gulp/docs.js -------------------------------------------------------------------------------- /gulp/tasks/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/gulp/tasks/scripts.js -------------------------------------------------------------------------------- /gulp/tasks/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/gulp/tasks/styles.js -------------------------------------------------------------------------------- /gulp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/gulp/tsconfig.json -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/gulpfile.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/jest.config.js -------------------------------------------------------------------------------- /jest.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/jest.setup.js -------------------------------------------------------------------------------- /kubernetes-deploy-preview.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/kubernetes-deploy-preview.tpl -------------------------------------------------------------------------------- /kubernetes-deploy-production.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/kubernetes-deploy-production.tpl -------------------------------------------------------------------------------- /kubernetes-deploy-staging.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/kubernetes-deploy-staging.tpl -------------------------------------------------------------------------------- /nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/nodemon.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/package.json -------------------------------------------------------------------------------- /package/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/package/README.md -------------------------------------------------------------------------------- /package/govuk-prototype-kit.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/package/govuk-prototype-kit.config.json -------------------------------------------------------------------------------- /package/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/package/package.json -------------------------------------------------------------------------------- /playwright.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/playwright.config.js -------------------------------------------------------------------------------- /playwright/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /playwright/.state/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/renovate.json -------------------------------------------------------------------------------- /restructure-component.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/restructure-component.sh -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /contribute/ -------------------------------------------------------------------------------- /src/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/.eslintrc.js -------------------------------------------------------------------------------- /src/moj/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/_base.scss -------------------------------------------------------------------------------- /src/moj/all.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/all.mjs -------------------------------------------------------------------------------- /src/moj/all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/all.scss -------------------------------------------------------------------------------- /src/moj/all.spec.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/all.spec.mjs -------------------------------------------------------------------------------- /src/moj/assets/images/govuk-logotype-crown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/assets/images/govuk-logotype-crown.png -------------------------------------------------------------------------------- /src/moj/assets/images/icon-alert-information.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/assets/images/icon-alert-information.svg -------------------------------------------------------------------------------- /src/moj/assets/images/icon-alert-success.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/assets/images/icon-alert-success.svg -------------------------------------------------------------------------------- /src/moj/assets/images/icon-alert-warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/assets/images/icon-alert-warning.svg -------------------------------------------------------------------------------- /src/moj/assets/images/icon-arrow-black-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/assets/images/icon-arrow-black-down.svg -------------------------------------------------------------------------------- /src/moj/assets/images/icon-arrow-black-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/assets/images/icon-arrow-black-up.svg -------------------------------------------------------------------------------- /src/moj/assets/images/icon-arrow-white-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/assets/images/icon-arrow-white-down.svg -------------------------------------------------------------------------------- /src/moj/assets/images/icon-arrow-white-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/assets/images/icon-arrow-white-up.svg -------------------------------------------------------------------------------- /src/moj/assets/images/icon-close-cross-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/assets/images/icon-close-cross-black.svg -------------------------------------------------------------------------------- /src/moj/assets/images/icon-document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/assets/images/icon-document.png -------------------------------------------------------------------------------- /src/moj/assets/images/icon-document.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/assets/images/icon-document.svg -------------------------------------------------------------------------------- /src/moj/assets/images/icon-progress-tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/assets/images/icon-progress-tick.png -------------------------------------------------------------------------------- /src/moj/assets/images/icon-progress-tick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/assets/images/icon-progress-tick.svg -------------------------------------------------------------------------------- /src/moj/assets/images/icon-search-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/assets/images/icon-search-black.svg -------------------------------------------------------------------------------- /src/moj/assets/images/icon-search-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/assets/images/icon-search-blue.svg -------------------------------------------------------------------------------- /src/moj/assets/images/icon-search-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/assets/images/icon-search-white.svg -------------------------------------------------------------------------------- /src/moj/assets/images/icon-tag-remove-cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/assets/images/icon-tag-remove-cross.svg -------------------------------------------------------------------------------- /src/moj/assets/images/icon-toggle-plus-minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/assets/images/icon-toggle-plus-minus.svg -------------------------------------------------------------------------------- /src/moj/assets/images/icon-wysiwyg-bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/assets/images/icon-wysiwyg-bold.svg -------------------------------------------------------------------------------- /src/moj/assets/images/icon-wysiwyg-italic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/assets/images/icon-wysiwyg-italic.svg -------------------------------------------------------------------------------- /src/moj/assets/images/icon-wysiwyg-ordered-list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/assets/images/icon-wysiwyg-ordered-list.svg -------------------------------------------------------------------------------- /src/moj/assets/images/icon-wysiwyg-underline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/assets/images/icon-wysiwyg-underline.svg -------------------------------------------------------------------------------- /src/moj/assets/images/moj-apple-touch-icon-2024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/assets/images/moj-apple-touch-icon-2024.png -------------------------------------------------------------------------------- /src/moj/assets/images/moj-logotype-crest-2024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/assets/images/moj-logotype-crest-2024.png -------------------------------------------------------------------------------- /src/moj/assets/images/moj-logotype-crest-2024.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/assets/images/moj-logotype-crest-2024.svg -------------------------------------------------------------------------------- /src/moj/assets/images/moj-opengraph-image-2024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/assets/images/moj-opengraph-image-2024.png -------------------------------------------------------------------------------- /src/moj/common/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/common/index.mjs -------------------------------------------------------------------------------- /src/moj/common/moj-frontend-version.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/common/moj-frontend-version.mjs -------------------------------------------------------------------------------- /src/moj/components/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/_all.scss -------------------------------------------------------------------------------- /src/moj/components/action-bar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/action-bar/README.md -------------------------------------------------------------------------------- /src/moj/components/action-bar/_action-bar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/action-bar/_action-bar.scss -------------------------------------------------------------------------------- /src/moj/components/add-another/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/add-another/README.md -------------------------------------------------------------------------------- /src/moj/components/add-another/_add-another.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/add-another/_add-another.scss -------------------------------------------------------------------------------- /src/moj/components/add-another/add-another.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/add-another/add-another.mjs -------------------------------------------------------------------------------- /src/moj/components/add-another/add-another.spec.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/add-another/add-another.spec.mjs -------------------------------------------------------------------------------- /src/moj/components/alert/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/moj/components/alert/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/alert/_alert.scss -------------------------------------------------------------------------------- /src/moj/components/alert/alert.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/alert/alert.mjs -------------------------------------------------------------------------------- /src/moj/components/alert/alert.spec.helper.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/alert/alert.spec.helper.mjs -------------------------------------------------------------------------------- /src/moj/components/alert/alert.spec.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/alert/alert.spec.mjs -------------------------------------------------------------------------------- /src/moj/components/alert/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/alert/macro.njk -------------------------------------------------------------------------------- /src/moj/components/alert/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/alert/template.njk -------------------------------------------------------------------------------- /src/moj/components/badge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/badge/README.md -------------------------------------------------------------------------------- /src/moj/components/badge/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/badge/_badge.scss -------------------------------------------------------------------------------- /src/moj/components/badge/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/badge/macro.njk -------------------------------------------------------------------------------- /src/moj/components/badge/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/badge/template.njk -------------------------------------------------------------------------------- /src/moj/components/banner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/banner/README.md -------------------------------------------------------------------------------- /src/moj/components/banner/_banner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/banner/_banner.scss -------------------------------------------------------------------------------- /src/moj/components/banner/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/banner/macro.njk -------------------------------------------------------------------------------- /src/moj/components/banner/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/banner/template.njk -------------------------------------------------------------------------------- /src/moj/components/button-menu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/button-menu/README.md -------------------------------------------------------------------------------- /src/moj/components/button-menu/_button-menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/button-menu/_button-menu.scss -------------------------------------------------------------------------------- /src/moj/components/button-menu/button-menu.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/button-menu/button-menu.mjs -------------------------------------------------------------------------------- /src/moj/components/button-menu/button-menu.spec.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/button-menu/button-menu.spec.mjs -------------------------------------------------------------------------------- /src/moj/components/button-menu/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/button-menu/macro.njk -------------------------------------------------------------------------------- /src/moj/components/button-menu/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/button-menu/template.njk -------------------------------------------------------------------------------- /src/moj/components/cookie-banner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/cookie-banner/README.md -------------------------------------------------------------------------------- /src/moj/components/cookie-banner/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/cookie-banner/macro.njk -------------------------------------------------------------------------------- /src/moj/components/cookie-banner/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/cookie-banner/template.njk -------------------------------------------------------------------------------- /src/moj/components/currency-input/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/currency-input/README.md -------------------------------------------------------------------------------- /src/moj/components/currency-input/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/currency-input/macro.njk -------------------------------------------------------------------------------- /src/moj/components/currency-input/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/currency-input/template.njk -------------------------------------------------------------------------------- /src/moj/components/date-picker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/date-picker/README.md -------------------------------------------------------------------------------- /src/moj/components/date-picker/_date-picker.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/date-picker/_date-picker.scss -------------------------------------------------------------------------------- /src/moj/components/date-picker/date-picker.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/date-picker/date-picker.mjs -------------------------------------------------------------------------------- /src/moj/components/date-picker/date-picker.spec.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/date-picker/date-picker.spec.mjs -------------------------------------------------------------------------------- /src/moj/components/date-picker/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/date-picker/macro.njk -------------------------------------------------------------------------------- /src/moj/components/date-picker/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/date-picker/template.njk -------------------------------------------------------------------------------- /src/moj/components/filter-toggle-button/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/filter-toggle-button/README.md -------------------------------------------------------------------------------- /src/moj/components/filter/README.md: -------------------------------------------------------------------------------- 1 | #Filters 2 | -------------------------------------------------------------------------------- /src/moj/components/filter/_filter.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/filter/_filter.scss -------------------------------------------------------------------------------- /src/moj/components/filter/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/filter/macro.njk -------------------------------------------------------------------------------- /src/moj/components/filter/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/filter/template.njk -------------------------------------------------------------------------------- /src/moj/components/form-validator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/form-validator/README.md -------------------------------------------------------------------------------- /src/moj/components/header/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/header/README.md -------------------------------------------------------------------------------- /src/moj/components/header/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/header/_header.scss -------------------------------------------------------------------------------- /src/moj/components/header/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/header/macro.njk -------------------------------------------------------------------------------- /src/moj/components/header/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/header/template.njk -------------------------------------------------------------------------------- /src/moj/components/identity-bar/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/moj/components/identity-bar/_identity-bar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/identity-bar/_identity-bar.scss -------------------------------------------------------------------------------- /src/moj/components/identity-bar/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/identity-bar/macro.njk -------------------------------------------------------------------------------- /src/moj/components/identity-bar/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/identity-bar/template.njk -------------------------------------------------------------------------------- /src/moj/components/interruption-card/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/interruption-card/macro.njk -------------------------------------------------------------------------------- /src/moj/components/interruption-card/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/interruption-card/template.njk -------------------------------------------------------------------------------- /src/moj/components/messages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/messages/README.md -------------------------------------------------------------------------------- /src/moj/components/messages/_messages.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/messages/_messages.scss -------------------------------------------------------------------------------- /src/moj/components/messages/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/messages/macro.njk -------------------------------------------------------------------------------- /src/moj/components/messages/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/messages/template.njk -------------------------------------------------------------------------------- /src/moj/components/multi-file-upload/README.md: -------------------------------------------------------------------------------- 1 | # Multi file upload 2 | -------------------------------------------------------------------------------- /src/moj/components/multi-file-upload/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/multi-file-upload/macro.njk -------------------------------------------------------------------------------- /src/moj/components/multi-file-upload/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/multi-file-upload/template.njk -------------------------------------------------------------------------------- /src/moj/components/multi-select/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/multi-select/README.md -------------------------------------------------------------------------------- /src/moj/components/multi-select/_multi-select.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/multi-select/_multi-select.scss -------------------------------------------------------------------------------- /src/moj/components/multi-select/multi-select.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/multi-select/multi-select.mjs -------------------------------------------------------------------------------- /src/moj/components/notification-badge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/notification-badge/README.md -------------------------------------------------------------------------------- /src/moj/components/notification-badge/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/notification-badge/macro.njk -------------------------------------------------------------------------------- /src/moj/components/notification-badge/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/notification-badge/template.njk -------------------------------------------------------------------------------- /src/moj/components/organisation-switcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/organisation-switcher/README.md -------------------------------------------------------------------------------- /src/moj/components/organisation-switcher/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/organisation-switcher/macro.njk -------------------------------------------------------------------------------- /src/moj/components/page-header-actions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/page-header-actions/README.md -------------------------------------------------------------------------------- /src/moj/components/page-header-actions/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/page-header-actions/macro.njk -------------------------------------------------------------------------------- /src/moj/components/page-header-actions/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/page-header-actions/template.njk -------------------------------------------------------------------------------- /src/moj/components/pagination/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/pagination/README.md -------------------------------------------------------------------------------- /src/moj/components/pagination/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/pagination/_pagination.scss -------------------------------------------------------------------------------- /src/moj/components/pagination/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/pagination/macro.njk -------------------------------------------------------------------------------- /src/moj/components/pagination/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/pagination/template.njk -------------------------------------------------------------------------------- /src/moj/components/password-reveal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/password-reveal/README.md -------------------------------------------------------------------------------- /src/moj/components/primary-navigation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/primary-navigation/README.md -------------------------------------------------------------------------------- /src/moj/components/primary-navigation/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/primary-navigation/macro.njk -------------------------------------------------------------------------------- /src/moj/components/primary-navigation/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/primary-navigation/template.njk -------------------------------------------------------------------------------- /src/moj/components/progress-bar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/progress-bar/README.md -------------------------------------------------------------------------------- /src/moj/components/progress-bar/_progress-bar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/progress-bar/_progress-bar.scss -------------------------------------------------------------------------------- /src/moj/components/progress-bar/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/progress-bar/macro.njk -------------------------------------------------------------------------------- /src/moj/components/progress-bar/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/progress-bar/template.njk -------------------------------------------------------------------------------- /src/moj/components/rich-text-editor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/rich-text-editor/README.md -------------------------------------------------------------------------------- /src/moj/components/search-toggle/README.md: -------------------------------------------------------------------------------- 1 | # Search toggle 2 | -------------------------------------------------------------------------------- /src/moj/components/search-toggle/search-toggle.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/search-toggle/search-toggle.mjs -------------------------------------------------------------------------------- /src/moj/components/search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/search/README.md -------------------------------------------------------------------------------- /src/moj/components/search/_search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/search/_search.scss -------------------------------------------------------------------------------- /src/moj/components/search/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/search/macro.njk -------------------------------------------------------------------------------- /src/moj/components/search/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/search/template.njk -------------------------------------------------------------------------------- /src/moj/components/side-navigation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/side-navigation/README.md -------------------------------------------------------------------------------- /src/moj/components/side-navigation/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/side-navigation/macro.njk -------------------------------------------------------------------------------- /src/moj/components/side-navigation/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/side-navigation/template.njk -------------------------------------------------------------------------------- /src/moj/components/sortable-table/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/sortable-table/README.md -------------------------------------------------------------------------------- /src/moj/components/sub-navigation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/sub-navigation/README.md -------------------------------------------------------------------------------- /src/moj/components/sub-navigation/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/sub-navigation/macro.njk -------------------------------------------------------------------------------- /src/moj/components/sub-navigation/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/sub-navigation/template.njk -------------------------------------------------------------------------------- /src/moj/components/tag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/tag/README.md -------------------------------------------------------------------------------- /src/moj/components/tag/_tag.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/tag/_tag.scss -------------------------------------------------------------------------------- /src/moj/components/task-list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/task-list/README.md -------------------------------------------------------------------------------- /src/moj/components/task-list/_task-list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/task-list/_task-list.scss -------------------------------------------------------------------------------- /src/moj/components/task-list/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/task-list/macro.njk -------------------------------------------------------------------------------- /src/moj/components/task-list/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/task-list/template.njk -------------------------------------------------------------------------------- /src/moj/components/ticket-panel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/ticket-panel/README.md -------------------------------------------------------------------------------- /src/moj/components/ticket-panel/_ticket-panel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/ticket-panel/_ticket-panel.scss -------------------------------------------------------------------------------- /src/moj/components/ticket-panel/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/ticket-panel/macro.njk -------------------------------------------------------------------------------- /src/moj/components/ticket-panel/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/ticket-panel/template.njk -------------------------------------------------------------------------------- /src/moj/components/timeline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/timeline/README.md -------------------------------------------------------------------------------- /src/moj/components/timeline/_timeline.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/timeline/_timeline.scss -------------------------------------------------------------------------------- /src/moj/components/timeline/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/timeline/macro.njk -------------------------------------------------------------------------------- /src/moj/components/timeline/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/components/timeline/template.njk -------------------------------------------------------------------------------- /src/moj/core/_all.scss: -------------------------------------------------------------------------------- 1 | @forward "moj-frontend-properties"; 2 | -------------------------------------------------------------------------------- /src/moj/core/_moj-frontend-properties.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/core/_moj-frontend-properties.scss -------------------------------------------------------------------------------- /src/moj/filters/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/filters/all.js -------------------------------------------------------------------------------- /src/moj/filters/prototype-kit-13-filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/filters/prototype-kit-13-filters.js -------------------------------------------------------------------------------- /src/moj/helpers.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/helpers.mjs -------------------------------------------------------------------------------- /src/moj/helpers.spec.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/helpers.spec.mjs -------------------------------------------------------------------------------- /src/moj/helpers/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/helpers/_all.scss -------------------------------------------------------------------------------- /src/moj/helpers/_hidden.scss: -------------------------------------------------------------------------------- 1 | @mixin moj-hidden() { 2 | display: none; 3 | } 4 | -------------------------------------------------------------------------------- /src/moj/helpers/_links.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/helpers/_links.scss -------------------------------------------------------------------------------- /src/moj/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/init.js -------------------------------------------------------------------------------- /src/moj/objects/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/objects/_all.scss -------------------------------------------------------------------------------- /src/moj/objects/_button-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/objects/_button-group.scss -------------------------------------------------------------------------------- /src/moj/objects/_filter-layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/objects/_filter-layout.scss -------------------------------------------------------------------------------- /src/moj/objects/_scrollable-pane.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/objects/_scrollable-pane.scss -------------------------------------------------------------------------------- /src/moj/objects/_width-container.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/objects/_width-container.scss -------------------------------------------------------------------------------- /src/moj/settings/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/settings/_all.scss -------------------------------------------------------------------------------- /src/moj/settings/_assets.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/settings/_assets.scss -------------------------------------------------------------------------------- /src/moj/settings/_colours.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/settings/_colours.scss -------------------------------------------------------------------------------- /src/moj/settings/_measurements.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/settings/_measurements.scss -------------------------------------------------------------------------------- /src/moj/settings/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/settings/_typography.scss -------------------------------------------------------------------------------- /src/moj/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/template.njk -------------------------------------------------------------------------------- /src/moj/utilities/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/utilities/_all.scss -------------------------------------------------------------------------------- /src/moj/utilities/_hidden.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/utilities/_hidden.scss -------------------------------------------------------------------------------- /src/moj/utilities/_width-container.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/utilities/_width-container.scss -------------------------------------------------------------------------------- /src/moj/vendor/govuk-frontend/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/vendor/govuk-frontend/_base.scss -------------------------------------------------------------------------------- /src/moj/vendor/govuk-frontend/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/moj/vendor/govuk-frontend/_index.scss -------------------------------------------------------------------------------- /src/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/tsconfig.build.json -------------------------------------------------------------------------------- /src/tsconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/tsconfig.dev.json -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/src/tsconfig.json -------------------------------------------------------------------------------- /stylelint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/stylelint.config.js -------------------------------------------------------------------------------- /submissions/submission-1756893312117/checkYourAnswers.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /submissions/submission-1756893312117/component-code.txt: -------------------------------------------------------------------------------- 1 | { 2 | "componentCodeAvailable": "yes" 3 | } -------------------------------------------------------------------------------- /submissions/submission-1756893312117/figma-link.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/submissions/submission-1756893312117/figma-link.txt -------------------------------------------------------------------------------- /submissions/submission-1756893312117/figma.txt: -------------------------------------------------------------------------------- 1 | { 2 | "figmaUrl": "yes" 3 | } -------------------------------------------------------------------------------- /submissions/submission-1756982092471/checkYourAnswers.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /submissions/submission-1756982092471/component-code.txt: -------------------------------------------------------------------------------- 1 | { 2 | "componentCodeAvailable": "yes" 3 | } -------------------------------------------------------------------------------- /submissions/submission-1756982092471/figma.txt: -------------------------------------------------------------------------------- 1 | { 2 | "figmaUrl": "no" 3 | } -------------------------------------------------------------------------------- /submissions/submission-1756990792746/checkYourAnswers.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /submissions/submission-1756990792746/component-code.txt: -------------------------------------------------------------------------------- 1 | { 2 | "componentCodeAvailable": "no" 3 | } -------------------------------------------------------------------------------- /submissions/submission-1756990792746/figma-link.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/submissions/submission-1756990792746/figma-link.txt -------------------------------------------------------------------------------- /submissions/submission-1756990792746/figma.txt: -------------------------------------------------------------------------------- 1 | { 2 | "figmaUrl": "yes" 3 | } -------------------------------------------------------------------------------- /submissions/submission-1759330464350/checkYourAnswers.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /submissions/submission-1759330464350/component-code.txt: -------------------------------------------------------------------------------- 1 | { 2 | "componentCodeAvailable": "yes" 3 | } -------------------------------------------------------------------------------- /submissions/submission-1759330464350/figma-link.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/submissions/submission-1759330464350/figma-link.txt -------------------------------------------------------------------------------- /submissions/submission-1759330464350/figma.txt: -------------------------------------------------------------------------------- 1 | { 2 | "figmaUrl": "yes" 3 | } -------------------------------------------------------------------------------- /submissions/submission-1762945944100/checkYourAnswers.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /submissions/submission-1762945944100/component-code.txt: -------------------------------------------------------------------------------- 1 | { 2 | "componentCodeAvailable": "no" 3 | } -------------------------------------------------------------------------------- /submissions/submission-1762945944100/figma.txt: -------------------------------------------------------------------------------- 1 | { 2 | "figmaUrl": "no" 3 | } -------------------------------------------------------------------------------- /submissions/submission-1762946436168/checkYourAnswers.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /submissions/submission-1762946436168/component-code.txt: -------------------------------------------------------------------------------- 1 | { 2 | "componentCodeAvailable": "no" 3 | } -------------------------------------------------------------------------------- /submissions/submission-1762946436168/figma.txt: -------------------------------------------------------------------------------- 1 | { 2 | "figmaUrl": "no" 3 | } -------------------------------------------------------------------------------- /submissions/submission-1762946660930/checkYourAnswers.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /submissions/submission-1762946660930/component-code.txt: -------------------------------------------------------------------------------- 1 | { 2 | "componentCodeAvailable": "no" 3 | } -------------------------------------------------------------------------------- /submissions/submission-1762946660930/figma.txt: -------------------------------------------------------------------------------- 1 | { 2 | "figmaUrl": "no" 3 | } -------------------------------------------------------------------------------- /submissions/submission-1762947876654/checkYourAnswers.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /submissions/submission-1762947876654/component-code.txt: -------------------------------------------------------------------------------- 1 | { 2 | "componentCodeAvailable": "yes" 3 | } -------------------------------------------------------------------------------- /submissions/submission-1762947876654/figma.txt: -------------------------------------------------------------------------------- 1 | { 2 | "figmaUrl": "no" 3 | } -------------------------------------------------------------------------------- /submissions/submission-1763677200863/checkYourAnswers.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /submissions/submission-1763677200863/component-code.txt: -------------------------------------------------------------------------------- 1 | { 2 | "componentCodeAvailable": "yes" 3 | } -------------------------------------------------------------------------------- /submissions/submission-1763677200863/figma.txt: -------------------------------------------------------------------------------- 1 | { 2 | "figmaUrl": "no" 3 | } -------------------------------------------------------------------------------- /submissions/submission-1763680654726/checkYourAnswers.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /submissions/submission-1763680654726/component-code.txt: -------------------------------------------------------------------------------- 1 | { 2 | "componentCodeAvailable": "yes" 3 | } -------------------------------------------------------------------------------- /submissions/submission-1763680654726/figma.txt: -------------------------------------------------------------------------------- 1 | { 2 | "figmaUrl": "no" 3 | } -------------------------------------------------------------------------------- /submissions/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/submissions/tsconfig.json -------------------------------------------------------------------------------- /tests/e2e/component-page.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/tests/e2e/component-page.spec.js -------------------------------------------------------------------------------- /tests/e2e/components.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/tests/e2e/components.spec.js -------------------------------------------------------------------------------- /tests/e2e/homepage.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/tests/e2e/homepage.spec.js -------------------------------------------------------------------------------- /tests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/tests/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /tsconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/tsconfig.dev.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/tsconfig.json -------------------------------------------------------------------------------- /views/common/partials/side-navigation.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-frontend/HEAD/views/common/partials/side-navigation.njk --------------------------------------------------------------------------------