@graphcommerce/magento-cart-payment-method 8.0.6 → 8.0.7
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 +12 -12
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 8.0.7
|
|
4
|
+
|
|
3
5
|
## 8.0.6
|
|
4
6
|
|
|
5
7
|
### Patch Changes
|
|
6
8
|
|
|
7
|
-
- [#2248](https://github.com/graphcommerce-org/graphcommerce/pull/2248) [`e262419`](https://github.com/graphcommerce-org/graphcommerce/commit/e2624194cc1c1b9bb625892c2856900c071c936c) - Compatibility with Magento 2.4.7
|
|
8
|
-
([@paales](https://github.com/paales))
|
|
9
|
+
- [#2248](https://github.com/graphcommerce-org/graphcommerce/pull/2248) [`e262419`](https://github.com/graphcommerce-org/graphcommerce/commit/e2624194cc1c1b9bb625892c2856900c071c936c) - Compatibility with Magento 2.4.7 ([@paales](https://github.com/paales))
|
|
9
10
|
|
|
10
11
|
## 8.0.5
|
|
11
12
|
|
|
@@ -79,8 +80,7 @@
|
|
|
79
80
|
|
|
80
81
|
### Patch Changes
|
|
81
82
|
|
|
82
|
-
- [#2115](https://github.com/graphcommerce-org/graphcommerce/pull/2115) [`105a1af`](https://github.com/graphcommerce-org/graphcommerce/commit/105a1af8b820de8873e430ae398f1922d39a9110) - Disabled ripple animations on all ActionCard ‘Select’ and ‘Change’ so the rendering is more subtle during checkout.
|
|
83
|
-
([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
83
|
+
- [#2115](https://github.com/graphcommerce-org/graphcommerce/pull/2115) [`105a1af`](https://github.com/graphcommerce-org/graphcommerce/commit/105a1af8b820de8873e430ae398f1922d39a9110) - Disabled ripple animations on all ActionCard ‘Select’ and ‘Change’ so the rendering is more subtle during checkout. ([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
84
84
|
|
|
85
85
|
## 8.0.0-canary.100
|
|
86
86
|
|
|
@@ -1413,31 +1413,31 @@
|
|
|
1413
1413
|
All occurences of `<Trans>` and `t` need to be replaced:
|
|
1414
1414
|
|
|
1415
1415
|
```tsx
|
|
1416
|
-
import { Trans, t } from
|
|
1416
|
+
import { Trans, t } from '@lingui/macro'
|
|
1417
1417
|
|
|
1418
1418
|
function MyComponent() {
|
|
1419
|
-
const foo =
|
|
1419
|
+
const foo = 'bar'
|
|
1420
1420
|
return (
|
|
1421
1421
|
<div aria-label={t`Account ${foo}`}>
|
|
1422
1422
|
<Trans>My Translation {foo}</Trans>
|
|
1423
1423
|
</div>
|
|
1424
|
-
)
|
|
1424
|
+
)
|
|
1425
1425
|
}
|
|
1426
1426
|
```
|
|
1427
1427
|
|
|
1428
1428
|
Needs to be replaced with:
|
|
1429
1429
|
|
|
1430
1430
|
```tsx
|
|
1431
|
-
import { Trans } from
|
|
1432
|
-
import { i18n } from
|
|
1431
|
+
import { Trans } from '@lingui/react'
|
|
1432
|
+
import { i18n } from '@lingui/core'
|
|
1433
1433
|
|
|
1434
1434
|
function MyComponent() {
|
|
1435
|
-
const foo =
|
|
1435
|
+
const foo = 'bar'
|
|
1436
1436
|
return (
|
|
1437
1437
|
<div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
|
|
1438
|
-
<Trans key=
|
|
1438
|
+
<Trans key='My Translation {foo}' values={{ foo }}></Trans>
|
|
1439
1439
|
</div>
|
|
1440
|
-
)
|
|
1440
|
+
)
|
|
1441
1441
|
}
|
|
1442
1442
|
```
|
|
1443
1443
|
|
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": "8.0.
|
|
5
|
+
"version": "8.0.7",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"prettier": "@graphcommerce/prettier-config-pwa",
|
|
8
8
|
"eslintConfig": {
|
|
@@ -12,17 +12,17 @@
|
|
|
12
12
|
}
|
|
13
13
|
},
|
|
14
14
|
"peerDependencies": {
|
|
15
|
-
"@graphcommerce/eslint-config-pwa": "^8.0.
|
|
16
|
-
"@graphcommerce/framer-scroller": "^8.0.
|
|
17
|
-
"@graphcommerce/graphql": "^8.0.
|
|
18
|
-
"@graphcommerce/image": "^8.0.
|
|
19
|
-
"@graphcommerce/magento-cart": "^8.0.
|
|
20
|
-
"@graphcommerce/magento-cart-shipping-address": "^8.0.
|
|
21
|
-
"@graphcommerce/magento-store": "^8.0.
|
|
22
|
-
"@graphcommerce/next-ui": "^8.0.
|
|
23
|
-
"@graphcommerce/prettier-config-pwa": "^8.0.
|
|
24
|
-
"@graphcommerce/react-hook-form": "^8.0.
|
|
25
|
-
"@graphcommerce/typescript-config-pwa": "^8.0.
|
|
15
|
+
"@graphcommerce/eslint-config-pwa": "^8.0.7",
|
|
16
|
+
"@graphcommerce/framer-scroller": "^8.0.7",
|
|
17
|
+
"@graphcommerce/graphql": "^8.0.7",
|
|
18
|
+
"@graphcommerce/image": "^8.0.7",
|
|
19
|
+
"@graphcommerce/magento-cart": "^8.0.7",
|
|
20
|
+
"@graphcommerce/magento-cart-shipping-address": "^8.0.7",
|
|
21
|
+
"@graphcommerce/magento-store": "^8.0.7",
|
|
22
|
+
"@graphcommerce/next-ui": "^8.0.7",
|
|
23
|
+
"@graphcommerce/prettier-config-pwa": "^8.0.7",
|
|
24
|
+
"@graphcommerce/react-hook-form": "^8.0.7",
|
|
25
|
+
"@graphcommerce/typescript-config-pwa": "^8.0.7",
|
|
26
26
|
"@lingui/core": "^4.2.1",
|
|
27
27
|
"@lingui/macro": "^4.2.1",
|
|
28
28
|
"@lingui/react": "^4.2.1",
|