@graphcommerce/next-ui 3.14.0 → 3.14.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/AppShell/DesktopNavBar.tsx +2 -1
- package/AppShell/MenuFab.tsx +0 -4
- package/CHANGELOG.md +24 -0
- package/ChipMenu/index.tsx +3 -1
- package/Form/FormActions.tsx +2 -2
- package/IconHeader/index.tsx +1 -1
- package/StyledBadge/index.tsx +1 -1
- package/TextInputNumber/index.tsx +1 -3
- package/package.json +11 -11
package/AppShell/MenuFab.tsx
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,30 @@
|
|
|
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.14.3](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.14.2...@graphcommerce/next-ui@3.14.3) (2021-11-06)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* spacing DesktopNavBar items ([c3373b9](https://github.com/ho-nl/m2-pwa/commit/c3373b97add87864adc5809ab04cf683bc5b0498))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [3.14.1](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.14.0...@graphcommerce/next-ui@3.14.1) (2021-11-04)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* can't remove filters on click icon ([2528802](https://github.com/ho-nl/m2-pwa/commit/252880216994da7f8e65c1b565ff996bbab0472a))
|
|
23
|
+
* Checkout button margin consistency ([9fcf7e7](https://github.com/ho-nl/m2-pwa/commit/9fcf7e7d96172448b2d2911771d6bf70ab976594))
|
|
24
|
+
* remove hardcoded fontSize ([e4e09e1](https://github.com/ho-nl/m2-pwa/commit/e4e09e11baeb8edeff634550b8cdb88571d96911))
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
6
30
|
# [3.14.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.13.2...@graphcommerce/next-ui@3.14.0) (2021-11-04)
|
|
7
31
|
|
|
8
32
|
|
package/ChipMenu/index.tsx
CHANGED
|
@@ -67,7 +67,9 @@ export default function ChipMenu(props: ChipMenuProps) {
|
|
|
67
67
|
const classes = useChipMenuStyles(props)
|
|
68
68
|
|
|
69
69
|
let deleteIcon = selected ? (
|
|
70
|
-
<
|
|
70
|
+
<div>
|
|
71
|
+
<SvgImageSimple src={iconCancelAlt} className={classes.iconCancel} />
|
|
72
|
+
</div>
|
|
71
73
|
) : (
|
|
72
74
|
<SvgImageSimple src={iconChevronDown} />
|
|
73
75
|
)
|
package/Form/FormActions.tsx
CHANGED
|
@@ -2,8 +2,8 @@ import { styled } from '@material-ui/core'
|
|
|
2
2
|
|
|
3
3
|
const FormActions = styled('div')(
|
|
4
4
|
({ theme }) => ({
|
|
5
|
-
paddingTop: theme.spacings.
|
|
6
|
-
paddingBottom: theme.spacings.
|
|
5
|
+
paddingTop: theme.spacings.md,
|
|
6
|
+
paddingBottom: theme.spacings.lg,
|
|
7
7
|
justifyContent: 'center',
|
|
8
8
|
display: 'grid',
|
|
9
9
|
gridAutoFlow: 'column',
|
package/IconHeader/index.tsx
CHANGED
|
@@ -10,8 +10,8 @@ import SvgImage, { SvgImageProps } from '../SvgImage'
|
|
|
10
10
|
const useStyles = makeStyles(
|
|
11
11
|
(theme: Theme) => ({
|
|
12
12
|
container: {
|
|
13
|
+
...theme.typography.subtitle1,
|
|
13
14
|
textAlign: 'center',
|
|
14
|
-
fontSize: responsiveVal(16, 24),
|
|
15
15
|
},
|
|
16
16
|
innerContainer: {
|
|
17
17
|
display: 'flex',
|
package/StyledBadge/index.tsx
CHANGED
|
@@ -3,12 +3,12 @@ import { Badge, withStyles } from '@material-ui/core'
|
|
|
3
3
|
const StyledBadge = withStyles((theme) => ({
|
|
4
4
|
colorError: {},
|
|
5
5
|
badge: {
|
|
6
|
+
...theme.typography.caption,
|
|
6
7
|
right: 6,
|
|
7
8
|
top: 6,
|
|
8
9
|
padding: 3,
|
|
9
10
|
color: '#FFF',
|
|
10
11
|
borderRadius: '100%',
|
|
11
|
-
fontSize: 10,
|
|
12
12
|
[theme.breakpoints.up('md')]: {
|
|
13
13
|
padding: 6,
|
|
14
14
|
right: 8,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graphcommerce/next-ui",
|
|
3
|
-
"version": "3.14.
|
|
3
|
+
"version": "3.14.4",
|
|
4
4
|
"author": "",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"scripts": {
|
|
@@ -10,12 +10,12 @@
|
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@apollo/client": "^3.4.16",
|
|
13
|
-
"@graphcommerce/framer-next-pages": "^2.107.
|
|
14
|
-
"@graphcommerce/framer-scroller": "^1.0.
|
|
15
|
-
"@graphcommerce/framer-sheet": "^2.106.
|
|
16
|
-
"@graphcommerce/framer-utils": "^2.103.
|
|
17
|
-
"@graphcommerce/graphql": "^2.105.
|
|
18
|
-
"@graphcommerce/image": "^2.105.
|
|
13
|
+
"@graphcommerce/framer-next-pages": "^2.107.4",
|
|
14
|
+
"@graphcommerce/framer-scroller": "^1.0.3",
|
|
15
|
+
"@graphcommerce/framer-sheet": "^2.106.1",
|
|
16
|
+
"@graphcommerce/framer-utils": "^2.103.14",
|
|
17
|
+
"@graphcommerce/graphql": "^2.105.4",
|
|
18
|
+
"@graphcommerce/image": "^2.105.3",
|
|
19
19
|
"@graphql-typed-document-node/core": "^3.1.0",
|
|
20
20
|
"@material-ui/core": "^4.12.3",
|
|
21
21
|
"@material-ui/lab": "^4.0.0-alpha.60",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"clsx": "^1.1.1",
|
|
24
24
|
"framer-motion": "^4.1.17",
|
|
25
25
|
"graphql": "^15.6.1",
|
|
26
|
-
"next": "^12.0.
|
|
26
|
+
"next": "^12.0.3",
|
|
27
27
|
"react": "^17.0.2",
|
|
28
28
|
"react-dom": "^17.0.2",
|
|
29
29
|
"react-focus-lock": "^2.5.2",
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"@graphcommerce/browserslist-config-pwa": "^3.0.2",
|
|
37
|
-
"@graphcommerce/eslint-config-pwa": "^3.1.
|
|
38
|
-
"@graphcommerce/prettier-config-pwa": "^3.0.
|
|
37
|
+
"@graphcommerce/eslint-config-pwa": "^3.1.4",
|
|
38
|
+
"@graphcommerce/prettier-config-pwa": "^3.0.4",
|
|
39
39
|
"@graphcommerce/typescript-config-pwa": "^3.1.1",
|
|
40
40
|
"@playwright/test": "^1.16.2",
|
|
41
41
|
"@types/react-is": "^17.0.3",
|
|
@@ -53,5 +53,5 @@
|
|
|
53
53
|
"project": "./tsconfig.json"
|
|
54
54
|
}
|
|
55
55
|
},
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "1099718b92d4d472f32aeb6379f6167c6b550ccf"
|
|
57
57
|
}
|