@provoly/hypervisor 2.3.3 → 2.3.5

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.3",
3
+ "version": "2.3.5",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": "17.x || 18.x",
6
6
  "@angular/common": "17.x || 18.x",
@@ -3,6 +3,7 @@ import { Store } from '@ngrx/store';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class DateFilterComponent extends HvyUnitFilterComponent {
5
5
  private store;
6
+ max?: string;
6
7
  value: string;
7
8
  constructor(store: Store);
8
9
  getParams(): {
@@ -10,5 +11,5 @@ export declare class DateFilterComponent extends HvyUnitFilterComponent {
10
11
  };
11
12
  triggerChange($event: Event): void;
12
13
  static ɵfac: i0.ɵɵFactoryDeclaration<DateFilterComponent, never>;
13
- static ɵcmp: i0.ɵɵComponentDeclaration<DateFilterComponent, "hvy-date-filter", never, {}, {}, never, never, false, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<DateFilterComponent, "hvy-date-filter", never, { "max": { "alias": "max"; "required": false; }; }, {}, never, never, false, never>;
14
15
  }
@@ -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,12 @@ 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
+ constructor(pryDialog: PryDialogService, overlay: Overlay, serviceService: ServiceService, i18n: I18nPipe, store: Store);
24
27
  ngOnInit(): void;
25
28
  initActionReference(): void;
26
29
  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
+ }
@@ -386,16 +386,28 @@ div.mat-mdc-autocomplete-panel {
386
386
  display: flex;
387
387
  flex-direction: column;
388
388
  align-items: center;
389
+ width: 28.25em;
390
+ max-width: 28.25em;
391
+ padding-bottom: 0.75em;
392
+ margin-top: -0.375em;
393
+
394
+ h3 {
395
+ font-size: 1.0625em;
396
+ font-weight: bold;
397
+ text-align: center;
398
+ }
399
+
400
+ p {
401
+ font-size: 0.875em;
402
+ font-weight: normal;
403
+ text-align: center;
404
+ }
389
405
 
390
406
  &__container {
391
407
  display: flex;
392
408
  width: max-content;
393
409
  flex-direction: column;
394
410
  align-items: center;
395
-
396
- p:first-child {
397
- //font-weight: bold;
398
- }
399
411
  }
400
412
  }
401
413