survey-creator-core 1.9.92 → 1.9.93
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/fonts.fontless.css +1 -1
- package/fonts.fontless.min.css +1 -1
- package/package.json +2 -2
- package/survey-creator-core.css +2 -2
- package/survey-creator-core.fontless.css +1 -1
- package/survey-creator-core.fontless.min.css +1 -1
- package/survey-creator-core.i18n.js +1 -1
- package/survey-creator-core.i18n.min.js +1 -1
- package/survey-creator-core.js +111 -29
- package/survey-creator-core.js.map +1 -1
- package/survey-creator-core.min.css +2 -2
- package/survey-creator-core.min.js +3 -3
- package/typings/components/tabs/theme-plugin.d.ts +1 -0
- package/typings/components/tabs/theme.d.ts +1 -0
- package/typings/creator-base.d.ts +2 -0
- package/typings/editorLocalization.d.ts +1 -1
- package/typings/localization/english.d.ts +1 -1
- package/typings/plugins/undo-redo/undo-redo-manager.d.ts +1 -1
- package/typings/property-grid/condition-survey.d.ts +1 -1
- package/typings/questionconverter.d.ts +1 -0
|
@@ -35,6 +35,7 @@ export declare class ThemeSurveyTabViewModel extends Base {
|
|
|
35
35
|
get isPageToolbarVisible(): boolean;
|
|
36
36
|
get themeEditorSurvey(): SurveyModel;
|
|
37
37
|
get currentTheme(): ITheme;
|
|
38
|
+
applySelectedTheme(saveChanges?: boolean): void;
|
|
38
39
|
constructor(surveyProvider: CreatorBase, startTheme?: any);
|
|
39
40
|
private loadTheme;
|
|
40
41
|
updateSimulatorSurvey(json: any, theme: any): void;
|
|
@@ -645,6 +645,8 @@ export declare class CreatorBase extends Base implements ISurveyCreatorOptions,
|
|
|
645
645
|
* - `sender` - the survey creator object that fires the event
|
|
646
646
|
* - `options.files` - the Javascript File objects array
|
|
647
647
|
* - `options.callback(status, imageLink)` - called on upload complete
|
|
648
|
+
*
|
|
649
|
+
* [View Demo](https://surveyjs.io/survey-creator/examples/file-upload/ (linkStyle))
|
|
648
650
|
* @see uploadFiles
|
|
649
651
|
*/
|
|
650
652
|
onUploadFile: CreatorEvent;
|
|
@@ -149,7 +149,7 @@ export declare var defaultStrings: {
|
|
|
149
149
|
propertyEditorError: string;
|
|
150
150
|
saveError: string;
|
|
151
151
|
translationPropertyGridTitle: string;
|
|
152
|
-
|
|
152
|
+
themePropertyGridTitle: string;
|
|
153
153
|
translationLanguages: string;
|
|
154
154
|
translationAddLanguage: string;
|
|
155
155
|
translationShowAllStrings: string;
|
|
@@ -120,7 +120,7 @@ export declare var enStrings: {
|
|
|
120
120
|
propertyEditorError: string;
|
|
121
121
|
saveError: string;
|
|
122
122
|
translationPropertyGridTitle: string;
|
|
123
|
-
|
|
123
|
+
themePropertyGridTitle: string;
|
|
124
124
|
translationLanguages: string;
|
|
125
125
|
translationAddLanguage: string;
|
|
126
126
|
translationShowAllStrings: string;
|
|
@@ -34,7 +34,7 @@ export declare class UndoRedoManager {
|
|
|
34
34
|
redo(): void;
|
|
35
35
|
suspend(): void;
|
|
36
36
|
resume(): void;
|
|
37
|
-
changesFinishedCallback: (changes:
|
|
37
|
+
changesFinishedCallback: (changes: UndoRedoAction[], isUndo: boolean) => void;
|
|
38
38
|
}
|
|
39
39
|
export declare class Transaction {
|
|
40
40
|
private _name;
|
|
@@ -102,7 +102,7 @@ export declare class ConditionEditor extends PropertyEditorSetupValue {
|
|
|
102
102
|
private canShowQuestionValue;
|
|
103
103
|
private getConditionQuestion;
|
|
104
104
|
private getQuestionConditionJson;
|
|
105
|
-
private
|
|
105
|
+
private updateChoicesFromQuestion;
|
|
106
106
|
private updateOperatorEnables;
|
|
107
107
|
private updateQuestionsWidth;
|
|
108
108
|
private get defaultOperator();
|