@boldreports/types 12.2.8 → 12.2.10
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 +27 -4
- package/reports.all/package.json +1 -1
package/package.json
CHANGED
package/reports.all/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* filename: index.d.ts
|
|
3
|
-
* version : 12.2.
|
|
3
|
+
* version : 12.2.10
|
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2026. 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
|
|
@@ -1097,9 +1097,13 @@ declare namespace ej {
|
|
|
1097
1097
|
// tslint:enable:max-line-length
|
|
1098
1098
|
previewReport?(e: PreviewReportEventArgs): void;
|
|
1099
1099
|
|
|
1100
|
-
/** This event will be triggered when
|
|
1100
|
+
/** This event will be triggered when report actions such as report open, save, or auto draft occur.
|
|
1101
1101
|
*/
|
|
1102
|
-
|
|
1102
|
+
reportAction?(e: ReportActionEventArgs): void;
|
|
1103
|
+
|
|
1104
|
+
/** This event will be triggered when any RDL object in the report are modified.
|
|
1105
|
+
*/
|
|
1106
|
+
onReportModified?(e: OnReportModifiedEventArgs): void;
|
|
1103
1107
|
|
|
1104
1108
|
/** This event will be triggered when the report is opened.
|
|
1105
1109
|
*/
|
|
@@ -1294,7 +1298,7 @@ declare namespace ej {
|
|
|
1294
1298
|
dataSets?: any[];
|
|
1295
1299
|
}
|
|
1296
1300
|
|
|
1297
|
-
export interface
|
|
1301
|
+
export interface ReportActionEventArgs {
|
|
1298
1302
|
|
|
1299
1303
|
/** Specifies whether the report is modified or not
|
|
1300
1304
|
*/
|
|
@@ -1305,6 +1309,25 @@ declare namespace ej {
|
|
|
1305
1309
|
reportName?: string;
|
|
1306
1310
|
}
|
|
1307
1311
|
|
|
1312
|
+
export interface OnReportModifiedEventArgs {
|
|
1313
|
+
|
|
1314
|
+
/** true, if the event should be canceled; otherwise, false.
|
|
1315
|
+
*/
|
|
1316
|
+
cancel?: boolean;
|
|
1317
|
+
|
|
1318
|
+
/** Contains information about the RDL object that was modified.
|
|
1319
|
+
*/
|
|
1320
|
+
data?: any[];
|
|
1321
|
+
|
|
1322
|
+
/** Returns the report designer model
|
|
1323
|
+
*/
|
|
1324
|
+
model?: any;
|
|
1325
|
+
|
|
1326
|
+
/** Returns the name of the event
|
|
1327
|
+
*/
|
|
1328
|
+
type?: string;
|
|
1329
|
+
}
|
|
1330
|
+
|
|
1308
1331
|
export interface ReportOpenedEventArgs {
|
|
1309
1332
|
|
|
1310
1333
|
/** Specifies whether report opened from device or server
|