@graphcommerce/magento-wishlist 1.3.0 → 1.3.3
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,44 @@
|
|
|
1
1
|
# @graphcommerce/magento-wishlist
|
|
2
2
|
|
|
3
|
+
## 1.3.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`98ff2334d`](https://github.com/graphcommerce-org/graphcommerce/commit/98ff2334d1b7dedb8bc56ebe6abb50836eefedd3)]:
|
|
8
|
+
- @graphcommerce/magento-customer@4.6.0
|
|
9
|
+
- @graphcommerce/magento-cart@4.4.5
|
|
10
|
+
- @graphcommerce/magento-product-configurable@4.1.16
|
|
11
|
+
- @graphcommerce/magento-product@4.4.9
|
|
12
|
+
|
|
13
|
+
## 1.3.2
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- Updated dependencies [[`c877e438a`](https://github.com/graphcommerce-org/graphcommerce/commit/c877e438a48f30204fa3e36b611906a546e1cf5c), [`371e6cf52`](https://github.com/graphcommerce-org/graphcommerce/commit/371e6cf52916a3b6c44192bd40cc8271bd608832), [`4143483f3`](https://github.com/graphcommerce-org/graphcommerce/commit/4143483f37c038d2bbf218be2685e27a31a35745)]:
|
|
18
|
+
- @graphcommerce/magento-customer@4.5.4
|
|
19
|
+
- @graphcommerce/next-ui@4.10.0
|
|
20
|
+
- @graphcommerce/magento-cart@4.4.4
|
|
21
|
+
- @graphcommerce/magento-product-configurable@4.1.15
|
|
22
|
+
- @graphcommerce/magento-product@4.4.8
|
|
23
|
+
- @graphcommerce/magento-store@4.2.11
|
|
24
|
+
|
|
25
|
+
## 1.3.1
|
|
26
|
+
|
|
27
|
+
### Patch Changes
|
|
28
|
+
|
|
29
|
+
- [#1490](https://github.com/graphcommerce-org/graphcommerce/pull/1490) [`d311ef48b`](https://github.com/graphcommerce-org/graphcommerce/commit/d311ef48bb3e97806d992af5516d6b7f183ec9cb) Thanks [@paales](https://github.com/paales)! - upgraded packages
|
|
30
|
+
|
|
31
|
+
- Updated dependencies [[`8a626ecf7`](https://github.com/graphcommerce-org/graphcommerce/commit/8a626ecf7ed00c46a28088e0b9bae00a4e1ae019), [`a9213f1f5`](https://github.com/graphcommerce-org/graphcommerce/commit/a9213f1f5a410d217768386ccb6d9b5ce7bd5782), [`d311ef48b`](https://github.com/graphcommerce-org/graphcommerce/commit/d311ef48bb3e97806d992af5516d6b7f183ec9cb)]:
|
|
32
|
+
- @graphcommerce/magento-customer@4.5.3
|
|
33
|
+
- @graphcommerce/next-ui@4.9.0
|
|
34
|
+
- @graphcommerce/graphql@3.2.1
|
|
35
|
+
- @graphcommerce/graphql-mesh@4.1.4
|
|
36
|
+
- @graphcommerce/image@3.1.7
|
|
37
|
+
- @graphcommerce/magento-cart@4.4.3
|
|
38
|
+
- @graphcommerce/magento-product@4.4.7
|
|
39
|
+
- @graphcommerce/magento-product-configurable@4.1.14
|
|
40
|
+
- @graphcommerce/magento-store@4.2.10
|
|
41
|
+
|
|
3
42
|
## 1.3.0
|
|
4
43
|
|
|
5
44
|
### Minor Changes
|
|
@@ -41,13 +41,15 @@ function WishlistFabContent(props: WishlistFabContentProps) {
|
|
|
41
41
|
{...FabProps}
|
|
42
42
|
sx={sx}
|
|
43
43
|
>
|
|
44
|
-
{
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
44
|
+
<NoSsr fallback={wishlistIcon}>
|
|
45
|
+
{activeWishlist ? (
|
|
46
|
+
<DesktopHeaderBadge color='primary' variant='dot' overlap='circular'>
|
|
47
|
+
{wishlistIcon}
|
|
48
|
+
</DesktopHeaderBadge>
|
|
49
|
+
) : (
|
|
50
|
+
wishlistIcon
|
|
51
|
+
)}
|
|
52
|
+
</NoSsr>
|
|
51
53
|
</Fab>
|
|
52
54
|
</PageLink>
|
|
53
55
|
)
|
|
@@ -61,7 +61,7 @@ export function ProductAddToCart(
|
|
|
61
61
|
required={required.quantity}
|
|
62
62
|
inputProps={{ min: 1 }}
|
|
63
63
|
{...muiRegister('quantity', { required: required.quantity })}
|
|
64
|
-
helperText={formState.isSubmitted && formState.errors.quantity}
|
|
64
|
+
helperText={formState.isSubmitted && formState.errors.quantity?.message}
|
|
65
65
|
disabled={formState.isSubmitting}
|
|
66
66
|
size='small'
|
|
67
67
|
sx={{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graphcommerce/magento-wishlist",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.3",
|
|
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.8",
|
|
17
17
|
"@graphcommerce/prettier-config-pwa": "^4.0.6",
|
|
18
18
|
"@graphcommerce/typescript-config-pwa": "^4.0.3",
|
|
19
19
|
"@playwright/test": "^1.21.1"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@graphcommerce/graphql": "3.2.
|
|
23
|
-
"@graphcommerce/graphql-mesh": "4.1.
|
|
24
|
-
"@graphcommerce/image": "3.1.
|
|
25
|
-
"@graphcommerce/magento-cart": "4.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.
|
|
22
|
+
"@graphcommerce/graphql": "3.2.1",
|
|
23
|
+
"@graphcommerce/graphql-mesh": "4.1.4",
|
|
24
|
+
"@graphcommerce/image": "3.1.7",
|
|
25
|
+
"@graphcommerce/magento-cart": "4.4.5",
|
|
26
|
+
"@graphcommerce/magento-customer": "4.6.0",
|
|
27
|
+
"@graphcommerce/magento-product": "4.4.9",
|
|
28
|
+
"@graphcommerce/magento-product-configurable": "4.1.16",
|
|
29
|
+
"@graphcommerce/magento-store": "4.2.11",
|
|
30
|
+
"@graphcommerce/next-ui": "4.10.0"
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|
|
33
33
|
"@lingui/react": "^3.13.2",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"@mui/material": "^5.5.3",
|
|
36
36
|
"framer-motion": "^6.2.4",
|
|
37
37
|
"next": "^12.1.2",
|
|
38
|
-
"react": "^
|
|
39
|
-
"react-dom": "^
|
|
38
|
+
"react": "^18.0.0",
|
|
39
|
+
"react-dom": "^18.0.0"
|
|
40
40
|
}
|
|
41
41
|
}
|