@graphcommerce/magento-cart-email 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 +11 -10
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 8.0.7
|
|
4
|
+
|
|
3
5
|
## 8.0.6
|
|
4
6
|
|
|
5
7
|
## 8.0.5
|
|
@@ -86,8 +88,7 @@
|
|
|
86
88
|
|
|
87
89
|
### Patch Changes
|
|
88
90
|
|
|
89
|
-
- [#2107](https://github.com/graphcommerce-org/graphcommerce/pull/2107) [`2f51504`](https://github.com/graphcommerce-org/graphcommerce/commit/2f5150456eabcce410ad8a0f1cbebeedabb6564c) - Remember email adress when going from checkout to signin/up form
|
|
90
|
-
([@FrankHarland](https://github.com/FrankHarland))
|
|
91
|
+
- [#2107](https://github.com/graphcommerce-org/graphcommerce/pull/2107) [`2f51504`](https://github.com/graphcommerce-org/graphcommerce/commit/2f5150456eabcce410ad8a0f1cbebeedabb6564c) - Remember email adress when going from checkout to signin/up form ([@FrankHarland](https://github.com/FrankHarland))
|
|
91
92
|
|
|
92
93
|
## 8.0.0-canary.100
|
|
93
94
|
|
|
@@ -1420,31 +1421,31 @@
|
|
|
1420
1421
|
All occurences of `<Trans>` and `t` need to be replaced:
|
|
1421
1422
|
|
|
1422
1423
|
```tsx
|
|
1423
|
-
import { Trans, t } from
|
|
1424
|
+
import { Trans, t } from '@lingui/macro'
|
|
1424
1425
|
|
|
1425
1426
|
function MyComponent() {
|
|
1426
|
-
const foo =
|
|
1427
|
+
const foo = 'bar'
|
|
1427
1428
|
return (
|
|
1428
1429
|
<div aria-label={t`Account ${foo}`}>
|
|
1429
1430
|
<Trans>My Translation {foo}</Trans>
|
|
1430
1431
|
</div>
|
|
1431
|
-
)
|
|
1432
|
+
)
|
|
1432
1433
|
}
|
|
1433
1434
|
```
|
|
1434
1435
|
|
|
1435
1436
|
Needs to be replaced with:
|
|
1436
1437
|
|
|
1437
1438
|
```tsx
|
|
1438
|
-
import { Trans } from
|
|
1439
|
-
import { i18n } from
|
|
1439
|
+
import { Trans } from '@lingui/react'
|
|
1440
|
+
import { i18n } from '@lingui/core'
|
|
1440
1441
|
|
|
1441
1442
|
function MyComponent() {
|
|
1442
|
-
const foo =
|
|
1443
|
+
const foo = 'bar'
|
|
1443
1444
|
return (
|
|
1444
1445
|
<div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
|
|
1445
|
-
<Trans key=
|
|
1446
|
+
<Trans key='My Translation {foo}' values={{ foo }}></Trans>
|
|
1446
1447
|
</div>
|
|
1447
|
-
)
|
|
1448
|
+
)
|
|
1448
1449
|
}
|
|
1449
1450
|
```
|
|
1450
1451
|
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@graphcommerce/magento-cart-email",
|
|
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,18 +12,18 @@
|
|
|
12
12
|
}
|
|
13
13
|
},
|
|
14
14
|
"peerDependencies": {
|
|
15
|
-
"@graphcommerce/ecommerce-ui": "^8.0.
|
|
16
|
-
"@graphcommerce/eslint-config-pwa": "^8.0.
|
|
17
|
-
"@graphcommerce/graphql": "^8.0.
|
|
18
|
-
"@graphcommerce/image": "^8.0.
|
|
19
|
-
"@graphcommerce/magento-cart": "^8.0.
|
|
20
|
-
"@graphcommerce/magento-customer": "^8.0.
|
|
21
|
-
"@graphcommerce/magento-product": "^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/ecommerce-ui": "^8.0.7",
|
|
16
|
+
"@graphcommerce/eslint-config-pwa": "^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-customer": "^8.0.7",
|
|
21
|
+
"@graphcommerce/magento-product": "^8.0.7",
|
|
22
|
+
"@graphcommerce/magento-store": "^8.0.7",
|
|
23
|
+
"@graphcommerce/next-ui": "^8.0.7",
|
|
24
|
+
"@graphcommerce/prettier-config-pwa": "^8.0.7",
|
|
25
|
+
"@graphcommerce/react-hook-form": "^8.0.7",
|
|
26
|
+
"@graphcommerce/typescript-config-pwa": "^8.0.7",
|
|
27
27
|
"@lingui/core": "^4.2.1",
|
|
28
28
|
"@lingui/macro": "^4.2.1",
|
|
29
29
|
"@lingui/react": "^4.2.1",
|