2019-01-01 04:13:51 +00:00
|
|
|
// Project: https://github.com/vueComponent/ant-design-vue
|
|
|
|
// Definitions by: akki-jat <https://github.com/akki-jat>
|
|
|
|
// Definitions: https://github.com/vueComponent/ant-design-vue/types
|
|
|
|
|
2019-01-12 03:33:27 +00:00
|
|
|
import { AntdComponent } from '../component';
|
2019-01-01 04:13:51 +00:00
|
|
|
|
|
|
|
export declare class Step extends AntdComponent {
|
|
|
|
/**
|
|
|
|
* description of the step, optional property
|
|
|
|
* @type any (string | slot)
|
|
|
|
*/
|
|
|
|
description: any;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* icon of the step, optional property
|
|
|
|
* @type any (string | slot)
|
|
|
|
*/
|
|
|
|
icon: any;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* to specify the status. It will be automatically set by current of Steps if not configured. Optional values are: wait process finish error
|
|
|
|
* @default 'wait'
|
|
|
|
* @type string
|
|
|
|
*/
|
2019-01-12 03:33:27 +00:00
|
|
|
status: 'wait' | 'process' | 'finish' | 'error';
|
2019-01-01 04:13:51 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* title of the step
|
|
|
|
* @type any (string | slot)
|
|
|
|
*/
|
|
|
|
title: any;
|
2020-03-07 11:45:13 +00:00
|
|
|
disabled: boolean;
|
|
|
|
subTitle: any;
|
2019-01-01 04:13:51 +00:00
|
|
|
}
|