@graphcommerce/magento-cart-checkout 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 +13 -10
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
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
|
## 8.0.5
|
|
@@ -74,8 +78,7 @@
|
|
|
74
78
|
|
|
75
79
|
### Minor Changes
|
|
76
80
|
|
|
77
|
-
- [#2018](https://github.com/graphcommerce-org/graphcommerce/pull/2018) [`750aa6a`](https://github.com/graphcommerce-org/graphcommerce/commit/750aa6a72710869d54244467253212e551d335e0) - Changed the layout of the succes page. We are using ActionCards right now to match the design of the cart.
|
|
78
|
-
([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
81
|
+
- [#2018](https://github.com/graphcommerce-org/graphcommerce/pull/2018) [`750aa6a`](https://github.com/graphcommerce-org/graphcommerce/commit/750aa6a72710869d54244467253212e551d335e0) - Changed the layout of the succes page. We are using ActionCards right now to match the design of the cart. ([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
79
82
|
|
|
80
83
|
## 8.0.0-canary.100
|
|
81
84
|
|
|
@@ -1421,31 +1424,31 @@
|
|
|
1421
1424
|
All occurences of `<Trans>` and `t` need to be replaced:
|
|
1422
1425
|
|
|
1423
1426
|
```tsx
|
|
1424
|
-
import { Trans, t } from
|
|
1427
|
+
import { Trans, t } from '@lingui/macro'
|
|
1425
1428
|
|
|
1426
1429
|
function MyComponent() {
|
|
1427
|
-
const foo =
|
|
1430
|
+
const foo = 'bar'
|
|
1428
1431
|
return (
|
|
1429
1432
|
<div aria-label={t`Account ${foo}`}>
|
|
1430
1433
|
<Trans>My Translation {foo}</Trans>
|
|
1431
1434
|
</div>
|
|
1432
|
-
)
|
|
1435
|
+
)
|
|
1433
1436
|
}
|
|
1434
1437
|
```
|
|
1435
1438
|
|
|
1436
1439
|
Needs to be replaced with:
|
|
1437
1440
|
|
|
1438
1441
|
```tsx
|
|
1439
|
-
import { Trans } from
|
|
1440
|
-
import { i18n } from
|
|
1442
|
+
import { Trans } from '@lingui/react'
|
|
1443
|
+
import { i18n } from '@lingui/core'
|
|
1441
1444
|
|
|
1442
1445
|
function MyComponent() {
|
|
1443
|
-
const foo =
|
|
1446
|
+
const foo = 'bar'
|
|
1444
1447
|
return (
|
|
1445
1448
|
<div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
|
|
1446
|
-
<Trans key=
|
|
1449
|
+
<Trans key='My Translation {foo}' values={{ foo }}></Trans>
|
|
1447
1450
|
</div>
|
|
1448
|
-
)
|
|
1451
|
+
)
|
|
1449
1452
|
}
|
|
1450
1453
|
```
|
|
1451
1454
|
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@graphcommerce/magento-cart-checkout",
|
|
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,18 +12,18 @@
|
|
|
12
12
|
}
|
|
13
13
|
},
|
|
14
14
|
"peerDependencies": {
|
|
15
|
-
"@graphcommerce/eslint-config-pwa": "^8.0.
|
|
16
|
-
"@graphcommerce/graphql": "^8.0.
|
|
17
|
-
"@graphcommerce/image": "^8.0.
|
|
18
|
-
"@graphcommerce/magento-cart": "^8.0.
|
|
19
|
-
"@graphcommerce/magento-cart-coupon": "^8.0.
|
|
20
|
-
"@graphcommerce/magento-cart-items": "^8.0.
|
|
21
|
-
"@graphcommerce/magento-customer": "^8.0.
|
|
22
|
-
"@graphcommerce/magento-store": "^8.0.
|
|
23
|
-
"@graphcommerce/next-ui": "^8.0.
|
|
24
|
-
"@graphcommerce/prettier-config-pwa": "^8.0.
|
|
25
|
-
"@graphcommerce/react-hook-form": "^8.0.
|
|
26
|
-
"@graphcommerce/typescript-config-pwa": "^8.0.
|
|
15
|
+
"@graphcommerce/eslint-config-pwa": "^8.0.8",
|
|
16
|
+
"@graphcommerce/graphql": "^8.0.8",
|
|
17
|
+
"@graphcommerce/image": "^8.0.8",
|
|
18
|
+
"@graphcommerce/magento-cart": "^8.0.8",
|
|
19
|
+
"@graphcommerce/magento-cart-coupon": "^8.0.8",
|
|
20
|
+
"@graphcommerce/magento-cart-items": "^8.0.8",
|
|
21
|
+
"@graphcommerce/magento-customer": "^8.0.8",
|
|
22
|
+
"@graphcommerce/magento-store": "^8.0.8",
|
|
23
|
+
"@graphcommerce/next-ui": "^8.0.8",
|
|
24
|
+
"@graphcommerce/prettier-config-pwa": "^8.0.8",
|
|
25
|
+
"@graphcommerce/react-hook-form": "^8.0.8",
|
|
26
|
+
"@graphcommerce/typescript-config-pwa": "^8.0.8",
|
|
27
27
|
"@lingui/core": "^4.2.1",
|
|
28
28
|
"@lingui/macro": "^4.2.1",
|
|
29
29
|
"@lingui/react": "^4.2.1",
|