@dropins/storefront-account 3.3.0-beta.0 → 3.3.0

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 (2) hide show
  1. package/CHANGELOG.md +9 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # @dropins/storefront-account
2
2
 
3
+ ## 3.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 573f3e7: Add fieldIdPrefix prop support to the Addresses container
8
+ - 98d4563: Adds stored payment methods to My Account: customers can see saved cards (and similar methods), remove a stored method, and optionally filter by payment method code. Data comes from GraphQL (getCustomerPaymentTokens, deletePaymentToken) or from the event bus when tokens are already on the client. The UI reuses and extends PaymentCard, introduces PaymentMethods / PaymentMethodsWrapper, and includes Storybook, html-host, and unit test coverage across API, transforms, hooks, fixtures, and containers.
9
+ - 3cbdd4f: Adds a confirmation step before removing a stored payment method in My Account: choosing Remove opens a PaymentModal with copy and a preview of the card; Cancel closes without deleting, and Remove confirms and runs the existing delete flow (deletePaymentToken via removeToken). Introduces PaymentModal (component, styles, Storybook, and tests), wires PaymentMethodsWrapper to pending-removal state, extends payment card modal props and English strings, and adds unit tests for the modal and delete confirmation behavior.
10
+ - 01c919b: Add a new component for a Payment Card
11
+
3
12
  ## 3.3.0-beta.0
4
13
 
5
14
  ### Minor Changes
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@dropins/storefront-account",
3
- "version": "3.3.0-beta.0",
3
+ "version": "3.3.0",
4
4
  "license": "SEE LICENSE IN LICENSE.md"
5
5
  }