cat-documents-ng 0.2.57 → 0.2.58
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 +2 -0
- package/fesm2022/cat-documents-ng.mjs +615 -350
- package/fesm2022/cat-documents-ng.mjs.map +1 -1
- package/lib/document/components/document-search/document-search.component.d.ts +1 -1
- package/lib/document/components/document-upload/document-upload.component.d.ts +199 -6
- package/lib/document/components/documents-menu/documents-menu.component.d.ts +26 -0
- package/lib/document/components/folder-container/folder-container.component.d.ts +25 -2
- package/lib/document/components/sidebar/sidebar.component.d.ts +63 -0
- package/lib/document/document.module.d.ts +2 -2
- package/lib/document/services/document-history.service.d.ts +1 -17
- package/lib/document/services/document-upload-business.service.d.ts +11 -4
- package/package.json +1 -1
- package/public-api.d.ts +1 -1
- package/lib/document/components/common-sidebar/common-sidebar.component.d.ts +0 -47
|
@@ -21,6 +21,7 @@ export declare class SHARED {
|
|
|
21
21
|
static HIDDEN: string;
|
|
22
22
|
static NO_DOCUMENTS_FOUND: string;
|
|
23
23
|
static DOCUMENT_TYPES_DELETE: string;
|
|
24
|
+
static SUCCESS_MESSAGE: string;
|
|
24
25
|
/**
|
|
25
26
|
* Represents the info.
|
|
26
27
|
*/
|
|
@@ -224,6 +225,7 @@ export declare class SHARED {
|
|
|
224
225
|
static APPLICANT: string;
|
|
225
226
|
static CATAGORIES: string;
|
|
226
227
|
static DOCUMENTS: string;
|
|
228
|
+
static UPLOAD_FAILED: string;
|
|
227
229
|
static Menu: {
|
|
228
230
|
label: string;
|
|
229
231
|
items: ({
|