├── .babelrc ├── .github └── FUNDING.yml ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── demo.gif ├── package.json ├── src ├── AutoRotatingCarousel.js ├── AutoRotatingCarousel.md ├── Slide.js ├── Slide.md ├── SwipableCarouselView.js ├── index.js └── util.js ├── styleguide.config.js └── styleguide └── Wrapper.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamWertarbyte/material-auto-rotating-carousel/HEAD/.babelrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [leMaik,saschb2b] 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea 3 | build 4 | lib -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamWertarbyte/material-auto-rotating-carousel/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamWertarbyte/material-auto-rotating-carousel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamWertarbyte/material-auto-rotating-carousel/HEAD/README.md -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamWertarbyte/material-auto-rotating-carousel/HEAD/demo.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamWertarbyte/material-auto-rotating-carousel/HEAD/package.json -------------------------------------------------------------------------------- /src/AutoRotatingCarousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamWertarbyte/material-auto-rotating-carousel/HEAD/src/AutoRotatingCarousel.js -------------------------------------------------------------------------------- /src/AutoRotatingCarousel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamWertarbyte/material-auto-rotating-carousel/HEAD/src/AutoRotatingCarousel.md -------------------------------------------------------------------------------- /src/Slide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamWertarbyte/material-auto-rotating-carousel/HEAD/src/Slide.js -------------------------------------------------------------------------------- /src/Slide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamWertarbyte/material-auto-rotating-carousel/HEAD/src/Slide.md -------------------------------------------------------------------------------- /src/SwipableCarouselView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamWertarbyte/material-auto-rotating-carousel/HEAD/src/SwipableCarouselView.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamWertarbyte/material-auto-rotating-carousel/HEAD/src/index.js -------------------------------------------------------------------------------- /src/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamWertarbyte/material-auto-rotating-carousel/HEAD/src/util.js -------------------------------------------------------------------------------- /styleguide.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamWertarbyte/material-auto-rotating-carousel/HEAD/styleguide.config.js -------------------------------------------------------------------------------- /styleguide/Wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamWertarbyte/material-auto-rotating-carousel/HEAD/styleguide/Wrapper.js --------------------------------------------------------------------------------