nuxeo-development-framework 5.3.8 → 5.4.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.
@@ -31,7 +31,7 @@ export declare class DocumentUploadComponent {
31
31
  params: {};
32
32
  /** Path in witch a document will be created */
33
33
  path: any;
34
- /** Max allowed upload size */
34
+ /** Max allowed upload size in Bytes*/
35
35
  maxSize: number;
36
36
  /** min allowed upload size */
37
37
  minSize: number;
@@ -55,6 +55,7 @@ export declare class PdftronComponent implements OnInit, OnDestroy, OnChanges {
55
55
  allowDownloadSecretFile: boolean;
56
56
  allowPrintSecretFile: boolean;
57
57
  negelectAddingWaterMark: boolean;
58
+ ctocrFulltext: any;
58
59
  onAddingAnotation: EventEmitter<any>;
59
60
  events: EventEmitter<any>;
60
61
  SignatureEvent: EventEmitter<any>;
@@ -104,5 +105,5 @@ export declare class PdftronComponent implements OnInit, OnDestroy, OnChanges {
104
105
  searchFn: (searchValue: any, options: any) => void;
105
106
  ngOnDestroy(): void;
106
107
  static ɵfac: i0.ɵɵFactoryDeclaration<PdftronComponent, never>;
107
- 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"; "allowDownloadSecretFile": "allowDownloadSecretFile"; "allowPrintSecretFile": "allowPrintSecretFile"; "negelectAddingWaterMark": "negelectAddingWaterMark"; }, { "onSignatureTracking": "onSignatureTracking"; "onAddingAnotation": "onAddingAnotation"; "events": "events"; "SignatureEvent": "SignatureEvent"; }, never, never>;
108
+ 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"; "allowDownloadSecretFile": "allowDownloadSecretFile"; "allowPrintSecretFile": "allowPrintSecretFile"; "negelectAddingWaterMark": "negelectAddingWaterMark"; "ctocrFulltext": "ctocrFulltext"; }, { "onSignatureTracking": "onSignatureTracking"; "onAddingAnotation": "onAddingAnotation"; "events": "events"; "SignatureEvent": "SignatureEvent"; }, never, never>;
108
109
  }
@@ -12,6 +12,8 @@ export declare type NdfExportPayload = {
12
12
  operator: string;
13
13
  }[];
14
14
  reportMetaData: {
15
+ blobName: string;
16
+ blobNameEn?: string;
15
17
  docTypeName: string;
16
18
  fileType: string;
17
19
  reportTitle?: string;
@@ -1,8 +1,8 @@
1
- import { FieldConfigModel } from "../../../ndf-filters";
1
+ import { FieldConfigModel } from '../../../ndf-filters';
2
+ import { NdfRequestConfig } from './payload-types';
2
3
  import { GlobalSearchConfig } from './search.config';
3
4
  import { TableModeConfig, TableSortConfig } from './table-mode';
4
5
  import { LabelValue, SortTableItem } from './types';
5
- import { NdfRequestConfig } from './payload-types';
6
6
  export declare type NdfTableOptions = {
7
7
  search?: GlobalSearchConfig;
8
8
  filters: FiltersConfig;
@@ -46,6 +46,7 @@ export declare type TableExportConfig = {
46
46
  enabled: boolean;
47
47
  request: NdfRequestConfig;
48
48
  docTypeName: 'task' | 'request' | 'record';
49
+ blobName: string;
49
50
  defaultType: 'excel' | 'docx' | 'pdf';
50
51
  allowedTypes?: LabelValue<string, 'excel' | 'docx' | 'pdf'>[];
51
52
  fields?: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nuxeo-development-framework",
3
- "version": "5.3.8",
3
+ "version": "5.4.1",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": "12.2.3",
6
6
  "@angular/common": "12.2.3",