tree-node-title.component.d.ts 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. import { ChangeDetectorRef, OnChanges, SimpleChanges, TemplateRef } from '@angular/core';
  2. import { NzTreeNode, NzTreeNodeOptions } from 'ng-zorro-antd/core/tree';
  3. import * as i0 from "@angular/core";
  4. export declare class NzTreeNodeTitleComponent implements OnChanges {
  5. private cdr;
  6. searchValue: string;
  7. treeTemplate: TemplateRef<{
  8. $implicit: NzTreeNode;
  9. origin: NzTreeNodeOptions;
  10. }> | null;
  11. draggable: boolean;
  12. showIcon: boolean;
  13. selectMode: boolean;
  14. context: NzTreeNode;
  15. icon: string;
  16. title: string;
  17. isLoading: boolean;
  18. isSelected: boolean;
  19. isDisabled: boolean;
  20. isMatched: boolean;
  21. isExpanded: boolean;
  22. isLeaf: boolean;
  23. showIndicator: boolean;
  24. dragPosition?: number;
  25. get canDraggable(): boolean | null;
  26. get matchedValue(): string;
  27. get isSwitcherOpen(): boolean;
  28. get isSwitcherClose(): boolean;
  29. constructor(cdr: ChangeDetectorRef);
  30. ngOnChanges(changes: SimpleChanges): void;
  31. static ɵfac: i0.ɵɵFactoryDeclaration<NzTreeNodeTitleComponent, never>;
  32. static ɵcmp: i0.ɵɵComponentDeclaration<NzTreeNodeTitleComponent, "nz-tree-node-title", never, { "searchValue": { "alias": "searchValue"; "required": false; }; "treeTemplate": { "alias": "treeTemplate"; "required": false; }; "draggable": { "alias": "draggable"; "required": false; }; "showIcon": { "alias": "showIcon"; "required": false; }; "selectMode": { "alias": "selectMode"; "required": false; }; "context": { "alias": "context"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "title": { "alias": "title"; "required": false; }; "isLoading": { "alias": "isLoading"; "required": false; }; "isSelected": { "alias": "isSelected"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "isMatched": { "alias": "isMatched"; "required": false; }; "isExpanded": { "alias": "isExpanded"; "required": false; }; "isLeaf": { "alias": "isLeaf"; "required": false; }; "showIndicator": { "alias": "showIndicator"; "required": false; }; "dragPosition": { "alias": "dragPosition"; "required": false; }; }, {}, never, never, true, never>;
  33. static ngAcceptInputType_draggable: unknown;
  34. static ngAcceptInputType_showIcon: unknown;
  35. static ngAcceptInputType_isLoading: unknown;
  36. static ngAcceptInputType_isSelected: unknown;
  37. static ngAcceptInputType_isDisabled: unknown;
  38. static ngAcceptInputType_isMatched: unknown;
  39. static ngAcceptInputType_isExpanded: unknown;
  40. static ngAcceptInputType_isLeaf: unknown;
  41. }