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