@automattic/jetpack-components 0.55.16 → 0.55.17
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 +5 -0
- package/components/donut-meter/index.tsx +1 -1
- package/package.json +1 -1
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.17] - 2024-09-18
|
|
6
|
+
### Changed
|
|
7
|
+
- Internal updates.
|
|
8
|
+
|
|
5
9
|
## [0.55.16] - 2024-09-16
|
|
6
10
|
### Changed
|
|
7
11
|
- Updated package dependencies. [#39332]
|
|
@@ -1164,6 +1168,7 @@
|
|
|
1164
1168
|
### Changed
|
|
1165
1169
|
- Update node version requirement to 14.16.1
|
|
1166
1170
|
|
|
1171
|
+
[0.55.17]: https://github.com/Automattic/jetpack-components/compare/0.55.16...0.55.17
|
|
1167
1172
|
[0.55.16]: https://github.com/Automattic/jetpack-components/compare/0.55.15...0.55.16
|
|
1168
1173
|
[0.55.15]: https://github.com/Automattic/jetpack-components/compare/0.55.14...0.55.15
|
|
1169
1174
|
[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
|