ContentStepSequence
Use ContentStepSequence for an ordered process with at least two stages. Give it an accessible label, compose two or more ContentStep children, and keep the essential meaning understandable in reading order. ContentStep is a nested helper, not a separate selectable element.
Parameters
| Parameter | Required | Default | Description |
|---|---|---|---|
label | Yes | None | Accessible label for the process. |
direction | No | horizontal | Process orientation; may be horizontal or vertical. |
Example
<ContentStepSequence
direction="vertical"
label="Prepare a verified claim"
>
<ContentStep title="Record the claim">
<p>Write the fact in clear, testable language.</p>
</ContentStep>
<ContentStep title="Add evidence">
<p>Name the source, owner, and freshness rule.</p>
</ContentStep>
<ContentStep title="Review before publishing">
<p>Check the rendered result and correction path.</p>
</ContentStep>
</ContentStepSequence>
Record the claim
Write the fact in clear, testable language.
Add evidence
Name the source, owner, and freshness rule.
Review before publishing
Check the rendered result and correction path.