@boldreports/types 6.3.26 → 6.3.28

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@boldreports/types",
3
- "version": "6.3.26",
3
+ "version": "6.3.28",
4
4
  "description": "TypeScript definitions for Bold Reports",
5
5
  "repository": {
6
6
  "type": "git",
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * filename: index.d.ts
3
- * version : 6.3.26
4
- * Copyright Syncfusion Inc. 2001 - 2024. All rights reserved.
3
+ * version : 6.3.28
4
+ * Copyright Syncfusion Inc. 2001 - 2025. All rights reserved.
5
5
  * Use of this code is subject to the terms of our license.
6
6
  * A copy of the current license can be obtained at any time by e-mailing
7
7
  * licensing@syncfusion.com. Any infringement will be prosecuted under
@@ -921,6 +921,11 @@ declare namespace ej {
921
921
  */
922
922
  configurePaneSettings?: ConfigurePaneSettings;
923
923
 
924
+ /** Gets or sets the tab index of data panel.
925
+ * @Default {ej.ReportDesigner.DataTab.Dataset}
926
+ */
927
+ dataTabIndex?: ej.ReportDesigner.DataTab | string;
928
+
924
929
  /** Set the property as true to disable the code module configuration in RDL reports.
925
930
  * @Default {false}
926
931
  */
@@ -1018,10 +1023,10 @@ declare namespace ej {
1018
1023
  */
1019
1024
  waitingPopupTemplate?: string;
1020
1025
 
1021
- /** Gets or sets the tab index of data panel.
1022
- * @Default {ej.ReportDesigner.DataTab.Dataset}
1026
+ /** Gets or sets the zoom factor for report designer.
1027
+ * @Default {ej.ReportDesigner.ZoomFactor.Z_100}
1023
1028
  */
1024
- dataTabIndex?: ej.ReportDesigner.DataTab | string;
1029
+ zoomFactor?: ej.ReportDesigner.ZoomFactor | string;
1025
1030
 
1026
1031
  /** This event will be triggered before AJAX loads.
1027
1032
  */
@@ -1856,6 +1861,13 @@ declare namespace ej {
1856
1861
  All,
1857
1862
  }
1858
1863
 
1864
+ enum DataTab {
1865
+ //Sets the datasource panel as default tab in data panel.
1866
+ Datasource,
1867
+ //Sets the dataset panel as default tab in data panel.
1868
+ Dataset,
1869
+ }
1870
+
1859
1871
  enum ReportType {
1860
1872
  //Renders designer in RDL mode.
1861
1873
  RDL,
@@ -1863,11 +1875,27 @@ declare namespace ej {
1863
1875
  RDLC,
1864
1876
  }
1865
1877
 
1866
- enum DataTab {
1867
- //Sets the datasource panel as default tab in data panel.
1868
- Datasource,
1869
- //Sets the dataset panel as default tab in data panel.
1870
- Dataset,
1878
+ enum ZoomFactor {
1879
+ //25
1880
+ Z_25,
1881
+ //50
1882
+ Z_50,
1883
+ //75
1884
+ Z_75,
1885
+ //100
1886
+ Z_100,
1887
+ //150
1888
+ Z_150,
1889
+ //200
1890
+ Z_200,
1891
+ //250
1892
+ Z_250,
1893
+ //300
1894
+ Z_300,
1895
+ //350
1896
+ Z_350,
1897
+ //400
1898
+ Z_400,
1871
1899
  }
1872
1900
 
1873
1901
  enum DataFormat {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@boldreports/types",
3
- "version": "6.3.26",
3
+ "version": "6.3.28",
4
4
  "typeScriptVersion": "2.3",
5
5
  "types": "index"
6
6
  }