survey-angular-ui
Version:
survey.js is a JavaScript Survey Library. It is a modern way to add a survey to your website. It uses JSON for survey metadata and results.
22 lines (21 loc) • 915 B
TypeScript
import { ElementRef, OnInit } from "@angular/core";
import { DropdownListModel } from "survey-core";
import { BaseAngular } from "../../base-angular";
import * as i0 from "@angular/core";
export declare class DropdownComponent extends BaseAngular implements OnInit {
model: any;
inputElementRef: ElementRef<HTMLDivElement>;
get dropdownModel(): DropdownListModel;
protected getModel(): any;
ngOnInit(): void;
click(event: any): void;
chevronPointerDown(event: any): void;
clear(event: any): void;
keyhandler(event: any): void;
blur(event: any): void;
focus(event: any): void;
inputChange(event: any): void;
updateInputDomElement(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownComponent, "sv-ng-dropdown, '[sv-ng-dropdown]'", never, { "model": "model"; }, {}, never, never>;
}