@getlupa/client 0.5.1-alpha-3 → 0.5.1-alpha-6

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 (28) hide show
  1. package/dist/cjs/components/product-list/CategoryFilter.vue.d.ts +3 -4
  2. package/dist/cjs/components/product-list/CategoryFilterItem.vue.d.ts +2 -3
  3. package/dist/cjs/components/search-results/SearchResultsBreadcrumbs.vue.d.ts +4 -1
  4. package/dist/cjs/components/search-results/products/product-card/SearchResultsProductCard.vue.d.ts +1 -2
  5. package/dist/cjs/components/search-results/products/product-card/elements/SearchResultsProductTitle.vue.d.ts +1 -1
  6. package/dist/cjs/index.d.ts +2 -2
  7. package/dist/cjs/index.min.js +106 -89
  8. package/dist/cjs/types/product-list/ProductListOptions.d.ts +1 -1
  9. package/dist/cjs/utils/routing.utils.d.ts +1 -0
  10. package/dist/es/components/product-list/CategoryFilter.vue.d.ts +3 -4
  11. package/dist/es/components/product-list/CategoryFilterItem.vue.d.ts +2 -3
  12. package/dist/es/components/search-results/SearchResultsBreadcrumbs.vue.d.ts +4 -1
  13. package/dist/es/components/search-results/products/product-card/SearchResultsProductCard.vue.d.ts +1 -2
  14. package/dist/es/components/search-results/products/product-card/elements/SearchResultsProductTitle.vue.d.ts +1 -1
  15. package/dist/es/index.d.ts +2 -2
  16. package/dist/es/index.min.js +106 -89
  17. package/dist/es/types/product-list/ProductListOptions.d.ts +1 -1
  18. package/dist/es/utils/routing.utils.d.ts +1 -0
  19. package/dist/iife/components/product-list/CategoryFilter.vue.d.ts +3 -4
  20. package/dist/iife/components/product-list/CategoryFilterItem.vue.d.ts +2 -3
  21. package/dist/iife/components/search-results/SearchResultsBreadcrumbs.vue.d.ts +4 -1
  22. package/dist/iife/components/search-results/products/product-card/SearchResultsProductCard.vue.d.ts +1 -2
  23. package/dist/iife/components/search-results/products/product-card/elements/SearchResultsProductTitle.vue.d.ts +1 -1
  24. package/dist/iife/index.d.ts +2 -2
  25. package/dist/iife/index.min.js +1 -1
  26. package/dist/iife/types/product-list/ProductListOptions.d.ts +1 -1
  27. package/dist/iife/utils/routing.utils.d.ts +1 -0
  28. package/package.json +1 -1
@@ -24,5 +24,5 @@ export declare type CategoryFilterOptions = {
24
24
  };
25
25
  export declare type ProductListOptions = SearchResultsOptions & {
26
26
  initialFilters?: FilterGroup;
27
- categories?: CategoryFilterOptions;
27
+ categories: CategoryFilterOptions;
28
28
  };
@@ -1 +1,2 @@
1
1
  export declare const emitRoutingEvent: (url: string) => void;
2
+ export declare const handleRoutingEvent: (link: string, event?: Event | undefined, hasEventRouting?: boolean) => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getlupa/client",
3
- "version": "0.5.1-alpha-3",
3
+ "version": "0.5.1-alpha-6",
4
4
  "main": "dist/cjs/index.min.js",
5
5
  "module": "dist/es/index.min.js",
6
6
  "types": "dist/es/index.d.ts",