Skip to main content

An easily stylable checkbox component.

Features

Installation

typo3 ui:add checkbox

Read more about installing Components and Primitives.

Examples

Default Checked

Set the checkbox to be checked by default.

Indeterminate State

Use the indeterminate state for "select all" checkboxes or partial selections.

Disabled

Prevent interaction with the checkbox.

API Reference

The following tables cover the available props of the Fluid Primitives. For a full list of available client side props and methods, see the Zag.js Machine API.

checkbox.root

Groups the checkbox control, label, and input into one interactive label. Renders a <label> element.

NameDescriptionRequiredDefault
disabledboolean
Whether the checkbox is disabled. Inherited from a surrounding field when available.
No
-
invalidboolean
Whether the checkbox is invalid. Inherited from a surrounding field when available.
No
-
requiredboolean
Whether the checkbox is required. Inherited from a surrounding field when available.
No
-
defaultCheckedmixed
The initial checked state of the checkbox when rendered. Use when you don't need to control the checked state of the checkbox.
No
false
namestring
The name of the input field in the checkbox. Useful for form submission. Inherited from a surrounding field when available.
No
-
formstring
The id of the form that the checkbox belongs to.
No
-
readOnlyboolean
Whether the checkbox is read-only. Inherited from a surrounding field when available.
No
-
valuestring
The value of checkbox input. Useful for form submission.
No
1
asChildboolean
If true the component uses its child only without the component template. Like Radix UI asChild or Base UI render props.
No
-
rootIdstring
The root ID of the component, used for hydration and identification.
No
-
idsarray
The IDs of of the component parts for composition.
No
[]
controlledboolean
If true, the component is meant to be initialized manually inside another component
No
false
classstring
The CSS class(es) to be applied to the component.
No
-
attributesarray
Additional attributes that should be rendered on the component where ui:attributes is used.
No
[]

Rendered data attributes

AttributeDescription
data-activePresent when active or pressed
data-focusPresent when focused
data-focus-visiblePresent when focused with keyboard
data-readonlyPresent when read-only
data-hoverPresent when hovered
data-disabledPresent when disabled
data-state"indeterminate" | "checked" | "unchecked"
data-invalidPresent when invalid
data-requiredPresent when required

checkbox.hiddenInput

Provides the native checkbox input for form submission and browser integration. Renders an <input> element.

NameDescriptionRequiredDefault
asChildboolean
If true the component uses its child only without the component template. Like Radix UI asChild or Base UI render props.
No
-
classstring
The CSS class(es) to be applied to the component.
No
-
attributesarray
Additional attributes that should be rendered on the component where ui:attributes is used.
No
[]

checkbox.control

Displays the visual checkbox box that reflects the checked state. Renders a <div> element.

NameDescriptionRequiredDefault
asChildboolean
If true the component uses its child only without the component template. Like Radix UI asChild or Base UI render props.
No
-
classstring
The CSS class(es) to be applied to the component.
No
-
attributesarray
Additional attributes that should be rendered on the component where ui:attributes is used.
No
[]

Rendered data attributes

AttributeDescription
data-activePresent when active or pressed
data-focusPresent when focused
data-focus-visiblePresent when focused with keyboard
data-readonlyPresent when read-only
data-hoverPresent when hovered
data-disabledPresent when disabled
data-state"indeterminate" | "checked" | "unchecked"
data-invalidPresent when invalid
data-requiredPresent when required

checkbox.indicator

Displays the checked or indeterminate indicator inside the control. Renders a <div> element.

NameDescriptionRequiredDefault
asChildboolean
If true the component uses its child only without the component template. Like Radix UI asChild or Base UI render props.
No
-
classstring
The CSS class(es) to be applied to the component.
No
-
attributesarray
Additional attributes that should be rendered on the component where ui:attributes is used.
No
[]

Rendered data attributes

AttributeDescription
data-activePresent when active or pressed
data-focusPresent when focused
data-focus-visiblePresent when focused with keyboard
data-readonlyPresent when read-only
data-hoverPresent when hovered
data-disabledPresent when disabled
data-state"indeterminate" | "checked" | "unchecked"
data-invalidPresent when invalid
data-requiredPresent when required

checkbox.label

Displays the visible label text for the checkbox. Renders a <span> element.

NameDescriptionRequiredDefault
asChildboolean
If true the component uses its child only without the component template. Like Radix UI asChild or Base UI render props.
No
-
classstring
The CSS class(es) to be applied to the component.
No
-
attributesarray
Additional attributes that should be rendered on the component where ui:attributes is used.
No
[]

Rendered data attributes

AttributeDescription
data-activePresent when active or pressed
data-focusPresent when focused
data-focus-visiblePresent when focused with keyboard
data-readonlyPresent when read-only
data-hoverPresent when hovered
data-disabledPresent when disabled
data-state"indeterminate" | "checked" | "unchecked"
data-invalidPresent when invalid
data-requiredPresent when required

Machine JavaScript API

NameTypeDescription
checkedbooleanWhether the checkbox is checked
disabledboolean | undefinedWhether the checkbox is disabled
indeterminatebooleanWhether the checkbox is indeterminate
focusedboolean | undefinedWhether the checkbox is focused
checkedStateCheckedStateThe checked state of the checkbox
setChecked(checked: CheckedState) => voidFunction to set the checked state of the checkbox
toggleCheckedVoidFunctionFunction to toggle the checked state of the checkbox

Accessibility

KeyDescription
SpaceToggle the checkbox

Anatomy

<primitives:checkbox.root>
    <primitives:checkbox.control>
        <primitives:checkbox.indicator />
    </primitives:checkbox.control>
    <primitives:checkbox.label />
    <primitives:checkbox.hiddenInput />
</primitives:checkbox.root>