survey-react-ui 1.9.132 → 1.9.134
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.
|
@@ -14,6 +14,7 @@ export declare class SurveyActionBar extends SurveyElementBase<IActionBarProps,
|
|
|
14
14
|
get model(): ActionContainer<Action>;
|
|
15
15
|
componentDidMount(): void;
|
|
16
16
|
componentWillUnmount(): void;
|
|
17
|
+
componentDidUpdate(prevProps: IActionBarProps, prevState: any): void;
|
|
17
18
|
protected getStateElement(): Base;
|
|
18
19
|
renderElement(): any;
|
|
19
20
|
renderItems(): JSX.Element[];
|
|
@@ -5,5 +5,7 @@ export declare class SurveyQuestionText extends SurveyQuestionUncontrolledElemen
|
|
|
5
5
|
constructor(props: any);
|
|
6
6
|
protected renderInput(): JSX.Element;
|
|
7
7
|
protected renderElement(): JSX.Element;
|
|
8
|
+
protected setValueCore(newValue: any): void;
|
|
9
|
+
protected getValueCore(): any;
|
|
8
10
|
private renderDataList;
|
|
9
11
|
}
|