cat-documents-ng 0.3.79 → 0.3.80

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.
@@ -123,11 +123,6 @@ export declare class DocumentContentViewerComponent implements OnChanges, OnInit
123
123
  * @param {DocumentZoomService} zoomService - Service for handling zoom functionality
124
124
  */
125
125
  constructor(excelParserService: ExcelParserService, csvParserService: CsvParserService, documentHttpService: DocumentHttpService, zoomService: DocumentZoomService);
126
- /**
127
- * Computed property to determine if the document is an image
128
- * @type {boolean}
129
- */
130
- get isImage(): boolean;
131
126
  /**
132
127
  * Computed property to determine if the document is a PDF
133
128
  * @type {boolean}
@@ -259,6 +254,8 @@ export declare class DocumentContentViewerComponent implements OnChanges, OnInit
259
254
  * @returns {boolean} True if CSV data is valid
260
255
  */
261
256
  private isCsvDataValid;
257
+ private getFileExtension;
258
+ get isImage(): boolean;
262
259
  static ɵfac: i0.ɵɵFactoryDeclaration<DocumentContentViewerComponent, never>;
263
260
  static ɵcmp: i0.ɵɵComponentDeclaration<DocumentContentViewerComponent, "document-content-viewer", never, { "documentUrl": { "alias": "documentUrl"; "required": false; }; "contentType": { "alias": "contentType"; "required": false; }; "documentName": { "alias": "documentName"; "required": false; }; "selectedDocument": { "alias": "selectedDocument"; "required": false; }; "contextId": { "alias": "contextId"; "required": false; }; "isFormHide": { "alias": "isFormHide"; "required": false; }; }, {}, never, never, false, never>;
264
261
  }
@@ -37,8 +37,7 @@ 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
41
- * []>} Observable that emits an array of documents.
40
+ * @returns {Observable<DocumentModel[]>} Observable that emits an array of documents.
42
41
  */
43
42
  getAll(): Observable<DocumentModel[]>;
44
43
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cat-documents-ng",
3
- "version": "0.3.79",
3
+ "version": "0.3.80",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^19.0.0",
6
6
  "@angular/core": "^19.0.0"