@getlupa/vue 0.12.6 → 0.12.7
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/lupaSearch.js +3 -3
- package/dist/lupaSearch.mjs +3 -3
- package/package.json +1 -1
package/dist/lupaSearch.js
CHANGED
|
@@ -16935,8 +16935,8 @@ const _sfc_main$8 = /* @__PURE__ */ vue.defineComponent({
|
|
|
16935
16935
|
});
|
|
16936
16936
|
const columnSize = vue.computed(() => `width: ${100 / columnCount.value}%`);
|
|
16937
16937
|
const title = vue.computed(() => {
|
|
16938
|
-
var _a;
|
|
16939
|
-
return (_a = props.options.recommendationLabels.title) != null ?
|
|
16938
|
+
var _a, _b;
|
|
16939
|
+
return (_b = (_a = props.options.recommendationLabels) == null ? void 0 : _a.title) != null ? _b : "";
|
|
16940
16940
|
});
|
|
16941
16941
|
vue.onMounted(() => {
|
|
16942
16942
|
loadRecommendations();
|
|
@@ -16999,7 +16999,7 @@ const _sfc_main$8 = /* @__PURE__ */ vue.defineComponent({
|
|
|
16999
16999
|
const result = yield LupaSearchSdk.recommend(
|
|
17000
17000
|
props.options.queryKey,
|
|
17001
17001
|
props.options.itemId,
|
|
17002
|
-
props.options.
|
|
17002
|
+
props.options.recommendationFilters,
|
|
17003
17003
|
props.options.options
|
|
17004
17004
|
);
|
|
17005
17005
|
if (!result.success) {
|
package/dist/lupaSearch.mjs
CHANGED
|
@@ -16933,8 +16933,8 @@ const _sfc_main$8 = /* @__PURE__ */ defineComponent({
|
|
|
16933
16933
|
});
|
|
16934
16934
|
const columnSize = computed(() => `width: ${100 / columnCount.value}%`);
|
|
16935
16935
|
const title = computed(() => {
|
|
16936
|
-
var _a;
|
|
16937
|
-
return (_a = props.options.recommendationLabels.title) != null ?
|
|
16936
|
+
var _a, _b;
|
|
16937
|
+
return (_b = (_a = props.options.recommendationLabels) == null ? void 0 : _a.title) != null ? _b : "";
|
|
16938
16938
|
});
|
|
16939
16939
|
onMounted(() => {
|
|
16940
16940
|
loadRecommendations();
|
|
@@ -16997,7 +16997,7 @@ const _sfc_main$8 = /* @__PURE__ */ defineComponent({
|
|
|
16997
16997
|
const result = yield LupaSearchSdk.recommend(
|
|
16998
16998
|
props.options.queryKey,
|
|
16999
16999
|
props.options.itemId,
|
|
17000
|
-
props.options.
|
|
17000
|
+
props.options.recommendationFilters,
|
|
17001
17001
|
props.options.options
|
|
17002
17002
|
);
|
|
17003
17003
|
if (!result.success) {
|