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.
20 lines (19 loc) • 870 B
TypeScript
import { AfterViewInit, ElementRef } from "@angular/core";
import { Action } from "survey-core";
import { BaseAngular } from "../../base-angular";
import * as i0 from "@angular/core";
export declare class ListComponent extends BaseAngular implements AfterViewInit {
model: any;
listContainerElement: ElementRef<HTMLDivElement>;
trackItemBy: (_: any, item: Action) => string;
getModel(): any;
onGoToItems(event: Event): void;
onMouseDown(event: Event): void;
onKeyDown(event: Event): void;
onMouseMove(event: Event): void;
protected getPropertiesToUpdateSync(): string[];
ngAfterViewInit(): void;
ngOnDestroy(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<ListComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<ListComponent, "sv-ng-list, '[sv-ng-list]'", never, { "model": "model"; }, {}, never, never>;
}