@graphcommerce/magento-cart-payment-method 2.107.6 → 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 +22 -0
- package/PaymentMethodToggles/PaymentMethodToggles.tsx +13 -2
- package/package.json +12 -12
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.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
|
+
|
|
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)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* **nextjs:** upgraded to nextjs 12 ([9331bc8](https://github.com/ho-nl/m2-pwa/commit/9331bc801f6419522115cc47d291d49d608d5a90))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
6
28
|
# [2.107.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/magento-cart-payment-method@2.106.16...@graphcommerce/magento-cart-payment-method@2.107.0) (2021-10-19)
|
|
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,12 @@ export default function PaymentMethodToggles(props: PaymentMethodTogglesProps) {
|
|
|
152
153
|
root: clsx(classes.buttonRoot, classes.leftButtonRoot),
|
|
153
154
|
}}
|
|
154
155
|
>
|
|
155
|
-
<
|
|
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
|
-
<
|
|
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.
|
|
3
|
+
"version": "2.108.3",
|
|
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.
|
|
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.
|
|
23
|
+
"@playwright/test": "^1.16.2"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@apollo/client": "^3.4.16",
|
|
27
|
-
"@graphcommerce/framer-scroller": "^0.
|
|
28
|
-
"@graphcommerce/graphql": "^2.
|
|
29
|
-
"@graphcommerce/image": "^2.
|
|
30
|
-
"@graphcommerce/magento-cart": "^3.
|
|
31
|
-
"@graphcommerce/magento-store": "^3.
|
|
32
|
-
"@graphcommerce/next-ui": "^3.
|
|
33
|
-
"@graphcommerce/react-hook-form": "^2.102.
|
|
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.0",
|
|
31
|
+
"@graphcommerce/magento-store": "^3.1.3",
|
|
32
|
+
"@graphcommerce/next-ui": "^3.11.0",
|
|
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": "^
|
|
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": "
|
|
44
|
+
"gitHead": "f923ddb5d98378c8737314e7296bba77b1c2dc9b"
|
|
45
45
|
}
|