@sapui5/sap.suite.ui.generic.template 1.112.0 → 1.112.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 +1 -1
- package/src/sap/suite/ui/generic/template/.library +1 -1
- package/src/sap/suite/ui/generic/template/ListReport/controller/IappStateHandler.js +5 -2
- package/src/sap/suite/ui/generic/template/lib/AppComponent.js +1 -1
- package/src/sap/suite/ui/generic/template/lib/navigation/NavigationController.js +1 -1
- package/src/sap/suite/ui/generic/template/library.js +1 -1
package/package.json
CHANGED
|
@@ -739,8 +739,11 @@ sap.ui.define([
|
|
|
739
739
|
if (areDataShownInTable()){
|
|
740
740
|
// trigger search if needed
|
|
741
741
|
oState.oSmartFilterbar.search();
|
|
742
|
-
//
|
|
743
|
-
if
|
|
742
|
+
// For desktop devices, expand the header for Standard and Custom variants and for tablet and mobile devices,
|
|
743
|
+
// collapse the header only if search is triggered.
|
|
744
|
+
if (Device.system.desktop) {
|
|
745
|
+
oTemplateUtils.oCommonUtils.getControlStateWrapper(oController.byId(StableIdHelper.getStableId({type: "ListReportPage", subType: "DynamicPage"}))).setHeaderState(oController, true);
|
|
746
|
+
} else {
|
|
744
747
|
collapseHeader();
|
|
745
748
|
}
|
|
746
749
|
} else {
|
|
@@ -848,7 +848,7 @@ sap.ui.define([
|
|
|
848
848
|
* @extends sap.ui.core.UIComponent
|
|
849
849
|
* @abstract
|
|
850
850
|
* @author SAP SE
|
|
851
|
-
* @version 1.112.
|
|
851
|
+
* @version 1.112.3
|
|
852
852
|
* @name sap.suite.ui.generic.template.lib.AppComponent
|
|
853
853
|
*/
|
|
854
854
|
return UIComponent.extend("sap.suite.ui.generic.template.lib.AppComponent", {
|
|
@@ -2980,7 +2980,7 @@ sap.ui.define(["sap/ui/base/Object",
|
|
|
2980
2980
|
* @param {sap.suite.ui.generic.template.lib.AppComponent} oAppComponent The AppComponent instance
|
|
2981
2981
|
* @public
|
|
2982
2982
|
* @extends sap.ui.base.Object
|
|
2983
|
-
* @version 1.112.
|
|
2983
|
+
* @version 1.112.3
|
|
2984
2984
|
* @since 1.30.0
|
|
2985
2985
|
* @alias sap.suite.ui.generic.template.lib.NavigationController
|
|
2986
2986
|
*/
|
|
@@ -38,7 +38,7 @@ sap.ui.define(['sap/ui/core/Core', 'sap/ui/core/library','sap/fe/placeholder/lib
|
|
|
38
38
|
interfaces: [],
|
|
39
39
|
controls: [],
|
|
40
40
|
elements: [],
|
|
41
|
-
version: "1.112.
|
|
41
|
+
version: "1.112.3",
|
|
42
42
|
extensions: {
|
|
43
43
|
//Configuration used for rule loading of Support Assistant
|
|
44
44
|
"sap.ui.support": {
|