@sapui5/sap.zen.dsh 1.113.0 → 1.114.3
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
package/src/sap/zen/dsh/.library
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<vendor>SAP SE</vendor>
|
|
5
5
|
<copyright>SAPUI5
|
|
6
6
|
(c) Copyright 2009-2021 SAP SE. All rights reserved</copyright>
|
|
7
|
-
<version>1.
|
|
7
|
+
<version>1.114.3</version>
|
|
8
8
|
<documentation>Design Studio Runtime Library. Intended only to be used within S/4 HANA Fiori applications.</documentation>
|
|
9
9
|
<appData>
|
|
10
10
|
<jsdoc xmlns="http://www.sap.com/ui5/buildext/jsdoc" >
|
|
@@ -84,9 +84,6 @@
|
|
|
84
84
|
<dependency>
|
|
85
85
|
<libraryName>sap.ui.vbm</libraryName>
|
|
86
86
|
</dependency>
|
|
87
|
-
<dependency>
|
|
88
|
-
<libraryName>sap.sac.grid</libraryName>
|
|
89
|
-
</dependency>
|
|
90
87
|
<dependency>
|
|
91
88
|
<libraryName>sap.sac.df</libraryName>
|
|
92
89
|
</dependency>
|
|
@@ -35729,6 +35729,9 @@ sap.zen.Page.prototype.doExport = function(exportType, exportVersion)
|
|
|
35729
35729
|
sap.zen.CLocalizationCommandResolverMessages.PAGE_UNSUPPORTED_EXPORT.addMessageToMessageHandler(this, oFF.Severity.ERROR, exportType, null, null);
|
|
35730
35730
|
return;
|
|
35731
35731
|
}
|
|
35732
|
+
var loWindow = this.getWindow();
|
|
35733
|
+
loWindow.showImmediatelyLoadingIndicator();
|
|
35734
|
+
loWindow.setExecuteShowHideLoadingIndicator(false);
|
|
35732
35735
|
var loDataSourceIterator = this.getDataSources().getIterator();
|
|
35733
35736
|
var loDataSource = null;
|
|
35734
35737
|
var loResultSet = null;
|
|
@@ -35802,6 +35805,8 @@ sap.zen.Page.prototype.doExport = function(exportType, exportVersion)
|
|
|
35802
35805
|
loResultSet.synchronize(null, null, false);
|
|
35803
35806
|
}
|
|
35804
35807
|
}
|
|
35808
|
+
loWindow.setExecuteShowHideLoadingIndicator(true);
|
|
35809
|
+
loWindow.hideLoadingIndicator();
|
|
35805
35810
|
};
|
|
35806
35811
|
sap.zen.Page.prototype.exportToExcel = function(tContent, exportVersion)
|
|
35807
35812
|
{
|
|
@@ -31,7 +31,7 @@ sap.ui.define(
|
|
|
31
31
|
* @alias sap.zen.dsh
|
|
32
32
|
* @public
|
|
33
33
|
* @author SAP SE
|
|
34
|
-
* @version 1.
|
|
34
|
+
* @version 1.114.3
|
|
35
35
|
*/
|
|
36
36
|
var thisLib = sap.ui.getCore().initLibrary(
|
|
37
37
|
{
|
|
@@ -56,7 +56,7 @@ sap.ui.define(
|
|
|
56
56
|
],
|
|
57
57
|
elements: [],
|
|
58
58
|
noLibraryCSS: true,
|
|
59
|
-
version: "1.
|
|
59
|
+
version: "1.114.3"
|
|
60
60
|
}
|
|
61
61
|
);
|
|
62
62
|
|