
Security News
Open Source Maintainers Demand Ability to Block Copilot-Generated Issues and PRs
Open source maintainers are urging GitHub to let them block Copilot from submitting AI-generated issues and pull requests to their repositories.
react-semantic-ui-range
Advanced tools
Supply Chain Security
Vulnerability
Quality
Maintenance
License
This is a React Component range slider for Semantic UI
It is developed based on https://github.com/tyleryasaka/semantic-ui-range but has additional functionalities
The demo for the project can be found here: https://iozbeyli.github.io/react-semantic-ui-range/
The original library was using jQuery so I changed the parts that use jQuery to make it more compatible with React.
npm i react-semantic-ui-range
Sample Usage
import React, { useState } from "react";
import { Slider } from "react-semantic-ui-range";
import "semantic-ui-css/semantic.min.css";
import { Label, Grid, Input } from "semantic-ui-react";
const App = props => {
const [value, setValue] = useState(5);
const settings = {
start: 2,
min: 0,
max: 10,
step: 1,
onChange: value => {
setValue(value);
}
};
const handleValueChange = e => {
let value = parseInt(e.target.value);
if (!value) {
value = 0;
}
setValue(e.target.value);
};
return (
<Grid>
<Grid.Column width={16}>
<Slider value={value} color="red" settings={settings} />
</Grid.Column>
<Grid.Column width={16}>
<Input placeholder="Enter Value" onChange={handleValueChange} />
<Label color="red">{value}</Label>
</Grid.Column>
</Grid>
);
};
export default App;
FAQs
A Slider React Component for Semantic-UI
The npm package react-semantic-ui-range receives a total of 1,634 weekly downloads. As such, react-semantic-ui-range popularity was classified as popular.
We found that react-semantic-ui-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
Open source maintainers are urging GitHub to let them block Copilot from submitting AI-generated issues and pull requests to their repositories.
Research
Security News
Malicious Koishi plugin silently exfiltrates messages with hex strings to a hardcoded QQ account, exposing secrets in chatbots across platforms.
Research
Security News
Malicious PyPI checkers validate stolen emails against TikTok and Instagram APIs, enabling targeted account attacks and dark web credential sales.