![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
react-slide-rule-fork
Advanced tools
A React component allowing users to select a value along a subjective range and step.
React-slide-rule is a React component shaped like a ruler/slide rule, allowing users to select a value along a subjective range and step.
More demos available here!
npm install react-slide-rule
import React, { useState } from 'react';
import SlideRule from 'react-slide-rule';
const STYLE = {
display: 'flex',
flexDirection: 'column',
alignItems: 'center',
};
export default function () {
const [value, setValue] = useState(150);
return (
<div style={STYLE}>
<p>{value}</p>
<SlideRule value={value} onChange={setValue} />
</div>
);
}
Check out the example codes in the repository, or demos.
A list of all props available here.
Hint: Use suggestion/auto complete to find the props in your code editor.
This project is licensed under the MIT license.
FAQs
A React component allowing users to select a value along a subjective range and step.
The npm package react-slide-rule-fork receives a total of 22 weekly downloads. As such, react-slide-rule-fork popularity was classified as not popular.
We found that react-slide-rule-fork 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.