@graphcommerce/magento-product 3.8.9 → 3.8.13

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
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [3.8.11](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/magento-product@3.8.10...@graphcommerce/magento-product@3.8.11) (2022-02-03)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Allow style overrides for product page description ([4651293](https://github.com/ho-nl/m2-pwa/commit/4651293b5940f5c4f472f4a3aa679a42852f6615))
12
+
13
+
14
+
15
+
16
+
6
17
  # [3.8.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/magento-product@3.7.29...@graphcommerce/magento-product@3.8.0) (2022-01-03)
7
18
 
8
19
 
@@ -1,4 +1,4 @@
1
- import { ColumnTwoWithTop, ColumnTwoWithTopProps } from '@graphcommerce/next-ui'
1
+ import { ColumnTwoWithTop, ColumnTwoWithTopProps, UseStyles } from '@graphcommerce/next-ui'
2
2
  import { makeStyles, Theme, Typography } from '@material-ui/core'
3
3
  import React from 'react'
4
4
  import { ProductPageDescriptionFragment } from './ProductPageDescription.gql'
@@ -33,11 +33,11 @@ const useStyles = makeStyles((theme: Theme) => ({
33
33
  },
34
34
  }))
35
35
 
36
- export type ProductPageDescriptionProps = ProductPageDescriptionFragment &
36
+ export type ProductPageDescriptionProps = UseStyles<typeof useStyles> & ProductPageDescriptionFragment &
37
37
  Omit<ColumnTwoWithTopProps, 'top' | 'left'>
38
38
 
39
39
  export default function ProductPageDescription(props: ProductPageDescriptionProps) {
40
- const classes = useStyles()
40
+ const classes = useStyles(props)
41
41
  const { description, name, right } = props
42
42
 
43
43
  return (
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphcommerce/magento-product",
3
- "version": "3.8.9",
3
+ "version": "3.8.13",
4
4
  "sideEffects": false,
5
5
  "prettier": "@graphcommerce/prettier-config-pwa",
6
6
  "browserslist": [
@@ -21,12 +21,12 @@
21
21
  },
22
22
  "dependencies": {
23
23
  "@apollo/client": "^3.5.6",
24
- "@graphcommerce/framer-scroller": "^1.2.9",
24
+ "@graphcommerce/framer-scroller": "^1.2.12",
25
25
  "@graphcommerce/graphql": "^2.105.13",
26
26
  "@graphcommerce/image": "^2.105.13",
27
- "@graphcommerce/magento-cart": "^3.10.0",
28
- "@graphcommerce/magento-store": "^3.4.9",
29
- "@graphcommerce/next-ui": "^3.25.0",
27
+ "@graphcommerce/magento-cart": "^3.10.3",
28
+ "@graphcommerce/magento-store": "^3.4.12",
29
+ "@graphcommerce/next-ui": "^3.25.3",
30
30
  "@lingui/macro": "^3.13.0",
31
31
  "@material-ui/core": "^4.12.3",
32
32
  "@material-ui/lab": "^4.0.0-alpha.60",
@@ -38,5 +38,5 @@
38
38
  "schema-dts": "^1.0.0",
39
39
  "type-fest": "^2.8.0"
40
40
  },
41
- "gitHead": "64e5665f27e32fde21e5bc3a6d1b322e065d7718"
41
+ "gitHead": "41e42c8cd6f565ab0cbba81a1954a0041dc46768"
42
42
  }