@graphcommerce/magento-product 4.1.0 → 4.1.1

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,13 @@
1
1
  # Change Log
2
2
 
3
+ ## 4.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1337](https://github.com/graphcommerce-org/graphcommerce/pull/1337) [`bc5966129`](https://github.com/graphcommerce-org/graphcommerce/commit/bc5966129351a641db4deb3b4f04fe942c06f16b) Thanks [@paales](https://github.com/paales)! - Make sure any new types added to CustomizableProductInterface can be added and don’t immediately crash any query
8
+
9
+ * [#1337](https://github.com/graphcommerce-org/graphcommerce/pull/1337) [`645986e30`](https://github.com/graphcommerce-org/graphcommerce/commit/645986e306a38d3bb5a284ba04a9004060c592e6) Thanks [@paales](https://github.com/paales)! - make sure the fontSize isn’t required for ProductPageDescription
10
+
3
11
  ## 4.1.0
4
12
 
5
13
  ### Minor Changes
@@ -1,5 +1,6 @@
1
- fragment ProductCustomizable on CustomizableProductInterface {
1
+ fragment ProductCustomizable on CustomizableProductInterface @injectable {
2
2
  options {
3
+ uid
3
4
  __typename
4
5
  ...CustomizableAreaOption
5
6
  ...CustomizableCheckboxOption
@@ -11,7 +11,7 @@ import { ProductPageDescriptionFragment } from './ProductPageDescription.gql'
11
11
  export type ProductPageDescriptionProps = ProductPageDescriptionFragment &
12
12
  Omit<ColumnTwoWithTopProps, 'top' | 'left'> & {
13
13
  sx?: SxProps<Theme>
14
- fontSize: 'responsive' | Variant
14
+ fontSize?: 'responsive' | Variant
15
15
  }
16
16
 
17
17
  const componentName = 'ProductPageDescription'
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": "4.1.0",
5
+ "version": "4.1.1",
6
6
  "sideEffects": false,
7
7
  "prettier": "@graphcommerce/prettier-config-pwa",
8
8
  "eslintConfig": {