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

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 (34) hide show
  1. package/CHANGELOG.md +29 -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 +1 -1
  31. package/dist/index.cjs.map +1 -1
  32. package/dist/index.js +1 -1
  33. package/dist/index.js.map +1 -1
  34. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -8,6 +8,35 @@ 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.30] - 2026-07-16
12
+
13
+ ### Fixed
14
+
15
+ - `CartSummary`: the panel title now resolves through the `labels` map
16
+ (`labels.title`) instead of only the `title` prop, so the "Order summary"
17
+ heading is translatable like every other label. Falls back to `props.title`,
18
+ then `labels.title`, then `'Order summary'`.
19
+
20
+ ## [0.3.29] - 2026-07-15
21
+
22
+ ### Fixed
23
+
24
+ - Infrastructure props resolved from `<PropellerProvider>` (`graphqlClient`,
25
+ `user`, `language`, `companyId`) are now typed **optional** on every
26
+ component that injects them via `useInfraProps` — `ActionCode`, `AddToCart`,
27
+ `AddToFavorite`, `AddressSelector`, `CartItem`, `CartOverview`,
28
+ `CartPaymethods`, `CategoryDescription`, `CategoryShortDescription`,
29
+ `ClusterInfo`, `FavoriteListDetails`, `FavoriteLists`, `ForgotPassword`,
30
+ `GridTitle`, `Menu`, `OrderActions`, `OrderList`, `ProductBundles`,
31
+ `ProductCard`, `ProductDownloads`, `ProductInfo`, `ProductVideos`,
32
+ `PurchaseAuthorizationConfigurator`, `PurchaseAuthorizationRequests`,
33
+ `RegisterForm`, `SearchBar`. Previously they were declared `required`, so
34
+ consumers that rely on provider injection (the intended pattern) hit
35
+ spurious `vue-tsc` "Property 'graphqlClient'/'user' is missing" errors at
36
+ every call site. Brings the Vue package in line with the React package,
37
+ which already types these as optional ("Resolved from PropellerProvider when
38
+ omitted"). No runtime change — resolution already happened at runtime.
39
+
11
40
  ## [0.3.28] - 2026-07-10
12
41
 
13
42
  ### Fixed