cat-documents-ng 0.3.47 → 0.3.49
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 +25 -0
- package/fesm2022/cat-documents-ng.mjs +235 -221
- package/fesm2022/cat-documents-ng.mjs.map +1 -1
- package/lib/document/components/document-content-viewer/document-content-viewer.component.d.ts +0 -4
- package/lib/document/components/document-history/document-history.component.d.ts +6 -0
- package/package.json +1 -1
|
@@ -259,6 +259,14 @@ export declare class SHARED {
|
|
|
259
259
|
static ERROR_PARSING_SHEET_DATA: string;
|
|
260
260
|
static REFRESH_TRIGGER: string;
|
|
261
261
|
static PDF_TYPE: string;
|
|
262
|
+
static EXCEL_XLSX_MIME_TYPE: string;
|
|
263
|
+
static EXCEL_XLS_MIME_TYPE: string;
|
|
264
|
+
static WORD_DOCX_MIME_TYPE: string;
|
|
265
|
+
static WORD_DOC_MIME_TYPE: string;
|
|
266
|
+
static CSV_MIME_TYPE: string;
|
|
267
|
+
static EMAIL_RFC822_MIME_TYPE: string;
|
|
268
|
+
static EMAIL_OUTLOOK_MIME_TYPE: string;
|
|
269
|
+
static OPEN_DOCUMENT_MIME_TYPE: string;
|
|
262
270
|
static ICON_FILE_WORD: string;
|
|
263
271
|
static ICON_ENVELOPE: string;
|
|
264
272
|
static PDF_DOCUMENT: string;
|
|
@@ -271,6 +279,7 @@ export declare class SHARED {
|
|
|
271
279
|
static NO_DATA_AVAILABLE: string;
|
|
272
280
|
static ERROR_PARSING_EXCEL_FILE: string;
|
|
273
281
|
static ERROR_PARSING_EXCEL_FILE_STRUCTURE: string;
|
|
282
|
+
static NAME_UPDATE_ACTION: string;
|
|
274
283
|
static Menu: {
|
|
275
284
|
label: string;
|
|
276
285
|
items: ({
|
|
@@ -402,6 +411,22 @@ export declare class SHARED {
|
|
|
402
411
|
static VALIDATION_SELECT_APPLICANT: string;
|
|
403
412
|
static VALIDATION_ALL_FIELDS_COMPLETED: string;
|
|
404
413
|
static VALIDATION_OPTIONS_NOT_LOADED: string;
|
|
414
|
+
static CONTENT_TYPE: string;
|
|
415
|
+
static DOCUMENT_URL: string;
|
|
416
|
+
static DOC_VIEWER_WRAPPER: string;
|
|
417
|
+
static CSV_TABLE_CONTAINER: string;
|
|
418
|
+
static DOCX_CONTAINER: string;
|
|
419
|
+
static PDF_CONTAINER: string;
|
|
420
|
+
static IMAGE_CONTAINER: string;
|
|
421
|
+
static WHEEL_CAPTURE_OVERLAY: string;
|
|
422
|
+
static DOCUMENT_CONTENT_VIEWER_CONTAINER: string;
|
|
423
|
+
static EXCEL_ZOOM_WRAPPER: string;
|
|
424
|
+
static DOC_ZOOM_WRAPPER: string;
|
|
425
|
+
static CSV_ZOOM_WRAPPER: string;
|
|
426
|
+
static ERROR_PARSING_CSV_FILE: string;
|
|
427
|
+
static ERROR_LOADING_CSV_FILE: string;
|
|
428
|
+
static ERROR_PARSING_CSV_DATA: string;
|
|
429
|
+
static SMOOTH_SCROLL: ScrollBehavior;
|
|
405
430
|
}
|
|
406
431
|
/**
|
|
407
432
|
* `DUMMYDOCUMENTLIST` is a mock list of document objects used for testing and development purposes.
|