@webitel/ui-sdk 24.2.19 → 24.2.21
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
|
@@ -188,6 +188,11 @@ export default {
|
|
|
188
188
|
data: () => ({
|
|
189
189
|
isOpened: false,
|
|
190
190
|
}),
|
|
191
|
+
watch: {
|
|
192
|
+
value: { handler() {
|
|
193
|
+
console.info(this.value);
|
|
194
|
+
}, immediate: true },
|
|
195
|
+
},
|
|
191
196
|
computed: {
|
|
192
197
|
// for taggableMixin
|
|
193
198
|
taggable() { return this.allowCustomValues; },
|
|
@@ -197,6 +202,7 @@ export default {
|
|
|
197
202
|
methods: {
|
|
198
203
|
// for taggableMixin functionality
|
|
199
204
|
handleCustomValue(toggle) {
|
|
205
|
+
console.info(this.value);
|
|
200
206
|
toggle();
|
|
201
207
|
this.tag(this.searchParams.search);
|
|
202
208
|
},
|