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.
21 lines (20 loc) • 876 B
TypeScript
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 {};