0.1.0 • Published 4 years ago

xy-steps v0.1.0

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago
IEChromeFirefoxOperaSafari
IE 10+ ✔Chrome 31.0+ ✔Firefox 31.0+ ✔Opera 30.0+ ✔Safari 7.0+ ✔

NPM version node version npm download

xy-steps

xy-steps

步骤条组件

安装

# yarn
yarn add xy-steps

使用例子

import React from "react";
import ReactDOM from "react-dom";
import { Steps, Step } from "xy-steps";
ReactDOM.render(
    <Steps step={2}>
        <Step title="Finished">This is a description.</Step>
        <Step title="In Progress">This is a description.</Step>
        <Step title="Waiting">This is a description.</Step>
    </Steps>,
    container,
);

API

Steps

属性说明类型默认值
step当前步骤, 从数字 1 开始number1
status当前步骤状态, 可选值为 wait process finnish error 或者不设string-
direction方向, 可选值为 horizontal verticalstringhorizontal
size设置按钮大小,可选值为 small large 或者不设stringdefault

Step

属性说明类型默认值
step当前步骤, 从数字 1 开始number1
title步骤标题React.ReactNode-
children步骤描述React.ReactNode-
icon步骤图标React.ReactNode-

开发

yarn run start

例子

http://localhost:6006

测试

yarn run test

开源许可

xy-steps is released under the MIT license.