@provoly/hypervisor 0.0.34 → 0.0.36

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.34",
3
+ "version": "0.0.36",
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": "^0.25.7"
17
+ "@provoly/dashboard": "^1.1.2"
18
18
  },
19
19
  "dependencies": {
20
20
  "tslib": "^2.6.2"
@@ -22,12 +22,12 @@ export declare class EventListComponent extends SubscriptionnerDirective impleme
22
22
  };
23
23
  _store: Store<any>;
24
24
  allSelected$: Observable<boolean>;
25
- _inhibate: boolean;
25
+ _inhibit: boolean;
26
26
  constructor(store: Store<any>, el: ElementRef, router: Router, scroll: InfiniteScrollService);
27
27
  ngAfterViewInit(): void;
28
28
  select(event: HypEventDetails, $event: MouseEvent): void;
29
29
  selectAll($event: any): void;
30
- inhibate(): void;
30
+ inhibit(): void;
31
31
  goTo(event: HypEventDetails): Promise<boolean>;
32
32
  static ɵfac: i0.ɵɵFactoryDeclaration<EventListComponent, never>;
33
33
  static ɵcmp: i0.ɵɵComponentDeclaration<EventListComponent, "hvy-event-list", never, {}, {}, never, ["*"], false, never>;
@@ -36,6 +36,11 @@ export declare class EventEffects {
36
36
  } & import("@ngrx/store/src/models").TypedAction<"[Event] Save success">) | ({
37
37
  error: string;
38
38
  } & import("@ngrx/store/src/models").TypedAction<"[Event] Save failure">)> & import("@ngrx/effects").CreateEffectMetadata;
39
+ refreshAfterSave$: import("rxjs").Observable<({
40
+ id: string;
41
+ } & import("@ngrx/store/src/models").TypedAction<"[Event] Load specific Event">) | ({
42
+ id: string;
43
+ } & import("@ngrx/store/src/models").TypedAction<"[Event] Load specific Event for procedure">)> & import("@ngrx/effects").CreateEffectMetadata;
39
44
  close$: import("rxjs").Observable<import("@ngrx/store/src/models").TypedAction<"[Event] Close success"> | ({
40
45
  error: string;
41
46
  } & import("@ngrx/store/src/models").TypedAction<"[Event] Close failure">)> & import("@ngrx/effects").CreateEffectMetadata;
@@ -1,16 +1,6 @@
1
1
  @use 'node_modules/@provoly/dashboard/styles/abstracts' as *;
2
2
  @use 'node_modules/@provoly/dashboard/styles-theme/abstracts-theme/variables.theme' as *;
3
3
 
4
- hvy-choice-filter {
5
-
6
- .o-hvy-choice-filter.-focus {
7
- outline: 2px solid themed($theme-map, 'color', 'accent', 600);
8
- outline-offset: toRem(2);
9
- border-color: themed($theme-map, 'color', 'accent', 600);
10
- border-width: toRem(1);
11
- }
12
- }
13
-
14
4
  .o-hvy-event-filters {
15
5
  display: flex;
16
6
  flex-direction: row;