@graphcommerce/next-ui 3.13.0 → 3.13.1
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/Logo.tsx +1 -8
- package/CHANGELOG.md +11 -0
- package/package.json +2 -2
package/AppShell/Logo.tsx
CHANGED
|
@@ -8,9 +8,6 @@ import { UseStyles } from '../Styles'
|
|
|
8
8
|
const useStyles = makeStyles(
|
|
9
9
|
(theme: Theme) => ({
|
|
10
10
|
logo: {},
|
|
11
|
-
dark: {
|
|
12
|
-
filter: 'invert(100%)',
|
|
13
|
-
},
|
|
14
11
|
link: {
|
|
15
12
|
height: '100%',
|
|
16
13
|
width: 'max-content',
|
|
@@ -50,11 +47,7 @@ export default function Logo(props: LogoProps) {
|
|
|
50
47
|
<a className={classes.link}>
|
|
51
48
|
<Image
|
|
52
49
|
{...{ ...image }}
|
|
53
|
-
className={clsx(
|
|
54
|
-
classes.logo,
|
|
55
|
-
theme.palette.type === 'dark' && classes.dark,
|
|
56
|
-
!alwaysShow && classes.logoHideOnMobile,
|
|
57
|
-
)}
|
|
50
|
+
className={clsx(classes.logo, !alwaysShow && classes.logoHideOnMobile)}
|
|
58
51
|
/>
|
|
59
52
|
</a>
|
|
60
53
|
</PageLink>
|
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.13.1](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.13.0...@graphcommerce/next-ui@3.13.1) (2021-11-03)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* logo shouldnt invert, because it depends on the logo if it can be inverted. ([8426b09](https://github.com/ho-nl/m2-pwa/commit/8426b09688c7c77f45f912c56684ad1f378fc263))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [3.13.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.12.4...@graphcommerce/next-ui@3.13.0) (2021-11-03)
|
|
7
18
|
|
|
8
19
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graphcommerce/next-ui",
|
|
3
|
-
"version": "3.13.
|
|
3
|
+
"version": "3.13.1",
|
|
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": "c9eac9065491268d26c187d9fe864f7e9232c0fb"
|
|
57
57
|
}
|