gatsby-matrix-theme 53.3.16 → 53.4.0
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/gatsby-core-theme/components/molecules/module/index.js +3 -0
- package/storybook/public/{384.50e69d97.iframe.bundle.js → 384.1251be93.iframe.bundle.js} +4 -4
- package/storybook/public/{384.50e69d97.iframe.bundle.js.map → 384.1251be93.iframe.bundle.js.map} +1 -1
- package/storybook/public/533.32c3a7d3.iframe.bundle.js +1 -0
- package/storybook/public/iframe.html +1 -1
- package/storybook/public/main.55852b85.iframe.bundle.js +1 -0
- package/storybook/public/project.json +1 -1
- package/storybook/public/runtime~main.c20fb245.iframe.bundle.js +1 -0
- package/storybook/public/main.0c9e2617.iframe.bundle.js +0 -1
- package/storybook/public/runtime~main.e9441cd1.iframe.bundle.js +0 -1
- /package/storybook/public/{384.50e69d97.iframe.bundle.js.LICENSE.txt → 384.1251be93.iframe.bundle.js.LICENSE.txt} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,20 @@
|
|
|
1
|
+
# [53.4.0](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/compare/v53.3.17...v53.4.0) (2025-11-10)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
* Merge branch 'add-spotlights-template-five' into 'master' ([e4f25e4](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/e4f25e4d1e01919adff64a5e13782f45df78a7b5))
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* add spotlights template five ([1836c74](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/1836c7406a144a887badabfc8c6cd54a08321b97))
|
|
10
|
+
|
|
11
|
+
## [53.3.17](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/compare/v53.3.16...v53.3.17) (2025-11-10)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* update core version ([435dd05](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/435dd05c4f69084e74fff657c10d70295a68b3fc))
|
|
17
|
+
|
|
1
18
|
## [53.3.16](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/compare/v53.3.15...v53.3.16) (2025-11-06)
|
|
2
19
|
|
|
3
20
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gatsby-matrix-theme",
|
|
3
|
-
"version": "53.
|
|
3
|
+
"version": "53.4.0",
|
|
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.6.
|
|
28
|
+
"gatsby-core-theme": "44.6.4",
|
|
29
29
|
"gatsby-plugin-sharp": "^5.11.0",
|
|
30
30
|
"gatsby-transformer-sharp": "^5.11.0",
|
|
31
31
|
"gatsby-plugin-sitemap": "^6.13.1",
|
|
@@ -100,6 +100,9 @@ const Modules = ({ module, pageContext, index, exclOperator, serverData, moduleP
|
|
|
100
100
|
if (module?.style === 'template_four') {
|
|
101
101
|
return lazy(() => import('~molecules/spotlights_v2/image-text/template-four'));
|
|
102
102
|
}
|
|
103
|
+
if (module?.style === 'template_five') {
|
|
104
|
+
return lazy(() => import('~molecules/spotlights_v2/image-text/template-five'));
|
|
105
|
+
}
|
|
103
106
|
return lazy(() => import('~molecules/spotlights_v2/image-text/template-one'));
|
|
104
107
|
} else if (module?.mode === 'icon') {
|
|
105
108
|
return lazy(() => import('~molecules/spotlights_v2/icon/template-one'));
|