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

60 lines
1.5 KiB
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 list element
*/
list = 'p-stepper-list',
2024-05-22 13:52:02 +00:00
/**
* Class name of the stepper item element
*/
stepperItem = 'p-stepper-item',
2024-05-22 13:52:02 +00:00
/**
* Class name of the stepper item header element
*/
stepperItemHeader = 'p-stepper-item-header',
2024-05-22 13:52:02 +00:00
/**
* Class name of the stepper item number element
*/
stepperItemNumber = 'p-stepper-item-number',
2024-05-22 13:52:02 +00:00
/**
* Class name of the stepper item title element
*/
stepperItemTitle = 'p-stepper-item-title',
2024-05-22 13:52:02 +00:00
/**
* Class name of the stepper separator element
*/
stepperSeparator = 'p-stepper-separator',
2024-05-22 13:52:02 +00:00
/**
* Class name of the stepper panel content container element
*/
stepperPanelContentContainer = 'p-stepper-panel-content-container',
2024-05-22 13:52:02 +00:00
/**
* Class name of the stepper panel content element
*/
stepperPanelContent = 'p-stepper-panel-content',
2024-05-22 13:52:02 +00:00
/**
* Class name of the panels element
*/
panels = 'p-stepper-panels',
2024-05-22 13:52:02 +00:00
/**
* Class name of the panel element
*/
panel = 'p-stepper-panel'
}
2024-02-13 06:22:45 +00:00
export interface StepperStyle extends BaseStyle {}