cat-documents-ng 0.2.73 → 0.2.74
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.
|
@@ -110,7 +110,7 @@ export declare class DocumentUploadComponent implements OnDestroy {
|
|
|
110
110
|
*/
|
|
111
111
|
onSelectedFiles(event: {
|
|
112
112
|
currentFiles: File[];
|
|
113
|
-
}): void
|
|
113
|
+
}): Promise<void>;
|
|
114
114
|
/**
|
|
115
115
|
* Loads the list of applicants for the current context.
|
|
116
116
|
* Sets loading state and handles success/error responses.
|
|
@@ -136,7 +136,7 @@ export declare class DocumentUploadComponent implements OnDestroy {
|
|
|
136
136
|
* Sets up progress tracking and upload listener for the file.
|
|
137
137
|
* @param file - The file to be uploaded
|
|
138
138
|
*/
|
|
139
|
-
handleTemplatedUpload(file: File): void
|
|
139
|
+
handleTemplatedUpload(file: File): Promise<void>;
|
|
140
140
|
/**
|
|
141
141
|
* Removes a document from the uploaded files list.
|
|
142
142
|
* Updates progress tracking and validates form.
|