gatsby-matrix-theme 53.4.3 → 53.5.1
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 +30 -0
- package/gatsby-config.js +3 -2
- package/package.json +2 -2
- package/src/components/molecules/operator-details/index.js +2 -2
- package/storybook/public/{384.14a3783a.iframe.bundle.js → 384.c44876d1.iframe.bundle.js} +3 -3
- package/storybook/public/{384.14a3783a.iframe.bundle.js.map → 384.c44876d1.iframe.bundle.js.map} +1 -1
- package/storybook/public/iframe.html +1 -1
- package/storybook/public/main.b0cb91f8.iframe.bundle.js +1 -0
- package/storybook/public/project.json +1 -1
- package/storybook/public/main.680a5fbc.iframe.bundle.js +0 -1
- /package/storybook/public/{384.14a3783a.iframe.bundle.js.LICENSE.txt → 384.c44876d1.iframe.bundle.js.LICENSE.txt} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,33 @@
|
|
|
1
|
+
## [53.5.1](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/compare/v53.5.0...v53.5.1) (2025-11-20)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Config
|
|
5
|
+
|
|
6
|
+
* update theme ([0a6a94b](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/0a6a94bfbe48e8a0cdb97159ed0142fe0c8e6922))
|
|
7
|
+
|
|
8
|
+
# [53.5.0](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/compare/v53.4.3...v53.5.0) (2025-11-19)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* add gtm classes ([be1e620](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/be1e62046eb485d2db4f44672306cae68596f601))
|
|
14
|
+
* add gtmClass default for pretty link ([0ec9331](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/0ec9331d2a018aff99ab2ae5399e9524fd2cdeb5))
|
|
15
|
+
* revert back ([504d7cf](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/504d7cf55957e5af405d71b0849c452eac8dae24))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Config
|
|
19
|
+
|
|
20
|
+
* update theme ([dcf62f4](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/dcf62f40b7e32272bb9620822cfa9cdec4e730e3))
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
* Merge branch 'en-142/themeoptions-relation-keys' into 'master' ([9387373](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/9387373cc0c986579d4e90ff8b00671e13da081a))
|
|
24
|
+
* Merge branch 'operator-details-update' into 'master' ([fd29dba](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/fd29dbae4b67a264ccac7d864449e5d9ae0ed694))
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
### Features
|
|
28
|
+
|
|
29
|
+
* additional relation keys from themeoptions ([8dcdc0d](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/8dcdc0d7228ecdbd0b6368c7809418c941e66947))
|
|
30
|
+
|
|
1
31
|
## [53.4.3](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/compare/v53.4.2...v53.4.3) (2025-11-17)
|
|
2
32
|
|
|
3
33
|
|
package/gatsby-config.js
CHANGED
|
@@ -6,7 +6,7 @@ require('dotenv').config({
|
|
|
6
6
|
path: `.env.${activeEnv}`,
|
|
7
7
|
});
|
|
8
8
|
|
|
9
|
-
module.exports = {
|
|
9
|
+
module.exports = (themeOptions = {}) => ({
|
|
10
10
|
flags: {
|
|
11
11
|
DEV_SSR: false,
|
|
12
12
|
},
|
|
@@ -16,10 +16,11 @@ module.exports = {
|
|
|
16
16
|
options: {
|
|
17
17
|
siteName: process.env.GATSBY_SITE_NAME,
|
|
18
18
|
preconnectLinks: [getDomain(process.env.IMAGE_CDN_URL)],
|
|
19
|
+
...themeOptions,
|
|
19
20
|
},
|
|
20
21
|
},
|
|
21
22
|
`gatsby-plugin-image`,
|
|
22
23
|
`gatsby-plugin-sharp`,
|
|
23
24
|
`gatsby-transformer-sharp`,
|
|
24
25
|
],
|
|
25
|
-
};
|
|
26
|
+
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gatsby-matrix-theme",
|
|
3
|
-
"version": "53.
|
|
3
|
+
"version": "53.5.1",
|
|
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.
|
|
28
|
+
"gatsby-core-theme": "44.8.1",
|
|
29
29
|
"gatsby-plugin-sharp": "^5.11.0",
|
|
30
30
|
"gatsby-transformer-sharp": "^5.11.0",
|
|
31
31
|
"gatsby-plugin-sitemap": "^6.13.1",
|
|
@@ -68,7 +68,7 @@ const OperatorDetails = ({
|
|
|
68
68
|
moduleName={moduleName}
|
|
69
69
|
tracker={trackerType}
|
|
70
70
|
clickedElement={clickedElement}
|
|
71
|
-
className={classStyle}
|
|
71
|
+
className={`${classStyle}`}
|
|
72
72
|
modulePosition={modulePosition}
|
|
73
73
|
itemPosition={itemPosition}
|
|
74
74
|
>
|
|
@@ -82,7 +82,7 @@ const OperatorDetails = ({
|
|
|
82
82
|
|
|
83
83
|
return (
|
|
84
84
|
<div className={`${styles.operatorDetails} ${costumeStyle}`}>
|
|
85
|
-
<Tag classStyle="
|
|
85
|
+
<Tag classStyle="logo-cta-gtm">
|
|
86
86
|
<LazyImage
|
|
87
87
|
src={imagePrettyUrl(image?.filename, imageWidth, imageHeight)}
|
|
88
88
|
alt={getAltText(image, itemName)}
|