/
githubmirror
/
element
Обзор
Документация
Войти
/
githubmirror
/
element
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
types/steps.d.ts
28 строк
853 B
Leopoldthecoder
update typings
18 окт 2017, 13:38
18 окт 2017, 13:38
1e95e51
Код
Авторство
О чём код?
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 }