primevue-mirror/components/lib/stepper/style/StepperStyle.d.ts

24 lines
588 B
TypeScript
Raw Normal View History

/**
*
* 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';
export enum StepperClasses {
2024-05-22 13:52:02 +00:00
/**
* Class name of the root element
*/
root = 'p-stepper',
2024-05-22 13:52:02 +00:00
/**
* Class name of the separator element
2024-05-22 13:52:02 +00:00
*/
separator = 'p-stepper-separator'
}
2024-02-13 06:22:45 +00:00
export interface StepperStyle extends BaseStyle {}