@appbaseio/reactivesearch-vue 1.36.3 → 1.36.4
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/@appbaseio/reactivesearch-vue.umd.js +5 -2
- package/dist/@appbaseio/reactivesearch-vue.umd.js.map +1 -1
- package/dist/@appbaseio/reactivesearch-vue.umd.min.js +2 -2
- package/dist/@appbaseio/reactivesearch-vue.umd.min.js.map +1 -1
- package/dist/cjs/DataSearch.js +4 -1
- package/dist/cjs/version.js +1 -1
- package/dist/es/DataSearch.js +4 -1
- package/dist/es/version.js +1 -1
- package/package.json +1 -1
package/dist/cjs/DataSearch.js
CHANGED
|
@@ -625,7 +625,10 @@ var DataSearch = {
|
|
|
625
625
|
},
|
|
626
626
|
clearValue: function clearValue() {
|
|
627
627
|
this.isPending = false;
|
|
628
|
-
this.
|
|
628
|
+
if (!this.$props.enableDefaultSuggestions) {
|
|
629
|
+
this.isOpen = false;
|
|
630
|
+
}
|
|
631
|
+
this.setValue('', false);
|
|
629
632
|
this.onValueSelectedHandler('', configureStore.causes.CLEAR_VALUE);
|
|
630
633
|
},
|
|
631
634
|
handleKeyDown: function handleKeyDown(event, highlightedIndex) {
|
package/dist/cjs/version.js
CHANGED
package/dist/es/DataSearch.js
CHANGED
|
@@ -618,7 +618,10 @@ var DataSearch = {
|
|
|
618
618
|
},
|
|
619
619
|
clearValue: function clearValue() {
|
|
620
620
|
this.isPending = false;
|
|
621
|
-
this.
|
|
621
|
+
if (!this.$props.enableDefaultSuggestions) {
|
|
622
|
+
this.isOpen = false;
|
|
623
|
+
}
|
|
624
|
+
this.setValue('', false);
|
|
622
625
|
this.onValueSelectedHandler('', causes.CLEAR_VALUE);
|
|
623
626
|
},
|
|
624
627
|
handleKeyDown: function handleKeyDown(event, highlightedIndex) {
|
package/dist/es/version.js
CHANGED