@graphcommerce/magento-payment-included 3.2.3 → 3.2.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.2.4
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1688](https://github.com/graphcommerce-org/graphcommerce/pull/1688) [`8393cb266`](https://github.com/graphcommerce-org/graphcommerce/commit/8393cb2662860be0c2aa5df432447bb73c427d8e) Thanks [@paales](https://github.com/paales)! - Add missing icons for payment methods
8
+
9
+ - Updated dependencies [[`8393cb266`](https://github.com/graphcommerce-org/graphcommerce/commit/8393cb2662860be0c2aa5df432447bb73c427d8e), [`f544401c7`](https://github.com/graphcommerce-org/graphcommerce/commit/f544401c7b653fda39c7c260ad0dcfb3bf543b65), [`f105d4223`](https://github.com/graphcommerce-org/graphcommerce/commit/f105d4223aa68df30970149e51ae72897e489bf9)]:
10
+ - @graphcommerce/next-ui@4.29.3
11
+ - @graphcommerce/magento-cart-payment-method@3.6.8
12
+ - @graphcommerce/magento-cart@4.9.4
13
+ - @graphcommerce/magento-store@4.3.6
14
+
3
15
  ## 3.2.3
4
16
 
5
17
  ### Patch Changes
@@ -2,9 +2,11 @@ import {
2
2
  PaymentModule,
3
3
  PaymentMethodPlaceOrderNoop,
4
4
  } from '@graphcommerce/magento-cart-payment-method'
5
+ import { ActionCard, IconSvg, iconCreditCard } from '@graphcommerce/next-ui'
5
6
  import { PurchaseOrderOptions } from './PurchaseOrderOptions'
6
7
 
7
8
  export const purchaseorder: PaymentModule = {
8
9
  PaymentOptions: PurchaseOrderOptions,
9
10
  PaymentPlaceOrder: PaymentMethodPlaceOrderNoop,
11
+ PaymentActionCard: (props) => <ActionCard {...props} image={<IconSvg src={iconCreditCard} />} />,
10
12
  }
package/methods.tsx CHANGED
@@ -3,23 +3,28 @@ import {
3
3
  PaymentMethodPlaceOrderNoop,
4
4
  PaymentModule,
5
5
  } from '@graphcommerce/magento-cart-payment-method'
6
+ import { ActionCard, IconSvg, iconCreditCard } from '@graphcommerce/next-ui'
6
7
 
7
8
  export const checkmo: PaymentModule = {
8
9
  PaymentOptions: PaymentMethodOptionsNoop,
9
10
  PaymentPlaceOrder: PaymentMethodPlaceOrderNoop,
11
+ PaymentActionCard: (props) => <ActionCard {...props} image={<IconSvg src={iconCreditCard} />} />,
10
12
  }
11
13
 
12
14
  export const banktransfer: PaymentModule = {
13
15
  PaymentOptions: PaymentMethodOptionsNoop,
14
16
  PaymentPlaceOrder: PaymentMethodPlaceOrderNoop,
17
+ PaymentActionCard: (props) => <ActionCard {...props} image={<IconSvg src={iconCreditCard} />} />,
15
18
  }
16
19
 
17
20
  export const free: PaymentModule = {
18
21
  PaymentOptions: PaymentMethodOptionsNoop,
19
22
  PaymentPlaceOrder: PaymentMethodPlaceOrderNoop,
23
+ PaymentActionCard: (props) => <ActionCard {...props} image={<IconSvg src={iconCreditCard} />} />,
20
24
  }
21
25
 
22
26
  export const cashondelivery: PaymentModule = {
23
27
  PaymentOptions: PaymentMethodOptionsNoop,
24
28
  PaymentPlaceOrder: PaymentMethodPlaceOrderNoop,
29
+ PaymentActionCard: (props) => <ActionCard {...props} image={<IconSvg src={iconCreditCard} />} />,
25
30
  }
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@graphcommerce/magento-payment-included",
3
3
  "homepage": "https://www.graphcommerce.org/",
4
4
  "repository": "github:graphcommerce-org/graphcommerce",
5
- "version": "3.2.3",
5
+ "version": "3.2.4",
6
6
  "sideEffects": false,
7
7
  "prettier": "@graphcommerce/prettier-config-pwa",
8
8
  "eslintConfig": {
@@ -13,9 +13,9 @@
13
13
  },
14
14
  "devDependencies": {
15
15
  "@graphcommerce/eslint-config-pwa": "^4.1.10",
16
- "@graphcommerce/magento-cart-shipping-address": "3.5.7",
17
- "@graphcommerce/magento-product": "4.8.2",
18
- "@graphcommerce/magento-product-configurable": "4.3.8",
16
+ "@graphcommerce/magento-cart-shipping-address": "3.5.8",
17
+ "@graphcommerce/magento-product": "4.8.3",
18
+ "@graphcommerce/magento-product-configurable": "4.3.9",
19
19
  "@graphcommerce/prettier-config-pwa": "^4.0.6",
20
20
  "@graphcommerce/typescript-config-pwa": "^4.0.4",
21
21
  "@playwright/test": "^1.21.1",
@@ -24,10 +24,10 @@
24
24
  "dependencies": {
25
25
  "@graphcommerce/graphql": "3.5.0",
26
26
  "@graphcommerce/image": "3.1.10",
27
- "@graphcommerce/magento-cart": "4.9.3",
28
- "@graphcommerce/magento-cart-payment-method": "3.6.7",
29
- "@graphcommerce/magento-store": "4.3.5",
30
- "@graphcommerce/next-ui": "4.29.2",
27
+ "@graphcommerce/magento-cart": "4.9.4",
28
+ "@graphcommerce/magento-cart-payment-method": "3.6.8",
29
+ "@graphcommerce/magento-store": "4.3.6",
30
+ "@graphcommerce/next-ui": "4.29.3",
31
31
  "@graphcommerce/react-hook-form": "3.3.5"
32
32
  },
33
33
  "peerDependencies": {