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