gatsby-core-theme 44.30.2 → 44.30.4
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,20 @@
|
|
|
1
|
+
## [44.30.4](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.30.3...v44.30.4) (2026-06-26)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* update datalocation ([e468855](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/e46885572c2a7f4adc6b61e1197d44e49ea8efaa))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
* Merge branch 'en-531-data-attributes' into 'master' ([30587d9](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/30587d9f71241a5a2c8aec2be564c4225862c7da))
|
|
10
|
+
|
|
11
|
+
## [44.30.3](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.30.2...v44.30.3) (2026-06-25)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* add variable for height of bonus code button ([f147e4d](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/f147e4d70100a3fc9cd55e1e497cfdff7dd1f629))
|
|
17
|
+
|
|
1
18
|
## [44.30.2](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.30.1...v44.30.2) (2026-06-24)
|
|
2
19
|
|
|
3
20
|
|
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
|
>
|
|
@@ -196,7 +196,7 @@
|
|
|
196
196
|
@include flex-align(center, center);
|
|
197
197
|
|
|
198
198
|
gap: 0.6rem;
|
|
199
|
-
height: 2.4rem;
|
|
199
|
+
height: var(--notification-bonus-code-height, 2.4rem);
|
|
200
200
|
padding: 0 0.8rem;
|
|
201
201
|
border: 1px var(--notification-bonus-code-border-style, dashed)
|
|
202
202
|
var(--notification-bonus-code-border, #20cd77);
|