├── .editorconfig ├── .gitattributes ├── .gitignore ├── CarouselComponent.coffee ├── LICENSE ├── README.md ├── example.coffee ├── example.framer ├── app.coffee └── modules │ └── CarouselComponent.coffee ├── module.json ├── package.json └── thumb.png /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/CarouselComponent/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/CarouselComponent/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /CarouselComponent.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/CarouselComponent/HEAD/CarouselComponent.coffee -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/CarouselComponent/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/CarouselComponent/HEAD/README.md -------------------------------------------------------------------------------- /example.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/CarouselComponent/HEAD/example.coffee -------------------------------------------------------------------------------- /example.framer/app.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/CarouselComponent/HEAD/example.framer/app.coffee -------------------------------------------------------------------------------- /example.framer/modules/CarouselComponent.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/CarouselComponent/HEAD/example.framer/modules/CarouselComponent.coffee -------------------------------------------------------------------------------- /module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/CarouselComponent/HEAD/module.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/CarouselComponent/HEAD/package.json -------------------------------------------------------------------------------- /thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/CarouselComponent/HEAD/thumb.png --------------------------------------------------------------------------------