@automattic/jetpack-components 0.54.0 → 0.54.2

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
@@ -2,6 +2,14 @@
2
2
 
3
3
  ### This is a list detailing changes for the Jetpack RNA Components package releases.
4
4
 
5
+ ## [0.54.2] - 2024-06-25
6
+ ### Added
7
+ - Added social preview for Threads [#38003]
8
+
9
+ ## [0.54.1] - 2024-06-24
10
+ ### Fixed
11
+ - Updated threads icon color [#37977]
12
+
5
13
  ## [0.54.0] - 2024-06-21
6
14
  ### Added
7
15
  - Added Chip component [#37916]
@@ -1071,6 +1079,8 @@
1071
1079
  ### Changed
1072
1080
  - Update node version requirement to 14.16.1
1073
1081
 
1082
+ [0.54.2]: https://github.com/Automattic/jetpack-components/compare/0.54.1...0.54.2
1083
+ [0.54.1]: https://github.com/Automattic/jetpack-components/compare/0.54.0...0.54.1
1074
1084
  [0.54.0]: https://github.com/Automattic/jetpack-components/compare/0.53.10...0.54.0
1075
1085
  [0.53.10]: https://github.com/Automattic/jetpack-components/compare/0.53.9...0.53.10
1076
1086
  [0.53.9]: https://github.com/Automattic/jetpack-components/compare/0.53.8...0.53.9
@@ -16,7 +16,10 @@
16
16
  }
17
17
  &.facebook {
18
18
  fill: var( --color-facebook );
19
- border-radius: 50% !important;
19
+ // Add some specificity to override the border-radius on Jetpack settings page
20
+ &:global(.social-logo) {
21
+ border-radius: 50%;
22
+ }
20
23
  }
21
24
  &.instagram {
22
25
  fill: var( --color-instagram );
@@ -38,7 +41,10 @@
38
41
  }
39
42
  &.nextdoor {
40
43
  fill: var( --color-nextdoor );
41
- border-radius: 50%;
44
+ // Add some specificity to override the border-radius on Jetpack settings page
45
+ &:global(.social-logo) {
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
+ fill: var( --color-threads );
57
+ &:global(.social-logo) {
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.0",
3
+ "version": "0.54.2",
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.1",
33
+ "social-logos": "^3.1.2",
34
34
  "uplot": "1.6.24",
35
35
  "uplot-react": "1.1.4"
36
36
  },