@provoly/hypervisor 1.9.2 → 1.9.4

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": "1.9.2",
3
+ "version": "1.9.4",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": "17.x || 18.x",
6
6
  "@angular/common": "17.x || 18.x",
@@ -8,4 +8,5 @@ export interface HypEquipment {
8
8
  export interface EquipmentForEvent extends HypEquipment {
9
9
  address: string;
10
10
  district: string;
11
+ code: string;
11
12
  }
@@ -77,9 +77,9 @@
77
77
  &__event-icon-container {
78
78
  display: flex;
79
79
  justify-content: center;
80
- align-items: center;
81
- height: toRem(40);
82
- width: toRem(40);
80
+ align-items: flex-start;
81
+ height: 2rem;
82
+ width: 2rem;
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: 41px;
122
+ --side: 35px;
123
123
  position: absolute;
124
124
  content: '';
125
125
  border-left: calc(var(--side) / 2) solid transparent;
@@ -161,8 +161,8 @@
161
161
  &:after {
162
162
  position: absolute;
163
163
  content: '';
164
- width: 40px;
165
- height: 40px;
164
+ width: 2rem;
165
+ height: 2rem;
166
166
  clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
167
167
  }
168
168
 
@@ -188,8 +188,9 @@
188
188
 
189
189
  &__event-icon {
190
190
  z-index: 2;
191
- width: toRem(40);
192
- height: toRem(40);
191
+ width: 2.7em;
192
+ height: 2.7em;
193
+ -webkit-mask-position: top!important;
193
194
  }
194
195
 
195
196
  &__date {
@@ -198,3 +199,7 @@
198
199
  font-size: toRem(12);
199
200
  }
200
201
  }
202
+
203
+ .last-events-icon-tooltip {
204
+ transform: none!important;
205
+ }
@@ -14,6 +14,7 @@
14
14
  }
15
15
  &__item {
16
16
  padding-bottom: 1em;
17
+ padding-left: 0.3125rem;
17
18
  font-size: toRem(12);
18
19
  display: grid;
19
20
  grid-template-areas: "icon title status"