@provoly/hypervisor 2.3.0 → 2.3.2
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/event/detail/event-detail.component.mjs +10 -10
- package/esm2022/src/lib/event/list/event-list.component.mjs +3 -3
- package/esm2022/src/lib/general/i18n/fr.translations.mjs +6 -2
- package/esm2022/src/lib/model/procedure/hyp-procedure-model.interface.mjs +1 -1
- package/esm2022/src/lib/procedure/model-detail/procedure-model-detail.component.mjs +6 -5
- package/esm2022/src/lib/procedure/model-list/procedure-list.component.mjs +8 -8
- package/esm2022/src/lib/store/procedure/procedure.service.mjs +2 -2
- package/fesm2022/provoly-hypervisor.mjs +32 -28
- package/fesm2022/provoly-hypervisor.mjs.map +1 -1
- package/package.json +1 -1
- package/src/lib/general/i18n/fr.translations.d.ts +4 -0
- package/src/lib/model/procedure/hyp-procedure-model.interface.d.ts +2 -0
- package/styles/components/_o-hvy-events-table.scss +11 -3
- package/styles/components/_o-hvy-procedure-detail.scss +15 -0
- package/styles/components/_o-hvy-procedure-list.scss +2 -12
package/package.json
CHANGED
|
@@ -21,12 +21,20 @@ hvy-event-list {
|
|
|
21
21
|
}
|
|
22
22
|
|
|
23
23
|
.-checkbox {
|
|
24
|
-
padding: toRem(15);
|
|
24
|
+
padding: toRem(15) toRem(10);
|
|
25
|
+
|
|
26
|
+
> pry-checkbox {
|
|
27
|
+
width: 2em;
|
|
28
|
+
}
|
|
25
29
|
|
|
26
|
-
|
|
30
|
+
div {
|
|
27
31
|
transform: translate(-1.75em, -1.5em);
|
|
28
32
|
}
|
|
29
33
|
}
|
|
34
|
+
|
|
35
|
+
.-eye-link > div {
|
|
36
|
+
width: 3.2em;
|
|
37
|
+
}
|
|
30
38
|
}
|
|
31
39
|
|
|
32
40
|
&__line {
|
|
@@ -87,7 +95,7 @@ hvy-event-list {
|
|
|
87
95
|
|
|
88
96
|
.o-hvy-events-table__line__cell.checkbox {
|
|
89
97
|
width: toRem(25);
|
|
90
|
-
padding: toRem(30) toRem(
|
|
98
|
+
padding: toRem(30) toRem(10) toRem(15);
|
|
91
99
|
}
|
|
92
100
|
|
|
93
101
|
.o-hvy-events-table__line__cell.icon {
|
|
@@ -6,6 +6,11 @@
|
|
|
6
6
|
flex-direction: column;
|
|
7
7
|
height: 100%;
|
|
8
8
|
|
|
9
|
+
> div:first-child {
|
|
10
|
+
display: flex;
|
|
11
|
+
justify-content: space-between;
|
|
12
|
+
}
|
|
13
|
+
|
|
9
14
|
&__container {
|
|
10
15
|
flex: 1 1;
|
|
11
16
|
overflow: auto;
|
|
@@ -27,6 +32,16 @@
|
|
|
27
32
|
|
|
28
33
|
background-color: white;
|
|
29
34
|
border: 1px solid themed($theme-map, 'color', 'primary', 400);
|
|
35
|
+
|
|
36
|
+
> div {
|
|
37
|
+
display: flex;
|
|
38
|
+
justify-content: space-between;
|
|
39
|
+
align-items: center;
|
|
40
|
+
|
|
41
|
+
> span {
|
|
42
|
+
padding-bottom: 0.625rem;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
30
45
|
}
|
|
31
46
|
|
|
32
47
|
&__actions {
|
|
@@ -25,19 +25,9 @@
|
|
|
25
25
|
width: 14%;
|
|
26
26
|
text-align: left;
|
|
27
27
|
}
|
|
28
|
-
.o-hvy-events-table__line__cell:nth-child(8) {
|
|
29
|
-
width: unset;
|
|
28
|
+
.o-hvy-events-table__line__cell:nth-child(8) > span {
|
|
30
29
|
display: flex;
|
|
31
|
-
justify-content:
|
|
32
|
-
align-items: center;
|
|
33
|
-
> div {
|
|
34
|
-
display: flex;
|
|
35
|
-
align-items: center;
|
|
36
|
-
background: aqua;
|
|
37
|
-
border-radius: 1em;
|
|
38
|
-
justify-content: center;
|
|
39
|
-
padding: 0.5em;
|
|
40
|
-
}
|
|
30
|
+
justify-content: flex-start;
|
|
41
31
|
}
|
|
42
32
|
|
|
43
33
|
.o-hvy-events-table__line__cell:nth-child(4) {
|