cat-documents-ng 0.3.5 → 0.3.8
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/URLS.d.ts +1 -0
- package/fesm2022/cat-documents-ng.mjs +190 -140
- package/fesm2022/cat-documents-ng.mjs.map +1 -1
- package/lib/document/models/document-list-response.model.d.ts +1 -0
- package/lib/document/services/document-table-builder.service.d.ts +7 -0
- package/package.json +1 -1
|
@@ -9,6 +9,13 @@ export declare class DocumentTableBuilderService {
|
|
|
9
9
|
* @returns TableData object
|
|
10
10
|
*/
|
|
11
11
|
buildDocumentTable(documents: DocumentListItem[]): TableData;
|
|
12
|
+
/**
|
|
13
|
+
* Formats document name to include aliasName if available
|
|
14
|
+
* @param docName The document name
|
|
15
|
+
* @param aliasName The alias name (optional)
|
|
16
|
+
* @returns Formatted display name
|
|
17
|
+
*/
|
|
18
|
+
private formatDocumentDisplayName;
|
|
12
19
|
/**
|
|
13
20
|
* Gets completion count for a category
|
|
14
21
|
* @param category Document category
|