@provoly/hypervisor 2.3.4 → 2.3.6

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": "2.3.4",
3
+ "version": "2.3.6",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": "17.x || 18.x",
6
6
  "@angular/common": "17.x || 18.x",
@@ -15,6 +15,7 @@ export declare class LastEventsComponent extends SubscriptionnerDirective implem
15
15
  closeDialogEmit: EventEmitter<boolean>;
16
16
  closeButton: boolean;
17
17
  references: string[];
18
+ diUrl$: import("rxjs").Observable<string | undefined>;
18
19
  constructor(router: Router, store: Store<any>);
19
20
  ngOnInit(): void;
20
21
  closeDialog(): void;
@@ -5,6 +5,7 @@ import { PryDialogService, I18nPipe } from '@provoly/dashboard';
5
5
  import { Overlay } from '@angular/cdk/overlay';
6
6
  import { ServiceService } from '../../../../store/service/service.service';
7
7
  import { act } from '@ngrx/effects';
8
+ import { Store } from '@ngrx/store';
8
9
  import * as i0 from "@angular/core";
9
10
  export interface HypServiceAction extends HypAction {
10
11
  name: string;
@@ -17,10 +18,13 @@ export declare class HvyServiceActionDisplayComponent extends HvyBaseParameterAc
17
18
  private overlay;
18
19
  private serviceService;
19
20
  private i18n;
21
+ private store;
20
22
  menuButton: ElementRef;
21
23
  status: string;
22
24
  reference: string;
23
- constructor(pryDialog: PryDialogService, overlay: Overlay, serviceService: ServiceService, i18n: I18nPipe);
25
+ diUrl: import("@angular/core").Signal<string | undefined>;
26
+ toto: import("rxjs").Observable<string | undefined>;
27
+ constructor(pryDialog: PryDialogService, overlay: Overlay, serviceService: ServiceService, i18n: I18nPipe, store: Store);
24
28
  ngOnInit(): void;
25
29
  initActionReference(): void;
26
30
  toggleModal(): void;
@@ -4,4 +4,9 @@ export declare const HypervisorActions: {
4
4
  }) => {
5
5
  url?: string;
6
6
  } & import("@ngrx/store").Action<"[Event] Set Backend Url">>;
7
+ setDiUrl: import("@ngrx/store").ActionCreator<"[Event] Set DI Url", (props: {
8
+ diUrl?: string;
9
+ }) => {
10
+ diUrl?: string;
11
+ } & import("@ngrx/store").Action<"[Event] Set DI Url">>;
7
12
  };
@@ -2,6 +2,7 @@ import { Action } from '@ngrx/store';
2
2
  export declare const hypFeatureKey = "@hvy/general";
3
3
  export interface HypState {
4
4
  url: string;
5
+ diUrl?: string;
5
6
  }
6
7
  export declare const hypInitialState: HypState;
7
8
  export declare function hypervisorReducer(state: HypState, action: Action): HypState;
@@ -2,4 +2,5 @@ import { HypState } from './hypervisor.reducer';
2
2
  export declare const HypSelectors: {
3
3
  feature: import("@ngrx/store").MemoizedSelector<object, HypState, import("@ngrx/store").DefaultProjectorFn<HypState>>;
4
4
  url: import("@ngrx/store").MemoizedSelector<object, string, (s1: HypState) => string>;
5
+ diUrl: import("@ngrx/store").MemoizedSelector<object, string | undefined, (s1: HypState) => string | undefined>;
5
6
  };
@@ -5,3 +5,7 @@ button.a-link {
5
5
  text-decoration: underline;
6
6
  cursor: pointer;
7
7
  }
8
+
9
+ a.a-di-link {
10
+ color: #274873;
11
+ }