UNPKG

stimulsoft-forms

Version:
27 lines (26 loc) 1.54 kB
import { EventEmitter, OnDestroy, OnInit } from "@angular/core"; import { Subscription } from "rxjs"; import { StiModelService } from "../../services/model.service"; import { StiDropdownService } from "./sti-dropdown-service"; import * as i0 from "@angular/core"; export declare class StiDropdownComponent implements OnInit, OnDestroy { dropdownService: StiDropdownService; model: StiModelService; id: any; options: any[]; value: string | number; disabled: boolean; optionLabel: string; optionValue: string; isMinVersion: boolean; tooltip: any; valueChange: EventEmitter<any>; valueChangedSubscription: Subscription; constructor(dropdownService: StiDropdownService, model: StiModelService); ngOnDestroy(): void; ngOnInit(): void; getLabel(): any; showList(event: any): void; static ɵfac: i0.ɵɵFactoryDeclaration<StiDropdownComponent, never>; static ɵcmp: i0.ɵɵComponentDeclaration<StiDropdownComponent, "sti-dropdown-component", never, { "id": { "alias": "id"; "required": false; }; "options": { "alias": "options"; "required": false; }; "value": { "alias": "value"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "optionLabel": { "alias": "optionLabel"; "required": false; }; "optionValue": { "alias": "optionValue"; "required": false; }; "isMinVersion": { "alias": "isMinVersion"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, false, never>; }