survey-creator-react
Version:
A white-label drag-and-drop form builder for React 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 React app.
20 lines (19 loc) • 754 B
TypeScript
import * as React from "react";
import { QuestionSelectBase, Base } from "survey-core";
import { MatrixCellWrapperViewModel } from "survey-creator-core";
import { CreatorModelElement } from "./ModelElement";
interface MatrixCellAdornerComponentProps {
element: React.JSX.Element;
componentData: any;
question: QuestionSelectBase;
cell: any;
}
export declare class MatrixCellAdornerComponent extends CreatorModelElement<MatrixCellAdornerComponentProps, any> {
model: MatrixCellWrapperViewModel;
protected createModel(props: any): void;
protected getUpdatedModelProps(): string[];
componentDidUpdate(prevProps: any, prevState: any): void;
protected getStateElement(): Base;
render(): React.JSX.Element;
}
export {};