@openui5/sap.uxap 1.124.2 → 1.124.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 +5 -5
- package/src/sap/uxap/.library +1 -1
- package/src/sap/uxap/BlockBaseMetadata.js +1 -1
- package/src/sap/uxap/ObjectPageAccessibleLandmarkInfo.js +12 -2
- package/src/sap/uxap/ObjectPageDynamicHeaderContent.js +1 -1
- package/src/sap/uxap/ObjectPageDynamicHeaderTitle.js +1 -1
- package/src/sap/uxap/ObjectPageLayout.js +5 -0
- 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.3",
|
|
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.3",
|
|
18
|
+
"@openui5/sap.m": "1.124.3",
|
|
19
|
+
"@openui5/sap.ui.core": "1.124.3",
|
|
20
|
+
"@openui5/sap.ui.layout": "1.124.3"
|
|
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.3</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>
|
|
@@ -22,7 +22,7 @@ sap.ui.define(['sap/ui/core/Element', './library'],
|
|
|
22
22
|
* @extends sap.ui.core.Element
|
|
23
23
|
*
|
|
24
24
|
* @author SAP SE
|
|
25
|
-
* @version 1.124.
|
|
25
|
+
* @version 1.124.3
|
|
26
26
|
*
|
|
27
27
|
* @constructor
|
|
28
28
|
* @public
|
|
@@ -101,7 +101,17 @@ sap.ui.define(['sap/ui/core/Element', './library'],
|
|
|
101
101
|
*
|
|
102
102
|
* If not set (and a landmark different than <code>sap.ui.core.AccessibleLandmarkRole.None</code> is defined), no label is set.
|
|
103
103
|
*/
|
|
104
|
-
footerLabel : {type : "string", defaultValue : null}
|
|
104
|
+
footerLabel : {type : "string", defaultValue : null},
|
|
105
|
+
|
|
106
|
+
/**
|
|
107
|
+
* Texts which describe the landmark of the section inside the header container of the corresponding <code>sap.uxap.ObjectPageLayout</code> control.
|
|
108
|
+
*
|
|
109
|
+
* If not set, default "Expanded header" aria-label is set.
|
|
110
|
+
* @public
|
|
111
|
+
* @since 1.127.0
|
|
112
|
+
*/
|
|
113
|
+
|
|
114
|
+
headerContentLabel: {type : "string", defaultValue : null}
|
|
105
115
|
}
|
|
106
116
|
}});
|
|
107
117
|
|
|
@@ -1251,6 +1251,10 @@ sap.ui.define([
|
|
|
1251
1251
|
});
|
|
1252
1252
|
this._initialABButtonsColorUpdateDone = true;
|
|
1253
1253
|
}
|
|
1254
|
+
if (exists(oHeaderContent) && oHeaderContent._setLandmarkInfo) {
|
|
1255
|
+
oHeaderContent._setLandmarkInfo(this.getLandmarkInfo());
|
|
1256
|
+
}
|
|
1257
|
+
|
|
1254
1258
|
};
|
|
1255
1259
|
|
|
1256
1260
|
ObjectPageLayout.prototype._onAfterRenderingDomReady = function () {
|
|
@@ -5157,6 +5161,7 @@ sap.ui.define([
|
|
|
5157
5161
|
this.$("stickyAnchorBar").attr("aria-label", sNavigationText);
|
|
5158
5162
|
}
|
|
5159
5163
|
this.$("anchBar").attr("aria-label", sToolbarText);
|
|
5164
|
+
|
|
5160
5165
|
};
|
|
5161
5166
|
|
|
5162
5167
|
/**
|
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.3
|
|
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.3",
|
|
78
78
|
extensions: {
|
|
79
79
|
flChangeHandlers: {
|
|
80
80
|
"sap.uxap.ObjectPageHeader": "sap/uxap/flexibility/ObjectPageHeader",
|