@graphcommerce/magento-product-configurable 4.1.10 → 4.1.14

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,68 @@
1
1
  # Change Log
2
2
 
3
+ ## 4.1.14
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1490](https://github.com/graphcommerce-org/graphcommerce/pull/1490) [`d311ef48b`](https://github.com/graphcommerce-org/graphcommerce/commit/d311ef48bb3e97806d992af5516d6b7f183ec9cb) Thanks [@paales](https://github.com/paales)! - upgraded packages
8
+
9
+ - Updated dependencies [[`8a626ecf7`](https://github.com/graphcommerce-org/graphcommerce/commit/8a626ecf7ed00c46a28088e0b9bae00a4e1ae019), [`a9213f1f5`](https://github.com/graphcommerce-org/graphcommerce/commit/a9213f1f5a410d217768386ccb6d9b5ce7bd5782), [`d311ef48b`](https://github.com/graphcommerce-org/graphcommerce/commit/d311ef48bb3e97806d992af5516d6b7f183ec9cb)]:
10
+ - @graphcommerce/magento-customer@4.5.3
11
+ - @graphcommerce/next-ui@4.9.0
12
+ - @graphcommerce/graphql@3.2.1
13
+ - @graphcommerce/graphql-mesh@4.1.4
14
+ - @graphcommerce/image@3.1.7
15
+ - @graphcommerce/magento-cart@4.4.3
16
+ - @graphcommerce/magento-cart-items@3.0.30
17
+ - @graphcommerce/magento-category@4.1.15
18
+ - @graphcommerce/magento-product@4.4.7
19
+ - @graphcommerce/magento-product-simple@4.0.29
20
+ - @graphcommerce/magento-store@4.2.10
21
+ - @graphcommerce/react-hook-form@3.2.2
22
+
23
+ ## 4.1.13
24
+
25
+ ### Patch Changes
26
+
27
+ - [#1506](https://github.com/graphcommerce-org/graphcommerce/pull/1506) [`de6781908`](https://github.com/graphcommerce-org/graphcommerce/commit/de6781908cbf514b9fd225aa1407fa1385c8e53b) Thanks [@FrankHarland](https://github.com/FrankHarland)! - use array notation for sx support
28
+
29
+ - Updated dependencies [[`de6781908`](https://github.com/graphcommerce-org/graphcommerce/commit/de6781908cbf514b9fd225aa1407fa1385c8e53b), [`0ab7c5465`](https://github.com/graphcommerce-org/graphcommerce/commit/0ab7c5465441cba9bf8cd185a6790ce2f443f4ed), [`711fa6e04`](https://github.com/graphcommerce-org/graphcommerce/commit/711fa6e04519bbe91825fec7e1714277c1a8fa68)]:
30
+ - @graphcommerce/magento-product@4.4.6
31
+ - @graphcommerce/next-ui@4.8.4
32
+ - @graphcommerce/magento-customer@4.5.2
33
+ - @graphcommerce/magento-cart-items@3.0.29
34
+ - @graphcommerce/magento-category@4.1.14
35
+ - @graphcommerce/magento-product-simple@4.0.28
36
+ - @graphcommerce/magento-cart@4.4.2
37
+ - @graphcommerce/magento-store@4.2.9
38
+
39
+ ## 4.1.12
40
+
41
+ ### Patch Changes
42
+
43
+ - Updated dependencies [[`d205b037f`](https://github.com/graphcommerce-org/graphcommerce/commit/d205b037fee82b8c03993f2c586f477e826093bf)]:
44
+ - @graphcommerce/magento-cart@4.4.1
45
+ - @graphcommerce/magento-customer@4.5.1
46
+ - @graphcommerce/magento-cart-items@3.0.28
47
+ - @graphcommerce/magento-product@4.4.5
48
+ - @graphcommerce/magento-product-simple@4.0.27
49
+ - @graphcommerce/magento-category@4.1.13
50
+
51
+ ## 4.1.11
52
+
53
+ ### Patch Changes
54
+
55
+ - Updated dependencies [[`ffec8800a`](https://github.com/graphcommerce-org/graphcommerce/commit/ffec8800a50ff2fe9b9fc5feeb5a0a878b573f0e), [`bed806ddd`](https://github.com/graphcommerce-org/graphcommerce/commit/bed806dddd7e025806a69798ef9587aa165d392f)]:
56
+ - @graphcommerce/react-hook-form@3.2.1
57
+ - @graphcommerce/graphql@3.2.0
58
+ - @graphcommerce/magento-cart@4.4.0
59
+ - @graphcommerce/magento-customer@4.5.0
60
+ - @graphcommerce/magento-cart-items@3.0.27
61
+ - @graphcommerce/magento-category@4.1.12
62
+ - @graphcommerce/magento-product@4.4.4
63
+ - @graphcommerce/magento-product-simple@4.0.26
64
+ - @graphcommerce/magento-store@4.2.8
65
+
3
66
  ## 4.1.10
4
67
 
5
68
  ### Patch Changes
@@ -74,7 +74,12 @@ export function ConfigurableProductAddToCart(props: ConfigurableProductAddToCart
74
74
  onSubmit={submitHandler}
75
75
  noValidate
76
76
  className={classes.form}
77
- sx={{ width: '100%', ...(Array.isArray(sx) ? sx : [sx]) }}
77
+ sx={[
78
+ {
79
+ width: '100%',
80
+ },
81
+ ...(Array.isArray(sx) ? sx : [sx]),
82
+ ]}
78
83
  >
79
84
  <Divider className={classes.divider} sx={(theme) => ({ margin: `${theme.spacings.sm} 0` })} />
80
85
  <ConfigurableOptionsInput
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@graphcommerce/magento-product-configurable",
3
3
  "homepage": "https://www.graphcommerce.org/",
4
4
  "repository": "github:graphcommerce-org/graphcommerce",
5
- "version": "4.1.10",
5
+ "version": "4.1.14",
6
6
  "sideEffects": false,
7
7
  "prettier": "@graphcommerce/prettier-config-pwa",
8
8
  "eslintConfig": {
@@ -12,33 +12,33 @@
12
12
  }
13
13
  },
14
14
  "devDependencies": {
15
- "@graphcommerce/eslint-config-pwa": "^4.1.7",
15
+ "@graphcommerce/eslint-config-pwa": "^4.1.8",
16
16
  "@graphcommerce/prettier-config-pwa": "^4.0.6",
17
17
  "@graphcommerce/typescript-config-pwa": "^4.0.3",
18
18
  "@playwright/test": "^1.21.1",
19
19
  "type-fest": "^2.12.2"
20
20
  },
21
21
  "dependencies": {
22
- "@graphcommerce/graphql": "3.1.3",
23
- "@graphcommerce/graphql-mesh": "4.1.3",
24
- "@graphcommerce/image": "3.1.6",
25
- "@graphcommerce/magento-cart": "4.3.4",
26
- "@graphcommerce/magento-cart-items": "3.0.26",
27
- "@graphcommerce/magento-category": "4.1.11",
28
- "@graphcommerce/magento-customer": "4.4.2",
29
- "@graphcommerce/magento-product": "4.4.3",
30
- "@graphcommerce/magento-product-simple": "4.0.25",
31
- "@graphcommerce/magento-store": "4.2.7",
32
- "@graphcommerce/next-ui": "4.8.3",
33
- "@graphcommerce/react-hook-form": "3.2.0"
22
+ "@graphcommerce/graphql": "3.2.1",
23
+ "@graphcommerce/graphql-mesh": "4.1.4",
24
+ "@graphcommerce/image": "3.1.7",
25
+ "@graphcommerce/magento-cart": "4.4.3",
26
+ "@graphcommerce/magento-cart-items": "3.0.30",
27
+ "@graphcommerce/magento-category": "4.1.15",
28
+ "@graphcommerce/magento-customer": "4.5.3",
29
+ "@graphcommerce/magento-product": "4.4.7",
30
+ "@graphcommerce/magento-product-simple": "4.0.29",
31
+ "@graphcommerce/magento-store": "4.2.10",
32
+ "@graphcommerce/next-ui": "4.9.0",
33
+ "@graphcommerce/react-hook-form": "3.2.2"
34
34
  },
35
35
  "peerDependencies": {
36
36
  "@lingui/react": "^3.13.2",
37
37
  "@lingui/core": "^3.13.2",
38
38
  "@mui/material": "5.5.3",
39
39
  "framer-motion": "^6.2.4",
40
- "next": "12.1.2",
41
- "react": "^17.0.2",
42
- "react-dom": "^17.0.2"
40
+ "next": "^12.1.2",
41
+ "react": "^18.0.0",
42
+ "react-dom": "^18.0.0"
43
43
  }
44
44
  }