nuxeo-development-framework 2.0.4 → 2.0.5

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.
@@ -47,6 +47,8 @@ export declare class PdftronComponent implements OnInit, AfterViewInit, OnDestro
47
47
  editingType: any;
48
48
  userSignatures: any;
49
49
  searchString: string;
50
+ trackSignature: boolean;
51
+ onSignatureTracking: EventEmitter<any>;
50
52
  useOutsideAnotations: boolean;
51
53
  importedAnotations: any;
52
54
  onAddingAnotation: EventEmitter<any>;
@@ -96,5 +98,5 @@ export declare class PdftronComponent implements OnInit, AfterViewInit, OnDestro
96
98
  searchFn: (searchValue: any, options: any) => void;
97
99
  ngOnDestroy(): void;
98
100
  static ɵfac: i0.ɵɵFactoryDeclaration<PdftronComponent, never>;
99
- static ɵcmp: i0.ɵɵComponentDeclaration<PdftronComponent, "app-pdftron", never, { "editMode": "editMode"; "actionClicked": "actionClicked"; "fileTitle": "fileTitle"; "docId": "docId"; "DOCUMENT_TYPE": "DOCUMENT_TYPE"; "fileData": "fileData"; "fitMode": "fitMode"; "authHeader": "authHeader"; "fileURL": "fileURL"; "correspondance": "correspondance"; "secrecyProperty": "secrecyProperty"; "editingType": "editingType"; "userSignatures": "userSignatures"; "searchString": "searchString"; "useOutsideAnotations": "useOutsideAnotations"; "importedAnotations": "importedAnotations"; }, { "onAddingAnotation": "onAddingAnotation"; "events": "events"; "SignatureEvent": "SignatureEvent"; }, never, never>;
101
+ static ɵcmp: i0.ɵɵComponentDeclaration<PdftronComponent, "app-pdftron", never, { "editMode": "editMode"; "actionClicked": "actionClicked"; "fileTitle": "fileTitle"; "docId": "docId"; "DOCUMENT_TYPE": "DOCUMENT_TYPE"; "fileData": "fileData"; "fitMode": "fitMode"; "authHeader": "authHeader"; "fileURL": "fileURL"; "correspondance": "correspondance"; "secrecyProperty": "secrecyProperty"; "editingType": "editingType"; "userSignatures": "userSignatures"; "searchString": "searchString"; "trackSignature": "trackSignature"; "useOutsideAnotations": "useOutsideAnotations"; "importedAnotations": "importedAnotations"; }, { "onSignatureTracking": "onSignatureTracking"; "onAddingAnotation": "onAddingAnotation"; "events": "events"; "SignatureEvent": "SignatureEvent"; }, never, never>;
100
102
  }
@@ -6,6 +6,7 @@ export declare class PdftronService {
6
6
  stampAnnots: any[];
7
7
  signatureAnnotations: any[];
8
8
  pdfTronStream: EventEmitter<any>;
9
+ onImageExtraction: EventEmitter<any>;
9
10
  constructor();
10
11
  disableQrCodeModifybeforesave(): Promise<void>;
11
12
  clearSignatureAnnotations(): void;
@@ -25,6 +26,8 @@ export declare class PdftronService {
25
26
  addStamp(url: any): void;
26
27
  addWatermark(text: any): void;
27
28
  removeWatermark(): void;
29
+ extractAnotation(annotation: any): void;
30
+ extractAnnotationSignature(annotation: any, docViewer: any): Promise<void>;
28
31
  static ɵfac: i0.ɵɵFactoryDeclaration<PdftronService, never>;
29
32
  static ɵprov: i0.ɵɵInjectableDeclaration<PdftronService>;
30
33
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nuxeo-development-framework",
3
- "version": "2.0.4",
3
+ "version": "2.0.5",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": "~12.2.4",
6
6
  "@angular/common": "~12.2.4",