@graphcommerce/magento-product-configurable 4.1.9 → 4.1.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
@@ -1,5 +1,61 @@
1
1
  # Change Log
2
2
 
3
+ ## 4.1.13
4
+
5
+ ### Patch Changes
6
+
7
+ - [#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
8
+
9
+ - 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)]:
10
+ - @graphcommerce/magento-product@4.4.6
11
+ - @graphcommerce/next-ui@4.8.4
12
+ - @graphcommerce/magento-customer@4.5.2
13
+ - @graphcommerce/magento-cart-items@3.0.29
14
+ - @graphcommerce/magento-category@4.1.14
15
+ - @graphcommerce/magento-product-simple@4.0.28
16
+ - @graphcommerce/magento-cart@4.4.2
17
+ - @graphcommerce/magento-store@4.2.9
18
+
19
+ ## 4.1.12
20
+
21
+ ### Patch Changes
22
+
23
+ - Updated dependencies [[`d205b037f`](https://github.com/graphcommerce-org/graphcommerce/commit/d205b037fee82b8c03993f2c586f477e826093bf)]:
24
+ - @graphcommerce/magento-cart@4.4.1
25
+ - @graphcommerce/magento-customer@4.5.1
26
+ - @graphcommerce/magento-cart-items@3.0.28
27
+ - @graphcommerce/magento-product@4.4.5
28
+ - @graphcommerce/magento-product-simple@4.0.27
29
+ - @graphcommerce/magento-category@4.1.13
30
+
31
+ ## 4.1.11
32
+
33
+ ### Patch Changes
34
+
35
+ - Updated dependencies [[`ffec8800a`](https://github.com/graphcommerce-org/graphcommerce/commit/ffec8800a50ff2fe9b9fc5feeb5a0a878b573f0e), [`bed806ddd`](https://github.com/graphcommerce-org/graphcommerce/commit/bed806dddd7e025806a69798ef9587aa165d392f)]:
36
+ - @graphcommerce/react-hook-form@3.2.1
37
+ - @graphcommerce/graphql@3.2.0
38
+ - @graphcommerce/magento-cart@4.4.0
39
+ - @graphcommerce/magento-customer@4.5.0
40
+ - @graphcommerce/magento-cart-items@3.0.27
41
+ - @graphcommerce/magento-category@4.1.12
42
+ - @graphcommerce/magento-product@4.4.4
43
+ - @graphcommerce/magento-product-simple@4.0.26
44
+ - @graphcommerce/magento-store@4.2.8
45
+
46
+ ## 4.1.10
47
+
48
+ ### Patch Changes
49
+
50
+ - Updated dependencies [[`858a3b3a3`](https://github.com/graphcommerce-org/graphcommerce/commit/858a3b3a3601cd00491219daf45557c2f1cc804b)]:
51
+ - @graphcommerce/react-hook-form@3.2.0
52
+ - @graphcommerce/magento-cart@4.3.4
53
+ - @graphcommerce/magento-cart-items@3.0.26
54
+ - @graphcommerce/magento-customer@4.4.2
55
+ - @graphcommerce/magento-product@4.4.3
56
+ - @graphcommerce/magento-product-simple@4.0.25
57
+ - @graphcommerce/magento-category@4.1.11
58
+
3
59
  ## 4.1.9
4
60
 
5
61
  ### 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.9",
5
+ "version": "4.1.13",
6
6
  "sideEffects": false,
7
7
  "prettier": "@graphcommerce/prettier-config-pwa",
8
8
  "eslintConfig": {
@@ -19,18 +19,18 @@
19
19
  "type-fest": "^2.12.2"
20
20
  },
21
21
  "dependencies": {
22
- "@graphcommerce/graphql": "3.1.3",
22
+ "@graphcommerce/graphql": "3.2.0",
23
23
  "@graphcommerce/graphql-mesh": "4.1.3",
24
24
  "@graphcommerce/image": "3.1.6",
25
- "@graphcommerce/magento-cart": "4.3.3",
26
- "@graphcommerce/magento-cart-items": "3.0.25",
27
- "@graphcommerce/magento-category": "4.1.10",
28
- "@graphcommerce/magento-customer": "4.4.1",
29
- "@graphcommerce/magento-product": "4.4.2",
30
- "@graphcommerce/magento-product-simple": "4.0.24",
31
- "@graphcommerce/magento-store": "4.2.7",
32
- "@graphcommerce/next-ui": "4.8.3",
33
- "@graphcommerce/react-hook-form": "3.1.3"
25
+ "@graphcommerce/magento-cart": "4.4.2",
26
+ "@graphcommerce/magento-cart-items": "3.0.29",
27
+ "@graphcommerce/magento-category": "4.1.14",
28
+ "@graphcommerce/magento-customer": "4.5.2",
29
+ "@graphcommerce/magento-product": "4.4.6",
30
+ "@graphcommerce/magento-product-simple": "4.0.28",
31
+ "@graphcommerce/magento-store": "4.2.9",
32
+ "@graphcommerce/next-ui": "4.8.4",
33
+ "@graphcommerce/react-hook-form": "3.2.1"
34
34
  },
35
35
  "peerDependencies": {
36
36
  "@lingui/react": "^3.13.2",