@graphcommerce/next-ui 3.11.2 → 3.11.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/AppShell/ForwardButton.tsx +2 -2
- package/CHANGELOG.md +11 -0
- package/package.json +2 -2
|
@@ -39,12 +39,12 @@ const useStyles = makeStyles(
|
|
|
39
39
|
|
|
40
40
|
export type ForwardButtonProps = UseStyles<typeof useStyles> & ButtonProps & { down?: boolean }
|
|
41
41
|
|
|
42
|
-
const ForwardButton = React.forwardRef((props: ForwardButtonProps) => {
|
|
42
|
+
const ForwardButton = React.forwardRef((props: ForwardButtonProps, ref) => {
|
|
43
43
|
const { text, icon, ...classes } = useStyles(props)
|
|
44
44
|
const { children, down, ...fabProps } = props
|
|
45
45
|
|
|
46
46
|
return (
|
|
47
|
-
<Button variant='pill' classes={classes} {...fabProps}>
|
|
47
|
+
<Button variant='pill' classes={classes} {...fabProps} ref={ref}>
|
|
48
48
|
<span className={text}>{children}</span>
|
|
49
49
|
<SvgImageSimple src={iconChevronRight} size='small' className={classes.root} />
|
|
50
50
|
</Button>
|
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
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.11.3](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.11.2...@graphcommerce/next-ui@3.11.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
|
+
|
|
6
17
|
## [3.11.1](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.11.0...@graphcommerce/next-ui@3.11.1) (2021-10-28)
|
|
7
18
|
|
|
8
19
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graphcommerce/next-ui",
|
|
3
|
-
"version": "3.11.
|
|
3
|
+
"version": "3.11.3",
|
|
4
4
|
"author": "",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"scripts": {
|
|
@@ -53,5 +53,5 @@
|
|
|
53
53
|
"project": "./tsconfig.json"
|
|
54
54
|
}
|
|
55
55
|
},
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "570a61e72f88ef0a4bd1472d48c7a7dd28154f59"
|
|
57
57
|
}
|