@provoly/hypervisor 1.4.23 → 1.4.24
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 +41 -15
- package/esm2022/src/lib/event/list/event-list.component.mjs +3 -3
- package/esm2022/src/lib/general/i18n/en.translations.mjs +2 -1
- package/esm2022/src/lib/general/i18n/fr.translations.mjs +3 -1
- package/esm2022/src/lib/model/event/hyp-event-category.type.mjs +2 -2
- package/fesm2022/provoly-hypervisor.mjs +37 -10
- package/fesm2022/provoly-hypervisor.mjs.map +1 -1
- package/package.json +1 -1
- package/src/lib/event/detail/event-detail.component.d.ts +3 -1
- package/src/lib/general/i18n/en.translations.d.ts +1 -0
- package/src/lib/general/i18n/fr.translations.d.ts +2 -0
package/package.json
CHANGED
|
@@ -13,6 +13,7 @@ import { HvyEventDetailsTooltipComponent } from './event-details-tooltip.compone
|
|
|
13
13
|
import { EventService } from '../../store/event/event.service';
|
|
14
14
|
import { HypAction } from '../../model/procedure/hyp-action.interface';
|
|
15
15
|
import { HypComment } from '../../model/comment.interface';
|
|
16
|
+
import { Actions } from '@ngrx/effects';
|
|
16
17
|
import * as i0 from "@angular/core";
|
|
17
18
|
export type ChangeStatusContext = {
|
|
18
19
|
comment: string;
|
|
@@ -37,6 +38,7 @@ export declare class EventDetailComponent extends SubscriptionnerDirective {
|
|
|
37
38
|
private pryDialog;
|
|
38
39
|
private commentsService;
|
|
39
40
|
private eventService;
|
|
41
|
+
private actions$;
|
|
40
42
|
opened: boolean[];
|
|
41
43
|
criticalities: string[];
|
|
42
44
|
_events: HypEventDetails[];
|
|
@@ -87,7 +89,7 @@ export declare class EventDetailComponent extends SubscriptionnerDirective {
|
|
|
87
89
|
index: number;
|
|
88
90
|
equipmentName?: string;
|
|
89
91
|
});
|
|
90
|
-
constructor(equipmentService: EquipmentService, store: Store, overlay: Overlay, viewContainerRef: ViewContainerRef, i18nService: PryI18nService, pryDialog: PryDialogService, commentsService: HypCommentsService, eventService: EventService);
|
|
92
|
+
constructor(equipmentService: EquipmentService, store: Store, overlay: Overlay, viewContainerRef: ViewContainerRef, i18nService: PryI18nService, pryDialog: PryDialogService, commentsService: HypCommentsService, eventService: EventService, actions$: Actions);
|
|
91
93
|
get events(): HypEventDetails[];
|
|
92
94
|
get canAssociateProcedure(): boolean;
|
|
93
95
|
get procedure(): HypProcedure | undefined;
|
|
@@ -5,6 +5,7 @@ export declare const frTranslations: {
|
|
|
5
5
|
name: string;
|
|
6
6
|
subCategory: {
|
|
7
7
|
name: string;
|
|
8
|
+
NONE: string;
|
|
8
9
|
UNUSUAL_FLOW: string;
|
|
9
10
|
TRAFFIC_CONGESTION: string;
|
|
10
11
|
WILD_STORAGE: string;
|
|
@@ -28,6 +29,7 @@ export declare const frTranslations: {
|
|
|
28
29
|
startDate: string;
|
|
29
30
|
endDate: string;
|
|
30
31
|
creationDate: string;
|
|
32
|
+
errorDate: string;
|
|
31
33
|
lastModificationDate: string;
|
|
32
34
|
closeDate: string;
|
|
33
35
|
detail: string;
|