gatsby-core-theme 30.0.91 → 30.0.93
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
|
+
## [30.0.93](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v30.0.92...v30.0.93) (2024-03-04)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* added new params to tracker ([9282075](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/928207580f4895690dbcf2d001680e2105825801))
|
|
7
|
+
|
|
8
|
+
## [30.0.92](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v30.0.91...v30.0.92) (2024-03-04)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* added common rule in content css ([cb3a414](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/cb3a414a55c586ca8c754895fb3dac522517297e))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
* Merge branch 'tm-1222-repeated-bullets' into 'master' ([8f30404](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/8f304047d1ad36db0dd9b87f7f039dfc18de45f0))
|
|
17
|
+
|
|
1
18
|
## [30.0.91](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v30.0.90...v30.0.91) (2024-03-04)
|
|
2
19
|
|
|
3
20
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
.ul {
|
|
2
2
|
ul,
|
|
3
3
|
ol {
|
|
4
|
-
list-style: none;
|
|
5
4
|
color: #515156;
|
|
6
5
|
font-size: 1.6rem;
|
|
7
6
|
list-style-position: inside;
|
|
@@ -25,7 +24,6 @@
|
|
|
25
24
|
|
|
26
25
|
ul {
|
|
27
26
|
list-style-type: disc;
|
|
28
|
-
list-style: none;
|
|
29
27
|
::marker {
|
|
30
28
|
content: '';
|
|
31
29
|
}
|
|
@@ -41,7 +39,6 @@
|
|
|
41
39
|
top: 1rem;
|
|
42
40
|
font-size: 1.4rem;
|
|
43
41
|
font-weight: 500;
|
|
44
|
-
list-style: none;
|
|
45
42
|
align-items: center;
|
|
46
43
|
justify-content: center;
|
|
47
44
|
border-radius: 50%;
|
|
@@ -54,13 +51,11 @@
|
|
|
54
51
|
ol {
|
|
55
52
|
list-style-type: decimal;
|
|
56
53
|
padding: 0 1.6rem 1.6rem 5.2rem;
|
|
57
|
-
list-style: none;
|
|
58
54
|
|
|
59
55
|
li {
|
|
60
56
|
counter-increment: li;
|
|
61
57
|
display: list-item;
|
|
62
58
|
position: relative;
|
|
63
|
-
list-style: none;
|
|
64
59
|
}
|
|
65
60
|
|
|
66
61
|
::marker {
|
|
@@ -92,7 +87,6 @@
|
|
|
92
87
|
list-style-type: circle;
|
|
93
88
|
list-style-position: inside;
|
|
94
89
|
margin-left: 1.5rem;
|
|
95
|
-
list-style: none;
|
|
96
90
|
}
|
|
97
91
|
|
|
98
92
|
ol ol,
|
|
@@ -100,6 +94,5 @@
|
|
|
100
94
|
list-style-type: lower-latin;
|
|
101
95
|
list-style-position: inside;
|
|
102
96
|
margin-left: 1.5rem;
|
|
103
|
-
list-style: none;
|
|
104
97
|
}
|
|
105
98
|
}
|
package/src/helpers/tracker.mjs
CHANGED
|
@@ -91,6 +91,8 @@ export async function getAffiliateLink(operator, path, page, headers, url) {
|
|
|
91
91
|
user_uuid: cookie ? cookie.affUUID || null : null,
|
|
92
92
|
facebook_browser_id: cookie ? cookie._fbp || null : null,
|
|
93
93
|
facebook_click_id: cookie ? cookie._fbc || null : null,
|
|
94
|
+
split_test_name: cookie ? cookie.split_test_name || null : null,
|
|
95
|
+
split_test_variant: cookie ? cookie.split_test_variant || null : null,
|
|
94
96
|
facebook_pixel_id: process.env.PIXEL_ID || null,
|
|
95
97
|
...(isJsonString(cookie.affObject) ? JSON.parse(cookie.affObject) : {}),
|
|
96
98
|
...(extraURLParams || {}),
|