@sapui5/sap.ui.export 1.128.0 → 1.130.0
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/src/sap/ui/export/.library +1 -1
- package/src/sap/ui/export/ExportBase.js +1 -1
- package/src/sap/ui/export/ExportDialog.js +1 -1
- package/src/sap/ui/export/ExportHandler.js +294 -319
- package/src/sap/ui/export/ExportUtils.js +108 -107
- package/src/sap/ui/export/PortableDocument.js +175 -167
- package/src/sap/ui/export/Spreadsheet.js +8 -3
- package/src/sap/ui/export/SpreadsheetExport.js +1 -1
- package/src/sap/ui/export/fragments/SettingsDialog.fragment.xml +2 -2
- package/src/sap/ui/export/library.js +2 -2
- package/src/sap/ui/export/messagebundle_da.properties +1 -1
- package/src/sap/ui/export/messagebundle_ru.properties +1 -1
- package/src/sap/ui/export/provider/DataProviderBase.js +22 -2
- package/src/sap/ui/export/util/Filter.js +1 -1
- package/src/sap/ui/export/util/PDFCapabilities.js +4 -2
package/package.json
CHANGED
|
@@ -27,7 +27,7 @@ sap.ui.define([
|
|
|
27
27
|
* @class The <code>sap.ui.export.ExportBase</code> class allows you to export table data from a UI5 application to certain formats. This class is an abstract class that requires specific implementations for each file format.
|
|
28
28
|
*
|
|
29
29
|
* @author SAP SE
|
|
30
|
-
* @version 1.
|
|
30
|
+
* @version 1.130.0
|
|
31
31
|
*
|
|
32
32
|
* @since 1.96
|
|
33
33
|
* @alias sap.ui.export.ExportBase
|
|
@@ -121,7 +121,7 @@ sap.ui.define([
|
|
|
121
121
|
* @param {Object} mParams Configuration of the warning dialog
|
|
122
122
|
* @param {number} mParams.rows Number of rows that will be exported
|
|
123
123
|
* @param {number} mParams.columns Number of columns that will be exported
|
|
124
|
-
* @param {boolean} mParams.cellLimit Number of cells that are
|
|
124
|
+
* @param {boolean} mParams.cellLimit Number of cells that are supported
|
|
125
125
|
* @param {boolean} mParams.rowLimit Number of rows that are supported
|
|
126
126
|
* @param {String} mParams.fileType File type of the exported document
|
|
127
127
|
* @returns {Promise} Promise that gets resolved when the user wants to export, regardless of the warning
|