@graphcommerce/magento-cart-payment-method 2.108.0 → 2.108.4

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,28 @@
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.4](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/magento-cart-payment-method@2.108.3...@graphcommerce/magento-cart-payment-method@2.108.4) (2021-10-28)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * External SVG's can't have alt tags ([1b1414a](https://github.com/ho-nl/m2-pwa/commit/1b1414a782d55d3acf7b0e6bcaa50f2ad5f18f39))
12
+
13
+
14
+
15
+
16
+
17
+ ## [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)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * update SvgImage to SvgImageSimple ([f116543](https://github.com/ho-nl/m2-pwa/commit/f116543730853fa9782abff0ccacee7032e85789))
23
+
24
+
25
+
26
+
27
+
6
28
  # [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
29
 
8
30
 
@@ -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,7 @@ 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 src={iconChevronLeft} size='small' />
156
157
  </ScrollerButton>
157
158
  </m.div>
158
159
 
@@ -207,7 +208,7 @@ export default function PaymentMethodToggles(props: PaymentMethodTogglesProps) {
207
208
  root: clsx(classes.buttonRoot, classes.rightButtonRoot),
208
209
  }}
209
210
  >
210
- <SvgImage src={iconChevronRight} alt='chevron right' size='small' loading='eager' />
211
+ <SvgImageSimple src={iconChevronRight} size='small' />
211
212
  </ScrollerButton>
212
213
  </m.div>
213
214
  </ScrollerProvider>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphcommerce/magento-cart-payment-method",
3
- "version": "2.108.0",
3
+ "version": "2.108.4",
4
4
  "sideEffects": false,
5
5
  "engines": {
6
6
  "node": "14.x"
@@ -17,29 +17,29 @@
17
17
  },
18
18
  "devDependencies": {
19
19
  "@graphcommerce/browserslist-config-pwa": "^3.0.2",
20
- "@graphcommerce/eslint-config-pwa": "^3.1.1",
20
+ "@graphcommerce/eslint-config-pwa": "^3.1.2",
21
21
  "@graphcommerce/prettier-config-pwa": "^3.0.3",
22
22
  "@graphcommerce/typescript-config-pwa": "^3.1.1",
23
- "@playwright/test": "^1.15.2"
23
+ "@playwright/test": "^1.16.2"
24
24
  },
25
25
  "dependencies": {
26
26
  "@apollo/client": "^3.4.16",
27
- "@graphcommerce/framer-scroller": "^0.4.0",
28
- "@graphcommerce/graphql": "^2.105.0",
29
- "@graphcommerce/image": "^2.105.0",
30
- "@graphcommerce/magento-cart": "^3.3.0",
31
- "@graphcommerce/magento-store": "^3.1.0",
32
- "@graphcommerce/next-ui": "^3.10.0",
33
- "@graphcommerce/react-hook-form": "^2.102.12",
27
+ "@graphcommerce/framer-scroller": "^0.4.1",
28
+ "@graphcommerce/graphql": "^2.105.1",
29
+ "@graphcommerce/image": "^2.105.1",
30
+ "@graphcommerce/magento-cart": "^3.4.1",
31
+ "@graphcommerce/magento-store": "^3.1.4",
32
+ "@graphcommerce/next-ui": "^3.11.1",
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",
36
36
  "@material-ui/lab": "^4.0.0-alpha.60",
37
37
  "clsx": "^1.1.1",
38
38
  "framer-motion": "^4.1.17",
39
- "next": "^12.0.0",
39
+ "next": "^12.0.1",
40
40
  "react": "^17.0.1",
41
41
  "react-dom": "^17.0.1",
42
42
  "type-fest": "^2.5.1"
43
43
  },
44
- "gitHead": "e34fa8877d4596971c861c0c2438cb4c82f6fcaa"
44
+ "gitHead": "e01d10a0e89c68c316c3e4bb6a306e9a6959a7f6"
45
45
  }