cat-documents-ng 0.3.42 → 0.3.44
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.
|
@@ -29,10 +29,6 @@ export declare class DocumentHistoryComponent implements OnChanges {
|
|
|
29
29
|
* The selected document for actions
|
|
30
30
|
*/
|
|
31
31
|
selectedDocument?: any;
|
|
32
|
-
/**
|
|
33
|
-
* Event emitted when change document type is requested
|
|
34
|
-
*/
|
|
35
|
-
changeDocumentTypeRequested: EventEmitter<void>;
|
|
36
32
|
/**
|
|
37
33
|
* Event emitted when delete task is requested
|
|
38
34
|
*/
|
|
@@ -57,10 +53,6 @@ export declare class DocumentHistoryComponent implements OnChanges {
|
|
|
57
53
|
* Whether the actions dropdown menu is visible
|
|
58
54
|
*/
|
|
59
55
|
showActionsMenu: boolean;
|
|
60
|
-
/**
|
|
61
|
-
* Whether to show the change document type content
|
|
62
|
-
*/
|
|
63
|
-
showChangeDocumentType: boolean;
|
|
64
56
|
constructor(documentHistoryService: DocumentHistoryService, documentViewerService: DocumentViewerService, documentActionsService: DocumentActionsService, confirmationService: ConfirmationService);
|
|
65
57
|
/**
|
|
66
58
|
* Handles changes to input properties
|
|
@@ -114,14 +106,6 @@ export declare class DocumentHistoryComponent implements OnChanges {
|
|
|
114
106
|
* Close the actions dropdown menu
|
|
115
107
|
*/
|
|
116
108
|
closeActionsMenu(): void;
|
|
117
|
-
/**
|
|
118
|
-
* Handle change document type action
|
|
119
|
-
*/
|
|
120
|
-
onChangeDocumentType(): void;
|
|
121
|
-
/**
|
|
122
|
-
* Close the change document type form
|
|
123
|
-
*/
|
|
124
|
-
closeChangeDocumentType(): void;
|
|
125
109
|
/**
|
|
126
110
|
* Handle delete task action
|
|
127
111
|
*/
|
|
@@ -154,5 +138,5 @@ export declare class DocumentHistoryComponent implements OnChanges {
|
|
|
154
138
|
*/
|
|
155
139
|
onDocumentClickOutside(event: Event): void;
|
|
156
140
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocumentHistoryComponent, never>;
|
|
157
|
-
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; }; }, { "
|
|
141
|
+
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, ["[action-launcher]", "*"], false, never>;
|
|
158
142
|
}
|
|
@@ -104,10 +104,6 @@ export declare class DocumentViewerComponent implements OnChanges, OnDestroy {
|
|
|
104
104
|
* Handles document name update event from content viewer
|
|
105
105
|
*/
|
|
106
106
|
onDocumentNameUpdated(): void;
|
|
107
|
-
/**
|
|
108
|
-
* Handles change document type request from history component
|
|
109
|
-
*/
|
|
110
|
-
onChangeDocumentTypeRequested(): void;
|
|
111
107
|
/**
|
|
112
108
|
* Handles delete task request from history component
|
|
113
109
|
*/
|
|
@@ -122,5 +118,5 @@ export declare class DocumentViewerComponent implements OnChanges, OnDestroy {
|
|
|
122
118
|
*/
|
|
123
119
|
private refreshDocumentData;
|
|
124
120
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocumentViewerComponent, never>;
|
|
125
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DocumentViewerComponent, "document-viewer", never, { "selectedDocument": { "alias": "selectedDocument"; "required": false; }; "documentList": { "alias": "documentList"; "required": false; }; "contextId": { "alias": "contextId"; "required": false; }; }, { "documentStatusUpdated": "documentStatusUpdated"; "viewerDestroyed": "viewerDestroyed"; }, never, ["
|
|
121
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DocumentViewerComponent, "document-viewer", never, { "selectedDocument": { "alias": "selectedDocument"; "required": false; }; "documentList": { "alias": "documentList"; "required": false; }; "contextId": { "alias": "contextId"; "required": false; }; }, { "documentStatusUpdated": "documentStatusUpdated"; "viewerDestroyed": "viewerDestroyed"; }, never, ["[action-launcher]"], false, never>;
|
|
126
122
|
}
|