cat-documents-ng 0.3.49 → 0.3.51
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 +16 -3
- package/fesm2022/cat-documents-ng.mjs +150 -61
- package/fesm2022/cat-documents-ng.mjs.map +1 -1
- 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
|
@@ -280,6 +280,10 @@ export declare class SHARED {
|
|
|
280
280
|
static ERROR_PARSING_EXCEL_FILE: string;
|
|
281
281
|
static ERROR_PARSING_EXCEL_FILE_STRUCTURE: string;
|
|
282
282
|
static NAME_UPDATE_ACTION: string;
|
|
283
|
+
static REQUESTED: string;
|
|
284
|
+
static ACCEPTED: string;
|
|
285
|
+
static UPLOADED: string;
|
|
286
|
+
static REJECTED: string;
|
|
283
287
|
static Menu: {
|
|
284
288
|
label: string;
|
|
285
289
|
items: ({
|
|
@@ -308,11 +312,22 @@ export declare class SHARED {
|
|
|
308
312
|
static ICON_WITH_DASH: string;
|
|
309
313
|
static SEARCH_KEY: string;
|
|
310
314
|
static APPROVED: string;
|
|
311
|
-
static UPLOADED: string;
|
|
312
315
|
static PENDING: string;
|
|
313
316
|
static DOT: string;
|
|
314
317
|
static PDF: string;
|
|
315
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;
|
|
316
331
|
static JPG: string;
|
|
317
332
|
static PNG: string;
|
|
318
333
|
static XLSX: string;
|
|
@@ -332,12 +347,10 @@ export declare class SHARED {
|
|
|
332
347
|
static ICON_EXCLAMATION_TRIANGLE: string;
|
|
333
348
|
static ICON_CLOUD_UPLOAD: string;
|
|
334
349
|
static ICON_EYE: string;
|
|
335
|
-
static ICON_TIMES: string;
|
|
336
350
|
static ICON_CLOCK: string;
|
|
337
351
|
static ICON_FILE_PDF: string;
|
|
338
352
|
static ICON_IMAGE: string;
|
|
339
353
|
static ICON_FILE_EXCEL: string;
|
|
340
|
-
static ICON_FILE: string;
|
|
341
354
|
static ICON_DELETE: string;
|
|
342
355
|
static CELL_TYPE_DOCUMENT: string;
|
|
343
356
|
static CELL_TYPE_STATUS: string;
|