@graphcommerce/magento-payment-included 9.0.4-canary.9 → 9.0.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 +7 -13
- package/PurchaseOrder/index.tsx +1 -1
- package/index.ts +1 -1
- package/methods.tsx +1 -1
- package/package.json +15 -15
- package/plugins/AddIncludedMethods.tsx +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,24 +1,18 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
## 9.0.4
|
|
3
|
+
## 9.0.4
|
|
4
4
|
|
|
5
|
-
## 9.0.
|
|
5
|
+
## 9.0.3
|
|
6
6
|
|
|
7
|
-
## 9.0.
|
|
7
|
+
## 9.0.3-canary.0
|
|
8
8
|
|
|
9
|
-
## 9.0.
|
|
9
|
+
## 9.0.2
|
|
10
10
|
|
|
11
|
-
## 9.0.
|
|
11
|
+
## 9.0.2-canary.0
|
|
12
12
|
|
|
13
|
-
## 9.0.
|
|
13
|
+
## 9.0.1
|
|
14
14
|
|
|
15
|
-
## 9.0.
|
|
16
|
-
|
|
17
|
-
## 9.0.4-canary.2
|
|
18
|
-
|
|
19
|
-
## 9.0.4-canary.1
|
|
20
|
-
|
|
21
|
-
## 9.0.4-canary.0
|
|
15
|
+
## 9.0.1-canary.1
|
|
22
16
|
|
|
23
17
|
## 9.0.0
|
|
24
18
|
|
package/PurchaseOrder/index.tsx
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { PaymentModule } from '@graphcommerce/magento-cart-payment-method'
|
|
2
2
|
import { PaymentMethodPlaceOrderNoop } from '@graphcommerce/magento-cart-payment-method'
|
|
3
|
-
import { ActionCard,
|
|
3
|
+
import { ActionCard, IconSvg, iconCreditCard } from '@graphcommerce/next-ui'
|
|
4
4
|
import { PurchaseOrderOptions } from './PurchaseOrderOptions'
|
|
5
5
|
|
|
6
6
|
export const purchaseorder: PaymentModule = {
|
package/index.ts
CHANGED
package/methods.tsx
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { PaymentModule } from '@graphcommerce/magento-cart-payment-method/Api/PaymentMethod'
|
|
2
2
|
import { PaymentMethodOptionsNoop } from '@graphcommerce/magento-cart-payment-method/PaymentMethodOptionsNoop/PaymentMethodOptionsNoop'
|
|
3
3
|
import { PaymentMethodPlaceOrderNoop } from '@graphcommerce/magento-cart-payment-method/PaymentMethodPlaceOrderNoop/PaymentMethodPlaceOrderNoop'
|
|
4
|
-
import { ActionCard,
|
|
4
|
+
import { ActionCard, IconSvg, iconCreditCard } from '@graphcommerce/next-ui'
|
|
5
5
|
|
|
6
6
|
export const checkmo: PaymentModule = {
|
|
7
7
|
PaymentOptions: PaymentMethodOptionsNoop,
|
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": "9.0.4
|
|
5
|
+
"version": "9.0.4",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"prettier": "@graphcommerce/prettier-config-pwa",
|
|
8
8
|
"eslintConfig": {
|
|
@@ -12,20 +12,20 @@
|
|
|
12
12
|
}
|
|
13
13
|
},
|
|
14
14
|
"peerDependencies": {
|
|
15
|
-
"@graphcommerce/ecommerce-ui": "^9.0.4
|
|
16
|
-
"@graphcommerce/eslint-config-pwa": "^9.0.4
|
|
17
|
-
"@graphcommerce/graphql": "^9.0.4
|
|
18
|
-
"@graphcommerce/image": "^9.0.4
|
|
19
|
-
"@graphcommerce/magento-cart": "^9.0.4
|
|
20
|
-
"@graphcommerce/magento-cart-payment-method": "^9.0.4
|
|
21
|
-
"@graphcommerce/magento-cart-shipping-address": "^9.0.4
|
|
22
|
-
"@graphcommerce/magento-product": "^9.0.4
|
|
23
|
-
"@graphcommerce/magento-product-configurable": "^9.0.4
|
|
24
|
-
"@graphcommerce/magento-store": "^9.0.4
|
|
25
|
-
"@graphcommerce/next-ui": "^9.0.4
|
|
26
|
-
"@graphcommerce/prettier-config-pwa": "^9.0.4
|
|
27
|
-
"@graphcommerce/react-hook-form": "^9.0.4
|
|
28
|
-
"@graphcommerce/typescript-config-pwa": "^9.0.4
|
|
15
|
+
"@graphcommerce/ecommerce-ui": "^9.0.4",
|
|
16
|
+
"@graphcommerce/eslint-config-pwa": "^9.0.4",
|
|
17
|
+
"@graphcommerce/graphql": "^9.0.4",
|
|
18
|
+
"@graphcommerce/image": "^9.0.4",
|
|
19
|
+
"@graphcommerce/magento-cart": "^9.0.4",
|
|
20
|
+
"@graphcommerce/magento-cart-payment-method": "^9.0.4",
|
|
21
|
+
"@graphcommerce/magento-cart-shipping-address": "^9.0.4",
|
|
22
|
+
"@graphcommerce/magento-product": "^9.0.4",
|
|
23
|
+
"@graphcommerce/magento-product-configurable": "^9.0.4",
|
|
24
|
+
"@graphcommerce/magento-store": "^9.0.4",
|
|
25
|
+
"@graphcommerce/next-ui": "^9.0.4",
|
|
26
|
+
"@graphcommerce/prettier-config-pwa": "^9.0.4",
|
|
27
|
+
"@graphcommerce/react-hook-form": "^9.0.4",
|
|
28
|
+
"@graphcommerce/typescript-config-pwa": "^9.0.4",
|
|
29
29
|
"@lingui/core": "^4.2.1",
|
|
30
30
|
"@lingui/macro": "^4.2.1",
|
|
31
31
|
"@lingui/react": "^4.2.1",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { PaymentMethodContextProviderProps } from '@graphcommerce/magento-cart-payment-method'
|
|
2
2
|
import type { PluginConfig, PluginProps } from '@graphcommerce/next-config'
|
|
3
|
-
import { banktransfer, cashondelivery, checkmo, free } from '../methods'
|
|
4
3
|
import { purchaseorder } from '../PurchaseOrder'
|
|
4
|
+
import { banktransfer, cashondelivery, checkmo, free } from '../methods'
|
|
5
5
|
|
|
6
6
|
export const config: PluginConfig = {
|
|
7
7
|
type: 'component',
|