@graphcommerce/magento-product 3.4.0 → 3.4.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
|
+
## [3.4.3](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/magento-product@3.4.2...@graphcommerce/magento-product@3.4.3) (2021-11-01)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* category page design fixs ([d3fccc2](https://github.com/ho-nl/m2-pwa/commit/d3fccc2a86106b854e9a1fd89040a248fe20c99a))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [3.4.1](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/magento-product@3.4.0...@graphcommerce/magento-product@3.4.1) (2021-10-28)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* External SVG's can't have alt tags ([1b1414a](https://github.com/ho-nl/m2-pwa/commit/1b1414a782d55d3acf7b0e6bcaa50f2ad5f18f39))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
6
28
|
# [3.4.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/magento-product@3.3.2...@graphcommerce/magento-product@3.4.0) (2021-10-28)
|
|
7
29
|
|
|
8
30
|
|
|
@@ -56,11 +56,7 @@ export default function FilterCheckboxType(props: FilterCheckboxTypeProps) {
|
|
|
56
56
|
}
|
|
57
57
|
: undefined
|
|
58
58
|
}
|
|
59
|
-
deleteIcon={
|
|
60
|
-
isActive ? (
|
|
61
|
-
<SvgImageSimple src={iconCloseCircle} alt='remove' size='small' loading='eager' />
|
|
62
|
-
) : undefined
|
|
63
|
-
}
|
|
59
|
+
deleteIcon={isActive ? <SvgImageSimple src={iconCloseCircle} size='small' /> : undefined}
|
|
64
60
|
label={label}
|
|
65
61
|
clickable
|
|
66
62
|
{...chipProps}
|
|
@@ -35,6 +35,8 @@ const useStyles = makeStyles(
|
|
|
35
35
|
container: {
|
|
36
36
|
maxWidth: '100%',
|
|
37
37
|
padding: 6,
|
|
38
|
+
paddingLeft: 0,
|
|
39
|
+
paddingRight: 0,
|
|
38
40
|
[theme.breakpoints.up('md')]: {
|
|
39
41
|
background: '#fff',
|
|
40
42
|
borderRadius: '99em',
|
|
@@ -45,8 +47,12 @@ const useStyles = makeStyles(
|
|
|
45
47
|
},
|
|
46
48
|
containerSticky: {},
|
|
47
49
|
scroller: {
|
|
50
|
+
paddingLeft: theme.page.horizontal,
|
|
51
|
+
paddingRight: theme.page.horizontal,
|
|
48
52
|
paddingBottom: 1,
|
|
49
|
-
|
|
53
|
+
[theme.breakpoints.up('md')]: {
|
|
54
|
+
borderRadius: '99em',
|
|
55
|
+
},
|
|
50
56
|
columnGap: 6,
|
|
51
57
|
gridAutoColumns: 'min-content',
|
|
52
58
|
},
|
|
@@ -41,7 +41,7 @@ export default function ProductSidebarDelivery() {
|
|
|
41
41
|
|
|
42
42
|
return (
|
|
43
43
|
<div className={classes.root}>
|
|
44
|
-
<SvgImageSimple className={classes.image} src={iconBox}
|
|
44
|
+
<SvgImageSimple className={classes.image} src={iconBox} />
|
|
45
45
|
<Typography className={classes.title} variant='body2' component='div'>
|
|
46
46
|
Order before 22:00
|
|
47
47
|
</Typography>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graphcommerce/magento-product",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.4",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"prettier": "@graphcommerce/prettier-config-pwa",
|
|
6
6
|
"browserslist": [
|
|
@@ -14,29 +14,29 @@
|
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
16
|
"@graphcommerce/browserslist-config-pwa": "^3.0.2",
|
|
17
|
-
"@graphcommerce/eslint-config-pwa": "^3.1.
|
|
17
|
+
"@graphcommerce/eslint-config-pwa": "^3.1.3",
|
|
18
18
|
"@graphcommerce/prettier-config-pwa": "^3.0.3",
|
|
19
19
|
"@graphcommerce/typescript-config-pwa": "^3.1.1",
|
|
20
20
|
"@playwright/test": "^1.16.2"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@apollo/client": "^3.4.16",
|
|
24
|
-
"@graphcommerce/framer-scroller": "^0.4.
|
|
25
|
-
"@graphcommerce/graphql": "^2.105.
|
|
26
|
-
"@graphcommerce/image": "^2.105.
|
|
27
|
-
"@graphcommerce/magento-cart": "^3.4.
|
|
28
|
-
"@graphcommerce/magento-store": "^3.1.
|
|
29
|
-
"@graphcommerce/next-ui": "^3.11.
|
|
24
|
+
"@graphcommerce/framer-scroller": "^0.4.3",
|
|
25
|
+
"@graphcommerce/graphql": "^2.105.2",
|
|
26
|
+
"@graphcommerce/image": "^2.105.2",
|
|
27
|
+
"@graphcommerce/magento-cart": "^3.4.4",
|
|
28
|
+
"@graphcommerce/magento-store": "^3.1.7",
|
|
29
|
+
"@graphcommerce/next-ui": "^3.11.4",
|
|
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.
|
|
35
|
+
"next": "^12.0.2",
|
|
36
36
|
"react": "^17.0.2",
|
|
37
37
|
"react-dom": "^17.0.2",
|
|
38
38
|
"schema-dts": "^1.0.0",
|
|
39
39
|
"type-fest": "^2.5.1"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "b6321b8f479a0ef6e4b1b543702158d964bbeac6"
|
|
42
42
|
}
|