@openui5/sap.uxap 1.71.67 → 1.71.68
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/ObjectPageHeader.js +0 -10
- package/src/sap/uxap/ObjectPageHeaderActionButton.js +2 -3
- package/src/sap/uxap/ObjectPageLazyLoader.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.71.
|
|
3
|
+
"version": "1.71.68",
|
|
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.71.
|
|
18
|
-
"@openui5/sap.m": "1.71.
|
|
19
|
-
"@openui5/sap.ui.core": "1.71.
|
|
20
|
-
"@openui5/sap.ui.layout": "1.71.
|
|
17
|
+
"@openui5/sap.f": "1.71.68",
|
|
18
|
+
"@openui5/sap.m": "1.71.68",
|
|
19
|
+
"@openui5/sap.ui.core": "1.71.68",
|
|
20
|
+
"@openui5/sap.ui.layout": "1.71.68"
|
|
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.71.
|
|
6
|
+
<version>1.71.68</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>
|
|
@@ -878,16 +878,6 @@ sap.ui.define([
|
|
|
878
878
|
this._adaptObjectPageHeaderIndentifierLine($headerDomRef);
|
|
879
879
|
};
|
|
880
880
|
|
|
881
|
-
ObjectPageHeader.prototype._adaptLayoutDelayed = function () {
|
|
882
|
-
if (this._adaptLayoutTimeout) {
|
|
883
|
-
clearTimeout(this._adaptLayoutTimeout);
|
|
884
|
-
}
|
|
885
|
-
this._adaptLayoutTimeout = setTimeout(function() {
|
|
886
|
-
this._adaptLayoutTimeout = null;
|
|
887
|
-
this._adaptLayout();
|
|
888
|
-
}.bind(this), 0);
|
|
889
|
-
};
|
|
890
|
-
|
|
891
881
|
/**
|
|
892
882
|
* Adapt title/subtitle container and action buttons
|
|
893
883
|
* @private
|
|
@@ -110,9 +110,8 @@ sap.ui.define(["sap/m/Button", "./library", "./ObjectPageHeaderActionButtonRende
|
|
|
110
110
|
|
|
111
111
|
ObjectPageHeaderActionButton.prototype.setVisible = function (bVisible) {
|
|
112
112
|
var vResult = Button.prototype.setVisible.apply(this, arguments);
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
}
|
|
113
|
+
this.getParent() && this.getParent().invalidate();
|
|
114
|
+
|
|
116
115
|
return vResult;
|
|
117
116
|
};
|
|
118
117
|
|
package/src/sap/uxap/library.js
CHANGED