UNPKG

stimulsoft-forms

Version:
30 lines (29 loc) 1.45 kB
import { ChangeDetectorRef, EventEmitter, OnDestroy, OnInit } from "@angular/core"; import { StiModelService } from "../../../../services/model.service"; import { Subscription } from "rxjs"; import * as i0 from "@angular/core"; export declare class StiDropdownEditorComponent implements OnInit, OnDestroy { model: StiModelService; private cdr; value: any; options: any[]; optionLabel?: any; optionValue?: any; editable?: boolean; valueChange: EventEmitter<any>; isInitialized: boolean; hideDropdownSubscription: Subscription; showDropdownList: boolean; constructor(model: StiModelService, cdr: ChangeDetectorRef); ngOnDestroy(): void; get currentPreviewIndex(): number; get label(): any; get valueName(): any; blur(): void; setContent(innerText: any): void; getLabel(): any; selectItem(index: any): void; ngOnInit(): void; static ɵfac: i0.ɵɵFactoryDeclaration<StiDropdownEditorComponent, never>; static ɵcmp: i0.ɵɵComponentDeclaration<StiDropdownEditorComponent, "sti-dropdown-editor", never, { "value": { "alias": "value"; "required": false; }; "options": { "alias": "options"; "required": false; }; "optionLabel": { "alias": "optionLabel"; "required": false; }; "optionValue": { "alias": "optionValue"; "required": false; }; "editable": { "alias": "editable"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, false, never>; }