cat-documents-ng 0.3.26 → 0.3.29
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/ERROR.d.ts +2 -0
- package/fesm2022/cat-documents-ng.mjs +262 -163
- package/fesm2022/cat-documents-ng.mjs.map +1 -1
- package/lib/document/components/document-actions/document-actions.component.d.ts +16 -1
- package/lib/document/components/document-container/document-container.component.d.ts +1 -2
- package/lib/document/components/document-list/document-list.component.d.ts +11 -2
- package/lib/document/components/document-viewer/document-viewer.component.d.ts +13 -2
- package/lib/document/services/document-history.service.d.ts +6 -0
- package/package.json +1 -1
|
@@ -47,4 +47,6 @@ export declare class ERRORS {
|
|
|
47
47
|
static ERROR_FETCHING_DOCUMENTS_BY_STATUS: string;
|
|
48
48
|
static ERROR_FETCHING_DOCUMENTS_BY_CATEGORY: string;
|
|
49
49
|
static ERROR_CALLING_API_WITH_SELECTION: string;
|
|
50
|
+
static ERROR_FILE_NAME_INVALID_CHARACTERS: string;
|
|
51
|
+
static ERROR_FILE_NAME_EMPTY: string;
|
|
50
52
|
}
|