voiptime-components 1.19.8 → 1.19.9

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
@@ -4,7 +4,7 @@
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
- "version": "1.19.8",
7
+ "version": "1.19.9",
8
8
  "type": "module",
9
9
  "main": "dist/index.umd.js",
10
10
  "module": "dist/index.es.js",
@@ -97,7 +97,7 @@
97
97
  &-header {
98
98
  height: 56px;
99
99
  border-bottom: 1px solid var(--color-gray-5);
100
- padding: 0 var(--vt-padding-lg) ;
100
+ padding: 0 var(--vt-padding-lg);
101
101
  flex-shrink: 0;
102
102
  display: flex;
103
103
  align-items: center;
@@ -131,6 +131,18 @@
131
131
  color: var(--color-gray-2);
132
132
  text-align: left;
133
133
  flex-shrink: 0;
134
+ transition: color 0.2s ease;
135
+
136
+ &.vt-label-required::after {
137
+ content: " *";
138
+ color: var(--color-danger-main);
139
+ margin-left: 4px;
140
+ font-weight: bold;
141
+ }
142
+
143
+ &.vt-label-error {
144
+ color: var(--color-danger);
145
+ }
134
146
  }
135
147
  }
136
148
  }