1 | import { EventEmitter, OnInit, OnDestroy, ChangeDetectorRef } from '@angular/core';
|
---|
2 | import { MenuItem } from 'primeng/api';
|
---|
3 | import { Router, ActivatedRoute } from '@angular/router';
|
---|
4 | import { Subscription } from 'rxjs';
|
---|
5 | import * as i0 from "@angular/core";
|
---|
6 | import * as i1 from "@angular/common";
|
---|
7 | import * as i2 from "@angular/router";
|
---|
8 | import * as i3 from "primeng/tooltip";
|
---|
9 | export declare class Steps implements OnInit, OnDestroy {
|
---|
10 | private router;
|
---|
11 | private route;
|
---|
12 | private cd;
|
---|
13 | activeIndex: number;
|
---|
14 | model: MenuItem[];
|
---|
15 | readonly: boolean;
|
---|
16 | style: any;
|
---|
17 | styleClass: string;
|
---|
18 | activeIndexChange: EventEmitter<any>;
|
---|
19 | constructor(router: Router, route: ActivatedRoute, cd: ChangeDetectorRef);
|
---|
20 | subscription: Subscription;
|
---|
21 | ngOnInit(): void;
|
---|
22 | itemClick(event: Event, item: MenuItem, i: number): void;
|
---|
23 | isClickableRouterLink(item: MenuItem): boolean;
|
---|
24 | isActive(item: MenuItem, index: number): boolean;
|
---|
25 | ngOnDestroy(): void;
|
---|
26 | static ɵfac: i0.ɵɵFactoryDeclaration<Steps, never>;
|
---|
27 | static ɵcmp: i0.ɵɵComponentDeclaration<Steps, "p-steps", never, { "activeIndex": "activeIndex"; "model": "model"; "readonly": "readonly"; "style": "style"; "styleClass": "styleClass"; }, { "activeIndexChange": "activeIndexChange"; }, never, never>;
|
---|
28 | }
|
---|
29 | export declare class StepsModule {
|
---|
30 | static ɵfac: i0.ɵɵFactoryDeclaration<StepsModule, never>;
|
---|
31 | static ɵmod: i0.ɵɵNgModuleDeclaration<StepsModule, [typeof Steps], [typeof i1.CommonModule, typeof i2.RouterModule, typeof i3.TooltipModule], [typeof Steps, typeof i2.RouterModule, typeof i3.TooltipModule]>;
|
---|
32 | static ɵinj: i0.ɵɵInjectorDeclaration<StepsModule>;
|
---|
33 | }
|
---|