Merge remote-tracking branch 'origin/main' into feat/support-agent-sandbox

This commit is contained in:
yyh
2026-02-09 18:43:04 +08:00
920 changed files with 4057 additions and 3430 deletions

View File

@ -66,7 +66,7 @@ const Panel = () => {
'relative flex h-full w-[420px] flex-col rounded-l-2xl border border-components-panel-border bg-components-panel-bg-alt',
)}
>
<div className="system-xl-semibold flex shrink-0 items-center justify-between p-4 pb-0 text-text-primary">
<div className="flex shrink-0 items-center justify-between p-4 pb-0 text-text-primary system-xl-semibold">
{t('globalVar.title', { ns: 'workflow' })}
<div className="flex items-center">
<div
@ -77,7 +77,7 @@ const Panel = () => {
</div>
</div>
</div>
<div className="system-sm-regular shrink-0 px-4 py-1 text-text-tertiary">{t('globalVar.description', { ns: 'workflow' })}</div>
<div className="shrink-0 px-4 py-1 text-text-tertiary system-sm-regular">{t('globalVar.description', { ns: 'workflow' })}</div>
<div className="mt-4 grow overflow-y-auto rounded-b-2xl px-4">
{globalVariableList.map(item => (

View File

@ -14,20 +14,20 @@ const Item = ({
}: Props) => {
return (
<div className={cn(
'radius-md mb-1 border border-components-panel-border-subtle bg-components-panel-on-panel-item-bg px-2.5 py-2 shadow-xs hover:bg-components-panel-on-panel-item-bg-hover',
'mb-1 border border-components-panel-border-subtle bg-components-panel-on-panel-item-bg px-2.5 py-2 shadow-xs radius-md hover:bg-components-panel-on-panel-item-bg-hover',
)}
>
<div className="flex items-center justify-between">
<div className="flex grow items-center gap-1">
<GlobalVariableIcon className="h-4 w-4 text-util-colors-orange-orange-600" />
<div className="system-sm-medium text-text-primary">
<div className="text-text-primary system-sm-medium">
<span className="text-text-tertiary">sys.</span>
{payload.name}
</div>
<div className="system-xs-medium text-text-tertiary">{capitalize(payload.value_type)}</div>
<div className="text-text-tertiary system-xs-medium">{capitalize(payload.value_type)}</div>
</div>
</div>
<div className="system-xs-regular mt-1.5 truncate text-text-tertiary">{payload.description}</div>
<div className="mt-1.5 truncate text-text-tertiary system-xs-regular">{payload.description}</div>
</div>
)
}