npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-bootstrap-toggle

v2.3.2

Published

A React version of the bootstrap-toggle without the JQuery dependency

Downloads

18,241

Readme

React-Bootstrap-Toggle

Build Status Coverage Status

This is a react component of the http://www.bootstraptoggle.com/ project.

Usage

You need to include the bootstrap css file and also the bootstrap2-toggle css file in your app.

If you are using the npm version then you can include it from the module like this.

<link rel="stylesheet" href="node_modules/lib/bootstrap2-toggle.css">

Or you could import it to your SASS or LESS build.

@import "node_modules/lib/bootstrap2-toggle.css";
import React, { Component } from 'react';
import ReactDOM from 'react-dom';
import Toggle from 'react-bootstrap-toggle';

class Form extends Component {
  constructor() {
    super();
    this.state = { toggleActive: false };
    this.onToggle = this.onToggle.bind(this);
  }

  onToggle() {
    this.setState({ toggleActive: !this.state.toggleActive });
  }

  render() {
    return (
      <form>
        <SomeInput something={someProp} />
        .....
        <Toggle
          onClick={this.onToggle}
          on={<h2>ON</h2>}
          off={<h2>OFF</h2>}
          size="xs"
          offstyle="danger"
          active={this.state.toggleActive}
        />
      </form>
    )
  }

}

Install via NPM

npm install react-bootstrap-toggle --save

Props

Name|Type|Default|Description| ---|---|---|--- active|boolean|true| Sets the initial state of the toggle on|string/html|"On"|Text of the on toggle off|string/html|"Off"|Text of the off toggle size|string|null|Size of the toggle. Possible values are lg, sm, xs. onstyle|string|"primary"|Style of the on toggle. Possible values are default, primary, success, info, warning, danger onClassName|string|null| additional classname to put on the on button offstyle|string|"default"|Style of the off toggle. Possible values are default, primary, success, info, warning, danger offClassName|string|null| additional classname to put on the off button handlestyle|string|"default"|Style of the handle. Possible values are default, primary, success, info, warning, danger handleClassName|string|null| additional classname to put on the handle button width|integer|null|Sets the width of the toggle. if set to null, width will be responsive. height|integer|null|Sets the height of the toggle. if set to null, height will be responsive. disabled|bool|false|Render the toggle as disabled style|object|null|If you want to add additional style to the root div recalculateOnResize|bool|false| If the toggle should recalculate it's dimensions when visibility or dimensions change

onClick

A callback function that returns the state, the parent node, and the event

onClick(state, node, evt);

Using Bootstrap2 class names

If you want to use bootstrap2 class names you can import the component like this

import { Bootstrap2Toggle } from 'react-bootstrap-toggle';

Now the component will use large instead of lg and etc..

Bootstrap2Toggle Props

Name|Type|Default|Description| ---|---|---|--- size|string|null|Size of the toggle. Possible values are large, small, tiny.