nuxeo-development-framework 4.3.2 → 4.3.3
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 +18 -8
- package/bundles/nuxeo-development-framework.umd.js.map +1 -1
- package/esm2015/lib/components/documents/components/document-upload/document-upload.component.js +17 -7
- package/esm2015/lib/components/documents/components/documents/documents.component.js +1 -1
- package/esm2015/lib/components/spell-checker-field/spell-checker-field.module.js +1 -1
- package/esm2015/lib/components/table/page-sizes-list/page-sizes-list.component.js +2 -2
- package/fesm2015/nuxeo-development-framework.js +18 -8
- 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
|
@@ -33,6 +33,8 @@ export declare class DocumentUploadComponent {
|
|
|
33
33
|
path: any;
|
|
34
34
|
/** Max allowed upload size */
|
|
35
35
|
maxSize: number;
|
|
36
|
+
/** min allowed upload size */
|
|
37
|
+
minSize: number;
|
|
36
38
|
/** Params to be sent with body when creating a document */
|
|
37
39
|
docParams: {};
|
|
38
40
|
/** Can upload multiple files at once */
|
|
@@ -56,5 +58,5 @@ export declare class DocumentUploadComponent {
|
|
|
56
58
|
uploadDocument(files: any): void;
|
|
57
59
|
getFileExtension(name: any): string;
|
|
58
60
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocumentUploadComponent, 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, ["*"]>;
|
|
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, ["*"]>;
|
|
60
62
|
}
|