chore: upgrade antd lib to 5.25.4

This commit is contained in:
jialin
2025-09-16 11:26:17 +08:00
parent 0c1057d554
commit 4f91443957
41 changed files with 4761 additions and 9139 deletions
+24 -12
View File
@@ -107,9 +107,11 @@ const WorkerInfo = (props: {
open={open}
onOpenChange={setOpen}
title={props.title}
overlayInnerStyle={{
width: 'max-content',
maxWidth: '400px'
styles={{
body: {
width: 'max-content',
maxWidth: '400px'
}
}}
>
<span className="server-info">
@@ -184,11 +186,15 @@ const RenderWorkerDownloading = (props: {
return (
<Tooltip
arrow={true}
overlayInnerStyle={{
width: 300,
backgroundColor: 'var(--color-spotlight-bg)'
styles={{
body: {
width: 300,
backgroundColor: 'var(--color-spotlight-bg)'
}
}}
classNames={{
root: 'light-downloading-tooltip'
}}
overlayClassName="light-downloading-tooltip"
title={
<RenderRayactorDownloading
severList={severList}
@@ -505,10 +511,12 @@ const InstanceItem: React.FC<InstanceItemProps> = ({
<TooltipOverlayScroller
toolTipProps={{
trigger: 'hover',
overlayInnerStyle: {
width: 'max-content',
maxWidth: '520px',
minWidth: '400px'
styles: {
body: {
width: 'max-content',
maxWidth: '520px',
minWidth: '400px'
}
}
}}
title={renderDistributedServer(severList)}
@@ -561,7 +569,11 @@ const InstanceItem: React.FC<InstanceItemProps> = ({
};
return (
<Tooltip
overlayInnerStyle={{ paddingInline: 12 }}
styles={{
body: {
paddingInline: 12
}
}}
title={
<InfoColumn fieldList={fieldList} data={offloadData}></InfoColumn>
}