@getlupa/vue 0.12.2 → 0.12.3

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.
@@ -6104,12 +6104,10 @@ const _sfc_main$Q = /* @__PURE__ */ vue.defineComponent({
6104
6104
  } = storeToRefs(searchResultStore);
6105
6105
  const currentFilters = vue.computed(() => filters.value);
6106
6106
  const currentDisplayFilters = vue.computed(
6107
- () => hideFiltersOnExactMatchForKeys.value.length ? displayFilters.value.filter(
6108
- (f2) => {
6109
- var _a;
6110
- return !((_a = hideFiltersOnExactMatchForKeys.value) == null ? void 0 : _a.includes(f2.key)) && getNormalizedString(currentQueryText.value) !== getNormalizedString(f2.label);
6111
- }
6112
- ) : displayFilters.value
6107
+ () => hideFiltersOnExactMatchForKeys.value.length ? displayFilters.value.filter((f2) => {
6108
+ var _a;
6109
+ return !((_a = hideFiltersOnExactMatchForKeys.value) == null ? void 0 : _a.includes(f2.key)) || getNormalizedString(currentQueryText.value) !== getNormalizedString(f2.value);
6110
+ }) : displayFilters.value
6113
6111
  );
6114
6112
  const hasFilters = vue.computed(() => {
6115
6113
  var _a;
@@ -6102,12 +6102,10 @@ const _sfc_main$Q = /* @__PURE__ */ defineComponent({
6102
6102
  } = storeToRefs(searchResultStore);
6103
6103
  const currentFilters = computed(() => filters.value);
6104
6104
  const currentDisplayFilters = computed(
6105
- () => hideFiltersOnExactMatchForKeys.value.length ? displayFilters.value.filter(
6106
- (f2) => {
6107
- var _a;
6108
- return !((_a = hideFiltersOnExactMatchForKeys.value) == null ? void 0 : _a.includes(f2.key)) && getNormalizedString(currentQueryText.value) !== getNormalizedString(f2.label);
6109
- }
6110
- ) : displayFilters.value
6105
+ () => hideFiltersOnExactMatchForKeys.value.length ? displayFilters.value.filter((f2) => {
6106
+ var _a;
6107
+ return !((_a = hideFiltersOnExactMatchForKeys.value) == null ? void 0 : _a.includes(f2.key)) || getNormalizedString(currentQueryText.value) !== getNormalizedString(f2.value);
6108
+ }) : displayFilters.value
6111
6109
  );
6112
6110
  const hasFilters = computed(() => {
6113
6111
  var _a;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getlupa/vue",
3
- "version": "0.12.2",
3
+ "version": "0.12.3",
4
4
  "main": "dist/lupaSearch.mjs",
5
5
  "module": "dist/lupaSearch.mjs",
6
6
  "types": "dist/src/index.d.ts",