Revel
GitHub
GitHub
  • Overview

    • Getting started
    • FAQ
    • Release notes
  • Foundations

    • Meet the standard
    • Accessibility
    • Internationalization
    • Information hierarchy
    • Speed
  • Design

    • Visual principles
    • Colors
    • Space
    • Icons
    • Typography
  • Design tokens
  • Style helpers
  • Content

    • Express your ideas
    • Actionable language
    • Inclusive and accessible language
    • Alternative text
    • Grammar and mechanics
      • Basics
      • Capitalization
      • Dates and units of measurement
      • Punctuation
  • Components

    • Alert
    • Avatar
    • Badge
    • Button
    • Button group
    • Checkbox
    • Date Input
      • dates
      • datetimes
      • ranges
      • date range
    • Field group
    • File upload
    • Flex
    • Grid
    • Icon
    • Image
    • Input
    • Loader
    • Modal
    • Month picker
    • Multistep
      • multistep
      • step
    • Pagination
    • Popper
    • Radio
    • Repeater
    • Select
    • Tabs
    • Tile
    • Toast
    • Toggle
  • Directives

    • Click outside
    • Tooltip

Step

Component used to show which step of a pre-determined process is currently happening.

Needs to be child of <r-multistep/> components.

Usage

import { RStep } from '@rebilly/revel';

<r-step index="approved">
    <template #content>
        <p>Content for Step 3: Approved</p>
    </template>
</r-step>

You may also provide a title slot to change the tile display.

import { RStep } from '@rebilly/revel';

<r-step index="approved">
    <template #title>
        Step: APPROVED
    </template>
    <template #content>
        <p>Content for Step 3: Approved</p>
    </template>
</r-step>

While <r-step> has the props active, completed, and teleport these props are managed by the <r-multistep> component and do not need to be used.

Edit this page
Last Updated: 2/10/26, 4:30 PM
Contributors: Matthew Sanford, Simon, Cesar Level
Prev
multistep