@graphcommerce/magento-search 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.
Files changed (2) hide show
  1. package/CHANGELOG.md +16 -20
  2. package/package.json +10 -10
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,14 +76,11 @@
74
76
 
75
77
  ### Patch Changes
76
78
 
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))
79
+ - [#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
80
 
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))
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))
82
82
 
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))
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 ([@paales](https://github.com/paales))
85
84
 
86
85
  ## 8.0.0-canary.100
87
86
 
@@ -133,8 +132,7 @@
133
132
 
134
133
  ### Patch Changes
135
134
 
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))
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))
138
136
 
139
137
  ## 8.0.0-canary.76
140
138
 
@@ -142,11 +140,9 @@
142
140
 
143
141
  ### Patch Changes
144
142
 
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))
143
+ - [#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
144
 
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))
145
+ - [#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
146
 
151
147
  ## 8.0.0-canary.74
152
148
 
@@ -1199,31 +1195,31 @@
1199
1195
  All occurences of `<Trans>` and `t` need to be replaced:
1200
1196
 
1201
1197
  ```tsx
1202
- import { Trans, t } from "@lingui/macro";
1198
+ import { Trans, t } from '@lingui/macro'
1203
1199
 
1204
1200
  function MyComponent() {
1205
- const foo = "bar";
1201
+ const foo = 'bar'
1206
1202
  return (
1207
1203
  <div aria-label={t`Account ${foo}`}>
1208
1204
  <Trans>My Translation {foo}</Trans>
1209
1205
  </div>
1210
- );
1206
+ )
1211
1207
  }
1212
1208
  ```
1213
1209
 
1214
1210
  Needs to be replaced with:
1215
1211
 
1216
1212
  ```tsx
1217
- import { Trans } from "@lingui/react";
1218
- import { i18n } from "@lingui/core";
1213
+ import { Trans } from '@lingui/react'
1214
+ import { i18n } from '@lingui/core'
1219
1215
 
1220
1216
  function MyComponent() {
1221
- const foo = "bar";
1217
+ const foo = 'bar'
1222
1218
  return (
1223
1219
  <div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
1224
- <Trans key="My Translation {foo}" values={{ foo }}></Trans>
1220
+ <Trans key='My Translation {foo}' values={{ foo }}></Trans>
1225
1221
  </div>
1226
- );
1222
+ )
1227
1223
  }
1228
1224
  ```
1229
1225
 
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.7",
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.7",
16
+ "@graphcommerce/eslint-config-pwa": "^8.0.7",
17
+ "@graphcommerce/graphql": "^8.0.7",
18
+ "@graphcommerce/image": "^8.0.7",
19
+ "@graphcommerce/magento-product": "^8.0.7",
20
+ "@graphcommerce/next-ui": "^8.0.7",
21
+ "@graphcommerce/prettier-config-pwa": "^8.0.7",
22
+ "@graphcommerce/react-hook-form": "^8.0.7",
23
+ "@graphcommerce/typescript-config-pwa": "^8.0.7",
24
24
  "@lingui/core": "^4.2.1",
25
25
  "@lingui/macro": "^4.2.1",
26
26
  "@lingui/react": "^4.2.1",