@provoly/hypervisor 0.0.103 → 0.0.105

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.103",
3
+ "version": "0.0.105",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": "16.x || 17.x",
6
6
  "@angular/common": "16.x || 17.x",
@@ -5,10 +5,11 @@ export declare class EventSummaryItemComponent {
5
5
  store: Store;
6
6
  event: HypEventSummary;
7
7
  linkBase: string[];
8
+ doNotRedirectToDetail: boolean | null;
8
9
  EVENT_LINK: {
9
10
  fn: (event: import("@provoly/hypervisor").HypEventDetails | HypEventSummary, store: Store<any>) => string[];
10
11
  };
11
12
  constructor(store: Store);
12
13
  static ɵfac: i0.ɵɵFactoryDeclaration<EventSummaryItemComponent, never>;
13
- static ɵcmp: i0.ɵɵComponentDeclaration<EventSummaryItemComponent, "hvy-event-summary-item", never, { "event": { "alias": "event"; "required": true; }; "linkBase": { "alias": "linkBase"; "required": false; }; }, {}, never, never, false, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<EventSummaryItemComponent, "hvy-event-summary-item", never, { "event": { "alias": "event"; "required": true; }; "linkBase": { "alias": "linkBase"; "required": false; }; "doNotRedirectToDetail": { "alias": "doNotRedirectToDetail"; "required": false; }; }, {}, never, never, false, never>;
14
15
  }
@@ -11,9 +11,10 @@ export declare class EventSummaryListComponent implements OnInit {
11
11
  status: string;
12
12
  consultLink: string[];
13
13
  itemLinkBase: string[];
14
+ doNotRedirectToDetail: boolean | null;
14
15
  constructor(store: Store<any>, router: Router);
15
16
  ngOnInit(): void;
16
17
  filterAndRoute(status: string): void;
17
18
  static ɵfac: i0.ɵɵFactoryDeclaration<EventSummaryListComponent, never>;
18
- static ɵcmp: i0.ɵɵComponentDeclaration<EventSummaryListComponent, "hvy-event-summary-list", never, { "events": { "alias": "events"; "required": false; }; "totalEventCount": { "alias": "totalEventCount"; "required": false; }; "status": { "alias": "status"; "required": false; }; "consultLink": { "alias": "consultLink"; "required": false; }; "itemLinkBase": { "alias": "itemLinkBase"; "required": false; }; }, {}, never, never, false, never>;
19
+ static ɵcmp: i0.ɵɵComponentDeclaration<EventSummaryListComponent, "hvy-event-summary-list", never, { "events": { "alias": "events"; "required": false; }; "totalEventCount": { "alias": "totalEventCount"; "required": false; }; "status": { "alias": "status"; "required": false; }; "consultLink": { "alias": "consultLink"; "required": false; }; "itemLinkBase": { "alias": "itemLinkBase"; "required": false; }; "doNotRedirectToDetail": { "alias": "doNotRedirectToDetail"; "required": false; }; }, {}, never, never, false, never>;
19
20
  }
@@ -11,8 +11,9 @@ export declare class EventSummaryPageComponent extends SubscriptionnerDirective
11
11
  selectedCriticality$: Observable<string | undefined>;
12
12
  criticalityList: string[];
13
13
  statusList: string[];
14
+ doNotRedirectToDetail: boolean | null;
14
15
  constructor(store: Store<any>);
15
16
  filterByCriticality($event: string): void;
16
17
  static ɵfac: i0.ɵɵFactoryDeclaration<EventSummaryPageComponent, never>;
17
- static ɵcmp: i0.ɵɵComponentDeclaration<EventSummaryPageComponent, "hvy-event-summary-page", never, { "pageTitle": { "alias": "pageTitle"; "required": false; }; "consultLink": { "alias": "consultLink"; "required": false; }; }, {}, never, never, false, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<EventSummaryPageComponent, "hvy-event-summary-page", never, { "pageTitle": { "alias": "pageTitle"; "required": false; }; "consultLink": { "alias": "consultLink"; "required": false; }; "doNotRedirectToDetail": { "alias": "doNotRedirectToDetail"; "required": false; }; }, {}, never, never, false, never>;
18
19
  }
@@ -53,6 +53,7 @@ export declare const enTranslations: {
53
53
  noAction: string;
54
54
  name: string;
55
55
  name1: string;
56
+ none: string;
56
57
  };
57
58
  };
58
59
  category: {
@@ -53,6 +53,7 @@ export declare const frTranslations: {
53
53
  noAction: string;
54
54
  name: string;
55
55
  name1: string;
56
+ none: string;
56
57
  };
57
58
  };
58
59
  category: {
@@ -15,6 +15,12 @@
15
15
  transition: background-color 0.3s ease-in-out;
16
16
  }
17
17
 
18
+ &.-no-pointer {
19
+ &:hover {
20
+ cursor: auto;
21
+ }
22
+ }
23
+
18
24
  &__title {
19
25
  h4 {
20
26
  color: themed($theme-map, 'color', 'primary', 700);
@@ -162,6 +162,10 @@
162
162
  }
163
163
  }
164
164
 
165
+ &__empty {
166
+ margin: 0 auto;
167
+ }
168
+
165
169
  &__description {
166
170
  p {
167
171
  font-size: toRem(14);