@webitel/ui-sdk 26.6.37 → 26.6.38

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.
@@ -1,6 +1,6 @@
1
1
  import { t as e } from "./chunk-CY3AvKd6.js";
2
2
  import { n as t, t as n } from "./dist-BYiYpK00.js";
3
- import "./components-uwwlHgGa.js";
3
+ import "./components-kzsJLyOe.js";
4
4
  import { t as r } from "./_plugin-vue_export-helper-B3ysoDQm.js";
5
5
  import { c as i } from "./enums-pbYAJNeb.js";
6
6
  import { t as a } from "./wt-button-DENbrKdy.js";
@@ -1,4 +1,4 @@
1
- import { c as e, i as t } from "./components-uwwlHgGa.js";
1
+ import { c as e, i as t } from "./components-kzsJLyOe.js";
2
2
  import { t as n } from "./_plugin-vue_export-helper-B3ysoDQm.js";
3
3
  import { t as r } from "./displayText-CtaxzaBz.js";
4
4
  import { Fragment as i, computed as a, createCommentVNode as o, createElementBlock as s, createTextVNode as c, createVNode as l, defineComponent as u, openBlock as d, renderList as f, renderSlot as p, toDisplayString as m, unref as h, withCtx as g } from "vue";
@@ -1,4 +1,4 @@
1
- import { n as e } from "./components-uwwlHgGa.js";
1
+ import { n as e } from "./components-kzsJLyOe.js";
2
2
  import { t } from "./vue-i18n-B8Px6VcD.js";
3
3
  import { n, r } from "./clients-CznP0r76.js";
4
4
  import { createBlock as i, createTextVNode as a, createVNode as o, defineComponent as s, inject as c, mergeProps as l, onMounted as u, openBlock as d, ref as f, resolveComponent as p, toDisplayString as m, unref as h, withCtx as g } from "vue";
@@ -1,4 +1,4 @@
1
- import { a as e, o as t, r as n, s as r } from "./components-uwwlHgGa.js";
1
+ import { a as e, o as t, r as n, s as r } from "./components-kzsJLyOe.js";
2
2
  import { t as i } from "./enums-pbYAJNeb.js";
3
3
  import { t as a } from "./vue-i18n-B8Px6VcD.js";
4
4
  import { t as o } from "./clients-CznP0r76.js";
@@ -1,4 +1,4 @@
1
- import { l as e } from "./components-uwwlHgGa.js";
1
+ import { l as e } from "./components-kzsJLyOe.js";
2
2
  import { t } from "./_plugin-vue_export-helper-B3ysoDQm.js";
3
3
  import { c as n } from "./enums-pbYAJNeb.js";
4
4
  import "./wt-button-DENbrKdy.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webitel/ui-sdk",
3
- "version": "26.6.37",
3
+ "version": "26.6.38",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "npm run docs:dev",
@@ -273,7 +273,7 @@ onMounted(() => {
273
273
 
274
274
  .wt-multi-select__footer {
275
275
  position: absolute;
276
- width: 100%;
276
+ width: calc(100% - var(--scrollbar-width));
277
277
  transform: translateY(-100%);
278
278
  background: var(--p-multiselect-overlay-background);
279
279
  border-bottom-left-radius: var(--p-multiselect-overlay-border-radius);
@@ -245,7 +245,7 @@ onMounted(() => {
245
245
 
246
246
  .wt-single-select__footer {
247
247
  position: absolute;
248
- width: 100%;
248
+ width: calc(100% - var(--scrollbar-width));
249
249
  transform: translateY(-100%);
250
250
  background: var(--p-select-overlay-background);
251
251
  border-bottom-left-radius: var(--p-select-overlay-border-radius);
@@ -22,6 +22,11 @@ const singleSelect = {
22
22
  .p-select.p-invalid:not(.p-disabled):hover {
23
23
  border-color: ${dt('select.invalidHoverBorderColor')};
24
24
  }
25
+
26
+ .p-select-option.p-select-option-selected:not(.p-disabled):hover {
27
+ background: ${dt('select.option.selectedFocusBackground')};
28
+ color: ${dt('select.option.selectedFocusColor')};
29
+ }
25
30
  `,
26
31
  };
27
32