cycle — Lattice component

cycle

ProgressionTimelineStructure

A closed loop of 3-6 stages that returns to its start — for a process with no beginning or end, where the last stage feeds the first.

Open in Playground

Use when the sequence is CIRCULAR: a natural cycle, a feedback loop, a recurring phase. A linear process with a real start and finish is list-steps; a cycle's whole point is the return.

processworkflowretrospective

When to use

  • The sequence is circular. When the last stage feeds the first and there is no true beginning — a natural cycle, a feedback loop, a recurring season. The return is the point; a layout with a start and end would misrepresent it.
  • Three to six stages. Under three there is no loop to trace; past six the ring crowds and the return arc loses force. Merge adjacent stages or move to list-steps.
  • Each stage is a name plus a clause. A stage carries a short name (auto-bold) and one clause of body. Richer per-stage descriptions belong in list-steps; a bare list of names belongs in list.

When not to use

  • A linear process. If the sequence has a real start and a real end, use list-steps — the numbered spine promises exactly that order. The cycle's closed loop mis-cues a one-way process as recurring.
  • More than six stages. Past six the ring crowds and the descriptions shrink below legibility. Keep the six load-bearing stages here and push the detail to list-steps or a second slide.
  • Parallel options. If the items are alternatives the audience weighs rather than stages that flow into each other, use cards-grid or verdict-grid. The arrows here read as causation, not choice.

Common mistakes

  • Authoring stages as a numbered list (1.) instead of a bullet list (-). The stage-node styling and connector chevrons are scoped to ul > li (section.cycle > .cell-stage > ul) — an ol doesn't match the selector, so stages render as a plain, unstyled numbered list with no ring, no chevrons, no return arc.
  • Assuming the eyebrow follows the after-heading pattern used by title/closing. cycle has no eyebrow-specific CSS — it inherits the shared before-heading rule (base.modifiers.css): the inline-code eyebrow paragraph must sit directly BEFORE the ## heading, not after it, or the masthead lift re-seats it as the italic, secondary-color subtitle instead of the intended mono kicker.

Authoring

<!-- _class: cycle -->

## The heading names the loop.

- First stage
  - One clause saying what happens here.
- Second stage
  - One clause saying what happens here.
- Third stage
  - One clause saying what happens here.
- Fourth stage
  - One clause saying what happens here.

Slots

SlotSelectorRequiredDescription
titleh2yesSlide heading naming the cycle.
eyebrowp > codenoOptional label above the heading.
stagesul > liyesEach list item is one stage in the loop. Top bullet = stage name (auto-bold); one nested bullet = a single clause of body. Read clockwise; the last stage returns to the first.

Related

  • list-stepsthe process is linear — a real start and finish, not a loop
  • timeline-listevents fixed to dates rather than a repeating cycle
  • diagramthe loop has branches or feedback into non-adjacent stages