다국어 지원 및 테이블 설정 현황 문서를 업데이트하여 현재 사용 가능한 17개 컴포넌트의 기능 현황을 반영했습니다. 또한, 집계 위젯(aggregation-widget) 관련 기능을 추가하고, UI에서 다국어 지원을 위한 라벨 수집 및 매핑 로직을 개선하여 사용자 경험을 향상시켰습니다.

This commit is contained in:
kjs
2026-01-16 11:02:27 +09:00
parent f160ba2a1b
commit 6c920b21a4
10 changed files with 1049 additions and 16 deletions

View File

@@ -0,0 +1,12 @@
"use client";
import { ComponentRegistry } from "@/lib/registry/ComponentRegistry";
import { AggregationWidgetDefinition } from "./index";
// 컴포넌트 자동 등록
if (typeof window !== "undefined") {
ComponentRegistry.registerComponent(AggregationWidgetDefinition);
}
export {};