@openui5/sap.uxap 1.90.8 → 1.90.9
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 +5 -5
- package/src/sap/uxap/.library +1 -1
- package/src/sap/uxap/BlockBaseMetadata.js +1 -1
- package/src/sap/uxap/ObjectPageAccessibleLandmarkInfo.js +1 -1
- package/src/sap/uxap/ObjectPageDynamicHeaderContent.js +1 -1
- package/src/sap/uxap/ObjectPageDynamicHeaderTitle.js +1 -1
- package/src/sap/uxap/ObjectPageLayout.js +3 -3
- package/src/sap/uxap/ObjectPageLazyLoader.js +1 -1
- package/src/sap/uxap/changeHandler/AddIFrameObjectPageLayout.js +1 -1
- package/src/sap/uxap/changeHandler/MoveObjectPageSection.js +1 -1
- package/src/sap/uxap/changeHandler/RenameObjectPageSection.js +1 -1
- package/src/sap/uxap/library.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openui5/sap.uxap",
|
|
3
|
-
"version": "1.90.
|
|
3
|
+
"version": "1.90.9",
|
|
4
4
|
"description": "OpenUI5 UI Library sap.uxap",
|
|
5
5
|
"author": "SAP SE (https://www.sap.com)",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -14,9 +14,9 @@
|
|
|
14
14
|
"url": "https://github.com/SAP/openui5.git"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@openui5/sap.f": "1.90.
|
|
18
|
-
"@openui5/sap.m": "1.90.
|
|
19
|
-
"@openui5/sap.ui.core": "1.90.
|
|
20
|
-
"@openui5/sap.ui.layout": "1.90.
|
|
17
|
+
"@openui5/sap.f": "1.90.9",
|
|
18
|
+
"@openui5/sap.m": "1.90.9",
|
|
19
|
+
"@openui5/sap.ui.core": "1.90.9",
|
|
20
|
+
"@openui5/sap.ui.layout": "1.90.9"
|
|
21
21
|
}
|
|
22
22
|
}
|
package/src/sap/uxap/.library
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
<name>sap.uxap</name>
|
|
5
5
|
<vendor>SAP SE</vendor>
|
|
6
|
-
<version>1.90.
|
|
6
|
+
<version>1.90.9</version>
|
|
7
7
|
<copyright>OpenUI5
|
|
8
8
|
* (c) Copyright 2009-2021 SAP SE or an SAP affiliate company.
|
|
9
9
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.</copyright>
|
|
@@ -3023,6 +3023,9 @@ sap.ui.define([
|
|
|
3023
3023
|
return;
|
|
3024
3024
|
}
|
|
3025
3025
|
|
|
3026
|
+
this._bMobileScenario = library.Utilities.isPhoneScenario(this._getCurrentMediaContainerRange());
|
|
3027
|
+
this._bTabletScenario = library.Utilities.isTabletScenario(this._getCurrentMediaContainerRange());
|
|
3028
|
+
|
|
3026
3029
|
if (!this._bDomReady) {
|
|
3027
3030
|
Log.info("ObjectPageLayout :: cannot _onUpdateScreenSize before dom is ready");
|
|
3028
3031
|
return;
|
|
@@ -3031,9 +3034,6 @@ sap.ui.define([
|
|
|
3031
3034
|
this._oLazyLoading.setLazyLoadingParameters();
|
|
3032
3035
|
|
|
3033
3036
|
setTimeout(function () {
|
|
3034
|
-
this._bMobileScenario = library.Utilities.isPhoneScenario(this._getCurrentMediaContainerRange());
|
|
3035
|
-
this._bTabletScenario = library.Utilities.isTabletScenario(this._getCurrentMediaContainerRange());
|
|
3036
|
-
|
|
3037
3037
|
if (bIsAlwaysShowContentHeaderEnabled && (this._bHeaderInTitleArea != this._checkAlwaysShowContentHeader())) {
|
|
3038
3038
|
this.invalidate();
|
|
3039
3039
|
}
|
package/src/sap/uxap/library.js
CHANGED