gatsby-core-theme 44.8.1 → 44.8.2

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,13 @@
1
+ ## [44.8.2](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.8.1...v44.8.2) (2025-11-20)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * add custom class to footer ([cefd3fe](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/cefd3fea1ad832253a57fa0fb59e46a4279899df))
7
+
8
+
9
+ * Merge branch 'EN-256-christmas-footer' into 'master' ([178689e](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/178689ee68edfa948dc0b9761935b8cffbc67262))
10
+
1
11
  ## [44.8.1](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.8.0...v44.8.1) (2025-11-19)
2
12
 
3
13
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gatsby-core-theme",
3
- "version": "44.8.1",
3
+ "version": "44.8.2",
4
4
  "description": "Gatsby Theme NPM Package",
5
5
  "author": "",
6
6
  "license": "ISC",
@@ -30,13 +30,14 @@ const TemplateThree = ({
30
30
  dmcaHeight,
31
31
  securityIcon,
32
32
  copyrightCustomText,
33
+ customClass=''
33
34
  }) => {
34
35
  if (footerMenu !== null && footerMenu.children.length) {
35
36
  footerMenu.children.splice(footerMenuLimit);
36
37
  }
37
38
 
38
39
  return (
39
- <footer>
40
+ <footer className={`${customClass && styles[customClass]}`}>
40
41
  {asSeenOn && asSeenOn?.children?.length > 0 && (
41
42
  <AsSeenOn asSeenOn={asSeenOn} template="templateThree" />
42
43
  )}
@@ -138,4 +139,5 @@ TemplateThree.propTypes = {
138
139
  securityIcon: PropTypes.element,
139
140
  copyrightCustomText: PropTypes.string,
140
141
  footerMenuLimit: PropTypes.number,
142
+ customClass: PropTypes.string
141
143
  };