survey-creator-core 1.9.13-beta.1 → 1.9.14-beta.1
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 +12 -13
- package/survey-creator-core.d.ts +7 -3
- package/survey-creator-core.i18n.js +1 -1
- package/survey-creator-core.i18n.min.js +1 -1
- package/survey-creator-core.js +56 -17
- package/survey-creator-core.min.css +5 -5
- 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.14-beta.1
|
|
3
3
|
* Copyright (c) 2015-2022 Devsoft Baltic OÜ - https://surveyjs.io/
|
|
4
4
|
* License: https://surveyjs.io/Licenses#SurveyCreator
|
|
5
5
|
*/
|
|
@@ -1345,7 +1345,7 @@ export declare class QuestionConverter {
|
|
|
1345
1345
|
static convertInfo: any;
|
|
1346
1346
|
static addConvertInfo(className: string, convertToClassName: string): void;
|
|
1347
1347
|
static getConvertToClasses(className: string, availableTypes?: any, includeCurrent?: boolean): Array<any>;
|
|
1348
|
-
static convertObject(obj: Question, convertToClass: string): Question;
|
|
1348
|
+
static convertObject(obj: Question, convertToClass: string, defaultJSON?: any): Question;
|
|
1349
1349
|
}
|
|
1350
1350
|
export declare class QuestionEmbeddedSurveyModel extends QuestionNonValue {
|
|
1351
1351
|
constructor(name: string);
|
|
@@ -1596,6 +1596,8 @@ export declare class StringEditorViewModelBase extends Base {
|
|
|
1596
1596
|
onInput(event: any): void;
|
|
1597
1597
|
done(event: any): void;
|
|
1598
1598
|
onKeyDown(event: any): boolean;
|
|
1599
|
+
justFocused: boolean;
|
|
1600
|
+
onMouseUp(event: any): boolean;
|
|
1599
1601
|
findProperty(): JsonObjectProperty;
|
|
1600
1602
|
get maxLength(): number;
|
|
1601
1603
|
placeholderValue: string;
|
|
@@ -2814,6 +2816,7 @@ export declare class PropertyGridEditorQuestionRestfull extends PropertyGridEdit
|
|
|
2814
2816
|
constructor();
|
|
2815
2817
|
fit(prop: JsonObjectProperty): boolean;
|
|
2816
2818
|
getJSON(obj: Base, prop: JsonObjectProperty, options: ISurveyCreatorOptions): any;
|
|
2819
|
+
onCreated(obj: Base, question: Question, prop: JsonObjectProperty, options: ISurveyCreatorOptions): void;
|
|
2817
2820
|
}
|
|
2818
2821
|
export declare class PropertyGridEditorQuestionSelectBase extends PropertyGridEditorQuestion {
|
|
2819
2822
|
constructor();
|
|
@@ -3146,6 +3149,7 @@ export declare var propertyGridCss: {
|
|
|
3146
3149
|
itemSvgIconId: string,
|
|
3147
3150
|
labelChecked: string,
|
|
3148
3151
|
itemControl: string,
|
|
3152
|
+
itemDecorator: string,
|
|
3149
3153
|
controlLabel: string,
|
|
3150
3154
|
materialDecorator: string,
|
|
3151
3155
|
other: string,
|
|
@@ -3179,6 +3183,7 @@ export declare var propertyGridCss: {
|
|
|
3179
3183
|
svgIconId: string,
|
|
3180
3184
|
label: string,
|
|
3181
3185
|
disabledLabel: string,
|
|
3186
|
+
itemDecorator: string,
|
|
3182
3187
|
materialDecorator: string,
|
|
3183
3188
|
},
|
|
3184
3189
|
text: {
|
|
@@ -3317,7 +3322,6 @@ export declare var propertyGridCss: {
|
|
|
3317
3322
|
},
|
|
3318
3323
|
};
|
|
3319
3324
|
export declare var json: {
|
|
3320
|
-
panelJSON: any,
|
|
3321
3325
|
name: string,
|
|
3322
3326
|
showInToolbox: boolean,
|
|
3323
3327
|
createElements: any,
|