
Product
Socket Now Supports pylock.toml Files
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.
react-input-slider
Advanced tools
React slider component
yarn add react-input-slider
npm install react-input-slider --save
http://react-input-slider.caitouyun.com
import React from 'react';
import Slider from 'react-input-slider';
function App() {
const [state, setState] = useState({ x: 10, y: 10 });
return (
<div>
({state.x}, {state.y})
<Slider axis="xy" x={state.x} y={state.y} onChange={setState} />
<Slider
axis="x"
x={state.x}
onChange={({ x }) => setState(state => ({ ...state, x }))}
/>
<Slider axis="y" y={state.y} onChange={({ y }) => setState(state => ({ ...state, y }))} />
</div>
);
}
v5 introduces a new styling api powered by emotion
<Slider
styles={{
track: {
backgroundColor: 'blue'
},
active: {
backgroundColor: 'red'
},
thumb: {
width: 50,
height: 50
},
disabled: {
opacity: 0.5
}
}}
/>
Name | Type | Description | Default |
---|---|---|---|
axis | string | type of slider ('x' , 'y' , 'xy' ) | 'x' |
x | number | value of x | 50 |
xmax | number | max of x | 100 |
xmin | number | min of x | 0 |
y | number | value of y | 50 |
ymax | number | max of y | 100 |
ymin | number | min of y | 0 |
xstep | number | step of x | 1 |
ystep | number | step of y | 1 |
onChange | function | handleChange | null |
onDragStart | function | handleDragStart | null |
onDragEnd | function | handleDragEnd | null |
disabled | boolean | input disabled | false |
xreverse | boolean | reverse on x | false |
yreverse | boolean | reverse on y | false |
MIT
[6.0.1]
FAQs
React input slider component
The npm package react-input-slider receives a total of 7,983 weekly downloads. As such, react-input-slider popularity was classified as popular.
We found that react-input-slider demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.
Security News
Research
Socket uncovered two npm packages that register hidden HTTP endpoints to delete all files on command.
Research
Security News
Malicious Ruby gems typosquat Fastlane plugins to steal Telegram bot tokens, messages, and files, exploiting demand after Vietnam’s Telegram ban.