@graphcommerce/magento-cart-payment-method 3.3.3 → 3.3.4

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
@@ -1,5 +1,17 @@
1
1
  # Change Log
2
2
 
3
+ ## 3.3.4
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1529](https://github.com/graphcommerce-org/graphcommerce/pull/1529) [`d5e012462`](https://github.com/graphcommerce-org/graphcommerce/commit/d5e012462dda18a61aa20eca8dc57e26cc4c7931) Thanks [@paales](https://github.com/paales)! - When a payment method had multiple childs it would select all children at once.
8
+
9
+ - Updated dependencies [[`11bca2d2f`](https://github.com/graphcommerce-org/graphcommerce/commit/11bca2d2f7dbb7c5e2827c04eb0db43d4099f2fd)]:
10
+ - @graphcommerce/next-ui@4.11.1
11
+ - @graphcommerce/framer-scroller@2.1.19
12
+ - @graphcommerce/magento-cart@4.4.7
13
+ - @graphcommerce/magento-store@4.2.13
14
+
3
15
  ## 3.3.3
4
16
 
5
17
  ### Patch Changes
@@ -111,10 +111,10 @@ export function PaymentMethodActionCardListForm(props: PaymentMethodActionCardLi
111
111
  <ActionCardListForm<PaymentOptionsProps & ActionCardItemBase>
112
112
  control={control}
113
113
  name='paymentMethod'
114
- errorMessage='Please select a shipping address'
114
+ errorMessage='Please select a payment method'
115
115
  items={methods.map((method) => ({
116
116
  ...method,
117
- value: method.code,
117
+ value: `${method.code}___${method.child}`,
118
118
  step,
119
119
  Container: FormDiv,
120
120
  }))}
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@graphcommerce/magento-cart-payment-method",
3
3
  "homepage": "https://www.graphcommerce.org/",
4
4
  "repository": "github:graphcommerce-org/graphcommerce",
5
- "version": "3.3.3",
5
+ "version": "3.3.4",
6
6
  "sideEffects": false,
7
7
  "prettier": "@graphcommerce/prettier-config-pwa",
8
8
  "eslintConfig": {
@@ -15,17 +15,17 @@
15
15
  "@graphcommerce/eslint-config-pwa": "^4.1.8",
16
16
  "@graphcommerce/prettier-config-pwa": "^4.0.6",
17
17
  "@graphcommerce/typescript-config-pwa": "^4.0.3",
18
- "@graphcommerce/magento-cart-shipping-address": "3.2.2",
18
+ "@graphcommerce/magento-cart-shipping-address": "3.2.3",
19
19
  "@playwright/test": "^1.21.1",
20
20
  "type-fest": "^2.12.2"
21
21
  },
22
22
  "dependencies": {
23
- "@graphcommerce/framer-scroller": "2.1.18",
23
+ "@graphcommerce/framer-scroller": "2.1.19",
24
24
  "@graphcommerce/graphql": "3.3.0",
25
25
  "@graphcommerce/image": "3.1.7",
26
- "@graphcommerce/magento-cart": "4.4.6",
27
- "@graphcommerce/magento-store": "4.2.12",
28
- "@graphcommerce/next-ui": "4.11.0",
26
+ "@graphcommerce/magento-cart": "4.4.7",
27
+ "@graphcommerce/magento-store": "4.2.13",
28
+ "@graphcommerce/next-ui": "4.11.1",
29
29
  "@graphcommerce/react-hook-form": "3.2.2"
30
30
  },
31
31
  "peerDependencies": {