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