@graphcommerce/magento-search 9.0.0-canary.107 → 9.0.0-canary.108
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,11 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
+
## 9.0.0-canary.108
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- [#2438](https://github.com/graphcommerce-org/graphcommerce/pull/2438) [`cb8d2f0`](https://github.com/graphcommerce-org/graphcommerce/commit/cb8d2f0059d64242260e30ce34655868f204ef4c) - Made all component prop types exported ([@bramvanderholst](https://github.com/bramvanderholst))
|
8
|
+
|
3
9
|
## 9.0.0-canary.107
|
4
10
|
|
5
11
|
## 9.0.0-canary.106
|
@@ -79,7 +79,7 @@ function isParent<U extends TreeItem>(item: U, parent: U): boolean {
|
|
79
79
|
return false
|
80
80
|
}
|
81
81
|
|
82
|
-
type ProductFiltersProCategorySectionSearchProps = Omit<
|
82
|
+
export type ProductFiltersProCategorySectionSearchProps = Omit<
|
83
83
|
ProductFiltersProCategoryAccordionProps,
|
84
84
|
'categoryTree' | 'onChange'
|
85
85
|
> & {
|
@@ -6,7 +6,7 @@ import { useMemo, useState } from 'react'
|
|
6
6
|
import type { ProductFiltersProSearchInputProps } from './ProductFiltersProSearchInput'
|
7
7
|
import { useSearchPageAndParam } from './useSearchPageAndParam'
|
8
8
|
|
9
|
-
type ProductFiltersProSearchFieldProps = ProductFiltersProSearchInputProps & {
|
9
|
+
export type ProductFiltersProSearchFieldProps = ProductFiltersProSearchInputProps & {
|
10
10
|
fab?: FabProps
|
11
11
|
}
|
12
12
|
|
@@ -4,7 +4,7 @@ import { useWatch } from '@graphcommerce/react-hook-form'
|
|
4
4
|
import { Trans } from '@lingui/macro'
|
5
5
|
import { Box } from '@mui/material'
|
6
6
|
|
7
|
-
type ProductFiltersProSearchHeaderProps = {
|
7
|
+
export type ProductFiltersProSearchHeaderProps = {
|
8
8
|
params: ProductListParams
|
9
9
|
/**
|
10
10
|
* Provide a text when there is no term searched
|
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.
|
5
|
+
"version": "9.0.0-canary.108",
|
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.
|
16
|
-
"@graphcommerce/eslint-config-pwa": "^9.0.0-canary.
|
17
|
-
"@graphcommerce/graphql": "^9.0.0-canary.
|
18
|
-
"@graphcommerce/image": "^9.0.0-canary.
|
19
|
-
"@graphcommerce/magento-product": "^9.0.0-canary.
|
20
|
-
"@graphcommerce/magento-store": "^9.0.0-canary.
|
21
|
-
"@graphcommerce/next-ui": "^9.0.0-canary.
|
22
|
-
"@graphcommerce/prettier-config-pwa": "^9.0.0-canary.
|
23
|
-
"@graphcommerce/react-hook-form": "^9.0.0-canary.
|
24
|
-
"@graphcommerce/typescript-config-pwa": "^9.0.0-canary.
|
15
|
+
"@graphcommerce/ecommerce-ui": "^9.0.0-canary.108",
|
16
|
+
"@graphcommerce/eslint-config-pwa": "^9.0.0-canary.108",
|
17
|
+
"@graphcommerce/graphql": "^9.0.0-canary.108",
|
18
|
+
"@graphcommerce/image": "^9.0.0-canary.108",
|
19
|
+
"@graphcommerce/magento-product": "^9.0.0-canary.108",
|
20
|
+
"@graphcommerce/magento-store": "^9.0.0-canary.108",
|
21
|
+
"@graphcommerce/next-ui": "^9.0.0-canary.108",
|
22
|
+
"@graphcommerce/prettier-config-pwa": "^9.0.0-canary.108",
|
23
|
+
"@graphcommerce/react-hook-form": "^9.0.0-canary.108",
|
24
|
+
"@graphcommerce/typescript-config-pwa": "^9.0.0-canary.108",
|
25
25
|
"@lingui/core": "^4.2.1",
|
26
26
|
"@lingui/macro": "^4.2.1",
|
27
27
|
"@lingui/react": "^4.2.1",
|