├── .babelrc ├── .editorconfig ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── README.md ├── dist ├── index.es.js ├── index.es.js.map ├── index.js └── index.js.map ├── gatsby-browser.js ├── gatsby-config.js ├── gatsby-node.js ├── gatsby-plugin-transitions.code-workspace ├── gatsby-ssr.js ├── package.json ├── rollup.config.js ├── src ├── layouts │ ├── header.js │ ├── index.js │ ├── index.scss │ └── reset.scss ├── pages │ ├── custom.js │ ├── index.js │ ├── page-2.js │ └── page-3.js └── transitions │ ├── hooks │ └── usePrev.js │ ├── index.js │ ├── index.scss │ ├── keep.js │ ├── link.js │ ├── provider.js │ ├── reducer.js │ ├── utils │ └── validateSpring.js │ ├── view.js │ └── views.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasFaust/gatsby-plugin-transitions/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasFaust/gatsby-plugin-transitions/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasFaust/gatsby-plugin-transitions/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasFaust/gatsby-plugin-transitions/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasFaust/gatsby-plugin-transitions/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasFaust/gatsby-plugin-transitions/HEAD/README.md -------------------------------------------------------------------------------- /dist/index.es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasFaust/gatsby-plugin-transitions/HEAD/dist/index.es.js -------------------------------------------------------------------------------- /dist/index.es.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasFaust/gatsby-plugin-transitions/HEAD/dist/index.es.js.map -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasFaust/gatsby-plugin-transitions/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasFaust/gatsby-plugin-transitions/HEAD/dist/index.js.map -------------------------------------------------------------------------------- /gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasFaust/gatsby-plugin-transitions/HEAD/gatsby-browser.js -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasFaust/gatsby-plugin-transitions/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasFaust/gatsby-plugin-transitions/HEAD/gatsby-node.js -------------------------------------------------------------------------------- /gatsby-plugin-transitions.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasFaust/gatsby-plugin-transitions/HEAD/gatsby-plugin-transitions.code-workspace -------------------------------------------------------------------------------- /gatsby-ssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasFaust/gatsby-plugin-transitions/HEAD/gatsby-ssr.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasFaust/gatsby-plugin-transitions/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasFaust/gatsby-plugin-transitions/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/layouts/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasFaust/gatsby-plugin-transitions/HEAD/src/layouts/header.js -------------------------------------------------------------------------------- /src/layouts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasFaust/gatsby-plugin-transitions/HEAD/src/layouts/index.js -------------------------------------------------------------------------------- /src/layouts/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasFaust/gatsby-plugin-transitions/HEAD/src/layouts/index.scss -------------------------------------------------------------------------------- /src/layouts/reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasFaust/gatsby-plugin-transitions/HEAD/src/layouts/reset.scss -------------------------------------------------------------------------------- /src/pages/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasFaust/gatsby-plugin-transitions/HEAD/src/pages/custom.js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasFaust/gatsby-plugin-transitions/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/pages/page-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasFaust/gatsby-plugin-transitions/HEAD/src/pages/page-2.js -------------------------------------------------------------------------------- /src/pages/page-3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasFaust/gatsby-plugin-transitions/HEAD/src/pages/page-3.js -------------------------------------------------------------------------------- /src/transitions/hooks/usePrev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasFaust/gatsby-plugin-transitions/HEAD/src/transitions/hooks/usePrev.js -------------------------------------------------------------------------------- /src/transitions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasFaust/gatsby-plugin-transitions/HEAD/src/transitions/index.js -------------------------------------------------------------------------------- /src/transitions/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasFaust/gatsby-plugin-transitions/HEAD/src/transitions/index.scss -------------------------------------------------------------------------------- /src/transitions/keep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasFaust/gatsby-plugin-transitions/HEAD/src/transitions/keep.js -------------------------------------------------------------------------------- /src/transitions/link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasFaust/gatsby-plugin-transitions/HEAD/src/transitions/link.js -------------------------------------------------------------------------------- /src/transitions/provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasFaust/gatsby-plugin-transitions/HEAD/src/transitions/provider.js -------------------------------------------------------------------------------- /src/transitions/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasFaust/gatsby-plugin-transitions/HEAD/src/transitions/reducer.js -------------------------------------------------------------------------------- /src/transitions/utils/validateSpring.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasFaust/gatsby-plugin-transitions/HEAD/src/transitions/utils/validateSpring.js -------------------------------------------------------------------------------- /src/transitions/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasFaust/gatsby-plugin-transitions/HEAD/src/transitions/view.js -------------------------------------------------------------------------------- /src/transitions/views.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasFaust/gatsby-plugin-transitions/HEAD/src/transitions/views.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasFaust/gatsby-plugin-transitions/HEAD/yarn.lock --------------------------------------------------------------------------------