@graphcommerce/magento-cart-items 4.13.3 → 4.14.0-canary.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 +10 -2
- package/CartItem/CartItem.tsx +2 -2
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,16 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
## 4.
|
|
3
|
+
## 4.14.0-canary.3
|
|
4
4
|
|
|
5
|
-
## 4.
|
|
5
|
+
## 4.14.0-canary.2
|
|
6
|
+
|
|
7
|
+
### Patch Changes
|
|
8
|
+
|
|
9
|
+
- [#1718](https://github.com/graphcommerce-org/graphcommerce/pull/1718) [`37e86cdc8`](https://github.com/graphcommerce-org/graphcommerce/commit/37e86cdc86ccca3db77d6c59b1e14c8112bb7893) - Remove usage of PropsWithChildren ([@paales](https://github.com/paales))
|
|
10
|
+
|
|
11
|
+
## 4.13.2-canary.1
|
|
12
|
+
|
|
13
|
+
## 4.13.2-canary.0
|
|
6
14
|
|
|
7
15
|
## 4.13.1
|
|
8
16
|
|
package/CartItem/CartItem.tsx
CHANGED
|
@@ -5,15 +5,15 @@ import { Money } from '@graphcommerce/magento-store'
|
|
|
5
5
|
import { responsiveVal, extendableComponent } from '@graphcommerce/next-ui'
|
|
6
6
|
import { Badge, Box, Link, SxProps, Theme } from '@mui/material'
|
|
7
7
|
import PageLink from 'next/link'
|
|
8
|
-
import { PropsWithChildren } from 'react'
|
|
9
8
|
import { CartItemFragment } from '../Api/CartItem.gql'
|
|
10
9
|
import { RemoveItemFromCartFab } from '../RemoveItemFromCart/RemoveItemFromCartFab'
|
|
11
10
|
import { UpdateItemQuantity } from '../UpdateItemQuantity/UpdateItemQuantity'
|
|
12
11
|
|
|
13
12
|
const rowImageSize = responsiveVal(70, 125)
|
|
14
13
|
|
|
15
|
-
export type CartItemProps =
|
|
14
|
+
export type CartItemProps = CartItemFragment & {
|
|
16
15
|
sx?: SxProps<Theme>
|
|
16
|
+
children?: React.ReactNode
|
|
17
17
|
} & OwnerState
|
|
18
18
|
|
|
19
19
|
type OwnerState = { withOptions?: boolean }
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@graphcommerce/magento-cart-items",
|
|
3
3
|
"homepage": "https://www.graphcommerce.org/",
|
|
4
4
|
"repository": "github:graphcommerce-org/graphcommerce",
|
|
5
|
-
"version": "4.
|
|
5
|
+
"version": "4.14.0-canary.3",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"prettier": "@graphcommerce/prettier-config-pwa",
|
|
8
8
|
"eslintConfig": {
|
|
@@ -18,14 +18,14 @@
|
|
|
18
18
|
"@playwright/test": "^1.21.1"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@graphcommerce/graphql": "4.
|
|
22
|
-
"@graphcommerce/image": "4.
|
|
23
|
-
"@graphcommerce/magento-cart": "4.
|
|
24
|
-
"@graphcommerce/magento-customer": "4.
|
|
25
|
-
"@graphcommerce/magento-product": "4.
|
|
26
|
-
"@graphcommerce/magento-store": "4.
|
|
27
|
-
"@graphcommerce/next-ui": "4.
|
|
28
|
-
"@graphcommerce/react-hook-form": "4.
|
|
21
|
+
"@graphcommerce/graphql": "4.31.0-canary.2",
|
|
22
|
+
"@graphcommerce/image": "4.31.0-canary.2",
|
|
23
|
+
"@graphcommerce/magento-cart": "4.14.0-canary.3",
|
|
24
|
+
"@graphcommerce/magento-customer": "4.14.0-canary.3",
|
|
25
|
+
"@graphcommerce/magento-product": "4.14.0-canary.3",
|
|
26
|
+
"@graphcommerce/magento-store": "4.14.0-canary.3",
|
|
27
|
+
"@graphcommerce/next-ui": "4.31.0-canary.2",
|
|
28
|
+
"@graphcommerce/react-hook-form": "4.31.0-canary.2"
|
|
29
29
|
},
|
|
30
30
|
"peerDependencies": {
|
|
31
31
|
"@lingui/react": "^3.13.2",
|