cat-documents-ng 0.3.80 → 0.3.83
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/lib/document/components/document-content-viewer/document-content-viewer.component.d.ts
CHANGED
|
@@ -123,6 +123,11 @@ 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;
|
|
126
131
|
/**
|
|
127
132
|
* Computed property to determine if the document is a PDF
|
|
128
133
|
* @type {boolean}
|
|
@@ -254,8 +259,6 @@ export declare class DocumentContentViewerComponent implements OnChanges, OnInit
|
|
|
254
259
|
* @returns {boolean} True if CSV data is valid
|
|
255
260
|
*/
|
|
256
261
|
private isCsvDataValid;
|
|
257
|
-
private getFileExtension;
|
|
258
|
-
get isImage(): boolean;
|
|
259
262
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocumentContentViewerComponent, never>;
|
|
260
263
|
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>;
|
|
261
264
|
}
|