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

ParameterRequiredDefaultDescription
labelYesNoneAccessible label for the process.
directionNohorizontalProcess 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>
  1. Record the claim

    Write the fact in clear, testable language.

  2. Add evidence

    Name the source, owner, and freshness rule.

  3. Review before publishing

    Check the rendered result and correction path.