1 viewer
Back to Components
Component · Input

Checkbox

Accessible binary choice control.

Category
Input
Slots
5
States
5
Writer
Shared
cre8.primitive.checkbox

Preview

Live renderShared SSR + WASM writers
Guarantees crash-recovery parity across nodes.
<Checkbox
  checked={true}
  description="Guarantees crash-recovery parity across nodes."
  label="Persist state transitions to HyperDB WAL"
  name="durable_sync"
/>

Anatomy

The named parts of the rendered markup. Recipes style these hooks, and every renderer keeps them stable.

SlotDOM class
root.primitive-checkbox
control—
label—
description—
error—
5 rows
Hydration markers
data-cre8-control

States and platforms

The states the contract publishes, the platforms it declares, and the style recipes that dress it.

States
checkeddisabledrequiredinvalidindeterminate
Platforms
webnativeruntime-node
Recipes
unstyledruntime-console

Renderers

Shared writer
Checkbox renders through the one writer the server and the WASM DOM share, so both emit the same markup.

Every tag in the example above renders through a shared writer.

Declared adapters. A status is the manifest's declaration, not a measured parity result.

TargetRendererStatus
webreactexperimental
runtime-nodeview-nodeready
ssrhtml-form-controlready
terminalterminal-form-controlplanned
nativenative-adapterexperimental
5 rows

Accessibility

Uses native checkbox semantics with explicit label association.

  • Checked, indeterminate, required, and invalid states remain available to assistive tech.
  • Label, help text, and error text are linked through ids.