survey-creator-js 2.2.0 → 2.2.2
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-creator-js.mjs +28 -18
- package/fesm/survey-creator-js.mjs.map +1 -1
- package/package.json +4 -4
- package/survey-creator-js.js +34 -30
- package/survey-creator-js.js.map +1 -1
- package/survey-creator-js.min.js +1 -1
- package/survey-creator-js.min.js.LICENSE.txt +1 -1
- package/typings/survey-creator-react/src/TabbedMenu.d.ts +1 -1
- package/typings/survey-creator-react/src/toolbox/AdaptiveToolbox.d.ts +1 -1
|
@@ -6,12 +6,12 @@ export interface ITabbedMenuComponentProps {
|
|
|
6
6
|
model: TabbedMenuContainer;
|
|
7
7
|
}
|
|
8
8
|
export declare class TabbedMenuComponent extends SurveyElementBase<ITabbedMenuComponentProps, any> {
|
|
9
|
-
private manager;
|
|
10
9
|
private rootRef;
|
|
11
10
|
private get model();
|
|
12
11
|
protected getStateElement(): Base;
|
|
13
12
|
constructor(props: any);
|
|
14
13
|
renderElement(): React.JSX.Element;
|
|
14
|
+
componentDidUpdate(prevProps: any, prevState: any): void;
|
|
15
15
|
componentDidMount(): void;
|
|
16
16
|
componentWillUnmount(): void;
|
|
17
17
|
}
|
|
@@ -6,9 +6,9 @@ export interface ISurveyCreatorToolboxProps {
|
|
|
6
6
|
model: SurveyCreatorModel;
|
|
7
7
|
}
|
|
8
8
|
export declare class AdaptiveToolbox extends SurveyElementBase<ISurveyCreatorToolboxProps, any> {
|
|
9
|
-
private manager;
|
|
10
9
|
private rootRef;
|
|
11
10
|
constructor(props: ISurveyCreatorToolboxProps);
|
|
11
|
+
componentDidUpdate(prevProps: any, prevState: any): void;
|
|
12
12
|
componentDidMount(): void;
|
|
13
13
|
componentWillUnmount(): void;
|
|
14
14
|
get creator(): SurveyCreatorModel;
|