survey-react-ui 1.9.107 → 1.9.108
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.
- package/package.json +2 -2
- package/survey-react-ui.js +151 -28
- package/survey-react-ui.js.map +1 -1
- package/survey-react-ui.min.js +2 -2
- package/typings/react/element.d.ts +17 -0
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { IElement } from "survey-core";
|
|
3
|
+
import { SurveyElementBase } from "./reactquestion_element";
|
|
4
|
+
export declare class SurveyRowElement extends SurveyElementBase<any, any> {
|
|
5
|
+
private rootRef;
|
|
6
|
+
constructor(props: any);
|
|
7
|
+
protected getStateElement(): any;
|
|
8
|
+
private get element();
|
|
9
|
+
private get index();
|
|
10
|
+
private get row();
|
|
11
|
+
private get survey();
|
|
12
|
+
private get creator();
|
|
13
|
+
protected get css(): any;
|
|
14
|
+
shouldComponentUpdate(nextProps: any, nextState: any): boolean;
|
|
15
|
+
protected renderElement(): JSX.Element;
|
|
16
|
+
protected createElement(element: IElement, elementIndex?: number): JSX.Element;
|
|
17
|
+
}
|