@graphcommerce/magento-cart-checkout 9.0.0-canary.55 → 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 +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.57
|
|
4
|
+
|
|
5
|
+
## 9.0.0-canary.56
|
|
6
|
+
|
|
3
7
|
## 9.0.0-canary.55
|
|
4
8
|
|
|
5
9
|
## 9.0.0-canary.54
|
|
@@ -184,8 +188,7 @@
|
|
|
184
188
|
|
|
185
189
|
### Minor Changes
|
|
186
190
|
|
|
187
|
-
- [#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.
|
|
188
|
-
([@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))
|
|
189
192
|
|
|
190
193
|
## 8.0.0-canary.100
|
|
191
194
|
|
|
@@ -1531,31 +1534,31 @@
|
|
|
1531
1534
|
All occurences of `<Trans>` and `t` need to be replaced:
|
|
1532
1535
|
|
|
1533
1536
|
```tsx
|
|
1534
|
-
import { Trans, t } from
|
|
1537
|
+
import { Trans, t } from '@lingui/macro'
|
|
1535
1538
|
|
|
1536
1539
|
function MyComponent() {
|
|
1537
|
-
const foo =
|
|
1540
|
+
const foo = 'bar'
|
|
1538
1541
|
return (
|
|
1539
1542
|
<div aria-label={t`Account ${foo}`}>
|
|
1540
1543
|
<Trans>My Translation {foo}</Trans>
|
|
1541
1544
|
</div>
|
|
1542
|
-
)
|
|
1545
|
+
)
|
|
1543
1546
|
}
|
|
1544
1547
|
```
|
|
1545
1548
|
|
|
1546
1549
|
Needs to be replaced with:
|
|
1547
1550
|
|
|
1548
1551
|
```tsx
|
|
1549
|
-
import { Trans } from
|
|
1550
|
-
import { i18n } from
|
|
1552
|
+
import { Trans } from '@lingui/react'
|
|
1553
|
+
import { i18n } from '@lingui/core'
|
|
1551
1554
|
|
|
1552
1555
|
function MyComponent() {
|
|
1553
|
-
const foo =
|
|
1556
|
+
const foo = 'bar'
|
|
1554
1557
|
return (
|
|
1555
1558
|
<div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
|
|
1556
|
-
<Trans key=
|
|
1559
|
+
<Trans key='My Translation {foo}' values={{ foo }}></Trans>
|
|
1557
1560
|
</div>
|
|
1558
|
-
)
|
|
1561
|
+
)
|
|
1559
1562
|
}
|
|
1560
1563
|
```
|
|
1561
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",
|