0.1.0 • Published 30 days ago

@tabula/ui-checkbox v0.1.0

Weekly downloads
-
License
ISC
Repository
github
Last release
30 days ago

@tabula/ui-checkbox

Checkbox control for forms.

Installation

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

pnpm add @tabula/ui-checkbox

You can use npm or yarn too.

Usage

You can import UiCheckbox component and use for your purposes:

import { useState } from 'react';

import { UiCheckbox } from '@tabula/ui-checkbox';

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

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

Options

There are a few general properties which supported by component.

isChecked

This property controls boolean value of checkbox.

isIndeterminate

You can use indeterminate state of checkbox.

isDisabled

This property allows to disable a control.

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.

0.1.0

30 days ago

0.1.0-beta.0

1 month ago