gatsby-matrix-theme 53.28.11 → 53.28.13

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.28.13](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/compare/v53.28.12...v53.28.13) (2026-09-15)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * update core version ([f88e23e](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/f88e23ef1419b688ec087e314f32edf20e493cf0))
7
+
8
+ ## [53.28.12](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/compare/v53.28.11...v53.28.12) (2026-09-15)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * add pagestyles on some modules ([ddc4812](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/ddc4812a32c479e17b8191b6b926dc24ce22b75f))
14
+
15
+
16
+ * Merge branch 'en-696-add-page-styles' into 'master' ([87a4400](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/87a44002789ae49c829f2189e95afb926f4b874a))
17
+
1
18
  ## [53.28.11](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/compare/v53.28.10...v53.28.11) (2026-09-10)
2
19
 
3
20
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gatsby-matrix-theme",
3
- "version": "53.28.11",
3
+ "version": "53.28.13",
4
4
  "main": "index.js",
5
5
  "description": "Matrix Theme NPM Package",
6
6
  "author": "",
@@ -26,7 +26,7 @@
26
26
  "@gigmedia/enigma-utils": "^1.20.0",
27
27
  "@react-icons/all-files": "^4.1.0",
28
28
  "gatsby": "^5.11.0",
29
- "gatsby-core-theme": "44.35.10",
29
+ "gatsby-core-theme": "44.35.11",
30
30
  "gatsby-plugin-sharp": "^5.11.0",
31
31
  "gatsby-plugin-sitemap": "^6.13.1",
32
32
  "gatsby-transformer-sharp": "^5.11.0",
@@ -13,7 +13,7 @@ export default function ComparisonTable({ module, page, modulePosition }) {
13
13
  <div className={styles?.comparisonTable || ''}>
14
14
  <ScrollX refTag={ele} scroll>
15
15
  <div ref={ele} className={styles?.contentTable || ''}>
16
- <Table type={page?.relation_type} items={module?.items} tempate={page?.template} modulePosition={modulePosition} />
16
+ <Table type={page?.relation_type} items={module?.items} tempate={page?.template} modulePosition={modulePosition} pageStyle={page?.page_styles} />
17
17
  </div>
18
18
  </ScrollX>
19
19
  </div>
@@ -28,6 +28,7 @@ ComparisonTable.propTypes = {
28
28
  relation_type: PropTypes.string,
29
29
  type: PropTypes.string,
30
30
  template: PropTypes.string,
31
+ page_styles: PropTypes.shape({}),
31
32
  }),
32
33
  modulePosition: PropTypes.number,
33
34
  };
@@ -42,6 +42,7 @@ const TopList = ({
42
42
  template={page?.template}
43
43
  verifyIcon={verifyIcon}
44
44
  modulePosition={modulePosition}
45
+ pageStyle={page?.page_styles}
45
46
  />
46
47
  </div>
47
48
  ));
@@ -96,7 +97,7 @@ TopList.propTypes = {
96
97
  }),
97
98
  isHomepageFirstModule: PropTypes.bool,
98
99
  toplistHeading: PropTypes.element,
99
- page: PropTypes.shape({ template: PropTypes.string, path: PropTypes.string }),
100
+ page: PropTypes.shape({ template: PropTypes.string, path: PropTypes.string, page_styles: PropTypes.shape({}), }),
100
101
  showAffiliateDisclaimer: PropTypes.bool,
101
102
  verifyIcon: PropTypes.element,
102
103
  showIcon: PropTypes.string,
@@ -27,6 +27,7 @@ export default function List({
27
27
  loadMoreIcon = null,
28
28
  modulePosition,
29
29
  verifyIcon = <VerifiedAuthor />,
30
+ pageStyle
30
31
  }) {
31
32
  const initLoadItems = Number(initItemsCount) !== 0 ? Number(initItemsCount) : 10000;
32
33
  const loadingItems = Number(loadItemsCount) !== 0 ? Number(loadItemsCount) : 10000;
@@ -94,6 +95,7 @@ export default function List({
94
95
  showAuthor={modulestyle !== 'template_three'}
95
96
  itemPosition={index + 1}
96
97
  modulePosition={modulePosition}
98
+ pageStyle={pageStyle}
97
99
  />
98
100
  ))}
99
101
  </ol>