UNPKG

ng-zorro-antd

Version:

An enterprise-class UI components based on Ant Design and Angular

43 lines (42 loc) 1.75 kB
/** * @license * Copyright Alibaba.com All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE */ import { FocusMonitor } from '@angular/cdk/a11y'; import { AfterViewInit, ChangeDetectorRef, OnDestroy, TemplateRef } from '@angular/core'; import { ControlValueAccessor } from '@angular/forms'; import { NzConfigService } from 'ng-zorro-antd/core/config'; import { BooleanInput, NzSizeDSType, OnChangeType, OnTouchedType } from 'ng-zorro-antd/core/types'; export declare class NzSwitchComponent implements ControlValueAccessor, AfterViewInit, OnDestroy { nzConfigService: NzConfigService; private cdr; private focusMonitor; static ngAcceptInputType_nzLoading: BooleanInput; static ngAcceptInputType_nzDisabled: BooleanInput; static ngAcceptInputType_nzControl: BooleanInput; isChecked: boolean; onChange: OnChangeType; onTouched: OnTouchedType; private switchElement; nzLoading: boolean; nzDisabled: boolean; nzControl: boolean; nzCheckedChildren: string | TemplateRef<void> | null; nzUnCheckedChildren: string | TemplateRef<void> | null; nzSize: NzSizeDSType; onHostClick(e: MouseEvent): void; updateValue(value: boolean): void; onKeyDown(e: KeyboardEvent): void; focus(): void; blur(): void; constructor(nzConfigService: NzConfigService, cdr: ChangeDetectorRef, focusMonitor: FocusMonitor); ngAfterViewInit(): void; ngOnDestroy(): void; writeValue(value: boolean): void; registerOnChange(fn: OnChangeType): void; registerOnTouched(fn: OnTouchedType): void; setDisabledState(disabled: boolean): void; }