@provoly/hypervisor 1.4.54 → 1.4.55
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/esm2022/src/lib/event/detail/event-detail.component.mjs +11 -3
- package/esm2022/src/lib/general/procedure-actions/action-parameters/service/service-action-display.component.mjs +2 -1
- package/esm2022/src/lib/general/procedure-actions/procedure-actions.component.mjs +19 -9
- package/esm2022/src/lib/procedure/model-detail/procedure-model-detail.component.mjs +1 -1
- package/esm2022/src/lib/store/service/service.service.mjs +3 -2
- package/fesm2022/provoly-hypervisor.mjs +26 -7
- package/fesm2022/provoly-hypervisor.mjs.map +1 -1
- package/package.json +1 -1
- package/src/lib/event/detail/event-detail.component.d.ts +1 -0
- package/src/lib/general/procedure-actions/procedure-actions.component.d.ts +5 -2
- package/src/lib/store/service/service.service.d.ts +2 -1
package/package.json
CHANGED
|
@@ -144,6 +144,7 @@ export declare class EventDetailComponent extends SubscriptionnerDirective {
|
|
|
144
144
|
};
|
|
145
145
|
protected readonly subCategories: (string | undefined)[];
|
|
146
146
|
modifiedActions($event: any): void;
|
|
147
|
+
refreshActions($event: HypAction[]): void;
|
|
147
148
|
openAssociationModal(): void;
|
|
148
149
|
openDeleteModal(): void;
|
|
149
150
|
private convertDate;
|
|
@@ -6,11 +6,13 @@ import { HypCommentsService } from '../../store/comments/comments.service';
|
|
|
6
6
|
import { Subject } from 'rxjs';
|
|
7
7
|
import { HypEventDetails } from '../../model/event/hyp-event-detail.interface';
|
|
8
8
|
import { HypComment } from '../../model/comment.interface';
|
|
9
|
+
import { ServiceService } from "../../store/service/service.service";
|
|
9
10
|
import * as i0 from "@angular/core";
|
|
10
11
|
export declare class ProcedureActionsComponent extends SubscriptionnerDirective {
|
|
11
12
|
private pryDialog;
|
|
12
13
|
private overlay;
|
|
13
14
|
private commentsService;
|
|
15
|
+
private serviceService;
|
|
14
16
|
static CARD_HEIGHT: number;
|
|
15
17
|
movingAction?: HypAction;
|
|
16
18
|
moveStart: number;
|
|
@@ -35,8 +37,9 @@ export declare class ProcedureActionsComponent extends SubscriptionnerDirective
|
|
|
35
37
|
triggers: {
|
|
36
38
|
[p: string]: Subject<boolean>;
|
|
37
39
|
};
|
|
38
|
-
constructor(pryDialog: PryDialogService, overlay: Overlay, commentsService: HypCommentsService);
|
|
40
|
+
constructor(pryDialog: PryDialogService, overlay: Overlay, commentsService: HypCommentsService, serviceService: ServiceService);
|
|
39
41
|
set actions(actions: HypAction[]);
|
|
42
|
+
refreshActions: EventEmitter<HypAction[]>;
|
|
40
43
|
get actions(): HypAction[];
|
|
41
44
|
get editing(): boolean;
|
|
42
45
|
onMouseDown($event: MouseEvent): void;
|
|
@@ -58,5 +61,5 @@ export declare class ProcedureActionsComponent extends SubscriptionnerDirective
|
|
|
58
61
|
message: string;
|
|
59
62
|
}): void;
|
|
60
63
|
static ɵfac: i0.ɵɵFactoryDeclaration<ProcedureActionsComponent, never>;
|
|
61
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ProcedureActionsComponent, "hvy-procedure-actions", never, { "mode": { "alias": "mode"; "required": false; }; "me": { "alias": "me"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "readOnlyComment": { "alias": "readOnlyComment"; "required": false; }; "enableEditActions": { "alias": "enableEditActions"; "required": false; }; "events": { "alias": "events"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; }, { "modified": "modified"; "commented": "commented"; }, never, never, false, never>;
|
|
64
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProcedureActionsComponent, "hvy-procedure-actions", never, { "mode": { "alias": "mode"; "required": false; }; "me": { "alias": "me"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "readOnlyComment": { "alias": "readOnlyComment"; "required": false; }; "enableEditActions": { "alias": "enableEditActions"; "required": false; }; "events": { "alias": "events"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; }, { "modified": "modified"; "commented": "commented"; "refreshActions": "refreshActions"; }, never, never, false, never>;
|
|
62
65
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { HttpClient } from '@angular/common/http';
|
|
2
|
-
import { Observable } from 'rxjs';
|
|
2
|
+
import { Observable, Subject } from 'rxjs';
|
|
3
3
|
import { Store } from '@ngrx/store';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export interface HypServiceType {
|
|
@@ -19,6 +19,7 @@ export interface HypService {
|
|
|
19
19
|
export declare class ServiceService {
|
|
20
20
|
private httpClient;
|
|
21
21
|
private store;
|
|
22
|
+
refreshDiAction: Subject<unknown>;
|
|
22
23
|
constructor(httpClient: HttpClient, store: Store<any>);
|
|
23
24
|
types(): Observable<HypServiceType[]>;
|
|
24
25
|
create(service: HypService, actionId: string): Observable<{
|