baked-recipe-admin
Version:
Baked is an opinionated framework for .NET in backend and Nuxt in frontend. This is a recipe package that brings together all the components one needs for an Admin UI.
24 lines (21 loc) • 602 B
TypeScript
/**
*
* 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 {}