@sapui5/sap.ui.export 1.99.0 → 1.99.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/ExportUtils.js +2 -2
- package/src/sap/ui/export/PortableDocument.js +1 -1
- package/src/sap/ui/export/Spreadsheet.js +3 -3
- package/src/sap/ui/export/SpreadsheetExport.js +1 -1
- package/src/sap/ui/export/library.js +2 -2
package/package.json
CHANGED
|
@@ -15,7 +15,7 @@ sap.ui.define([
|
|
|
15
15
|
* @constructor The <code>sap.ui.export.ExportBase</code> class allows you to export table data from a UI5 application to a Portable Document Format (*.PDF) file.
|
|
16
16
|
*
|
|
17
17
|
* @author SAP SE
|
|
18
|
-
* @version 1.99.
|
|
18
|
+
* @version 1.99.1
|
|
19
19
|
*
|
|
20
20
|
* @since 1.96
|
|
21
21
|
* @name sap.ui.export.ExportBase
|
|
@@ -108,7 +108,7 @@ sap.ui.define([
|
|
|
108
108
|
* Utilities related to export to enable reuse in integration scenarios (e.g. tables).
|
|
109
109
|
*
|
|
110
110
|
* @author SAP SE
|
|
111
|
-
* @version 1.99.
|
|
111
|
+
* @version 1.99.1
|
|
112
112
|
*
|
|
113
113
|
* @since 1.59
|
|
114
114
|
* @name sap.ui.export.ExportUtils
|
|
@@ -934,7 +934,7 @@ sap.ui.define([
|
|
|
934
934
|
*
|
|
935
935
|
* @param {Object} oContext Context object
|
|
936
936
|
* @param {string} [oContext.application] Name of the application (default: "SAP UI5")
|
|
937
|
-
* @param {string} [oContext.version] Application version (default: "1.99.
|
|
937
|
+
* @param {string} [oContext.version] Application version (default: "1.99.1")
|
|
938
938
|
* @param {string} [oContext.title] Title that will be written to the file (NOT the filename)
|
|
939
939
|
* @param {string} [oContext.modifiedBy] Optional user context that will be written to the file
|
|
940
940
|
* @param {string} [oContext.sheetName] Name of the data sheet - Maximum length of 31 characters
|
|
@@ -16,7 +16,7 @@ sap.ui.define([
|
|
|
16
16
|
* @constructor 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.
|
|
17
17
|
*
|
|
18
18
|
* @author SAP SE
|
|
19
|
-
* @version 1.99.
|
|
19
|
+
* @version 1.99.1
|
|
20
20
|
*
|
|
21
21
|
* @since 1.96
|
|
22
22
|
* @name sap.ui.export.PortableDocument
|
|
@@ -83,7 +83,7 @@ sap.ui.define([
|
|
|
83
83
|
* <li><code>workbook.context</code> - Context object that will be applied to the generated file. It may contain the following fields:</li>
|
|
84
84
|
* <ul>
|
|
85
85
|
* <li><code>application</code> (string) - The application that creates the XLSX document (default: "SAP UI5")</li>
|
|
86
|
-
* <li><code>version</code> (string) - Application version that creates the XLSX document (default: "1.99.
|
|
86
|
+
* <li><code>version</code> (string) - Application version that creates the XLSX document (default: "1.99.1")</li>
|
|
87
87
|
* <li><code>title</code> (string) - Title of the XLSX document (NOT the filename)</li>
|
|
88
88
|
* <li><code>modifiedBy</code> (string) - User context for the XLSX document</li>
|
|
89
89
|
* <li><code>sheetName</code> (string) - The label of the data sheet</li>
|
|
@@ -166,7 +166,7 @@ sap.ui.define([
|
|
|
166
166
|
* columns: aColumns,
|
|
167
167
|
* context: {
|
|
168
168
|
* application: 'Debug Test Application',
|
|
169
|
-
* version: '1.99.
|
|
169
|
+
* version: '1.99.1',
|
|
170
170
|
* title: 'Some random title',
|
|
171
171
|
* modifiedBy: 'John Doe',
|
|
172
172
|
* metaSheetName: 'Custom metadata',
|
|
@@ -278,7 +278,7 @@ sap.ui.define([
|
|
|
278
278
|
* @constructor The <code>sap.ui.export.Spreadsheet</code> class allows you to export table data from a UI5 application to a spreadsheet file.
|
|
279
279
|
*
|
|
280
280
|
* @author SAP SE
|
|
281
|
-
* @version 1.99.
|
|
281
|
+
* @version 1.99.1
|
|
282
282
|
*
|
|
283
283
|
* @since 1.50
|
|
284
284
|
* @name sap.ui.export.Spreadsheet
|
|
@@ -17,7 +17,7 @@ sap.ui.define([
|
|
|
17
17
|
* @namespace
|
|
18
18
|
* @name sap.ui.export
|
|
19
19
|
* @author SAP SE
|
|
20
|
-
* @version 1.99.
|
|
20
|
+
* @version 1.99.1
|
|
21
21
|
* @public
|
|
22
22
|
*/
|
|
23
23
|
|
|
@@ -33,7 +33,7 @@ sap.ui.define([
|
|
|
33
33
|
interfaces: [],
|
|
34
34
|
controls: [],
|
|
35
35
|
elements: [],
|
|
36
|
-
version: "1.99.
|
|
36
|
+
version: "1.99.1"
|
|
37
37
|
});
|
|
38
38
|
|
|
39
39
|
|