@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.mjs CHANGED
@@ -86275,19 +86275,23 @@ function ChartWidget2({
86275
86275
  {
86276
86276
  cx: point.x,
86277
86277
  cy: point.y,
86278
- r: "1",
86278
+ r: "0.8",
86279
86279
  fill: chartColors[0],
86280
86280
  stroke: "white",
86281
- strokeWidth: "1.5",
86281
+ strokeWidth: "0.8",
86282
86282
  initial: { r: 0, opacity: 0 },
86283
86283
  animate: {
86284
- r: hoveredIndex === index2 ? 2.5 : 1,
86284
+ r: hoveredIndex === index2 ? 1.5 : 0.8,
86285
86285
  opacity: 1,
86286
- strokeWidth: hoveredIndex === index2 ? 2 : 1.5
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.1",
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",