gatsby-matrix-theme 53.0.7 → 53.0.9

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,20 @@
1
+ ## [53.0.9](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/compare/v53.0.8...v53.0.9) (2025-04-01)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * update version ([4cd5fb7](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/4cd5fb783ce0f7436c39533e5de18a337e20c8a1))
7
+
8
+ ## [53.0.8](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/compare/v53.0.7...v53.0.8) (2025-03-25)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * update package json ([b2dc54c](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/b2dc54c6ef2f8f48e6d22447c219f361a013cfb8))
14
+
15
+
16
+ * Merge branch 'tm-5326-page-sorting-archive' into 'master' ([64d20f3](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/64d20f3e2912e59ce4f3a488f9cd9a556a4bb221))
17
+
1
18
  ## [53.0.7](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/compare/v53.0.6...v53.0.7) (2025-03-21)
2
19
 
3
20
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gatsby-matrix-theme",
3
- "version": "53.0.7",
3
+ "version": "53.0.9",
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": "44.0.6",
28
+ "gatsby-core-theme": "44.0.9",
29
29
  "gatsby-plugin-sharp": "^5.11.0",
30
30
  "gatsby-transformer-sharp": "^5.11.0",
31
31
  "gatsby-plugin-sitemap": "^6.13.1",
@@ -395,8 +395,13 @@ const Modules = ({ module, pageContext, index, exclOperator, serverData, moduleP
395
395
  <Suspense
396
396
  fallback={
397
397
  <div
398
- className={`${isSportsStake.includes(module.name) ? styles.sportstake : styles[module.name]
399
- }`}
398
+ className={`${
399
+ isSportsStake.includes(module.name) ? styles.sportstake : styles[module.name]
400
+ } ${
401
+ styles[`${moduleClassName}_suspense`] !== undefined
402
+ ? styles[`${moduleClassName}_suspense`] || ''
403
+ : ''
404
+ }`}
400
405
  />
401
406
  }
402
407
  >
@@ -164,4 +164,8 @@
164
164
 
165
165
  .sportstake {
166
166
  min-height: 42rem;
167
+ }
168
+
169
+ .archiveModule_suspense {
170
+ min-height: 100rem;
167
171
  }