survey-react-ui 1.9.32 → 1.9.33
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 +1 -1
- package/survey-react-ui.d.ts +5 -1
- package/survey-react-ui.js +49 -12
- package/survey-react-ui.min.js +2 -2
package/package.json
CHANGED
package/survey-react-ui.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* Type definition for Survey JavaScript library for React (without core) v1.9.
|
|
2
|
+
* Type definition for Survey JavaScript library for React (without core) v1.9.33
|
|
3
3
|
* Copyright (c) 2015-2022 Devsoft Baltic OÜ - https://surveyjs.io/
|
|
4
4
|
* License: MIT (http://www.opensource.org/licenses/mit-license.php)
|
|
5
5
|
*/
|
|
@@ -146,7 +146,9 @@ export declare class SurveyLocStringViewer extends React.Component<any, any> {
|
|
|
146
146
|
componentDidMount(): void;
|
|
147
147
|
componentWillUnmount(): void;
|
|
148
148
|
componentDidUpdate(prevProps: any, prevState: any): void;
|
|
149
|
+
isRendering: boolean;
|
|
149
150
|
render(): JSX.Element;
|
|
151
|
+
protected renderString(): JSX.Element;
|
|
150
152
|
}
|
|
151
153
|
export declare class SurveyNavigationBase extends React.Component<any, any> {
|
|
152
154
|
constructor(props: any);
|
|
@@ -212,6 +214,7 @@ export declare class Popup extends SurveyElementBase<IPopupProps, any> {
|
|
|
212
214
|
get model(): any;
|
|
213
215
|
protected getStateElement(): PopupModel;
|
|
214
216
|
componentDidMount(): void;
|
|
217
|
+
componentDidUpdate(prevProps: any, prevState: any): void;
|
|
215
218
|
componentWillUnmount(): void;
|
|
216
219
|
shouldComponentUpdate(nextProps: IPopupProps, nextState: any): boolean;
|
|
217
220
|
render(): JSX.Element;
|
|
@@ -875,6 +878,7 @@ export declare class SurveyQuestionRatingDropdown extends SurveyQuestionDropdown
|
|
|
875
878
|
export declare class SurveyQuestionDropdownSelect extends SurveyQuestionDropdown {
|
|
876
879
|
constructor(props: any);
|
|
877
880
|
protected renderSelect(cssClasses: any): JSX.Element;
|
|
881
|
+
createClearButton(): JSX.Element;
|
|
878
882
|
}
|
|
879
883
|
export declare function property(options?: any): (target: any, key: string) => void;
|
|
880
884
|
export declare function propertyArray(options?: IArrayPropertyDecoratorOptions): (target: any, key: string) => void;
|