@graphcommerce/magento-cart-payment-method 2.109.1 → 2.110.0

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
+ # [2.110.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/magento-cart-payment-method@2.109.1...@graphcommerce/magento-cart-payment-method@2.110.0) (2021-11-02)
7
+
8
+
9
+ ### Features
10
+
11
+ * shipping methods scroller ([3cc4413](https://github.com/ho-nl/m2-pwa/commit/3cc441320d2a3dd003c499be358a118a17e528c3))
12
+
13
+
14
+
15
+
16
+
6
17
  # [2.109.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/magento-cart-payment-method@2.108.8...@graphcommerce/magento-cart-payment-method@2.109.0) (2021-11-02)
7
18
 
8
19
 
@@ -40,10 +40,6 @@ const useStyles = makeStyles(
40
40
  position: 'relative',
41
41
  padding: 0,
42
42
  },
43
- toggleGroup: {
44
- display: 'inline-flex',
45
- gap: 10,
46
- },
47
43
  buttonRoot: {
48
44
  background: theme.palette.background.paper,
49
45
  borderRadius: 0,
@@ -163,7 +159,7 @@ export default function PaymentMethodToggles(props: PaymentMethodTogglesProps) {
163
159
  control={control}
164
160
  name='paymentMethod'
165
161
  rules={{ required: 'Please select a payment method' }}
166
- render={({ field: { onChange, value, name, ref, onBlur } }) => (
162
+ render={({ field: { onChange, value, name, onBlur } }) => (
167
163
  <Scroller className={classes.scrollerRoot} hideScrollbar tabIndex={0}>
168
164
  {methods?.map((pm) => {
169
165
  const buttonValue = `${pm.code}___${pm.child}`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphcommerce/magento-cart-payment-method",
3
- "version": "2.109.1",
3
+ "version": "2.110.0",
4
4
  "sideEffects": false,
5
5
  "engines": {
6
6
  "node": "14.x"
@@ -27,9 +27,9 @@
27
27
  "@graphcommerce/framer-scroller": "^0.4.3",
28
28
  "@graphcommerce/graphql": "^2.105.2",
29
29
  "@graphcommerce/image": "^2.105.2",
30
- "@graphcommerce/magento-cart": "^3.5.1",
31
- "@graphcommerce/magento-store": "^3.2.1",
32
- "@graphcommerce/next-ui": "^3.12.1",
30
+ "@graphcommerce/magento-cart": "^3.5.2",
31
+ "@graphcommerce/magento-store": "^3.2.2",
32
+ "@graphcommerce/next-ui": "^3.12.2",
33
33
  "@graphcommerce/react-hook-form": "^2.102.14",
34
34
  "@graphql-typed-document-node/core": "^3.1.0",
35
35
  "@material-ui/core": "^4.12.3",
@@ -41,5 +41,5 @@
41
41
  "react-dom": "^17.0.1",
42
42
  "type-fest": "^2.5.1"
43
43
  },
44
- "gitHead": "034145dd36551a6c71be6c51f0f1560ef50cb77a"
44
+ "gitHead": "afae9da3ec938f2c088c254bcde22e1db2636ace"
45
45
  }