| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
 | | import { SuperComponent, RelationsOptions } from '../common/src/index'; |  | export default class StepItem extends SuperComponent { |  |     options: { |  |         multipleSlots: boolean; |  |     }; |  |     relations: RelationsOptions; |  |     externalClasses: string[]; |  |     properties: import("./type").TdStepItemProps; |  |     data: { |  |         classPrefix: string; |  |         prefix: string; |  |         index: number; |  |         isDot: boolean; |  |         curStatus: string; |  |         layout: string; |  |         isLastChild: boolean; |  |         sequence: string; |  |     }; |  |     observers: { |  |         status(value: any): void; |  |     }; |  |     methods: { |  |         updateStatus({ current, currentStatus, index, theme, layout, items, sequence }: { |  |             current: any; |  |             currentStatus: any; |  |             index: any; |  |             theme: any; |  |             layout: any; |  |             items: any; |  |             sequence: any; |  |         }): void; |  |         onTap(): void; |  |     }; |  | } | 
 |