| 文件 | 最后提交记录 | 最后更新时间 |
|---|---|---|
| 3 年前 | ||
| 3 年前 | ||
| 3 年前 | ||
| 3 年前 | ||
| 3 年前 |
API
DTimelineProps
interface DTimelineItem {
content: [React.ReactNode, React.ReactNode];
icon?: React.ReactNode;
status?: 'completed' | 'active' | 'wait' | 'error';
}
interface DTimelineProps<T extends DTimelineItem> extends Omit<React.HTMLAttributes<HTMLDivElement>, 'children'> {
dList: T[];
dVertical?: boolean;
dLineSize?: number;
}
| 属性 | 说明 | 默认值 | 版本 |
|---|---|---|---|
| dList | 数据列表 | - | |
| dVertical | 是否垂直布局 | false |
|
| dLineSize | 设置轴宽 | 36 |