jskim-node #414

Merged
kjs merged 90 commits from jskim-node into main 2026-03-13 11:47:08 +09:00
1 changed files with 5 additions and 5 deletions
Showing only changes of commit 44c5dc87b4 - Show all commits

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)}