@getlupa/client 0.16.0-alpha-4 → 0.16.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.
Files changed (34) hide show
  1. package/README.md +2 -0
  2. package/dist/cjs/components/search-box/products/elements/SearchBoxProductCustom.vue.d.ts +1 -0
  3. package/dist/cjs/components/search-box/products/elements/custom/SearchBoxProductCustomHtml.vue.d.ts +1 -0
  4. package/dist/cjs/components/search-results/filters/SearchResultsFilters.vue.d.ts +2 -0
  5. package/dist/cjs/components/search-results/products/SearchResultsProducts.vue.d.ts +3 -0
  6. package/dist/cjs/components/search-results/products/product-card/elements/SearchResultsProductCustom.vue.d.ts +1 -0
  7. package/dist/cjs/components/search-results/products/product-card/elements/custom/SearchResultsProductCustomHtmlElement.vue.d.ts +1 -0
  8. package/dist/cjs/constants/development/searchResultsDev.example.const.d.ts +5 -0
  9. package/dist/cjs/index.min.js +143 -50
  10. package/dist/cjs/types/DocumentElement.d.ts +2 -0
  11. package/dist/cjs/types/search-results/SearchResultsOptions.d.ts +7 -2
  12. package/dist/es/components/search-box/products/elements/SearchBoxProductCustom.vue.d.ts +1 -0
  13. package/dist/es/components/search-box/products/elements/custom/SearchBoxProductCustomHtml.vue.d.ts +1 -0
  14. package/dist/es/components/search-results/filters/SearchResultsFilters.vue.d.ts +2 -0
  15. package/dist/es/components/search-results/products/SearchResultsProducts.vue.d.ts +3 -0
  16. package/dist/es/components/search-results/products/product-card/elements/SearchResultsProductCustom.vue.d.ts +1 -0
  17. package/dist/es/components/search-results/products/product-card/elements/custom/SearchResultsProductCustomHtmlElement.vue.d.ts +1 -0
  18. package/dist/es/constants/development/searchResultsDev.example.const.d.ts +5 -0
  19. package/dist/es/index.min.js +143 -50
  20. package/dist/es/types/DocumentElement.d.ts +2 -0
  21. package/dist/es/types/search-results/SearchResultsOptions.d.ts +7 -2
  22. package/dist/iife/components/search-box/products/elements/SearchBoxProductCustom.vue.d.ts +1 -0
  23. package/dist/iife/components/search-box/products/elements/custom/SearchBoxProductCustomHtml.vue.d.ts +1 -0
  24. package/dist/iife/components/search-results/filters/SearchResultsFilters.vue.d.ts +2 -0
  25. package/dist/iife/components/search-results/products/SearchResultsProducts.vue.d.ts +3 -0
  26. package/dist/iife/components/search-results/products/product-card/elements/SearchResultsProductCustom.vue.d.ts +1 -0
  27. package/dist/iife/components/search-results/products/product-card/elements/custom/SearchResultsProductCustomHtmlElement.vue.d.ts +1 -0
  28. package/dist/iife/constants/development/searchResultsDev.example.const.d.ts +5 -0
  29. package/dist/iife/index.min.js +1 -1
  30. package/dist/iife/types/DocumentElement.d.ts +2 -0
  31. package/dist/iife/types/search-results/SearchResultsOptions.d.ts +7 -2
  32. package/dist/lupaContainerStyle.css +1 -1
  33. package/dist/style.css +1 -1
  34. package/package.json +1 -1
package/README.md CHANGED
@@ -76,4 +76,6 @@ For more information about individual components and all available options:
76
76
 
77
77
  - [Search Results](/docs/components/search-results.md)
78
78
 
79
+ - [Recommendations](/docs/components/recommendations.md)
80
+
79
81
  - [Tracing and Analytics](/docs/components/tracking.md)
@@ -8,4 +8,5 @@ export default class SearchBoxProductCustom extends Vue {
8
8
  get className(): string;
9
9
  get label(): string | undefined;
10
10
  get isHtml(): boolean;
11
+ handleClick(): Promise<void>;
11
12
  }
@@ -6,4 +6,5 @@ export default class SearchBoxProductCustomHtml extends Vue {
6
6
  options: CustomHtmlElement;
7
7
  get text(): string;
8
8
  get className(): string;
9
+ handleClick(): Promise<void>;
9
10
  }
