@webitel/ui-sdk 24.2.13 → 24.2.14
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 +705 -702
- 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,6 +83,7 @@
|
|
|
83
83
|
|
|
84
84
|
<!-- Element for opening and closing the dropdown -->
|
|
85
85
|
<template #caret="{ toggle }">
|
|
86
|
+
<div @mousedown.prevent="toggle">
|
|
86
87
|
<!-- In mode allowCustomValues, adding is done by clicking on this icon -->
|
|
87
88
|
<!-- [https://my.webitel.com/browse/WTEL-3181]-->
|
|
88
89
|
<wt-icon-btn
|
|
@@ -90,7 +91,7 @@
|
|
|
90
91
|
:disabled="disabled"
|
|
91
92
|
class="multiselect__select multiselect__custom-value-arrow"
|
|
92
93
|
icon="call-merge-filled"
|
|
93
|
-
@
|
|
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,8 +100,8 @@
|
|
|
99
100
|
:disabled="disabled"
|
|
100
101
|
class="multiselect__select"
|
|
101
102
|
icon="arrow-down"
|
|
102
|
-
@mousedown.native.prevent.stop="toggle"
|
|
103
103
|
/>
|
|
104
|
+
</div>
|
|
104
105
|
</template>
|
|
105
106
|
|
|
106
107
|
<!-- Slot located before the tags -->
|
|
@@ -196,7 +197,7 @@ export default {
|
|
|
196
197
|
// for taggableMixin functionality
|
|
197
198
|
handleCustomValue(toggle) {
|
|
198
199
|
this.tag(this.searchParams.search);
|
|
199
|
-
toggle();
|
|
200
|
+
// toggle();
|
|
200
201
|
},
|
|
201
202
|
// for taggableMixin functionality
|
|
202
203
|
emitTagEvent(searchQuery, id) {
|