gatsby-core-theme 44.2.13 → 44.2.15

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,18 @@
1
+ ## [44.2.15](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.2.14...v44.2.15) (2025-06-19)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * added no wrap to buttons on cookies ([62e0adc](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/62e0adc846d11ad1e66cf5a2d9b1c4452b2a5e2c))
7
+ * fix the software label name ([65654fb](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/65654fb209f5083031d35ab10ae9696bb77dc209))
8
+
9
+ ## [44.2.14](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.2.13...v44.2.14) (2025-06-19)
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * added props to floating area ([6868daa](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/6868daab638a33bc7b73f0889901286dc20021c9))
15
+
1
16
  ## [44.2.13](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.2.12...v44.2.13) (2025-06-18)
2
17
 
3
18
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gatsby-core-theme",
3
- "version": "44.2.13",
3
+ "version": "44.2.15",
4
4
  "description": "Gatsby Theme NPM Package",
5
5
  "author": "",
6
6
  "license": "ISC",
@@ -71,7 +71,7 @@ export default function FloatingArea({
71
71
 
72
72
  return (
73
73
  <div className={`${styles.floatingArea} ${showScroll ? styles.show : ""}`}>
74
- <ScrollToTop />
74
+ {pageTypes?.[pageTemplate]?.showScrollToTop || pageTypes.default?.showScrollToTop && <ScrollToTop />}
75
75
  {OperatorBanner && (
76
76
  <Suspense fallback={<></>}>
77
77
  <OperatorBanner
@@ -44,6 +44,7 @@
44
44
  background-color: var(--primary-button-color, #6e33e5);
45
45
  }
46
46
  button {
47
+ text-wrap: var(--cookie-consent-wrap-button, nowrap);
47
48
  height: var(--cookie-consent-button-height, 5.6rem);
48
49
  display: flex;
49
50
  border-radius: var(--cookie-consent-button-radius, 10rem);
@@ -34,6 +34,7 @@ export const pageTypes = {
34
34
  showLogoWithLink: true,
35
35
  disableSearch: false,
36
36
  showNotification: true,
37
+ showScrollToTop: true,
37
38
  customComponent: true,
38
39
  exclusiveOperator: true,
39
40
  navMenu: "main_menu",
@@ -36,7 +36,7 @@ export const processRelations = (
36
36
  transformedPages[market][page.relation_type][
37
37
  index
38
38
  ]?.relation?.software?.forEach(software => {
39
- const mappedSoftware = transformedPages[market]?.software_provide?.filter(pr => pr.relation_id === software.id)[0];
39
+ const mappedSoftware = transformedPages[market]?.software_provider?.filter(pr => pr.relation_id === software.id)[0];
40
40
  mappedSoftware && (software.path = mappedSoftware.path);
41
41
  });
42
42