gatsby-core-theme 44.4.53 → 44.4.55

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,24 @@
1
+ ## [44.4.55](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.4.54...v44.4.55) (2025-09-09)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * update styling ([33b8f06](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/33b8f0669b65617d481379ab42989a56c98e792f))
7
+
8
+ ## [44.4.54](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.4.53...v44.4.54) (2025-09-08)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * fixed tests ([bbe1370](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/bbe1370f5eef7787e8c7865b1fbfc2ca8c936bb5))
14
+ * remove content id when content is empty, for the moment when content is empty is showing the id ([7a55cc1](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/7a55cc16eb012270d2c9d192fd4da92abb7d5fb7))
15
+ * remove livegoals from SSR till they want to use matrix theme ([854e7fd](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/854e7fd43b1a059514be414fb85550556e2f8598))
16
+ * update alt ([9ef63e3](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/9ef63e333909472eb3242a0d0eb571ea4581c41f))
17
+
18
+
19
+ * Merge branch 'remove-content-id' into 'master' ([36eb1c2](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/36eb1c20625401ed1ae3e814324656223bdcb96b))
20
+ * Merge branch 'sheet' into 'master' ([3682181](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/36821815a5b79ac165b4837b3041c8188e583fc6))
21
+
1
22
  ## [44.4.53](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.4.52...v44.4.53) (2025-09-06)
2
23
 
3
24
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gatsby-core-theme",
3
- "version": "44.4.53",
3
+ "version": "44.4.55",
4
4
  "description": "Gatsby Theme NPM Package",
5
5
  "author": "",
6
6
  "license": "ISC",
@@ -62,6 +62,7 @@
62
62
  .replyButton{
63
63
  border-radius: var(--comment-btn-border-radius, 10rem);
64
64
  border: var(--comment-btn-border, 1.5px solid #161128);
65
+ color: var(--comment-btn-font-color, #0A0E19);
65
66
  font-size: var(--comment-btn-font-size, 1.2rem);
66
67
  font-weight: var(--comment-btn-font-weight, 700);
67
68
  line-height: 1.8rem;
@@ -18,7 +18,7 @@ export default function TemplateOne({ module, width = 106, height = 106, loading
18
18
  height={height}
19
19
  width={width}
20
20
  src={imagePrettyUrl(res?.icon, width, height)}
21
- alt={getAltText(res?.image_object || res?.icon_object, res?.label)}
21
+ alt={getAltText(res?.image_object || res?.icon_object, res?.label || res.link_text)}
22
22
  loading={loadingImg}
23
23
  />
24
24
  )}
@@ -55,7 +55,6 @@ export default {
55
55
  'coin'
56
56
  ],
57
57
  site_ssr:[
58
- 'livegoals.com'
59
58
  ],
60
59
  newsletter:{
61
60
  default: {
@@ -490,7 +490,7 @@ export function processContentModule(
490
490
  relationData,
491
491
  content
492
492
  ) {
493
- module.value = (content && content[module.value]) || module.value;
493
+ module.value = (content && content[module.value]) || "";
494
494
 
495
495
  module.value = generatePlaceholderString(
496
496
  module.value,
@@ -526,9 +526,9 @@ export function shouldSavePrefilled(module = {}, siteName) {
526
526
  export function processSpotlightModule(module = {}, content) {
527
527
  module.items.forEach((item) => {
528
528
  item.content = trailingSlash(
529
- (content && content[item.content]) || item.content
529
+ (content && content[item.content]) || ""
530
530
  );
531
- item.text = trailingSlash((content && content[item.text]) || item.text);
531
+ item.text = trailingSlash((content && content[item.text]) || "");
532
532
  });
533
533
 
534
534
  return module;
@@ -275,7 +275,7 @@ describe("Modules Helper", () => {
275
275
  test("Process Content function", () => {
276
276
  const module = contentPlaceholders;
277
277
  processContentModule(module, {}, {});
278
- expect(module.value).toContain(new Date().getFullYear().toString());
278
+ // expect(module.value).toContain(new Date().getFullYear().toString());
279
279
  expect(module.show_more_content).toContain(new Date().getFullYear().toString());
280
280
  });
281
281