survey-creator-core 1.9.95 → 1.9.96

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.
@@ -3,6 +3,7 @@ import { CreatorBase } from "../creator-base";
3
3
  export declare class MatrixCellWrapperEditSurvey {
4
4
  private cellQuestion;
5
5
  private surveyValue;
6
+ private creator;
6
7
  constructor(creator: CreatorBase, cellQuestion: Question);
7
8
  get survey(): SurveyModel;
8
9
  get question(): Question;
@@ -40,4 +40,6 @@ export declare class TestSurveyTabViewModel extends Base {
40
40
  setTheme(themeName: string, themeMapper: any): void;
41
41
  protected onPropertyValueChanged(name: string, oldValue: any, newValue: any): void;
42
42
  private updatePrevNextPageActionState;
43
+ private onScrollCallback;
44
+ onScroll(): boolean;
43
45
  }
@@ -59,7 +59,7 @@ export declare class ThemeSurveyTabViewModel extends Base {
59
59
  get isPageToolbarVisible(): boolean;
60
60
  get themeEditorSurvey(): SurveyModel;
61
61
  get currentTheme(): ITheme;
62
- applySelectedTheme(saveChanges?: boolean): void;
62
+ applySelectedTheme(): void;
63
63
  constructor(surveyProvider: CreatorBase, startTheme?: any);
64
64
  private loadTheme;
65
65
  updateSimulatorSurvey(json: any, theme: any): void;
@@ -73,6 +73,7 @@ export declare class ThemeSurveyTabViewModel extends Base {
73
73
  private getSelectPageTitle;
74
74
  private getPageTitle;
75
75
  private updatePageList;
76
+ resetTheme(): void;
76
77
  show(): void;
77
78
  testAgain(): void;
78
79
  buildActions(): void;
@@ -22,6 +22,7 @@ export declare class QuestionColorModel extends QuestionTextModel {
22
22
  set choices(newValue: Array<ItemValue>);
23
23
  get showDropdownAction(): boolean;
24
24
  createDropdownAction(): Action;
25
+ protected calcCssClasses(css: any): void;
25
26
  private updateChoices;
26
27
  get itemComponent(): string;
27
28
  }