0.5.2 • Published 6 years ago

react-multi-picker v0.5.2

Weekly downloads
1
License
ISC
Repository
github
Last release
6 years ago

multi-picker

a multi selector like antd-mobile Piker.

It have peer dependency of react 16.4+ and antd-mobile

screenshot

pic

install

npm i react-multi-picker --save

# or

yarn react-multi-picker

usage

const data = [
  {
    label: "22text",
    value: 22
  },
  {
    label: "33text",
    value: 33
  },
  {
    label: "44text",
    value: 44
  }
];

const values=[22,33]

class App extends Component {
  onChange=(values:any[])=>{
    console.log('this is values',values);
  }
  render() {
    return (
      <div>
        <MultiPicker barLabel={'testSelector'}  data={data} values={values} onChange={this.onChange} ></MultiPicker>
      </div>
    );
  }
}

api

const defaultProps={
  barLabel:'选项',
};
type Value=string|number;
type Data={
  label:string;
  value:Value;
}

type ReqiureProps={
  data:Data[];
  values:Value[];
  onChange:(values:any[])=>any;
}

type Props=ReqiureProps & Partial< typeof defaultProps>