1.4.0 • Published 1 month ago

reactjs-toggleswitch v1.4.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 month ago

React JS Toggle Switch

reactjs-toggleswitch is a customizable toggle switch component implemented using react js and TypeScript for React applications. It provides a simple and intuitive way to implement toggle functionality with customizable styles and behavior.

Installation

you can install this package using below npm command

npm install reactjs-toggleswitch

or

yarn add reactjs-toggleswitch

Usage

Import the ToggleSwitch component in your React code and use it as follows:

import React, { useState } from 'react';
import {ToggleSwitch} from 'reactjs-toggleswitch';

const MyComponent: React.FC = () => {
  const [isChecked, setIsChecked] = useState<boolean>(false);

  const handleChange = (checked: boolean) => {
    setIsChecked(checked);
  };

  return (
    <div>
      <h2>Toggle Default Switch Example</h2>
      <ToggleSwitch checked={isChecked} onToggle={handleChange} />
    </div>
  );
};

For more details regarding usage please refer EXAMPLES.md

Note: If styles are not working in your system after installation please import the below style.

import 'reactjs-toggleswitch/dist/cjs/index.css';

Options

The ToggleSwitch component accepts the following props:

OptiontypeDescription
onTogglefunctionCallback function called when the switch state changes/toggle. Receives a boolean parameter indicating the new state.
checkedbooleanSpecifies whether the switch is checked or not.
onColorstringspecifies background color change when switch is checked
offColorstringspecifies background color change when switch is unchecked
disablebooleanspecifies for disabling/enabling the toggle.
ariaLabelstringused to provide a label or description for an element.
childrencomponentspecifies thumb icon use any component like font-awesome
idstringThe value represents the id attribute of the encapsulated input element.
namestringThe value represents the name attribute of the encapsulated input element.
valuestringThe value represents the value attribute of the encapsulated input element.
widthstringThe value represents width of toggle switch
thumbOnColorstringspecifies background color of thumb change when switch is checked
thumbOffColorstringspecifies background color of thumb change when switch is unchecked

Contribution

We welcome contributions! If you'd like to contribute to reactjs-toggleswitch, please follow our Contribution Guidelines.

Author

Subramanya KS

License

This project is licensed under the MIT License - see the LICENSE file for details.

1.4.0

1 month ago

1.3.1

1 month ago

1.3.0

2 months ago

1.2.10

3 months ago

1.2.11

3 months ago

1.2.0

3 months ago

1.1.1

3 months ago

1.2.8

3 months ago

1.2.7

3 months ago

1.2.6

3 months ago

1.2.5

3 months ago

1.2.4

3 months ago

1.2.3

3 months ago

1.2.2

3 months ago

1.2.1

3 months ago

1.1.2

3 months ago

1.2.9

3 months ago

1.1.0

3 months ago

1.0.17

3 months ago

1.0.16

3 months ago

1.0.15

3 months ago

1.0.14

3 months ago

1.0.13

3 months ago

1.0.12

3 months ago

1.0.11

3 months ago

1.0.10

3 months ago

1.0.9

3 months ago

1.0.8

3 months ago

1.0.7

3 months ago

1.0.6

3 months ago

1.0.5

3 months ago

1.0.4

3 months ago

1.0.3

3 months ago

1.0.2

3 months ago

1.0.1

3 months ago

1.0.0

3 months ago