@moontra/moonui-pro 2.30.6 → 2.30.7
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 +10 -7
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -86215,7 +86215,7 @@ function ChartWidget2({
|
|
|
86215
86215
|
{
|
|
86216
86216
|
className: "w-full h-full",
|
|
86217
86217
|
viewBox: "0 0 100 100",
|
|
86218
|
-
preserveAspectRatio: "
|
|
86218
|
+
preserveAspectRatio: "xMidYMid meet",
|
|
86219
86219
|
children: [
|
|
86220
86220
|
/* @__PURE__ */ jsxs("defs", { children: [
|
|
86221
86221
|
/* @__PURE__ */ jsxs("linearGradient", { id: "chartLineGradient", x1: "0%", y1: "0%", x2: "100%", y2: "0%", children: [
|
|
@@ -86250,12 +86250,15 @@ function ChartWidget2({
|
|
|
86250
86250
|
d: pathData,
|
|
86251
86251
|
fill: "none",
|
|
86252
86252
|
stroke: "url(#chartLineGradient)",
|
|
86253
|
-
strokeWidth: "
|
|
86253
|
+
strokeWidth: "2",
|
|
86254
86254
|
strokeLinecap: "round",
|
|
86255
86255
|
strokeLinejoin: "round",
|
|
86256
86256
|
initial: { pathLength: 0 },
|
|
86257
86257
|
animate: { pathLength: 1 },
|
|
86258
|
-
transition: { duration: animate5 ? 1 : 0 }
|
|
86258
|
+
transition: { duration: animate5 ? 1 : 0 },
|
|
86259
|
+
style: {
|
|
86260
|
+
vectorEffect: "non-scaling-stroke"
|
|
86261
|
+
}
|
|
86259
86262
|
}
|
|
86260
86263
|
),
|
|
86261
86264
|
type === "area" && /* @__PURE__ */ jsx(
|
|
@@ -86273,15 +86276,15 @@ function ChartWidget2({
|
|
|
86273
86276
|
{
|
|
86274
86277
|
cx: point.x,
|
|
86275
86278
|
cy: point.y,
|
|
86276
|
-
r: "1.
|
|
86279
|
+
r: "1.5",
|
|
86277
86280
|
fill: chartColors[0],
|
|
86278
86281
|
stroke: "white",
|
|
86279
|
-
strokeWidth: "1",
|
|
86282
|
+
strokeWidth: "1.5",
|
|
86280
86283
|
initial: { r: 0, opacity: 0 },
|
|
86281
86284
|
animate: {
|
|
86282
|
-
r: hoveredIndex === index2 ? 2 : 1.
|
|
86285
|
+
r: hoveredIndex === index2 ? 2.5 : 1.5,
|
|
86283
86286
|
opacity: 1,
|
|
86284
|
-
strokeWidth: hoveredIndex === index2 ?
|
|
86287
|
+
strokeWidth: hoveredIndex === index2 ? 2 : 1.5
|
|
86285
86288
|
},
|
|
86286
86289
|
onMouseEnter: () => setHoveredIndex(index2),
|
|
86287
86290
|
onMouseLeave: () => setHoveredIndex(null),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@moontra/moonui-pro",
|
|
3
|
-
"version": "2.30.
|
|
3
|
+
"version": "2.30.7",
|
|
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",
|