submenu-inline-child.component.d.ts 1.5 KB

1234567891011121314151617181920212223242526272829
  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 { ElementRef, OnChanges, OnDestroy, OnInit, Renderer2, SimpleChanges, TemplateRef } from '@angular/core';
  7. import { NzSafeAny } from 'ng-zorro-antd/core/types';
  8. import { NzMenuModeType } from './menu.types';
  9. import * as i0 from "@angular/core";
  10. export declare class NzSubmenuInlineChildComponent implements OnDestroy, OnInit, OnChanges {
  11. private elementRef;
  12. private renderer;
  13. private directionality;
  14. templateOutlet: TemplateRef<NzSafeAny> | null;
  15. menuClass: string;
  16. mode: NzMenuModeType;
  17. nzOpen: boolean;
  18. listOfCacheClassName: string[];
  19. expandState: string;
  20. dir: Direction;
  21. private destroy$;
  22. constructor(elementRef: ElementRef, renderer: Renderer2, directionality: Directionality);
  23. calcMotionState(): void;
  24. ngOnInit(): void;
  25. ngOnChanges(changes: SimpleChanges): void;
  26. ngOnDestroy(): void;
  27. static ɵfac: i0.ɵɵFactoryDeclaration<NzSubmenuInlineChildComponent, never>;
  28. static ɵcmp: i0.ɵɵComponentDeclaration<NzSubmenuInlineChildComponent, "[nz-submenu-inline-child]", ["nzSubmenuInlineChild"], { "templateOutlet": { "alias": "templateOutlet"; "required": false; }; "menuClass": { "alias": "menuClass"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "nzOpen": { "alias": "nzOpen"; "required": false; }; }, {}, never, never, true, never>;
  29. }