survey-creator-angular
Version:
A white-label drag-and-drop form builder for Angular that lets you design complex, interactive forms and surveys without writing code. It generates JSON schemas used by the SurveyJS Form Library to render dynamic forms in your Angular app.
25 lines (24 loc) • 1.17 kB
TypeScript
import { TemplateRef } from "@angular/core";
import { QuestionSelectBase } from "survey-core";
import { MatrixCellWrapperViewModel } from "survey-creator-core";
import { CreatorModelComponent } from "../creator-model.component";
import * as i0 from "@angular/core";
export declare class MatrixCellComponent extends CreatorModelComponent<MatrixCellWrapperViewModel> {
componentName: string;
componentData: any;
contentTempl: TemplateRef<any>;
adorner: MatrixCellWrapperViewModel;
private get creator();
get question(): QuestionSelectBase;
get isSupportCellEditor(): boolean;
get column(): any;
get element(): any;
selectContext(event: MouseEvent): void;
get row(): any;
protected createModel(): void;
protected getPropertiesToTrack(): string[];
protected getModel(): MatrixCellWrapperViewModel;
ngOnDestroy(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<MatrixCellComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<MatrixCellComponent, "svc-matrix-cell", never, { "componentName": "componentName"; "componentData": "componentData"; "contentTempl": "contentTempl"; }, {}, never, never>;
}