UNPKG

ng-zorro-antd

Version:

An enterprise-class UI components based on Ant Design and Angular

44 lines (43 loc) 1.4 kB
/** * @license * Copyright Alibaba.com All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE */ import { ChangeDetectorRef, ElementRef, OnDestroy, Renderer2, TemplateRef } from '@angular/core'; import { NgClassType } from 'ng-zorro-antd/core'; import { Subject } from 'rxjs'; export declare class NzStepComponent implements OnDestroy { private cdr; processDotTemplate: TemplateRef<void>; nzTitle: string | TemplateRef<void>; nzSubtitle: string | TemplateRef<void>; nzDescription: string | TemplateRef<void>; nzDisabled: boolean; nzStatus: string; isCustomStatus: boolean; private _status; nzIcon: NgClassType | TemplateRef<void>; oldAPIIcon: boolean; isIconString: boolean; private _icon; customProcessTemplate: TemplateRef<{ $implicit: TemplateRef<void>; status: string; index: number; }>; direction: string; index: number; last: boolean; outStatus: string; showProcessDot: boolean; clickable: boolean; click$: Subject<number>; currentIndex: number; private _currentIndex; constructor(cdr: ChangeDetectorRef, renderer: Renderer2, elementRef: ElementRef); onClick(): void; markForCheck(): void; ngOnDestroy(): void; }