@openui5/sap.uxap 1.124.7 → 1.124.8
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 +4 -2
- 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/changeHandler/UnstashObjectPageSection.js +1 -1
- package/src/sap/uxap/library.js +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openui5/sap.uxap",
|
|
3
|
-
"version": "1.124.
|
|
3
|
+
"version": "1.124.8",
|
|
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.124.
|
|
18
|
-
"@openui5/sap.m": "1.124.
|
|
19
|
-
"@openui5/sap.ui.core": "1.124.
|
|
20
|
-
"@openui5/sap.ui.layout": "1.124.
|
|
17
|
+
"@openui5/sap.f": "1.124.8",
|
|
18
|
+
"@openui5/sap.m": "1.124.8",
|
|
19
|
+
"@openui5/sap.ui.core": "1.124.8",
|
|
20
|
+
"@openui5/sap.ui.layout": "1.124.8"
|
|
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.124.
|
|
6
|
+
<version>1.124.8</version>
|
|
7
7
|
<copyright>OpenUI5
|
|
8
8
|
* (c) Copyright 2009-2024 SAP SE or an SAP affiliate company.
|
|
9
9
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.</copyright>
|
|
@@ -3051,11 +3051,13 @@ sap.ui.define([
|
|
|
3051
3051
|
var oSelectedSection = Element.getElementById(this.getSelectedSection()),
|
|
3052
3052
|
sSelectedSubSectionId = oSelectedSection?.getSelectedSubSection(),
|
|
3053
3053
|
oSelectedSubSection = Element.getElementById(sSelectedSubSectionId),
|
|
3054
|
-
iScrollTop
|
|
3054
|
+
iScrollTop,
|
|
3055
|
+
// we make sure that the selected section is visible and UX riules are applied (DINC0271567)
|
|
3056
|
+
oSubSectionInfo = oSelectedSubSection && this._oSectionInfo[sSelectedSubSectionId];
|
|
3055
3057
|
|
|
3056
3058
|
this._requestAdjustLayout(true);
|
|
3057
3059
|
|
|
3058
|
-
iScrollTop = oSelectedSection ? this._computeScrollPosition(oSelectedSubSection || oSelectedSection) : 0;
|
|
3060
|
+
iScrollTop = oSelectedSection ? this._computeScrollPosition((oSubSectionInfo && oSelectedSubSection ) || oSelectedSection) : 0;
|
|
3059
3061
|
|
|
3060
3062
|
//reset the scroll for anchorbar & scrolling management
|
|
3061
3063
|
this._sScrolledSectionId = "";
|
package/src/sap/uxap/library.js
CHANGED
|
@@ -30,7 +30,7 @@ sap.ui.define([
|
|
|
30
30
|
* @namespace
|
|
31
31
|
* @alias sap.uxap
|
|
32
32
|
* @author SAP SE
|
|
33
|
-
* @version 1.124.
|
|
33
|
+
* @version 1.124.8
|
|
34
34
|
* @since 1.36
|
|
35
35
|
* @public
|
|
36
36
|
*/
|
|
@@ -74,7 +74,7 @@ sap.ui.define([
|
|
|
74
74
|
"sap.uxap.ObjectPageHeaderLayoutData",
|
|
75
75
|
"sap.uxap.ObjectPageLazyLoader"
|
|
76
76
|
],
|
|
77
|
-
version: "1.124.
|
|
77
|
+
version: "1.124.8",
|
|
78
78
|
extensions: {
|
|
79
79
|
flChangeHandlers: {
|
|
80
80
|
"sap.uxap.ObjectPageHeader": "sap/uxap/flexibility/ObjectPageHeader",
|