ngx-sign-pad
TypeScript icon, indicating that this package has built-in type declarations

0.0.1-alpha.4 • Public • Published

ngx-sign-pad

ngx-sign-pad is an Angular wrapper for szimek/signature_pad.

Usage

1. Install

npm install ngx-sign-pad --save

2. Import SignaturePadModule

 
import { SignPadModule } from 'ngx-sign-pad';
 
...
 
@NgModule({
  declarations: [ ],
  imports: [ SignPadModule ],
  providers: [ ],
  bootstrap: [ AppComponent ]
})

3. Use ngx-sign-pad

import { Component, ViewChild } from '@angular/core';
import { EImageType, SignPadComponent } from 'ngx-sign-pad';
 
@Component({
  template: '<ngx-sign-pad [(signature)]="signature" [type]="imageTypes.SVG"></ngx-sign-pad>'
})
 
export class AppComponent{
 
  imageTypes = EImageType;
  signature = null;
  @ViewChild(SignPadComponent) signaturePad: SignPadComponent;
  
  constructor() {
  }
 
  clear() {
    this.signaturePad.clear();
  }
}

Package Sidebar

Install

npm i ngx-sign-pad

Weekly Downloads

6

Version

0.0.1-alpha.4

License

MIT

Unpacked Size

112 kB

Total Files

33

Last publish

Collaborators

  • valnar684