@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.4...HEAD
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vtex/faststore-plugin-buyer-portal",
3
- "version": "1.3.4",
3
+ "version": "1.3.5",
4
4
  "description": "A plugin for faststore with buyer portal",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -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(remaining)} used
25
+ of {formatCurrency(total)} used
26
26
  </span>
27
27
  </span>
28
28
  <BudgetProgressBar
@@ -13,4 +13,4 @@ export const LOCAL_STORAGE_LOCATION_EDIT_KEY = "bp_hide_edit_location_confirm";
13
13
  export const LOCAL_STORAGE_RECIPIENT_EDIT_KEY =
14
14
  "bp_hide_edit_recipient_confirm";
15
15
 
16
- export const CURRENT_VERSION = "1.3.4";
16
+ export const CURRENT_VERSION = "1.3.5";