@webitel/ui-sdk 24.2.14 → 24.2.15
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 +702 -705
- package/dist/ui-sdk.umd.js +8 -8
- package/package.json +1 -1
- package/src/components/wt-select/wt-select.vue +3 -4
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,7 +90,7 @@
|
|
|
91
90
|
:disabled="disabled"
|
|
92
91
|
class="multiselect__select multiselect__custom-value-arrow"
|
|
93
92
|
icon="call-merge-filled"
|
|
94
|
-
@
|
|
93
|
+
@mousedown.prevent.stop="handleCustomValue(toggle)"
|
|
95
94
|
/>
|
|
96
95
|
<!-- To view a list of possible values, click on this icon -->
|
|
97
96
|
<!-- @mousedown.native.prevent.stop="toggle": https://github.com/shentao/vue-multiselect/issues/1204#issuecomment-615114727 -->
|
|
@@ -100,8 +99,8 @@
|
|
|
100
99
|
:disabled="disabled"
|
|
101
100
|
class="multiselect__select"
|
|
102
101
|
icon="arrow-down"
|
|
102
|
+
@mousedown.prevent.stop="toggle"
|
|
103
103
|
/>
|
|
104
|
-
</div>
|
|
105
104
|
</template>
|
|
106
105
|
|
|
107
106
|
<!-- Slot located before the tags -->
|
|
@@ -196,8 +195,8 @@ export default {
|
|
|
196
195
|
methods: {
|
|
197
196
|
// for taggableMixin functionality
|
|
198
197
|
handleCustomValue(toggle) {
|
|
198
|
+
toggle();
|
|
199
199
|
this.tag(this.searchParams.search);
|
|
200
|
-
// toggle();
|
|
201
200
|
},
|
|
202
201
|
// for taggableMixin functionality
|
|
203
202
|
emitTagEvent(searchQuery, id) {
|