@progress/telerik-jquery-report-viewer 27.25.1001 → 28.25.1119
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/README.md +1 -1
- package/dist/cjs/parametersArea.js +1 -1
- package/dist/cjs/reportViewer.js +226 -25
- package/dist/cjs/sr.js +1 -0
- package/dist/font/font-icons.css +4 -4
- package/dist/font/font-icons.min.css +3 -3
- package/dist/js/telerikReportViewer.js +629 -365
- package/dist/js/telerikReportViewer.min.js +1 -1
- package/dist/js/telerikReportViewer.stringResources.js +1 -0
- package/dist/styles/telerikReportViewer.css +1 -1
- package/dist/styles/telerikReportViewer.min.css +1 -1
- package/dist/templates/telerikReportViewerTemplate.html +3 -3
- package/package.json +5 -4
- /package/dist/font/{ReportingIcons-19.2.25.1001.ttf → ReportingIcons-19.3.25.1119.ttf} +0 -0
|
@@ -32,6 +32,7 @@
|
|
|
32
32
|
errorCreatingReportInstance: "Error creating report instance (Report = '{0}').",
|
|
33
33
|
errorCreatingReportDocument: "Error creating report document (Report = '{0}'; Format = '{1}').",
|
|
34
34
|
unableToGetReportParameters: "Unable to get report parameters.",
|
|
35
|
+
errorUnauthorizedOrForbidden: "You don't have permission to access this report document.",
|
|
35
36
|
errorObtainingAuthenticationToken: "Error obtaining authentication token.",
|
|
36
37
|
clientExpired: "Click 'Refresh' to restore client session.",
|
|
37
38
|
promisesChainStopError: "Error shown. Throwing promises chain stop error.",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* TelerikReporting v19.
|
|
2
|
+
* TelerikReporting v19.3.25.1119 (https://www.telerik.com/products/reporting.aspx)
|
|
3
3
|
* Copyright 2025 Progress Software EAD. All rights reserved.
|
|
4
4
|
*
|
|
5
5
|
* Telerik Reporting commercial licenses may be obtained at
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* TelerikReporting v19.
|
|
2
|
+
* TelerikReporting v19.3.25.1119 (https://www.telerik.com/products/reporting.aspx)
|
|
3
3
|
* Copyright 2025 Progress Software EAD. All rights reserved.
|
|
4
4
|
*
|
|
5
5
|
* Telerik Reporting commercial licenses may be obtained at
|
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
<title>Telerik HTML5 Report Viewer Templates</title>
|
|
5
5
|
|
|
6
6
|
<!--Telerik served resources. For more information see: http://docs.telerik.com/reporting/html5-report-viewer-styling-and-appearance -->
|
|
7
|
-
<link href="{service}resources/font/fonticons-19.
|
|
8
|
-
<link href="{service}resources/styles/telerikReportViewer-19.
|
|
7
|
+
<link href="{service}resources/font/fonticons-19.3.25.1119.css/" rel="stylesheet" />
|
|
8
|
+
<link href="{service}resources/styles/telerikReportViewer-19.3.25.1119.css/" rel="stylesheet" />
|
|
9
9
|
|
|
10
10
|
</head>
|
|
11
11
|
<body>
|
|
@@ -387,4 +387,4 @@
|
|
|
387
387
|
|
|
388
388
|
</body>
|
|
389
389
|
</html>
|
|
390
|
-
<!-- DO NOT MODIFY OR DELETE THIS LINE! UPGRADE WIZARD CHECKSUM
|
|
390
|
+
<!-- DO NOT MODIFY OR DELETE THIS LINE! UPGRADE WIZARD CHECKSUM 14c1ef8f4303ee6b51c4158d4731cb4e -->
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/telerik-jquery-report-viewer",
|
|
3
3
|
"description": "Progress® Telerik® Report Viewer for jQuery",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "28.25.1119",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "See LICENSE.md",
|
|
7
7
|
"homepage": "https://www.telerik.com/reporting",
|
|
@@ -40,18 +40,19 @@
|
|
|
40
40
|
"service:ci": "dotnet run --project ../rest-service/RestService.csproj --launch-profile CI",
|
|
41
41
|
"build:service": "npm run build --prefix ../rest-service",
|
|
42
42
|
"e2e": "jest --config jest.e2e.config.js",
|
|
43
|
-
"e2e-tests": "
|
|
43
|
+
"e2e-tests": "node ./scripts/run-with-config.js e2e-tests",
|
|
44
44
|
"dev": "nodemon mock/app.js",
|
|
45
45
|
"start": "node mock/app.js",
|
|
46
46
|
"start-examples": "npx http-server . --port 3000 --cors='*'",
|
|
47
47
|
"prebuild": "rimraf dist && node ./scripts/prebuild.js",
|
|
48
|
-
"build": "rollup -c rollup.config.js",
|
|
48
|
+
"build": "rollup -c rollup.config.js && npm run deploy",
|
|
49
49
|
"preview": "",
|
|
50
50
|
"build-only": "",
|
|
51
51
|
"type-check": "tsc --noEmit -p tsconfig.json --composite false",
|
|
52
52
|
"lint": "eslint ./src --ext .ts",
|
|
53
53
|
"lint-fix": "eslint ./src --ext .ts --fix",
|
|
54
|
-
"test": "jest"
|
|
54
|
+
"test": "jest",
|
|
55
|
+
"deploy": "node ./scripts/deploy.js"
|
|
55
56
|
},
|
|
56
57
|
"peerDependencies": {
|
|
57
58
|
"jquery": "^1.10.0 || ^2.2.0 || ^3.7.0",
|
|
File without changes
|