├── .cypress └── support │ └── index.js ├── .github ├── actions │ ├── build-app │ │ └── action.yml │ ├── deploy-to-heroku │ │ └── action.yml │ ├── deploy-to-netlify │ │ └── action.yml │ ├── publish │ │ └── action.yml │ ├── scan-app │ │ └── action.yml │ ├── scan-code │ │ └── action.yml │ ├── scan-dependencies │ │ └── action.yml │ ├── setup │ │ └── action.yml │ ├── test-app │ │ └── action.yml │ ├── test-code │ │ └── action.yml │ └── update-built-files │ │ └── action.yml └── workflows │ ├── change-assurance.yml │ ├── deploy-to-heroku.yml │ ├── deploy-to-netlify.yml │ ├── deploy.yml │ ├── publish.yml │ ├── static-security-analysis.yml │ └── update-built-files.yml ├── .gitignore ├── .jest-results.json ├── .jest ├── mocks │ ├── file.js │ └── style.js └── setupAfterEnv.js ├── .npm └── version.sh ├── .storybook ├── decorators.tsx ├── main.ts ├── manager.ts └── preview.ts ├── .tmuxrc ├── .zap └── rules.tsv ├── LICENSE ├── Makefile ├── README.md ├── apps ├── README.md ├── govuk-docs-old │ ├── .dockerignore │ ├── .gitignore │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── aws.serverless.yml │ ├── cypress.config.mjs │ ├── feat │ │ └── home.spec.js │ ├── jest.config.js │ ├── package.json │ ├── pages │ ├── plopfile.mjs │ ├── src │ │ ├── client │ │ │ └── index.ts │ │ ├── common │ │ │ ├── app-wrap.tsx │ │ │ ├── app.scss │ │ │ ├── config.ts │ │ │ ├── error-page.tsx │ │ │ ├── loading-page.tsx │ │ │ ├── page-loader.ts │ │ │ ├── page-wrap.tsx │ │ │ ├── pages │ │ │ │ ├── components.tsx │ │ │ │ ├── contributing.tsx │ │ │ │ ├── design-decisions.tsx │ │ │ │ ├── get-started.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── result.tsx │ │ │ │ ├── sitemap.tsx │ │ │ │ ├── styles.tsx │ │ │ │ └── working-on-your-project.tsx │ │ │ └── stories.ts │ │ ├── mdx.d.ts │ │ └── server │ │ │ ├── config.ts │ │ │ ├── dev.ts │ │ │ ├── httpd.ts │ │ │ ├── index.ts │ │ │ └── readiness.ts │ ├── test.Dockerfile │ ├── tsconfig.json │ ├── webpack.config.d.mts │ └── webpack.config.mjs ├── govuk-docs │ ├── .dockerignore │ ├── .gitignore │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── aws-lambda-entry.js │ ├── cypress.config.mjs │ ├── feat │ │ └── home.spec.js │ ├── jest.config.cjs │ ├── lambda.Dockerfile │ ├── package.json │ ├── public │ │ ├── apple-touch-icon-152x152.png │ │ ├── apple-touch-icon-167x167.png │ │ ├── apple-touch-icon-180x180.png │ │ ├── apple-touch-icon.png │ │ ├── favicon.ico │ │ └── opengraph-image.png │ ├── react-router.config.ts │ ├── src │ │ ├── app │ │ │ ├── app.scss │ │ │ ├── config.ts │ │ │ ├── entry.client.tsx │ │ │ ├── entry.server.tsx │ │ │ ├── mdx.d.ts │ │ │ ├── root.tsx │ │ │ ├── routes.ts │ │ │ ├── routes │ │ │ │ ├── _index.tsx │ │ │ │ ├── components.$id.tsx │ │ │ │ ├── components.tsx │ │ │ │ ├── contributing.tsx │ │ │ │ ├── design-decisions.tsx │ │ │ │ ├── get-started.tsx │ │ │ │ ├── result.tsx │ │ │ │ ├── sitemap.tsx │ │ │ │ ├── styles.$id.tsx │ │ │ │ ├── styles.tsx │ │ │ │ └── working-on-your-project.tsx │ │ │ └── stories.ts │ │ └── server │ │ │ ├── config.ts │ │ │ ├── dev.ts │ │ │ ├── httpd.ts │ │ │ ├── index.ts │ │ │ └── server-build.d.ts │ ├── test.Dockerfile │ ├── tsconfig.json │ ├── vite.config.server.ts │ └── vite.config.ts ├── govuk-template │ ├── .dockerignore │ ├── .gitignore │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── aws.serverless.yml │ ├── cypress.config.mjs │ ├── feat │ │ ├── 404.spec.js │ │ ├── auth.spec.js │ │ ├── config.js │ │ ├── graphql.spec.js │ │ ├── home.spec.js │ │ ├── html.spec.js │ │ ├── md.spec.js │ │ └── mdx.spec.js │ ├── jest.config.js │ ├── package.json │ ├── pages │ ├── plopfile.mjs │ ├── src │ │ ├── client │ │ │ └── index.ts │ │ ├── common │ │ │ ├── app-wrap.tsx │ │ │ ├── app.scss │ │ │ ├── config.ts │ │ │ ├── error-page.tsx │ │ │ ├── loading-page.tsx │ │ │ ├── page-loader.ts │ │ │ ├── page-wrap.tsx │ │ │ └── pages │ │ │ │ ├── forms.tsx │ │ │ │ ├── graphql-test.tsx │ │ │ │ ├── html.html │ │ │ │ ├── index.tsx │ │ │ │ ├── md.md │ │ │ │ ├── mdx.mdx │ │ │ │ ├── poc.tsx │ │ │ │ ├── result.tsx │ │ │ │ ├── search.tsx │ │ │ │ ├── sitemap.tsx │ │ │ │ ├── sub │ │ │ │ ├── index.tsx │ │ │ │ └── two.tsx │ │ │ │ └── user-info.tsx │ │ └── server │ │ │ ├── config.ts │ │ │ ├── dev.ts │ │ │ ├── graphql.ts │ │ │ ├── httpd.ts │ │ │ ├── index.ts │ │ │ └── readiness.ts │ ├── test.Dockerfile │ ├── tsconfig.json │ ├── webpack.config.d.mts │ └── webpack.config.mjs ├── next-example │ ├── .gitignore │ ├── README.md │ ├── cypress.config.mjs │ ├── feat │ │ └── home.spec.js │ ├── jest.config.js │ ├── next.config.ts │ ├── package.json │ ├── public │ │ ├── apple-icon.png │ │ ├── apple-icon152.png │ │ ├── apple-icon167.png │ │ ├── apple-icon180.png │ │ └── opengraph-image.png │ ├── src │ │ ├── app │ │ │ ├── favicon.ico │ │ │ ├── feedback │ │ │ │ └── page.tsx │ │ │ ├── four │ │ │ │ └── page.tsx │ │ │ ├── layout.tsx │ │ │ ├── one │ │ │ │ ├── page.tsx │ │ │ │ └── two │ │ │ │ │ └── page.tsx │ │ │ ├── page.tsx │ │ │ └── three │ │ │ │ └── page.tsx │ │ └── components │ │ │ └── AddBodyClass.tsx │ └── tsconfig.json └── remix-example │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── README.md │ ├── app │ ├── entry.client.tsx │ ├── entry.server.tsx │ ├── root.tsx │ ├── routes │ │ ├── _index.tsx │ │ ├── four.tsx │ │ ├── one._index.tsx │ │ ├── one.two.tsx │ │ └── three.tsx │ └── style.scss │ ├── cypress.config.mjs │ ├── feat │ └── home.spec.js │ ├── jest.config.cjs │ ├── package.json │ ├── postcss.config.js │ ├── public │ ├── apple-touch-icon-152x152.png │ ├── apple-touch-icon-167x167.png │ ├── apple-touch-icon-180x180.png │ ├── apple-touch-icon.png │ ├── favicon.ico │ └── opengraph-image.png │ ├── tsconfig.json │ └── vite.config.ts ├── babel.config.js ├── components-internal ├── README.md ├── anchor-list │ ├── .gitignore │ ├── README.md │ ├── assets │ │ └── AnchorList.scss │ ├── jest.config.js │ ├── package.json │ ├── spec │ │ ├── AnchorList.mdx │ │ ├── AnchorList.stories.tsx │ │ └── AnchorList.ts │ ├── src │ │ └── AnchorList.tsx │ └── tsconfig.json ├── anchor │ ├── .gitignore │ ├── README.md │ ├── assets │ │ └── Anchor.scss │ ├── jest.config.js │ ├── package.json │ ├── spec │ │ ├── Anchor.mdx │ │ ├── Anchor.stories.tsx │ │ └── Anchor.ts │ ├── src │ │ └── Anchor.tsx │ └── tsconfig.json ├── simple-table │ ├── .gitignore │ ├── README.md │ ├── assets │ │ └── SimpleTable.scss │ ├── jest.config.js │ ├── package.json │ ├── spec │ │ ├── SimpleTable.mdx │ │ ├── SimpleTable.stories.tsx │ │ └── SimpleTable.ts │ ├── src │ │ └── SimpleTable.tsx │ └── tsconfig.json └── tabs │ ├── .gitignore │ ├── README.md │ ├── assets │ └── Tabs.scss │ ├── jest.config.js │ ├── package.json │ ├── spec │ ├── Tabs.mdx │ ├── Tabs.stories.tsx │ └── Tabs.ts │ ├── src │ └── Tabs.tsx │ └── tsconfig.json ├── components ├── README.md ├── aside │ ├── .gitignore │ ├── README.md │ ├── assets │ │ └── Aside.scss │ ├── jest.config.js │ ├── package.json │ ├── spec │ │ ├── Aside.mdx │ │ ├── Aside.stories.tsx │ │ └── Aside.ts │ ├── src │ │ └── Aside.tsx │ └── tsconfig.json ├── back-link │ ├── .gitignore │ ├── README.md │ ├── assets │ │ └── BackLink.scss │ ├── jest.config.js │ ├── package.json │ ├── spec │ │ ├── BackLink.mdx │ │ ├── BackLink.stories.tsx │ │ └── BackLink.ts │ ├── src │ │ └── BackLink.tsx │ └── tsconfig.json ├── breadcrumbs │ ├── .gitignore │ ├── README.md │ ├── assets │ │ └── Breadcrumbs.scss │ ├── jest.config.js │ ├── package.json │ ├── spec │ │ ├── Breadcrumbs.mdx │ │ ├── Breadcrumbs.stories.tsx │ │ └── Breadcrumbs.ts │ ├── src │ │ └── Breadcrumbs.tsx │ └── tsconfig.json ├── button-group │ ├── .gitignore │ ├── README.md │ ├── assets │ │ └── ButtonGroup.scss │ ├── jest.config.js │ ├── package.json │ ├── spec │ │ ├── ButtonGroup.mdx │ │ ├── ButtonGroup.stories.tsx │ │ └── ButtonGroup.ts │ ├── src │ │ └── ButtonGroup.tsx │ └── tsconfig.json ├── button │ ├── .gitignore │ ├── README.md │ ├── assets │ │ ├── Button.scss │ │ └── global.scss │ ├── jest.config.js │ ├── package.json │ ├── spec │ │ ├── Button.mdx │ │ ├── Button.stories.tsx │ │ └── Button.ts │ ├── src │ │ └── Button.tsx │ └── tsconfig.json ├── checkboxes │ ├── .gitignore │ ├── README.md │ ├── assets │ │ └── Checkboxes.scss │ ├── jest.config.js │ ├── package.json │ ├── spec │ │ ├── Checkboxes.mdx │ │ ├── Checkboxes.stories.tsx │ │ └── Checkboxes.ts │ ├── src │ │ ├── Checkbox.tsx │ │ └── Checkboxes.tsx │ └── tsconfig.json ├── cookie-banner │ ├── .gitignore │ ├── README.md │ ├── assets │ │ └── CookieBanner.scss │ ├── jest.config.js │ ├── package.json │ ├── spec │ │ ├── CookieBanner.mdx │ │ ├── CookieBanner.stories.tsx │ │ └── CookieBanner.ts │ ├── src │ │ └── CookieBanner.tsx │ └── tsconfig.json ├── date-input │ ├── .gitignore │ ├── README.md │ ├── assets │ │ └── DateInput.scss │ ├── jest.config.js │ ├── package.json │ ├── spec │ │ ├── DateInput.mdx │ │ ├── DateInput.stories.tsx │ │ └── DateInput.ts │ ├── src │ │ └── DateInput.tsx │ └── tsconfig.json ├── details │ ├── .gitignore │ ├── README.md │ ├── assets │ │ └── Details.scss │ ├── jest.config.js │ ├── package.json │ ├── spec │ │ ├── Details.mdx │ │ ├── Details.stories.tsx │ │ └── Details.ts │ ├── src │ │ └── Details.tsx │ └── tsconfig.json ├── error-message │ ├── .gitignore │ ├── README.md │ ├── assets │ │ └── ErrorMessage.scss │ ├── jest.config.js │ ├── package.json │ ├── spec │ │ ├── ErrorMessage.mdx │ │ ├── ErrorMessage.stories.tsx │ │ └── ErrorMessage.ts │ ├── src │ │ └── ErrorMessage.tsx │ └── tsconfig.json ├── error-summary │ ├── .gitignore │ ├── README.md │ ├── assets │ │ └── ErrorSummary.scss │ ├── jest.config.js │ ├── package.json │ ├── spec │ │ ├── ErrorSummary.mdx │ │ ├── ErrorSummary.stories.tsx │ │ └── ErrorSummary.ts │ ├── src │ │ └── ErrorSummary.tsx │ └── tsconfig.json ├── fieldset │ ├── .gitignore │ ├── README.md │ ├── assets │ │ └── FieldSet.scss │ ├── jest.config.js │ ├── package.json │ ├── spec │ │ ├── FieldSet.mdx │ │ ├── FieldSet.stories.tsx │ │ └── FieldSet.ts │ ├── src │ │ └── FieldSet.tsx │ └── tsconfig.json ├── file-upload │ ├── .gitignore │ ├── README.md │ ├── assets │ │ └── FileUpload.scss │ ├── jest.config.js │ ├── package.json │ ├── spec │ │ ├── FileUpload.mdx │ │ ├── FileUpload.stories.tsx │ │ └── FileUpload.ts │ ├── src │ │ └── FileUpload.tsx │ └── tsconfig.json ├── footer │ ├── .gitignore │ ├── README.md │ ├── assets │ │ └── Footer.scss │ ├── jest.config.js │ ├── package.json │ ├── spec │ │ ├── Footer.mdx │ │ ├── Footer.stories.tsx │ │ └── Footer.ts │ ├── src │ │ ├── CrownLogo.tsx │ │ ├── Footer.tsx │ │ ├── LogoProps.ts │ │ └── OGLLogo.tsx │ └── tsconfig.json ├── form-field │ ├── .gitignore │ ├── README.md │ ├── assets │ │ └── FormField.scss │ ├── jest.config.js │ ├── package.json │ ├── spec │ │ ├── FormField.mdx │ │ ├── FormField.stories.tsx │ │ └── FormField.ts │ ├── src │ │ └── FormField.ts │ └── tsconfig.json ├── form-group │ ├── .gitignore │ ├── README.md │ ├── assets │ │ └── FormGroup.scss │ ├── jest.config.js │ ├── package.json │ ├── spec │ │ ├── FormGroup.mdx │ │ ├── FormGroup.stories.tsx │ │ └── FormGroup.ts │ ├── src │ │ └── FormGroup.tsx │ └── tsconfig.json ├── form │ ├── .gitignore │ ├── README.md │ ├── assets │ │ └── Form.scss │ ├── jest.config.js │ ├── package.json │ ├── spec │ │ ├── Form.mdx │ │ ├── Form.stories.tsx │ │ └── Form.ts │ ├── src │ │ ├── Form.ts │ │ ├── controls.ts │ │ └── fields.ts │ └── tsconfig.json ├── header │ ├── .gitignore │ ├── README.md │ ├── assets │ │ └── Header.scss │ ├── jest.config.js │ ├── package.json │ ├── spec │ │ ├── Header.mdx │ │ ├── Header.stories.tsx │ │ └── Header.ts │ ├── src │ │ ├── CoatLogo.tsx │ │ ├── CrownLogo.tsx │ │ ├── CrownLogoOld.tsx │ │ ├── Header.tsx │ │ ├── LogoProps.ts │ │ └── env.d.ts │ └── tsconfig.json ├── hint │ ├── .gitignore │ ├── README.md │ ├── assets │ │ └── Hint.scss │ ├── jest.config.js │ ├── package.json │ ├── spec │ │ ├── Hint.mdx │ │ ├── Hint.stories.tsx │ │ └── Hint.ts │ ├── src │ │ └── Hint.tsx │ └── tsconfig.json ├── input │ ├── .gitignore │ ├── README.md │ ├── assets │ │ └── Input.scss │ ├── jest.config.js │ ├── package.json │ ├── spec │ │ ├── Input.mdx │ │ ├── Input.stories.tsx │ │ └── Input.ts │ ├── src │ │ └── Input.tsx │ └── tsconfig.json ├── inset-text │ ├── .gitignore │ ├── README.md │ ├── assets │ │ └── InsetText.scss │ ├── jest.config.js │ ├── package.json │ ├── spec │ │ ├── InsetText.mdx │ │ ├── InsetText.stories.tsx │ │ └── InsetText.ts │ ├── src │ │ └── InsetText.tsx │ └── tsconfig.json ├── label │ ├── .gitignore │ ├── README.md │ ├── assets │ │ └── Label.scss │ ├── jest.config.js │ ├── package.json │ ├── spec │ │ ├── Label.mdx │ │ ├── Label.stories.tsx │ │ └── Label.ts │ ├── src │ │ └── Label.tsx │ └── tsconfig.json ├── link │ ├── .gitignore │ ├── README.md │ ├── assets │ │ └── Link.scss │ ├── jest.config.js │ ├── package.json │ ├── spec │ │ ├── Link.mdx │ │ ├── Link.stories.tsx │ │ └── Link.ts │ ├── src │ │ └── Link.tsx │ └── tsconfig.json ├── navigation-menu │ ├── .gitignore │ ├── README.md │ ├── assets │ │ └── NavigationMenu.scss │ ├── jest.config.js │ ├── package.json │ ├── spec │ │ ├── NavigationMenu.mdx │ │ ├── NavigationMenu.stories.tsx │ │ └── NavigationMenu.ts │ ├── src │ │ └── NavigationMenu.tsx │ └── tsconfig.json ├── notification-banner │ ├── .gitignore │ ├── README.md │ ├── assets │ │ └── NotificationBanner.scss │ ├── jest.config.js │ ├── package.json │ ├── spec │ │ ├── NotificationBanner.mdx │ │ ├── NotificationBanner.stories.tsx │ │ └── NotificationBanner.ts │ ├── src │ │ └── NotificationBanner.tsx │ └── tsconfig.json ├── page │ ├── .gitignore │ ├── README.md │ ├── assets │ │ ├── GovUKPage.scss │ │ ├── NotGovUKPage.scss │ │ ├── Page.scss │ │ ├── coat-apple-touch-icon-152x152.png │ │ ├── coat-apple-touch-icon-167x167.png │ │ ├── coat-apple-touch-icon-180x180.png │ │ ├── coat-apple-touch-icon.png │ │ ├── coat-favicon.ico │ │ ├── coat-opengraph-image.png │ │ ├── fonts │ │ │ ├── gds-transport.css │ │ │ ├── roboto-LICENSE.txt │ │ │ ├── roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-100.woff │ │ │ ├── roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-100.woff2 │ │ │ ├── roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-100italic.woff │ │ │ ├── roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-100italic.woff2 │ │ │ ├── roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300.woff │ │ │ ├── roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300.woff2 │ │ │ ├── roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300italic.woff │ │ │ ├── roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300italic.woff2 │ │ │ ├── roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-500.woff │ │ │ ├── roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-500.woff2 │ │ │ ├── roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-500italic.woff │ │ │ ├── roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-500italic.woff2 │ │ │ ├── roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700.woff │ │ │ ├── roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700.woff2 │ │ │ ├── roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700italic.woff │ │ │ ├── roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700italic.woff2 │ │ │ ├── roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-900.woff │ │ │ ├── roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-900.woff2 │ │ │ ├── roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-900italic.woff │ │ │ ├── roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-900italic.woff2 │ │ │ ├── roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-italic.woff │ │ │ ├── roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-italic.woff2 │ │ │ ├── roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-regular.woff │ │ │ ├── roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-regular.woff2 │ │ │ └── roboto.css │ │ └── index.scss │ ├── jest.config.js │ ├── package.json │ ├── spec │ │ ├── GovUKPage.ts │ │ ├── NotGovUKPage.ts │ │ ├── Page.mdx │ │ ├── Page.stories.tsx │ │ └── Page.ts │ ├── src │ │ ├── GovUKPage.tsx │ │ ├── NotGovUKPage.tsx │ │ ├── Page.tsx │ │ ├── bundler.d.ts │ │ ├── index.ts │ │ └── types.ts │ └── tsconfig.json ├── pagination │ ├── .gitignore │ ├── README.md │ ├── assets │ │ └── Pagination.scss │ ├── jest.config.js │ ├── package.json │ ├── spec │ │ ├── Pagination.mdx │ │ ├── Pagination.stories.tsx │ │ └── Pagination.ts │ ├── src │ │ ├── ItemEllipsis.tsx │ │ ├── ItemLink.tsx │ │ ├── PageList.tsx │ │ ├── Pagination.tsx │ │ └── common.ts │ └── tsconfig.json ├── panel │ ├── .gitignore │ ├── README.md │ ├── assets │ │ └── Panel.scss │ ├── jest.config.js │ ├── package.json │ ├── spec │ │ ├── Panel.mdx │ │ ├── Panel.stories.tsx │ │ └── Panel.ts │ ├── src │ │ └── Panel.tsx │ └── tsconfig.json ├── phase-banner │ ├── .gitignore │ ├── README.md │ ├── assets │ │ └── PhaseBanner.scss │ ├── jest.config.js │ ├── package.json │ ├── spec │ │ ├── PhaseBanner.mdx │ │ ├── PhaseBanner.stories.tsx │ │ └── PhaseBanner.ts │ ├── src │ │ └── PhaseBanner.tsx │ └── tsconfig.json ├── radios │ ├── .gitignore │ ├── README.md │ ├── assets │ │ └── Radios.scss │ ├── jest.config.js │ ├── package.json │ ├── spec │ │ ├── Radios.mdx │ │ ├── Radios.stories.tsx │ │ └── Radios.ts │ ├── src │ │ ├── Radio.tsx │ │ └── Radios.tsx │ └── tsconfig.json ├── search-box │ ├── .gitignore │ ├── README.md │ ├── assets │ │ └── SearchBox.scss │ ├── jest.config.js │ ├── package.json │ ├── spec │ │ ├── SearchBox.mdx │ │ ├── SearchBox.stories.tsx │ │ └── SearchBox.ts │ ├── src │ │ └── SearchBox.tsx │ └── tsconfig.json ├── select │ ├── .gitignore │ ├── README.md │ ├── assets │ │ └── Select.scss │ ├── jest.config.js │ ├── package.json │ ├── spec │ │ ├── Select.mdx │ │ ├── Select.stories.tsx │ │ └── Select.ts │ ├── src │ │ └── Select.tsx │ └── tsconfig.json ├── service-navigation │ ├── .gitignore │ ├── README.md │ ├── assets │ │ └── ServiceNavigation.scss │ ├── jest.config.js │ ├── package.json │ ├── spec │ │ ├── ServiceNavigation.mdx │ │ ├── ServiceNavigation.stories.tsx │ │ └── ServiceNavigation.ts │ ├── src │ │ └── ServiceNavigation.tsx │ └── tsconfig.json ├── skip-link │ ├── .gitignore │ ├── README.md │ ├── assets │ │ └── SkipLink.scss │ ├── jest.config.js │ ├── package.json │ ├── spec │ │ ├── SkipLink.mdx │ │ ├── SkipLink.stories.tsx │ │ └── SkipLink.ts │ ├── src │ │ └── SkipLink.tsx │ └── tsconfig.json ├── standalone-input │ ├── .gitignore │ ├── README.md │ ├── assets │ │ └── StandaloneInput.scss │ ├── jest.config.js │ ├── package.json │ ├── spec │ │ ├── StandaloneInput.mdx │ │ ├── StandaloneInput.stories.tsx │ │ └── StandaloneInput.ts │ ├── src │ │ └── StandaloneInput.tsx │ └── tsconfig.json ├── summary-card │ ├── .gitignore │ ├── README.md │ ├── assets │ │ └── SummaryCard.scss │ ├── jest.config.js │ ├── package.json │ ├── spec │ │ ├── SummaryCard.mdx │ │ ├── SummaryCard.stories.tsx │ │ └── SummaryCard.ts │ ├── src │ │ └── SummaryCard.tsx │ └── tsconfig.json ├── summary-list │ ├── .gitignore │ ├── README.md │ ├── assets │ │ └── SummaryList.scss │ ├── jest.config.js │ ├── package.json │ ├── spec │ │ ├── SummaryList.mdx │ │ ├── SummaryList.stories.tsx │ │ └── SummaryList.ts │ ├── src │ │ ├── SummaryList.tsx │ │ ├── SummaryListContainer.tsx │ │ └── SummaryListItem.tsx │ └── tsconfig.json ├── table │ ├── .gitignore │ ├── README.md │ ├── assets │ │ └── Table.scss │ ├── jest.config.js │ ├── package.json │ ├── spec │ │ ├── Table.mdx │ │ ├── Table.stories.tsx │ │ └── Table.ts │ ├── src │ │ └── Table.tsx │ └── tsconfig.json ├── tabs │ ├── .gitignore │ ├── README.md │ ├── assets │ │ └── Tabs.scss │ ├── jest.config.js │ ├── package.json │ ├── spec │ │ ├── Tabs.mdx │ │ ├── Tabs.stories.tsx │ │ └── Tabs.ts │ ├── src │ │ └── Tabs.tsx │ └── tsconfig.json ├── tag │ ├── .gitignore │ ├── README.md │ ├── assets │ │ └── Tag.scss │ ├── jest.config.js │ ├── package.json │ ├── spec │ │ ├── Tag.mdx │ │ ├── Tag.stories.tsx │ │ └── Tag.ts │ ├── src │ │ └── Tag.tsx │ └── tsconfig.json ├── text-input │ ├── .gitignore │ ├── README.md │ ├── assets │ │ └── TextInput.scss │ ├── jest.config.js │ ├── package.json │ ├── spec │ │ ├── TextInput.mdx │ │ ├── TextInput.stories.tsx │ │ └── TextInput.ts │ ├── src │ │ └── TextInput.tsx │ └── tsconfig.json ├── textarea │ ├── .gitignore │ ├── README.md │ ├── assets │ │ └── Textarea.scss │ ├── jest.config.js │ ├── package.json │ ├── spec │ │ ├── Textarea.mdx │ │ ├── Textarea.stories.tsx │ │ └── Textarea.ts │ ├── src │ │ └── Textarea.tsx │ └── tsconfig.json ├── visually-hidden │ ├── .gitignore │ ├── README.md │ ├── assets │ │ └── VisuallyHidden.scss │ ├── jest.config.js │ ├── package.json │ ├── spec │ │ ├── VisuallyHidden.mdx │ │ ├── VisuallyHidden.stories.tsx │ │ └── VisuallyHidden.ts │ ├── src │ │ └── VisuallyHidden.tsx │ └── tsconfig.json ├── warning-text │ ├── .gitignore │ ├── README.md │ ├── assets │ │ └── WarningText.scss │ ├── jest.config.js │ ├── package.json │ ├── spec │ │ ├── WarningText.mdx │ │ ├── WarningText.stories.tsx │ │ └── WarningText.ts │ ├── src │ │ └── WarningText.tsx │ └── tsconfig.json └── width-container │ ├── .gitignore │ ├── README.md │ ├── assets │ └── WidthContainer.scss │ ├── jest.config.js │ ├── package.json │ ├── spec │ ├── WidthContainer.mdx │ ├── WidthContainer.stories.tsx │ └── WidthContainer.ts │ ├── src │ └── WidthContainer.tsx │ └── tsconfig.json ├── cypress.config.mjs ├── docs ├── about.md ├── components.md ├── contributing.md ├── design-decisions.md ├── get-started.md └── working-on-your-project.md ├── jest.config.base.js ├── jest.config.js ├── lib-govuk ├── README.md ├── components │ ├── .gitignore │ ├── README.md │ ├── assets │ │ ├── _code.scss │ │ ├── core │ │ │ ├── _index.scss │ │ │ ├── _lists.scss │ │ │ ├── _section-break.scss │ │ │ └── _typography.scss │ │ ├── index.scss │ │ ├── objects │ │ │ └── _index.scss │ │ ├── overrides │ │ │ ├── _index.scss │ │ │ └── _width.scss │ │ └── utilities │ │ │ └── _index.scss │ ├── jest.config.js │ ├── package.json │ ├── src │ │ └── index.ts │ └── tsconfig.json ├── create │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── bin │ │ └── create.mjs │ ├── package.json │ └── plopfile.js ├── plop-pack │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── skel │ │ └── app │ │ │ ├── package.json.hbs │ │ │ └── src │ │ │ └── common │ │ │ ├── app.scss │ │ │ ├── error-page.tsx │ │ │ ├── loading-page.tsx │ │ │ ├── page-wrap.tsx.hbs │ │ │ └── pages │ │ │ └── index.tsx │ └── src │ │ └── index.js ├── sass-base │ ├── .gitignore │ ├── README.md │ ├── package.json │ └── src │ │ └── index.scss └── simple-components │ ├── .gitignore │ ├── README.md │ ├── assets │ └── index.scss │ ├── jest.config.js │ ├── package.json │ ├── src │ └── index.ts │ └── tsconfig.json ├── lib ├── README.md ├── app-composer │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── src │ │ └── index.ts │ └── tsconfig.json ├── app-plop-pack │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── skel │ │ ├── .github │ │ │ └── workflows │ │ │ │ └── deploy.deploy.yml.hbs │ │ └── src │ │ │ └── common │ │ │ └── pages │ │ │ └── page.hbs │ ├── src │ │ └── index.js │ └── tsconfig.json ├── asset-proxy │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ └── webpack.ts │ └── tsconfig.json ├── client-component-helpers │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── src │ │ ├── index.ts │ │ └── is-mounted.ts │ └── tsconfig.json ├── client-renderer │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── src │ │ └── index.ts │ └── tsconfig.json ├── component-helpers │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── src │ │ ├── classes.ts │ │ └── index.ts │ └── tsconfig.json ├── component-test-helpers │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── src │ │ └── index.ts │ └── tsconfig.json ├── consent-cookies │ ├── .gitignore │ ├── README.md │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── common.ts │ │ ├── index.ts │ │ └── sessions.ts │ └── tsconfig.json ├── create │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── bin │ │ └── create.mjs │ ├── package.json │ ├── plopfile.js │ └── skel │ │ ├── project │ │ ├── .jest-results.json │ │ ├── .storybook │ │ │ └── main.js │ │ ├── README.md.hbs │ │ └── apps │ │ │ └── docs │ │ │ └── src │ │ │ └── common │ │ │ ├── pages │ │ │ └── components.tsx │ │ │ └── stories.ts │ │ └── prototype │ │ ├── .github │ │ ├── actions │ │ │ └── setup │ │ │ │ └── action.yml │ │ └── workflows │ │ │ ├── change-assurance.yml │ │ │ ├── deploy.yml │ │ │ └── main.yml │ │ ├── README.md.hbs │ │ └── package.json.hbs ├── docs-components │ ├── .gitignore │ ├── README.md │ ├── assets │ │ └── ReactPreview.scss │ ├── package.json │ ├── src │ │ ├── Controls.tsx │ │ ├── DocsPage.tsx │ │ ├── ReactPreview.tsx │ │ ├── context.ts │ │ └── index.ts │ └── tsconfig.json ├── engine │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── auth │ │ │ ├── basic.ts │ │ │ ├── common.ts │ │ │ ├── dummy.ts │ │ │ ├── headers.ts │ │ │ ├── index.ts │ │ │ ├── oidc.ts │ │ │ └── passport.ts │ │ │ ├── common.ts │ │ │ ├── config-helpers.ts │ │ │ ├── pages.ts │ │ │ └── session │ │ │ ├── common.ts │ │ │ ├── custom.ts │ │ │ ├── index.ts │ │ │ └── memory.ts │ └── tsconfig.json ├── express-adapter │ ├── .gitignore │ ├── README.md │ ├── jest.config.js │ ├── package.json │ ├── src │ │ └── index.ts │ └── tsconfig.json ├── fastify-dev-logger │ ├── .gitignore │ ├── README.md │ ├── jest.config.cjs │ ├── package.json │ ├── spec │ │ └── index.js │ └── src │ │ ├── index.d.ts │ │ └── index.js ├── fastify-harden │ ├── .gitignore │ ├── README.md │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── common.ts │ │ ├── content-security-policy.ts │ │ ├── index.ts │ │ └── permissions-policy.ts │ └── tsconfig.json ├── fastify-react-router │ ├── .gitignore │ ├── README.md │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── common.ts │ │ ├── dev-logger.ts │ │ ├── dev.ts │ │ ├── fetch.ts │ │ ├── index.ts │ │ └── stream.ts │ └── tsconfig.json ├── fastify │ ├── .gitignore │ ├── README.md │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── config-helpers.ts │ │ └── index.ts │ └── tsconfig.json ├── forms │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── src │ │ ├── completion.ts │ │ ├── context.ts │ │ ├── fork.ts │ │ ├── form.tsx │ │ ├── formik-form.ts │ │ ├── graph │ │ │ ├── field.ts │ │ │ ├── fork.ts │ │ │ ├── graph.ts │ │ │ ├── index.ts │ │ │ ├── node.ts │ │ │ ├── page.ts │ │ │ └── path.ts │ │ ├── helpers.ts │ │ ├── hocs.ts │ │ ├── index.ts │ │ ├── page.ts │ │ ├── registry.ts │ │ └── validators.ts │ └── tsconfig.json ├── head │ ├── .gitignore │ ├── README.md │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── common.ts │ │ ├── dummy.ts │ │ └── index.ts │ └── tsconfig.json ├── memoize │ ├── .gitignore │ ├── README.md │ ├── jest.config.js │ ├── package.json │ ├── spec │ │ └── index.ts │ ├── src │ │ └── index.ts │ └── tsconfig.json ├── plop-pack │ ├── .gitignore │ ├── README.md │ ├── jest.config.cjs │ ├── package.json │ ├── skel │ │ ├── app │ │ │ ├── .dockerignore │ │ │ ├── Dockerfile │ │ │ ├── Makefile.hbs │ │ │ ├── README.md.hbs │ │ │ ├── aws.serverless.yml.hbs │ │ │ ├── cypress.config.mjs │ │ │ ├── feat │ │ │ │ └── home.spec.js │ │ │ ├── gitignore │ │ │ ├── jest.config.js.hbs │ │ │ ├── package.json.hbs │ │ │ ├── plopfile.mjs │ │ │ ├── src │ │ │ │ ├── client │ │ │ │ │ └── index.ts │ │ │ │ ├── common │ │ │ │ │ ├── app-wrap.tsx │ │ │ │ │ ├── config.ts.hbs │ │ │ │ │ ├── error-page.tsx │ │ │ │ │ ├── loading-page.tsx │ │ │ │ │ ├── page-loader.ts │ │ │ │ │ ├── page-wrap.tsx │ │ │ │ │ └── pages │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── sitemap.tsx │ │ │ │ └── server │ │ │ │ │ ├── config.ts │ │ │ │ │ ├── dev.ts │ │ │ │ │ ├── graphql.ts │ │ │ │ │ ├── httpd.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── readiness.ts │ │ │ ├── test.Dockerfile │ │ │ ├── tsconfig.json │ │ │ ├── webpack.config.d.mts │ │ │ └── webpack.config.mjs │ │ ├── component │ │ │ ├── README.md.hbs │ │ │ ├── assets │ │ │ │ └── Component.scss.hbs │ │ │ ├── gitignore │ │ │ ├── jest.config.js.hbs │ │ │ ├── package.json.hbs │ │ │ ├── spec │ │ │ │ ├── Component.mdx.hbs │ │ │ │ ├── Component.stories.tsx.hbs │ │ │ │ └── Component.ts.hbs │ │ │ ├── src │ │ │ │ └── Component.tsx.hbs │ │ │ └── tsconfig.json │ │ └── lib │ │ │ ├── README.md.hbs │ │ │ ├── gitignore │ │ │ ├── jest.config.js.hbs │ │ │ ├── package.json.hbs │ │ │ ├── src │ │ │ └── index.ts.hbs │ │ │ └── tsconfig.json │ ├── spec │ │ └── helpers │ │ │ └── md-title.js │ └── src │ │ ├── action-paths.js │ │ ├── actions │ │ ├── copy.js │ │ ├── merge.js │ │ ├── message.js │ │ ├── shell.js │ │ ├── symlink.js │ │ └── write.js │ │ ├── extend-generator.js │ │ ├── generators │ │ ├── app.js │ │ ├── component.js │ │ └── lib.js │ │ ├── helpers │ │ ├── eq.js │ │ └── md-title.js │ │ ├── index.js │ │ ├── rel-to-skel.js │ │ ├── relative-path.js │ │ └── run-plop.js ├── restify │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── logger.ts │ │ │ ├── router.ts │ │ │ └── serve-api.ts │ │ ├── middleware │ │ │ ├── common.ts │ │ │ ├── content-security-policy.ts │ │ │ ├── health-check.ts │ │ │ ├── html-by-default.ts │ │ │ ├── permissions-policy.ts │ │ │ ├── prevent-clickjacking.ts │ │ │ ├── prevent-mime-sniffing.ts │ │ │ ├── private-by-default.ts │ │ │ └── readiness.ts │ │ └── restify-bunyan-logger.d.ts │ └── tsconfig.json ├── router │ ├── .gitignore │ ├── README.md │ ├── jest.config.js │ ├── package.json │ ├── spec │ │ └── is-active.ts │ ├── src │ │ ├── common.ts │ │ ├── dummy.ts │ │ ├── index.ts │ │ ├── is-active.ts │ │ ├── location.ts │ │ ├── next.ts │ │ └── remix.ts │ └── tsconfig.json ├── server-renderer │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── src │ │ ├── HelmetHead.tsx │ │ ├── Scripts.tsx │ │ ├── html-envelope.ts │ │ └── index.ts │ └── tsconfig.json ├── uri │ ├── .gitignore │ ├── README.md │ ├── jest.config.js │ ├── package.json │ ├── spec │ │ └── uri.ts │ ├── src │ │ ├── index.ts │ │ ├── query-string.ts │ │ └── uri.ts │ └── tsconfig.json ├── user-info │ ├── .gitignore │ ├── README.md │ ├── jest.config.js │ ├── package.json │ ├── spec │ │ └── UserInfo.ts │ ├── src │ │ └── UserInfo.ts │ └── tsconfig.json ├── vite-html-react │ ├── .gitignore │ ├── README.md │ ├── jest.config.cjs │ ├── package.json │ ├── src │ │ └── index.ts │ └── tsconfig.json └── webpack-config │ ├── .gitignore │ ├── README.md │ ├── index.js │ └── package.json ├── package-skel ├── .gitignore ├── .npmignore ├── tsconfig.build.json └── tsconfig.webpack.json ├── package.json ├── plopfile.mjs ├── pnpm-lock-committed.yaml ├── pnpm-workspace.yaml ├── renovate.json ├── reports └── .sastscan.baseline ├── styles ├── forms.mdx ├── forms.stories.tsx ├── typography.mdx └── typography.stories.tsx ├── tsconfig.build.json ├── tsconfig.jest.json ├── tsconfig.json ├── tsconfig.nodejs.json ├── tsconfig.storybook.json ├── tsconfig.vite.json ├── tsconfig.webpack.json └── vite.config.ts /.cypress/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/.cypress/support/index.js -------------------------------------------------------------------------------- /.github/actions/build-app/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/.github/actions/build-app/action.yml -------------------------------------------------------------------------------- /.github/actions/publish/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/.github/actions/publish/action.yml -------------------------------------------------------------------------------- /.github/actions/scan-app/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/.github/actions/scan-app/action.yml -------------------------------------------------------------------------------- /.github/actions/scan-code/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/.github/actions/scan-code/action.yml -------------------------------------------------------------------------------- /.github/actions/setup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/.github/actions/setup/action.yml -------------------------------------------------------------------------------- /.github/actions/test-app/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/.github/actions/test-app/action.yml -------------------------------------------------------------------------------- /.github/actions/test-code/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/.github/actions/test-code/action.yml -------------------------------------------------------------------------------- /.github/workflows/change-assurance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/.github/workflows/change-assurance.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-to-heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/.github/workflows/deploy-to-heroku.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-to-netlify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/.github/workflows/deploy-to-netlify.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/update-built-files.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/.github/workflows/update-built-files.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/.gitignore -------------------------------------------------------------------------------- /.jest-results.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /.jest/mocks/file.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = './mock/file.path'; 4 | -------------------------------------------------------------------------------- /.jest/mocks/style.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = {}; 4 | -------------------------------------------------------------------------------- /.jest/setupAfterEnv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/.jest/setupAfterEnv.js -------------------------------------------------------------------------------- /.npm/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/.npm/version.sh -------------------------------------------------------------------------------- /.storybook/decorators.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/.storybook/decorators.tsx -------------------------------------------------------------------------------- /.storybook/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/.storybook/main.ts -------------------------------------------------------------------------------- /.storybook/manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/.storybook/manager.ts -------------------------------------------------------------------------------- /.storybook/preview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/.storybook/preview.ts -------------------------------------------------------------------------------- /.tmuxrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/.tmuxrc -------------------------------------------------------------------------------- /.zap/rules.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/.zap/rules.tsv -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/README.md -------------------------------------------------------------------------------- /apps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/README.md -------------------------------------------------------------------------------- /apps/govuk-docs-old/.dockerignore: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/app/.dockerignore -------------------------------------------------------------------------------- /apps/govuk-docs-old/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-docs-old/.gitignore -------------------------------------------------------------------------------- /apps/govuk-docs-old/Dockerfile: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/app/Dockerfile -------------------------------------------------------------------------------- /apps/govuk-docs-old/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-docs-old/Makefile -------------------------------------------------------------------------------- /apps/govuk-docs-old/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-docs-old/README.md -------------------------------------------------------------------------------- /apps/govuk-docs-old/aws.serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-docs-old/aws.serverless.yml -------------------------------------------------------------------------------- /apps/govuk-docs-old/cypress.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-docs-old/cypress.config.mjs -------------------------------------------------------------------------------- /apps/govuk-docs-old/feat/home.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-docs-old/feat/home.spec.js -------------------------------------------------------------------------------- /apps/govuk-docs-old/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-docs-old/jest.config.js -------------------------------------------------------------------------------- /apps/govuk-docs-old/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-docs-old/package.json -------------------------------------------------------------------------------- /apps/govuk-docs-old/pages: -------------------------------------------------------------------------------- 1 | src/common/pages/ -------------------------------------------------------------------------------- /apps/govuk-docs-old/plopfile.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-docs-old/plopfile.mjs -------------------------------------------------------------------------------- /apps/govuk-docs-old/src/client/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-docs-old/src/client/index.ts -------------------------------------------------------------------------------- /apps/govuk-docs-old/src/common/app.scss: -------------------------------------------------------------------------------- 1 | @import "@not-govuk/components"; 2 | -------------------------------------------------------------------------------- /apps/govuk-docs-old/src/common/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-docs-old/src/common/config.ts -------------------------------------------------------------------------------- /apps/govuk-docs-old/src/common/stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-docs-old/src/common/stories.ts -------------------------------------------------------------------------------- /apps/govuk-docs-old/src/mdx.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-docs-old/src/mdx.d.ts -------------------------------------------------------------------------------- /apps/govuk-docs-old/src/server/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-docs-old/src/server/config.ts -------------------------------------------------------------------------------- /apps/govuk-docs-old/src/server/dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-docs-old/src/server/dev.ts -------------------------------------------------------------------------------- /apps/govuk-docs-old/src/server/httpd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-docs-old/src/server/httpd.ts -------------------------------------------------------------------------------- /apps/govuk-docs-old/src/server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-docs-old/src/server/index.ts -------------------------------------------------------------------------------- /apps/govuk-docs-old/test.Dockerfile: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/app/test.Dockerfile -------------------------------------------------------------------------------- /apps/govuk-docs-old/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/app/tsconfig.json -------------------------------------------------------------------------------- /apps/govuk-docs-old/webpack.config.d.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-docs-old/webpack.config.d.mts -------------------------------------------------------------------------------- /apps/govuk-docs-old/webpack.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-docs-old/webpack.config.mjs -------------------------------------------------------------------------------- /apps/govuk-docs/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-docs/.dockerignore -------------------------------------------------------------------------------- /apps/govuk-docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-docs/.gitignore -------------------------------------------------------------------------------- /apps/govuk-docs/Dockerfile: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/app/Dockerfile -------------------------------------------------------------------------------- /apps/govuk-docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-docs/Makefile -------------------------------------------------------------------------------- /apps/govuk-docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-docs/README.md -------------------------------------------------------------------------------- /apps/govuk-docs/aws-lambda-entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-docs/aws-lambda-entry.js -------------------------------------------------------------------------------- /apps/govuk-docs/cypress.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-docs/cypress.config.mjs -------------------------------------------------------------------------------- /apps/govuk-docs/feat/home.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-docs/feat/home.spec.js -------------------------------------------------------------------------------- /apps/govuk-docs/jest.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-docs/jest.config.cjs -------------------------------------------------------------------------------- /apps/govuk-docs/lambda.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-docs/lambda.Dockerfile -------------------------------------------------------------------------------- /apps/govuk-docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-docs/package.json -------------------------------------------------------------------------------- /apps/govuk-docs/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-docs/public/favicon.ico -------------------------------------------------------------------------------- /apps/govuk-docs/react-router.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-docs/react-router.config.ts -------------------------------------------------------------------------------- /apps/govuk-docs/src/app/app.scss: -------------------------------------------------------------------------------- 1 | @import "@not-govuk/components"; 2 | -------------------------------------------------------------------------------- /apps/govuk-docs/src/app/config.ts: -------------------------------------------------------------------------------- 1 | export const siteTitle: string = 'NotGovUK'; 2 | -------------------------------------------------------------------------------- /apps/govuk-docs/src/app/entry.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-docs/src/app/entry.client.tsx -------------------------------------------------------------------------------- /apps/govuk-docs/src/app/entry.server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-docs/src/app/entry.server.tsx -------------------------------------------------------------------------------- /apps/govuk-docs/src/app/mdx.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/govuk-docs/src/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-docs/src/app/root.tsx -------------------------------------------------------------------------------- /apps/govuk-docs/src/app/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-docs/src/app/routes.ts -------------------------------------------------------------------------------- /apps/govuk-docs/src/app/routes/_index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-docs/src/app/routes/_index.tsx -------------------------------------------------------------------------------- /apps/govuk-docs/src/app/routes/result.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-docs/src/app/routes/result.tsx -------------------------------------------------------------------------------- /apps/govuk-docs/src/app/routes/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-docs/src/app/routes/styles.tsx -------------------------------------------------------------------------------- /apps/govuk-docs/src/app/stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-docs/src/app/stories.ts -------------------------------------------------------------------------------- /apps/govuk-docs/src/server/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-docs/src/server/config.ts -------------------------------------------------------------------------------- /apps/govuk-docs/src/server/dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-docs/src/server/dev.ts -------------------------------------------------------------------------------- /apps/govuk-docs/src/server/httpd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-docs/src/server/httpd.ts -------------------------------------------------------------------------------- /apps/govuk-docs/src/server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-docs/src/server/index.ts -------------------------------------------------------------------------------- /apps/govuk-docs/test.Dockerfile: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/app/test.Dockerfile -------------------------------------------------------------------------------- /apps/govuk-docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-docs/tsconfig.json -------------------------------------------------------------------------------- /apps/govuk-docs/vite.config.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-docs/vite.config.server.ts -------------------------------------------------------------------------------- /apps/govuk-docs/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-docs/vite.config.ts -------------------------------------------------------------------------------- /apps/govuk-template/.dockerignore: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/app/.dockerignore -------------------------------------------------------------------------------- /apps/govuk-template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-template/.gitignore -------------------------------------------------------------------------------- /apps/govuk-template/Dockerfile: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/app/Dockerfile -------------------------------------------------------------------------------- /apps/govuk-template/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-template/Makefile -------------------------------------------------------------------------------- /apps/govuk-template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-template/README.md -------------------------------------------------------------------------------- /apps/govuk-template/aws.serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-template/aws.serverless.yml -------------------------------------------------------------------------------- /apps/govuk-template/cypress.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-template/cypress.config.mjs -------------------------------------------------------------------------------- /apps/govuk-template/feat/404.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-template/feat/404.spec.js -------------------------------------------------------------------------------- /apps/govuk-template/feat/auth.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-template/feat/auth.spec.js -------------------------------------------------------------------------------- /apps/govuk-template/feat/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-template/feat/config.js -------------------------------------------------------------------------------- /apps/govuk-template/feat/graphql.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-template/feat/graphql.spec.js -------------------------------------------------------------------------------- /apps/govuk-template/feat/home.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-template/feat/home.spec.js -------------------------------------------------------------------------------- /apps/govuk-template/feat/html.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-template/feat/html.spec.js -------------------------------------------------------------------------------- /apps/govuk-template/feat/md.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-template/feat/md.spec.js -------------------------------------------------------------------------------- /apps/govuk-template/feat/mdx.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-template/feat/mdx.spec.js -------------------------------------------------------------------------------- /apps/govuk-template/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-template/jest.config.js -------------------------------------------------------------------------------- /apps/govuk-template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-template/package.json -------------------------------------------------------------------------------- /apps/govuk-template/pages: -------------------------------------------------------------------------------- 1 | src/common/pages/ -------------------------------------------------------------------------------- /apps/govuk-template/plopfile.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-template/plopfile.mjs -------------------------------------------------------------------------------- /apps/govuk-template/src/client/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-template/src/client/index.ts -------------------------------------------------------------------------------- /apps/govuk-template/src/common/app.scss: -------------------------------------------------------------------------------- 1 | @import "@not-govuk/components"; 2 | -------------------------------------------------------------------------------- /apps/govuk-template/src/common/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-template/src/common/config.ts -------------------------------------------------------------------------------- /apps/govuk-template/src/common/pages/html.html: -------------------------------------------------------------------------------- 1 |

