# @blaze-react/checkboxes

> Boxes that are checked (ticked) when activated. They allow you to select single values for submission in a form (or not).

Latest version **0.8.0-alpha.112** (published 2025-10-01) · GPL-3.0 license · 0 weekly downloads

## Install

```sh
npm install @blaze-react/checkboxes
pnpm add @blaze-react/checkboxes
yarn add @blaze-react/checkboxes
bun add @blaze-react/checkboxes
```

## Health

**Score 45/100 (D)** — status: stable.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

## Facts

| | |
|---|---|
| Version | 0.8.0-alpha.112 |
| Published | 2025-10-01 |
| First published | 2019-06-20 |
| Weekly downloads | 0 |
| License | GPL-3.0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 1.5 MB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | byte9 |
| Maintainers | marekb9, mcabrerapf, daoyong, grzegorzi, ishrat, andypail, tanane |

## Links

- npm: https://www.npmjs.com/package/@blaze-react/checkboxes
- npm.io page: https://npm.io/package/@blaze-react/checkboxes

## Dependencies (1)

- [@blaze-react/tooltip](https://npm.io/package/@blaze-react/tooltip.md) ^0.8.0-alpha.112

## Recent versions

- 0.8.0-alpha.112 (latest) — 2025-10-01
- 0.8.0-alpha.117 (alpha) — 2026-03-11
- 0.8.0-alpha.115 — 2026-02-23
- 0.8.0-alpha.114 — 2026-01-08
- 0.8.0-alpha.110 — 2025-09-10
- 0.8.0-alpha.106 — 2025-08-14
- 0.8.0-alpha.103 — 2025-07-07
- 0.8.0-alpha.102 — 2025-07-01
- 0.8.0-alpha.101 — 2025-06-27
- 0.8.0-alpha.100 — 2025-02-26
- 0.8.0-alpha.99 — 2024-11-27
- 0.8.0-alpha.98 — 2024-11-27
- 0.8.0-alpha.97 — 2024-11-21
- 0.8.0-alpha.96 — 2024-11-21
- 0.8.0-alpha.95 — 2024-11-21
- … 121 more at https://npm.io/package/@blaze-react/checkboxes/versions

## README

## Description

Boxes that are checked (ticked) when activated. They allow you to select single values for submission in a form (or not).

## Usage

- Multiselect

```js
const multiple = [
  {
    label: "First",
    value: 1,
    id: "one"
  },
  {
    label: "Second",
    value: 2,
    id: "two"
  },
  {
    label: "Third",
    value: 3,
    id: "three"
  },
  {
    label: "Disabled",
    value: 4,
    disabled: true
  }
];

<Checkboxes options={multiple} onChange={({ event, value }) => {}} />;
```

- Single & required

```js
const single = {
  label: 'Do you agree?',
  required: true
};

<Checkboxes
  options={single}
  boolean
  onChange={({ event, value }) => {}}
```

## API

##### Checkboxes can receive a number of `props` as follow:

| NAME     |   TYPE   | DEFAULT  |
| :------- | :------: | :------: |
| options  |  Array   |    []    |
| disabled | Boolean  |  false   |
| required | Boolean  |  false   |
| boolean  | Boolean  |  false   |
| onChange | Function | () => {} |

---
_Source: https://npm.io/package/@blaze-react/checkboxes · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
