[agent-pipeline] pipe-20260311102309-26hg round-1

This commit is contained in:
DDD1542
2026-03-11 19:26:17 +09:00
parent ff54e48ede
commit 175c19a79a
2 changed files with 242 additions and 7 deletions

View File

@@ -66,7 +66,7 @@ const SOURCE_CARDS = [
value: "code",
icon: Code,
title: "공통 코드",
description: "등록된 공통 코드를 사용해요",
description: "등록된 코드를 사용해요",
},
{
value: "entity",
@@ -484,17 +484,15 @@ export const V2SelectConfigPanel: React.FC<V2SelectConfigPanelProps> = ({
type="button"
onClick={() => updateConfig("source", card.value)}
className={cn(
"flex flex-col items-start gap-1 rounded-lg border p-3 text-left transition-all w-full",
"flex flex-col items-center justify-center rounded-lg border p-3 text-center transition-all min-h-[80px]",
isSelected
? "border-primary bg-primary/5 ring-1 ring-primary/20"
: "border-border hover:border-primary/50 hover:bg-muted/50"
)}
>
<div className="flex items-center gap-2">
<Icon className="h-4 w-4 text-primary" />
<span className="text-sm font-medium">{card.title}</span>
</div>
<span className="text-[11px] text-muted-foreground">{card.description}</span>
<Icon className="h-5 w-5 mb-1.5 text-primary" />
<span className="text-xs font-medium leading-tight">{card.title}</span>
<span className="text-[10px] text-muted-foreground leading-tight mt-0.5">{card.description}</span>
</button>
);
})}