@graphcommerce/magento-wishlist 9.0.4-canary.8 → 9.0.4
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 +7 -11
- package/components/ProductWishlistChip/ProductWishlistChip.tsx +3 -1
- package/components/ProductWishlistChip/ProductWishlistChipDetail.tsx +3 -1
- package/components/ProductWishlistChip/ProductWishlistIconButton.tsx +2 -2
- package/components/WishlistFab/WishlistFab.tsx +1 -1
- package/components/WishlistItemActionCard/ConfigurableWishlistItemAction.tsx +1 -1
- package/components/WishlistItemActionCard/WishlistItemActionCard.tsx +1 -1
- package/components/WishlistMenuFabItem/WishlistMenuFabItem.tsx +1 -1
- package/package.json +15 -15
- package/plugins/BundleWishlistItemActionCard.tsx +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,22 +1,18 @@
|
|
|
1
1
|
# @graphcommerce/magento-wishlist
|
|
2
2
|
|
|
3
|
-
## 9.0.4
|
|
3
|
+
## 9.0.4
|
|
4
4
|
|
|
5
|
-
## 9.0.
|
|
5
|
+
## 9.0.3
|
|
6
6
|
|
|
7
|
-
## 9.0.
|
|
7
|
+
## 9.0.3-canary.0
|
|
8
8
|
|
|
9
|
-
## 9.0.
|
|
9
|
+
## 9.0.2
|
|
10
10
|
|
|
11
|
-
## 9.0.
|
|
11
|
+
## 9.0.2-canary.0
|
|
12
12
|
|
|
13
|
-
## 9.0.
|
|
13
|
+
## 9.0.1
|
|
14
14
|
|
|
15
|
-
## 9.0.
|
|
16
|
-
|
|
17
|
-
## 9.0.4-canary.1
|
|
18
|
-
|
|
19
|
-
## 9.0.4-canary.0
|
|
15
|
+
## 9.0.1-canary.1
|
|
20
16
|
|
|
21
17
|
## 9.0.0
|
|
22
18
|
|
|
@@ -2,7 +2,9 @@ import React from 'react'
|
|
|
2
2
|
import type { ProductWishlistChipProps } from './ProductWishlistIconButton'
|
|
3
3
|
import { ProductWishlistIconButton } from './ProductWishlistIconButton'
|
|
4
4
|
|
|
5
|
-
/**
|
|
5
|
+
/**
|
|
6
|
+
* @deprecated use ProductWishlistIconButton with an sx prop.
|
|
7
|
+
*/
|
|
6
8
|
export const ProductWishlistChipDetail = React.memo<ProductWishlistChipProps>((props) => (
|
|
7
9
|
<ProductWishlistIconButton sx={{ boxShadow: 6 }} {...props} />
|
|
8
10
|
))
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import type { ProductListItemFragment } from '@graphcommerce/magento-product'
|
|
2
2
|
import type { IconSvgProps } from '@graphcommerce/next-ui'
|
|
3
3
|
import {
|
|
4
|
+
IconSvg,
|
|
5
|
+
MessageSnackbar,
|
|
4
6
|
extendableComponent,
|
|
5
7
|
iconChevronRight,
|
|
6
8
|
iconHeart,
|
|
7
|
-
IconSvg,
|
|
8
|
-
MessageSnackbar,
|
|
9
9
|
} from '@graphcommerce/next-ui'
|
|
10
10
|
import { i18n } from '@lingui/core'
|
|
11
11
|
import { Trans } from '@lingui/react'
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { DesktopHeaderBadge, extendableComponent, iconHeart
|
|
1
|
+
import { DesktopHeaderBadge, IconSvg, extendableComponent, iconHeart } from '@graphcommerce/next-ui'
|
|
2
2
|
import { i18n } from '@lingui/core'
|
|
3
3
|
import type { BadgeProps, FabProps as FabPropsType, SxProps, Theme } from '@mui/material'
|
|
4
4
|
import { Fab, NoSsr } from '@mui/material'
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { productLink } from '@graphcommerce/magento-product/hooks/useProductLink'
|
|
2
2
|
import { type WishlistItemActionCardProps } from '@graphcommerce/magento-wishlist'
|
|
3
|
-
import {
|
|
3
|
+
import { IconSvg, iconChevronRight, nonNullable } from '@graphcommerce/next-ui'
|
|
4
4
|
import { Trans } from '@lingui/react'
|
|
5
5
|
import { Button } from '@mui/material'
|
|
6
6
|
import { AddWishlistItemToCart } from '../WishlistItem/AddWishlistItemToCart'
|
|
@@ -5,7 +5,7 @@ import type { InputMaybe } from '@graphcommerce/next-config'
|
|
|
5
5
|
import type { ActionCardProps } from '@graphcommerce/next-ui'
|
|
6
6
|
import { ActionCard, actionCardImageSizes, extendableComponent } from '@graphcommerce/next-ui'
|
|
7
7
|
import { Trans } from '@lingui/react'
|
|
8
|
-
import type {
|
|
8
|
+
import type { SxProps, Theme, ButtonProps } from '@mui/material'
|
|
9
9
|
import { Button, Link } from '@mui/material'
|
|
10
10
|
import type { ReactNode } from 'react'
|
|
11
11
|
import { useRemoveProductsFromWishlist } from '../../hooks'
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { IconSvg, MenuFabSecondaryItem, iconHeart } from '@graphcommerce/next-ui'
|
|
2
2
|
import type { SxProps, Theme } from '@mui/material'
|
|
3
3
|
import { Badge, NoSsr } from '@mui/material'
|
|
4
4
|
import type { MouseEventHandler } from 'react'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graphcommerce/magento-wishlist",
|
|
3
|
-
"version": "9.0.4
|
|
3
|
+
"version": "9.0.4",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"prettier": "@graphcommerce/prettier-config-pwa",
|
|
6
6
|
"browserslist": [
|
|
@@ -13,20 +13,20 @@
|
|
|
13
13
|
}
|
|
14
14
|
},
|
|
15
15
|
"peerDependencies": {
|
|
16
|
-
"@graphcommerce/ecommerce-ui": "^9.0.4
|
|
17
|
-
"@graphcommerce/eslint-config-pwa": "^9.0.4
|
|
18
|
-
"@graphcommerce/graphql": "^9.0.4
|
|
19
|
-
"@graphcommerce/graphql-mesh": "^9.0.4
|
|
20
|
-
"@graphcommerce/image": "^9.0.4
|
|
21
|
-
"@graphcommerce/magento-cart": "^9.0.4
|
|
22
|
-
"@graphcommerce/magento-customer": "^9.0.4
|
|
23
|
-
"@graphcommerce/magento-product": "^9.0.4
|
|
24
|
-
"@graphcommerce/magento-product-configurable": "^9.0.4
|
|
25
|
-
"@graphcommerce/magento-store": "^9.0.4
|
|
26
|
-
"@graphcommerce/next-config": "^9.0.4
|
|
27
|
-
"@graphcommerce/next-ui": "^9.0.4
|
|
28
|
-
"@graphcommerce/prettier-config-pwa": "^9.0.4
|
|
29
|
-
"@graphcommerce/typescript-config-pwa": "^9.0.4
|
|
16
|
+
"@graphcommerce/ecommerce-ui": "^9.0.4",
|
|
17
|
+
"@graphcommerce/eslint-config-pwa": "^9.0.4",
|
|
18
|
+
"@graphcommerce/graphql": "^9.0.4",
|
|
19
|
+
"@graphcommerce/graphql-mesh": "^9.0.4",
|
|
20
|
+
"@graphcommerce/image": "^9.0.4",
|
|
21
|
+
"@graphcommerce/magento-cart": "^9.0.4",
|
|
22
|
+
"@graphcommerce/magento-customer": "^9.0.4",
|
|
23
|
+
"@graphcommerce/magento-product": "^9.0.4",
|
|
24
|
+
"@graphcommerce/magento-product-configurable": "^9.0.4",
|
|
25
|
+
"@graphcommerce/magento-store": "^9.0.4",
|
|
26
|
+
"@graphcommerce/next-config": "^9.0.4",
|
|
27
|
+
"@graphcommerce/next-ui": "^9.0.4",
|
|
28
|
+
"@graphcommerce/prettier-config-pwa": "^9.0.4",
|
|
29
|
+
"@graphcommerce/typescript-config-pwa": "^9.0.4",
|
|
30
30
|
"@lingui/core": "^4.2.1",
|
|
31
31
|
"@lingui/macro": "^4.2.1",
|
|
32
32
|
"@lingui/react": "^4.2.1",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { productLink } from '@graphcommerce/magento-product/hooks/useProductLink'
|
|
2
2
|
import type { WishlistItemActionCardProps } from '@graphcommerce/magento-wishlist'
|
|
3
3
|
import type { PluginConfig, PluginProps } from '@graphcommerce/next-config'
|
|
4
|
-
import {
|
|
4
|
+
import { IconSvg, iconChevronRight } from '@graphcommerce/next-ui'
|
|
5
5
|
import { Trans } from '@lingui/react'
|
|
6
6
|
import { Button } from '@mui/material'
|
|
7
7
|
|