# ef-checkbox

Form control for selecting one or several options

## Properties

| Property        | Attribute       | Type      | Default | Description             |
|-----------------|-----------------|-----------|---------|-------------------------|
| `checked`       | `checked`       | `boolean` | false   | Value of checkbox       |
| `disabled`      | `disabled`      | `boolean` | false   | Set disabled state      |
| `indeterminate` | `indeterminate` | `boolean` | false   | Set indeterminate state |
| `readonly`      | `readonly`      | `boolean` | false   | Set readonly state      |

## Events

| Event             | Description                                      |
|-------------------|--------------------------------------------------|
| `checked-changed` | Fired when the user checks or unchecks the checkbox. The event is not fired if the `checked` property is changed programmatically. |
