React Input Range Versions Save

React component for inputting numeric values within a range (range slider)

v0.9.0

7 years ago
  • 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

8 years ago
  • 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

8 years ago

v0.6.0

8 years ago

v0.5.1

8 years ago
  • Fixed the tab order of sliders

v0.5.0

8 years ago
  • 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

8 years ago
  • 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.2

8 years ago

Bug fixes

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

v0.2.3

8 years ago

Bug fixes

  • Fixed issue with slider not draggable on touch devices