cat-documents-ng 0.2.36 → 0.2.39
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 +5 -0
- package/Shared/constant/URLS.d.ts +1 -0
- package/fesm2022/cat-documents-ng.mjs +371 -40
- package/fesm2022/cat-documents-ng.mjs.map +1 -1
- package/lib/document/components/document-history/document-history.component.d.ts +61 -0
- package/lib/document/components/document-viewer/document-viewer.component.d.ts +16 -0
- package/lib/document/constant/DOCUMENT_HISTORY.d.ts +41 -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 +34 -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;
|
|
@@ -266,6 +267,10 @@ export declare class SHARED {
|
|
|
266
267
|
type: 'text' | 'status' | 'document' | 'actions';
|
|
267
268
|
width: string;
|
|
268
269
|
}>;
|
|
270
|
+
static DOCUMENT_REQUESTED: string;
|
|
271
|
+
static DOCUMENT_UPLOADED: string;
|
|
272
|
+
static DOCUMENT_REJECTED: string;
|
|
273
|
+
static DOCUMENT_ACCEPTED: string;
|
|
269
274
|
}
|
|
270
275
|
/**
|
|
271
276
|
* `DUMMYDOCUMENTLIST` is a mock list of document objects used for testing and development purposes.
|