@graphcommerce/magento-search 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.
Files changed (2) hide show
  1. package/CHANGELOG.md +18 -20
  2. package/package.json +10 -10
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,14 +78,11 @@
74
78
 
75
79
  ### Patch Changes
76
80
 
77
- - [#2160](https://github.com/graphcommerce-org/graphcommerce/pull/2160) [`9091dbb`](https://github.com/graphcommerce-org/graphcommerce/commit/9091dbb01a47aa6ba40932a66ed055b7f07c1cec) - Make sure the search link in the header is a soft navigation instead of a hard browser navigation.
78
- ([@paales](https://github.com/paales))
81
+ - [#2160](https://github.com/graphcommerce-org/graphcommerce/pull/2160) [`9091dbb`](https://github.com/graphcommerce-org/graphcommerce/commit/9091dbb01a47aa6ba40932a66ed055b7f07c1cec) - Make sure the search link in the header is a soft navigation instead of a hard browser navigation. ([@paales](https://github.com/paales))
79
82
 
80
- - [`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
81
- ([@FrankHarland](https://github.com/FrankHarland))
83
+ - [`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))
82
84
 
83
- - [#2160](https://github.com/graphcommerce-org/graphcommerce/pull/2160) [`fe37229`](https://github.com/graphcommerce-org/graphcommerce/commit/fe372294d6a42b1108e0fcef306b297baed5eb71) - Take the `per_page` configuration in account for the search results
84
- ([@paales](https://github.com/paales))
85
+ - [#2160](https://github.com/graphcommerce-org/graphcommerce/pull/2160) [`fe37229`](https://github.com/graphcommerce-org/graphcommerce/commit/fe372294d6a42b1108e0fcef306b297baed5eb71) - Take the `per_page` configuration in account for the search results ([@paales](https://github.com/paales))
85
86
 
86
87
  ## 8.0.0-canary.100
87
88
 
@@ -133,8 +134,7 @@
133
134
 
134
135
  ### Patch Changes
135
136
 
136
- - [`e33660f`](https://github.com/graphcommerce-org/graphcommerce/commit/e33660f172466dcfa0ab7262cee612d9a3e47776) - a11y improvements (see https://github.com/graphcommerce-org/graphcommerce/issues/1995 for more info)
137
- ([@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))
138
138
 
139
139
  ## 8.0.0-canary.76
140
140
 
@@ -142,11 +142,9 @@
142
142
 
143
143
  ### Patch Changes
144
144
 
145
- - [#2160](https://github.com/graphcommerce-org/graphcommerce/pull/2160) [`9091dbb`](https://github.com/graphcommerce-org/graphcommerce/commit/9091dbb01a47aa6ba40932a66ed055b7f07c1cec) - Make sure the search link in the header is a nextjs navigation
146
- ([@paales](https://github.com/paales))
145
+ - [#2160](https://github.com/graphcommerce-org/graphcommerce/pull/2160) [`9091dbb`](https://github.com/graphcommerce-org/graphcommerce/commit/9091dbb01a47aa6ba40932a66ed055b7f07c1cec) - Make sure the search link in the header is a nextjs navigation ([@paales](https://github.com/paales))
147
146
 
148
- - [#2160](https://github.com/graphcommerce-org/graphcommerce/pull/2160) [`fe37229`](https://github.com/graphcommerce-org/graphcommerce/commit/fe372294d6a42b1108e0fcef306b297baed5eb71) - Take the per_page configuration in account for the search results
149
- ([@paales](https://github.com/paales))
147
+ - [#2160](https://github.com/graphcommerce-org/graphcommerce/pull/2160) [`fe37229`](https://github.com/graphcommerce-org/graphcommerce/commit/fe372294d6a42b1108e0fcef306b297baed5eb71) - Take the per_page configuration in account for the search results ([@paales](https://github.com/paales))
150
148
 
151
149
  ## 8.0.0-canary.74
152
150
 
@@ -1199,31 +1197,31 @@
1199
1197
  All occurences of `<Trans>` and `t` need to be replaced:
1200
1198
 
1201
1199
  ```tsx
1202
- import { Trans, t } from "@lingui/macro";
1200
+ import { Trans, t } from '@lingui/macro'
1203
1201
 
1204
1202
  function MyComponent() {
1205
- const foo = "bar";
1203
+ const foo = 'bar'
1206
1204
  return (
1207
1205
  <div aria-label={t`Account ${foo}`}>
1208
1206
  <Trans>My Translation {foo}</Trans>
1209
1207
  </div>
1210
- );
1208
+ )
1211
1209
  }
1212
1210
  ```
1213
1211
 
1214
1212
  Needs to be replaced with:
1215
1213
 
1216
1214
  ```tsx
1217
- import { Trans } from "@lingui/react";
1218
- import { i18n } from "@lingui/core";
1215
+ import { Trans } from '@lingui/react'
1216
+ import { i18n } from '@lingui/core'
1219
1217
 
1220
1218
  function MyComponent() {
1221
- const foo = "bar";
1219
+ const foo = 'bar'
1222
1220
  return (
1223
1221
  <div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
1224
- <Trans key="My Translation {foo}" values={{ foo }}></Trans>
1222
+ <Trans key='My Translation {foo}' values={{ foo }}></Trans>
1225
1223
  </div>
1226
- );
1224
+ )
1227
1225
  }
1228
1226
  ```
1229
1227
 
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@graphcommerce/magento-search",
3
3
  "homepage": "https://www.graphcommerce.org/",
4
4
  "repository": "github:graphcommerce-org/graphcommerce",
5
- "version": "8.0.6",
5
+ "version": "8.0.8",
6
6
  "sideEffects": false,
7
7
  "prettier": "@graphcommerce/prettier-config-pwa",
8
8
  "eslintConfig": {
@@ -12,15 +12,15 @@
12
12
  }
13
13
  },
14
14
  "peerDependencies": {
15
- "@graphcommerce/ecommerce-ui": "^8.0.6",
16
- "@graphcommerce/eslint-config-pwa": "^8.0.6",
17
- "@graphcommerce/graphql": "^8.0.6",
18
- "@graphcommerce/image": "^8.0.6",
19
- "@graphcommerce/magento-product": "^8.0.6",
20
- "@graphcommerce/next-ui": "^8.0.6",
21
- "@graphcommerce/prettier-config-pwa": "^8.0.6",
22
- "@graphcommerce/react-hook-form": "^8.0.6",
23
- "@graphcommerce/typescript-config-pwa": "^8.0.6",
15
+ "@graphcommerce/ecommerce-ui": "^8.0.8",
16
+ "@graphcommerce/eslint-config-pwa": "^8.0.8",
17
+ "@graphcommerce/graphql": "^8.0.8",
18
+ "@graphcommerce/image": "^8.0.8",
19
+ "@graphcommerce/magento-product": "^8.0.8",
20
+ "@graphcommerce/next-ui": "^8.0.8",
21
+ "@graphcommerce/prettier-config-pwa": "^8.0.8",
22
+ "@graphcommerce/react-hook-form": "^8.0.8",
23
+ "@graphcommerce/typescript-config-pwa": "^8.0.8",
24
24
  "@lingui/core": "^4.2.1",
25
25
  "@lingui/macro": "^4.2.1",
26
26
  "@lingui/react": "^4.2.1",