@getlupa/client 0.8.0-alpha-4 → 0.8.0
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/cjs/components/search-box/products/elements/SearchBoxProductCustom.vue.d.ts +1 -0
- package/dist/cjs/components/search-results/products/product-card/elements/SearchResultsProductCustom.vue.d.ts +1 -0
- package/dist/cjs/index.min.js +30 -2
- package/dist/cjs/types/DocumentElement.d.ts +1 -0
- package/dist/es/components/search-box/products/elements/SearchBoxProductCustom.vue.d.ts +1 -0
- package/dist/es/components/search-results/products/product-card/elements/SearchResultsProductCustom.vue.d.ts +1 -0
- package/dist/es/index.min.js +30 -2
- package/dist/es/types/DocumentElement.d.ts +1 -0
- package/dist/iife/components/search-box/products/elements/SearchBoxProductCustom.vue.d.ts +1 -0
- package/dist/iife/components/search-results/products/product-card/elements/SearchResultsProductCustom.vue.d.ts +1 -0
- package/dist/iife/index.min.js +1 -1
- package/dist/iife/types/DocumentElement.d.ts +1 -0
- package/package.json +1 -1
package/dist/cjs/index.min.js
CHANGED
|
@@ -11640,6 +11640,9 @@ let SearchBoxProductCustom = class SearchBoxProductCustom extends Vue$1 {
|
|
|
11640
11640
|
get className() {
|
|
11641
11641
|
return this.options.className;
|
|
11642
11642
|
}
|
|
11643
|
+
get label() {
|
|
11644
|
+
return this.options.label;
|
|
11645
|
+
}
|
|
11643
11646
|
get isHtml() {
|
|
11644
11647
|
var _a;
|
|
11645
11648
|
return (_a = this.options.isHtml) !== null && _a !== void 0 ? _a : false;
|
|
@@ -11670,7 +11673,17 @@ var __vue_render__$13 = function () {
|
|
|
11670
11673
|
domProps: { innerHTML: _vm._s(_vm.text) },
|
|
11671
11674
|
})
|
|
11672
11675
|
: _c("div", { class: [_vm.className, "lupa-search-box-product-custom"] }, [
|
|
11673
|
-
_vm.
|
|
11676
|
+
!_vm.label
|
|
11677
|
+
? _c("div", [_vm._v("\n " + _vm._s(_vm.text) + "\n ")])
|
|
11678
|
+
: _c("div", [
|
|
11679
|
+
_c("div", { staticClass: "lupa-search-box-custom-label" }, [
|
|
11680
|
+
_vm._v(_vm._s(_vm.label)),
|
|
11681
|
+
]),
|
|
11682
|
+
_vm._v(" "),
|
|
11683
|
+
_c("div", { staticClass: "lupa-search-box-custom-text" }, [
|
|
11684
|
+
_vm._v(_vm._s(_vm.text)),
|
|
11685
|
+
]),
|
|
11686
|
+
]),
|
|
11674
11687
|
])
|
|
11675
11688
|
};
|
|
11676
11689
|
var __vue_staticRenderFns__$13 = [];
|
|
@@ -17756,6 +17769,9 @@ let SearchResultsProductCustom = class SearchResultsProductCustom extends Vue$1
|
|
|
17756
17769
|
get className() {
|
|
17757
17770
|
return this.options.className;
|
|
17758
17771
|
}
|
|
17772
|
+
get label() {
|
|
17773
|
+
return this.options.label;
|
|
17774
|
+
}
|
|
17759
17775
|
get isHtml() {
|
|
17760
17776
|
var _a;
|
|
17761
17777
|
return (_a = this.options.isHtml) !== null && _a !== void 0 ? _a : false;
|
|
@@ -17787,7 +17803,19 @@ var __vue_render__$p = function () {
|
|
|
17787
17803
|
class: _vm.className,
|
|
17788
17804
|
domProps: { innerHTML: _vm._s(_vm.text) },
|
|
17789
17805
|
})
|
|
17790
|
-
: _c("div", { class: _vm.className }, [
|
|
17806
|
+
: _c("div", { class: _vm.className }, [
|
|
17807
|
+
!_vm.label
|
|
17808
|
+
? _c("div", [_vm._v("\n " + _vm._s(_vm.text) + "\n ")])
|
|
17809
|
+
: _c("div", [
|
|
17810
|
+
_c("div", { staticClass: "lupa-search-box-custom-label" }, [
|
|
17811
|
+
_vm._v(_vm._s(_vm.label)),
|
|
17812
|
+
]),
|
|
17813
|
+
_vm._v(" "),
|
|
17814
|
+
_c("div", { staticClass: "lupa-search-box-custom-text" }, [
|
|
17815
|
+
_vm._v(_vm._s(_vm.text)),
|
|
17816
|
+
]),
|
|
17817
|
+
]),
|
|
17818
|
+
])
|
|
17791
17819
|
};
|
|
17792
17820
|
var __vue_staticRenderFns__$p = [];
|
|
17793
17821
|
__vue_render__$p._withStripped = true;
|
|
@@ -38,6 +38,7 @@ export declare type CustomDocumentElement<T = any> = DocumentElementBase<T> & {
|
|
|
38
38
|
maxLines?: number;
|
|
39
39
|
className: string;
|
|
40
40
|
key: string;
|
|
41
|
+
label?: string;
|
|
41
42
|
};
|
|
42
43
|
export declare type PriceElement<T = any> = DocumentElementBase<T> & {
|
|
43
44
|
type: DocumentElementType.PRICE;
|
package/dist/es/index.min.js
CHANGED
|
@@ -11636,6 +11636,9 @@ let SearchBoxProductCustom = class SearchBoxProductCustom extends Vue$1 {
|
|
|
11636
11636
|
get className() {
|
|
11637
11637
|
return this.options.className;
|
|
11638
11638
|
}
|
|
11639
|
+
get label() {
|
|
11640
|
+
return this.options.label;
|
|
11641
|
+
}
|
|
11639
11642
|
get isHtml() {
|
|
11640
11643
|
var _a;
|
|
11641
11644
|
return (_a = this.options.isHtml) !== null && _a !== void 0 ? _a : false;
|
|
@@ -11666,7 +11669,17 @@ var __vue_render__$13 = function () {
|
|
|
11666
11669
|
domProps: { innerHTML: _vm._s(_vm.text) },
|
|
11667
11670
|
})
|
|
11668
11671
|
: _c("div", { class: [_vm.className, "lupa-search-box-product-custom"] }, [
|
|
11669
|
-
_vm.
|
|
11672
|
+
!_vm.label
|
|
11673
|
+
? _c("div", [_vm._v("\n " + _vm._s(_vm.text) + "\n ")])
|
|
11674
|
+
: _c("div", [
|
|
11675
|
+
_c("div", { staticClass: "lupa-search-box-custom-label" }, [
|
|
11676
|
+
_vm._v(_vm._s(_vm.label)),
|
|
11677
|
+
]),
|
|
11678
|
+
_vm._v(" "),
|
|
11679
|
+
_c("div", { staticClass: "lupa-search-box-custom-text" }, [
|
|
11680
|
+
_vm._v(_vm._s(_vm.text)),
|
|
11681
|
+
]),
|
|
11682
|
+
]),
|
|
11670
11683
|
])
|
|
11671
11684
|
};
|
|
11672
11685
|
var __vue_staticRenderFns__$13 = [];
|
|
@@ -17752,6 +17765,9 @@ let SearchResultsProductCustom = class SearchResultsProductCustom extends Vue$1
|
|
|
17752
17765
|
get className() {
|
|
17753
17766
|
return this.options.className;
|
|
17754
17767
|
}
|
|
17768
|
+
get label() {
|
|
17769
|
+
return this.options.label;
|
|
17770
|
+
}
|
|
17755
17771
|
get isHtml() {
|
|
17756
17772
|
var _a;
|
|
17757
17773
|
return (_a = this.options.isHtml) !== null && _a !== void 0 ? _a : false;
|
|
@@ -17783,7 +17799,19 @@ var __vue_render__$p = function () {
|
|
|
17783
17799
|
class: _vm.className,
|
|
17784
17800
|
domProps: { innerHTML: _vm._s(_vm.text) },
|
|
17785
17801
|
})
|
|
17786
|
-
: _c("div", { class: _vm.className }, [
|
|
17802
|
+
: _c("div", { class: _vm.className }, [
|
|
17803
|
+
!_vm.label
|
|
17804
|
+
? _c("div", [_vm._v("\n " + _vm._s(_vm.text) + "\n ")])
|
|
17805
|
+
: _c("div", [
|
|
17806
|
+
_c("div", { staticClass: "lupa-search-box-custom-label" }, [
|
|
17807
|
+
_vm._v(_vm._s(_vm.label)),
|
|
17808
|
+
]),
|
|
17809
|
+
_vm._v(" "),
|
|
17810
|
+
_c("div", { staticClass: "lupa-search-box-custom-text" }, [
|
|
17811
|
+
_vm._v(_vm._s(_vm.text)),
|
|
17812
|
+
]),
|
|
17813
|
+
]),
|
|
17814
|
+
])
|
|
17787
17815
|
};
|
|
17788
17816
|
var __vue_staticRenderFns__$p = [];
|
|
17789
17817
|
__vue_render__$p._withStripped = true;
|
|
@@ -38,6 +38,7 @@ export declare type CustomDocumentElement<T = any> = DocumentElementBase<T> & {
|
|
|
38
38
|
maxLines?: number;
|
|
39
39
|
className: string;
|
|
40
40
|
key: string;
|
|
41
|
+
label?: string;
|
|
41
42
|
};
|
|
42
43
|
export declare type PriceElement<T = any> = DocumentElementBase<T> & {
|
|
43
44
|
type: DocumentElementType.PRICE;
|