@graphcommerce/magento-wishlist 1.5.1 → 1.5.2
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,17 @@
|
|
|
1
1
|
# @graphcommerce/magento-wishlist
|
|
2
2
|
|
|
3
|
+
## 1.5.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`43822fd61`](https://github.com/graphcommerce-org/graphcommerce/commit/43822fd61c949215b8ddce9fb37d09f29b638426), [`3a619b70d`](https://github.com/graphcommerce-org/graphcommerce/commit/3a619b70d082804b8de46a8e8232f9431479a8b7), [`3a619b70d`](https://github.com/graphcommerce-org/graphcommerce/commit/3a619b70d082804b8de46a8e8232f9431479a8b7)]:
|
|
8
|
+
- @graphcommerce/next-ui@4.20.0
|
|
9
|
+
- @graphcommerce/magento-customer@4.9.4
|
|
10
|
+
- @graphcommerce/magento-product-configurable@4.1.31
|
|
11
|
+
- @graphcommerce/magento-cart@4.6.8
|
|
12
|
+
- @graphcommerce/magento-product@4.4.24
|
|
13
|
+
- @graphcommerce/magento-store@4.2.26
|
|
14
|
+
|
|
3
15
|
## 1.5.1
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
@@ -97,7 +97,7 @@ export function ProductAddToCart(
|
|
|
97
97
|
|
|
98
98
|
<AnimatePresence initial={false}>
|
|
99
99
|
{data?.addProductsToCart?.user_errors.map((e) => (
|
|
100
|
-
<AnimatedRow key={e?.code}>
|
|
100
|
+
<AnimatedRow layout key={e?.code}>
|
|
101
101
|
<Alert severity='error'>{e?.message}</Alert>
|
|
102
102
|
</AnimatedRow>
|
|
103
103
|
))}
|
|
@@ -23,7 +23,7 @@ export function WishlistItems(props: WishlistProps) {
|
|
|
23
23
|
|
|
24
24
|
const productData = item?.product ? item?.product : item
|
|
25
25
|
return (
|
|
26
|
-
<AnimatedRow key={item.id || item.uid}>
|
|
26
|
+
<AnimatedRow layout key={item.id || item.uid}>
|
|
27
27
|
<RenderType renderer={renderer} wishlistItemId={item.id || null} {...productData} />
|
|
28
28
|
</AnimatedRow>
|
|
29
29
|
)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graphcommerce/magento-wishlist",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.2",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"prettier": "@graphcommerce/prettier-config-pwa",
|
|
6
6
|
"browserslist": [
|
|
@@ -22,12 +22,12 @@
|
|
|
22
22
|
"@graphcommerce/graphql": "3.4.5",
|
|
23
23
|
"@graphcommerce/graphql-mesh": "4.1.6",
|
|
24
24
|
"@graphcommerce/image": "3.1.7",
|
|
25
|
-
"@graphcommerce/magento-cart": "4.6.
|
|
26
|
-
"@graphcommerce/magento-customer": "4.9.
|
|
27
|
-
"@graphcommerce/magento-product": "4.4.
|
|
28
|
-
"@graphcommerce/magento-product-configurable": "4.1.
|
|
29
|
-
"@graphcommerce/magento-store": "4.2.
|
|
30
|
-
"@graphcommerce/next-ui": "4.
|
|
25
|
+
"@graphcommerce/magento-cart": "4.6.8",
|
|
26
|
+
"@graphcommerce/magento-customer": "4.9.4",
|
|
27
|
+
"@graphcommerce/magento-product": "4.4.24",
|
|
28
|
+
"@graphcommerce/magento-product-configurable": "4.1.31",
|
|
29
|
+
"@graphcommerce/magento-store": "4.2.26",
|
|
30
|
+
"@graphcommerce/next-ui": "4.20.0"
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|
|
33
33
|
"@lingui/react": "^3.13.2",
|