Files
sam-react-prod/src/components/common/DataTable/index.ts
byeongcheolryu 6ed5d4ffb3 feat: 품목관리 동적 렌더링 시스템 구현
- DynamicItemForm 컴포넌트 구조 생성
  - DynamicField: 필드 타입별 렌더링
  - DynamicSection: 섹션 단위 렌더링
  - DynamicFormRenderer: 페이지 전체 렌더링
- 필드 타입별 컴포넌트 (TextField, NumberField, DropdownField, CheckboxField, DateField, FileField, CustomField)
- 커스텀 훅 (useDynamicFormState, useFormStructure, useConditionalFields)
- DataTable 공통 컴포넌트 (테이블, 페이지네이션, 검색, 탭필터, 통계카드)
- ItemFormWrapper: Feature Flag 기반 폼 선택
- 타입 정의 및 문서화

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-28 20:14:43 +09:00

15 lines
393 B
TypeScript

/**
* DataTable 공통 컴포넌트 모듈
*
* 모든 목록 페이지에서 재사용 가능한 테이블 컴포넌트
*/
export { DataTable } from './DataTable';
export { SearchFilter } from './SearchFilter';
export { Pagination } from './Pagination';
export { TabFilter } from './TabFilter';
export { StatCards } from './StatCards';
export * from './types';
export default DataTable;