cat-documents-ng 0.3.83 → 0.3.84
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/README.md +322 -322
- package/Shared/components/table-primary/table-primary.component.d.ts +1 -1
- package/Shared/constant/SHARED.d.ts +7 -1
- package/fesm2022/cat-documents-ng.mjs +254 -203
- package/fesm2022/cat-documents-ng.mjs.map +1 -1
- package/lib/document/components/document-content-viewer/document-content-viewer.component.d.ts +2 -5
- package/lib/document/components/document-history/document-history.component.d.ts +9 -1
- package/lib/document/models/document-history.model.d.ts +13 -0
- package/lib/document/models/document-list-response.model.d.ts +1 -0
- package/lib/document/services/document-upload-business.service.d.ts +4 -4
- package/lib/document/services/document-upload.service.d.ts +1 -1
- package/lib/document/services/document-viewer.service.d.ts +1 -1
- package/package.json +1 -1
|
@@ -159,7 +159,7 @@ export declare class SHARED {
|
|
|
159
159
|
* @static
|
|
160
160
|
* @type {{}}
|
|
161
161
|
*/
|
|
162
|
-
static EMPTY_ARRAY:
|
|
162
|
+
static EMPTY_ARRAY: any[];
|
|
163
163
|
/**
|
|
164
164
|
* Represent contextId.
|
|
165
165
|
* @static
|
|
@@ -222,6 +222,9 @@ export declare class SHARED {
|
|
|
222
222
|
static UPDATE_DOCUMENT_NAME: string;
|
|
223
223
|
static WIDTH: string;
|
|
224
224
|
static BASEZINDEX: number;
|
|
225
|
+
static DOCX: string;
|
|
226
|
+
static DOC: string;
|
|
227
|
+
static CSV: string;
|
|
225
228
|
static CLOSE_ICON: string;
|
|
226
229
|
static SAVE: string;
|
|
227
230
|
static UPLOAD_PROGRESS_100: number;
|
|
@@ -316,6 +319,7 @@ export declare class SHARED {
|
|
|
316
319
|
static PENDING: string;
|
|
317
320
|
static DOT: string;
|
|
318
321
|
static PDF: string;
|
|
322
|
+
static PDF2: string;
|
|
319
323
|
static PENDING_STATUS: string;
|
|
320
324
|
static EVENT_REQUESTED: string;
|
|
321
325
|
static EVENT_ACCEPTED: string;
|
|
@@ -332,6 +336,7 @@ export declare class SHARED {
|
|
|
332
336
|
static JPG: string;
|
|
333
337
|
static PNG: string;
|
|
334
338
|
static XLSX: string;
|
|
339
|
+
static XLS: string;
|
|
335
340
|
static APPROVED_STATUS: string;
|
|
336
341
|
static ALERT_STATUS: string;
|
|
337
342
|
static UPLOADED_STATUS: string;
|
|
@@ -512,6 +517,7 @@ export declare const DocumentAlertList: {
|
|
|
512
517
|
isAlert: boolean;
|
|
513
518
|
alertMessage: string;
|
|
514
519
|
}[];
|
|
520
|
+
export declare const OPEN_DOCUMENT_EXTENSIONS: string[];
|
|
515
521
|
/**
|
|
516
522
|
* Dummy data for document sections with detailed document lists.
|
|
517
523
|
* Based on the document management interface structure.
|