├── .changeset ├── README.md ├── clever-avocados-clap.md ├── config.json ├── grumpy-ravens-lie.md ├── neat-teachers-warn.md ├── pre.json └── tasty-panthers-talk.md ├── .circleci └── config.yml ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report-template copy.yml │ ├── bug-report-template.yml │ ├── config.yml │ ├── doc-update-template.md │ └── feature-request-template.yml ├── actions │ ├── setup-node │ │ └── action.yml │ └── setup-playwright │ │ └── action.yml ├── dependabot.yml ├── pull_request_template.md ├── scripts │ ├── main-publish.sh │ └── main-release.sh ├── templates │ ├── empty-package.json │ └── trigger-e2e.yml.template └── workflows │ ├── canary-release.yml │ ├── canary-sites-split.yml │ ├── cli-addon-tests.yml │ ├── release-and-split.yml │ └── snapshot-release.yml ├── .gitignore ├── .husky ├── .gitignore └── pre-commit ├── .npmrc ├── .nvmrc ├── .prettierignore ├── .vscode ├── extensions.json └── settings.json ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── ci-tests ├── package.json ├── playwright.config.ts └── tests │ ├── gatsby-wp-acf.spec.ts │ ├── gatsby-wp-acf.spec.ts-snapshots │ └── Gatsby-WP-ACF-Add-on-The-homepage-snapshot-has-no-regressions-1-linux.png │ ├── next-drupal-search.spec.ts │ ├── next-drupal-search.spec.ts-snapshots │ └── Drupal-Search-Addon-The-homepage-snapshot-has-no-regressions-1-linux.png │ ├── next-wp-acf.spec.ts │ └── next-wp-acf.spec.ts-snapshots │ └── Next-WP-ACF-Add-on-The-homepage-snapshot-has-no-regressions-1-linux.png ├── configs ├── LICENSE.md ├── README.md ├── eslint │ ├── CHANGELOG.md │ ├── LICENSE.md │ ├── README.md │ ├── index.js │ ├── package.json │ └── react.js ├── lint-staged.config.js ├── package.json └── prettier.config.js ├── package.json ├── packages ├── cms-kit │ ├── .eslintrc │ ├── .gitignore │ ├── CHANGELOG.md │ ├── README.md │ ├── __tests__ │ │ └── setSurrogateKeyHeader.test.ts │ ├── lint-staged.config.cjs │ ├── package.json │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ └── setSurrogateKeyHeader.ts │ ├── tsconfig.build.json │ ├── tsconfig.json │ ├── tsup.config.ts │ └── vite.config.mts ├── configs │ ├── eslint │ │ ├── .eslintrc │ │ ├── CHANGELOG.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── index.js │ │ ├── lint-staged.config.js │ │ ├── package.json │ │ ├── react.js │ │ └── tsconfig.json │ └── other │ │ ├── .eslintrc │ │ ├── CHANGELOG.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── lint-staged.config.js │ │ ├── package.json │ │ └── prettier.config.js ├── create-pantheon-decoupled-kit │ ├── .eslintrc │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE.md │ ├── README.md │ ├── __tests__ │ │ ├── actionRunner.test.ts │ │ ├── addDependencies.test.ts │ │ ├── addWithDiff.test.ts │ │ ├── convertCSSModules.test.ts │ │ ├── fixtures │ │ │ ├── addWithDiff │ │ │ │ └── populated │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── test-anotherFileWithDiff.js │ │ │ │ │ ├── test-binaryFile.png │ │ │ │ │ ├── test-toBeCopiedWithDiff.json │ │ │ │ │ ├── test-ts-template.ts │ │ │ │ │ └── test-withDiff.js │ │ │ ├── convertCSSModules │ │ │ │ └── empty │ │ │ │ │ ├── components │ │ │ │ │ └── component.ts │ │ │ │ │ └── pages │ │ │ │ │ └── page.ts │ │ │ ├── runESLint │ │ │ │ ├── withLint │ │ │ │ │ └── package.json │ │ │ │ ├── withLintFix │ │ │ │ │ └── package.json │ │ │ │ └── withoutLint │ │ │ │ │ └── package.json │ │ │ └── runInstall │ │ │ │ ├── .npmrc │ │ │ │ └── test.js │ │ ├── handlebarsHelpers.test.ts │ │ ├── index.test.ts │ │ ├── runInstall.test.ts │ │ ├── runLint.test.ts │ │ ├── sharedTestData.ts │ │ ├── taggedTemplateHelpers.test.ts │ │ ├── templates │ │ │ ├── addDependencies │ │ │ │ └── .gitkeep │ │ │ ├── addWithDiff │ │ │ │ ├── gitignore │ │ │ │ ├── test-anotherFileWithDiff.js.hbs │ │ │ │ ├── test-binaryFile.png │ │ │ │ ├── test-can-be-empty.ts.ts │ │ │ │ ├── test-toBeCopiedWithDiff.json │ │ │ │ ├── test-ts-template.ts.ts │ │ │ │ └── test-withDiff.js.hbs │ │ │ └── partials │ │ │ │ └── testPartial.hbs │ │ └── types.ts │ ├── esbuild.js │ ├── index.ts │ ├── lint-staged.config.cjs │ ├── package.json │ ├── scripts │ │ ├── copyTemplates.ts │ │ ├── getVersions.ts │ │ └── watchTemplates.ts │ ├── src │ │ ├── actions │ │ │ ├── addDependencies.ts │ │ │ ├── addWithDiff.ts │ │ │ ├── convertCSSModules.ts │ │ │ ├── index.ts │ │ │ ├── runInstall.ts │ │ │ └── runLint.ts │ │ ├── bin.ts │ │ ├── generators │ │ │ ├── gatsby-wp-acf-addon.generator.ts │ │ │ ├── gatsby-wp.generator.ts │ │ │ ├── index.ts │ │ │ ├── next-drupal-search-api-addon.generator.ts │ │ │ ├── next-drupal-umami-addon.generator.ts │ │ │ ├── next-drupal.generator.ts │ │ │ ├── next-wp-acf-addon.generator.ts │ │ │ ├── next-wp.generator.ts │ │ │ └── tailwindcss-addon.generator.ts │ │ ├── index.ts │ │ ├── templates │ │ │ ├── gatsby-wp-acf-addon │ │ │ │ ├── lib │ │ │ │ │ └── createPagesUtils │ │ │ │ │ │ └── getPosts.ts.ts │ │ │ │ └── src │ │ │ │ │ ├── gatsby-types.d.ts │ │ │ │ │ └── templates │ │ │ │ │ ├── postTemplate.module.css.d.ts │ │ │ │ │ ├── postTemplate.module.css.ts │ │ │ │ │ └── postTemplate.tsx.ts │ │ │ ├── gatsby-wp │ │ │ │ ├── .env.development.local.ts │ │ │ │ ├── .env.example │ │ │ │ ├── .eslintrc │ │ │ │ ├── .lando.yml │ │ │ │ ├── .nvmrc │ │ │ │ ├── .prettierignore │ │ │ │ ├── .prettierrc │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md.ts │ │ │ │ ├── __tests__ │ │ │ │ │ ├── data │ │ │ │ │ │ ├── allWpPost.json │ │ │ │ │ │ └── wpMenu.json │ │ │ │ │ ├── setupFile.ts │ │ │ │ │ ├── snapshotTests │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── example.test.tsx.snap │ │ │ │ │ │ └── example.test.tsx │ │ │ │ │ └── unitTests │ │ │ │ │ │ └── example.test.ts │ │ │ │ ├── content │ │ │ │ │ └── assets │ │ │ │ │ │ └── .gitkeep │ │ │ │ ├── gatsby-browser.tsx │ │ │ │ ├── gatsby-config.ts.ts │ │ │ │ ├── gatsby-node.ts │ │ │ │ ├── gatsby-ssr.tsx │ │ │ │ ├── gitignore │ │ │ │ ├── lib │ │ │ │ │ ├── createPagesUtils │ │ │ │ │ │ ├── createAuthApiPage.ts │ │ │ │ │ │ ├── createExamplesPage.ts │ │ │ │ │ │ ├── createIndividualPagePages.ts │ │ │ │ │ │ ├── createIndividualPostPages.ts │ │ │ │ │ │ ├── createPageIndex.ts │ │ │ │ │ │ ├── createPaginationExamplePage.ts │ │ │ │ │ │ ├── createPostArchive.ts │ │ │ │ │ │ ├── createPostIndex.ts │ │ │ │ │ │ ├── getPages.ts │ │ │ │ │ │ ├── getPaginationPaths.ts │ │ │ │ │ │ ├── getPosts.ts.ts │ │ │ │ │ │ ├── getPostsPerPage.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── paginationPostsQuery.ts │ │ │ │ │ ├── privatePostsQuery.ts │ │ │ │ │ ├── types.ts │ │ │ │ │ └── usePagination.ts │ │ │ │ ├── package.json.ts │ │ │ │ ├── src │ │ │ │ │ ├── components │ │ │ │ │ │ ├── footer.module.css │ │ │ │ │ │ ├── footer.module.css.d.ts │ │ │ │ │ │ ├── footer.tsx │ │ │ │ │ │ ├── grid.module.css │ │ │ │ │ │ ├── grid.module.css.d.ts │ │ │ │ │ │ ├── grid.tsx │ │ │ │ │ │ ├── layout.module.css │ │ │ │ │ │ ├── layout.module.css.d.ts │ │ │ │ │ │ ├── layout.tsx │ │ │ │ │ │ ├── page.module.css.d.ts │ │ │ │ │ │ ├── page.module.css.ts │ │ │ │ │ │ ├── page.tsx │ │ │ │ │ │ ├── paginator.module.css │ │ │ │ │ │ ├── paginator.module.css.d.ts │ │ │ │ │ │ ├── paginator.tsx │ │ │ │ │ │ ├── post.module.css.d.ts │ │ │ │ │ │ ├── post.module.css.ts │ │ │ │ │ │ ├── post.tsx │ │ │ │ │ │ └── seo.tsx │ │ │ │ │ ├── css │ │ │ │ │ │ └── style.css │ │ │ │ │ ├── gatsby-types.d.ts │ │ │ │ │ ├── pages │ │ │ │ │ │ ├── 404.module.css │ │ │ │ │ │ ├── 404.module.css.d.ts │ │ │ │ │ │ └── 404.tsx │ │ │ │ │ └── templates │ │ │ │ │ │ ├── authApi.module.css │ │ │ │ │ │ ├── authApi.module.css.d.ts │ │ │ │ │ │ ├── authApi.tsx │ │ │ │ │ │ ├── examples.module.css │ │ │ │ │ │ ├── examples.module.css.d.ts │ │ │ │ │ │ ├── examples.tsx │ │ │ │ │ │ ├── index.module.css │ │ │ │ │ │ ├── index.module.css.d.ts │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── pageTemplate.tsx │ │ │ │ │ │ ├── pagesIndex.tsx │ │ │ │ │ │ ├── pagesOrPostsIndex.module.css │ │ │ │ │ │ ├── pagesOrPostsIndex.module.css.d.ts │ │ │ │ │ │ ├── pagination.module.css │ │ │ │ │ │ ├── pagination.module.css.d.ts │ │ │ │ │ │ ├── paginationExample.tsx │ │ │ │ │ │ ├── postTemplate.tsx.ts │ │ │ │ │ │ └── postsIndex.tsx │ │ │ │ ├── static │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── pantheon.png │ │ │ │ │ └── robots.txt │ │ │ │ ├── tsconfig.json.ts │ │ │ │ └── vite.config.ts │ │ │ ├── next-drupal-search-api-addon │ │ │ │ ├── __tests__ │ │ │ │ │ └── snapshotTests │ │ │ │ │ │ ├── auth-api.test.jsx │ │ │ │ │ │ └── homepage.test.jsx │ │ │ │ ├── components │ │ │ │ │ ├── layout.jsx.hbs │ │ │ │ │ ├── search-input.jsx │ │ │ │ │ └── searchInput.module.css │ │ │ │ └── pages │ │ │ │ │ └── search │ │ │ │ │ ├── [[...searchAlias]].jsx │ │ │ │ │ └── searchPage.module.css │ │ │ ├── next-drupal-umami-addon │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ ├── [...alias].test.jsx.snap │ │ │ │ │ │ ├── articles.test.jsx.snap │ │ │ │ │ │ ├── auth-api.test.jsx.snap │ │ │ │ │ │ ├── examples-index.test.jsx.snap │ │ │ │ │ │ ├── homepage.test.jsx.snap │ │ │ │ │ │ ├── pages.test.jsx.snap │ │ │ │ │ │ ├── pagination.test.jsx.snap │ │ │ │ │ │ ├── recipes.test.jsx.snap │ │ │ │ │ │ └── ssr-isr-example.test.jsx.snap │ │ │ │ │ ├── data │ │ │ │ │ │ ├── topLevelRecipeData.json │ │ │ │ │ │ ├── umamiEnApiIndex.json │ │ │ │ │ │ ├── umamiEnArticles.json │ │ │ │ │ │ ├── umamiEnArticlesData.json │ │ │ │ │ │ ├── umamiEnPagesData.json │ │ │ │ │ │ ├── umamiEnRecipesData.json │ │ │ │ │ │ ├── umamiEsApiIndex.json │ │ │ │ │ │ ├── umamiEsArticles.json │ │ │ │ │ │ ├── umamiEsArticlesData.json │ │ │ │ │ │ ├── umamiEsPreview.json │ │ │ │ │ │ ├── umamiMenuItemsMainData.json │ │ │ │ │ │ ├── umamiPaths.json │ │ │ │ │ │ └── umamiPreview.json │ │ │ │ │ ├── getPaths.test.js │ │ │ │ │ ├── getPreview.test.js │ │ │ │ │ ├── setupFile.js │ │ │ │ │ └── snapshotTests │ │ │ │ │ │ ├── [...alias].test.jsx │ │ │ │ │ │ ├── articles.test.jsx │ │ │ │ │ │ ├── auth-api.test.jsx │ │ │ │ │ │ ├── examples-index.test.jsx │ │ │ │ │ │ ├── homepage.test.jsx │ │ │ │ │ │ ├── pages.test.jsx │ │ │ │ │ │ ├── pagination.test.jsx │ │ │ │ │ │ ├── recipes.test.jsx │ │ │ │ │ │ └── ssr-isr-example.test.jsx │ │ │ │ ├── components │ │ │ │ │ ├── grid.module.css.hbs │ │ │ │ │ └── recipeGridItem.jsx │ │ │ │ ├── pages │ │ │ │ │ ├── [...alias].jsx.hbs │ │ │ │ │ └── recipes │ │ │ │ │ │ ├── [...slug].jsx │ │ │ │ │ │ └── index.jsx │ │ │ │ └── vite.config.js │ │ │ ├── next-drupal │ │ │ │ ├── .env.development.local.hbs │ │ │ │ ├── .env.example │ │ │ │ ├── .eslintrc.json │ │ │ │ ├── .lando.yml │ │ │ │ ├── .nvmrc │ │ │ │ ├── .prettierignore │ │ │ │ ├── .prettierrc │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md.ts │ │ │ │ ├── __mocks__ │ │ │ │ │ └── next │ │ │ │ │ │ └── image.jsx │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ ├── [...alias].test.jsx.snap │ │ │ │ │ │ ├── articles.test.jsx.snap │ │ │ │ │ │ ├── auth-api.test.jsx.snap │ │ │ │ │ │ ├── examples-index.test.jsx.snap │ │ │ │ │ │ ├── homepage.test.jsx.snap │ │ │ │ │ │ ├── pages.test.jsx.snap │ │ │ │ │ │ └── pagination.test.jsx.snap │ │ │ │ │ ├── data │ │ │ │ │ │ ├── defaultProfileApiIndex.json │ │ │ │ │ │ ├── defaultProfileArticles.json │ │ │ │ │ │ ├── defaultProfileArticlesData.json │ │ │ │ │ │ ├── defaultProfileMenuItemsMainData.json │ │ │ │ │ │ ├── defaultProfilePagesData.json │ │ │ │ │ │ ├── defaultProfilePaths.json │ │ │ │ │ │ ├── defaultProfilePreview.json │ │ │ │ │ │ ├── examplePaginationData.json │ │ │ │ │ │ ├── oauthToken.json │ │ │ │ │ │ ├── topLevelArticleData.json │ │ │ │ │ │ └── topLevelPageData.json │ │ │ │ │ ├── getPaths.test.js │ │ │ │ │ ├── getPreview.test.js │ │ │ │ │ ├── isMultiLanguage.test.js │ │ │ │ │ ├── setupFile.js │ │ │ │ │ ├── snapshotTests │ │ │ │ │ │ ├── [...alias].test.jsx │ │ │ │ │ │ ├── articles.test.jsx │ │ │ │ │ │ ├── auth-api.test.jsx │ │ │ │ │ │ ├── examples-index.test.jsx │ │ │ │ │ │ ├── homepage.test.jsx │ │ │ │ │ │ ├── pages.test.jsx │ │ │ │ │ │ └── pagination.test.jsx │ │ │ │ │ └── stores.test.js │ │ │ │ ├── components │ │ │ │ │ ├── grid.jsx │ │ │ │ │ ├── layout.jsx.hbs │ │ │ │ │ └── page-header.jsx.hbs │ │ │ │ ├── gitignore │ │ │ │ ├── lib │ │ │ │ │ ├── constants.js │ │ │ │ │ ├── getPaths.js │ │ │ │ │ ├── getPreview.js │ │ │ │ │ ├── isMultiLanguage.js │ │ │ │ │ └── stores.js │ │ │ │ ├── next.config.js.hbs │ │ │ │ ├── package.json.ts │ │ │ │ ├── pages │ │ │ │ │ ├── 404.jsx.hbs │ │ │ │ │ ├── 500.jsx.hbs │ │ │ │ │ ├── [...alias].jsx.hbs │ │ │ │ │ ├── _app.jsx │ │ │ │ │ ├── api │ │ │ │ │ │ ├── clear-preview.js │ │ │ │ │ │ ├── hello.js │ │ │ │ │ │ └── preview.js │ │ │ │ │ ├── articles │ │ │ │ │ │ ├── [...slug].jsx │ │ │ │ │ │ └── index.jsx │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── auth-api.jsx │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ └── pagination │ │ │ │ │ │ │ └── [[...page]].jsx │ │ │ │ │ ├── index.jsx │ │ │ │ │ ├── pages │ │ │ │ │ │ ├── [...alias].jsx │ │ │ │ │ │ └── index.jsx │ │ │ │ │ └── preview-error │ │ │ │ │ │ └── [[...alias]].jsx │ │ │ │ ├── public │ │ │ │ │ ├── collapse.svg │ │ │ │ │ ├── favicon.ico │ │ │ │ │ └── pantheon.png │ │ │ │ ├── scripts │ │ │ │ │ └── get-locales.js │ │ │ │ ├── styles │ │ │ │ │ └── globals.css.hbs │ │ │ │ └── vite.config.js │ │ │ ├── next-wp-acf-addon │ │ │ │ ├── lib │ │ │ │ │ └── Posts.js.hbs │ │ │ │ └── pages │ │ │ │ │ ├── pages │ │ │ │ │ └── [...uri].jsx.hbs │ │ │ │ │ └── posts │ │ │ │ │ ├── [...slug].jsx.hbs │ │ │ │ │ └── [...slug].module.css.hbs │ │ │ ├── next-wp │ │ │ │ ├── .env.development.local.hbs │ │ │ │ ├── .env.example │ │ │ │ ├── .eslintrc.json │ │ │ │ ├── .nvmrc │ │ │ │ ├── .prettierignore │ │ │ │ ├── .prettierrc │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md.ts │ │ │ │ ├── __mocks__ │ │ │ │ │ └── next │ │ │ │ │ │ └── image.jsx │ │ │ │ ├── __tests__ │ │ │ │ │ ├── data │ │ │ │ │ │ ├── examplePaginationData.json │ │ │ │ │ │ ├── footerMenuData.json │ │ │ │ │ │ ├── pageData.json │ │ │ │ │ │ ├── pagesData.json │ │ │ │ │ │ ├── postData.json │ │ │ │ │ │ └── postsData.json │ │ │ │ │ ├── getAuthCredentials.test.js │ │ │ │ │ ├── getUrlPath.test.js │ │ │ │ │ └── snapshotTests │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ ├── auth-api.test.jsx.snap │ │ │ │ │ │ ├── example-index.test.jsx.snap │ │ │ │ │ │ ├── homepage.test.jsx.snap │ │ │ │ │ │ ├── pages.test.jsx.snap │ │ │ │ │ │ ├── pagination.test.jsx.snap │ │ │ │ │ │ └── posts.test.jsx.snap │ │ │ │ │ │ ├── auth-api.test.jsx │ │ │ │ │ │ ├── example-index.test.jsx │ │ │ │ │ │ ├── homepage.test.jsx │ │ │ │ │ │ ├── pages.test.jsx │ │ │ │ │ │ ├── pagination.test.jsx │ │ │ │ │ │ └── posts.test.jsx │ │ │ │ ├── components │ │ │ │ │ ├── grid.jsx │ │ │ │ │ ├── layout.jsx │ │ │ │ │ └── page-header.jsx.hbs │ │ │ │ ├── gitignore │ │ │ │ ├── lib │ │ │ │ │ ├── Menus.js │ │ │ │ │ ├── Pages.js │ │ │ │ │ ├── Posts.js.hbs │ │ │ │ │ ├── PostsPagination.js │ │ │ │ │ ├── WordPressClient.js │ │ │ │ │ ├── constants.js │ │ │ │ │ └── getUrlPath.js │ │ │ │ ├── next.config.js │ │ │ │ ├── package.json.ts │ │ │ │ ├── pages │ │ │ │ │ ├── 404.jsx.hbs │ │ │ │ │ ├── 500.jsx.hbs │ │ │ │ │ ├── _app.jsx │ │ │ │ │ ├── api │ │ │ │ │ │ ├── clear-preview.js │ │ │ │ │ │ ├── hello.js │ │ │ │ │ │ └── preview.js │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── auth-api.jsx │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ └── pagination │ │ │ │ │ │ │ └── [[...page]].jsx │ │ │ │ │ ├── index.jsx │ │ │ │ │ ├── pages │ │ │ │ │ │ ├── [...uri].jsx.hbs │ │ │ │ │ │ └── index.jsx │ │ │ │ │ └── posts │ │ │ │ │ │ ├── [...slug].jsx.hbs │ │ │ │ │ │ └── index.jsx │ │ │ │ ├── public │ │ │ │ │ ├── favicon.ico │ │ │ │ │ └── pantheon.png │ │ │ │ ├── styles │ │ │ │ │ └── globals.css.hbs │ │ │ │ └── vite.config.js │ │ │ ├── partials │ │ │ │ ├── gatsby-wp │ │ │ │ │ ├── postTemplate.ts │ │ │ │ │ └── wpPostsQuery.ts │ │ │ │ ├── next-drupal │ │ │ │ │ ├── nextDrupalCatchAllView.hbs │ │ │ │ │ ├── nextDrupalLayout.hbs │ │ │ │ │ ├── nextDrupalPkgJson.hbs │ │ │ │ │ └── sharedNextDrupalConfig.hbs │ │ │ │ ├── next-wp │ │ │ │ │ ├── nextWpPageView.hbs │ │ │ │ │ ├── nextWpPostCSS.hbs │ │ │ │ │ ├── nextWpPostView.hbs │ │ │ │ │ └── nextWpPostsJS.hbs │ │ │ │ ├── nextjs-shared │ │ │ │ │ ├── nextjs404.hbs │ │ │ │ │ ├── nextjs500.hbs │ │ │ │ │ ├── nextjsGridCSS.hbs │ │ │ │ │ ├── nextjsLayoutCSS.hbs │ │ │ │ │ └── nextjsPageHeader.hbs │ │ │ │ ├── pkg-shared │ │ │ │ │ ├── sharedPkgJsonFields.ts │ │ │ │ │ └── tailwindcssDeps.ts │ │ │ │ └── readme-shared │ │ │ │ │ └── index.ts │ │ │ ├── styles │ │ │ │ └── variables.css │ │ │ ├── tailwind-shared │ │ │ │ ├── postcss.config.cjs.hbs │ │ │ │ ├── src │ │ │ │ │ └── css │ │ │ │ │ │ └── style.css.hbs │ │ │ │ ├── styles │ │ │ │ │ └── globals.css.hbs │ │ │ │ └── tailwind.config.cjs.hbs │ │ │ ├── tailwindcss-addon │ │ │ │ ├── postcss.config.cjs │ │ │ │ ├── styles │ │ │ │ │ └── globals.css │ │ │ │ └── tailwind.config.cjs │ │ │ └── tailwindless-next │ │ │ │ ├── components │ │ │ │ ├── grid.module.css.hbs │ │ │ │ ├── layout.module.css.hbs │ │ │ │ └── page-header.module.css │ │ │ │ └── pages │ │ │ │ ├── 404.module.css │ │ │ │ ├── 500.module.css │ │ │ │ ├── articles │ │ │ │ └── [...slug].module.css.hbs │ │ │ │ ├── catch-all.module.css.hbs │ │ │ │ ├── examples │ │ │ │ ├── auth-api.module.css │ │ │ │ ├── index.module.css │ │ │ │ ├── pagination │ │ │ │ │ └── pagination.module.css │ │ │ │ └── ssg-isr.module.css │ │ │ │ ├── index.module.css │ │ │ │ ├── pages │ │ │ │ ├── index.module.css.hbs │ │ │ │ └── page.module.css.hbs │ │ │ │ ├── posts │ │ │ │ └── [...slug].module.css.hbs │ │ │ │ └── preview-error │ │ │ │ └── preview-error.module.css.hbs │ │ ├── types.ts │ │ └── utils │ │ │ ├── actionRunner.ts │ │ │ ├── constants.ts │ │ │ ├── dedupeTemplates.ts │ │ │ ├── handlebars.ts │ │ │ ├── helpMenu.ts │ │ │ ├── index.ts │ │ │ ├── sharedPrompts.ts │ │ │ └── taggedTemplateHelpers.ts │ ├── tsconfig.json │ ├── tsconfig.typedoc.json │ ├── vite.config.mts │ └── watch.example.ts ├── decoupled-kit-health-check │ ├── .eslintrc │ ├── .gitignore │ ├── CHANGELOG.md │ ├── README.md │ ├── __mocks__ │ │ └── server │ │ │ ├── drupal │ │ │ └── requestHandlers.ts │ │ │ ├── index.ts │ │ │ └── wordpress │ │ │ └── requestHandlers.ts │ ├── __tests__ │ │ ├── GatsbyWordPressHealthCheck.test.ts │ │ ├── NextDrupalHealthCheck.test.ts │ │ ├── NextWordPressHealthCheck.test.ts │ │ ├── __snapshots__ │ │ │ ├── GatsbyWordPressHealthCheck.test.ts.snap │ │ │ ├── NextDrupalHealthCheck.test.ts.snap │ │ │ └── NextWordPressHealthCheck.test.ts.snap │ │ ├── fixtures │ │ │ ├── dotenv │ │ │ │ └── .env │ │ │ ├── dotenvDev │ │ │ │ └── .env.development.local │ │ │ └── noDotenv │ │ │ │ └── .gitkeep │ │ ├── noDKHC.test.ts │ │ ├── resolveDotenvFile.test.ts │ │ ├── setupFile.ts │ │ └── vitest.d.ts │ ├── esbuild.mjs │ ├── lint-staged.config.cjs │ ├── package.json │ ├── src │ │ ├── bin.ts │ │ ├── classes │ │ │ ├── GatsbyWordPressHealthCheck.ts │ │ │ ├── HealthCheckBase.ts │ │ │ ├── NextDrupalHealthCheck.ts │ │ │ ├── NextWordPressHealthCheck.ts │ │ │ └── errors.ts │ │ ├── index.ts │ │ └── utils │ │ │ ├── getFramework.ts │ │ │ ├── logger.ts │ │ │ └── resolveDotenvFile.ts │ ├── tsconfig.json │ └── vite.config.mts ├── drupal-kit │ ├── .eslintrc │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE.md │ ├── README.md │ ├── __mocks__ │ │ └── server │ │ │ ├── drupalStateResponseHandlers.ts │ │ │ ├── getDrupalSearchResultsResponseHandlers.ts │ │ │ └── index.ts │ ├── __tests__ │ │ ├── PantheonDrupalState.test.ts │ │ ├── data │ │ │ ├── apiIndex.json │ │ │ ├── collection.json │ │ │ ├── exampleSearchResultsAltIndex.json │ │ │ ├── exampleSearchResultsDefaultIndex.json │ │ │ ├── recipesCollectionObject1.json │ │ │ ├── recipesCollectionObject1WithParams.json │ │ │ ├── recipesResourceData.json │ │ │ ├── recipesResourceData1.json │ │ │ ├── recipesResourceData1WithParams.json │ │ │ ├── recipesResourceObject.json │ │ │ ├── recipesResourceObject1.json │ │ │ └── token.json │ │ ├── getDrupalSearchResults.test.ts │ │ └── setupFile.ts │ ├── lint-staged.config.js │ ├── package.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── PantheonDrupalState.ts │ │ │ ├── defaultFetch.ts │ │ │ └── getDrupalSearchResults.ts │ │ └── types.ts │ ├── tsconfig.build.json │ ├── tsconfig.json │ └── vite.config.mts ├── nextjs-kit │ ├── .eslintrc │ ├── .gitignore │ ├── CHANGELOG.md │ ├── README.md │ ├── __tests__ │ │ ├── data │ │ │ ├── exampleGridData.json │ │ │ ├── examplePaginationData.json │ │ │ ├── examplePostData.json │ │ │ └── exampleRecipeData.json │ │ ├── snapshotTests │ │ │ ├── __snapshots__ │ │ │ │ ├── contentWithImage.test.tsx.snap │ │ │ │ ├── footer.test.tsx.snap │ │ │ │ ├── grid.test.tsx.snap │ │ │ │ ├── header.test.tsx.snap │ │ │ │ ├── paginator.test.tsx.snap │ │ │ │ └── recipe.test.tsx.snap │ │ │ ├── contentWithImage.test.tsx │ │ │ ├── footer.test.tsx │ │ │ ├── grid.test.tsx │ │ │ ├── header.test.tsx │ │ │ ├── paginator.test.tsx │ │ │ └── recipe.test.tsx │ │ ├── sortChar.test.ts │ │ └── sortDate.test.ts │ ├── lint-staged.config.cjs │ ├── package.json │ ├── postcss.config.cjs │ ├── src │ │ ├── components │ │ │ ├── contentWithImage.tsx │ │ │ ├── footer.tsx │ │ │ ├── grid.tsx │ │ │ ├── header.tsx │ │ │ ├── paginator.tsx │ │ │ ├── previewRibbon.tsx │ │ │ └── recipe.tsx │ │ ├── index.ts │ │ ├── style.css │ │ ├── types.ts │ │ └── utils │ │ │ ├── sortChar.ts │ │ │ └── sortDate.ts │ ├── tailwind.config.cjs │ ├── tsconfig.build.json │ ├── tsconfig.json │ ├── tsup.config.ts │ └── vite.config.mts ├── react-kit │ ├── .eslintrc │ ├── .gitignore │ ├── .storybook │ │ ├── main.ts │ │ └── preview.ts │ ├── CHANGELOG.md │ ├── README.md │ ├── __tests__ │ │ ├── setupFile.ts │ │ └── snapshotTests │ │ │ ├── Header.test.tsx │ │ │ ├── IconButton.test.tsx │ │ │ ├── __snapshots__ │ │ │ ├── Header.test.tsx.snap │ │ │ ├── IconButton.test.tsx.snap │ │ │ └── button.test.tsx.snap │ │ │ └── button.test.tsx │ ├── lint-staged.config.cjs │ ├── package.json │ ├── postcss.config.js │ ├── src │ │ ├── assets │ │ │ ├── icons │ │ │ │ ├── close.svg │ │ │ │ ├── hamburger-menu.svg │ │ │ │ └── search.svg │ │ │ └── pantheon-fist-blk.svg │ │ ├── components │ │ │ ├── Button │ │ │ │ ├── Button.stories.tsx │ │ │ │ ├── Button.tsx │ │ │ │ ├── IconButton.stories.tsx │ │ │ │ ├── IconButton.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── props.ts │ │ │ ├── Header │ │ │ │ ├── Header.stories.tsx │ │ │ │ ├── Header.tsx │ │ │ │ ├── HeaderIcons.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── props.ts │ │ │ └── Row │ │ │ │ ├── Row.stories.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── props.ts │ │ ├── index.css │ │ └── types.d.ts │ ├── tailwind.config.ts │ ├── tsconfig.build.json │ ├── tsconfig.json │ ├── tsup.config.ts │ └── vite.config.mts └── wordpress-kit │ ├── .eslintrc │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE.md │ ├── README.md │ ├── __mocks__ │ └── server │ │ ├── basicPostsQuery.ts │ │ └── index.ts │ ├── __tests__ │ ├── GraphqlClientFactory.test.ts │ ├── data │ │ └── basicPostsQuery.json │ ├── setEdgeHeader.test.ts │ ├── setOutgoingheaders.test.ts │ └── setupFile.ts │ ├── lint-staged.config.cjs │ ├── package.json │ ├── src │ ├── index.ts │ ├── lib │ │ ├── GraphQLClientFactory.ts │ │ ├── setEdgeHeader.ts │ │ └── setOutgoingHeaders.ts │ └── tailwindcssPlugin │ │ ├── Config.ts │ │ ├── Constants.ts │ │ ├── components │ │ ├── Audio.ts │ │ ├── Buttons.ts │ │ ├── Columns.ts │ │ ├── Cover.ts │ │ ├── FileMedia.ts │ │ ├── Gallery.ts │ │ ├── Image.ts │ │ ├── MediaAndText.ts │ │ ├── PullQuote.ts │ │ ├── Quote.ts │ │ ├── Separator.ts │ │ ├── Spacer.ts │ │ ├── Table.ts │ │ ├── Video.ts │ │ ├── index.ts │ │ └── shared │ │ │ ├── Alignment.ts │ │ │ ├── Button.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── types.ts │ │ └── utilities │ │ ├── Base.ts │ │ ├── Colors.ts │ │ ├── Fonts.ts │ │ └── index.ts │ ├── tsconfig.build.json │ ├── tsconfig.json │ └── vite.config.mts ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── scripts ├── ci-version ├── generate-starters.ts └── post-install ├── tsconfig.json └── web ├── .eslintrc ├── .gitignore ├── .nvmrc ├── LICENSE.md ├── README.md ├── babel.config.js ├── docs ├── Backend Starters │ ├── Decoupled Drupal │ │ ├── add-ons.md │ │ ├── caching-considerations.md │ │ ├── configuring-build-hooks.md │ │ ├── configuring-existing-project.md │ │ ├── configuring-preview-site.md │ │ ├── cors.md │ │ ├── creating-a-new-project.mdx │ │ ├── index.mdx │ │ ├── local-development.md │ │ └── updating-dependencies.md │ ├── Decoupled WordPress │ │ ├── add-ons.md │ │ ├── caching-considerations.md │ │ ├── configuring-build-hooks.md │ │ ├── configuring-existing-project.md │ │ ├── configuring-preview-site.md │ │ ├── creating-a-new-project.md │ │ ├── index.mdx │ │ ├── local-development.md │ │ └── managing-dependencies.md │ ├── _category_.json │ ├── index.mdx │ └── terminus-decoupled-kit-plugin.md ├── Frontend Starters │ ├── Gatsby │ │ ├── Gatsby + WordPress │ │ │ ├── add-ons.md │ │ │ ├── index.mdx │ │ │ ├── intro.md │ │ │ ├── setting-environment-variables.md │ │ │ ├── setting-path-prefix.md │ │ │ ├── troubleshooting.md │ │ │ └── your-first-customization.md │ │ ├── _category_.json │ │ └── index.mdx │ ├── Next.js │ │ ├── Next.js + Drupal │ │ │ ├── add-ons.md │ │ │ ├── implementing-preview.md │ │ │ ├── index.mdx │ │ │ ├── intro.md │ │ │ ├── setting-cache-control-header.md │ │ │ ├── setting-environment-variables.md │ │ │ ├── styling-configuration.md │ │ │ ├── surrogate-key-based-caching.md │ │ │ ├── troubleshooting.md │ │ │ └── your-first-customization.md │ │ ├── Next.js + WordPress │ │ │ ├── add-ons.md │ │ │ ├── implementing-preview.md │ │ │ ├── index.mdx │ │ │ ├── intro.md │ │ │ ├── setting-cache-control-header.md │ │ │ ├── setting-environment-variables.md │ │ │ ├── styling-configuration.md │ │ │ ├── surrogate-key-based-caching.md │ │ │ ├── troubleshooting.md │ │ │ └── your-first-customization.md │ │ ├── _category_.json │ │ ├── index.mdx │ │ ├── setting-base-path.md │ │ └── static-vs-dynamic.md │ ├── _category_.json │ ├── create-pantheon-decoupled-kit.md │ └── index.mdx ├── Packages │ ├── _category_.json │ ├── cms-kit │ │ ├── _category_.yml │ │ ├── index.md │ │ └── modules.md │ ├── create-pantheon-decoupled-kit │ │ ├── _category_.yml │ │ ├── index.md │ │ ├── interfaces │ │ │ ├── DecoupledKitGenerator.md │ │ │ ├── DefaultAnswers.md │ │ │ ├── GatsbyWPData.md │ │ │ ├── MergedPaths.md │ │ │ ├── TemplateData.md │ │ │ ├── TemplateImport.md │ │ │ └── _category_.yml │ │ └── modules.md │ ├── decoupled-kit-health-check │ │ ├── _category_.yml │ │ ├── classes │ │ │ ├── BackendNotSetError.md │ │ │ ├── DecoupledMenuError.md │ │ │ ├── DecoupledRouterError.md │ │ │ ├── GatsbyWordPressHealthCheck.md │ │ │ ├── HealthCheckBase.md │ │ │ ├── InvalidCMSEndpointError.md │ │ │ ├── NextDrupalHealthCheck.md │ │ │ ├── NextWordPressHealthCheck.md │ │ │ ├── WPGatsbyPluginError.md │ │ │ └── _category_.yml │ │ ├── index.md │ │ └── modules.md │ ├── drupal-kit │ │ ├── _category_.yml │ │ ├── classes │ │ │ ├── DrupalState.md │ │ │ └── _category_.yml │ │ ├── index.md │ │ └── modules.md │ ├── index.mdx │ ├── nextjs-kit │ │ ├── _category_.yml │ │ ├── index.md │ │ ├── interfaces │ │ │ ├── ContentProps.md │ │ │ ├── FooterMenuProps.md │ │ │ ├── HeaderProps.md │ │ │ ├── LinkProps.md │ │ │ ├── PaginationProps.md │ │ │ ├── PreviewRibbonProps.md │ │ │ ├── RecipeProps.md │ │ │ ├── SortOptions.md │ │ │ └── _category_.yml │ │ └── modules.md │ ├── react-kit │ │ ├── _category_.yml │ │ ├── index.md │ │ ├── modules.md │ │ └── modules │ │ │ ├── Button.md │ │ │ ├── Header.md │ │ │ ├── Row.md │ │ │ └── _category_.yml │ └── wordpress-kit │ │ ├── _category_.yml │ │ ├── classes │ │ ├── GraphqlClientFactory.md │ │ └── _category_.yml │ │ ├── index.md │ │ └── modules.md ├── contributing.md ├── decoupled-kit-overview.mdx └── pantheon-front-end-sites.md ├── docusaurus.config.js ├── generateTypedocOptions.js ├── lint-staged.config.js ├── package.json ├── sidebars.js ├── src ├── components │ ├── DocCardList_Custom │ │ └── index.js │ ├── DocCard_Custom │ │ ├── index.js │ │ └── styles.module.css │ └── OverviewCardList │ │ └── index.js ├── css │ └── custom.css ├── pages │ ├── docs │ │ └── decoupled-kit-overview.jsx │ └── index.jsx └── theme │ └── Admonition │ ├── index.js │ └── styles.module.css └── static ├── .nojekyll └── img ├── B_Fist-Tagline.png ├── B_Fist.svg ├── W_Fist-Tagline.png ├── decoupled.png ├── drupal-trigger-deployment-manually.gif ├── favicon.ico └── pantheon_logo.png /.changeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/.changeset/README.md -------------------------------------------------------------------------------- /.changeset/clever-avocados-clap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/.changeset/clever-avocados-clap.md -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.changeset/grumpy-ravens-lie.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/.changeset/grumpy-ravens-lie.md -------------------------------------------------------------------------------- /.changeset/neat-teachers-warn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/.changeset/neat-teachers-warn.md -------------------------------------------------------------------------------- /.changeset/pre.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/.changeset/pre.json -------------------------------------------------------------------------------- /.changeset/tasty-panthers-talk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/.changeset/tasty-panthers-talk.md -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report-template copy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/.github/ISSUE_TEMPLATE/bug-report-template copy.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/.github/ISSUE_TEMPLATE/bug-report-template.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/doc-update-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/.github/ISSUE_TEMPLATE/doc-update-template.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/.github/ISSUE_TEMPLATE/feature-request-template.yml -------------------------------------------------------------------------------- /.github/actions/setup-node/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/.github/actions/setup-node/action.yml -------------------------------------------------------------------------------- /.github/actions/setup-playwright/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/.github/actions/setup-playwright/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/scripts/main-publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/.github/scripts/main-publish.sh -------------------------------------------------------------------------------- /.github/scripts/main-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/.github/scripts/main-release.sh -------------------------------------------------------------------------------- /.github/templates/empty-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/.github/templates/empty-package.json -------------------------------------------------------------------------------- /.github/templates/trigger-e2e.yml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/.github/templates/trigger-e2e.yml.template -------------------------------------------------------------------------------- /.github/workflows/canary-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/.github/workflows/canary-release.yml -------------------------------------------------------------------------------- /.github/workflows/canary-sites-split.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/.github/workflows/canary-sites-split.yml -------------------------------------------------------------------------------- /.github/workflows/cli-addon-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/.github/workflows/cli-addon-tests.yml -------------------------------------------------------------------------------- /.github/workflows/release-and-split.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/.github/workflows/release-and-split.yml -------------------------------------------------------------------------------- /.github/workflows/snapshot-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/.github/workflows/snapshot-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 18 -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/.prettierignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/README.md -------------------------------------------------------------------------------- /ci-tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/ci-tests/package.json -------------------------------------------------------------------------------- /ci-tests/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/ci-tests/playwright.config.ts -------------------------------------------------------------------------------- /ci-tests/tests/gatsby-wp-acf.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/ci-tests/tests/gatsby-wp-acf.spec.ts -------------------------------------------------------------------------------- /ci-tests/tests/next-drupal-search.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/ci-tests/tests/next-drupal-search.spec.ts -------------------------------------------------------------------------------- /ci-tests/tests/next-wp-acf.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/ci-tests/tests/next-wp-acf.spec.ts -------------------------------------------------------------------------------- /configs/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/configs/LICENSE.md -------------------------------------------------------------------------------- /configs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/configs/README.md -------------------------------------------------------------------------------- /configs/eslint/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/configs/eslint/CHANGELOG.md -------------------------------------------------------------------------------- /configs/eslint/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/configs/eslint/LICENSE.md -------------------------------------------------------------------------------- /configs/eslint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/configs/eslint/README.md -------------------------------------------------------------------------------- /configs/eslint/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/configs/eslint/index.js -------------------------------------------------------------------------------- /configs/eslint/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/configs/eslint/package.json -------------------------------------------------------------------------------- /configs/eslint/react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/configs/eslint/react.js -------------------------------------------------------------------------------- /configs/lint-staged.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/configs/lint-staged.config.js -------------------------------------------------------------------------------- /configs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/configs/package.json -------------------------------------------------------------------------------- /configs/prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/configs/prettier.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/package.json -------------------------------------------------------------------------------- /packages/cms-kit/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/cms-kit/.eslintrc -------------------------------------------------------------------------------- /packages/cms-kit/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist/ 3 | coverage/ -------------------------------------------------------------------------------- /packages/cms-kit/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/cms-kit/CHANGELOG.md -------------------------------------------------------------------------------- /packages/cms-kit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/cms-kit/README.md -------------------------------------------------------------------------------- /packages/cms-kit/__tests__/setSurrogateKeyHeader.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/cms-kit/__tests__/setSurrogateKeyHeader.test.ts -------------------------------------------------------------------------------- /packages/cms-kit/lint-staged.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/cms-kit/lint-staged.config.cjs -------------------------------------------------------------------------------- /packages/cms-kit/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/cms-kit/package.json -------------------------------------------------------------------------------- /packages/cms-kit/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/cms-kit/src/index.ts -------------------------------------------------------------------------------- /packages/cms-kit/src/lib/setSurrogateKeyHeader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/cms-kit/src/lib/setSurrogateKeyHeader.ts -------------------------------------------------------------------------------- /packages/cms-kit/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/cms-kit/tsconfig.build.json -------------------------------------------------------------------------------- /packages/cms-kit/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/cms-kit/tsconfig.json -------------------------------------------------------------------------------- /packages/cms-kit/tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/cms-kit/tsup.config.ts -------------------------------------------------------------------------------- /packages/cms-kit/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/cms-kit/vite.config.mts -------------------------------------------------------------------------------- /packages/configs/eslint/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/configs/eslint/.eslintrc -------------------------------------------------------------------------------- /packages/configs/eslint/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/configs/eslint/CHANGELOG.md -------------------------------------------------------------------------------- /packages/configs/eslint/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/configs/eslint/LICENSE.md -------------------------------------------------------------------------------- /packages/configs/eslint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/configs/eslint/README.md -------------------------------------------------------------------------------- /packages/configs/eslint/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/configs/eslint/index.js -------------------------------------------------------------------------------- /packages/configs/eslint/lint-staged.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/configs/eslint/lint-staged.config.js -------------------------------------------------------------------------------- /packages/configs/eslint/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/configs/eslint/package.json -------------------------------------------------------------------------------- /packages/configs/eslint/react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/configs/eslint/react.js -------------------------------------------------------------------------------- /packages/configs/eslint/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/configs/eslint/tsconfig.json -------------------------------------------------------------------------------- /packages/configs/other/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/configs/other/.eslintrc -------------------------------------------------------------------------------- /packages/configs/other/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/configs/other/CHANGELOG.md -------------------------------------------------------------------------------- /packages/configs/other/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/configs/other/LICENSE.md -------------------------------------------------------------------------------- /packages/configs/other/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/configs/other/README.md -------------------------------------------------------------------------------- /packages/configs/other/lint-staged.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/configs/other/lint-staged.config.js -------------------------------------------------------------------------------- /packages/configs/other/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/configs/other/package.json -------------------------------------------------------------------------------- /packages/configs/other/prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/configs/other/prettier.config.js -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/.eslintrc -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | coverage 4 | watch.ts 5 | pkgVersions.json -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/CHANGELOG.md -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/LICENSE.md -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/README.md -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/__tests__/actionRunner.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/__tests__/actionRunner.test.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/__tests__/addDependencies.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/__tests__/addDependencies.test.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/__tests__/addWithDiff.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/__tests__/addWithDiff.test.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/__tests__/convertCSSModules.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/__tests__/convertCSSModules.test.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/__tests__/fixtures/addWithDiff/populated/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/__tests__/fixtures/addWithDiff/populated/.gitignore -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/__tests__/fixtures/addWithDiff/populated/test-anotherFileWithDiff.js: -------------------------------------------------------------------------------- 1 | console.log(` 2 | This is a multiline input! 3 | Testing the diff 4 | `) -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/__tests__/fixtures/addWithDiff/populated/test-binaryFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/__tests__/fixtures/addWithDiff/populated/test-binaryFile.png -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/__tests__/fixtures/addWithDiff/populated/test-ts-template.ts: -------------------------------------------------------------------------------- 1 | const x = 'I am a string'; 2 | console.log(x); 3 | -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/__tests__/fixtures/addWithDiff/populated/test-withDiff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/__tests__/fixtures/addWithDiff/populated/test-withDiff.js -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/__tests__/fixtures/convertCSSModules/empty/components/component.ts: -------------------------------------------------------------------------------- 1 | // placeholder -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/__tests__/fixtures/convertCSSModules/empty/pages/page.ts: -------------------------------------------------------------------------------- 1 | // placeholder -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/__tests__/fixtures/runESLint/withLint/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/__tests__/fixtures/runESLint/withLint/package.json -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/__tests__/fixtures/runESLint/withLintFix/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/__tests__/fixtures/runESLint/withLintFix/package.json -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/__tests__/fixtures/runESLint/withoutLint/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/__tests__/fixtures/runESLint/withoutLint/package.json -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/__tests__/fixtures/runInstall/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/__tests__/fixtures/runInstall/.npmrc -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/__tests__/fixtures/runInstall/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/__tests__/fixtures/runInstall/test.js -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/__tests__/handlebarsHelpers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/__tests__/handlebarsHelpers.test.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/__tests__/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/__tests__/index.test.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/__tests__/runInstall.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/__tests__/runInstall.test.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/__tests__/runLint.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/__tests__/runLint.test.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/__tests__/sharedTestData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/__tests__/sharedTestData.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/__tests__/taggedTemplateHelpers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/__tests__/taggedTemplateHelpers.test.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/__tests__/templates/addDependencies/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/__tests__/templates/addWithDiff/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/__tests__/templates/addWithDiff/gitignore -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/__tests__/templates/addWithDiff/test-binaryFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/__tests__/templates/addWithDiff/test-binaryFile.png -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/__tests__/templates/addWithDiff/test-can-be-empty.ts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/__tests__/templates/addWithDiff/test-can-be-empty.ts.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/__tests__/templates/addWithDiff/test-toBeCopiedWithDiff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/__tests__/templates/addWithDiff/test-toBeCopiedWithDiff.json -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/__tests__/templates/addWithDiff/test-ts-template.ts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/__tests__/templates/addWithDiff/test-ts-template.ts.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/__tests__/templates/addWithDiff/test-withDiff.js.hbs: -------------------------------------------------------------------------------- 1 | console.log('{{diffInput}}') -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/__tests__/templates/partials/testPartial.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/__tests__/templates/partials/testPartial.hbs -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/__tests__/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/__tests__/types.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/esbuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/esbuild.js -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/index.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/lint-staged.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/lint-staged.config.cjs -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/package.json -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/scripts/copyTemplates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/scripts/copyTemplates.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/scripts/getVersions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/scripts/getVersions.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/scripts/watchTemplates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/scripts/watchTemplates.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/actions/addDependencies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/actions/addDependencies.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/actions/addWithDiff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/actions/addWithDiff.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/actions/convertCSSModules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/actions/convertCSSModules.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/actions/index.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/actions/runInstall.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/actions/runInstall.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/actions/runLint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/actions/runLint.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/bin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/bin.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/generators/gatsby-wp-acf-addon.generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/generators/gatsby-wp-acf-addon.generator.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/generators/gatsby-wp.generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/generators/gatsby-wp.generator.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/generators/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/generators/index.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/generators/next-drupal-search-api-addon.generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/generators/next-drupal-search-api-addon.generator.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/generators/next-drupal-umami-addon.generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/generators/next-drupal-umami-addon.generator.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/generators/next-drupal.generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/generators/next-drupal.generator.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/generators/next-wp-acf-addon.generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/generators/next-wp-acf-addon.generator.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/generators/next-wp.generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/generators/next-wp.generator.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/generators/tailwindcss-addon.generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/generators/tailwindcss-addon.generator.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/index.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp-acf-addon/src/gatsby-types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp-acf-addon/src/gatsby-types.d.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/.env.development.local.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/.env.development.local.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/.env.example -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/.eslintrc -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/.lando.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/.lando.yml -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/.nvmrc: -------------------------------------------------------------------------------- 1 | 18 -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/.prettierignore -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/.prettierrc -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/CHANGELOG.md -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/LICENSE.md -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/README.md.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/README.md.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/__tests__/data/allWpPost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/__tests__/data/allWpPost.json -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/__tests__/data/wpMenu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/__tests__/data/wpMenu.json -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/__tests__/setupFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/__tests__/setupFile.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/__tests__/unitTests/example.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/__tests__/unitTests/example.test.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/content/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/gatsby-browser.tsx: -------------------------------------------------------------------------------- 1 | import './src/css/style.css'; 2 | -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/gatsby-config.ts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/gatsby-config.ts.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/gatsby-node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/gatsby-node.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/gatsby-ssr.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/gatsby-ssr.tsx -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/gitignore -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/lib/createPagesUtils/getPages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/lib/createPagesUtils/getPages.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/lib/createPagesUtils/getPosts.ts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/lib/createPagesUtils/getPosts.ts.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/lib/createPagesUtils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/lib/createPagesUtils/index.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/lib/paginationPostsQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/lib/paginationPostsQuery.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/lib/privatePostsQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/lib/privatePostsQuery.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/lib/types.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/lib/usePagination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/lib/usePagination.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/package.json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/package.json.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/components/footer.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/components/footer.module.css -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/components/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/components/footer.tsx -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/components/grid.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/components/grid.module.css -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/components/grid.module.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/components/grid.module.css.d.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/components/grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/components/grid.tsx -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/components/layout.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/components/layout.module.css -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/components/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/components/layout.tsx -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/components/page.module.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/components/page.module.css.d.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/components/page.module.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/components/page.module.css.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/components/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/components/page.tsx -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/components/paginator.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/components/paginator.module.css -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/components/paginator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/components/paginator.tsx -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/components/post.module.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/components/post.module.css.d.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/components/post.module.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/components/post.module.css.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/components/post.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/components/post.tsx -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/components/seo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/components/seo.tsx -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/css/style.css -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/gatsby-types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/gatsby-types.d.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/pages/404.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/pages/404.module.css -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/pages/404.module.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/pages/404.module.css.d.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/pages/404.tsx -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/templates/authApi.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/templates/authApi.module.css -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/templates/authApi.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/templates/authApi.tsx -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/templates/examples.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/templates/examples.module.css -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/templates/examples.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/templates/examples.tsx -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/templates/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/templates/index.module.css -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/templates/index.module.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/templates/index.module.css.d.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/templates/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/templates/index.tsx -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/templates/pageTemplate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/templates/pageTemplate.tsx -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/templates/pagesIndex.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/templates/pagesIndex.tsx -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/templates/pagination.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/templates/pagination.module.css -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/templates/postTemplate.tsx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/templates/postTemplate.tsx.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/templates/postsIndex.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/src/templates/postsIndex.tsx -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/static/favicon.ico -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/static/pantheon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/static/pantheon.png -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/tsconfig.json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/tsconfig.json.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/gatsby-wp/vite.config.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-drupal-search-api-addon/components/layout.jsx.hbs: -------------------------------------------------------------------------------- 1 | {{> nextDrupalLayout}} 2 | -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-drupal-umami-addon/components/grid.module.css.hbs: -------------------------------------------------------------------------------- 1 | {{> nextjsGridCSS umami=true}} -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-drupal-umami-addon/pages/[...alias].jsx.hbs: -------------------------------------------------------------------------------- 1 | {{> nextDrupalCatchAllView umami=true}} -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-drupal-umami-addon/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-drupal-umami-addon/vite.config.js -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-drupal/.env.development.local.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-drupal/.env.development.local.hbs -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-drupal/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-drupal/.env.example -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-drupal/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-drupal/.lando.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-drupal/.lando.yml -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-drupal/.nvmrc: -------------------------------------------------------------------------------- 1 | 18 2 | -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-drupal/.prettierignore: -------------------------------------------------------------------------------- 1 | .next 2 | coverage -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-drupal/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-drupal/.prettierrc -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-drupal/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-drupal/CHANGELOG.md -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-drupal/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-drupal/LICENSE.md -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-drupal/README.md.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-drupal/README.md.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-drupal/__mocks__/next/image.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-drupal/__mocks__/next/image.jsx -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-drupal/__tests__/data/oauthToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-drupal/__tests__/data/oauthToken.json -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-drupal/__tests__/getPaths.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-drupal/__tests__/getPaths.test.js -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-drupal/__tests__/getPreview.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-drupal/__tests__/getPreview.test.js -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-drupal/__tests__/setupFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-drupal/__tests__/setupFile.js -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-drupal/__tests__/stores.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-drupal/__tests__/stores.test.js -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-drupal/components/grid.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-drupal/components/grid.jsx -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-drupal/components/layout.jsx.hbs: -------------------------------------------------------------------------------- 1 | {{> nextDrupalLayout}} 2 | -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-drupal/components/page-header.jsx.hbs: -------------------------------------------------------------------------------- 1 | {{> nextjsPageHeader}} -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-drupal/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-drupal/gitignore -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-drupal/lib/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-drupal/lib/constants.js -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-drupal/lib/getPaths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-drupal/lib/getPaths.js -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-drupal/lib/getPreview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-drupal/lib/getPreview.js -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-drupal/lib/isMultiLanguage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-drupal/lib/isMultiLanguage.js -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-drupal/lib/stores.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-drupal/lib/stores.js -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-drupal/next.config.js.hbs: -------------------------------------------------------------------------------- 1 | {{> sharedNextDrupalConfig}} -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-drupal/package.json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-drupal/package.json.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-drupal/pages/404.jsx.hbs: -------------------------------------------------------------------------------- 1 | {{> nextjs404}} -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-drupal/pages/500.jsx.hbs: -------------------------------------------------------------------------------- 1 | {{> nextjs500}} -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-drupal/pages/[...alias].jsx.hbs: -------------------------------------------------------------------------------- 1 | {{> nextDrupalCatchAllView}} -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-drupal/pages/_app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-drupal/pages/_app.jsx -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-drupal/pages/api/clear-preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-drupal/pages/api/clear-preview.js -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-drupal/pages/api/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-drupal/pages/api/hello.js -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-drupal/pages/api/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-drupal/pages/api/preview.js -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-drupal/pages/articles/[...slug].jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-drupal/pages/articles/[...slug].jsx -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-drupal/pages/articles/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-drupal/pages/articles/index.jsx -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-drupal/pages/examples/auth-api.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-drupal/pages/examples/auth-api.jsx -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-drupal/pages/examples/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-drupal/pages/examples/index.jsx -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-drupal/pages/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-drupal/pages/index.jsx -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-drupal/pages/pages/[...alias].jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-drupal/pages/pages/[...alias].jsx -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-drupal/pages/pages/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-drupal/pages/pages/index.jsx -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-drupal/public/collapse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-drupal/public/collapse.svg -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-drupal/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-drupal/public/favicon.ico -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-drupal/public/pantheon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-drupal/public/pantheon.png -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-drupal/scripts/get-locales.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-drupal/scripts/get-locales.js -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-drupal/styles/globals.css.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-drupal/styles/globals.css.hbs -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-drupal/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-drupal/vite.config.js -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-wp-acf-addon/lib/Posts.js.hbs: -------------------------------------------------------------------------------- 1 | {{> nextWpPostsJS wpAcfAddon=true}} -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-wp-acf-addon/pages/pages/[...uri].jsx.hbs: -------------------------------------------------------------------------------- 1 | {{> nextWpPageView}} -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-wp-acf-addon/pages/posts/[...slug].jsx.hbs: -------------------------------------------------------------------------------- 1 | {{> nextWpPostView wpAcfAddon=true}} -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-wp-acf-addon/pages/posts/[...slug].module.css.hbs: -------------------------------------------------------------------------------- 1 | {{> nextWpPostCSS wpAcfAddon=true}} -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-wp/.env.development.local.hbs: -------------------------------------------------------------------------------- 1 | WPGRAPHQL_URL={{wpGraphql cmsEndpoint}} -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-wp/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-wp/.env.example -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-wp/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-wp/.nvmrc: -------------------------------------------------------------------------------- 1 | 18 -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-wp/.prettierignore: -------------------------------------------------------------------------------- 1 | .next 2 | coverage -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-wp/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-wp/.prettierrc -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-wp/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-wp/CHANGELOG.md -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-wp/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-wp/LICENSE.md -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-wp/README.md.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-wp/README.md.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-wp/__mocks__/next/image.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-wp/__mocks__/next/image.jsx -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-wp/__tests__/data/footerMenuData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-wp/__tests__/data/footerMenuData.json -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-wp/__tests__/data/pageData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-wp/__tests__/data/pageData.json -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-wp/__tests__/data/pagesData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-wp/__tests__/data/pagesData.json -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-wp/__tests__/data/postData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-wp/__tests__/data/postData.json -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-wp/__tests__/data/postsData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-wp/__tests__/data/postsData.json -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-wp/__tests__/getAuthCredentials.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-wp/__tests__/getAuthCredentials.test.js -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-wp/__tests__/getUrlPath.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-wp/__tests__/getUrlPath.test.js -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-wp/components/grid.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-wp/components/grid.jsx -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-wp/components/layout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-wp/components/layout.jsx -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-wp/components/page-header.jsx.hbs: -------------------------------------------------------------------------------- 1 | {{> nextjsPageHeader}} -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-wp/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-wp/gitignore -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-wp/lib/Menus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-wp/lib/Menus.js -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-wp/lib/Pages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-wp/lib/Pages.js -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-wp/lib/Posts.js.hbs: -------------------------------------------------------------------------------- 1 | {{> nextWpPostsJS}} -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-wp/lib/PostsPagination.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-wp/lib/PostsPagination.js -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-wp/lib/WordPressClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-wp/lib/WordPressClient.js -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-wp/lib/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-wp/lib/constants.js -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-wp/lib/getUrlPath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-wp/lib/getUrlPath.js -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-wp/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-wp/next.config.js -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-wp/package.json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-wp/package.json.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-wp/pages/404.jsx.hbs: -------------------------------------------------------------------------------- 1 | {{> nextjs404}} -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-wp/pages/500.jsx.hbs: -------------------------------------------------------------------------------- 1 | {{> nextjs500}} -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-wp/pages/_app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-wp/pages/_app.jsx -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-wp/pages/api/clear-preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-wp/pages/api/clear-preview.js -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-wp/pages/api/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-wp/pages/api/hello.js -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-wp/pages/api/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-wp/pages/api/preview.js -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-wp/pages/examples/auth-api.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-wp/pages/examples/auth-api.jsx -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-wp/pages/examples/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-wp/pages/examples/index.jsx -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-wp/pages/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-wp/pages/index.jsx -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-wp/pages/pages/[...uri].jsx.hbs: -------------------------------------------------------------------------------- 1 | {{> nextWpPageView}} -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-wp/pages/pages/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-wp/pages/pages/index.jsx -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-wp/pages/posts/[...slug].jsx.hbs: -------------------------------------------------------------------------------- 1 | {{> nextWpPostView}} -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-wp/pages/posts/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-wp/pages/posts/index.jsx -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-wp/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-wp/public/favicon.ico -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-wp/public/pantheon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-wp/public/pantheon.png -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-wp/styles/globals.css.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-wp/styles/globals.css.hbs -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/next-wp/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/next-wp/vite.config.js -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/partials/gatsby-wp/postTemplate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/partials/gatsby-wp/postTemplate.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/partials/gatsby-wp/wpPostsQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/partials/gatsby-wp/wpPostsQuery.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/partials/next-drupal/nextDrupalLayout.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/partials/next-drupal/nextDrupalLayout.hbs -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/partials/next-drupal/nextDrupalPkgJson.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/partials/next-drupal/nextDrupalPkgJson.hbs -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/partials/next-wp/nextWpPageView.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/partials/next-wp/nextWpPageView.hbs -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/partials/next-wp/nextWpPostCSS.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/partials/next-wp/nextWpPostCSS.hbs -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/partials/next-wp/nextWpPostView.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/partials/next-wp/nextWpPostView.hbs -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/partials/next-wp/nextWpPostsJS.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/partials/next-wp/nextWpPostsJS.hbs -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/partials/nextjs-shared/nextjs404.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/partials/nextjs-shared/nextjs404.hbs -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/partials/nextjs-shared/nextjs500.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/partials/nextjs-shared/nextjs500.hbs -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/partials/nextjs-shared/nextjsGridCSS.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/partials/nextjs-shared/nextjsGridCSS.hbs -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/partials/nextjs-shared/nextjsLayoutCSS.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/partials/nextjs-shared/nextjsLayoutCSS.hbs -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/partials/nextjs-shared/nextjsPageHeader.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/partials/nextjs-shared/nextjsPageHeader.hbs -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/partials/pkg-shared/sharedPkgJsonFields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/partials/pkg-shared/sharedPkgJsonFields.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/partials/pkg-shared/tailwindcssDeps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/partials/pkg-shared/tailwindcssDeps.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/partials/readme-shared/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/partials/readme-shared/index.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/styles/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/styles/variables.css -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/tailwind-shared/postcss.config.cjs.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/tailwind-shared/postcss.config.cjs.hbs -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/tailwind-shared/src/css/style.css.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/tailwind-shared/src/css/style.css.hbs -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/tailwind-shared/styles/globals.css.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/tailwind-shared/styles/globals.css.hbs -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/tailwind-shared/tailwind.config.cjs.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/tailwind-shared/tailwind.config.cjs.hbs -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/tailwindcss-addon/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/tailwindcss-addon/postcss.config.cjs -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/tailwindcss-addon/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/tailwindcss-addon/styles/globals.css -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/tailwindcss-addon/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/tailwindcss-addon/tailwind.config.cjs -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/tailwindless-next/components/grid.module.css.hbs: -------------------------------------------------------------------------------- 1 | {{> nextjsGridCSS}} -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/tailwindless-next/components/layout.module.css.hbs: -------------------------------------------------------------------------------- 1 | {{> nextjsLayoutCSS}} -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/tailwindless-next/pages/404.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/tailwindless-next/pages/404.module.css -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/tailwindless-next/pages/500.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/tailwindless-next/pages/500.module.css -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/templates/tailwindless-next/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/templates/tailwindless-next/pages/index.module.css -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/types.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/utils/actionRunner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/utils/actionRunner.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/utils/constants.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/utils/dedupeTemplates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/utils/dedupeTemplates.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/utils/handlebars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/utils/handlebars.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/utils/helpMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/utils/helpMenu.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/utils/index.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/utils/sharedPrompts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/utils/sharedPrompts.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/src/utils/taggedTemplateHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/src/utils/taggedTemplateHelpers.ts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/tsconfig.json -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/tsconfig.typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/tsconfig.typedoc.json -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/vite.config.mts -------------------------------------------------------------------------------- /packages/create-pantheon-decoupled-kit/watch.example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/create-pantheon-decoupled-kit/watch.example.ts -------------------------------------------------------------------------------- /packages/decoupled-kit-health-check/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/decoupled-kit-health-check/.eslintrc -------------------------------------------------------------------------------- /packages/decoupled-kit-health-check/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | .DS_Store 3 | /dist 4 | /coverage 5 | -------------------------------------------------------------------------------- /packages/decoupled-kit-health-check/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/decoupled-kit-health-check/CHANGELOG.md -------------------------------------------------------------------------------- /packages/decoupled-kit-health-check/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/decoupled-kit-health-check/README.md -------------------------------------------------------------------------------- /packages/decoupled-kit-health-check/__mocks__/server/drupal/requestHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/decoupled-kit-health-check/__mocks__/server/drupal/requestHandlers.ts -------------------------------------------------------------------------------- /packages/decoupled-kit-health-check/__mocks__/server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/decoupled-kit-health-check/__mocks__/server/index.ts -------------------------------------------------------------------------------- /packages/decoupled-kit-health-check/__mocks__/server/wordpress/requestHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/decoupled-kit-health-check/__mocks__/server/wordpress/requestHandlers.ts -------------------------------------------------------------------------------- /packages/decoupled-kit-health-check/__tests__/GatsbyWordPressHealthCheck.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/decoupled-kit-health-check/__tests__/GatsbyWordPressHealthCheck.test.ts -------------------------------------------------------------------------------- /packages/decoupled-kit-health-check/__tests__/NextDrupalHealthCheck.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/decoupled-kit-health-check/__tests__/NextDrupalHealthCheck.test.ts -------------------------------------------------------------------------------- /packages/decoupled-kit-health-check/__tests__/NextWordPressHealthCheck.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/decoupled-kit-health-check/__tests__/NextWordPressHealthCheck.test.ts -------------------------------------------------------------------------------- /packages/decoupled-kit-health-check/__tests__/__snapshots__/NextDrupalHealthCheck.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/decoupled-kit-health-check/__tests__/__snapshots__/NextDrupalHealthCheck.test.ts.snap -------------------------------------------------------------------------------- /packages/decoupled-kit-health-check/__tests__/__snapshots__/NextWordPressHealthCheck.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/decoupled-kit-health-check/__tests__/__snapshots__/NextWordPressHealthCheck.test.ts.snap -------------------------------------------------------------------------------- /packages/decoupled-kit-health-check/__tests__/fixtures/dotenv/.env: -------------------------------------------------------------------------------- 1 | BACKEND_URL=https://drupal.test -------------------------------------------------------------------------------- /packages/decoupled-kit-health-check/__tests__/fixtures/dotenvDev/.env.development.local: -------------------------------------------------------------------------------- 1 | BACKEND_URL=https://drupal.test -------------------------------------------------------------------------------- /packages/decoupled-kit-health-check/__tests__/fixtures/noDotenv/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/decoupled-kit-health-check/__tests__/noDKHC.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/decoupled-kit-health-check/__tests__/noDKHC.test.ts -------------------------------------------------------------------------------- /packages/decoupled-kit-health-check/__tests__/resolveDotenvFile.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/decoupled-kit-health-check/__tests__/resolveDotenvFile.test.ts -------------------------------------------------------------------------------- /packages/decoupled-kit-health-check/__tests__/setupFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/decoupled-kit-health-check/__tests__/setupFile.ts -------------------------------------------------------------------------------- /packages/decoupled-kit-health-check/__tests__/vitest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/decoupled-kit-health-check/__tests__/vitest.d.ts -------------------------------------------------------------------------------- /packages/decoupled-kit-health-check/esbuild.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/decoupled-kit-health-check/esbuild.mjs -------------------------------------------------------------------------------- /packages/decoupled-kit-health-check/lint-staged.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/decoupled-kit-health-check/lint-staged.config.cjs -------------------------------------------------------------------------------- /packages/decoupled-kit-health-check/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/decoupled-kit-health-check/package.json -------------------------------------------------------------------------------- /packages/decoupled-kit-health-check/src/bin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/decoupled-kit-health-check/src/bin.ts -------------------------------------------------------------------------------- /packages/decoupled-kit-health-check/src/classes/GatsbyWordPressHealthCheck.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/decoupled-kit-health-check/src/classes/GatsbyWordPressHealthCheck.ts -------------------------------------------------------------------------------- /packages/decoupled-kit-health-check/src/classes/HealthCheckBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/decoupled-kit-health-check/src/classes/HealthCheckBase.ts -------------------------------------------------------------------------------- /packages/decoupled-kit-health-check/src/classes/NextDrupalHealthCheck.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/decoupled-kit-health-check/src/classes/NextDrupalHealthCheck.ts -------------------------------------------------------------------------------- /packages/decoupled-kit-health-check/src/classes/NextWordPressHealthCheck.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/decoupled-kit-health-check/src/classes/NextWordPressHealthCheck.ts -------------------------------------------------------------------------------- /packages/decoupled-kit-health-check/src/classes/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/decoupled-kit-health-check/src/classes/errors.ts -------------------------------------------------------------------------------- /packages/decoupled-kit-health-check/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/decoupled-kit-health-check/src/index.ts -------------------------------------------------------------------------------- /packages/decoupled-kit-health-check/src/utils/getFramework.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/decoupled-kit-health-check/src/utils/getFramework.ts -------------------------------------------------------------------------------- /packages/decoupled-kit-health-check/src/utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/decoupled-kit-health-check/src/utils/logger.ts -------------------------------------------------------------------------------- /packages/decoupled-kit-health-check/src/utils/resolveDotenvFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/decoupled-kit-health-check/src/utils/resolveDotenvFile.ts -------------------------------------------------------------------------------- /packages/decoupled-kit-health-check/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/decoupled-kit-health-check/tsconfig.json -------------------------------------------------------------------------------- /packages/decoupled-kit-health-check/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/decoupled-kit-health-check/vite.config.mts -------------------------------------------------------------------------------- /packages/drupal-kit/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/drupal-kit/.eslintrc -------------------------------------------------------------------------------- /packages/drupal-kit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/drupal-kit/.gitignore -------------------------------------------------------------------------------- /packages/drupal-kit/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/drupal-kit/CHANGELOG.md -------------------------------------------------------------------------------- /packages/drupal-kit/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/drupal-kit/LICENSE.md -------------------------------------------------------------------------------- /packages/drupal-kit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/drupal-kit/README.md -------------------------------------------------------------------------------- /packages/drupal-kit/__mocks__/server/drupalStateResponseHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/drupal-kit/__mocks__/server/drupalStateResponseHandlers.ts -------------------------------------------------------------------------------- /packages/drupal-kit/__mocks__/server/getDrupalSearchResultsResponseHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/drupal-kit/__mocks__/server/getDrupalSearchResultsResponseHandlers.ts -------------------------------------------------------------------------------- /packages/drupal-kit/__mocks__/server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/drupal-kit/__mocks__/server/index.ts -------------------------------------------------------------------------------- /packages/drupal-kit/__tests__/PantheonDrupalState.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/drupal-kit/__tests__/PantheonDrupalState.test.ts -------------------------------------------------------------------------------- /packages/drupal-kit/__tests__/data/apiIndex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/drupal-kit/__tests__/data/apiIndex.json -------------------------------------------------------------------------------- /packages/drupal-kit/__tests__/data/collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/drupal-kit/__tests__/data/collection.json -------------------------------------------------------------------------------- /packages/drupal-kit/__tests__/data/exampleSearchResultsAltIndex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/drupal-kit/__tests__/data/exampleSearchResultsAltIndex.json -------------------------------------------------------------------------------- /packages/drupal-kit/__tests__/data/exampleSearchResultsDefaultIndex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/drupal-kit/__tests__/data/exampleSearchResultsDefaultIndex.json -------------------------------------------------------------------------------- /packages/drupal-kit/__tests__/data/recipesCollectionObject1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/drupal-kit/__tests__/data/recipesCollectionObject1.json -------------------------------------------------------------------------------- /packages/drupal-kit/__tests__/data/recipesCollectionObject1WithParams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/drupal-kit/__tests__/data/recipesCollectionObject1WithParams.json -------------------------------------------------------------------------------- /packages/drupal-kit/__tests__/data/recipesResourceData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/drupal-kit/__tests__/data/recipesResourceData.json -------------------------------------------------------------------------------- /packages/drupal-kit/__tests__/data/recipesResourceData1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/drupal-kit/__tests__/data/recipesResourceData1.json -------------------------------------------------------------------------------- /packages/drupal-kit/__tests__/data/recipesResourceData1WithParams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/drupal-kit/__tests__/data/recipesResourceData1WithParams.json -------------------------------------------------------------------------------- /packages/drupal-kit/__tests__/data/recipesResourceObject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/drupal-kit/__tests__/data/recipesResourceObject.json -------------------------------------------------------------------------------- /packages/drupal-kit/__tests__/data/recipesResourceObject1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/drupal-kit/__tests__/data/recipesResourceObject1.json -------------------------------------------------------------------------------- /packages/drupal-kit/__tests__/data/token.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/drupal-kit/__tests__/data/token.json -------------------------------------------------------------------------------- /packages/drupal-kit/__tests__/getDrupalSearchResults.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/drupal-kit/__tests__/getDrupalSearchResults.test.ts -------------------------------------------------------------------------------- /packages/drupal-kit/__tests__/setupFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/drupal-kit/__tests__/setupFile.ts -------------------------------------------------------------------------------- /packages/drupal-kit/lint-staged.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/drupal-kit/lint-staged.config.js -------------------------------------------------------------------------------- /packages/drupal-kit/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/drupal-kit/package.json -------------------------------------------------------------------------------- /packages/drupal-kit/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/drupal-kit/src/index.ts -------------------------------------------------------------------------------- /packages/drupal-kit/src/lib/PantheonDrupalState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/drupal-kit/src/lib/PantheonDrupalState.ts -------------------------------------------------------------------------------- /packages/drupal-kit/src/lib/defaultFetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/drupal-kit/src/lib/defaultFetch.ts -------------------------------------------------------------------------------- /packages/drupal-kit/src/lib/getDrupalSearchResults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/drupal-kit/src/lib/getDrupalSearchResults.ts -------------------------------------------------------------------------------- /packages/drupal-kit/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/drupal-kit/src/types.ts -------------------------------------------------------------------------------- /packages/drupal-kit/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/drupal-kit/tsconfig.build.json -------------------------------------------------------------------------------- /packages/drupal-kit/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/drupal-kit/tsconfig.json -------------------------------------------------------------------------------- /packages/drupal-kit/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/drupal-kit/vite.config.mts -------------------------------------------------------------------------------- /packages/nextjs-kit/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/nextjs-kit/.eslintrc -------------------------------------------------------------------------------- /packages/nextjs-kit/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist/ 3 | .coverage/ -------------------------------------------------------------------------------- /packages/nextjs-kit/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/nextjs-kit/CHANGELOG.md -------------------------------------------------------------------------------- /packages/nextjs-kit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/nextjs-kit/README.md -------------------------------------------------------------------------------- /packages/nextjs-kit/__tests__/data/exampleGridData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/nextjs-kit/__tests__/data/exampleGridData.json -------------------------------------------------------------------------------- /packages/nextjs-kit/__tests__/data/examplePaginationData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/nextjs-kit/__tests__/data/examplePaginationData.json -------------------------------------------------------------------------------- /packages/nextjs-kit/__tests__/data/examplePostData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/nextjs-kit/__tests__/data/examplePostData.json -------------------------------------------------------------------------------- /packages/nextjs-kit/__tests__/data/exampleRecipeData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/nextjs-kit/__tests__/data/exampleRecipeData.json -------------------------------------------------------------------------------- /packages/nextjs-kit/__tests__/snapshotTests/__snapshots__/contentWithImage.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/nextjs-kit/__tests__/snapshotTests/__snapshots__/contentWithImage.test.tsx.snap -------------------------------------------------------------------------------- /packages/nextjs-kit/__tests__/snapshotTests/__snapshots__/footer.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/nextjs-kit/__tests__/snapshotTests/__snapshots__/footer.test.tsx.snap -------------------------------------------------------------------------------- /packages/nextjs-kit/__tests__/snapshotTests/__snapshots__/grid.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/nextjs-kit/__tests__/snapshotTests/__snapshots__/grid.test.tsx.snap -------------------------------------------------------------------------------- /packages/nextjs-kit/__tests__/snapshotTests/__snapshots__/header.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/nextjs-kit/__tests__/snapshotTests/__snapshots__/header.test.tsx.snap -------------------------------------------------------------------------------- /packages/nextjs-kit/__tests__/snapshotTests/__snapshots__/paginator.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/nextjs-kit/__tests__/snapshotTests/__snapshots__/paginator.test.tsx.snap -------------------------------------------------------------------------------- /packages/nextjs-kit/__tests__/snapshotTests/__snapshots__/recipe.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/nextjs-kit/__tests__/snapshotTests/__snapshots__/recipe.test.tsx.snap -------------------------------------------------------------------------------- /packages/nextjs-kit/__tests__/snapshotTests/contentWithImage.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/nextjs-kit/__tests__/snapshotTests/contentWithImage.test.tsx -------------------------------------------------------------------------------- /packages/nextjs-kit/__tests__/snapshotTests/footer.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/nextjs-kit/__tests__/snapshotTests/footer.test.tsx -------------------------------------------------------------------------------- /packages/nextjs-kit/__tests__/snapshotTests/grid.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/nextjs-kit/__tests__/snapshotTests/grid.test.tsx -------------------------------------------------------------------------------- /packages/nextjs-kit/__tests__/snapshotTests/header.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/nextjs-kit/__tests__/snapshotTests/header.test.tsx -------------------------------------------------------------------------------- /packages/nextjs-kit/__tests__/snapshotTests/paginator.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/nextjs-kit/__tests__/snapshotTests/paginator.test.tsx -------------------------------------------------------------------------------- /packages/nextjs-kit/__tests__/snapshotTests/recipe.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/nextjs-kit/__tests__/snapshotTests/recipe.test.tsx -------------------------------------------------------------------------------- /packages/nextjs-kit/__tests__/sortChar.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/nextjs-kit/__tests__/sortChar.test.ts -------------------------------------------------------------------------------- /packages/nextjs-kit/__tests__/sortDate.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/nextjs-kit/__tests__/sortDate.test.ts -------------------------------------------------------------------------------- /packages/nextjs-kit/lint-staged.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/nextjs-kit/lint-staged.config.cjs -------------------------------------------------------------------------------- /packages/nextjs-kit/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/nextjs-kit/package.json -------------------------------------------------------------------------------- /packages/nextjs-kit/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/nextjs-kit/postcss.config.cjs -------------------------------------------------------------------------------- /packages/nextjs-kit/src/components/contentWithImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/nextjs-kit/src/components/contentWithImage.tsx -------------------------------------------------------------------------------- /packages/nextjs-kit/src/components/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/nextjs-kit/src/components/footer.tsx -------------------------------------------------------------------------------- /packages/nextjs-kit/src/components/grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/nextjs-kit/src/components/grid.tsx -------------------------------------------------------------------------------- /packages/nextjs-kit/src/components/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/nextjs-kit/src/components/header.tsx -------------------------------------------------------------------------------- /packages/nextjs-kit/src/components/paginator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/nextjs-kit/src/components/paginator.tsx -------------------------------------------------------------------------------- /packages/nextjs-kit/src/components/previewRibbon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/nextjs-kit/src/components/previewRibbon.tsx -------------------------------------------------------------------------------- /packages/nextjs-kit/src/components/recipe.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/nextjs-kit/src/components/recipe.tsx -------------------------------------------------------------------------------- /packages/nextjs-kit/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/nextjs-kit/src/index.ts -------------------------------------------------------------------------------- /packages/nextjs-kit/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/nextjs-kit/src/style.css -------------------------------------------------------------------------------- /packages/nextjs-kit/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/nextjs-kit/src/types.ts -------------------------------------------------------------------------------- /packages/nextjs-kit/src/utils/sortChar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/nextjs-kit/src/utils/sortChar.ts -------------------------------------------------------------------------------- /packages/nextjs-kit/src/utils/sortDate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/nextjs-kit/src/utils/sortDate.ts -------------------------------------------------------------------------------- /packages/nextjs-kit/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/nextjs-kit/tailwind.config.cjs -------------------------------------------------------------------------------- /packages/nextjs-kit/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/nextjs-kit/tsconfig.build.json -------------------------------------------------------------------------------- /packages/nextjs-kit/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/nextjs-kit/tsconfig.json -------------------------------------------------------------------------------- /packages/nextjs-kit/tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/nextjs-kit/tsup.config.ts -------------------------------------------------------------------------------- /packages/nextjs-kit/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/nextjs-kit/vite.config.mts -------------------------------------------------------------------------------- /packages/react-kit/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/react-kit/.eslintrc -------------------------------------------------------------------------------- /packages/react-kit/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist/ 3 | coverage/ 4 | storybook-static/ -------------------------------------------------------------------------------- /packages/react-kit/.storybook/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/react-kit/.storybook/main.ts -------------------------------------------------------------------------------- /packages/react-kit/.storybook/preview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/react-kit/.storybook/preview.ts -------------------------------------------------------------------------------- /packages/react-kit/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/react-kit/CHANGELOG.md -------------------------------------------------------------------------------- /packages/react-kit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/react-kit/README.md -------------------------------------------------------------------------------- /packages/react-kit/__tests__/setupFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/react-kit/__tests__/setupFile.ts -------------------------------------------------------------------------------- /packages/react-kit/__tests__/snapshotTests/Header.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/react-kit/__tests__/snapshotTests/Header.test.tsx -------------------------------------------------------------------------------- /packages/react-kit/__tests__/snapshotTests/IconButton.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/react-kit/__tests__/snapshotTests/IconButton.test.tsx -------------------------------------------------------------------------------- /packages/react-kit/__tests__/snapshotTests/__snapshots__/Header.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/react-kit/__tests__/snapshotTests/__snapshots__/Header.test.tsx.snap -------------------------------------------------------------------------------- /packages/react-kit/__tests__/snapshotTests/__snapshots__/IconButton.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/react-kit/__tests__/snapshotTests/__snapshots__/IconButton.test.tsx.snap -------------------------------------------------------------------------------- /packages/react-kit/__tests__/snapshotTests/__snapshots__/button.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/react-kit/__tests__/snapshotTests/__snapshots__/button.test.tsx.snap -------------------------------------------------------------------------------- /packages/react-kit/__tests__/snapshotTests/button.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/react-kit/__tests__/snapshotTests/button.test.tsx -------------------------------------------------------------------------------- /packages/react-kit/lint-staged.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/react-kit/lint-staged.config.cjs -------------------------------------------------------------------------------- /packages/react-kit/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/react-kit/package.json -------------------------------------------------------------------------------- /packages/react-kit/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/react-kit/postcss.config.js -------------------------------------------------------------------------------- /packages/react-kit/src/assets/icons/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/react-kit/src/assets/icons/close.svg -------------------------------------------------------------------------------- /packages/react-kit/src/assets/icons/hamburger-menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/react-kit/src/assets/icons/hamburger-menu.svg -------------------------------------------------------------------------------- /packages/react-kit/src/assets/icons/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/react-kit/src/assets/icons/search.svg -------------------------------------------------------------------------------- /packages/react-kit/src/assets/pantheon-fist-blk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/react-kit/src/assets/pantheon-fist-blk.svg -------------------------------------------------------------------------------- /packages/react-kit/src/components/Button/Button.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/react-kit/src/components/Button/Button.stories.tsx -------------------------------------------------------------------------------- /packages/react-kit/src/components/Button/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/react-kit/src/components/Button/Button.tsx -------------------------------------------------------------------------------- /packages/react-kit/src/components/Button/IconButton.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/react-kit/src/components/Button/IconButton.stories.tsx -------------------------------------------------------------------------------- /packages/react-kit/src/components/Button/IconButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/react-kit/src/components/Button/IconButton.tsx -------------------------------------------------------------------------------- /packages/react-kit/src/components/Button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/react-kit/src/components/Button/index.tsx -------------------------------------------------------------------------------- /packages/react-kit/src/components/Button/props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/react-kit/src/components/Button/props.ts -------------------------------------------------------------------------------- /packages/react-kit/src/components/Header/Header.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/react-kit/src/components/Header/Header.stories.tsx -------------------------------------------------------------------------------- /packages/react-kit/src/components/Header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/react-kit/src/components/Header/Header.tsx -------------------------------------------------------------------------------- /packages/react-kit/src/components/Header/HeaderIcons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/react-kit/src/components/Header/HeaderIcons.tsx -------------------------------------------------------------------------------- /packages/react-kit/src/components/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/react-kit/src/components/Header/index.tsx -------------------------------------------------------------------------------- /packages/react-kit/src/components/Header/props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/react-kit/src/components/Header/props.ts -------------------------------------------------------------------------------- /packages/react-kit/src/components/Row/Row.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/react-kit/src/components/Row/Row.stories.tsx -------------------------------------------------------------------------------- /packages/react-kit/src/components/Row/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/react-kit/src/components/Row/index.tsx -------------------------------------------------------------------------------- /packages/react-kit/src/components/Row/props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/react-kit/src/components/Row/props.ts -------------------------------------------------------------------------------- /packages/react-kit/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/react-kit/src/index.css -------------------------------------------------------------------------------- /packages/react-kit/src/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/react-kit/src/types.d.ts -------------------------------------------------------------------------------- /packages/react-kit/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/react-kit/tailwind.config.ts -------------------------------------------------------------------------------- /packages/react-kit/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/react-kit/tsconfig.build.json -------------------------------------------------------------------------------- /packages/react-kit/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/react-kit/tsconfig.json -------------------------------------------------------------------------------- /packages/react-kit/tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/react-kit/tsup.config.ts -------------------------------------------------------------------------------- /packages/react-kit/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/react-kit/vite.config.mts -------------------------------------------------------------------------------- /packages/wordpress-kit/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/wordpress-kit/.eslintrc -------------------------------------------------------------------------------- /packages/wordpress-kit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/wordpress-kit/.gitignore -------------------------------------------------------------------------------- /packages/wordpress-kit/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/wordpress-kit/CHANGELOG.md -------------------------------------------------------------------------------- /packages/wordpress-kit/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/wordpress-kit/LICENSE.md -------------------------------------------------------------------------------- /packages/wordpress-kit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/wordpress-kit/README.md -------------------------------------------------------------------------------- /packages/wordpress-kit/__mocks__/server/basicPostsQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/wordpress-kit/__mocks__/server/basicPostsQuery.ts -------------------------------------------------------------------------------- /packages/wordpress-kit/__mocks__/server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/wordpress-kit/__mocks__/server/index.ts -------------------------------------------------------------------------------- /packages/wordpress-kit/__tests__/GraphqlClientFactory.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/wordpress-kit/__tests__/GraphqlClientFactory.test.ts -------------------------------------------------------------------------------- /packages/wordpress-kit/__tests__/data/basicPostsQuery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/wordpress-kit/__tests__/data/basicPostsQuery.json -------------------------------------------------------------------------------- /packages/wordpress-kit/__tests__/setEdgeHeader.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/wordpress-kit/__tests__/setEdgeHeader.test.ts -------------------------------------------------------------------------------- /packages/wordpress-kit/__tests__/setOutgoingheaders.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/wordpress-kit/__tests__/setOutgoingheaders.test.ts -------------------------------------------------------------------------------- /packages/wordpress-kit/__tests__/setupFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/wordpress-kit/__tests__/setupFile.ts -------------------------------------------------------------------------------- /packages/wordpress-kit/lint-staged.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/wordpress-kit/lint-staged.config.cjs -------------------------------------------------------------------------------- /packages/wordpress-kit/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/wordpress-kit/package.json -------------------------------------------------------------------------------- /packages/wordpress-kit/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/wordpress-kit/src/index.ts -------------------------------------------------------------------------------- /packages/wordpress-kit/src/lib/GraphQLClientFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/wordpress-kit/src/lib/GraphQLClientFactory.ts -------------------------------------------------------------------------------- /packages/wordpress-kit/src/lib/setEdgeHeader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/wordpress-kit/src/lib/setEdgeHeader.ts -------------------------------------------------------------------------------- /packages/wordpress-kit/src/lib/setOutgoingHeaders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/wordpress-kit/src/lib/setOutgoingHeaders.ts -------------------------------------------------------------------------------- /packages/wordpress-kit/src/tailwindcssPlugin/Config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/wordpress-kit/src/tailwindcssPlugin/Config.ts -------------------------------------------------------------------------------- /packages/wordpress-kit/src/tailwindcssPlugin/Constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/wordpress-kit/src/tailwindcssPlugin/Constants.ts -------------------------------------------------------------------------------- /packages/wordpress-kit/src/tailwindcssPlugin/components/Audio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/wordpress-kit/src/tailwindcssPlugin/components/Audio.ts -------------------------------------------------------------------------------- /packages/wordpress-kit/src/tailwindcssPlugin/components/Buttons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/wordpress-kit/src/tailwindcssPlugin/components/Buttons.ts -------------------------------------------------------------------------------- /packages/wordpress-kit/src/tailwindcssPlugin/components/Columns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/wordpress-kit/src/tailwindcssPlugin/components/Columns.ts -------------------------------------------------------------------------------- /packages/wordpress-kit/src/tailwindcssPlugin/components/Cover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/wordpress-kit/src/tailwindcssPlugin/components/Cover.ts -------------------------------------------------------------------------------- /packages/wordpress-kit/src/tailwindcssPlugin/components/FileMedia.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/wordpress-kit/src/tailwindcssPlugin/components/FileMedia.ts -------------------------------------------------------------------------------- /packages/wordpress-kit/src/tailwindcssPlugin/components/Gallery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/wordpress-kit/src/tailwindcssPlugin/components/Gallery.ts -------------------------------------------------------------------------------- /packages/wordpress-kit/src/tailwindcssPlugin/components/Image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/wordpress-kit/src/tailwindcssPlugin/components/Image.ts -------------------------------------------------------------------------------- /packages/wordpress-kit/src/tailwindcssPlugin/components/MediaAndText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/wordpress-kit/src/tailwindcssPlugin/components/MediaAndText.ts -------------------------------------------------------------------------------- /packages/wordpress-kit/src/tailwindcssPlugin/components/PullQuote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/wordpress-kit/src/tailwindcssPlugin/components/PullQuote.ts -------------------------------------------------------------------------------- /packages/wordpress-kit/src/tailwindcssPlugin/components/Quote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/wordpress-kit/src/tailwindcssPlugin/components/Quote.ts -------------------------------------------------------------------------------- /packages/wordpress-kit/src/tailwindcssPlugin/components/Separator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/wordpress-kit/src/tailwindcssPlugin/components/Separator.ts -------------------------------------------------------------------------------- /packages/wordpress-kit/src/tailwindcssPlugin/components/Spacer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/wordpress-kit/src/tailwindcssPlugin/components/Spacer.ts -------------------------------------------------------------------------------- /packages/wordpress-kit/src/tailwindcssPlugin/components/Table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/wordpress-kit/src/tailwindcssPlugin/components/Table.ts -------------------------------------------------------------------------------- /packages/wordpress-kit/src/tailwindcssPlugin/components/Video.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/wordpress-kit/src/tailwindcssPlugin/components/Video.ts -------------------------------------------------------------------------------- /packages/wordpress-kit/src/tailwindcssPlugin/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/wordpress-kit/src/tailwindcssPlugin/components/index.ts -------------------------------------------------------------------------------- /packages/wordpress-kit/src/tailwindcssPlugin/components/shared/Alignment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/wordpress-kit/src/tailwindcssPlugin/components/shared/Alignment.ts -------------------------------------------------------------------------------- /packages/wordpress-kit/src/tailwindcssPlugin/components/shared/Button.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/wordpress-kit/src/tailwindcssPlugin/components/shared/Button.ts -------------------------------------------------------------------------------- /packages/wordpress-kit/src/tailwindcssPlugin/components/shared/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/wordpress-kit/src/tailwindcssPlugin/components/shared/index.ts -------------------------------------------------------------------------------- /packages/wordpress-kit/src/tailwindcssPlugin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/wordpress-kit/src/tailwindcssPlugin/index.ts -------------------------------------------------------------------------------- /packages/wordpress-kit/src/tailwindcssPlugin/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/wordpress-kit/src/tailwindcssPlugin/types.ts -------------------------------------------------------------------------------- /packages/wordpress-kit/src/tailwindcssPlugin/utilities/Base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/wordpress-kit/src/tailwindcssPlugin/utilities/Base.ts -------------------------------------------------------------------------------- /packages/wordpress-kit/src/tailwindcssPlugin/utilities/Colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/wordpress-kit/src/tailwindcssPlugin/utilities/Colors.ts -------------------------------------------------------------------------------- /packages/wordpress-kit/src/tailwindcssPlugin/utilities/Fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/wordpress-kit/src/tailwindcssPlugin/utilities/Fonts.ts -------------------------------------------------------------------------------- /packages/wordpress-kit/src/tailwindcssPlugin/utilities/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/wordpress-kit/src/tailwindcssPlugin/utilities/index.ts -------------------------------------------------------------------------------- /packages/wordpress-kit/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/wordpress-kit/tsconfig.build.json -------------------------------------------------------------------------------- /packages/wordpress-kit/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/wordpress-kit/tsconfig.json -------------------------------------------------------------------------------- /packages/wordpress-kit/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/packages/wordpress-kit/vite.config.mts -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /scripts/ci-version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/scripts/ci-version -------------------------------------------------------------------------------- /scripts/generate-starters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/scripts/generate-starters.ts -------------------------------------------------------------------------------- /scripts/post-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/scripts/post-install -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/tsconfig.json -------------------------------------------------------------------------------- /web/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/.eslintrc -------------------------------------------------------------------------------- /web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/.gitignore -------------------------------------------------------------------------------- /web/.nvmrc: -------------------------------------------------------------------------------- 1 | 18 -------------------------------------------------------------------------------- /web/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/LICENSE.md -------------------------------------------------------------------------------- /web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/README.md -------------------------------------------------------------------------------- /web/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/babel.config.js -------------------------------------------------------------------------------- /web/docs/Backend Starters/Decoupled Drupal/add-ons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Backend Starters/Decoupled Drupal/add-ons.md -------------------------------------------------------------------------------- /web/docs/Backend Starters/Decoupled Drupal/caching-considerations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Backend Starters/Decoupled Drupal/caching-considerations.md -------------------------------------------------------------------------------- /web/docs/Backend Starters/Decoupled Drupal/configuring-build-hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Backend Starters/Decoupled Drupal/configuring-build-hooks.md -------------------------------------------------------------------------------- /web/docs/Backend Starters/Decoupled Drupal/configuring-existing-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Backend Starters/Decoupled Drupal/configuring-existing-project.md -------------------------------------------------------------------------------- /web/docs/Backend Starters/Decoupled Drupal/configuring-preview-site.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Backend Starters/Decoupled Drupal/configuring-preview-site.md -------------------------------------------------------------------------------- /web/docs/Backend Starters/Decoupled Drupal/cors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Backend Starters/Decoupled Drupal/cors.md -------------------------------------------------------------------------------- /web/docs/Backend Starters/Decoupled Drupal/creating-a-new-project.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Backend Starters/Decoupled Drupal/creating-a-new-project.mdx -------------------------------------------------------------------------------- /web/docs/Backend Starters/Decoupled Drupal/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Backend Starters/Decoupled Drupal/index.mdx -------------------------------------------------------------------------------- /web/docs/Backend Starters/Decoupled Drupal/local-development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Backend Starters/Decoupled Drupal/local-development.md -------------------------------------------------------------------------------- /web/docs/Backend Starters/Decoupled Drupal/updating-dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Backend Starters/Decoupled Drupal/updating-dependencies.md -------------------------------------------------------------------------------- /web/docs/Backend Starters/Decoupled WordPress/add-ons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Backend Starters/Decoupled WordPress/add-ons.md -------------------------------------------------------------------------------- /web/docs/Backend Starters/Decoupled WordPress/caching-considerations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Backend Starters/Decoupled WordPress/caching-considerations.md -------------------------------------------------------------------------------- /web/docs/Backend Starters/Decoupled WordPress/configuring-build-hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Backend Starters/Decoupled WordPress/configuring-build-hooks.md -------------------------------------------------------------------------------- /web/docs/Backend Starters/Decoupled WordPress/configuring-existing-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Backend Starters/Decoupled WordPress/configuring-existing-project.md -------------------------------------------------------------------------------- /web/docs/Backend Starters/Decoupled WordPress/configuring-preview-site.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Backend Starters/Decoupled WordPress/configuring-preview-site.md -------------------------------------------------------------------------------- /web/docs/Backend Starters/Decoupled WordPress/creating-a-new-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Backend Starters/Decoupled WordPress/creating-a-new-project.md -------------------------------------------------------------------------------- /web/docs/Backend Starters/Decoupled WordPress/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Backend Starters/Decoupled WordPress/index.mdx -------------------------------------------------------------------------------- /web/docs/Backend Starters/Decoupled WordPress/local-development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Backend Starters/Decoupled WordPress/local-development.md -------------------------------------------------------------------------------- /web/docs/Backend Starters/Decoupled WordPress/managing-dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Backend Starters/Decoupled WordPress/managing-dependencies.md -------------------------------------------------------------------------------- /web/docs/Backend Starters/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "position": 2 3 | } 4 | -------------------------------------------------------------------------------- /web/docs/Backend Starters/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Backend Starters/index.mdx -------------------------------------------------------------------------------- /web/docs/Backend Starters/terminus-decoupled-kit-plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Backend Starters/terminus-decoupled-kit-plugin.md -------------------------------------------------------------------------------- /web/docs/Frontend Starters/Gatsby/Gatsby + WordPress/add-ons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Frontend Starters/Gatsby/Gatsby + WordPress/add-ons.md -------------------------------------------------------------------------------- /web/docs/Frontend Starters/Gatsby/Gatsby + WordPress/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Frontend Starters/Gatsby/Gatsby + WordPress/index.mdx -------------------------------------------------------------------------------- /web/docs/Frontend Starters/Gatsby/Gatsby + WordPress/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Frontend Starters/Gatsby/Gatsby + WordPress/intro.md -------------------------------------------------------------------------------- /web/docs/Frontend Starters/Gatsby/Gatsby + WordPress/setting-environment-variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Frontend Starters/Gatsby/Gatsby + WordPress/setting-environment-variables.md -------------------------------------------------------------------------------- /web/docs/Frontend Starters/Gatsby/Gatsby + WordPress/setting-path-prefix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Frontend Starters/Gatsby/Gatsby + WordPress/setting-path-prefix.md -------------------------------------------------------------------------------- /web/docs/Frontend Starters/Gatsby/Gatsby + WordPress/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Frontend Starters/Gatsby/Gatsby + WordPress/troubleshooting.md -------------------------------------------------------------------------------- /web/docs/Frontend Starters/Gatsby/Gatsby + WordPress/your-first-customization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Frontend Starters/Gatsby/Gatsby + WordPress/your-first-customization.md -------------------------------------------------------------------------------- /web/docs/Frontend Starters/Gatsby/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "position": 2 3 | } 4 | -------------------------------------------------------------------------------- /web/docs/Frontend Starters/Gatsby/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Frontend Starters/Gatsby/index.mdx -------------------------------------------------------------------------------- /web/docs/Frontend Starters/Next.js/Next.js + Drupal/add-ons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Frontend Starters/Next.js/Next.js + Drupal/add-ons.md -------------------------------------------------------------------------------- /web/docs/Frontend Starters/Next.js/Next.js + Drupal/implementing-preview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Frontend Starters/Next.js/Next.js + Drupal/implementing-preview.md -------------------------------------------------------------------------------- /web/docs/Frontend Starters/Next.js/Next.js + Drupal/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Frontend Starters/Next.js/Next.js + Drupal/index.mdx -------------------------------------------------------------------------------- /web/docs/Frontend Starters/Next.js/Next.js + Drupal/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Frontend Starters/Next.js/Next.js + Drupal/intro.md -------------------------------------------------------------------------------- /web/docs/Frontend Starters/Next.js/Next.js + Drupal/setting-cache-control-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Frontend Starters/Next.js/Next.js + Drupal/setting-cache-control-header.md -------------------------------------------------------------------------------- /web/docs/Frontend Starters/Next.js/Next.js + Drupal/setting-environment-variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Frontend Starters/Next.js/Next.js + Drupal/setting-environment-variables.md -------------------------------------------------------------------------------- /web/docs/Frontend Starters/Next.js/Next.js + Drupal/styling-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Frontend Starters/Next.js/Next.js + Drupal/styling-configuration.md -------------------------------------------------------------------------------- /web/docs/Frontend Starters/Next.js/Next.js + Drupal/surrogate-key-based-caching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Frontend Starters/Next.js/Next.js + Drupal/surrogate-key-based-caching.md -------------------------------------------------------------------------------- /web/docs/Frontend Starters/Next.js/Next.js + Drupal/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Frontend Starters/Next.js/Next.js + Drupal/troubleshooting.md -------------------------------------------------------------------------------- /web/docs/Frontend Starters/Next.js/Next.js + Drupal/your-first-customization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Frontend Starters/Next.js/Next.js + Drupal/your-first-customization.md -------------------------------------------------------------------------------- /web/docs/Frontend Starters/Next.js/Next.js + WordPress/add-ons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Frontend Starters/Next.js/Next.js + WordPress/add-ons.md -------------------------------------------------------------------------------- /web/docs/Frontend Starters/Next.js/Next.js + WordPress/implementing-preview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Frontend Starters/Next.js/Next.js + WordPress/implementing-preview.md -------------------------------------------------------------------------------- /web/docs/Frontend Starters/Next.js/Next.js + WordPress/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Frontend Starters/Next.js/Next.js + WordPress/index.mdx -------------------------------------------------------------------------------- /web/docs/Frontend Starters/Next.js/Next.js + WordPress/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Frontend Starters/Next.js/Next.js + WordPress/intro.md -------------------------------------------------------------------------------- /web/docs/Frontend Starters/Next.js/Next.js + WordPress/setting-cache-control-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Frontend Starters/Next.js/Next.js + WordPress/setting-cache-control-header.md -------------------------------------------------------------------------------- /web/docs/Frontend Starters/Next.js/Next.js + WordPress/setting-environment-variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Frontend Starters/Next.js/Next.js + WordPress/setting-environment-variables.md -------------------------------------------------------------------------------- /web/docs/Frontend Starters/Next.js/Next.js + WordPress/styling-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Frontend Starters/Next.js/Next.js + WordPress/styling-configuration.md -------------------------------------------------------------------------------- /web/docs/Frontend Starters/Next.js/Next.js + WordPress/surrogate-key-based-caching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Frontend Starters/Next.js/Next.js + WordPress/surrogate-key-based-caching.md -------------------------------------------------------------------------------- /web/docs/Frontend Starters/Next.js/Next.js + WordPress/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Frontend Starters/Next.js/Next.js + WordPress/troubleshooting.md -------------------------------------------------------------------------------- /web/docs/Frontend Starters/Next.js/Next.js + WordPress/your-first-customization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Frontend Starters/Next.js/Next.js + WordPress/your-first-customization.md -------------------------------------------------------------------------------- /web/docs/Frontend Starters/Next.js/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "position": 1 3 | } 4 | -------------------------------------------------------------------------------- /web/docs/Frontend Starters/Next.js/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Frontend Starters/Next.js/index.mdx -------------------------------------------------------------------------------- /web/docs/Frontend Starters/Next.js/setting-base-path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Frontend Starters/Next.js/setting-base-path.md -------------------------------------------------------------------------------- /web/docs/Frontend Starters/Next.js/static-vs-dynamic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Frontend Starters/Next.js/static-vs-dynamic.md -------------------------------------------------------------------------------- /web/docs/Frontend Starters/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "position": 1 3 | } 4 | -------------------------------------------------------------------------------- /web/docs/Frontend Starters/create-pantheon-decoupled-kit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Frontend Starters/create-pantheon-decoupled-kit.md -------------------------------------------------------------------------------- /web/docs/Frontend Starters/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Frontend Starters/index.mdx -------------------------------------------------------------------------------- /web/docs/Packages/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "position": 3 3 | } 4 | -------------------------------------------------------------------------------- /web/docs/Packages/cms-kit/_category_.yml: -------------------------------------------------------------------------------- 1 | label: 'cms-kit' 2 | position: 2 3 | -------------------------------------------------------------------------------- /web/docs/Packages/cms-kit/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Packages/cms-kit/index.md -------------------------------------------------------------------------------- /web/docs/Packages/cms-kit/modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Packages/cms-kit/modules.md -------------------------------------------------------------------------------- /web/docs/Packages/create-pantheon-decoupled-kit/_category_.yml: -------------------------------------------------------------------------------- 1 | label: 'create-pantheon-decoupled-kit' 2 | position: 4 3 | -------------------------------------------------------------------------------- /web/docs/Packages/create-pantheon-decoupled-kit/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Packages/create-pantheon-decoupled-kit/index.md -------------------------------------------------------------------------------- /web/docs/Packages/create-pantheon-decoupled-kit/interfaces/DecoupledKitGenerator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Packages/create-pantheon-decoupled-kit/interfaces/DecoupledKitGenerator.md -------------------------------------------------------------------------------- /web/docs/Packages/create-pantheon-decoupled-kit/interfaces/DefaultAnswers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Packages/create-pantheon-decoupled-kit/interfaces/DefaultAnswers.md -------------------------------------------------------------------------------- /web/docs/Packages/create-pantheon-decoupled-kit/interfaces/GatsbyWPData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Packages/create-pantheon-decoupled-kit/interfaces/GatsbyWPData.md -------------------------------------------------------------------------------- /web/docs/Packages/create-pantheon-decoupled-kit/interfaces/MergedPaths.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Packages/create-pantheon-decoupled-kit/interfaces/MergedPaths.md -------------------------------------------------------------------------------- /web/docs/Packages/create-pantheon-decoupled-kit/interfaces/TemplateData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Packages/create-pantheon-decoupled-kit/interfaces/TemplateData.md -------------------------------------------------------------------------------- /web/docs/Packages/create-pantheon-decoupled-kit/interfaces/TemplateImport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Packages/create-pantheon-decoupled-kit/interfaces/TemplateImport.md -------------------------------------------------------------------------------- /web/docs/Packages/create-pantheon-decoupled-kit/interfaces/_category_.yml: -------------------------------------------------------------------------------- 1 | label: 'Interfaces' 2 | position: 4 3 | -------------------------------------------------------------------------------- /web/docs/Packages/create-pantheon-decoupled-kit/modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Packages/create-pantheon-decoupled-kit/modules.md -------------------------------------------------------------------------------- /web/docs/Packages/decoupled-kit-health-check/_category_.yml: -------------------------------------------------------------------------------- 1 | label: 'decoupled-kit-health-check' 2 | position: 5 3 | -------------------------------------------------------------------------------- /web/docs/Packages/decoupled-kit-health-check/classes/BackendNotSetError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Packages/decoupled-kit-health-check/classes/BackendNotSetError.md -------------------------------------------------------------------------------- /web/docs/Packages/decoupled-kit-health-check/classes/DecoupledMenuError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Packages/decoupled-kit-health-check/classes/DecoupledMenuError.md -------------------------------------------------------------------------------- /web/docs/Packages/decoupled-kit-health-check/classes/DecoupledRouterError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Packages/decoupled-kit-health-check/classes/DecoupledRouterError.md -------------------------------------------------------------------------------- /web/docs/Packages/decoupled-kit-health-check/classes/GatsbyWordPressHealthCheck.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Packages/decoupled-kit-health-check/classes/GatsbyWordPressHealthCheck.md -------------------------------------------------------------------------------- /web/docs/Packages/decoupled-kit-health-check/classes/HealthCheckBase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Packages/decoupled-kit-health-check/classes/HealthCheckBase.md -------------------------------------------------------------------------------- /web/docs/Packages/decoupled-kit-health-check/classes/InvalidCMSEndpointError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Packages/decoupled-kit-health-check/classes/InvalidCMSEndpointError.md -------------------------------------------------------------------------------- /web/docs/Packages/decoupled-kit-health-check/classes/NextDrupalHealthCheck.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Packages/decoupled-kit-health-check/classes/NextDrupalHealthCheck.md -------------------------------------------------------------------------------- /web/docs/Packages/decoupled-kit-health-check/classes/NextWordPressHealthCheck.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Packages/decoupled-kit-health-check/classes/NextWordPressHealthCheck.md -------------------------------------------------------------------------------- /web/docs/Packages/decoupled-kit-health-check/classes/WPGatsbyPluginError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Packages/decoupled-kit-health-check/classes/WPGatsbyPluginError.md -------------------------------------------------------------------------------- /web/docs/Packages/decoupled-kit-health-check/classes/_category_.yml: -------------------------------------------------------------------------------- 1 | label: 'Classes' 2 | position: 3 3 | -------------------------------------------------------------------------------- /web/docs/Packages/decoupled-kit-health-check/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Packages/decoupled-kit-health-check/index.md -------------------------------------------------------------------------------- /web/docs/Packages/decoupled-kit-health-check/modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Packages/decoupled-kit-health-check/modules.md -------------------------------------------------------------------------------- /web/docs/Packages/drupal-kit/_category_.yml: -------------------------------------------------------------------------------- 1 | label: 'drupal-kit' 2 | position: 0 3 | -------------------------------------------------------------------------------- /web/docs/Packages/drupal-kit/classes/DrupalState.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Packages/drupal-kit/classes/DrupalState.md -------------------------------------------------------------------------------- /web/docs/Packages/drupal-kit/classes/_category_.yml: -------------------------------------------------------------------------------- 1 | label: 'Classes' 2 | position: 3 3 | -------------------------------------------------------------------------------- /web/docs/Packages/drupal-kit/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Packages/drupal-kit/index.md -------------------------------------------------------------------------------- /web/docs/Packages/drupal-kit/modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Packages/drupal-kit/modules.md -------------------------------------------------------------------------------- /web/docs/Packages/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Packages/index.mdx -------------------------------------------------------------------------------- /web/docs/Packages/nextjs-kit/_category_.yml: -------------------------------------------------------------------------------- 1 | label: 'nextjs-kit' 2 | position: 3 3 | -------------------------------------------------------------------------------- /web/docs/Packages/nextjs-kit/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Packages/nextjs-kit/index.md -------------------------------------------------------------------------------- /web/docs/Packages/nextjs-kit/interfaces/ContentProps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Packages/nextjs-kit/interfaces/ContentProps.md -------------------------------------------------------------------------------- /web/docs/Packages/nextjs-kit/interfaces/FooterMenuProps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Packages/nextjs-kit/interfaces/FooterMenuProps.md -------------------------------------------------------------------------------- /web/docs/Packages/nextjs-kit/interfaces/HeaderProps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Packages/nextjs-kit/interfaces/HeaderProps.md -------------------------------------------------------------------------------- /web/docs/Packages/nextjs-kit/interfaces/LinkProps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Packages/nextjs-kit/interfaces/LinkProps.md -------------------------------------------------------------------------------- /web/docs/Packages/nextjs-kit/interfaces/PaginationProps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Packages/nextjs-kit/interfaces/PaginationProps.md -------------------------------------------------------------------------------- /web/docs/Packages/nextjs-kit/interfaces/PreviewRibbonProps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Packages/nextjs-kit/interfaces/PreviewRibbonProps.md -------------------------------------------------------------------------------- /web/docs/Packages/nextjs-kit/interfaces/RecipeProps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Packages/nextjs-kit/interfaces/RecipeProps.md -------------------------------------------------------------------------------- /web/docs/Packages/nextjs-kit/interfaces/SortOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Packages/nextjs-kit/interfaces/SortOptions.md -------------------------------------------------------------------------------- /web/docs/Packages/nextjs-kit/interfaces/_category_.yml: -------------------------------------------------------------------------------- 1 | label: 'Interfaces' 2 | position: 4 3 | -------------------------------------------------------------------------------- /web/docs/Packages/nextjs-kit/modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Packages/nextjs-kit/modules.md -------------------------------------------------------------------------------- /web/docs/Packages/react-kit/_category_.yml: -------------------------------------------------------------------------------- 1 | label: 'react-kit' 2 | position: 4 3 | -------------------------------------------------------------------------------- /web/docs/Packages/react-kit/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Packages/react-kit/index.md -------------------------------------------------------------------------------- /web/docs/Packages/react-kit/modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Packages/react-kit/modules.md -------------------------------------------------------------------------------- /web/docs/Packages/react-kit/modules/Button.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Packages/react-kit/modules/Button.md -------------------------------------------------------------------------------- /web/docs/Packages/react-kit/modules/Header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Packages/react-kit/modules/Header.md -------------------------------------------------------------------------------- /web/docs/Packages/react-kit/modules/Row.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Packages/react-kit/modules/Row.md -------------------------------------------------------------------------------- /web/docs/Packages/react-kit/modules/_category_.yml: -------------------------------------------------------------------------------- 1 | label: 'Modules' 2 | position: 1 3 | -------------------------------------------------------------------------------- /web/docs/Packages/wordpress-kit/_category_.yml: -------------------------------------------------------------------------------- 1 | label: 'wordpress-kit' 2 | position: 1 3 | -------------------------------------------------------------------------------- /web/docs/Packages/wordpress-kit/classes/GraphqlClientFactory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Packages/wordpress-kit/classes/GraphqlClientFactory.md -------------------------------------------------------------------------------- /web/docs/Packages/wordpress-kit/classes/_category_.yml: -------------------------------------------------------------------------------- 1 | label: 'Classes' 2 | position: 3 3 | -------------------------------------------------------------------------------- /web/docs/Packages/wordpress-kit/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Packages/wordpress-kit/index.md -------------------------------------------------------------------------------- /web/docs/Packages/wordpress-kit/modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/Packages/wordpress-kit/modules.md -------------------------------------------------------------------------------- /web/docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/contributing.md -------------------------------------------------------------------------------- /web/docs/decoupled-kit-overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/decoupled-kit-overview.mdx -------------------------------------------------------------------------------- /web/docs/pantheon-front-end-sites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docs/pantheon-front-end-sites.md -------------------------------------------------------------------------------- /web/docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/docusaurus.config.js -------------------------------------------------------------------------------- /web/generateTypedocOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/generateTypedocOptions.js -------------------------------------------------------------------------------- /web/lint-staged.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/lint-staged.config.js -------------------------------------------------------------------------------- /web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/package.json -------------------------------------------------------------------------------- /web/sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/sidebars.js -------------------------------------------------------------------------------- /web/src/components/DocCardList_Custom/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/src/components/DocCardList_Custom/index.js -------------------------------------------------------------------------------- /web/src/components/DocCard_Custom/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/src/components/DocCard_Custom/index.js -------------------------------------------------------------------------------- /web/src/components/DocCard_Custom/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/src/components/DocCard_Custom/styles.module.css -------------------------------------------------------------------------------- /web/src/components/OverviewCardList/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/src/components/OverviewCardList/index.js -------------------------------------------------------------------------------- /web/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/src/css/custom.css -------------------------------------------------------------------------------- /web/src/pages/docs/decoupled-kit-overview.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/src/pages/docs/decoupled-kit-overview.jsx -------------------------------------------------------------------------------- /web/src/pages/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/src/pages/index.jsx -------------------------------------------------------------------------------- /web/src/theme/Admonition/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/src/theme/Admonition/index.js -------------------------------------------------------------------------------- /web/src/theme/Admonition/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/src/theme/Admonition/styles.module.css -------------------------------------------------------------------------------- /web/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/static/img/B_Fist-Tagline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/static/img/B_Fist-Tagline.png -------------------------------------------------------------------------------- /web/static/img/B_Fist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/static/img/B_Fist.svg -------------------------------------------------------------------------------- /web/static/img/W_Fist-Tagline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/static/img/W_Fist-Tagline.png -------------------------------------------------------------------------------- /web/static/img/decoupled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/static/img/decoupled.png -------------------------------------------------------------------------------- /web/static/img/drupal-trigger-deployment-manually.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/static/img/drupal-trigger-deployment-manually.gif -------------------------------------------------------------------------------- /web/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/static/img/favicon.ico -------------------------------------------------------------------------------- /web/static/img/pantheon_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/decoupled-kit-js/HEAD/web/static/img/pantheon_logo.png --------------------------------------------------------------------------------