├── .github └── workflows │ └── nodejs.yml ├── .gitignore ├── CHANGELOG.md ├── README.md ├── __tests__ ├── __snapshots__ │ └── axis.test.tsx.snap └── axis.test.tsx ├── docs ├── .nojekyll ├── README.md └── enums │ └── orient.md ├── package.json ├── src └── index.tsx └── tsconfig.json /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmcw/d3-axis-for-react/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | yarn.lock 3 | dist 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmcw/d3-axis-for-react/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmcw/d3-axis-for-react/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/__snapshots__/axis.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmcw/d3-axis-for-react/HEAD/__tests__/__snapshots__/axis.test.tsx.snap -------------------------------------------------------------------------------- /__tests__/axis.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmcw/d3-axis-for-react/HEAD/__tests__/axis.test.tsx -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmcw/d3-axis-for-react/HEAD/docs/.nojekyll -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmcw/d3-axis-for-react/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/enums/orient.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmcw/d3-axis-for-react/HEAD/docs/enums/orient.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmcw/d3-axis-for-react/HEAD/package.json -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmcw/d3-axis-for-react/HEAD/src/index.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmcw/d3-axis-for-react/HEAD/tsconfig.json --------------------------------------------------------------------------------