nuxeo-development-framework 3.6.0 → 3.6.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 +20 -4
- package/bundles/nuxeo-development-framework.umd.js.map +1 -1
- package/esm2015/lib/components/documents/components/document-upload/document-upload.component.js +20 -4
- package/esm2015/lib/components/documents/components/documents/documents.component.js +1 -1
- package/fesm2015/nuxeo-development-framework.js +20 -4
- package/fesm2015/nuxeo-development-framework.js.map +1 -1
- package/lib/components/documents/components/document-upload/document-upload.component.d.ts +3 -1
- package/package.json +1 -1
|
@@ -41,6 +41,7 @@ export declare class DocumentUploadComponent {
|
|
|
41
41
|
createDocument: boolean;
|
|
42
42
|
/** Max allowed number of files size */
|
|
43
43
|
allowedMaxNumberOfFiles: number;
|
|
44
|
+
showAllowedTypesInErrorMess: boolean;
|
|
44
45
|
/** Event emitted on document upload success, it will have document or batch object based on configuration */
|
|
45
46
|
uploadSuccess: EventEmitter<any>;
|
|
46
47
|
/** Event emitted when an error occurs while attempting upload */
|
|
@@ -53,6 +54,7 @@ export declare class DocumentUploadComponent {
|
|
|
53
54
|
isTypeChecked(file: any): boolean;
|
|
54
55
|
isMaxNumberOfFiles(selectedFiles: any): boolean;
|
|
55
56
|
uploadDocument(files: any): void;
|
|
57
|
+
getFileExtension(name: any): string;
|
|
56
58
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocumentUploadComponent, never>;
|
|
57
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DocumentUploadComponent, "app-document-upload", never, { "allowedTypes": "allowedTypes"; "params": "params"; "path": "path"; "maxSize": "maxSize"; "docParams": "docParams"; "multiple": "multiple"; "createDocument": "createDocument"; "allowedMaxNumberOfFiles": "allowedMaxNumberOfFiles"; }, { "uploadSuccess": "uploadSuccess"; "uploadError": "uploadError"; }, never, ["*"]>;
|
|
59
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DocumentUploadComponent, "app-document-upload", never, { "allowedTypes": "allowedTypes"; "params": "params"; "path": "path"; "maxSize": "maxSize"; "docParams": "docParams"; "multiple": "multiple"; "createDocument": "createDocument"; "allowedMaxNumberOfFiles": "allowedMaxNumberOfFiles"; "showAllowedTypesInErrorMess": "showAllowedTypesInErrorMess"; }, { "uploadSuccess": "uploadSuccess"; "uploadError": "uploadError"; }, never, ["*"]>;
|
|
58
60
|
}
|