cat-documents-ng 0.3.30 → 0.3.31
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.
|
@@ -64,6 +64,26 @@ export declare class DocumentHistoryComponent {
|
|
|
64
64
|
* @param docName - The name of the document
|
|
65
65
|
*/
|
|
66
66
|
downloadDocument(documentUrl: string, docName?: string): void;
|
|
67
|
+
/**
|
|
68
|
+
* Test method to verify click events are working
|
|
69
|
+
*/
|
|
70
|
+
testClick(): void;
|
|
71
|
+
/**
|
|
72
|
+
* Test method to verify download functionality
|
|
73
|
+
*/
|
|
74
|
+
testDownload(): void;
|
|
75
|
+
/**
|
|
76
|
+
* Debug method for mouse down events
|
|
77
|
+
*/
|
|
78
|
+
onMouseDown(itemName: string | undefined): void;
|
|
79
|
+
/**
|
|
80
|
+
* Debug method for mouse up events
|
|
81
|
+
*/
|
|
82
|
+
onMouseUp(itemName: string | undefined): void;
|
|
83
|
+
/**
|
|
84
|
+
* Debug method for click events
|
|
85
|
+
*/
|
|
86
|
+
onElementClick(itemName: string | undefined, documentUrl: string | undefined): void;
|
|
67
87
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocumentHistoryComponent, never>;
|
|
68
88
|
static ɵcmp: i0.ɵɵComponentDeclaration<DocumentHistoryComponent, "document-history", never, { "historyData": { "alias": "historyData"; "required": false; }; "showHistory": { "alias": "showHistory"; "required": false; }; }, {}, never, never, false, never>;
|
|
69
89
|
}
|