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.
@@ -10,6 +10,7 @@ export declare class TabThemePlugin implements ICreatorPlugin {
10
10
  private designerAction;
11
11
  private prevPageAction;
12
12
  private nextPageAction;
13
+ private resetTheme;
13
14
  private importAction;
14
15
  private exportAction;
15
16
  private inputFileElement;
@@ -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
- previewPropertyGridTitle: string;
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
- previewPropertyGridTitle: string;
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: IUndoRedoChange) => void;
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: any;
105
+ private updateChoicesFromQuestion;
106
106
  private updateOperatorEnables;
107
107
  private updateQuestionsWidth;
108
108
  private get defaultOperator();
@@ -10,4 +10,5 @@ export declare class QuestionConverter {
10
10
  private static updateJSONForRating;
11
11
  private static updateJSONForBarrating;
12
12
  private static updateJSONForPanels;
13
+ private static removeValidators;
13
14
  }