cat-documents-ng 0.3.59 → 0.3.61

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.
@@ -31,6 +31,8 @@ export declare class DocumentUploadComponent implements OnDestroy {
31
31
  contextId: string;
32
32
  /** Whether to hide the form and show only upload functionality */
33
33
  isFormHide: boolean;
34
+ /** Whether to hide the multi-attachment button */
35
+ isMultiAttachmentHidden: boolean;
34
36
  /** Reference to the file upload component */
35
37
  fileUploader: FileUpload;
36
38
  /** Event emitted when form validation state changes */
@@ -301,5 +303,5 @@ export declare class DocumentUploadComponent implements OnDestroy {
301
303
  */
302
304
  ngOnDestroy(): void;
303
305
  static ɵfac: i0.ɵɵFactoryDeclaration<DocumentUploadComponent, never>;
304
- static ɵcmp: i0.ɵɵComponentDeclaration<DocumentUploadComponent, "lib-document-upload", never, { "contextId": { "alias": "contextId"; "required": false; }; "isFormHide": { "alias": "isFormHide"; "required": false; }; }, { "onFormValidationChange": "onFormValidationChange"; "onUploadSuccess": "onUploadSuccess"; "onFilesUploaded": "onFilesUploaded"; "onFileRemoved": "onFileRemoved"; }, never, never, false, never>;
306
+ static ɵcmp: i0.ɵɵComponentDeclaration<DocumentUploadComponent, "lib-document-upload", never, { "contextId": { "alias": "contextId"; "required": false; }; "isFormHide": { "alias": "isFormHide"; "required": false; }; "isMultiAttachmentHidden": { "alias": "isMultiAttachmentHidden"; "required": false; }; }, { "onFormValidationChange": "onFormValidationChange"; "onUploadSuccess": "onUploadSuccess"; "onFilesUploaded": "onFilesUploaded"; "onFileRemoved": "onFileRemoved"; }, never, never, false, never>;
305
307
  }
@@ -37,7 +37,8 @@ export declare class DocumentService {
37
37
  create(entity: any): Observable<any>;
38
38
  /**
39
39
  * Fetches all documents from the backend.
40
- * @returns {Observable<DocumentModel[]>} Observable that emits an array of documents.
40
+ * @returns {Observable<DocumentModel
41
+ * []>} Observable that emits an array of documents.
41
42
  */
42
43
  getAll(): Observable<DocumentModel[]>;
43
44
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cat-documents-ng",
3
- "version": "0.3.59",
3
+ "version": "0.3.61",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^19.0.0",
6
6
  "@angular/core": "^19.0.0"