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.

21 lines (20 loc) 876 B
import * as React from "react"; import { QuestionMatrixDropdownRenderedRow, QuestionMatrixDropdownModelBase } from "survey-core"; import { SurveyElementBase } from "../../reactquestion_element"; interface IMatrixRowProps { model: QuestionMatrixDropdownRenderedRow; parentMatrix: QuestionMatrixDropdownModelBase; } export declare class MatrixRow extends SurveyElementBase<IMatrixRowProps, any> { private root; constructor(props: IMatrixRowProps); get model(): QuestionMatrixDropdownRenderedRow; get parentMatrix(): QuestionMatrixDropdownModelBase; protected getStateElement(): QuestionMatrixDropdownRenderedRow; protected onPointerDownHandler: (event: any) => void; componentDidMount(): void; componentWillUnmount(): void; shouldComponentUpdate(nextProps: any, nextState: any): boolean; render(): React.JSX.Element; } export {};