survey-react-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.
22 lines (21 loc) • 830 B
TypeScript
import * as React from "react";
import { IElement, Base } from "survey-core";
import { SurveyElementBase } from "./reactquestion_element";
export declare class SurveyRow extends SurveyElementBase<any, any> {
private rootRef;
constructor(props: any);
private recalculateCss;
protected getStateElement(): Base;
private get row();
private get survey();
private get creator();
protected get css(): any;
protected canRender(): boolean;
protected renderElementContent(): React.JSX.Element;
protected renderElement(): React.JSX.Element;
componentDidMount(): void;
shouldComponentUpdate(nextProps: any, nextState: any): boolean;
private stopLazyRendering;
componentWillUnmount(): void;
protected createElement(element: IElement, elementIndex?: number): React.JSX.Element;
}