@viablelogic/ngx-signature-pad 5.0.0 → 5.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@ THIS IS A FORKED PROJECT FROM THE ORIGINAL REPO
|
|
|
5
5
|
Angular component for [szimek/signature_pad](https://www.npmjs.com/package/signature_pad).
|
|
6
6
|
|
|
7
7
|
## Install
|
|
8
|
-
`npm install ngx-signature-pad
|
|
8
|
+
`npm install @viablelogic/ngx-signature-pad`
|
|
9
9
|
|
|
10
10
|
## Reference Implementation
|
|
11
11
|
|
|
@@ -25,7 +25,7 @@ The above options are provided to avoid accessing the DOM directly from your com
|
|
|
25
25
|
|
|
26
26
|
// import into app module
|
|
27
27
|
|
|
28
|
-
import { SignaturePadModule } from 'ngx-signature-pad';
|
|
28
|
+
import { SignaturePadModule } from '@viablelogic/ngx-signature-pad';
|
|
29
29
|
|
|
30
30
|
...
|
|
31
31
|
|
|
@@ -39,7 +39,7 @@ import { SignaturePadModule } from 'ngx-signature-pad';
|
|
|
39
39
|
// then import for use in a component
|
|
40
40
|
|
|
41
41
|
import { Component, ViewChild } from '@angular/core';
|
|
42
|
-
import { SignaturePad } from 'ngx-signature-pad/signature-pad';
|
|
42
|
+
import { SignaturePad } from '@viablelogic/ngx-signature-pad/signature-pad';
|
|
43
43
|
|
|
44
44
|
@Component({
|
|
45
45
|
template: '<signature-pad [options]="signaturePadOptions" (onBeginEvent)="drawStart()" (onEndEvent)="drawComplete()"></signature-pad>'
|