@graphcommerce/magento-cart 3.8.12 → 3.8.17
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 +34 -0
- package/components/CartTotals/CartTotals.tsx +5 -2
- package/package.json +16 -16
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,40 @@
|
|
|
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
|
+
## [3.8.17](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/magento-cart@3.8.16...@graphcommerce/magento-cart@3.8.17) (2021-12-20)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Reverts
|
|
10
|
+
|
|
11
|
+
* Revert "fix: build" ([71df800](https://github.com/ho-nl/m2-pwa/commit/71df8009744e606b0753cb4c5e7fe3c3c11d3416))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [3.8.16](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/magento-cart@3.8.15...@graphcommerce/magento-cart@3.8.16) (2021-12-18)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* build ([c0275c4](https://github.com/ho-nl/m2-pwa/commit/c0275c461d30d71db21cabf4b1f85f8a9971d782))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
## [3.8.13](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/magento-cart@3.8.12...@graphcommerce/magento-cart@3.8.13) (2021-12-17)
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
### Bug Fixes
|
|
32
|
+
|
|
33
|
+
* darkMode fixes ([7d33d45](https://github.com/ho-nl/m2-pwa/commit/7d33d452ec801632565839b2fdfef0bc4959c14a))
|
|
34
|
+
* lighten ([8aa1d8e](https://github.com/ho-nl/m2-pwa/commit/8aa1d8e61ae122f63f2f8d164566bde9282e3354))
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
6
40
|
## [3.8.12](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/magento-cart@3.8.11...@graphcommerce/magento-cart@3.8.12) (2021-12-17)
|
|
7
41
|
|
|
8
42
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Money } from '@graphcommerce/magento-store'
|
|
2
2
|
import { AnimatedRow, responsiveVal, UseStyles } from '@graphcommerce/next-ui'
|
|
3
3
|
import { Trans } from '@lingui/macro'
|
|
4
|
-
import { Divider, makeStyles, Theme } from '@material-ui/core'
|
|
4
|
+
import { Divider, lighten, makeStyles, Theme } from '@material-ui/core'
|
|
5
5
|
import clsx from 'clsx'
|
|
6
6
|
import { AnimatePresence } from 'framer-motion'
|
|
7
7
|
import React from 'react'
|
|
@@ -12,7 +12,10 @@ const useStyles = makeStyles(
|
|
|
12
12
|
(theme: Theme) => ({
|
|
13
13
|
costsContainer: {
|
|
14
14
|
borderRadius: responsiveVal(theme.shape.borderRadius * 3, theme.shape.borderRadius * 4),
|
|
15
|
-
background:
|
|
15
|
+
background:
|
|
16
|
+
theme.palette.type === 'light'
|
|
17
|
+
? '#FFE10820'
|
|
18
|
+
: lighten(theme.palette.background.default, 0.15),
|
|
16
19
|
padding: `${theme.spacings.xs} ${theme.spacings.sm}`,
|
|
17
20
|
},
|
|
18
21
|
containerMarginTop: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graphcommerce/magento-cart",
|
|
3
|
-
"version": "3.8.
|
|
3
|
+
"version": "3.8.17",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"prettier": "@graphcommerce/prettier-config-pwa",
|
|
6
6
|
"browserslist": [
|
|
@@ -13,31 +13,31 @@
|
|
|
13
13
|
}
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
|
-
"@graphcommerce/browserslist-config-pwa": "^3.0.
|
|
17
|
-
"@graphcommerce/eslint-config-pwa": "^3.1.
|
|
18
|
-
"@graphcommerce/prettier-config-pwa": "^3.0.
|
|
19
|
-
"@graphcommerce/typescript-config-pwa": "^3.1.
|
|
16
|
+
"@graphcommerce/browserslist-config-pwa": "^3.0.3",
|
|
17
|
+
"@graphcommerce/eslint-config-pwa": "^3.1.9",
|
|
18
|
+
"@graphcommerce/prettier-config-pwa": "^3.0.5",
|
|
19
|
+
"@graphcommerce/typescript-config-pwa": "^3.1.2",
|
|
20
20
|
"@playwright/test": "^1.17.1"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@apollo/client": "^3.5.6",
|
|
24
|
-
"@graphcommerce/framer-next-pages": "^2.108.
|
|
25
|
-
"@graphcommerce/framer-scroller": "^1.1.
|
|
26
|
-
"@graphcommerce/graphql": "^2.105.
|
|
27
|
-
"@graphcommerce/image": "^2.105.
|
|
28
|
-
"@graphcommerce/magento-customer": "^3.6.
|
|
29
|
-
"@graphcommerce/magento-graphql": "^2.104.
|
|
30
|
-
"@graphcommerce/magento-store": "^3.3.
|
|
31
|
-
"@graphcommerce/next-ui": "^3.21.
|
|
32
|
-
"@graphcommerce/react-hook-form": "^2.104.
|
|
24
|
+
"@graphcommerce/framer-next-pages": "^2.108.6",
|
|
25
|
+
"@graphcommerce/framer-scroller": "^1.1.13",
|
|
26
|
+
"@graphcommerce/graphql": "^2.105.11",
|
|
27
|
+
"@graphcommerce/image": "^2.105.10",
|
|
28
|
+
"@graphcommerce/magento-customer": "^3.6.20",
|
|
29
|
+
"@graphcommerce/magento-graphql": "^2.104.11",
|
|
30
|
+
"@graphcommerce/magento-store": "^3.3.20",
|
|
31
|
+
"@graphcommerce/next-ui": "^3.21.3",
|
|
32
|
+
"@graphcommerce/react-hook-form": "^2.104.6",
|
|
33
33
|
"@lingui/macro": "^3.13.0",
|
|
34
34
|
"@material-ui/core": "^4.12.3",
|
|
35
35
|
"@material-ui/lab": "^4.0.0-alpha.60",
|
|
36
36
|
"clsx": "^1.1.1",
|
|
37
|
-
"framer-motion": "^5.5.
|
|
37
|
+
"framer-motion": "^5.5.5",
|
|
38
38
|
"next": "^12.0.7",
|
|
39
39
|
"react": "^17.0.2",
|
|
40
40
|
"react-dom": "^17.0.2"
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "4d36f6d71cb51340acdf26b90f85eebe365d6a91"
|
|
43
43
|
}
|