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

This commit is contained in:
DDD1542 2026-03-11 19:30:01 +09:00
parent 175c19a79a
commit 44c5dc87b4
1 changed files with 5 additions and 5 deletions

View File

@ -403,7 +403,7 @@ export const V2PropertiesPanel: React.FC<V2PropertiesPanelProps> = ({
{/* Z-Index */}
<div className="flex items-center justify-between py-1.5">
<span className="text-xs text-muted-foreground">Z-Index</span>
<div className="w-[140px]">
<div className="w-[160px]">
<Input
type="number"
step="1"
@ -421,7 +421,7 @@ export const V2PropertiesPanel: React.FC<V2PropertiesPanelProps> = ({
<h4 className="text-[10px] font-semibold uppercase tracking-wider text-muted-foreground py-2">CONTENT</h4>
<div className="flex items-center justify-between py-1.5">
<span className="text-xs text-muted-foreground"></span>
<div className="w-[140px]">
<div className="w-[160px]">
<Input
value={group.title || area.title || ""}
onChange={(e) => handleUpdate("title", e.target.value)}
@ -433,7 +433,7 @@ export const V2PropertiesPanel: React.FC<V2PropertiesPanelProps> = ({
{selectedComponent.type === "area" && (
<div className="flex items-center justify-between py-1.5">
<span className="text-xs text-muted-foreground"></span>
<div className="w-[140px]">
<div className="w-[160px]">
<Input
value={area.description || ""}
onChange={(e) => handleUpdate("description", e.target.value)}
@ -511,7 +511,7 @@ export const V2PropertiesPanel: React.FC<V2PropertiesPanelProps> = ({
{/* 라벨 텍스트 */}
<div className="flex items-center justify-between py-1.5">
<span className="text-xs text-muted-foreground"></span>
<div className="w-[140px]">
<div className="w-[160px]">
<Input
value={
selectedComponent.style?.labelText !== undefined
@ -589,7 +589,7 @@ export const V2PropertiesPanel: React.FC<V2PropertiesPanelProps> = ({
{/* 굵기 */}
<div className="flex items-center justify-between py-1.5">
<span className="text-xs text-muted-foreground"></span>
<div className="w-[140px]">
<div className="w-[160px]">
<Select
value={selectedComponent.style?.labelFontWeight || "500"}
onValueChange={(value) => handleUpdate("style.labelFontWeight", value)}