survey-react-ui 1.9.36 → 1.9.39

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.36",
3
+ "version": "1.9.39",
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.36
2
+ * Type definition for Survey JavaScript library for React (without core) v1.9.39
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
  */
@@ -650,6 +650,8 @@ export declare class SurveyQuestionMultipleText extends SurveyQuestionElementBas
650
650
  }
651
651
  export declare class SurveyQuestionOptionItem extends ReactSurveyElement {
652
652
  constructor(props: any);
653
+ componentDidUpdate(prevProps: any, prevState: any): void;
654
+ componentWillUnmount(): void;
653
655
  protected getStateElement(): Base;
654
656
  protected canRender(): boolean;
655
657
  protected renderElement(): JSX.Element;
@@ -833,7 +835,6 @@ export declare class SurveyQuestionPanelDynamicItem extends SurveyPanel {
833
835
  constructor(props: any);
834
836
  protected getSurvey(): SurveyModel;
835
837
  protected getCss(): any;
836
- handleOnPanelRemoveClick(event: any): void;
837
838
  render(): JSX.Element;
838
839
  protected renderButton(): JSX.Element;
839
840
  }
@@ -851,6 +852,11 @@ export declare class SurveyQuestionPanelDynamicProgressText extends SurveyQuesti
851
852
  constructor(props: any);
852
853
  protected renderElement(): JSX.Element;
853
854
  }
855
+ export declare class SurveyQuestionPanelDynamicRemoveButton extends SurveyQuestionPanelDynamicAction {
856
+ constructor(props: any);
857
+ protected handleClick: (event: any) => void;
858
+ protected renderElement(): JSX.Element;
859
+ }
854
860
  export declare class SurveyQuestionText extends SurveyQuestionUncontrolledElement<QuestionTextModel> {
855
861
  constructor(props: any);
856
862
  _isWaitingForEnter: boolean;