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.
- package/fesm/survey-react-ui.mjs +17 -30
- package/fesm/survey-react-ui.mjs.map +1 -1
- package/package.json +2 -2
- package/survey-react-ui.js +18 -30
- package/survey-react-ui.js.map +1 -1
- package/survey-react-ui.min.js +1 -1
- package/survey-react-ui.min.js.LICENSE.txt +1 -1
- package/typings/src/components/popup/popup-modal.d.ts +2 -3
|
@@ -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
|
|
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;
|