@sapui5/sap.ui.export 1.142.0 → 1.142.1
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/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 +1 -1
- package/src/sap/ui/export/library.js +3 -3
- package/src/sap/ui/export/provider/DataProviderBase.js +1 -1
- package/src/sap/ui/export/util/Filter.js +1 -1
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.142.
|
|
30
|
+
* @version 1.142.1
|
|
31
31
|
*
|
|
32
32
|
* @since 1.96
|
|
33
33
|
* @alias sap.ui.export.ExportBase
|
|
@@ -28,7 +28,7 @@ sap.ui.define([
|
|
|
28
28
|
* @class The <code>sap.ui.export.ExportHandler</code> class allows you to export table data from an SAPUI5 application.
|
|
29
29
|
*
|
|
30
30
|
* @author SAP SE
|
|
31
|
-
* @version 1.142.
|
|
31
|
+
* @version 1.142.1
|
|
32
32
|
*
|
|
33
33
|
* @since 1.102
|
|
34
34
|
* @alias sap.ui.export.ExportHandler
|
|
@@ -145,7 +145,7 @@ sap.ui.define([
|
|
|
145
145
|
* @class Utilities related to export to enable reuse in integration scenarios (e.g. tables).
|
|
146
146
|
*
|
|
147
147
|
* @author SAP SE
|
|
148
|
-
* @version 1.142.
|
|
148
|
+
* @version 1.142.1
|
|
149
149
|
*
|
|
150
150
|
* @since 1.59
|
|
151
151
|
* @alias sap.ui.export.ExportUtils
|
|
@@ -1245,7 +1245,7 @@ sap.ui.define([
|
|
|
1245
1245
|
*
|
|
1246
1246
|
* @param {object} oContext Context object
|
|
1247
1247
|
* @param {string} [oContext.application] Name of the application (default: "SAP UI5")
|
|
1248
|
-
* @param {string} [oContext.version] Application version (default: "1.142.
|
|
1248
|
+
* @param {string} [oContext.version] Application version (default: "1.142.1")
|
|
1249
1249
|
* @param {string} [oContext.title] Title that will be written to the file (NOT the filename)
|
|
1250
1250
|
* @param {string} [oContext.modifiedBy] Optional user context that will be written to the file
|
|
1251
1251
|
* @param {string} [oContext.sheetName] Name of the data sheet - Maximum length of 31 characters
|
|
@@ -28,7 +28,7 @@ sap.ui.define([
|
|
|
28
28
|
* @class The <code>sap.ui.export.PortableDocument</code> class allows you to export table data from a UI5 application to a Portable Document Format (*.PDF) file.
|
|
29
29
|
*
|
|
30
30
|
* @author SAP SE
|
|
31
|
-
* @version 1.142.
|
|
31
|
+
* @version 1.142.1
|
|
32
32
|
*
|
|
33
33
|
* @since 1.96
|
|
34
34
|
* @alias sap.ui.export.PortableDocument
|
|
@@ -96,7 +96,7 @@ sap.ui.define([
|
|
|
96
96
|
* columns: aColumns,
|
|
97
97
|
* context: {
|
|
98
98
|
* application: 'Debug Test Application',
|
|
99
|
-
* version: '1.142.
|
|
99
|
+
* version: '1.142.1',
|
|
100
100
|
* title: 'Some random title',
|
|
101
101
|
* modifiedBy: 'John Doe',
|
|
102
102
|
* metaSheetName: 'Custom metadata',
|
|
@@ -183,7 +183,7 @@ sap.ui.define([
|
|
|
183
183
|
* @class The <code>sap.ui.export.Spreadsheet</code> class allows you to export table data from a UI5 application to a spreadsheet file.
|
|
184
184
|
*
|
|
185
185
|
* @author SAP SE
|
|
186
|
-
* @version 1.142.
|
|
186
|
+
* @version 1.142.1
|
|
187
187
|
*
|
|
188
188
|
* @since 1.50
|
|
189
189
|
* @alias sap.ui.export.Spreadsheet
|
|
@@ -21,7 +21,7 @@ sap.ui.define(['sap/base/Log', 'sap/ui/export/ExportUtils'], function(Log, Expor
|
|
|
21
21
|
* Utility class to perform spreadsheet export.
|
|
22
22
|
*
|
|
23
23
|
* @author SAP SE
|
|
24
|
-
* @version 1.142.
|
|
24
|
+
* @version 1.142.1
|
|
25
25
|
*
|
|
26
26
|
* @alias sap.ui.export.SpreadsheetExport
|
|
27
27
|
* @private
|
|
@@ -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.142.
|
|
18
|
+
* @version 1.142.1
|
|
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.142.
|
|
37
|
+
version: "1.142.1"
|
|
38
38
|
});
|
|
39
39
|
|
|
40
40
|
/**
|
|
@@ -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.142.
|
|
238
|
+
* @property {string} [workbook.context.version="1.142.1"] - 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.142.
|
|
23
|
+
* @version 1.142.1
|
|
24
24
|
*
|
|
25
25
|
* @since 1.110
|
|
26
26
|
* @alias sap.ui.export.util.Filter
|