@provoly/hypervisor 0.0.83 → 0.0.85

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.
Files changed (39) hide show
  1. package/esm2022/src/lib/event/detail/event-detail.component.mjs +27 -52
  2. package/esm2022/src/lib/event/list/event-list.component.mjs +4 -3
  3. package/esm2022/src/lib/event-summary/item/event-summary-item.component.mjs +3 -3
  4. package/esm2022/src/lib/general/display-locale-datetime/display-locale-datetime.pipe.mjs +25 -0
  5. package/esm2022/src/lib/general/for-datetime-local-pipe/for-datetime-local.pipe.mjs +10 -10
  6. package/esm2022/src/lib/general/i18n/en.translations.mjs +2 -7
  7. package/esm2022/src/lib/general/i18n/fr.translations.mjs +14 -14
  8. package/esm2022/src/lib/general/icon-display/icon-display.component.mjs +7 -3
  9. package/esm2022/src/lib/general/public-api.mjs +2 -1
  10. package/esm2022/src/lib/hypervisor.module.mjs +8 -4
  11. package/esm2022/src/lib/model/event/hyp-event-category.type.mjs +15 -6
  12. package/esm2022/src/lib/model/event/hyp-event-summary.interface.mjs +1 -1
  13. package/esm2022/src/lib/model/event/hyp-event.interface.mjs +1 -1
  14. package/esm2022/src/lib/procedure/model-detail/procedure-model-detail.component.mjs +3 -3
  15. package/esm2022/src/lib/procedure/model-list/procedure-list.component.mjs +4 -3
  16. package/esm2022/src/lib/store/procedure/procedure.actions.mjs +1 -1
  17. package/esm2022/src/lib/store/procedure/procedure.effects.mjs +2 -2
  18. package/fesm2022/provoly-hypervisor.mjs +112 -103
  19. package/fesm2022/provoly-hypervisor.mjs.map +1 -1
  20. package/package.json +1 -1
  21. package/src/lib/event/detail/event-detail.component.d.ts +3 -0
  22. package/src/lib/general/display-locale-datetime/display-locale-datetime.pipe.d.ts +9 -0
  23. package/src/lib/general/for-datetime-local-pipe/for-datetime-local.pipe.d.ts +2 -4
  24. package/src/lib/general/i18n/en.translations.d.ts +0 -5
  25. package/src/lib/general/i18n/fr.translations.d.ts +8 -8
  26. package/src/lib/general/icon-display/icon-display.component.d.ts +5 -0
  27. package/src/lib/general/public-api.d.ts +1 -0
  28. package/src/lib/hypervisor.module.d.ts +10 -9
  29. package/src/lib/model/event/hyp-event-category.type.d.ts +6 -1
  30. package/src/lib/model/event/hyp-event-detail.interface.d.ts +1 -1
  31. package/src/lib/model/event/hyp-event-summary.interface.d.ts +2 -4
  32. package/src/lib/model/event/hyp-event.interface.d.ts +1 -1
  33. package/src/lib/model/procedure/hyp-procedure.interface.d.ts +1 -1
  34. package/src/lib/store/procedure/procedure.actions.d.ts +2 -0
  35. package/src/lib/store/procedure/procedure.effects.d.ts +1 -0
  36. package/styles/components/_m-hvy-event-summary-item.scss +13 -4
  37. package/styles/components/_o-hvy-event-detail.scss +4 -0
  38. package/styles/components/_o-hvy-events-table.scss +2 -2
  39. package/styles/components/_o-hvy-procedure-list.scss +23 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@provoly/hypervisor",
3
- "version": "0.0.83",
3
+ "version": "0.0.85",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": "16.x || 17.x",
6
6
  "@angular/common": "16.x || 17.x",
