devexpress-reporting
Version:
DevExpress Reporting provides the capability to develop a reporting application to create and customize reports.
22 lines (21 loc) • 1.08 kB
JavaScript
/**
* DevExpress HTML/JS Reporting (designer\wizard\_reportWizardCreating.js)
* Version: 20.2.13
* Build date: Apr 10, 2023
* Copyright (c) 2012 - 2023 Developer Express Inc. ALL RIGHTS RESERVED
* License: https://www.devexpress.com/Support/EULAs/universal.xml
*/
;
Object.defineProperty(exports, "__esModule", { value: true });
var reportWizard_1 = require("./reportWizard");
var fullscreenReportWizard_1 = require("./fullscreenReportWizard");
var legacyReportWizard_1 = require("./legacyReportWizard");
function _createReportWizard(reportWizardOptions) {
if (reportWizardOptions.wizardSettings.useFullscreenWizard && reportWizardOptions.wizardSettings.useMasterDetailWizard)
return fullscreenReportWizard_1._createFullscreenReportWizard(reportWizardOptions);
else if (reportWizardOptions.wizardSettings.useMasterDetailWizard)
return reportWizard_1._createReportWizard(reportWizardOptions);
else
return legacyReportWizard_1._createLegacyReportWizard(reportWizardOptions);
}
exports._createReportWizard = _createReportWizard;