cat-documents-ng 0.3.20 → 0.3.22
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 +13 -0
- package/fesm2022/cat-documents-ng.mjs +515 -137
- package/fesm2022/cat-documents-ng.mjs.map +1 -1
- package/lib/document/components/document-content-viewer/document-content-viewer.component.d.ts +68 -8
- package/lib/document/services/csv-parser.service.d.ts +88 -0
- package/lib/document/services/document-http.service.d.ts +15 -0
- package/package.json +1 -1
|
@@ -258,6 +258,19 @@ export declare class SHARED {
|
|
|
258
258
|
static INITIAL_REQUEST: string;
|
|
259
259
|
static ERROR_PARSING_SHEET_DATA: string;
|
|
260
260
|
static REFRESH_TRIGGER: string;
|
|
261
|
+
static PDF_TYPE: string;
|
|
262
|
+
static ICON_FILE_WORD: string;
|
|
263
|
+
static ICON_ENVELOPE: string;
|
|
264
|
+
static PDF_DOCUMENT: string;
|
|
265
|
+
static IMAGE: string;
|
|
266
|
+
static EXCEL_SPREADSHEET: string;
|
|
267
|
+
static WORD_DOCUMENT: string;
|
|
268
|
+
static CSV_FILE: string;
|
|
269
|
+
static EMAIL_MESSAGE: string;
|
|
270
|
+
static OPEN_DOCUMENT: string;
|
|
271
|
+
static NO_DATA_AVAILABLE: string;
|
|
272
|
+
static ERROR_PARSING_EXCEL_FILE: string;
|
|
273
|
+
static ERROR_PARSING_EXCEL_FILE_STRUCTURE: string;
|
|
261
274
|
static Menu: {
|
|
262
275
|
label: string;
|
|
263
276
|
items: ({
|