@haus-storefront-react/shared-types 0.0.32-6 → 0.0.32-8

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/CHANGELOG.md CHANGED
@@ -1,3 +1,39 @@
1
+ ## 0.0.32-7 (2025-09-17)
2
+
3
+ ### 🚀 Features
4
+
5
+ - add collection and collections functionality to SDK ([79c1d54](https://github.com/WeAreHausTech/haus-storefront-components/commit/79c1d54))
6
+ - enhance SDK context and add active plugin configuration support ([bc7e8ac](https://github.com/WeAreHausTech/haus-storefront-components/commit/bc7e8ac))
7
+ - add Vendure Elastic Search Plugin integration ([6aaa641](https://github.com/WeAreHausTech/haus-storefront-components/commit/6aaa641))
8
+ - enhance form handling and component props across various modules ([21edaa1](https://github.com/WeAreHausTech/haus-storefront-components/commit/21edaa1))
9
+ - add discount management components and hooks ([#33](https://github.com/WeAreHausTech/haus-storefront-components/pull/33))
10
+ - add ProductBadge component for enhanced product presentation ([#26](https://github.com/WeAreHausTech/haus-storefront-components/pull/26))
11
+ - add filters component for product listing ([d780517](https://github.com/WeAreHausTech/haus-storefront-components/commit/d780517))
12
+ - add ProductListPrice component to handle pricing details ([4f53f48](https://github.com/WeAreHausTech/haus-storefront-components/commit/4f53f48))
13
+
14
+ ### ❤️ Thank You
15
+
16
+ - Johanna Bertils @johannabertils
17
+ - Mathias Saxenstrand
18
+
19
+ ## 0.0.32-6 (2025-09-17)
20
+
21
+ ### 🚀 Features
22
+
23
+ - add collection and collections functionality to SDK ([79c1d54](https://github.com/WeAreHausTech/haus-storefront-components/commit/79c1d54))
24
+ - enhance SDK context and add active plugin configuration support ([bc7e8ac](https://github.com/WeAreHausTech/haus-storefront-components/commit/bc7e8ac))
25
+ - add Vendure Elastic Search Plugin integration ([6aaa641](https://github.com/WeAreHausTech/haus-storefront-components/commit/6aaa641))
26
+ - enhance form handling and component props across various modules ([21edaa1](https://github.com/WeAreHausTech/haus-storefront-components/commit/21edaa1))
27
+ - add discount management components and hooks ([#33](https://github.com/WeAreHausTech/haus-storefront-components/pull/33))
28
+ - add ProductBadge component for enhanced product presentation ([#26](https://github.com/WeAreHausTech/haus-storefront-components/pull/26))
29
+ - add filters component for product listing ([d780517](https://github.com/WeAreHausTech/haus-storefront-components/commit/d780517))
30
+ - add ProductListPrice component to handle pricing details ([4f53f48](https://github.com/WeAreHausTech/haus-storefront-components/commit/4f53f48))
31
+
32
+ ### ❤️ Thank You
33
+
34
+ - Johanna Bertils @johannabertils
35
+ - Mathias Saxenstrand
36
+
1
37
  ## 0.0.32-5 (2025-09-17)
2
38
 
3
39
  ### 🚀 Features
package/index.d.ts CHANGED
@@ -84,6 +84,7 @@ export type PriceFilterType = {
84
84
  export type EnabledFilter<T = FacetValueFilterType | PriceFilterType> = T & {
85
85
  label?: string;
86
86
  };
87
+ export type ActiveFilters = Record<string, (string | undefined)[]>;
87
88
  export type FacetValueFilterInput = {
88
89
  and?: Maybe<string>;
89
90
  or?: Maybe<Array<string>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@haus-storefront-react/shared-types",
3
- "version": "0.0.32-6",
3
+ "version": "0.0.32-8",
4
4
  "main": "./index.js",
5
5
  "types": "./index.d.ts",
6
6
  "exports": {