@sapui5/sap.ui.export 1.141.2 → 1.142.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.
@@ -15,7 +15,7 @@ sap.ui.define(["sap/ui/core/Lib"], function(Library) {
15
15
  * @namespace
16
16
  * @alias sap.ui.export
17
17
  * @author SAP SE
18
- * @version 1.141.2
18
+ * @version 1.142.0
19
19
  * @public
20
20
  */
21
21
 
@@ -34,7 +34,7 @@ sap.ui.define(["sap/ui/core/Lib"], function(Library) {
34
34
  interfaces: [],
35
35
  controls: [],
36
36
  elements: [],
37
- version: "1.141.2"
37
+ version: "1.142.0"
38
38
  });
39
39
 
40
40
  /**
@@ -222,9 +222,9 @@ sap.ui.define(["sap/ui/core/Lib"], function(Library) {
222
222
  amd: true,
223
223
  exports: "XLSXBuilder"
224
224
  },
225
- "sap/ui/export/js/XLSXExportUtils": {
225
+ "sap/ui/export/js/CSVBuilder":{
226
226
  amd: true,
227
- exports: "XLSXExportUtils"
227
+ exports: "CSVBuilder"
228
228
  }
229
229
  }
230
230
  });
@@ -235,7 +235,7 @@ sap.ui.define(["sap/ui/core/Lib"], function(Library) {
235
235
  * @property {sap.ui.export.Column[]} workbook.columns - Column configurations.
236
236
  * @property {object} [workbook.context] - Export context that will be applied to the exported file.
237
237
  * @property {string} [workbook.context.application="SAP UI5"] - The application that creates the XLSX document.
238
- * @property {string} [workbook.context.version="1.141.2"] - Application version that creates the XLSX document.
238
+ * @property {string} [workbook.context.version="1.142.0"] - Application version that creates the XLSX document.
239
239
  * @property {string} [workbook.context.title] - Title of the XLSX document (NOT the file name).
240
240
  * @property {string} [workbook.context.modifiedBy] - User context for the XLSX document.
241
241
  * @property {string} [workbook.context.sheetName] - The label of the data sheet.
@@ -24,7 +24,7 @@
24
24
  * @param {object} mSettings Data service related part of the export configuration
25
25
  *
26
26
  * @author SAP SE
27
- * @version 1.141.2
27
+ * @version 1.142.0
28
28
  *
29
29
  * @constructor
30
30
  * @class DataProviderBase
@@ -20,7 +20,7 @@ sap.ui.define(['sap/ui/base/Object'], function(BaseObject) {
20
20
  * convenience functions like <code>sap.ui.export.util.Filter#setType</code> to improve the result.
21
21
  *
22
22
  * @author SAP SE
23
- * @version 1.141.2
23
+ * @version 1.142.0
24
24
  *
25
25
  * @since 1.110
26
26
  * @alias sap.ui.export.util.Filter