cat-documents-ng 0.3.47 → 0.3.49
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/Shared/constant/SHARED.d.ts +25 -0
- package/fesm2022/cat-documents-ng.mjs +235 -221
- package/fesm2022/cat-documents-ng.mjs.map +1 -1
- package/lib/document/components/document-content-viewer/document-content-viewer.component.d.ts +0 -4
- package/lib/document/components/document-history/document-history.component.d.ts +6 -0
- package/package.json +1 -1
package/lib/document/components/document-content-viewer/document-content-viewer.component.d.ts
CHANGED
|
@@ -254,10 +254,6 @@ export declare class DocumentContentViewerComponent implements OnChanges, OnInit
|
|
|
254
254
|
* @returns {boolean} True if CSV data is valid
|
|
255
255
|
*/
|
|
256
256
|
private isCsvDataValid;
|
|
257
|
-
/**
|
|
258
|
-
* Handles document name update event from zoom controls
|
|
259
|
-
*/
|
|
260
|
-
onDocumentNameUpdated(): void;
|
|
261
257
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocumentContentViewerComponent, never>;
|
|
262
258
|
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; }; }, {}, never, never, false, never>;
|
|
263
259
|
}
|
|
@@ -133,6 +133,12 @@ export declare class DocumentHistoryComponent implements OnChanges {
|
|
|
133
133
|
* @returns Array of valid documents
|
|
134
134
|
*/
|
|
135
135
|
private getValidDocuments;
|
|
136
|
+
/**
|
|
137
|
+
* Determines if a timeline item should be hidden
|
|
138
|
+
* @param item - The history item
|
|
139
|
+
* @returns True if the item should be hidden
|
|
140
|
+
*/
|
|
141
|
+
private shouldHideItem;
|
|
136
142
|
/**
|
|
137
143
|
* Listen for clicks outside the dropdown to close it
|
|
138
144
|
*/
|