@webitel/ui-sdk 25.10.31 → 25.10.33

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.31",
3
+ "version": "25.10.33",
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",
@@ -56,7 +56,7 @@
56
56
  "@vuepic/vue-datepicker": "^4.5.1",
57
57
  "@vueuse/components": "^13.0.0",
58
58
  "@webitel/api-services": "^0.0.44",
59
- "@webitel/styleguide": "^24.12.72",
59
+ "@webitel/styleguide": "^24.12.73",
60
60
  "autosize": "^6.0.1",
61
61
  "axios": "^1.8.3",
62
62
  "clipboard-copy": "^4.0.1",
@@ -159,8 +159,8 @@
159
159
  </template>
160
160
  </vue-multiselect>
161
161
  <wt-input-info
162
- v-if="isValidation"
163
162
  :invalid="invalid"
163
+ :class="{ 'wt-input-info_visible': isValidation }"
164
164
  >
165
165
  {{ validationText }}
166
166
  </wt-input-info>
@@ -484,4 +484,13 @@ 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
+ }
487
496
  </style>
@@ -24,6 +24,7 @@
24
24
  row-reorder
25
25
  :reorderable-column="false"
26
26
  header-style="width: 1%;"
27
+ body-style="width: 1%;"
27
28
  :pt="{
28
29
  columnresizer: {
29
30
  class: {
@@ -45,6 +46,7 @@
45
46
  column-key="row-select"
46
47
  :reorderable-column="false"
47
48
  header-style="width: 1%;"
49
+ body-style="width: 1%;"
48
50
  :pt="{
49
51
  columnresizer: {
50
52
  class: {
@@ -420,5 +422,6 @@ const columnReorder = async ({dropIndex, originalEvent}) => {
420
422
  position: absolute;
421
423
  transform: translateY(-50%);
422
424
  top: 50%;
425
+ z-index: 1;
423
426
  }
424
427
  </style>
@@ -50,6 +50,8 @@ const table = {
50
50
 
51
51
  .p-datatable-thead > tr > th {
52
52
  overflow: hidden;
53
+ position: relative;
54
+ z-index: 2;
53
55
  }
54
56
 
55
57
  .p-datatable-column-resizer {