gatsby-matrix-theme 52.0.62 → 52.0.64
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 +15 -0
- package/package.json +2 -2
- package/src/gatsby-core-theme/components/molecules/module/index.js +4 -2
- package/storybook/public/638.3ffd445c.iframe.bundle.js +7 -0
- package/storybook/public/{638.46ae3ad1.iframe.bundle.js.LICENSE.txt → 638.3ffd445c.iframe.bundle.js.LICENSE.txt} +9 -0
- package/storybook/public/{638.46ae3ad1.iframe.bundle.js.map → 638.3ffd445c.iframe.bundle.js.map} +1 -1
- package/storybook/public/733.7566cbec.iframe.bundle.js +1 -0
- package/storybook/public/iframe.html +1 -1
- package/storybook/public/main.da789319.iframe.bundle.js +1 -0
- package/storybook/public/project.json +1 -1
- package/storybook/public/runtime~main.3b54c9bf.iframe.bundle.js +1 -0
- package/storybook/public/638.46ae3ad1.iframe.bundle.js +0 -7
- package/storybook/public/main.7668a76c.iframe.bundle.js +0 -1
- package/storybook/public/runtime~main.1326166e.iframe.bundle.js +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
## [52.0.64](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/compare/v52.0.63...v52.0.64) (2025-01-21)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* update with latest core version ([99945c5](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/99945c561464c5175ea19143b98b1ec57e4dfc8d))
|
|
7
|
+
|
|
8
|
+
## [52.0.63](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/compare/v52.0.62...v52.0.63) (2025-01-20)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* update version ([73f8694](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/73f8694e48f71f0ab7625bc569f95aa20c388de7))
|
|
14
|
+
* update version ([acb2b83](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/acb2b834d3257b54ba8dcb5180f3c3b387dcc9eb))
|
|
15
|
+
|
|
1
16
|
## [52.0.62](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/compare/v52.0.61...v52.0.62) (2025-01-17)
|
|
2
17
|
|
|
3
18
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gatsby-matrix-theme",
|
|
3
|
-
"version": "52.0.
|
|
3
|
+
"version": "52.0.64",
|
|
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": "41.1.
|
|
28
|
+
"gatsby-core-theme": "41.1.29",
|
|
29
29
|
"gatsby-plugin-sharp": "^5.11.0",
|
|
30
30
|
"gatsby-transformer-sharp": "^5.11.0",
|
|
31
31
|
"gatsby-plugin-sitemap": "^6.13.1",
|
|
@@ -194,6 +194,8 @@ const Modules = ({ module, pageContext, index, exclOperator, serverData, moduleP
|
|
|
194
194
|
return lazy(() => import('../../../../components/molecules/teatime-lunchtime-frame'));
|
|
195
195
|
case 'teatime_and_lunchtime_disclaimer':
|
|
196
196
|
return lazy(() => import('../../../../components/atoms/teatime-lunchtime-disclaimer'));
|
|
197
|
+
case 'disquss':
|
|
198
|
+
return lazy(() => import(`~atoms/disquss`));
|
|
197
199
|
default:
|
|
198
200
|
return null;
|
|
199
201
|
}
|
|
@@ -307,7 +309,7 @@ const Modules = ({ module, pageContext, index, exclOperator, serverData, moduleP
|
|
|
307
309
|
module.module_introduction &&
|
|
308
310
|
module.module_introduction !== '<p></p>';
|
|
309
311
|
|
|
310
|
-
const
|
|
312
|
+
const noSuspense = [
|
|
311
313
|
'cards_v2',
|
|
312
314
|
'content',
|
|
313
315
|
'top_list',
|
|
@@ -373,7 +375,7 @@ const Modules = ({ module, pageContext, index, exclOperator, serverData, moduleP
|
|
|
373
375
|
)}
|
|
374
376
|
</>
|
|
375
377
|
)}
|
|
376
|
-
{
|
|
378
|
+
{noSuspense.includes(module.name) ? (
|
|
377
379
|
<ModuleComponent
|
|
378
380
|
module={module}
|
|
379
381
|
page={page}
|