@automattic/jetpack-components 0.55.16 → 0.56.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 +10 -0
- package/components/donut-meter/index.tsx +1 -1
- package/index.ts +1 -0
- package/package.json +1 -1
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.56.0] - 2024-09-25
|
|
6
|
+
### Added
|
|
7
|
+
- Added StatCard component export [#35739]
|
|
8
|
+
|
|
9
|
+
## [0.55.17] - 2024-09-18
|
|
10
|
+
### Changed
|
|
11
|
+
- Internal updates.
|
|
12
|
+
|
|
5
13
|
## [0.55.16] - 2024-09-16
|
|
6
14
|
### Changed
|
|
7
15
|
- Updated package dependencies. [#39332]
|
|
@@ -1164,6 +1172,8 @@
|
|
|
1164
1172
|
### Changed
|
|
1165
1173
|
- Update node version requirement to 14.16.1
|
|
1166
1174
|
|
|
1175
|
+
[0.56.0]: https://github.com/Automattic/jetpack-components/compare/0.55.17...0.56.0
|
|
1176
|
+
[0.55.17]: https://github.com/Automattic/jetpack-components/compare/0.55.16...0.55.17
|
|
1167
1177
|
[0.55.16]: https://github.com/Automattic/jetpack-components/compare/0.55.15...0.55.16
|
|
1168
1178
|
[0.55.15]: https://github.com/Automattic/jetpack-components/compare/0.55.14...0.55.15
|
|
1169
1179
|
[0.55.14]: https://github.com/Automattic/jetpack-components/compare/0.55.13...0.55.14
|
|
@@ -134,7 +134,7 @@ const DonutMeter: React.FC< DonutMeterProps > = ( {
|
|
|
134
134
|
cy="20"
|
|
135
135
|
r="15.91549430918954"
|
|
136
136
|
fill="transparent"
|
|
137
|
-
transform-origin="center"
|
|
137
|
+
transform-origin="center" // eslint-disable-line react/no-unknown-property -- @todo Switch to transformOrigin when we use React 19.
|
|
138
138
|
strokeWidth={ thickness }
|
|
139
139
|
strokeDasharray={ `${ percentage } ${ 100 - percentage }` }
|
|
140
140
|
strokeDashoffset="-25" // this ensures the segment begins at the bottom of the donut instead of the top
|
package/index.ts
CHANGED
|
@@ -77,4 +77,5 @@ export { default as ProgressBar } from './components/progress-bar';
|
|
|
77
77
|
export { default as UpsellBanner } from './components/upsell-banner';
|
|
78
78
|
export { getUserLocale, cleanLocale } from './lib/locale';
|
|
79
79
|
export { default as RadioControl } from './components/radio-control';
|
|
80
|
+
export { default as StatCard } from './components/stat-card';
|
|
80
81
|
export * from './components/global-notices';
|