@ieeesa-npm/presentation 0.29.6 → 0.29.7
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.
|
@@ -282,6 +282,10 @@ export declare class FileUploadComponent implements OnInit {
|
|
|
282
282
|
maxFilesUploadedOnce: number;
|
|
283
283
|
};
|
|
284
284
|
};
|
|
285
|
+
/**
|
|
286
|
+
* Based on isMultiFileUpload flag return files to download.
|
|
287
|
+
* @memberof FileUploadComponent
|
|
288
|
+
*/
|
|
285
289
|
list: {
|
|
286
290
|
defaultIndentation: number;
|
|
287
291
|
dragAndDropIconUrl: string;
|
|
@@ -304,6 +308,11 @@ export declare class FileUploadComponent implements OnInit {
|
|
|
304
308
|
ariaLabel: string;
|
|
305
309
|
iconURL: string;
|
|
306
310
|
toolTip: string;
|
|
311
|
+
/**
|
|
312
|
+
* Sets empty value to file form control once it is clicked.
|
|
313
|
+
* @param {Event} event
|
|
314
|
+
* @memberof FileUploadComponent
|
|
315
|
+
*/
|
|
307
316
|
disabled: boolean;
|
|
308
317
|
}[];
|
|
309
318
|
preSignedDuration: string;
|
|
@@ -395,6 +404,7 @@ export declare class FileUploadComponent implements OnInit {
|
|
|
395
404
|
uploadSelectedFiles: EventEmitter<File | FileList>;
|
|
396
405
|
downloadSelectedFile: EventEmitter<File | DownloadAttachment>;
|
|
397
406
|
apiBaseUrl: string;
|
|
407
|
+
selectedFileNamesCount: number;
|
|
398
408
|
constructor(formUtilityService: FormUtilityService, fileUploadService: FileUploadService);
|
|
399
409
|
/**
|
|
400
410
|
* Initializes component properties and retrieves configuration.
|