gatsby-core-theme 44.31.0 → 44.31.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 CHANGED
@@ -1,3 +1,14 @@
1
+ ## [44.31.1](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.31.0...v44.31.1) (2026-07-09)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * give styling for external buttons as well ([108e1c1](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/108e1c1b452be295ef72c7897977d281b58cbaa8))
7
+ * update classname ([09f16a2](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/09f16a263580b099fe8fe95fe7858ae702136d8a))
8
+
9
+
10
+ * Merge branch 'en-590-buttons' into 'master' ([93e44f4](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/93e44f4a456cced4b88c1240db289c7755349d9d))
11
+
1
12
  # [44.31.0](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.30.7...v44.31.0) (2026-07-07)
2
13
 
3
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gatsby-core-theme",
3
- "version": "44.31.0",
3
+ "version": "44.31.1",
4
4
  "description": "Gatsby Theme NPM Package",
5
5
  "author": "",
6
6
  "license": "ISC",
@@ -106,7 +106,9 @@ export default (
106
106
  pageTemplate={pageTemplate}
107
107
  moduleName={TrackingKeys?.CONTENT}
108
108
  tracker={module?.tracking_link_name || "main"}
109
- className="content-module-gtm"
109
+ className={[node?.attribs?.class, "content-module-gtm"]
110
+ .filter(Boolean)
111
+ .join(" ")}
110
112
  clickedElement="link"
111
113
  rel={node?.attribs?.rel}
112
114
  modulePosition={modulePosition}