@progress/telerik-react-report-viewer 30.26.707 → 31.26.812
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/dist/cjs/telerik-report-viewer.js +4 -0
- package/dist/dependencies/telerikReportViewer.js +1431 -598
- package/dist/dependencies/telerikReportViewer.kendo.min.js +201 -17
- package/dist/dependencies/telerikReportViewerTemplate.html +4 -4
- package/dist/es/telerik-report-viewer.js +4 -0
- package/package.json +2 -2
|
@@ -346,9 +346,11 @@ function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e =
|
|
|
346
346
|
* @property {string} [serviceUrl] - Sets the address of the Report REST Service. Required if reportServer is not provided.
|
|
347
347
|
* @example <propertyName>serviceUrl</propertyName>
|
|
348
348
|
* // Set the service URL for the report viewer
|
|
349
|
+
* // Note: The viewer container must have a resolved height to render (for example, height or absolute positioning with top and bottom).
|
|
349
350
|
* <TelerikReportViewer
|
|
350
351
|
* serviceUrl="api/reports/"
|
|
351
352
|
* reportSource={{ report: "Dashboard.trdp" }}
|
|
353
|
+
* viewerContainerStyle={{ width: '100%', height: '600px' }}
|
|
352
354
|
* />
|
|
353
355
|
*
|
|
354
356
|
* @property {ReportServer} [reportServer] - Sets the configuration details for Telerik Report Server. Required if serviceUrl is not provided.
|
|
@@ -387,9 +389,11 @@ function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e =
|
|
|
387
389
|
* @property {ReportSource} [reportSource] - Sets the report and initial report parameter values for the viewer to be displayed.
|
|
388
390
|
* @example <propertyName>reportSource</propertyName>
|
|
389
391
|
* // Basic report source
|
|
392
|
+
* // Note: The viewer container must have a resolved height to render (for example, height or absolute positioning with top and bottom).
|
|
390
393
|
* <TelerikReportViewer
|
|
391
394
|
* serviceUrl="api/reports/"
|
|
392
395
|
* reportSource={{ report: "Dashboard.trdp" }}
|
|
396
|
+
* viewerContainerStyle={{ width: '100%', height: '600px' }}
|
|
393
397
|
* />
|
|
394
398
|
*
|
|
395
399
|
* @example
|