@provoly/hypervisor 1.4.19 → 1.4.21
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/general/last-events/last-events.component.mjs +22 -3
- package/esm2022/src/lib/general/procedure-actions/action-parameters/service/service-action-display.component.mjs +17 -3
- package/esm2022/src/lib/model/event/hyp-event-category.type.mjs +2 -2
- package/esm2022/src/lib/model/event/hyp-event-tooltip.interface.mjs +1 -1
- package/fesm2022/provoly-hypervisor.mjs +38 -5
- package/fesm2022/provoly-hypervisor.mjs.map +1 -1
- package/package.json +1 -1
- package/src/lib/general/last-events/last-events.component.d.ts +5 -1
- package/src/lib/general/procedure-actions/action-parameters/service/service-action-display.component.d.ts +3 -0
- package/src/lib/model/event/hyp-event-tooltip.interface.d.ts +1 -0
- package/styles/components/_m-hvy-event-summary-item.scss +1 -2
package/package.json
CHANGED
|
@@ -1,11 +1,15 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
1
2
|
import { SubscriptionnerDirective } from '@provoly/dashboard';
|
|
2
3
|
import { HypEventDetails } from '../../model/event/hyp-event-detail.interface';
|
|
3
4
|
import { HypServiceTooltip } from '../../model/event/hyp-event-tooltip.interface';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class LastEventsComponent extends SubscriptionnerDirective {
|
|
6
|
+
export declare class LastEventsComponent extends SubscriptionnerDirective implements OnInit {
|
|
6
7
|
protected readonly displayDate: (endDate: string) => string | undefined;
|
|
7
8
|
services: HypServiceTooltip[];
|
|
8
9
|
events: HypEventDetails[];
|
|
10
|
+
references: string[];
|
|
11
|
+
ngOnInit(): void;
|
|
12
|
+
initActionReference(services: HypServiceTooltip[]): void;
|
|
9
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<LastEventsComponent, never>;
|
|
10
14
|
static ɵcmp: i0.ɵɵComponentDeclaration<LastEventsComponent, "hvy-last-events", never, { "services": { "alias": "services"; "required": false; }; "events": { "alias": "events"; "required": false; }; }, {}, never, never, false, never>;
|
|
11
15
|
}
|
|
@@ -9,6 +9,7 @@ import * as i0 from "@angular/core";
|
|
|
9
9
|
export interface HypServiceAction extends HypAction {
|
|
10
10
|
name: string;
|
|
11
11
|
serviceExternalId?: string;
|
|
12
|
+
serviceAdditionalInfo?: string;
|
|
12
13
|
serviceStatus?: string;
|
|
13
14
|
}
|
|
14
15
|
export declare class HvyServiceActionDisplayComponent extends HvyBaseParameterActionComponent<HypServiceAction> implements OnInit {
|
|
@@ -18,8 +19,10 @@ export declare class HvyServiceActionDisplayComponent extends HvyBaseParameterAc
|
|
|
18
19
|
private i18n;
|
|
19
20
|
menuButton: ElementRef;
|
|
20
21
|
status: string;
|
|
22
|
+
reference: string;
|
|
21
23
|
constructor(pryDialog: PryDialogService, overlay: Overlay, serviceService: ServiceService, i18n: I18nPipe);
|
|
22
24
|
ngOnInit(): void;
|
|
25
|
+
initActionReference(): void;
|
|
23
26
|
toggleModal(): void;
|
|
24
27
|
protected readonly act: typeof act;
|
|
25
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<HvyServiceActionDisplayComponent, never>;
|
|
@@ -117,7 +117,6 @@
|
|
|
117
117
|
// - triangle
|
|
118
118
|
&.-hvy-triangle {
|
|
119
119
|
background-color: transparent;
|
|
120
|
-
align-items: flex-end;
|
|
121
120
|
|
|
122
121
|
&:after {
|
|
123
122
|
--side: 28px;
|
|
@@ -150,7 +149,7 @@
|
|
|
150
149
|
}
|
|
151
150
|
|
|
152
151
|
span {
|
|
153
|
-
transform: translateY(
|
|
152
|
+
transform: translateY(1px);
|
|
154
153
|
}
|
|
155
154
|
|
|
156
155
|
}
|