gitextract_540tlwt0/ ├── .all-contributorsrc ├── .circleci/ │ └── config.yml ├── .commitlintrc.json ├── .editorconfig ├── .eslintignore ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── ---bug-report.md │ │ ├── ---feature-request.md │ │ └── ---support-question.md │ ├── PULL_REQUEST_TEMPLATE.md │ └── stale.yml ├── .gitignore ├── .huskyrc ├── .prettierignore ├── .prettierrc ├── .vscode/ │ ├── launch.json │ └── settings.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── MIGRATION_GUIDE.md ├── README.md ├── core/ │ ├── docz/ │ │ ├── .babelrc │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── .lintstagedrc │ │ ├── CHANGELOG.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── bin/ │ │ │ └── index.js │ │ ├── package.json │ │ ├── rollup.config.js │ │ ├── src/ │ │ │ ├── components/ │ │ │ │ ├── Link.tsx │ │ │ │ ├── Playground.tsx │ │ │ │ └── Props.tsx │ │ │ ├── hooks/ │ │ │ │ ├── index.ts │ │ │ │ ├── useComponentProps.ts │ │ │ │ ├── useComponents.tsx │ │ │ │ ├── useConfig.ts │ │ │ │ ├── useCurrentDoc.tsx │ │ │ │ ├── useDataServer.ts │ │ │ │ ├── useDocs.ts │ │ │ │ ├── useMenus.ts │ │ │ │ ├── usePrevious.ts │ │ │ │ └── useWindowSize.ts │ │ │ ├── index.ts │ │ │ ├── state.tsx │ │ │ ├── theme.tsx │ │ │ ├── types.d.ts │ │ │ └── utils/ │ │ │ ├── createState.tsx │ │ │ ├── helpers.ts │ │ │ └── humanize-prop.ts │ │ └── tsconfig.json │ ├── docz-core/ │ │ ├── .babelrc │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── .lintstagedrc │ │ ├── CHANGELOG.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── __fixtures__/ │ │ │ ├── Alert/ │ │ │ │ ├── Alert.mdx │ │ │ │ └── Alert.tsx │ │ │ ├── Label.jsx │ │ │ └── Label.tsx │ │ ├── __tests__/ │ │ │ ├── config.test.ts │ │ │ ├── entries.test.ts │ │ │ ├── props.test.ts │ │ │ └── states.test.ts │ │ ├── bin/ │ │ │ └── index.js │ │ ├── nodemon.json │ │ ├── package.json │ │ ├── rollup.config.js │ │ ├── src/ │ │ │ ├── bundler/ │ │ │ │ ├── build.ts │ │ │ │ ├── index.ts │ │ │ │ ├── machine/ │ │ │ │ │ ├── actions.ts │ │ │ │ │ ├── context.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── services/ │ │ │ │ │ ├── create-resources.ts │ │ │ │ │ ├── ensure-dirs.ts │ │ │ │ │ ├── exec-dev-command.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── install-deps.ts │ │ │ │ │ └── watch-files.ts │ │ │ │ └── server.ts │ │ │ ├── cli.ts │ │ │ ├── commands/ │ │ │ │ ├── build.ts │ │ │ │ ├── dev.ts │ │ │ │ ├── index.ts │ │ │ │ ├── init.ts │ │ │ │ └── serve.ts │ │ │ ├── config/ │ │ │ │ ├── argv.ts │ │ │ │ ├── docz.ts │ │ │ │ ├── env.ts │ │ │ │ └── paths.ts │ │ │ ├── index.ts │ │ │ ├── lib/ │ │ │ │ ├── Bundler.ts │ │ │ │ ├── DataServer.ts │ │ │ │ ├── Entries.ts │ │ │ │ ├── Entry.ts │ │ │ │ └── Plugin.ts │ │ │ ├── states/ │ │ │ │ ├── config.ts │ │ │ │ ├── entries.ts │ │ │ │ ├── index.ts │ │ │ │ └── props.ts │ │ │ ├── test-utils/ │ │ │ │ ├── data-bank.ts │ │ │ │ └── index.ts │ │ │ ├── types.d.ts │ │ │ └── utils/ │ │ │ ├── docgen/ │ │ │ │ ├── docz-docgen-resolver.ts │ │ │ │ ├── externalProptypesHandler.ts │ │ │ │ ├── index.ts │ │ │ │ ├── javascript.ts │ │ │ │ └── typescript.ts │ │ │ ├── open-browser.ts │ │ │ ├── openChrome.applescript │ │ │ ├── p-reduce.ts │ │ │ ├── repo-info.ts │ │ │ ├── spawn.ts │ │ │ └── template.ts │ │ ├── templates/ │ │ │ ├── 404.tpl.js │ │ │ ├── gatsby-config.tpl.js │ │ │ ├── gatsby-node.tpl.js │ │ │ ├── imports.tpl.js │ │ │ ├── index.tpl.html │ │ │ ├── index.tpl.js │ │ │ └── root.tpl.js │ │ └── tsconfig.json │ ├── docz-rollup/ │ │ ├── .eslintrc.js │ │ ├── .lintstagedrc │ │ ├── CHANGELOG.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── package.json │ │ └── src/ │ │ ├── index.js │ │ └── plugins/ │ │ ├── clean.js │ │ ├── copy.js │ │ └── size.js │ ├── docz-utils/ │ │ ├── .babelrc │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── .lintstagedrc │ │ ├── CHANGELOG.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── __tests__/ │ │ │ └── jsx.test.ts │ │ ├── package.json │ │ ├── rollup.config.js │ │ ├── src/ │ │ │ ├── ast.ts │ │ │ ├── exports.ts │ │ │ ├── format.ts │ │ │ ├── fs.ts │ │ │ ├── imports.ts │ │ │ ├── index.ts │ │ │ ├── jsx.ts │ │ │ ├── mdast.ts │ │ │ └── types.d.ts │ │ └── tsconfig.json │ ├── gatsby-theme-docz/ │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── .lintstagedrc │ │ ├── CHANGELOG.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── gatsby-browser.js │ │ ├── gatsby-config.js │ │ ├── gatsby-node.js │ │ ├── gatsby-ssr.js │ │ ├── index.js │ │ ├── lib/ │ │ │ ├── createPagesStatefully.js │ │ │ ├── onCreateBabelConfig.js │ │ │ ├── onCreateDevServer.js │ │ │ ├── onCreateWebpackConfig.js │ │ │ ├── onPostBuild.js │ │ │ ├── onPreBuild.js │ │ │ ├── sourceNodes.js │ │ │ └── utils/ │ │ │ └── parseConfig.js │ │ ├── package.json │ │ └── src/ │ │ ├── base/ │ │ │ ├── Layout.js │ │ │ └── Seo.js │ │ ├── components/ │ │ │ ├── Code/ │ │ │ │ ├── index.js │ │ │ │ └── styles.js │ │ │ ├── Header/ │ │ │ │ ├── index.js │ │ │ │ └── styles.js │ │ │ ├── Headings/ │ │ │ │ └── index.js │ │ │ ├── Icons/ │ │ │ │ └── index.js │ │ │ ├── Layout/ │ │ │ │ ├── index.js │ │ │ │ └── styles.js │ │ │ ├── Logo/ │ │ │ │ ├── index.js │ │ │ │ └── styles.js │ │ │ ├── MainContainer/ │ │ │ │ ├── index.js │ │ │ │ └── styles.js │ │ │ ├── NavGroup/ │ │ │ │ ├── index.js │ │ │ │ └── styles.js │ │ │ ├── NavLink/ │ │ │ │ ├── index.js │ │ │ │ └── styles.js │ │ │ ├── NavSearch/ │ │ │ │ ├── index.js │ │ │ │ └── styles.js │ │ │ ├── Playground/ │ │ │ │ ├── Wrapper.js │ │ │ │ ├── index.js │ │ │ │ └── styles.js │ │ │ ├── Pre/ │ │ │ │ ├── index.js │ │ │ │ └── styles.js │ │ │ ├── Props/ │ │ │ │ ├── index.js │ │ │ │ └── styles.js │ │ │ ├── Sidebar/ │ │ │ │ ├── index.js │ │ │ │ └── styles.js │ │ │ └── index.js │ │ ├── hooks/ │ │ │ └── useDbQuery.js │ │ ├── index.css │ │ ├── index.js │ │ ├── theme/ │ │ │ ├── breakpoints.js │ │ │ ├── colors.js │ │ │ ├── global.js │ │ │ ├── index.js │ │ │ ├── modes.js │ │ │ ├── prism/ │ │ │ │ ├── dark.js │ │ │ │ ├── index.js │ │ │ │ └── light.js │ │ │ └── styles.js │ │ ├── utils/ │ │ │ ├── mixins.js │ │ │ └── theme.js │ │ └── wrapper.js │ ├── rehype-docz/ │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── .lintstagedrc │ │ ├── CHANGELOG.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── jest.config.js │ │ ├── package.json │ │ ├── rollup.config.js │ │ ├── src/ │ │ │ ├── __snapshots__/ │ │ │ │ └── index.test.ts.snap │ │ │ ├── index.test.ts │ │ │ ├── index.ts │ │ │ └── types.d.ts │ │ └── tsconfig.json │ └── remark-docz/ │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .lintstagedrc │ ├── CHANGELOG.md │ ├── LICENSE.md │ ├── README.md │ ├── jest.config.js │ ├── package.json │ ├── rollup.config.js │ ├── src/ │ │ ├── __snapshots__/ │ │ │ └── index.test.ts.snap │ │ ├── index.test.ts │ │ ├── index.ts │ │ └── types.d.ts │ └── tsconfig.json ├── dev-env/ │ └── basic/ │ ├── .eslintrc │ ├── .gitignore │ ├── CHANGELOG.md │ ├── README.md │ ├── doczrc.js │ ├── package.json │ └── src/ │ ├── components/ │ │ ├── Alert.jsx │ │ └── Alert.mdx │ └── index.mdx ├── examples/ │ ├── .eslintrc │ ├── basic/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package.json │ │ └── src/ │ │ ├── components/ │ │ │ ├── Alert.jsx │ │ │ └── Alert.mdx │ │ └── index.mdx │ ├── create-react-app/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package.json │ │ ├── public/ │ │ │ ├── index.html │ │ │ ├── manifest.json │ │ │ └── robots.txt │ │ └── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── App.test.js │ │ ├── components/ │ │ │ ├── Alert.jsx │ │ │ └── Alert.mdx │ │ ├── index.css │ │ ├── index.js │ │ ├── index.mdx │ │ └── serviceWorker.js │ ├── create-react-app-ts/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── doczrc.js │ │ ├── package.json │ │ ├── public/ │ │ │ ├── index.html │ │ │ ├── manifest.json │ │ │ └── robots.txt │ │ ├── src/ │ │ │ ├── App.css │ │ │ ├── App.test.tsx │ │ │ ├── App.tsx │ │ │ ├── components/ │ │ │ │ ├── Alert.jsx │ │ │ │ └── Alert.mdx │ │ │ ├── index.css │ │ │ ├── index.mdx │ │ │ ├── index.tsx │ │ │ ├── react-app-env.d.ts │ │ │ ├── serviceWorker.ts │ │ │ └── setupTests.ts │ │ └── tsconfig.json │ ├── custom-base-path/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── doczrc.js │ │ ├── package.json │ │ └── src/ │ │ ├── components/ │ │ │ ├── Alert.jsx │ │ │ └── Alert.mdx │ │ └── index.mdx │ ├── custom-config-location/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package.json │ │ └── src/ │ │ ├── components/ │ │ │ ├── Alert.jsx │ │ │ └── Alert.mdx │ │ ├── doczrc.js │ │ └── index.mdx │ ├── flow/ │ │ ├── .babelrc │ │ ├── .flowconfig │ │ ├── .gitignore │ │ ├── README.md │ │ ├── gatsby-node.js │ │ ├── package.json │ │ └── src/ │ │ ├── components/ │ │ │ ├── Alert.jsx │ │ │ ├── Alert.mdx │ │ │ ├── Button.jsx │ │ │ └── Button.mdx │ │ └── index.mdx │ ├── gatsby/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── doczrc.js │ │ ├── gatsby-config.js │ │ ├── package.json │ │ └── src/ │ │ ├── components/ │ │ │ ├── Alert.jsx │ │ │ ├── Alert.mdx │ │ │ ├── Button.jsx │ │ │ └── Button.mdx │ │ └── pages/ │ │ ├── 404.js │ │ └── index.mdx │ ├── images/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── doczrc.js │ │ ├── package.json │ │ └── src/ │ │ ├── index.jsx │ │ └── index.mdx │ ├── less/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── doczrc.js │ │ ├── gatsby-config.js │ │ ├── package.json │ │ └── src/ │ │ ├── components/ │ │ │ ├── Alert.jsx │ │ │ ├── Alert.less │ │ │ └── Alert.mdx │ │ └── index.mdx │ ├── logo-in-sidebar/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package.json │ │ └── src/ │ │ ├── components/ │ │ │ ├── Alert.jsx │ │ │ └── Alert.mdx │ │ ├── gatsby-theme-docz/ │ │ │ └── components/ │ │ │ ├── Header/ │ │ │ │ └── index.js │ │ │ └── Sidebar/ │ │ │ └── index.js │ │ └── index.mdx │ ├── material-ui/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── doczrc.js │ │ ├── home.mdx │ │ └── package.json │ ├── monorepo/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── lerna.json │ │ ├── package.json │ │ └── packages/ │ │ └── basic/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package.json │ │ └── src/ │ │ ├── components/ │ │ │ ├── Alert.jsx │ │ │ └── Alert.mdx │ │ └── index.mdx │ ├── monorepo-package/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── lerna.json │ │ ├── package.json │ │ └── packages/ │ │ └── basic/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── doczrc.js │ │ ├── package.json │ │ └── src/ │ │ ├── components/ │ │ │ ├── Alert.jsx │ │ │ └── Alert.mdx │ │ └── index.mdx │ ├── monorepo-separate-docs/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── lerna.json │ │ ├── package.json │ │ └── packages/ │ │ ├── alert/ │ │ │ ├── README.md │ │ │ ├── example/ │ │ │ │ ├── index.html │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── alert-ts/ │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── example/ │ │ │ │ ├── index.html │ │ │ │ └── index.js │ │ │ ├── package.json │ │ │ ├── src/ │ │ │ │ └── index.tsx │ │ │ └── tsconfig.json │ │ └── docs/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── doczrc.js │ │ ├── package.json │ │ ├── src/ │ │ │ ├── components/ │ │ │ │ └── Alert.mdx │ │ │ └── index.mdx │ │ └── tsconfig.json │ ├── now/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── doczrc.js │ │ ├── now.json │ │ ├── package.json │ │ └── src/ │ │ ├── components/ │ │ │ ├── Alert.jsx │ │ │ ├── Alert.mdx │ │ │ ├── Button.jsx │ │ │ └── Button.mdx │ │ └── index.mdx │ ├── react-native/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── doczrc.js │ │ ├── gatsby-node.js │ │ ├── package.json │ │ └── src/ │ │ ├── components/ │ │ │ ├── Alert.jsx │ │ │ └── Alert.mdx │ │ └── index.mdx │ ├── react-router/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package.json │ │ └── src/ │ │ ├── components/ │ │ │ ├── Alert.jsx │ │ │ └── Alert.mdx │ │ ├── gatsby-theme-docz/ │ │ │ └── wrapper.js │ │ └── index.mdx │ ├── sass/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── doczrc.js │ │ ├── gatsby-config.js │ │ ├── package.json │ │ └── src/ │ │ ├── components/ │ │ │ ├── Alert.jsx │ │ │ ├── Alert.mdx │ │ │ └── Alert.scss │ │ └── index.mdx │ ├── shadowed-playground/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── doczrc.js │ │ ├── package.json │ │ └── src/ │ │ ├── components/ │ │ │ ├── Alert.jsx │ │ │ └── Alert.mdx │ │ ├── gatsby-theme-docz/ │ │ │ └── components/ │ │ │ └── Playground/ │ │ │ └── index.js │ │ └── index.mdx │ ├── styled-components/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package.json │ │ └── src/ │ │ ├── components/ │ │ │ ├── Alert.jsx │ │ │ ├── Alert.mdx │ │ │ ├── Button.jsx │ │ │ └── Button.mdx │ │ └── index.mdx │ ├── stylus/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── doczrc.js │ │ ├── gatsby-config.js │ │ ├── package.json │ │ └── src/ │ │ ├── components/ │ │ │ ├── Alert.jsx │ │ │ ├── Alert.mdx │ │ │ └── Alert.styl │ │ └── index.mdx │ ├── typescript/ │ │ ├── README.md │ │ ├── doczrc.js │ │ ├── package.json │ │ ├── src/ │ │ │ ├── components/ │ │ │ │ ├── Alert.mdx │ │ │ │ ├── Alert.tsx │ │ │ │ ├── Button.mdx │ │ │ │ └── Button.tsx │ │ │ └── index.mdx │ │ └── tsconfig.json │ ├── webpack-alias/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── doczrc.js │ │ ├── gatsby-node.js │ │ ├── package.json │ │ └── src/ │ │ ├── components/ │ │ │ ├── Alert.jsx │ │ │ └── Alert.mdx │ │ └── index.mdx │ ├── with-algolia-search/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── gatsby-config.js │ │ ├── package.json │ │ └── src/ │ │ ├── docs/ │ │ │ ├── customizing/ │ │ │ │ ├── add-favicon-and-metadata.mdx │ │ │ │ ├── component-shadowing.mdx │ │ │ │ ├── creating-your-themes.mdx │ │ │ │ ├── customizing-webpack-config.mdx │ │ │ │ ├── gatsby-theme.mdx │ │ │ │ └── powered-by-gatsby.mdx │ │ │ ├── general/ │ │ │ │ ├── built-in-components.mdx │ │ │ │ ├── deploying-your-docs.mdx │ │ │ │ ├── document-settings.mdx │ │ │ │ ├── getting-started.mdx │ │ │ │ ├── introduction.mdx │ │ │ │ ├── usage-in-monorepo.mdx │ │ │ │ ├── usage-with-css-preprocessors.mdx │ │ │ │ ├── usage-with-typescript.mdx │ │ │ │ └── writing-mdx.mdx │ │ │ └── references/ │ │ │ ├── components-api.mdx │ │ │ ├── creating-plugins.mdx │ │ │ ├── mdx-plugins.mdx │ │ │ ├── migration-guide.mdx │ │ │ └── project-configuration.mdx │ │ └── gatsby-theme-docz/ │ │ ├── components/ │ │ │ └── Header/ │ │ │ ├── Search/ │ │ │ │ ├── Input.js │ │ │ │ ├── hitComps.js │ │ │ │ ├── index.js │ │ │ │ └── primitives.js │ │ │ └── index.js │ │ └── wrapper.js │ ├── with-custom-404-page/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package.json │ │ └── src/ │ │ ├── components/ │ │ │ ├── Alert.jsx │ │ │ └── Alert.mdx │ │ ├── index.mdx │ │ └── pages/ │ │ └── 404.js │ ├── with-custom-docz-theme/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── doczrc.js │ │ ├── gatsby-config.js │ │ ├── gatsby-theme-docz-pink/ │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── src/ │ │ │ └── gatsby-theme-docz/ │ │ │ └── wrapper.js │ │ ├── package.json │ │ └── src/ │ │ ├── components/ │ │ │ ├── Alert.jsx │ │ │ └── Alert.mdx │ │ └── index.mdx │ ├── with-custom-links/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package.json │ │ └── src/ │ │ ├── gatsby-theme-docz/ │ │ │ └── components/ │ │ │ └── index.js │ │ └── index.mdx │ ├── with-decorators/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── doczrc.js │ │ ├── gatsby-node.js │ │ ├── jsconfig.json │ │ ├── package.json │ │ └── src/ │ │ ├── components/ │ │ │ ├── Alert.jsx │ │ │ └── Alert.mdx │ │ ├── index.js │ │ └── index.mdx │ ├── with-env-variables/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── doczrc.js │ │ ├── gatsby-config.js │ │ ├── gatsby-node.js │ │ ├── package.json │ │ └── src/ │ │ ├── components/ │ │ │ ├── Alert.jsx │ │ │ └── Alert.mdx │ │ └── index.mdx │ ├── with-favicon-and-metadata/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package.json │ │ └── src/ │ │ ├── components/ │ │ │ ├── Alert.jsx │ │ │ └── Alert.mdx │ │ ├── gatsby-theme-docz/ │ │ │ └── wrapper.js │ │ └── index.mdx │ ├── with-gatsby-remark-vscode/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── doczrc.js │ │ ├── package.json │ │ └── src/ │ │ ├── components/ │ │ │ ├── Alert.jsx │ │ │ └── Alert.mdx │ │ ├── gatsby-theme-docz/ │ │ │ └── components/ │ │ │ └── index.js │ │ └── index.mdx │ ├── with-styled-components-and-scoping/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── doczrc.js │ │ ├── package.json │ │ └── src/ │ │ ├── components/ │ │ │ ├── Alert.jsx │ │ │ ├── Alert.mdx │ │ │ ├── Button.jsx │ │ │ └── Button.mdx │ │ ├── gatsby-theme-docz/ │ │ │ └── components/ │ │ │ └── Playground/ │ │ │ └── IframeWrapper.js │ │ └── index.mdx │ ├── with-themes-dir/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── doczrc.js │ │ ├── package.json │ │ ├── src/ │ │ │ ├── components/ │ │ │ │ ├── Alert.jsx │ │ │ │ └── Alert.mdx │ │ │ └── index.mdx │ │ └── theme/ │ │ └── gatsby-theme-docz/ │ │ └── components/ │ │ └── Logo/ │ │ ├── index.js │ │ └── styles.js │ ├── with-typescript-decorators/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── doczrc.js │ │ ├── gatsby-node.js │ │ ├── package.json │ │ ├── src/ │ │ │ ├── components/ │ │ │ │ ├── Alert.mdx │ │ │ │ ├── Alert.tsx │ │ │ │ ├── Button.mdx │ │ │ │ └── Button.tsx │ │ │ ├── index.mdx │ │ │ └── index.ts │ │ └── tsconfig.json │ └── wrapped-playground/ │ ├── .gitignore │ ├── README.md │ ├── doczrc.js │ ├── package.json │ └── src/ │ ├── Playground.jsx │ ├── components/ │ │ ├── Alert.jsx │ │ └── Alert.mdx │ └── index.mdx ├── lerna.json ├── other-packages/ │ ├── babel-plugin-export-metadata/ │ │ ├── .eslintrc.js │ │ ├── .lintstagedrc │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── jest.config.js │ │ ├── package.json │ │ ├── src/ │ │ │ └── index.js │ │ └── tests/ │ │ ├── __snapshots__/ │ │ │ └── index.test.js.snap │ │ ├── fixtures/ │ │ │ ├── assets/ │ │ │ │ └── a.js │ │ │ ├── export-default/ │ │ │ │ ├── with-arr-expression.js │ │ │ │ ├── with-call-expression.js │ │ │ │ ├── with-class-declaration.js │ │ │ │ ├── with-func-declaration.js │ │ │ │ ├── with-identifier.js │ │ │ │ └── with-obj-expression.js │ │ │ ├── export-named/ │ │ │ │ └── index.js │ │ │ └── re-export/ │ │ │ ├── re-export-default.js │ │ │ ├── re-export-multi.js │ │ │ ├── re-export-rename1.js │ │ │ ├── re-export-rename2.js │ │ │ ├── re-export-rename3.js │ │ │ └── re-export.js │ │ └── index.test.js │ ├── e2e-tests/ │ │ ├── .testcaferc.json │ │ ├── CHANGELOG.md │ │ ├── __tests__/ │ │ │ └── test.ts │ │ ├── helpers.js │ │ ├── index.js │ │ ├── package.json │ │ ├── testing-library.js │ │ └── verdaccio.yaml │ ├── eslint-config-docz-js/ │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── eslint-config-docz-ts/ │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── load-cfg/ │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── .lintstagedrc │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── package.json │ │ ├── rollup.config.js │ │ ├── src/ │ │ │ ├── index.ts │ │ │ └── types.d.ts │ │ └── tsconfig.json │ └── react-docgen-actual-name-handler/ │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .lintstagedrc │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── rollup.config.js │ ├── src/ │ │ ├── index.ts │ │ └── types.d.ts │ └── tsconfig.json ├── package.json └── tsconfig.json