0.0.4 • Published 6 years ago

react-proslider v0.0.4

Weekly downloads
6
License
ISC
Repository
github
Last release
6 years ago

react-proslider

A slider component in react

Installation

npm install react-proslider

Usage

import React from 'react';
import ReactDOM from 'react-dom';

import Slider from 'react-proslider';

import 'react-proslider/dist/slider';
    
ReactDOM.render(
  <Slider
    thumbClass="slider__thumb--small"
  />, document.querySelector('#container')
);

Properties

NameTypeDefaultDescription
sliderConfigobject{'value': 20, 'max': 50, 'min': 1, 'thumbSize': 15 }contains the value of the range
onSlideFunctionreturns the current value of the slider
onChangeSliderFunctiononChangeSlider will be triggered on onMouseUp
thumbClassstringGive class slider__thumb--small, slider__thumb--grey & slider__thumb--large to give appropriate styles to range thumb. You can pass your custom class and specify your styles
rangeClassstringGive class slider--grey & slider--large for appropriate styles. You can pass your custom class and specify your styles
showLeftBarbooleanfalseset true to show grey bar on the left side of thumb. Incase of false the entire range will have same styles