@getlupa/client 0.6.0-alpha-18 → 0.6.0-alpha-21
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/product-list/CategoryDescription.vue.d.ts +0 -1
- package/dist/cjs/components/search-results/products/SearchResultsProducts.vue.d.ts +8 -0
- package/dist/cjs/constants/development/searchResultsDev.example.const.d.ts +2 -0
- package/dist/cjs/constants/global.const.d.ts +1 -0
- package/dist/cjs/index.min.js +20323 -35545
- package/dist/cjs/store/modules/searchResult.d.ts +1 -0
- package/dist/cjs/types/search-results/SearchResultsOptions.d.ts +3 -0
- package/dist/es/components/product-list/CategoryDescription.vue.d.ts +0 -1
- package/dist/es/components/search-results/products/SearchResultsProducts.vue.d.ts +8 -0
- package/dist/es/constants/development/searchResultsDev.example.const.d.ts +2 -0
- package/dist/es/constants/global.const.d.ts +1 -0
- package/dist/es/index.min.js +20323 -35545
- package/dist/es/store/modules/searchResult.d.ts +1 -0
- package/dist/es/types/search-results/SearchResultsOptions.d.ts +3 -0
- package/dist/iife/components/product-list/CategoryDescription.vue.d.ts +0 -1
- package/dist/iife/components/search-results/products/SearchResultsProducts.vue.d.ts +8 -0
- package/dist/iife/constants/development/searchResultsDev.example.const.d.ts +2 -0
- package/dist/iife/constants/global.const.d.ts +1 -0
- package/dist/iife/index.min.js +1 -1
- package/dist/iife/store/modules/searchResult.d.ts +1 -0
- package/dist/iife/types/search-results/SearchResultsOptions.d.ts +3 -0
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -2,7 +2,6 @@ import Vue from "vue";
|
|
|
2
2
|
import { ProductListOptions } from "@/types/product-list/ProductListOptions";
|
|
3
3
|
export default class CategoryDescription extends Vue {
|
|
4
4
|
options: ProductListOptions;
|
|
5
|
-
get title(): string | undefined;
|
|
6
5
|
get description(): string | undefined;
|
|
7
6
|
get overviewVisible(): boolean;
|
|
8
7
|
}
|
|
@@ -8,6 +8,7 @@ export default class SearchResultsProducts extends Vue {
|
|
|
8
8
|
loading: boolean;
|
|
9
9
|
hasResults: boolean;
|
|
10
10
|
currentQueryText: string;
|
|
11
|
+
isPageEmpty: boolean;
|
|
11
12
|
isMobileSidebarVisible: boolean;
|
|
12
13
|
productCardOptions(): SearchResultsProductCardOptions;
|
|
13
14
|
get similarQueriesLabels(): SearchResultsSimilarQueriesLabels;
|
|
@@ -21,4 +22,11 @@ export default class SearchResultsProducts extends Vue {
|
|
|
21
22
|
page: number;
|
|
22
23
|
get columnSize(): string;
|
|
23
24
|
getProductKey(index: string, product: Document): string;
|
|
25
|
+
appendParams: ({ params, }: {
|
|
26
|
+
params: {
|
|
27
|
+
name: string;
|
|
28
|
+
value: string;
|
|
29
|
+
}[];
|
|
30
|
+
}) => void;
|
|
31
|
+
goToFirstPage(): void;
|
|
24
32
|
}
|
|
@@ -13,6 +13,8 @@ export declare const SEARCH_RESULTS_CONFIGURATION: {
|
|
|
13
13
|
priceSeparator: string;
|
|
14
14
|
showMore: string;
|
|
15
15
|
emptyResults: string;
|
|
16
|
+
noItemsInPage: string;
|
|
17
|
+
backToFirstPage: string;
|
|
16
18
|
mobileFilterButton: string;
|
|
17
19
|
htmlTitleTemplate: string;
|
|
18
20
|
noResultsSuggestion: string;
|
|
@@ -11,4 +11,5 @@ export declare const XL_MIN_WIDTH = 1199;
|
|
|
11
11
|
export declare const MAX_FACET_VALUES = 5000;
|
|
12
12
|
export declare const CURRENCY_KEY_INDICATOR = "price";
|
|
13
13
|
export declare const DEFAULT_PAGE_SIZE = 12;
|
|
14
|
+
export declare const DEFAULT_PAGE_SIZE_SELECTION: number[];
|
|
14
15
|
export declare const LUPA_ROUTING_EVENT = "lupaRedirect";
|