ng-zorro-antd
Version:
An enterprise-class UI components based on Ant Design and Angular
49 lines (48 loc) • 2.45 kB
TypeScript
/**
* 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 { Direction, Directionality } from '@angular/cdk/bidi';
import { AfterViewInit, ChangeDetectorRef, ElementRef, NgZone, OnDestroy, OnInit, TemplateRef } from '@angular/core';
import { ControlValueAccessor } from '@angular/forms';
import { NzConfigKey, NzConfigService } from 'ng-zorro-antd/core/config';
import { BooleanInput, NzSizeDSType, OnChangeType, OnTouchedType } from 'ng-zorro-antd/core/types';
import * as i0 from "@angular/core";
export declare class NzSwitchComponent implements ControlValueAccessor, AfterViewInit, OnDestroy, OnInit {
nzConfigService: NzConfigService;
private host;
private ngZone;
private cdr;
private focusMonitor;
private directionality;
readonly _nzModuleName: NzConfigKey;
static ngAcceptInputType_nzLoading: BooleanInput;
static ngAcceptInputType_nzDisabled: BooleanInput;
static ngAcceptInputType_nzControl: BooleanInput;
isChecked: boolean;
onChange: OnChangeType;
onTouched: OnTouchedType;
switchElement: ElementRef<HTMLElement>;
nzLoading: boolean;
nzDisabled: boolean;
nzControl: boolean;
nzCheckedChildren: string | TemplateRef<void> | null;
nzUnCheckedChildren: string | TemplateRef<void> | null;
nzSize: NzSizeDSType;
dir: Direction;
private destroy$;
updateValue(value: boolean): void;
focus(): void;
blur(): void;
constructor(nzConfigService: NzConfigService, host: ElementRef<HTMLElement>, ngZone: NgZone, cdr: ChangeDetectorRef, focusMonitor: FocusMonitor, directionality: Directionality);
ngOnInit(): void;
ngAfterViewInit(): void;
ngOnDestroy(): void;
writeValue(value: boolean): void;
registerOnChange(fn: OnChangeType): void;
registerOnTouched(fn: OnTouchedType): void;
setDisabledState(disabled: boolean): void;
static ɵfac: i0.ɵɵFactoryDeclaration<NzSwitchComponent, [null, null, null, null, null, { optional: true; }]>;
static ɵcmp: i0.ɵɵComponentDeclaration<NzSwitchComponent, "nz-switch", ["nzSwitch"], { "nzLoading": "nzLoading"; "nzDisabled": "nzDisabled"; "nzControl": "nzControl"; "nzCheckedChildren": "nzCheckedChildren"; "nzUnCheckedChildren": "nzUnCheckedChildren"; "nzSize": "nzSize"; }, {}, never, never>;
}