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) • 904 B
TypeScript
import { ChangeDetectorRef, ElementRef, ViewContainerRef } from "@angular/core";
import { BaseAngular } from "../../base-angular";
import { PopupBaseViewModel, PopupModel } from "survey-core";
import * as i0 from "@angular/core";
export declare class PopupComponent extends BaseAngular<PopupModel> {
popupModel: PopupModel;
containerRef: ElementRef<HTMLDivElement>;
model: PopupBaseViewModel;
protected getModel(): PopupModel;
constructor(viewContainerRef: ViewContainerRef, changeDetectorRef: ChangeDetectorRef);
protected onModelChanged(): void;
private setContainerElement;
ngAfterViewInit(): void;
ngOnInit(): void;
ngOnDestroy(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<PopupComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<PopupComponent, "sv-ng-popup, '[sv-ng-popup]'", never, { "popupModel": "popupModel"; }, {}, never, never>;
}