@graphcommerce/magento-wishlist 1.3.6 → 1.3.9
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 +39 -0
- package/components/WishlistFab/WishlistFab.tsx +9 -1
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,44 @@
|
|
|
1
1
|
# @graphcommerce/magento-wishlist
|
|
2
2
|
|
|
3
|
+
## 1.3.9
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`18054c441`](https://github.com/graphcommerce-org/graphcommerce/commit/18054c441962ba750bed3acc39ab46c8d3a341ce), [`c5c539c44`](https://github.com/graphcommerce-org/graphcommerce/commit/c5c539c44eeac524cd62ce649e132d2e00333794), [`6f69bc54c`](https://github.com/graphcommerce-org/graphcommerce/commit/6f69bc54c6e0224452817c532ae58d9c332b61ea), [`21886d6fa`](https://github.com/graphcommerce-org/graphcommerce/commit/21886d6fa64a48d9e932bfaf8d138c9b13c36e43)]:
|
|
8
|
+
- @graphcommerce/graphql@3.4.1
|
|
9
|
+
- @graphcommerce/graphql-mesh@4.1.5
|
|
10
|
+
- @graphcommerce/magento-customer@4.7.2
|
|
11
|
+
- @graphcommerce/magento-product-configurable@4.1.22
|
|
12
|
+
- @graphcommerce/next-ui@4.13.1
|
|
13
|
+
- @graphcommerce/magento-cart@4.5.2
|
|
14
|
+
- @graphcommerce/magento-product@4.4.15
|
|
15
|
+
- @graphcommerce/magento-store@4.2.17
|
|
16
|
+
|
|
17
|
+
## 1.3.8
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [[`8d8fda262`](https://github.com/graphcommerce-org/graphcommerce/commit/8d8fda2623e561cb43441110c67ffa34b692668a), [`d41cff721`](https://github.com/graphcommerce-org/graphcommerce/commit/d41cff7211230561ceeb7786cf75790efd6377cd), [`cefa7b365`](https://github.com/graphcommerce-org/graphcommerce/commit/cefa7b3652b55108d2178927e3c5d98a111cf373)]:
|
|
22
|
+
- @graphcommerce/next-ui@4.13.0
|
|
23
|
+
- @graphcommerce/magento-store@4.2.16
|
|
24
|
+
- @graphcommerce/magento-product-configurable@4.1.21
|
|
25
|
+
- @graphcommerce/magento-cart@4.5.1
|
|
26
|
+
- @graphcommerce/magento-customer@4.7.1
|
|
27
|
+
- @graphcommerce/magento-product@4.4.14
|
|
28
|
+
|
|
29
|
+
## 1.3.7
|
|
30
|
+
|
|
31
|
+
### Patch Changes
|
|
32
|
+
|
|
33
|
+
- Updated dependencies [[`5f927ebdc`](https://github.com/graphcommerce-org/graphcommerce/commit/5f927ebdc6f0331833e02b96e4f169bfe475ac6b), [`c87a28e7d`](https://github.com/graphcommerce-org/graphcommerce/commit/c87a28e7dad87bffd0bd125ad5fdca65aaa389cc), [`c756f42e5`](https://github.com/graphcommerce-org/graphcommerce/commit/c756f42e503761a497e4a5a7a02d02141df231c3)]:
|
|
34
|
+
- @graphcommerce/graphql@3.4.0
|
|
35
|
+
- @graphcommerce/magento-cart@4.5.0
|
|
36
|
+
- @graphcommerce/magento-customer@4.7.0
|
|
37
|
+
- @graphcommerce/next-ui@4.12.0
|
|
38
|
+
- @graphcommerce/magento-product@4.4.13
|
|
39
|
+
- @graphcommerce/magento-product-configurable@4.1.20
|
|
40
|
+
- @graphcommerce/magento-store@4.2.15
|
|
41
|
+
|
|
3
42
|
## 1.3.6
|
|
4
43
|
|
|
5
44
|
### Patch Changes
|
|
@@ -74,7 +74,15 @@ export function WishlistFab(props: WishlistFabProps) {
|
|
|
74
74
|
activeWishlist = wishlist.length > 0
|
|
75
75
|
}
|
|
76
76
|
|
|
77
|
-
if (!isWishlistEnabled
|
|
77
|
+
if (!isWishlistEnabled) return null
|
|
78
|
+
|
|
79
|
+
if (hideForGuest) {
|
|
80
|
+
return (
|
|
81
|
+
<NoSsr fallback={null}>
|
|
82
|
+
<WishlistFabContent {...props} activeWishlist={activeWishlist} />
|
|
83
|
+
</NoSsr>
|
|
84
|
+
)
|
|
85
|
+
}
|
|
78
86
|
|
|
79
87
|
return (
|
|
80
88
|
<NoSsr fallback={<WishlistFabContent {...props} activeWishlist={false} />}>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graphcommerce/magento-wishlist",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.9",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"prettier": "@graphcommerce/prettier-config-pwa",
|
|
6
6
|
"browserslist": [
|
|
@@ -13,21 +13,21 @@
|
|
|
13
13
|
}
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
|
-
"@graphcommerce/eslint-config-pwa": "^4.1.
|
|
16
|
+
"@graphcommerce/eslint-config-pwa": "^4.1.9",
|
|
17
17
|
"@graphcommerce/prettier-config-pwa": "^4.0.6",
|
|
18
|
-
"@graphcommerce/typescript-config-pwa": "^4.0.
|
|
18
|
+
"@graphcommerce/typescript-config-pwa": "^4.0.4",
|
|
19
19
|
"@playwright/test": "^1.21.1"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@graphcommerce/graphql": "3.
|
|
23
|
-
"@graphcommerce/graphql-mesh": "4.1.
|
|
22
|
+
"@graphcommerce/graphql": "3.4.1",
|
|
23
|
+
"@graphcommerce/graphql-mesh": "4.1.5",
|
|
24
24
|
"@graphcommerce/image": "3.1.7",
|
|
25
|
-
"@graphcommerce/magento-cart": "4.
|
|
26
|
-
"@graphcommerce/magento-customer": "4.
|
|
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.5.2",
|
|
26
|
+
"@graphcommerce/magento-customer": "4.7.2",
|
|
27
|
+
"@graphcommerce/magento-product": "4.4.15",
|
|
28
|
+
"@graphcommerce/magento-product-configurable": "4.1.22",
|
|
29
|
+
"@graphcommerce/magento-store": "4.2.17",
|
|
30
|
+
"@graphcommerce/next-ui": "4.13.1"
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|
|
33
33
|
"@lingui/react": "^3.13.2",
|