{

    "api": [{
        "title": "nz-steps",
        "data": {
            "header": [{
                    "name": "参 数",
                    "key": "param"
                },
                {
                    "name": "说明",
                    "key": "intro"
                },
                {
                    "name": "类型",
                    "key": "type"
                },
                {
                    "name": "默认值",
                    "key": "defaultValue"
                }
            ],
            "list": [{
                    "param": "nzCurrent",
                    "intro": "指定当前步骤，从 0 开始记数。在子 Step 元素中，可以通过 nzStatus 属性覆盖状态",
                    "type": "Number",
                    "defaultValue": "0"
                },
                {
                    "param": "nzStatus",
                    "intro": "指定当前步骤的状态，可选wait process finish error",
                    "type": "String",
                    "defaultValue": "process"
                },
                {
                    "param": "nzSize",
                    "intro": "指定大小，目前支持普通（default）和迷你（small）",
                    "type": "String",
                    "defaultValue": "default"
                },
                {
                    "param": "nzDirection",
                    "intro": "指定步骤条方向。目前支持水平（horizontal）和竖直（vertical）两种方向",
                    "type": "String",
                    "defaultValue": "horizontal"
                },
                {
                    "param": "nzProgressDot",
                    "intro": "通过添加该属性使用点状步骤条",
                    "type": "Boolean",
                    "defaultValue": "-"
                }
            ]
        }

    },
    {
        "title": "nz-step",
        "data": {
            "header": [{
                    "name": "参 数",
                    "key": "param"
                },
                {
                    "name": "说明",
                    "key": "intro"
                },
                {
                    "name": "类型",
                    "key": "type"
                },
                {
                    "name": "默认值",
                    "key": "defaultValue"
                }
            ],
            "list": [{
                    "param": "nzStatus",
                    "intro": "指定状态。当不配置该属性时，会使用 Steps 的 current 来自动指定状态。可选：wait process finish error",
                    "type": "String",
                    "defaultValue": "wait"
                },
                {
                    "param": "nzTitle",
                    "intro": "标题",
                    "type": "String",
                    "defaultValue": "-"
                },
                {
                    "param": "nzDescription",
                    "intro": "步骤的详情描述，可选。如果需传入TemplateRef，可使用template，具体见实例",
                    "type": "String or TemplateRef",
                    "defaultValue": "-"
                },
                {
                    "param": "#nzIcon",
                    "intro": "步骤图标的类型，可选",
                    "type": "ng-template",
                    "defaultValue": "-"
                }
            ]
        }

    }
    ]
}
