gitextract_1k24kbfg/ ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── .size-snapshot.json ├── .travis.yml ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── LICENSE ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── babel.config.js ├── docs/ │ ├── README.md │ ├── index.html │ ├── package.json │ ├── src/ │ │ ├── components/ │ │ │ ├── App.js │ │ │ ├── AppContent.js │ │ │ ├── AppFrame.js │ │ │ ├── AppRouter.js │ │ │ ├── ComponentDoc.js │ │ │ ├── Demo.js │ │ │ ├── Github.js │ │ │ ├── MarkdownDocs.js │ │ │ ├── MarkdownElement.js │ │ │ ├── PropsDescription/ │ │ │ │ ├── PropsDescription.js │ │ │ │ ├── index.js │ │ │ │ └── props-description.css │ │ │ ├── Surface.js │ │ │ └── files.js │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── Home.js │ │ │ ├── component-api/ │ │ │ │ ├── animate.md │ │ │ │ └── node-group.md │ │ │ ├── demos/ │ │ │ │ ├── animate/ │ │ │ │ │ ├── Example1.js │ │ │ │ │ ├── Example2.js │ │ │ │ │ ├── animate.md │ │ │ │ │ └── states.json │ │ │ │ ├── animated-bar/ │ │ │ │ │ ├── Example1.js │ │ │ │ │ └── animated-bar.md │ │ │ │ ├── charts/ │ │ │ │ │ ├── DonutChart1.js │ │ │ │ │ ├── DonutChart2.js │ │ │ │ │ └── charts.md │ │ │ │ ├── collapsible-tree/ │ │ │ │ │ ├── Example1.js │ │ │ │ │ └── collapsible-tree.md │ │ │ │ ├── draggable-list/ │ │ │ │ │ ├── Example1.js │ │ │ │ │ └── draggable-list.md │ │ │ │ ├── node-group/ │ │ │ │ │ ├── Example1.js │ │ │ │ │ ├── Example2.js │ │ │ │ │ └── node-group.md │ │ │ │ └── simple/ │ │ │ │ ├── Bars1.js │ │ │ │ ├── Bars2.js │ │ │ │ ├── Circles.js │ │ │ │ ├── Toggle.js │ │ │ │ └── simple.md │ │ │ └── getting-started/ │ │ │ ├── features.md │ │ │ └── installation.md │ │ └── utils/ │ │ ├── helpers.js │ │ └── prism.js │ ├── webpack.dev.config.js │ ├── webpack.dev.server.js │ └── webpack.prd.config.js ├── package.json ├── rollup.config.js ├── scripts/ │ ├── build.js │ ├── copy-files.js │ └── run-travis-tests.sh ├── src/ │ ├── Animate/ │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.spec.js │ ├── NodeGroup/ │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.spec.js │ ├── core/ │ │ ├── mergeKeys.js │ │ ├── mergeKeys.spec.js │ │ └── types.js │ ├── index.d.ts │ ├── index.js │ ├── index.spec.js │ └── utils.js └── test/ ├── README.md ├── mocha.opts └── utils/ ├── createDOM.js ├── createMount.js ├── init.js ├── performance.js └── setup.js