cat-documents-ng 0.3.47 → 0.3.50
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 +41 -3
- package/fesm2022/cat-documents-ng.mjs +224 -121
- 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/lib/document/components/document-list/document-list.component.d.ts +14 -0
- package/lib/document/components/document-viewer/document-viewer.component.d.ts +11 -1
- package/lib/document/models/document-list-response.model.d.ts +2 -0
- package/lib/document/services/document-viewer.service.d.ts +2 -0
- package/lib/document/state/document.query.d.ts +5 -1
- package/lib/document/state/document.state.d.ts +2 -0
- package/lib/document/state/document.store.d.ts +2 -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,11 @@ 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;
|
|
283
|
+
static REQUESTED: string;
|
|
284
|
+
static ACCEPTED: string;
|
|
285
|
+
static UPLOADED: string;
|
|
286
|
+
static REJECTED: string;
|
|
274
287
|
static Menu: {
|
|
275
288
|
label: string;
|
|
276
289
|
items: ({
|
|
@@ -299,11 +312,22 @@ export declare class SHARED {
|
|
|
299
312
|
static ICON_WITH_DASH: string;
|
|
300
313
|
static SEARCH_KEY: string;
|
|
301
314
|
static APPROVED: string;
|
|
302
|
-
static UPLOADED: string;
|
|
303
315
|
static PENDING: string;
|
|
304
316
|
static DOT: string;
|
|
305
317
|
static PDF: string;
|
|
306
318
|
static PENDING_STATUS: string;
|
|
319
|
+
static EVENT_REQUESTED: string;
|
|
320
|
+
static EVENT_ACCEPTED: string;
|
|
321
|
+
static EVENT_REJECTED: string;
|
|
322
|
+
static EVENT_DEFAULT: string;
|
|
323
|
+
static ICON_REQUESTED: string;
|
|
324
|
+
static ICON_ACCEPTED: string;
|
|
325
|
+
static ICON_REJECTED: string;
|
|
326
|
+
static ICON_DEFAULT: string;
|
|
327
|
+
static ICON_CHECK_CIRCLE: string;
|
|
328
|
+
static ICON_FOLDER_PLUS: string;
|
|
329
|
+
static ICON_TIMES: string;
|
|
330
|
+
static ICON_FILE: string;
|
|
307
331
|
static JPG: string;
|
|
308
332
|
static PNG: string;
|
|
309
333
|
static XLSX: string;
|
|
@@ -323,12 +347,10 @@ export declare class SHARED {
|
|
|
323
347
|
static ICON_EXCLAMATION_TRIANGLE: string;
|
|
324
348
|
static ICON_CLOUD_UPLOAD: string;
|
|
325
349
|
static ICON_EYE: string;
|
|
326
|
-
static ICON_TIMES: string;
|
|
327
350
|
static ICON_CLOCK: string;
|
|
328
351
|
static ICON_FILE_PDF: string;
|
|
329
352
|
static ICON_IMAGE: string;
|
|
330
353
|
static ICON_FILE_EXCEL: string;
|
|
331
|
-
static ICON_FILE: string;
|
|
332
354
|
static ICON_DELETE: string;
|
|
333
355
|
static CELL_TYPE_DOCUMENT: string;
|
|
334
356
|
static CELL_TYPE_STATUS: string;
|
|
@@ -402,6 +424,22 @@ export declare class SHARED {
|
|
|
402
424
|
static VALIDATION_SELECT_APPLICANT: string;
|
|
403
425
|
static VALIDATION_ALL_FIELDS_COMPLETED: string;
|
|
404
426
|
static VALIDATION_OPTIONS_NOT_LOADED: string;
|
|
427
|
+
static CONTENT_TYPE: string;
|
|
428
|
+
static DOCUMENT_URL: string;
|
|
429
|
+
static DOC_VIEWER_WRAPPER: string;
|
|
430
|
+
static CSV_TABLE_CONTAINER: string;
|
|
431
|
+
static DOCX_CONTAINER: string;
|
|
432
|
+
static PDF_CONTAINER: string;
|
|
433
|
+
static IMAGE_CONTAINER: string;
|
|
434
|
+
static WHEEL_CAPTURE_OVERLAY: string;
|
|
435
|
+
static DOCUMENT_CONTENT_VIEWER_CONTAINER: string;
|
|
436
|
+
static EXCEL_ZOOM_WRAPPER: string;
|
|
437
|
+
static DOC_ZOOM_WRAPPER: string;
|
|
438
|
+
static CSV_ZOOM_WRAPPER: string;
|
|
439
|
+
static ERROR_PARSING_CSV_FILE: string;
|
|
440
|
+
static ERROR_LOADING_CSV_FILE: string;
|
|
441
|
+
static ERROR_PARSING_CSV_DATA: string;
|
|
442
|
+
static SMOOTH_SCROLL: ScrollBehavior;
|
|
405
443
|
}
|
|
406
444
|
/**
|
|
407
445
|
* `DUMMYDOCUMENTLIST` is a mock list of document objects used for testing and development purposes.
|