
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
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 96 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.
Research
/Security News
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.