엔티티타입 입력 셀렉트박스 다중선택 기능

This commit is contained in:
kjs
2026-01-08 14:49:24 +09:00
parent 3f81c449ad
commit 11e25694b9
11 changed files with 547 additions and 99 deletions

View File

@@ -747,6 +747,23 @@ export function EntitySearchInputConfigPanel({
</p>
</div>
<div className="space-y-2">
<div className="flex items-center justify-between">
<Label className="text-xs sm:text-sm"> </Label>
<Switch
checked={localConfig.multiple || false}
onCheckedChange={(checked) =>
updateConfig({ multiple: checked })
}
/>
</div>
<p className="text-[10px] text-muted-foreground">
{localConfig.multiple
? "여러 항목을 선택할 수 있습니다. 값은 콤마로 구분됩니다."
: "하나의 항목만 선택할 수 있습니다."}
</p>
</div>
<div className="space-y-2">
<Label className="text-xs sm:text-sm"></Label>
<Input