
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
npn-slider
Advanced tools
NpnSlider is a reusable range slider component using Angular v6.0. It can be used either as a multi range or a single range slider. By default, it is a multi range slider.
<npn-slider [min]="2006" [max]="2020" (onChange)="onSliderChange($event)"></npn-slider>
Attributes | Description |
---|---|
@Input() min: number | The minimum value of slider |
@Input() max: number | The maximum value of slider |
@Input() step: number | The value at which slider value should change |
@Input() showStepIndicator: boolean | Whether the step indicator should display or not |
@Input() minSelected: number | The selected value for slider's left handler |
@Input() maxSelected: number | The selected value for slider's right handler |
@Input() disabled: string | To disable the slider. Valid values: 'true' or 'disabled' or empty attribute |
@Input() multiRange: boolean | To switch between Mutli range and Single range mode. Slider is multi range by default |
@Input() hide-tooltip: boolean | To hide the tooltip that shows on hover of slider handler. Default value: 'false' |
@Input() hide-values: boolean | To hide values displayed at bottom of slider. Default value: 'false' |
@Output() onChange: EventEmitter<number[]>() | The event will be fired on change of selected range of values. Returns: Selected range of values as an array[], On Single range mode, a number array with single value will be returned |
a) Import 'NpnSliderModule' in your app module
import { NpnSliderModule } from "npn-slider";
@NgModule({
imports:[
..
NpnSliderModule
..
]
})
b) Add 'npn-slider' in your component html
<npn-slider [min]="1000" [max]="5000" (onChange)="onSliderChange($event)" [step]="500" [showStepIndicator]="true"></npn-slider>
c) Add a method in your component class to listen for onChange event from slider
/*Method to listen for onChange event from slider*/
onSliderChange(selectedValues: number[]) {
this._currentValues = selectedValues;
}
d) You done. Run your app. cheers! View Demo
FAQs
A multi range slider component using Angular v6.0
The npm package npn-slider receives a total of 252 weekly downloads. As such, npn-slider popularity was classified as not popular.
We found that npn-slider 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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.