feat(WEB): DynamicItemForm 필드 타입 확장 및 컴포넌트 레지스트리 추가

- DynamicFieldRenderer에 신규 필드 타입 추가 (Currency, File, MultiSelect, Radio, Reference, Toggle, UnitValue, Computed)
- DynamicTableSection 및 TableCellRenderer 추가
- 필드 프리셋 및 설정 구조 분리
- 컴포넌트 레지스트리 개발 도구 페이지 추가
- UniversalListPage 개선
- 근태관리 코드 정리
- 즐겨찾기 기능 및 동적 필드 타입 백엔드 스펙 문서 추가

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
유병철
2026-02-12 11:17:57 +09:00
parent 4decb99856
commit 020d74f36c
39 changed files with 12368 additions and 116 deletions

View File

@@ -683,6 +683,7 @@ export default function DynamicItemForm({
error={errors[fieldKey]}
disabled={isSubmitting}
unitOptions={unitOptions}
formData={formData}
/>
);
})}
@@ -737,6 +738,7 @@ export default function DynamicItemForm({
error={errors[fieldKey]}
disabled={isSubmitting}
unitOptions={unitOptions}
formData={formData}
/>
{/* 규격 필드 바로 다음에 품목코드 자동생성 필드 표시 (절곡부품 제외) */}
{isSpecField && hasAutoItemCode && !isBendingPart && (
@@ -887,6 +889,7 @@ export default function DynamicItemForm({
error={errors[fieldKey]}
disabled={isSubmitting}
unitOptions={unitOptions}
formData={formData}
/>
);
})}