@@ -3,6 +3,8 @@ import { SearchResultsFilterOptions } from "@/types/search-results/SearchResults
3
3
  export default class SearchResultsFilters extends Vue {
4
4
  options: SearchResultsFilterOptions;
5
5
  expandable: boolean;
6
+ get desktopFiltersVisible(): boolean;
7
+ get currentFiltersVisible(): boolean;
6
8
  get showCurrentFilters(): boolean;
7
9
  fetch(): void;
8
10
  }
@@ -14,7 +14,10 @@ export default class SearchResultsProducts extends Vue {
14
14
  get similarQueriesLabels(): SearchResultsSimilarQueriesLabels;
15
15
  get showTopFilters(): boolean;
16
16
  get showMobileFilters(): boolean;
17
+ get currentFilterToolbarVisible(): boolean;
17
18
  get currentFilterOptions(): ResultCurrentFilterOptions | undefined;
19
+ get currentFiltersClass(): string;
20
+ get desktopFiltersExpanded(): boolean;
18
21
  columnCount: number;
19
22
  searchResult: SearchQueryResult;
20
23
  layout: ResultsLayout;
@@ -10,4 +10,5 @@ export default class SearchResultsProductCustom extends Vue {
10
10
  get className(): string;
11
11
  get label(): string | undefined;
12
12
  get isHtml(): boolean;
13
+ handleClick(): Promise<void>;
13
14
  }
@@ -6,4 +6,5 @@ export default class SearchResultsProductCustomHtmlElement extends Vue {
6
6
  options: CustomHtmlElement;
7
7
  get text(): string;
8
8
  get className(): string;
9
+ handleClick(): Promise<void>;
9
10
  }
@@ -57,6 +57,8 @@ export declare const SEARCH_RESULTS_CONFIGURATION: {
57
57
  visibility: {
58
58
  mobileSidebar: boolean;
59
59
  mobileToolbar: boolean;
60
+ desktopToolbar: boolean;
61
+ desktopSidebar: boolean;
60
62
  };
61
63
  labels: {
62
64
  title: string;
@@ -66,6 +68,9 @@ export declare const SEARCH_RESULTS_CONFIGURATION: {
66
68
  showFilterCount: boolean;
67
69
  activeFiltersExpanded: boolean;
68
70
  };
71
+ desktopToolbar: {
72
+ activeFiltersExpanded: boolean;
73
+ };
69
74
  };
70
75
  facets: {
71
76
  labels: {
@@ -11779,6 +11779,14 @@ let SearchBoxProductCustom = class SearchBoxProductCustom extends Vue$1 {
11779
11779
  var _a;
11780
11780
  return (_a = this.options.isHtml) !== null && _a !== void 0 ? _a : false;
11781
11781
  }
11782
+ handleClick() {
11783
+ return __awaiter$1(this, void 0, void 0, function* () {
11784
+ if (!this.options.action) {
11785
+ return;
11786
+ }
11787
+ yield this.options.action(this.item);
11788
+ });
11789
+ }
11782
11790
  };
11783
11791
  __decorate([
11784
11792
  Prop()
@@ -11800,23 +11808,36 @@ var __vue_render__$18 = function () {
11800
11808
  var _h = _vm.$createElement;
11801
11809
  var _c = _vm._self._c || _h;
11802
11810
  return _vm.isHtml
11803
- ? _c("div", {
11804
- class: [_vm.className, "lupa-search-box-product-custom"],
11805
- domProps: { innerHTML: _vm._s(_vm.text) },
11806
- })
11807
- : _c("div", { class: [_vm.className, "lupa-search-box-product-custom"] }, [
11808
- !_vm.label
11809
- ? _c("div", [_vm._v("\n " + _vm._s(_vm.text) + "\n ")])
11810
- : _c("div", [
11811
- _c("div", { staticClass: "lupa-search-box-custom-label" }, [
11812
- _vm._v(_vm._s(_vm.label)),
11813
- ]),
11814
- _vm._v(" "),
11815
- _c("div", { staticClass: "lupa-search-box-custom-text" }, [
11816
- _vm._v(_vm._s(_vm.text)),
11811
+ ? _c(
11812
+ "div",
11813
+ _vm._g(
11814
+ {
11815
+ class: [_vm.className, "lupa-search-box-product-custom"],
11816
+ domProps: { innerHTML: _vm._s(_vm.text) },
11817
+ },
11818
+ _vm.options.action ? { click: _vm.handleClick } : {}
11819
+ )
11820
+ )
11821
+ : _c(
11822
+ "div",
11823
+ _vm._g(
11824
+ { class: [_vm.className, "lupa-search-box-product-custom"] },
11825
+ _vm.options.action ? { click: _vm.handleClick } : {}
11826
+ ),
11827
+ [
11828
+ !_vm.label
11829
+ ? _c("div", [_vm._v("\n " + _vm._s(_vm.text) + "\n ")])
11830
+ : _c("div", [
11831
+ _c("div", { staticClass: "lupa-search-box-custom-label" }, [
11832
+ _vm._v(_vm._s(_vm.label)),
11833
+ ]),
11834
+ _vm._v(" "),
11835
+ _c("div", { staticClass: "lupa-search-box-custom-text" }, [
11836
+ _vm._v(_vm._s(_vm.text)),
11837
+ ]),
11817
11838
  ]),
11818
- ]),
11819
- ])
11839
+ ]
11840
+ )
11820
11841
  };
11821
11842
  var __vue_staticRenderFns__$18 = [];
11822
11843
  __vue_render__$18._withStripped = true;
@@ -11857,6 +11878,14 @@ let SearchBoxProductCustomHtml = class SearchBoxProductCustomHtml extends Vue$1
11857
11878
  get className() {
11858
11879
  return this.options.className;
11859
11880
  }
11881
+ handleClick() {
11882
+ return __awaiter$1(this, void 0, void 0, function* () {
11883
+ if (!this.options.action) {
11884
+ return;
11885
+ }
11886
+ yield this.options.action(this.item);
11887
+ });
11888
+ }
11860
11889
  };
11861
11890
  __decorate([
11862
11891
  Prop()
@@ -11879,10 +11908,13 @@ var __vue_render__$17 = function () {
11879
11908
  var _vm = this;
11880
11909
  var _h = _vm.$createElement;
11881
11910
  var _c = _vm._self._c || _h;
11882
- return _c("div", {
11883
- class: _vm.className,
11884
- domProps: { innerHTML: _vm._s(_vm.text) },
11885
- })
11911
+ return _c(
11912
+ "div",
11913
+ _vm._g(
11914
+ { class: _vm.className, domProps: { innerHTML: _vm._s(_vm.text) } },
11915
+ _vm.options.action ? { click: _vm.handleClick } : {}
11916
+ )
11917
+ )
11886
11918
  };
11887
11919
  var __vue_staticRenderFns__$17 = [];
11888
11920
  __vue_render__$17._withStripped = true;
@@ -33715,11 +33747,18 @@ __vue_render__$L._withStripped = true;
33715
33747
  );
33716
33748
 
33717
33749
  let SearchResultsFilters = class SearchResultsFilters extends Vue$1 {
33718
- get showCurrentFilters() {
33750
+ get desktopFiltersVisible() {
33751
+ var _a, _b, _c;
33752
+ // Default is true
33753
+ return (_c = (_b = (_a = this.options.currentFilters) === null || _a === void 0 ? void 0 : _a.visibility) === null || _b === void 0 ? void 0 : _b.desktopSidebar) !== null && _c !== void 0 ? _c : true;
33754
+ }
33755
+ get currentFiltersVisible() {
33719
33756
  var _a, _b;
33720
- return ((_b = (_a = this.options.currentFilters) === null || _a === void 0 ? void 0 : _a.visibility) === null || _b === void 0 ? void 0 : _b.mobileSidebar)
33721
- ? Boolean(this.options.facets)
33722
- : false;
33757
+ return (((_b = (_a = this.options.currentFilters) === null || _a === void 0 ? void 0 : _a.visibility) === null || _b === void 0 ? void 0 : _b.mobileSidebar) ||
33758
+ this.desktopFiltersVisible);
33759
+ }
33760
+ get showCurrentFilters() {
33761
+ return this.currentFiltersVisible ? Boolean(this.options.facets) : false;
33723
33762
  }
33724
33763
  fetch() {
33725
33764
  var _a;
@@ -35261,6 +35300,14 @@ let SearchResultsProductCustom = class SearchResultsProductCustom extends Vue$1
35261
35300
  var _a;
35262
35301
  return (_a = this.options.isHtml) !== null && _a !== void 0 ? _a : false;
35263
35302
  }
35303
+ handleClick() {
35304
+ return __awaiter$1(this, void 0, void 0, function* () {
35305
+ if (!this.options.action) {
35306
+ return;
35307
+ }
35308
+ yield this.options.action(this.item);
35309
+ });
35310
+ }
35264
35311
  };
35265
35312
  __decorate([
35266
35313
  Prop()
@@ -35284,23 +35331,33 @@ var __vue_render__$u = function () {
35284
35331
  var _h = _vm.$createElement;
35285
35332
  var _c = _vm._self._c || _h;
35286
35333
  return _vm.isHtml
35287
- ? _c("div", {
35288
- class: _vm.className,
35289
- domProps: { innerHTML: _vm._s(_vm.text) },
35290
- })
35291
- : _c("div", { class: _vm.className }, [
35292
- !_vm.label
35293
- ? _c("div", [_vm._v("\n " + _vm._s(_vm.text) + "\n ")])
35294
- : _c("div", [
35295
- _c("div", { staticClass: "lupa-search-box-custom-label" }, [
35296
- _vm._v(_vm._s(_vm.label)),
35297
- ]),
35298
- _vm._v(" "),
35299
- _c("div", { staticClass: "lupa-search-box-custom-text" }, [
35300
- _vm._v(_vm._s(_vm.text)),
35334
+ ? _c(
35335
+ "div",
35336
+ _vm._g(
35337
+ { class: _vm.className, domProps: { innerHTML: _vm._s(_vm.text) } },
35338
+ _vm.options.action ? { click: _vm.handleClick } : {}
35339
+ )
35340
+ )
35341
+ : _c(
35342
+ "div",
35343
+ _vm._g(
35344
+ { class: _vm.className },
35345
+ _vm.options.action ? { click: _vm.handleClick } : {}
35346
+ ),
35347
+ [
35348
+ !_vm.label
35349
+ ? _c("div", [_vm._v("\n " + _vm._s(_vm.text) + "\n ")])
35350
+ : _c("div", [
35351
+ _c("div", { staticClass: "lupa-search-box-custom-label" }, [
35352
+ _vm._v(_vm._s(_vm.label)),
35353
+ ]),
35354
+ _vm._v(" "),
35355
+ _c("div", { staticClass: "lupa-search-box-custom-text" }, [
35356
+ _vm._v(_vm._s(_vm.text)),
35357
+ ]),
35301
35358
  ]),
35302
- ]),
35303
- ])
35359
+ ]
35360
+ )
35304
35361
  };
35305
35362
  var __vue_staticRenderFns__$u = [];
35306
35363
  __vue_render__$u._withStripped = true;
@@ -35341,6 +35398,14 @@ let SearchResultsProductCustomHtmlElement = class SearchResultsProductCustomHtml
35341
35398
  get className() {
35342
35399
  return this.options.className;
35343
35400
  }
35401
+ handleClick() {
35402
+ return __awaiter$1(this, void 0, void 0, function* () {
35403
+ if (!this.options.action) {
35404
+ return;
35405
+ }
35406
+ yield this.options.action(this.item);
35407
+ });
35408
+ }
35344
35409
  };
35345
35410
  __decorate([
35346
35411
  Prop()
@@ -35363,10 +35428,13 @@ var __vue_render__$t = function () {
35363
35428
  var _vm = this;
35364
35429
  var _h = _vm.$createElement;
35365
35430
  var _c = _vm._self._c || _h;
35366
- return _c("div", {
35367
- class: _vm.className,
35368
- domProps: { innerHTML: _vm._s(_vm.text) },
35369
- })
35431
+ return _c(
35432
+ "div",
35433
+ _vm._g(
35434
+ { class: _vm.className, domProps: { innerHTML: _vm._s(_vm.text) } },
35435
+ _vm.options.action ? { click: _vm.handleClick } : {}
35436
+ )
35437
+ )
35370
35438
  };
35371
35439
  var __vue_staticRenderFns__$t = [];
35372
35440
  __vue_render__$t._withStripped = true;
@@ -37875,12 +37943,34 @@ let SearchResultsProducts = class SearchResultsProducts extends Vue$1 {
37875
37943
  get showMobileFilters() {
37876
37944
  return this.options.searchTitlePosition !== "search-results-top";
37877
37945
  }
37946
+ get currentFilterToolbarVisible() {
37947
+ var _a, _b, _c, _d, _e, _f;
37948
+ return Boolean(((_c = (_b = (_a = this.options.filters) === null || _a === void 0 ? void 0 : _a.currentFilters) === null || _b === void 0 ? void 0 : _b.visibility) === null || _c === void 0 ? void 0 : _c.mobileToolbar) ||
37949
+ ((_f = (_e = (_d = this.options.filters) === null || _d === void 0 ? void 0 : _d.currentFilters) === null || _e === void 0 ? void 0 : _e.visibility) === null || _f === void 0 ? void 0 : _f.desktopToolbar));
37950
+ }
37878
37951
  get currentFilterOptions() {
37879
- var _a, _b, _c, _d;
37880
- return ((_c = (_b = (_a = this.options.filters) === null || _a === void 0 ? void 0 : _a.currentFilters) === null || _b === void 0 ? void 0 : _b.visibility) === null || _c === void 0 ? void 0 : _c.mobileToolbar)
37881
- ? (_d = this.options.filters) === null || _d === void 0 ? void 0 : _d.currentFilters
37952
+ var _a;
37953
+ return this.currentFilterToolbarVisible
37954
+ ? (_a = this.options.filters) === null || _a === void 0 ? void 0 : _a.currentFilters
37882
37955
  : undefined;
37883
37956
  }
37957
+ get currentFiltersClass() {
37958
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j;
37959
+ if (!this.currentFilterToolbarVisible) {
37960
+ return "";
37961
+ }
37962
+ if (((_c = (_b = (_a = this.options.filters) === null || _a === void 0 ? void 0 : _a.currentFilters) === null || _b === void 0 ? void 0 : _b.visibility) === null || _c === void 0 ? void 0 : _c.mobileToolbar) &&
37963
+ ((_f = (_e = (_d = this.options.filters) === null || _d === void 0 ? void 0 : _d.currentFilters) === null || _e === void 0 ? void 0 : _e.visibility) === null || _f === void 0 ? void 0 : _f.desktopToolbar)) {
37964
+ return "lupa-toolbar-filters";
37965
+ }
37966
+ return ((_j = (_h = (_g = this.options.filters) === null || _g === void 0 ? void 0 : _g.currentFilters) === null || _h === void 0 ? void 0 : _h.visibility) === null || _j === void 0 ? void 0 : _j.mobileToolbar)
37967
+ ? "lupa-filters-mobile"
37968
+ : "lupa-toolbar-filters-desktop";
37969
+ }
37970
+ get desktopFiltersExpanded() {
37971
+ var _a, _b, _c, _d, _e;
37972
+ return ((_e = (_d = (_c = (_b = (_a = this.options) === null || _a === void 0 ? void 0 : _a.filters) === null || _b === void 0 ? void 0 : _b.currentFilters) === null || _c === void 0 ? void 0 : _c.desktopToolbar) === null || _d === void 0 ? void 0 : _d.activeFiltersExpanded) !== null && _e !== void 0 ? _e : false);
37973
+ }
37884
37974
  get columnSize() {
37885
37975
  if (this.layout === ResultsLayoutEnum.LIST) {
37886
37976
  return "width: 100%";
@@ -37981,11 +38071,11 @@ var __vue_render__$c = function () {
37981
38071
  _vm._v(" "),
37982
38072
  _vm.currentFilterOptions
37983
38073
  ? _c("CurrentFilters", {
37984
- staticClass: "lupa-filters-mobile",
38074
+ class: _vm.currentFiltersClass,
37985
38075
  attrs: {
37986
38076
  "data-cy": "lupa-search-result-filters-mobile-toolbar",
37987
38077
  options: _vm.currentFilterOptions,
37988
- expandable: true,
38078
+ expandable: !_vm.desktopFiltersExpanded,
37989
38079
  },
37990
38080
  })
37991
38081
  : _vm._e(),
@@ -38740,7 +38830,10 @@ var __vue_render__$8 = function () {
38740
38830
  var _c = _vm._self._c || _h;
38741
38831
  return _c(
38742
38832
  "div",
38743
- { staticClass: "lupa-search-result-wrapper" },
38833
+ {
38834
+ staticClass: "lupa-search-result-wrapper",
38835
+ class: { "lupa-search-wrapper-no-results": !_vm.hasResults },
38836
+ },
38744
38837
  [
38745
38838
  _vm.isContainer
38746
38839
  ? [
@@ -43,6 +43,7 @@ export declare type CustomDocumentElement<T = any> = DocumentElementBase<T> & {
43
43
  className: string;
44
44
  key: string;
45
45
  label?: string;
46
+ action?: (document: T) => Promise<unknown> | undefined;
46
47
  };
47
48
  export declare type PriceElement<T = any> = DocumentElementBase<T> & {
48
49
  type: DocumentElementType.PRICE;
@@ -85,5 +86,6 @@ export declare type CustomHtmlElement<T = any> = DocumentElementBase<T> & {
85
86
  type: DocumentElementType.CUSTOM_HTML;
86
87
  html: (document: T) => string;
87
88
  className: string;
89
+ action?: (document: T) => Promise<unknown> | undefined;
88
90
  };
89
91
  export declare type DocumentElement = ImageDocumentElement | TitleDocumentElement | DescriptionDocumentElement | CustomDocumentElement | PriceElement | RegularPriceDocumentElement | RatingElement | SingleStarRatingElement | AddToCartElement | CustomHtmlElement;
@@ -110,13 +110,18 @@ export declare type ResultCurrentFilterOptions = {
110
110
  clearAll: string;
111
111
  };
112
112
  visibility?: {
113
- mobileSidebar: boolean;
114
- mobileToolbar: boolean;
113
+ mobileSidebar?: boolean;
114
+ mobileToolbar?: boolean;
115
+ desktopSidebar?: boolean;
116
+ desktopToolbar?: boolean;
115
117
  };
116
118
  mobileSidebar?: {
117
119
  showFilterCount?: boolean;
118
120
  activeFiltersExpanded?: boolean;
119
121
  };
122
+ desktopToolbar?: {
123
+ activeFiltersExpanded?: boolean;
124
+ };
120
125
  };
121
126
  export declare type FacetStyle = "sidebar" | "top-dropdown";
122
127
  export declare type FacetFilterQuery = {
@@ -8,4 +8,5 @@ export default class SearchBoxProductCustom extends Vue {
8
8
  get className(): string;
9
9
  get label(): string | undefined;
10
10
  get isHtml(): boolean;
11
+ handleClick(): Promise<void>;
11
12
  }
@@ -6,4 +6,5 @@ export default class SearchBoxProductCustomHtml extends Vue {
6
6
  options: CustomHtmlElement;
7
7
  get text(): string;
8
8
  get className(): string;
9
+ handleClick(): Promise<void>;
9
10
  }
@@ -3,6 +3,8 @@ import { SearchResultsFilterOptions } from "@/types/search-results/SearchResults
3
3
  export default class SearchResultsFilters extends Vue {
4
4
  options: SearchResultsFilterOptions;
5
5
  expandable: boolean;
6
+ get desktopFiltersVisible(): boolean;
7
+ get currentFiltersVisible(): boolean;
6
8
  get showCurrentFilters(): boolean;
7
9
  fetch(): void;
8
10
  }
@@ -14,7 +14,10 @@ export default class SearchResultsProducts extends Vue {
14
14
  get similarQueriesLabels(): SearchResultsSimilarQueriesLabels;
15
15
  get showTopFilters(): boolean;
16
16
  get showMobileFilters(): boolean;
17
+ get currentFilterToolbarVisible(): boolean;
17
18
  get currentFilterOptions(): ResultCurrentFilterOptions | undefined;
19
+ get currentFiltersClass(): string;
20
+ get desktopFiltersExpanded(): boolean;
18
21
  columnCount: number;
19
22
  searchResult: SearchQueryResult;
20
23
  layout: ResultsLayout;
@@ -10,4 +10,5 @@ export default class SearchResultsProductCustom extends Vue {
10
10
  get className(): string;
11
11
  get label(): string | undefined;
12
12
  get isHtml(): boolean;
13
+ handleClick(): Promise<void>;
13
14
  }
@@ -6,4 +6,5 @@ export default class SearchResultsProductCustomHtmlElement extends Vue {
6
6
  options: CustomHtmlElement;
7
7
  get text(): string;
8
8
  get className(): string;
9
+ handleClick(): Promise<void>;
9
10
  }
@@ -57,6 +57,8 @@ export declare const SEARCH_RESULTS_CONFIGURATION: {
57
57
  visibility: {
58
58
  mobileSidebar: boolean;
59
59
  mobileToolbar: boolean;
60
+ desktopToolbar: boolean;
61
+ desktopSidebar: boolean;
60
62
  };
61
63
  labels: {
62
64
  title: string;
@@ -66,6 +68,9 @@ export declare const SEARCH_RESULTS_CONFIGURATION: {
66
68
  showFilterCount: boolean;
67
69
  activeFiltersExpanded: boolean;
68
70
  };
71
+ desktopToolbar: {
72
+ activeFiltersExpanded: boolean;
73
+ };
69
74
  };
70
75
  facets: {
71
76
  labels: {