- SimpleRepeaterTable: 검색/추가 없이 데이터 표시 및 편집, 자동 계산 지원 - RepeatScreenModal: 그룹핑 기반 카드 레이아웃, 집계 기능, 테이블 모드 지원 - UnifiedPropertiesPanel: overflow-x-auto 추가로 가로 스크롤 활성화
14 lines
358 B
TypeScript
14 lines
358 B
TypeScript
"use client";
|
|
|
|
import { ComponentRegistry } from "@/lib/registry/ComponentRegistry";
|
|
import { RepeatScreenModalDefinition } from "./index";
|
|
|
|
// 컴포넌트 자동 등록
|
|
if (typeof window !== "undefined") {
|
|
ComponentRegistry.registerComponent(RepeatScreenModalDefinition);
|
|
console.log("✅ RepeatScreenModal 컴포넌트 등록 완료");
|
|
}
|
|
|
|
export {};
|
|
|