
Security News
Open Source CAI Framework Handles Pen Testing Tasks up to 3,600× Faster Than Humans
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
react-custom-slider
Advanced tools
a very easy to use customizable slider for React
npm install --save react-custom-slider
import React from 'react'
import Slider from 'react-custom-slider';
const App = () => {
const [ value, setValue ] = React.useState(0);
return(
<div>
<Slider
value={value}
markersSize={20}
trackLength={250}
markers={11}
onChange={(value) => setValue(value)}
valueRenderer={(value) => `${value}%`}
/>
</div>
)
};
export default App;
Prop | Type | Description |
---|---|---|
value | number (required) | continuously updated value |
defaultValue | number (required) | initial value |
showValue | true, false, 'active' | displays current value on a label |
valueLabelColor | string | |
valueLabelActiveColor | string | |
valueLabelPadding | number | |
valueLabelStyle | object | user custom style for value label |
min | number | min slider value |
max | number | max slider value |
stepSize | number | interval between 2 steps (default is 1) |
disabled | boolean | |
disabledColor | string | color used when the slider is disabled |
onChange | function (callback) | called every time value changes ( value as argument) |
onRelease | function (callback) | called once slider is released ( value as argument) |
valueRenderer | function (callback) | used by value label (to display a unit such as %) |
trackLength | number | track's height or width (depending on the orientation) |
trackColor | string | |
trackThickness | number | |
trackShape | 'squared', 'rounded' | |
trackStyle | object | user custom styling for track |
fillTrack | boolean | |
fillColor | string | |
handlerSize | number | sets handler diameter (both width and height) |
handlerWidth | number | |
handlerHeight | number | |
handlerShape | 'squared', 'rounded' | |
handlerColor | string | |
handlerBorderColor | ||
handlerActiveColor | string | handler color when slider is being used |
handlerStyle | object | user custom styling for handler |
fontSize | number | used by markers |
fontColor | string | used by markers |
markers | number | numbers of markers to display |
markersSize | number | markers container's height or width (depending on the orientation) |
showMarkers | true, false, 'hidden', 'active', 'inactive' | 'active' displays the markers only when slider is beeing used, 'inactive' the opposite |
grabCursor | boolean | when true shows a grabbing cursor as slider is beeing used |
vertical | boolean | slider's layout horizontal or vertical |
invertMarkers | boolean | switch slider and markers positions |
style | object | user custom style for slider's root container |
MIT © jonisapp
FAQs
a very easy to use customizable slider for React
The npm package react-custom-slider receives a total of 52 weekly downloads. As such, react-custom-slider popularity was classified as not popular.
We found that react-custom-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.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.