cat-documents-ng 0.2.38 → 0.2.40
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 +4 -13
- package/fesm2022/cat-documents-ng.mjs +270 -135
- package/fesm2022/cat-documents-ng.mjs.map +1 -1
- package/lib/document/components/document-history/document-history.component.d.ts +31 -3
- package/lib/document/constant/DOCUMENT_HISTORY.d.ts +41 -0
- package/lib/document/services/document-history-style.service.d.ts +5 -0
- package/package.json +1 -1
|
@@ -247,19 +247,6 @@ export declare class SHARED {
|
|
|
247
247
|
static ICON_EYE: string;
|
|
248
248
|
static ICON_TIMES: string;
|
|
249
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;
|
|
263
250
|
static ICON_FILE_PDF: string;
|
|
264
251
|
static ICON_IMAGE: string;
|
|
265
252
|
static ICON_FILE_EXCEL: string;
|
|
@@ -280,6 +267,10 @@ export declare class SHARED {
|
|
|
280
267
|
type: 'text' | 'status' | 'document' | 'actions';
|
|
281
268
|
width: string;
|
|
282
269
|
}>;
|
|
270
|
+
static DOCUMENT_REQUESTED: string;
|
|
271
|
+
static DOCUMENT_UPLOADED: string;
|
|
272
|
+
static DOCUMENT_REJECTED: string;
|
|
273
|
+
static DOCUMENT_ACCEPTED: string;
|
|
283
274
|
}
|
|
284
275
|
/**
|
|
285
276
|
* `DUMMYDOCUMENTLIST` is a mock list of document objects used for testing and development purposes.
|