@graphcommerce/magento-product-grouped 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 +12 -8
- package/package.json +14 -14
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
|
|
@@ -1432,31 +1436,31 @@
|
|
|
1432
1436
|
All occurences of `<Trans>` and `t` need to be replaced:
|
|
1433
1437
|
|
|
1434
1438
|
```tsx
|
|
1435
|
-
import { Trans, t } from
|
|
1439
|
+
import { Trans, t } from '@lingui/macro'
|
|
1436
1440
|
|
|
1437
1441
|
function MyComponent() {
|
|
1438
|
-
const foo =
|
|
1442
|
+
const foo = 'bar'
|
|
1439
1443
|
return (
|
|
1440
1444
|
<div aria-label={t`Account ${foo}`}>
|
|
1441
1445
|
<Trans>My Translation {foo}</Trans>
|
|
1442
1446
|
</div>
|
|
1443
|
-
)
|
|
1447
|
+
)
|
|
1444
1448
|
}
|
|
1445
1449
|
```
|
|
1446
1450
|
|
|
1447
1451
|
Needs to be replaced with:
|
|
1448
1452
|
|
|
1449
1453
|
```tsx
|
|
1450
|
-
import { Trans } from
|
|
1451
|
-
import { i18n } from
|
|
1454
|
+
import { Trans } from '@lingui/react'
|
|
1455
|
+
import { i18n } from '@lingui/core'
|
|
1452
1456
|
|
|
1453
1457
|
function MyComponent() {
|
|
1454
|
-
const foo =
|
|
1458
|
+
const foo = 'bar'
|
|
1455
1459
|
return (
|
|
1456
1460
|
<div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
|
|
1457
|
-
<Trans key=
|
|
1461
|
+
<Trans key='My Translation {foo}' values={{ foo }}></Trans>
|
|
1458
1462
|
</div>
|
|
1459
|
-
)
|
|
1463
|
+
)
|
|
1460
1464
|
}
|
|
1461
1465
|
```
|
|
1462
1466
|
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@graphcommerce/magento-product-grouped",
|
|
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,22 +12,22 @@
|
|
|
12
12
|
}
|
|
13
13
|
},
|
|
14
14
|
"peerDependencies": {
|
|
15
|
-
"@graphcommerce/ecommerce-ui": "^9.0.0-canary.
|
|
16
|
-
"@graphcommerce/eslint-config-pwa": "^9.0.0-canary.
|
|
17
|
-
"@graphcommerce/graphql": "^9.0.0-canary.
|
|
18
|
-
"@graphcommerce/image": "^9.0.0-canary.
|
|
19
|
-
"@graphcommerce/magento-cart": "^9.0.0-canary.
|
|
20
|
-
"@graphcommerce/magento-product": "^9.0.0-canary.
|
|
21
|
-
"@graphcommerce/magento-product-simple": "^9.0.0-canary.
|
|
22
|
-
"@graphcommerce/magento-product-virtual": "^9.0.0-canary.
|
|
23
|
-
"@graphcommerce/magento-store": "^9.0.0-canary.
|
|
24
|
-
"@graphcommerce/next-ui": "^9.0.0-canary.
|
|
25
|
-
"@graphcommerce/prettier-config-pwa": "^9.0.0-canary.
|
|
26
|
-
"@graphcommerce/typescript-config-pwa": "^9.0.0-canary.
|
|
15
|
+
"@graphcommerce/ecommerce-ui": "^9.0.0-canary.58",
|
|
16
|
+
"@graphcommerce/eslint-config-pwa": "^9.0.0-canary.58",
|
|
17
|
+
"@graphcommerce/graphql": "^9.0.0-canary.58",
|
|
18
|
+
"@graphcommerce/image": "^9.0.0-canary.58",
|
|
19
|
+
"@graphcommerce/magento-cart": "^9.0.0-canary.58",
|
|
20
|
+
"@graphcommerce/magento-product": "^9.0.0-canary.58",
|
|
21
|
+
"@graphcommerce/magento-product-simple": "^9.0.0-canary.58",
|
|
22
|
+
"@graphcommerce/magento-product-virtual": "^9.0.0-canary.58",
|
|
23
|
+
"@graphcommerce/magento-store": "^9.0.0-canary.58",
|
|
24
|
+
"@graphcommerce/next-ui": "^9.0.0-canary.58",
|
|
25
|
+
"@graphcommerce/prettier-config-pwa": "^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",
|
|
30
|
-
"@mui/material": "5.
|
|
30
|
+
"@mui/material": "^5.10.16",
|
|
31
31
|
"next": "*",
|
|
32
32
|
"react": "^18.2.0",
|
|
33
33
|
"react-dom": "^18.2.0"
|