升级依赖版本并修复构建问题

This commit is contained in:
2025-11-20 12:10:16 +08:00
parent fa6a4e5121
commit c02ffc9983
26 changed files with 669 additions and 649 deletions

View File

@@ -173,7 +173,7 @@ function ChartTooltipContent({
return (
<div
className={merge(
'border-border/50 bg-background grid min-w-[8rem] items-start gap-1.5 rounded-lg border px-2.5 py-1.5 text-xs shadow-xl',
'border-border/50 bg-background grid min-w-32 items-start gap-1.5 rounded-lg border px-2.5 py-1.5 text-xs shadow-xl',
className,
)}
>
@@ -202,14 +202,11 @@ function ChartTooltipContent({
!hideIndicator && (
<div
className={merge(
'shrink-0 rounded-[2px] border-(--color-border) bg-(--color-bg)',
{
'h-2.5 w-2.5': indicator === 'dot',
'w-1': indicator === 'line',
'w-0 border-[1.5px] border-dashed bg-transparent':
indicator === 'dashed',
'my-0.5': nestLabel && indicator === 'dashed',
},
'shrink-0 rounded-xs border-(--color-border) bg-(--color-bg)',
indicator === 'dot' && 'h-2.5 w-2.5',
indicator === 'line' && 'w-1',
indicator === 'dashed' && 'w-0 border-[1.5px] border-dashed bg-transparent',
indicator === 'dashed' && nestLabel && 'my-0.5',
)}
style={
{
@@ -290,7 +287,7 @@ function ChartLegendContent({
<itemConfig.icon/>
) : (
<div
className="h-2 w-2 shrink-0 rounded-[2px]"
className="h-2 w-2 shrink-0 rounded-xs"
style={{
backgroundColor: item.color,
}}