@appbaseio/reactivesearch-vue 1.16.0-alpha.46 → 1.16.0-alpha.49

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.
@@ -23807,6 +23807,7 @@
23807
23807
  showClearAll: VueTypes.bool.def(true),
23808
23808
  title: types.title,
23809
23809
  resetToDefault: VueTypes.bool.def(false),
23810
+ clearAllBlacklistComponents: VueTypes.array,
23810
23811
  resetToValues: VueTypes.object
23811
23812
  },
23812
23813
  inject: {
@@ -23861,12 +23862,13 @@
23861
23862
  },
23862
23863
  clearValues: function clearValues() {
23863
23864
  var resetToDefault = this.resetToDefault,
23864
- resetToValues = this.resetToValues;
23865
+ resetToValues = this.resetToValues,
23866
+ clearAllBlacklistComponents = this.clearAllBlacklistComponents;
23865
23867
 
23866
23868
  if (resetToDefault) {
23867
- this.resetValuesToDefault();
23869
+ this.resetValuesToDefault(clearAllBlacklistComponents);
23868
23870
  } else {
23869
- this.clearValuesAction(resetToValues);
23871
+ this.clearValuesAction(resetToValues, clearAllBlacklistComponents);
23870
23872
  }
23871
23873
 
23872
23874
  this.$emit('clear', resetToValues);
@@ -32972,7 +32974,6 @@
32972
32974
  rsAPISettings.customEvents = utils_2(config.analyticsConfig.customEvents) ? config.analyticsConfig.customEvents : undefined;
32973
32975
  }
32974
32976
 
32975
- console.log('FINAL QUERY', JSON.stringify(finalQuery));
32976
32977
  appbaseRef.reactiveSearchv3(finalQuery, rsAPISettings).then(function (res) {
32977
32978
  handleRSResponse(res);
32978
32979
  })["catch"](function (err) {
@@ -32991,7 +32992,7 @@
32991
32992
  });
32992
32993
  }
32993
32994
 
32994
- var version = "1.16.0-alpha.46";
32995
+ var version = "1.16.0-alpha.49";
32995
32996
 
32996
32997
  var _templateObject$o, _templateObject2$b;
32997
32998