@automattic/jetpack-components 0.44.0 → 0.44.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.44.2] - 2023-10-30
6
+ ### Changed
7
+ - Social: Update Nextdoor icon styling so it's round. [#33834]
8
+
9
+ ## [0.44.1] - 2023-10-23
10
+ ### Changed
11
+ - Use pointer-events: None on arrow icon so its click behavior falls back to the container/underlying component. [#33733]
12
+
5
13
  ## [0.44.0] - 2023-10-19
6
14
  ### Added
7
15
  - Add a `ProgressBar` component. [#33054]
@@ -856,6 +864,8 @@
856
864
  ### Changed
857
865
  - Update node version requirement to 14.16.1
858
866
 
867
+ [0.44.2]: https://github.com/Automattic/jetpack-components/compare/0.44.1...0.44.2
868
+ [0.44.1]: https://github.com/Automattic/jetpack-components/compare/0.44.0...0.44.1
859
869
  [0.44.0]: https://github.com/Automattic/jetpack-components/compare/0.43.4...0.44.0
860
870
  [0.43.4]: https://github.com/Automattic/jetpack-components/compare/0.43.3...0.43.4
861
871
  [0.43.3]: https://github.com/Automattic/jetpack-components/compare/0.43.2...0.43.3
@@ -57,6 +57,7 @@
57
57
  .icon {
58
58
  fill: var( --jp-green-40 );
59
59
  transition: transform 0.1s ease-out;
60
+ pointer-events: none;
60
61
  }
61
62
 
62
63
  .iconContainer {
@@ -35,6 +35,7 @@
35
35
  }
36
36
  &.nextdoor {
37
37
  fill: var( --color-nextdoor );
38
+ border-radius: 50%;
38
39
  }
39
40
  &.instagram {
40
41
  fill: var( --color-instagram );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@automattic/jetpack-components",
3
- "version": "0.44.0",
3
+ "version": "0.44.2",
4
4
  "description": "Jetpack Components Package",
5
5
  "author": "Automattic",
6
6
  "license": "GPL-2.0-or-later",