slider icon indicating copy to clipboard operation
slider copied to clipboard

React Slider

Results 194 slider issues
Sort by recently updated
recently updated
newest added

This is a performance improvement that stops Marks and Steps components from re-rendering while dragging handles/track.

This solves https://github.com/react-component/slider/issues/599 A range can be changed by clicking the markers.

Currently, `util.calculateNextValue()` incorrectly returns mark object instead of value when steps are disabled (by passing `null` to `step` prop) and marks are used The consequence of this is keyboard navigation...

Currently if passing these event handler to a Handle component in a custom handle, they will be swallowed by Handle's internal event handlers. This PR simply propagates the events to...

Hey! Noticed that `prefixCls` is a prop that is exposed, but not documented. So I added it to the props chart in the readMe. Here's an example code snippet of...

Hi, This PR moves `react` and `react-dom` to `peerDependencies` instead of `devDependencies `. Solves issue: [#589](https://github.com/react-component/slider/issues/589) @afc163 , let me know if any further changes are required.

Fixes #308 The `onStart` trigger is moved from `onTouchStart` to `onTouchMove` because we need to act on drag direction. The goal being: If the __first touch move__ is in the...

It appears there is currently no way to color the minimum track in a range. To solve this, I created an additional zero-index track which uses the existing `trackStyle` property....

In [the range slider ](http://react-component.github.io/slider/examples/range.html), the currentHandle parameter is not determined correctly when using the keyboard to move the handles. As a result, when using range-slider by keyboard (e.g. **arrow...