gitextract_sgnj8eqe/ ├── .babelrc ├── .browserslistrc ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ └── main.yml ├── .gitignore ├── .mocharc.json ├── .stylelintrc.yml ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── eslint.config.js ├── examples/ │ └── src/ │ ├── index.html │ ├── js/ │ │ └── index.js │ └── scss/ │ ├── _cayman.scss │ └── style.scss ├── gh-deploy.sh ├── index.d.ts ├── package.json ├── src/ │ ├── d3-funnel/ │ │ ├── Colorizer.js │ │ ├── D3Funnel.js │ │ ├── Formatter.js │ │ ├── Navigator.js │ │ └── Utils.js │ └── index.js ├── test/ │ ├── d3-funnel/ │ │ ├── Colorizer.js │ │ ├── D3Funnel.js │ │ ├── Navigator.js │ │ └── Utils.js │ ├── index.html │ ├── index.js │ └── test.js ├── webpack.config.examples.js ├── webpack.config.js └── webpack.config.test.js