entity-search-iniput 수정

This commit is contained in:
leeheejin
2026-01-21 11:40:47 +09:00
parent e8fc664352
commit 29a4ab7b9d
5 changed files with 166 additions and 18 deletions

View File

@@ -37,6 +37,9 @@ export const EntitySearchInputWrapper: React.FC<WebTypeComponentProps> = ({
// placeholder
const placeholder = config.placeholder || widget?.placeholder || "항목을 선택하세요";
// 자동 채움 매핑 설정
const autoFillMappings = config.autoFillMappings || [];
console.log("🏢 EntitySearchInputWrapper 렌더링:", {
tableName,
@@ -44,6 +47,7 @@ export const EntitySearchInputWrapper: React.FC<WebTypeComponentProps> = ({
valueField,
uiMode,
multiple,
autoFillMappings,
value,
config,
});
@@ -68,6 +72,7 @@ export const EntitySearchInputWrapper: React.FC<WebTypeComponentProps> = ({
value={value}
onChange={onChange}
multiple={multiple}
autoFillMappings={autoFillMappings}
component={component}
isInteractive={props.isInteractive}
onFormDataChange={props.onFormDataChange}