@haus-storefront-react/shared-types 1.0.0-next.9 → 1.0.4-next.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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,63 @@
1
+ ## 1.0.0-next.15 (2026-02-17)
2
+
3
+ ### 🚀 Features
4
+
5
+ - Add onSdkReady callback to VendurePluginConfig
6
+ - enhance form handling and component props across various modules
7
+ - add discount management components and hooks
8
+ - add ProductBadge component for enhanced product presentation
9
+ - add filters component for product listing
10
+ - add ProductListPrice component to handle pricing details
11
+
12
+ ## 1.0.0-next.14 (2026-02-13)
13
+
14
+ ### 🚀 Features
15
+
16
+ - Add onSdkReady callback to VendurePluginConfig
17
+ - enhance form handling and component props across various modules
18
+ - add discount management components and hooks
19
+ - add ProductBadge component for enhanced product presentation
20
+ - add filters component for product listing
21
+ - add ProductListPrice component to handle pricing details
22
+
23
+ ## 1.0.0-next.13 (2026-02-12)
24
+
25
+ ### 🚀 Features
26
+
27
+ - enhance form handling and component props across various modules
28
+ - add discount management components and hooks
29
+ - add ProductBadge component for enhanced product presentation
30
+ - add filters component for product listing
31
+ - add ProductListPrice component to handle pricing details
32
+
33
+ ## 1.0.0-next.12 (2026-02-12)
34
+
35
+ ### 🚀 Features
36
+
37
+ - enhance form handling and component props across various modules
38
+ - add discount management components and hooks
39
+ - add ProductBadge component for enhanced product presentation
40
+ - add filters component for product listing
41
+ - add ProductListPrice component to handle pricing details
42
+
43
+ ## 1.0.0-next.11 (2026-02-09)
44
+
45
+ ### 🚀 Features
46
+
47
+ - enhance form handling and component props across various modules
48
+ - add discount management components and hooks
49
+ - add ProductBadge component for enhanced product presentation
50
+ - add filters component for product listing
51
+ - add ProductListPrice component to handle pricing details
52
+
53
+ ## 1.0.0-next.10 (2026-02-05)
54
+
55
+ This was a version bump only for shared/types to align it with other projects, there were no code changes.
56
+
57
+ ## 1.0.0-next.9 (2026-02-05)
58
+
59
+ This was a version bump only for shared/types to align it with other projects, there were no code changes.
60
+
1
61
  ## 1.0.0-next.8 (2026-02-05)
2
62
 
3
63
  This was a version bump only for shared/types to align it with other projects, there were no code changes.
package/index.d.ts CHANGED
@@ -58,6 +58,7 @@ export interface IVendurePluginConfig<Features extends PluginFeatures, R, S, T>
58
58
  requests?: R;
59
59
  providers?: ProviderDataMap;
60
60
  settings?: S;
61
+ onSdkReady?: (sdk: T) => void | Promise<void>;
61
62
  setSdk: (sdk: T) => void;
62
63
  setProviders: (providers: ProviderDataMap) => void;
63
64
  setEnabled: (enabled: boolean) => void;
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "restricted"
5
5
  },
6
- "version": "1.0.0-next.9",
6
+ "version": "1.0.4-next.0",
7
7
  "main": "./index.js",
8
8
  "types": "./index.d.ts",
9
9
  "exports": {