ng-zorro-antd-mobile
Version:
An enterprise-class mobile UI components based on Ant Design and Angular
29 lines (28 loc) • 895 B
TypeScript
import { OnInit, QueryList, AfterContentInit, Renderer2, ElementRef } from '@angular/core';
import { StepStatusEnum, StepDirectionEnum } from './step/step.component';
import { StepComponent } from './step/step.component';
export declare class StepsComponent implements OnInit, AfterContentInit {
private _elf;
private _render;
prefixCls: string;
private _current;
private _size;
private _status;
private _direction;
private _stepsCls;
stepItems: QueryList<StepComponent>;
current: any;
size: any;
status: StepStatusEnum;
direction: StepDirectionEnum;
clsSteps: boolean;
clsStepsSmall: boolean;
clsStepsLabelVtl: boolean;
clsStepsVtl: boolean;
clsStepsHztl: boolean;
constructor(_elf: ElementRef, _render: Renderer2);
setStepStyle(): void;
setCls(): void;
ngOnInit(): void;
ngAfterContentInit(): void;
}