mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-10 17:32:36 +00:00
Added style class definitions to *Style.d.ts
This commit is contained in:
parent
290b8e1335
commit
64dca2bdb9
136 changed files with 7542 additions and 1119 deletions
23
components/lib/stepper/style/StepperStyle.d.ts
vendored
23
components/lib/stepper/style/StepperStyle.d.ts
vendored
|
@ -1,3 +1,26 @@
|
|||
/**
|
||||
*
|
||||
* 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
|
||||
*
|
||||
*/
|
||||
import { BaseStyle } from '../../base/style';
|
||||
|
||||
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'
|
||||
}
|
||||
|
||||
export interface StepperStyle extends BaseStyle {}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue