@webitel/ui-sdk 25.12.78 → 25.12.80

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.12.78",
3
+ "version": "25.12.80",
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",
@@ -8,7 +8,7 @@
8
8
  "build": "vite build",
9
9
  "test:unit": "vitest",
10
10
  "build:types": "vue-tsc -p ./tsconfig.build.json",
11
- "publish-lib": " npm publish --access public",
11
+ "publish-lib": " npm publish --access public --tag latest",
12
12
  "docs:dev": "vitepress dev docs --port 8080",
13
13
  "docs:build": "vitepress build docs",
14
14
  "lint:fix": "eslint --fix ./src && prettier --write --check ./src",
@@ -76,6 +76,7 @@
76
76
  border-color: var(--wt-text-field-select-option-wrapper-border-color);
77
77
  border-radius: var(--border-radius);
78
78
  background: transparent;
79
+ z-index: calc(var(--p-galleria-mask-z-index) - 2);
79
80
  }
80
81
 
81
82
  // select options
@@ -103,6 +104,7 @@
103
104
  }
104
105
 
105
106
  :deep(.multiselect--active) {
107
+ z-index: calc(var(--p-galleria-mask-z-index) - 2); // // lowered z-index to prevent overlapping the gallery and video container
106
108
  .multiselect__select.multiselect__arrow .wt-icon {
107
109
  fill: var(--icon-active-color);
108
110
  }
@@ -14,6 +14,15 @@ import WtSlider from "../../../../../../../components/wt-slider/wt-slider.vue";
14
14
  display: inline-flex;
15
15
  align-items: center;
16
16
  width: 100%;
17
+ padding: 10px 0;
18
+
19
+ &:hover {
20
+ cursor: pointer;
21
+
22
+ &:deep(.p-slider-handle) {
23
+ transform: scale(1.5);
24
+ }
25
+ }
17
26
 
18
27
  &__slider {
19
28
  width: 100%;
@@ -25,6 +34,7 @@ import WtSlider from "../../../../../../../components/wt-slider/wt-slider.vue";
25
34
 
26
35
  &:deep(.p-slider-handle) { /*set vidstach slider variable to primeview component @author liza-pohrsnichna */
27
36
  inset-inline-start: var(--slider-fill, 0%) !important;
37
+ transition: transform ease var(--transition);
28
38
  }
29
39
  }
30
40