@provoly/hypervisor 0.0.122 → 0.0.124

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@provoly/hypervisor",
3
- "version": "0.0.122",
3
+ "version": "0.0.124",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": "16.x || 17.x",
6
6
  "@angular/common": "16.x || 17.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.0"
17
+ "@provoly/dashboard": "^1.4.1"
18
18
  },
19
19
  "dependencies": {
20
20
  "tslib": "^2.6.2"
@@ -73,6 +73,7 @@ export declare class EventDetailComponent extends SubscriptionnerDirective {
73
73
  onEventSearch$: Subject<number>;
74
74
  eventSelectValue: (string | HypEventDetails | undefined)[];
75
75
  events$: Observable<HypEventDetailsWithMatching[]>;
76
+ parentName: string[];
76
77
  set events(events: HypEventDetails[]);
77
78
  set procedure(procedure: HypProcedure);
78
79
  set cancelModifications(evt: any);
@@ -1,4 +1,4 @@
1
- import { AfterViewInit, QueryList } from '@angular/core';
1
+ import { AfterViewInit, EventEmitter, QueryList } from '@angular/core';
2
2
  import { SubscriptionnerDirective } from '@provoly/dashboard';
3
3
  import { HvyUnitFilterComponent } from '../../hvy-unit-filter.class';
4
4
  import { Store } from '@ngrx/store';
@@ -7,10 +7,11 @@ export declare class EventFiltersComponent extends SubscriptionnerDirective impl
7
7
  private store;
8
8
  filterSet: string;
9
9
  filters: QueryList<HvyUnitFilterComponent>;
10
+ filtered: EventEmitter<void>;
10
11
  constructor(store: Store);
11
12
  ngAfterViewInit(): void;
12
13
  filter(): void;
13
14
  reset(): void;
14
15
  static ɵfac: i0.ɵɵFactoryDeclaration<EventFiltersComponent, never>;
15
- static ɵcmp: i0.ɵɵComponentDeclaration<EventFiltersComponent, "hvy-event-filters", never, { "filterSet": { "alias": "filterSet"; "required": false; }; }, {}, ["filters"], ["*"], false, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<EventFiltersComponent, "hvy-event-filters", never, { "filterSet": { "alias": "filterSet"; "required": false; }; }, { "filtered": "filtered"; }, ["filters"], ["*"], false, never>;
16
17
  }
@@ -7,13 +7,13 @@ export declare const EventActions: {
7
7
  }) => {
8
8
  next?: boolean | undefined;
9
9
  } & import("@ngrx/store/src/models").TypedAction<"[Event] Load Events">>;
