Consolidate canonical input migration
Build & Deploy to K8s / build-and-deploy (push) Failing after 11m17s

Remove legacy v2 input/select and file/media runtimes, add canonical option/file loaders, and document Codex handoff.
This commit is contained in:
DDD1542
2026-05-12 18:36:43 +09:00
parent 90035dd5c6
commit 4a8413000b
79 changed files with 2359 additions and 14028 deletions
@@ -699,7 +699,7 @@ const CategoryConfigPanel: React.FC<CategoryConfigPanelProps> = ({
return {
valueId: selectedId,
valueCode: node.value_code, // value_code 추가 (V2Select 호환)
valueCode: node.value_code, // value_code 추가 (canonical input 의 카테고리 옵션 매칭용)
valueLabel: node.value_label,
valuePath: pathParts.join(" > "),
};
@@ -713,7 +713,7 @@ const CategoryConfigPanel: React.FC<CategoryConfigPanelProps> = ({
const newMapping: CategoryFormatMapping = {
category_value_id: selectedInfo.valueId,
category_value_code: selectedInfo.valueCode, // V2Select에서 valueCode를 value로 사용하므로 매칭용 저장
category_value_code: selectedInfo.valueCode, // canonical input 의 카테고리 옵션이 valueCode 를 value 로 사용하므로 매칭용 저장
category_value_label: selectedInfo.valueLabel,
category_value_path: selectedInfo.valuePath,
format: newFormat.trim(),