tree-node-switcher.component.d.ts 1.7 KB

12345678910111213141516171819202122232425262728293031
  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 { TemplateRef } from '@angular/core';
  6. import { NzTreeNode, NzTreeNodeOptions } from 'ng-zorro-antd/core/tree';
  7. import * as i0 from "@angular/core";
  8. export declare class NzTreeNodeSwitcherComponent {
  9. nzShowExpand?: boolean;
  10. nzShowLine?: boolean;
  11. nzExpandedIcon?: TemplateRef<{
  12. $implicit: NzTreeNode;
  13. origin: NzTreeNodeOptions;
  14. }>;
  15. nzSelectMode: boolean;
  16. context: NzTreeNode;
  17. isLeaf?: boolean;
  18. isLoading?: boolean;
  19. isExpanded?: boolean;
  20. get isShowLineIcon(): boolean;
  21. get isShowSwitchIcon(): boolean;
  22. get isSwitcherOpen(): boolean;
  23. get isSwitcherClose(): boolean;
  24. static ɵfac: i0.ɵɵFactoryDeclaration<NzTreeNodeSwitcherComponent, never>;
  25. static ɵcmp: i0.ɵɵComponentDeclaration<NzTreeNodeSwitcherComponent, "nz-tree-node-switcher", never, { "nzShowExpand": { "alias": "nzShowExpand"; "required": false; }; "nzShowLine": { "alias": "nzShowLine"; "required": false; }; "nzExpandedIcon": { "alias": "nzExpandedIcon"; "required": false; }; "nzSelectMode": { "alias": "nzSelectMode"; "required": false; }; "context": { "alias": "context"; "required": false; }; "isLeaf": { "alias": "isLeaf"; "required": false; }; "isLoading": { "alias": "isLoading"; "required": false; }; "isExpanded": { "alias": "isExpanded"; "required": false; }; }, {}, never, never, true, never>;
  26. static ngAcceptInputType_nzShowExpand: unknown;
  27. static ngAcceptInputType_nzShowLine: unknown;
  28. static ngAcceptInputType_isLeaf: unknown;
  29. static ngAcceptInputType_isLoading: unknown;
  30. static ngAcceptInputType_isExpanded: unknown;
  31. }