@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/esm2022/src/lib/general/last-events/last-events.component.mjs +5 -3
- package/esm2022/src/lib/general/procedure-actions/action-parameters/service/service-action-display.component.mjs +13 -6
- package/esm2022/src/lib/store/hypervisor/hypervisor.actions.mjs +3 -2
- package/esm2022/src/lib/store/hypervisor/hypervisor.reducer.mjs +4 -1
- package/esm2022/src/lib/store/hypervisor/hypervisor.selectors.mjs +4 -2
- package/fesm2022/provoly-hypervisor.mjs +20 -9
- package/fesm2022/provoly-hypervisor.mjs.map +1 -1
- package/package.json +1 -1
- package/src/lib/general/last-events/last-events.component.d.ts +1 -0
- package/src/lib/general/procedure-actions/action-parameters/service/service-action-display.component.d.ts +5 -1
- package/src/lib/store/hypervisor/hypervisor.actions.d.ts +5 -0
- package/src/lib/store/hypervisor/hypervisor.reducer.d.ts +1 -0
- package/src/lib/store/hypervisor/hypervisor.selectors.d.ts +1 -0
- package/styles/components/_a-button-link.scss +4 -0
package/package.json
CHANGED
|
@@ -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
|
-
|
|
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
|
};
|