survey-creator-react 1.9.127 → 1.9.129
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 +4 -4
- package/survey-creator-react.js +4 -8
- package/survey-creator-react.js.map +1 -1
- package/survey-creator-react.min.js +2 -2
- package/typings/LogoImage.d.ts +2 -2
- package/typings/QuestionEditorContent.d.ts +2 -2
- package/typings/SurveyCreator.d.ts +3 -3
- package/typings/adorners/Page.d.ts +2 -2
- package/typings/tabs/Designer.d.ts +2 -2
- package/typings/toolbox/Toolbox.d.ts +3 -3
- package/typings/toolbox/ToolboxItem.d.ts +4 -4
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { Base } from "survey-core";
|
|
3
3
|
import { SurveyElementBase } from "survey-react-ui";
|
|
4
|
-
import {
|
|
4
|
+
import { SurveyCreatorModel } from "survey-creator-core";
|
|
5
5
|
export interface ISurveyCreatorToolboxProps {
|
|
6
|
-
model:
|
|
6
|
+
model: SurveyCreatorModel;
|
|
7
7
|
}
|
|
8
8
|
export declare class Toolbox extends SurveyElementBase<ISurveyCreatorToolboxProps, any> {
|
|
9
|
-
get creator():
|
|
9
|
+
get creator(): SurveyCreatorModel;
|
|
10
10
|
get toolbox(): import("survey-creator-core").QuestionToolbox;
|
|
11
11
|
protected getStateElement(): Base;
|
|
12
12
|
render(): JSX.Element;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import {
|
|
2
|
+
import { SurveyCreatorModel, IQuestionToolboxItem } from "survey-creator-core";
|
|
3
3
|
import { ToolboxToolViewModel } from "survey-creator-core";
|
|
4
4
|
import { Base } from "survey-core";
|
|
5
5
|
import { CreatorModelElement } from "../ModelElement";
|
|
6
6
|
export interface ISurveyCreatorToolboxItemProps {
|
|
7
7
|
item: IQuestionToolboxItem;
|
|
8
|
-
creator:
|
|
8
|
+
creator: SurveyCreatorModel;
|
|
9
9
|
isCompact: boolean;
|
|
10
10
|
}
|
|
11
11
|
export declare class SurveyCreatorToolboxTool extends CreatorModelElement<ISurveyCreatorToolboxItemProps, any> {
|
|
@@ -14,7 +14,7 @@ export declare class SurveyCreatorToolboxTool extends CreatorModelElement<ISurve
|
|
|
14
14
|
protected createModel(): void;
|
|
15
15
|
protected getUpdatedModelProps(): string[];
|
|
16
16
|
get item(): IQuestionToolboxItem;
|
|
17
|
-
get creator():
|
|
17
|
+
get creator(): SurveyCreatorModel;
|
|
18
18
|
get isCompact(): boolean;
|
|
19
19
|
protected getStateElement(): Base;
|
|
20
20
|
render(): JSX.Element;
|
|
@@ -25,7 +25,7 @@ export declare class SurveyCreatorToolboxItem extends CreatorModelElement<ISurve
|
|
|
25
25
|
protected createModel(): void;
|
|
26
26
|
protected getUpdatedModelProps(): string[];
|
|
27
27
|
get item(): IQuestionToolboxItem;
|
|
28
|
-
get creator():
|
|
28
|
+
get creator(): SurveyCreatorModel;
|
|
29
29
|
protected getStateElement(): Base;
|
|
30
30
|
render(): JSX.Element;
|
|
31
31
|
}
|