survey-creator-core 1.9.15 → 1.9.19
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/README.md +1 -1
- package/package.json +1 -1
- package/survey-creator-core.css +86 -64
- package/survey-creator-core.d.ts +6 -1
- package/survey-creator-core.i18n.js +2712 -22
- package/survey-creator-core.i18n.min.js +2 -2
- package/survey-creator-core.js +63 -24
- package/survey-creator-core.min.css +8 -8
- package/survey-creator-core.min.js +2 -2
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.19
|
|
3
3
|
* Copyright (c) 2015-2022 Devsoft Baltic OÜ - https://surveyjs.io/
|
|
4
4
|
* License: https://surveyjs.io/Licenses#SurveyCreator
|
|
5
5
|
*/
|
|
@@ -897,6 +897,8 @@ export declare class CreatorBase extends Base implements ISurveyCreatorOptions,
|
|
|
897
897
|
existingPages: any;
|
|
898
898
|
protected initSurveyWithJSON(json: any, clearState: boolean): void;
|
|
899
899
|
protected initDragDrop(): void;
|
|
900
|
+
onBeforeDrop: Event<() => any, any>;
|
|
901
|
+
onAfterDrop: Event<() => any, any>;
|
|
900
902
|
updateElementsOnLocaleChanged(obj: Base, propertyName: string): void;
|
|
901
903
|
updateConditionsOnQuestionNameChanged(obj: Base, propertyName: string, oldValue: any): void;
|
|
902
904
|
updatePagesController(sender: Base, name: string): void;
|
|
@@ -1097,6 +1099,7 @@ export declare class DesignTimeSurveyModel extends SurveyModel {
|
|
|
1097
1099
|
creator: CreatorBase;
|
|
1098
1100
|
isPopupEditorContent: boolean;
|
|
1099
1101
|
getElementWrapperComponentName(element: any, reason?: string): string;
|
|
1102
|
+
getQuestionContentWrapperComponentName(element: any, reason?: string): string;
|
|
1100
1103
|
getElementWrapperComponentData(element: any, reason?: string): any;
|
|
1101
1104
|
getRowWrapperComponentName(row: QuestionRowModel): string;
|
|
1102
1105
|
getRowWrapperComponentData(row: QuestionRowModel): any;
|
|
@@ -2934,9 +2937,11 @@ export declare function wrapTextByCurlyBraces(text: string): string;
|
|
|
2934
2937
|
export declare function getLogicString(name: string): any;
|
|
2935
2938
|
export declare function findAction(actions: any, id: string): IAction;
|
|
2936
2939
|
export declare function updateMatrixLogicExpandAction(question: QuestionMatrixDynamicModel, actions: any, row: MatrixDynamicRowModel): void;
|
|
2940
|
+
export declare function updateMatrixLogicRemoveAction(question: QuestionMatrixDynamicModel, actions: any, row: MatrixDynamicRowModel): void;
|
|
2937
2941
|
export declare function updateMatrixRemoveAction(question: QuestionMatrixDynamicModel, actions: any, row: MatrixDynamicRowModel): void;
|
|
2938
2942
|
export declare function setSurveyJSONForPropertyGrid(json: any, updateOnTyping?: boolean, titleLocationLeft?: boolean): void;
|
|
2939
2943
|
export declare function getElementWrapperComponentName(element: any, reason: string, isPopupEditorContent: boolean): string;
|
|
2944
|
+
export declare function getQuestionContentWrapperComponentName(element: any): string;
|
|
2940
2945
|
export declare function getElementWrapperComponentData(element: any, reason: string, creator: CreatorBase): any;
|
|
2941
2946
|
export declare function getItemValueWrapperComponentName(item: ItemValue, question: QuestionSelectBase): string;
|
|
2942
2947
|
export declare function getItemValueWrapperComponentData(item: ItemValue, question: QuestionSelectBase, creator: CreatorBase): any;
|