@propeller-commerce/propeller-v2-vue-ui 0.3.28 → 0.3.29

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 (32) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/dist/ProductVideos.vue_vue_type_script_setup_true_lang-BSXOpWBD.js.map +1 -1
  3. package/dist/ProductVideos.vue_vue_type_script_setup_true_lang-cfRT3L_k.cjs.map +1 -1
  4. package/dist/components/ActionCode.vue.d.ts +2 -2
  5. package/dist/components/AddToCart.vue.d.ts +4 -4
  6. package/dist/components/AddToFavorite.vue.d.ts +4 -4
  7. package/dist/components/AddressSelector.vue.d.ts +2 -2
  8. package/dist/components/CartItem.vue.d.ts +2 -2
  9. package/dist/components/CartOverview.vue.d.ts +2 -2
  10. package/dist/components/CartPaymethods.vue.d.ts +2 -2
  11. package/dist/components/CategoryDescription.vue.d.ts +2 -1
  12. package/dist/components/CategoryShortDescription.vue.d.ts +2 -1
  13. package/dist/components/ClusterInfo.vue.d.ts +2 -2
  14. package/dist/components/FavoriteListDetails.vue.d.ts +4 -4
  15. package/dist/components/FavoriteLists.vue.d.ts +4 -4
  16. package/dist/components/ForgotPassword.vue.d.ts +2 -2
  17. package/dist/components/GridTitle.vue.d.ts +2 -1
  18. package/dist/components/Menu.vue.d.ts +4 -2
  19. package/dist/components/OrderActions.vue.d.ts +4 -4
  20. package/dist/components/OrderList.vue.d.ts +4 -4
  21. package/dist/components/ProductBundles.vue.d.ts +4 -4
  22. package/dist/components/ProductCard.vue.d.ts +4 -4
  23. package/dist/components/ProductDownloads.vue.d.ts +2 -1
  24. package/dist/components/ProductInfo.vue.d.ts +3 -3
  25. package/dist/components/ProductVideos.vue.d.ts +2 -1
  26. package/dist/components/PurchaseAuthorizationConfigurator.vue.d.ts +6 -6
  27. package/dist/components/PurchaseAuthorizationRequests.vue.d.ts +6 -6
  28. package/dist/components/RegisterForm.vue.d.ts +2 -2
  29. package/dist/components/SearchBar.vue.d.ts +2 -2
  30. package/dist/index.cjs.map +1 -1
  31. package/dist/index.js.map +1 -1
  32. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -8,6 +8,26 @@ once it reaches 1.0. Until then (the `0.x` line) the public API may change
8
8
  between minor versions; breaking changes are called out below and in
9
9
  [MIGRATION.md](./MIGRATION.md).
10
10
 
11
+ ## [0.3.29] - 2026-07-15
12
+
13
+ ### Fixed
14
+
15
+ - Infrastructure props resolved from `<PropellerProvider>` (`graphqlClient`,
16
+ `user`, `language`, `companyId`) are now typed **optional** on every
17
+ component that injects them via `useInfraProps` — `ActionCode`, `AddToCart`,
18
+ `AddToFavorite`, `AddressSelector`, `CartItem`, `CartOverview`,
19
+ `CartPaymethods`, `CategoryDescription`, `CategoryShortDescription`,
20
+ `ClusterInfo`, `FavoriteListDetails`, `FavoriteLists`, `ForgotPassword`,
21
+ `GridTitle`, `Menu`, `OrderActions`, `OrderList`, `ProductBundles`,
22
+ `ProductCard`, `ProductDownloads`, `ProductInfo`, `ProductVideos`,
23
+ `PurchaseAuthorizationConfigurator`, `PurchaseAuthorizationRequests`,
24
+ `RegisterForm`, `SearchBar`. Previously they were declared `required`, so
25
+ consumers that rely on provider injection (the intended pattern) hit
26
+ spurious `vue-tsc` "Property 'graphqlClient'/'user' is missing" errors at
27
+ every call site. Brings the Vue package in line with the React package,
28
+ which already types these as optional ("Resolved from PropellerProvider when
29
+ omitted"). No runtime change — resolution already happened at runtime.
30
+
11
31
  ## [0.3.28] - 2026-07-10
12
32
 
13
33
  ### Fixed