@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/dist/ui-sdk.css +1 -1
- package/dist/ui-sdk.mjs +708 -707
- package/dist/ui-sdk.umd.js +8 -8
- package/package.json +1 -1
- package/src/components/wt-select/wt-select.vue +4 -3
package/package.json
CHANGED
|
@@ -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) {
|