@@ -59,6 +59,7 @@ export declare class EventDetailComponent extends SubscriptionnerDirective {
59
59
  access(event: HypEventDetails): {
60
60
  name: boolean;
61
61
  category: boolean;
62
+ subCategory: boolean;
62
63
  criticality: boolean;
63
64
  description: boolean;
64
65
  address: boolean;
@@ -87,9 +88,11 @@ export declare class EventDetailComponent extends SubscriptionnerDirective {
87
88
  protected readonly padId: {
88
89
  fn: (id: string | number) => string;
89
90
  };
91
+ protected readonly subCategories: (string | undefined)[];
90
92
  modifiedActions($event: any): void;
91
93
  openAssociationModal(): void;
92
94
  deleteProcedure(): void;
95
+ private convertDate;
93
96
  static ɵfac: i0.ɵɵFactoryDeclaration<EventDetailComponent, never>;
94
97
  static ɵcmp: i0.ɵɵComponentDeclaration<EventDetailComponent, "hvy-event-detail", never, { "title": { "alias": "title"; "required": false; }; "events": { "alias": "events"; "required": false; }; "procedure": { "alias": "procedure"; "required": false; }; "cancelModifications": { "alias": "cancelModifications"; "required": false; }; "equipmentName": { "alias": "equipmentName"; "required": false; }; }, { "modifiedEvents": "modifiedEvents"; "modifiedProcedure": "modifiedProcedure"; "eventErrors": "eventErrors"; }, never, never, false, never>;
95
98
  }
@@ -0,0 +1,9 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class DisplayLocaleDateTime implements PipeTransform {
4
+ static format: Intl.DateTimeFormat;
5
+ constructor();
6
+ transform(dateAsString: string | undefined, ...args: unknown[]): string;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<DisplayLocaleDateTime, never>;
8
+ static ɵpipe: i0.ɵɵPipeDeclaration<DisplayLocaleDateTime, "displayLocaleDatetime", false>;
9
+ }
@@ -1,10 +1,8 @@
1
1
  import { PipeTransform } from '@angular/core';
2
- import { Store } from '@ngrx/store';
3
2
  import * as i0 from "@angular/core";
4
3
  export declare class ForDatetimeLocalPipe implements PipeTransform {
5
- private store;
6
- constructor(store: Store<any>);
7
- transform(completeDate: string | undefined, ...args: unknown[]): string;
4
+ constructor();
5
+ transform(dateAsString: string | undefined, ...args: unknown[]): string;
8
6
  static ɵfac: i0.ɵɵFactoryDeclaration<ForDatetimeLocalPipe, never>;
9
7
  static ɵpipe: i0.ɵɵPipeDeclaration<ForDatetimeLocalPipe, "forDateTimeLocal", false>;
10
8
  }
@@ -57,11 +57,6 @@ export declare const enTranslations: {
57
57
  };
58
58
  category: {
59
59
  name: string;
60
- MALFUNCTION: string;
61
- REPORT: string;
62
- OPERATOR: string;
63
- LIMIT: string;
64
- MANIFESTATION: string;
65
60
  };
66
61
  criticality: {
67
62
  name: string;
@@ -2,11 +2,11 @@ export declare const frTranslations: {
2
2
  '@hvy': {
3
3
  event: {
4
4
  name: string;
5
- type: {
5
+ subCategory: {
6
6
  name: string;
7
- ALERT: string;
8
- REPORT: string;
9
- OPERATOR: string;
7
+ UNUSUAL_FLOW: string;
8
+ TRAFFIC_CONGESTION: string;
9
+ WILD_STORAGE: string;
10
10
  };
11
11
  status: {
12
12
  name: string;
@@ -57,11 +57,10 @@ export declare const frTranslations: {
57
57
  };
58
58
  category: {
59
59
  name: string;
60
- MALFUNCTION: string;
61
- REPORT: string;
62
- OPERATOR: string;
63
- LIMIT: string;
64
60
  MANIFESTATION: string;
61
+ LIMIT: string;
62
+ OUTOFORDER: string;
63
+ ANOMALY: string;
65
64
  };
66
65
  criticality: {
67
66
  name: string;
@@ -126,6 +125,7 @@ export declare const frTranslations: {
126
125
  actions: string;
127
126
  description: string;
128
127
  creator: string;
128
+ formTitle: string;
129
129
  action: {
130
130
  add: string;
131
131
  create: string;
@@ -2,6 +2,11 @@ import { HypEvent } from '../../model/event/hyp-event.interface';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class IconDisplayComponent {
4
4
  event: HypEvent;
5
+ protected readonly CategoryBackground: {
6
+ values: {
7
+ [type: string]: string;
8
+ };
9
+ };
5
10
  static ɵfac: i0.ɵɵFactoryDeclaration<IconDisplayComponent, never>;
6
11
  static ɵcmp: i0.ɵɵComponentDeclaration<IconDisplayComponent, "hvy-icon-display", never, { "event": { "alias": "event"; "required": false; }; }, {}, never, never, false, never>;
7
12
  }
@@ -4,6 +4,7 @@ export * from './i18n/fr.translations';
4
4
  export * from './icon-pipe/event-icon.pipe';
5
5
  export * from './icon-pipe/event-icon.pipe';
6
6
  export * from './for-datetime-local-pipe/for-datetime-local.pipe';
7
+ export * from './display-locale-datetime/display-locale-datetime.pipe';
7
8
  export * from './icon-display/icon-display.component';
8
9
  export * from './status-display/status-display.component';
9
10
  export * from './progress-display/progress-display.component';
@@ -35,14 +35,15 @@ import * as i30 from "./general/procedure-actions/action-parameters/email/email-
35
35
  import * as i31 from "./general/procedure-actions/action-parameters/email/email-action-parameter.component";
36
36
  import * as i32 from "./general/procedure-actions/action-parameters/service/service-action-parameter.component";
37
37
  import * as i33 from "./general/procedure-actions/action-parameters/service/service-action-display.component";
38
- import * as i34 from "./general/procedure-actions/procedure-actions.component";
39
- import * as i35 from "@ngrx/store";
40
- import * as i36 from "@ngrx/effects";
41
- import * as i37 from "@angular/common";
42
- import * as i38 from "@provoly/dashboard";
43
- import * as i39 from "@provoly/dashboard/components/checkbox";
44
- import * as i40 from "@angular/forms";
45
- import * as i41 from "@angular/router";
38
+ import * as i34 from "./general/display-locale-datetime/display-locale-datetime.pipe";
39
+ import * as i35 from "./general/procedure-actions/procedure-actions.component";
40
+ import * as i36 from "@ngrx/store";
41
+ import * as i37 from "@ngrx/effects";
42
+ import * as i38 from "@angular/common";
43
+ import * as i39 from "@provoly/dashboard";
44
+ import * as i40 from "@provoly/dashboard/components/checkbox";
45
+ import * as i41 from "@angular/forms";
46
+ import * as i42 from "@angular/router";
46
47
  export declare class PvyHypervisorModule {
47
48
  private baseConfig;
48
49
  private store;
@@ -54,6 +55,6 @@ export declare class PvyHypervisorModule {
54
55
  url: string;
55
56
  }, store: Store<any>, i18nService: PryI18nService);
56
57
  static ɵfac: i0.ɵɵFactoryDeclaration<PvyHypervisorModule, never>;
57
- static ɵmod: i0.ɵɵNgModuleDeclaration<PvyHypervisorModule, [typeof i1.EventDetailComponent, typeof i2.EventListComponent, typeof i3.EventColumnOrderComponent, typeof i4.IconDisplayComponent, typeof i5.EventSummaryItemComponent, typeof i6.EventSummaryListComponent, typeof i7.EventSummaryPageComponent, typeof i8.EventIconPipe, typeof i9.ForDatetimeLocalPipe, typeof i10.StatusDisplayComponent, typeof i11.ProgressDisplayComponent, typeof i12.ColumnOrderComponent, typeof i13.EventFiltersComponent, typeof i14.DateFilterComponent, typeof i15.TextFilterComponent, typeof i16.ChoiceFilterComponent, typeof i17.ProcedureListComponent, typeof i18.ProcedureColumnOrderComponent, typeof i19.ProcedureAssociationModalComponent, typeof i20.ProcedureModelDetailComponent, typeof i21.ImmediateFiltersComponent, typeof i22.HvyActionMenuComponent, typeof i23.HvyActionParameterComponent, typeof i24.HvyBaseParameterActionComponent, typeof i25.HvyOtherActionParameterComponent, typeof i26.HvyOtherActionDisplayComponent, typeof i27.HvyNoParamsActionDisplayComponent, typeof i28.HvyPhoneActionParameterComponent, typeof i29.HvyPhoneActionDisplayComponent, typeof i30.HvyEmailActionDisplayComponent, typeof i31.HvyEmailActionParameterComponent, typeof i32.HvyServiceActionParameterComponent, typeof i33.HvyServiceActionDisplayComponent, typeof i34.ProcedureActionsComponent], [typeof i35.StoreFeatureModule, typeof i35.StoreFeatureModule, typeof i35.StoreFeatureModule, typeof i35.StoreFeatureModule, typeof i36.EffectsFeatureModule, typeof i37.NgForOf, typeof i37.AsyncPipe, typeof i38.PryI18nModule, typeof i38.PryCoreModule, typeof i37.NgStyle, typeof i39.PryCheckboxModule, typeof i40.FormsModule, typeof i41.RouterLink, typeof i38.PrySinceDateModule, typeof i37.DatePipe, typeof i38.PryIconModule, typeof i37.KeyValuePipe, typeof i38.PrySelectModule, typeof i37.JsonPipe, typeof i38.PryDatePickerModule, typeof i37.NgIf], [typeof i1.EventDetailComponent, typeof i2.EventListComponent, typeof i3.EventColumnOrderComponent, typeof i4.IconDisplayComponent, typeof i5.EventSummaryItemComponent, typeof i6.EventSummaryListComponent, typeof i7.EventSummaryPageComponent, typeof i8.EventIconPipe, typeof i9.ForDatetimeLocalPipe, typeof i10.StatusDisplayComponent, typeof i11.ProgressDisplayComponent, typeof i12.ColumnOrderComponent, typeof i13.EventFiltersComponent, typeof i14.DateFilterComponent, typeof i15.TextFilterComponent, typeof i16.ChoiceFilterComponent, typeof i17.ProcedureListComponent, typeof i18.ProcedureColumnOrderComponent, typeof i19.ProcedureAssociationModalComponent, typeof i20.ProcedureModelDetailComponent, typeof i21.ImmediateFiltersComponent, typeof i22.HvyActionMenuComponent, typeof i23.HvyActionParameterComponent, typeof i24.HvyBaseParameterActionComponent, typeof i25.HvyOtherActionParameterComponent, typeof i26.HvyOtherActionDisplayComponent, typeof i27.HvyNoParamsActionDisplayComponent, typeof i28.HvyPhoneActionParameterComponent, typeof i29.HvyPhoneActionDisplayComponent, typeof i30.HvyEmailActionDisplayComponent, typeof i31.HvyEmailActionParameterComponent, typeof i32.HvyServiceActionParameterComponent, typeof i33.HvyServiceActionDisplayComponent]>;
58
+ static ɵmod: i0.ɵɵNgModuleDeclaration<PvyHypervisorModule, [typeof i1.EventDetailComponent, typeof i2.EventListComponent, typeof i3.EventColumnOrderComponent, typeof i4.IconDisplayComponent, typeof i5.EventSummaryItemComponent, typeof i6.EventSummaryListComponent, typeof i7.EventSummaryPageComponent, typeof i8.EventIconPipe, typeof i9.ForDatetimeLocalPipe, typeof i10.StatusDisplayComponent, typeof i11.ProgressDisplayComponent, typeof i12.ColumnOrderComponent, typeof i13.EventFiltersComponent, typeof i14.DateFilterComponent, typeof i15.TextFilterComponent, typeof i16.ChoiceFilterComponent, typeof i17.ProcedureListComponent, typeof i18.ProcedureColumnOrderComponent, typeof i19.ProcedureAssociationModalComponent, typeof i20.ProcedureModelDetailComponent, typeof i21.ImmediateFiltersComponent, typeof i22.HvyActionMenuComponent, typeof i23.HvyActionParameterComponent, typeof i24.HvyBaseParameterActionComponent, typeof i25.HvyOtherActionParameterComponent, typeof i26.HvyOtherActionDisplayComponent, typeof i27.HvyNoParamsActionDisplayComponent, typeof i28.HvyPhoneActionParameterComponent, typeof i29.HvyPhoneActionDisplayComponent, typeof i30.HvyEmailActionDisplayComponent, typeof i31.HvyEmailActionParameterComponent, typeof i32.HvyServiceActionParameterComponent, typeof i33.HvyServiceActionDisplayComponent, typeof i34.DisplayLocaleDateTime, typeof i35.ProcedureActionsComponent], [typeof i36.StoreFeatureModule, typeof i36.StoreFeatureModule, typeof i36.StoreFeatureModule, typeof i36.StoreFeatureModule, typeof i37.EffectsFeatureModule, typeof i38.NgForOf, typeof i38.AsyncPipe, typeof i39.PryI18nModule, typeof i39.PryCoreModule, typeof i38.NgStyle, typeof i40.PryCheckboxModule, typeof i41.FormsModule, typeof i42.RouterLink, typeof i39.PrySinceDateModule, typeof i38.DatePipe, typeof i39.PryIconModule, typeof i38.KeyValuePipe, typeof i39.PrySelectModule, typeof i38.JsonPipe, typeof i39.PryDatePickerModule, typeof i38.NgIf], [typeof i1.EventDetailComponent, typeof i2.EventListComponent, typeof i3.EventColumnOrderComponent, typeof i4.IconDisplayComponent, typeof i5.EventSummaryItemComponent, typeof i6.EventSummaryListComponent, typeof i7.EventSummaryPageComponent, typeof i8.EventIconPipe, typeof i9.ForDatetimeLocalPipe, typeof i10.StatusDisplayComponent, typeof i11.ProgressDisplayComponent, typeof i12.ColumnOrderComponent, typeof i13.EventFiltersComponent, typeof i14.DateFilterComponent, typeof i15.TextFilterComponent, typeof i16.ChoiceFilterComponent, typeof i17.ProcedureListComponent, typeof i18.ProcedureColumnOrderComponent, typeof i19.ProcedureAssociationModalComponent, typeof i20.ProcedureModelDetailComponent, typeof i21.ImmediateFiltersComponent, typeof i22.HvyActionMenuComponent, typeof i23.HvyActionParameterComponent, typeof i24.HvyBaseParameterActionComponent, typeof i25.HvyOtherActionParameterComponent, typeof i26.HvyOtherActionDisplayComponent, typeof i27.HvyNoParamsActionDisplayComponent, typeof i28.HvyPhoneActionParameterComponent, typeof i29.HvyPhoneActionDisplayComponent, typeof i30.HvyEmailActionDisplayComponent, typeof i31.HvyEmailActionParameterComponent, typeof i32.HvyServiceActionParameterComponent, typeof i33.HvyServiceActionDisplayComponent, typeof i34.DisplayLocaleDateTime]>;
58
59
  static ɵinj: i0.ɵɵInjectorDeclaration<PvyHypervisorModule>;
59
60
  }
@@ -1,8 +1,13 @@
1
1
  export declare const HypEventCategory: {
2
2
  values: string[];
3
3
  };
4
- export declare const CATEGORIES_BY_TYPE: {
4
+ export declare const HypEventSubCategory: {
5
5
  values: {
6
6
  [type: string]: string[];
7
7
  };
8
8
  };
9
+ export declare const CategoryBackground: {
10
+ values: {
11
+ [type: string]: string;
12
+ };
13
+ };
@@ -44,6 +44,6 @@ export declare const eventForWriteAPI: (event: HypEventDetails) => {
44
44
  id: number;
45
45
  name: string;
46
46
  criticality: string;
47
- type: string;
48
47
  category: string;
48
+ subCategory?: string | undefined;
49
49
  };
@@ -2,10 +2,8 @@ import { HypEvent } from './hyp-event.interface';
2
2
  export interface HypEventSummary extends HypEvent {
3
3
  serviceCount: number;
4
4
  lastModificationDate: string;
5
- manifestation?: {
6
- startDate: string;
7
- endDate: string;
8
- };
5
+ startDate?: string;
6
+ endDate?: string;
9
7
  serviceTitle?: string;
10
8
  procedureId?: string;
11
9
  }
@@ -2,6 +2,6 @@ export interface HypEvent {
2
2
  id: number;
3
3
  name: string;
4
4
  criticality: string;
5
- type: string;
6
5
  category: string;
6
+ subCategory?: string;
7
7
  }
@@ -34,8 +34,8 @@ export declare const procedureForWriteAPI: (procedure: HypProcedure) => {
34
34
  id: number;
35
35
  name: string;
36
36
  criticality: string;
37
- type: string;
38
37
  category: string;
38
+ subCategory?: string | undefined;
39
39
  }[];
40
40
  id: number;
41
41
  name: string;
@@ -51,8 +51,10 @@ export declare const ProcedureActions: {
51
51
  } & import("@ngrx/store/src/models").TypedAction<"[Procedure] Save Procedure Model">>;
52
52
  saveSuccess: import("@ngrx/store").ActionCreator<"[Procedure] Save Procedure Model Success", (props: {
53
53
  model: HypProcedureModel;
54
+ wasCreation: boolean;
54
55
  }) => {
55
56
  model: HypProcedureModel;
57
+ wasCreation: boolean;
56
58
  } & import("@ngrx/store/src/models").TypedAction<"[Procedure] Save Procedure Model Success">>;
57
59
  saveFailure: import("@ngrx/store").ActionCreator<"[Procedure] Save Procedure Model Failure", (props: {
58
60
  error?: any;
@@ -22,6 +22,7 @@ export declare class ProcedureEffects {
22
22
  } & import("@ngrx/store/src/models").TypedAction<"[Procedure] Get Procedure Model Failure">)> & import("@ngrx/effects").CreateEffectMetadata;
23
23
  save$: import("rxjs").Observable<({
24
24
  model: import("@provoly/hypervisor").HypProcedureModel;
25
+ wasCreation: boolean;
25
26
  } & import("@ngrx/store/src/models").TypedAction<"[Procedure] Save Procedure Model Success">) | ({
26
27
  error?: any;
27
28
  } & import("@ngrx/store/src/models").TypedAction<"[Procedure] Save Procedure Model Failure">)> & import("@ngrx/effects").CreateEffectMetadata;
@@ -88,12 +88,12 @@
88
88
 
89
89
  // shapes
90
90
  // - circle
91
- &.-hvy-report {
91
+ &.-hvy-circle {
92
92
  border-radius: 50%;
93
93
  }
94
94
 
95
95
  // - triangle
96
- &.-hvy-alert {
96
+ &.-hvy-triangle {
97
97
  background-color: transparent;
98
98
  align-items: flex-end;
99
99
 
@@ -127,14 +127,23 @@
127
127
  }
128
128
  }
129
129
 
130
+ span {
131
+ transform: translateY(-2px);
132
+ }
133
+
134
+ }
135
+
136
+ &.-hvy-square {
137
+ // nothing
130
138
  }
131
139
 
132
140
  // -hexagon
133
- &.-hvy-operator {
141
+ &.-hvy-hexagon {
134
142
  background-color: transparent;
135
143
 
136
144
  span {
137
- margin-left: -2px;
145
+ margin-left: 1px;
146
+ margin-top: 2px;
138
147
  }
139
148
 
140
149
  // hexagon background
@@ -237,3 +237,7 @@
237
237
  background-color: #183C6B;
238
238
  opacity: 0.7;
239
239
  }
240
+
241
+ .a-pry-select__options__option {
242
+ min-height: toRem(35);
243
+ }
@@ -71,12 +71,12 @@ hvy-event-list {
71
71
  width: 25%;
72
72
  }
73
73
 
74
- .o-hvy-events-table__line__cell:nth-child(5) {
74
+ .o-hvy-events-table__line__cell:nth-child(6) {
75
75
  width: 15%;
76
76
  }
77
77
 
78
78
  .o-hvy-events-table__line__cell:last-child,
79
- .o-hvy-events-table__line__cell:nth-child(6),
79
+ .o-hvy-events-table__line__cell:nth-child(5),
80
80
  .o-hvy-events-table__line__cell:nth-child(7) {
81
81
  width: toRem(150);
82
82
  }
@@ -1,3 +1,6 @@
1
+ @use 'node_modules/@provoly/dashboard/styles/abstracts' as *;
2
+ @use 'node_modules/@provoly/dashboard/styles-theme/abstracts-theme/variables.theme' as *;
3
+
1
4
  .o-procedure-list {
2
5
  display: flex;
3
6
  flex-direction: column;
@@ -7,4 +10,24 @@
7
10
  display: flex;
8
11
  overflow: auto;
9
12
  }
13
+
14
+ .o-hvy-events-table {
15
+ .o-hvy-events-table__line__cell:nth-child(2) {
16
+ width: 20%;
17
+ text-align: left;
18
+ }
19
+
20
+ .o-hvy-events-table__line__cell:nth-child(3),
21
+ .o-hvy-events-table__line__cell:nth-child(4),
22
+ .o-hvy-events-table__line__cell:nth-child(5),
23
+ .o-hvy-events-table__line__cell:nth-child(6),
24
+ .o-hvy-events-table__line__cell:nth-child(7) {
25
+ width: 14%;
26
+ text-align: left;
27
+ }
28
+ .o-hvy-events-table__line__cell:nth-child(1),
29
+ .o-hvy-events-table__line__cell:nth-child(8){
30
+ width: toRem(100);
31
+ }
32
+ }
10
33
  }