submenu-non-inline-child.component.d.ts 2.1 KB

123456789101112131415161718192021222324252627282930313233
  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 { EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges, TemplateRef } from '@angular/core';
  7. import { NzSafeAny } from 'ng-zorro-antd/core/types';
  8. import { NzMenuModeType, NzMenuThemeType, NzSubmenuTrigger } from './menu.types';
  9. import * as i0 from "@angular/core";
  10. export declare class NzSubmenuNoneInlineChildComponent implements OnDestroy, OnInit, OnChanges {
  11. private directionality;
  12. menuClass: string;
  13. theme: NzMenuThemeType;
  14. templateOutlet: TemplateRef<NzSafeAny> | null;
  15. isMenuInsideDropDown: boolean;
  16. mode: NzMenuModeType;
  17. nzTriggerSubMenuAction: NzSubmenuTrigger;
  18. position: string;
  19. nzDisabled: boolean;
  20. nzOpen: boolean;
  21. readonly subMenuMouseState: EventEmitter<boolean>;
  22. constructor(directionality: Directionality);
  23. setMouseState(state: boolean): void;
  24. expandState: string;
  25. dir: Direction;
  26. private destroy$;
  27. ngOnDestroy(): void;
  28. calcMotionState(): void;
  29. ngOnInit(): void;
  30. ngOnChanges(changes: SimpleChanges): void;
  31. static ɵfac: i0.ɵɵFactoryDeclaration<NzSubmenuNoneInlineChildComponent, never>;
  32. static ɵcmp: i0.ɵɵComponentDeclaration<NzSubmenuNoneInlineChildComponent, "[nz-submenu-none-inline-child]", ["nzSubmenuNoneInlineChild"], { "menuClass": { "alias": "menuClass"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "templateOutlet": { "alias": "templateOutlet"; "required": false; }; "isMenuInsideDropDown": { "alias": "isMenuInsideDropDown"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "nzTriggerSubMenuAction": { "alias": "nzTriggerSubMenuAction"; "required": false; }; "position": { "alias": "position"; "required": false; }; "nzDisabled": { "alias": "nzDisabled"; "required": false; }; "nzOpen": { "alias": "nzOpen"; "required": false; }; }, { "subMenuMouseState": "subMenuMouseState"; }, never, never, true, never>;
  33. }