2024-05-08 11:40:44 +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
|
|
|
|
*
|
|
|
|
*/
|
2024-02-13 06:22:45 +00:00
|
|
|
import { BaseStyle } from '../../base/style';
|
|
|
|
|
2024-05-08 11:40:44 +00:00
|
|
|
export enum StepperClasses {
|
2024-05-22 13:52:02 +00:00
|
|
|
/**
|
|
|
|
* Class name of the root element
|
|
|
|
*/
|
2024-05-08 11:40:44 +00:00
|
|
|
root = 'p-stepper',
|
2024-05-22 13:52:02 +00:00
|
|
|
/**
|
2024-06-04 06:23:00 +00:00
|
|
|
* Class name of the separator element
|
2024-05-22 13:52:02 +00:00
|
|
|
*/
|
2024-06-04 06:23:00 +00:00
|
|
|
separator = 'p-stepper-separator'
|
2024-05-08 11:40:44 +00:00
|
|
|
}
|
|
|
|
|
2024-02-13 06:22:45 +00:00
|
|
|
export interface StepperStyle extends BaseStyle {}
|