cat-documents-ng 0.3.19 → 0.3.21
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 +3 -0
- package/fesm2022/cat-documents-ng.mjs +1022 -73
- package/fesm2022/cat-documents-ng.mjs.map +1 -1
- package/lib/document/components/document-content-viewer/document-content-viewer.component.d.ts +184 -0
- package/lib/document/components/document-viewer/document-viewer.component.d.ts +0 -21
- package/lib/document/document.module.d.ts +38 -36
- package/lib/document/services/document-content-type.service.d.ts +85 -0
- package/lib/document/services/document-http.service.d.ts +8 -0
- package/lib/document/services/excel-parser.service.d.ts +169 -0
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
- package/README.md +0 -322
|
@@ -249,11 +249,14 @@ export declare class SHARED {
|
|
|
249
249
|
static REJECT_ICON: string;
|
|
250
250
|
static ACCEPT_BUTTON_STYLE_CLASS: string;
|
|
251
251
|
static REJECT_BUTTON_STYLE_CLASS: string;
|
|
252
|
+
static NO_DATA_FOUND: string;
|
|
253
|
+
static BORDERS: string[];
|
|
252
254
|
static FILE_TYPES: string[];
|
|
253
255
|
static COMMA: string;
|
|
254
256
|
static TEAM_LEADER: string;
|
|
255
257
|
static UNDERWRITER_USER: string;
|
|
256
258
|
static INITIAL_REQUEST: string;
|
|
259
|
+
static ERROR_PARSING_SHEET_DATA: string;
|
|
257
260
|
static REFRESH_TRIGGER: string;
|
|
258
261
|
static Menu: {
|
|
259
262
|
label: string;
|