@automattic/jetpack-components 0.44.1 → 0.44.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
@@ -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.3] - 2023-10-31
6
+ ### Fixed
7
+ - Fix IconTooltip Popover styles. [#33856]
8
+
9
+ ## [0.44.2] - 2023-10-30
10
+ ### Changed
11
+ - Social: Update Nextdoor icon styling so it's round. [#33834]
12
+
5
13
  ## [0.44.1] - 2023-10-23
6
14
  ### Changed
7
15
  - Use pointer-events: None on arrow icon so its click behavior falls back to the container/underlying component. [#33733]
@@ -860,6 +868,8 @@
860
868
  ### Changed
861
869
  - Update node version requirement to 14.16.1
862
870
 
871
+ [0.44.3]: https://github.com/Automattic/jetpack-components/compare/0.44.2...0.44.3
872
+ [0.44.2]: https://github.com/Automattic/jetpack-components/compare/0.44.1...0.44.2
863
873
  [0.44.1]: https://github.com/Automattic/jetpack-components/compare/0.44.0...0.44.1
864
874
  [0.44.0]: https://github.com/Automattic/jetpack-components/compare/0.43.4...0.44.0
865
875
  [0.43.4]: https://github.com/Automattic/jetpack-components/compare/0.43.3...0.43.4
@@ -57,6 +57,7 @@ const IconTooltip: React.FC< IconTooltipProps > = ( {
57
57
  focusOnMount: 'container' as const,
58
58
  onClose: hideTooltip,
59
59
  className: 'icon-tooltip-container',
60
+ inline: true,
60
61
  };
61
62
 
62
63
  const isAnchorWrapper = popoverAnchorStyle === 'wrapper';
@@ -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.1",
3
+ "version": "0.44.3",
4
4
  "description": "Jetpack Components Package",
5
5
  "author": "Automattic",
6
6
  "license": "GPL-2.0-or-later",