Skip to content
Inputs

Checkbox

A checkbox input that supports indeterminate state. Integrates with Signal Forms.

LlmCheckbox
WCAG AA0 deps

Demo

Live PreviewReact
html
<llm-checkbox [(checked)]="agreed">I agree to the terms</llm-checkbox>
<llm-checkbox [(checked)]="pre">Pre-checked</llm-checkbox>
<llm-checkbox [indeterminate]="true">Indeterminate</llm-checkbox>
<llm-checkbox [disabled]="true">Disabled</llm-checkbox>

API (Angular)

PropTypeDefaultDescription
checkedbooleanfalseControlled checked state
onCheckedChange(checked: boolean) => voidCalled when the checked state changes
indeterminatebooleanfalseShows a dash (indeterminate state)
disabledbooleanfalseDisables the checkbox
readonlybooleanfalseMakes the checkbox read-only
invalidbooleanfalseApplies invalid/error styling
requiredbooleanfalseMarks field as required
namestring''HTML name attribute for form submission

Import

ts
import { LlmCheckbox } from '@atelier-ui/angular';