Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计通过

syncfusion-blazor-stepper同步融合 Blazor 步进机

Agent Skill

syncfusion-blazor-stepper 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

339

周安装

14

GitHub Stars

公开资料未说明

下载量

111
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:syncfusion-blazor-stepper(同步融合 Blazor 步进机)
来源仓库:https://github.com/syncfusion/blazor-ui-components-skills
仓库路径:skills/syncfusion-blazor-stepper
安装命令:
npx skills add https://github.com/syncfusion/blazor-ui-components-skills --skill syncfusion-blazor-stepper
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/syncfusion/blazor-ui-components-skills --skill syncfusion-blazor-stepper

简介

用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 安装前需确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • syncfusion-blazor-stepper 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Implementing the Syncfusion Blazor Stepper Component

The Blazor Stepper component provides an intuitive way to guide users through multi-step processes. It displays progress across numbered or labeled steps, supporting linear and non-linear workflows with customizable animations, templates, and validation states.

When to Use This Skill

Use the Stepper component when you need to:

  • Create multi-step wizards or workflows
  • Display progress through sequential tasks
  • Build step-by-step forms with validation
  • Implement checklist-style navigation
  • Guide users through onboarding processes
  • Show optional vs. required steps
  • Validate step completion before progression

Component Overview

The Stepper displays steps in a horizontal or vertical layout with configurable indicators, labels, and templates. Each step can be customized with:

  • Visual states: Not started, in progress, completed, error
  • Labels and icons: Custom text and CSS icon classes
  • Validation: Success or error indicators
  • Templates: Custom content for advanced layouts
  • Animations: Smooth transitions between steps

Documentation and Navigation Guide

API Reference

📄 Read: references/api-reference.md

  • Complete API documentation for all properties, methods, and events
  • Component and property definitions with direct links to implementation guides
  • Event arguments reference and enumeration types
  • Complete component hierarchy (SfStepper, StepperStep, StepperAnimationSettings)

Getting Started

📄 Read: references/getting-started.md

  • Installation and package setup for Blazor WebAssembly and Blazor Web App
  • Service registration and namespace imports
  • Basic Stepper implementation with icons and labels
  • Interactive render modes for modern Web Apps
  • Theme configuration and CSS imports

Step Types and Configuration

📄 Read: references/step-types.md

  • Step type variations (Default, Label, Indicator)
  • Label positioning (Top, Bottom, Start, End)
  • Step properties and attributes
  • Optional and disabled steps
  • Linear vs. non-linear workflows
  • Step status management

Events and Interactions

📄 Read: references/events.md

  • Event handlers and lifecycle (Created, StepChanged, StepChanging, StepClicked, StepRendered)
  • Event arguments and parameters
  • Common event patterns
  • Handling step progression and validation

Templates and Customization

📄 Read: references/templates-and-styling.md

  • Custom step templates
  • Template context and properties
  • CSS styling and customization
  • CssClass property for individual steps
  • Theme customization and appearance

Advanced Features

📄 Read: references/advanced-features.md

  • Step validation (IsValid property and validation states)
  • Validation workflow implementation
  • Tooltip support (ShowTooltip property and custom templates)
  • Step content templates and custom layouts
  • Step completion tracking and error handling
  • Conditional step display patterns

Animations and Globalization

📄 Read: references/animations-and-globalization.md

  • Animation settings (Duration and Delay)
  • Enabling/disabling animations
  • Localization support
  • RTL (Right-to-Left) support
  • Multi-language configuration

Orientations and Layouts

📄 Read: references/orientations-and-layouts.md

  • Horizontal orientation (default)
  • Vertical orientation
  • Linear flow with sequential progression
  • Non-linear flow with free navigation
  • Responsive design patterns
  • Mobile and desktop layout considerations

Quick Start Example

@using Syncfusion.Blazor.Navigations

<SfStepper>
    <StepperSteps>
        <StepperStep Label="Cart" IconCss="sf-icon-cart"></StepperStep>
        <StepperStep Label="Address" IconCss="sf-icon-transport"></StepperStep>
        <StepperStep Label="Payment" IconCss="sf-icon-payment"></StepperStep>
        <StepperStep Label="Ordered" IconCss="sf-icon-success"></StepperStep>
    </StepperSteps>
</SfStepper>

Common Patterns

Linear Workflow

Use the Linear property to enforce sequential progression—users can only move to the next step after completing the current one.

<SfStepper Linear="true">
    <!-- Steps -->
</SfStepper>

Active Step Control

Set the ActiveStep property to control which step is currently active (0-indexed).

<SfStepper ActiveStep="1">
    <!-- Steps -->
</SfStepper>

Tracking Step Changes

Handle the StepChanged event to respond when users navigate between steps.

<SfStepper StepChanged="@OnStepChanged">
    <!-- Steps -->
</SfStepper>

@code {
    private void OnStepChanged(StepperChangedEventArgs args)
    {
        // Handle step change
    }
}

Validation States

Display success or error states using the IsValid property on individual steps.

<StepperStep Label="Payment" IsValid="true"></StepperStep>
<StepperStep Label="Confirm" IsValid="false"></StepperStep>

Key Properties

PropertyTypePurpose
ActiveStepintSets the currently active step (0-indexed)
LinearFlowboolEnforces sequential step progression
ReadOnlyboolDisables user interaction with the stepper
StepTypeStepperTypeDisplay format (Default, Label, Indicator)
OrientationStepperOrientationLayout direction (Horizontal, Vertical)
LabelPositionStepperLabelPositionLabel placement (Top, Bottom, Start, End)

Step Properties:

  • Label: Display text for the step
  • Text: Alternative text content
  • IconCss: CSS class for custom icons
  • Disabled: Prevents interaction with the step
  • Optional: Marks step as optional
  • IsValid: Sets validation state (true/false/null)
  • Status: Current state (NotStarted, InProgress, Completed)
  • CssClass: Custom CSS class for styling

Common Use Cases

Checkout Flow: Guide users through purchase steps with validation and error handling.

Form Wizards: Break complex forms into manageable steps with optional sections.

Onboarding: Create step-by-step tutorials for new users with progress tracking.

Setup Wizards: Guide users through configuration processes with success/error states.

Task Lists: Display checklist-style progress with completed/pending indicators.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.41%
按下载量换算37

Claude

32.8%
按下载量换算36

Cursor

19.07%
按下载量换算21

Gemini CLI

8.68%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills