@provoly/hypervisor 0.0.67 → 0.0.68

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": "0.0.67",
3
+ "version": "0.0.68",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": "16.x || 17.x",
6
6
  "@angular/common": "16.x || 17.x",
@@ -132,6 +132,7 @@ export declare const enTranslations: {
132
132
  delete: string;
133
133
  update: string;
134
134
  done: string;
135
+ CALL: string;
135
136
  SMS: string;
136
137
  OTHER: string;
137
138
  SERVICE: string;
@@ -67,6 +67,17 @@
67
67
  }
68
68
  }
69
69
  }
70
+
71
+ .number-badge {
72
+ border: toRem(1) solid black;
73
+ border-radius: 50%;
74
+ width: toRem(20);
75
+ min-width: toRem(20);
76
+ height: toRem(20);
77
+ font-size: toRem(14);
78
+ text-align: center;
79
+ color: black;
80
+ }
70
81
  }
71
82
 
72
83
  .-bold {
@@ -79,5 +90,23 @@ hvy-action-parameter {
79
90
  div.param-line {
80
91
  display: flex;
81
92
  flex-direction: row;
93
+ gap: toRem(5);
94
+ height: toRem(30);
95
+ }
96
+ }
97
+
98
+ hvy-sms-action-parameter, hvy-email-action-parameter {
99
+ .param-line {
100
+ * {
101
+ flex: 1 1;
102
+ }
103
+
104
+ .to {
105
+ flex: 0;
106
+ }
107
+
108
+ .phone {
109
+ flex: 0.8 0.8;
110
+ }
82
111
  }
83
112
  }