survey-react-ui 2.5.7 → 2.5.9

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.
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * surveyjs - Survey JavaScript library v2.5.7
2
+ * surveyjs - Survey JavaScript library v2.5.9
3
3
  * Copyright (c) 2015-2026 Devsoft Baltic OÜ - http://surveyjs.io/
4
4
  * License: MIT (http://www.opensource.org/licenses/mit-license.php)
5
5
  */
@@ -1,20 +1,19 @@
1
1
  import * as React from "react";
2
2
  import { SurveyElementBase } from "../../reactquestion_element";
3
- import { IDialogOptions, PopupBaseViewModel } from "survey-core";
4
3
  interface IModalDescriptor {
5
4
  init: () => void;
6
5
  clean: () => void;
7
6
  }
8
7
  export declare class PopupModal extends SurveyElementBase<{}, any> {
9
- private model;
8
+ private modalManager;
10
9
  private isInitialized;
11
10
  private descriptor;
11
+ private createPopupModalManager;
12
12
  constructor(props: {});
13
13
  static modalDescriptors: Array<IModalDescriptor>;
14
14
  static addModalDescriptor(descriptor: IModalDescriptor): void;
15
15
  static removeModalDescriptor(descriptor: IModalDescriptor): void;
16
16
  protected renderElement(): React.JSX.Element | null;
17
- showDialog(dialogOptions: IDialogOptions, rootElement?: HTMLElement): PopupBaseViewModel;
18
17
  init: () => void;
19
18
  clean: () => void;
20
19
  componentDidMount(): void;