cat-documents-ng 0.2.36 → 0.2.38
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 +14 -0
- package/Shared/constant/URLS.d.ts +1 -0
- package/fesm2022/cat-documents-ng.mjs +246 -9
- package/fesm2022/cat-documents-ng.mjs.map +1 -1
- package/lib/document/components/document-history/document-history.component.d.ts +43 -0
- package/lib/document/components/document-viewer/document-viewer.component.d.ts +16 -0
- package/lib/document/document.module.d.ts +30 -29
- package/lib/document/models/document-category.model.d.ts +8 -4
- package/lib/document/models/document-history.model.d.ts +60 -0
- package/lib/document/services/document-history-style.service.d.ts +29 -0
- package/lib/document/services/document-http.service.d.ts +2 -0
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
|
@@ -234,6 +234,7 @@ export declare class SHARED {
|
|
|
234
234
|
static UPLOADED_STATUS: string;
|
|
235
235
|
static REVIEWING_STATUS: string;
|
|
236
236
|
static REJECTED_STATUS: string;
|
|
237
|
+
static REQUESTED_STATUS: string;
|
|
237
238
|
static STATUS_PENDING_CLASS: string;
|
|
238
239
|
static STATUS_APPROVED_CLASS: string;
|
|
239
240
|
static STATUS_ALERT_CLASS: string;
|
|
@@ -246,6 +247,19 @@ export declare class SHARED {
|
|
|
246
247
|
static ICON_EYE: string;
|
|
247
248
|
static ICON_TIMES: string;
|
|
248
249
|
static ICON_CLOCK: string;
|
|
250
|
+
static TEXT_COLOR_GREEN: string;
|
|
251
|
+
static TEXT_COLOR_RED: string;
|
|
252
|
+
static TEXT_COLOR_GRAY: string;
|
|
253
|
+
static BG_COLOR_GREEN: string;
|
|
254
|
+
static BG_COLOR_RED: string;
|
|
255
|
+
static BG_COLOR_GRAY: string;
|
|
256
|
+
static BORDER_COLOR_GREEN: string;
|
|
257
|
+
static BORDER_COLOR_RED: string;
|
|
258
|
+
static BORDER_COLOR_GRAY: string;
|
|
259
|
+
static ICON_BG_GREEN: string;
|
|
260
|
+
static ICON_BG_RED: string;
|
|
261
|
+
static ICON_BG_BLUE: string;
|
|
262
|
+
static ICON_BG_GRAY: string;
|
|
249
263
|
static ICON_FILE_PDF: string;
|
|
250
264
|
static ICON_IMAGE: string;
|
|
251
265
|
static ICON_FILE_EXCEL: string;
|