gatsby-matrix-theme 53.28.10 → 53.28.12
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 +17 -0
- package/package.json +2 -2
- package/src/components/atoms/cards/comparison-table/index.js +2 -1
- package/src/gatsby-core-theme/components/organisms/toplist/index.js +2 -1
- package/src/gatsby-core-theme/components/organisms/toplist/list/index.js +2 -0
- package/storybook/public/{251.ade3cb8f.iframe.bundle.js → 251.c3b8e161.iframe.bundle.js} +4 -4
- package/storybook/public/{251.ade3cb8f.iframe.bundle.js.map → 251.c3b8e161.iframe.bundle.js.map} +1 -1
- package/storybook/public/iframe.html +1 -1
- package/storybook/public/main.f2521572.iframe.bundle.js +1 -0
- package/storybook/public/project.json +1 -1
- package/storybook/public/main.e02b2ca6.iframe.bundle.js +0 -1
- /package/storybook/public/{251.ade3cb8f.iframe.bundle.js.LICENSE.txt → 251.c3b8e161.iframe.bundle.js.LICENSE.txt} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,20 @@
|
|
|
1
|
+
## [53.28.12](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/compare/v53.28.11...v53.28.12) (2026-09-15)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* add pagestyles on some modules ([ddc4812](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/ddc4812a32c479e17b8191b6b926dc24ce22b75f))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
* Merge branch 'en-696-add-page-styles' into 'master' ([87a4400](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/87a44002789ae49c829f2189e95afb926f4b874a))
|
|
10
|
+
|
|
11
|
+
## [53.28.11](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/compare/v53.28.10...v53.28.11) (2026-09-10)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* update matrix version ([20955c5](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/20955c5e4645480dbe8902ae110947924917b79a))
|
|
17
|
+
|
|
1
18
|
## [53.28.10](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/compare/v53.28.9...v53.28.10) (2026-09-08)
|
|
2
19
|
|
|
3
20
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gatsby-matrix-theme",
|
|
3
|
-
"version": "53.28.
|
|
3
|
+
"version": "53.28.12",
|
|
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.
|
|
29
|
+
"gatsby-core-theme": "44.35.10",
|
|
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>
|