@automattic/jetpack-components 0.54.0 → 0.54.1
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 +5 -0
- package/components/icons/style.module.scss +16 -4
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
### This is a list detailing changes for the Jetpack RNA Components package releases.
|
|
4
4
|
|
|
5
|
+
## [0.54.1] - 2024-06-24
|
|
6
|
+
### Fixed
|
|
7
|
+
- Updated threads icon color [#37977]
|
|
8
|
+
|
|
5
9
|
## [0.54.0] - 2024-06-21
|
|
6
10
|
### Added
|
|
7
11
|
- Added Chip component [#37916]
|
|
@@ -1071,6 +1075,7 @@
|
|
|
1071
1075
|
### Changed
|
|
1072
1076
|
- Update node version requirement to 14.16.1
|
|
1073
1077
|
|
|
1078
|
+
[0.54.1]: https://github.com/Automattic/jetpack-components/compare/0.54.0...0.54.1
|
|
1074
1079
|
[0.54.0]: https://github.com/Automattic/jetpack-components/compare/0.53.10...0.54.0
|
|
1075
1080
|
[0.53.10]: https://github.com/Automattic/jetpack-components/compare/0.53.9...0.53.10
|
|
1076
1081
|
[0.53.9]: https://github.com/Automattic/jetpack-components/compare/0.53.8...0.53.9
|
|
@@ -15,8 +15,11 @@
|
|
|
15
15
|
fill: var( --color-bluesky );
|
|
16
16
|
}
|
|
17
17
|
&.facebook {
|
|
18
|
-
|
|
19
|
-
|
|
18
|
+
// Add some specificity to override the border-radius on Jetpack settings page
|
|
19
|
+
&:global(.social-logo) {
|
|
20
|
+
fill: var( --color-facebook );
|
|
21
|
+
border-radius: 50%;
|
|
22
|
+
}
|
|
20
23
|
}
|
|
21
24
|
&.instagram {
|
|
22
25
|
fill: var( --color-instagram );
|
|
@@ -37,8 +40,11 @@
|
|
|
37
40
|
fill: var( --color-mastodon );
|
|
38
41
|
}
|
|
39
42
|
&.nextdoor {
|
|
40
|
-
|
|
41
|
-
|
|
43
|
+
// Add some specificity to override the border-radius on Jetpack settings page
|
|
44
|
+
&:global(.social-logo) {
|
|
45
|
+
fill: var( --color-nextdoor );
|
|
46
|
+
border-radius: 50%;
|
|
47
|
+
}
|
|
42
48
|
}
|
|
43
49
|
&.instagram {
|
|
44
50
|
fill: var( --color-instagram );
|
|
@@ -46,5 +52,11 @@
|
|
|
46
52
|
&.whatsapp {
|
|
47
53
|
fill: var( --color-whatsapp );
|
|
48
54
|
}
|
|
55
|
+
&.threads {
|
|
56
|
+
&:global(.social-logo) {
|
|
57
|
+
fill: var( --color-threads );
|
|
58
|
+
border-radius: 40%;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
49
61
|
}
|
|
50
62
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@automattic/jetpack-components",
|
|
3
|
-
"version": "0.54.
|
|
3
|
+
"version": "0.54.1",
|
|
4
4
|
"description": "Jetpack Components Package",
|
|
5
5
|
"author": "Automattic",
|
|
6
6
|
"license": "GPL-2.0-or-later",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"prop-types": "^15.7.2",
|
|
31
31
|
"qrcode.react": "3.1.0",
|
|
32
32
|
"react-slider": "2.0.5",
|
|
33
|
-
"social-logos": "^3.1.
|
|
33
|
+
"social-logos": "^3.1.2",
|
|
34
34
|
"uplot": "1.6.24",
|
|
35
35
|
"uplot-react": "1.1.4"
|
|
36
36
|
},
|