@provoly/hypervisor 0.0.24 → 0.0.26
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/list/event-list.component.mjs +3 -3
- package/esm2022/src/lib/event-summary/list/event-summary-list.component.mjs +3 -3
- package/esm2022/src/lib/event-summary/page/event-summary-page.component.mjs +6 -8
- package/esm2022/src/lib/general/i18n/en.translations.mjs +6 -2
- package/esm2022/src/lib/general/i18n/fr.translations.mjs +12 -8
- package/esm2022/src/lib/model/event/hyp-event-summary.interface.mjs +1 -1
- package/fesm2022/provoly-hypervisor.mjs +28 -22
- package/fesm2022/provoly-hypervisor.mjs.map +1 -1
- package/package.json +1 -1
- package/src/lib/event-summary/page/event-summary-page.component.d.ts +3 -10
- package/src/lib/general/i18n/en.translations.d.ts +5 -1
- package/src/lib/general/i18n/fr.translations.d.ts +5 -1
- package/src/lib/model/event/hyp-event-summary.interface.d.ts +1 -3
package/package.json
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { Store } from '@ngrx/store';
|
|
2
|
-
import { HypEventSummaries
|
|
2
|
+
import { HypEventSummaries } from '../../model/event/hyp-event-summary.interface';
|
|
3
3
|
import { Observable } from 'rxjs';
|
|
4
4
|
import { SubscriptionnerDirective } from '@provoly/dashboard';
|
|
5
|
-
import { KeyValue } from '@angular/common';
|
|
6
5
|
import * as i0 from "@angular/core";
|
|
7
6
|
export declare class EventSummaryPageComponent extends SubscriptionnerDirective {
|
|
8
7
|
private store;
|
|
@@ -10,16 +9,10 @@ export declare class EventSummaryPageComponent extends SubscriptionnerDirective
|
|
|
10
9
|
consultLink: string[];
|
|
11
10
|
summaries: HypEventSummaries;
|
|
12
11
|
selectedCriticality$: Observable<string | undefined>;
|
|
13
|
-
|
|
12
|
+
statusShortList: string[];
|
|
13
|
+
statusList: string[];
|
|
14
14
|
constructor(store: Store<any>);
|
|
15
15
|
filterByCriticality($event: string): void;
|
|
16
|
-
criticalityOrder: (a: KeyValue<string, {
|
|
17
|
-
events: HypEventSummary[];
|
|
18
|
-
count: number;
|
|
19
|
-
}>, b: KeyValue<string, {
|
|
20
|
-
events: HypEventSummary[];
|
|
21
|
-
count: number;
|
|
22
|
-
}>) => number;
|
|
23
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<EventSummaryPageComponent, never>;
|
|
24
17
|
static ɵcmp: i0.ɵɵComponentDeclaration<EventSummaryPageComponent, "hvy-event-summary-page", never, { "pageTitle": { "alias": "pageTitle"; "required": false; }; "consultLink": { "alias": "consultLink"; "required": false; }; }, {}, never, never, false, never>;
|
|
25
18
|
}
|
|
@@ -9,11 +9,9 @@ export interface HypEventSummary extends HypEvent {
|
|
|
9
9
|
serviceTitle?: string;
|
|
10
10
|
procedureId?: string;
|
|
11
11
|
}
|
|
12
|
-
type HypStatus = 'NEW' | 'IN_PROGRESS' | 'DONE';
|
|
13
12
|
export type HypEventSummaries = {
|
|
14
|
-
[key
|
|
13
|
+
[key: string]: {
|
|
15
14
|
events: HypEventSummary[];
|
|
16
15
|
count: number;
|
|
17
16
|
};
|
|
18
17
|
};
|
|
19
|
-
export {};
|