Documentation
Design
Components
Checkbox

EccUtilsDesignCheckbox Component

2.0.0-alpha.6
<ecc-utils-design-checkbox/>
EccUtilsDesignCheckbox

Overview

The ecc-utils-design-checkbox component provides a standard checkbox input for forms, allowing users to select one or more options.

This component is a custom-styled checkbox that provides consistent behavior and appearance across browsers.

Usage

Basic Checkbox

This example shows a default checkbox.

Accept terms and conditions

Disabled Checkbox

This example shows a checkbox in a disabled state.

Cannot be changed

Properties

PropertyTypeDefaultDescription
checkedbooleanfalseWhen true, the checkbox is checked.
disabledbooleanfalseWhen true, disables the checkbox.
namestring""The name of the checkbox for form submission.
valuestring""The value of the checkbox for form submission.

checked

Controls the checked state of the checkbox.

<EccUtilsDesignCheckbox checked={true} />

disabled

When true, the checkbox is non-interactive.

<EccUtilsDesignCheckbox disabled={true} />

name

The name attribute, used when submitting the checkbox as part of a form.

<EccUtilsDesignCheckbox name="newsletter" />

value

The value attribute, used when submitting the checkbox as part of a form.

<EccUtilsDesignCheckbox value="subscribe" />

Events

Event NameReact Event NameDetail TypeDescription
ecc-input-changedonEccInputChanged{ checked: boolean, value: string }Fired when the state of the checkbox changes.

ecc-input-changed

Fires when the checkbox is checked or unchecked by the user.

<EccUtilsDesignCheckbox 
  onEccInputChanged={(event) => {
    console.log(event.detail.checked, event.detail.value);
  }}
/>
Elixir Cloud & AAICloud SDKElixir

Released under Apache 2.0 License.

Copyright © 2023-2025 ELIXIR