@graphcommerce/magento-search 3.5.1 → 3.5.5

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,28 @@
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.5.5](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/magento-search@3.5.4...@graphcommerce/magento-search@3.5.5) (2021-12-01)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * ios zoom bug when using search. Fontsize should always be > 16 ([22abcd4](https://github.com/ho-nl/m2-pwa/commit/22abcd499b152448b3c38f84325debe07d2b9a68))
12
+
13
+
14
+
15
+
16
+
17
+ ## [3.5.4](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/magento-search@3.5.3...@graphcommerce/magento-search@3.5.4) (2021-11-27)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * replace shadow with border ([56b2078](https://github.com/ho-nl/m2-pwa/commit/56b20786920c5c73faf35c8fbde425c01a88f411))
23
+
24
+
25
+
26
+
27
+
6
28
  # [3.5.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/magento-search@3.4.20...@graphcommerce/magento-search@3.5.0) (2021-11-12)
7
29
 
8
30
 
@@ -16,9 +16,7 @@ const useStyles = makeStyles(
16
16
  marginRight: 0,
17
17
  },
18
18
  },
19
- inputRoot: {
20
- ...theme.typography.body2,
21
- },
19
+ inputRoot: {},
22
20
  fullWidth: {
23
21
  width: '100%',
24
22
  marginRight: 0,
@@ -2,9 +2,8 @@ import { styled } from '@material-ui/core'
2
2
 
3
3
  const SearchDivider = styled('div')(
4
4
  ({ theme }) => ({
5
- boxShadow: '0 5px 4px 0 rgb(3 3 3 / 3%)',
5
+ borderBottom: `1px solid ${theme.palette.divider}`,
6
6
  width: '100%',
7
- height: 16,
8
7
  marginTop: theme.spacings.md,
9
8
  marginBottom: theme.spacings.md,
10
9
  }),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphcommerce/magento-search",
3
- "version": "3.5.1",
3
+ "version": "3.5.5",
4
4
  "sideEffects": false,
5
5
  "prettier": "@graphcommerce/prettier-config-pwa",
6
6
  "browserslist": [
@@ -22,7 +22,7 @@
22
22
  "dependencies": {
23
23
  "@graphcommerce/graphql": "^2.105.5",
24
24
  "@graphcommerce/image": "^2.105.4",
25
- "@graphcommerce/next-ui": "^3.17.1",
25
+ "@graphcommerce/next-ui": "^3.19.0",
26
26
  "@graphcommerce/react-hook-form": "^2.104.0",
27
27
  "@lingui/macro": "^3.12.1",
28
28
  "@material-ui/core": "^4.12.3",
@@ -30,5 +30,5 @@
30
30
  "react": "^17.0.2",
31
31
  "react-dom": "^17.0.2"
32
32
  },
33
- "gitHead": "e8578cc336e58d896531179f5fcb6973e8a983ce"
33
+ "gitHead": "f079c0b5b96dd1a048ca4d3c1d07916353c6bc33"
34
34
  }