libey-ng-component-library 0.0.19 → 0.0.21
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/bundles/libey-ng-component-library.umd.js +130 -41
- package/bundles/libey-ng-component-library.umd.js.map +1 -1
- package/esm2015/lib/signature/libey-ng-signature/libey-ng-signature.component.js +109 -40
- package/esm2015/utils/SigWeb/SigWeb.js +21 -2
- package/fesm2015/libey-ng-component-library.js +128 -40
- package/fesm2015/libey-ng-component-library.js.map +1 -1
- package/lib/signature/libey-ng-signature/libey-ng-signature.component.d.ts +6 -2
- package/package.json +2 -2
- package/utils/SigWeb/SigWeb.d.ts +1 -0
|
@@ -19,6 +19,10 @@ export declare class LibeyNgSignatureComponent implements AfterViewInit, OnDestr
|
|
|
19
19
|
widthRender: number;
|
|
20
20
|
heightRender: number;
|
|
21
21
|
signaturePadOptions: Object;
|
|
22
|
+
FileValidated: boolean;
|
|
23
|
+
NotDriver: boolean;
|
|
24
|
+
UploadFile: string;
|
|
25
|
+
File: any;
|
|
22
26
|
constructor();
|
|
23
27
|
ngAfterViewInit(): void;
|
|
24
28
|
ngOnDestroy(): void;
|
|
@@ -28,8 +32,8 @@ export declare class LibeyNgSignatureComponent implements AfterViewInit, OnDestr
|
|
|
28
32
|
onSign(): void;
|
|
29
33
|
onClear(): void;
|
|
30
34
|
onDone(): void;
|
|
31
|
-
|
|
32
|
-
|
|
35
|
+
fileEvent(event: any): void;
|
|
36
|
+
resizeImage(image: File, newWidth: number, newHeight: number): Promise<string>;
|
|
33
37
|
static ɵfac: i0.ɵɵFactoryDeclaration<LibeyNgSignatureComponent, never>;
|
|
34
38
|
static ɵcmp: i0.ɵɵComponentDeclaration<LibeyNgSignatureComponent, "lib-libey-ng-signature", never, { "DeviceType": "DeviceType"; }, { "OutputSignature": "OutputSignature"; }, never, never>;
|
|
35
39
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "libey-ng-component-library",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.21",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^12.2.0",
|
|
6
6
|
"@angular/core": "^12.2.0",
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
"fesm2015": "fesm2015/libey-ng-component-library.js",
|
|
21
21
|
"typings": "libey-ng-component-library.d.ts",
|
|
22
22
|
"sideEffects": false
|
|
23
|
-
}
|
|
23
|
+
}
|
package/utils/SigWeb/SigWeb.d.ts
CHANGED
|
@@ -22,6 +22,7 @@ export declare class SigWebTablet {
|
|
|
22
22
|
static SigWebSyncSetStreamProperty(prop: string, strm: any): string;
|
|
23
23
|
static SigWebSetImageStreamProperty(prop: string, strm: any): string;
|
|
24
24
|
static SigWebSetImageBlobProperty(prop: any, strm: any): string;
|
|
25
|
+
static SigWebGetVersion(prop: any): string;
|
|
25
26
|
static SigWebGetProperty(prop: any): string;
|
|
26
27
|
static GetSigImageB64(callback: any): void;
|
|
27
28
|
static SigWebWaitForPenDown(callback: any): void;
|