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.
20 lines (19 loc) • 850 B
TypeScript
import { QuestionRowModel } from "survey-core";
import { SurveyCreatorModel, RowViewModel } from "survey-creator-core";
import { CreatorModelComponent } from "./creator-model.component";
import * as i0 from "@angular/core";
export declare class CreatorRowComponent extends CreatorModelComponent<RowViewModel> {
componentData: {
creator: SurveyCreatorModel;
row: QuestionRowModel;
};
model: RowViewModel;
get row(): QuestionRowModel;
get creator(): SurveyCreatorModel;
protected getModel(): RowViewModel;
createModel(): void;
getPropertiesToTrack(): string[];
ngOnDestroy(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<CreatorRowComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<CreatorRowComponent, "svc-row", never, { "componentData": "componentData"; }, {}, never, never>;
}