@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.
@@ -625,7 +625,10 @@ var DataSearch = {
625
625
  },
626
626
  clearValue: function clearValue() {
627
627
  this.isPending = false;
628
- this.setValue('', true);
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) {
@@ -2,6 +2,6 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- var version = "1.36.3";
5
+ var version = "1.36.4";
6
6
 
7
7
  exports.default = version;
@@ -618,7 +618,10 @@ var DataSearch = {
618
618
  },
619
619
  clearValue: function clearValue() {
620
620
  this.isPending = false;
621
- this.setValue('', true);
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) {
@@ -1,3 +1,3 @@
1
- var version = "1.36.3";
1
+ var version = "1.36.4";
2
2
 
3
3
  export default version;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@appbaseio/reactivesearch-vue",
3
- "version": "1.36.3",
3
+ "version": "1.36.4",
4
4
  "private": false,
5
5
  "main": "dist/cjs/index.js",
6
6
  "jsnext:main": "dist/es/index.js",