@moontra/moonui-pro 2.30.1 → 2.30.2
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/dist/index.global.js +1 -1
- package/dist/index.global.js.map +1 -1
- package/dist/index.mjs +8 -4
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -86275,19 +86275,23 @@ function ChartWidget2({
|
|
|
86275
86275
|
{
|
|
86276
86276
|
cx: point.x,
|
|
86277
86277
|
cy: point.y,
|
|
86278
|
-
r: "
|
|
86278
|
+
r: "0.8",
|
|
86279
86279
|
fill: chartColors[0],
|
|
86280
86280
|
stroke: "white",
|
|
86281
|
-
strokeWidth: "
|
|
86281
|
+
strokeWidth: "0.8",
|
|
86282
86282
|
initial: { r: 0, opacity: 0 },
|
|
86283
86283
|
animate: {
|
|
86284
|
-
r: hoveredIndex === index2 ?
|
|
86284
|
+
r: hoveredIndex === index2 ? 1.5 : 0.8,
|
|
86285
86285
|
opacity: 1,
|
|
86286
|
-
strokeWidth: hoveredIndex === index2 ?
|
|
86286
|
+
strokeWidth: hoveredIndex === index2 ? 1 : 0.8
|
|
86287
86287
|
},
|
|
86288
86288
|
onMouseEnter: () => setHoveredIndex(index2),
|
|
86289
86289
|
onMouseLeave: () => setHoveredIndex(null),
|
|
86290
86290
|
className: "cursor-pointer",
|
|
86291
|
+
style: {
|
|
86292
|
+
shapeRendering: "geometricPrecision",
|
|
86293
|
+
vectorEffect: "non-scaling-stroke"
|
|
86294
|
+
},
|
|
86291
86295
|
onClick: () => onDataPointClick?.(point),
|
|
86292
86296
|
transition: { duration: 0.2 }
|
|
86293
86297
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@moontra/moonui-pro",
|
|
3
|
-
"version": "2.30.
|
|
3
|
+
"version": "2.30.2",
|
|
4
4
|
"description": "Premium React components for MoonUI - Advanced UI library with 50+ pro components including performance, interactive, and gesture components",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.mjs",
|