@propeller-commerce/propeller-v2-vue-ui 0.3.29 → 0.3.31
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 +18 -0
- package/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,24 @@ 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.31] - 2026-07-16
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
|
|
15
|
+
- `ActionCode`: the panel title now resolves through the `labels` map
|
|
16
|
+
(`labels.title`) instead of only the `title` prop, so the "Action code"
|
|
17
|
+
heading is translatable like every other label. Falls back to `props.title`,
|
|
18
|
+
then `labels.title`, then `'Action code'`. Same fix as `CartSummary` in 0.3.30.
|
|
19
|
+
|
|
20
|
+
## [0.3.30] - 2026-07-16
|
|
21
|
+
|
|
22
|
+
### Fixed
|
|
23
|
+
|
|
24
|
+
- `CartSummary`: the panel title now resolves through the `labels` map
|
|
25
|
+
(`labels.title`) instead of only the `title` prop, so the "Order summary"
|
|
26
|
+
heading is translatable like every other label. Falls back to `props.title`,
|
|
27
|
+
then `labels.title`, then `'Order summary'`.
|
|
28
|
+
|
|
11
29
|
## [0.3.29] - 2026-07-15
|
|
12
30
|
|
|
13
31
|
### Fixed
|
package/dist/index.cjs
CHANGED
|
@@ -3774,7 +3774,7 @@ const _sfc_main$S = /* @__PURE__ */ vue.defineComponent({
|
|
|
3774
3774
|
isMounted.value = true;
|
|
3775
3775
|
});
|
|
3776
3776
|
const title = vue.computed(() => {
|
|
3777
|
-
return props.title || "Action code";
|
|
3777
|
+
return props.title || getLabel("title", "Action code");
|
|
3778
3778
|
});
|
|
3779
3779
|
const showRemoveCode = vue.computed(() => {
|
|
3780
3780
|
return props.showRemoveCode !== void 0 ? props.showRemoveCode : true;
|
|
@@ -7774,7 +7774,7 @@ const _sfc_main$G = /* @__PURE__ */ vue.defineComponent({
|
|
|
7774
7774
|
}
|
|
7775
7775
|
});
|
|
7776
7776
|
const title = vue.computed(() => {
|
|
7777
|
-
return props.title || "Order summary";
|
|
7777
|
+
return props.title || getLabel("title", "Order summary");
|
|
7778
7778
|
});
|
|
7779
7779
|
const showSubtotal = vue.computed(() => {
|
|
7780
7780
|
return props.showSubtotal !== void 0 ? props.showSubtotal : true;
|