@graphcommerce/magento-search 4.1.1 → 4.1.4

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
@@ -1,5 +1,40 @@
1
1
  # Change Log
2
2
 
3
+ ## 4.1.4
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1378](https://github.com/graphcommerce-org/graphcommerce/pull/1378) [`b610a6e40`](https://github.com/graphcommerce-org/graphcommerce/commit/b610a6e4049e8c9e8b5d2aeff31b8e1bfc24abe5) Thanks [@paales](https://github.com/paales)! - Pin all versions internally so we can’t end up in an unfixable state for the user
8
+
9
+ - Updated dependencies [[`b610a6e40`](https://github.com/graphcommerce-org/graphcommerce/commit/b610a6e4049e8c9e8b5d2aeff31b8e1bfc24abe5), [`22ff9df16`](https://github.com/graphcommerce-org/graphcommerce/commit/22ff9df1677742ae8e07d9b7e5b12fbb487580dc)]:
10
+ - @graphcommerce/graphql@3.0.7
11
+ - @graphcommerce/image@3.1.3
12
+ - @graphcommerce/next-ui@4.5.1
13
+ - @graphcommerce/react-hook-form@3.0.7
14
+
15
+ ## 4.1.3
16
+
17
+ ### Patch Changes
18
+
19
+ - [#1369](https://github.com/graphcommerce-org/graphcommerce/pull/1369) [`ae6449502`](https://github.com/graphcommerce-org/graphcommerce/commit/ae64495024a455bbe5188588604368c1542840c9) Thanks [@paales](https://github.com/paales)! - Upgraded dependencies
20
+
21
+ - Updated dependencies [[`892018809`](https://github.com/graphcommerce-org/graphcommerce/commit/8920188093d0422ec50580e408dc28ac5f93e46a), [`892018809`](https://github.com/graphcommerce-org/graphcommerce/commit/8920188093d0422ec50580e408dc28ac5f93e46a), [`ae6449502`](https://github.com/graphcommerce-org/graphcommerce/commit/ae64495024a455bbe5188588604368c1542840c9), [`892018809`](https://github.com/graphcommerce-org/graphcommerce/commit/8920188093d0422ec50580e408dc28ac5f93e46a), [`892018809`](https://github.com/graphcommerce-org/graphcommerce/commit/8920188093d0422ec50580e408dc28ac5f93e46a)]:
22
+ - @graphcommerce/graphql@3.0.6
23
+ - @graphcommerce/next-ui@4.5.0
24
+ - @graphcommerce/image@3.1.2
25
+ - @graphcommerce/react-hook-form@3.0.6
26
+
27
+ ## 4.1.2
28
+
29
+ ### Patch Changes
30
+
31
+ - [#1353](https://github.com/graphcommerce-org/graphcommerce/pull/1353) [`0e5ee7ba8`](https://github.com/graphcommerce-org/graphcommerce/commit/0e5ee7ba89698e5e711001e846ed182528060cba) Thanks [@paales](https://github.com/paales)! - Eslint: enable rules that were previously disabled and make fixes
32
+
33
+ * [#1353](https://github.com/graphcommerce-org/graphcommerce/pull/1353) [`5fa60655c`](https://github.com/graphcommerce-org/graphcommerce/commit/5fa60655c85ff3b3debe663b94450cbff5c52520) Thanks [@paales](https://github.com/paales)! - Reduce the allowed props of the SearchLink component
34
+
35
+ * Updated dependencies [[`49a2d6617`](https://github.com/graphcommerce-org/graphcommerce/commit/49a2d661712e1787fba46c6195f7b559189e23d9), [`f67da3cfb`](https://github.com/graphcommerce-org/graphcommerce/commit/f67da3cfbe2dcf5ea23519d088c5aa0074029182), [`218766869`](https://github.com/graphcommerce-org/graphcommerce/commit/218766869f7468c067a590857c942f3819f8add4), [`0e5ee7ba8`](https://github.com/graphcommerce-org/graphcommerce/commit/0e5ee7ba89698e5e711001e846ed182528060cba), [`829b8690b`](https://github.com/graphcommerce-org/graphcommerce/commit/829b8690bc5d0a46e596299e4120e9837a9f179c)]:
36
+ - @graphcommerce/next-ui@4.4.0
37
+
3
38
  ## 4.1.1
4
39
 
5
40
  ### Patch Changes
@@ -9,7 +9,7 @@ import { Link, LinkProps } from '@mui/material'
9
9
  import PageLink from 'next/link'
10
10
  import { SetRequired } from 'type-fest'
11
11
 
12
- export type SearchLinknProps = SetRequired<LinkProps, 'href'>
12
+ export type SearchLinkProps = SetRequired<Pick<LinkProps, 'href' | 'sx' | 'children'>, 'href'>
13
13
 
14
14
  const name = 'SearchLink' as const
15
15
  const parts = ['root', 'text', 'svg'] as const
@@ -22,7 +22,7 @@ const { classes } = extendableComponent(name, parts)
22
22
  * const MyComponent = () => <SearchLink href='/search' />
23
23
  * ```
24
24
  */
25
- export function SearchLink(props: SearchLinknProps) {
25
+ export function SearchLink(props: SearchLinkProps) {
26
26
  const { href, sx = [], children, ...linkProps } = props
27
27
 
28
28
  const fabSize = useFabSize('responsive')
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": "4.1.1",
5
+ "version": "4.1.4",
6
6
  "sideEffects": false,
7
7
  "prettier": "@graphcommerce/prettier-config-pwa",
8
8
  "eslintConfig": {
@@ -12,22 +12,22 @@
12
12
  }
13
13
  },
14
14
  "devDependencies": {
15
- "@graphcommerce/eslint-config-pwa": "^4.0.5",
16
- "@graphcommerce/prettier-config-pwa": "^4.0.3",
15
+ "@graphcommerce/eslint-config-pwa": "^4.1.4",
16
+ "@graphcommerce/prettier-config-pwa": "^4.0.5",
17
17
  "@graphcommerce/typescript-config-pwa": "^4.0.2",
18
- "@playwright/test": "^1.19.2"
18
+ "@playwright/test": "^1.20.1",
19
+ "type-fest": "2.12.1"
19
20
  },
20
21
  "dependencies": {
21
- "@graphcommerce/graphql": "^3.0.4",
22
- "@graphcommerce/image": "^3.1.1",
23
- "@graphcommerce/next-ui": "^4.2.4",
24
- "@graphcommerce/react-hook-form": "^3.0.4",
25
- "type-fest": "^2.12.0"
22
+ "@graphcommerce/graphql": "3.0.7",
23
+ "@graphcommerce/image": "3.1.3",
24
+ "@graphcommerce/next-ui": "4.5.1",
25
+ "@graphcommerce/react-hook-form": "3.0.7"
26
26
  },
27
27
  "peerDependencies": {
28
28
  "@lingui/macro": "^3.13.2",
29
- "@mui/material": "^5.4.1",
30
- "next": "^12.0.10",
29
+ "@mui/material": "5.5.3",
30
+ "next": "12.1.2",
31
31
  "react": "^17.0.2",
32
32
  "react-dom": "^17.0.2"
33
33
  }