@graphcommerce/magento-cart-coupon 2.106.1 → 2.106.5

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.
@@ -42,7 +42,6 @@ export default function ApplyCouponForm(props: ApplyCouponFormProps) {
42
42
  loading={formState.isSubmitting}
43
43
  color='secondary'
44
44
  variant='pill'
45
- size='small'
46
45
  >
47
46
  Apply
48
47
  </Button>
package/CHANGELOG.md CHANGED
@@ -3,6 +3,29 @@
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.106.4](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/magento-cart-coupon@2.106.3...@graphcommerce/magento-cart-coupon@2.106.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.106.3](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/magento-cart-coupon@2.106.2...@graphcommerce/magento-cart-coupon@2.106.3) (2021-10-28)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * bigger apply coupon button ([700d8ee](https://github.com/ho-nl/m2-pwa/commit/700d8ee2daedbcdffa63e8e14c9d837feeb29cbc))
23
+ * update SvgImage to SvgImageSimple ([f116543](https://github.com/ho-nl/m2-pwa/commit/f116543730853fa9782abff0ccacee7032e85789))
24
+
25
+
26
+
27
+
28
+
6
29
  # [2.106.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/magento-cart-coupon@2.105.35...@graphcommerce/magento-cart-coupon@2.106.0) (2021-10-27)
7
30
 
8
31
 
@@ -4,6 +4,7 @@ import {
4
4
  iconChevronDown,
5
5
  iconChevronUp,
6
6
  SvgImage,
7
+ SvgImageSimple,
7
8
  UseStyles,
8
9
  } from '@graphcommerce/next-ui'
9
10
  import { Button, makeStyles, Theme, Typography } from '@material-ui/core'
@@ -87,8 +88,8 @@ export default function CouponAccordion(props: CouponAccordionProps) {
87
88
  })}
88
89
  endIcon={
89
90
  <>
90
- {!coupon && open && <SvgImage src={iconChevronUp} alt='Open' loading='eager' />}
91
- {!coupon && !open && <SvgImage src={iconChevronDown} alt='Close' loading='eager' />}
91
+ {!coupon && open && <SvgImageSimple src={iconChevronUp} />}
92
+ {!coupon && !open && <SvgImageSimple src={iconChevronDown} />}
92
93
  </>
93
94
  }
94
95
  >
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphcommerce/magento-cart-coupon",
3
- "version": "2.106.1",
3
+ "version": "2.106.5",
4
4
  "sideEffects": false,
5
5
  "prettier": "@graphcommerce/prettier-config-pwa",
6
6
  "browserslist": [
@@ -14,27 +14,27 @@
14
14
  },
15
15
  "devDependencies": {
16
16
  "@graphcommerce/browserslist-config-pwa": "^3.0.2",
17
- "@graphcommerce/eslint-config-pwa": "^3.1.1",
17
+ "@graphcommerce/eslint-config-pwa": "^3.1.2",
18
18
  "@graphcommerce/prettier-config-pwa": "^3.0.3",
19
19
  "@graphcommerce/typescript-config-pwa": "^3.1.1",
20
- "@playwright/test": "^1.15.2"
20
+ "@playwright/test": "^1.16.2"
21
21
  },
22
22
  "dependencies": {
23
23
  "@apollo/client": "^3.4.16",
24
- "@graphcommerce/graphql": "^2.105.0",
25
- "@graphcommerce/image": "^2.105.0",
26
- "@graphcommerce/magento-cart": "^3.3.1",
27
- "@graphcommerce/magento-store": "^3.1.1",
28
- "@graphcommerce/next-ui": "^3.10.1",
29
- "@graphcommerce/react-hook-form": "^2.102.12",
24
+ "@graphcommerce/graphql": "^2.105.1",
25
+ "@graphcommerce/image": "^2.105.1",
26
+ "@graphcommerce/magento-cart": "^3.4.2",
27
+ "@graphcommerce/magento-store": "^3.1.5",
28
+ "@graphcommerce/next-ui": "^3.11.2",
29
+ "@graphcommerce/react-hook-form": "^2.102.13",
30
30
  "@graphql-typed-document-node/core": "^3.1.0",
31
31
  "@material-ui/core": "^4.12.3",
32
32
  "@material-ui/lab": "^4.0.0-alpha.60",
33
33
  "clsx": "^1.1.1",
34
34
  "framer-motion": "^4.1.17",
35
- "next": "^12.0.0",
35
+ "next": "^12.0.1",
36
36
  "react": "^17.0.2",
37
37
  "react-dom": "^17.0.2"
38
38
  },
39
- "gitHead": "b90c6285a14368a76de8ad1d104f3d535bc3cafb"
39
+ "gitHead": "ed70123f0b4c4552ca413deff6fe786156d0772f"
40
40
  }