@haus-storefront-react/shared-types 1.0.0-next.13 → 1.0.0-next.15

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,24 @@
1
+ ## 1.0.0-next.14 (2026-02-13)
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.13 (2026-02-12)
13
+
14
+ ### 🚀 Features
15
+
16
+ - enhance form handling and component props across various modules
17
+ - add discount management components and hooks
18
+ - add ProductBadge component for enhanced product presentation
19
+ - add filters component for product listing
20
+ - add ProductListPrice component to handle pricing details
21
+
1
22
  ## 1.0.0-next.12 (2026-02-12)
2
23
 
3
24
  ### 🚀 Features
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.13",
6
+ "version": "1.0.0-next.15",
7
7
  "main": "./index.js",
8
8
  "types": "./index.d.ts",
9
9
  "exports": {