cat-documents-ng 0.2.43 → 0.2.45
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 +9 -0
- package/fesm2022/cat-documents-ng.mjs +605 -220
- package/fesm2022/cat-documents-ng.mjs.map +1 -1
- package/lib/document/components/document-actions/document-actions.component.d.ts +8 -1
- package/lib/document/components/document-container/document-container.component.d.ts +11 -3
- package/lib/document/components/document-list/document-list.component.d.ts +10 -2
- package/lib/document/components/document-status/document-status.component.d.ts +5 -3
- package/lib/document/components/documents-menu/documents-menu.component.d.ts +4 -0
- package/lib/document/services/document-http.service.d.ts +2 -2
- package/lib/document/services/document-table-builder.service.d.ts +3 -1
- package/lib/document/services/document-viewer.service.d.ts +19 -8
- package/lib/document/services/document.service.d.ts +15 -6
- package/lib/document/state/document.query.d.ts +98 -0
- package/lib/document/state/document.state.d.ts +9 -0
- package/lib/document/state/document.store.d.ts +11 -0
- package/package.json +1 -1
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
* These constants are related to document statuses and other shared data.
|
|
4
4
|
*/
|
|
5
5
|
export declare class SHARED {
|
|
6
|
+
/**
|
|
7
|
+
* Represents the info.
|
|
8
|
+
*/
|
|
9
|
+
static UNKNOWN_USER: string;
|
|
10
|
+
/**
|
|
11
|
+
* Represents the info.
|
|
12
|
+
*/
|
|
13
|
+
static ACTIONS: string;
|
|
6
14
|
/**
|
|
7
15
|
* Represents the info.
|
|
8
16
|
*/
|
|
@@ -11,6 +19,7 @@ export declare class SHARED {
|
|
|
11
19
|
* Represents the info.
|
|
12
20
|
*/
|
|
13
21
|
static HIDDEN: string;
|
|
22
|
+
static NO_DOCUMENTS_FOUND: string;
|
|
14
23
|
static DOCUMENT_TYPES_DELETE: string;
|
|
15
24
|
/**
|
|
16
25
|
* Represents the info.
|