survey-react-ui
Version:
A free MIT-licensed React UI component that renders dynamic, interactive JSON-based forms and surveys. You can use it to collect responses from users and send them to your own database.
20 lines (19 loc) • 730 B
TypeScript
import * as React from "react";
import { IElement } from "survey-core";
import { SurveyElementBase } from "./reactquestion_element";
export declare class SurveyRowElement extends SurveyElementBase<any, any> {
private rootRef;
constructor(props: any);
protected getStateElement(): any;
private get element();
private get index();
private get row();
private get survey();
private get creator();
protected get css(): any;
componentDidMount(): void;
componentWillUnmount(): void;
shouldComponentUpdate(nextProps: any, nextState: any): boolean;
protected renderElement(): React.JSX.Element;
protected createElement(element: IElement, elementIndex?: number): React.JSX.Element;
}