cat-documents-ng 0.2.54 → 0.2.56
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/Shared/constant/URLS.d.ts +28 -0
- package/fesm2022/cat-documents-ng.mjs +1347 -521
- package/fesm2022/cat-documents-ng.mjs.map +1 -1
- package/lib/document/components/common-sidebar/common-sidebar.component.d.ts +47 -0
- package/lib/document/components/document-list/document-list.component.d.ts +5 -7
- package/lib/document/components/document-search/document-search.component.d.ts +4 -3
- package/lib/document/components/document-upload/document-upload.component.d.ts +59 -96
- package/lib/document/components/documents-menu/documents-menu.component.d.ts +4 -0
- package/lib/document/components/folder-container/folder-container.component.d.ts +33 -0
- package/lib/document/document.module.d.ts +25 -23
- package/lib/document/services/document-history.service.d.ts +29 -1
- package/lib/document/services/document-http.service.d.ts +26 -0
- package/lib/document/services/document-list.service.d.ts +0 -5
- package/lib/document/services/document-upload-business.service.d.ts +90 -0
- package/lib/document/services/document-upload-data.service.d.ts +40 -0
- package/lib/document/services/document-upload-form.service.d.ts +33 -0
- package/lib/document/services/document-upload.service.d.ts +10 -2
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -215,6 +215,15 @@ export declare class SHARED {
|
|
|
215
215
|
* @type {string}
|
|
216
216
|
*/
|
|
217
217
|
static UPDATE_DOCUMENT_NAME: string;
|
|
218
|
+
static WIDTH: string;
|
|
219
|
+
static BASEZINDEX: number;
|
|
220
|
+
static CLOSE_ICON: string;
|
|
221
|
+
static SAVE: string;
|
|
222
|
+
static UPLOAD_PROGRESS_100: number;
|
|
223
|
+
static UPLOAD_PROGRESS_10: number;
|
|
224
|
+
static APPLICANT: string;
|
|
225
|
+
static CATAGORIES: string;
|
|
226
|
+
static DOCUMENTS: string;
|
|
218
227
|
static Menu: {
|
|
219
228
|
label: string;
|
|
220
229
|
items: ({
|
|
@@ -12,6 +12,13 @@ export declare class URLS {
|
|
|
12
12
|
* @type {string}
|
|
13
13
|
*/
|
|
14
14
|
static CONFIGFILEURL: string;
|
|
15
|
+
/**
|
|
16
|
+
* The URL endpoint for document uploads.
|
|
17
|
+
* Used to send documents to the server for storage or processing.
|
|
18
|
+
* @static
|
|
19
|
+
* @type {string}
|
|
20
|
+
*/
|
|
21
|
+
static DOCUMENT_UPLOAD_FILE: string;
|
|
15
22
|
/**
|
|
16
23
|
* The URL endpoint for document uploads.
|
|
17
24
|
* Used to send documents to the server for storage or processing.
|
|
@@ -46,6 +53,27 @@ export declare class URLS {
|
|
|
46
53
|
* @type {string}
|
|
47
54
|
*/
|
|
48
55
|
static DOCUMENT_TYPES: string;
|
|
56
|
+
/**
|
|
57
|
+
* The URL endpoint for getting categories by source (Applicant/Application).
|
|
58
|
+
* Used to fetch document categories based on the selected source.
|
|
59
|
+
* @static
|
|
60
|
+
* @type {string}
|
|
61
|
+
*/
|
|
62
|
+
static GET_CATEGORIES_BY_SOURCE: string;
|
|
63
|
+
/**
|
|
64
|
+
* The URL endpoint for getting document types by category ID.
|
|
65
|
+
* Used to fetch document types based on the selected category.
|
|
66
|
+
* @static
|
|
67
|
+
* @type {string}
|
|
68
|
+
*/
|
|
69
|
+
static GET_DOCUMENT_TYPES_BY_CATEGORY: string;
|
|
70
|
+
/**
|
|
71
|
+
* The URL endpoint for saving document upload data.
|
|
72
|
+
* Used to save the complete document upload information.
|
|
73
|
+
* @static
|
|
74
|
+
* @type {string}
|
|
75
|
+
*/
|
|
76
|
+
static SAVE_DOCUMENT_UPLOAD: string;
|
|
49
77
|
/**
|
|
50
78
|
* The query parameter to pass a context ID in API requests.
|
|
51
79
|
* @static
|