@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.
- package/README.md +2 -2
- package/package.json +2 -2
- package/src/sap/ui/export/.library +1 -1
- package/src/sap/ui/export/CommaSeparatedValues.js +188 -0
- package/src/sap/ui/export/ExportBase.js +1 -1
- package/src/sap/ui/export/ExportHandler.js +1 -1
- package/src/sap/ui/export/ExportUtils.js +2 -2
- package/src/sap/ui/export/PortableDocument.js +1 -1
- package/src/sap/ui/export/Spreadsheet.js +2 -2
- package/src/sap/ui/export/SpreadsheetExport.js +59 -48
- package/src/sap/ui/export/js/CSVBuilder.js +201 -0
- package/src/sap/ui/export/js/SpreadsheetWorker.js +4 -0
- package/src/sap/ui/export/js/XLSXBuilder.js +1 -1
- package/src/sap/ui/export/js/XLSXBuilder.js.map +1 -1
- package/src/sap/ui/export/library.js +5 -5
- package/src/sap/ui/export/provider/DataProviderBase.js +1 -1
- package/src/sap/ui/export/util/Filter.js +1 -1
|
@@ -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.
|
|
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.
|
|
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/
|
|
225
|
+
"sap/ui/export/js/CSVBuilder":{
|
|
226
226
|
amd: true,
|
|
227
|
-
exports: "
|
|
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.
|
|
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.
|
|
@@ -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.
|
|
23
|
+
* @version 1.142.0
|
|
24
24
|
*
|
|
25
25
|
* @since 1.110
|
|
26
26
|
* @alias sap.ui.export.util.Filter
|