@appbaseio/reactivesearch-vue 1.16.0-alpha.48 → 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.
- package/dist/@appbaseio/reactivesearch-vue.umd.js +6 -11
- package/dist/@appbaseio/reactivesearch-vue.umd.js.map +1 -1
- package/dist/@appbaseio/reactivesearch-vue.umd.min.js +1 -1
- package/dist/@appbaseio/reactivesearch-vue.umd.min.js.map +1 -1
- package/dist/cjs/SelectedFilters.js +5 -3
- package/dist/cjs/initReactivesearch.js +0 -7
- package/dist/cjs/version.js +1 -1
- package/dist/es/SelectedFilters.js +5 -3
- package/dist/es/initReactivesearch.js +0 -7
- package/dist/es/version.js +1 -1
- package/package.json +3 -3
|
@@ -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,13 +32974,6 @@
|
|
|
32972
32974
|
rsAPISettings.customEvents = utils_2(config.analyticsConfig.customEvents) ? config.analyticsConfig.customEvents : undefined;
|
|
32973
32975
|
}
|
|
32974
32976
|
|
|
32975
|
-
console.log('APPBASE REF', JSON.stringify({
|
|
32976
|
-
index: appbaseRef.app,
|
|
32977
|
-
url: appbaseRef.url,
|
|
32978
|
-
credentials: appbaseRef.credentials
|
|
32979
|
-
}));
|
|
32980
|
-
console.log('FINAL QUERY', JSON.stringify(finalQuery));
|
|
32981
|
-
console.log('RS API SETTINGS', JSON.stringify(rsAPISettings));
|
|
32982
32977
|
appbaseRef.reactiveSearchv3(finalQuery, rsAPISettings).then(function (res) {
|
|
32983
32978
|
handleRSResponse(res);
|
|
32984
32979
|
})["catch"](function (err) {
|
|
@@ -32997,7 +32992,7 @@
|
|
|
32997
32992
|
});
|
|
32998
32993
|
}
|
|
32999
32994
|
|
|
33000
|
-
var version = "1.16.0-alpha.
|
|
32995
|
+
var version = "1.16.0-alpha.49";
|
|
33001
32996
|
|
|
33002
32997
|
var _templateObject$o, _templateObject2$b;
|
|
33003
32998
|
|