@graphcommerce/magento-cart-payment-method 2.108.2 → 2.108.3

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.108.3](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/magento-cart-payment-method@2.108.2...@graphcommerce/magento-cart-payment-method@2.108.3) (2021-10-28)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * update SvgImage to SvgImageSimple ([f116543](https://github.com/ho-nl/m2-pwa/commit/f116543730853fa9782abff0ccacee7032e85789))
12
+
13
+
14
+
15
+
16
+
6
17
  # [2.108.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/magento-cart-payment-method@2.107.6...@graphcommerce/magento-cart-payment-method@2.108.0) (2021-10-27)
7
18
 
8
19
 
@@ -6,6 +6,7 @@ import {
6
6
  iconChevronRight,
7
7
  responsiveVal,
8
8
  SvgImage,
9
+ SvgImageSimple,
9
10
  ToggleButton,
10
11
  } from '@graphcommerce/next-ui'
11
12
  import {
@@ -152,7 +153,12 @@ export default function PaymentMethodToggles(props: PaymentMethodTogglesProps) {
152
153
  root: clsx(classes.buttonRoot, classes.leftButtonRoot),
153
154
  }}
154
155
  >
155
- <SvgImage src={iconChevronLeft} alt='chevron left' size='small' loading='eager' />
156
+ <SvgImageSimple
157
+ src={iconChevronLeft}
158
+ alt='chevron left'
159
+ size='small'
160
+ loading='eager'
161
+ />
156
162
  </ScrollerButton>
157
163
  </m.div>
158
164
 
@@ -207,7 +213,12 @@ export default function PaymentMethodToggles(props: PaymentMethodTogglesProps) {
207
213
  root: clsx(classes.buttonRoot, classes.rightButtonRoot),
208
214
  }}
209
215
  >
210
- <SvgImage src={iconChevronRight} alt='chevron right' size='small' loading='eager' />
216
+ <SvgImageSimple
217
+ src={iconChevronRight}
218
+ alt='chevron right'
219
+ size='small'
220
+ loading='eager'
221
+ />
211
222
  </ScrollerButton>
212
223
  </m.div>
213
224
  </ScrollerProvider>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphcommerce/magento-cart-payment-method",
3
- "version": "2.108.2",
3
+ "version": "2.108.3",
4
4
  "sideEffects": false,
5
5
  "engines": {
6
6
  "node": "14.x"
@@ -27,9 +27,9 @@
27
27
  "@graphcommerce/framer-scroller": "^0.4.1",
28
28
  "@graphcommerce/graphql": "^2.105.1",
29
29
  "@graphcommerce/image": "^2.105.1",
30
- "@graphcommerce/magento-cart": "^3.3.2",
31
- "@graphcommerce/magento-store": "^3.1.2",
32
- "@graphcommerce/next-ui": "^3.10.2",
30
+ "@graphcommerce/magento-cart": "^3.4.0",
31
+ "@graphcommerce/magento-store": "^3.1.3",
32
+ "@graphcommerce/next-ui": "^3.11.0",
33
33
  "@graphcommerce/react-hook-form": "^2.102.13",
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": "7f5e13261ccb398f5a7e6bac70d3f4d5f757fa5f"
44
+ "gitHead": "f923ddb5d98378c8737314e7296bba77b1c2dc9b"
45
45
  }