Skip to content

Releases: davidchin/react-input-range

v0.9.0

14 Jun 06:01
Compare
Choose a tag to compare
  • 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

19 Apr 12:51
Compare
Choose a tag to compare
  • 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

16 Feb 21:03
Compare
Choose a tag to compare
  • Added missing !default to some SASS variables. (@emolr #15)

v0.6.0

23 Dec 08:05
Compare
Choose a tag to compare
  • Added onChangeComplete callback. It gets called once after completing a change. (#10)

v0.5.1

23 Dec 08:03
Compare
Choose a tag to compare
  • Fixed the tab order of sliders

v0.5.0

29 Nov 22:57
Compare
Choose a tag to compare
  • 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

22 Nov 00:46
Compare
Choose a tag to compare
  • 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

01 Oct 04:13
Compare
Choose a tag to compare

Bug fixes

  • Fixed issue with slider not draggable on touch devices

v0.2.2

01 Oct 04:16
Compare
Choose a tag to compare

Bug fixes

  • Shim React dependency so the component can work inside a browser without Browserify