@graphcommerce/magento-search 3.4.3 → 3.4.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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [3.4.7](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/magento-search@3.4.6...@graphcommerce/magento-search@3.4.7) (2021-11-03)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * various accessibility improvements ([47481a9](https://github.com/ho-nl/m2-pwa/commit/47481a9a882ba87968de6dd797557b0b275d75fb))
12
+
13
+
14
+
15
+
16
+
6
17
  # [3.4.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/magento-search@3.3.5...@graphcommerce/magento-search@3.4.0) (2021-11-02)
7
18
 
8
19
 
@@ -1,11 +1,12 @@
1
- import { UseStyles, SvgImage, iconSearch, SvgImageSimple } from '@graphcommerce/next-ui'
1
+ import { iconSearch, responsiveVal, SvgImageSimple, UseStyles } from '@graphcommerce/next-ui'
2
2
  import { makeStyles, TextField, TextFieldProps, Theme } from '@material-ui/core'
3
3
  import React from 'react'
4
4
 
5
5
  const useStyles = makeStyles(
6
6
  (theme: Theme) => ({
7
7
  root: {
8
- width: '100%',
8
+ marginRight: theme.spacings.xxs,
9
+ width: responsiveVal(64, 172),
9
10
  '& fieldset': {
10
11
  border: `1px solid ${theme.palette.divider}`,
11
12
  },
@@ -27,6 +28,7 @@ export default function SearchButton(props: SearchButtonProps) {
27
28
  <TextField
28
29
  variant='outlined'
29
30
  size='small'
31
+ label='...'
30
32
  classes={{ root: classes.root }}
31
33
  InputProps={{
32
34
  readOnly: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphcommerce/magento-search",
3
- "version": "3.4.3",
3
+ "version": "3.4.7",
4
4
  "sideEffects": false,
5
5
  "prettier": "@graphcommerce/prettier-config-pwa",
6
6
  "browserslist": [
@@ -20,15 +20,15 @@
20
20
  "@playwright/test": "^1.16.2"
21
21
  },
22
22
  "dependencies": {
23
- "@graphcommerce/graphql": "^2.105.2",
23
+ "@graphcommerce/graphql": "^2.105.3",
24
24
  "@graphcommerce/image": "^2.105.2",
25
- "@graphcommerce/next-ui": "^3.12.3",
26
- "@graphcommerce/react-hook-form": "^2.102.14",
25
+ "@graphcommerce/next-ui": "^3.13.2",
26
+ "@graphcommerce/react-hook-form": "^2.103.0",
27
27
  "@graphql-typed-document-node/core": "^3.1.0",
28
28
  "@material-ui/core": "^4.12.3",
29
29
  "next": "^12.0.2",
30
30
  "react": "^17.0.2",
31
31
  "react-dom": "^17.0.2"
32
32
  },
33
- "gitHead": "8fc77cf7261a01a54e82d2c9bdb2b59c31faeffc"
33
+ "gitHead": "db0c7ff1a81b75e4e6eeee3717a1fc608d9c3c86"
34
34
  }