@graphcommerce/magento-payment-braintree 9.0.0-canary.103 → 9.0.0-canary.105
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,9 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
+
## 9.0.0-canary.105
|
4
|
+
|
5
|
+
## 9.0.0-canary.104
|
6
|
+
|
3
7
|
## 9.0.0-canary.103
|
4
8
|
|
5
9
|
## 9.0.0-canary.80
|
@@ -617,7 +621,7 @@
|
|
617
621
|
All occurences of `<Trans>` and `t` need to be replaced:
|
618
622
|
|
619
623
|
```tsx
|
620
|
-
import {
|
624
|
+
import { t, Trans } from '@lingui/macro'
|
621
625
|
|
622
626
|
function MyComponent() {
|
623
627
|
const foo = 'bar'
|
@@ -632,8 +636,8 @@
|
|
632
636
|
Needs to be replaced with:
|
633
637
|
|
634
638
|
```tsx
|
635
|
-
import { Trans } from '@lingui/react'
|
636
639
|
import { i18n } from '@lingui/core'
|
640
|
+
import { Trans } from '@lingui/react'
|
637
641
|
|
638
642
|
function MyComponent() {
|
639
643
|
const foo = 'bar'
|
package/package.json
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
"name": "@graphcommerce/magento-payment-braintree",
|
3
3
|
"homepage": "https://www.graphcommerce.org/",
|
4
4
|
"repository": "github:graphcommerce-org/graphcommerce",
|
5
|
-
"version": "9.0.0-canary.
|
5
|
+
"version": "9.0.0-canary.105",
|
6
6
|
"sideEffects": false,
|
7
7
|
"prettier": "@graphcommerce/prettier-config-pwa",
|
8
8
|
"eslintConfig": {
|
@@ -18,19 +18,19 @@
|
|
18
18
|
"braintree-web": "^3.109.0"
|
19
19
|
},
|
20
20
|
"peerDependencies": {
|
21
|
-
"@graphcommerce/eslint-config-pwa": "^9.0.0-canary.
|
22
|
-
"@graphcommerce/graphql": "^9.0.0-canary.
|
23
|
-
"@graphcommerce/image": "^9.0.0-canary.
|
24
|
-
"@graphcommerce/magento-cart": "^9.0.0-canary.
|
25
|
-
"@graphcommerce/magento-cart-payment-method": "^9.0.0-canary.
|
26
|
-
"@graphcommerce/magento-cart-shipping-address": "^9.0.0-canary.
|
27
|
-
"@graphcommerce/magento-product": "^9.0.0-canary.
|
28
|
-
"@graphcommerce/magento-product-configurable": "^9.0.0-canary.
|
29
|
-
"@graphcommerce/magento-store": "^9.0.0-canary.
|
30
|
-
"@graphcommerce/next-ui": "^9.0.0-canary.
|
31
|
-
"@graphcommerce/prettier-config-pwa": "^9.0.0-canary.
|
32
|
-
"@graphcommerce/react-hook-form": "^9.0.0-canary.
|
33
|
-
"@graphcommerce/typescript-config-pwa": "^9.0.0-canary.
|
21
|
+
"@graphcommerce/eslint-config-pwa": "^9.0.0-canary.105",
|
22
|
+
"@graphcommerce/graphql": "^9.0.0-canary.105",
|
23
|
+
"@graphcommerce/image": "^9.0.0-canary.105",
|
24
|
+
"@graphcommerce/magento-cart": "^9.0.0-canary.105",
|
25
|
+
"@graphcommerce/magento-cart-payment-method": "^9.0.0-canary.105",
|
26
|
+
"@graphcommerce/magento-cart-shipping-address": "^9.0.0-canary.105",
|
27
|
+
"@graphcommerce/magento-product": "^9.0.0-canary.105",
|
28
|
+
"@graphcommerce/magento-product-configurable": "^9.0.0-canary.105",
|
29
|
+
"@graphcommerce/magento-store": "^9.0.0-canary.105",
|
30
|
+
"@graphcommerce/next-ui": "^9.0.0-canary.105",
|
31
|
+
"@graphcommerce/prettier-config-pwa": "^9.0.0-canary.105",
|
32
|
+
"@graphcommerce/react-hook-form": "^9.0.0-canary.105",
|
33
|
+
"@graphcommerce/typescript-config-pwa": "^9.0.0-canary.105",
|
34
34
|
"@lingui/core": "^4.2.1",
|
35
35
|
"@lingui/macro": "^4.2.1",
|
36
36
|
"@lingui/react": "^4.2.1",
|
@@ -1,10 +1,11 @@
|
|
1
1
|
/* eslint-disable import/no-extraneous-dependencies */
|
2
|
+
|
2
3
|
/* eslint-disable @typescript-eslint/no-non-null-assertion */
|
3
4
|
import { waitForGraphQlResponse } from '@graphcommerce/graphql/test/apolloClient.fixture'
|
4
5
|
import { PaymentMethodPlaceOrderNoopDocument } from '@graphcommerce/magento-cart-payment-method/PaymentMethodPlaceOrderNoop/PaymentMethodPlaceOrderNoop.gql'
|
5
6
|
import { fillShippingAddressForm } from '@graphcommerce/magento-cart-shipping-address/test/fillShippingAddressForm'
|
6
|
-
import { test } from '@graphcommerce/magento-product/test/productURL.fixture'
|
7
7
|
import { addConfigurableProductToCart } from '@graphcommerce/magento-product-configurable/test/addConfigurableProductToCart'
|
8
|
+
import { test } from '@graphcommerce/magento-product/test/productURL.fixture'
|
8
9
|
import { expect } from '@playwright/test'
|
9
10
|
|
10
11
|
test('place order', async ({ page, productURL }) => {
|
@@ -1,10 +1,11 @@
|
|
1
1
|
/* eslint-disable import/no-extraneous-dependencies */
|
2
|
+
|
2
3
|
/* eslint-disable @typescript-eslint/no-non-null-assertion */
|
3
4
|
import { waitForGraphQlResponse } from '@graphcommerce/graphql/test/apolloClient.fixture'
|
4
5
|
import { PaymentMethodPlaceOrderNoopDocument } from '@graphcommerce/magento-cart-payment-method/PaymentMethodPlaceOrderNoop/PaymentMethodPlaceOrderNoop.gql'
|
5
6
|
import { goToPayment } from '@graphcommerce/magento-cart-payment-method/test/goToPayment'
|
6
|
-
import { test } from '@graphcommerce/magento-product/test/productURL.fixture'
|
7
7
|
import { addConfigurableProductToCart } from '@graphcommerce/magento-product-configurable/test/addConfigurableProductToCart'
|
8
|
+
import { test } from '@graphcommerce/magento-product/test/productURL.fixture'
|
8
9
|
import { expect } from '@playwright/test'
|
9
10
|
|
10
11
|
test('place order ideal', async ({ page, productURL, apolloClient, locale }) => {
|