gatsby-matrix-theme 52.0.14 → 52.0.16
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 +14 -0
- package/package.json +2 -2
- package/src/gatsby-core-theme/components/molecules/main/index.js +12 -0
- package/storybook/public/{453.65634161.iframe.bundle.js → 453.cb1a9a7b.iframe.bundle.js} +3 -3
- package/storybook/public/{453.65634161.iframe.bundle.js.map → 453.cb1a9a7b.iframe.bundle.js.map} +1 -1
- package/storybook/public/iframe.html +1 -1
- package/storybook/public/project.json +2 -1
- /package/storybook/public/{453.65634161.iframe.bundle.js.LICENSE.txt → 453.cb1a9a7b.iframe.bundle.js.LICENSE.txt} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [52.0.16](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/compare/v52.0.15...v52.0.16) (2024-10-10)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* added disquss blcok ([0879bff](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/0879bff7cbf7da9b96c6bbdb9c192d76d4e4eaf6))
|
|
7
|
+
|
|
8
|
+
## [52.0.15](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/compare/v52.0.14...v52.0.15) (2024-10-09)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* update theme ([2abe632](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/2abe632701f2d46131806a891f12261b4ea39b83))
|
|
14
|
+
|
|
1
15
|
## [52.0.14](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/compare/v52.0.13...v52.0.14) (2024-10-08)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gatsby-matrix-theme",
|
|
3
|
-
"version": "52.0.
|
|
3
|
+
"version": "52.0.16",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"description": "Matrix Theme NPM Package",
|
|
6
6
|
"author": "",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@react-icons/all-files": "^4.1.0",
|
|
27
27
|
"gatsby": "^5.11.0",
|
|
28
|
-
"gatsby-core-theme": "
|
|
28
|
+
"gatsby-core-theme": "40.0.0",
|
|
29
29
|
"gatsby-plugin-sharp": "^5.11.0",
|
|
30
30
|
"gatsby-transformer-sharp": "^5.11.0",
|
|
31
31
|
"prop-types": "15.7.2",
|
|
@@ -78,6 +78,11 @@ const Main = ({
|
|
|
78
78
|
? lazy(() => import('~atoms/author'))
|
|
79
79
|
: null;
|
|
80
80
|
|
|
81
|
+
const Disquss =
|
|
82
|
+
page.type === 'operator' && process.env.ENABLE_DISQUSS === 'true'
|
|
83
|
+
? lazy(() => import(`~atoms/disquss`))
|
|
84
|
+
: null;
|
|
85
|
+
|
|
81
86
|
const Feedback =
|
|
82
87
|
page?.sections?.main?.feedbackCounter &&
|
|
83
88
|
!isContactUsPage &&
|
|
@@ -141,6 +146,13 @@ const Main = ({
|
|
|
141
146
|
modulePosition={index + 1}
|
|
142
147
|
/>
|
|
143
148
|
))}
|
|
149
|
+
|
|
150
|
+
{Disquss && (
|
|
151
|
+
<Suspense fallback={<></>}>
|
|
152
|
+
<Disquss page={pageContext.page} />
|
|
153
|
+
</Suspense>
|
|
154
|
+
)}
|
|
155
|
+
|
|
144
156
|
{SearchPage && (
|
|
145
157
|
<Suspense fallback={<div className={styles.searchContainer} />}>
|
|
146
158
|
<SearchPage page={page} serverData={serverData} allMarkets={pageContext.allMarkets} />
|