UNPKG

primeng

Version:

PrimeNG is an open source UI library for Angular 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 PrimeB

40 lines (39 loc) 1.06 kB
import { BaseStyle } from 'primeng/base'; import * as i0 from "@angular/core"; export declare class StepperStyle extends BaseStyle { name: string; theme: ({ dt }: { dt: any; }) => string; classes: { root: ({ props }: { props: any; }) => (string | { 'p-readonly': any; })[]; separator: string; }; static ɵfac: i0.ɵɵFactoryDeclaration<StepperStyle, never>; static ɵprov: i0.ɵɵInjectableDeclaration<StepperStyle>; } /** * * 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.primeng.org/stepper/) * * @module stepperstyle * */ export declare 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 { }