@webitel/ui-sdk 24.2.15 → 24.2.17

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": "24.2.15",
3
+ "version": "24.2.17",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vite",
@@ -90,7 +90,8 @@
90
90
  :disabled="disabled"
91
91
  class="multiselect__select multiselect__custom-value-arrow"
92
92
  icon="call-merge-filled"
93
- @mousedown.prevent.stop="handleCustomValue(toggle)"
93
+ @mousedown.prevent
94
+ @click="handleCustomValue(toggle)"
94
95
  />
95
96
  <!-- To view a list of possible values, click on this icon -->
96
97
  <!-- @mousedown.native.prevent.stop="toggle": https://github.com/shentao/vue-multiselect/issues/1204#issuecomment-615114727 -->
@@ -99,7 +100,7 @@
99
100
  :disabled="disabled"
100
101
  class="multiselect__select"
101
102
  icon="arrow-down"
102
- @mousedown.prevent.stop="toggle"
103
+ @mousedown.prevent
103
104
  />
104
105
  </template>
105
106