@designbasekorea/ui 0.3.4 → 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.css +1 -1
- package/dist/index.css.map +1 -1
- package/dist/index.d.ts +5 -3
- package/dist/index.esm.css +1 -1
- package/dist/index.esm.css.map +1 -1
- package/dist/index.esm.js +11 -8
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +11 -8
- package/dist/index.js.map +1 -1
- package/dist/index.umd.css +1 -1
- package/dist/index.umd.css.map +1 -1
- package/dist/index.umd.js +11 -8
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -4059,12 +4059,14 @@ interface TimelineItem {
|
|
|
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'
|
|
4068
|
+
/** 아이템 상태 (completed: 완료, active: 진행중, pending: 진행예정) */
|
|
4069
|
+
status?: 'completed' | 'active' | 'pending';
|
|
4068
4070
|
/** 아이템 클릭 핸들러 */
|
|
4069
4071
|
onClick?: () => void;
|
|
4070
4072
|
/** 아이템 비활성화 여부 */
|