survey-creator-core 1.9.55 → 1.9.56
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 -6
- package/survey-creator-core.d.ts +8 -3
- package/survey-creator-core.i18n.js +15 -15
- package/survey-creator-core.i18n.min.js +2 -2
- package/survey-creator-core.js +136 -108
- package/survey-creator-core.min.css +4 -4
- 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.56
|
|
3
3
|
* Copyright (c) 2015-2022 Devsoft Baltic OÜ - https://surveyjs.io/
|
|
4
4
|
* License: https://surveyjs.io/Licenses#SurveyCreator
|
|
5
5
|
*/
|
|
@@ -1498,7 +1498,7 @@ export declare class CreatorBase extends Base implements ISurveyCreatorOptions,
|
|
|
1498
1498
|
/*
|
|
1499
1499
|
* Upload the files on a server
|
|
1500
1500
|
*/
|
|
1501
|
-
uploadFiles(files: any, uploadingCallback: (status: string, data: any) => any): void;
|
|
1501
|
+
uploadFiles(files: any, question: Question, uploadingCallback: (status: string, data: any) => any): void;
|
|
1502
1502
|
initKeyboardShortcuts(rootNode: any): void;
|
|
1503
1503
|
removeKeyboardShortcuts(rootNode: any): void;
|
|
1504
1504
|
protected onKeyDownHandler: (event: any) => void;
|
|
@@ -2544,6 +2544,8 @@ export declare class SurveyResultsModel extends Base {
|
|
|
2544
2544
|
resultData: any;
|
|
2545
2545
|
getLocString(name: string): string;
|
|
2546
2546
|
get surveyResultsText(): string;
|
|
2547
|
+
get surveyResultsTableText(): string;
|
|
2548
|
+
get surveyResultsJsonText(): string;
|
|
2547
2549
|
get resultsTitle(): string;
|
|
2548
2550
|
get resultsName(): string;
|
|
2549
2551
|
get resultsValue(): string;
|
|
@@ -2996,6 +2998,9 @@ export declare class SurveyConditionEditorItem extends ConditionEditorItem {
|
|
|
2996
2998
|
get isReady(): boolean;
|
|
2997
2999
|
toExpression(): string;
|
|
2998
3000
|
}
|
|
3001
|
+
export declare class SurveyCreatorModel extends CreatorBase {
|
|
3002
|
+
constructor(options: ICreatorOptions, options2?: ICreatorOptions);
|
|
3003
|
+
}
|
|
2999
3004
|
export declare class SurveyLogicUI extends SurveyLogic {
|
|
3000
3005
|
constructor(survey: SurveyModel, options?: ISurveyCreatorOptions);
|
|
3001
3006
|
survey: SurveyModel;
|
|
@@ -3279,7 +3284,6 @@ export declare class FastEntryEditorBase extends PropertyEditorSetupValue {
|
|
|
3279
3284
|
protected convertTextToItemValues(text: string): Array<ItemValue>;
|
|
3280
3285
|
get comment(): QuestionCommentModel;
|
|
3281
3286
|
protected getChoicesCount(): number;
|
|
3282
|
-
protected getPlaceHolder(): string;
|
|
3283
3287
|
protected get isValueUnique(): boolean;
|
|
3284
3288
|
protected getFirstUniqueValue(): boolean;
|
|
3285
3289
|
setComment(): void;
|
|
@@ -3664,6 +3668,7 @@ export declare function copyCssClasses(dest: any, source: any): void;
|
|
|
3664
3668
|
export declare function assignDefaultV2Classes(destination: any, questionType: string): void;
|
|
3665
3669
|
export declare function wrapTextByCurlyBraces(text: string): string;
|
|
3666
3670
|
export declare function capitalize(str: string): string;
|
|
3671
|
+
export declare function notShortCircuitAnd(args: any): boolean;
|
|
3667
3672
|
export declare function getLocString(strName: string, locale?: string): string;
|
|
3668
3673
|
export declare function updateLogicExpression(expression: string, varName: string, oldValue: any, newValue: any): string;
|
|
3669
3674
|
export declare function getLogicString(name: string): string;
|