@sapui5/sap.ui.export 1.128.0 → 1.129.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sapui5/sap.ui.export",
3
- "version": "1.128.0",
3
+ "version": "1.129.0",
4
4
  "description": "SAPUI5 Library sap.ui.export",
5
5
  "homepage": "https://sap.github.io/ui5-tooling/pages/SAPUI5/",
6
6
  "author": "SAP SE (https://www.sap.com)",
@@ -5,7 +5,7 @@
5
5
  <vendor>SAP SE</vendor>
6
6
  <copyright>SAPUI5
7
7
  * (c) Copyright 2009-2024 SAP SE. All rights reserved.</copyright>
8
- <version>1.128.0</version>
8
+ <version>1.129.0</version>
9
9
 
10
10
  <documentation>UI5 library: sap.ui.export</documentation>
11
11
 
@@ -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.128.0
30
+ * @version 1.129.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 suported
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
@@ -18,7 +18,7 @@ sap.ui.define(['./library', './ExportUtils', './ExportDialog', './util/PDFCapabi
18
18
  * @class The <code>sap.ui.export.ExportHandler</code> class allows you to export table data from an SAPUI5 application.
19
19
  *
20
20
  * @author SAP SE
21
- * @version 1.128.0
21
+ * @version 1.129.0
22
22
  *
23
23
  * @since 1.102
24
24
  * @alias sap.ui.export.ExportHandler
@@ -147,7 +147,7 @@ sap.ui.define([
147
147
  * @class Utilities related to export to enable reuse in integration scenarios (e.g. tables).
148
148
  *
149
149
  * @author SAP SE
150
- * @version 1.128.0
150
+ * @version 1.129.0
151
151
  *
152
152
  * @since 1.59
153
153
  * @alias sap.ui.export.ExportUtils
@@ -1228,7 +1228,7 @@ sap.ui.define([
1228
1228
  *
1229
1229
  * @param {object} oContext Context object
1230
1230
  * @param {string} [oContext.application] Name of the application (default: "SAP UI5")
1231
- * @param {string} [oContext.version] Application version (default: "1.128.0")
1231
+ * @param {string} [oContext.version] Application version (default: "1.129.0")
1232
1232
  * @param {string} [oContext.title] Title that will be written to the file (NOT the filename)
1233
1233
  * @param {string} [oContext.modifiedBy] Optional user context that will be written to the file
1234
1234
  * @param {string} [oContext.sheetName] Name of the data sheet - Maximum length of 31 characters
@@ -1376,7 +1376,7 @@ sap.ui.define([
1376
1376
  * no specific FileType is defined in the export settings.
1377
1377
  *
1378
1378
  * @param {object} mSettings Export configuration with optional FileType
1379
- * @param {object} [mCapabilities] Export Capabilities for all supported types
1379
+ * @param {object} [mCapabilities] Export capabilities for all supported types
1380
1380
  * @returns {Promise<sap.ui.export.ExportBase>} A Promise that gets resolved with the requested instance
1381
1381
  *
1382
1382
  * @static
@@ -24,7 +24,7 @@ sap.ui.define([
24
24
  * @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.
25
25
  *
26
26
  * @author SAP SE
27
- * @version 1.128.0
27
+ * @version 1.129.0
28
28
  *
29
29
  * @since 1.96
30
30
  * @alias sap.ui.export.PortableDocument
@@ -65,6 +65,7 @@ sap.ui.define([
65
65
  * property are accepted: <code>[left, right, center, begin, end]</code>. If not specified, the columns are
66
66
  * horizontally aligned based on the property type.</li>
67
67
  * <li><code>scale</code> (number) - Number of digits after decimal point for numeric values</li>
68
+ * <li><code>autoScale</code> (boolean) - Allows automatic scale assignment based on unit of measure</li>
68
69
  * <li><code>delimiter</code> (boolean) - Set to <code>true</code> to display thousands separators in numeric values.
69
70
  * The default value is <code>false</code>.</li>
70
71
  * <li><code>unit</code> (string) - Text to display as the unit of measurement or currency next to the numeric value.
@@ -76,8 +77,12 @@ sap.ui.define([
76
77
  * <li><code>trueValue</code> (string) - Textual representation of a boolean type that has the value <code>true</code></li>
77
78
  * <li><code>falseValue</code> (string) - Textual representation of a boolean type that has the value <code>false</code></li>
78
79
  * <li><code>template</code> (string) - Formatting template that supports indexed placeholders within curly brackets</li>
80
+ * <li><code>format</code> (string) - Output format for columns of type Date/DateTime/Time</li>
79
81
  * <li><code>inputFormat</code> (string) - Formatting template for string formatted dates</li>
80
82
  * <li><code>utc</code> (boolean) - Defines whether the <code>DateTime</code> is displayed as UTC or local time</li>
83
+ * <li><code>timezone</code> (string) - Defines a fixed IANA time zone</li>
84
+ * <li><code>timezoneProperty</code> (string) - References an OData property that contains the specific IANA time zone</li>
85
+ * <li><code>displayTimezone</code> (boolean) - Defines whether the IANA time zone is displayed within a cell</li>
81
86
  * <li><code>valueMap</code> (string) - Mapping object or Map containing the values that should be mapped to a particular key</li>
82
87
  * <li><code>wrap</code> (boolean) - Indicates if wrapping is enabled for this particular column</li>
83
88
  * </ul>
@@ -85,7 +90,7 @@ sap.ui.define([
85
90
  * <li><code>workbook.context</code> - Context object that will be applied to the generated file. It may contain the following fields:</li>
86
91
  * <ul>
87
92
  * <li><code>application</code> (string) - The application that creates the XLSX document (default: "SAP UI5")</li>
88
- * <li><code>version</code> (string) - Application version that creates the XLSX document (default: "1.128.0")</li>
93
+ * <li><code>version</code> (string) - Application version that creates the XLSX document (default: "1.129.0")</li>
89
94
  * <li><code>title</code> (string) - Title of the XLSX document (NOT the filename)</li>
90
95
  * <li><code>modifiedBy</code> (string) - User context for the XLSX document</li>
91
96
  * <li><code>sheetName</code> (string) - The label of the data sheet</li>
@@ -169,7 +174,7 @@ sap.ui.define([
169
174
  * columns: aColumns,
170
175
  * context: {
171
176
  * application: 'Debug Test Application',
172
- * version: '1.128.0',
177
+ * version: '1.129.0',
173
178
  * title: 'Some random title',
174
179
  * modifiedBy: 'John Doe',
175
180
  * metaSheetName: 'Custom metadata',
@@ -281,7 +286,7 @@ sap.ui.define([
281
286
  * @class The <code>sap.ui.export.Spreadsheet</code> class allows you to export table data from a UI5 application to a spreadsheet file.
282
287
  *
283
288
  * @author SAP SE
284
- * @version 1.128.0
289
+ * @version 1.129.0
285
290
  *
286
291
  * @since 1.50
287
292
  * @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.128.0
24
+ * @version 1.129.0
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.128.0
18
+ * @version 1.129.0
19
19
  * @public
20
20
  */
21
21
 
@@ -33,7 +33,7 @@ sap.ui.define(["sap/ui/core/Lib"], function(Library) {
33
33
  interfaces: [],
34
34
  controls: [],
35
35
  elements: [],
36
- version: "1.128.0"
36
+ version: "1.129.0"
37
37
  });
38
38
 
39
39
  /**
@@ -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.128.0
27
+ * @version 1.129.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.128.0
23
+ * @version 1.129.0
24
24
  *
25
25
  * @since 1.110
26
26
  * @alias sap.ui.export.util.Filter