@ieeesa-npm/presentation 0.28.2 → 0.28.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/esm2022/lib/components/file-download/file-download.component.mjs +5 -3
- package/esm2022/lib/models/align-type.model.mjs +3 -1
- package/esm2022/lib/models/file-download-config.model.mjs +1 -1
- package/fesm2022/ieeesa-npm-presentation.mjs +5 -2
- package/fesm2022/ieeesa-npm-presentation.mjs.map +1 -1
- package/lib/components/file-download/file-download.component.d.ts +3 -6
- package/lib/models/align-type.model.d.ts +3 -1
- package/lib/models/file-download-config.model.d.ts +1 -1
- package/package.json +1 -1
|
@@ -5,6 +5,7 @@ import { FileDownloadConfig } from '../../models/file-download-config.model';
|
|
|
5
5
|
import { DownloadAttachment } from '../../models/download-file.model';
|
|
6
6
|
import { Subject } from 'rxjs';
|
|
7
7
|
import { SharedService } from '@ieeesa-npm/shared';
|
|
8
|
+
import { AlignType } from '../../models/align-type.model';
|
|
8
9
|
import * as i0 from "@angular/core";
|
|
9
10
|
export declare class FileDownloadComponent implements OnInit, OnDestroy {
|
|
10
11
|
formUtilityService: FormUtilityService;
|
|
@@ -132,12 +133,7 @@ export declare class FileDownloadComponent implements OnInit, OnDestroy {
|
|
|
132
133
|
};
|
|
133
134
|
ariaLabel: {
|
|
134
135
|
helpLink: string;
|
|
135
|
-
hamburgerMenu: string;
|
|
136
|
-
* Emits deleteSelectedFile event or deletes the selected file by calling deleteFile() if the file can be deleted internally.
|
|
137
|
-
* @param {number} index
|
|
138
|
-
* @param {File } file
|
|
139
|
-
* @memberof FileDownloadedComponent
|
|
140
|
-
*/
|
|
136
|
+
hamburgerMenu: string;
|
|
141
137
|
};
|
|
142
138
|
label: {
|
|
143
139
|
signOut: string;
|
|
@@ -314,6 +310,7 @@ export declare class FileDownloadComponent implements OnInit, OnDestroy {
|
|
|
314
310
|
destroy$: Subject<boolean>;
|
|
315
311
|
preSignedUrl: string;
|
|
316
312
|
fileName: string;
|
|
313
|
+
alignType: typeof AlignType;
|
|
317
314
|
downloadFiles: File | FileList | any | DownloadAttachment[];
|
|
318
315
|
fileDownloadConfig: FileDownloadConfig;
|
|
319
316
|
isPublicAPI?: boolean;
|