@provoly/hypervisor 0.0.128 → 0.0.130
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/procedure-association-modal/procedure-association-modal.component.mjs +3 -3
- package/esm2022/src/lib/general/procedure-actions/action-parameters/action-parameter.component.mjs +7 -2
- package/esm2022/src/lib/general/procedure-actions/action-parameters/base-parameter-action.component.mjs +6 -3
- package/esm2022/src/lib/general/procedure-actions/action-parameters/service/service-action-display.component.mjs +3 -3
- package/esm2022/src/lib/general/procedure-actions/procedure-actions.component.mjs +3 -3
- package/esm2022/src/lib/model/event/hyp-event-status.type.mjs +2 -2
- package/esm2022/src/lib/procedure/model-list/procedure-list.component.mjs +3 -3
- package/fesm2022/provoly-hypervisor.mjs +20 -12
- package/fesm2022/provoly-hypervisor.mjs.map +1 -1
- package/package.json +1 -1
- package/src/lib/general/procedure-actions/action-parameters/action-parameter.component.d.ts +2 -1
- package/src/lib/general/procedure-actions/action-parameters/base-parameter-action.component.d.ts +2 -1
- package/styles/components/_o-hvy-comments.scss +7 -0
- package/styles/components/_o-hvy-event-detail.scss +1 -1
- package/styles/components/_o-hvy-procedure-list.scss +4 -1
package/package.json
CHANGED
|
@@ -9,6 +9,7 @@ export declare class HvyActionParameterComponent {
|
|
|
9
9
|
private componentRef?;
|
|
10
10
|
param: boolean;
|
|
11
11
|
_events: HypEventDetails[];
|
|
12
|
+
mode: 'model' | 'procedure';
|
|
12
13
|
set events(events: HypEventDetails[]);
|
|
13
14
|
set isParam(param: boolean);
|
|
14
15
|
set type(type: string);
|
|
@@ -16,5 +17,5 @@ export declare class HvyActionParameterComponent {
|
|
|
16
17
|
constructor();
|
|
17
18
|
private updateParameterComponent;
|
|
18
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<HvyActionParameterComponent, never>;
|
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<HvyActionParameterComponent, "hvy-action-parameter", never, { "events": { "alias": "events"; "required": false; }; "isParam": { "alias": "isParam"; "required": false; }; "type": { "alias": "type"; "required": false; }; "action": { "alias": "action"; "required": false; }; }, {}, never, never, false, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HvyActionParameterComponent, "hvy-action-parameter", never, { "mode": { "alias": "mode"; "required": false; }; "events": { "alias": "events"; "required": false; }; "isParam": { "alias": "isParam"; "required": false; }; "type": { "alias": "type"; "required": false; }; "action": { "alias": "action"; "required": false; }; }, {}, never, never, false, never>;
|
|
20
21
|
}
|
package/src/lib/general/procedure-actions/action-parameters/base-parameter-action.component.d.ts
CHANGED
|
@@ -4,11 +4,12 @@ import * as i0 from "@angular/core";
|
|
|
4
4
|
export declare class HvyBaseParameterActionComponent<T extends HypAction> {
|
|
5
5
|
_action: any;
|
|
6
6
|
_events: HypEventDetails[];
|
|
7
|
+
mode: 'model' | 'procedure';
|
|
7
8
|
set events(events: HypEventDetails[]);
|
|
8
9
|
get events(): HypEventDetails[];
|
|
9
10
|
set action(action: T);
|
|
10
11
|
get action(): T;
|
|
11
12
|
constructor();
|
|
12
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<HvyBaseParameterActionComponent<any>, never>;
|
|
13
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<HvyBaseParameterActionComponent<any>, "hvy-base-action-parameter", never, { "events": { "alias": "events"; "required": false; }; "action": { "alias": "action"; "required": false; }; }, {}, never, never, false, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HvyBaseParameterActionComponent<any>, "hvy-base-action-parameter", never, { "mode": { "alias": "mode"; "required": false; }; "events": { "alias": "events"; "required": false; }; "action": { "alias": "action"; "required": false; }; }, {}, never, never, false, never>;
|
|
14
15
|
}
|
|
@@ -10,6 +10,12 @@
|
|
|
10
10
|
|
|
11
11
|
pry-icon {
|
|
12
12
|
margin-top: toRem(2);
|
|
13
|
+
|
|
14
|
+
&.-rotated {
|
|
15
|
+
span {
|
|
16
|
+
transform: rotateZ(180deg);
|
|
17
|
+
}
|
|
18
|
+
}
|
|
13
19
|
}
|
|
14
20
|
}
|
|
15
21
|
|
|
@@ -48,6 +54,7 @@
|
|
|
48
54
|
|
|
49
55
|
textarea {
|
|
50
56
|
border-width: toRem(2);
|
|
57
|
+
|
|
51
58
|
&[readonly] {
|
|
52
59
|
border-width: toRem(1);
|
|
53
60
|
}
|