2024-05-08 11:40:44 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* Steps components is an indicator for the steps in a wizard workflow. Example below uses nested routes with Steps.
|
|
|
|
*
|
|
|
|
* [Live Demo](https://www.primevue.org/steps/)
|
|
|
|
*
|
|
|
|
* @module stepsstyle
|
|
|
|
*
|
|
|
|
*/
|
2023-10-02 13:15:41 +00:00
|
|
|
import { BaseStyle } from '../../base/style';
|
|
|
|
|
2024-05-08 11:40:44 +00:00
|
|
|
export enum StepsClasses {
|
|
|
|
root = 'p-steps',
|
|
|
|
list = 'p-steps-list',
|
|
|
|
item = 'p-steps-item',
|
|
|
|
itemLink = 'p-steps-item-link',
|
|
|
|
itemNumber = 'p-steps-item-number',
|
|
|
|
itemLabel = 'p-steps-item-label'
|
|
|
|
}
|
|
|
|
|
2023-10-02 13:15:41 +00:00
|
|
|
export interface StepsStyle extends BaseStyle {}
|