@provoly/hypervisor 0.0.15 → 0.0.17
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/assets/svgs/event_filter.svg +5 -0
- package/assets/svgs/reset_filter_event.svg +13 -0
- package/esm2022/src/lib/event/detail/event-detail.component.mjs +49 -5
- package/esm2022/src/lib/event/filters/choice/choice-filter.component.mjs +118 -12
- package/esm2022/src/lib/event/filters/event-filters.component.mjs +6 -6
- package/esm2022/src/lib/event/list/event-list.component.mjs +20 -4
- package/esm2022/src/lib/event-summary/list/event-summary-list.component.mjs +3 -3
- package/esm2022/src/lib/event-summary/page/event-summary-page.component.mjs +11 -7
- package/esm2022/src/lib/general/i18n/en.translations.mjs +16 -3
- package/esm2022/src/lib/general/i18n/fr.translations.mjs +19 -12
- package/esm2022/src/lib/hypervisor.module.mjs +11 -3
- package/esm2022/src/lib/model/event/hyp-event-category.type.mjs +6 -4
- package/esm2022/src/lib/store/event/event.actions.mjs +1 -2
- package/esm2022/src/lib/store/event/event.effects.mjs +2 -2
- package/esm2022/src/lib/store/event/event.reducer.mjs +6 -4
- package/esm2022/src/lib/store/event/event.service.mjs +2 -2
- package/fesm2022/provoly-hypervisor.mjs +267 -69
- package/fesm2022/provoly-hypervisor.mjs.map +1 -1
- package/package.json +1 -1
- package/src/lib/event/detail/event-detail.component.d.ts +14 -0
- package/src/lib/event/filters/choice/choice-filter.component.d.ts +38 -4
- package/src/lib/event/list/event-list.component.d.ts +4 -0
- package/src/lib/event-summary/page/event-summary-page.component.d.ts +11 -3
- package/src/lib/general/i18n/en.translations.d.ts +15 -2
- package/src/lib/general/i18n/fr.translations.d.ts +7 -0
- package/src/lib/hypervisor.module.d.ts +1 -1
- package/src/lib/model/event/hyp-event-category.type.d.ts +3 -1
- package/src/lib/store/event/event.actions.d.ts +0 -6
- package/styles/components/_m-hvy-event-summary-item.scss +2 -0
- package/styles/components/_o-hvy-event-detail.scss +11 -4
- package/styles/components/_o-hvy-event-filters.scss +65 -0
- package/styles/components/_o-hvy-event-summary-list.scss +32 -19
- package/styles/components/_o-hvy-event-summary-page.scss +9 -5
- package/styles/components/_o-hvy-events-table.scss +17 -3
package/package.json
CHANGED
|
@@ -4,10 +4,12 @@ import { HypEventDetails } from '../../model/event/hyp-event-detail.interface';
|
|
|
4
4
|
import { SubscriptionnerDirective } from '@provoly/dashboard';
|
|
5
5
|
import { EquipmentService } from '../../store/equipment/equipment.service';
|
|
6
6
|
import { Store } from '@ngrx/store';
|
|
7
|
+
import { HypAction } from '../../model/hyp-action.interface';
|
|
7
8
|
import * as i0 from "@angular/core";
|
|
8
9
|
export declare class EventDetailComponent extends SubscriptionnerDirective {
|
|
9
10
|
private equipmentService;
|
|
10
11
|
private store;
|
|
12
|
+
static CARD_HEIGHT: number;
|
|
11
13
|
opened: boolean[];
|
|
12
14
|
criticalities: string[];
|
|
13
15
|
_events: HypEventDetails[];
|
|
@@ -26,6 +28,13 @@ export declare class EventDetailComponent extends SubscriptionnerDirective {
|
|
|
26
28
|
code: string;
|
|
27
29
|
}[][];
|
|
28
30
|
canCloseSome: boolean;
|
|
31
|
+
newComentContent: string;
|
|
32
|
+
movingAction?: HypAction;
|
|
33
|
+
moveStart: number;
|
|
34
|
+
moveInitialIndex: number;
|
|
35
|
+
initialActionList: HypAction[];
|
|
36
|
+
previousOffset: number;
|
|
37
|
+
dragTarget?: EventTarget | null;
|
|
29
38
|
set events(events: HypEventDetails[]);
|
|
30
39
|
set procedure(procedure: HypProcedure);
|
|
31
40
|
set cancelModifications(evt: any);
|
|
@@ -57,6 +66,11 @@ export declare class EventDetailComponent extends SubscriptionnerDirective {
|
|
|
57
66
|
categories(event: HypEventDetails): string[];
|
|
58
67
|
changeStatus($event: string, event: HypEventDetails): void;
|
|
59
68
|
closeAll(): void;
|
|
69
|
+
onMouseDown($event: MouseEvent): void;
|
|
70
|
+
dragStart($event: MouseEvent, action: HypAction, index: number): void;
|
|
71
|
+
move($event: MouseEvent): void;
|
|
72
|
+
drop($event: MouseEvent): void;
|
|
73
|
+
allowDrop($event: MouseEvent): void;
|
|
60
74
|
static ɵfac: i0.ɵɵFactoryDeclaration<EventDetailComponent, never>;
|
|
61
75
|
static ɵcmp: i0.ɵɵComponentDeclaration<EventDetailComponent, "hvy-event-detail", never, { "events": { "alias": "events"; "required": false; }; "procedure": { "alias": "procedure"; "required": false; }; "cancelModifications": { "alias": "cancelModifications"; "required": false; }; }, { "modifiedEvents": "modifiedEvents"; "modifiedProcedure": "modifiedProcedure"; "eventErrors": "eventErrors"; }, never, never, false, never>;
|
|
62
76
|
}
|
|
@@ -1,5 +1,8 @@
|
|
|
1
|
+
import { AfterViewInit, ElementRef, TemplateRef, ViewContainerRef, WritableSignal } from '@angular/core';
|
|
1
2
|
import { HvyFilterParams, HvyUnitFilterComponent } from '../hvy-unit-filter.class';
|
|
2
3
|
import { Store } from '@ngrx/store';
|
|
4
|
+
import { Overlay, OverlayRef } from '@angular/cdk/overlay';
|
|
5
|
+
import { PryI18nService } from '@provoly/dashboard';
|
|
3
6
|
import * as i0 from "@angular/core";
|
|
4
7
|
export type HvyChoiceFilter = {
|
|
5
8
|
key: string;
|
|
@@ -7,14 +10,45 @@ export type HvyChoiceFilter = {
|
|
|
7
10
|
key: string;
|
|
8
11
|
}[];
|
|
9
12
|
}[];
|
|
10
|
-
export declare class ChoiceFilterComponent extends HvyUnitFilterComponent {
|
|
13
|
+
export declare class ChoiceFilterComponent extends HvyUnitFilterComponent implements AfterViewInit {
|
|
11
14
|
private store;
|
|
15
|
+
private overlay;
|
|
16
|
+
private viewContainerRef;
|
|
17
|
+
private i18nService;
|
|
18
|
+
private ref;
|
|
19
|
+
static idCounter: number;
|
|
20
|
+
id: number;
|
|
12
21
|
prop: string;
|
|
13
|
-
|
|
22
|
+
label: string;
|
|
23
|
+
i18nPrefix: string;
|
|
24
|
+
value: WritableSignal<string[]>;
|
|
14
25
|
choices: HvyChoiceFilter;
|
|
15
|
-
|
|
26
|
+
overlayRef?: OverlayRef;
|
|
27
|
+
template: TemplateRef<any>;
|
|
28
|
+
inhibate: boolean;
|
|
29
|
+
displayValue: import("@angular/core").Signal<string>;
|
|
30
|
+
constructor(store: Store, overlay: Overlay, viewContainerRef: ViewContainerRef, i18nService: PryI18nService, ref: ElementRef);
|
|
31
|
+
ngAfterViewInit(): void;
|
|
16
32
|
getParams(): HvyFilterParams;
|
|
17
33
|
reset(): void;
|
|
34
|
+
toggleModal(): void;
|
|
35
|
+
clickAll(): void;
|
|
36
|
+
toggle(elt: {
|
|
37
|
+
key: string;
|
|
38
|
+
children?: {
|
|
39
|
+
key: string;
|
|
40
|
+
}[];
|
|
41
|
+
}): void;
|
|
42
|
+
allSelected(): boolean;
|
|
43
|
+
isSelected(choice: {
|
|
44
|
+
key: string;
|
|
45
|
+
children?: {
|
|
46
|
+
key: string;
|
|
47
|
+
}[];
|
|
48
|
+
}): boolean;
|
|
49
|
+
allValues(): string[];
|
|
50
|
+
assignValue(value: string[]): void;
|
|
51
|
+
private triggerInhibate;
|
|
18
52
|
static ɵfac: i0.ɵɵFactoryDeclaration<ChoiceFilterComponent, never>;
|
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ChoiceFilterComponent, "hvy-choice-filter", never, { "prop": { "alias": "prop"; "required": false; }; "choices": { "alias": "choices"; "required": false; }; }, {}, never, never, false, never>;
|
|
53
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ChoiceFilterComponent, "hvy-choice-filter", never, { "prop": { "alias": "prop"; "required": false; }; "label": { "alias": "label"; "required": false; }; "i18nPrefix": { "alias": "i18nPrefix"; "required": false; }; "choices": { "alias": "choices"; "required": false; }; }, {}, never, never, false, never>;
|
|
20
54
|
}
|
|
@@ -17,9 +17,13 @@ export declare class EventListComponent extends SubscriptionnerDirective impleme
|
|
|
17
17
|
fn: (event: HypEventDetails | HypEventSummary, store: Store<any>) => string[];
|
|
18
18
|
};
|
|
19
19
|
_store: Store<any>;
|
|
20
|
+
allSelected$: Observable<boolean>;
|
|
21
|
+
_inhibate: boolean;
|
|
20
22
|
constructor(store: Store<any>, el: ElementRef);
|
|
21
23
|
ngAfterViewInit(): void;
|
|
22
24
|
select(event: HypEventDetails, $event: MouseEvent): void;
|
|
25
|
+
selectAll($event: any): void;
|
|
26
|
+
inhibate(): void;
|
|
23
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<EventListComponent, never>;
|
|
24
28
|
static ɵcmp: i0.ɵɵComponentDeclaration<EventListComponent, "hvy-event-list", never, {}, {}, never, ["*"], false, never>;
|
|
25
29
|
}
|
|
@@ -1,17 +1,25 @@
|
|
|
1
1
|
import { Store } from '@ngrx/store';
|
|
2
|
-
import { HypEventSummaries } from '../../model/event/hyp-event-summary.interface';
|
|
2
|
+
import { HypEventSummaries, HypEventSummary } from '../../model/event/hyp-event-summary.interface';
|
|
3
3
|
import { Observable } from 'rxjs';
|
|
4
4
|
import { SubscriptionnerDirective } from '@provoly/dashboard';
|
|
5
|
+
import { KeyValue } from '@angular/common';
|
|
5
6
|
import * as i0 from "@angular/core";
|
|
6
7
|
export declare class EventSummaryPageComponent extends SubscriptionnerDirective {
|
|
7
8
|
private store;
|
|
8
9
|
pageTitle: string;
|
|
10
|
+
consultLink: string[];
|
|
9
11
|
summaries: HypEventSummaries;
|
|
10
12
|
selectedCriticality$: Observable<string | undefined>;
|
|
11
13
|
criticalityList: string[];
|
|
12
14
|
constructor(store: Store<any>);
|
|
13
15
|
filterByCriticality($event: string): void;
|
|
14
|
-
|
|
16
|
+
criticalityOrder: (a: KeyValue<string, {
|
|
17
|
+
events: HypEventSummary[];
|
|
18
|
+
count: number;
|
|
19
|
+
}>, b: KeyValue<string, {
|
|
20
|
+
events: HypEventSummary[];
|
|
21
|
+
count: number;
|
|
22
|
+
}>) => number;
|
|
15
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<EventSummaryPageComponent, never>;
|
|
16
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EventSummaryPageComponent, "hvy-event-summary-page", never, { "pageTitle": { "alias": "pageTitle"; "required": false; }; }, {}, never, never, false, never>;
|
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EventSummaryPageComponent, "hvy-event-summary-page", never, { "pageTitle": { "alias": "pageTitle"; "required": false; }; "consultLink": { "alias": "consultLink"; "required": false; }; }, {}, never, never, false, never>;
|
|
17
25
|
}
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
export declare const enTranslations: {
|
|
2
2
|
'@hvy': {
|
|
3
3
|
event: {
|
|
4
|
-
criticality: string;
|
|
5
4
|
name: string;
|
|
6
5
|
type: {
|
|
7
6
|
name: string;
|
|
@@ -50,12 +49,25 @@ export declare const enTranslations: {
|
|
|
50
49
|
};
|
|
51
50
|
};
|
|
52
51
|
category: {
|
|
53
|
-
|
|
52
|
+
name: string;
|
|
53
|
+
ALERT_MALFUNCTION: string;
|
|
54
54
|
REPORT: string;
|
|
55
55
|
OPERATOR_EVENT: string;
|
|
56
56
|
ALERT_LIMIT: string;
|
|
57
57
|
MANIFESTATION: string;
|
|
58
58
|
};
|
|
59
|
+
criticality: {
|
|
60
|
+
name: string;
|
|
61
|
+
LOW: string;
|
|
62
|
+
MEDIUM: string;
|
|
63
|
+
HIGH: string;
|
|
64
|
+
};
|
|
65
|
+
filter: {
|
|
66
|
+
name: string;
|
|
67
|
+
choice: {
|
|
68
|
+
all: string;
|
|
69
|
+
};
|
|
70
|
+
};
|
|
59
71
|
};
|
|
60
72
|
eventSummary: {
|
|
61
73
|
noContent: string;
|
|
@@ -79,6 +91,7 @@ export declare const enTranslations: {
|
|
|
79
91
|
consult: string;
|
|
80
92
|
close: string;
|
|
81
93
|
send: string;
|
|
94
|
+
comment: string;
|
|
82
95
|
};
|
|
83
96
|
};
|
|
84
97
|
};
|
|
@@ -64,6 +64,12 @@ export declare const frTranslations: {
|
|
|
64
64
|
MEDIUM: string;
|
|
65
65
|
HIGH: string;
|
|
66
66
|
};
|
|
67
|
+
filter: {
|
|
68
|
+
name: string;
|
|
69
|
+
choice: {
|
|
70
|
+
all: string;
|
|
71
|
+
};
|
|
72
|
+
};
|
|
67
73
|
};
|
|
68
74
|
eventSummary: {
|
|
69
75
|
noContent: string;
|
|
@@ -87,6 +93,7 @@ export declare const frTranslations: {
|
|
|
87
93
|
consult: string;
|
|
88
94
|
close: string;
|
|
89
95
|
send: string;
|
|
96
|
+
comment: string;
|
|
90
97
|
};
|
|
91
98
|
};
|
|
92
99
|
};
|
|
@@ -35,6 +35,6 @@ export declare class PvyHypervisorModule {
|
|
|
35
35
|
url: string;
|
|
36
36
|
}, store: Store<any>, i18nService: PryI18nService);
|
|
37
37
|
static ɵfac: i0.ɵɵFactoryDeclaration<PvyHypervisorModule, never>;
|
|
38
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<PvyHypervisorModule, [typeof i1.EventDetailComponent, typeof i2.EventListComponent, typeof i3.IconDisplayComponent, typeof i4.EventSummaryItemComponent, typeof i5.EventSummaryListComponent, typeof i6.EventSummaryPageComponent, typeof i7.EventIconPipe, typeof i8.ForDatetimeLocalPipe, typeof i9.StatusDisplayComponent, typeof i10.ProgressDisplayComponent, typeof i11.ColumnOrderComponent, typeof i12.EventFiltersComponent, typeof i13.DateFilterComponent, typeof i14.ChoiceFilterComponent], [typeof i15.StoreFeatureModule, typeof i15.StoreFeatureModule, typeof i15.StoreFeatureModule, typeof i16.EffectsFeatureModule, typeof i17.NgForOf, typeof i17.AsyncPipe, typeof i18.PryI18nModule, typeof i18.PryCoreModule, typeof i17.AsyncPipe, typeof i18.PryCoreModule, typeof i17.NgStyle, typeof i19.PryCheckboxModule, typeof i20.FormsModule, typeof i21.RouterLink, typeof i22.PrySinceDateModule, typeof i17.DatePipe, typeof i18.PryIconModule, typeof i17.KeyValuePipe, typeof i18.PrySelectModule, typeof i20.FormsModule, typeof i17.JsonPipe, typeof i18.PryDatePickerModule, typeof i18.PryI18nModule, typeof i18.PryIconModule], [typeof i1.EventDetailComponent, typeof i2.EventListComponent, typeof i3.IconDisplayComponent, typeof i4.EventSummaryItemComponent, typeof i5.EventSummaryListComponent, typeof i6.EventSummaryPageComponent, typeof i7.EventIconPipe, typeof i8.ForDatetimeLocalPipe, typeof i9.StatusDisplayComponent, typeof i10.ProgressDisplayComponent, typeof i11.ColumnOrderComponent, typeof i12.EventFiltersComponent, typeof i13.DateFilterComponent, typeof i14.ChoiceFilterComponent]>;
|
|
38
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PvyHypervisorModule, [typeof i1.EventDetailComponent, typeof i2.EventListComponent, typeof i3.IconDisplayComponent, typeof i4.EventSummaryItemComponent, typeof i5.EventSummaryListComponent, typeof i6.EventSummaryPageComponent, typeof i7.EventIconPipe, typeof i8.ForDatetimeLocalPipe, typeof i9.StatusDisplayComponent, typeof i10.ProgressDisplayComponent, typeof i11.ColumnOrderComponent, typeof i12.EventFiltersComponent, typeof i13.DateFilterComponent, typeof i14.ChoiceFilterComponent], [typeof i15.StoreFeatureModule, typeof i15.StoreFeatureModule, typeof i15.StoreFeatureModule, typeof i16.EffectsFeatureModule, typeof i17.NgForOf, typeof i17.AsyncPipe, typeof i18.PryI18nModule, typeof i18.PryCoreModule, typeof i17.AsyncPipe, typeof i18.PryCoreModule, typeof i17.NgStyle, typeof i19.PryCheckboxModule, typeof i20.FormsModule, typeof i21.RouterLink, typeof i22.PrySinceDateModule, typeof i17.DatePipe, typeof i18.PryIconModule, typeof i17.KeyValuePipe, typeof i18.PrySelectModule, typeof i20.FormsModule, typeof i17.JsonPipe, typeof i18.PryDatePickerModule, typeof i18.PryI18nModule, typeof i18.PryIconModule, typeof i18.PryI18nModule, typeof i17.AsyncPipe, typeof i18.PryI18nModule], [typeof i1.EventDetailComponent, typeof i2.EventListComponent, typeof i3.IconDisplayComponent, typeof i4.EventSummaryItemComponent, typeof i5.EventSummaryListComponent, typeof i6.EventSummaryPageComponent, typeof i7.EventIconPipe, typeof i8.ForDatetimeLocalPipe, typeof i9.StatusDisplayComponent, typeof i10.ProgressDisplayComponent, typeof i11.ColumnOrderComponent, typeof i12.EventFiltersComponent, typeof i13.DateFilterComponent, typeof i14.ChoiceFilterComponent]>;
|
|
39
39
|
static ɵinj: i0.ɵɵInjectorDeclaration<PvyHypervisorModule>;
|
|
40
40
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { HypEventDetails } from '../../model/event/hyp-event-detail.interface';
|
|
2
2
|
import { HypProcedure } from '../../model/hyp-procedure.interface';
|
|
3
|
-
import { HvyFilterParams } from '../../event/filters/hvy-unit-filter.class';
|
|
4
3
|
export declare const EventActions: {
|
|
5
4
|
load: import("@ngrx/store").ActionCreator<"[Event] Load Events", (props: {
|
|
6
5
|
next?: boolean | undefined;
|
|
@@ -101,9 +100,4 @@ export declare const EventActions: {
|
|
|
101
100
|
field: string;
|
|
102
101
|
order: string;
|
|
103
102
|
} & import("@ngrx/store/src/models").TypedAction<"[Event] set log event sorting">>;
|
|
104
|
-
setFilters: import("@ngrx/store").ActionCreator<"[Event] set filters", (props: {
|
|
105
|
-
filters: HvyFilterParams;
|
|
106
|
-
}) => {
|
|
107
|
-
filters: HvyFilterParams;
|
|
108
|
-
} & import("@ngrx/store/src/models").TypedAction<"[Event] set filters">>;
|
|
109
103
|
};
|
|
@@ -81,6 +81,10 @@
|
|
|
81
81
|
width: 100%;
|
|
82
82
|
}
|
|
83
83
|
|
|
84
|
+
td, th {
|
|
85
|
+
padding: toRem(5);
|
|
86
|
+
}
|
|
87
|
+
|
|
84
88
|
h3 {
|
|
85
89
|
margin-top: toRem(20);
|
|
86
90
|
}
|
|
@@ -117,16 +121,14 @@
|
|
|
117
121
|
flex-direction: row;
|
|
118
122
|
padding: toRem(20);
|
|
119
123
|
gap: toRem(20);
|
|
124
|
+
height: toRem(75);
|
|
120
125
|
|
|
121
126
|
&:hover {
|
|
122
127
|
background-color: themed($theme-map, 'color', 'primary', 300);
|
|
123
|
-
pry-icon:first-child {
|
|
124
|
-
opacity: 1;
|
|
125
|
-
}
|
|
126
128
|
}
|
|
127
129
|
|
|
128
130
|
pry-icon:first-child {
|
|
129
|
-
|
|
131
|
+
cursor: grab;
|
|
130
132
|
}
|
|
131
133
|
|
|
132
134
|
pry-checkbox {
|
|
@@ -148,6 +150,11 @@
|
|
|
148
150
|
display: flex;
|
|
149
151
|
flex-direction: row;
|
|
150
152
|
}
|
|
153
|
+
|
|
154
|
+
.a-btn.a-btn-secondary {
|
|
155
|
+
margin-left: auto;
|
|
156
|
+
margin-right: auto;
|
|
157
|
+
}
|
|
151
158
|
}
|
|
152
159
|
}
|
|
153
160
|
|
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
@use 'node_modules/@provoly/dashboard/styles/abstracts' as *;
|
|
2
2
|
@use 'node_modules/@provoly/dashboard/styles-theme/abstracts-theme/variables.theme' as *;
|
|
3
3
|
|
|
4
|
+
hvy-choice-filter {
|
|
5
|
+
|
|
6
|
+
.o-hvy-choice-filter.-focus {
|
|
7
|
+
outline: 2px solid themed($theme-map, 'color', 'accent', 600);
|
|
8
|
+
outline-offset: toRem(2);
|
|
9
|
+
border-color: themed($theme-map, 'color', 'accent', 600);
|
|
10
|
+
border-width: toRem(1);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
|
|
4
14
|
.o-hvy-event-filters {
|
|
5
15
|
display: flex;
|
|
6
16
|
flex-direction: row;
|
|
@@ -8,5 +18,60 @@
|
|
|
8
18
|
|
|
9
19
|
&__buttons {
|
|
10
20
|
margin-left: auto;
|
|
21
|
+
display: flex;
|
|
22
|
+
flex-direction: row;
|
|
23
|
+
align-items: center;
|
|
24
|
+
gap: toRem(5);
|
|
25
|
+
|
|
26
|
+
.a-btn--secondary {
|
|
27
|
+
padding: toRem(5);
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.o-hvy-choice-filter {
|
|
33
|
+
font-style: normal;
|
|
34
|
+
border-color: themed($theme-map, 'color', 'primary', 400);
|
|
35
|
+
border-radius: 0.25rem;
|
|
36
|
+
color: themed($theme-map, 'color', 'graph', 01);
|
|
37
|
+
background-color: themed($theme-map, 'color', 'primary', 'contrast', 50);
|
|
38
|
+
|
|
39
|
+
display: flex;
|
|
40
|
+
flex-direction: column;
|
|
41
|
+
align-items: flex-start;
|
|
42
|
+
justify-content: flex-start;
|
|
43
|
+
flex-grow: 1;
|
|
44
|
+
width: 100%;
|
|
45
|
+
|
|
46
|
+
min-height: toRem(36);
|
|
47
|
+
padding: toRem(4) toRem(12);
|
|
48
|
+
border-width: toRem(1);
|
|
49
|
+
border-style: solid;
|
|
50
|
+
cursor: text;
|
|
51
|
+
transition: all 150ms ease;
|
|
52
|
+
|
|
53
|
+
&.-highlight {
|
|
54
|
+
border-width: toRem(2);
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
&__label {
|
|
58
|
+
font-weight: 600;
|
|
59
|
+
margin-right: toRem(10);
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
&__child {
|
|
63
|
+
margin-left: toRem(20);
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
&.-horizontal {
|
|
67
|
+
flex-direction: row;
|
|
68
|
+
|
|
69
|
+
pry-icon {
|
|
70
|
+
margin-left: auto;
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
&__value {
|
|
75
|
+
margin-right: toRem(10);
|
|
11
76
|
}
|
|
12
77
|
}
|
|
@@ -5,21 +5,23 @@
|
|
|
5
5
|
display: flex;
|
|
6
6
|
flex-direction: column;
|
|
7
7
|
gap: toRem(10);
|
|
8
|
-
background-color: #ecf0f8;
|
|
9
8
|
height: 100%;
|
|
10
9
|
padding: toRem(10);
|
|
11
|
-
border-radius: toRem(5);
|
|
10
|
+
border-bottom-left-radius: toRem(5);
|
|
11
|
+
border-bottom-right-radius: toRem(5);
|
|
12
|
+
background-color: themed($theme-map, 'color', 'primary', 'contrast', 50);
|
|
12
13
|
|
|
13
14
|
&__header {
|
|
14
15
|
display: flex;
|
|
15
16
|
align-items: center;
|
|
16
17
|
gap: toRem(10);
|
|
17
18
|
text-transform: uppercase;
|
|
19
|
+
padding-bottom: toRem(10);
|
|
18
20
|
}
|
|
19
21
|
|
|
20
22
|
&__title {
|
|
21
23
|
padding: 0;
|
|
22
|
-
color: themed($theme-map, 'color', 'primary',
|
|
24
|
+
color: themed($theme-map, 'color', 'primary', 600);
|
|
23
25
|
font-size: toRem(14);
|
|
24
26
|
line-height: toRem(24);
|
|
25
27
|
}
|
|
@@ -29,7 +31,8 @@
|
|
|
29
31
|
padding: 0 toRem(7);
|
|
30
32
|
border-radius: toRem(10);
|
|
31
33
|
text-align: center;
|
|
32
|
-
|
|
34
|
+
font-weight: 500;
|
|
35
|
+
background-color: themed($theme-map, 'color', 'primary', 700);
|
|
33
36
|
color: themed($theme-map, 'color', 'primary', 'contrast', 50);
|
|
34
37
|
}
|
|
35
38
|
|
|
@@ -38,7 +41,6 @@
|
|
|
38
41
|
flex-direction: column;
|
|
39
42
|
gap: toRem(10);
|
|
40
43
|
flex: 1;
|
|
41
|
-
overflow-y: auto;
|
|
42
44
|
font-size: toRem(14);
|
|
43
45
|
}
|
|
44
46
|
|
|
@@ -62,26 +64,37 @@
|
|
|
62
64
|
line-height: toRem(24);
|
|
63
65
|
}
|
|
64
66
|
|
|
65
|
-
&.-hvy-
|
|
66
|
-
background-color: themed($theme-map, 'color', 'primary', 600);
|
|
67
|
-
|
|
67
|
+
&.-hvy-in_progress {
|
|
68
68
|
.o-hvy-event-summary-list__counter {
|
|
69
|
-
background-color: themed($theme-map, 'color', '
|
|
70
|
-
color: themed($theme-map, 'color', 'primary',
|
|
69
|
+
background-color: themed($theme-map, 'color', 'graph', 07);
|
|
70
|
+
color: themed($theme-map, 'color', 'primary', 700);
|
|
71
71
|
}
|
|
72
|
+
}
|
|
72
73
|
|
|
73
|
-
|
|
74
|
-
|
|
74
|
+
&.-hvy-done {
|
|
75
|
+
.o-hvy-event-summary-list__counter {
|
|
76
|
+
background-color: themed($theme-map, 'color', 'graph', 05);
|
|
77
|
+
color: themed($theme-map, 'color', 'primary', 700);
|
|
75
78
|
}
|
|
76
79
|
|
|
77
|
-
.
|
|
78
|
-
color: themed($theme-map, 'color', '
|
|
79
|
-
text-decoration: underline;
|
|
80
|
-
text-underline-offset: toRem(2);
|
|
80
|
+
.m-hvy-event-summary-item {
|
|
81
|
+
background-color: themed($theme-map, 'color', 'grey', 300);
|
|
81
82
|
}
|
|
83
|
+
}
|
|
84
|
+
}
|
|
82
85
|
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
+
hvy-event-summary-list {
|
|
87
|
+
border-top: toRem(5) solid themed($theme-map, 'color', 'primary', 700);
|
|
88
|
+
|
|
89
|
+
&:has(.-hvy-in_progress) {
|
|
90
|
+
border-top-color: themed($theme-map, 'color', 'graph', 07);
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
&:has(.-hvy-done) {
|
|
94
|
+
border-top-color: themed($theme-map, 'color', 'graph', 05);
|
|
86
95
|
}
|
|
87
96
|
}
|
|
97
|
+
|
|
98
|
+
.o-hvy-event-summary-list__header {
|
|
99
|
+
border-bottom: toRem(1) solid themed($theme-map, 'color', 'grey', 400);
|
|
100
|
+
}
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
|
|
20
20
|
&__title {
|
|
21
21
|
padding: 0;
|
|
22
|
-
color: themed($theme-map, 'color', 'primary',
|
|
22
|
+
color: themed($theme-map, 'color', 'primary', 600);
|
|
23
23
|
font-size: toRem(30);
|
|
24
24
|
}
|
|
25
25
|
|
|
@@ -36,10 +36,14 @@
|
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
&__content {
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
39
|
+
overflow-y: scroll;
|
|
40
|
+
|
|
41
|
+
&__sub {
|
|
42
|
+
display: flex;
|
|
43
|
+
flex-wrap: nowrap;
|
|
44
|
+
gap: toRem(20);
|
|
45
|
+
height: fit-content;
|
|
46
|
+
}
|
|
43
47
|
}
|
|
44
48
|
|
|
45
49
|
&__summary-list {
|
|
@@ -18,6 +18,10 @@ hvy-event-list {
|
|
|
18
18
|
border-bottom: 2px solid #EAEAEA;
|
|
19
19
|
z-index: 2;
|
|
20
20
|
}
|
|
21
|
+
|
|
22
|
+
th:nth-child(1) {
|
|
23
|
+
padding: toRem(15);
|
|
24
|
+
}
|
|
21
25
|
}
|
|
22
26
|
|
|
23
27
|
&__line {
|
|
@@ -48,6 +52,11 @@ hvy-event-list {
|
|
|
48
52
|
color: #cecece;
|
|
49
53
|
}
|
|
50
54
|
}
|
|
55
|
+
|
|
56
|
+
a {
|
|
57
|
+
color: #004998;
|
|
58
|
+
font-weight: 600;
|
|
59
|
+
}
|
|
51
60
|
}
|
|
52
61
|
}
|
|
53
62
|
|
|
@@ -56,8 +65,12 @@ hvy-event-list {
|
|
|
56
65
|
top: 0;
|
|
57
66
|
}
|
|
58
67
|
|
|
59
|
-
.o-hvy-events-table__line__cell:nth-child(3){
|
|
60
|
-
width:
|
|
68
|
+
.o-hvy-events-table__line__cell:nth-child(3) {
|
|
69
|
+
width: 25%;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.o-hvy-events-table__line__cell:nth-child(5) {
|
|
73
|
+
width: 15%;
|
|
61
74
|
}
|
|
62
75
|
|
|
63
76
|
.o-hvy-events-table__line__cell:last-child,
|
|
@@ -70,7 +83,8 @@ hvy-event-list {
|
|
|
70
83
|
height: toRem(400);
|
|
71
84
|
width: 100%;
|
|
72
85
|
text-align: center;
|
|
73
|
-
|
|
86
|
+
|
|
87
|
+
button {
|
|
74
88
|
margin: toRem(50);
|
|
75
89
|
}
|
|
76
90
|
}
|