survey-creator-core 1.9.42 → 1.9.43
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 +1 -1
- package/survey-creator-core.css +1 -1
- package/survey-creator-core.d.ts +5 -4
- package/survey-creator-core.i18n.js +1 -1
- package/survey-creator-core.i18n.min.js +1 -1
- package/survey-creator-core.js +31 -14
- package/survey-creator-core.min.css +1 -1
- package/survey-creator-core.min.js +2 -2
package/package.json
CHANGED
package/survey-creator-core.css
CHANGED
package/survey-creator-core.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* Type definition for Survey Creatorlibrary. Platform independent (core) v1.9.
|
|
2
|
+
* Type definition for Survey Creatorlibrary. Platform independent (core) v1.9.43
|
|
3
3
|
* Copyright (c) 2015-2022 Devsoft Baltic OÜ - https://surveyjs.io/
|
|
4
4
|
* License: https://surveyjs.io/Licenses#SurveyCreator
|
|
5
5
|
*/
|
|
@@ -223,7 +223,7 @@ export interface ICreatorOptions {
|
|
|
223
223
|
/*
|
|
224
224
|
* Limits the number of visible choices. Users can click "Show more" to view hidden choices.
|
|
225
225
|
*
|
|
226
|
-
* Set this property to -1 if you do not want any choices
|
|
226
|
+
* Set this property to -1 if you do not want to hide any choices.
|
|
227
227
|
*
|
|
228
228
|
* Default value: 10
|
|
229
229
|
*/
|
|
@@ -665,6 +665,7 @@ export declare class CreatorBase extends Base implements ISurveyCreatorOptions,
|
|
|
665
665
|
* - "survey-tester" - raised from page selector list in "Preview" tab
|
|
666
666
|
* - "survey-tester-selected" - raised on setting page selector title in "Preview" tab
|
|
667
667
|
* - "survey-translation" - raised from translation tab
|
|
668
|
+
* - "property-editor" - raised on showing question property editor, for example "gotoName". It is raised for all elements (questions) in the dropdown.
|
|
668
669
|
* - "property-grid" - raised from showing object selector for property grid in "Designer" tab.
|
|
669
670
|
* - "property-grid-title" - raised on rendering selected object title in property grid in "Designer" tab.
|
|
670
671
|
*/
|
|
@@ -1063,7 +1064,7 @@ export declare class CreatorBase extends Base implements ISurveyCreatorOptions,
|
|
|
1063
1064
|
/*
|
|
1064
1065
|
* Limits the number of visible choices. Users can click "Show more" to view hidden choices.
|
|
1065
1066
|
*
|
|
1066
|
-
* Set this property to -1 if you do not want any choices
|
|
1067
|
+
* Set this property to -1 if you do not want to hide any choices.
|
|
1067
1068
|
*
|
|
1068
1069
|
* Default value: 10
|
|
1069
1070
|
*/
|
|
@@ -3064,7 +3065,7 @@ export declare class UndoRedoAction implements IUndoRedoAction {
|
|
|
3064
3065
|
constructor(_propertyName: string, _oldValue: any, _newValue: any, _sender: Base);
|
|
3065
3066
|
apply(): void;
|
|
3066
3067
|
rollback(): void;
|
|
3067
|
-
getChanges(): IUndoRedoChange;
|
|
3068
|
+
getChanges(isUndo?: boolean): IUndoRedoChange;
|
|
3068
3069
|
tryMerge(sender: Base, propertyName: string, newValue: any): boolean;
|
|
3069
3070
|
}
|
|
3070
3071
|
export declare class UndoRedoArrayAction implements IUndoRedoAction {
|