@fad-producto-portal/ng-fad-signature-fea 1.0.0-alpha.9 → 1.0.0
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 +51 -13
- package/USAGE_GUIDE.md +716 -0
- package/assets/images/fad-signature-fea/signature-summary/rejected.svg +19 -19
- package/assets/images/fad-signature-fea/signature-summary/send.svg +10 -10
- package/esm2022/lib/components/document-approval-list/document-approval-list.component.mjs +13 -13
- package/esm2022/lib/components/generic-error-fea/generic-error-fea.component.mjs +8 -4
- package/esm2022/lib/components/pdf-viewer-fea/pdf-viewer-fea.component.mjs +8 -5
- package/esm2022/lib/components/signature-summary/signature-summary.component.mjs +8 -4
- package/esm2022/lib/components/upload-e-signature/upload-e-signature.component.mjs +14 -12
- package/esm2022/lib/components/validate-rfc/validate-rfc.component.mjs +14 -19
- package/esm2022/lib/components/validate-signature/validate-signature.component.mjs +11 -14
- package/esm2022/lib/constants/errors/validate-rfc/validate-rfc-error-code.mjs +2 -1
- package/esm2022/lib/constants/errors/validate-rfc/validate-rfc-error-description.mjs +3 -1
- package/esm2022/lib/constants/errors/validate-signature/validate-signature-error-code.mjs +2 -1
- package/esm2022/lib/constants/errors/validate-signature/validate-signature-error-description.mjs +4 -2
- package/esm2022/public-api.mjs +1 -2
- package/fesm2022/fad-producto-portal-ng-fad-signature-fea.mjs +144 -193
- package/fesm2022/fad-producto-portal-ng-fad-signature-fea.mjs.map +1 -1
- package/lib/components/document-approval-list/document-approval-list.component.d.ts +2 -5
- package/lib/components/generic-error-fea/generic-error-fea.component.d.ts +1 -1
- package/lib/components/pdf-viewer-fea/pdf-viewer-fea.component.d.ts +1 -1
- package/lib/components/signature-summary/signature-summary.component.d.ts +1 -1
- package/lib/components/upload-e-signature/upload-e-signature.component.d.ts +1 -1
- package/lib/components/validate-rfc/validate-rfc.component.d.ts +2 -3
- package/lib/components/validate-signature/validate-signature.component.d.ts +2 -3
- package/lib/constants/errors/validate-rfc/validate-rfc-error-code.d.ts +2 -1
- package/lib/constants/errors/validate-rfc/validate-rfc-error-description.d.ts +1 -1
- package/lib/constants/errors/validate-signature/validate-signature-error-code.d.ts +2 -1
- package/lib/constants/errors/validate-signature/validate-signature-error-description.d.ts +1 -1
- package/package.json +7 -8
- package/public-api.d.ts +0 -1
- package/esm2022/lib/ng-fad-signature-fea.module.mjs +0 -71
- package/lib/ng-fad-signature-fea.module.d.ts +0 -18
|
@@ -1,20 +1,17 @@
|
|
|
1
1
|
import { ChangeDetectorRef, ElementRef, EventEmitter } from '@angular/core';
|
|
2
2
|
import { DocumentApprovalFea, IDocumentApprovalListConfiguration } from '../../models';
|
|
3
3
|
import { FadService, RequisitionFeaData } from '@fad-producto-portal/ng-fad-services';
|
|
4
|
-
import { NgFadPdfReaderService, ResponseSuccess } from '@fad-producto/ng-fad-pdf-reader';
|
|
5
4
|
import { ResponseError } from '@fad-producto-portal/ng-fad-shared';
|
|
6
5
|
import * as i0 from "@angular/core";
|
|
7
6
|
export declare class DocumentApprovalListComponent {
|
|
8
7
|
private hostContext;
|
|
9
8
|
private fad;
|
|
10
9
|
private cdr;
|
|
11
|
-
private pdfService;
|
|
12
10
|
configuration: IDocumentApprovalListConfiguration;
|
|
13
11
|
rfc: string;
|
|
14
12
|
onloader: EventEmitter<boolean>;
|
|
15
13
|
onevent: EventEmitter<DocumentApprovalFea[]>;
|
|
16
14
|
onerror: EventEmitter<ResponseError>;
|
|
17
|
-
pagesMap: Map<string, ResponseSuccess[]>;
|
|
18
15
|
requisitionsFea: RequisitionFeaData[];
|
|
19
16
|
documentsApprovalList: DocumentApprovalFea[];
|
|
20
17
|
approveAll: boolean;
|
|
@@ -28,7 +25,7 @@ export declare class DocumentApprovalListComponent {
|
|
|
28
25
|
approve: string;
|
|
29
26
|
};
|
|
30
27
|
};
|
|
31
|
-
constructor(hostContext: ElementRef, fad: FadService, cdr: ChangeDetectorRef
|
|
28
|
+
constructor(hostContext: ElementRef, fad: FadService, cdr: ChangeDetectorRef);
|
|
32
29
|
ngOnInit(): void;
|
|
33
30
|
getRequisitionsRfc(): void;
|
|
34
31
|
loadSingleDocument(singleDocument: DocumentApprovalFea): void;
|
|
@@ -44,5 +41,5 @@ export declare class DocumentApprovalListComponent {
|
|
|
44
41
|
getDocumentId(id: string): string;
|
|
45
42
|
setCustomizationStyle(targetElement?: HTMLElement): void;
|
|
46
43
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocumentApprovalListComponent, never>;
|
|
47
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DocumentApprovalListComponent, "ng-fad-signature-fea-document-approval-list", never, { "configuration": { "alias": "configuration"; "required": false; }; "rfc": { "alias": "rfc"; "required": false; }; }, { "onloader": "onloader"; "onevent": "onevent"; "onerror": "onerror"; }, never, never,
|
|
44
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DocumentApprovalListComponent, "ng-fad-signature-fea-document-approval-list", never, { "configuration": { "alias": "configuration"; "required": false; }; "rfc": { "alias": "rfc"; "required": false; }; }, { "onloader": "onloader"; "onevent": "onevent"; "onerror": "onerror"; }, never, never, true, never>;
|
|
48
45
|
}
|
|
@@ -9,5 +9,5 @@ export declare class GenericErrorFeaComponent implements OnInit {
|
|
|
9
9
|
ngOnInit(): void;
|
|
10
10
|
setCustomizationStyle(targetElement?: HTMLElement): void;
|
|
11
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<GenericErrorFeaComponent, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GenericErrorFeaComponent, "ng-fad-signature-fea-generic-error-fea", never, { "configuration": { "alias": "configuration"; "required": false; }; "title": { "alias": "title"; "required": false; }; "instruction": { "alias": "instruction"; "required": false; }; }, {}, never, never,
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GenericErrorFeaComponent, "ng-fad-signature-fea-generic-error-fea", never, { "configuration": { "alias": "configuration"; "required": false; }; "title": { "alias": "title"; "required": false; }; "instruction": { "alias": "instruction"; "required": false; }; }, {}, never, never, true, never>;
|
|
13
13
|
}
|
|
@@ -24,5 +24,5 @@ export declare class PdfViewerFeaComponent {
|
|
|
24
24
|
onLoadPage(data: ResponseSuccess): void;
|
|
25
25
|
setCustomizationStyle(targetElement?: HTMLElement): void;
|
|
26
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<PdfViewerFeaComponent, never>;
|
|
27
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PdfViewerFeaComponent, "ng-fad-signature-fea-pdf-viewer-fea", never, { "configuration": { "alias": "configuration"; "required": false; }; "file": { "alias": "file"; "required": false; }; "index": { "alias": "index"; "required": false; }; "id": { "alias": "id"; "required": false; }; }, {}, never, never,
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PdfViewerFeaComponent, "ng-fad-signature-fea-pdf-viewer-fea", never, { "configuration": { "alias": "configuration"; "required": false; }; "file": { "alias": "file"; "required": false; }; "index": { "alias": "index"; "required": false; }; "id": { "alias": "id"; "required": false; }; }, {}, never, never, true, never>;
|
|
28
28
|
}
|
|
@@ -23,5 +23,5 @@ export declare class SignatureSummaryComponent {
|
|
|
23
23
|
getPdfNames(): void;
|
|
24
24
|
setCustomizationStyle(targetElement?: HTMLElement): void;
|
|
25
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<SignatureSummaryComponent, never>;
|
|
26
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SignatureSummaryComponent, "ng-fad-signature-fea-signature-summary", never, { "documentRequest": { "alias": "documentRequest"; "required": false; }; "configuration": { "alias": "configuration"; "required": false; }; }, { "oncomplete": "oncomplete"; }, never, never,
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SignatureSummaryComponent, "ng-fad-signature-fea-signature-summary", never, { "documentRequest": { "alias": "documentRequest"; "required": false; }; "configuration": { "alias": "configuration"; "required": false; }; }, { "oncomplete": "oncomplete"; }, never, never, true, never>;
|
|
27
27
|
}
|
|
@@ -48,5 +48,5 @@ export declare class UploadESignatureComponent implements OnInit {
|
|
|
48
48
|
getBase64File(file: File): Promise<string | null>;
|
|
49
49
|
setCustomizationStyle(targetElement?: HTMLElement): void;
|
|
50
50
|
static ɵfac: i0.ɵɵFactoryDeclaration<UploadESignatureComponent, never>;
|
|
51
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UploadESignatureComponent, "ng-fad-signature-fea-upload-e-signature", never, { "configuration": { "alias": "configuration"; "required": false; }; "documents": { "alias": "documents"; "required": false; }; "signerId": { "alias": "signerId"; "required": false; }; "rfc": { "alias": "rfc"; "required": false; }; }, { "onerror": "onerror"; "onloader": "onloader"; "oncomplete": "oncomplete"; }, never, never,
|
|
51
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UploadESignatureComponent, "ng-fad-signature-fea-upload-e-signature", never, { "configuration": { "alias": "configuration"; "required": false; }; "documents": { "alias": "documents"; "required": false; }; "signerId": { "alias": "signerId"; "required": false; }; "rfc": { "alias": "rfc"; "required": false; }; }, { "onerror": "onerror"; "onloader": "onloader"; "oncomplete": "oncomplete"; }, never, never, true, never>;
|
|
52
52
|
}
|
|
@@ -10,9 +10,8 @@ export declare class ValidateRfcComponent implements OnInit {
|
|
|
10
10
|
private hostContext;
|
|
11
11
|
private route;
|
|
12
12
|
private fadService;
|
|
13
|
-
requisitionId: string;
|
|
14
|
-
signerId: string;
|
|
15
13
|
configuration: IValidateRfcConfiguration;
|
|
14
|
+
ticket: string;
|
|
16
15
|
onerror: EventEmitter<ResponseError>;
|
|
17
16
|
oncomplete: EventEmitter<ResponseData<ValidateRFC>>;
|
|
18
17
|
onloader: EventEmitter<boolean>;
|
|
@@ -28,5 +27,5 @@ export declare class ValidateRfcComponent implements OnInit {
|
|
|
28
27
|
onInputChange(event: any): void;
|
|
29
28
|
get codeControl(): import("@angular/forms").AbstractControl<any, any> | null;
|
|
30
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<ValidateRfcComponent, never>;
|
|
31
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ValidateRfcComponent, "ng-fad-signature-fea-validate-rfc", never, { "
|
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ValidateRfcComponent, "ng-fad-signature-fea-validate-rfc", never, { "configuration": { "alias": "configuration"; "required": false; }; "ticket": { "alias": "ticket"; "required": false; }; }, { "onerror": "onerror"; "oncomplete": "oncomplete"; "onloader": "onloader"; }, never, never, true, never>;
|
|
32
31
|
}
|
|
@@ -6,8 +6,7 @@ import * as i0 from "@angular/core";
|
|
|
6
6
|
export declare class ValidateSignatureComponent {
|
|
7
7
|
private fad;
|
|
8
8
|
configuration: IValidateSignatureConfiguration;
|
|
9
|
-
|
|
10
|
-
requisitionId: string;
|
|
9
|
+
ticket: string;
|
|
11
10
|
onloader: EventEmitter<boolean>;
|
|
12
11
|
onerror: EventEmitter<ResponseError>;
|
|
13
12
|
oncomplete: EventEmitter<string>;
|
|
@@ -18,5 +17,5 @@ export declare class ValidateSignatureComponent {
|
|
|
18
17
|
getSignerStatusFea(): void;
|
|
19
18
|
setCustomizationStyle(targetElement?: HTMLElement): void;
|
|
20
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<ValidateSignatureComponent, never>;
|
|
21
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ValidateSignatureComponent, "ng-fad-signature-fea-validate-signature", never, { "configuration": { "alias": "configuration"; "required": false; }; "
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ValidateSignatureComponent, "ng-fad-signature-fea-validate-signature", never, { "configuration": { "alias": "configuration"; "required": false; }; "ticket": { "alias": "ticket"; "required": false; }; }, { "onloader": "onloader"; "onerror": "onerror"; "oncomplete": "oncomplete"; "onsigned": "onsigned"; }, never, never, true, never>;
|
|
22
21
|
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { ValidateRFCErrorCode } from "./validate-rfc-error-code";
|
|
2
|
-
export declare const getValidateRFCErrorDescription: (code: ValidateRFCErrorCode) => "Service error" | "HTTP error" | "Unknown error" | "There is not requisitionId" | "There is not signerId";
|
|
2
|
+
export declare const getValidateRFCErrorDescription: (code: ValidateRFCErrorCode) => "Service error" | "HTTP error" | "Unknown error" | "There is not requisitionId" | "There is not signerId" | "There is not Ticket";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { ValidateSignatureErrorCode } from "./validate-signature-error-code";
|
|
2
|
-
export declare const getValidateSignatureErrorDescription: (code: ValidateSignatureErrorCode) => "Service error" | "HTTP error" | "Unknown error" | "Requisition ID is required" | "Signer ID is required";
|
|
2
|
+
export declare const getValidateSignatureErrorDescription: (code: ValidateSignatureErrorCode) => "Service error" | "HTTP error" | "Unknown error" | "Requisition ID is required" | "Signer ID is required" | "Ticket is required";
|
package/package.json
CHANGED
|
@@ -1,17 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fad-producto-portal/ng-fad-signature-fea",
|
|
3
|
-
"version": "1.0.0
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^16.2.0",
|
|
6
|
-
"@angular/core": "^16.2.0"
|
|
6
|
+
"@angular/core": "^16.2.0",
|
|
7
|
+
"@fad-producto-portal/ng-fad-services": "^1.0.2"
|
|
7
8
|
},
|
|
8
9
|
"dependencies": {
|
|
9
|
-
"@fad-producto-portal/fad-common": "1.0.0
|
|
10
|
-
"@fad-producto-portal/ng-fad-
|
|
11
|
-
"@fad-producto
|
|
12
|
-
"@fad-producto/ng-fad-
|
|
13
|
-
"@fad-producto/ng-fad-pdf-reader": "4.0.0-ng16.1714523125742",
|
|
14
|
-
"@fad-producto-portal/ng-fad-viewer": "1.0.0-alpha.2",
|
|
10
|
+
"@fad-producto-portal/fad-common": "1.0.0",
|
|
11
|
+
"@fad-producto-portal/ng-fad-shared": "^1.0.1",
|
|
12
|
+
"@fad-producto/ng-fad-image-inline": "^3.0.0-next.0",
|
|
13
|
+
"@fad-producto-portal/ng-fad-viewer": "^1.0.3",
|
|
15
14
|
"tslib": "^2.3.0"
|
|
16
15
|
},
|
|
17
16
|
"sideEffects": false,
|
package/public-api.d.ts
CHANGED
|
@@ -1,71 +0,0 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import { ReactiveFormsModule } from '@angular/forms';
|
|
4
|
-
import { NgFadSharedModule } from '@fad-producto-portal/ng-fad-shared';
|
|
5
|
-
import { NgFadImageInlineModule } from '@fad-producto/ng-fad-image-inline';
|
|
6
|
-
import { NgFadViewerModule } from '@fad-producto-portal/ng-fad-viewer';
|
|
7
|
-
import { PdfViewerFeaComponent } from './components/pdf-viewer-fea/pdf-viewer-fea.component';
|
|
8
|
-
// components
|
|
9
|
-
import { ValidateRfcComponent } from './components/validate-rfc/validate-rfc.component';
|
|
10
|
-
import { DocumentApprovalListComponent } from './components/document-approval-list/document-approval-list.component';
|
|
11
|
-
import { UploadESignatureComponent } from './components/upload-e-signature/upload-e-signature.component';
|
|
12
|
-
import { GenericErrorFeaComponent } from './components/generic-error-fea/generic-error-fea.component';
|
|
13
|
-
import { ValidateSignatureComponent } from './components/validate-signature/validate-signature.component';
|
|
14
|
-
import { SignatureSummaryComponent } from './components/signature-summary/signature-summary.component';
|
|
15
|
-
import * as i0 from "@angular/core";
|
|
16
|
-
export class NgFadSignatureFeaModule {
|
|
17
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NgFadSignatureFeaModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
18
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: NgFadSignatureFeaModule, declarations: [ValidateRfcComponent,
|
|
19
|
-
DocumentApprovalListComponent,
|
|
20
|
-
UploadESignatureComponent,
|
|
21
|
-
PdfViewerFeaComponent,
|
|
22
|
-
GenericErrorFeaComponent,
|
|
23
|
-
ValidateSignatureComponent,
|
|
24
|
-
SignatureSummaryComponent], imports: [CommonModule,
|
|
25
|
-
ReactiveFormsModule,
|
|
26
|
-
NgFadSharedModule,
|
|
27
|
-
NgFadImageInlineModule,
|
|
28
|
-
NgFadViewerModule], exports: [ValidateRfcComponent,
|
|
29
|
-
DocumentApprovalListComponent,
|
|
30
|
-
UploadESignatureComponent,
|
|
31
|
-
PdfViewerFeaComponent,
|
|
32
|
-
GenericErrorFeaComponent,
|
|
33
|
-
ValidateSignatureComponent,
|
|
34
|
-
SignatureSummaryComponent] }); }
|
|
35
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NgFadSignatureFeaModule, imports: [CommonModule,
|
|
36
|
-
ReactiveFormsModule,
|
|
37
|
-
NgFadSharedModule,
|
|
38
|
-
NgFadImageInlineModule,
|
|
39
|
-
NgFadViewerModule] }); }
|
|
40
|
-
}
|
|
41
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NgFadSignatureFeaModule, decorators: [{
|
|
42
|
-
type: NgModule,
|
|
43
|
-
args: [{
|
|
44
|
-
declarations: [
|
|
45
|
-
ValidateRfcComponent,
|
|
46
|
-
DocumentApprovalListComponent,
|
|
47
|
-
UploadESignatureComponent,
|
|
48
|
-
PdfViewerFeaComponent,
|
|
49
|
-
GenericErrorFeaComponent,
|
|
50
|
-
ValidateSignatureComponent,
|
|
51
|
-
SignatureSummaryComponent
|
|
52
|
-
],
|
|
53
|
-
imports: [
|
|
54
|
-
CommonModule,
|
|
55
|
-
ReactiveFormsModule,
|
|
56
|
-
NgFadSharedModule,
|
|
57
|
-
NgFadImageInlineModule,
|
|
58
|
-
NgFadViewerModule,
|
|
59
|
-
],
|
|
60
|
-
exports: [
|
|
61
|
-
ValidateRfcComponent,
|
|
62
|
-
DocumentApprovalListComponent,
|
|
63
|
-
UploadESignatureComponent,
|
|
64
|
-
PdfViewerFeaComponent,
|
|
65
|
-
GenericErrorFeaComponent,
|
|
66
|
-
ValidateSignatureComponent,
|
|
67
|
-
SignatureSummaryComponent
|
|
68
|
-
]
|
|
69
|
-
}]
|
|
70
|
-
}] });
|
|
71
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmctZmFkLXNpZ25hdHVyZS1mZWEubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvZmFkLXByb2R1Y3RvLXBvcnRhbC9uZy1mYWQtc2lnbmF0dXJlLWZlYS9zcmMvbGliL25nLWZhZC1zaWduYXR1cmUtZmVhLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3pDLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQztBQUNyRCxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxvQ0FBb0MsQ0FBQztBQUN2RSxPQUFPLEVBQUUsc0JBQXNCLEVBQUUsTUFBTSxtQ0FBbUMsQ0FBQztBQUMzRSxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxvQ0FBb0MsQ0FBQztBQUN2RSxPQUFPLEVBQUUscUJBQXFCLEVBQUUsTUFBTSxzREFBc0QsQ0FBQztBQUU3RixhQUFhO0FBQ2IsT0FBTyxFQUFFLG9CQUFvQixFQUFFLE1BQU0sa0RBQWtELENBQUM7QUFDeEYsT0FBTyxFQUFFLDZCQUE2QixFQUFFLE1BQU0sc0VBQXNFLENBQUM7QUFDckgsT0FBTyxFQUFFLHlCQUF5QixFQUFFLE1BQU0sOERBQThELENBQUM7QUFDekcsT0FBTyxFQUFFLHdCQUF3QixFQUFFLE1BQU0sNERBQTRELENBQUM7QUFDdEcsT0FBTyxFQUFFLDBCQUEwQixFQUFFLE1BQU0sOERBQThELENBQUM7QUFDMUcsT0FBTyxFQUFFLHlCQUF5QixFQUFFLE1BQU0sNERBQTRELENBQUM7O0FBOEJ2RyxNQUFNLE9BQU8sdUJBQXVCOytHQUF2Qix1QkFBdUI7Z0hBQXZCLHVCQUF1QixpQkF6QmhDLG9CQUFvQjtZQUNwQiw2QkFBNkI7WUFDN0IseUJBQXlCO1lBQ3pCLHFCQUFxQjtZQUNyQix3QkFBd0I7WUFDeEIsMEJBQTBCO1lBQzFCLHlCQUF5QixhQUd6QixZQUFZO1lBQ1osbUJBQW1CO1lBQ25CLGlCQUFpQjtZQUNqQixzQkFBc0I7WUFDdEIsaUJBQWlCLGFBR2pCLG9CQUFvQjtZQUNwQiw2QkFBNkI7WUFDN0IseUJBQXlCO1lBQ3pCLHFCQUFxQjtZQUNyQix3QkFBd0I7WUFDeEIsMEJBQTBCO1lBQzFCLHlCQUF5QjtnSEFHaEIsdUJBQXVCLFlBaEJoQyxZQUFZO1lBQ1osbUJBQW1CO1lBQ25CLGlCQUFpQjtZQUNqQixzQkFBc0I7WUFDdEIsaUJBQWlCOzs0RkFZUix1QkFBdUI7a0JBM0JuQyxRQUFRO21CQUFDO29CQUNSLFlBQVksRUFBRTt3QkFDWixvQkFBb0I7d0JBQ3BCLDZCQUE2Qjt3QkFDN0IseUJBQXlCO3dCQUN6QixxQkFBcUI7d0JBQ3JCLHdCQUF3Qjt3QkFDeEIsMEJBQTBCO3dCQUMxQix5QkFBeUI7cUJBQzFCO29CQUNELE9BQU8sRUFBRTt3QkFDUCxZQUFZO3dCQUNaLG1CQUFtQjt3QkFDbkIsaUJBQWlCO3dCQUNqQixzQkFBc0I7d0JBQ3RCLGlCQUFpQjtxQkFDbEI7b0JBQ0QsT0FBTyxFQUFFO3dCQUNQLG9CQUFvQjt3QkFDcEIsNkJBQTZCO3dCQUM3Qix5QkFBeUI7d0JBQ3pCLHFCQUFxQjt3QkFDckIsd0JBQXdCO3dCQUN4QiwwQkFBMEI7d0JBQzFCLHlCQUF5QjtxQkFDMUI7aUJBQ0YiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBOZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xyXG5pbXBvcnQgeyBSZWFjdGl2ZUZvcm1zTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnO1xyXG5pbXBvcnQgeyBOZ0ZhZFNoYXJlZE1vZHVsZSB9IGZyb20gJ0BmYWQtcHJvZHVjdG8tcG9ydGFsL25nLWZhZC1zaGFyZWQnO1xyXG5pbXBvcnQgeyBOZ0ZhZEltYWdlSW5saW5lTW9kdWxlIH0gZnJvbSAnQGZhZC1wcm9kdWN0by9uZy1mYWQtaW1hZ2UtaW5saW5lJztcclxuaW1wb3J0IHsgTmdGYWRWaWV3ZXJNb2R1bGUgfSBmcm9tICdAZmFkLXByb2R1Y3RvLXBvcnRhbC9uZy1mYWQtdmlld2VyJztcclxuaW1wb3J0IHsgUGRmVmlld2VyRmVhQ29tcG9uZW50IH0gZnJvbSAnLi9jb21wb25lbnRzL3BkZi12aWV3ZXItZmVhL3BkZi12aWV3ZXItZmVhLmNvbXBvbmVudCc7XHJcblxyXG4vLyBjb21wb25lbnRzXHJcbmltcG9ydCB7IFZhbGlkYXRlUmZjQ29tcG9uZW50IH0gZnJvbSAnLi9jb21wb25lbnRzL3ZhbGlkYXRlLXJmYy92YWxpZGF0ZS1yZmMuY29tcG9uZW50JztcclxuaW1wb3J0IHsgRG9jdW1lbnRBcHByb3ZhbExpc3RDb21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvZG9jdW1lbnQtYXBwcm92YWwtbGlzdC9kb2N1bWVudC1hcHByb3ZhbC1saXN0LmNvbXBvbmVudCc7XHJcbmltcG9ydCB7IFVwbG9hZEVTaWduYXR1cmVDb21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvdXBsb2FkLWUtc2lnbmF0dXJlL3VwbG9hZC1lLXNpZ25hdHVyZS5jb21wb25lbnQnO1xyXG5pbXBvcnQgeyBHZW5lcmljRXJyb3JGZWFDb21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvZ2VuZXJpYy1lcnJvci1mZWEvZ2VuZXJpYy1lcnJvci1mZWEuY29tcG9uZW50JztcclxuaW1wb3J0IHsgVmFsaWRhdGVTaWduYXR1cmVDb21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvdmFsaWRhdGUtc2lnbmF0dXJlL3ZhbGlkYXRlLXNpZ25hdHVyZS5jb21wb25lbnQnO1xyXG5pbXBvcnQgeyBTaWduYXR1cmVTdW1tYXJ5Q29tcG9uZW50IH0gZnJvbSAnLi9jb21wb25lbnRzL3NpZ25hdHVyZS1zdW1tYXJ5L3NpZ25hdHVyZS1zdW1tYXJ5LmNvbXBvbmVudCc7XHJcblxyXG5cclxuQE5nTW9kdWxlKHtcclxuICBkZWNsYXJhdGlvbnM6IFtcclxuICAgIFZhbGlkYXRlUmZjQ29tcG9uZW50LFxyXG4gICAgRG9jdW1lbnRBcHByb3ZhbExpc3RDb21wb25lbnQsXHJcbiAgICBVcGxvYWRFU2lnbmF0dXJlQ29tcG9uZW50LFxyXG4gICAgUGRmVmlld2VyRmVhQ29tcG9uZW50LFxyXG4gICAgR2VuZXJpY0Vycm9yRmVhQ29tcG9uZW50LFxyXG4gICAgVmFsaWRhdGVTaWduYXR1cmVDb21wb25lbnQsXHJcbiAgICBTaWduYXR1cmVTdW1tYXJ5Q29tcG9uZW50XHJcbiAgXSxcclxuICBpbXBvcnRzOiBbXHJcbiAgICBDb21tb25Nb2R1bGUsXHJcbiAgICBSZWFjdGl2ZUZvcm1zTW9kdWxlLFxyXG4gICAgTmdGYWRTaGFyZWRNb2R1bGUsXHJcbiAgICBOZ0ZhZEltYWdlSW5saW5lTW9kdWxlLFxyXG4gICAgTmdGYWRWaWV3ZXJNb2R1bGUsICAgIFxyXG4gIF0sXHJcbiAgZXhwb3J0czogW1xyXG4gICAgVmFsaWRhdGVSZmNDb21wb25lbnQsXHJcbiAgICBEb2N1bWVudEFwcHJvdmFsTGlzdENvbXBvbmVudCxcclxuICAgIFVwbG9hZEVTaWduYXR1cmVDb21wb25lbnQsXHJcbiAgICBQZGZWaWV3ZXJGZWFDb21wb25lbnQsXHJcbiAgICBHZW5lcmljRXJyb3JGZWFDb21wb25lbnQsXHJcbiAgICBWYWxpZGF0ZVNpZ25hdHVyZUNvbXBvbmVudCxcclxuICAgIFNpZ25hdHVyZVN1bW1hcnlDb21wb25lbnRcclxuICBdXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBOZ0ZhZFNpZ25hdHVyZUZlYU1vZHVsZSB7IH1cclxuIl19
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./components/validate-rfc/validate-rfc.component";
|
|
3
|
-
import * as i2 from "./components/document-approval-list/document-approval-list.component";
|
|
4
|
-
import * as i3 from "./components/upload-e-signature/upload-e-signature.component";
|
|
5
|
-
import * as i4 from "./components/pdf-viewer-fea/pdf-viewer-fea.component";
|
|
6
|
-
import * as i5 from "./components/generic-error-fea/generic-error-fea.component";
|
|
7
|
-
import * as i6 from "./components/validate-signature/validate-signature.component";
|
|
8
|
-
import * as i7 from "./components/signature-summary/signature-summary.component";
|
|
9
|
-
import * as i8 from "@angular/common";
|
|
10
|
-
import * as i9 from "@angular/forms";
|
|
11
|
-
import * as i10 from "@fad-producto-portal/ng-fad-shared";
|
|
12
|
-
import * as i11 from "@fad-producto/ng-fad-image-inline";
|
|
13
|
-
import * as i12 from "@fad-producto-portal/ng-fad-viewer";
|
|
14
|
-
export declare class NgFadSignatureFeaModule {
|
|
15
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NgFadSignatureFeaModule, never>;
|
|
16
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<NgFadSignatureFeaModule, [typeof i1.ValidateRfcComponent, typeof i2.DocumentApprovalListComponent, typeof i3.UploadESignatureComponent, typeof i4.PdfViewerFeaComponent, typeof i5.GenericErrorFeaComponent, typeof i6.ValidateSignatureComponent, typeof i7.SignatureSummaryComponent], [typeof i8.CommonModule, typeof i9.ReactiveFormsModule, typeof i10.NgFadSharedModule, typeof i11.NgFadImageInlineModule, typeof i12.NgFadViewerModule], [typeof i1.ValidateRfcComponent, typeof i2.DocumentApprovalListComponent, typeof i3.UploadESignatureComponent, typeof i4.PdfViewerFeaComponent, typeof i5.GenericErrorFeaComponent, typeof i6.ValidateSignatureComponent, typeof i7.SignatureSummaryComponent]>;
|
|
17
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<NgFadSignatureFeaModule>;
|
|
18
|
-
}
|