gatsby-core-theme 14.0.2 → 14.0.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/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## [14.0.3](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v14.0.2...v14.0.3) (2022-11-04)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* aligned master branch ([63acad9](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/63acad942ba18affb6a0d95fad1c4149dfd1060e))
|
|
7
|
+
* aligned master branch ([89246fc](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/89246fc645950553c3f6a0a9888851357d222a2f))
|
|
8
|
+
* reverted logo fix ([786879f](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/786879f6d3f5afd6da37b90ccc3da7136613c5f8))
|
|
9
|
+
|
|
1
10
|
## [14.0.2](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v14.0.1...v14.0.2) (2022-11-03)
|
|
2
11
|
|
|
3
12
|
|
package/package.json
CHANGED
|
@@ -7,7 +7,6 @@ import Menu from '~molecules/menu';
|
|
|
7
7
|
import { toggleScroll } from '~helpers/scroll';
|
|
8
8
|
import ConditionalWrapper from '~atoms/conditional-wrapper';
|
|
9
9
|
import Sticky from '~molecules/sticky';
|
|
10
|
-
import Image from '../../../hooks/gatsby-img';
|
|
11
10
|
|
|
12
11
|
import NavigationProvider from './navigationContext';
|
|
13
12
|
|
|
@@ -15,7 +14,7 @@ import styles from './navigation.module.scss';
|
|
|
15
14
|
|
|
16
15
|
const Navigation = ({
|
|
17
16
|
section,
|
|
18
|
-
logo = 'logo.
|
|
17
|
+
logo = '../../../../../images/logo.svg',
|
|
19
18
|
logoWidth = 200,
|
|
20
19
|
logoHeight = 31,
|
|
21
20
|
searchIcon = null,
|
|
@@ -43,18 +42,11 @@ const Navigation = ({
|
|
|
43
42
|
|
|
44
43
|
const Search = hasSearch ? loadable(() => import('~organisms/search')) : null;
|
|
45
44
|
const logoImg = (
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
// width={logoWidth}
|
|
50
|
-
// height={logoHeight}
|
|
51
|
-
// />
|
|
52
|
-
<Image
|
|
53
|
-
objectFit="contain"
|
|
54
|
-
filename={logo}
|
|
45
|
+
<img
|
|
46
|
+
alt={`${process.env.GATSBY_SITE_NAME} logo`}
|
|
47
|
+
src={logo}
|
|
55
48
|
width={logoWidth}
|
|
56
49
|
height={logoHeight}
|
|
57
|
-
alt={`${process.env.GATSBY_SITE_NAME} logo`}
|
|
58
50
|
/>
|
|
59
51
|
);
|
|
60
52
|
|