@tabula/ui-switch
TypeScript icon, indicating that this package has built-in type declarations

1.0.1 • Public • Published

@tabula/ui-switch

Switches allows users to turn an individual option on or off.

Installation

Use the package manager pnpm to install @tabula/ui-switch.

pnpm add @tabula/ui-switch

You can use npm or yarn too.

Usage

You can import UiSwitch component and use for your purposes:

import { useState } from 'react';

import { UiSwitch } from '@tabula/ui-switch';

export function AwesomeComponent() {
  const [isChecked, setIsChecked] = useState(false);

  return <UiSwitch isChecked={isChecked} onChange={setIsChecked} />;
}

Options

There are a few general properties which supported by component.

isChecked

This property controls boolean value of checkbox.

isDisabled

This property allows to disable a control.

isReversed

This property allows to reverse layout.

size

This property allows to use one of supported sizes of control.

Are small and medium sizes are supported now. The medium size is default.

Additional options

className

An optional className property to customize styles of component.

style

An optional style property to customize styles of component through style attribute.

id and name

You can provide id for root label element, and name for underlying input element.

testId

For testing purposes, we are support testId property, which be translated to the data-testid attribute on the root label element.

trackId

For analytics purposes, we are support trackId property, which be translated to the data-track-id attribute on the root label element.

Handlers

onChange

We support the onChange handler only, which received a new boolean state of the control.

License

This project is ISC licensed.

Package Sidebar

Install

npm i @tabula/ui-switch

Weekly Downloads

152

Version

1.0.1

License

ISC

Unpacked Size

30.7 kB

Total Files

10

Last publish

Collaborators

  • tabula