![Maven Central Adds Sigstore Signature Validation](https://cdn.sanity.io/images/cgdhsj6q/production/7da3bc8a946cfb5df15d7fcf49767faedc72b483-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
react-two-thumb-input-range
Advanced tools
Accessible two thumb input range component for React that implements
TwoThumbInputRange
is a React component allowing users to input numeric values within a specific range.
Native HTML input type=range sliders do not support multiple thumbs yet so this component uses two range inputs and position them to look like a multi-thumb slider.
Under the hood TwoThumbInputRange
uses HTML input type=range, but uses CSS Magic to allows users to adjust with 2 buttons
All examples available in Storybook
yarn add react-two-thumb-input-range
# or
npm i react-two-thumb-input-range
import { TwoThumbInputRange } from "react-two-thumb-input-range"
function App() {
const [value, setValue] = useState([1000, 4333])
const onValueSChange = (values) => {
setValue(values)
}
return <TwoThumbInputRange onChange={onValueChange} values={value} min={1000} max={10000} />
}
Attribute | Type | Default | Description |
---|---|---|---|
min | number | 0 | The minimum permitted value. |
max | number | 100 | The maximum permitted value. |
values | [number,number] | The current value of the Input Range. | |
onChange | func | Callback function that is fired when the Input's value changed. onChange: ([number, number]) => void | |
railColor | string | #EDF2F7 | Color of rail element. |
trackColor | string | #1976d2 | Color of track element. |
thumbColor | string | #EDF2F7 | Color of thumb element. |
thumbStyle | React.CSSProperties | 1976d2 | Styles applied to the thumb element |
thumbFocusStyle | React.CSSProperties | `` | Styles applied to the when thumb element focus |
inputStyle | React.CSSProperties | `` | Styles applied to the input element |
labelStyle | React.CSSProperties | `` | Styles applied to the label element |
labelTextStyle | React.CSSProperties | `` | Styles applied to the label textelement |
showLabels | boolean | true | If false, the default labels will not render. |
ariaValueText | string | MDN Web Docs |
FAQs
Accessible two thumb input range component for React that implements
The npm package react-two-thumb-input-range receives a total of 0 weekly downloads. As such, react-two-thumb-input-range popularity was classified as not popular.
We found that react-two-thumb-input-range 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
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.