UNPKG

primevue

Version:

PrimeVue is an open source UI library for Vue featuring a rich set of 80+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with PrimeBloc

24 lines (21 loc) 602 B
/** * * 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 type { BaseStyle } from '@primevue/core/base/style'; export enum StepperClasses { /** * Class name of the root element */ root = 'p-stepper', /** * Class name of the separator element */ separator = 'p-stepper-separator' } export interface StepperStyle extends BaseStyle {}