10
- loadSuccess: import("@ngrx/store").ActionCreator<"[Event Api] (bus) Load Events Success", (props: {
10
+ loadSuccess: import("@ngrx/store").ActionCreator<"[Event Api] Load Events Success", (props: {
11
11
  events: HypEventDetails[];
12
12
  startingFrom?: number | undefined;
13
13
  }) => {
14
14
  events: HypEventDetails[];
15
15
  startingFrom?: number | undefined;
16
- } & import("@ngrx/store/src/models").TypedAction<"[Event Api] (bus) Load Events Success">>;
16
+ } & import("@ngrx/store/src/models").TypedAction<"[Event Api] Load Events Success">>;
17
17
  loadFailure: import("@ngrx/store").ActionCreator<"[Event Api] Load Events Failure", (props: {
18
18
  error: string;
19
19
  }) => {
@@ -47,13 +47,13 @@ export declare const EventActions: {
47
47
  }) => {
48
48
  id: number;
49
49
  } & import("@ngrx/store/src/models").TypedAction<"[Event] Load specific Event for procedure">>;
50
- getSuccess: import("@ngrx/store").ActionCreator<"[Event Api] (bus) Get Events/Procedure Success", (props: {
50
+ getSuccess: import("@ngrx/store").ActionCreator<"[Event Api] Get Events/Procedure Success", (props: {
51
51
  event?: HypEventDetails | undefined;
52
52
  procedure?: HypProcedure | undefined;
53
53
  }) => {
54
54
  event?: HypEventDetails | undefined;
55
55
  procedure?: HypProcedure | undefined;
56
- } & import("@ngrx/store/src/models").TypedAction<"[Event Api] (bus) Get Events/Procedure Success">>;
56
+ } & import("@ngrx/store/src/models").TypedAction<"[Event Api] Get Events/Procedure Success">>;
57
57
  getFailure: import("@ngrx/store").ActionCreator<"[Event Api] Get Events/Procedure Failure", (props: {
58
58
  error: string;
59
59
  }) => {
@@ -64,11 +64,11 @@ export declare const EventActions: {
64
64
  }) => {
65
65
  name: string;
66
66
  } & import("@ngrx/store/src/models").TypedAction<"[Event] Load tooltip info">>;
67
- getTooltipInfoSuccess: import("@ngrx/store").ActionCreator<"[Event Api] (bus) Load tooltip info Success", (props: {
67
+ getTooltipInfoSuccess: import("@ngrx/store").ActionCreator<"[Event Api] Load tooltip info Success", (props: {
68
68
  event: HypEventTooltip;
69
69
  }) => {
70
70
  event: HypEventTooltip;
71
- } & import("@ngrx/store/src/models").TypedAction<"[Event Api] (bus) Load tooltip info Success">>;
71
+ } & import("@ngrx/store/src/models").TypedAction<"[Event Api] Load tooltip info Success">>;
72
72
  getTooltipInfoFailure: import("@ngrx/store").ActionCreator<"[Event Api] Load tooltip info Failure", (props: {
73
73
  error: string;
74
74
  }) => {
@@ -9,24 +9,24 @@ export declare class EventEffects {
9
9
  loadEvents$: import("rxjs").Observable<({
10
10
  events: import("@provoly/hypervisor").HypEventDetails[];
11
11
  startingFrom?: number | undefined;
12
- } & import("@ngrx/store/src/models").TypedAction<"[Event Api] (bus) Load Events Success">) | ({
12
+ } & import("@ngrx/store/src/models").TypedAction<"[Event Api] Load Events Success">) | ({
13
13
  error: string;
14
14
  } & import("@ngrx/store/src/models").TypedAction<"[Event Api] Load Events Failure">)> & import("@ngrx/effects").CreateEffectMetadata;
15
15
  getEvent$: import("rxjs").Observable<({
16
16
  event?: import("@provoly/hypervisor").HypEventDetails | undefined;
17
17
  procedure?: import("@provoly/hypervisor").HypProcedure | undefined;
18
- } & import("@ngrx/store/src/models").TypedAction<"[Event Api] (bus) Get Events/Procedure Success">) | ({
18
+ } & import("@ngrx/store/src/models").TypedAction<"[Event Api] Get Events/Procedure Success">) | ({
19
19
  error: string;
20
20
  } & import("@ngrx/store/src/models").TypedAction<"[Event Api] Get Events/Procedure Failure">)> & import("@ngrx/effects").CreateEffectMetadata;
21
21
  getEventByName$: import("rxjs").Observable<({
22
22
  event: import("../../model/event/hyp-event-tooltip.interface").HypEventTooltip;
23
- } & import("@ngrx/store/src/models").TypedAction<"[Event Api] (bus) Load tooltip info Success">) | ({
23
+ } & import("@ngrx/store/src/models").TypedAction<"[Event Api] Load tooltip info Success">) | ({
24
24
  error: string;
25
25
  } & import("@ngrx/store/src/models").TypedAction<"[Event Api] Load tooltip info Failure">)> & import("@ngrx/effects").CreateEffectMetadata;
26
26
  getForProcedureEvent$: import("rxjs").Observable<({
27
27
  event?: import("@provoly/hypervisor").HypEventDetails | undefined;
28
28
  procedure?: import("@provoly/hypervisor").HypProcedure | undefined;
29
- } & import("@ngrx/store/src/models").TypedAction<"[Event Api] (bus) Get Events/Procedure Success">) | ({
29
+ } & import("@ngrx/store/src/models").TypedAction<"[Event Api] Get Events/Procedure Success">) | ({
30
30
  error: string;
31
31
  } & import("@ngrx/store/src/models").TypedAction<"[Event Api] Get Events/Procedure Failure">)> & import("@ngrx/effects").CreateEffectMetadata;
32
32
  saveEvent$: import("rxjs").Observable<({