@graphcommerce/magento-product-simple 4.0.58 → 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,27 @@
1
1
  # Change Log
2
2
 
3
+ ## 4.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`48e6522bb`](https://github.com/graphcommerce-org/graphcommerce/commit/48e6522bb9424d4bd77fd77c68065f5625f3ec8d), [`37b1980a0`](https://github.com/graphcommerce-org/graphcommerce/commit/37b1980a04a4a3d77663b404ae83539620cf65b9)]:
8
+ - @graphcommerce/magento-product@4.6.1
9
+ - @graphcommerce/magento-cart@4.8.5
10
+
11
+ ## 4.1.0
12
+
13
+ ### Minor Changes
14
+
15
+ - [#1642](https://github.com/graphcommerce-org/graphcommerce/pull/1642) [`ad63ebf4e`](https://github.com/graphcommerce-org/graphcommerce/commit/ad63ebf4e33bfb0e5c9e5e68ab69b14775f3f8a8) Thanks [@paales](https://github.com/paales)! - Introduced `<AddProductsToCartForm/>`, which is allows for adding all product types to the cart with a single react-hook-form form.
16
+
17
+ Which allows you to fully compose the form on the product page without having to modify the page.
18
+
19
+ ### Patch Changes
20
+
21
+ - Updated dependencies [[`ad63ebf4e`](https://github.com/graphcommerce-org/graphcommerce/commit/ad63ebf4e33bfb0e5c9e5e68ab69b14775f3f8a8), [`b6bf2c941`](https://github.com/graphcommerce-org/graphcommerce/commit/b6bf2c94197ddacbf8f1fc0d352cd0d46e096f30)]:
22
+ - @graphcommerce/magento-product@4.6.0
23
+ - @graphcommerce/magento-cart@4.8.4
24
+
3
25
  ## 4.0.58
4
26
 
5
27
  ### Patch Changes
package/index.ts CHANGED
@@ -1,2 +1 @@
1
1
  export * from './ProductListItemSimple'
2
- export * from './SimpleProductPage.gql'
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@graphcommerce/magento-product-simple",
3
3
  "homepage": "https://www.graphcommerce.org/",
4
4
  "repository": "github:graphcommerce-org/graphcommerce",
5
- "version": "4.0.58",
5
+ "version": "4.1.1",
6
6
  "sideEffects": false,
7
7
  "prettier": "@graphcommerce/prettier-config-pwa",
8
8
  "eslintConfig": {
@@ -19,8 +19,8 @@
19
19
  },
20
20
  "dependencies": {
21
21
  "@graphcommerce/graphql": "3.4.8",
22
- "@graphcommerce/magento-cart": "4.8.3",
23
- "@graphcommerce/magento-product": "4.5.10"
22
+ "@graphcommerce/magento-cart": "4.8.5",
23
+ "@graphcommerce/magento-product": "4.6.1"
24
24
  },
25
25
  "peerDependencies": {
26
26
  "@lingui/react": "^3.13.2",
@@ -1,13 +0,0 @@
1
- fragment ProductPageSimpleQueryFragment on Query {
2
- typeProducts: products(filter: { url_key: { eq: $urlKey } }) {
3
- ...ProductSpecs
4
- items {
5
- __typename
6
- uid
7
- ... on SimpleProduct {
8
- ...ProductWeight
9
- ...ProductCustomizable
10
- }
11
- }
12
- }
13
- }
@@ -1,3 +0,0 @@
1
- query SimpleProductPage($urlKey: String!) {
2
- ...ProductPageSimpleQueryFragment
3
- }