Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@kassellabs/react-semantic-ui-range
Advanced tools
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
This is a fork because it seems the original repo it not being maintained anymore: react-semantic-ui-range
The old demo and docs for the project can be found here: https://iozbeyli.github.io/react-semantic-ui-range/
We need a new docs page, it seems the original author didn't include the docs source code, only the final build.
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
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 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}
start={2}
min={0}
max={10}
step={1}
onChange={setValue}
/>
</Grid.Column>
<Grid.Column width={16}>
<Input placeholder="Enter Value" onChange={handleValueChange} />
<Label color="red">{value}</Label>
</Grid.Column>
</Grid>
);
};
export default App;
Slider.propTypes = {
color: PropTypes.string,
disabled: PropTypes.bool,
discrete: PropTypes.bool,
inverted: PropTypes.bool,
max: PropTypes.number,
min: PropTypes.number,
multiple: PropTypes.bool,
onChange: PropTypes.func,
onChangeEnd: PropTypes.func,
onChangeStart: PropTypes.func,
start: PropTypes.oneOfType([
PropTypes.number,
PropTypes.arrayOf(PropTypes.number)
]),
step: PropTypes.number,
style: PropTypes.object,
tooltip: PropTypes.func,
tooltipPosition: PropTypes.string,
value: PropTypes.oneOfType([
PropTypes.number,
PropTypes.arrayOf(PropTypes.number)
]),
};
FAQs
A Slider React Component for Semantic-UI
We found that @kassellabs/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 2 open source maintainers 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.