feige
昨天 f43ef0c77c6f437bd0f7459d75168e6f77e334bb
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
import { ElementUIComponent } from './component'
import { StepStatus } from './step'
 
export type StepsDirection = 'vertical' | 'horizontal'
 
/** Guide the user to complete tasks in accordance with the process. Its steps can be set according to the actual application scenario and the number of the steps can't be less than 2. */
export declare class ElSteps extends ElementUIComponent {
  /** The spacing of each step, will be responsive if omitted. Support percentage. */
  space: number | string
 
  /** Display direction */
  direction: StepsDirection
 
  /** Current activation step */
  active: number
 
  /** Status of current step */
  processStatus: StepStatus
 
  /** Status of end step */
  finishStatus: StepStatus
 
  /** Whether step description is centered */
  alignCenter: boolean
 
  /** Whether to apply simple theme */
  simple: boolean
}