gatsby-core-theme 44.2.14 → 44.2.16

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.16](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.2.15...v44.2.16) (2025-06-19)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * added var to cookie consets ([e569b0e](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/e569b0e6af31ade16b8223665cc6fc0f655fee22))
7
+
8
+ ## [44.2.15](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.2.14...v44.2.15) (2025-06-19)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * added no wrap to buttons on cookies ([62e0adc](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/62e0adc846d11ad1e66cf5a2d9b1c4452b2a5e2c))
14
+ * fix the software label name ([65654fb](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/65654fb209f5083031d35ab10ae9696bb77dc209))
15
+
1
16
  ## [44.2.14](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.2.13...v44.2.14) (2025-06-19)
2
17
 
3
18
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gatsby-core-theme",
3
- "version": "44.2.14",
3
+ "version": "44.2.16",
4
4
  "description": "Gatsby Theme NPM Package",
5
5
  "author": "",
6
6
  "license": "ISC",
@@ -44,8 +44,9 @@
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
- display: flex;
49
+ display: var(--cookie-consent-button-display, flex);
49
50
  border-radius: var(--cookie-consent-button-radius, 10rem);
50
51
  padding: var(--cookie-consent-button-padding, 1.6rem 2.4rem);
51
52
  font-size: var(--cookie-consent-button-size, 1.8rem);
@@ -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