1 viewer
Back to Components
Component · Navigation

Stepper

Horizontal step progress indicator showing completion state.

Category
Navigation
Slots
4
States
3
Writer
Shared
cre8.primitive.stepper

Preview

Live renderShared SSR + WASM writers
<Stepper
  steps={[
    { id: "step-1", label: "Identity Verification", status: "done" },
    { id: "step-2", label: "Execution Lease", status: "current" },
    { id: "step-3", label: "Settlement Receipt", status: "upcoming" }
  ]}
/>

Anatomy

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

SlotDOM class
root.primitive-stepper
item—
circle—
label—
4 rows

States and platforms

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

States
donecurrentupcoming
Platforms
webnativeruntime-node
Recipes
unstyledruntime-console

Renderers

Shared writer
Stepper 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-navigationready
terminalterminal-textplanned
nativenative-adapterexperimental
5 rows

Accessibility

An ordered step list keeps progress understandable without recipe styling.

  • Expose an accessible label for the overall progress landmark.
  • Mark the active step with aria-current and keep completion state available as text.