0.2.0 • Published 5 years ago

react-yan-progress v0.2.0

Weekly downloads
25
License
-
Repository
-
Last release
5 years ago

react-yan-progress

NPM version Build Status Coverage Status

This is a cascading progress bar component based on react yan-progress

Installation

$ npm install react-yan-progress

Qucik start

import React from "react";
import ReactDOM from "react-dom";
import YanProgress from 'react-yan-progress';

function App() {
  return (
    <div className="App">
      <YanProgress total={100} done={60} modify={30} />
    </div>
  );
}

const rootElement = document.getElementById("root");
ReactDOM.render(<App />, rootElement);

API

paramsdescriptiontypedefault
totalThe total of progressnumber
doneThe number of donenumber
modifyThe number of modified base on donenumber
tipCustom Style (Array contains 3 items, in turn: uncomplete, done, and modified, each item configuration as shown in iTipConfig below)iTipConfig

iTipConfig

paramsdescriptiontypememo
textThe tooltip text ('X'is a placeholder)stringThe color type same with CSS
fillStyleThe background color of progress barstringThe color type same with CSS

Test

$ yarn run test

Dev

link react-yan-progress

$ yarn link

test test-demo

$ yarn link react-yan-progress

unlink react-yan-progress

$ yarn unlink

Contributing

  • Fork this Repo first
  • Clone your Repo
  • Install dependencies by $ npm install
  • Checkout a feature branch
  • Feel free to add your features
  • Make sure your features are fully tested
  • Publish your local branch, Open a pull request
  • Enjoy hacking <3

built upon love by docor v0.3.0

0.2.0

5 years ago

0.1.4

5 years ago

0.1.3

5 years ago

0.1.2

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago