gatsby-core-theme 44.30.3 → 44.30.5
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,23 @@
|
|
|
1
|
+
## [44.30.5](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.30.4...v44.30.5) (2026-06-26)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* make helptext editable ([5906362](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/59063626f3ffcfc4a659016be50bafbfcd73effc))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
* Merge branch 'en-571-footer-text-editable' into 'master' ([272cec1](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/272cec104837e1b5497d25c8e87d90e3a35cad65))
|
|
10
|
+
|
|
11
|
+
## [44.30.4](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.30.3...v44.30.4) (2026-06-26)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* update datalocation ([e468855](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/e46885572c2a7f4adc6b61e1197d44e49ea8efaa))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
* Merge branch 'en-531-data-attributes' into 'master' ([30587d9](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/30587d9f71241a5a2c8aec2be564c4225862c7da))
|
|
20
|
+
|
|
1
21
|
## [44.30.3](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.30.2...v44.30.3) (2026-06-25)
|
|
2
22
|
|
|
3
23
|
|
package/package.json
CHANGED
|
@@ -73,6 +73,12 @@ const OperatorCtaButton = ({
|
|
|
73
73
|
|
|
74
74
|
const operatorName = operator?.short_name || operator?.name || undefined;
|
|
75
75
|
const dataModule = moduleName && modulePosition ? `${moduleName}-${modulePosition}` : undefined;
|
|
76
|
+
const dataLocation =
|
|
77
|
+
moduleName && modulePosition
|
|
78
|
+
? `${moduleName}-${modulePosition}${
|
|
79
|
+
itemPosition ? `-position-${itemPosition}` : ""
|
|
80
|
+
}`
|
|
81
|
+
: undefined;
|
|
76
82
|
return (
|
|
77
83
|
trackerLinkActive(operator, tracker) && status === "active" ? (
|
|
78
84
|
<a
|
|
@@ -90,7 +96,7 @@ const OperatorCtaButton = ({
|
|
|
90
96
|
{...(operator?.type && { 'data-vertical': operatorTypes[operator?.type] || operator?.type })}
|
|
91
97
|
{...(operatorName && { 'data-operator': operatorName })}
|
|
92
98
|
{...(trackerType && { 'data-tracker': trackerType })}
|
|
93
|
-
{...(modulePosition && { 'data-location':
|
|
99
|
+
{...(modulePosition && { 'data-location': dataLocation })}
|
|
94
100
|
{...(itemPosition && { 'data-position': itemPosition })}
|
|
95
101
|
{...(dataModule && { 'data-module': dataModule })}
|
|
96
102
|
>
|
|
@@ -91,7 +91,7 @@ const Footer = (props) => {
|
|
|
91
91
|
dmcaWidth: 100,
|
|
92
92
|
dmcaHeight: 30,
|
|
93
93
|
securityIcon: <Security />,
|
|
94
|
-
helpText,
|
|
94
|
+
helpText: getExtraField(section?.extra_fields, "help_text") || helpText,
|
|
95
95
|
phoneNum: helpline(),
|
|
96
96
|
copyrightCustomText: getExtraField(section?.extra_fields, "copyright_text"),
|
|
97
97
|
};
|