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.
rm-range-slider
Advanced tools
A highly optimized and fully customizable pure angular component for value range selection.
A highly optimized and fully customizable pure angular component for value range selection.
The component is not re-rendered while user moves the thumb. Even if there is a label, only the label component is re-rendered when values are changed.
RangeSlider uses angular Native's Animated library to transform thumbs / label / selected rail. These optimizations help to achieve as much native look & feel as possible using only the JS layer.
Install rm-range-slider with npm or yarn
npm: npm install --save rm-range-slider
yarn: yarn add rm-range-slider
AND
npm: ng add @angular/material
yarn: yarn add @angular/material
Dual Range Slider uses angular hooks, so this component doesn't work with angular below below version 2.
<rm-range-slider
min="0"
max="100"
startValue="0"
endValue="10"
(onValueChanged)="onValueChanged($event)"
></rm-range-slider>
RmRangeSliderComponent
to imports array of component decorater metaonValueChanged
in component like thisimport {RmRangeSliderModule} from "rm-range-slider";
@Component({
imports: [RmRangeSliderComponent],
})
public onValueChanged(currentAmount: MINMAX): void {
console.log(currentAmount);
}
Slider | Ng |
---|---|
0.0.1 | 14.x |
1.0.0 | 15.x |
2.0.0 | 16.x |
3.0.0 | 17.x |
4.0.0 | 18.x |
Name | Description | Type | Default Value |
---|---|---|---|
min | Minimum value of slider | number | Initially min value will be set 0 if not provided |
max | Maximum value of slider | number | Initially max value will be set 100 if not provided |
startValue | deafult value for first slider | number | Initially startValue value will be set 0 if not provided |
endValue | deafult value for second slider | number | Initially endValue value will be set 10 if not provided |
onValueChanged | On change function onValueChanged will send both value min and max to compoent | MINMAX | It do not return any value until changes |
Are you interested in this library but lacks features? Write to the author, he can do it for you.
rangeColor
- Set color for slider line between both min and max slider's thumnail.
sliderColor
- Set color for slider line.
sliderColorRight
- Set color for right side slider line
FAQs
A highly optimized and fully customizable pure angular component for value range selection.
The npm package rm-range-slider receives a total of 3 weekly downloads. As such, rm-range-slider popularity was classified as not popular.
We found that rm-range-slider demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.