timeline.component.d.ts 1.8 KB

12345678910111213141516171819202122232425262728293031323334
  1. /**
  2. * Use of this source code is governed by an MIT-style license that can be
  3. * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE
  4. */
  5. import { Direction, Directionality } from '@angular/cdk/bidi';
  6. import { AfterContentInit, ChangeDetectorRef, OnChanges, OnDestroy, OnInit, QueryList, SimpleChanges, TemplateRef } from '@angular/core';
  7. import { NzTimelineItemComponent } from './timeline-item.component';
  8. import { TimelineService } from './timeline.service';
  9. import { NzTimelineMode } from './typings';
  10. import * as i0 from "@angular/core";
  11. export declare class NzTimelineComponent implements AfterContentInit, OnChanges, OnDestroy, OnInit {
  12. private cdr;
  13. private timelineService;
  14. private directionality;
  15. listOfItems: QueryList<NzTimelineItemComponent>;
  16. nzMode: NzTimelineMode;
  17. nzPending?: string | boolean | TemplateRef<void>;
  18. nzPendingDot?: string | TemplateRef<void>;
  19. nzReverse: boolean;
  20. isPendingBoolean: boolean;
  21. timelineItems: NzTimelineItemComponent[];
  22. dir: Direction;
  23. hasLabelItem: boolean;
  24. private destroy$;
  25. constructor(cdr: ChangeDetectorRef, timelineService: TimelineService, directionality: Directionality);
  26. ngOnChanges(changes: SimpleChanges): void;
  27. ngOnInit(): void;
  28. ngAfterContentInit(): void;
  29. ngOnDestroy(): void;
  30. private updateChildren;
  31. static ɵfac: i0.ɵɵFactoryDeclaration<NzTimelineComponent, never>;
  32. static ɵcmp: i0.ɵɵComponentDeclaration<NzTimelineComponent, "nz-timeline", ["nzTimeline"], { "nzMode": { "alias": "nzMode"; "required": false; }; "nzPending": { "alias": "nzPending"; "required": false; }; "nzPendingDot": { "alias": "nzPendingDot"; "required": false; }; "nzReverse": { "alias": "nzReverse"; "required": false; }; }, {}, ["listOfItems"], ["*"], true, never>;
  33. static ngAcceptInputType_nzReverse: unknown;
  34. }