UNPKG

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.

20 lines (19 loc) 730 B
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; }