@openui5/sap.uxap 1.130.0 → 1.130.2

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openui5/sap.uxap",
3
- "version": "1.130.0",
3
+ "version": "1.130.2",
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.130.0",
18
- "@openui5/sap.m": "1.130.0",
19
- "@openui5/sap.ui.core": "1.130.0",
20
- "@openui5/sap.ui.layout": "1.130.0"
17
+ "@openui5/sap.f": "1.130.2",
18
+ "@openui5/sap.m": "1.130.2",
19
+ "@openui5/sap.ui.core": "1.130.2",
20
+ "@openui5/sap.ui.layout": "1.130.2"
21
21
  }
22
22
  }
@@ -3,7 +3,7 @@
3
3
 
4
4
  <name>sap.uxap</name>
5
5
  <vendor>SAP SE</vendor>
6
- <version>1.130.0</version>
6
+ <version>1.130.2</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>
@@ -21,7 +21,7 @@ sap.ui.define([
21
21
  *
22
22
  * @class
23
23
  * @author SAP SE
24
- * @version 1.130.0
24
+ * @version 1.130.2
25
25
  * @since 1.26
26
26
  * @alias sap.uxap.BlockBaseMetadata
27
27
  * @extends sap.ui.core.ElementMetadata
@@ -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.130.0
25
+ * @version 1.130.2
26
26
  *
27
27
  * @constructor
28
28
  * @public
@@ -40,7 +40,7 @@ sap.ui.define([
40
40
  * @implements sap.uxap.IHeaderContent
41
41
  *
42
42
  * @author SAP SE
43
- * @version 1.130.0
43
+ * @version 1.130.2
44
44
  *
45
45
  * @constructor
46
46
  * @public
@@ -42,7 +42,7 @@ sap.ui.define([
42
42
  * @implements sap.uxap.IHeaderTitle
43
43
  *
44
44
  * @author SAP SE
45
- * @version 1.130.0
45
+ * @version 1.130.2
46
46
  *
47
47
  * @constructor
48
48
  * @public
@@ -1320,6 +1320,26 @@ sap.ui.define([
1320
1320
  this.fireEvent("onAfterRenderingDOMReady");
1321
1321
  };
1322
1322
 
1323
+ /**
1324
+ * @override
1325
+ * @param {object} oEvent - The event object containing the source element that failed to gain focus.
1326
+ * @returns {void}
1327
+ */
1328
+ ObjectPageLayout.prototype.onfocusfail = function (oEvent) {
1329
+ var oSourceControl = oEvent.srcControl;
1330
+
1331
+ if (oSourceControl === this.getAggregation("footer") && !oSourceControl.getVisible()) {
1332
+ // skip restoring the focus as the default implementation does not account for
1333
+ // the fact that the toolbar was positioned absolutelly on top of scrollable content
1334
+ // => ends up focusing a control that may not be visible (by being outside the scrollport)
1335
+ // Alternative solution (e.g. focus the first focusable control in the scrollport)
1336
+ // can be added in the future if needed
1337
+ return;
1338
+ }
1339
+
1340
+ Control.prototype.onfocusfail.apply(this, arguments);
1341
+ };
1342
+
1323
1343
  /**
1324
1344
  * Suppresses or enables scrolling
1325
1345
  * used to supress scrolling in fullscreen-mode
@@ -38,7 +38,7 @@ sap.ui.define([
38
38
  * @extends sap.ui.core.Element
39
39
  *
40
40
  * @author SAP SE
41
- * @version 1.130.0
41
+ * @version 1.130.2
42
42
  *
43
43
  * @constructor
44
44
  * @public
@@ -25,7 +25,7 @@ sap.ui.define([
25
25
  * @constructor
26
26
  * @alias sap.uxap.changeHandler.AddIFrameObjectPageLayout
27
27
  * @author SAP SE
28
- * @version 1.130.0
28
+ * @version 1.130.2
29
29
  * @since 1.75
30
30
  * @experimental Since 1.75
31
31
  */
@@ -23,7 +23,7 @@ sap.ui.define([
23
23
  * @constructor
24
24
  * @alias sap.uxap.changeHandler.MoveObjectPageSection
25
25
  * @author SAP SE
26
- * @version 1.130.0
26
+ * @version 1.130.2
27
27
  * @experimental Since 1.54
28
28
  */
29
29
 
@@ -21,7 +21,7 @@ sap.ui.define([
21
21
  * @constructor
22
22
  * @alias sap.uxap.changeHandler.RenameObjectPageSection
23
23
  * @author SAP SE
24
- * @version 1.130.0
24
+ * @version 1.130.2
25
25
  * @experimental Since 1.50
26
26
  */
27
27
 
@@ -19,7 +19,7 @@ sap.ui.define([
19
19
  * @constructor
20
20
  * @alias sap.uxap.changeHandler.UnstashObjectPageSection
21
21
  * @author SAP SE
22
- * @version 1.130.0
22
+ * @version 1.130.2
23
23
  * @experimental Since 1.115
24
24
  */
25
25
 
@@ -30,7 +30,7 @@ sap.ui.define([
30
30
  * @namespace
31
31
  * @alias sap.uxap
32
32
  * @author SAP SE
33
- * @version 1.130.0
33
+ * @version 1.130.2
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.130.0",
77
+ version: "1.130.2",
78
78
  extensions: {
79
79
  flChangeHandlers: {
80
80
  "sap.uxap.ObjectPageHeader": "sap/uxap/flexibility/ObjectPageHeader",