Releases: davidchin/react-input-range
Releases · davidchin/react-input-range
v0.9.0
- Added
formatLabel
prop which allows you to format label text.
- Added
labelPrefix
and labelSuffix
props. If specified, they get prepended / appended to the labels
v0.7.0
- Add support for changing the slider value using up and down @esseb
- Prevent text selection during drag @esseb
- Add support for ariaControls @esseb
- Fix ariaLabelledby not working @esseb
v0.6.2
- Added missing
!default
to some SASS variables. (@emolr #15)
v0.6.0
- Added
onChangeComplete
callback. It gets called once after completing a change. (#10)
v0.5.1
- Fixed the tab order of sliders
v0.5.0
- Upgraded to depend on React ^0.14.0.
- Refactored the component by removing its internal state and making it more functional. Instead of managing its own state, it only renders
value
prop. Any changes received by the component will be passed to its delegate through onChange
callback, in which a state update can occur.
- Removed
values
and defaultValues
props. value
and defaultValue
can now accept a number or an object of numbers.
v0.4.0
- Added the ability to set a default value without setting a current value.
- Added the ability to disable the component.
- Fixed
onChange
callback so that it doesn't fire during the initial update.
v0.2.3
Bug fixes
- Fixed issue with slider not draggable on touch devices
v0.2.2
Bug fixes
- Shim React dependency so the component can work inside a browser without Browserify