devexpress-reporting
Version:
DevExpress Reporting provides the capability to develop a reporting application to create and customize reports.
16 lines (15 loc) • 660 B
JavaScript
/**
* DevExpress HTML/JS Reporting (bundle\_validator.js)
* Version: 25.1.3
* Build date: Jun 26, 2025
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
* License: https://www.devexpress.com/Support/EULAs/universal.xml
*/
export const version = '%VERSION%';
export function checkVersions() {
const DevExpress = window.DevExpress;
const reportingVersion = DevExpress['Reporting']['VERSION'];
const analyticsVersion = DevExpress['Analytics']['VERSION'];
if (reportingVersion != analyticsVersion)
console.warn(`Reporting (v${reportingVersion}) and Analytics-Core (v${analyticsVersion}) versions do not match.`);
}