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 {
|
|
|
|
root = 'p-stepper',
|
|
|
|
list = 'p-stepper-list',
|
|
|
|
stepperItem = 'p-stepper-item',
|
|
|
|
stepperItemHeader = 'p-stepper-item-header',
|
|
|
|
stepperItemNumber = 'p-stepper-item-number',
|
|
|
|
stepperItemTitle = 'p-stepper-item-title',
|
|
|
|
stepperSeparator = 'p-stepper-separator',
|
|
|
|
stepperPanelContentContainer = 'p-stepper-panel-content-container',
|
|
|
|
stepperPanelContent = 'p-stepper-panel-content',
|
|
|
|
panels = 'p-stepper-panels',
|
|
|
|
panel = 'p-stepper-panel'
|
|
|
|
}
|
|
|
|
|
2024-02-13 06:22:45 +00:00
|
|
|
export interface StepperStyle extends BaseStyle {}
|