gatsby-core-theme 35.1.1 → 35.1.3
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,26 @@
|
|
|
1
|
+
## [35.1.3](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v35.1.2...v35.1.3) (2024-08-06)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* add payout time ([7c0ba73](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/7c0ba733207e119e9be70e1b2aa4a2b07e662e19))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Code Refactoring
|
|
10
|
+
|
|
11
|
+
* add style ([3c5b7e5](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/3c5b7e54fba0fd69a2142556f64322b835a0b057))
|
|
12
|
+
* change to ratings rtp value if 0 ([8b8eb92](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/8b8eb92a51419c4c94206351dadb91bc75b0e5e2))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
* Merge branch 'tm-4666-ratings' into 'master' ([0362956](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/0362956a9d525ffd394ac8b77832ec39dd40bc9f))
|
|
16
|
+
|
|
17
|
+
## [35.1.2](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v35.1.1...v35.1.2) (2024-08-05)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* added new piguard attribute for tracking API ([c23cbca](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/c23cbca25fb78e99102d3ba38d44e21e01b76e39))
|
|
23
|
+
|
|
1
24
|
## [35.1.1](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v35.1.0...v35.1.1) (2024-08-02)
|
|
2
25
|
|
|
3
26
|
|
package/package.json
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
.ratingList {
|
|
2
2
|
@include flex-direction(row);
|
|
3
|
+
|
|
3
4
|
overflow-x: scroll;
|
|
4
5
|
gap: 0.8rem;
|
|
5
6
|
|
|
@@ -28,26 +29,27 @@
|
|
|
28
29
|
flex-direction: column;
|
|
29
30
|
font-weight: 700;
|
|
30
31
|
font-size: 1.4rem;
|
|
31
|
-
background-color: #fbfbfb;
|
|
32
|
-
border: 1px solid #e9e9e9;
|
|
32
|
+
background-color: var(--ratings-bg-color, #fbfbfb);
|
|
33
|
+
border: var(--ratings-border, 1px solid #e9e9e9);
|
|
33
34
|
border-radius: 8px;
|
|
34
35
|
padding: 16px 8px;
|
|
35
36
|
min-height: 9.6rem;
|
|
36
37
|
min-width: 10.4rem;
|
|
38
|
+
color: var(--ratings-active-color, #515156);
|
|
37
39
|
|
|
38
40
|
@include min(tablet) {
|
|
39
41
|
margin-bottom: inherit;
|
|
40
42
|
width: -webkit-fill-available;
|
|
41
43
|
}
|
|
42
44
|
|
|
43
|
-
// Star rating
|
|
45
|
+
// NOTE Star rating
|
|
44
46
|
>div {
|
|
45
47
|
display: inline-flex;
|
|
46
48
|
align-items: center;
|
|
47
49
|
font-weight: 800;
|
|
48
50
|
font-size: 18px;
|
|
49
51
|
line-height: 28px;
|
|
50
|
-
border:
|
|
52
|
+
border: 0;
|
|
51
53
|
background-color: #fbfbfb;
|
|
52
54
|
|
|
53
55
|
>svg {
|
|
@@ -92,11 +94,6 @@
|
|
|
92
94
|
color: #1c1a28;
|
|
93
95
|
display: flex;
|
|
94
96
|
|
|
95
|
-
>svg {
|
|
96
|
-
width: 2rem;
|
|
97
|
-
height: 2rem;
|
|
98
|
-
}
|
|
99
|
-
|
|
100
97
|
@include min(tablet) {
|
|
101
98
|
font-weight: 800;
|
|
102
99
|
}
|
package/src/helpers/tracker.mjs
CHANGED
|
@@ -93,6 +93,7 @@ export async function getAffiliateLink(operator, path, page, headers, url) {
|
|
|
93
93
|
split_test_name: cookie ? cookie.split_test_name || null : null,
|
|
94
94
|
google_client_id: cookie ? cookie._ga || null : null,
|
|
95
95
|
split_test_variant: cookie ? cookie.split_test_variant || null : null,
|
|
96
|
+
pii_guard_id: cookie ? cookie._gi || null : null,
|
|
96
97
|
facebook_pixel_id: process.env.PIXEL_ID || null,
|
|
97
98
|
...(isJsonString(cookie.affObject) ? JSON.parse(cookie.affObject) : {}),
|
|
98
99
|
...(isJsonString(cookie.affObject) &&
|