@graphcommerce/magento-search 9.0.0-canary.100 → 9.0.0-canary.101
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.101
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- [#2380](https://github.com/graphcommerce-org/graphcommerce/pull/2380) [`c17e5f1`](https://github.com/graphcommerce-org/graphcommerce/commit/c17e5f1cf9fb291b9bbf1fca0620c2721dceb331) - Solve issue: Warning: Cannot update a component (`FormAutoSubmitBase`) while rendering a different component (`ActionCardListForm`). ([@paales](https://github.com/paales))
|
8
|
+
|
3
9
|
## 9.0.0-canary.100
|
4
10
|
|
5
11
|
## 9.0.0-canary.99
|
@@ -148,9 +148,9 @@ export function ProductFiltersProCategorySectionSearch(
|
|
148
148
|
})
|
149
149
|
.slice(1)
|
150
150
|
.filter((c) => c.visible)
|
151
|
-
}, [
|
151
|
+
}, [aggregations, currentFilter, menu?.items])
|
152
152
|
|
153
|
-
if (!categoryTree) return null
|
153
|
+
if (!categoryTree.length) return null
|
154
154
|
|
155
155
|
return (
|
156
156
|
<ProductFiltersProCategoryAccordion
|
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.101",
|
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.101",
|
16
|
+
"@graphcommerce/eslint-config-pwa": "^9.0.0-canary.101",
|
17
|
+
"@graphcommerce/graphql": "^9.0.0-canary.101",
|
18
|
+
"@graphcommerce/image": "^9.0.0-canary.101",
|
19
|
+
"@graphcommerce/magento-product": "^9.0.0-canary.101",
|
20
|
+
"@graphcommerce/magento-store": "^9.0.0-canary.101",
|
21
|
+
"@graphcommerce/next-ui": "^9.0.0-canary.101",
|
22
|
+
"@graphcommerce/prettier-config-pwa": "^9.0.0-canary.101",
|
23
|
+
"@graphcommerce/react-hook-form": "^9.0.0-canary.101",
|
24
|
+
"@graphcommerce/typescript-config-pwa": "^9.0.0-canary.101",
|
25
25
|
"@lingui/core": "^4.2.1",
|
26
26
|
"@lingui/macro": "^4.2.1",
|
27
27
|
"@lingui/react": "^4.2.1",
|