New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

ngx-numaric-keypad

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ngx-numaric-keypad

This is a two in one features keypad, you can use this as calculator also by just enabling that feature.

latest
Source
npmnpm
Version
1.0.6
Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

ngx-number-keypad

This is a two in one features keypad, you can use this as calculator also by just enabling that feature.

Angular9+

Get started

npm i ngx-number-keypad --save

Techniques

import in your app.module.ts file

...
import { KeypadModule } from 'ngx-numaric-keypad';
...

@NgModule({
  declarations: [
    ...
  ],
  imports: [
    ...
    KeypadModule,
    ...
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

then put below component in your view, and if you want to use calculator then make that calc = true otherwise you can remove that param or make it calc = false.


  <ngx-numaric-keypad 
    [calc]="true"
    (getVal)="yourFunctionName($event)"
  >
  </ngx-numaric-keypad>

Now create function in your component.ts file

  yourFunctionName(numberOutput: number) {
    console.log(numberOutput) // you will have your keypad output here
  }

Keypad Image

License

MIT © Sumit Patel

Keywords

Angular 9

FAQs

Package last updated on 17 Jun 2020

Did you know?

Socket

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.

Install

Related posts