@webitel/ui-sdk 24.2.14 → 24.2.16

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.14",
3
+ "version": "24.2.16",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vite",
@@ -83,7 +83,6 @@
83
83
 
84
84
  <!-- Element for opening and closing the dropdown -->
85
85
  <template #caret="{ toggle }">
86
- <div @mousedown.prevent="toggle">
87
86
  <!-- In mode allowCustomValues, adding is done by clicking on this icon -->
88
87
  <!-- [https://my.webitel.com/browse/WTEL-3181]-->
89
88
  <wt-icon-btn
@@ -91,6 +90,7 @@
91
90
  :disabled="disabled"
92
91
  class="multiselect__select multiselect__custom-value-arrow"
93
92
  icon="call-merge-filled"
93
+ @mousedown.prevent
94
94
  @click="handleCustomValue(toggle)"
95
95
  />
96
96
  <!-- To view a list of possible values, click on this icon -->
@@ -100,8 +100,9 @@
100
100
  :disabled="disabled"
101
101
  class="multiselect__select"
102
102
  icon="arrow-down"
103
+ @mousedown.prevent
104
+ @click="toggle"
103
105
  />
104
- </div>
105
106
  </template>
106
107
 
107
108
  <!-- Slot located before the tags -->
@@ -196,8 +197,8 @@ export default {
196
197
  methods: {
197
198
  // for taggableMixin functionality
198
199
  handleCustomValue(toggle) {
200
+ toggle();
199
201
  this.tag(this.searchParams.search);
200
- // toggle();
201
202
  },
202
203
  // for taggableMixin functionality
203
204
  emitTagEvent(searchQuery, id) {