├── .github ├── ISSUE_TEMPLATE │ ├── BUG_REPORT.md │ └── FEATURE_REQUEST.md ├── PULL_REQUEST_TEMPLATE │ ├── BUG_FIX.md │ ├── DOCUMENTATION.md │ ├── FEATURE_CHANGE.md │ └── PERFORMANCE_IMPROVEMENT.md └── workflows │ └── pull-request.yml ├── .gitignore ├── .npmrc ├── .nvmrc ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── PULL_REQUEST_TEMPLATE.md ├── Procfile ├── README.md ├── app.json ├── app ├── assets │ ├── images │ │ ├── app-header-crest.svg │ │ ├── app-icon-pointer.svg │ │ ├── components │ │ │ └── multi-file-upload │ │ │ │ ├── nojs-initial-state.png │ │ │ │ └── nojs-multiple-errors.png │ │ ├── favicon.ico │ │ ├── moj-apple-touch-icon-152x152.png │ │ ├── moj-apple-touch-icon-167x167.png │ │ ├── moj-apple-touch-icon-180x180.png │ │ ├── moj-apple-touch-icon.png │ │ ├── moj-opengraph-image.png │ │ └── patterns │ │ │ ├── downtime-warning.png │ │ │ ├── get-support-online.png │ │ │ ├── receipt.jpg │ │ │ ├── take-action-identity-bar.png │ │ │ ├── take-action-in-page-buttons-above.png │ │ │ ├── take-action-in-page-buttons-under.png │ │ │ ├── take-action-page-header-actions.png │ │ │ ├── task-list.png │ │ │ ├── upload-file-bulk.png │ │ │ ├── upload-file-multiple.png │ │ │ └── upload-file-single.png │ ├── javascripts │ │ ├── all.js │ │ └── vendor │ │ │ ├── clipboard.min.js │ │ │ ├── html5shiv.min.js │ │ │ └── jquery.min.js │ ├── sass │ │ ├── app │ │ │ ├── _app.scss │ │ │ ├── _buttons.scss │ │ │ ├── _header.scss │ │ │ ├── _highlight.scss │ │ │ ├── _markdown.scss │ │ │ └── _masthead.scss │ │ ├── application-ie8.scss │ │ ├── application.scss │ │ ├── code-ie8.scss │ │ ├── code.scss │ │ └── mixins.scss │ └── videos │ │ ├── get-support.mp4 │ │ ├── identity-bar-actions.mp4 │ │ ├── in-page-actions.mp4 │ │ ├── manage-items-in-a-list.mp4 │ │ ├── page-header-actions.mp4 │ │ └── search.mp4 ├── components │ ├── _all.scss │ ├── copy │ │ └── copy.js │ ├── example │ │ ├── README.md │ │ ├── _example.scss │ │ ├── macro.njk │ │ └── template.njk │ ├── nav │ │ ├── README.md │ │ ├── _nav.scss │ │ ├── macro.njk │ │ └── template.njk │ ├── panel │ │ ├── README.md │ │ ├── _panel.scss │ │ ├── macro.njk │ │ └── template.njk │ ├── subnav │ │ ├── README.md │ │ ├── _subnav.scss │ │ ├── macro.njk │ │ └── template.njk │ └── tabs │ │ ├── _tabs.scss │ │ └── tabs.js ├── routes │ ├── auto.js │ ├── index.js │ └── multi-file-upload.js ├── utils │ └── file-helper.js └── views │ ├── community │ ├── README.md │ ├── backlog │ │ ├── README.md │ │ └── index.html │ ├── contribution-criteria │ │ ├── README.md │ │ └── index.html │ ├── develop-a-component-or-pattern │ │ ├── README.md │ │ └── index.html │ ├── index.html │ ├── navigation.html │ └── propose-a-component-or-pattern │ │ ├── README.md │ │ └── index.html │ ├── components │ ├── README.md │ ├── add-another │ │ ├── README.md │ │ ├── examples │ │ │ └── default │ │ │ │ ├── index.html │ │ │ │ └── template.html │ │ └── index.html │ ├── badge │ │ ├── README.md │ │ ├── examples │ │ │ ├── complete │ │ │ │ ├── index.html │ │ │ │ └── template.html │ │ │ ├── default │ │ │ │ ├── index.html │ │ │ │ └── template.html │ │ │ └── urgent │ │ │ │ ├── index.html │ │ │ │ └── template.html │ │ └── index.html │ ├── banner │ │ ├── README.md │ │ ├── examples │ │ │ ├── default │ │ │ │ ├── index.html │ │ │ │ └── template.html │ │ │ ├── information │ │ │ │ ├── index.html │ │ │ │ └── template.html │ │ │ ├── success │ │ │ │ ├── index.html │ │ │ │ └── template.html │ │ │ └── warning │ │ │ │ ├── index.html │ │ │ │ └── template.html │ │ └── index.html │ ├── button-menu │ │ ├── README.md │ │ ├── examples │ │ │ ├── collapsible-alternative │ │ │ │ ├── index.html │ │ │ │ ├── scripts.html │ │ │ │ └── template.html │ │ │ ├── collapsible │ │ │ │ ├── index.html │ │ │ │ ├── scripts.html │ │ │ │ └── template.html │ │ │ └── default │ │ │ │ ├── index.html │ │ │ │ └── template.html │ │ └── index.html │ ├── currency-input │ │ ├── README.md │ │ ├── examples │ │ │ └── default │ │ │ │ ├── index.html │ │ │ │ └── template.html │ │ └── index.html │ ├── filter │ │ ├── README.md │ │ ├── examples │ │ │ └── default │ │ │ │ ├── index.html │ │ │ │ └── template.html │ │ └── index.html │ ├── form-validator │ │ ├── README.md │ │ ├── examples │ │ │ └── default │ │ │ │ ├── index.html │ │ │ │ ├── scripts.html │ │ │ │ └── template.html │ │ └── index.html │ ├── header │ │ ├── README.md │ │ ├── examples │ │ │ └── default │ │ │ │ ├── index.html │ │ │ │ └── template.html │ │ └── index.html │ ├── identity-bar │ │ ├── README.md │ │ ├── examples │ │ │ ├── default │ │ │ │ ├── index.html │ │ │ │ └── template.html │ │ │ ├── menu │ │ │ │ ├── index.html │ │ │ │ └── template.html │ │ │ ├── secondary-action-menu │ │ │ │ ├── index.html │ │ │ │ ├── scripts.html │ │ │ │ └── template.html │ │ │ └── toggle-menu │ │ │ │ ├── index.html │ │ │ │ ├── scripts.html │ │ │ │ └── template.html │ │ └── index.html │ ├── index.html │ ├── messages │ │ ├── README.md │ │ ├── examples │ │ │ └── default │ │ │ │ ├── index.html │ │ │ │ ├── styles.html │ │ │ │ └── template.html │ │ └── index.html │ ├── multi-file-upload │ │ ├── README.md │ │ ├── examples │ │ │ ├── default │ │ │ │ ├── index.html │ │ │ │ ├── scripts.html │ │ │ │ └── template.html │ │ │ ├── nojs-initial-state │ │ │ │ ├── index.html │ │ │ │ └── template.html │ │ │ └── nojs-multiple-errors │ │ │ │ ├── index.html │ │ │ │ └── template.html │ │ └── index.html │ ├── multi-select │ │ ├── README.md │ │ ├── examples │ │ │ └── default │ │ │ │ ├── index.html │ │ │ │ └── template.html │ │ └── index.html │ ├── navigation.html │ ├── notification-badge │ │ ├── README.md │ │ ├── examples │ │ │ └── default │ │ │ │ ├── index.html │ │ │ │ └── template.html │ │ └── index.html │ ├── organisation-switcher │ │ ├── README.md │ │ ├── examples │ │ │ └── default │ │ │ │ ├── index.html │ │ │ │ └── template.html │ │ └── index.html │ ├── page-header-actions │ │ ├── README.md │ │ ├── examples │ │ │ └── default │ │ │ │ ├── index.html │ │ │ │ └── template.html │ │ └── index.html │ ├── pagination │ │ ├── README.md │ │ ├── examples │ │ │ ├── default │ │ │ │ ├── index.html │ │ │ │ └── template.html │ │ │ └── prev-next │ │ │ │ ├── index.html │ │ │ │ └── template.html │ │ └── index.html │ ├── password-reveal │ │ ├── README.md │ │ ├── examples │ │ │ └── default │ │ │ │ ├── index.html │ │ │ │ └── template.html │ │ └── index.html │ ├── primary-navigation │ │ ├── README.md │ │ ├── examples │ │ │ ├── default │ │ │ │ ├── index.html │ │ │ │ └── template.html │ │ │ ├── inline-search │ │ │ │ ├── index.html │ │ │ │ └── template.html │ │ │ └── toggle-search │ │ │ │ ├── index.html │ │ │ │ └── template.html │ │ └── index.html │ ├── progress-bar │ │ ├── README.md │ │ ├── examples │ │ │ └── default │ │ │ │ ├── index.html │ │ │ │ └── template.html │ │ └── index.html │ ├── rich-text-editor │ │ ├── README.md │ │ ├── examples │ │ │ ├── default │ │ │ │ ├── index.html │ │ │ │ └── template.html │ │ │ └── formatting │ │ │ │ ├── index.html │ │ │ │ └── template.html │ │ └── index.html │ ├── search │ │ ├── README.md │ │ ├── examples │ │ │ └── default │ │ │ │ ├── index.html │ │ │ │ └── template.html │ │ └── index.html │ ├── side-navigation │ │ ├── README.md │ │ ├── examples │ │ │ ├── default │ │ │ │ ├── index.html │ │ │ │ └── template.html │ │ │ └── sections │ │ │ │ ├── index.html │ │ │ │ └── template.html │ │ └── index.html │ ├── sortable-table │ │ ├── README.md │ │ ├── examples │ │ │ └── default │ │ │ │ ├── index.html │ │ │ │ └── template.html │ │ └── index.html │ ├── sub-navigation │ │ ├── README.md │ │ ├── examples │ │ │ └── default │ │ │ │ ├── index.html │ │ │ │ └── template.html │ │ └── index.html │ ├── tag │ │ ├── README.md │ │ └── index.html │ ├── task-list │ │ ├── README.md │ │ ├── examples │ │ │ └── default │ │ │ │ ├── index.html │ │ │ │ └── template.html │ │ └── index.html │ └── timeline │ │ ├── README.md │ │ ├── examples │ │ └── default │ │ │ ├── index.html │ │ │ └── template.html │ │ └── index.html │ ├── content │ ├── README.md │ ├── content-1 │ │ ├── README.md │ │ └── index.html │ ├── content-2 │ │ ├── README.md │ │ └── index.html │ ├── content-3 │ │ ├── README.md │ │ └── index.html │ ├── content-4 │ │ ├── README.md │ │ └── index.html │ ├── content-5 │ │ ├── README.md │ │ └── index.html │ ├── index.html │ └── navigation.html │ ├── get-in-touch.html │ ├── get-started │ ├── README.md │ ├── common-needs-of-citizens │ │ ├── README.md │ │ └── index.html │ ├── common-needs-of-legal-professionals │ │ ├── README.md │ │ └── index.html │ ├── common-needs-of-the-judiciary │ │ ├── README.md │ │ └── index.html │ ├── deploying-your-prototype │ │ ├── README.md │ │ └── index.html │ ├── index.html │ ├── navigation.html │ ├── our-approach │ │ ├── README.md │ │ └── index.html │ ├── production │ │ ├── README.md │ │ └── index.html │ ├── prototyping │ │ ├── README.md │ │ └── index.html │ └── setting-up-javascript │ │ ├── README.md │ │ └── index.html │ ├── index.html │ ├── layouts │ ├── base.html │ ├── basic.html │ ├── code.html │ ├── default.html │ ├── guidance.html │ ├── landing.html │ ├── partials │ │ ├── back-to-top.html │ │ ├── contact-panel.html │ │ ├── crest-svg.html │ │ ├── deprecation-notice.html │ │ ├── footer.html │ │ ├── header.html │ │ ├── navigation.html │ │ ├── phase-banner.html │ │ └── scripts.html │ ├── prototype.html │ └── raw.html │ ├── patterns │ ├── README.md │ ├── accessibility-statement │ │ ├── README.md │ │ └── index.html │ ├── be-informed-of-downtime │ │ ├── README.md │ │ └── index.html │ ├── cookie-policy │ │ ├── README.md │ │ ├── examples │ │ │ └── default │ │ │ │ ├── index.html │ │ │ │ └── template.html │ │ └── index.html │ ├── filter-a-list │ │ ├── README.md │ │ ├── examples │ │ │ └── default │ │ │ │ ├── index.html │ │ │ │ ├── scripts.html │ │ │ │ └── template.html │ │ └── index.html │ ├── get-help │ │ ├── README.md │ │ └── index.html │ ├── index.html │ ├── manage-a-list │ │ ├── README.md │ │ ├── examples │ │ │ └── default │ │ │ │ ├── index.html │ │ │ │ ├── scripts.html │ │ │ │ └── template.html │ │ └── index.html │ ├── navigation.html │ ├── privacy-policy │ │ ├── README.md │ │ ├── examples │ │ │ └── default │ │ │ │ ├── index.html │ │ │ │ └── template.html │ │ └── index.html │ ├── search-for-something │ │ ├── README.md │ │ └── index.html │ ├── take-action │ │ ├── README.md │ │ └── index.html │ ├── task-list-pages │ │ ├── README.md │ │ └── index.html │ ├── terms-and-conditions │ │ ├── README.md │ │ ├── examples │ │ │ └── default │ │ │ │ ├── index.html │ │ │ │ └── template.html │ │ └── index.html │ └── upload-files │ │ ├── README.md │ │ ├── examples │ │ ├── add-another │ │ │ ├── index.html │ │ │ └── template.html │ │ ├── bulk-no-js-1 │ │ │ ├── index.html │ │ │ └── template.html │ │ ├── bulk-no-js-2 │ │ │ ├── index.html │ │ │ └── template.html │ │ ├── check │ │ │ ├── index.html │ │ │ └── template.html │ │ ├── delete-multiple │ │ │ ├── index.html │ │ │ └── template.html │ │ ├── delete-one │ │ │ ├── index.html │ │ │ └── template.html │ │ ├── upload-multiple │ │ │ ├── index.html │ │ │ └── template.html │ │ └── upload-single │ │ │ ├── index.html │ │ │ └── template.html │ │ └── index.html │ ├── principles │ ├── README.md │ ├── index.html │ ├── navigation.html │ ├── principle-1 │ │ ├── README.md │ │ └── index.html │ ├── principle-2 │ │ ├── README.md │ │ └── index.html │ └── principle-3 │ │ ├── README.md │ │ └── index.html │ └── styles │ ├── README.md │ ├── filter-layout │ ├── README.md │ ├── examples │ │ └── default │ │ │ ├── index.html │ │ │ └── template.html │ └── index.html │ ├── index.html │ ├── layout │ ├── README.md │ └── index.html │ └── navigation.html ├── gulp ├── clean.js ├── config.json ├── copy-assets.js ├── copy-component-javascript.js ├── sass.js ├── server.js └── watch.js ├── gulpfile.js ├── lib ├── cache.js ├── template.env └── utils.js ├── package.json └── server.js /.github/ISSUE_TEMPLATE/BUG_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/.github/ISSUE_TEMPLATE/BUG_REPORT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/BUG_FIX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/.github/PULL_REQUEST_TEMPLATE/BUG_FIX.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/DOCUMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/.github/PULL_REQUEST_TEMPLATE/DOCUMENTATION.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/FEATURE_CHANGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/.github/PULL_REQUEST_TEMPLATE/FEATURE_CHANGE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/PERFORMANCE_IMPROVEMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/.github/PULL_REQUEST_TEMPLATE/PERFORMANCE_IMPROVEMENT.md -------------------------------------------------------------------------------- /.github/workflows/pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/.github/workflows/pull-request.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | //registry.npmjs.org/:_authToken=$NPM_AUTH_TOKEN -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 10.15.1 -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | ## v0.0.1-alpha 4 | 5 | Initial release -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/LICENSE -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app.json -------------------------------------------------------------------------------- /app/assets/images/app-header-crest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/assets/images/app-header-crest.svg -------------------------------------------------------------------------------- /app/assets/images/app-icon-pointer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/assets/images/app-icon-pointer.svg -------------------------------------------------------------------------------- /app/assets/images/components/multi-file-upload/nojs-initial-state.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/assets/images/components/multi-file-upload/nojs-initial-state.png -------------------------------------------------------------------------------- /app/assets/images/components/multi-file-upload/nojs-multiple-errors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/assets/images/components/multi-file-upload/nojs-multiple-errors.png -------------------------------------------------------------------------------- /app/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/assets/images/favicon.ico -------------------------------------------------------------------------------- /app/assets/images/moj-apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/assets/images/moj-apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /app/assets/images/moj-apple-touch-icon-167x167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/assets/images/moj-apple-touch-icon-167x167.png -------------------------------------------------------------------------------- /app/assets/images/moj-apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/assets/images/moj-apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /app/assets/images/moj-apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/assets/images/moj-apple-touch-icon.png -------------------------------------------------------------------------------- /app/assets/images/moj-opengraph-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/assets/images/moj-opengraph-image.png -------------------------------------------------------------------------------- /app/assets/images/patterns/downtime-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/assets/images/patterns/downtime-warning.png -------------------------------------------------------------------------------- /app/assets/images/patterns/get-support-online.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/assets/images/patterns/get-support-online.png -------------------------------------------------------------------------------- /app/assets/images/patterns/receipt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/assets/images/patterns/receipt.jpg -------------------------------------------------------------------------------- /app/assets/images/patterns/take-action-identity-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/assets/images/patterns/take-action-identity-bar.png -------------------------------------------------------------------------------- /app/assets/images/patterns/take-action-in-page-buttons-above.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/assets/images/patterns/take-action-in-page-buttons-above.png -------------------------------------------------------------------------------- /app/assets/images/patterns/take-action-in-page-buttons-under.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/assets/images/patterns/take-action-in-page-buttons-under.png -------------------------------------------------------------------------------- /app/assets/images/patterns/take-action-page-header-actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/assets/images/patterns/take-action-page-header-actions.png -------------------------------------------------------------------------------- /app/assets/images/patterns/task-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/assets/images/patterns/task-list.png -------------------------------------------------------------------------------- /app/assets/images/patterns/upload-file-bulk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/assets/images/patterns/upload-file-bulk.png -------------------------------------------------------------------------------- /app/assets/images/patterns/upload-file-multiple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/assets/images/patterns/upload-file-multiple.png -------------------------------------------------------------------------------- /app/assets/images/patterns/upload-file-single.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/assets/images/patterns/upload-file-single.png -------------------------------------------------------------------------------- /app/assets/javascripts/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/assets/javascripts/all.js -------------------------------------------------------------------------------- /app/assets/javascripts/vendor/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/assets/javascripts/vendor/clipboard.min.js -------------------------------------------------------------------------------- /app/assets/javascripts/vendor/html5shiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/assets/javascripts/vendor/html5shiv.min.js -------------------------------------------------------------------------------- /app/assets/javascripts/vendor/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/assets/javascripts/vendor/jquery.min.js -------------------------------------------------------------------------------- /app/assets/sass/app/_app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/assets/sass/app/_app.scss -------------------------------------------------------------------------------- /app/assets/sass/app/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/assets/sass/app/_buttons.scss -------------------------------------------------------------------------------- /app/assets/sass/app/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/assets/sass/app/_header.scss -------------------------------------------------------------------------------- /app/assets/sass/app/_highlight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/assets/sass/app/_highlight.scss -------------------------------------------------------------------------------- /app/assets/sass/app/_markdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/assets/sass/app/_markdown.scss -------------------------------------------------------------------------------- /app/assets/sass/app/_masthead.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/assets/sass/app/_masthead.scss -------------------------------------------------------------------------------- /app/assets/sass/application-ie8.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/assets/sass/application-ie8.scss -------------------------------------------------------------------------------- /app/assets/sass/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/assets/sass/application.scss -------------------------------------------------------------------------------- /app/assets/sass/code-ie8.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/assets/sass/code-ie8.scss -------------------------------------------------------------------------------- /app/assets/sass/code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/assets/sass/code.scss -------------------------------------------------------------------------------- /app/assets/sass/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/assets/sass/mixins.scss -------------------------------------------------------------------------------- /app/assets/videos/get-support.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/assets/videos/get-support.mp4 -------------------------------------------------------------------------------- /app/assets/videos/identity-bar-actions.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/assets/videos/identity-bar-actions.mp4 -------------------------------------------------------------------------------- /app/assets/videos/in-page-actions.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/assets/videos/in-page-actions.mp4 -------------------------------------------------------------------------------- /app/assets/videos/manage-items-in-a-list.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/assets/videos/manage-items-in-a-list.mp4 -------------------------------------------------------------------------------- /app/assets/videos/page-header-actions.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/assets/videos/page-header-actions.mp4 -------------------------------------------------------------------------------- /app/assets/videos/search.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/assets/videos/search.mp4 -------------------------------------------------------------------------------- /app/components/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/components/_all.scss -------------------------------------------------------------------------------- /app/components/copy/copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/components/copy/copy.js -------------------------------------------------------------------------------- /app/components/example/README.md: -------------------------------------------------------------------------------- 1 | # Example -------------------------------------------------------------------------------- /app/components/example/_example.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/components/example/_example.scss -------------------------------------------------------------------------------- /app/components/example/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/components/example/macro.njk -------------------------------------------------------------------------------- /app/components/example/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/components/example/template.njk -------------------------------------------------------------------------------- /app/components/nav/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/components/nav/README.md -------------------------------------------------------------------------------- /app/components/nav/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/components/nav/_nav.scss -------------------------------------------------------------------------------- /app/components/nav/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/components/nav/macro.njk -------------------------------------------------------------------------------- /app/components/nav/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/components/nav/template.njk -------------------------------------------------------------------------------- /app/components/panel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/components/panel/README.md -------------------------------------------------------------------------------- /app/components/panel/_panel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/components/panel/_panel.scss -------------------------------------------------------------------------------- /app/components/panel/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/components/panel/macro.njk -------------------------------------------------------------------------------- /app/components/panel/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/components/panel/template.njk -------------------------------------------------------------------------------- /app/components/subnav/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/components/subnav/README.md -------------------------------------------------------------------------------- /app/components/subnav/_subnav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/components/subnav/_subnav.scss -------------------------------------------------------------------------------- /app/components/subnav/macro.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/components/subnav/macro.njk -------------------------------------------------------------------------------- /app/components/subnav/template.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/components/subnav/template.njk -------------------------------------------------------------------------------- /app/components/tabs/_tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/components/tabs/_tabs.scss -------------------------------------------------------------------------------- /app/components/tabs/tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/components/tabs/tabs.js -------------------------------------------------------------------------------- /app/routes/auto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/routes/auto.js -------------------------------------------------------------------------------- /app/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/routes/index.js -------------------------------------------------------------------------------- /app/routes/multi-file-upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/routes/multi-file-upload.js -------------------------------------------------------------------------------- /app/utils/file-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/utils/file-helper.js -------------------------------------------------------------------------------- /app/views/community/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/community/README.md -------------------------------------------------------------------------------- /app/views/community/backlog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/community/backlog/README.md -------------------------------------------------------------------------------- /app/views/community/backlog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/community/backlog/index.html -------------------------------------------------------------------------------- /app/views/community/contribution-criteria/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/community/contribution-criteria/README.md -------------------------------------------------------------------------------- /app/views/community/contribution-criteria/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/community/contribution-criteria/index.html -------------------------------------------------------------------------------- /app/views/community/develop-a-component-or-pattern/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/community/develop-a-component-or-pattern/README.md -------------------------------------------------------------------------------- /app/views/community/develop-a-component-or-pattern/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/community/develop-a-component-or-pattern/index.html -------------------------------------------------------------------------------- /app/views/community/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/community/index.html -------------------------------------------------------------------------------- /app/views/community/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/community/navigation.html -------------------------------------------------------------------------------- /app/views/community/propose-a-component-or-pattern/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/community/propose-a-component-or-pattern/README.md -------------------------------------------------------------------------------- /app/views/community/propose-a-component-or-pattern/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/community/propose-a-component-or-pattern/index.html -------------------------------------------------------------------------------- /app/views/components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/README.md -------------------------------------------------------------------------------- /app/views/components/add-another/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/add-another/README.md -------------------------------------------------------------------------------- /app/views/components/add-another/examples/default/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/add-another/examples/default/index.html -------------------------------------------------------------------------------- /app/views/components/add-another/examples/default/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/add-another/examples/default/template.html -------------------------------------------------------------------------------- /app/views/components/add-another/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/add-another/index.html -------------------------------------------------------------------------------- /app/views/components/badge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/badge/README.md -------------------------------------------------------------------------------- /app/views/components/badge/examples/complete/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/badge/examples/complete/index.html -------------------------------------------------------------------------------- /app/views/components/badge/examples/complete/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/badge/examples/complete/template.html -------------------------------------------------------------------------------- /app/views/components/badge/examples/default/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/badge/examples/default/index.html -------------------------------------------------------------------------------- /app/views/components/badge/examples/default/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/badge/examples/default/template.html -------------------------------------------------------------------------------- /app/views/components/badge/examples/urgent/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/badge/examples/urgent/index.html -------------------------------------------------------------------------------- /app/views/components/badge/examples/urgent/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/badge/examples/urgent/template.html -------------------------------------------------------------------------------- /app/views/components/badge/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/badge/index.html -------------------------------------------------------------------------------- /app/views/components/banner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/banner/README.md -------------------------------------------------------------------------------- /app/views/components/banner/examples/default/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/banner/examples/default/index.html -------------------------------------------------------------------------------- /app/views/components/banner/examples/default/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/banner/examples/default/template.html -------------------------------------------------------------------------------- /app/views/components/banner/examples/information/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/banner/examples/information/index.html -------------------------------------------------------------------------------- /app/views/components/banner/examples/information/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/banner/examples/information/template.html -------------------------------------------------------------------------------- /app/views/components/banner/examples/success/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/banner/examples/success/index.html -------------------------------------------------------------------------------- /app/views/components/banner/examples/success/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/banner/examples/success/template.html -------------------------------------------------------------------------------- /app/views/components/banner/examples/warning/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/banner/examples/warning/index.html -------------------------------------------------------------------------------- /app/views/components/banner/examples/warning/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/banner/examples/warning/template.html -------------------------------------------------------------------------------- /app/views/components/banner/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/banner/index.html -------------------------------------------------------------------------------- /app/views/components/button-menu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/button-menu/README.md -------------------------------------------------------------------------------- /app/views/components/button-menu/examples/collapsible-alternative/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/button-menu/examples/collapsible-alternative/index.html -------------------------------------------------------------------------------- /app/views/components/button-menu/examples/collapsible-alternative/scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/button-menu/examples/collapsible-alternative/scripts.html -------------------------------------------------------------------------------- /app/views/components/button-menu/examples/collapsible-alternative/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/button-menu/examples/collapsible-alternative/template.html -------------------------------------------------------------------------------- /app/views/components/button-menu/examples/collapsible/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/button-menu/examples/collapsible/index.html -------------------------------------------------------------------------------- /app/views/components/button-menu/examples/collapsible/scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/button-menu/examples/collapsible/scripts.html -------------------------------------------------------------------------------- /app/views/components/button-menu/examples/collapsible/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/button-menu/examples/collapsible/template.html -------------------------------------------------------------------------------- /app/views/components/button-menu/examples/default/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/button-menu/examples/default/index.html -------------------------------------------------------------------------------- /app/views/components/button-menu/examples/default/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/button-menu/examples/default/template.html -------------------------------------------------------------------------------- /app/views/components/button-menu/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/button-menu/index.html -------------------------------------------------------------------------------- /app/views/components/currency-input/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/currency-input/README.md -------------------------------------------------------------------------------- /app/views/components/currency-input/examples/default/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/currency-input/examples/default/index.html -------------------------------------------------------------------------------- /app/views/components/currency-input/examples/default/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/currency-input/examples/default/template.html -------------------------------------------------------------------------------- /app/views/components/currency-input/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/currency-input/index.html -------------------------------------------------------------------------------- /app/views/components/filter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/filter/README.md -------------------------------------------------------------------------------- /app/views/components/filter/examples/default/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/filter/examples/default/index.html -------------------------------------------------------------------------------- /app/views/components/filter/examples/default/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/filter/examples/default/template.html -------------------------------------------------------------------------------- /app/views/components/filter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/filter/index.html -------------------------------------------------------------------------------- /app/views/components/form-validator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/form-validator/README.md -------------------------------------------------------------------------------- /app/views/components/form-validator/examples/default/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/form-validator/examples/default/index.html -------------------------------------------------------------------------------- /app/views/components/form-validator/examples/default/scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/form-validator/examples/default/scripts.html -------------------------------------------------------------------------------- /app/views/components/form-validator/examples/default/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/form-validator/examples/default/template.html -------------------------------------------------------------------------------- /app/views/components/form-validator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/form-validator/index.html -------------------------------------------------------------------------------- /app/views/components/header/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/header/README.md -------------------------------------------------------------------------------- /app/views/components/header/examples/default/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/header/examples/default/index.html -------------------------------------------------------------------------------- /app/views/components/header/examples/default/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/header/examples/default/template.html -------------------------------------------------------------------------------- /app/views/components/header/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/header/index.html -------------------------------------------------------------------------------- /app/views/components/identity-bar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/identity-bar/README.md -------------------------------------------------------------------------------- /app/views/components/identity-bar/examples/default/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/identity-bar/examples/default/index.html -------------------------------------------------------------------------------- /app/views/components/identity-bar/examples/default/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/identity-bar/examples/default/template.html -------------------------------------------------------------------------------- /app/views/components/identity-bar/examples/menu/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/identity-bar/examples/menu/index.html -------------------------------------------------------------------------------- /app/views/components/identity-bar/examples/menu/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/identity-bar/examples/menu/template.html -------------------------------------------------------------------------------- /app/views/components/identity-bar/examples/secondary-action-menu/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/identity-bar/examples/secondary-action-menu/index.html -------------------------------------------------------------------------------- /app/views/components/identity-bar/examples/secondary-action-menu/scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/identity-bar/examples/secondary-action-menu/scripts.html -------------------------------------------------------------------------------- /app/views/components/identity-bar/examples/secondary-action-menu/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/identity-bar/examples/secondary-action-menu/template.html -------------------------------------------------------------------------------- /app/views/components/identity-bar/examples/toggle-menu/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/identity-bar/examples/toggle-menu/index.html -------------------------------------------------------------------------------- /app/views/components/identity-bar/examples/toggle-menu/scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/identity-bar/examples/toggle-menu/scripts.html -------------------------------------------------------------------------------- /app/views/components/identity-bar/examples/toggle-menu/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/identity-bar/examples/toggle-menu/template.html -------------------------------------------------------------------------------- /app/views/components/identity-bar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/identity-bar/index.html -------------------------------------------------------------------------------- /app/views/components/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/index.html -------------------------------------------------------------------------------- /app/views/components/messages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/messages/README.md -------------------------------------------------------------------------------- /app/views/components/messages/examples/default/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/messages/examples/default/index.html -------------------------------------------------------------------------------- /app/views/components/messages/examples/default/styles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/messages/examples/default/styles.html -------------------------------------------------------------------------------- /app/views/components/messages/examples/default/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/messages/examples/default/template.html -------------------------------------------------------------------------------- /app/views/components/messages/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/messages/index.html -------------------------------------------------------------------------------- /app/views/components/multi-file-upload/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/multi-file-upload/README.md -------------------------------------------------------------------------------- /app/views/components/multi-file-upload/examples/default/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/multi-file-upload/examples/default/index.html -------------------------------------------------------------------------------- /app/views/components/multi-file-upload/examples/default/scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/multi-file-upload/examples/default/scripts.html -------------------------------------------------------------------------------- /app/views/components/multi-file-upload/examples/default/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/multi-file-upload/examples/default/template.html -------------------------------------------------------------------------------- /app/views/components/multi-file-upload/examples/nojs-initial-state/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/multi-file-upload/examples/nojs-initial-state/index.html -------------------------------------------------------------------------------- /app/views/components/multi-file-upload/examples/nojs-initial-state/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/multi-file-upload/examples/nojs-initial-state/template.html -------------------------------------------------------------------------------- /app/views/components/multi-file-upload/examples/nojs-multiple-errors/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/multi-file-upload/examples/nojs-multiple-errors/index.html -------------------------------------------------------------------------------- /app/views/components/multi-file-upload/examples/nojs-multiple-errors/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/multi-file-upload/examples/nojs-multiple-errors/template.html -------------------------------------------------------------------------------- /app/views/components/multi-file-upload/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/multi-file-upload/index.html -------------------------------------------------------------------------------- /app/views/components/multi-select/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/multi-select/README.md -------------------------------------------------------------------------------- /app/views/components/multi-select/examples/default/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/multi-select/examples/default/index.html -------------------------------------------------------------------------------- /app/views/components/multi-select/examples/default/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/multi-select/examples/default/template.html -------------------------------------------------------------------------------- /app/views/components/multi-select/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/multi-select/index.html -------------------------------------------------------------------------------- /app/views/components/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/navigation.html -------------------------------------------------------------------------------- /app/views/components/notification-badge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/notification-badge/README.md -------------------------------------------------------------------------------- /app/views/components/notification-badge/examples/default/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/notification-badge/examples/default/index.html -------------------------------------------------------------------------------- /app/views/components/notification-badge/examples/default/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/notification-badge/examples/default/template.html -------------------------------------------------------------------------------- /app/views/components/notification-badge/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/notification-badge/index.html -------------------------------------------------------------------------------- /app/views/components/organisation-switcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/organisation-switcher/README.md -------------------------------------------------------------------------------- /app/views/components/organisation-switcher/examples/default/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/organisation-switcher/examples/default/index.html -------------------------------------------------------------------------------- /app/views/components/organisation-switcher/examples/default/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/organisation-switcher/examples/default/template.html -------------------------------------------------------------------------------- /app/views/components/organisation-switcher/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/organisation-switcher/index.html -------------------------------------------------------------------------------- /app/views/components/page-header-actions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/page-header-actions/README.md -------------------------------------------------------------------------------- /app/views/components/page-header-actions/examples/default/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/page-header-actions/examples/default/index.html -------------------------------------------------------------------------------- /app/views/components/page-header-actions/examples/default/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/page-header-actions/examples/default/template.html -------------------------------------------------------------------------------- /app/views/components/page-header-actions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/page-header-actions/index.html -------------------------------------------------------------------------------- /app/views/components/pagination/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/pagination/README.md -------------------------------------------------------------------------------- /app/views/components/pagination/examples/default/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/pagination/examples/default/index.html -------------------------------------------------------------------------------- /app/views/components/pagination/examples/default/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/pagination/examples/default/template.html -------------------------------------------------------------------------------- /app/views/components/pagination/examples/prev-next/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/pagination/examples/prev-next/index.html -------------------------------------------------------------------------------- /app/views/components/pagination/examples/prev-next/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/pagination/examples/prev-next/template.html -------------------------------------------------------------------------------- /app/views/components/pagination/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/pagination/index.html -------------------------------------------------------------------------------- /app/views/components/password-reveal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/password-reveal/README.md -------------------------------------------------------------------------------- /app/views/components/password-reveal/examples/default/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/password-reveal/examples/default/index.html -------------------------------------------------------------------------------- /app/views/components/password-reveal/examples/default/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/password-reveal/examples/default/template.html -------------------------------------------------------------------------------- /app/views/components/password-reveal/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/password-reveal/index.html -------------------------------------------------------------------------------- /app/views/components/primary-navigation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/primary-navigation/README.md -------------------------------------------------------------------------------- /app/views/components/primary-navigation/examples/default/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/primary-navigation/examples/default/index.html -------------------------------------------------------------------------------- /app/views/components/primary-navigation/examples/default/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/primary-navigation/examples/default/template.html -------------------------------------------------------------------------------- /app/views/components/primary-navigation/examples/inline-search/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/primary-navigation/examples/inline-search/index.html -------------------------------------------------------------------------------- /app/views/components/primary-navigation/examples/inline-search/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/primary-navigation/examples/inline-search/template.html -------------------------------------------------------------------------------- /app/views/components/primary-navigation/examples/toggle-search/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/primary-navigation/examples/toggle-search/index.html -------------------------------------------------------------------------------- /app/views/components/primary-navigation/examples/toggle-search/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/primary-navigation/examples/toggle-search/template.html -------------------------------------------------------------------------------- /app/views/components/primary-navigation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/primary-navigation/index.html -------------------------------------------------------------------------------- /app/views/components/progress-bar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/progress-bar/README.md -------------------------------------------------------------------------------- /app/views/components/progress-bar/examples/default/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/progress-bar/examples/default/index.html -------------------------------------------------------------------------------- /app/views/components/progress-bar/examples/default/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/progress-bar/examples/default/template.html -------------------------------------------------------------------------------- /app/views/components/progress-bar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/progress-bar/index.html -------------------------------------------------------------------------------- /app/views/components/rich-text-editor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/rich-text-editor/README.md -------------------------------------------------------------------------------- /app/views/components/rich-text-editor/examples/default/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/rich-text-editor/examples/default/index.html -------------------------------------------------------------------------------- /app/views/components/rich-text-editor/examples/default/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/rich-text-editor/examples/default/template.html -------------------------------------------------------------------------------- /app/views/components/rich-text-editor/examples/formatting/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/rich-text-editor/examples/formatting/index.html -------------------------------------------------------------------------------- /app/views/components/rich-text-editor/examples/formatting/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/rich-text-editor/examples/formatting/template.html -------------------------------------------------------------------------------- /app/views/components/rich-text-editor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/rich-text-editor/index.html -------------------------------------------------------------------------------- /app/views/components/search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/search/README.md -------------------------------------------------------------------------------- /app/views/components/search/examples/default/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/search/examples/default/index.html -------------------------------------------------------------------------------- /app/views/components/search/examples/default/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/search/examples/default/template.html -------------------------------------------------------------------------------- /app/views/components/search/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/search/index.html -------------------------------------------------------------------------------- /app/views/components/side-navigation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/side-navigation/README.md -------------------------------------------------------------------------------- /app/views/components/side-navigation/examples/default/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/side-navigation/examples/default/index.html -------------------------------------------------------------------------------- /app/views/components/side-navigation/examples/default/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/side-navigation/examples/default/template.html -------------------------------------------------------------------------------- /app/views/components/side-navigation/examples/sections/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/side-navigation/examples/sections/index.html -------------------------------------------------------------------------------- /app/views/components/side-navigation/examples/sections/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/side-navigation/examples/sections/template.html -------------------------------------------------------------------------------- /app/views/components/side-navigation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/side-navigation/index.html -------------------------------------------------------------------------------- /app/views/components/sortable-table/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/sortable-table/README.md -------------------------------------------------------------------------------- /app/views/components/sortable-table/examples/default/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/sortable-table/examples/default/index.html -------------------------------------------------------------------------------- /app/views/components/sortable-table/examples/default/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/sortable-table/examples/default/template.html -------------------------------------------------------------------------------- /app/views/components/sortable-table/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/sortable-table/index.html -------------------------------------------------------------------------------- /app/views/components/sub-navigation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/sub-navigation/README.md -------------------------------------------------------------------------------- /app/views/components/sub-navigation/examples/default/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/sub-navigation/examples/default/index.html -------------------------------------------------------------------------------- /app/views/components/sub-navigation/examples/default/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/sub-navigation/examples/default/template.html -------------------------------------------------------------------------------- /app/views/components/sub-navigation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/sub-navigation/index.html -------------------------------------------------------------------------------- /app/views/components/tag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/tag/README.md -------------------------------------------------------------------------------- /app/views/components/tag/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/tag/index.html -------------------------------------------------------------------------------- /app/views/components/task-list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/task-list/README.md -------------------------------------------------------------------------------- /app/views/components/task-list/examples/default/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/task-list/examples/default/index.html -------------------------------------------------------------------------------- /app/views/components/task-list/examples/default/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/task-list/examples/default/template.html -------------------------------------------------------------------------------- /app/views/components/task-list/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/task-list/index.html -------------------------------------------------------------------------------- /app/views/components/timeline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/timeline/README.md -------------------------------------------------------------------------------- /app/views/components/timeline/examples/default/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/timeline/examples/default/index.html -------------------------------------------------------------------------------- /app/views/components/timeline/examples/default/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/timeline/examples/default/template.html -------------------------------------------------------------------------------- /app/views/components/timeline/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/components/timeline/index.html -------------------------------------------------------------------------------- /app/views/content/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/content/README.md -------------------------------------------------------------------------------- /app/views/content/content-1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/content/content-1/README.md -------------------------------------------------------------------------------- /app/views/content/content-1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/content/content-1/index.html -------------------------------------------------------------------------------- /app/views/content/content-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/content/content-2/README.md -------------------------------------------------------------------------------- /app/views/content/content-2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/content/content-2/index.html -------------------------------------------------------------------------------- /app/views/content/content-3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/content/content-3/README.md -------------------------------------------------------------------------------- /app/views/content/content-3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/content/content-3/index.html -------------------------------------------------------------------------------- /app/views/content/content-4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/content/content-4/README.md -------------------------------------------------------------------------------- /app/views/content/content-4/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/content/content-4/index.html -------------------------------------------------------------------------------- /app/views/content/content-5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/content/content-5/README.md -------------------------------------------------------------------------------- /app/views/content/content-5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/content/content-5/index.html -------------------------------------------------------------------------------- /app/views/content/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/content/index.html -------------------------------------------------------------------------------- /app/views/content/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/content/navigation.html -------------------------------------------------------------------------------- /app/views/get-in-touch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/get-in-touch.html -------------------------------------------------------------------------------- /app/views/get-started/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/get-started/README.md -------------------------------------------------------------------------------- /app/views/get-started/common-needs-of-citizens/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/get-started/common-needs-of-citizens/README.md -------------------------------------------------------------------------------- /app/views/get-started/common-needs-of-citizens/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/get-started/common-needs-of-citizens/index.html -------------------------------------------------------------------------------- /app/views/get-started/common-needs-of-legal-professionals/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/get-started/common-needs-of-legal-professionals/README.md -------------------------------------------------------------------------------- /app/views/get-started/common-needs-of-legal-professionals/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/get-started/common-needs-of-legal-professionals/index.html -------------------------------------------------------------------------------- /app/views/get-started/common-needs-of-the-judiciary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/get-started/common-needs-of-the-judiciary/README.md -------------------------------------------------------------------------------- /app/views/get-started/common-needs-of-the-judiciary/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/get-started/common-needs-of-the-judiciary/index.html -------------------------------------------------------------------------------- /app/views/get-started/deploying-your-prototype/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/get-started/deploying-your-prototype/README.md -------------------------------------------------------------------------------- /app/views/get-started/deploying-your-prototype/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/get-started/deploying-your-prototype/index.html -------------------------------------------------------------------------------- /app/views/get-started/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/get-started/index.html -------------------------------------------------------------------------------- /app/views/get-started/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/get-started/navigation.html -------------------------------------------------------------------------------- /app/views/get-started/our-approach/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/get-started/our-approach/README.md -------------------------------------------------------------------------------- /app/views/get-started/our-approach/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/get-started/our-approach/index.html -------------------------------------------------------------------------------- /app/views/get-started/production/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/get-started/production/README.md -------------------------------------------------------------------------------- /app/views/get-started/production/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/get-started/production/index.html -------------------------------------------------------------------------------- /app/views/get-started/prototyping/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/get-started/prototyping/README.md -------------------------------------------------------------------------------- /app/views/get-started/prototyping/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/get-started/prototyping/index.html -------------------------------------------------------------------------------- /app/views/get-started/setting-up-javascript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/get-started/setting-up-javascript/README.md -------------------------------------------------------------------------------- /app/views/get-started/setting-up-javascript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/get-started/setting-up-javascript/index.html -------------------------------------------------------------------------------- /app/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/index.html -------------------------------------------------------------------------------- /app/views/layouts/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/layouts/base.html -------------------------------------------------------------------------------- /app/views/layouts/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/layouts/basic.html -------------------------------------------------------------------------------- /app/views/layouts/code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/layouts/code.html -------------------------------------------------------------------------------- /app/views/layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/layouts/default.html -------------------------------------------------------------------------------- /app/views/layouts/guidance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/layouts/guidance.html -------------------------------------------------------------------------------- /app/views/layouts/landing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/layouts/landing.html -------------------------------------------------------------------------------- /app/views/layouts/partials/back-to-top.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/layouts/partials/back-to-top.html -------------------------------------------------------------------------------- /app/views/layouts/partials/contact-panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/layouts/partials/contact-panel.html -------------------------------------------------------------------------------- /app/views/layouts/partials/crest-svg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/layouts/partials/crest-svg.html -------------------------------------------------------------------------------- /app/views/layouts/partials/deprecation-notice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/layouts/partials/deprecation-notice.html -------------------------------------------------------------------------------- /app/views/layouts/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/layouts/partials/footer.html -------------------------------------------------------------------------------- /app/views/layouts/partials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/layouts/partials/header.html -------------------------------------------------------------------------------- /app/views/layouts/partials/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/layouts/partials/navigation.html -------------------------------------------------------------------------------- /app/views/layouts/partials/phase-banner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/layouts/partials/phase-banner.html -------------------------------------------------------------------------------- /app/views/layouts/partials/scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/layouts/partials/scripts.html -------------------------------------------------------------------------------- /app/views/layouts/prototype.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/layouts/prototype.html -------------------------------------------------------------------------------- /app/views/layouts/raw.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/layouts/raw.html -------------------------------------------------------------------------------- /app/views/patterns/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/patterns/README.md -------------------------------------------------------------------------------- /app/views/patterns/accessibility-statement/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/patterns/accessibility-statement/README.md -------------------------------------------------------------------------------- /app/views/patterns/accessibility-statement/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/patterns/accessibility-statement/index.html -------------------------------------------------------------------------------- /app/views/patterns/be-informed-of-downtime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/patterns/be-informed-of-downtime/README.md -------------------------------------------------------------------------------- /app/views/patterns/be-informed-of-downtime/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/patterns/be-informed-of-downtime/index.html -------------------------------------------------------------------------------- /app/views/patterns/cookie-policy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/patterns/cookie-policy/README.md -------------------------------------------------------------------------------- /app/views/patterns/cookie-policy/examples/default/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/patterns/cookie-policy/examples/default/index.html -------------------------------------------------------------------------------- /app/views/patterns/cookie-policy/examples/default/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/patterns/cookie-policy/examples/default/template.html -------------------------------------------------------------------------------- /app/views/patterns/cookie-policy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/patterns/cookie-policy/index.html -------------------------------------------------------------------------------- /app/views/patterns/filter-a-list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/patterns/filter-a-list/README.md -------------------------------------------------------------------------------- /app/views/patterns/filter-a-list/examples/default/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/patterns/filter-a-list/examples/default/index.html -------------------------------------------------------------------------------- /app/views/patterns/filter-a-list/examples/default/scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/patterns/filter-a-list/examples/default/scripts.html -------------------------------------------------------------------------------- /app/views/patterns/filter-a-list/examples/default/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/patterns/filter-a-list/examples/default/template.html -------------------------------------------------------------------------------- /app/views/patterns/filter-a-list/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/patterns/filter-a-list/index.html -------------------------------------------------------------------------------- /app/views/patterns/get-help/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/patterns/get-help/README.md -------------------------------------------------------------------------------- /app/views/patterns/get-help/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/patterns/get-help/index.html -------------------------------------------------------------------------------- /app/views/patterns/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/patterns/index.html -------------------------------------------------------------------------------- /app/views/patterns/manage-a-list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/patterns/manage-a-list/README.md -------------------------------------------------------------------------------- /app/views/patterns/manage-a-list/examples/default/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/patterns/manage-a-list/examples/default/index.html -------------------------------------------------------------------------------- /app/views/patterns/manage-a-list/examples/default/scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/patterns/manage-a-list/examples/default/scripts.html -------------------------------------------------------------------------------- /app/views/patterns/manage-a-list/examples/default/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/patterns/manage-a-list/examples/default/template.html -------------------------------------------------------------------------------- /app/views/patterns/manage-a-list/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/patterns/manage-a-list/index.html -------------------------------------------------------------------------------- /app/views/patterns/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/patterns/navigation.html -------------------------------------------------------------------------------- /app/views/patterns/privacy-policy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/patterns/privacy-policy/README.md -------------------------------------------------------------------------------- /app/views/patterns/privacy-policy/examples/default/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/patterns/privacy-policy/examples/default/index.html -------------------------------------------------------------------------------- /app/views/patterns/privacy-policy/examples/default/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/patterns/privacy-policy/examples/default/template.html -------------------------------------------------------------------------------- /app/views/patterns/privacy-policy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/patterns/privacy-policy/index.html -------------------------------------------------------------------------------- /app/views/patterns/search-for-something/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/patterns/search-for-something/README.md -------------------------------------------------------------------------------- /app/views/patterns/search-for-something/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/patterns/search-for-something/index.html -------------------------------------------------------------------------------- /app/views/patterns/take-action/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/patterns/take-action/README.md -------------------------------------------------------------------------------- /app/views/patterns/take-action/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/patterns/take-action/index.html -------------------------------------------------------------------------------- /app/views/patterns/task-list-pages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/patterns/task-list-pages/README.md -------------------------------------------------------------------------------- /app/views/patterns/task-list-pages/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/patterns/task-list-pages/index.html -------------------------------------------------------------------------------- /app/views/patterns/terms-and-conditions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/patterns/terms-and-conditions/README.md -------------------------------------------------------------------------------- /app/views/patterns/terms-and-conditions/examples/default/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/patterns/terms-and-conditions/examples/default/index.html -------------------------------------------------------------------------------- /app/views/patterns/terms-and-conditions/examples/default/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/patterns/terms-and-conditions/examples/default/template.html -------------------------------------------------------------------------------- /app/views/patterns/terms-and-conditions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/patterns/terms-and-conditions/index.html -------------------------------------------------------------------------------- /app/views/patterns/upload-files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/patterns/upload-files/README.md -------------------------------------------------------------------------------- /app/views/patterns/upload-files/examples/add-another/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/patterns/upload-files/examples/add-another/index.html -------------------------------------------------------------------------------- /app/views/patterns/upload-files/examples/add-another/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/patterns/upload-files/examples/add-another/template.html -------------------------------------------------------------------------------- /app/views/patterns/upload-files/examples/bulk-no-js-1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/patterns/upload-files/examples/bulk-no-js-1/index.html -------------------------------------------------------------------------------- /app/views/patterns/upload-files/examples/bulk-no-js-1/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/patterns/upload-files/examples/bulk-no-js-1/template.html -------------------------------------------------------------------------------- /app/views/patterns/upload-files/examples/bulk-no-js-2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/patterns/upload-files/examples/bulk-no-js-2/index.html -------------------------------------------------------------------------------- /app/views/patterns/upload-files/examples/bulk-no-js-2/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/patterns/upload-files/examples/bulk-no-js-2/template.html -------------------------------------------------------------------------------- /app/views/patterns/upload-files/examples/check/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/patterns/upload-files/examples/check/index.html -------------------------------------------------------------------------------- /app/views/patterns/upload-files/examples/check/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/patterns/upload-files/examples/check/template.html -------------------------------------------------------------------------------- /app/views/patterns/upload-files/examples/delete-multiple/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/patterns/upload-files/examples/delete-multiple/index.html -------------------------------------------------------------------------------- /app/views/patterns/upload-files/examples/delete-multiple/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/patterns/upload-files/examples/delete-multiple/template.html -------------------------------------------------------------------------------- /app/views/patterns/upload-files/examples/delete-one/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/patterns/upload-files/examples/delete-one/index.html -------------------------------------------------------------------------------- /app/views/patterns/upload-files/examples/delete-one/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/patterns/upload-files/examples/delete-one/template.html -------------------------------------------------------------------------------- /app/views/patterns/upload-files/examples/upload-multiple/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/patterns/upload-files/examples/upload-multiple/index.html -------------------------------------------------------------------------------- /app/views/patterns/upload-files/examples/upload-multiple/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/patterns/upload-files/examples/upload-multiple/template.html -------------------------------------------------------------------------------- /app/views/patterns/upload-files/examples/upload-single/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/patterns/upload-files/examples/upload-single/index.html -------------------------------------------------------------------------------- /app/views/patterns/upload-files/examples/upload-single/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/patterns/upload-files/examples/upload-single/template.html -------------------------------------------------------------------------------- /app/views/patterns/upload-files/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/patterns/upload-files/index.html -------------------------------------------------------------------------------- /app/views/principles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/principles/README.md -------------------------------------------------------------------------------- /app/views/principles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/principles/index.html -------------------------------------------------------------------------------- /app/views/principles/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/principles/navigation.html -------------------------------------------------------------------------------- /app/views/principles/principle-1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/principles/principle-1/README.md -------------------------------------------------------------------------------- /app/views/principles/principle-1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/principles/principle-1/index.html -------------------------------------------------------------------------------- /app/views/principles/principle-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/principles/principle-2/README.md -------------------------------------------------------------------------------- /app/views/principles/principle-2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/principles/principle-2/index.html -------------------------------------------------------------------------------- /app/views/principles/principle-3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/principles/principle-3/README.md -------------------------------------------------------------------------------- /app/views/principles/principle-3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/principles/principle-3/index.html -------------------------------------------------------------------------------- /app/views/styles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/styles/README.md -------------------------------------------------------------------------------- /app/views/styles/filter-layout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/styles/filter-layout/README.md -------------------------------------------------------------------------------- /app/views/styles/filter-layout/examples/default/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/styles/filter-layout/examples/default/index.html -------------------------------------------------------------------------------- /app/views/styles/filter-layout/examples/default/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/styles/filter-layout/examples/default/template.html -------------------------------------------------------------------------------- /app/views/styles/filter-layout/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/styles/filter-layout/index.html -------------------------------------------------------------------------------- /app/views/styles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/styles/index.html -------------------------------------------------------------------------------- /app/views/styles/layout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/styles/layout/README.md -------------------------------------------------------------------------------- /app/views/styles/layout/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/styles/layout/index.html -------------------------------------------------------------------------------- /app/views/styles/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/app/views/styles/navigation.html -------------------------------------------------------------------------------- /gulp/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/gulp/clean.js -------------------------------------------------------------------------------- /gulp/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/gulp/config.json -------------------------------------------------------------------------------- /gulp/copy-assets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/gulp/copy-assets.js -------------------------------------------------------------------------------- /gulp/copy-component-javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/gulp/copy-component-javascript.js -------------------------------------------------------------------------------- /gulp/sass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/gulp/sass.js -------------------------------------------------------------------------------- /gulp/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/gulp/server.js -------------------------------------------------------------------------------- /gulp/watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/gulp/watch.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/gulpfile.js -------------------------------------------------------------------------------- /lib/cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/lib/cache.js -------------------------------------------------------------------------------- /lib/template.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/lib/template.env -------------------------------------------------------------------------------- /lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/lib/utils.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/package.json -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ministryofjustice/moj-design-system/HEAD/server.js --------------------------------------------------------------------------------