@designbasekorea/ui 0.3.3 → 0.3.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -4054,23 +4054,27 @@ interface TimelineItem {
4054
4054
  /** 아이템 ID */
4055
4055
  id: string;
4056
4056
  /** 아이템 제목 */
4057
- title: string;
4057
+ title?: string;
4058
4058
  /** 아이템 설명 */
4059
4059
  description?: string;
4060
4060
  /** 아이템 타임스탬프 */
4061
4061
  timestamp?: string;
4062
- /** 아이템 아이콘 */
4062
+ /** 아이템 아이콘 (제공 시 아이콘 표시, 없으면 기본 점 표시) */
4063
4063
  icon?: React$1.ReactNode;
4064
+ /** 아이템 숫자 (제공 시 숫자 표시, icon과 함께 제공되면 icon 우선) */
4065
+ number?: number;
4064
4066
  /** 아이템 색상 */
4065
4067
  color?: TimelineColor;
4066
- /** 아이템 상태 */
4067
- status?: 'completed' | 'active' | 'pending' | 'error';
4068
+ /** 아이템 상태 (completed: 완료, active: 진행중, pending: 진행예정) */
4069
+ status?: 'completed' | 'active' | 'pending';
4068
4070
  /** 아이템 클릭 핸들러 */
4069
4071
  onClick?: () => void;
4070
4072
  /** 아이템 비활성화 여부 */
4071
4073
  disabled?: boolean;
4072
4074
  /** 추가 메타데이터 */
4073
4075
  meta?: Record<string, any>;
4076
+ /** 커스텀 콘텐츠 (제공 시 title, description, timestamp 대신 사용) */
4077
+ content?: React$1.ReactNode;
4074
4078
  }
4075
4079
  interface TimelineProps {
4076
4080
  /** 타임라인 아이템들 */