@provoly/hypervisor 1.8.8 → 1.9.0
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 +47 -32
- package/esm2022/src/lib/event/detail/event-details-tooltip.component.mjs +10 -6
- package/fesm2022/provoly-hypervisor.mjs +55 -36
- package/fesm2022/provoly-hypervisor.mjs.map +1 -1
- package/package.json +2 -2
- package/src/lib/event/detail/event-detail.component.d.ts +5 -1
- package/src/lib/event/detail/event-details-tooltip.component.d.ts +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@provoly/hypervisor",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.9.0",
|
|
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.58"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"tslib": "^2.6.2"
|
|
@@ -122,6 +122,10 @@ export declare class EventDetailComponent extends SubscriptionnerDirective {
|
|
|
122
122
|
selectedEquipment: boolean[];
|
|
123
123
|
adressDisabled: boolean[];
|
|
124
124
|
openedAutocomplete: boolean[];
|
|
125
|
+
tooltipRef: {
|
|
126
|
+
dialog: PryDialogRef<HvyEventDetailsTooltipComponent> | null;
|
|
127
|
+
index: number;
|
|
128
|
+
};
|
|
125
129
|
constructor(equipmentService: EquipmentService, store: Store, overlay: Overlay, viewContainerRef: ViewContainerRef, i18nService: PryI18nService, pryDialog: PryDialogService, commentsService: HypCommentsService, eventService: EventService, actions$: Actions, formBuilder: FormBuilder);
|
|
126
130
|
isEventModified(): boolean;
|
|
127
131
|
private setDistrictForEvents;
|
|
@@ -185,8 +189,8 @@ export declare class EventDetailComponent extends SubscriptionnerDirective {
|
|
|
185
189
|
services?: HypServiceTooltip[];
|
|
186
190
|
}[];
|
|
187
191
|
private getDataForTooltip;
|
|
188
|
-
tooltipRef?: PryDialogRef<HvyEventDetailsTooltipComponent>;
|
|
189
192
|
toggleDetailsTooltip(idx: number): void;
|
|
193
|
+
openTooltip(index: number): PryDialogRef<HvyEventDetailsTooltipComponent>;
|
|
190
194
|
selectedParentChange($event: string | HypEventDetails, index: number): void;
|
|
191
195
|
addOneEvent(): void;
|
|
192
196
|
actionCommented($event: {
|
|
@@ -4,11 +4,12 @@ import { HypEventDetails } from '../../model/event/hyp-event-detail.interface';
|
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class HvyEventDetailsTooltipComponent {
|
|
6
6
|
private dialog;
|
|
7
|
+
index: number;
|
|
7
8
|
data: {
|
|
8
9
|
events?: HypEventDetails[];
|
|
9
10
|
services?: HypServiceTooltip[];
|
|
10
11
|
};
|
|
11
|
-
constructor(dialog: PryDialogRef<PryDialogConfirmComponent>, data: {
|
|
12
|
+
constructor(dialog: PryDialogRef<PryDialogConfirmComponent>, index: number, data: {
|
|
12
13
|
events?: HypEventDetails[];
|
|
13
14
|
services?: HypServiceTooltip[];
|
|
14
15
|
});
|