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