claude-web/node_modules/primevue/stepper/style/index.d.ts

24 lines
602 B
TypeScript
Raw Normal View History

2026-02-23 02:23:38 +00:00
/**
*
* Stepper is a component that streamlines a wizard-like workflow, organizing content into coherent steps and visually guiding users through a numbered progression in a multi-step process.
*
* [Live Demo](https://www.primevue.org/stepper/)
*
* @module stepperstyle
*
*/
import type { BaseStyle } from '@primevue/core/base/style';
export enum StepperClasses {
/**
* Class name of the root element
*/
root = 'p-stepper',
/**
* Class name of the separator element
*/
separator = 'p-stepper-separator'
}
export interface StepperStyle extends BaseStyle {}