🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

react-checkbox

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-checkbox

React Checkbox

0.1.3
latest
Source
npm
Version published
Weekly downloads
941
22.53%
Maintainers
1
Weekly downloads
 
Created
Source

react-checkbox

React Checkbox

A React checkbox with support for the indeterminate state.

Install

$ npm i --save react-checkbox

Usage

var Checkbox = require('react-checkbox')
var checked = null

React.render(
    <Checkbox checked={checked} supportIntermediate={true} />,
    document.body
)

Props

  • checked: Boolean/Null - whether the checkbox should be checked or not. If supportIntermediate is true, the checked property can also have another value, which should equal to indeterminateValue prop (which defaults to null)
  • supportIndeterminate: Boolean - whether the checkbox should support the indeterminate state. Defaults to false.
  • indeterminateValue - the value for checked that should render the checkbox as indeterminate. Defaults to null
  • stopPropagation: Boolean - whether to stop change event propagation for the checkbox. Defaults to true.
  • onChange: Function(value, event) - The function to call when the state of the checkbox changes. NOTE: Unlike <input type="checkbox" />, first param is the new value, and second param is the event object.
  • defaultChecked - uncontrolled version of checked
  • nextValue: Function(oldValue, props) - can be used to change the default value order (when supportIndeterminate is true). Default order is: (checked -> unchecked; unchecked -> indeterminate; indeterminate -> checked).

Other

If you want support for submitting the indeterminate value, and for specifying what to submit on each state, I suggest you take a look at react-check3

Keywords

checkbox

FAQs

Package last updated on 21 Jan 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts