[agent-pipeline] pipe-20260311102309-26hg round-2
This commit is contained in:
parent
175c19a79a
commit
44c5dc87b4
|
|
@ -403,7 +403,7 @@ export const V2PropertiesPanel: React.FC<V2PropertiesPanelProps> = ({
|
||||||
{/* Z-Index */}
|
{/* Z-Index */}
|
||||||
<div className="flex items-center justify-between py-1.5">
|
<div className="flex items-center justify-between py-1.5">
|
||||||
<span className="text-xs text-muted-foreground">Z-Index</span>
|
<span className="text-xs text-muted-foreground">Z-Index</span>
|
||||||
<div className="w-[140px]">
|
<div className="w-[160px]">
|
||||||
<Input
|
<Input
|
||||||
type="number"
|
type="number"
|
||||||
step="1"
|
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>
|
<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">
|
<div className="flex items-center justify-between py-1.5">
|
||||||
<span className="text-xs text-muted-foreground">제목</span>
|
<span className="text-xs text-muted-foreground">제목</span>
|
||||||
<div className="w-[140px]">
|
<div className="w-[160px]">
|
||||||
<Input
|
<Input
|
||||||
value={group.title || area.title || ""}
|
value={group.title || area.title || ""}
|
||||||
onChange={(e) => handleUpdate("title", e.target.value)}
|
onChange={(e) => handleUpdate("title", e.target.value)}
|
||||||
|
|
@ -433,7 +433,7 @@ export const V2PropertiesPanel: React.FC<V2PropertiesPanelProps> = ({
|
||||||
{selectedComponent.type === "area" && (
|
{selectedComponent.type === "area" && (
|
||||||
<div className="flex items-center justify-between py-1.5">
|
<div className="flex items-center justify-between py-1.5">
|
||||||
<span className="text-xs text-muted-foreground">설명</span>
|
<span className="text-xs text-muted-foreground">설명</span>
|
||||||
<div className="w-[140px]">
|
<div className="w-[160px]">
|
||||||
<Input
|
<Input
|
||||||
value={area.description || ""}
|
value={area.description || ""}
|
||||||
onChange={(e) => handleUpdate("description", e.target.value)}
|
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">
|
<div className="flex items-center justify-between py-1.5">
|
||||||
<span className="text-xs text-muted-foreground">텍스트</span>
|
<span className="text-xs text-muted-foreground">텍스트</span>
|
||||||
<div className="w-[140px]">
|
<div className="w-[160px]">
|
||||||
<Input
|
<Input
|
||||||
value={
|
value={
|
||||||
selectedComponent.style?.labelText !== undefined
|
selectedComponent.style?.labelText !== undefined
|
||||||
|
|
@ -589,7 +589,7 @@ export const V2PropertiesPanel: React.FC<V2PropertiesPanelProps> = ({
|
||||||
{/* 굵기 */}
|
{/* 굵기 */}
|
||||||
<div className="flex items-center justify-between py-1.5">
|
<div className="flex items-center justify-between py-1.5">
|
||||||
<span className="text-xs text-muted-foreground">굵기</span>
|
<span className="text-xs text-muted-foreground">굵기</span>
|
||||||
<div className="w-[140px]">
|
<div className="w-[160px]">
|
||||||
<Select
|
<Select
|
||||||
value={selectedComponent.style?.labelFontWeight || "500"}
|
value={selectedComponent.style?.labelFontWeight || "500"}
|
||||||
onValueChange={(value) => handleUpdate("style.labelFontWeight", value)}
|
onValueChange={(value) => handleUpdate("style.labelFontWeight", value)}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue