@webitel/ui-sdk 25.10.38 → 25.10.40

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": "@webitel/ui-sdk",
3
- "version": "25.10.38",
3
+ "version": "25.10.40",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "make-all": "npm version patch --git-tag-version false && npm run build && (npm run build:types || true) && (npm run lint:fix || true) && npm run publish-lib",
@@ -29,10 +29,11 @@ export default {
29
29
  @use '@webitel/styleguide/typography' as *;
30
30
 
31
31
  .wt-input-info {
32
- @extend %typo-caption;
32
+ @extend %typo-body-2;
33
33
  margin-top: var(--input-info-margin);
34
34
  min-height: var(--input-info-min-height);
35
35
  color: var(--wt-helper-text-color);
36
+ padding: var(--wt-label-padding);
36
37
 
37
38
  &--invalid {
38
39
  color: var(--wt-helper-text-invalid-color);
@@ -30,14 +30,14 @@ defineProps<{
30
30
  @use '@webitel/styleguide/typography' as *;
31
31
 
32
32
  .wt-label {
33
- @extend %typo-body-1;
33
+ @extend %typo-subtitle-2;
34
34
 
35
35
  display: flex;
36
36
  align-items: center;
37
37
  cursor: text;
38
38
  transition: var(--transition);
39
39
  color: var(--wt-label-color);
40
- //padding: var(--wt-label-padding);
40
+ padding: var(--wt-label-padding);
41
41
 
42
42
  &--invalid {
43
43
  color: var(--wt-label-error-color);
@@ -159,8 +159,8 @@
159
159
  </template>
160
160
  </vue-multiselect>
161
161
  <wt-input-info
162
+ v-if="isValidation"
162
163
  :invalid="invalid"
163
- :class="{ 'wt-input-info_visible': isValidation }"
164
164
  >
165
165
  {{ validationText }}
166
166
  </wt-input-info>
@@ -484,13 +484,4 @@ export default {
484
484
  }
485
485
  }
486
486
  }
487
-
488
- .wt-input-info {
489
- transition-duration: var(--transition-fast);
490
- opacity: 0;
491
-
492
- &_visible {
493
- opacity: 1;
494
- }
495
- }
496
487
  </style>