@provoly/hypervisor 0.0.72 → 0.0.73

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@provoly/hypervisor",
3
- "version": "0.0.72",
3
+ "version": "0.0.73",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": "16.x || 17.x",
6
6
  "@angular/common": "16.x || 17.x",
@@ -16,6 +16,7 @@ export declare class ProcedureAssociationModalComponent extends SubscriptionnerD
16
16
  onProcedureSearch$: Subject<void>;
17
17
  procedures$: Observable<HypProcedureModel[]>;
18
18
  eventsFromInput$: BehaviorSubject<HypEventDetails[] | null>;
19
+ eventsForAction: HypEventDetails[];
19
20
  set events(events: HypEventDetails[]);
20
21
  constructor(store: Store, procedureService: ProcedureService, dialog: PryDialogRef<ProcedureAssociationModalComponent>);
21
22
  onDomainChange(): void;
@@ -122,6 +122,8 @@ export declare const enTranslations: {
122
122
  noContent: string;
123
123
  domain: string;
124
124
  catalog: string;
125
+ detail: string;
126
+ actions: string;
125
127
  description: string;
126
128
  creator: string;
127
129
  action: {
@@ -31,6 +31,9 @@ export declare class ProcedureModelDetailComponent extends SubscriptionnerDirect
31
31
  modify(prop: string, $event: Event): void;
32
32
  private _outputModifications;
33
33
  updateActions($event: HypAction[]): void;
34
+ protected readonly padId: {
35
+ fn: (id: string | number) => string;
36
+ };
34
37
  static ɵfac: i0.ɵɵFactoryDeclaration<ProcedureModelDetailComponent, never>;
35
38
  static ɵcmp: i0.ɵɵComponentDeclaration<ProcedureModelDetailComponent, "hvy-procedure-model-detail", never, { "model": { "alias": "model"; "required": false; }; "username": { "alias": "username"; "required": false; }; "title": { "alias": "title"; "required": false; }; "cancelModifications": { "alias": "cancelModifications"; "required": false; }; }, { "eventErrors": "eventErrors"; "modified": "modified"; }, never, never, false, never>;
36
39
  }
@@ -128,8 +128,10 @@ export declare const EventActions: {
128
128
  } & import("@ngrx/store/src/models").TypedAction<"[Event] set log event sorting">>;
129
129
  associateProcedure: import("@ngrx/store").ActionCreator<"[Event] Associate Procedure to Event", (props: {
130
130
  procedureId: number;
131
+ eventIds: number[];
131
132
  }) => {
132
133
  procedureId: number;
134
+ eventIds: number[];
133
135
  } & import("@ngrx/store/src/models").TypedAction<"[Event] Associate Procedure to Event">>;
134
136
  associateProcedureFailure: import("@ngrx/store").ActionCreator<"[Event] Associate Procedure to Event Failure", (props: {
135
137
  error: string;
@@ -24,7 +24,7 @@ export declare class EventService {
24
24
  saveProcedure(procedure: HypProcedure): Observable<void>;
25
25
  status(event: HypEventDetails, status: string, comment: string): Observable<void>;
26
26
  statusProcedure(procedure: HypProcedure, status: string, comment: string): Observable<void>;
27
- associateProcedure(procedureId: number): Observable<void>;
27
+ associateProcedure(procedureId: number, eventIds: number[]): Observable<void>;
28
28
  static ɵfac: i0.ɵɵFactoryDeclaration<EventService, never>;
29
29
  static ɵprov: i0.ɵɵInjectableDeclaration<EventService>;
30
30
  }