@graphcommerce/magento-search 9.0.0-canary.56 → 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 +16 -20
  2. package/package.json +11 -11
package/CHANGELOG.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # Change Log
2
2
 
3
+ ## 9.0.0-canary.57
4
+
3
5
  ## 9.0.0-canary.56
4
6
 
5
7
  ## 9.0.0-canary.55
@@ -186,14 +188,11 @@
186
188
 
187
189
  ### Patch Changes
188
190
 
189
- - [#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.
190
- ([@paales](https://github.com/paales))
191
+ - [#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))
191
192
 
192
- - [`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
193
- ([@FrankHarland](https://github.com/FrankHarland))
193
+ - [`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))
194
194
 
195
- - [#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
196
- ([@paales](https://github.com/paales))
195
+ - [#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))
197
196
 
198
197
  ## 8.0.0-canary.100
199
198
 
@@ -245,8 +244,7 @@
245
244
 
246
245
  ### Patch Changes
247
246
 
248
- - [`e33660f`](https://github.com/graphcommerce-org/graphcommerce/commit/e33660f172466dcfa0ab7262cee612d9a3e47776) - a11y improvements (see https://github.com/graphcommerce-org/graphcommerce/issues/1995 for more info)
249
- ([@FrankHarland](https://github.com/FrankHarland))
247
+ - [`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))
250
248
 
251
249
  ## 8.0.0-canary.76
252
250
 
@@ -254,11 +252,9 @@
254
252
 
255
253
  ### Patch Changes
256
254
 
257
- - [#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
258
- ([@paales](https://github.com/paales))
255
+ - [#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))
259
256
 
260
- - [#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
261
- ([@paales](https://github.com/paales))
257
+ - [#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))
262
258
 
263
259
  ## 8.0.0-canary.74
264
260
 
@@ -1311,31 +1307,31 @@
1311
1307
  All occurences of `<Trans>` and `t` need to be replaced:
1312
1308
 
1313
1309
  ```tsx
1314
- import { Trans, t } from "@lingui/macro";
1310
+ import { Trans, t } from '@lingui/macro'
1315
1311
 
1316
1312
  function MyComponent() {
1317
- const foo = "bar";
1313
+ const foo = 'bar'
1318
1314
  return (
1319
1315
  <div aria-label={t`Account ${foo}`}>
1320
1316
  <Trans>My Translation {foo}</Trans>
1321
1317
  </div>
1322
- );
1318
+ )
1323
1319
  }
1324
1320
  ```
1325
1321
 
1326
1322
  Needs to be replaced with:
1327
1323
 
1328
1324
  ```tsx
1329
- import { Trans } from "@lingui/react";
1330
- import { i18n } from "@lingui/core";
1325
+ import { Trans } from '@lingui/react'
1326
+ import { i18n } from '@lingui/core'
1331
1327
 
1332
1328
  function MyComponent() {
1333
- const foo = "bar";
1329
+ const foo = 'bar'
1334
1330
  return (
1335
1331
  <div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
1336
- <Trans key="My Translation {foo}" values={{ foo }}></Trans>
1332
+ <Trans key='My Translation {foo}' values={{ foo }}></Trans>
1337
1333
  </div>
1338
- );
1334
+ )
1339
1335
  }
1340
1336
  ```
1341
1337
 
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": "9.0.0-canary.56",
5
+ "version": "9.0.0-canary.57",
6
6
  "sideEffects": false,
7
7
  "prettier": "@graphcommerce/prettier-config-pwa",
8
8
  "eslintConfig": {
@@ -12,16 +12,16 @@
12
12
  }
13
13
  },
14
14
  "peerDependencies": {
15
- "@graphcommerce/ecommerce-ui": "^9.0.0-canary.56",
16
- "@graphcommerce/eslint-config-pwa": "^9.0.0-canary.56",
17
- "@graphcommerce/graphql": "^9.0.0-canary.56",
18
- "@graphcommerce/image": "^9.0.0-canary.56",
19
- "@graphcommerce/magento-product": "^9.0.0-canary.56",
20
- "@graphcommerce/magento-store": "^9.0.0-canary.56",
21
- "@graphcommerce/next-ui": "^9.0.0-canary.56",
22
- "@graphcommerce/prettier-config-pwa": "^9.0.0-canary.56",
23
- "@graphcommerce/react-hook-form": "^9.0.0-canary.56",
24
- "@graphcommerce/typescript-config-pwa": "^9.0.0-canary.56",
15
+ "@graphcommerce/ecommerce-ui": "^9.0.0-canary.57",
16
+ "@graphcommerce/eslint-config-pwa": "^9.0.0-canary.57",
17
+ "@graphcommerce/graphql": "^9.0.0-canary.57",
18
+ "@graphcommerce/image": "^9.0.0-canary.57",
19
+ "@graphcommerce/magento-product": "^9.0.0-canary.57",
20
+ "@graphcommerce/magento-store": "^9.0.0-canary.57",
21
+ "@graphcommerce/next-ui": "^9.0.0-canary.57",
22
+ "@graphcommerce/prettier-config-pwa": "^9.0.0-canary.57",
23
+ "@graphcommerce/react-hook-form": "^9.0.0-canary.57",
24
+ "@graphcommerce/typescript-config-pwa": "^9.0.0-canary.57",
25
25
  "@lingui/core": "^4.2.1",
26
26
  "@lingui/macro": "^4.2.1",
27
27
  "@lingui/react": "^4.2.1",