@automattic/jetpack-components 0.54.4 → 0.55.0

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,10 @@
2
2
 
3
3
  ### This is a list detailing changes for the Jetpack RNA Components package releases.
4
4
 
5
+ ## [0.55.0] - 2024-07-22
6
+ ### Removed
7
+ - Remove compatibility with WordPress 6.4. [#38386]
8
+
5
9
  ## [0.54.4] - 2024-07-18
6
10
  ### Changed
7
11
  - Internal updates.
@@ -1087,6 +1091,7 @@
1087
1091
  ### Changed
1088
1092
  - Update node version requirement to 14.16.1
1089
1093
 
1094
+ [0.55.0]: https://github.com/Automattic/jetpack-components/compare/0.54.4...0.55.0
1090
1095
  [0.54.4]: https://github.com/Automattic/jetpack-components/compare/0.54.3...0.54.4
1091
1096
  [0.54.3]: https://github.com/Automattic/jetpack-components/compare/0.54.2...0.54.3
1092
1097
  [0.54.2]: https://github.com/Automattic/jetpack-components/compare/0.54.1...0.54.2
@@ -31,8 +31,7 @@ const StatCard = ( { className, icon, label, value, variant = 'square' }: StatCa
31
31
  <div className={ clsx( styles.info ) }>
32
32
  <Text className={ styles.label }>{ label }</Text>
33
33
  { variant === 'square' ? (
34
- // @todo Switch to `placement` once WordPress 6.4 is the minimum.
35
- <Tooltip text={ formattedValue } position="top center">
34
+ <Tooltip text={ formattedValue } placement="top">
36
35
  <Text variant="headline-small" className={ clsx( styles.value ) }>
37
36
  { compactValue }
38
37
  </Text>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@automattic/jetpack-components",
3
- "version": "0.54.4",
3
+ "version": "0.55.0",
4
4
  "description": "Jetpack Components Package",
5
5
  "author": "Automattic",
6
6
  "license": "GPL-2.0-or-later",