@graphcommerce/magento-payment-included 3.2.3 → 3.2.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 +20 -0
- package/PurchaseOrder/{index.ts → index.tsx} +2 -0
- package/methods.tsx +5 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 3.2.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`a7fbe58d4`](https://github.com/graphcommerce-org/graphcommerce/commit/a7fbe58d4bbb43c59fa2ead05935757d2013404c), [`a26a2d05e`](https://github.com/graphcommerce-org/graphcommerce/commit/a26a2d05eecabeeef70e4d69105343197ae092b7), [`edbecfbfd`](https://github.com/graphcommerce-org/graphcommerce/commit/edbecfbfd532a6c78ae75ffe850c4bcf898e855d)]:
|
|
8
|
+
- @graphcommerce/magento-cart-payment-method@3.6.9
|
|
9
|
+
- @graphcommerce/magento-cart@4.9.5
|
|
10
|
+
|
|
11
|
+
## 3.2.4
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- [#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
|
|
16
|
+
|
|
17
|
+
- 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)]:
|
|
18
|
+
- @graphcommerce/next-ui@4.29.3
|
|
19
|
+
- @graphcommerce/magento-cart-payment-method@3.6.8
|
|
20
|
+
- @graphcommerce/magento-cart@4.9.4
|
|
21
|
+
- @graphcommerce/magento-store@4.3.6
|
|
22
|
+
|
|
3
23
|
## 3.2.3
|
|
4
24
|
|
|
5
25
|
### 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.
|
|
5
|
+
"version": "3.2.5",
|
|
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.
|
|
17
|
-
"@graphcommerce/magento-product": "4.8.
|
|
18
|
-
"@graphcommerce/magento-product-configurable": "4.3.
|
|
16
|
+
"@graphcommerce/magento-cart-shipping-address": "3.5.9",
|
|
17
|
+
"@graphcommerce/magento-product": "4.8.4",
|
|
18
|
+
"@graphcommerce/magento-product-configurable": "4.3.10",
|
|
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.
|
|
28
|
-
"@graphcommerce/magento-cart-payment-method": "3.6.
|
|
29
|
-
"@graphcommerce/magento-store": "4.3.
|
|
30
|
-
"@graphcommerce/next-ui": "4.29.
|
|
27
|
+
"@graphcommerce/magento-cart": "4.9.5",
|
|
28
|
+
"@graphcommerce/magento-cart-payment-method": "3.6.9",
|
|
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": {
|