@sapui5/sap.ui.export 1.141.1 → 1.141.2

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.141.1",
3
+ "version": "1.141.2",
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 2025 SAP SE. All rights reserved.</copyright>
8
- <version>1.141.1</version>
8
+ <version>1.141.2</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.141.1
30
+ * @version 1.141.2
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.141.1
31
+ * @version 1.141.2
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.141.1
148
+ * @version 1.141.2
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.141.1")
1248
+ * @param {string} [oContext.version] Application version (default: "1.141.2")
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.141.1
31
+ * @version 1.141.2
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.141.1',
99
+ * version: '1.141.2',
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.141.1
186
+ * @version 1.141.2
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.141.1
24
+ * @version 1.141.2
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.141.1
18
+ * @version 1.141.2
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.1"
37
+ version: "1.141.2"
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.141.1"] - Application version that creates the XLSX document.
238
+ * @property {string} [workbook.context.version="1.141.2"] - 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.1
27
+ * @version 1.141.2
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.1
23
+ * @version 1.141.2
24
24
  *
25
25
  * @since 1.110
26
26
  * @alias sap.ui.export.util.Filter