Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

bee-checkbox

tinper-bee422MIT2.0.11

checkbox ui component for react

react, react-component, react-checkbox, iuap-design, neoui-react, checkbox

readme

bee-checkbox

npm version Build Status Coverage Status

复选框

使用

使用单独的bee-checkbox包

组件引入

先进行下载bee-checkbox包

npm install --save bee-checkbox

组件调用

import Checkbox from 'bee-checkbox';

React.render(<div>
        <Checkbox colors="primary" />
</div>, document.getElementById('target'));

样式引入

  • 可以使用link引入dist目录下bee-checkbox.css
    <link rel="stylesheet" href="./node_modules/build/bee-checkbox.css">
  • 可以在js中import样式
    import "./node_modules/src/Checkbox.scss"
    //或是
    import "./node_modules/build/bee-checkbox.css"

API

Checkbox

参数 说明 类型 默认值
className 类名 string -
color one of: primary success info danger warning dark string ''
disabled 是否可用 bool false
onChange 监听改变 function -
defaultChecked 默认是否选中 bool false
checked 是否选中 bool -
indeterminate 部分选中 bool -
onDoubleClick 双击事件 function function(checked, event){}
onClick 单击事件 function function(event){}
value 选中的值,需配合CheckboxGroup使用 string -
inverse 设置选中为红色填充 bool false

CheckboxGroup

参数 说明 类型 默认值
className 类名 string -
onChange 监听改变 function -
value 设置默认值 array []
disabled 是否可用 bool false

已支持的键盘操作

按键 功能
space 选中/反选Checkbox

开发调试

$ git clone https://github.com/tinper-bee/bee-checkbox
$ cd bee-checkbox
$ npm install
$ npm run dev

changelog

2.0.11 (2020-04-24)

Bug Fixes

2.0.10 (2020-03-06)

Features

2.0.8 (2019-10-10)

2.0.7 (2019-09-03)

2.0.6 (2019-05-24)

2.0.5 (2019-04-01)

2.0.4 (2019-03-29)

2.0.3 (2019-03-12)

2.0.2 (2019-02-28)

2.0.1 (2019-01-23)

2.0.0 (2019-01-22)

1.2.6 (2018-11-22)

Bug Fixes

  • bee-checkbox: color danger (ea1ec3f)

1.2.5 (2018-11-20)

Features

  • bee-checkbox: 全键盘操作 (f072992)

1.2.4 (2018-11-20)

Bug Fixes

  • bee-checkbox: 新增在form中使用示例 (89dded1)

Features

  • bee-checkbox: 全键盘操作 (3ee479b)

1.2.2 (2018-11-19)

Features

  • bee-checkbox: 完善文档 (70eeea1)

1.2.1 (2018-11-19)

Features

  • bee-checkbox: 新增checkboxGroup (5b4a958)

1.1.1 (2018-09-14)

Features

  • bee-checkbox (f89624e)
  • bee-checkbox: 修改Checkbox组件样式 (22bb057)

1.0.9 (2018-05-10)

Bug Fixes

1.0.8 (2018-04-11)

1.0.7 (2018-04-10)

1.0.6 (2018-04-08)

1.0.5 (2018-01-21)

1.0.3 (2018-01-16)

Bug Fixes

Features

  • checkbox.scss: 新增checkbox在disabled状态时的鼠标样式 (89f8403)
  • demo.js: 修改demo展现方式 (8630a32)