HTML test

2 |

Hello world!

3 | -------------------------------------------------------------------------------- /apps/govuk-template/src/server/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-template/src/server/config.ts -------------------------------------------------------------------------------- /apps/govuk-template/src/server/dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-template/src/server/dev.ts -------------------------------------------------------------------------------- /apps/govuk-template/src/server/graphql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-template/src/server/graphql.ts -------------------------------------------------------------------------------- /apps/govuk-template/src/server/httpd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-template/src/server/httpd.ts -------------------------------------------------------------------------------- /apps/govuk-template/src/server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-template/src/server/index.ts -------------------------------------------------------------------------------- /apps/govuk-template/test.Dockerfile: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/app/test.Dockerfile -------------------------------------------------------------------------------- /apps/govuk-template/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/app/tsconfig.json -------------------------------------------------------------------------------- /apps/govuk-template/webpack.config.d.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-template/webpack.config.d.mts -------------------------------------------------------------------------------- /apps/govuk-template/webpack.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/govuk-template/webpack.config.mjs -------------------------------------------------------------------------------- /apps/next-example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/next-example/.gitignore -------------------------------------------------------------------------------- /apps/next-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/next-example/README.md -------------------------------------------------------------------------------- /apps/next-example/cypress.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/next-example/cypress.config.mjs -------------------------------------------------------------------------------- /apps/next-example/feat/home.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/next-example/feat/home.spec.js -------------------------------------------------------------------------------- /apps/next-example/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/next-example/jest.config.js -------------------------------------------------------------------------------- /apps/next-example/next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/next-example/next.config.ts -------------------------------------------------------------------------------- /apps/next-example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/next-example/package.json -------------------------------------------------------------------------------- /apps/next-example/public/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/next-example/public/apple-icon.png -------------------------------------------------------------------------------- /apps/next-example/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/next-example/src/app/favicon.ico -------------------------------------------------------------------------------- /apps/next-example/src/app/four/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/next-example/src/app/four/page.tsx -------------------------------------------------------------------------------- /apps/next-example/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/next-example/src/app/layout.tsx -------------------------------------------------------------------------------- /apps/next-example/src/app/one/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/next-example/src/app/one/page.tsx -------------------------------------------------------------------------------- /apps/next-example/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/next-example/src/app/page.tsx -------------------------------------------------------------------------------- /apps/next-example/src/app/three/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/next-example/src/app/three/page.tsx -------------------------------------------------------------------------------- /apps/next-example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/next-example/tsconfig.json -------------------------------------------------------------------------------- /apps/remix-example/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/remix-example/.eslintrc.cjs -------------------------------------------------------------------------------- /apps/remix-example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/remix-example/.gitignore -------------------------------------------------------------------------------- /apps/remix-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/remix-example/README.md -------------------------------------------------------------------------------- /apps/remix-example/app/entry.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/remix-example/app/entry.client.tsx -------------------------------------------------------------------------------- /apps/remix-example/app/entry.server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/remix-example/app/entry.server.tsx -------------------------------------------------------------------------------- /apps/remix-example/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/remix-example/app/root.tsx -------------------------------------------------------------------------------- /apps/remix-example/app/routes/_index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/remix-example/app/routes/_index.tsx -------------------------------------------------------------------------------- /apps/remix-example/app/routes/four.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/remix-example/app/routes/four.tsx -------------------------------------------------------------------------------- /apps/remix-example/app/routes/one.two.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/remix-example/app/routes/one.two.tsx -------------------------------------------------------------------------------- /apps/remix-example/app/routes/three.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/remix-example/app/routes/three.tsx -------------------------------------------------------------------------------- /apps/remix-example/app/style.scss: -------------------------------------------------------------------------------- 1 | @import "@not-govuk/components"; 2 | -------------------------------------------------------------------------------- /apps/remix-example/cypress.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/remix-example/cypress.config.mjs -------------------------------------------------------------------------------- /apps/remix-example/feat/home.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/remix-example/feat/home.spec.js -------------------------------------------------------------------------------- /apps/remix-example/jest.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/remix-example/jest.config.cjs -------------------------------------------------------------------------------- /apps/remix-example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/remix-example/package.json -------------------------------------------------------------------------------- /apps/remix-example/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/remix-example/postcss.config.js -------------------------------------------------------------------------------- /apps/remix-example/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/remix-example/public/favicon.ico -------------------------------------------------------------------------------- /apps/remix-example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/remix-example/tsconfig.json -------------------------------------------------------------------------------- /apps/remix-example/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/apps/remix-example/vite.config.ts -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/babel.config.js -------------------------------------------------------------------------------- /components-internal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components-internal/README.md -------------------------------------------------------------------------------- /components-internal/anchor-list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components-internal/anchor-list/README.md -------------------------------------------------------------------------------- /components-internal/anchor-list/assets/AnchorList.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components-internal/anchor-list/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/component/tsconfig.json -------------------------------------------------------------------------------- /components-internal/anchor/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components-internal/anchor/.gitignore -------------------------------------------------------------------------------- /components-internal/anchor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components-internal/anchor/README.md -------------------------------------------------------------------------------- /components-internal/anchor/assets/Anchor.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components-internal/anchor/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components-internal/anchor/jest.config.js -------------------------------------------------------------------------------- /components-internal/anchor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components-internal/anchor/package.json -------------------------------------------------------------------------------- /components-internal/anchor/spec/Anchor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components-internal/anchor/spec/Anchor.ts -------------------------------------------------------------------------------- /components-internal/anchor/src/Anchor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components-internal/anchor/src/Anchor.tsx -------------------------------------------------------------------------------- /components-internal/anchor/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/component/tsconfig.json -------------------------------------------------------------------------------- /components-internal/simple-table/assets/SimpleTable.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components-internal/simple-table/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/component/tsconfig.json -------------------------------------------------------------------------------- /components-internal/tabs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components-internal/tabs/.gitignore -------------------------------------------------------------------------------- /components-internal/tabs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components-internal/tabs/README.md -------------------------------------------------------------------------------- /components-internal/tabs/assets/Tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components-internal/tabs/assets/Tabs.scss -------------------------------------------------------------------------------- /components-internal/tabs/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components-internal/tabs/jest.config.js -------------------------------------------------------------------------------- /components-internal/tabs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components-internal/tabs/package.json -------------------------------------------------------------------------------- /components-internal/tabs/spec/Tabs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components-internal/tabs/spec/Tabs.mdx -------------------------------------------------------------------------------- /components-internal/tabs/spec/Tabs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components-internal/tabs/spec/Tabs.ts -------------------------------------------------------------------------------- /components-internal/tabs/src/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components-internal/tabs/src/Tabs.tsx -------------------------------------------------------------------------------- /components-internal/tabs/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/component/tsconfig.json -------------------------------------------------------------------------------- /components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/README.md -------------------------------------------------------------------------------- /components/aside/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/aside/.gitignore -------------------------------------------------------------------------------- /components/aside/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/aside/README.md -------------------------------------------------------------------------------- /components/aside/assets/Aside.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/aside/assets/Aside.scss -------------------------------------------------------------------------------- /components/aside/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/aside/jest.config.js -------------------------------------------------------------------------------- /components/aside/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/aside/package.json -------------------------------------------------------------------------------- /components/aside/spec/Aside.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/aside/spec/Aside.mdx -------------------------------------------------------------------------------- /components/aside/spec/Aside.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/aside/spec/Aside.stories.tsx -------------------------------------------------------------------------------- /components/aside/spec/Aside.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/aside/spec/Aside.ts -------------------------------------------------------------------------------- /components/aside/src/Aside.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/aside/src/Aside.tsx -------------------------------------------------------------------------------- /components/aside/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/component/tsconfig.json -------------------------------------------------------------------------------- /components/back-link/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/back-link/.gitignore -------------------------------------------------------------------------------- /components/back-link/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/back-link/README.md -------------------------------------------------------------------------------- /components/back-link/assets/BackLink.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/back-link/assets/BackLink.scss -------------------------------------------------------------------------------- /components/back-link/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/back-link/jest.config.js -------------------------------------------------------------------------------- /components/back-link/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/back-link/package.json -------------------------------------------------------------------------------- /components/back-link/spec/BackLink.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/back-link/spec/BackLink.mdx -------------------------------------------------------------------------------- /components/back-link/spec/BackLink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/back-link/spec/BackLink.ts -------------------------------------------------------------------------------- /components/back-link/src/BackLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/back-link/src/BackLink.tsx -------------------------------------------------------------------------------- /components/back-link/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/component/tsconfig.json -------------------------------------------------------------------------------- /components/breadcrumbs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/breadcrumbs/.gitignore -------------------------------------------------------------------------------- /components/breadcrumbs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/breadcrumbs/README.md -------------------------------------------------------------------------------- /components/breadcrumbs/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/breadcrumbs/jest.config.js -------------------------------------------------------------------------------- /components/breadcrumbs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/breadcrumbs/package.json -------------------------------------------------------------------------------- /components/breadcrumbs/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/component/tsconfig.json -------------------------------------------------------------------------------- /components/button-group/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/button-group/.gitignore -------------------------------------------------------------------------------- /components/button-group/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/button-group/README.md -------------------------------------------------------------------------------- /components/button-group/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/button-group/jest.config.js -------------------------------------------------------------------------------- /components/button-group/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/button-group/package.json -------------------------------------------------------------------------------- /components/button-group/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/component/tsconfig.json -------------------------------------------------------------------------------- /components/button/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/button/.gitignore -------------------------------------------------------------------------------- /components/button/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/button/README.md -------------------------------------------------------------------------------- /components/button/assets/Button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/button/assets/Button.scss -------------------------------------------------------------------------------- /components/button/assets/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/button/assets/global.scss -------------------------------------------------------------------------------- /components/button/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/button/jest.config.js -------------------------------------------------------------------------------- /components/button/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/button/package.json -------------------------------------------------------------------------------- /components/button/spec/Button.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/button/spec/Button.mdx -------------------------------------------------------------------------------- /components/button/spec/Button.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/button/spec/Button.stories.tsx -------------------------------------------------------------------------------- /components/button/spec/Button.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/button/spec/Button.ts -------------------------------------------------------------------------------- /components/button/src/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/button/src/Button.tsx -------------------------------------------------------------------------------- /components/button/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/component/tsconfig.json -------------------------------------------------------------------------------- /components/checkboxes/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/checkboxes/.gitignore -------------------------------------------------------------------------------- /components/checkboxes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/checkboxes/README.md -------------------------------------------------------------------------------- /components/checkboxes/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/checkboxes/jest.config.js -------------------------------------------------------------------------------- /components/checkboxes/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/checkboxes/package.json -------------------------------------------------------------------------------- /components/checkboxes/spec/Checkboxes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/checkboxes/spec/Checkboxes.mdx -------------------------------------------------------------------------------- /components/checkboxes/spec/Checkboxes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/checkboxes/spec/Checkboxes.ts -------------------------------------------------------------------------------- /components/checkboxes/src/Checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/checkboxes/src/Checkbox.tsx -------------------------------------------------------------------------------- /components/checkboxes/src/Checkboxes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/checkboxes/src/Checkboxes.tsx -------------------------------------------------------------------------------- /components/checkboxes/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/component/tsconfig.json -------------------------------------------------------------------------------- /components/cookie-banner/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/cookie-banner/.gitignore -------------------------------------------------------------------------------- /components/cookie-banner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/cookie-banner/README.md -------------------------------------------------------------------------------- /components/cookie-banner/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/cookie-banner/jest.config.js -------------------------------------------------------------------------------- /components/cookie-banner/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/cookie-banner/package.json -------------------------------------------------------------------------------- /components/cookie-banner/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/component/tsconfig.json -------------------------------------------------------------------------------- /components/date-input/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/date-input/.gitignore -------------------------------------------------------------------------------- /components/date-input/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/date-input/README.md -------------------------------------------------------------------------------- /components/date-input/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/date-input/jest.config.js -------------------------------------------------------------------------------- /components/date-input/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/date-input/package.json -------------------------------------------------------------------------------- /components/date-input/spec/DateInput.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/date-input/spec/DateInput.mdx -------------------------------------------------------------------------------- /components/date-input/spec/DateInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/date-input/spec/DateInput.ts -------------------------------------------------------------------------------- /components/date-input/src/DateInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/date-input/src/DateInput.tsx -------------------------------------------------------------------------------- /components/date-input/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/component/tsconfig.json -------------------------------------------------------------------------------- /components/details/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/details/.gitignore -------------------------------------------------------------------------------- /components/details/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/details/README.md -------------------------------------------------------------------------------- /components/details/assets/Details.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/details/assets/Details.scss -------------------------------------------------------------------------------- /components/details/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/details/jest.config.js -------------------------------------------------------------------------------- /components/details/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/details/package.json -------------------------------------------------------------------------------- /components/details/spec/Details.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/details/spec/Details.mdx -------------------------------------------------------------------------------- /components/details/spec/Details.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/details/spec/Details.ts -------------------------------------------------------------------------------- /components/details/src/Details.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/details/src/Details.tsx -------------------------------------------------------------------------------- /components/details/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/component/tsconfig.json -------------------------------------------------------------------------------- /components/error-message/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/error-message/.gitignore -------------------------------------------------------------------------------- /components/error-message/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/error-message/README.md -------------------------------------------------------------------------------- /components/error-message/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/error-message/jest.config.js -------------------------------------------------------------------------------- /components/error-message/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/error-message/package.json -------------------------------------------------------------------------------- /components/error-message/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/component/tsconfig.json -------------------------------------------------------------------------------- /components/error-summary/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/error-summary/.gitignore -------------------------------------------------------------------------------- /components/error-summary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/error-summary/README.md -------------------------------------------------------------------------------- /components/error-summary/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/error-summary/jest.config.js -------------------------------------------------------------------------------- /components/error-summary/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/error-summary/package.json -------------------------------------------------------------------------------- /components/error-summary/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/component/tsconfig.json -------------------------------------------------------------------------------- /components/fieldset/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/fieldset/.gitignore -------------------------------------------------------------------------------- /components/fieldset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/fieldset/README.md -------------------------------------------------------------------------------- /components/fieldset/assets/FieldSet.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/fieldset/assets/FieldSet.scss -------------------------------------------------------------------------------- /components/fieldset/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/fieldset/jest.config.js -------------------------------------------------------------------------------- /components/fieldset/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/fieldset/package.json -------------------------------------------------------------------------------- /components/fieldset/spec/FieldSet.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/fieldset/spec/FieldSet.mdx -------------------------------------------------------------------------------- /components/fieldset/spec/FieldSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/fieldset/spec/FieldSet.ts -------------------------------------------------------------------------------- /components/fieldset/src/FieldSet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/fieldset/src/FieldSet.tsx -------------------------------------------------------------------------------- /components/fieldset/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/component/tsconfig.json -------------------------------------------------------------------------------- /components/file-upload/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/file-upload/.gitignore -------------------------------------------------------------------------------- /components/file-upload/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/file-upload/README.md -------------------------------------------------------------------------------- /components/file-upload/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/file-upload/jest.config.js -------------------------------------------------------------------------------- /components/file-upload/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/file-upload/package.json -------------------------------------------------------------------------------- /components/file-upload/spec/FileUpload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/file-upload/spec/FileUpload.ts -------------------------------------------------------------------------------- /components/file-upload/src/FileUpload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/file-upload/src/FileUpload.tsx -------------------------------------------------------------------------------- /components/file-upload/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/component/tsconfig.json -------------------------------------------------------------------------------- /components/footer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/footer/.gitignore -------------------------------------------------------------------------------- /components/footer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/footer/README.md -------------------------------------------------------------------------------- /components/footer/assets/Footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/footer/assets/Footer.scss -------------------------------------------------------------------------------- /components/footer/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/footer/jest.config.js -------------------------------------------------------------------------------- /components/footer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/footer/package.json -------------------------------------------------------------------------------- /components/footer/spec/Footer.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/footer/spec/Footer.mdx -------------------------------------------------------------------------------- /components/footer/spec/Footer.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/footer/spec/Footer.stories.tsx -------------------------------------------------------------------------------- /components/footer/spec/Footer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/footer/spec/Footer.ts -------------------------------------------------------------------------------- /components/footer/src/CrownLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/footer/src/CrownLogo.tsx -------------------------------------------------------------------------------- /components/footer/src/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/footer/src/Footer.tsx -------------------------------------------------------------------------------- /components/footer/src/LogoProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/footer/src/LogoProps.ts -------------------------------------------------------------------------------- /components/footer/src/OGLLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/footer/src/OGLLogo.tsx -------------------------------------------------------------------------------- /components/footer/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/component/tsconfig.json -------------------------------------------------------------------------------- /components/form-field/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/form-field/.gitignore -------------------------------------------------------------------------------- /components/form-field/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/form-field/README.md -------------------------------------------------------------------------------- /components/form-field/assets/FormField.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/form-field/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/form-field/jest.config.js -------------------------------------------------------------------------------- /components/form-field/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/form-field/package.json -------------------------------------------------------------------------------- /components/form-field/spec/FormField.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/form-field/spec/FormField.mdx -------------------------------------------------------------------------------- /components/form-field/spec/FormField.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/form-field/spec/FormField.ts -------------------------------------------------------------------------------- /components/form-field/src/FormField.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/form-field/src/FormField.ts -------------------------------------------------------------------------------- /components/form-field/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/component/tsconfig.json -------------------------------------------------------------------------------- /components/form-group/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/form-group/.gitignore -------------------------------------------------------------------------------- /components/form-group/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/form-group/README.md -------------------------------------------------------------------------------- /components/form-group/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/form-group/jest.config.js -------------------------------------------------------------------------------- /components/form-group/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/form-group/package.json -------------------------------------------------------------------------------- /components/form-group/spec/FormGroup.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/form-group/spec/FormGroup.mdx -------------------------------------------------------------------------------- /components/form-group/spec/FormGroup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/form-group/spec/FormGroup.ts -------------------------------------------------------------------------------- /components/form-group/src/FormGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/form-group/src/FormGroup.tsx -------------------------------------------------------------------------------- /components/form-group/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/component/tsconfig.json -------------------------------------------------------------------------------- /components/form/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/form/.gitignore -------------------------------------------------------------------------------- /components/form/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/form/README.md -------------------------------------------------------------------------------- /components/form/assets/Form.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/form/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/form/jest.config.js -------------------------------------------------------------------------------- /components/form/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/form/package.json -------------------------------------------------------------------------------- /components/form/spec/Form.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/form/spec/Form.mdx -------------------------------------------------------------------------------- /components/form/spec/Form.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/form/spec/Form.stories.tsx -------------------------------------------------------------------------------- /components/form/spec/Form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/form/spec/Form.ts -------------------------------------------------------------------------------- /components/form/src/Form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/form/src/Form.ts -------------------------------------------------------------------------------- /components/form/src/controls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/form/src/controls.ts -------------------------------------------------------------------------------- /components/form/src/fields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/form/src/fields.ts -------------------------------------------------------------------------------- /components/form/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/component/tsconfig.json -------------------------------------------------------------------------------- /components/header/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/header/.gitignore -------------------------------------------------------------------------------- /components/header/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/header/README.md -------------------------------------------------------------------------------- /components/header/assets/Header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/header/assets/Header.scss -------------------------------------------------------------------------------- /components/header/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/header/jest.config.js -------------------------------------------------------------------------------- /components/header/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/header/package.json -------------------------------------------------------------------------------- /components/header/spec/Header.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/header/spec/Header.mdx -------------------------------------------------------------------------------- /components/header/spec/Header.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/header/spec/Header.stories.tsx -------------------------------------------------------------------------------- /components/header/spec/Header.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/header/spec/Header.ts -------------------------------------------------------------------------------- /components/header/src/CoatLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/header/src/CoatLogo.tsx -------------------------------------------------------------------------------- /components/header/src/CrownLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/header/src/CrownLogo.tsx -------------------------------------------------------------------------------- /components/header/src/CrownLogoOld.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/header/src/CrownLogoOld.tsx -------------------------------------------------------------------------------- /components/header/src/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/header/src/Header.tsx -------------------------------------------------------------------------------- /components/header/src/LogoProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/header/src/LogoProps.ts -------------------------------------------------------------------------------- /components/header/src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/header/src/env.d.ts -------------------------------------------------------------------------------- /components/header/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/component/tsconfig.json -------------------------------------------------------------------------------- /components/hint/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/hint/.gitignore -------------------------------------------------------------------------------- /components/hint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/hint/README.md -------------------------------------------------------------------------------- /components/hint/assets/Hint.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/hint/assets/Hint.scss -------------------------------------------------------------------------------- /components/hint/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/hint/jest.config.js -------------------------------------------------------------------------------- /components/hint/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/hint/package.json -------------------------------------------------------------------------------- /components/hint/spec/Hint.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/hint/spec/Hint.mdx -------------------------------------------------------------------------------- /components/hint/spec/Hint.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/hint/spec/Hint.stories.tsx -------------------------------------------------------------------------------- /components/hint/spec/Hint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/hint/spec/Hint.ts -------------------------------------------------------------------------------- /components/hint/src/Hint.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/hint/src/Hint.tsx -------------------------------------------------------------------------------- /components/hint/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/component/tsconfig.json -------------------------------------------------------------------------------- /components/input/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/input/.gitignore -------------------------------------------------------------------------------- /components/input/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/input/README.md -------------------------------------------------------------------------------- /components/input/assets/Input.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/input/assets/Input.scss -------------------------------------------------------------------------------- /components/input/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/input/jest.config.js -------------------------------------------------------------------------------- /components/input/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/input/package.json -------------------------------------------------------------------------------- /components/input/spec/Input.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/input/spec/Input.mdx -------------------------------------------------------------------------------- /components/input/spec/Input.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/input/spec/Input.stories.tsx -------------------------------------------------------------------------------- /components/input/spec/Input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/input/spec/Input.ts -------------------------------------------------------------------------------- /components/input/src/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/input/src/Input.tsx -------------------------------------------------------------------------------- /components/input/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/component/tsconfig.json -------------------------------------------------------------------------------- /components/inset-text/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/inset-text/.gitignore -------------------------------------------------------------------------------- /components/inset-text/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/inset-text/README.md -------------------------------------------------------------------------------- /components/inset-text/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/inset-text/jest.config.js -------------------------------------------------------------------------------- /components/inset-text/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/inset-text/package.json -------------------------------------------------------------------------------- /components/inset-text/spec/InsetText.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/inset-text/spec/InsetText.mdx -------------------------------------------------------------------------------- /components/inset-text/spec/InsetText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/inset-text/spec/InsetText.ts -------------------------------------------------------------------------------- /components/inset-text/src/InsetText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/inset-text/src/InsetText.tsx -------------------------------------------------------------------------------- /components/inset-text/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/component/tsconfig.json -------------------------------------------------------------------------------- /components/label/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/label/.gitignore -------------------------------------------------------------------------------- /components/label/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/label/README.md -------------------------------------------------------------------------------- /components/label/assets/Label.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/label/assets/Label.scss -------------------------------------------------------------------------------- /components/label/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/label/jest.config.js -------------------------------------------------------------------------------- /components/label/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/label/package.json -------------------------------------------------------------------------------- /components/label/spec/Label.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/label/spec/Label.mdx -------------------------------------------------------------------------------- /components/label/spec/Label.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/label/spec/Label.stories.tsx -------------------------------------------------------------------------------- /components/label/spec/Label.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/label/spec/Label.ts -------------------------------------------------------------------------------- /components/label/src/Label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/label/src/Label.tsx -------------------------------------------------------------------------------- /components/label/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/component/tsconfig.json -------------------------------------------------------------------------------- /components/link/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/link/.gitignore -------------------------------------------------------------------------------- /components/link/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/link/README.md -------------------------------------------------------------------------------- /components/link/assets/Link.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/link/assets/Link.scss -------------------------------------------------------------------------------- /components/link/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/link/jest.config.js -------------------------------------------------------------------------------- /components/link/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/link/package.json -------------------------------------------------------------------------------- /components/link/spec/Link.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/link/spec/Link.mdx -------------------------------------------------------------------------------- /components/link/spec/Link.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/link/spec/Link.stories.tsx -------------------------------------------------------------------------------- /components/link/spec/Link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/link/spec/Link.ts -------------------------------------------------------------------------------- /components/link/src/Link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/link/src/Link.tsx -------------------------------------------------------------------------------- /components/link/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/component/tsconfig.json -------------------------------------------------------------------------------- /components/navigation-menu/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/navigation-menu/.gitignore -------------------------------------------------------------------------------- /components/navigation-menu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/navigation-menu/README.md -------------------------------------------------------------------------------- /components/navigation-menu/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/navigation-menu/jest.config.js -------------------------------------------------------------------------------- /components/navigation-menu/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/navigation-menu/package.json -------------------------------------------------------------------------------- /components/navigation-menu/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/component/tsconfig.json -------------------------------------------------------------------------------- /components/notification-banner/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/notification-banner/.gitignore -------------------------------------------------------------------------------- /components/notification-banner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/notification-banner/README.md -------------------------------------------------------------------------------- /components/notification-banner/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/component/tsconfig.json -------------------------------------------------------------------------------- /components/page/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/page/.gitignore -------------------------------------------------------------------------------- /components/page/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/page/README.md -------------------------------------------------------------------------------- /components/page/assets/GovUKPage.scss: -------------------------------------------------------------------------------- 1 | @import './fonts/gds-transport.css'; 2 | -------------------------------------------------------------------------------- /components/page/assets/NotGovUKPage.scss: -------------------------------------------------------------------------------- 1 | @import './fonts/roboto.css'; 2 | -------------------------------------------------------------------------------- /components/page/assets/Page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/page/assets/Page.scss -------------------------------------------------------------------------------- /components/page/assets/coat-favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/page/assets/coat-favicon.ico -------------------------------------------------------------------------------- /components/page/assets/fonts/roboto.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/page/assets/fonts/roboto.css -------------------------------------------------------------------------------- /components/page/assets/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/page/assets/index.scss -------------------------------------------------------------------------------- /components/page/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/page/jest.config.js -------------------------------------------------------------------------------- /components/page/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/page/package.json -------------------------------------------------------------------------------- /components/page/spec/GovUKPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/page/spec/GovUKPage.ts -------------------------------------------------------------------------------- /components/page/spec/NotGovUKPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/page/spec/NotGovUKPage.ts -------------------------------------------------------------------------------- /components/page/spec/Page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/page/spec/Page.mdx -------------------------------------------------------------------------------- /components/page/spec/Page.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/page/spec/Page.stories.tsx -------------------------------------------------------------------------------- /components/page/spec/Page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/page/spec/Page.ts -------------------------------------------------------------------------------- /components/page/src/GovUKPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/page/src/GovUKPage.tsx -------------------------------------------------------------------------------- /components/page/src/NotGovUKPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/page/src/NotGovUKPage.tsx -------------------------------------------------------------------------------- /components/page/src/Page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/page/src/Page.tsx -------------------------------------------------------------------------------- /components/page/src/bundler.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/page/src/bundler.d.ts -------------------------------------------------------------------------------- /components/page/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/page/src/index.ts -------------------------------------------------------------------------------- /components/page/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/page/src/types.ts -------------------------------------------------------------------------------- /components/page/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/component/tsconfig.json -------------------------------------------------------------------------------- /components/pagination/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/pagination/.gitignore -------------------------------------------------------------------------------- /components/pagination/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/pagination/README.md -------------------------------------------------------------------------------- /components/pagination/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/pagination/jest.config.js -------------------------------------------------------------------------------- /components/pagination/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/pagination/package.json -------------------------------------------------------------------------------- /components/pagination/spec/Pagination.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/pagination/spec/Pagination.mdx -------------------------------------------------------------------------------- /components/pagination/spec/Pagination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/pagination/spec/Pagination.ts -------------------------------------------------------------------------------- /components/pagination/src/ItemLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/pagination/src/ItemLink.tsx -------------------------------------------------------------------------------- /components/pagination/src/PageList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/pagination/src/PageList.tsx -------------------------------------------------------------------------------- /components/pagination/src/Pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/pagination/src/Pagination.tsx -------------------------------------------------------------------------------- /components/pagination/src/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/pagination/src/common.ts -------------------------------------------------------------------------------- /components/pagination/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/component/tsconfig.json -------------------------------------------------------------------------------- /components/panel/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/panel/.gitignore -------------------------------------------------------------------------------- /components/panel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/panel/README.md -------------------------------------------------------------------------------- /components/panel/assets/Panel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/panel/assets/Panel.scss -------------------------------------------------------------------------------- /components/panel/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/panel/jest.config.js -------------------------------------------------------------------------------- /components/panel/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/panel/package.json -------------------------------------------------------------------------------- /components/panel/spec/Panel.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/panel/spec/Panel.mdx -------------------------------------------------------------------------------- /components/panel/spec/Panel.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/panel/spec/Panel.stories.tsx -------------------------------------------------------------------------------- /components/panel/spec/Panel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/panel/spec/Panel.ts -------------------------------------------------------------------------------- /components/panel/src/Panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/panel/src/Panel.tsx -------------------------------------------------------------------------------- /components/panel/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/component/tsconfig.json -------------------------------------------------------------------------------- /components/phase-banner/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/phase-banner/.gitignore -------------------------------------------------------------------------------- /components/phase-banner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/phase-banner/README.md -------------------------------------------------------------------------------- /components/phase-banner/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/phase-banner/jest.config.js -------------------------------------------------------------------------------- /components/phase-banner/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/phase-banner/package.json -------------------------------------------------------------------------------- /components/phase-banner/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/component/tsconfig.json -------------------------------------------------------------------------------- /components/radios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/radios/.gitignore -------------------------------------------------------------------------------- /components/radios/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/radios/README.md -------------------------------------------------------------------------------- /components/radios/assets/Radios.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/radios/assets/Radios.scss -------------------------------------------------------------------------------- /components/radios/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/radios/jest.config.js -------------------------------------------------------------------------------- /components/radios/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/radios/package.json -------------------------------------------------------------------------------- /components/radios/spec/Radios.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/radios/spec/Radios.mdx -------------------------------------------------------------------------------- /components/radios/spec/Radios.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/radios/spec/Radios.stories.tsx -------------------------------------------------------------------------------- /components/radios/spec/Radios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/radios/spec/Radios.ts -------------------------------------------------------------------------------- /components/radios/src/Radio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/radios/src/Radio.tsx -------------------------------------------------------------------------------- /components/radios/src/Radios.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/radios/src/Radios.tsx -------------------------------------------------------------------------------- /components/radios/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/component/tsconfig.json -------------------------------------------------------------------------------- /components/search-box/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/search-box/.gitignore -------------------------------------------------------------------------------- /components/search-box/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/search-box/README.md -------------------------------------------------------------------------------- /components/search-box/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/search-box/jest.config.js -------------------------------------------------------------------------------- /components/search-box/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/search-box/package.json -------------------------------------------------------------------------------- /components/search-box/spec/SearchBox.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/search-box/spec/SearchBox.mdx -------------------------------------------------------------------------------- /components/search-box/spec/SearchBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/search-box/spec/SearchBox.ts -------------------------------------------------------------------------------- /components/search-box/src/SearchBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/search-box/src/SearchBox.tsx -------------------------------------------------------------------------------- /components/search-box/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/component/tsconfig.json -------------------------------------------------------------------------------- /components/select/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/select/.gitignore -------------------------------------------------------------------------------- /components/select/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/select/README.md -------------------------------------------------------------------------------- /components/select/assets/Select.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/select/assets/Select.scss -------------------------------------------------------------------------------- /components/select/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/select/jest.config.js -------------------------------------------------------------------------------- /components/select/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/select/package.json -------------------------------------------------------------------------------- /components/select/spec/Select.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/select/spec/Select.mdx -------------------------------------------------------------------------------- /components/select/spec/Select.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/select/spec/Select.stories.tsx -------------------------------------------------------------------------------- /components/select/spec/Select.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/select/spec/Select.ts -------------------------------------------------------------------------------- /components/select/src/Select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/select/src/Select.tsx -------------------------------------------------------------------------------- /components/select/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/component/tsconfig.json -------------------------------------------------------------------------------- /components/service-navigation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/service-navigation/.gitignore -------------------------------------------------------------------------------- /components/service-navigation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/service-navigation/README.md -------------------------------------------------------------------------------- /components/service-navigation/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/component/tsconfig.json -------------------------------------------------------------------------------- /components/skip-link/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/skip-link/.gitignore -------------------------------------------------------------------------------- /components/skip-link/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/skip-link/README.md -------------------------------------------------------------------------------- /components/skip-link/assets/SkipLink.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/skip-link/assets/SkipLink.scss -------------------------------------------------------------------------------- /components/skip-link/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/skip-link/jest.config.js -------------------------------------------------------------------------------- /components/skip-link/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/skip-link/package.json -------------------------------------------------------------------------------- /components/skip-link/spec/SkipLink.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/skip-link/spec/SkipLink.mdx -------------------------------------------------------------------------------- /components/skip-link/spec/SkipLink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/skip-link/spec/SkipLink.ts -------------------------------------------------------------------------------- /components/skip-link/src/SkipLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/skip-link/src/SkipLink.tsx -------------------------------------------------------------------------------- /components/skip-link/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/component/tsconfig.json -------------------------------------------------------------------------------- /components/standalone-input/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/standalone-input/.gitignore -------------------------------------------------------------------------------- /components/standalone-input/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/standalone-input/README.md -------------------------------------------------------------------------------- /components/standalone-input/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/standalone-input/package.json -------------------------------------------------------------------------------- /components/standalone-input/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/component/tsconfig.json -------------------------------------------------------------------------------- /components/summary-card/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/summary-card/.gitignore -------------------------------------------------------------------------------- /components/summary-card/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/summary-card/README.md -------------------------------------------------------------------------------- /components/summary-card/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/summary-card/jest.config.js -------------------------------------------------------------------------------- /components/summary-card/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/summary-card/package.json -------------------------------------------------------------------------------- /components/summary-card/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/component/tsconfig.json -------------------------------------------------------------------------------- /components/summary-list/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/summary-list/.gitignore -------------------------------------------------------------------------------- /components/summary-list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/summary-list/README.md -------------------------------------------------------------------------------- /components/summary-list/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/summary-list/jest.config.js -------------------------------------------------------------------------------- /components/summary-list/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/summary-list/package.json -------------------------------------------------------------------------------- /components/summary-list/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/component/tsconfig.json -------------------------------------------------------------------------------- /components/table/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/table/.gitignore -------------------------------------------------------------------------------- /components/table/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/table/README.md -------------------------------------------------------------------------------- /components/table/assets/Table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/table/assets/Table.scss -------------------------------------------------------------------------------- /components/table/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/table/jest.config.js -------------------------------------------------------------------------------- /components/table/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/table/package.json -------------------------------------------------------------------------------- /components/table/spec/Table.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/table/spec/Table.mdx -------------------------------------------------------------------------------- /components/table/spec/Table.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/table/spec/Table.stories.tsx -------------------------------------------------------------------------------- /components/table/spec/Table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/table/spec/Table.ts -------------------------------------------------------------------------------- /components/table/src/Table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/table/src/Table.tsx -------------------------------------------------------------------------------- /components/table/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/component/tsconfig.json -------------------------------------------------------------------------------- /components/tabs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/tabs/.gitignore -------------------------------------------------------------------------------- /components/tabs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/tabs/README.md -------------------------------------------------------------------------------- /components/tabs/assets/Tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/tabs/assets/Tabs.scss -------------------------------------------------------------------------------- /components/tabs/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/tabs/jest.config.js -------------------------------------------------------------------------------- /components/tabs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/tabs/package.json -------------------------------------------------------------------------------- /components/tabs/spec/Tabs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/tabs/spec/Tabs.mdx -------------------------------------------------------------------------------- /components/tabs/spec/Tabs.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/tabs/spec/Tabs.stories.tsx -------------------------------------------------------------------------------- /components/tabs/spec/Tabs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/tabs/spec/Tabs.ts -------------------------------------------------------------------------------- /components/tabs/src/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/tabs/src/Tabs.tsx -------------------------------------------------------------------------------- /components/tabs/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/component/tsconfig.json -------------------------------------------------------------------------------- /components/tag/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/tag/.gitignore -------------------------------------------------------------------------------- /components/tag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/tag/README.md -------------------------------------------------------------------------------- /components/tag/assets/Tag.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/tag/assets/Tag.scss -------------------------------------------------------------------------------- /components/tag/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/tag/jest.config.js -------------------------------------------------------------------------------- /components/tag/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/tag/package.json -------------------------------------------------------------------------------- /components/tag/spec/Tag.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/tag/spec/Tag.mdx -------------------------------------------------------------------------------- /components/tag/spec/Tag.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/tag/spec/Tag.stories.tsx -------------------------------------------------------------------------------- /components/tag/spec/Tag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/tag/spec/Tag.ts -------------------------------------------------------------------------------- /components/tag/src/Tag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/tag/src/Tag.tsx -------------------------------------------------------------------------------- /components/tag/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/component/tsconfig.json -------------------------------------------------------------------------------- /components/text-input/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/text-input/.gitignore -------------------------------------------------------------------------------- /components/text-input/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/text-input/README.md -------------------------------------------------------------------------------- /components/text-input/assets/TextInput.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/text-input/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/text-input/jest.config.js -------------------------------------------------------------------------------- /components/text-input/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/text-input/package.json -------------------------------------------------------------------------------- /components/text-input/spec/TextInput.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/text-input/spec/TextInput.mdx -------------------------------------------------------------------------------- /components/text-input/spec/TextInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/text-input/spec/TextInput.ts -------------------------------------------------------------------------------- /components/text-input/src/TextInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/text-input/src/TextInput.tsx -------------------------------------------------------------------------------- /components/text-input/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/component/tsconfig.json -------------------------------------------------------------------------------- /components/textarea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/textarea/.gitignore -------------------------------------------------------------------------------- /components/textarea/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/textarea/README.md -------------------------------------------------------------------------------- /components/textarea/assets/Textarea.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/textarea/assets/Textarea.scss -------------------------------------------------------------------------------- /components/textarea/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/textarea/jest.config.js -------------------------------------------------------------------------------- /components/textarea/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/textarea/package.json -------------------------------------------------------------------------------- /components/textarea/spec/Textarea.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/textarea/spec/Textarea.mdx -------------------------------------------------------------------------------- /components/textarea/spec/Textarea.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/textarea/spec/Textarea.ts -------------------------------------------------------------------------------- /components/textarea/src/Textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/textarea/src/Textarea.tsx -------------------------------------------------------------------------------- /components/textarea/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/component/tsconfig.json -------------------------------------------------------------------------------- /components/visually-hidden/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/visually-hidden/.gitignore -------------------------------------------------------------------------------- /components/visually-hidden/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/visually-hidden/README.md -------------------------------------------------------------------------------- /components/visually-hidden/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/visually-hidden/jest.config.js -------------------------------------------------------------------------------- /components/visually-hidden/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/visually-hidden/package.json -------------------------------------------------------------------------------- /components/visually-hidden/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/component/tsconfig.json -------------------------------------------------------------------------------- /components/warning-text/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/warning-text/.gitignore -------------------------------------------------------------------------------- /components/warning-text/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/warning-text/README.md -------------------------------------------------------------------------------- /components/warning-text/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/warning-text/jest.config.js -------------------------------------------------------------------------------- /components/warning-text/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/warning-text/package.json -------------------------------------------------------------------------------- /components/warning-text/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/component/tsconfig.json -------------------------------------------------------------------------------- /components/width-container/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/width-container/.gitignore -------------------------------------------------------------------------------- /components/width-container/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/width-container/README.md -------------------------------------------------------------------------------- /components/width-container/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/width-container/jest.config.js -------------------------------------------------------------------------------- /components/width-container/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/components/width-container/package.json -------------------------------------------------------------------------------- /components/width-container/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/component/tsconfig.json -------------------------------------------------------------------------------- /cypress.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/cypress.config.mjs -------------------------------------------------------------------------------- /docs/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/docs/about.md -------------------------------------------------------------------------------- /docs/components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/docs/components.md -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/docs/contributing.md -------------------------------------------------------------------------------- /docs/design-decisions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/docs/design-decisions.md -------------------------------------------------------------------------------- /docs/get-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/docs/get-started.md -------------------------------------------------------------------------------- /docs/working-on-your-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/docs/working-on-your-project.md -------------------------------------------------------------------------------- /jest.config.base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/jest.config.base.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/jest.config.js -------------------------------------------------------------------------------- /lib-govuk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib-govuk/README.md -------------------------------------------------------------------------------- /lib-govuk/components/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib-govuk/components/.gitignore -------------------------------------------------------------------------------- /lib-govuk/components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib-govuk/components/README.md -------------------------------------------------------------------------------- /lib-govuk/components/assets/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib-govuk/components/assets/_code.scss -------------------------------------------------------------------------------- /lib-govuk/components/assets/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib-govuk/components/assets/index.scss -------------------------------------------------------------------------------- /lib-govuk/components/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib-govuk/components/jest.config.js -------------------------------------------------------------------------------- /lib-govuk/components/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib-govuk/components/package.json -------------------------------------------------------------------------------- /lib-govuk/components/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib-govuk/components/src/index.ts -------------------------------------------------------------------------------- /lib-govuk/components/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib-govuk/components/tsconfig.json -------------------------------------------------------------------------------- /lib-govuk/create/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib-govuk/create/.gitignore -------------------------------------------------------------------------------- /lib-govuk/create/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib-govuk/create/Makefile -------------------------------------------------------------------------------- /lib-govuk/create/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib-govuk/create/README.md -------------------------------------------------------------------------------- /lib-govuk/create/bin/create.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib-govuk/create/bin/create.mjs -------------------------------------------------------------------------------- /lib-govuk/create/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib-govuk/create/package.json -------------------------------------------------------------------------------- /lib-govuk/create/plopfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib-govuk/create/plopfile.js -------------------------------------------------------------------------------- /lib-govuk/plop-pack/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib-govuk/plop-pack/.gitignore -------------------------------------------------------------------------------- /lib-govuk/plop-pack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib-govuk/plop-pack/README.md -------------------------------------------------------------------------------- /lib-govuk/plop-pack/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib-govuk/plop-pack/package.json -------------------------------------------------------------------------------- /lib-govuk/plop-pack/skel/app/src/common/app.scss: -------------------------------------------------------------------------------- 1 | @import "@not-govuk/components"; 2 | -------------------------------------------------------------------------------- /lib-govuk/plop-pack/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib-govuk/plop-pack/src/index.js -------------------------------------------------------------------------------- /lib-govuk/sass-base/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib-govuk/sass-base/.gitignore -------------------------------------------------------------------------------- /lib-govuk/sass-base/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib-govuk/sass-base/README.md -------------------------------------------------------------------------------- /lib-govuk/sass-base/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib-govuk/sass-base/package.json -------------------------------------------------------------------------------- /lib-govuk/sass-base/src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib-govuk/sass-base/src/index.scss -------------------------------------------------------------------------------- /lib-govuk/simple-components/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib-govuk/simple-components/.gitignore -------------------------------------------------------------------------------- /lib-govuk/simple-components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib-govuk/simple-components/README.md -------------------------------------------------------------------------------- /lib-govuk/simple-components/assets/index.scss: -------------------------------------------------------------------------------- 1 | @import "@not-govuk/sass-base"; 2 | 3 | -------------------------------------------------------------------------------- /lib-govuk/simple-components/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib-govuk/simple-components/package.json -------------------------------------------------------------------------------- /lib-govuk/simple-components/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib-govuk/simple-components/src/index.ts -------------------------------------------------------------------------------- /lib-govuk/simple-components/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib-govuk/simple-components/tsconfig.json -------------------------------------------------------------------------------- /lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/README.md -------------------------------------------------------------------------------- /lib/app-composer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/app-composer/.gitignore -------------------------------------------------------------------------------- /lib/app-composer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/app-composer/README.md -------------------------------------------------------------------------------- /lib/app-composer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/app-composer/package.json -------------------------------------------------------------------------------- /lib/app-composer/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/app-composer/src/index.ts -------------------------------------------------------------------------------- /lib/app-composer/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/lib/tsconfig.json -------------------------------------------------------------------------------- /lib/app-plop-pack/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/app-plop-pack/.gitignore -------------------------------------------------------------------------------- /lib/app-plop-pack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/app-plop-pack/README.md -------------------------------------------------------------------------------- /lib/app-plop-pack/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/app-plop-pack/package.json -------------------------------------------------------------------------------- /lib/app-plop-pack/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/app-plop-pack/src/index.js -------------------------------------------------------------------------------- /lib/app-plop-pack/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../plop-pack/skel/lib/tsconfig.json -------------------------------------------------------------------------------- /lib/asset-proxy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/asset-proxy/.gitignore -------------------------------------------------------------------------------- /lib/asset-proxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/asset-proxy/README.md -------------------------------------------------------------------------------- /lib/asset-proxy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/asset-proxy/package.json -------------------------------------------------------------------------------- /lib/asset-proxy/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/asset-proxy/src/index.ts -------------------------------------------------------------------------------- /lib/asset-proxy/src/lib/webpack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/asset-proxy/src/lib/webpack.ts -------------------------------------------------------------------------------- /lib/asset-proxy/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/lib/tsconfig.json -------------------------------------------------------------------------------- /lib/client-component-helpers/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/client-component-helpers/.gitignore -------------------------------------------------------------------------------- /lib/client-component-helpers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/client-component-helpers/README.md -------------------------------------------------------------------------------- /lib/client-component-helpers/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/client-component-helpers/package.json -------------------------------------------------------------------------------- /lib/client-component-helpers/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './is-mounted'; 2 | -------------------------------------------------------------------------------- /lib/client-component-helpers/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/component/tsconfig.json -------------------------------------------------------------------------------- /lib/client-renderer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/client-renderer/.gitignore -------------------------------------------------------------------------------- /lib/client-renderer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/client-renderer/README.md -------------------------------------------------------------------------------- /lib/client-renderer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/client-renderer/package.json -------------------------------------------------------------------------------- /lib/client-renderer/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/client-renderer/src/index.ts -------------------------------------------------------------------------------- /lib/client-renderer/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/lib/tsconfig.json -------------------------------------------------------------------------------- /lib/component-helpers/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/component-helpers/.gitignore -------------------------------------------------------------------------------- /lib/component-helpers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/component-helpers/README.md -------------------------------------------------------------------------------- /lib/component-helpers/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/component-helpers/package.json -------------------------------------------------------------------------------- /lib/component-helpers/src/classes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/component-helpers/src/classes.ts -------------------------------------------------------------------------------- /lib/component-helpers/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './classes'; 2 | -------------------------------------------------------------------------------- /lib/component-helpers/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/component/tsconfig.json -------------------------------------------------------------------------------- /lib/component-test-helpers/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/component-test-helpers/.gitignore -------------------------------------------------------------------------------- /lib/component-test-helpers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/component-test-helpers/README.md -------------------------------------------------------------------------------- /lib/component-test-helpers/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/lib/tsconfig.json -------------------------------------------------------------------------------- /lib/consent-cookies/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/consent-cookies/.gitignore -------------------------------------------------------------------------------- /lib/consent-cookies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/consent-cookies/README.md -------------------------------------------------------------------------------- /lib/consent-cookies/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/consent-cookies/jest.config.js -------------------------------------------------------------------------------- /lib/consent-cookies/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/consent-cookies/package.json -------------------------------------------------------------------------------- /lib/consent-cookies/src/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/consent-cookies/src/common.ts -------------------------------------------------------------------------------- /lib/consent-cookies/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/consent-cookies/src/index.ts -------------------------------------------------------------------------------- /lib/consent-cookies/src/sessions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/consent-cookies/src/sessions.ts -------------------------------------------------------------------------------- /lib/consent-cookies/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../plop-pack/skel/lib/tsconfig.json -------------------------------------------------------------------------------- /lib/create/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/create/.gitignore -------------------------------------------------------------------------------- /lib/create/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/create/Makefile -------------------------------------------------------------------------------- /lib/create/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/create/README.md -------------------------------------------------------------------------------- /lib/create/bin/create.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/create/bin/create.mjs -------------------------------------------------------------------------------- /lib/create/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/create/package.json -------------------------------------------------------------------------------- /lib/create/plopfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/create/plopfile.js -------------------------------------------------------------------------------- /lib/create/skel/project/.jest-results.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /lib/create/skel/project/README.md.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/create/skel/project/README.md.hbs -------------------------------------------------------------------------------- /lib/create/skel/prototype/.github/workflows/deploy.yml: -------------------------------------------------------------------------------- 1 | name: Deploy 2 | on: 3 | push: 4 | jobs: 5 | -------------------------------------------------------------------------------- /lib/docs-components/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/docs-components/.gitignore -------------------------------------------------------------------------------- /lib/docs-components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/docs-components/README.md -------------------------------------------------------------------------------- /lib/docs-components/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/docs-components/package.json -------------------------------------------------------------------------------- /lib/docs-components/src/Controls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/docs-components/src/Controls.tsx -------------------------------------------------------------------------------- /lib/docs-components/src/DocsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/docs-components/src/DocsPage.tsx -------------------------------------------------------------------------------- /lib/docs-components/src/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/docs-components/src/context.ts -------------------------------------------------------------------------------- /lib/docs-components/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/docs-components/src/index.ts -------------------------------------------------------------------------------- /lib/docs-components/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/component/tsconfig.json -------------------------------------------------------------------------------- /lib/engine/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/engine/.gitignore -------------------------------------------------------------------------------- /lib/engine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/engine/README.md -------------------------------------------------------------------------------- /lib/engine/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/engine/package.json -------------------------------------------------------------------------------- /lib/engine/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/engine/src/index.ts -------------------------------------------------------------------------------- /lib/engine/src/lib/auth/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/engine/src/lib/auth/basic.ts -------------------------------------------------------------------------------- /lib/engine/src/lib/auth/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/engine/src/lib/auth/common.ts -------------------------------------------------------------------------------- /lib/engine/src/lib/auth/dummy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/engine/src/lib/auth/dummy.ts -------------------------------------------------------------------------------- /lib/engine/src/lib/auth/headers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/engine/src/lib/auth/headers.ts -------------------------------------------------------------------------------- /lib/engine/src/lib/auth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/engine/src/lib/auth/index.ts -------------------------------------------------------------------------------- /lib/engine/src/lib/auth/oidc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/engine/src/lib/auth/oidc.ts -------------------------------------------------------------------------------- /lib/engine/src/lib/auth/passport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/engine/src/lib/auth/passport.ts -------------------------------------------------------------------------------- /lib/engine/src/lib/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/engine/src/lib/common.ts -------------------------------------------------------------------------------- /lib/engine/src/lib/config-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/engine/src/lib/config-helpers.ts -------------------------------------------------------------------------------- /lib/engine/src/lib/pages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/engine/src/lib/pages.ts -------------------------------------------------------------------------------- /lib/engine/src/lib/session/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/engine/src/lib/session/common.ts -------------------------------------------------------------------------------- /lib/engine/src/lib/session/custom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/engine/src/lib/session/custom.ts -------------------------------------------------------------------------------- /lib/engine/src/lib/session/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/engine/src/lib/session/index.ts -------------------------------------------------------------------------------- /lib/engine/src/lib/session/memory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/engine/src/lib/session/memory.ts -------------------------------------------------------------------------------- /lib/engine/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/lib/tsconfig.json -------------------------------------------------------------------------------- /lib/express-adapter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/express-adapter/.gitignore -------------------------------------------------------------------------------- /lib/express-adapter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/express-adapter/README.md -------------------------------------------------------------------------------- /lib/express-adapter/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/express-adapter/jest.config.js -------------------------------------------------------------------------------- /lib/express-adapter/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/express-adapter/package.json -------------------------------------------------------------------------------- /lib/express-adapter/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/express-adapter/src/index.ts -------------------------------------------------------------------------------- /lib/express-adapter/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../plop-pack/skel/lib/tsconfig.json -------------------------------------------------------------------------------- /lib/fastify-dev-logger/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/fastify-dev-logger/.gitignore -------------------------------------------------------------------------------- /lib/fastify-dev-logger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/fastify-dev-logger/README.md -------------------------------------------------------------------------------- /lib/fastify-dev-logger/jest.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/fastify-dev-logger/jest.config.cjs -------------------------------------------------------------------------------- /lib/fastify-dev-logger/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/fastify-dev-logger/package.json -------------------------------------------------------------------------------- /lib/fastify-dev-logger/spec/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/fastify-dev-logger/spec/index.js -------------------------------------------------------------------------------- /lib/fastify-dev-logger/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/fastify-dev-logger/src/index.d.ts -------------------------------------------------------------------------------- /lib/fastify-dev-logger/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/fastify-dev-logger/src/index.js -------------------------------------------------------------------------------- /lib/fastify-harden/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/fastify-harden/.gitignore -------------------------------------------------------------------------------- /lib/fastify-harden/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/fastify-harden/README.md -------------------------------------------------------------------------------- /lib/fastify-harden/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/fastify-harden/jest.config.js -------------------------------------------------------------------------------- /lib/fastify-harden/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/fastify-harden/package.json -------------------------------------------------------------------------------- /lib/fastify-harden/src/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/fastify-harden/src/common.ts -------------------------------------------------------------------------------- /lib/fastify-harden/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/fastify-harden/src/index.ts -------------------------------------------------------------------------------- /lib/fastify-harden/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../plop-pack/skel/lib/tsconfig.json -------------------------------------------------------------------------------- /lib/fastify-react-router/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/fastify-react-router/.gitignore -------------------------------------------------------------------------------- /lib/fastify-react-router/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/fastify-react-router/README.md -------------------------------------------------------------------------------- /lib/fastify-react-router/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/fastify-react-router/package.json -------------------------------------------------------------------------------- /lib/fastify-react-router/src/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/fastify-react-router/src/common.ts -------------------------------------------------------------------------------- /lib/fastify-react-router/src/dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/fastify-react-router/src/dev.ts -------------------------------------------------------------------------------- /lib/fastify-react-router/src/fetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/fastify-react-router/src/fetch.ts -------------------------------------------------------------------------------- /lib/fastify-react-router/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/fastify-react-router/src/index.ts -------------------------------------------------------------------------------- /lib/fastify-react-router/src/stream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/fastify-react-router/src/stream.ts -------------------------------------------------------------------------------- /lib/fastify-react-router/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../plop-pack/skel/lib/tsconfig.json -------------------------------------------------------------------------------- /lib/fastify/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/fastify/.gitignore -------------------------------------------------------------------------------- /lib/fastify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/fastify/README.md -------------------------------------------------------------------------------- /lib/fastify/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/fastify/jest.config.js -------------------------------------------------------------------------------- /lib/fastify/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/fastify/package.json -------------------------------------------------------------------------------- /lib/fastify/src/config-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/fastify/src/config-helpers.ts -------------------------------------------------------------------------------- /lib/fastify/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/fastify/src/index.ts -------------------------------------------------------------------------------- /lib/fastify/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../plop-pack/skel/lib/tsconfig.json -------------------------------------------------------------------------------- /lib/forms/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/forms/.gitignore -------------------------------------------------------------------------------- /lib/forms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/forms/README.md -------------------------------------------------------------------------------- /lib/forms/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/forms/package.json -------------------------------------------------------------------------------- /lib/forms/src/completion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/forms/src/completion.ts -------------------------------------------------------------------------------- /lib/forms/src/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/forms/src/context.ts -------------------------------------------------------------------------------- /lib/forms/src/fork.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/forms/src/fork.ts -------------------------------------------------------------------------------- /lib/forms/src/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/forms/src/form.tsx -------------------------------------------------------------------------------- /lib/forms/src/formik-form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/forms/src/formik-form.ts -------------------------------------------------------------------------------- /lib/forms/src/graph/field.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/forms/src/graph/field.ts -------------------------------------------------------------------------------- /lib/forms/src/graph/fork.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/forms/src/graph/fork.ts -------------------------------------------------------------------------------- /lib/forms/src/graph/graph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/forms/src/graph/graph.ts -------------------------------------------------------------------------------- /lib/forms/src/graph/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/forms/src/graph/index.ts -------------------------------------------------------------------------------- /lib/forms/src/graph/node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/forms/src/graph/node.ts -------------------------------------------------------------------------------- /lib/forms/src/graph/page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/forms/src/graph/page.ts -------------------------------------------------------------------------------- /lib/forms/src/graph/path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/forms/src/graph/path.ts -------------------------------------------------------------------------------- /lib/forms/src/helpers.ts: -------------------------------------------------------------------------------- 1 | export const id = (v: T): T => v; 2 | -------------------------------------------------------------------------------- /lib/forms/src/hocs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/forms/src/hocs.ts -------------------------------------------------------------------------------- /lib/forms/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/forms/src/index.ts -------------------------------------------------------------------------------- /lib/forms/src/page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/forms/src/page.ts -------------------------------------------------------------------------------- /lib/forms/src/registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/forms/src/registry.ts -------------------------------------------------------------------------------- /lib/forms/src/validators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/forms/src/validators.ts -------------------------------------------------------------------------------- /lib/forms/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/lib/tsconfig.json -------------------------------------------------------------------------------- /lib/head/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/head/.gitignore -------------------------------------------------------------------------------- /lib/head/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/head/README.md -------------------------------------------------------------------------------- /lib/head/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/head/jest.config.js -------------------------------------------------------------------------------- /lib/head/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/head/package.json -------------------------------------------------------------------------------- /lib/head/src/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/head/src/common.ts -------------------------------------------------------------------------------- /lib/head/src/dummy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/head/src/dummy.ts -------------------------------------------------------------------------------- /lib/head/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/head/src/index.ts -------------------------------------------------------------------------------- /lib/head/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../plop-pack/skel/lib/tsconfig.json -------------------------------------------------------------------------------- /lib/memoize/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/memoize/.gitignore -------------------------------------------------------------------------------- /lib/memoize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/memoize/README.md -------------------------------------------------------------------------------- /lib/memoize/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/memoize/jest.config.js -------------------------------------------------------------------------------- /lib/memoize/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/memoize/package.json -------------------------------------------------------------------------------- /lib/memoize/spec/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/memoize/spec/index.ts -------------------------------------------------------------------------------- /lib/memoize/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/memoize/src/index.ts -------------------------------------------------------------------------------- /lib/memoize/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../plop-pack/skel/lib/tsconfig.json -------------------------------------------------------------------------------- /lib/plop-pack/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/plop-pack/.gitignore -------------------------------------------------------------------------------- /lib/plop-pack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/plop-pack/README.md -------------------------------------------------------------------------------- /lib/plop-pack/jest.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/plop-pack/jest.config.cjs -------------------------------------------------------------------------------- /lib/plop-pack/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/plop-pack/package.json -------------------------------------------------------------------------------- /lib/plop-pack/skel/app/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/plop-pack/skel/app/.dockerignore -------------------------------------------------------------------------------- /lib/plop-pack/skel/app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/plop-pack/skel/app/Dockerfile -------------------------------------------------------------------------------- /lib/plop-pack/skel/app/Makefile.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/plop-pack/skel/app/Makefile.hbs -------------------------------------------------------------------------------- /lib/plop-pack/skel/app/README.md.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/plop-pack/skel/app/README.md.hbs -------------------------------------------------------------------------------- /lib/plop-pack/skel/app/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/plop-pack/skel/app/gitignore -------------------------------------------------------------------------------- /lib/plop-pack/skel/app/plopfile.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/plop-pack/skel/app/plopfile.mjs -------------------------------------------------------------------------------- /lib/plop-pack/skel/app/test.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/plop-pack/skel/app/test.Dockerfile -------------------------------------------------------------------------------- /lib/plop-pack/skel/app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/plop-pack/skel/app/tsconfig.json -------------------------------------------------------------------------------- /lib/plop-pack/skel/component/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/plop-pack/skel/component/gitignore -------------------------------------------------------------------------------- /lib/plop-pack/skel/lib/README.md.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/plop-pack/skel/lib/README.md.hbs -------------------------------------------------------------------------------- /lib/plop-pack/skel/lib/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/plop-pack/skel/lib/gitignore -------------------------------------------------------------------------------- /lib/plop-pack/skel/lib/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/plop-pack/skel/lib/tsconfig.json -------------------------------------------------------------------------------- /lib/plop-pack/spec/helpers/md-title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/plop-pack/spec/helpers/md-title.js -------------------------------------------------------------------------------- /lib/plop-pack/src/action-paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/plop-pack/src/action-paths.js -------------------------------------------------------------------------------- /lib/plop-pack/src/actions/copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/plop-pack/src/actions/copy.js -------------------------------------------------------------------------------- /lib/plop-pack/src/actions/merge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/plop-pack/src/actions/merge.js -------------------------------------------------------------------------------- /lib/plop-pack/src/actions/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/plop-pack/src/actions/message.js -------------------------------------------------------------------------------- /lib/plop-pack/src/actions/shell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/plop-pack/src/actions/shell.js -------------------------------------------------------------------------------- /lib/plop-pack/src/actions/symlink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/plop-pack/src/actions/symlink.js -------------------------------------------------------------------------------- /lib/plop-pack/src/actions/write.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/plop-pack/src/actions/write.js -------------------------------------------------------------------------------- /lib/plop-pack/src/extend-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/plop-pack/src/extend-generator.js -------------------------------------------------------------------------------- /lib/plop-pack/src/generators/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/plop-pack/src/generators/app.js -------------------------------------------------------------------------------- /lib/plop-pack/src/generators/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/plop-pack/src/generators/lib.js -------------------------------------------------------------------------------- /lib/plop-pack/src/helpers/eq.js: -------------------------------------------------------------------------------- 1 | const eq = (l, r) => l == r; 2 | 3 | export default eq; 4 | -------------------------------------------------------------------------------- /lib/plop-pack/src/helpers/md-title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/plop-pack/src/helpers/md-title.js -------------------------------------------------------------------------------- /lib/plop-pack/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/plop-pack/src/index.js -------------------------------------------------------------------------------- /lib/plop-pack/src/rel-to-skel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/plop-pack/src/rel-to-skel.js -------------------------------------------------------------------------------- /lib/plop-pack/src/relative-path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/plop-pack/src/relative-path.js -------------------------------------------------------------------------------- /lib/plop-pack/src/run-plop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/plop-pack/src/run-plop.js -------------------------------------------------------------------------------- /lib/restify/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/restify/.gitignore -------------------------------------------------------------------------------- /lib/restify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/restify/README.md -------------------------------------------------------------------------------- /lib/restify/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/restify/package.json -------------------------------------------------------------------------------- /lib/restify/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/restify/src/index.ts -------------------------------------------------------------------------------- /lib/restify/src/lib/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/restify/src/lib/logger.ts -------------------------------------------------------------------------------- /lib/restify/src/lib/router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/restify/src/lib/router.ts -------------------------------------------------------------------------------- /lib/restify/src/lib/serve-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/restify/src/lib/serve-api.ts -------------------------------------------------------------------------------- /lib/restify/src/middleware/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/restify/src/middleware/common.ts -------------------------------------------------------------------------------- /lib/restify/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/lib/tsconfig.json -------------------------------------------------------------------------------- /lib/router/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/router/.gitignore -------------------------------------------------------------------------------- /lib/router/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/router/README.md -------------------------------------------------------------------------------- /lib/router/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/router/jest.config.js -------------------------------------------------------------------------------- /lib/router/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/router/package.json -------------------------------------------------------------------------------- /lib/router/spec/is-active.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/router/spec/is-active.ts -------------------------------------------------------------------------------- /lib/router/src/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/router/src/common.ts -------------------------------------------------------------------------------- /lib/router/src/dummy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/router/src/dummy.ts -------------------------------------------------------------------------------- /lib/router/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/router/src/index.ts -------------------------------------------------------------------------------- /lib/router/src/is-active.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/router/src/is-active.ts -------------------------------------------------------------------------------- /lib/router/src/location.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/router/src/location.ts -------------------------------------------------------------------------------- /lib/router/src/next.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/router/src/next.ts -------------------------------------------------------------------------------- /lib/router/src/remix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/router/src/remix.ts -------------------------------------------------------------------------------- /lib/router/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/router/tsconfig.json -------------------------------------------------------------------------------- /lib/server-renderer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/server-renderer/.gitignore -------------------------------------------------------------------------------- /lib/server-renderer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/server-renderer/README.md -------------------------------------------------------------------------------- /lib/server-renderer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/server-renderer/package.json -------------------------------------------------------------------------------- /lib/server-renderer/src/HelmetHead.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/server-renderer/src/HelmetHead.tsx -------------------------------------------------------------------------------- /lib/server-renderer/src/Scripts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/server-renderer/src/Scripts.tsx -------------------------------------------------------------------------------- /lib/server-renderer/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/server-renderer/src/index.ts -------------------------------------------------------------------------------- /lib/server-renderer/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/lib/tsconfig.json -------------------------------------------------------------------------------- /lib/uri/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/uri/.gitignore -------------------------------------------------------------------------------- /lib/uri/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/uri/README.md -------------------------------------------------------------------------------- /lib/uri/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/uri/jest.config.js -------------------------------------------------------------------------------- /lib/uri/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/uri/package.json -------------------------------------------------------------------------------- /lib/uri/spec/uri.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/uri/spec/uri.ts -------------------------------------------------------------------------------- /lib/uri/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/uri/src/index.ts -------------------------------------------------------------------------------- /lib/uri/src/query-string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/uri/src/query-string.ts -------------------------------------------------------------------------------- /lib/uri/src/uri.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/uri/src/uri.ts -------------------------------------------------------------------------------- /lib/uri/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/uri/tsconfig.json -------------------------------------------------------------------------------- /lib/user-info/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/user-info/.gitignore -------------------------------------------------------------------------------- /lib/user-info/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/user-info/README.md -------------------------------------------------------------------------------- /lib/user-info/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/user-info/jest.config.js -------------------------------------------------------------------------------- /lib/user-info/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/user-info/package.json -------------------------------------------------------------------------------- /lib/user-info/spec/UserInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/user-info/spec/UserInfo.ts -------------------------------------------------------------------------------- /lib/user-info/src/UserInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/user-info/src/UserInfo.ts -------------------------------------------------------------------------------- /lib/user-info/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../../lib/plop-pack/skel/component/tsconfig.json -------------------------------------------------------------------------------- /lib/vite-html-react/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/vite-html-react/.gitignore -------------------------------------------------------------------------------- /lib/vite-html-react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/vite-html-react/README.md -------------------------------------------------------------------------------- /lib/vite-html-react/jest.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/vite-html-react/jest.config.cjs -------------------------------------------------------------------------------- /lib/vite-html-react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/vite-html-react/package.json -------------------------------------------------------------------------------- /lib/vite-html-react/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/vite-html-react/src/index.ts -------------------------------------------------------------------------------- /lib/vite-html-react/tsconfig.json: -------------------------------------------------------------------------------- 1 | ../plop-pack/skel/lib/tsconfig.json -------------------------------------------------------------------------------- /lib/webpack-config/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/webpack-config/.gitignore -------------------------------------------------------------------------------- /lib/webpack-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/webpack-config/README.md -------------------------------------------------------------------------------- /lib/webpack-config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/webpack-config/index.js -------------------------------------------------------------------------------- /lib/webpack-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/lib/webpack-config/package.json -------------------------------------------------------------------------------- /package-skel/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/package-skel/.gitignore -------------------------------------------------------------------------------- /package-skel/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/package-skel/.npmignore -------------------------------------------------------------------------------- /package-skel/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/package-skel/tsconfig.build.json -------------------------------------------------------------------------------- /package-skel/tsconfig.webpack.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/package.json -------------------------------------------------------------------------------- /plopfile.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/plopfile.mjs -------------------------------------------------------------------------------- /pnpm-lock-committed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/pnpm-lock-committed.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/renovate.json -------------------------------------------------------------------------------- /reports/.sastscan.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/reports/.sastscan.baseline -------------------------------------------------------------------------------- /styles/forms.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/styles/forms.mdx -------------------------------------------------------------------------------- /styles/forms.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/styles/forms.stories.tsx -------------------------------------------------------------------------------- /styles/typography.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/styles/typography.mdx -------------------------------------------------------------------------------- /styles/typography.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/styles/typography.stories.tsx -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.jest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/tsconfig.jest.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.nodejs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/tsconfig.nodejs.json -------------------------------------------------------------------------------- /tsconfig.storybook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/tsconfig.storybook.json -------------------------------------------------------------------------------- /tsconfig.vite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/tsconfig.vite.json -------------------------------------------------------------------------------- /tsconfig.webpack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/tsconfig.webpack.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-ac-martin/NotGovUK/HEAD/vite.config.ts --------------------------------------------------------------------------------