@boldreports/types 6.2.37 → 6.2.39

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.2.37",
3
+ "version": "6.2.39",
4
4
  "description": "TypeScript definitions for Bold Reports",
5
5
  "repository": {
6
6
  "type": "git",
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * filename: index.d.ts
3
- * version : 6.2.37
3
+ * version : 6.2.39
4
4
  * Copyright Syncfusion Inc. 2001 - 2024. 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
@@ -761,11 +761,12 @@ declare namespace ej {
761
761
  public newServerReport(name: string, dataSetPath: string): void;
762
762
 
763
763
  /** This method opens the report from the report server.
764
- * @param {string} Path of the report server report
765
- * @param {string} Reports server URL
766
- * @returns {void}
764
+ * @param {string} Path of the report server report.
765
+ * @param {string} Reports server URL.
766
+ * @param {any} .
767
+ * @returns {undefined}
767
768
  */
768
- public openReport(reportPath: string, serverUrl: string): void;
769
+ public openReport(reportPath: string, serverUrl: string, callBackInfo: any): undefined;
769
770
 
770
771
  /** This method opens the report using raw report data.
771
772
  * @param {any} Provide the report definition in the JSON or string or XML format
@@ -823,10 +824,12 @@ declare namespace ej {
823
824
  public removeParameter(reportParameterName: string): void;
824
825
 
825
826
  /** This method saves the report into the report server.
826
- * @param {string} Path of the report server report
827
- * @returns {void}
827
+ * @param {string} Path of the report server report.
828
+ * @param {boolean} If True denotes report Edit action, otherwise new report Create action.
829
+ * @param {any} .
830
+ * @returns {undefined}
828
831
  */
829
- public saveReport(reportPath: string): void;
832
+ public saveReport(reportPath: string, isOverWrite: boolean, callBackInfo: any): undefined;
830
833
 
831
834
  /** This method returns the report in JSON or XML format.
832
835
  * @param {Function} Callback method to return the report data.
@@ -874,11 +877,10 @@ declare namespace ej {
874
877
 
875
878
  /** Opens the report designer browse dialog to open/save reports in the report server.
876
879
  * @param {ej.ReportDesigner.BrowseType} Mention the type as Open to perform open report action, otherwise Save.
877
- * @param {Function} Callback method of open/save dialog actions.
878
- * @param {string} Name of the report to save.
879
- * @returns {void}
880
+ * @param {Function} .
881
+ * @returns {undefined}
880
882
  */
881
- public showOpenSaveReportDialog(browseType: ej.ReportDesigner.BrowseType | string, callback: Function, reportName: string): void;
883
+ public showOpenSaveReportDialog(browseType: ej.ReportDesigner.BrowseType | string, callback: Function): undefined;
882
884
 
883
885
  /** Performs switch action from designer to viewer at runtime.
884
886
  * @returns {void}
@@ -1554,6 +1556,11 @@ declare namespace ej {
1554
1556
  */
1555
1557
  enableDropDownSearch?: boolean;
1556
1558
 
1559
+ /** Show or hide the parameter popup re-size on report initial rendering.
1560
+ * @Default {false}
1561
+ */
1562
+ enablePopupResize?: boolean;
1563
+
1557
1564
  /** Specifies the export settings for Report Viewer component.
1558
1565
  * @Default {}
1559
1566
  */
@@ -2101,6 +2108,11 @@ declare namespace ej {
2101
2108
  */
2102
2109
  enableDropDownSearch?: boolean;
2103
2110
 
2111
+ /** Show or hide the parameter popup re-size on report initial rendering.
2112
+ * @Default {false}
2113
+ */
2114
+ enablePopupResize?: boolean;
2115
+
2104
2116
  // tslint:disable:max-line-length
2105
2117
  /** Set the property value as true to enable the processing of a large amount of data with a lesser memory footprint and without performance degradation.
2106
2118
  * @Default {false}
@@ -2750,11 +2762,6 @@ This support applicable only in Classic view.
2750
2762
  */
2751
2763
  hideTooltip?: boolean;
2752
2764
 
2753
- /** Show or hide the parameter popup re-size on report initial rendering.
2754
- * @Default {false}
2755
- */
2756
- enablePopupResize?: boolean;
2757
-
2758
2765
  /** Show or hide the parameter block on report initial rendering.
2759
2766
  * @Default {false}
2760
2767
  */
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@boldreports/types",
3
- "version": "6.2.37",
3
+ "version": "6.2.39",
4
4
  "typeScriptVersion": "2.3",
5
5
  "types": "index"
6
6
  }