@automattic/jetpack-components 0.54.3 → 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,14 @@
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
+
9
+ ## [0.54.4] - 2024-07-18
10
+ ### Changed
11
+ - Internal updates.
12
+
5
13
  ## [0.54.3] - 2024-07-03
6
14
  ### Changed
7
15
  - Updated package dependencies. [#38132]
@@ -1083,6 +1091,8 @@
1083
1091
  ### Changed
1084
1092
  - Update node version requirement to 14.16.1
1085
1093
 
1094
+ [0.55.0]: https://github.com/Automattic/jetpack-components/compare/0.54.4...0.55.0
1095
+ [0.54.4]: https://github.com/Automattic/jetpack-components/compare/0.54.3...0.54.4
1086
1096
  [0.54.3]: https://github.com/Automattic/jetpack-components/compare/0.54.2...0.54.3
1087
1097
  [0.54.2]: https://github.com/Automattic/jetpack-components/compare/0.54.1...0.54.2
1088
1098
  [0.54.1]: https://github.com/Automattic/jetpack-components/compare/0.54.0...0.54.1
@@ -3,4 +3,5 @@ export type AdminSectionBaseProps = {
3
3
  * The section content
4
4
  */
5
5
  children: React.ReactNode;
6
+ className?: string;
6
7
  };
@@ -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.3",
3
+ "version": "0.55.0",
4
4
  "description": "Jetpack Components Package",
5
5
  "author": "Automattic",
6
6
  "license": "GPL-2.0-or-later",