@provoly/hypervisor 1.4.31 → 1.4.33
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": "1.4.
|
|
3
|
+
"version": "1.4.33",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/cdk": "17.x || 18.x",
|
|
6
6
|
"@angular/common": "17.x || 18.x",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"rxjs": "^7.4.0",
|
|
15
15
|
"uuid": "^8.3.2 || ^9.0.0",
|
|
16
16
|
"zone.js": "~0.14.3",
|
|
17
|
-
"@provoly/dashboard": "^1.4.
|
|
17
|
+
"@provoly/dashboard": "^1.4.17"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"tslib": "^2.6.2"
|
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
2
|
import { SubscriptionnerDirective } from '@provoly/dashboard';
|
|
3
3
|
import { HypProcedureModel } from '../../model/procedure/hyp-procedure-model.interface';
|
|
4
|
-
import { Store } from '@ngrx/store';
|
|
5
4
|
import { HypAction } from '../../model/procedure/hyp-action.interface';
|
|
5
|
+
import { Actions } from "@ngrx/effects";
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class ProcedureModelDetailComponent extends SubscriptionnerDirective {
|
|
8
|
-
private
|
|
8
|
+
private actions$;
|
|
9
9
|
model?: HypProcedureModel;
|
|
10
10
|
username: string;
|
|
11
11
|
modifications: Partial<HypProcedureModel>;
|
|
12
12
|
title?: string;
|
|
13
|
+
saved: boolean;
|
|
13
14
|
errors: {
|
|
14
15
|
field: string;
|
|
15
16
|
code: string;
|
|
@@ -28,7 +29,7 @@ export declare class ProcedureModelDetailComponent extends SubscriptionnerDirect
|
|
|
28
29
|
readOnlyComment: boolean;
|
|
29
30
|
set cancelModifications(evt: any);
|
|
30
31
|
get modifiedModel(): HypProcedureModel;
|
|
31
|
-
constructor(
|
|
32
|
+
constructor(actions$: Actions);
|
|
32
33
|
hasError(prop: string): false | {
|
|
33
34
|
field: string;
|
|
34
35
|
code: string;
|