UNPKG

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.

23 lines (22 loc) 864 B
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; private lazyRenderingTimeout; componentDidMount(): void; shouldComponentUpdate(nextProps: any, nextState: any): boolean; private stopLazyRendering; componentWillUnmount(): void; protected createElement(element: IElement, elementIndex?: number): React.JSX.Element; }