@boldreports/types 6.3.26 → 6.3.27
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 +1 -1
- package/reports.all/index.d.ts +38 -10
- package/reports.all/package.json +1 -1
package/package.json
CHANGED
package/reports.all/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* filename: index.d.ts
|
|
3
|
-
* version : 6.3.
|
|
4
|
-
* Copyright Syncfusion Inc. 2001 -
|
|
3
|
+
* version : 6.3.27
|
|
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
|
|
1022
|
-
* @Default {ej.ReportDesigner.
|
|
1026
|
+
/** Gets or sets the zoom factor for report designer.
|
|
1027
|
+
* @Default {ej.ReportDesigner.ZoomFactor.Z_100}
|
|
1023
1028
|
*/
|
|
1024
|
-
|
|
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
|
|
1867
|
-
//
|
|
1868
|
-
|
|
1869
|
-
//
|
|
1870
|
-
|
|
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 {
|