@graphcommerce/magento-review 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.
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.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
@@ -110,15 +114,13 @@
110
114
 
111
115
  ### Patch Changes
112
116
 
113
- - [#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
114
- ([@FrankHarland](https://github.com/FrankHarland))
117
+ - [#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))
115
118
 
116
119
  ## 8.0.6-canary.1
117
120
 
118
121
  ### Patch Changes
119
122
 
120
- - [#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
121
- ([@paales](https://github.com/paales))
123
+ - [#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))
122
124
 
123
125
  ## 8.0.6-canary.0
124
126
 
@@ -194,8 +196,7 @@
194
196
 
195
197
  ### Patch Changes
196
198
 
197
- - [`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
198
- ([@FrankHarland](https://github.com/FrankHarland))
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 ([@FrankHarland](https://github.com/FrankHarland))
199
200
 
200
201
  ## 8.0.0-canary.100
201
202
 
@@ -227,8 +228,7 @@
227
228
 
228
229
  ### Patch Changes
229
230
 
230
- - [#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
231
- ([@paales](https://github.com/paales))
231
+ - [#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))
232
232
 
233
233
  ## 8.0.0-canary.86
234
234
 
@@ -252,8 +252,7 @@
252
252
 
253
253
  ### Patch Changes
254
254
 
255
- - [`e33660f`](https://github.com/graphcommerce-org/graphcommerce/commit/e33660f172466dcfa0ab7262cee612d9a3e47776) - a11y improvements (see https://github.com/graphcommerce-org/graphcommerce/issues/1995 for more info)
256
- ([@FrankHarland](https://github.com/FrankHarland))
255
+ - [`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))
257
256
 
258
257
  ## 8.0.0-canary.76
259
258
 
@@ -1484,31 +1483,31 @@
1484
1483
  All occurences of `<Trans>` and `t` need to be replaced:
1485
1484
 
1486
1485
  ```tsx
1487
- import { Trans, t } from "@lingui/macro";
1486
+ import { Trans, t } from '@lingui/macro'
1488
1487
 
1489
1488
  function MyComponent() {
1490
- const foo = "bar";
1489
+ const foo = 'bar'
1491
1490
  return (
1492
1491
  <div aria-label={t`Account ${foo}`}>
1493
1492
  <Trans>My Translation {foo}</Trans>
1494
1493
  </div>
1495
- );
1494
+ )
1496
1495
  }
1497
1496
  ```
1498
1497
 
1499
1498
  Needs to be replaced with:
1500
1499
 
1501
1500
  ```tsx
1502
- import { Trans } from "@lingui/react";
1503
- import { i18n } from "@lingui/core";
1501
+ import { Trans } from '@lingui/react'
1502
+ import { i18n } from '@lingui/core'
1504
1503
 
1505
1504
  function MyComponent() {
1506
- const foo = "bar";
1505
+ const foo = 'bar'
1507
1506
  return (
1508
1507
  <div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
1509
- <Trans key="My Translation {foo}" values={{ foo }}></Trans>
1508
+ <Trans key='My Translation {foo}' values={{ foo }}></Trans>
1510
1509
  </div>
1511
- );
1510
+ )
1512
1511
  }
1513
1512
  ```
1514
1513
 
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.55",
5
+ "version": "9.0.0-canary.57",
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.55",
22
- "@graphcommerce/eslint-config-pwa": "^9.0.0-canary.55",
23
- "@graphcommerce/graphql": "^9.0.0-canary.55",
24
- "@graphcommerce/graphql-mesh": "^9.0.0-canary.55",
25
- "@graphcommerce/image": "^9.0.0-canary.55",
26
- "@graphcommerce/magento-customer": "^9.0.0-canary.55",
27
- "@graphcommerce/magento-product": "^9.0.0-canary.55",
28
- "@graphcommerce/magento-store": "^9.0.0-canary.55",
29
- "@graphcommerce/next-ui": "^9.0.0-canary.55",
30
- "@graphcommerce/prettier-config-pwa": "^9.0.0-canary.55",
31
- "@graphcommerce/react-hook-form": "^9.0.0-canary.55",
32
- "@graphcommerce/typescript-config-pwa": "^9.0.0-canary.55",
21
+ "@graphcommerce/ecommerce-ui": "^9.0.0-canary.57",
22
+ "@graphcommerce/eslint-config-pwa": "^9.0.0-canary.57",
23
+ "@graphcommerce/graphql": "^9.0.0-canary.57",
24
+ "@graphcommerce/graphql-mesh": "^9.0.0-canary.57",
25
+ "@graphcommerce/image": "^9.0.0-canary.57",
26
+ "@graphcommerce/magento-customer": "^9.0.0-canary.57",
27
+ "@graphcommerce/magento-product": "^9.0.0-canary.57",
28
+ "@graphcommerce/magento-store": "^9.0.0-canary.57",
29
+ "@graphcommerce/next-ui": "^9.0.0-canary.57",
30
+ "@graphcommerce/prettier-config-pwa": "^9.0.0-canary.57",
31
+ "@graphcommerce/react-hook-form": "^9.0.0-canary.57",
32
+ "@graphcommerce/typescript-config-pwa": "^9.0.0-canary.57",
33
33
  "@lingui/core": "^4.2.1",
34
34
  "@lingui/macro": "^4.2.1",
35
35
  "@lingui/react": "^4.2.1",