@graphcommerce/magento-cart-checkout 9.0.0-canary.56 → 9.0.0-canary.58
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
|
+
## 9.0.0-canary.58
|
|
4
|
+
|
|
5
|
+
## 9.0.0-canary.57
|
|
6
|
+
|
|
3
7
|
## 9.0.0-canary.56
|
|
4
8
|
|
|
5
9
|
## 9.0.0-canary.55
|
|
@@ -186,8 +190,7 @@
|
|
|
186
190
|
|
|
187
191
|
### Minor Changes
|
|
188
192
|
|
|
189
|
-
- [#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.
|
|
190
|
-
([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
193
|
+
- [#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))
|
|
191
194
|
|
|
192
195
|
## 8.0.0-canary.100
|
|
193
196
|
|
|
@@ -1533,31 +1536,31 @@
|
|
|
1533
1536
|
All occurences of `<Trans>` and `t` need to be replaced:
|
|
1534
1537
|
|
|
1535
1538
|
```tsx
|
|
1536
|
-
import { Trans, t } from
|
|
1539
|
+
import { Trans, t } from '@lingui/macro'
|
|
1537
1540
|
|
|
1538
1541
|
function MyComponent() {
|
|
1539
|
-
const foo =
|
|
1542
|
+
const foo = 'bar'
|
|
1540
1543
|
return (
|
|
1541
1544
|
<div aria-label={t`Account ${foo}`}>
|
|
1542
1545
|
<Trans>My Translation {foo}</Trans>
|
|
1543
1546
|
</div>
|
|
1544
|
-
)
|
|
1547
|
+
)
|
|
1545
1548
|
}
|
|
1546
1549
|
```
|
|
1547
1550
|
|
|
1548
1551
|
Needs to be replaced with:
|
|
1549
1552
|
|
|
1550
1553
|
```tsx
|
|
1551
|
-
import { Trans } from
|
|
1552
|
-
import { i18n } from
|
|
1554
|
+
import { Trans } from '@lingui/react'
|
|
1555
|
+
import { i18n } from '@lingui/core'
|
|
1553
1556
|
|
|
1554
1557
|
function MyComponent() {
|
|
1555
|
-
const foo =
|
|
1558
|
+
const foo = 'bar'
|
|
1556
1559
|
return (
|
|
1557
1560
|
<div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
|
|
1558
|
-
<Trans key=
|
|
1561
|
+
<Trans key='My Translation {foo}' values={{ foo }}></Trans>
|
|
1559
1562
|
</div>
|
|
1560
|
-
)
|
|
1563
|
+
)
|
|
1561
1564
|
}
|
|
1562
1565
|
```
|
|
1563
1566
|
|
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": "9.0.0-canary.
|
|
5
|
+
"version": "9.0.0-canary.58",
|
|
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": "^9.0.0-canary.
|
|
16
|
-
"@graphcommerce/graphql": "^9.0.0-canary.
|
|
17
|
-
"@graphcommerce/image": "^9.0.0-canary.
|
|
18
|
-
"@graphcommerce/magento-cart": "^9.0.0-canary.
|
|
19
|
-
"@graphcommerce/magento-cart-coupon": "^9.0.0-canary.
|
|
20
|
-
"@graphcommerce/magento-cart-items": "^9.0.0-canary.
|
|
21
|
-
"@graphcommerce/magento-customer": "^9.0.0-canary.
|
|
22
|
-
"@graphcommerce/magento-store": "^9.0.0-canary.
|
|
23
|
-
"@graphcommerce/next-ui": "^9.0.0-canary.
|
|
24
|
-
"@graphcommerce/prettier-config-pwa": "^9.0.0-canary.
|
|
25
|
-
"@graphcommerce/react-hook-form": "^9.0.0-canary.
|
|
26
|
-
"@graphcommerce/typescript-config-pwa": "^9.0.0-canary.
|
|
15
|
+
"@graphcommerce/eslint-config-pwa": "^9.0.0-canary.58",
|
|
16
|
+
"@graphcommerce/graphql": "^9.0.0-canary.58",
|
|
17
|
+
"@graphcommerce/image": "^9.0.0-canary.58",
|
|
18
|
+
"@graphcommerce/magento-cart": "^9.0.0-canary.58",
|
|
19
|
+
"@graphcommerce/magento-cart-coupon": "^9.0.0-canary.58",
|
|
20
|
+
"@graphcommerce/magento-cart-items": "^9.0.0-canary.58",
|
|
21
|
+
"@graphcommerce/magento-customer": "^9.0.0-canary.58",
|
|
22
|
+
"@graphcommerce/magento-store": "^9.0.0-canary.58",
|
|
23
|
+
"@graphcommerce/next-ui": "^9.0.0-canary.58",
|
|
24
|
+
"@graphcommerce/prettier-config-pwa": "^9.0.0-canary.58",
|
|
25
|
+
"@graphcommerce/react-hook-form": "^9.0.0-canary.58",
|
|
26
|
+
"@graphcommerce/typescript-config-pwa": "^9.0.0-canary.58",
|
|
27
27
|
"@lingui/core": "^4.2.1",
|
|
28
28
|
"@lingui/macro": "^4.2.1",
|
|
29
29
|
"@lingui/react": "^4.2.1",
|