@vtex/faststore-plugin-buyer-portal 1.3.4 → 1.3.5
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
|
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [1.3.5] - 2025-10-17
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- Budget Screen showing `remaining` ammount when it should have been showing `total`
|
|
15
|
+
|
|
10
16
|
## [1.3.4] - 2025-10-16
|
|
11
17
|
|
|
12
18
|
- Error boundary:
|
|
@@ -120,12 +126,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
120
126
|
- Add CHANGELOG file
|
|
121
127
|
- Add README file
|
|
122
128
|
|
|
123
|
-
[unreleased]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/1.3.
|
|
129
|
+
[unreleased]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/1.3.5...HEAD
|
|
124
130
|
[1.2.3]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v1.2.2...1.2.3
|
|
125
131
|
[1.2.3]: https://github.com/vtex/faststore-plugin-buyer-portal/releases/tag/1.2.3
|
|
126
132
|
[1.2.4]: https://github.com/vtex/faststore-plugin-buyer-portal/releases/tag/1.2.4
|
|
127
133
|
[1.3.2]: https://github.com/vtex/faststore-plugin-buyer-portal/releases/tag/1.3.2
|
|
128
|
-
|
|
129
134
|
[1.3.3]: https://github.com/vtex/faststore-plugin-buyer-portal/releases/tag/1.3.3
|
|
130
|
-
|
|
131
135
|
[1.3.4]: https://github.com/vtex/faststore-plugin-buyer-portal/releases/tag/1.3.4
|
|
136
|
+
|
|
137
|
+
[1.3.5]: https://github.com/vtex/faststore-plugin-buyer-portal/releases/tag/1.3.5
|
package/package.json
CHANGED
|
@@ -22,7 +22,7 @@ export const BudgetRemainingBalance = ({
|
|
|
22
22
|
<span data-fs-bp-budget-remaining-balance-label-used>
|
|
23
23
|
{formatCurrency(Math.abs(used))}{" "}
|
|
24
24
|
<span data-fs-bp-budget-remaining-balance-label-used-total>
|
|
25
|
-
of {formatCurrency(
|
|
25
|
+
of {formatCurrency(total)} used
|
|
26
26
|
</span>
|
|
27
27
|
</span>
|
|
28
28
|
<BudgetProgressBar
|