nuxeo-development-framework 4.3.9 → 4.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.
- package/bundles/nuxeo-development-framework.umd.js +25 -73
- package/bundles/nuxeo-development-framework.umd.js.map +1 -1
- package/esm2015/lib/components/charts/components/data-chart.component.js +2 -2
- package/esm2015/lib/components/correspondence-relation/components/versions/versions.component.js +2 -16
- package/esm2015/lib/components/documents/components/document-upload/document-upload.component.js +6 -47
- package/esm2015/lib/components/documents/components/documents/documents.component.js +1 -1
- package/esm2015/lib/components/table/table/table.component.js +2 -2
- package/esm2015/lib/core/services/callApi/call-api.service.js +12 -2
- package/fesm2015/nuxeo-development-framework.js +21 -67
- package/fesm2015/nuxeo-development-framework.js.map +1 -1
- package/lib/components/correspondence-relation/components/versions/versions.component.d.ts +0 -1
- package/lib/components/documents/components/document-upload/document-upload.component.d.ts +1 -4
- package/lib/core/services/callApi/call-api.service.d.ts +2 -0
- package/package.json +1 -1
|
@@ -42,7 +42,6 @@ export declare class VersionsComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
42
42
|
getVersion(version: any): string;
|
|
43
43
|
getVersions(): void;
|
|
44
44
|
showVersion(version: any): void;
|
|
45
|
-
getFileSize(version: any): string;
|
|
46
45
|
handleAction(event: any): void;
|
|
47
46
|
ngOnDestroy(): void;
|
|
48
47
|
static ɵfac: i0.ɵɵFactoryDeclaration<VersionsComponent, never>;
|
|
@@ -37,7 +37,6 @@ export declare class DocumentUploadComponent {
|
|
|
37
37
|
minSize: number;
|
|
38
38
|
/** Params to be sent with body when creating a document */
|
|
39
39
|
docParams: {};
|
|
40
|
-
checkPdfContent: boolean;
|
|
41
40
|
/** Can upload multiple files at once */
|
|
42
41
|
multiple: boolean;
|
|
43
42
|
/** should create document after batch upload */
|
|
@@ -56,10 +55,8 @@ export declare class DocumentUploadComponent {
|
|
|
56
55
|
isSizeChecked(file: any): boolean;
|
|
57
56
|
isTypeChecked(file: any): boolean;
|
|
58
57
|
isMaxNumberOfFiles(selectedFiles: any): boolean;
|
|
59
|
-
checkFileContent(file: any): void;
|
|
60
58
|
uploadDocument(files: any): void;
|
|
61
|
-
uploadFiles(selectedFiles: any): void;
|
|
62
59
|
getFileExtension(name: any): string;
|
|
63
60
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocumentUploadComponent, never>;
|
|
64
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DocumentUploadComponent, "app-document-upload", never, { "allowedTypes": "allowedTypes"; "params": "params"; "path": "path"; "maxSize": "maxSize"; "minSize": "minSize"; "docParams": "docParams"; "
|
|
61
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DocumentUploadComponent, "app-document-upload", never, { "allowedTypes": "allowedTypes"; "params": "params"; "path": "path"; "maxSize": "maxSize"; "minSize": "minSize"; "docParams": "docParams"; "multiple": "multiple"; "createDocument": "createDocument"; "allowedMaxNumberOfFiles": "allowedMaxNumberOfFiles"; "showAllowedTypesInErrorMess": "showAllowedTypesInErrorMess"; }, { "uploadSuccess": "uploadSuccess"; "uploadError": "uploadError"; }, never, ["*"]>;
|
|
65
62
|
}
|
|
@@ -12,6 +12,8 @@ export declare class CallApiService {
|
|
|
12
12
|
customQuery(query: {
|
|
13
13
|
url: string;
|
|
14
14
|
method: 'POST' | 'GET';
|
|
15
|
+
payload?: Record<string, any>;
|
|
16
|
+
predicateKey?: string;
|
|
15
17
|
}, params: Record<string, any>, headers?: Record<string, any>, body?: Record<string, any>): Observable<any>;
|
|
16
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<CallApiService, never>;
|
|
17
19
|
static ɵprov: i0.ɵɵInjectableDeclaration<CallApiService>;
|