@graphcommerce/magento-review 8.0.6 → 8.0.7
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 +13 -14
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 8.0.7
|
|
4
|
+
|
|
3
5
|
## 8.0.6
|
|
4
6
|
|
|
5
7
|
## 8.0.5
|
|
@@ -74,8 +76,7 @@
|
|
|
74
76
|
|
|
75
77
|
### Patch Changes
|
|
76
78
|
|
|
77
|
-
- [`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
|
|
78
|
-
([@FrankHarland](https://github.com/FrankHarland))
|
|
79
|
+
- [`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))
|
|
79
80
|
|
|
80
81
|
## 8.0.0-canary.100
|
|
81
82
|
|
|
@@ -107,8 +108,7 @@
|
|
|
107
108
|
|
|
108
109
|
### Patch Changes
|
|
109
110
|
|
|
110
|
-
- [#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
|
|
111
|
-
([@paales](https://github.com/paales))
|
|
111
|
+
- [#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))
|
|
112
112
|
|
|
113
113
|
## 8.0.0-canary.86
|
|
114
114
|
|
|
@@ -132,8 +132,7 @@
|
|
|
132
132
|
|
|
133
133
|
### Patch Changes
|
|
134
134
|
|
|
135
|
-
- [`e33660f`](https://github.com/graphcommerce-org/graphcommerce/commit/e33660f172466dcfa0ab7262cee612d9a3e47776) - a11y improvements (see https://github.com/graphcommerce-org/graphcommerce/issues/1995 for more info)
|
|
136
|
-
([@FrankHarland](https://github.com/FrankHarland))
|
|
135
|
+
- [`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))
|
|
137
136
|
|
|
138
137
|
## 8.0.0-canary.76
|
|
139
138
|
|
|
@@ -1364,31 +1363,31 @@
|
|
|
1364
1363
|
All occurences of `<Trans>` and `t` need to be replaced:
|
|
1365
1364
|
|
|
1366
1365
|
```tsx
|
|
1367
|
-
import { Trans, t } from
|
|
1366
|
+
import { Trans, t } from '@lingui/macro'
|
|
1368
1367
|
|
|
1369
1368
|
function MyComponent() {
|
|
1370
|
-
const foo =
|
|
1369
|
+
const foo = 'bar'
|
|
1371
1370
|
return (
|
|
1372
1371
|
<div aria-label={t`Account ${foo}`}>
|
|
1373
1372
|
<Trans>My Translation {foo}</Trans>
|
|
1374
1373
|
</div>
|
|
1375
|
-
)
|
|
1374
|
+
)
|
|
1376
1375
|
}
|
|
1377
1376
|
```
|
|
1378
1377
|
|
|
1379
1378
|
Needs to be replaced with:
|
|
1380
1379
|
|
|
1381
1380
|
```tsx
|
|
1382
|
-
import { Trans } from
|
|
1383
|
-
import { i18n } from
|
|
1381
|
+
import { Trans } from '@lingui/react'
|
|
1382
|
+
import { i18n } from '@lingui/core'
|
|
1384
1383
|
|
|
1385
1384
|
function MyComponent() {
|
|
1386
|
-
const foo =
|
|
1385
|
+
const foo = 'bar'
|
|
1387
1386
|
return (
|
|
1388
1387
|
<div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
|
|
1389
|
-
<Trans key=
|
|
1388
|
+
<Trans key='My Translation {foo}' values={{ foo }}></Trans>
|
|
1390
1389
|
</div>
|
|
1391
|
-
)
|
|
1390
|
+
)
|
|
1392
1391
|
}
|
|
1393
1392
|
```
|
|
1394
1393
|
|
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": "8.0.
|
|
5
|
+
"version": "8.0.7",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"prettier": "@graphcommerce/prettier-config-pwa",
|
|
8
8
|
"eslintConfig": {
|
|
@@ -18,17 +18,17 @@
|
|
|
18
18
|
"typescript": "5.3.3"
|
|
19
19
|
},
|
|
20
20
|
"peerDependencies": {
|
|
21
|
-
"@graphcommerce/eslint-config-pwa": "^8.0.
|
|
22
|
-
"@graphcommerce/graphql": "^8.0.
|
|
23
|
-
"@graphcommerce/graphql-mesh": "^8.0.
|
|
24
|
-
"@graphcommerce/image": "^8.0.
|
|
25
|
-
"@graphcommerce/magento-customer": "^8.0.
|
|
26
|
-
"@graphcommerce/magento-product": "^8.0.
|
|
27
|
-
"@graphcommerce/magento-store": "^8.0.
|
|
28
|
-
"@graphcommerce/next-ui": "^8.0.
|
|
29
|
-
"@graphcommerce/prettier-config-pwa": "^8.0.
|
|
30
|
-
"@graphcommerce/react-hook-form": "^8.0.
|
|
31
|
-
"@graphcommerce/typescript-config-pwa": "^8.0.
|
|
21
|
+
"@graphcommerce/eslint-config-pwa": "^8.0.7",
|
|
22
|
+
"@graphcommerce/graphql": "^8.0.7",
|
|
23
|
+
"@graphcommerce/graphql-mesh": "^8.0.7",
|
|
24
|
+
"@graphcommerce/image": "^8.0.7",
|
|
25
|
+
"@graphcommerce/magento-customer": "^8.0.7",
|
|
26
|
+
"@graphcommerce/magento-product": "^8.0.7",
|
|
27
|
+
"@graphcommerce/magento-store": "^8.0.7",
|
|
28
|
+
"@graphcommerce/next-ui": "^8.0.7",
|
|
29
|
+
"@graphcommerce/prettier-config-pwa": "^8.0.7",
|
|
30
|
+
"@graphcommerce/react-hook-form": "^8.0.7",
|
|
31
|
+
"@graphcommerce/typescript-config-pwa": "^8.0.7",
|
|
32
32
|
"@lingui/core": "^4.2.1",
|
|
33
33
|
"@lingui/macro": "^4.2.1",
|
|
34
34
|
"@lingui/react": "^4.2.1",
|