@graphcommerce/magento-cart-payment-method 8.0.6 → 8.0.8
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 +14 -12
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 8.0.8
|
|
4
|
+
|
|
5
|
+
## 8.0.7
|
|
6
|
+
|
|
3
7
|
## 8.0.6
|
|
4
8
|
|
|
5
9
|
### Patch Changes
|
|
6
10
|
|
|
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))
|
|
11
|
+
- [#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
12
|
|
|
10
13
|
## 8.0.5
|
|
11
14
|
|
|
@@ -79,8 +82,7 @@
|
|
|
79
82
|
|
|
80
83
|
### Patch Changes
|
|
81
84
|
|
|
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))
|
|
85
|
+
- [#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
86
|
|
|
85
87
|
## 8.0.0-canary.100
|
|
86
88
|
|
|
@@ -1413,31 +1415,31 @@
|
|
|
1413
1415
|
All occurences of `<Trans>` and `t` need to be replaced:
|
|
1414
1416
|
|
|
1415
1417
|
```tsx
|
|
1416
|
-
import { Trans, t } from
|
|
1418
|
+
import { Trans, t } from '@lingui/macro'
|
|
1417
1419
|
|
|
1418
1420
|
function MyComponent() {
|
|
1419
|
-
const foo =
|
|
1421
|
+
const foo = 'bar'
|
|
1420
1422
|
return (
|
|
1421
1423
|
<div aria-label={t`Account ${foo}`}>
|
|
1422
1424
|
<Trans>My Translation {foo}</Trans>
|
|
1423
1425
|
</div>
|
|
1424
|
-
)
|
|
1426
|
+
)
|
|
1425
1427
|
}
|
|
1426
1428
|
```
|
|
1427
1429
|
|
|
1428
1430
|
Needs to be replaced with:
|
|
1429
1431
|
|
|
1430
1432
|
```tsx
|
|
1431
|
-
import { Trans } from
|
|
1432
|
-
import { i18n } from
|
|
1433
|
+
import { Trans } from '@lingui/react'
|
|
1434
|
+
import { i18n } from '@lingui/core'
|
|
1433
1435
|
|
|
1434
1436
|
function MyComponent() {
|
|
1435
|
-
const foo =
|
|
1437
|
+
const foo = 'bar'
|
|
1436
1438
|
return (
|
|
1437
1439
|
<div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
|
|
1438
|
-
<Trans key=
|
|
1440
|
+
<Trans key='My Translation {foo}' values={{ foo }}></Trans>
|
|
1439
1441
|
</div>
|
|
1440
|
-
)
|
|
1442
|
+
)
|
|
1441
1443
|
}
|
|
1442
1444
|
```
|
|
1443
1445
|
|
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.8",
|
|
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.8",
|
|
16
|
+
"@graphcommerce/framer-scroller": "^8.0.8",
|
|
17
|
+
"@graphcommerce/graphql": "^8.0.8",
|
|
18
|
+
"@graphcommerce/image": "^8.0.8",
|
|
19
|
+
"@graphcommerce/magento-cart": "^8.0.8",
|
|
20
|
+
"@graphcommerce/magento-cart-shipping-address": "^8.0.8",
|
|
21
|
+
"@graphcommerce/magento-store": "^8.0.8",
|
|
22
|
+
"@graphcommerce/next-ui": "^8.0.8",
|
|
23
|
+
"@graphcommerce/prettier-config-pwa": "^8.0.8",
|
|
24
|
+
"@graphcommerce/react-hook-form": "^8.0.8",
|
|
25
|
+
"@graphcommerce/typescript-config-pwa": "^8.0.8",
|
|
26
26
|
"@lingui/core": "^4.2.1",
|
|
27
27
|
"@lingui/macro": "^4.2.1",
|
|
28
28
|
"@lingui/react": "^4.2.1",
|