
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
ngx-number-spin
Advanced tools
This is an angular number spinner component.
To install this library (component), run:
$ npm i ngx-number-spin --save
add NumberPickerModule to AppModule
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
// Import this library
import { NgxNumberSpinModule } from 'ngx-number-spin';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
// Specify this library as an import
NgxNumberSpinModule,
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Once this library is imported, you can use this component in your Angular application:
export class AppComponent {
change(value: number): void {
console.log(value);
}
}
<ngx-number-spin
[value]="4"
(change)="change($event)"
[min]="1">
</ngx-number-spin>
<ngx-number-spin
[value]="4"
(change)="change($event)"
[max]="9">
</ngx-number-spin>
<ngx-number-spin
[value]="4"
(change)="change($event)"
[min]="1"
[max]="9">
</ngx-number-spin>
<ngx-number-spin
(change)="change($event)"
[step]="5">
</ngx-number-spin>
import { FormBuilder, FormGroup, FormControl } from '@angular/forms';
export class AppComponent {
form: FormGroup;
constructor(private fb: FormBuilder) {
this.form = this.fb.group({
price: 11
});
}
submit() {
alert(JSON.stringify(this.form.value));
}
}
<form [formGroup]="form" (submit)="submit()">
<ngx-number-spin formControlName="price" [min]="1" [max]="9"></ngx-number-spin>
<button type="submit">submit</button>
</form>
| Attribute | Type | Required | Default | Description |
|---|---|---|---|---|
| value | [input] number | No | 0 | initial value for the spinner |
| min | [input] number | No | null | limit the minimal number |
| max | [input] number | No | null | limit the maximum number |
| spin | [input] number | No | 1 | increment or decrement by current number |
| (change) | (output) number | no | - | emits the value of the current number, every time the user clicks the - or + button |

FAQs
An Angular number spin component
The npm package ngx-number-spin receives a total of 3 weekly downloads. As such, ngx-number-spin popularity was classified as not popular.
We found that ngx-number-spin 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.