@getlupa/client 0.5.1-alpha-13 → 0.5.1-alpha-16
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/ProductListEntry.vue.d.ts +1 -0
- package/dist/cjs/index.min.js +3317 -975
- package/dist/cjs/store/modules/params.d.ts +2 -1
- package/dist/cjs/utils/routing.utils.d.ts +1 -0
- package/dist/es/ProductListEntry.vue.d.ts +1 -0
- package/dist/es/index.min.js +3317 -975
- package/dist/es/store/modules/params.d.ts +2 -1
- package/dist/es/utils/routing.utils.d.ts +1 -0
- package/dist/iife/ProductListEntry.vue.d.ts +1 -0
- package/dist/iife/index.min.js +1 -1
- package/dist/iife/store/modules/params.d.ts +2 -1
- package/dist/iife/utils/routing.utils.d.ts +1 -0
- package/dist/style.css +1 -1
- package/package.json +3 -1
|
@@ -40,7 +40,7 @@ export default class ParamsModule extends VuexModule {
|
|
|
40
40
|
searchText: string;
|
|
41
41
|
facet?: InputSuggestionFacet;
|
|
42
42
|
}): void;
|
|
43
|
-
appendParams({ params, paramsToRemove, encode, save, }: {
|
|
43
|
+
appendParams({ params, paramsToRemove, encode, save, searchResultsLink, }: {
|
|
44
44
|
params: {
|
|
45
45
|
name: string;
|
|
46
46
|
value: string;
|
|
@@ -48,6 +48,7 @@ export default class ParamsModule extends VuexModule {
|
|
|
48
48
|
paramsToRemove?: "all" | string[];
|
|
49
49
|
encode?: boolean;
|
|
50
50
|
save?: boolean;
|
|
51
|
+
searchResultsLink?: string;
|
|
51
52
|
}): {
|
|
52
53
|
params?: QueryParams;
|
|
53
54
|
searchString?: string;
|
|
@@ -3,3 +3,4 @@ import { RoutingBehavior } from "..";
|
|
|
3
3
|
export declare const emitRoutingEvent: (url: string) => void;
|
|
4
4
|
export declare const handleRoutingEvent: (link: string, event?: Event | undefined, hasEventRouting?: boolean) => void;
|
|
5
5
|
export declare const redirectToResultsPage: (link: string, searchText: string, facet?: InputSuggestionFacet | undefined, routingBehavior?: RoutingBehavior) => void;
|
|
6
|
+
export declare const getPageUrl: (pathnameOverride?: string | undefined) => URL;
|