survey-react-ui 1.9.32 → 1.9.35

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "survey-react-ui",
3
- "version": "1.9.32",
3
+ "version": "1.9.35",
4
4
  "description": "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.",
5
5
  "keywords": [
6
6
  "Survey",
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Type definition for Survey JavaScript library for React (without core) v1.9.32
2
+ * Type definition for Survey JavaScript library for React (without core) v1.9.35
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;