survey-react-ui 1.9.101 → 1.9.102
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -11,6 +11,6 @@ export declare class MatrixRow extends SurveyElementBase<IMatrixRowProps, any> {
|
|
|
11
11
|
get parentMatrix(): QuestionMatrixDropdownModelBase;
|
|
12
12
|
protected getStateElement(): QuestionMatrixDropdownRenderedRow;
|
|
13
13
|
protected onPointerDownHandler: (event: any) => void;
|
|
14
|
-
render(): JSX.Element;
|
|
14
|
+
render(): JSX.Element | null;
|
|
15
15
|
}
|
|
16
16
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
import * as React from "react";
|
|
2
2
|
import { SurveyQuestionElementBase } from "./reactquestion_element";
|
|
3
3
|
import { SurveyQuestionAndErrorsCell } from "./reactquestion";
|
|
4
4
|
import { QuestionMatrixDropdownModelBase, QuestionMatrixDropdownRenderedRow, QuestionMatrixDropdownRenderedCell, Question } from "survey-core";
|
|
@@ -32,3 +32,13 @@ export declare class SurveyQuestionMatrixDropdownCell extends SurveyQuestionAndE
|
|
|
32
32
|
private renderCellCheckboxButton;
|
|
33
33
|
private renderCellRadiogroupButton;
|
|
34
34
|
}
|
|
35
|
+
export declare class SurveyQuestionMatrixDropdownErrorCell extends React.Component<any, any> {
|
|
36
|
+
constructor(props: any);
|
|
37
|
+
private get cell();
|
|
38
|
+
private update;
|
|
39
|
+
private registerCallback;
|
|
40
|
+
private unRegisterCallback;
|
|
41
|
+
componentDidUpdate(prevProps: Readonly<any>): void;
|
|
42
|
+
componentWillUnmount(): void;
|
|
43
|
+
render(): JSX.Element;
|
|
44
|
+
}
|