survey-creator-core 1.9.68 → 1.9.69
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 +2 -2
- package/survey-creator-core.css +8 -7
- package/survey-creator-core.d.ts +11 -3
- package/survey-creator-core.fontless.css +7 -6
- package/survey-creator-core.fontless.min.css +2 -2
- package/survey-creator-core.i18n.js +1 -1
- package/survey-creator-core.i18n.min.js +1 -1
- package/survey-creator-core.js +73 -40
- package/survey-creator-core.min.css +3 -3
- package/survey-creator-core.min.js +2 -2
package/survey-creator-core.d.ts
CHANGED
|
@@ -13,6 +13,7 @@ declare module "localization/english" {
|
|
|
13
13
|
deleteQuestion: string;
|
|
14
14
|
convertTo: string;
|
|
15
15
|
drag: string;
|
|
16
|
+
license: string;
|
|
16
17
|
};
|
|
17
18
|
qt: {
|
|
18
19
|
default: string;
|
|
@@ -598,6 +599,7 @@ declare module "localization/english" {
|
|
|
598
599
|
valuePropertyName: string;
|
|
599
600
|
searchEnabled: string;
|
|
600
601
|
hideSelectedItems: string;
|
|
602
|
+
closeOnSelect: string;
|
|
601
603
|
signatureWidth: string;
|
|
602
604
|
signatureHeight: string;
|
|
603
605
|
verticalAlign: string;
|
|
@@ -1093,6 +1095,7 @@ declare module "editorLocalization" {
|
|
|
1093
1095
|
deleteQuestion: string;
|
|
1094
1096
|
convertTo: string;
|
|
1095
1097
|
drag: string;
|
|
1098
|
+
license: string;
|
|
1096
1099
|
};
|
|
1097
1100
|
qt: {
|
|
1098
1101
|
default: string;
|
|
@@ -1678,6 +1681,7 @@ declare module "editorLocalization" {
|
|
|
1678
1681
|
valuePropertyName: string;
|
|
1679
1682
|
searchEnabled: string;
|
|
1680
1683
|
hideSelectedItems: string;
|
|
1684
|
+
closeOnSelect: string;
|
|
1681
1685
|
signatureWidth: string;
|
|
1682
1686
|
signatureHeight: string;
|
|
1683
1687
|
verticalAlign: string;
|
|
@@ -2462,13 +2466,17 @@ declare module "toolbox" {
|
|
|
2462
2466
|
}
|
|
2463
2467
|
}
|
|
2464
2468
|
declare module "questionconverter" {
|
|
2465
|
-
import
|
|
2469
|
+
import { Question } from "survey-core";
|
|
2466
2470
|
export class QuestionConverter {
|
|
2467
2471
|
static convertInfo: {};
|
|
2468
2472
|
static addConvertInfo(className: string, convertToClassName: string): void;
|
|
2469
2473
|
static getConvertToClasses(className: string, availableTypes?: Array<string>, includeCurrent?: boolean): Array<string>;
|
|
2470
|
-
static convertObject(obj:
|
|
2474
|
+
static convertObject(obj: Question, convertToClass: string, defaultJSON?: any): Question;
|
|
2471
2475
|
private static updateJSON;
|
|
2476
|
+
private static updateJSONFromQuestionDefaultSettings;
|
|
2477
|
+
private static updateJSONForMatrices;
|
|
2478
|
+
private static updateJSONForRating;
|
|
2479
|
+
private static updateJSONForPanels;
|
|
2472
2480
|
}
|
|
2473
2481
|
}
|
|
2474
2482
|
declare module "textWorker" {
|
|
@@ -6881,7 +6889,7 @@ declare module "creator-base" {
|
|
|
6881
6889
|
* @see onNotify
|
|
6882
6890
|
*/
|
|
6883
6891
|
notify(msg: string, type?: "info" | "error"): void;
|
|
6884
|
-
protected convertQuestion(obj:
|
|
6892
|
+
protected convertQuestion(obj: Question, className: string): Question;
|
|
6885
6893
|
private getDefaultElementJSON;
|
|
6886
6894
|
private singlePageJSON;
|
|
6887
6895
|
/**
|