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