├── .babelrc ├── .builderrc ├── .editorconfig ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE.txt ├── README.md ├── demo ├── app.jsx ├── demo.jsx └── index.html ├── dist ├── victory-animation.js ├── victory-animation.js.map ├── victory-animation.min.js └── victory-animation.min.js.map ├── docs ├── README.md ├── app.jsx ├── docs.jsx ├── ecology.md ├── index.html ├── static-index.jsx └── static-render-entry.jsx ├── package.json ├── src ├── components │ └── victory-animation.jsx ├── index.js └── util.js └── test └── client ├── main.js ├── spec ├── components │ └── victory-animation.spec.jsx └── util.spec.js └── test.html /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-animation/HEAD/.babelrc -------------------------------------------------------------------------------- /.builderrc: -------------------------------------------------------------------------------- 1 | --- 2 | archetypes: 3 | - builder-victory-component 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-animation/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-animation/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-animation/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-animation/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-animation/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-animation/HEAD/README.md -------------------------------------------------------------------------------- /demo/app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-animation/HEAD/demo/app.jsx -------------------------------------------------------------------------------- /demo/demo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-animation/HEAD/demo/demo.jsx -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-animation/HEAD/demo/index.html -------------------------------------------------------------------------------- /dist/victory-animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-animation/HEAD/dist/victory-animation.js -------------------------------------------------------------------------------- /dist/victory-animation.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-animation/HEAD/dist/victory-animation.js.map -------------------------------------------------------------------------------- /dist/victory-animation.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-animation/HEAD/dist/victory-animation.min.js -------------------------------------------------------------------------------- /dist/victory-animation.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-animation/HEAD/dist/victory-animation.min.js.map -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-animation/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-animation/HEAD/docs/app.jsx -------------------------------------------------------------------------------- /docs/docs.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-animation/HEAD/docs/docs.jsx -------------------------------------------------------------------------------- /docs/ecology.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-animation/HEAD/docs/ecology.md -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-animation/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/static-index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-animation/HEAD/docs/static-index.jsx -------------------------------------------------------------------------------- /docs/static-render-entry.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-animation/HEAD/docs/static-render-entry.jsx -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-animation/HEAD/package.json -------------------------------------------------------------------------------- /src/components/victory-animation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-animation/HEAD/src/components/victory-animation.jsx -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-animation/HEAD/src/index.js -------------------------------------------------------------------------------- /src/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-animation/HEAD/src/util.js -------------------------------------------------------------------------------- /test/client/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-animation/HEAD/test/client/main.js -------------------------------------------------------------------------------- /test/client/spec/components/victory-animation.spec.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-animation/HEAD/test/client/spec/components/victory-animation.spec.jsx -------------------------------------------------------------------------------- /test/client/spec/util.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-animation/HEAD/test/client/spec/util.spec.js -------------------------------------------------------------------------------- /test/client/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/victory-animation/HEAD/test/client/test.html --------------------------------------------------------------------------------