@provoly/hypervisor 1.4.51 → 1.4.53
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/procedure-association-modal/procedure-association-modal.component.mjs +4 -3
- package/esm2022/src/lib/general/i18n/fr.translations.mjs +7 -7
- package/fesm2022/provoly-hypervisor.mjs +9 -8
- package/fesm2022/provoly-hypervisor.mjs.map +1 -1
- package/package.json +2 -2
- package/src/lib/event/procedure-association-modal/procedure-association-modal.component.d.ts +1 -0
- package/styles/components/_a-chip-status.scss +3 -0
- package/styles/components/_m-hvy-event-summary-item.scss +7 -17
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@provoly/hypervisor",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.53",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/cdk": "17.x || 18.x",
|
|
6
6
|
"@angular/common": "17.x || 18.x",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"rxjs": "^7.4.0",
|
|
15
15
|
"uuid": "^8.3.2 || ^9.0.0",
|
|
16
16
|
"zone.js": "~0.14.3",
|
|
17
|
-
"@provoly/dashboard": "^1.4.
|
|
17
|
+
"@provoly/dashboard": "^1.4.30"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"tslib": "^2.6.2"
|
package/src/lib/event/procedure-association-modal/procedure-association-modal.component.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ import { HypProcedureModel } from '../../model/procedure/hyp-procedure-model.int
|
|
|
6
6
|
import { ProcedureService } from '../../store/procedure/procedure.service';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export interface HypProcedureModelWithMatching extends HypProcedureModel {
|
|
9
|
+
initial: string;
|
|
9
10
|
html: string;
|
|
10
11
|
}
|
|
11
12
|
export declare class ProcedureAssociationModalComponent extends SubscriptionnerDirective {
|
|
@@ -78,8 +78,8 @@
|
|
|
78
78
|
display: flex;
|
|
79
79
|
justify-content: center;
|
|
80
80
|
align-items: center;
|
|
81
|
-
height: toRem(
|
|
82
|
-
width: toRem(
|
|
81
|
+
height: toRem(40);
|
|
82
|
+
width: toRem(40);
|
|
83
83
|
z-index: 1;
|
|
84
84
|
position: relative;
|
|
85
85
|
|
|
@@ -119,7 +119,7 @@
|
|
|
119
119
|
background-color: transparent;
|
|
120
120
|
|
|
121
121
|
&:after {
|
|
122
|
-
--side:
|
|
122
|
+
--side: 41px;
|
|
123
123
|
position: absolute;
|
|
124
124
|
content: '';
|
|
125
125
|
border-left: calc(var(--side) / 2) solid transparent;
|
|
@@ -147,11 +147,6 @@
|
|
|
147
147
|
border-bottom: calc(0.866 * var(--side)) solid themed($theme-map, 'color', 'graph', 06);
|
|
148
148
|
}
|
|
149
149
|
}
|
|
150
|
-
|
|
151
|
-
span {
|
|
152
|
-
transform: translateY(1px);
|
|
153
|
-
}
|
|
154
|
-
|
|
155
150
|
}
|
|
156
151
|
|
|
157
152
|
&.-hvy-square {
|
|
@@ -162,17 +157,12 @@
|
|
|
162
157
|
&.-hvy-hexagon {
|
|
163
158
|
background-color: transparent;
|
|
164
159
|
|
|
165
|
-
span {
|
|
166
|
-
margin-left: 1px;
|
|
167
|
-
margin-top: 2px;
|
|
168
|
-
}
|
|
169
|
-
|
|
170
160
|
// hexagon background
|
|
171
161
|
&:after {
|
|
172
162
|
position: absolute;
|
|
173
163
|
content: '';
|
|
174
|
-
width:
|
|
175
|
-
height:
|
|
164
|
+
width: 40px;
|
|
165
|
+
height: 40px;
|
|
176
166
|
clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
|
|
177
167
|
}
|
|
178
168
|
|
|
@@ -198,8 +188,8 @@
|
|
|
198
188
|
|
|
199
189
|
&__event-icon {
|
|
200
190
|
z-index: 2;
|
|
201
|
-
width: toRem(
|
|
202
|
-
height: toRem(
|
|
191
|
+
width: toRem(40);
|
|
192
|
+
height: toRem(40);
|
|
203
193
|
}
|
|
204
194
|
|
|
205
195
|
&__date {
|