@graphcommerce/magento-review 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.
Files changed (2) hide show
  1. package/CHANGELOG.md +17 -18
  2. 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
@@ -112,15 +116,13 @@
112
116
 
113
117
  ### Patch Changes
114
118
 
115
- - [#2234](https://github.com/graphcommerce-org/graphcommerce/pull/2234) [`0767bc4`](https://github.com/graphcommerce-org/graphcommerce/commit/0767bc40f7b596209f24ca4e745ff0441f3275c9) - Upgrade input components to no longer use muiRegister, which improves INP scores
116
- ([@FrankHarland](https://github.com/FrankHarland))
119
+ - [#2234](https://github.com/graphcommerce-org/graphcommerce/pull/2234) [`0767bc4`](https://github.com/graphcommerce-org/graphcommerce/commit/0767bc40f7b596209f24ca4e745ff0441f3275c9) - Upgrade input components to no longer use muiRegister, which improves INP scores ([@FrankHarland](https://github.com/FrankHarland))
117
120
 
118
121
  ## 8.0.6-canary.1
119
122
 
120
123
  ### Patch Changes
121
124
 
122
- - [#2213](https://github.com/graphcommerce-org/graphcommerce/pull/2213) [`a0d952e`](https://github.com/graphcommerce-org/graphcommerce/commit/a0d952e6b8a71a7451bfdb2bdb5150fc218169e2) - Moved product reviews to the relatedUpsells query so we do not pass the queryComplexity limit
123
- ([@paales](https://github.com/paales))
125
+ - [#2213](https://github.com/graphcommerce-org/graphcommerce/pull/2213) [`a0d952e`](https://github.com/graphcommerce-org/graphcommerce/commit/a0d952e6b8a71a7451bfdb2bdb5150fc218169e2) - Moved product reviews to the relatedUpsells query so we do not pass the queryComplexity limit ([@paales](https://github.com/paales))
124
126
 
125
127
  ## 8.0.6-canary.0
126
128
 
@@ -196,8 +198,7 @@
196
198
 
197
199
  ### Patch Changes
198
200
 
199
- - [`e33660f`](https://github.com/graphcommerce-org/graphcommerce/commit/e33660f172466dcfa0ab7262cee612d9a3e47776) - Accessibility improvements for the frontend: Added skip content link. Removed empty buttons from tab flow. Gave focus to elements (such as the menu) that appear when after clicking a button. Improved aria labels where needed
200
- ([@FrankHarland](https://github.com/FrankHarland))
201
+ - [`e33660f`](https://github.com/graphcommerce-org/graphcommerce/commit/e33660f172466dcfa0ab7262cee612d9a3e47776) - Accessibility improvements for the frontend: Added skip content link. Removed empty buttons from tab flow. Gave focus to elements (such as the menu) that appear when after clicking a button. Improved aria labels where needed ([@FrankHarland](https://github.com/FrankHarland))
201
202
 
202
203
  ## 8.0.0-canary.100
203
204
 
@@ -229,8 +230,7 @@
229
230
 
230
231
  ### Patch Changes
231
232
 
232
- - [#2168](https://github.com/graphcommerce-org/graphcommerce/pull/2168) [`986dc96`](https://github.com/graphcommerce-org/graphcommerce/commit/986dc96e6e88b58471dfcccf952d99bbb8a81884) - Added schema-dts as a dependency, so it isn't required in the example
233
- ([@paales](https://github.com/paales))
233
+ - [#2168](https://github.com/graphcommerce-org/graphcommerce/pull/2168) [`986dc96`](https://github.com/graphcommerce-org/graphcommerce/commit/986dc96e6e88b58471dfcccf952d99bbb8a81884) - Added schema-dts as a dependency, so it isn't required in the example ([@paales](https://github.com/paales))
234
234
 
235
235
  ## 8.0.0-canary.86
236
236
 
@@ -254,8 +254,7 @@
254
254
 
255
255
  ### Patch Changes
256
256
 
257
- - [`e33660f`](https://github.com/graphcommerce-org/graphcommerce/commit/e33660f172466dcfa0ab7262cee612d9a3e47776) - a11y improvements (see https://github.com/graphcommerce-org/graphcommerce/issues/1995 for more info)
258
- ([@FrankHarland](https://github.com/FrankHarland))
257
+ - [`e33660f`](https://github.com/graphcommerce-org/graphcommerce/commit/e33660f172466dcfa0ab7262cee612d9a3e47776) - a11y improvements (see https://github.com/graphcommerce-org/graphcommerce/issues/1995 for more info) ([@FrankHarland](https://github.com/FrankHarland))
259
258
 
260
259
  ## 8.0.0-canary.76
261
260
 
@@ -1486,31 +1485,31 @@
1486
1485
  All occurences of `<Trans>` and `t` need to be replaced:
1487
1486
 
1488
1487
  ```tsx
1489
- import { Trans, t } from "@lingui/macro";
1488
+ import { Trans, t } from '@lingui/macro'
1490
1489
 
1491
1490
  function MyComponent() {
1492
- const foo = "bar";
1491
+ const foo = 'bar'
1493
1492
  return (
1494
1493
  <div aria-label={t`Account ${foo}`}>
1495
1494
  <Trans>My Translation {foo}</Trans>
1496
1495
  </div>
1497
- );
1496
+ )
1498
1497
  }
1499
1498
  ```
1500
1499
 
1501
1500
  Needs to be replaced with:
1502
1501
 
1503
1502
  ```tsx
1504
- import { Trans } from "@lingui/react";
1505
- import { i18n } from "@lingui/core";
1503
+ import { Trans } from '@lingui/react'
1504
+ import { i18n } from '@lingui/core'
1506
1505
 
1507
1506
  function MyComponent() {
1508
- const foo = "bar";
1507
+ const foo = 'bar'
1509
1508
  return (
1510
1509
  <div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
1511
- <Trans key="My Translation {foo}" values={{ foo }}></Trans>
1510
+ <Trans key='My Translation {foo}' values={{ foo }}></Trans>
1512
1511
  </div>
1513
- );
1512
+ )
1514
1513
  }
1515
1514
  ```
1516
1515
 
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@graphcommerce/magento-review",
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.58",
6
6
  "sideEffects": false,
7
7
  "prettier": "@graphcommerce/prettier-config-pwa",
8
8
  "eslintConfig": {
@@ -15,21 +15,21 @@
15
15
  "schema-dts": "^1.1.2"
16
16
  },
17
17
  "devDependencies": {
18
- "typescript": "5.3.3"
18
+ "typescript": "5.5.3"
19
19
  },
20
20
  "peerDependencies": {
21
- "@graphcommerce/ecommerce-ui": "^9.0.0-canary.56",
22
- "@graphcommerce/eslint-config-pwa": "^9.0.0-canary.56",
23
- "@graphcommerce/graphql": "^9.0.0-canary.56",
24
- "@graphcommerce/graphql-mesh": "^9.0.0-canary.56",
25
- "@graphcommerce/image": "^9.0.0-canary.56",
26
- "@graphcommerce/magento-customer": "^9.0.0-canary.56",
27
- "@graphcommerce/magento-product": "^9.0.0-canary.56",
28
- "@graphcommerce/magento-store": "^9.0.0-canary.56",
29
- "@graphcommerce/next-ui": "^9.0.0-canary.56",
30
- "@graphcommerce/prettier-config-pwa": "^9.0.0-canary.56",
31
- "@graphcommerce/react-hook-form": "^9.0.0-canary.56",
32
- "@graphcommerce/typescript-config-pwa": "^9.0.0-canary.56",
21
+ "@graphcommerce/ecommerce-ui": "^9.0.0-canary.58",
22
+ "@graphcommerce/eslint-config-pwa": "^9.0.0-canary.58",
23
+ "@graphcommerce/graphql": "^9.0.0-canary.58",
24
+ "@graphcommerce/graphql-mesh": "^9.0.0-canary.58",
25
+ "@graphcommerce/image": "^9.0.0-canary.58",
26
+ "@graphcommerce/magento-customer": "^9.0.0-canary.58",
27
+ "@graphcommerce/magento-product": "^9.0.0-canary.58",
28
+ "@graphcommerce/magento-store": "^9.0.0-canary.58",
29
+ "@graphcommerce/next-ui": "^9.0.0-canary.58",
30
+ "@graphcommerce/prettier-config-pwa": "^9.0.0-canary.58",
31
+ "@graphcommerce/react-hook-form": "^9.0.0-canary.58",
32
+ "@graphcommerce/typescript-config-pwa": "^9.0.0-canary.58",
33
33
  "@lingui/core": "^4.2.1",
34
34
  "@lingui/macro": "^4.2.1",
35
35
  "@lingui/react": "^4.2.1",