@graphcommerce/magento-product 9.1.0-canary.36 → 9.1.0-canary.37
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,11 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
+
## 9.1.0-canary.37
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- [`984f5e3`](https://github.com/graphcommerce-org/graphcommerce/commit/984f5e37b9cc83897782f95b8fe652855986a452) - Solve plugin issue with ProductListPrice ([@paales](https://github.com/paales))
|
8
|
+
|
3
9
|
## 9.1.0-canary.36
|
4
10
|
|
5
11
|
### Patch Changes
|
@@ -20,7 +20,7 @@ import type { ProductListItemTitleAndPriceProps } from './ProductListItemTitleAn
|
|
20
20
|
import { ProductListItemTitleAndPrice } from './ProductListItemTitleAndPrice'
|
21
21
|
import { ProductNewLabel } from './ProductNewLabel'
|
22
22
|
|
23
|
-
const { classes
|
23
|
+
const { classes } = extendableComponent('ProductListItem', [
|
24
24
|
'root',
|
25
25
|
'item',
|
26
26
|
'title',
|
@@ -208,8 +208,6 @@ export function ProductListItem(props: ProductListItemProps) {
|
|
208
208
|
)
|
209
209
|
}
|
210
210
|
|
211
|
-
ProductListItem.selectors = { ...selectors, ...ProductListPrice.selectors }
|
212
|
-
|
213
211
|
/** @deprecated */
|
214
212
|
export type OverlayAreaKeys = ProductListItemImageAreaKeys
|
215
213
|
/** @deprecated */
|
@@ -12,7 +12,7 @@ export const productListPrice = extendableComponent('ProductListPrice', [
|
|
12
12
|
'suffix',
|
13
13
|
] as const)
|
14
14
|
|
15
|
-
const { classes
|
15
|
+
const { classes } = productListPrice
|
16
16
|
|
17
17
|
export type ProductListPriceProps = ProductListPriceFragment &
|
18
18
|
Pick<TypographyProps, 'sx'> & {
|
@@ -84,5 +84,3 @@ export function ProductListPrice(props: ProductListPriceProps) {
|
|
84
84
|
</Box>
|
85
85
|
)
|
86
86
|
}
|
87
|
-
|
88
|
-
ProductListPrice.selectors = selectors
|
package/package.json
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
"name": "@graphcommerce/magento-product",
|
3
3
|
"homepage": "https://www.graphcommerce.org/",
|
4
4
|
"repository": "github:graphcommerce-org/graphcommerce",
|
5
|
-
"version": "9.1.0-canary.
|
5
|
+
"version": "9.1.0-canary.37",
|
6
6
|
"sideEffects": false,
|
7
7
|
"prettier": "@graphcommerce/prettier-config-pwa",
|
8
8
|
"eslintConfig": {
|
@@ -18,18 +18,18 @@
|
|
18
18
|
"typescript": "5.7.2"
|
19
19
|
},
|
20
20
|
"peerDependencies": {
|
21
|
-
"@graphcommerce/ecommerce-ui": "^9.1.0-canary.
|
22
|
-
"@graphcommerce/eslint-config-pwa": "^9.1.0-canary.
|
23
|
-
"@graphcommerce/framer-next-pages": "^9.1.0-canary.
|
24
|
-
"@graphcommerce/framer-scroller": "^9.1.0-canary.
|
25
|
-
"@graphcommerce/graphql": "^9.1.0-canary.
|
26
|
-
"@graphcommerce/graphql-mesh": "^9.1.0-canary.
|
27
|
-
"@graphcommerce/image": "^9.1.0-canary.
|
28
|
-
"@graphcommerce/magento-cart": "^9.1.0-canary.
|
29
|
-
"@graphcommerce/magento-store": "^9.1.0-canary.
|
30
|
-
"@graphcommerce/next-ui": "^9.1.0-canary.
|
31
|
-
"@graphcommerce/prettier-config-pwa": "^9.1.0-canary.
|
32
|
-
"@graphcommerce/typescript-config-pwa": "^9.1.0-canary.
|
21
|
+
"@graphcommerce/ecommerce-ui": "^9.1.0-canary.37",
|
22
|
+
"@graphcommerce/eslint-config-pwa": "^9.1.0-canary.37",
|
23
|
+
"@graphcommerce/framer-next-pages": "^9.1.0-canary.37",
|
24
|
+
"@graphcommerce/framer-scroller": "^9.1.0-canary.37",
|
25
|
+
"@graphcommerce/graphql": "^9.1.0-canary.37",
|
26
|
+
"@graphcommerce/graphql-mesh": "^9.1.0-canary.37",
|
27
|
+
"@graphcommerce/image": "^9.1.0-canary.37",
|
28
|
+
"@graphcommerce/magento-cart": "^9.1.0-canary.37",
|
29
|
+
"@graphcommerce/magento-store": "^9.1.0-canary.37",
|
30
|
+
"@graphcommerce/next-ui": "^9.1.0-canary.37",
|
31
|
+
"@graphcommerce/prettier-config-pwa": "^9.1.0-canary.37",
|
32
|
+
"@graphcommerce/typescript-config-pwa": "^9.1.0-canary.37",
|
33
33
|
"@lingui/core": "^4.2.1",
|
34
34
|
"@lingui/macro": "^4.2.1",
|
35
35
|
"@lingui/react": "^4.2.1",
|