@adsgency_npm/adsgency-ads-ui 0.1.0-alpha.35 → 0.1.0-alpha.36
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.cjs +1 -0
- package/dist/index.js +1 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -6349,6 +6349,7 @@ function AdsLineChart({
|
|
|
6349
6349
|
isAnimationActive: item.lineProps?.isAnimationActive ?? false,
|
|
6350
6350
|
onMouseEnter: () => setActiveDataKey(item.dataKey),
|
|
6351
6351
|
onMouseLeave: () => setActiveDataKey(null),
|
|
6352
|
+
style: { opacity: 1, ...item.lineProps?.style },
|
|
6352
6353
|
stroke: activeDataKey === item.dataKey ? item.activeColor ?? "#2196f3" : item.lineProps?.stroke ?? color,
|
|
6353
6354
|
strokeWidth: item.lineProps?.strokeWidth ?? item.strokeWidth ?? 2,
|
|
6354
6355
|
type: item.lineProps?.type ?? curve
|
package/dist/index.js
CHANGED
|
@@ -6186,6 +6186,7 @@ function AdsLineChart({
|
|
|
6186
6186
|
isAnimationActive: item.lineProps?.isAnimationActive ?? false,
|
|
6187
6187
|
onMouseEnter: () => setActiveDataKey(item.dataKey),
|
|
6188
6188
|
onMouseLeave: () => setActiveDataKey(null),
|
|
6189
|
+
style: { opacity: 1, ...item.lineProps?.style },
|
|
6189
6190
|
stroke: activeDataKey === item.dataKey ? item.activeColor ?? "#2196f3" : item.lineProps?.stroke ?? color,
|
|
6190
6191
|
strokeWidth: item.lineProps?.strokeWidth ?? item.strokeWidth ?? 2,
|
|
6191
6192
|
type: item.lineProps?.type ?? curve
|