select-item.component.d.ts 1.2 KB

12345678910111213141516
  1. import { EventEmitter, TemplateRef } from '@angular/core';
  2. import { NzSafeAny } from 'ng-zorro-antd/core/types';
  3. import * as i0 from "@angular/core";
  4. export declare class NzSelectItemComponent {
  5. disabled: boolean;
  6. label: string | number | null | undefined;
  7. deletable: boolean;
  8. removeIcon: TemplateRef<NzSafeAny> | null;
  9. contentTemplateOutletContext: NzSafeAny | null;
  10. contentTemplateOutlet: string | TemplateRef<NzSafeAny> | null;
  11. readonly delete: EventEmitter<MouseEvent>;
  12. protected get templateOutletContext(): NzSafeAny;
  13. onDelete(e: MouseEvent): void;
  14. static ɵfac: i0.ɵɵFactoryDeclaration<NzSelectItemComponent, never>;
  15. static ɵcmp: i0.ɵɵComponentDeclaration<NzSelectItemComponent, "nz-select-item", never, { "disabled": { "alias": "disabled"; "required": false; }; "label": { "alias": "label"; "required": false; }; "deletable": { "alias": "deletable"; "required": false; }; "removeIcon": { "alias": "removeIcon"; "required": false; }; "contentTemplateOutletContext": { "alias": "contentTemplateOutletContext"; "required": false; }; "contentTemplateOutlet": { "alias": "contentTemplateOutlet"; "required": false; }; }, { "delete": "delete"; }, never, never, true, never>;
  16. }