Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/Nettalco/nettalco-theme/llms.txt

Use this file to discover all available pages before exploring further.

The Steps component renders a horizontal wizard progress indicator, with numbered circles connected by a separator line. Nettalco Theme tokens cover the connector line colour, item link focus ring, label typography, and the styled number bubble — with active states driven by {primary.color} to highlight the current step.

Usage

<p-steps [model]="steps" [activeIndex]="activeIndex" />
import { MenuItem } from 'primeng/api';

activeIndex = 1;

steps: MenuItem[] = [
  { label: 'Account' },
  { label: 'Details' },
  { label: 'Review' },
  { label: 'Confirm' }
];

Design Tokens

Root

TokenValue
root.transitionDuration{transition.duration}

Separator

TokenValue
separator.background{content.border.color}
TokenValue
itemLink.borderRadius{content.border.radius}
itemLink.gap0.5rem
itemLink.focusRing.width{focus.ring.width}
itemLink.focusRing.style{focus.ring.style}
itemLink.focusRing.color{focus.ring.color}
itemLink.focusRing.offset{focus.ring.offset}
itemLink.focusRing.shadow{focus.ring.shadow}

Item Label

TokenValue
itemLabel.color{text.muted.color}
itemLabel.activeColor{primary.color}
itemLabel.fontWeight500

Item Number

TokenValue
itemNumber.background{content.background}
itemNumber.activeBackground{content.background}
itemNumber.borderColor{content.border.color}
itemNumber.activeBorderColor{content.border.color}
itemNumber.color{text.muted.color}
itemNumber.activeColor{primary.color}
itemNumber.size2rem
itemNumber.fontSize1.143rem
itemNumber.fontWeight500
itemNumber.borderRadius50%
itemNumber.shadow0px 0.5px 0px 0px rgba(0, 0, 0, 0.06), 0px 1px 1px 0px rgba(0, 0, 0, 0.12)

Theme Notes

Active step labels and numbers are coloured with {primary.color}, making the current wizard position immediately identifiable. Inactive steps use {text.muted.color} throughout, keeping the surrounding context visible but subdued. The Steps component is not part of the transition: none override block in Nettalco Theme; transitions on the wizard indicator are left at their default values.

Build docs developers (and LLMs) love