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

Package detail

react-toggle

aaronshaf964kMIT4.1.3TypeScript support: definitely-typed

An elegant, accessible toggle component for React. Also a glorified checkbox.

toggle, component, react, react-component

readme

An elegant, accessible toggle component for React. Also a glorified checkbox.

See usage and examples.

Props

The component takes the following props.

Prop Type Description
checked boolean If true, the toggle is checked. If false, the toggle is unchecked. Use this if you want to treat the toggle as a controlled component
defaultChecked boolean If true on initial render, the toggle is checked. If false on initial render, the toggle is unchecked. Use this if you want to treat the toggle as an uncontrolled component
onChange function Callback function to invoke when the user clicks on the toggle. The function signature should be the following: function(e) { }. To get the current checked status from the event, use e.target.checked.
onFocus function Callback function to invoke when field has focus. The function signature should be the following: function(e) { }
onBlur function Callback function to invoke when field loses focus. The function signature should be the following: function(e) { }
name string The value of the name attribute of the wrapped <input> element
value string The value of the value attribute of the wrapped <input> element
id string The value of the id attribute of the wrapped <input> element
icons object If false, no icons are displayed. You may also pass custom icon components in icons={{checked: <CheckedIcon />, unchecked: <UncheckedIcon />}}
aria-labelledby string The value of the aria-labelledby attribute of the wrapped <input> element
aria-label string The value of the aria-label attribute of the wrapped <input> element
disabled boolean If true, the toggle is disabled. If false, the toggle is enabled

Installation

npm install react-toggle

Usage

If you want the default styling, include the component's CSS with

import "react-toggle/style.css" // for ES6 modules
// or
require("react-toggle/style.css") // for CommonJS

Development

npm install
npm run dev

Build

npm run build

License

MIT

changelog

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog and this project adheres to Semantic Versioning as of release version 2.1.0.

Unreleased

Added

  • Add props documentation to README.md
  • Add standardjs linting
  • Add support for className-prop
  • Add support for swiping

Changed

  • Use newer React and JavaScript language features
  • Use cursor: not-allowed on hover when disabled
  • Rearrange project file structure
  • Stop tracking compiled files
  • Update URLs and email address in package.json
  • Update URLs in README.md
  • Update dependencies

Fixed

  • Remove syntax highlighting attempt
  • Don't react on hover when disabled
  • Fix issue with broken React ref
  • Fix lint errors
  • Don't use deprecated React.PropTypes API

2.1.1 - 2016-07-13

Fixed

  • Make SVG properties work with React
  • Remove unused SVG properties

2.1.0 - 2016-04-14

Changed

  • Update dependencies

2.0.1 - 2015-10-12

Changed

  • Update build

2.0.0 - 2015-10-12