cat-documents-ng 0.3.15 → 0.3.18
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/components/table-primary/table-primary.component.d.ts +8 -0
- package/fesm2022/cat-documents-ng.mjs +356 -352
- package/fesm2022/cat-documents-ng.mjs.map +1 -1
- package/lib/document/components/document-container/document-container.component.d.ts +0 -5
- package/lib/document/components/document-list/document-list.component.d.ts +10 -11
- package/lib/document/components/documents-menu/documents-menu.component.d.ts +16 -12
- package/lib/document/models/document-list-response.model.d.ts +1 -0
- package/lib/document/services/document-list.service.d.ts +0 -12
- package/lib/document/services/document-scroll.service.d.ts +55 -0
- package/lib/document/services/document-table-builder.service.d.ts +0 -7
- package/package.json +1 -1
- package/lib/document/services/document-category-reorder.service.d.ts +0 -53
|
@@ -17,6 +17,14 @@ export declare class TablePrimaryComponent implements OnChanges {
|
|
|
17
17
|
getFileExtension(fileName: string): string;
|
|
18
18
|
onRowClick(rowData: any): void;
|
|
19
19
|
getVisibleColumnCount(): number;
|
|
20
|
+
/**
|
|
21
|
+
* Formats document display name based on whether aliasName exists:
|
|
22
|
+
* - Without aliasName: docName on top, fileName below
|
|
23
|
+
* - With aliasName: aliasName on top, docName - fileName below
|
|
24
|
+
* @param rowData The row data containing docName, aliasName, and fileName
|
|
25
|
+
* @returns HTML string with proper formatting
|
|
26
|
+
*/
|
|
27
|
+
formatDocumentDisplayName(rowData: any): string;
|
|
20
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<TablePrimaryComponent, never>;
|
|
21
29
|
static ɵcmp: i0.ɵɵComponentDeclaration<TablePrimaryComponent, "lib-table-primary", never, { "tableData": { "alias": "tableData"; "required": false; }; "showHeader": { "alias": "showHeader"; "required": false; }; "tableStyle": { "alias": "tableStyle"; "required": false; }; }, { "rowClick": "rowClick"; }, never, never, false, never>;
|
|
22
30
|
}
|