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 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.62",
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.26",
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 useSuspense = [
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
- {useSuspense.includes(module.name) ? (
378
+ {noSuspense.includes(module.name) ? (
377
379
  <ModuleComponent
378
380
  module={module}
379
381
  page={page}