├── .eslintrc ├── .gitignore ├── HISTORY.md ├── LICENSE ├── README.md ├── examples ├── index.html └── index.tsx ├── index.js ├── package.json ├── src ├── carousel.tsx ├── decorators.tsx └── index.tsx ├── tests ├── helpers │ ├── phantomjs-shims.tsx │ └── raf-polyfill.tsx ├── index.js └── specs │ └── carousel.spec.tsx ├── tsconfig.json └── typings ├── custom.d.ts └── index.d.ts /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/nuka-carousel/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/nuka-carousel/HEAD/.gitignore -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/nuka-carousel/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/nuka-carousel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/nuka-carousel/HEAD/README.md -------------------------------------------------------------------------------- /examples/index.html: -------------------------------------------------------------------------------- 1 | placeholder -------------------------------------------------------------------------------- /examples/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/nuka-carousel/HEAD/examples/index.tsx -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/nuka-carousel/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/nuka-carousel/HEAD/package.json -------------------------------------------------------------------------------- /src/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/nuka-carousel/HEAD/src/carousel.tsx -------------------------------------------------------------------------------- /src/decorators.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/nuka-carousel/HEAD/src/decorators.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from './carousel'; -------------------------------------------------------------------------------- /tests/helpers/phantomjs-shims.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/nuka-carousel/HEAD/tests/helpers/phantomjs-shims.tsx -------------------------------------------------------------------------------- /tests/helpers/raf-polyfill.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/nuka-carousel/HEAD/tests/helpers/raf-polyfill.tsx -------------------------------------------------------------------------------- /tests/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/nuka-carousel/HEAD/tests/index.js -------------------------------------------------------------------------------- /tests/specs/carousel.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/nuka-carousel/HEAD/tests/specs/carousel.spec.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/nuka-carousel/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typings/custom.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /typings/index.d.ts: -------------------------------------------------------------------------------- 1 | /// --------------------------------------------------------------------------------