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.
19 lines (18 loc) • 976 B
TypeScript
import { ChangeDetectorRef } from "@angular/core";
import { BaseAngular } from "../../base-angular";
import { PopupBaseViewModel } from "survey-core";
import * as i0 from "@angular/core";
export declare class PopupBaseContainerComponent<T extends PopupBaseViewModel = PopupBaseViewModel> extends BaseAngular<T> {
model: T;
constructor(changeDetectorRef: ChangeDetectorRef);
protected getModel(): T;
get applyButtonText(): string | null;
apply(): void;
protected getPropertiesToUpdateSync(): string[];
protected getShouldReattachChangeDetector(): boolean;
protected onModelChanged(): void;
protected afterUpdate(isSync?: boolean): void;
clickInside(event: any): void;
static ɵfac: i0.ɵɵFactoryDeclaration<PopupBaseContainerComponent<any>, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<PopupBaseContainerComponent<any>, "sv-ng-popup-container, '[sv-ng-popup-container]'", never, { "model": "model"; }, {}, never, never>;
}