gatsby-matrix-theme 7.0.2 → 7.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 +8 -0
- package/package.json +2 -2
- package/src/gatsby-core-theme/components/molecules/main/index.js +1 -1
- package/src/gatsby-core-theme/helpers/schema.js +1 -0
- package/storybook/public/{152.6cc82cda.iframe.bundle.js → 152.4e420b8c.iframe.bundle.js} +3 -3
- package/storybook/public/{152.6cc82cda.iframe.bundle.js.LICENSE.txt → 152.4e420b8c.iframe.bundle.js.LICENSE.txt} +0 -0
- package/storybook/public/{152.6cc82cda.iframe.bundle.js.map → 152.4e420b8c.iframe.bundle.js.map} +1 -1
- package/storybook/public/iframe.html +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## [7.0.3](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v7.0.2...v7.0.3) (2022-05-11)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* author box null check ([2b2352c](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/2b2352c71be0e9657cbfb4d9a4fdb36b72fc5550))
|
|
7
|
+
* breadcrumb schema ([0ceb45c](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/0ceb45c946e94f08831d2c35fe60f51dd50d956b))
|
|
8
|
+
|
|
1
9
|
## [7.0.2](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v7.0.1...v7.0.2) (2022-05-09)
|
|
2
10
|
|
|
3
11
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gatsby-matrix-theme",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.3",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"description": "Matrix Theme NPM Package",
|
|
6
6
|
"author": "",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"react": "^17.0.2",
|
|
30
30
|
"gatsby-plugin-sitemap": "^3.3.0",
|
|
31
31
|
"react-dom": "^17.0.2",
|
|
32
|
-
"gatsby-core-theme": "^7.0.
|
|
32
|
+
"gatsby-core-theme": "^7.0.2"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@babel/core": "^7.13.1",
|
|
@@ -27,7 +27,7 @@ const Main = ({ section = {}, pageContext = {}, showNewsletter = true }) => {
|
|
|
27
27
|
const NotFound = page.path.includes('404')
|
|
28
28
|
? loadable(() => import(`gatsby-core-theme/src/components/atoms/not-found`))
|
|
29
29
|
: null;
|
|
30
|
-
const AuthorBox = page.
|
|
30
|
+
const AuthorBox = page.author_id ? loadable(() => import(`~atoms/author-box`)) : null;
|
|
31
31
|
|
|
32
32
|
return (
|
|
33
33
|
<main className={styles.modulePage}>
|