@boldreports/types 8.1.3 → 8.1.4
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 +20 -3
- 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 : 8.1.
|
|
3
|
+
* version : 8.1.4
|
|
4
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
|
|
@@ -2221,6 +2221,12 @@ declare namespace ej {
|
|
|
2221
2221
|
// tslint:enable:max-line-length
|
|
2222
2222
|
reportLoaded?(e: ReportLoadedEventArgs): void;
|
|
2223
2223
|
|
|
2224
|
+
// tslint:disable:max-line-length
|
|
2225
|
+
/** Fires when report processing is canceled. You can use the reportCanceled event to perform any action after canceling either the report viewer process or the export process.
|
|
2226
|
+
*/
|
|
2227
|
+
// tslint:enable:max-line-length
|
|
2228
|
+
reportCanceled?(e: ReportCanceledEventArgs): void;
|
|
2229
|
+
|
|
2224
2230
|
// tslint:disable:max-line-length
|
|
2225
2231
|
/** Fires when user clicks on a failed report item in the rendered report, before displaying error details dialog. If you want to show custom error detail or perform any action before
|
|
2226
2232
|
* viewing error detail, you can make use of the showError event.
|
|
@@ -2380,9 +2386,20 @@ declare namespace ej {
|
|
|
2380
2386
|
|
|
2381
2387
|
export interface ReportLoadedEventArgs {
|
|
2382
2388
|
|
|
2383
|
-
/**
|
|
2389
|
+
/** returns the report model.
|
|
2384
2390
|
*/
|
|
2385
|
-
|
|
2391
|
+
model?: any;
|
|
2392
|
+
|
|
2393
|
+
/** returns the name of the event.
|
|
2394
|
+
*/
|
|
2395
|
+
type?: string;
|
|
2396
|
+
}
|
|
2397
|
+
|
|
2398
|
+
export interface ReportCanceledEventArgs {
|
|
2399
|
+
|
|
2400
|
+
/** returns the process where either viewer processing or export processing is canceled.
|
|
2401
|
+
*/
|
|
2402
|
+
process?: string;
|
|
2386
2403
|
|
|
2387
2404
|
/** returns the report model.
|
|
2388
2405
|
*/
|