survey-creator-core 1.9.65 → 1.9.66

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.
@@ -563,6 +563,7 @@ declare module "localization/english" {
563
563
  showOnCompleted: string;
564
564
  logo: string;
565
565
  slider: string;
566
+ expression: string;
566
567
  others: string;
567
568
  };
568
569
  editProperty: string;
@@ -1659,6 +1660,7 @@ declare module "editorLocalization" {
1659
1660
  showOnCompleted: string;
1660
1661
  logo: string;
1661
1662
  slider: string;
1663
+ expression: string;
1662
1664
  others: string;
1663
1665
  };
1664
1666
  editProperty: string;
@@ -2754,11 +2756,13 @@ declare module "property-grid-theme/property-grid" {
2754
2756
  cellTextDisabled: string;
2755
2757
  };
2756
2758
  matrixdropdown: {
2759
+ tableWrapper: string;
2757
2760
  root: string;
2758
2761
  cell: string;
2759
2762
  headerCell: string;
2760
2763
  };
2761
2764
  matrixdynamic: {
2765
+ tableWrapper: string;
2762
2766
  root: string;
2763
2767
  cell: string;
2764
2768
  headerCell: string;
@@ -3631,7 +3635,6 @@ declare module "components/tabs/test-plugin" {
3631
3635
  deactivate(): boolean;
3632
3636
  private getAvailableThemes;
3633
3637
  private getThemeLocName;
3634
- protected filterThemeMapper(themeMapper: Array<any>): Array<any>;
3635
3638
  createActions(): Array<Action>;
3636
3639
  addFooterActions(): void;
3637
3640
  }
@@ -4830,6 +4833,7 @@ declare module "components/tabs/logic-theme" {
4830
4833
  cellTextDisabled: string;
4831
4834
  };
4832
4835
  matrixdropdown: {
4836
+ tableWrapper: string;
4833
4837
  mainRoot: string;
4834
4838
  root: string;
4835
4839
  row: string;
@@ -4838,6 +4842,7 @@ declare module "components/tabs/logic-theme" {
4838
4842
  headerCell: string;
4839
4843
  };
4840
4844
  matrixdynamic: {
4845
+ tableWrapper: string;
4841
4846
  mainRoot: string;
4842
4847
  root: string;
4843
4848
  row: string;
@@ -6790,7 +6795,20 @@ declare module "creator-base" {
6790
6795
  get selectionHistoryController(): SelectionHistory;
6791
6796
  get currentPage(): PageModel;
6792
6797
  set currentPage(value: PageModel);
6793
- addPage(pagetoAdd?: PageModel): PageModel;
6798
+ /**
6799
+ * An event that is raised before a new page is added to the survey.
6800
+ *
6801
+ * Parameters:
6802
+ *
6803
+ * - `sender`: `CreatorBase`\
6804
+ * A Survey Creator instance that raised the event.
6805
+ * - `options.page`: [`PageModel`](https://surveyjs.io/form-library/documentation/api-reference/page-model)\
6806
+ * An added page.
6807
+ * - `options.allow`: `Boolean`\
6808
+ * Set this property to `false` if you do not want to add the page.
6809
+ */
6810
+ onPageAdding: CreatorEvent;
6811
+ addPage(pageToAdd?: PageModel, changeSelection?: boolean, beforeAdd?: () => boolean): PageModel;
6794
6812
  private addNewPageIntoSurvey;
6795
6813
  protected initTabs(): void;
6796
6814
  private initPlugins;