@moontra/moonui-pro 2.30.6 → 2.30.8

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
@@ -86250,7 +86250,7 @@ function ChartWidget2({
86250
86250
  d: pathData,
86251
86251
  fill: "none",
86252
86252
  stroke: "url(#chartLineGradient)",
86253
- strokeWidth: "1.5",
86253
+ strokeWidth: "0.8",
86254
86254
  strokeLinecap: "round",
86255
86255
  strokeLinejoin: "round",
86256
86256
  initial: { pathLength: 0 },
@@ -86273,22 +86273,21 @@ function ChartWidget2({
86273
86273
  {
86274
86274
  cx: point.x,
86275
86275
  cy: point.y,
86276
- r: "1.2",
86276
+ r: "0.8",
86277
86277
  fill: chartColors[0],
86278
86278
  stroke: "white",
86279
- strokeWidth: "1",
86279
+ strokeWidth: "0.3",
86280
86280
  initial: { r: 0, opacity: 0 },
86281
86281
  animate: {
86282
- r: hoveredIndex === index2 ? 2 : 1.2,
86282
+ r: hoveredIndex === index2 ? 1.2 : 0.8,
86283
86283
  opacity: 1,
86284
- strokeWidth: hoveredIndex === index2 ? 1.2 : 1
86284
+ strokeWidth: hoveredIndex === index2 ? 0.5 : 0.3
86285
86285
  },
86286
86286
  onMouseEnter: () => setHoveredIndex(index2),
86287
86287
  onMouseLeave: () => setHoveredIndex(null),
86288
86288
  className: "cursor-pointer",
86289
86289
  style: {
86290
- shapeRendering: "geometricPrecision",
86291
- vectorEffect: "non-scaling-stroke"
86290
+ shapeRendering: "geometricPrecision"
86292
86291
  },
86293
86292
  onClick: () => onDataPointClick?.(point),
86294
86293
  transition: { duration: 0.2 }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moontra/moonui-pro",
3
- "version": "2.30.6",
3
+ "version": "2.30.8",
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",