survey-creator-react 1.12.21 → 2.0.0-rc.0
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/index.html +1 -1
- package/package.json +4 -4
- package/survey-creator-react.js +99 -49
- package/survey-creator-react.js.map +1 -1
- package/survey-creator-react.min.js +1 -1
- package/survey-creator-react.min.js.LICENSE.txt +1 -1
- package/typings/Navigation.d.ts +0 -1
- package/typings/events.d.ts +0 -1
- package/typings/toolbox/ToolboxItem.d.ts +3 -0
package/typings/Navigation.d.ts
CHANGED
package/typings/events.d.ts
CHANGED
|
@@ -18,6 +18,7 @@ export interface ISurveyCreatorToolboxToolProps {
|
|
|
18
18
|
}
|
|
19
19
|
export declare class SurveyCreatorToolboxTool extends CreatorModelElement<ISurveyCreatorToolboxToolProps, any> {
|
|
20
20
|
model: ToolboxToolViewModel;
|
|
21
|
+
rootRef: React.RefObject<HTMLDivElement>;
|
|
21
22
|
constructor(props: any);
|
|
22
23
|
protected createModel(props: any): void;
|
|
23
24
|
protected getUpdatedModelProps(): string[];
|
|
@@ -26,6 +27,8 @@ export declare class SurveyCreatorToolboxTool extends CreatorModelElement<ISurve
|
|
|
26
27
|
get isCompact(): boolean;
|
|
27
28
|
protected getStateElement(): Base;
|
|
28
29
|
render(): React.JSX.Element;
|
|
30
|
+
componentWillUnmount(): void;
|
|
31
|
+
componentDidMount(): void;
|
|
29
32
|
}
|
|
30
33
|
export declare class SurveyCreatorToolboxItem extends CreatorModelElement<ISurveyCreatorToolboxItemProps, any> {
|
|
31
34
|
constructor(props: any);
|