ng-zorro-antd-mobile
Version:
An enterprise-class mobile UI components based on Ant Design and Angular
23 lines (22 loc) • 1.27 kB
TypeScript
import { OnInit, AfterViewInit, OnChanges, SimpleChanges } from '@angular/core';
import { PickerComponent } from 'ng-zorro-antd-mobile/picker';
import { ControlValueAccessor } from '@angular/forms';
import * as i0 from "@angular/core";
export declare class PickerViewComponent extends PickerComponent implements OnInit, AfterViewInit, ControlValueAccessor, OnChanges {
options: any;
data: Array<any>;
cols: number;
cascade: boolean;
indicatorStyle: object;
itemStyle: object;
pickerViewInit(): void;
init(): void;
writeValue(value: any[]): void;
registerOnChange(fn: (_: any[]) => void): void;
registerOnTouched(fn: any[]): void;
ngOnInit(): void;
ngOnChanges(changes: SimpleChanges): void;
ngAfterViewInit(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<PickerViewComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<PickerViewComponent, "PickerView, nzm-picker-view", never, { "data": { "alias": "data"; "required": false; }; "cols": { "alias": "cols"; "required": false; }; "cascade": { "alias": "cascade"; "required": false; }; "indicatorStyle": { "alias": "indicatorStyle"; "required": false; }; "itemStyle": { "alias": "itemStyle"; "required": false; }; }, {}, never, never, false, never>;
}