cascader-option.component.d.ts 2.0 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 } from '@angular/cdk/bidi';
  6. import { ChangeDetectorRef, EventEmitter, OnInit, TemplateRef } from '@angular/core';
  7. import { NzTreeNode } from 'ng-zorro-antd/core/tree';
  8. import { NzCascaderOption } from './typings';
  9. import * as i0 from "@angular/core";
  10. export declare class NzCascaderOptionComponent implements OnInit {
  11. private cdr;
  12. optionTemplate: TemplateRef<NzCascaderOption> | null;
  13. node: NzTreeNode;
  14. activated: boolean;
  15. highlightText: string;
  16. nzLabelProperty: string;
  17. columnIndex: number;
  18. expandIcon: string | TemplateRef<void>;
  19. dir: Direction;
  20. checkable?: boolean;
  21. readonly check: EventEmitter<void>;
  22. readonly nativeElement: HTMLElement;
  23. constructor(cdr: ChangeDetectorRef);
  24. ngOnInit(): void;
  25. get checked(): boolean;
  26. get halfChecked(): boolean;
  27. get disabled(): boolean;
  28. markForCheck(): void;
  29. onCheckboxClick(event: MouseEvent): void;
  30. static ɵfac: i0.ɵɵFactoryDeclaration<NzCascaderOptionComponent, never>;
  31. static ɵcmp: i0.ɵɵComponentDeclaration<NzCascaderOptionComponent, "[nz-cascader-option]", ["nzCascaderOption"], { "optionTemplate": { "alias": "optionTemplate"; "required": false; }; "node": { "alias": "node"; "required": false; }; "activated": { "alias": "activated"; "required": false; }; "highlightText": { "alias": "highlightText"; "required": false; }; "nzLabelProperty": { "alias": "nzLabelProperty"; "required": false; }; "columnIndex": { "alias": "columnIndex"; "required": false; }; "expandIcon": { "alias": "expandIcon"; "required": false; }; "dir": { "alias": "dir"; "required": false; }; "checkable": { "alias": "checkable"; "required": false; }; }, { "check": "check"; }, never, never, true, never>;
  32. static ngAcceptInputType_columnIndex: unknown;
  33. static ngAcceptInputType_checkable: unknown;
  34. }