a8ded6455d
11 패널 일괄 Inv* prefix 통일:
- 통합 (lib/registry/components/X/): button / container / divider / search /
stats / table / title / input → Inv*ConfigPanel
- frontend/components/v2/config-panels/V2FieldConfigPanel → InvFieldConfigPanel
- 옛 v2-* hidden 호환 → InvLegacy{Divider,Text,Button}ConfigPanel
input 통합 컴포넌트 cp 톤 신규 작성 (InvInputConfigPanel):
- 277줄 옛 디자인 → CPVisualGrid 10칸 type 카드 + 타입별 옵션 + FeatureChipGrid
getComponentConfigPanel.tsx 버그 수정 (Codex 검토):
- "stats" key 중복 제거 (옛 StatsCardConfigPanel 이 통합 stats 덮던 silent bug)
- ALIAS 에서 v2-button-primary/v2-divider-line/v2-text-display 제외
(옵션 B 일관성 — 옛 hidden 컴포넌트는 InvLegacy 패널 사용)
- MAP 의 해당 키를 InvLegacy* 로 직접 매핑
호출처 일괄 갱신:
- 각 통합 컴포넌트의 index.ts 7개 (import / config_panel / re-export)
- v2-input/v2-select/v2-divider-line/v2-text-display/v2-button-primary
의 index.ts (config_panel 매핑)
- V2PropertiesPanel.tsx 의 require pattern (v2-input/v2-select)
검증: tsc 우리 영역 0건 / V2FieldConfigPanel 잔재 0건 / 기존 path 잔재 0건
다음 세션: useDbTables hook 추출 + 잔여 V2* cp 마이그 + dead code 정리
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
45 lines
1.3 KiB
TypeScript
45 lines
1.3 KiB
TypeScript
/**
|
|
* V2Input 컴포넌트 정의
|
|
*
|
|
* 텍스트, 숫자, 비밀번호 등 다양한 입력 타입을 지원하는 통합 입력 컴포넌트
|
|
*/
|
|
|
|
import { ComponentCategory } from "@/types/component";
|
|
import { createComponentDefinition } from "../../utils/createComponentDefinition";
|
|
import { InvFieldConfigPanel } from "@/components/v2/config-panels/InvFieldConfigPanel";
|
|
import { V2Input } from "@/components/v2/V2Input";
|
|
import { withContainerQuery } from "../../hoc/withContainerQuery";
|
|
|
|
export const V2InputDefinition = createComponentDefinition({
|
|
id: "v2-input",
|
|
hidden: true, // Phase E: 통합 컴포넌트로 대체됨
|
|
name: "V2 입력",
|
|
description: "텍스트, 숫자, 비밀번호 등 다양한 입력 타입 지원",
|
|
category: ComponentCategory.INPUT,
|
|
web_type: "text",
|
|
version: "2.0.0",
|
|
component: withContainerQuery(V2Input, "v2-input"),
|
|
|
|
default_size: { width: 200, height: 36 },
|
|
|
|
// 아이콘
|
|
icon: "TextCursorInput",
|
|
|
|
// 태그
|
|
tags: ["input", "text", "number", "v2"],
|
|
|
|
// 설정 패널
|
|
config_panel: InvFieldConfigPanel,
|
|
|
|
// ─── INVYONE DataPort 선언 ───
|
|
dataPorts: {
|
|
inputs: [{ name: "value", type: "value" }],
|
|
outputs: [
|
|
{ name: "value", type: "value" },
|
|
{ name: "changed", type: "value" },
|
|
],
|
|
},
|
|
});
|
|
|
|
export default V2InputDefinition;
|