@ieeesa-npm/presentation 0.26.1 → 0.26.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-upload/file-upload.component.mjs +3 -4
- package/esm2022/lib/services/file-upload.service.mjs +2 -4
- package/fesm2022/ieeesa-npm-presentation.mjs +3 -6
- package/fesm2022/ieeesa-npm-presentation.mjs.map +1 -1
- package/lib/components/file-upload/file-upload.component.d.ts +5 -0
- package/lib/services/file-upload.service.d.ts +7 -1
- package/package.json +1 -1
|
@@ -217,6 +217,11 @@ export declare class FileUploadComponent implements OnInit {
|
|
|
217
217
|
hexCodeInput: string;
|
|
218
218
|
palette: string;
|
|
219
219
|
};
|
|
220
|
+
/**
|
|
221
|
+
* Handles the selected file(s) and emits FileUpload event emitter for uploading the file(s).
|
|
222
|
+
* @param {(File | FileList)} file
|
|
223
|
+
* @memberof FileUploadComponent
|
|
224
|
+
*/
|
|
220
225
|
defaultColor: string;
|
|
221
226
|
ariaDescription: string;
|
|
222
227
|
ariaDescribedById: string;
|
|
@@ -190,7 +190,13 @@ export declare class FileUploadService implements OnDestroy {
|
|
|
190
190
|
label: {
|
|
191
191
|
initial: string;
|
|
192
192
|
};
|
|
193
|
-
};
|
|
193
|
+
}; /**
|
|
194
|
+
* Return distinct message for sent, upload progress, & response events.
|
|
195
|
+
* @param {HttpEvent<any>} event
|
|
196
|
+
* @param {(File | FileList)} file
|
|
197
|
+
* @return {*}
|
|
198
|
+
* @memberof FileUploadService
|
|
199
|
+
*/
|
|
194
200
|
loader: {
|
|
195
201
|
ariaLabel: {
|
|
196
202
|
spinner: string;
|