segmented-item.component.d.ts 1.0 KB

123456789101112131415161718
  1. import { ChangeDetectorRef, DestroyRef, ElementRef, OnInit } from '@angular/core';
  2. import * as i0 from "@angular/core";
  3. export declare class NzSegmentedItemComponent implements OnInit {
  4. private cdr;
  5. private elementRef;
  6. private destroyRef;
  7. nzIcon?: string;
  8. nzValue: string | number;
  9. nzDisabled?: boolean;
  10. protected isChecked: boolean;
  11. private readonly service;
  12. readonly parentDisabled: import("@angular/core").Signal<boolean>;
  13. constructor(cdr: ChangeDetectorRef, elementRef: ElementRef, destroyRef: DestroyRef);
  14. ngOnInit(): void;
  15. handleClick(): void;
  16. static ɵfac: i0.ɵɵFactoryDeclaration<NzSegmentedItemComponent, never>;
  17. static ɵcmp: i0.ɵɵComponentDeclaration<NzSegmentedItemComponent, "label[nz-segmented-item],label[nzSegmentedItem]", ["nzSegmentedItem"], { "nzIcon": { "alias": "nzIcon"; "required": false; }; "nzValue": { "alias": "nzValue"; "required": false; }; "nzDisabled": { "alias": "nzDisabled"; "required": false; }; }, {}, never, ["*"], true, never>;
  18. }