cat-documents-ng 0.4.7 → 0.4.9
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/fesm2022/cat-documents-ng.mjs +37 -131
- package/fesm2022/cat-documents-ng.mjs.map +1 -1
- package/lib/document/components/document-actions/document-actions.component.d.ts +1 -2
- package/lib/document/components/document-history/document-history.component.d.ts +1 -6
- package/lib/document/components/document-list/document-list.component.d.ts +0 -1
- package/lib/document/components/document-viewer/document-viewer.component.d.ts +1 -6
- package/lib/document/services/document-http.service.d.ts +2 -2
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -7,7 +7,6 @@ export declare class DocumentActionsComponent implements OnChanges {
|
|
|
7
7
|
private documentActionsService;
|
|
8
8
|
private sessionService;
|
|
9
9
|
readonly SHARED: typeof SHARED;
|
|
10
|
-
hideActions: boolean;
|
|
11
10
|
document?: any;
|
|
12
11
|
documentId?: string;
|
|
13
12
|
currentStatus?: string;
|
|
@@ -75,5 +74,5 @@ export declare class DocumentActionsComponent implements OnChanges {
|
|
|
75
74
|
onRejectConfirm(): void;
|
|
76
75
|
onCancel(): void;
|
|
77
76
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocumentActionsComponent, never>;
|
|
78
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DocumentActionsComponent, "document-actions", never, { "
|
|
77
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DocumentActionsComponent, "document-actions", never, { "document": { "alias": "document"; "required": false; }; "documentId": { "alias": "documentId"; "required": false; }; "currentStatus": { "alias": "currentStatus"; "required": false; }; "isLoading": { "alias": "isLoading"; "required": false; }; "isUploaded": { "alias": "isUploaded"; "required": false; }; "statusId": { "alias": "statusId"; "required": false; }; }, { "actionPerformed": "actionPerformed"; }, never, never, false, never>;
|
|
79
78
|
}
|
|
@@ -13,11 +13,6 @@ export declare class DocumentHistoryComponent implements OnChanges {
|
|
|
13
13
|
private documentViewerService;
|
|
14
14
|
private documentActionsService;
|
|
15
15
|
private confirmationService;
|
|
16
|
-
/**
|
|
17
|
-
* Flag to hide actions
|
|
18
|
-
* @type {boolean}
|
|
19
|
-
*/
|
|
20
|
-
hideActions: boolean;
|
|
21
16
|
/**
|
|
22
17
|
* Input data for document history sections
|
|
23
18
|
*/
|
|
@@ -149,5 +144,5 @@ export declare class DocumentHistoryComponent implements OnChanges {
|
|
|
149
144
|
*/
|
|
150
145
|
onDocumentClickOutside(event: Event): void;
|
|
151
146
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocumentHistoryComponent, never>;
|
|
152
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DocumentHistoryComponent, "document-history", never, { "
|
|
147
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DocumentHistoryComponent, "document-history", never, { "historyData": { "alias": "historyData"; "required": false; }; "showHistory": { "alias": "showHistory"; "required": false; }; "contextId": { "alias": "contextId"; "required": false; }; "selectedDocument": { "alias": "selectedDocument"; "required": false; }; }, { "deleteTaskRequested": "deleteTaskRequested"; "documentSelected": "documentSelected"; }, never, ["*", "[actions-component]"], false, never>;
|
|
153
148
|
}
|
|
@@ -24,11 +24,6 @@ export declare class DocumentViewerComponent implements OnChanges, OnDestroy {
|
|
|
24
24
|
* @type {*}
|
|
25
25
|
*/
|
|
26
26
|
selectedDocument?: DocumentListItem;
|
|
27
|
-
/**
|
|
28
|
-
* Flag to hide actions
|
|
29
|
-
* @type {boolean}
|
|
30
|
-
*/
|
|
31
|
-
hideActions: boolean;
|
|
32
27
|
/**
|
|
33
28
|
* Get the selected document by user.
|
|
34
29
|
* @type {*}
|
|
@@ -138,5 +133,5 @@ export declare class DocumentViewerComponent implements OnChanges, OnDestroy {
|
|
|
138
133
|
*/
|
|
139
134
|
private refreshDocumentData;
|
|
140
135
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocumentViewerComponent, never>;
|
|
141
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DocumentViewerComponent, "document-viewer", never, { "selectedDocument": { "alias": "selectedDocument"; "required": false; }; "
|
|
136
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DocumentViewerComponent, "document-viewer", never, { "selectedDocument": { "alias": "selectedDocument"; "required": false; }; "documentList": { "alias": "documentList"; "required": false; }; "contextId": { "alias": "contextId"; "required": false; }; "isFormHide": { "alias": "isFormHide"; "required": false; }; }, { "documentStatusUpdated": "documentStatusUpdated"; "deleteError": "deleteError"; "deleteSuccess": "deleteSuccess"; "viewerDestroyed": "viewerDestroyed"; }, never, ["*"], false, never>;
|
|
142
137
|
}
|
|
@@ -84,8 +84,8 @@ export declare class DocumentHttpService {
|
|
|
84
84
|
/**
|
|
85
85
|
* Fetches document status count data by application ID with optional context ID and category parameters.
|
|
86
86
|
* @param {string} applicationId - The application ID to fetch status data.
|
|
87
|
-
* @param {string | null} contextId - The context ID (applicant ID) to filter by. If null,
|
|
88
|
-
* @param {string | null} categoryId - The category ID to filter by.
|
|
87
|
+
* @param {string | null} contextId - The context ID (applicant ID) to filter by. If null, uses applicationId.
|
|
88
|
+
* @param {string | null} categoryId - The category ID to filter by.
|
|
89
89
|
* @returns {Observable<StatusDataModel[]>} Observable that emits the status data.
|
|
90
90
|
*/
|
|
91
91
|
getStatusDocumentCount(applicationId: string, contextId?: string | null, categoryId?: string | null): Observable<StatusDataModel[]>;
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -15,6 +15,7 @@ export * from './lib/document/services/document-table-builder.service';
|
|
|
15
15
|
export * from './lib/document/services/document-content-type.service';
|
|
16
16
|
export * from './lib/document/services/document-zoom.service';
|
|
17
17
|
export * from './lib/document/services/eml-parser.service';
|
|
18
|
+
export * from './lib/document/components/folder-container/folder-container.component';
|
|
18
19
|
export * from './lib/document/services/excel-parser.service';
|
|
19
20
|
export * from './lib/document/services/csv-parser.service';
|
|
20
21
|
export * from './lib/document/directives/document.directive';
|