├── .babelrc ├── .editorconfig ├── .eslintrc ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── docs ├── app.js ├── app.less ├── components │ ├── Codeblock.js │ ├── Demo.js │ ├── Examples.js │ ├── Features.js │ ├── Install.js │ ├── Usage.js │ ├── footer.js │ ├── header.js │ └── sliders │ │ ├── float.js │ │ ├── horizontal.js │ │ ├── index.js │ │ ├── labels.js │ │ ├── negative.js │ │ └── orientation.js ├── favicon.ico ├── images │ ├── bg.png │ ├── code.svg │ ├── play.svg │ ├── rangeslider.png │ ├── rangeslider_dark.png │ └── slider.png ├── index.ejs ├── index.html ├── index.js ├── server.js └── webpack.config.js ├── package.json ├── src ├── Rangeslider.js ├── __tests__ │ ├── Rangeslider.spec.js │ ├── Sanity.spec.js │ └── __snapshots__ │ │ └── Rangeslider.spec.js.snap ├── index.js ├── rangeslider.less └── utils.js ├── webpack.config.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisandy/react-rangeslider/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisandy/react-rangeslider/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisandy/react-rangeslider/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisandy/react-rangeslider/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisandy/react-rangeslider/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisandy/react-rangeslider/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisandy/react-rangeslider/HEAD/README.md -------------------------------------------------------------------------------- /docs/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisandy/react-rangeslider/HEAD/docs/app.js -------------------------------------------------------------------------------- /docs/app.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisandy/react-rangeslider/HEAD/docs/app.less -------------------------------------------------------------------------------- /docs/components/Codeblock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisandy/react-rangeslider/HEAD/docs/components/Codeblock.js -------------------------------------------------------------------------------- /docs/components/Demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisandy/react-rangeslider/HEAD/docs/components/Demo.js -------------------------------------------------------------------------------- /docs/components/Examples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisandy/react-rangeslider/HEAD/docs/components/Examples.js -------------------------------------------------------------------------------- /docs/components/Features.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisandy/react-rangeslider/HEAD/docs/components/Features.js -------------------------------------------------------------------------------- /docs/components/Install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisandy/react-rangeslider/HEAD/docs/components/Install.js -------------------------------------------------------------------------------- /docs/components/Usage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisandy/react-rangeslider/HEAD/docs/components/Usage.js -------------------------------------------------------------------------------- /docs/components/footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisandy/react-rangeslider/HEAD/docs/components/footer.js -------------------------------------------------------------------------------- /docs/components/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisandy/react-rangeslider/HEAD/docs/components/header.js -------------------------------------------------------------------------------- /docs/components/sliders/float.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisandy/react-rangeslider/HEAD/docs/components/sliders/float.js -------------------------------------------------------------------------------- /docs/components/sliders/horizontal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisandy/react-rangeslider/HEAD/docs/components/sliders/horizontal.js -------------------------------------------------------------------------------- /docs/components/sliders/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisandy/react-rangeslider/HEAD/docs/components/sliders/index.js -------------------------------------------------------------------------------- /docs/components/sliders/labels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisandy/react-rangeslider/HEAD/docs/components/sliders/labels.js -------------------------------------------------------------------------------- /docs/components/sliders/negative.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisandy/react-rangeslider/HEAD/docs/components/sliders/negative.js -------------------------------------------------------------------------------- /docs/components/sliders/orientation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisandy/react-rangeslider/HEAD/docs/components/sliders/orientation.js -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisandy/react-rangeslider/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisandy/react-rangeslider/HEAD/docs/images/bg.png -------------------------------------------------------------------------------- /docs/images/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisandy/react-rangeslider/HEAD/docs/images/code.svg -------------------------------------------------------------------------------- /docs/images/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisandy/react-rangeslider/HEAD/docs/images/play.svg -------------------------------------------------------------------------------- /docs/images/rangeslider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisandy/react-rangeslider/HEAD/docs/images/rangeslider.png -------------------------------------------------------------------------------- /docs/images/rangeslider_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisandy/react-rangeslider/HEAD/docs/images/rangeslider_dark.png -------------------------------------------------------------------------------- /docs/images/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisandy/react-rangeslider/HEAD/docs/images/slider.png -------------------------------------------------------------------------------- /docs/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisandy/react-rangeslider/HEAD/docs/index.ejs -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisandy/react-rangeslider/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisandy/react-rangeslider/HEAD/docs/index.js -------------------------------------------------------------------------------- /docs/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisandy/react-rangeslider/HEAD/docs/server.js -------------------------------------------------------------------------------- /docs/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisandy/react-rangeslider/HEAD/docs/webpack.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisandy/react-rangeslider/HEAD/package.json -------------------------------------------------------------------------------- /src/Rangeslider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisandy/react-rangeslider/HEAD/src/Rangeslider.js -------------------------------------------------------------------------------- /src/__tests__/Rangeslider.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisandy/react-rangeslider/HEAD/src/__tests__/Rangeslider.spec.js -------------------------------------------------------------------------------- /src/__tests__/Sanity.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisandy/react-rangeslider/HEAD/src/__tests__/Sanity.spec.js -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/Rangeslider.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisandy/react-rangeslider/HEAD/src/__tests__/__snapshots__/Rangeslider.spec.js.snap -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisandy/react-rangeslider/HEAD/src/index.js -------------------------------------------------------------------------------- /src/rangeslider.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisandy/react-rangeslider/HEAD/src/rangeslider.less -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisandy/react-rangeslider/HEAD/src/utils.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisandy/react-rangeslider/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisandy/react-rangeslider/HEAD/yarn.lock --------------------------------------------------------------------------------